Jump to content

Pages2Pdf


Wanze

Recommended Posts

1 hour ago, iNoize said:

EDIT: Have stiill problems. If I edit something in the default_templates the Module dont use the new changes
Something with cache or how can i  change this ?

Yes, in Pages2Pdf module settings :

Capture.PNG.5ef932891f09afbfe490b222b64d9075.PNG

 

You can stay with PHP 7.3.x, and you can also try the same method to update it with the last mPDF version. If it didn't work, then use an older mPDF version like I did. 

Link to comment
Share on other sites

43 minutes ago, flydev said:

Yes, in Pages2Pdf module settings :

Capture.PNG.5ef932891f09afbfe490b222b64d9075.PNG

 

You can stay with PHP 7.3.x, and you can also try the same method to update it with the last mPDF version. If it didn't work, then use an older mPDF version like I did. 

Don't really work for me with the 1 in the cache. I'll try to update mpdf and set php to 7.3 maybe then. 

EDIT: Ok the latest mpdf have other filestrukture i think i cant replace the folder so easy also i will stay at 6.1 but i cant see my custom template files. Where could the problem be ? 

Link to comment
Share on other sites

  • 2 weeks later...

That's a really great module! Thanks a lot!

On localhost it works perfect. But on the server I have the problem, that it don't creat the pdf file correctly. The file has only 0 Bytes and there is an error if I open it. Somethink like "the file is damaged". Does somebody has an idea where to problem is? On Chrome DevTools is this error:

Resource interpreted as Document but transferred with MIME type application/pdf:

Thanks for your help.

 

<a href="<?php echo $page->url;?>?pages2pdf=1">PDF erstellen</a>

 

Link to comment
Share on other sites

  • 4 weeks later...

SOLVED: On the server "readfile()" was disallowed

One problem was, that I used PHP 7.2 on the server. Now i changed to PHP 5.6.

But if I click on the Link (<a href="<?php echo $page->url;?>?pages2pdf=1">PDF erstellen</a>), the file is saved on the server in /site/assets/files/page-id. But no visiual download ond the webpage. It opens just a empty page with the following url: .../page_name?pages2pdf=1. On localhost it works. Does somebody has an idea where my fault is? Thank you.

Link to comment
Share on other sites

  • 4 weeks later...

Hello I get this Error if I try to Execute ImportPagesFrom XML 

 

Fatal Error: Uncaught TypeError: Argument 2 passed to Pages2Pdf::getPDFFilePath() must be an instance of Language, instance of ProcessWire\Language given, called in /usr/www/users/ulmmsc/2018cms/site/modules/Pages2Pdf/Pages2Pdf.module on line 177 and defined in /usr/www/users/ulmmsc/2018cms/site/modules/Pages2Pdf/Pages2Pdf.module:259

Language Support is installed. 
 

Also is Multilanguage Checked in the pages2PDF Module 

Link to comment
Share on other sites

Guys I'm really desperate. The templates can not be changed, I have no idea why. Not the headers or not the default it always stays the same.

It also does not work with Multilanguage. Is nobody there who can help me?

Link to comment
Share on other sites

The better the questions the better the answers. 

1 hour ago, iNoize said:

The templates can not be changed, I have no idea why.

You cannot expect that forum members can remember the exact problem that you have posted several weeks ago. Describe your problem. Try to make it reproducable (eg by providing a site profile of a clean installation that shows the problem) and I'm sure there will be someone who can help you.

Sometimes even describing the problem as good as you can brings you to the solution ? 

  • Like 1
Link to comment
Share on other sites

Just to get the records straight...

  • ProcessWire version?
  • Multilanguage profile or another profile made multilanguage?
  • How many languages?
  • Does it work in any of the languages?
  • PHP version?
  • Module version?
  • How do you generate the PDFs? Code snippet would be great
  • Where do you create the PDFs - frontend or backend?
  • Templates: page or PDF?
  • Template location?
  • Template strategy - delayed, direct, regions?
  • Like 3
Link to comment
Share on other sites

@bernhard @wbmnfktr

Thanks for the fast answer. So i try to describe the situation. 
I have installed the module.  CURRENTLY SITCHED OFF THE MULTINLANGUAGE SUPPORT ON PW 

ProcessWire 3.0.126 © 2019
PHP 7.2  
Screenshot_3.thumb.jpg.e85f681a55fad9dab9bdab76d0a1b872.jpg

 

So now if i try to change the templates in /site/modules/Pages2Pdf/default_templates
for example 

default.php 
<h1><?= $page->get('headline|title') ?></h1>
<p><?= $page->body ?></p>

<?php if (count($page->immo_images)): ?>
    <?php foreach ($page->immo_images as $image): ?>
        <div class="image">
        <img src="<?= $image->size(400, 400)->url ?>" alt="<?= $image->description ?>" />
        </div>
    <?php endforeach; ?>
<?php endif; ?>


_header.php 
<?php
/*
 * Pages2Pdf default header markup
 * Styles defined in styles.css file
 *
 * You can use {PAGENO} for the current page number and {nbpg} for the total of pages
 *
 */
?>

<div class="head">Test </div>
Hier kommt EXPOSE 
<hr>
Hallo WELT 

Then try to generate the file on the site 

 

$options = array(
  'title' => 'Expose als PDF',
  'markup' => '<a href="{url}" target="_blank" class="btn button-sm border-button-theme col-lg-12 col-md-12 col-xs-12 margin-b-10"  >{title}</a>',
  //'page_id' => '', // Pass a page ID if you want to download the PDF for another page
);
echo $modules->get('Pages2Pdf')->render($options);

nothing happens. 
It generates always the same PDF see as attached. 
There is the standart header and footer. 
Also on the content is the standart code. 

THE CACHE IS ON 1 

 

 

 

neubau-einfamilienhaus-in-burgrieden-pdf-1148 (1).pdf

Link to comment
Share on other sites

I tried this:

  • fresh 3.0.123 installation
  • multilanguage profile
  • PHP 7.2
  • latest Pages2PDF module

2019-10-02-165040_1683x1417_scrot.thumb.png.db7377434462b967970a511a2f63da7c.png

At first I saw no changes at all because I changed the wrong templates in /site/modules/Pages2PDF/default_templates/ and not those in /site/templates/pages2pdf/.

Right now... all I can say is: it's working as expected. Sure... there is no custom code in my page templates or anythings. Just the basic stuff.

My recommendation: try it with a simple basic template without anything else in it. Maybe even blindtext. Maybe the reason for your errors are at a different place than the module itself.

Update: just saw in your post that you ARE in the wrong folder with the wrong templates.

  • Like 3
Link to comment
Share on other sites

@wbmnfktr 
ok thats really embrrassing now. 

With the Templates I was in the wrong path. The module  path not the template. 

With the multilanguage i installed not the profile only the module (part of PW Multilanguage Support )
But thanks a lot for the HELP. Now it works with the PDF files without multilanguage. 


 

Link to comment
Share on other sites

@wbmnfktr OK I think the error is not in the pages2pdf I use to import files the ImportPages2Xml module and when the multilanguage is on then the error comes that pages2pdf

Fatal Error: Uncaught TypeError: Argument 2 passed to Pages2Pdf::getPDFFilePath() must be an instance of Language, instance of ProcessWire\Language given, called in /usr/www/users/ulmmsc/2018cms/site/modules/Pages2Pdf/Pages2Pdf.module on line 177 and defined in /usr/www/users/ulmmsc/2018cms/site/modules/Pages2Pdf/Pages2Pdf.module:259
Link to comment
Share on other sites

  • 2 weeks later...
On 9/15/2017 at 10:14 AM, maxf5 said:

Hi bernhard,

thank you for the hint.  The image field is set as single element.
 


  <td colspan="1" style="padding:15px">
    <img src="<?= $page->navimg->url; ?>" width="220"/>
    <p><?= $page->navimg->url ?></p>
  </td>

something between ..

<?php if ($page->images->count > 0) : ?>
<table>
  <tr>
  <?php
    $gallery = $page->images;
    $gallery = $gallery->slice(0,4);
   foreach ($gallery as $image): ?>
    <td>
      <img src="<?= $image->size(200, 200)->url ?>" width="200" height="200"/>
    </td>
  <?php endforeach; ?>
  </tr>
</table>
<?php endif; ?>

 

template part:


<?php 
$optionspdf = array(
  'title' => 'Datenblatt',
  'markup' => '<a class="uk-button gaming" href="{url}" download>{title}</a>',
  'pageFormat' => 'A4'
);
echo $modules->get('Pages2Pdf')->render($optionspdf);
?>

 

result:

Unbenannt.thumb.PNG.434147903301c5d7a1ddea668fee6fee.PNG

 

Hello, have somebody solved it now ? 
The Problem i found out is with the png . 

Tried it with jpg it works. 
How to handle it with PNG Files ? 

Updated the mpdf to 6.1 

 

Link to comment
Share on other sites

I don't know what it was in my case but one of these things fixed it or at least I got the .png files in my PDFs:

  • using relative path to the file
  • installing GD and PHP GD extension (or was it ImageMagick?)

And somehow I was able to get more details about the problems aka got a real error message but it's way too long ago as I can remember this in full detail. 

 

Link to comment
Share on other sites

  • 2 months later...

Hi there,

I'm unable to set the page orientation to landscape. Any clues ?

Here's what I have in my 'pages2pdf' folder (hence my PDF template) (triggered by a simple front-end link on which I added ?pages2pdf=1' in the url) :

	$pdf = $modules->get("WirePDF");
	$df->pageOrientation = "L";
	echo "This is a test";
	

But my PDF is still in portrait mode ?

I have also tried this in the front-end page having the PDF download link :

	echo $modules->get("Pages2Pdf")->render(["pageOrientation"=>"L"]);
	

but clicking the generated link still gives me a PDF in portrait mode ?

On my site, I have many PDF generated this way, but there were all in portrait mde so I've never had to manage such an issue.

If you have an idea, I'd appreciate. Thanks !

Celfred

Edit : Still stuck ? For further information, I'm using pages2Pdf 1.1.7 and PW 3.0.123. What I find weird, in my backend modules list, I have WirePDF saying version 0.0.0 and Inactive. Is this normal ?

Link to comment
Share on other sites

Back again on my preceding matters (sorry to insist...)

I've just noticed this recurring line in my modules log :

Quote

"Configurable module check failed for WirePDF, retrying..."

Do you think this could explain my previous case ?

Any advice on what I should do ? Should I try and reinstall Oages2Pdf completely ? (I'm scared of breaking things).

Thanks !

Link to comment
Share on other sites

  • 1 month later...

[SOLVED]

I've used this module in the past and it's been great but now I'm having problems.

Scenario

  • Page to output as PDF is different to current page so included link in the template as per instructions
  • Created template in pages2pdf/ templates dir with same name as page template
  • Configured module to use header & footer
  • Set Cache time to 1 to minimise caching while testing
  • Configured Creation Mode to "On click..." as there is no need to store the PDF's on the server

All good so far. Just needed to tweak the topMargin to that the header didn't overlap the main content. That's where I got into trouble.

To eliminate any caching issues, I change $config->debug to true and this was the result:

Spoiler

 


Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; mPDF has a deprecated constructor in /home2/wiserhir/public_html/site/modules/Pages2Pdf/mpdf/mpdf.php on line 66

Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; grad has a deprecated constructor in /home2/wiserhir/public_html/site/modules/Pages2Pdf/mpdf/classes/grad.php on line 3

Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; form has a deprecated constructor in /home2/wiserhir/public_html/site/modules/Pages2Pdf/mpdf/classes/form.php on line 3

Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; cssmgr has a deprecated constructor in /home2/wiserhir/public_html/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 3

Warning: Illegal string offset 'ID' in /home2/wiserhir/public_html/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

Warning: Cannot assign an empty string to a string offset in /home2/wiserhir/public_html/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

Warning: Illegal string offset 'ID' in /home2/wiserhir/public_html/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1202

Warning: Illegal string offset 'ID' in /home2/wiserhir/public_html/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1206

Warning: Illegal string offset 'ID' in /home2/wiserhir/public_html/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1406

Warning: Illegal string offset 'ID' in /home2/wiserhir/public_html/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1410

Warning: Illegal string offset 'ID' in /home2/wiserhir/public_html/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

 

 

 

It went on with a lot of garbage and nothing was downloaded.

Switched $config->debug back to false and at least got the download happening.

I need to increase the size of the header so it doesn't overlap the main content. Read the doco and tried to implement the recommendations in every place possible without success.

Question:

How do I change the top margin without hacking the default "30" in the module?

Using PW v3.0.148 and Pages2PDF v1.1.7

Solution:

WirePDF requires the pdf to be saved in order to apply any config changes such as the top margin.

 

 

 

Link to comment
Share on other sites

  • 2 months later...
  • 1 month later...

Hello,

I wanted to use Pages2Pdf to create a pdf in a module. It nearly works, but

  1. Images which I store in the same folder as the templates aren't shown. Neither
    <img src="/site/templates/pages2pdf/logo.png" alt="" width="700">

    nor

    <img src="logo.png" alt="" width="700">
  2. I need to display some data from my method in the module:
      public function ___executeTickets_Pdf() {
    	$data = $this->ticket; 	
    	$pdf = $this->modules->get('WirePDF');
    	....
    }
    
    <?php $data['prename'] ?>

    don't work...

Does someone have a hint? Thanks!

Link to comment
Share on other sites

17 minutes ago, beate-neu said:

<img src="/site/templates/pages2pdf/logo.png" alt="" width="700">

Have you also tried absolute paths?

<img src="<?= $config->paths->root ?>"site/templates/pages2pdf/logo.png" alt="" width="700">

 

Link to comment
Share on other sites

  • 4 months later...

I have this module working as it should. 

When I turn of TracyDebugger I get these errors. Anybody know why this is?

 

Spoiler

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

Warning: Cannot assign an empty string to a string offset in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1202

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1206

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1406

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1410

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

Warning: Cannot assign an empty string to a string offset in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1202

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1206

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1406

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1410

Warning: A non-numeric value encountered in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/mpdf.php on line 32511

Warning: A non-numeric value encountered in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/mpdf.php on line 32511

Warning: A non-numeric value encountered in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/mpdf.php on line 32511

Warning: A non-numeric value encountered in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/mpdf.php on line 32511

Warning: A non-numeric value encountered in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/mpdf.php on line 32511

Warning: A non-numeric value encountered in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/mpdf.php on line 32511

Warning: A non-numeric value encountered in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/mpdf.php on line 32511

Warning: A non-numeric value encountered in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/mpdf.php on line 32511

Warning: A non-numeric value encountered in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/mpdf.php on line 32511

Warning: A non-numeric value encountered in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/mpdf.php on line 32511

Warning: A non-numeric value encountered in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/mpdf.php on line 32511

Warning: A non-numeric value encountered in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/mpdf.php on line 32511

Warning: A non-numeric value encountered in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/mpdf.php on line 32511

Warning: A non-numeric value encountered in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/mpdf.php on line 32511

Warning: count(): Parameter must be an array or an object that implements Countable in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/mpdf.php on line 1770

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

Warning: Cannot assign an empty string to a string offset in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1202

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1206

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1406

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1410

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

Warning: Cannot assign an empty string to a string offset in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1202

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1206

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1406

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1410

Warning: A non-numeric value encountered in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/mpdf.php on line 32511

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

Warning: Cannot assign an empty string to a string offset in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1202

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1206

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1406

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1410

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

Warning: Cannot assign an empty string to a string offset in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1202

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1206

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1406

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1410

Warning: A non-numeric value encountered in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/mpdf.php on line 32511

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

Warning: Cannot assign an empty string to a string offset in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1202

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1206

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1406

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1410

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

Warning: Cannot assign an empty string to a string offset in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1202

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1206

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1406

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1410

Warning: A non-numeric value encountered in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/mpdf.php on line 32511

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

Warning: Cannot assign an empty string to a string offset in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1202

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1206

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1406

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1410

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

Warning: Cannot assign an empty string to a string offset in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1202

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1206

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1406

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1410

Warning: A non-numeric value encountered in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/mpdf.php on line 32511

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

Warning: Cannot assign an empty string to a string offset in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1202

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1206

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1406

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1410

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

Warning: Cannot assign an empty string to a string offset in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1202

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1206

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1406

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1410

Warning: A non-numeric value encountered in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/mpdf.php on line 32511

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

Warning: Cannot assign an empty string to a string offset in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1202

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1206

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1406

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1410

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

Warning: Cannot assign an empty string to a string offset in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1202

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1206

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1406

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1410

Warning: A non-numeric value encountered in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/mpdf.php on line 32511

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

Warning: Cannot assign an empty string to a string offset in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1202

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1206

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1406

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1410

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

Warning: Cannot assign an empty string to a string offset in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1202

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1206

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1406

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1410

Warning: A non-numeric value encountered in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/mpdf.php on line 32511

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

Warning: Cannot assign an empty string to a string offset in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1202

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1206

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1406

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1410

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

Warning: Cannot assign an empty string to a string offset in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1202

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1206

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1406

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1410

Warning: A non-numeric value encountered in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/mpdf.php on line 32511

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

Warning: Cannot assign an empty string to a string offset in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1202

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1206

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1406

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1410

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

Warning: Cannot assign an empty string to a string offset in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1202

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1206

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1406

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1410

Warning: A non-numeric value encountered in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/mpdf.php on line 32511

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

Warning: Cannot assign an empty string to a string offset in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1202

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1206

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1406

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1410

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

Warning: Cannot assign an empty string to a string offset in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1126

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1202

Warning: Illegal string offset 'ID' in /home/deb26781n3/domains/dronematica.nl/public_html/doc/site/modules/Pages2Pdf/mpdf/classes/cssmgr.php on line 1206
%PDF-1.4 %���� 3 0 obj <> /Contents 4 0 R>> endobj 4 0 obj <> stream x��\]w��}ׯ�G�����T�I�$v�HJNO�>0,3I������.$�b13���/q2�s��~`�y����b�]��k&l��'�ϼb��2�Ѳ0��R�B;��/{��f������bΎ��'g'lS߬7������~��T���X���G���\QŖ�Y8�E��Y������^�}��~PV�P�b�}u܏J�z7:��/RT����6��؎2�jx�Ee ^&� �g������K�^1�%?�ձ�>�f~U3����s�����C�M��Τ/'k9ec�}o�+ghA����=���,�.�)�㦰�m��z7_\��Le=��Pg{�Y���U�5i���3[q�[�����|�����$R�BJ�gI�uI���B�_\՛q%��g�ժf�5�i��U���kxI��Pi��)�/��h�<�P��ݔ�y�i�Ւ�s{,���#�Q%(����~W@��K^鲴�ԅ���������{�q2TCJ��������L%$��~G�xh���?��0�U��? B���I{w@��җ���(�"�Br0��k��E�DŽPG��`4*�=�N��c�P���`4*�=������(� hTV{H/��p,�PB��`4*�=�ҡ�lC Q�Ш���^�Ʋ %D V@�F�7���j<�*�ό�\ +¼�m�7V�JQ� ��c�Vƛ+*&(X���1o;� ���F������&�\ VA��z���x�E���Qy=�mmK���F�����u�%�L�}�8oF}%���v��o>����O�Y�݉�ɮ�aFz����bwM���OoEɌ*;�7����-�k�)��:�/�b�'`u��D]��?C��'�׷��ۧl��ͧ�]J���[ߣ=�Yޟ9~�}�:�R��O��#�BZO��^�9s!���|_����U|��_I�f#�d]�?m�}C`��sb����pvѸ��"��Ro�Nޟ�T���P7S�/����n��������|�����y�J��yԕ�Yzp�Y[�I�on��]W�����p+mb)���8�{�+���lѼ��Koi�tS�.��ƀlJ��lռ(����g3�U W�����u㇕�i<����O#�� of�w� �����Ӄ�b,2Q($�H�6����>&�:�+�Q�G���MVb� /�E�z(P�Ԕ="E���G�X�PX���:���QS����6�����E��"����:���QS����қ���P ��!H��"����:�ރ TA���P���9"{��(Vy�=�X��C�*����)�� )*�"�0oD� �q�(X�����Lƽ#����z��䇻�K[���o���z@�W����|��1.����&�_m?��l!�����̗��l`����Cze ��R&���&~��xQUP�v3o>���~�X���-5�yka��;����ٴ�cn=�����P6�|*�Y}����כ�_�0!g��x�+LAJ�w�μaYYpXћ���_��X��+����Po>�WLÜu������Y���W�z� �[�{_o��K����5ϵx�߬��/�f?]\��o.��z}�a�����S��[��/>�3��j{��;5�u*��D�%�}��|��|M,ӡ�����r�Դ�Ϳ~~؅RU�c�r�by}P�E& ��`�}A��(� hTV{H/t ?손�ޖ�b,2Q($�H�P �eJ���Fe�����D�c��BaE���`�wX���GB�j|@�X�E��"���X́+E�*���z��>xA��b��O����o!K���F����&�E.�?&w\ +¼k�豇U왡�����H~�� %���Ϛ�ϛ�p�<��7�{0�:��W~1pi�"S�yY%.Rjvr{u��ݻy�g��D���� � �o"��K*Y�#ܼ,������E�����c�j\�����%;}�N�����`G/]bo��O��X��M����;�O^��y����P�w�y��TӘz 4��G��;���D��L#��@�Ȁ� ��(� hTV{H/r�!ԼPo�}P�E& ��`��Y�2��+�QY��-<1�+E�X�PX��/��VA���P,=���(Vy�=����@{Py=fm����KQ1�(V�y�[����Qy=f� 4C��r�<d�W!��&@�{XŞ����2�R%v��L}_�K����c����d�^$6�zQ͌��~���z��O���i��zz����<=ǖ��^��|Q�HQM�饆�Yb�(����tL ��4R/6�"h�H`�ITNP ���ڀ��� ��XOA�(��'�0�(���Rñ�D-� hTV{y�OL�O>I#_9��`^�R�1z�a4j� ��vRT�i䓆A^~��b\�J���Q�~p���[���O@W<�aa^���D1A�*hT^��k�P�1AŘF�yp¼k�豇U왡��.O��3� /�Gb1.�}%Q��U?�}���~W�Y!W<�aa^����+A�*hT^��k�P�2�;w\ +¼k�豇U왡��.O_���-}�({"_�ѧ��e�S����M��};/g\�T�!���i�ZG��4�3������NooO��וc�����������q�0{���ÇmOwL� ry�<��� ��@b�B�b�����¡���T��|H$�B���)�yh�k�����B�A�~Rn_ ��X|b�������V�K���Z�csH$e��� rm��1$j�w҇x��t��'��Cr��ha endstream endobj 5 0 obj <> /Contents 6 0 R>> endobj 6 0 obj <> stream x��]]wG}���M� C͗�L ��B���f��-9��������=�U��F��/|�����1m�����P2�R�����������C����əWk���(şG�:�����G��V�"��]m��}K=�����f���,Z_��4R2e��u�9��l\�Շ��r�.�z&���=��g�:��j�7y�> w�}��������7�n\(��Br0���]d5�t��D�#HA!�(��i��(�i��BQ��(V{�%�1��\ +�<>�9�c7�c=� �?x����RT�. �a$`,�P� �둹� F�b��\ ��b7������CQm�C~r�OHU}���/$��_�@���D��!��墌�Z�㻫;�to��Pz&�L�shbB�4F=ؓ�7�|R���˯���gw��>�?�+Q�X]�W��爮�߉���S���X\����"���T�+!��r�3��X.�j�U��r�>�?�cP����OQaP�,W���I>ؓ�T��!=ȑO����B���W� �����e��"��F���ޘ�Ua+�sQ(����c���*hԔ=��9IP>VC��E���f�U`�FT?��C�<�޺Ũ+��>�0��`,�P� ��9h�W�ms�E��"�1 F�=�b��z|$v��3#]�*rZ��y���B������ T���V�(S���|^��F*���bf�L*���6 %t���6��U��~�߯Y�F�L��Ƕx�,֗���f�zz���/ܱz�/qz�٬��O�����������w�А@e{�_r76f�k�7����ո��Y��������/�;� ��*�6 N��;���[b�)��nW�*P�& ��`���JB��C=Q��(V{H���fr��Bf�(P�& ��`����k�CQ��(V{�1��bT�. �a`�^wX���GB��� �j��\ +�<~��0w\ T���u|�@{��B,pQ(���G�"���Q��3�v(�eIxo�\��¼3b���*������N���L� U�Z���� ��� ��$|'�g����/�� HUf�Y�8{�W���غ�v|%�����d� �$��(�M�_ (� _ rc����zjd�5��Br0����6�3�PO�`4���?�هzW�B,0Q($�H=(\K��"��F���ޘ`p4a��0�? 0F�;��FM�#��͒&T�E��"���HsǕ�@[P�Y���1*��0��`,�P� ��9h�����z�\ +¼3b���*����G�JPYn��0��:���iU�ǽ8�@u�[?E�m��L�J`ud$���Y�������wK\95Hu��d*���ƙ�E{�}(+q�4�M�^v��ce9�5�m���w~��D����C��$w~���q6�4�`��y�L ��D��L#�|@a����,E X�b���|@b�+�qv�Z��L ��4R����k�C=Q��(V{�1��"T�. �a`�^wX���GB���P���\ +�<~��0{��؂���:>x�����iV�X��?B0�s�(X���Ȝ �C��`��sQ(��F���k�زC���7�>��3��|-3����'"S�yc#���Wr�ƙ��O�3�q�F>�ވͺ�_ӗ�x�B_��ss�3����g�M�.�}��}s�+����ś8f�#��C��A!VB�DQaP�s���\��,��D��`{H�4v�9fM<�-z�TD�|@Y��]("�@��j�7xcW��Q�E��"�������QS�H(v�$A�X ��A�Gb�=��N��~xU��<>x����-�\ +�<����+B�*h�G�L� \9v�=�0o�L�����-;���xg>�gK����o��:뙪�ŷ^��ӻ�v��T.^���T�xyw�׃��rf�����˟е<�hܛ��#.��2�j(�n��ܬĩ����mU��u)N_�g�բY�_-��;�z�W_�}�q�Y����ϱg�L��O�R�1�l��Ju�,�^��T޶�5�����>�\���7�bP�& ��`���>E X�b���| G�ׇ�����)(��Br0���S���BQ��(V{�1��"T�. �a`�^wX���GB��YV5�z. �A�Gb�=W�UlA�zd<���Ũ+�9>�0��`,�P� ��9h�W�-t�E��"�1 F�=�b��z|d�^�C^���2Q�j�>V=���E�����̤*#k�����Hk���YY�r�I��>�y����U�Z__�_ks���b߯ԫ�|����>!��ԫ��� �/�����kh�%6�hIx�\A�Ah �������(� h�=��%r�>�?�cP����OQa�A� ��>E X�b���1��H�(id,��G��u�UШ){$�E��m��( +�<~��0w\ T���u|�@{�B���x���<����+B�*h�G�L� �W�Y#[<8�0o�L�����-;���q�ze�C^���2Q�Z�>Q=��OD&3�:2���M}=�v�G���n���]<}��Ks}��n�ݟ�� �y.�o�o�s�'{\�W�".џ4��ե8^���ߴ�ny���7��� ����4l 2͆�@9%� �,6��f����O�@���$*'��Cz> �ӕ�4K������� �p ���F��[K��"�'A��x#�7%p�Yd$������5�UШ){$��1��� +�<~�� {.��$Q��U?xt�<[' ��� <�0�}�@�g��7����+Y9o��.��r�E��"�1 F�;�b��z�?�H������zd�����7D�� endstream endobj 7 0 obj <> /Contents 8 0 R>> endobj 8 0 obj <> stream x�՝�n7����L��C�s''���8�7X`��4����I ��ے��b�?[ꙅn�\�ׁ��OFV/?���2��Z�O��>���?޻���{���QǗ��}Ӫ����޿���:ڻ���iH��.�X�W5�Զ�V�Θ�n[��H�o�_]�/��N�s����}�Z~�X]}�>�>訟bfT�P�s�����{����YX�%����Ԍ,�t���F0c0�D���㰄��S'�y�^�n0!/�T���|��$7;���νx�)� ����Z1˵�'^�*j�l ��D�F�Ѩ��dFW� ܆�Ϋ�^s�2��$� ����=Y\y�`����< ��O5W}��ȅ�4�$3�Z�Kf�q�W�ۈ��U`��wB�P�j$3�Z�Kf�qv����yN��ǧ��'��5�O��哬�b�$�\,�;���]�2��O��g�I䘄?���-Ҽo�>���Yh�{3���8�GRsҼf��{A��4�u��9.)�,0_0�w��dk%Z�ʁT�=�/���4�ЩS�������(<����\��q�`�����@L��!iN����q��mx� �5g� �M��+��=Y\y�`�C�V%�>?�L���#:������p����+�mD�x�*�WY��;!N(j���5���� ;�lx��� 'T���yKHk{4�d��Ӭ[�y�d6��$�Oi�t�L�y*�N���$�!,O�߾{�^�.>^��X�����~V�_�W����Ǐ���'�y�~w6����Y���*��b=����m$>��P������m8Bkɽ:�Ӣ��� *R��D�������f�N�m���HI'P��/Z�gL$q�`�����@L��Tr-�����W����y�k�A�)��������{���DKP}~����G.t@8��Ns0�_XW~���d$^� �U�c�N��=��N�qvy܄�`6<{^ņ*��ia}]7�>����,���$붰>I2�׎���z���IX�� ;즁#�~�'���zӂ/���F��#�~x���!=����k���%?֜��S�yNHJ:y��c�`���mx�E!+!T���|�`$������ %�@�1������2�F!��+�^E항�<��UV�-����W����y�k�A�5�$^��9+ݓ�ŕ��9hYɖ���Ts�g��\�ȼ�d���<�� qۨE�xث��'�j�ϣ�y܄�`6<{^ņ*��iq�k�>�O��듬���$�\\�<ɔ���֋zڇ��\_�i`��?��-���-����`����nx���U=���]� �5 �id"�m''$%�:�c�`��|��yI��r �mO�'!� �v���)� ����:1˵�'^�*j�l ��D�F�Ҩ��dFW� ܆�Ϋ�^s�2�1%� ����=Y\y�`����p ��O5W}��ȅ�h�$@�Z�Kf�q�W�ۈ��U`��wB�P�j$@�Z�Kf�qv����yN��ǧ��ow�U}�eW`�d��'I�{���`o��a�ʹ�`��?��-��mZ�e�c�>Q������{$5'�kѶL#Q��1����N��C+�7�H�VR&�He�����L㻝:E[� II'Px�u'f�6!��+�^E항�<���X�.����W����y�k�A�5�$^]4��{2����2����KP}~�����G.t�8�m-G����q�W�ۈ��U`��wB�P��@k���-�qv����yN���'�����4����f���$���& i{��Y��`O���N�z�����\��.�?_��O�,��z]��o��������Poz�����Y��ϔ�>�GR3B�u���G#��q����tr� h-�W�7ZҒ0A�@*۞ȷ6�NPo0��u��Ś����t����ax}�Y�F�xث���5��3�������U�6> /Contents 10 0 R>> endobj 10 0 obj <> stream x��]]oܶ}����m�D!)R��~�"H��-.������ۛ�����m���*��ր_�fr�r�:L����H���(���:��~<�3����{���{��Ш�u���j�e/��{����:ݻ�w�T �o���T�����[�c W���T�o~X������c�R�����ݧ���[u�W�Q�$e��PMY*�㯯�z����Ɨ�Ryo��"�0�����C�����S�maʪU'���xX���~u�%�\�iCe��>K�W�C;�ئ��n���v���+���;��N��JYm�Kݾ4:����rj�Qy��(�ޤn��P���߳�*1e6��J�j�J���P� ������`��������uX��2|���������[�@ U�s�m����g)ۻ�E"oW'��ɔ�S*�i��Y�IM���^�s?Hʚ�������tm�4�l[V��(��/���,˯}�b�Ó�������zyq|�����t�7j�ⲻX�P?w7g������Z�W-|F����_���B��yy�����rZ�������ٍZ}��>��-Ի ��Nm���7�| d��}�L�Xq������n ����߫�wQʪ����� |�m�����4��'h8SԶ��E��0n����R,1q("��X��U�"LD�+�Q���^[X��C�a�|alJ��ġ�Nc��@�h-ch � \��'�1��R,qq(���䣀c���*xԜ=2��+t��a��K\�*�<�±��p�;�o���ٝ Wy�;A���;A&2ם�W�`&ɝ�-\=�N��մ+A��ŕ�W���J�}=�oy%���T���`�+AF:ە��z��>�J�Q�x%����o�����MAP�%&E�p��Ğ9�� x��=�e�=s ��R,1q("��X��%Y�>�W��D��ƀnL�j���8U�y�Q�1~�qt�����K\�*�<��1�P� %�Q8d�WC���š�"Λ0(Ư=�b��z|^W�?��+A��TW�LuWW�Ld�+A���L2Wc'] 2:]��|c��ō�5���F�j=�oy#pރכf�d����3�U�-o՜7���۵�y��`� (��ġ�Nc�b���e�!�@�%j��ŀ7�2��` (��"r8�Ջ��&kه� x��=�ЍI\-����8O> 8Ư;��G��#����=��š�"ʓ��sT�(T���G���D�X��PT�ɏ�.��U�(Y� ;��Z�y'.Eqބ�@1~�qvH��3���s�2�'�@՝���\7��f�x#�].������t.��$瘥oq'�����'�W�N��h����P6�+����g��9�2|���U�jFG�A�YS稉{֌�IL���4V��-��14A��G��#z1P�C�C�R�ŏ~����5Hz1PY��1�W��D��ƀnL�'�qI��CQE�'��W����Q��D3�e��PT��{d����P�� (Y���C:�7�J�{�����G�@�*x��G�L�JnW3�9qq(���&���k��ذC����/K�_�U���g��r���l����>p��Yx�pz���t��?�ϒ���07~^W�Ɵ����m�8��5~�jF?_:�K�K�K� 9b�* r�;��;jxM|�%"C�%S9C5�ыM �&�Y3�aC�1�'�>`��e D�+�Q��dc@7&q��Gr�S�Γ���뎫�Qs��(F�S2���4����=2����L��:V�����f|�!�x���<�±��p�j�/�A��/>�Tvn��B�Tg7���"�����������v��o������3X�u�:�=�����u�g���_����л`�����7��{��֮���y��u�>^�����ٕ��=�ˏ�{7M�(y���}qՌ^޴�7��x� 6(7��KL���4V/*bvc��G��#z1��ٍ��x�mx�KL���4V/J�U�D�+�Q��dc@7&qT�%.Eq�|p�_w\���GF�j��j� \�*�> /Contents 12 0 R>> endobj 12 0 obj <> stream x����R�0F�y�oi��@Y�Z�qe���)�ёb�_��_�R� !�ܛ�{� NDH�&L��번�Q,P|ڽ 4������k�}�`�B�Y?��5��JB!��5�����c^���>���:^��?��Y!y��`7޼Dii<��S��{��C8_��<�� XƚY endstream endobj 1 0 obj <> endobj 13 0 obj <> endobj 14 0 obj <> endobj 15 0 obj <> endobj 16 0 obj <> endobj 17 0 obj <> endobj 2 0 obj <> /ExtGState << /GS1 13 0 R >> >> endobj 18 0 obj << /Producer (��mPDF 5.7.4) /Author (��Dronematica) /CreationDate (20200910213653+02'00') /ModDate (20200910213653+02'00') >> endobj 19 0 obj << /Type /Catalog /Pages 1 0 R /OpenAction [3 0 R /XYZ null null 1] /PageLayout /OneColumn >> endobj xref 0 20 0000000000 65535 f 0000014317 00000 n 0000014889 00000 n 0000000015 00000 n 0000000223 00000 n 0000003339 00000 n 0000003547 00000 n 0000006915 00000 n 0000007123 00000 n 0000010289 00000 n 0000010498 00000 n 0000013757 00000 n 0000013967 00000 n 0000014431 00000 n 0000014493 00000 n 0000014590 00000 n 0000014692 00000 n 0000014791 00000 n 0000015040 00000 n 0000015203 00000 n trailer << /Size 20 /Root 19 0 R /Info 18 0 R /ID [ ] >> startxref 15313 %%EOF

 

 

Edited by kongondo
very long text placed inside spoiler
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...