[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

SF.net SVN: ledger-smb:[3739] trunk



Revision: 3739
          http://ledger-smb.svn.sourceforge.net/ledger-smb/?rev=3739&view=rev
Author:   einhverfr
Date:     2011-09-24 19:26:58 +0000 (Sat, 24 Sep 2011)
Log Message:
-----------
Merging from branches/1.3

Modified Paths:
--------------
    trunk/Changelog
    trunk/LedgerSMB/Auth/DB.pm
    trunk/doc/LedgerSMB-manual.pdf
    trunk/doc/manual/LedgerSMB-manual.aux
    trunk/doc/manual/LedgerSMB-manual.lof
    trunk/doc/manual/LedgerSMB-manual.tex
    trunk/doc/manual/LedgerSMB-manual.toc
    trunk/sql/Pg-database.sql
    trunk/sql/modules/Payment.sql
    trunk/sql/modules/Session.sql
    trunk/sql/modules/test/Reconciliation.sql

Added Paths:
-----------
    trunk/sql/upgrade/3738-drop-session-transaction-id.sql

Property Changed:
----------------
    trunk/


Property changes on: trunk
___________________________________________________________________
Modified: svn:mergeinfo
   - /branches/1.3:3711-3733
   + /branches/1.3:3711-3738

Modified: trunk/Changelog
===================================================================
--- trunk/Changelog	2011-09-24 19:17:44 UTC (rev 3738)
+++ trunk/Changelog	2011-09-24 19:26:58 UTC (rev 3739)
@@ -23,7 +23,12 @@
 * GL reports account is ajax-style autocomplete (John W)
 * Journal Entry screen now uses AJAX-style autocomplete for accounts (Chris T)
 * GL reference now populated by default in the initial screen (Chris T).
+* Files can be attached to financial transactions (Chris T)
 
+AR/AP:
+* Files can be attached to AR/AP transactions (Chris T)
+* Project numbers can be displayed on AR/AP transactions report (Chris T)
+
 Reconciliation:
 * Reconciliation is on new codebase!
 * Redesigned workflow (Chris T and Aurynn)
@@ -46,7 +51,17 @@
 
 Invoicing:
 * Can now set sales tax amounts and rates per invoice if necessary (Chris T).
+* Files can be attached to invoices (Chris T)
+* Invoices can be placed on hold (Chris T)
 
+Fixed Assets:
+* New Feature!
+* Group assets into classes to depreciate together (Chris T)
+* Depreciate assets using straight-line depreciation (Chris T)
+* Plugin model for time- or production-based depreciation methods (Chris T)
+* Dispose of assets --- full and partial disposal supported (Chris T)
+* Net Book Value Report (Chris T)
+
 Development:
 * New API structure for new code (Entire Team)
 * Better error handling/display (Jason and Chris T)
@@ -177,10 +192,8 @@
 * Fixed encoding errors in numeral to text conversion (Seneca)
 * Fixed the displayed number format for AP invoice taxes (Seneca)
 * Fixed the selection of taxes when validto is involved (Seneca, anarcat's
-  addtion to 1818792) 
+addition to 1818792) 
 
-
-
 Changelog for 1.2.10
 * Fixed bug 1765161, post button duplicates invoices.(Chris T)
 * Adding a minor fixes to COGS edge cases for reversed invoices. (Chris T)

Modified: trunk/LedgerSMB/Auth/DB.pm
===================================================================
--- trunk/LedgerSMB/Auth/DB.pm	2011-09-24 19:17:44 UTC (rev 3738)
+++ trunk/LedgerSMB/Auth/DB.pm	2011-09-24 19:26:58 UTC (rev 3739)
@@ -33,7 +33,6 @@
 =cut
 
 sub session_check {
-    use Time::HiRes qw(gettimeofday);
     my ( $cookie, $form ) = @_;
 
     my $path = ($ENV{SCRIPT_NAME});
@@ -101,8 +100,6 @@
         }
         else {
 
-#something's wrong, they have the cookie, but wrong user or the wrong transaction id. Hijack attempt?
-#destroy the session
             my $sessionDestroy = $dbh->prepare("");
 
             #delete the cookie in the browser
@@ -138,15 +135,10 @@
     my $path = ($ENV{SCRIPT_NAME});
     my $secure;
     $path =~ s|[^/]*$||;
-    use Time::HiRes qw(gettimeofday);
     my $dbh = $lsmb->{dbh};
     my $login = $lsmb->{login};
 
-    #microseconds are more than random enough for transaction_id
-    my ( $ignore, $newTransactionID ) = gettimeofday();
-    $newTransactionID = int $newTransactionID;
 
-
     if ( !$ENV{GATEWAY_INTERFACE} ) {
 
         #don't create cookies or sessions for CLI use
@@ -171,10 +163,10 @@
       $dbh->prepare("SELECT nextval('session_session_id_seq'), md5(random()::text);");
 
     my $createNew = $dbh->prepare(
-        "INSERT INTO session (session_id, users_id, token, transaction_id) 
+        "INSERT INTO session (session_id, users_id, token) 
                                         VALUES(?, (SELECT id
                                                      FROM users
-                                                    WHERE username = SESSION_USER), ?, ?);"
+                                                    WHERE username = SESSION_USER), ?);"
     );
 
 # Fail early if the user isn't in the users table
@@ -215,7 +207,7 @@
     my ( $newSessionID, $newToken ) = $fetchSequence->fetchrow_array;
 
     #create a new session
-    $createNew->execute( $newSessionID, $newToken, $newTransactionID )
+    $createNew->execute( $newSessionID, $newToken )
       || http_error('401');
     $lsmb->{session_id} = $newSessionID;
 

Modified: trunk/doc/LedgerSMB-manual.pdf
===================================================================
--- trunk/doc/LedgerSMB-manual.pdf	2011-09-24 19:17:44 UTC (rev 3738)
+++ trunk/doc/LedgerSMB-manual.pdf	2011-09-24 19:26:58 UTC (rev 3739)
@@ -16,4510 +16,4764 @@
 << /S /GoTo /D (subsection.1.1) >>
 endobj
 16 0 obj
-(Why LedgerSMB)
+(What is LedgerSMB)
 endobj
 17 0 obj
-<< /S /GoTo /D (subsubsection.1.1.1) >>
+<< /S /GoTo /D (subsection.1.2) >>
 endobj
 20 0 obj
-(Advantages of LedgerSMB)
+(Why LedgerSMB)
 endobj
 21 0 obj
-<< /S /GoTo /D (subsubsection.1.1.2) >>
+<< /S /GoTo /D (subsubsection.1.2.1) >>
 endobj
 24 0 obj
-(Key Features)
+(Advantages of LedgerSMB)
 endobj
 25 0 obj
-<< /S /GoTo /D (subsection.1.2) >>
+<< /S /GoTo /D (subsubsection.1.2.2) >>
 endobj
 28 0 obj
-(Limitations of LedgerSMB)
+(Key Features)
 endobj
 29 0 obj
 << /S /GoTo /D (subsection.1.3) >>
 endobj
 32 0 obj
-(System Requirements of LedgerSMB)
+(Limitations of LedgerSMB)
 endobj
 33 0 obj
-<< /S /GoTo /D (section.2) >>
+<< /S /GoTo /D (subsection.1.4) >>
 endobj
 36 0 obj
-(User Account and Database Administration Basics)
+(System Requirements of LedgerSMB)
 endobj
 37 0 obj
-<< /S /GoTo /D (subsection.2.1) >>
+<< /S /GoTo /D (section.2) >>
 endobj
 40 0 obj
-(Companies and Datasets)
+(User Account and Database Administration Basics)
 endobj
 41 0 obj
-<< /S /GoTo /D (subsection.2.2) >>
+<< /S /GoTo /D (subsection.2.1) >>
 endobj
 44 0 obj
-(How to Create a User)
+(Companies and Datasets)
 endobj
 45 0 obj
-<< /S /GoTo /D (subsection.2.3) >>
+<< /S /GoTo /D (subsection.2.2) >>
 endobj
 48 0 obj
-(Permissions)
+(How to Create a User)
 endobj
 49 0 obj
-<< /S /GoTo /D (subsubsection.2.3.1) >>
+<< /S /GoTo /D (subsection.2.3) >>
 endobj
 52 0 obj
-(List of Roles)
+(Permissions)
 endobj
 53 0 obj
-<< /S /GoTo /D (section.3) >>
+<< /S /GoTo /D (subsubsection.2.3.1) >>
 endobj
 56 0 obj
-(Chart of Accounts)
+(List of Roles)
 endobj
 57 0 obj
-<< /S /GoTo /D (subsection.3.1) >>
+<< /S /GoTo /D (section.3) >>
 endobj
 60 0 obj
-(Introduction to Double Entry Bookkeeping)
+(Contact Management)
 endobj
 61 0 obj
-<< /S /GoTo /D (subsubsection.3.1.1) >>
+<< /S /GoTo /D (subsection.3.1) >>
 endobj
 64 0 obj
-(Business Entity)
+(Addresses)
 endobj
 65 0 obj
-<< /S /GoTo /D (subsubsection.3.1.2) >>
+<< /S /GoTo /D (subsection.3.2) >>
 endobj
 68 0 obj
-(Double Entry)
+(Contact Info)
 endobj
 69 0 obj
-<< /S /GoTo /D (subsubsection.3.1.3) >>
+<< /S /GoTo /D (subsection.3.3) >>
 endobj
 72 0 obj
-(Accounts)
+(Bank Accounts)
 endobj
 73 0 obj
-<< /S /GoTo /D (subsubsection.3.1.4) >>
+<< /S /GoTo /D (subsection.3.4) >>
 endobj
 76 0 obj
-(Debits and Credits)
+(Notes)
 endobj
 77 0 obj
-<< /S /GoTo /D (subsubsection.3.1.5) >>
+<< /S /GoTo /D (section.4) >>
 endobj
 80 0 obj
-(Accrual)
+(Chart of Accounts)
 endobj
 81 0 obj
-<< /S /GoTo /D (subsubsection.3.1.6) >>
+<< /S /GoTo /D (subsection.4.1) >>
 endobj
 84 0 obj
-(Separation of Duties)
+(Introduction to Double Entry Bookkeeping)
 endobj
 85 0 obj
-<< /S /GoTo /D (subsubsection.3.1.7) >>
+<< /S /GoTo /D (subsubsection.4.1.1) >>
 endobj
 88 0 obj
-(References)
+(Business Entity)
 endobj
 89 0 obj
-<< /S /GoTo /D (subsection.3.2) >>
+<< /S /GoTo /D (subsubsection.4.1.2) >>
 endobj
 92 0 obj
-(General Guidelines on Numbering Accounts)
+(Double Entry)
 endobj
 93 0 obj
-<< /S /GoTo /D (subsection.3.3) >>
+<< /S /GoTo /D (subsubsection.4.1.3) >>
 endobj
 96 0 obj
-(Adding/Modifying Accounts)
+(Accounts)
 endobj
 97 0 obj
-<< /S /GoTo /D (subsection.3.4) >>
+<< /S /GoTo /D (subsubsection.4.1.4) >>
 endobj
 100 0 obj
-(Listing Account Balances and Transactions)
+(Debits and Credits)
 endobj
 101 0 obj
-<< /S /GoTo /D (section.4) >>
+<< /S /GoTo /D (subsubsection.4.1.5) >>
 endobj
 104 0 obj
-(Administration)
+(Accrual)
 endobj
 105 0 obj
-<< /S /GoTo /D (subsection.4.1) >>
+<< /S /GoTo /D (subsubsection.4.1.6) >>
 endobj
 108 0 obj
-(Taxes, Defaults, and Preferences)
+(Separation of Duties)
 endobj
 109 0 obj
-<< /S /GoTo /D (subsubsection.4.1.1) >>
+<< /S /GoTo /D (subsubsection.4.1.7) >>
 endobj
 112 0 obj
-(Adding A Sales Tax Account)
+(References)
 endobj
 113 0 obj
-<< /S /GoTo /D (subsubsection.4.1.2) >>
+<< /S /GoTo /D (subsection.4.2) >>
 endobj
 116 0 obj
-(Setting a Sales Tax Amount)
+(General Guidelines on Numbering Accounts)
 endobj
 117 0 obj
-<< /S /GoTo /D (subsubsection.4.1.3) >>
+<< /S /GoTo /D (subsection.4.3) >>
 endobj
 120 0 obj
-(Default Account Setup)
+(Adding/Modifying Accounts)
 endobj
 121 0 obj
-<< /S /GoTo /D (subsubsection.4.1.4) >>
+<< /S /GoTo /D (subsection.4.4) >>
 endobj
 124 0 obj
-(Currency Setup)
+(Listing Account Balances and Transactions)
 endobj
 125 0 obj
-<< /S /GoTo /D (subsubsection.4.1.5) >>
+<< /S /GoTo /D (section.5) >>
 endobj
 128 0 obj
-(Sequence Settings)
+(Administration)
 endobj
 129 0 obj
-<< /S /GoTo /D (subsection.4.2) >>
+<< /S /GoTo /D (subsection.5.1) >>
 endobj
 132 0 obj
-(Audit Control)
+(Taxes, Defaults, and Preferences)
 endobj
 133 0 obj
-<< /S /GoTo /D (subsubsection.4.2.1) >>
+<< /S /GoTo /D (subsubsection.5.1.1) >>
 endobj
 136 0 obj
-(Explaining transaction reversal)
+(Adding A Sales Tax Account)
 endobj
 137 0 obj
-<< /S /GoTo /D (subsubsection.4.2.2) >>
+<< /S /GoTo /D (subsubsection.5.1.2) >>
 endobj
 140 0 obj
-(Close books option)
+(Setting a Sales Tax Amount)
 endobj
 141 0 obj
-<< /S /GoTo /D (subsubsection.4.2.3) >>
+<< /S /GoTo /D (subsubsection.5.1.3) >>
 endobj
 144 0 obj
-(Audit Trails)
+(Default Account Setup)
 endobj
 145 0 obj
-<< /S /GoTo /D (subsection.4.3) >>
+<< /S /GoTo /D (subsubsection.5.1.4) >>
 endobj
 148 0 obj
-(Departments)
+(Currency Setup)
 endobj
 149 0 obj
-<< /S /GoTo /D (subsubsection.4.3.1) >>
+<< /S /GoTo /D (subsubsection.5.1.5) >>
 endobj
 152 0 obj
-(Cost v Profit Centers.)
+(Sequence Settings)
 endobj
 153 0 obj
-<< /S /GoTo /D (subsection.4.4) >>
+<< /S /GoTo /D (subsection.5.2) >>
 endobj
 156 0 obj
-(Warehouses)
+(Audit Control)
 endobj
 157 0 obj
-<< /S /GoTo /D (subsection.4.5) >>
+<< /S /GoTo /D (subsubsection.5.2.1) >>
 endobj
 160 0 obj
-(Languages)
+(Explaining transaction reversal)
 endobj
 161 0 obj
-<< /S /GoTo /D (subsection.4.6) >>
+<< /S /GoTo /D (subsubsection.5.2.2) >>
 endobj
 164 0 obj
-(Types of Businesses)
+(Close books option)
 endobj
 165 0 obj
-<< /S /GoTo /D (subsection.4.7) >>
+<< /S /GoTo /D (subsubsection.5.2.3) >>
 endobj
 168 0 obj
-(Misc.)
+(Audit Trails)
 endobj
 169 0 obj
-<< /S /GoTo /D (subsubsection.4.7.1) >>
+<< /S /GoTo /D (subsection.5.3) >>
 endobj
 172 0 obj
-(GIFI)
+(Departments)
 endobj
 173 0 obj
-<< /S /GoTo /D (subsubsection.4.7.2) >>
+<< /S /GoTo /D (subsubsection.5.3.1) >>
 endobj
 176 0 obj
-(SIC)
+(Cost v Profit Centers.)
 endobj
 177 0 obj
-<< /S /GoTo /D (subsubsection.4.7.3) >>
+<< /S /GoTo /D (subsection.5.4) >>
 endobj
 180 0 obj
-(Overview of Template Editing)
+(Warehouses)
 endobj
 181 0 obj
-<< /S /GoTo /D (subsubsection.4.7.4) >>
+<< /S /GoTo /D (subsection.5.5) >>
 endobj
 184 0 obj
-(Year-end)
+(Languages)
 endobj
 185 0 obj
-<< /S /GoTo /D (subsection.4.8) >>
+<< /S /GoTo /D (subsection.5.6) >>
 endobj
 188 0 obj
-(Options in the ledger-smb.conf)
+(Types of Businesses)
 endobj
 189 0 obj
-<< /S /GoTo /D (section.5) >>
+<< /S /GoTo /D (subsection.5.7) >>
 endobj
 192 0 obj
-(Goods and Services)
+(Misc.)
 endobj
 193 0 obj
-<< /S /GoTo /D (subsection.5.1) >>
+<< /S /GoTo /D (subsubsection.5.7.1) >>
 endobj
 196 0 obj
-(Basic Terms)
+(GIFI)
 endobj
 197 0 obj
-<< /S /GoTo /D (subsection.5.2) >>
+<< /S /GoTo /D (subsubsection.5.7.2) >>
 endobj
 200 0 obj
-(The Price Matrix)
+(SIC)
 endobj
 201 0 obj
-<< /S /GoTo /D (subsection.5.3) >>
+<< /S /GoTo /D (subsubsection.5.7.3) >>
 endobj
 204 0 obj
-(Pricegroups)
+(Overview of Template Editing)
 endobj
 205 0 obj
-<< /S /GoTo /D (subsection.5.4) >>
+<< /S /GoTo /D (subsubsection.5.7.4) >>
 endobj
 208 0 obj
-(Groups)
+(Year-end)
 endobj
 209 0 obj
-<< /S /GoTo /D (subsection.5.5) >>
+<< /S /GoTo /D (subsection.5.8) >>
 endobj
 212 0 obj
-(Labor/Overhead)
+(Options in the ledger-smb.conf)
 endobj
 213 0 obj
-<< /S /GoTo /D (subsection.5.6) >>
+<< /S /GoTo /D (section.6) >>
 endobj
 216 0 obj
-(Services)
+(Goods and Services)
 endobj
 217 0 obj
-<< /S /GoTo /D (subsubsection.5.6.1) >>
+<< /S /GoTo /D (subsection.6.1) >>
 endobj
 220 0 obj
-(Shipping and Handling as a Service)
+(Basic Terms)
 endobj
 221 0 obj
-<< /S /GoTo /D (subsection.5.7) >>
+<< /S /GoTo /D (subsection.6.2) >>
 endobj
 224 0 obj
-(Parts)
+(The Price Matrix)
 endobj
 225 0 obj
-<< /S /GoTo /D (subsection.5.8) >>
+<< /S /GoTo /D (subsection.6.3) >>
 endobj
 228 0 obj
-(Assemblies and Manufacturing)
+(Pricegroups)
 endobj
 229 0 obj
-<< /S /GoTo /D (subsubsection.5.8.1) >>
+<< /S /GoTo /D (subsection.6.4) >>
 endobj
 232 0 obj
-(Stocking Assemblies)
+(Groups)
 endobj
 233 0 obj
-<< /S /GoTo /D (subsection.5.9) >>
+<< /S /GoTo /D (subsection.6.5) >>
 endobj
 236 0 obj
-(Reporting)
+(Labor/Overhead)
 endobj
 237 0 obj
-<< /S /GoTo /D (subsubsection.5.9.1) >>
+<< /S /GoTo /D (subsection.6.6) >>
 endobj
 240 0 obj
-(All Items and Parts Reports)
+(Services)
 endobj
 241 0 obj
-<< /S /GoTo /D (subsubsection.5.9.2) >>
+<< /S /GoTo /D (subsubsection.6.6.1) >>
 endobj
 244 0 obj
-(Requirements)
+(Shipping and Handling as a Service)
 endobj
 245 0 obj
-<< /S /GoTo /D (subsubsection.5.9.3) >>
+<< /S /GoTo /D (subsection.6.7) >>
 endobj
 248 0 obj
-(Services and Labor)
+(Parts)
 endobj
 249 0 obj
-<< /S /GoTo /D (subsubsection.5.9.4) >>
+<< /S /GoTo /D (subsection.6.8) >>
 endobj
 252 0 obj
-(Assemblies)
+(Assemblies and Manufacturing)
 endobj
 253 0 obj
-<< /S /GoTo /D (subsubsection.5.9.5) >>
+<< /S /GoTo /D (subsubsection.6.8.1) >>
 endobj
 256 0 obj
-(Groups and Pricegroups)
+(Stocking Assemblies)
 endobj
 257 0 obj
-<< /S /GoTo /D (subsection.5.10) >>
+<< /S /GoTo /D (subsection.6.9) >>
 endobj
 260 0 obj
-(Translations)
+(Reporting)
 endobj
 261 0 obj
-<< /S /GoTo /D (subsection.5.11) >>
+<< /S /GoTo /D (subsubsection.6.9.1) >>
 endobj
 264 0 obj
-(How Cost of Goods Sold is tracked)
+(All Items and Parts Reports)
 endobj
 265 0 obj
-<< /S /GoTo /D (section.6) >>
+<< /S /GoTo /D (subsubsection.6.9.2) >>
 endobj
 268 0 obj
-(Transaction Approval)
+(Requirements)
 endobj
 269 0 obj
-<< /S /GoTo /D (subsection.6.1) >>
+<< /S /GoTo /D (subsubsection.6.9.3) >>
 endobj
 272 0 obj
-(Batches and Vouchers)
+(Services and Labor)
 endobj
 273 0 obj
-<< /S /GoTo /D (subsection.6.2) >>
+<< /S /GoTo /D (subsubsection.6.9.4) >>
 endobj
 276 0 obj
-(Drafts)
+(Assemblies)
 endobj
 277 0 obj
-<< /S /GoTo /D (section.7) >>
+<< /S /GoTo /D (subsubsection.6.9.5) >>
 endobj
 280 0 obj
-(AP)
+(Groups and Pricegroups)
 endobj
 281 0 obj
-<< /S /GoTo /D (subsection.7.1) >>
+<< /S /GoTo /D (subsection.6.10) >>
 endobj
 284 0 obj
-(Basic AP Concepts)
+(Translations)
 endobj
 285 0 obj
-<< /S /GoTo /D (subsection.7.2) >>
+<< /S /GoTo /D (subsection.6.11) >>
 endobj
 288 0 obj
-(Vendors)
+(How Cost of Goods Sold is tracked)
 endobj
 289 0 obj
-<< /S /GoTo /D (subsection.7.3) >>
+<< /S /GoTo /D (section.7) >>
 endobj
 292 0 obj
-(AP Transactions)
+(Transaction Approval)
 endobj
 293 0 obj
-<< /S /GoTo /D (subsection.7.4) >>
+<< /S /GoTo /D (subsection.7.1) >>
 endobj
 296 0 obj
-(AP Invoices)
+(Batches and Vouchers)
 endobj
 297 0 obj
-<< /S /GoTo /D (subsubsection.7.4.1) >>
+<< /S /GoTo /D (subsection.7.2) >>
 endobj
 300 0 obj
-(Correcting an AP Invoice)
+(Drafts)
 endobj
 301 0 obj
-<< /S /GoTo /D (subsection.7.5) >>
+<< /S /GoTo /D (section.8) >>
 endobj
 304 0 obj
-(Cash payment And Check Printing)
+(AP)
 endobj
 305 0 obj
-<< /S /GoTo /D (subsubsection.7.5.1) >>
+<< /S /GoTo /D (subsection.8.1) >>
 endobj
 308 0 obj
-(Rapid Payment Entry Screen)
+(Basic AP Concepts)
 endobj
 309 0 obj
-<< /S /GoTo /D (subsection.7.6) >>
+<< /S /GoTo /D (subsection.8.2) >>
 endobj
 312 0 obj
-(Transaction/Invoice Reporting)
+(Vendors)
 endobj
 313 0 obj
-<< /S /GoTo /D (subsubsection.7.6.1) >>
+<< /S /GoTo /D (subsection.8.3) >>
 endobj
 316 0 obj
-(Transactions Report)
+(AP Transactions)
 endobj
 317 0 obj
-<< /S /GoTo /D (subsubsection.7.6.2) >>
+<< /S /GoTo /D (subsection.8.4) >>
 endobj
 320 0 obj
-(Outstanding Report)
+(AP Invoices)
 endobj
 321 0 obj
-<< /S /GoTo /D (subsubsection.7.6.3) >>
+<< /S /GoTo /D (subsubsection.8.4.1) >>
 endobj
 324 0 obj
-(AP Aging Report)
+(Correcting an AP Invoice)
 endobj
 325 0 obj
-<< /S /GoTo /D (subsubsection.7.6.4) >>
+<< /S /GoTo /D (subsection.8.5) >>
 endobj
 328 0 obj
-(Tax Paid and Non-taxable Report)
+(Cash payment And Check Printing)
 endobj
 329 0 obj
-<< /S /GoTo /D (subsection.7.7) >>
+<< /S /GoTo /D (subsubsection.8.5.1) >>
 endobj
 332 0 obj
-(Vendor Reporting)
+(Batch Payment Entry Screen)
 endobj
 333 0 obj
-<< /S /GoTo /D (subsubsection.7.7.1) >>
+<< /S /GoTo /D (subsection.8.6) >>
 endobj
 336 0 obj
-(Vendor Search)
+(Transaction/Invoice Reporting)
 endobj
 337 0 obj
-<< /S /GoTo /D (subsubsection.7.7.2) >>
+<< /S /GoTo /D (subsubsection.8.6.1) >>
 endobj
 340 0 obj
-(Vendor History)
+(Transactions Report)
 endobj
 341 0 obj
-<< /S /GoTo /D (section.8) >>
+<< /S /GoTo /D (subsubsection.8.6.2) >>
 endobj
 344 0 obj
-(AR)
+(Outstanding Report)
 endobj
 345 0 obj
-<< /S /GoTo /D (subsection.8.1) >>
+<< /S /GoTo /D (subsubsection.8.6.3) >>
 endobj
 348 0 obj
-(Customers)
+(AP Aging Report)
 endobj
 349 0 obj
-<< /S /GoTo /D (subsubsection.8.1.1) >>
+<< /S /GoTo /D (subsubsection.8.6.4) >>
 endobj
 352 0 obj
-(Customer Price Matrix)
+(Tax Paid and Non-taxable Report)
 endobj
 353 0 obj
-<< /S /GoTo /D (subsection.8.2) >>
+<< /S /GoTo /D (subsection.8.7) >>
 endobj
 356 0 obj
-(AR Transactions)
+(Vendor Reporting)
 endobj
 357 0 obj
-<< /S /GoTo /D (subsection.8.3) >>
+<< /S /GoTo /D (subsubsection.8.7.1) >>
 endobj
 360 0 obj
-(AR Invoices)
+(Vendor Search)
 endobj
 361 0 obj
-<< /S /GoTo /D (subsection.8.4) >>
+<< /S /GoTo /D (subsubsection.8.7.2) >>
 endobj
 364 0 obj
-(Cash Receipt)
+(Vendor History)
 endobj
 365 0 obj
-<< /S /GoTo /D (subsubsection.8.4.1) >>
+<< /S /GoTo /D (section.9) >>
 endobj
 368 0 obj
-(Cash Receipts for multiple customers)
+(AR)
 endobj
 369 0 obj
-<< /S /GoTo /D (subsection.8.5) >>
+<< /S /GoTo /D (subsection.9.1) >>
 endobj
 372 0 obj
-(AR Transaction Reporting)
+(Customers)
 endobj
 373 0 obj
-<< /S /GoTo /D (subsubsection.8.5.1) >>
+<< /S /GoTo /D (subsubsection.9.1.1) >>
 endobj
 376 0 obj
-(AR Transactions Report)
+(Customer Price Matrix)
 endobj
 377 0 obj
-<< /S /GoTo /D (subsubsection.8.5.2) >>
+<< /S /GoTo /D (subsection.9.2) >>
 endobj
 380 0 obj
-(AR Aging Report)
+(AR Transactions)
 endobj
 381 0 obj
-<< /S /GoTo /D (subsection.8.6) >>
+<< /S /GoTo /D (subsection.9.3) >>
 endobj
 384 0 obj
-(Customer Reporting)
+(AR Invoices)
 endobj
 385 0 obj
-<< /S /GoTo /D (section.9) >>
+<< /S /GoTo /D (subsection.9.4) >>
 endobj
 388 0 obj
-(Projects)
+(Cash Receipt)
 endobj
 389 0 obj
-<< /S /GoTo /D (subsection.9.1) >>
+<< /S /GoTo /D (subsubsection.9.4.1) >>
 endobj
 392 0 obj
-(Project Basics)
+(Cash Receipts for multiple customers)
 endobj
 393 0 obj
-<< /S /GoTo /D (subsection.9.2) >>
+<< /S /GoTo /D (subsection.9.5) >>
 endobj
 396 0 obj
-(Timecards)
+(AR Transaction Reporting)
 endobj
 397 0 obj
-<< /S /GoTo /D (subsection.9.3) >>
+<< /S /GoTo /D (subsubsection.9.5.1) >>
 endobj
 400 0 obj
-(Projects and Invoices)
+(AR Transactions Report)
 endobj
 401 0 obj
-<< /S /GoTo /D (subsection.9.4) >>
+<< /S /GoTo /D (subsubsection.9.5.2) >>
 endobj
 404 0 obj
-(Reporting)
+(AR Aging Report)
 endobj
 405 0 obj
-<< /S /GoTo /D (subsubsection.9.4.1) >>
+<< /S /GoTo /D (subsection.9.6) >>
 endobj
 408 0 obj
-(Timecard Reporting)
+(Customer Reporting)
 endobj
 409 0 obj
-<< /S /GoTo /D (subsubsection.9.4.2) >>
+<< /S /GoTo /D (section.10) >>
 endobj
 412 0 obj
-(Project Transaction Reporting)
+(Projects)
 endobj
 413 0 obj
-<< /S /GoTo /D (subsubsection.9.4.3) >>
+<< /S /GoTo /D (subsection.10.1) >>
 endobj
 416 0 obj
-(List of Projects)
+(Project Basics)
 endobj
 417 0 obj
-<< /S /GoTo /D (subsection.9.5) >>
+<< /S /GoTo /D (subsection.10.2) >>
 endobj
 420 0 obj
-(Possibilities for Using Projects)
+(Timecards)
 endobj
 421 0 obj
-<< /S /GoTo /D (section.10) >>
+<< /S /GoTo /D (subsection.10.3) >>
 endobj
 424 0 obj
-(Quotations and Order Management)
+(Projects and Invoices)
 endobj
 425 0 obj
-<< /S /GoTo /D (subsection.10.1) >>
+<< /S /GoTo /D (subsection.10.4) >>
 endobj
 428 0 obj
-(Sales Orders)
+(Reporting)
 endobj
 429 0 obj
-<< /S /GoTo /D (subsection.10.2) >>
+<< /S /GoTo /D (subsubsection.10.4.1) >>
 endobj
 432 0 obj
-(Quotations)
+(Timecard Reporting)
 endobj
 433 0 obj
-<< /S /GoTo /D (subsection.10.3) >>
+<< /S /GoTo /D (subsubsection.10.4.2) >>
 endobj
 436 0 obj
-(Shipping)
+(Project Transaction Reporting)
 endobj
 437 0 obj
-<< /S /GoTo /D (subsection.10.4) >>
+<< /S /GoTo /D (subsubsection.10.4.3) >>
 endobj
 440 0 obj
-(AR Work Flow)
+(List of Projects)
 endobj
 441 0 obj
-<< /S /GoTo /D (subsubsection.10.4.1) >>
+<< /S /GoTo /D (subsection.10.5) >>
 endobj
 444 0 obj
-(Service Example)
+(Possibilities for Using Projects)
 endobj
 445 0 obj
-<< /S /GoTo /D (subsubsection.10.4.2) >>
+<< /S /GoTo /D (section.11) >>
 endobj
 448 0 obj
-(Single Warehouse Example)
+(Quotations and Order Management)
 endobj
 449 0 obj
-<< /S /GoTo /D (subsubsection.10.4.3) >>
+<< /S /GoTo /D (subsection.11.1) >>
 endobj
 452 0 obj
-(Multiple Warehouse Example)
+(Sales Orders)
 endobj
 453 0 obj
-<< /S /GoTo /D (subsection.10.5) >>
+<< /S /GoTo /D (subsection.11.2) >>
 endobj
 456 0 obj
-(Requests for Quotation \(RFQ\))
+(Quotations)
 endobj
 457 0 obj
-<< /S /GoTo /D (subsection.10.6) >>
+<< /S /GoTo /D (subsection.11.3) >>
 endobj
 460 0 obj
-(Purchase Orders)
+(Shipping)
 endobj
 461 0 obj
-<< /S /GoTo /D (subsection.10.7) >>
+<< /S /GoTo /D (subsection.11.4) >>
 endobj
 464 0 obj
-(Receiving)
+(AR Work Flow)
 endobj
 465 0 obj
-<< /S /GoTo /D (subsection.10.8) >>
+<< /S /GoTo /D (subsubsection.11.4.1) >>
 endobj
 468 0 obj
-(AP Work Flow)
+(Service Example)
 endobj
 469 0 obj
-<< /S /GoTo /D (subsubsection.10.8.1) >>
+<< /S /GoTo /D (subsubsection.11.4.2) >>
 endobj
 472 0 obj
-(Bookkeeper entering the received items, order completed in full)
+(Single Warehouse Example)
 endobj
 473 0 obj
-<< /S /GoTo /D (subsubsection.10.8.2) >>
+<< /S /GoTo /D (subsubsection.11.4.3) >>
 endobj
 476 0 obj
-(Bookkeeper entering received items, order completed in part)
+(Multiple Warehouse Example)
 endobj
 477 0 obj
-<< /S /GoTo /D (subsubsection.10.8.3) >>
+<< /S /GoTo /D (subsection.11.5) >>
 endobj
 480 0 obj
-(Receiving staff entering items)
+(Requests for Quotation \(RFQ\))
 endobj
 481 0 obj
-<< /S /GoTo /D (subsection.10.9) >>
+<< /S /GoTo /D (subsection.11.6) >>
 endobj
 484 0 obj
-(Generation and Consolidation)
+(Purchase Orders)
 endobj
 485 0 obj
-<< /S /GoTo /D (subsubsection.10.9.1) >>
+<< /S /GoTo /D (subsection.11.7) >>
 endobj
 488 0 obj
-(Generation)
+(Receiving)
 endobj
 489 0 obj
-<< /S /GoTo /D (subsubsection.10.9.2) >>
+<< /S /GoTo /D (subsection.11.8) >>
 endobj
 492 0 obj
-(Consolidation)
+(AP Work Flow)
 endobj
 493 0 obj
-<< /S /GoTo /D (subsection.10.10) >>
+<< /S /GoTo /D (subsubsection.11.8.1) >>
 endobj
 496 0 obj
-(Reporting)
+(Bookkeeper entering the received items, order completed in full)
 endobj
 497 0 obj
-<< /S /GoTo /D (subsection.10.11) >>
+<< /S /GoTo /D (subsubsection.11.8.2) >>
 endobj
 500 0 obj
-(Shipping Module: Transferring Inventory between Warehouses)
+(Bookkeeper entering received items, order completed in part)
 endobj
 501 0 obj
-<< /S /GoTo /D (section.11) >>
+<< /S /GoTo /D (subsubsection.11.8.3) >>
 endobj
 504 0 obj
-(HR)
+(Receiving staff entering items)
 endobj
 505 0 obj
-<< /S /GoTo /D (section.12) >>
+<< /S /GoTo /D (subsection.11.9) >>
 endobj
 508 0 obj
-(POS)
+(Generation and Consolidation)
 endobj
 509 0 obj
-<< /S /GoTo /D (subsection.12.1) >>
+<< /S /GoTo /D (subsubsection.11.9.1) >>
 endobj
 512 0 obj
-(Sales Screen)
+(Generation)
 endobj
 513 0 obj
-<< /S /GoTo /D (subsection.12.2) >>
+<< /S /GoTo /D (subsubsection.11.9.2) >>
 endobj
 516 0 obj
-(Possibilities for Data Entry)
+(Consolidation)
 endobj
 517 0 obj
-<< /S /GoTo /D (subsection.12.3) >>
+<< /S /GoTo /D (subsection.11.10) >>
 endobj
 520 0 obj
-(Hardware Support)
+(Reporting)
 endobj
 521 0 obj
-<< /S /GoTo /D (subsection.12.4) >>
+<< /S /GoTo /D (subsection.11.11) >>
 endobj
 524 0 obj
-(Reports)
+(Shipping Module: Transferring Inventory between Warehouses)
 endobj
 525 0 obj
-<< /S /GoTo /D (subsubsection.12.4.1) >>
+<< /S /GoTo /D (section.12) >>
 endobj
 528 0 obj
-(Open Invoices)
+(Fixed Assets)
 endobj
 529 0 obj
-<< /S /GoTo /D (subsubsection.12.4.2) >>
+<< /S /GoTo /D (subsection.12.1) >>
 endobj
 532 0 obj
-(Receipts)
+(Concepts and Workflows)
 endobj
 533 0 obj
-<< /S /GoTo /D (section.13) >>
+<< /S /GoTo /D (subsubsection.12.1.1) >>
 endobj
 536 0 obj
-(General Ledger)
+(Fixed Assets and Capital Expenses)
 endobj
 537 0 obj
-<< /S /GoTo /D (subsection.13.1) >>
+<< /S /GoTo /D (subsubsection.12.1.2) >>
 endobj
 540 0 obj
-(GL Basics)
+(Asset Classes)
 endobj
 541 0 obj
-<< /S /GoTo /D (subsubsection.13.1.1) >>
+<< /S /GoTo /D (subsubsection.12.1.3) >>
 endobj
 544 0 obj
-(Paper-based accounting systems and the GL)
+(Depreciation)
 endobj
 545 0 obj
-<< /S /GoTo /D (subsubsection.13.1.2) >>
+<< /S /GoTo /D (subsubsection.12.1.4) >>
 endobj
 548 0 obj
-(Double Entry Examples on Paper)
+(Disposal)
 endobj
 549 0 obj
-<< /S /GoTo /D (subsubsection.13.1.3) >>
+<< /S /GoTo /D (subsubsection.12.1.5) >>
 endobj
 552 0 obj
-(The GL in LedgerSMB)
+(Net Book Value)
 endobj
 553 0 obj
-<< /S /GoTo /D (subsection.13.2) >>
+<< /S /GoTo /D (subsubsection.12.1.6) >>
 endobj
 556 0 obj
-(Cash Transfer)
+(Supported Depreciation Methods)
 endobj
 557 0 obj
-<< /S /GoTo /D (subsection.13.3) >>
+<< /S /GoTo /D (section.13) >>
 endobj
 560 0 obj
-(GL Transactions)
+(HR)
 endobj
 561 0 obj
-<< /S /GoTo /D (subsection.13.4) >>
+<< /S /GoTo /D (section.14) >>
 endobj
 564 0 obj
-(Payroll as a GL transaction)
+(POS)
 endobj
 565 0 obj
-<< /S /GoTo /D (subsection.13.5) >>
+<< /S /GoTo /D (subsection.14.1) >>
 endobj
 568 0 obj
-(Reconciliation)
+(Sales Screen)
 endobj
 569 0 obj
-<< /S /GoTo /D (subsection.13.6) >>
+<< /S /GoTo /D (subsection.14.2) >>
 endobj
 572 0 obj
-(Reports)
+(Possibilities for Data Entry)
 endobj
 573 0 obj
-<< /S /GoTo /D (subsubsection.13.6.1) >>
+<< /S /GoTo /D (subsection.14.3) >>
 endobj
 576 0 obj
-(GL as access to almost everything else)
+(Hardware Support)
 endobj
 577 0 obj
-<< /S /GoTo /D (section.14) >>
+<< /S /GoTo /D (subsection.14.4) >>
 endobj
 580 0 obj
-(Recurring Transactions)
+(Reports)
 endobj
 581 0 obj
-<< /S /GoTo /D (section.15) >>
+<< /S /GoTo /D (subsubsection.14.4.1) >>
 endobj
 584 0 obj
-(Financial Statements and Reports)
+(Open Invoices)
 endobj
 585 0 obj
-<< /S /GoTo /D (subsection.15.1) >>
+<< /S /GoTo /D (subsubsection.14.4.2) >>
 endobj
 588 0 obj
-(Cash v. Accrual Basis)
+(Receipts)
 endobj
 589 0 obj
-<< /S /GoTo /D (subsection.15.2) >>
+<< /S /GoTo /D (section.15) >>
 endobj
 592 0 obj
-(Viewing the Chart of Accounts and Transactions)
+(General Ledger)
 endobj
 593 0 obj
-<< /S /GoTo /D (subsection.15.3) >>
+<< /S /GoTo /D (subsection.15.1) >>
 endobj
 596 0 obj
-(Trial Balance)
+(GL Basics)
 endobj
 597 0 obj
-<< /S /GoTo /D (subsubsection.15.3.1) >>
+<< /S /GoTo /D (subsubsection.15.1.1) >>
 endobj
 600 0 obj
-(The Paper-based function of a Trial Balance)
+(Paper-based accounting systems and the GL)
 endobj
 601 0 obj
-<< /S /GoTo /D (subsubsection.15.3.2) >>
+<< /S /GoTo /D (subsubsection.15.1.2) >>
 endobj
 604 0 obj
-(Running the Trial Balance Report)
+(Double Entry Examples on Paper)
 endobj
 605 0 obj
-<< /S /GoTo /D (subsubsection.15.3.3) >>
+<< /S /GoTo /D (subsubsection.15.1.3) >>
 endobj
 608 0 obj
-(What if the Trial Balance doesn't Balance?)
+(The GL in LedgerSMB)
 endobj
 609 0 obj
-<< /S /GoTo /D (subsubsection.15.3.4) >>
+<< /S /GoTo /D (subsection.15.2) >>
 endobj
 612 0 obj
-(Trial Balance as a Summary of Account Activity)
+(Cash Transfer)
 endobj
 613 0 obj
-<< /S /GoTo /D (subsubsection.15.3.5) >>
+<< /S /GoTo /D (subsection.15.3) >>
 endobj
 616 0 obj
-(Trial Balance as a Budget Planning Tool)
+(GL Transactions)
 endobj
 617 0 obj
 << /S /GoTo /D (subsection.15.4) >>
 endobj
 620 0 obj
-(Income Statement)
+(Payroll as a GL transaction)
 endobj
 621 0 obj
-<< /S /GoTo /D (subsubsection.15.4.1) >>
+<< /S /GoTo /D (subsection.15.5) >>
 endobj
 624 0 obj
-(Uses of an Income Statement)
+(Reconciliation)
 endobj
 625 0 obj
-<< /S /GoTo /D (subsection.15.5) >>
+<< /S /GoTo /D (subsubsection.15.5.1) >>
 endobj
 628 0 obj
-(Balance Sheet)
+(File Import Feature)
 endobj
 629 0 obj
 << /S /GoTo /D (subsection.15.6) >>
 endobj
 632 0 obj
-(What if the Balance Sheet doesn't balance?)
+(Reports)
 endobj
 633 0 obj
-<< /S /GoTo /D (subsection.15.7) >>
+<< /S /GoTo /D (subsubsection.15.6.1) >>
 endobj
 636 0 obj
-(No Statement of Owner Equity?)
+(GL as access to almost everything else)
 endobj
 637 0 obj
 << /S /GoTo /D (section.16) >>
 endobj
 640 0 obj
-(The Template System)
+(Recurring Transactions)
 endobj
 641 0 obj
-<< /S /GoTo /D (subsection.16.1) >>
+<< /S /GoTo /D (section.17) >>
 endobj
 644 0 obj
-(Text Templates)
+(Financial Statements and Reports)
 endobj
 645 0 obj
-<< /S /GoTo /D (subsection.16.2) >>
+<< /S /GoTo /D (subsection.17.1) >>
 endobj
 648 0 obj
-(HTML Templates)
+(Cash v. Accrual Basis)
 endobj
 649 0 obj
-<< /S /GoTo /D (subsection.16.3) >>
+<< /S /GoTo /D (subsection.17.2) >>
 endobj
 652 0 obj
-(LaTeX Templates)
+(Viewing the Chart of Accounts and Transactions)
 endobj
 653 0 obj
-<< /S /GoTo /D (subsubsection.16.3.1) >>
+<< /S /GoTo /D (subsection.17.3) >>
 endobj
 656 0 obj
-(What is LaTeX ?)
+(Trial Balance)
 endobj
 657 0 obj
-<< /S /GoTo /D (subsubsection.16.3.2) >>
+<< /S /GoTo /D (subsubsection.17.3.1) >>
 endobj
 660 0 obj
-(Using L.25emYX to Edit LaTeX Templates)
+(The Paper-based function of a Trial Balance)
 endobj
 661 0 obj
-<< /S /GoTo /D (subsection.16.4) >>
+<< /S /GoTo /D (subsubsection.17.3.2) >>
 endobj
 664 0 obj
-(Customizing Logos)
+(Running the Trial Balance Report)
 endobj
 665 0 obj
-<< /S /GoTo /D (subsection.16.5) >>
+<< /S /GoTo /D (subsubsection.17.3.3) >>
 endobj
 668 0 obj
-(How are They Stored in the Filesystem?)
+(What if the Trial Balance doesn't Balance?)
 endobj
 669 0 obj
-<< /S /GoTo /D (subsection.16.6) >>
+<< /S /GoTo /D (subsubsection.17.3.4) >>
 endobj
 672 0 obj
-(Upgrade Issues)
+(Trial Balance as a Summary of Account Activity)
 endobj
 673 0 obj
-<< /S /GoTo /D (section.17) >>
+<< /S /GoTo /D (subsubsection.17.3.5) >>
 endobj
 676 0 obj
-(An Introduction to the CLI)
+(Trial Balance as a Budget Planning Tool)
 endobj
 677 0 obj
-<< /S /GoTo /D (subsection.17.1) >>
+<< /S /GoTo /D (subsection.17.4) >>
 endobj
 680 0 obj
-(Conventions)
+(Income Statement)
 endobj
 681 0 obj
-<< /S /GoTo /D (subsection.17.2) >>
+<< /S /GoTo /D (subsubsection.17.4.1) >>
 endobj
 684 0 obj
-(Preliminaries)
+(Uses of an Income Statement)
 endobj
 685 0 obj
-<< /S /GoTo /D (subsection.17.3) >>
+<< /S /GoTo /D (subsection.17.5) >>
 endobj
 688 0 obj
-(First Script: lsmb01-cli-example.sh)
+(Balance Sheet)
 endobj
 689 0 obj
-<< /S /GoTo /D (subsubsection.17.3.1) >>
+<< /S /GoTo /D (subsection.17.6) >>
 endobj
 692 0 obj
-(Script 1 \(Bash\))
+(What if the Balance Sheet doesn't balance?)
 endobj
 693 0 obj
-<< /S /GoTo /D (subsection.17.4) >>
+<< /S /GoTo /D (subsection.17.7) >>
 endobj
 696 0 obj
-(Second Script: lsmb02-cli-example.pl)
+(No Statement of Owner Equity?)
 endobj
 697 0 obj
-<< /S /GoTo /D (subsubsection.17.4.1) >>
+<< /S /GoTo /D (section.18) >>
 endobj
 700 0 obj
-(Script 2 \(Perl\))
+(The Template System)
 endobj
 701 0 obj
-<< /S /GoTo /D (part.2) >>
+<< /S /GoTo /D (subsubsection.18.0.1) >>
 endobj
 704 0 obj
-(II Technical Overview)
+(What is LaTeX ?)
 endobj
 705 0 obj
-<< /S /GoTo /D (section.18) >>
+<< /S /GoTo /D (subsubsection.18.0.2) >>
 endobj
 708 0 obj
-(Basic Architecture)
+(Using L.25emYX to Edit LaTeX Templates)
 endobj
 709 0 obj
 << /S /GoTo /D (subsection.18.1) >>
 endobj
 712 0 obj
-(The Software Stack)
+(Customizing Logos)
 endobj
 713 0 obj
 << /S /GoTo /D (subsection.18.2) >>
 endobj
 716 0 obj
-(Capacity Planning)
+(How are They Stored in the Filesystem?)
 endobj
 717 0 obj
-<< /S /GoTo /D (subsubsection.18.2.1) >>
+<< /S /GoTo /D (subsection.18.3) >>
 endobj
 720 0 obj
-(Scalability Strategies)
+(Upgrade Issues)
 endobj
 721 0 obj
-<< /S /GoTo /D (subsubsection.18.2.2) >>
+<< /S /GoTo /D (section.19) >>
 endobj
 724 0 obj
-(Database Maintenance)
+(An Introduction to the CLI for Old Code)
 endobj
 725 0 obj
-<< /S /GoTo /D (subsubsection.18.2.3) >>
+<< /S /GoTo /D (subsection.19.1) >>
 endobj
 728 0 obj
-(Known issues)
+(Conventions)
 endobj
 729 0 obj
-<< /S /GoTo /D (section.19) >>
+<< /S /GoTo /D (subsection.19.2) >>
 endobj
 732 0 obj
-(Customization Possibilities)
+(Preliminaries)
 endobj
 733 0 obj
-<< /S /GoTo /D (subsection.19.1) >>
+<< /S /GoTo /D (subsection.19.3) >>
 endobj
 736 0 obj
-(Brief Guide to the Source Code)
+(First Script: lsmb01-cli-example.sh)
 endobj
 737 0 obj
-<< /S /GoTo /D (subsection.19.2) >>
+<< /S /GoTo /D (subsubsection.19.3.1) >>
 endobj
 740 0 obj
-(Data Entry Screens)
+(Script 1 \(Bash\))
 endobj
 741 0 obj
-<< /S /GoTo /D (subsubsection.19.2.1) >>
+<< /S /GoTo /D (subsection.19.4) >>
 endobj
 744 0 obj
-(Examples)
+(Second Script: lsmb02-cli-example.pl)
 endobj
 745 0 obj
-<< /S /GoTo /D (subsection.19.3) >>
+<< /S /GoTo /D (subsubsection.19.4.1) >>
 endobj
 748 0 obj
-(Extensions)
+(Script 2 \(Perl\))
 endobj
 749 0 obj
-<< /S /GoTo /D (subsubsection.19.3.1) >>
+<< /S /GoTo /D (part.2) >>
 endobj
 752 0 obj
-(Examples)
+(II Technical Overview)
 endobj
 753 0 obj
-<< /S /GoTo /D (subsection.19.4) >>
+<< /S /GoTo /D (section.20) >>
 endobj
 756 0 obj
-(Templates)
+(Basic Architecture)
 endobj
 757 0 obj
-<< /S /GoTo /D (subsubsection.19.4.1) >>
+<< /S /GoTo /D (subsection.20.1) >>
 endobj
 760 0 obj
-(Examples)
+(The Software Stack)
 endobj
 761 0 obj
-<< /S /GoTo /D (subsection.19.5) >>
+<< /S /GoTo /D (subsection.20.2) >>
 endobj
 764 0 obj
-(Reports)
+(Capacity Planning)
 endobj
 765 0 obj
-<< /S /GoTo /D (subsubsection.19.5.1) >>
+<< /S /GoTo /D (subsubsection.20.2.1) >>
 endobj
 768 0 obj
-(Examples)
+(Scalability Strategies)
 endobj
 769 0 obj
-<< /S /GoTo /D (section.20) >>
+<< /S /GoTo /D (subsubsection.20.2.2) >>
 endobj
 772 0 obj
-(Integration Possibilities)
+(Database Maintenance)
 endobj
 773 0 obj
-<< /S /GoTo /D (subsection.20.1) >>
+<< /S /GoTo /D (subsubsection.20.2.3) >>
 endobj
 776 0 obj
-(Reporting Tools)
+(Known issues)
 endobj
 777 0 obj
-<< /S /GoTo /D (subsubsection.20.1.1) >>
+<< /S /GoTo /D (section.21) >>
 endobj
 780 0 obj
-(Examples)
+(Customization Possibilities)
 endobj
 781 0 obj
-<< /S /GoTo /D (subsection.20.2) >>
+<< /S /GoTo /D (subsection.21.1) >>
 endobj
 784 0 obj
-(Line of Business Tools on PostgreSQL)
+(Brief Guide to the Source Code)
 endobj
 785 0 obj
-<< /S /GoTo /D (subsubsection.20.2.1) >>
+<< /S /GoTo /D (subsection.21.2) >>
 endobj
 788 0 obj
-(Known Issues)
+(Data Entry Screens)
 endobj
 789 0 obj
-<< /S /GoTo /D (subsubsection.20.2.2) >>
+<< /S /GoTo /D (subsubsection.21.2.1) >>
 endobj
 792 0 obj
-(Strategies)
+(Examples)
 endobj
 793 0 obj
-<< /S /GoTo /D (subsubsection.20.2.3) >>
+<< /S /GoTo /D (subsection.21.3) >>
 endobj
 796 0 obj
-(Examples)
+(Extensions)
 endobj
 797 0 obj
-<< /S /GoTo /D (subsection.20.3) >>
+<< /S /GoTo /D (subsubsection.21.3.1) >>
 endobj
 800 0 obj
-(Line of Business Tools on other RDBMS's)
+(Examples)
 endobj
 801 0 obj
-<< /S /GoTo /D (subsubsection.20.3.1) >>
+<< /S /GoTo /D (subsection.21.4) >>
 endobj
 804 0 obj
-(Strategies)
+(Templates)
 endobj
 805 0 obj
-<< /S /GoTo /D (subsubsection.20.3.2) >>
+<< /S /GoTo /D (subsubsection.21.4.1) >>
 endobj
 808 0 obj
-(Integration Products and Open Source Projects)
+(Examples)
 endobj
 809 0 obj
-<< /S /GoTo /D (section.21) >>
+<< /S /GoTo /D (subsection.21.5) >>
 endobj
 812 0 obj
-(Customization Guide)
+(Reports)
 endobj
 813 0 obj
-<< /S /GoTo /D (subsection.21.1) >>
+<< /S /GoTo /D (subsubsection.21.5.1) >>
 endobj
 816 0 obj
-(General Information)
+(Examples)
 endobj
 817 0 obj
-<< /S /GoTo /D (subsection.21.2) >>
+<< /S /GoTo /D (section.22) >>
 endobj
 820 0 obj
-(Customizing Templates)
+(Integration Possibilities)
 endobj
 821 0 obj
-<< /S /GoTo /D (subsubsection.21.2.1) >>
+<< /S /GoTo /D (subsection.22.1) >>
 endobj
 824 0 obj
-(Page Breaks in LaTeX)
+(Reporting Tools)
 endobj
 825 0 obj
-<< /S /GoTo /D (subsubsection.21.2.2) >>
+<< /S /GoTo /D (subsubsection.22.1.1) >>
 endobj
 828 0 obj
-(Other Template Control Structures)
+(Examples)
 endobj
 829 0 obj
-<< /S /GoTo /D (subsubsection.21.2.3) >>
+<< /S /GoTo /D (subsection.22.2) >>
 endobj
 832 0 obj
-(File Inclusion)
+(Line of Business Tools on PostgreSQL)
 endobj
 833 0 obj
-<< /S /GoTo /D (subsubsection.21.2.4) >>
+<< /S /GoTo /D (subsubsection.22.2.1) >>
 endobj
 836 0 obj
-(Cross-referencing and multiple passes of LaTeX)
+(Strategies)
 endobj
 837 0 obj
-<< /S /GoTo /D (subsubsection.21.2.5) >>
+<< /S /GoTo /D (subsubsection.22.2.2) >>
 endobj
 840 0 obj
-(Variable Substitution)
+(Examples)
 endobj
 841 0 obj
-<< /S /GoTo /D (subsection.21.3) >>
+<< /S /GoTo /D (subsection.22.3) >>
 endobj
 844 0 obj
-(Customizing Forms)
+(Line of Business Tools on other RDBMS's)
 endobj
 845 0 obj
-<< /S /GoTo /D (subsection.21.4) >>
+<< /S /GoTo /D (subsubsection.22.3.1) >>
 endobj
 848 0 obj
-(Customizing Modules)
+(Strategies)
 endobj
 849 0 obj
-<< /S /GoTo /D (subsubsection.21.4.1) >>
+<< /S /GoTo /D (subsubsection.22.3.2) >>
 endobj
 852 0 obj
-(Database Access)
+(Integration Products and Open Source Projects)
 endobj
 853 0 obj
-<< /S /GoTo /D (subsection.21.5) >>
+<< /S /GoTo /D (section.23) >>
 endobj
 856 0 obj
-(CLI Examples)
+(Customization Guide)
 endobj
 857 0 obj
-<< /S /GoTo /D (part.3) >>
+<< /S /GoTo /D (subsection.23.1) >>
 endobj
 860 0 obj
-(III Appendix)
+(General Information)
 endobj
 861 0 obj
-<< /S /GoTo /D (appendix.A) >>
+<< /S /GoTo /D (subsection.23.2) >>
 endobj
 864 0 obj
-(Where to Go for More Information)
+(Customizing Templates)
 endobj
 865 0 obj
-<< /S /GoTo /D (appendix.B) >>
+<< /S /GoTo /D (subsubsection.23.2.1) >>
 endobj
 868 0 obj
-(Quick Tips)
+(Template Control Structures)
 endobj
 869 0 obj
-<< /S /GoTo /D (subsection.B.1) >>
+<< /S /GoTo /D (subsection.23.3) >>
 endobj
 872 0 obj
-(Understanding Shipping Addresses and Carriers)
+(Customizing Forms)
 endobj
 873 0 obj
-<< /S /GoTo /D (subsection.B.2) >>
+<< /S /GoTo /D (subsection.23.4) >>
 endobj
 876 0 obj
-(Handling bad debts)
+(Customizing Modules)
 endobj
 877 0 obj
-<< /S /GoTo /D (appendix.C) >>
+<< /S /GoTo /D (subsubsection.23.4.1) >>
 endobj
 880 0 obj
-(Step by Steps for Vertical Markets)
+(Database Access)
 endobj
 881 0 obj
-<< /S /GoTo /D (subsection.C.1) >>
+<< /S /GoTo /D (part.3) >>
 endobj
 884 0 obj
-(Common Installation Errors)
+(III Appendix)
 endobj
 885 0 obj
-<< /S /GoTo /D (subsection.C.2) >>
+<< /S /GoTo /D (appendix.A) >>
 endobj
 888 0 obj
-(Retail With Light Manufacturing)
+(Where to Go for More Information)
 endobj
 889 0 obj
-<< /S /GoTo /D (appendix.D) >>
+<< /S /GoTo /D (appendix.B) >>
 endobj
 892 0 obj
-(Glossary)
+(Quick Tips)
 endobj
 893 0 obj
-<< /S /GoTo /D [894 0 R  /Fit ] >>
+<< /S /GoTo /D (subsection.B.1) >>
 endobj
-909 0 obj <<
-/Length 2086      
+896 0 obj
+(Understanding Shipping Addresses and Carriers)
+endobj
+897 0 obj
+<< /S /GoTo /D (subsection.B.2) >>
+endobj
+900 0 obj
+(Handling bad debts)
+endobj
+901 0 obj
+<< /S /GoTo /D (appendix.C) >>
+endobj
+904 0 obj
+(Step by Steps for Vertical Markets)
+endobj
+905 0 obj
+<< /S /GoTo /D (subsection.C.1) >>
+endobj
+908 0 obj
+(Common Installation Errors)
+endobj
+909 0 obj
+<< /S /GoTo /D (subsection.C.2) >>
+endobj
+912 0 obj
+(Retail With Light Manufacturing)
+endobj
+913 0 obj
+<< /S /GoTo /D (appendix.D) >>
+endobj
+916 0 obj
+(Glossary)
+endobj
+917 0 obj
+<< /S /GoTo /D [918 0 R  /Fit ] >>
+endobj
+933 0 obj <<
+/Length 1928      
 /Filter /FlateDecode
 >>
 stream
-x\xDA\xEDXÍ\xE2F\xBF\xCF_\xC1\xCB%\xE6\xBD\xC6\xE3\xF2'NNÆ\xC1\xB3\xE6#\xB6\x99\x9Ey\xC9<\xE0i\xBCv\x9B\xEE\x9D\xFF>R\xA9
-\x8C\x9B\xCEvv^\x9B\xCCW\xA9T\x92J\xFAI\xA5B\xEB\xDD\xF7\xB4\xDE\xE4\x8D\xF6\xC2w\x94\xBEy{k=\xE6\xA8:\xB3\xCC^\xFA\xB9\xA7k\x8E:\xB2\x9EmY*\xB3\xAC^\xBA\xE9\xFD\xACD\xF9\xE6>?$\xB3Q\xA0[\x9A2\xCB\xCAc\xB6\xA3\xF1c\x9F1\xA6\xA8\xFD\x81\xC14\x85\xA9F\xFF\x9F\xE9;\x92\xC9T×t.\xD3Rm\xCD\xEA
-KE%(1\xDDæ#Ú}6T\xC4b\xDAwu%\xCF\xF6(\xB4g20\xA87\xD0
-\xD5Ô$\xE5Ý\x9C\xEE
-}u\x8D\xB1\x93	\xAE\xEAÚ\x8D\x98c\xAA\xB6e\x80
-\x86\xAA\xBBm\xFE\xB3\xCE\xD8\xE8h\xCAgP<\xD0mWi\xB8e@)\xCA\xF5\xEE\xB8\xC97D\xAE×âi\xE9\xCDÒ\xB6\xC5zKk\xD9\xC9fX\xDBë\xF96\x98\xCBM\xDE<YFDyÔ U\xEF\xB2&?\x80l\x86\x87q\xAC\xF3\x8E\xCF\xD5n\xD7gJ\xF5T\x94\xF7DyÈ\xCE\xF7Ì\x99\xAAk\x9A\xF0\xE5>..hidden..	\xE0paB5\xF9\xAF\xCE\x8F\xF9\x86LÐv\x9B\xB4\xC7\xF9\xA6\xA8\x9BC\xF1\xE9\xD8U	\x92LK\xC9\xCA
-L\xE5\x88CJ!V\xEA\xEA\xC8%\xAEsb\xC0pE'TØ\xEBCD\xE0[u\\xB7\xA7\xAB\x9A\xA3\x93"\xEF
-x\xD55\xEFÌ ..hidden..&\xEB\xB5\xC80\xA6\xA3\xBF_W\xFB\x87b\x97o\xBE\xA7\xC0ß\xA6!\x9A\x9BLf\xD1
-qNS1\xB4\x94\xE5\xF83BÎ\xBAI8,o\x86}\xB8\xB8o8Jz\x8EÖz]\xB7\xC1ED\xB5Í\xCCC\xF2S\xD1li\x81cRP\xAAcC\xC4}\xB5)~\xD14}\x9Da\xA5\x86\xD6B?\xB0.\xF7E\xD3p\xF8Ã\x8A\xFFcAy..hidden.. Ó\xA0\x{158B9A}Bw\xA8\xA6K[\x98z\xC9\xF3\xF3\xC0Ò\xA48]\xA5\xFAL\xDF6\x82p\xBE\xAE6b\xF42\x96L\xD52K\xECUXb],Ù%\xA7\x8B%\xBD\xD7",\xA1)\xFBc\xDDÐ|\xD2d\x988'\xD7\xC2 \xFBT=\x9E\x8E\xD0J`W)\xABj\x86\xD0f\xA7"%\xA8\x902\xA5+x8d\x9D\x81\x841\xB0\x92\xB7#rr\x9F&\xE0Å\x8A\x88P;..hidden..)\x91)\xEA\xC79\xD8\x8E\x83#\xC2tÅ\xA1\xBF\x86\xA6QMÑ"Óf\x98\xAD\xB4\x8ExAEm\xE4bS\xD1R+[\x81\xDA\xCEV\xA8\x84\xC691\x91\x97\xEA\xB0U\xE0\x8A\xD1PI\xD6Ôx\xC08/\xD0\xF2L\xADI	\xB79rä\xF0,
-p\x87\x88Y
-0=\xA3
-\x8E\xF01\x90`\xC4\xFDo\xEA\xED\xE4$\xA9<\xE2m=\xED\x88\xC3TD4SÐ\xC4Q*\xB6\\xC9\xF0M\xB5>\xEE\xF3\xB2É\xD4\\xBD\xADd\x84\x83x\xFA\xE3}Yd;\x81\x88N\xB1\xC1+\x8D\xCAY`\xED\xD3U\xB6\xA8\xAE\xE6\Öt&\xE8tW/\xFC\xD5,\x98\xA7}Ç\x8C\x86\x9F4\\xCC\xE9.\x93,\xCBx\xF1>c\xA2\x8E>5\x9D4\x88\x82\xF1$\x88\xF9\x9D\x88\xEB\xC0\xFD.\xF0SZ\xFB\xCEK\xA4\xAC\xEF\x88\xE2Ío.\xD7\xFC\xB4\x8C\x83\x84ov\x95EL\xDFp\xB6\x8CB\xB2\xC3U\xEE|^{\xF34\x92\xC11\xF7\xA3\xD58\x9CO\xC4|\xB4BC\xC0m\xF3EJ\x94(\x9C\x85\xA9\x94\x91\xA2G\x82\x97ô&
-\xDD\xFDs5eqK\xDFY\xFBSO8tFa\xFA\x91\xF8\xC9qp\xA6s~6>\xC1\xC3\xF1e\xFA,..hidden.."\xA2\xF2\x83#\xADI\x9C\x9E"\x89L#\xC9z\xA3H\x8C\xB9\xED\xB8\xC8c\x89\x94q\xE38\xFA
-\xAD\x84\xF3\xC9\xD2Ug\xFA1áw\xBBLI\x96\x81\x9Ef\xC1\x87\xE3\xF1\xBA\xF2\x91\xB7\xE5\xA2)\xE6V\x83\xBF\x98'\xC1O+\x90\x9B\x884\xF6f\xDE#\x84\xACem\x80\xE0^\D\x80\\xB1\xEA\xDD\xD4\xCEp\xD1M\x86\xDE\xF1Wq0#\x8F\x9A\xFC&\xABQ\x92\x86\xE9*
-\x88q\xB2X\x8C\xC1\x96 \xEE[\x96\xF2>\xF4\x83\xE4G\xE2\x8AIr)g\x95BÕ\x93\xFB\xE6\xE6$\xE9j\xCE,\(..hidden..(m.	I\xC0f!\x82A\xB7\xF4\x8DÂ\xF1\x95\xB9 \xE7\xD8\xCA\xDD4!1\xBD8V\x81QLc\xEF\x8CXJ\xD28\xE48tl\x8E\xBF\x8E \x8B\xFC
-\x8B \xBAy\x88Ò9\xE9	Q\xE7\xC1$
-'\xC1\xDC\xAEe
-\xE1\xC9P\xDC8\x90u&\x81\xECKH\xBE\xFC\x89\x92,\x93\xACF"\xCFP\xBD\xE0\xC6	Ê ..hidden.."\xB4b\x8A\xB2\x8C\x94\xABe\xF9\x86\xD60\x8B\xAFy8\xBC%L{\xE3\xF7!\x8FOAJ\xA1\x90\xD0BY\x97\xDA\xC9ÊÒ\xB2F\xFD\x9D\x83&Ã\xF9[W\xE3OL\x9B\xD9\xF2\xD9T6p\x97\xD5\xFD\xED9\xBF\x8FqH\x90\xAF\x8BJ\x97\xA6={K\x9D\x9A\xABÑ\xC6Æ\x96O\xACj
-\x93\xBC\xEE\xB64l\xE88\x86\xE2<\xD7|\xEEFA\xB1f0\xD1[2\xA18,\x9B\xB6\xE7[\x9A\xCB\xE7]G\x99\xEE:\xA6\xF3\Y\xBB\xF5\xBDxUÚ5\xE7:A\xF2\xDD\xF6\xCBQ14]\xFC\x9F;\xB5\xBF\xC1\xC7t\xFF\xD8i\xBB\xC17\xA0u\xBF\xC7iU\xD7!\xE4\x9D\xE7=\x82\x87\x9E\xF4\x8A\xB7yÌ\xFD\xBA\xEF\xF6\xDE/GJ\xC0_Ñ\xC0\xA7\xDAsw\xEAÂ\xFF\xC8\xB2o\xF3\xAC9\x8A\xBF:\xBA\xB2]\xD7\xFA\x86\xEA\xFF\xCD\xF5\x83\xEBx\xD6Ea\x89\x8A}Ao\x89\xD7\xC2\xD9\xFA\xFF\x82\xF3\x9F\xEDv\xF7\x95\x887\x84Ã/u\x93\xEF\xC9\xC7q\xFE\xEB\xB1 \xC8\xEF\xF95\xF8\xCA0\xF3\xAF\xE5\xDE\xD7\xFB\xB5sC\x9F\xFE\xDA\xE5\xF7\xB4\xFC\xFBB\xDCÓZ\xBE\x84\xBD\xF5\xBA:\x96M\xA7QgM\xF6)\x93\xFBz\x9B}Q\xE2\xEB\xB7\xF5\xB0eu\xB1~\xDE9\xB8\x86\xCB:\xF6\xFD\xDEen\xC9U\xE4e\xEEW\xFB\x87\xAC,\xF2\xFA\x8AAu\xDE<Sh\xDDo\xF5\xEE\xE2F|0\xEDU\x89\xA7\x9F*Ýz\xBA\xEC\xD6|Ê\xAC\xC8\xE8\xC3aÓ\x80\xFE\xAD\xAB\xFA\xCAx\xD82\xB2.\xF1\xBF\xF0\xBA\x96\xFFd_\xCAs\xFEF\xBD\xEC\x9F\xD1\xE0\xFE^D\xAE5\x96S\x83\xF2fy\xC5\xD5\xEEyOf\xD9\xEC[ \xBE*l\xA8\xC1SX\x87\xDB\xCBU\x87Ã|e\xB6y\x83\xF4\xCDoÏ\xE4\x8B
+x\xDA\xEDXÝ\xDAF\xCF_\xC1\xE4%f\xE6p\xD7^\xE0\xF6É\x8Fsj>j\x9B\2Mp\xEE\xDC\xBEbsi\xFE\xFBJ+\xE1\xA6\xD7v\xFAÐ/ì\x95\xB4\xD2O\xF2.\xA2s\xD7\x9D\xF1\xF1\xC48H_|s-e\xC7puÓ\xADN\xFA\xB1c
+W\xEF\xF7\x8D\x8EcÛaÛt\xD5\xF9Q\x8B\xF2\xD5]\xBEK&\x83nÏ\x856É\xFBlM\xF3Ça\x9A\xDE\xEDICh\x86.\xBB?\xA5\xAFI\xA7\xA1{\xB6m*\x9D\xB6\xEE\xBBÓ\xB6\x8EFPcz\x9F\xD3\xFE3\xD5\xC3r\xD75\xFA3Ógjy\xB6A\xA5\xD3ÇNÏ\xBAë&\xC9\xEA|\xF3!ß\xBCi]\xF1D\xC6\xC1O\xF7\xD3AGzp"]\xF6]p\xC5\xD1\xFB+	~[\x82\xD8\xE8
+\xEDc\x89\xAAO\xAB\x95\x83@)\xB6\xCB\xF5~\x95\xAF\x88\-w\xC5C]ëÅ\xFBbyO\xBC\xEC\xE0:\xF0\xD6\xC52\xDFVj\xAC\xF6\xDBU~\xAEx<\x8F\x88\xF2h\xA11\xBD\xCE\xEA|\xBA
+<\x8Ckw|,\xD7ë\x95\x9F\x8A\xEDQre\xB3\xA7\xD43,Ý Bz:Ü\xA8\xAA\xE2\x91\xE3\xC9N\xD1\xE2\xAE|\xCCwÛ\xF5}\xC1\xB3O\xE5\xEE]énX>|\xDEw\xF7uga\xF7\xE0\xC7\xE3|=\x91Õ\xF2\xB2\xFC9_Ö\xCD\xF8Q\xCA\xD84Å\xCAw\x8F\xF9\x8A\l\xDD!\xEBq\xBE*\xAAzW|\xD8\xD7E\xB9M\x96\xADe\xDBN,..hidden..'
+\x80\xDFQ*U>Z\xBAe\xB9H\x97\x92\xDD\x98Þ\x8CN\x8B\xFCsz\xE6\xF4\xABe\xB9y(\xD6\xF9\xEA1\x9B\x8A\xA6\xE8n2\x9EDW$y\x93\xF2\xD4\xD6\xE6\xA3k,\x8CfUVu\xA2`y\xC50\xE8Kt\xFA4qqW\xBAZz
+\x816Ùi:""\x80\xD9\xFA\x9E\xDCCò'\x86\xC2$S\xCA}M\xC4M\xB9*\xDEa.3L\xA2T\x8A\xFAAp\xB9)\xEAZ\xC16<P\xFE\xAA#\xA8\xEF3VF\xE8\xA2\xBB\x816Ð\xE5vU\xA0\xFE\xEA	|\x9C\xAC\xDD&6y\xFD-
+\xFAZ\xC70u\xCB\xC6^[\x8C>..hidden..,Ý\x84%\xE3YX2Î\xE4<\x81%\xF3\x96ÐÍ\xAAiF1\xA93,\Sha\x92}(Gh\xB0\xA7m\xCBz\xA6\xD01MZP\xD1\xE8lB\xA1\xD2\xD1\xF4\xEC\xA2\xD8\xD0\xDB9\x84O0\xBCTW\xE1\xB5sK\xF9r\x9D\x9B\xA6ogÕ<\xA2kW\xD5M\xD7\xDA\xE6,@Þ\xDBJ\xAEy\xD7~\xDB \x93\xFB\xC71\xD9=\x85	#$\xC1d\x97\xCD\xE7!B
+A=EZS\xAE\xB4\xC2j%>\xE2B\xB5n\x98uI\xACV\xB5\xB5]\xAD\xD0	\xE5\xB10Q\x96\xFA\x88\x95\x8A\xD1\xD0HVW\xDC<\x80\xA7\xAEts\xA6V\p\xAB\xBDB\xAE%9\xB20A(\xC07\x84Wm4\xC0\xF2\x88h8c 3`\xA6\xE2o\x99\xED\xE2$\xAD*\xE3m;\xED\x8CÃ3\x96)..hidden..(\xE5-z\xFD\xAA\\xEE7\xF9\xB6Î\xD53\xAE\xBE)2 U\xFE\xF8\xBD,\xB25#\xE2\xAC\xD9\xE0'\x8D\xDAY`\xEDÓ|\xD1=\xE1r\xCFp\xB9*o\xC2\x83\xEEi\xA3\xD9p1	\xA6i×\xA0\xA2\xE1'
+gS\xFA\x965"\xF3x\xF6&#\xA2\xDE5\xBD	h\xA3q\xABo"\xF2A\xFAu0L\x89\xF7\xD2O]/\x89\xE2OY\x8F?eE\xC1\xDBÞ8\xCD\xE3 Q\x9B=m\xD3N\xE6QH~x\xDA-\x82Ïc\x9A\x86Ar\xC5\xD3a\xB4\x85\xD31\xAFt\xC26\x9D\xA5D\x89\xC2I\x986:..hidden..'\xB4\xD95\x8D\x93 \xDE\xF8\xD0A\x85\xE9;b\xA8\x93\xE3\xE4:L\xA7\xEAlj\x81\x87Sl\xE6d\xAF+\xFB\x90\x89\xE1"\xF2\x99=_\xC4\xF3Y\xB0lÌQ\x98#?\x9C#\xFD\x92\x83!d\xD24\8=\x8E\x8E\xBC\xC1L+Rr\xE3GQ\xD5\xC1\x91\xD6\xCA$.\x99D\xA1A#\xFA\x83\x88\xE7\xCAwd\xAA\"eÆ\x8E~E\x9CpzFr\x81t1\x98C\x80G-R\xB7]CK\xE6\xC10<\xAC\x82\xB7$\xC6W}å\x9D\xF3\xA5Xy\xC3\xD94	~X\x80\xD8D\xA4\x91?\xF1Ç!\`/k\xF7*\x80 r\xC1\xAB\LK\xE1bZFg\xB8\x88\x83	E\xD4"\xE0\x98,I\xA6\x8B4 \xC1\xF1l6JX$f\x91 \xEEÚ\xF6&\xC9w$Í\xE4T\xCF"	\xD8Ô
+S\xC5\xE6\xEA\xA0é\xE0\x80UJ\xE1P\xD9\xC08X$!N
+\xC4\xF1b\x8Eu\xDE\xF4^G\xBB\x99\xDD8x\xC3\xD0\xDB#\x9AS\xBD\xA2\xB6iCxG\x8A63N	\\xD3\x85ë\x85&q\xAE\xA3\xDD\xDE\xA0$\xA6×\xC2*!\x8Bi\xEC\xAC$\x8DC\x85C\xD7Q\xF8;SdS\\x81I	\xA2/Q\xDA9\x87&=&\xEA4G\xE18\x98\x83KQ$<Im\xA6\x9C]\xB7a4\xF7	\xC5B<Q\x93m\x91\xD7HT\xEA\xCA9\xA6\xCCb%To0Y$<!\x8E\xC5m)\xDB\xF2\xF1\xB0\x8A/V\xFB5a\xDA\xBD	U\xFETq0\x91\x8DB#\xA0\x85M_jK$\x8B\xE1
+Íjt\xBEß\xF8`\x92\x96\xA3\x9E\xBC`RZ\xBA\xD9w\x9AgÓ\x86oYurß=\xC7g2\xED\x91Í0\x84\xD6%\xC4o\xA9\xC3\xE5j\xB0\xAF\xF0bT5O\xACr	\x8B\xBC:\xBF\xD2}×Z\xFFK\xCB\xC7Û8\xBB(\xB3\xE1p[\xEF\xF0
+q\xFC\xE3\x95\xE6\xF4ywf\xCC\xF4\\xCB\xFD\xD2X\xFB\xEA{\xE9Ui\xE8\xCA&h\xBE\xA5wÌÞ\xB6\xA4c\xE1\xFFxe\xFB\x9A\xCB\xF3\xFEÔ\xF3\xF4K\xB8\xBC\x9F&\xE4\xC0\xE7Y0Y\xF8\xFC\xC1\xEF[\xDE!\xF8\xFF|L
+\xCF:\xFD@"TA\x98\xA0\xCC_=fp	\xBE;=\x9Dh\xC4_ch\xFF\xAE\xB21\x9C\xDF\xE7\x8C\xEC\xEB<\xAB\xF7\xFC\x87ÓnÏ\xFF\x87\xF3_}\xEFÏHn,Q\xB1)\xE8E\xF7\8\xDB\xFF.8\xFF\x83\x88\xEFC\xD4
+\xF1L\xC4[\xF0\xE4sU\xE7\x8Aq\x9C\xFF\xBA/\xF2uyf\xEB\xEB
+ï\xAB)\xA4nÃ\xA5\xE7Z\xBA-\x9A\xE8\x9E\xC8\xE9\x8B\xDF\xE9\xD8\xD8\xE8
 endstream
 endobj
-894 0 obj <<
+918 0 obj <<
 /Type /Page
-/Contents 909 0 R
-/Resources 908 0 R
+/Contents 933 0 R
+/Resources 932 0 R
 /MediaBox [0 0 612 792]
-/Parent 917 0 R
-/Annots [ 895 0 R 896 0 R 897 0 R 898 0 R 899 0 R 900 0 R 901 0 R 902 0 R 903 0 R 904 0 R 905 0 R 906 0 R ]
+/Parent 941 0 R
+/Annots [ 919 0 R 920 0 R 921 0 R 922 0 R 923 0 R 924 0 R 925 0 R 926 0 R ]
 >> endobj
-895 0 obj <<
+919 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [84.043 232.415 297.545 246.105]
+/Rect [84.043 219.248 297.545 232.939]
 /Subtype /Link
 /A << /S /GoTo /D (part.1) >>
 >> endobj
-896 0 obj <<
+920 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [84.043 211.007 226.617 222.748]
+/Rect [84.043 197.84 226.617 209.581]
 /Subtype /Link
 /A << /S /GoTo /D (section.1) >>
 >> endobj
-897 0 obj <<
+921 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 198.793 199.619 210.803]
+/Rect [98.987 185.626 211.923 197.636]
 /Subtype /Link
 /A << /S /GoTo /D (subsection.1.1) >>
 >> endobj
-898 0 obj <<
+922 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [121.901 186.838 274.458 198.848]
+/Rect [98.987 173.671 199.619 185.681]
 /Subtype /Link
-/A << /S /GoTo /D (subsubsection.1.1.1) >>
+/A << /S /GoTo /D (subsection.1.2) >>
 >> endobj
-899 0 obj <<
+923 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [121.901 174.883 213.108 186.588]
+/Rect [121.901 161.716 274.458 173.726]
 /Subtype /Link
-/A << /S /GoTo /D (subsubsection.1.1.2) >>
+/A << /S /GoTo /D (subsubsection.1.2.1) >>
 >> endobj
-900 0 obj <<
+924 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 162.927 240.087 174.937]
+/Rect [121.901 149.761 213.108 161.467]
 /Subtype /Link
-/A << /S /GoTo /D (subsection.1.2) >>
+/A << /S /GoTo /D (subsubsection.1.2.2) >>
 >> endobj
-901 0 obj <<
+925 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 150.972 285.147 162.982]
+/Rect [98.987 137.805 240.087 149.815]
 /Subtype /Link
 /A << /S /GoTo /D (subsection.1.3) >>
 >> endobj
-902 0 obj <<
+926 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [84.043 131.749 329.79 141.054]
+/Rect [98.987 125.85 285.147 137.86]
 /Subtype /Link
-/A << /S /GoTo /D (section.2) >>
+/A << /S /GoTo /D (subsection.1.4) >>
 >> endobj
-903 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 117.099 233.093 129.109]
-/Subtype /Link
-/A << /S /GoTo /D (subsection.2.1) >>
+934 0 obj <<
+/D [918 0 R /XYZ 85.039 731.867 null]
 >> endobj
-904 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 107.739 218.837 116.85]
-/Subtype /Link
-/A << /S /GoTo /D (subsection.2.2) >>
+935 0 obj <<
+/D [918 0 R /XYZ 85.039 706.961 null]
 >> endobj
-905 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 95.784 177.123 104.895]
-/Subtype /Link
-/A << /S /GoTo /D (subsection.2.3) >>
+937 0 obj <<
+/D [918 0 R /XYZ 85.039 492.993 null]
 >> endobj
-906 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [121.901 83.829 209.96 93.244]
-/Subtype /Link
-/A << /S /GoTo /D (subsubsection.2.3.1) >>
+938 0 obj <<
+/D [918 0 R /XYZ 85.039 458.518 null]
 >> endobj
-910 0 obj <<
-/D [894 0 R /XYZ 85.039 731.867 null]
+940 0 obj <<
+/D [918 0 R /XYZ 85.039 246.764 null]
 >> endobj
-911 0 obj <<
-/D [894 0 R /XYZ 85.039 706.961 null]
->> endobj
-913 0 obj <<
-/D [894 0 R /XYZ 85.039 499.781 null]
->> endobj
-914 0 obj <<
-/D [894 0 R /XYZ 85.039 466.733 null]
->> endobj
-916 0 obj <<
-/D [894 0 R /XYZ 85.039 259.931 null]
->> endobj
-908 0 obj <<
-/Font << /F33 912 0 R /F37 915 0 R >>
+932 0 obj <<
+/Font << /F33 936 0 R /F37 939 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-970 0 obj <<
-/Length 1444      
+988 0 obj <<
+/Length 1338      
 /Filter /FlateDecode
 >>
 stream
-x\xDA\xED\\xCBR\xE38\xDD\xF3^&U\xE3`[\x92m-!\xD0S\xC34Õjj\x8A\x99\x85+\xC1\x85c\xBB\xFD`\xE0\xEFÛ%\x99XNÈ\xA7\xB5\xB2IHDÎ:\xF7\xDEsm\xA6\xDAÅÑ\x9E\x8E\x8E\x8E\xBFG\xC3l[\xB66\x9Aj.k6\xB6\xBB\xDA\xC8\xD3n{\xA0\xAF\x9B\x86a\xF4\x86w$\xC9\xFA\xBA\x85\x8C^4\xAD\xAE'\x93I\x94\x87Y\xDA\xFFo\xF4\x87xW
-s\x80.~(_o\xDAKO+\x82g+\xEA\xD0t\x86\x894\xDD\\xBC
-\xB15\xE6b\xD5b\x89\xCB0K\xFA\xA6Û\xBC|\x92\xF9QX-\x9CE\xD5\xF5,\xCA\xC7\xAD\xEEÏ\xDF|..hidden..,\xE3\x83b\xF4\xEAHï\xC1 \xB7k\xC8-\xB9\xA4M\xBC]\xF8\xA5\xF1~ØE:`\xB0\xB7\x8BÓ\xE8Ú\xA7\xC0Ù\xC8#\x9F\x8E\xFD\x8CI
-	\xBD\xEAfX\xEA9\xF5|\x99\xF8.\x80\xA3:æ\xDB\xCBI E\xBD\xA1\xA2~\xD3\xB4q\xE1nÌÍ\xB8\xA11IH]\xB3\xF0\xA2\xE9,\xCF|*\x87\xBE\x85U\xCCo\x85\xB3\xC3p\xFEA\xA7\xB4\x92\x94p"\xE3\x8A[\xFC!Ð*KQ\xE6X\xACN\xBF\xA0!M
-\xD9)C\xFC"\xF7=,\xEAL\xFAl\xFC\x95\xCF\xC74YT\xE5kÚ[\xDD\xC6\xF8Û!\xDE0\x8AC\xEF\xC4\xF3
-T\x8E\xAF"Ï>\xBD\x88Bvw"ux!\x83\xF7O?Í\xA8\xB2N\x91\xA4\x94\x8D\xE5e\xD4\xC7F/!aJÊSb\xC0\xE8\xF3\xE1\xBA9\x92
..hidden..&\xB3 \xB3N\xBC\xB9\xF8\xB2T\xB7\xCE	\xB0\x8C\xED\x9D(\x9C\x80\x82\xABGi\xFAËtJ\xF2 \xE3?
-îd\xB0.)XnGwN\x83\x81\xB5\xAE|..hidden..@t\xA0\xA5H\xB4(\x81|7W\x81\xC0\xE9tf}	a\xBBF\x98\xF7\xF8\xC3<\xE1B\xFB\xB4Yä\xE4\xDE?\xAE\x91Ð\x9F\xF9"\xB5	\xC4*"[]P\xA1\xBD1\xDAz{\xE4
-\xCEI\xEE\xF9L:\x86JH6\x8Bc\xC2\xCE\xDA,\x87\xE0\xC6Ü>\xB1D}r\xFE\xA4(Cy&\xCD\xEAÚz\xA0\x92\xA8\x9A\xA4\xB25\x86>\x895\xB6\x9B\xA2\x9Bj\x8B%j\x92a\xA5LX\xC6Qt\xCF{\xF8X\xAE\xEF\xECT\xE1\xBB\xD8bJQ\xCB
-k:..hidden..)\xC7^\xB4\xBAWP\xF8/g\xAF6\x9B\xD3\xB3\xA5\xE8a\x95\xA2\xEFÏ\xB5\x8D\xB0!\xEC\xC3(e\xBB\xE3\xE1yw\xFDk\xCF\xC6k\x85\xAEK\xCB\xCBU\x9A\xB4\xF9\xE5\xB7\xCC\xFE.;\xCF*m\xDEEy*\x9B(\xAEã\xF1jCJ\x88{\x99$\x9C\xE5d&\xF3a\xDCu>Þ\xBBv'\x8D\xDES,&l\xD8Ç\xDB\xC8tA\xEC(JÂ\xC8\xE6\xE3\xE2\xCAO'\xF2;A\xA4\xB6\xC76Ër\xBC#r\xFC\xC5\xE5\xB7KÉG\x8E"æ1dN\x84/}9\x94\xF2\x8B\x83%\xEF@	\xEF\xBF?\xD0\xE4\xC1\xA7\xFF/'..hidden..@2~Äh([\xBE\xBA\x9D\xBE\xBDR\xD8N\xEE[\xFFSWU\xB8:
-=\xC9Ù\xA1
..hidden..<;\xB8\x9B\xC3v\x9E\xE1#6Ã\x88"\xAFy\xE2f\xA16\xD2\xEC\xBC9Ñ\xDBO\xF4\x91\x98èÔ<\x97\xB1d.\x95É\xC3]\xE6\xD3
-Ü\x84Fb\xDA1\xE2;\xEF:\xF1\xF9\x94\xE9\x8Ad\x89\xFF(\xD9,]l;\xA1\x93p\xA3\x94\x85\x84GY21\xAB\xEC\xAF<\x96\xEDW\xB52o\xC8
-\xF7\xC9.Vb[\xB5\x98\xEF#g\x82\xA5\xDA4G\xC9\xF1\xA2\x82^\xB0uG\x89Tî\xA2\xE2u8\xE0Y{A\xB18\xA4\xE0\xAA
-\xF2\xB6\xFB\xA4\xAD/\x88\x8E\xCCÍ\xC7\xF5\xB14^\xFE^\xDC\xF5\xC3\xE9ò^I]\xF3kT\xD9p\x8B\xC1"V\xE45I\xE4\x91"F\xA6
-\xF5\x8F\x91 x\xFBy\x92\xA6t>|\xE9$\xF8	\xF3)\x99dy\xD2\xE2\xA9 \xA7\xAB\x96<\xDAFX\xDCZX\xB2hr_\x9F$\xAEAo\xAAT\xB3\xDB50\xEB\xED8c\xCC?h%m\xA0\x85TIzp\xA9\xD9j+\xE0\xFAH}\xC0\xBE,u\x99\xD1ySu\xAA\xB4Q\xDEVd\xCA\xDF\xB2;\xBF\K|'\xF0g\xEEW\x87Z\xF5 \x8CUxï]\xA3ÄdV\xE1/s\xD9|I
-\xAF\xC0\xDE-\xC4\xF9\xFCbu\xF2Ä\xFAw\xFB\xC1n\xBA\xC6\xC06-MEO\xC4\xCD\xF2\xE5\x89\xDD\xF9\xE8\xE8\xBC\xE3\x9A
+x\xDA\xED[\xCBr\xA3F\xDD\xFB+XJU\x81\xA1_@/m\xD9\xE38\xCFL\x8D\x95J\xA5&..hidden..,\xF7
..hidden..:\xD01\xC63\xC3#\x96\x8D\xA8\xE1PÇ\xD43Æ\xF1m\x87&\xB0m{\xF0GÊ\xA1	\x89=8\x9DN\xE3<\xCA\xEA,\xF2\xEB?\xCEY\xC6&,\xE5\xE2;\xFE"\x88\x824KX\xC4Q\xFD\xDEK\x83i:\xFCg\xFC[s\xC67x6\xDE/\xEE\xAD\xDD\xC0\xC5\xD80\xB0(!\xE2\xBE,P\xDEYq\xDEQ\xBCX\xB2(\xE0i\xC7\xA5<S\xAE\x88=:\xB0\x86&)~\xD4q0\xED\xF9\xC3Z\x80x\x84\xB6	h>\xB5ÛC\x81\xFA\xAF\xF1\xF7\xE6,\xAE\x8F\xA3d\xBCg\x99V\xAA\xB8i3\xED\xE3d\xE0\xF9\x80\xBB\xF9p$H\xF0\xF1\x85'\x8B M\x8BlK\xD5\xF3\xB9\xEF\xEEWbB\x8B\xA58\xA1\xAA<\xC1\xE2d\xBFe\xB0N\x85xV\xBF\xC6!WH"\xD0D<\x87\x88\x96\x96\x99È<\xE2&,xBÌ\xB3Qel*h\xB9f\x9B\xF3/$\xADu5\x81]\\xCF\xDBW\x9BP\xA3M\xA7\xBE_\x97\xC54U)\xF70\xD2y\xB9_8\xEC\x88
..hidden../?\x8F)dg,\xBA\xDBh4\x95\xBCA6\xD6\xC4\xD0\xC33\x82#\x9F\xE2\xACC\xAF(\xD6\xC5\xEB52\xA7\xADsR\x80\xD6uK\x9D\xBBeI\xAB\xF9\xE8N*\x8CJ\xE6i\xF1\xA2\xFA\xFFÖ[\x92gb\xE0Z6 \x9B\xF1\x82Ñ\x8A\xB2J\xF4b?\x9F\xAE\xC6?9'\x9C\xC7\xF9$3\xC2E\xF1\xCD1\xC6\xF1\xDD\xE7\xCB \x9A+\x85yo\x8F\xE5=\xAF\xAB\x83,\xD0l:È<
+\xA2\xA2\x83h0\xB2#\xA8\xF3\xE9\xA9\xCFYA\xE4j\x90\xB6\xF1\xF6\xB0\xC6\xFBEt\xA6\x84	Ø*>..hidden..'Co\x90\xB3P\xEDs\x91î\xFC\xA07\x8E\xE0\xE2\x86/Ùe-\x9B\xA6\xF3<\xD4ØT\xC7\xFC^8\xBB\xE7\xAF|\xC6\xEB\x92M;F\xDBÑ\xBE[\xACIs\xA3\xB3l\xDA\xE9\x80\\xF2\x88'EÙB\xFC2|\x96}\xA6}\x91\x9F\xF2Å'eW\xBEs&w(}\xDB\xCD9\x84=\xA3\xAD\xAC\xBD\x95×\xCCÅ\xE7\xFDl\xBC\xA8'\xBC\xD2t(m\xF36\xAAr1dU\xD9\xD8\xECQ\xC6Cj\xA5\xAC:U\xB7\x91\xA3\x98"\xB7 \xD9\xC7 \xC2h\xAD\xCE\xEErZW\xEB\xE5\x90\xC6	(8\x81\x{1839FF}\xE53\x96\x87\x99|\xD9p\xF7\xA5\x83]\xA2=\x9D9\x8F\xBAd\xCD5\xA8\xEB\x93È\xFAp\xC3B\x996\x82\x99\xCD\xF4j_\xE0\xE3o^\xFA\xD5%\xB2\xE6
+\xDC\xF0lU\x99\xD8#\xC8.\xBA\x80u(\xD0u_\xC15hU$:*\x81|\xBET6 \xF7}\xB7ß\x97\xBBE\xD6f\xFCQ\x9E\xC8B\xFB\xB0Y\xE2\xDDroC\xF7\x8Ek\xD2Ô\xF3R\xDA\xC4\xCB*\xA2Z]X;\xB8\xBD\xD16\xBBEP8\xA7\xB9\x88\xD2Q\xAE\xF6Ö\xA1\xBAÎ\xB5\xCD\xF2ò\x9A\xA6?\xB9\xF8\xB1YÑJ%\xCDV\xBD{\xFDF]\xA2\xEEy\x92\xAA\xD6y#\xD6\xD8\xD34\xB3om\x81MO2
+c\xB9\xF5r\xC7wr\x86_\xAA\xFD}\x81Â\xB4\xAC\xC0&=\xE5\xAEV)VeE\x9DA\xA8\x9A\x83\xC0\xD5\xE4Yl)\xEE\xD29/..hidden../[hi
+\xFB(\x96\xEF×\xFB\xF8oÛR\x8DÖ\xBAn\xA9\xEE<]\x93\xF6\xCEi\x99\xFDYM\x9E\xB5l\xDE\xC6y×C\xD7\xD3a*1}&\xD2\xCBd\xD1<gs\x95\xE9-\x86?\x9Fg\xE5NÚ\x87e\xB3\xE2!\xFB\xE4v\x95.L\xB5\xA6\xBFpW\xE5
+.\xAE\x83t\xAA\x9E	\xBD\x9D\xF0\xB09\xE3\xEC\xA3\xF1n\xA3\xF1\x97W\xAF\x87^?frxbl\x95\x93Æ\xBE)\xFA\xE2j}y
+J\xE4\xA4\xF8\xF9\x9E'\xF7\xFF\xBE)0\xD5
+_,\xC3\xE6Y\xB9\x8Bb\xA0\xEC\xD8\xF8\xEA\xFD\xDF\xE9{V\x93\xDBN\xE9[\xFFUWw\xB8&\x8F|\xF5*\xAC#\xFB\xA9\xD82oxB\xB3?/\xEB\x85\xF6*\x84\xB9\xCD\xFBV\xC4t\xC8\xFDy\xBD\x9Ek\xA6\x8B\x895\x8D\xA3\xD9Q\xED<D\xECCY:\x86I]\xCB\xF3\\xF9\xF6\xFAw/\xC6'\xFF\xFCd
 endstream
 endobj
-969 0 obj <<
+987 0 obj <<
 /Type /Page
-/Contents 970 0 R
-/Resources 968 0 R
+/Contents 988 0 R
+/Resources 986 0 R
 /MediaBox [0 0 612 792]
-/Parent 917 0 R
-/Annots [ 907 0 R 918 0 R 919 0 R 920 0 R 921 0 R 922 0 R 923 0 R 924 0 R 925 0 R 926 0 R 927 0 R 928 0 R 929 0 R 930 0 R 931 0 R 932 0 R 933 0 R 934 0 R 935 0 R 936 0 R 937 0 R 938 0 R 939 0 R 940 0 R 941 0 R 942 0 R 943 0 R 944 0 R 945 0 R 946 0 R 947 0 R 948 0 R 949 0 R 950 0 R 951 0 R 952 0 R 953 0 R 954 0 R 955 0 R 956 0 R 957 0 R 958 0 R 959 0 R 960 0 R 961 0 R 962 0 R 963 0 R 964 0 R 965 0 R 966 0 R ]
+/Parent 941 0 R
+/Annots [ 927 0 R 928 0 R 929 0 R 930 0 R 931 0 R 942 0 R 943 0 R 944 0 R 945 0 R 946 0 R 947 0 R 948 0 R 949 0 R 950 0 R 951 0 R 952 0 R 953 0 R 954 0 R 955 0 R 956 0 R 957 0 R 958 0 R 959 0 R 960 0 R 961 0 R 962 0 R 963 0 R 964 0 R 965 0 R 966 0 R 967 0 R 968 0 R 969 0 R 970 0 R 971 0 R 972 0 R 973 0 R 974 0 R 975 0 R 976 0 R 977 0 R 978 0 R 979 0 R 980 0 R ]
 >> endobj
-907 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [84.043 695.887 182.882 705.192]
-/Subtype /Link
-/A << /S /GoTo /D (section.3) >>
->> endobj
-918 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 681.237 312.803 693.247]
-/Subtype /Link
-/A << /S /GoTo /D (subsection.3.1) >>
->> endobj
-919 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [121.901 669.282 223.32 680.988]
-/Subtype /Link
-/A << /S /GoTo /D (subsubsection.3.1.1) >>
->> endobj
-920 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [121.901 657.327 215.21 669.337]
-/Subtype /Link
-/A << /S /GoTo /D (subsubsection.3.1.2) >>
->> endobj
-921 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [121.901 647.967 197.089 657.078]
-/Subtype /Link
-/A << /S /GoTo /D (subsubsection.3.1.3) >>
->> endobj
-922 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [121.901 636.012 238.035 645.426]
-/Subtype /Link
-/A << /S /GoTo /D (subsubsection.3.1.4) >>
->> endobj
-923 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [121.901 624.057 190.115 633.471]
-/Subtype /Link
-/A << /S /GoTo /D (subsubsection.3.1.5) >>
->> endobj
-924 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [121.901 609.506 245.646 621.516]
-/Subtype /Link
-/A << /S /GoTo /D (subsubsection.3.1.6) >>
->> endobj
-925 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [121.901 600.146 203.036 609.561]
-/Subtype /Link
-/A << /S /GoTo /D (subsubsection.3.1.7) >>
->> endobj
-926 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 585.596 320.663 597.606]
-/Subtype /Link
-/A << /S /GoTo /D (subsection.3.2) >>
->> endobj
 927 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 573.641 254.841 585.65]
+/Rect [84.043 695.887 329.79 705.192]
 /Subtype /Link
-/A << /S /GoTo /D (subsection.3.3) >>
+/A << /S /GoTo /D (section.2) >>
 >> endobj
 928 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 561.685 311.837 573.695]
+/Rect [98.987 681.237 233.093 693.247]
 /Subtype /Link
-/A << /S /GoTo /D (subsection.3.4) >>
+/A << /S /GoTo /D (subsection.2.1) >>
 >> endobj
 929 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [84.043 542.463 171.255 551.768]
+/Rect [98.987 671.877 218.837 680.988]
 /Subtype /Link
-/A << /S /GoTo /D (section.4) >>
+/A << /S /GoTo /D (subsection.2.2) >>
 >> endobj
 930 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 528.988 265.063 539.822]
+/Rect [98.987 659.922 177.123 669.033]
 /Subtype /Link
-/A << /S /GoTo /D (subsection.4.1) >>
+/A << /S /GoTo /D (subsection.2.3) >>
 >> endobj
 931 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [121.901 515.857 282.159 527.867]
+/Rect [121.901 647.967 209.96 657.381]
 /Subtype /Link
-/A << /S /GoTo /D (subsubsection.4.1.1) >>
+/A << /S /GoTo /D (subsubsection.2.3.1) >>
 >> endobj
-932 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [121.901 503.902 275.912 515.912]
-/Subtype /Link
-/A << /S /GoTo /D (subsubsection.4.1.2) >>
->> endobj
-933 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [121.901 491.947 256.027 503.957]
-/Subtype /Link
-/A << /S /GoTo /D (subsubsection.4.1.3) >>
->> endobj
-934 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [121.901 479.992 224.804 491.698]
-/Subtype /Link
-/A << /S /GoTo /D (subsubsection.4.1.4) >>
->> endobj
-935 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [121.901 468.037 234.578 479.743]
-/Subtype /Link
-/A << /S /GoTo /D (subsubsection.4.1.5) >>
->> endobj
-936 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 458.677 186.02 468.091]
-/Subtype /Link
-/A << /S /GoTo /D (subsection.4.2) >>
->> endobj
-937 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [121.901 444.126 292.729 456.136]
-/Subtype /Link
-/A << /S /GoTo /D (subsubsection.4.2.1) >>
->> endobj
-938 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [121.901 432.171 240.117 444.181]
-/Subtype /Link
-/A << /S /GoTo /D (subsubsection.4.2.2) >>
->> endobj
-939 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [121.901 422.811 208.406 432.226]
-/Subtype /Link
-/A << /S /GoTo /D (subsubsection.4.2.3) >>
->> endobj
-940 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 408.261 181.367 419.967]
-/Subtype /Link
-/A << /S /GoTo /D (subsection.4.3) >>
->> endobj
-941 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [121.901 398.901 249.641 408.315]
-/Subtype /Link
-/A << /S /GoTo /D (subsubsection.4.3.1) >>
->> endobj
 942 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 386.946 176.914 396.36]
+/Rect [84.043 623.713 198.105 635.23]
 /Subtype /Link
-/A << /S /GoTo /D (subsection.4.4) >>
+/A << /S /GoTo /D (section.3) >>
 >> endobj
 943 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 372.395 171.824 384.101]
+/Rect [98.987 614.094 169.791 623.508]
 /Subtype /Link
-/A << /S /GoTo /D (subsection.4.5) >>
+/A << /S /GoTo /D (subsection.3.1) >>
 >> endobj
 944 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 360.44 210.598 372.45]
+/Rect [98.987 602.139 178.498 611.553]
 /Subtype /Link
-/A << /S /GoTo /D (subsection.4.6) >>
+/A << /S /GoTo /D (subsection.3.2) >>
 >> endobj
 945 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 351.08 147.355 360.191]
+/Rect [98.987 590.184 190.105 599.598]
 /Subtype /Link
-/A << /S /GoTo /D (subsection.4.7) >>
+/A << /S /GoTo /D (subsection.3.3) >>
 >> endobj
 946 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [121.901 339.125 175.629 348.236]
+/Rect [98.987 578.228 149.856 587.339]
 /Subtype /Link
-/A << /S /GoTo /D (subsubsection.4.7.1) >>
+/A << /S /GoTo /D (subsection.3.4) >>
 >> endobj
 947 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [121.901 327.17 171.425 336.281]
+/Rect [84.043 556.41 182.882 565.715]
 /Subtype /Link
-/A << /S /GoTo /D (subsubsection.4.7.2) >>
+/A << /S /GoTo /D (section.4) >>
 >> endobj
 948 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [121.901 312.619 288.983 324.629]
+/Rect [98.987 541.76 312.803 553.77]
 /Subtype /Link
-/A << /S /GoTo /D (subsubsection.4.7.3) >>
+/A << /S /GoTo /D (subsection.4.1) >>
 >> endobj
 949 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [121.901 303.26 194.987 312.674]
+/Rect [121.901 529.805 223.32 541.511]
 /Subtype /Link
-/A << /S /GoTo /D (subsubsection.4.7.4) >>
+/A << /S /GoTo /D (subsubsection.4.1.1) >>
 >> endobj
 950 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 288.709 260.45 300.719]
+/Rect [121.901 517.85 215.21 529.86]
 /Subtype /Link
-/A << /S /GoTo /D (subsection.4.8) >>
+/A << /S /GoTo /D (subsubsection.4.1.2) >>
 >> endobj
 951 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [84.043 269.486 190.633 278.791]
+/Rect [121.901 508.49 197.089 517.601]
 /Subtype /Link
-/A << /S /GoTo /D (section.5) >>
+/A << /S /GoTo /D (subsubsection.4.1.3) >>
 >> endobj
 952 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 257.431 175.918 266.542]
+/Rect [121.901 496.535 238.035 505.949]
 /Subtype /Link
-/A << /S /GoTo /D (subsection.5.1) >>
+/A << /S /GoTo /D (subsubsection.4.1.4) >>
 >> endobj
 953 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 245.476 197.228 254.891]
+/Rect [121.901 484.58 190.115 493.994]
 /Subtype /Link
-/A << /S /GoTo /D (subsection.5.2) >>
+/A << /S /GoTo /D (subsubsection.4.1.5) >>
 >> endobj
 954 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 230.926 176.894 242.632]
+/Rect [121.901 470.029 245.646 482.039]
 /Subtype /Link
-/A << /S /GoTo /D (subsection.5.3) >>
+/A << /S /GoTo /D (subsubsection.4.1.6) >>
 >> endobj
 955 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 218.971 156.909 230.677]
+/Rect [121.901 460.669 203.036 470.084]
 /Subtype /Link
-/A << /S /GoTo /D (subsection.5.4) >>
+/A << /S /GoTo /D (subsubsection.4.1.7) >>
 >> endobj
 956 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 208.624 199.509 219.025]
+/Rect [98.987 446.119 320.663 458.129]
 /Subtype /Link
-/A << /S /GoTo /D (subsection.5.5) >>
+/A << /S /GoTo /D (subsection.4.2) >>
 >> endobj
 957 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 197.656 159.779 206.766]
+/Rect [98.987 434.164 254.841 446.173]
 /Subtype /Link
-/A << /S /GoTo /D (subsection.5.6) >>
+/A << /S /GoTo /D (subsection.4.3) >>
 >> endobj
 958 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [121.901 183.105 313.371 195.115]
+/Rect [98.987 422.208 311.837 434.218]
 /Subtype /Link
-/A << /S /GoTo /D (subsubsection.5.6.1) >>
+/A << /S /GoTo /D (subsection.4.4) >>
 >> endobj
 959 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 173.745 146.299 182.856]
+/Rect [84.043 402.986 171.255 412.291]
 /Subtype /Link
-/A << /S /GoTo /D (subsection.5.7) >>
+/A << /S /GoTo /D (section.5) >>
 >> endobj
 960 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 159.195 262.174 171.205]
+/Rect [98.987 389.511 265.063 400.345]
 /Subtype /Link
-/A << /S /GoTo /D (subsection.5.8) >>
+/A << /S /GoTo /D (subsection.5.1) >>
 >> endobj
 961 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [121.901 147.24 246.453 159.249]
+/Rect [121.901 376.38 282.159 388.39]
 /Subtype /Link
-/A << /S /GoTo /D (subsubsection.5.8.1) >>
+/A << /S /GoTo /D (subsubsection.5.1.1) >>
 >> endobj
 962 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 135.284 168.167 146.99]
+/Rect [121.901 364.425 275.912 376.435]
 /Subtype /Link
-/A << /S /GoTo /D (subsection.5.9) >>
+/A << /S /GoTo /D (subsubsection.5.1.2) >>
 >> endobj
 963 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [121.901 123.329 277.217 135.339]
+/Rect [121.901 352.47 256.027 364.48]
 /Subtype /Link
-/A << /S /GoTo /D (subsubsection.5.9.1) >>
+/A << /S /GoTo /D (subsubsection.5.1.3) >>
 >> endobj
 964 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [121.901 111.374 217.054 123.08]
+/Rect [121.901 340.515 224.804 352.221]
 /Subtype /Link
-/A << /S /GoTo /D (subsubsection.5.9.2) >>
+/A << /S /GoTo /D (subsubsection.5.1.4) >>
 >> endobj
 965 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [121.901 102.014 239.459 111.429]
+/Rect [121.901 328.56 234.578 340.266]
 /Subtype /Link
-/A << /S /GoTo /D (subsubsection.5.9.3) >>
+/A << /S /GoTo /D (subsubsection.5.1.5) >>
 >> endobj
 966 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [121.901 90.059 205.846 99.474]
+/Rect [98.987 319.2 186.02 328.614]
 /Subtype /Link
-/A << /S /GoTo /D (subsubsection.5.9.4) >>
+/A << /S /GoTo /D (subsection.5.2) >>
 >> endobj
-971 0 obj <<
-/D [969 0 R /XYZ 85.039 731.867 null]
+967 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [121.901 304.649 292.729 316.659]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.5.2.1) >>
 >> endobj
 968 0 obj <<
-/Font << /F37 915 0 R /F33 912 0 R >>
-/ProcSet [ /PDF /Text ]
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [121.901 292.694 240.117 304.704]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.5.2.2) >>
 >> endobj
-1022 0 obj <<
-/Length 1322      
-/Filter /FlateDecode
->>
-stream
-x\xDA\xED[MW\xDB8\xDD\xF3+\xBCLq-É\xAC%e(\x9D9\xD3!\x99v\xD13\xD51\xE0i\xB0}\x87\xD2_Iq$\xC7q\xBE\x98\xD0*\x81\xE4Xp\xAFÞ\xEF^Ëuo9\xD6Õ\xA3\xBC\xBE\x9F\x9C\xBD\xFB\x80\x90\xC5lF \xB1&w\x80\xD0\xF6\xB5#6c\x9E5\x99Z_\xD8f6\x8Et\x9C\xC1U:\xDE ^$\xF3\xE1bg\xC0\xA3i\xF5f\x9C\x86~p\xBF\xFC\xF4\xDF\xC9r\xEB\xEBÈh`G8\xBF\xC4É\xB8\x8Cm\xF8\x8A\xF2O{\x98
- Y\xF9\xAD\xFCt\x94#Ík\x8D\xB0\xC6i\xE0\xE4\xD7\xCA\xE1\x9C\x993Hy4\x9F\xF1,\x8C#
-O\x90\x93\xC7\xF3\xA5XÙG\xA3T\xB4|\x8CT\xDB\xFD"\x9EgÕ\xF8\xAEz\xBD\x8A\xE3i]\xB7ñ\xB0\xFEM\x96r\xFF{0Õ\x82\xE0W	|\xA8\xF3\xFEC\xFDg\\x9B\xB9yU\xC0~P\xF7\x92\xF7\xC7)..hidden.."^\xE4\xA5ZY"\x87\x9A\x9A;H\xCD\xD64\xFC\x96\xF2\xBBL\xD73
-\xF0\xA5bi]\xB1\xE7\xE3\xD5\xBB\xA8`\x98\xE5?\x94_\x83\xB4\xAB8G.\xA0\xB6\xF0ê\x8D\xF2\x9C\x87~\xDDÆ+G~\x90è!j\xB8\xEFG:\xED\xAEN"X\xD5Y\xB5\xC3 \x9A\xC6m\xDD\x9Ar<Rq\xD2^]\x94Ú\xE6I\x94\x88,+
-\xD58\xC3^\x8EI\x88\xAB\xF2{\xF4\xE7\xD6I\xEFY\xA6N\x8EX'm\xEE+\xE7\xA6\x97\xC2\xE7^\xC4i\xE9e\x83\xBCJ\xA2{1\xAE\xAAMÍ\xB6\xEC)\x8B\xCDn\xD7\xDB\xC2\xE3\xD22K(*\xE0\x82\xCF*$\xFE\xF31\x88jCu.&í\xC0\xFF.Ó\xA8$B\x9B\xDF<\xC8+Ky\xC6r'\xDF\xF0$M\xE6\xCB(K\xD6~Õ\xF6z\xA9S\x86\xCC\xEE]Ý\xA4Þ\x8A\x90\xBEÝD\xF4&H\xE2\xB4mÃ\xA0/\xBC}\x97 \xCB\xED\xAB\xCD+
-|5\xC9|..hidden..		\x941\xDE_q4\xCA\xF83\xFF6\xBA\xE8\x80\xBEYÉ\xC3Õ\xFE\x99\xC3\x9F\xB2#ly\xA4R5Jn^s\xFE\x83\x96\xC6fXØG'\xAE#\xE0c8\xCF\xE2|\xB2V.O01\xB0o\xBB\x9A4#j{\xD8[M\x9A=\x914\xDFt'\xCDl\xFB\xA4ÙI\xF3\xC5"\xA7\xF4\xB1\xE5v!\xC0D\x9A\xFFGÌYF55;\x8Ds\xD5\xDBO<K\xC3\xE7\xD7x\xE3h\xAFY\x8Amaw=\x99\xF3\xE7\xD6+?v	5\xBB\xFFx\xD2\xE3-\xFD\x9B\xEE\xFC\xD8C\xC44\xA5\xBDiAN\xAF\xFBa\x9E\x8C\xF5\x97\xA1\xE6M\xE0a\x92\xE9\xFD\x87^\x8E\xC6K{k\xE4\xFA*=u\xA0t'Æ\xC7\xC5,a
-\xFDu\xCAOÉ\x9F\xC7Y\xE0\xC0\xDD2\xB0\xC1FM\x9A\xB1\xE3\xDE]&\xF9k%\xB8#\xBF\xA0\x90;\xF5K+'\xF0Ý\xD1Ab:\xF2\x9E
-\x85(\xDEjC\xF10\x92\xB8}\xCEk\xB1\xDAE\x8F\xD3\xF8\xBF\xC0W\xCFO)^ZY\xA7\x97\x97f\xD2K\x8F\xAB#\xE2\xC52\xE5\xE51.\xFD\xF4#f<:\xFA\xD8Ê\xBD\x9B1\x84\x8F\x81_\xA5\x87S\xDDNxÈ\xAD;\xA8m\xF4\x80^\xE2Ä\xD9kT\x8Dzy\x9D\xFF#6D\x830wk\xE5	b\xF38\xC6KI\xDB<\xC1Ome&\x90\xA9\x85mjA\xCEË\x94og
-]\x84^\xBFé8)\xF0g\xA8>Y\xB4\xD2\xFC\xD5\xC6\xE3\x99.\xBF#\xAD7\xBB\x99L:\xC6\xF1|~gajH\xF4\xCF\:\xC4.r%o\x87\x87\xFE\xC8w:Z\xF1P>\x99_\xF7\xEFE\x9C\xF1F\xCA!Ç\xEBt*L\xE3'\xF1\xFB\xA0<Ù\xC92Æ\xFAgt=F\xC4\xEAv\xFD\xC0\xDF-\x9F	\xF6\xAF+9i\xBB
-\x88\x99\xD1\xFB\x97\x8Asn`\xC5Mcoh\x8D\x99\xC3\xC7\xEC\xCB\xAAk\xE6!L\x92\xB6\x98\xC3\xCA>\x9Db/rÜr~)\xCE\xC7\xC5i}\xBE\xFE\xC3,\xFE\xA1\xAB4\x9E\x996\xFBR\xD0S(u\x8A\\xE9\x93<\xC2p\xF9\xCC\x8B\x9BQ\xDAAg`\xEF8\xF0\x9Bh\x8DP\xAE\xEA.\xA8CÌ\xEF^N\xCE~\x8C\xCA
-endstream
-endobj
-1021 0 obj <<
-/Type /Page
-/Contents 1022 0 R
-/Resources 1020 0 R
-/MediaBox [0 0 612 792]
-/Parent 917 0 R
-/Annots [ 967 0 R 972 0 R 973 0 R 974 0 R 975 0 R 976 0 R 977 0 R 978 0 R 979 0 R 980 0 R 981 0 R 982 0 R 983 0 R 984 0 R 985 0 R 986 0 R 987 0 R 988 0 R 989 0 R 990 0 R 991 0 R 992 0 R 993 0 R 994 0 R 995 0 R 996 0 R 997 0 R 998 0 R 999 0 R 1000 0 R 1001 0 R 1002 0 R 1003 0 R 1004 0 R 1005 0 R 1006 0 R 1007 0 R 1008 0 R 1009 0 R 1010 0 R 1011 0 R 1012 0 R 1013 0 R 1014 0 R 1015 0 R 1016 0 R 1017 0 R 1018 0 R ]
+969 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [121.901 283.334 208.406 292.749]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.5.2.3) >>
 >> endobj
-967 0 obj <<
+970 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [121.901 693.192 263.638 705.202]
+/Rect [98.987 268.784 181.367 280.49]
 /Subtype /Link
-/A << /S /GoTo /D (subsubsection.5.9.5) >>
+/A << /S /GoTo /D (subsection.5.3) >>
 >> endobj
+971 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [121.901 259.424 249.641 268.839]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.5.3.1) >>
+>> endobj
 972 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 683.832 177.532 693.247]
+/Rect [98.987 247.469 176.914 256.883]
 /Subtype /Link
-/A << /S /GoTo /D (subsection.5.10) >>
+/A << /S /GoTo /D (subsection.5.4) >>
 >> endobj
 973 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 671.877 278.164 681.292]
+/Rect [98.987 232.918 171.824 244.624]
 /Subtype /Link
-/A << /S /GoTo /D (subsection.5.11) >>
+/A << /S /GoTo /D (subsection.5.5) >>
 >> endobj
 974 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [84.043 647.623 199.22 659.364]
+/Rect [98.987 220.963 210.598 232.973]
 /Subtype /Link
-/A << /S /GoTo /D (section.6) >>
+/A << /S /GoTo /D (subsection.5.6) >>
 >> endobj
 975 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 638.004 219.963 647.419]
+/Rect [98.987 211.603 147.355 220.714]
 /Subtype /Link
-/A << /S /GoTo /D (subsection.6.1) >>
+/A << /S /GoTo /D (subsection.5.7) >>
 >> endobj
 976 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 626.049 151.311 635.464]
+/Rect [121.901 199.648 175.629 208.759]
 /Subtype /Link
-/A << /S /GoTo /D (subsection.6.2) >>
+/A << /S /GoTo /D (subsubsection.5.7.1) >>
 >> endobj
 977 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [84.043 604.231 114.818 613.312]
+/Rect [121.901 187.693 171.425 196.804]
 /Subtype /Link
-/A << /S /GoTo /D (section.7) >>
+/A << /S /GoTo /D (subsubsection.5.7.2) >>
 >> endobj
 978 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 589.581 206.214 601.287]
+/Rect [121.901 173.142 288.983 185.152]
 /Subtype /Link
-/A << /S /GoTo /D (subsection.7.1) >>
+/A << /S /GoTo /D (subsubsection.5.7.3) >>
 >> endobj
 979 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 580.221 160.237 589.636]
+/Rect [121.901 163.783 194.987 173.197]
 /Subtype /Link
-/A << /S /GoTo /D (subsection.7.2) >>
+/A << /S /GoTo /D (subsubsection.5.7.4) >>
 >> endobj
 980 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 568.266 195.315 577.376]
+/Rect [98.987 149.232 260.45 161.242]
 /Subtype /Link
-/A << /S /GoTo /D (subsection.7.3) >>
+/A << /S /GoTo /D (subsection.5.8) >>
 >> endobj
+989 0 obj <<
+/D [987 0 R /XYZ 85.039 731.867 null]
+>> endobj
+986 0 obj <<
+/Font << /F37 939 0 R /F33 936 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1037 0 obj <<
+/Length 1296      
+/Filter /FlateDecode
+>>
+stream
+x\xDA\xED[\xCBr\xE28\xDD\xE7+\xBC\x84\x8E%[\xAFe\x9A\xE9Izjz\xBA+\xA1f\xD35Ç\xE0
+Ø1\x99\xF4ßb\xCB\xC2H\xEC:\xD0
+'+u\xCE}\x9C{\xAE\xF1\x9C'\xC7sn\xAF<\xED\xF5\xD3\xE8\xEA\xFAw\x9F8\xCCebg4q(r=\x9F9\x98a\x971\xEA\x8C\xC6Î\xEE\x80\xE7y\xBD\xDB4/\xFB\x88\xBC^\x98\x8CË\x9E\xBD\xC4_\xF6\xFF\xFD\xA1n\xEB>..hidden.. g\xDE>\x85\xE4\xA1.x;V\xF1)\\xC6QyÚ\xCF`\x8Fgs\xED\xB8Fh\xCF\xED\x90\xF8//\xF5%`\xAC\xD34)b:O\xEA]O\xA7JjFS^\xF3=AP^~
+\xF3,~\xD5o\xEF\xFB\xCC2sJpE\x89/))..hidden..;\x973$Y\xFA3|L\xB3\xEBo/\xBC`k\xCAÃq[l\xA9\xE8\xC6m\xC9\x964
..hidden..&	\xEF\xC4\xD5l\xFD\xEBJ1n\xE8E\xA3
+R\xF0\xF1\xF0\xED\xE5\xA0KR5\xED0\xCBMM\x8B\x80\x8D\xF1w	|C\Q\xC9\xD3\xCDr\xC9ç\x98\xEBc\xD0\xD70YM\xC2(_eo\x81\xAF\x85\xC8%\xA0}pa\xA1\xEBÂ\xA7Ñ\xAA 5\xD0\xF5\xAAqv=\xE1\xA80o):L\xF3=_\xA4Y\xDE\xAFYI\xFA\xBE=\x96\xA9T\xB8\x99\xCD\xCA,\xF8\x92\xF3\xB9^uÊQ\\x96d\x82\xF0\xC5g\x81g\x82%\xB8\xF7\xFC\xDFU\h}>\xE7Iz\x8C\xD9\xF0Þ:k\x8D\xBA_U\xF7J\xE1os1|Þ\xDDl\xBC;\xA8\xEA\xC7\xD6\xE6\xC9H`K\xF8\xB1cI\xD8k~\x8FV\xB2w\xDBs\xF4-\xC6-4\xF0ÄÊ\x80\xD7\xCB\xC2d9\xF38ML\xBB`+^/m\x80\x92\x96\xBB\xF4\xBF2Ü\xE92/\xAF\xD2I\xF9Z["=\xA43\x99\xB1\xFCM\x9E\x85\xD137\\xB7\xA3\x8BQ1\xCDPk[\xBA\\x88\xAC\x80~ ..hidden.. I!\xA7\xA8\xC5"K_Â\xE1\xABÆ~\xAC\xB6\xA1\xABN\xAB\x93Mj\xFB\xB9<\x9A\xED\xFC\xEF\xE2\xBFHW\xE2\xAD\xCC4\xF3<bSow \xF8^\xAB\x9C#j\xF7[NL	X\xDB\xF4(U\xB13Qm2\x96Ê\xBD\xF9\xBEs}\xAE\x9D\xD0j}N\x9B\xD6\xE7\xE2Y\x95\x93\x88/G\x9F\xD88fvR\x95\x9De9\xE4\xC98m\xAA\x86\xD0f\xE5/MN}b\xA2j}^\xA5\x88\x96e5\xADX^N\x998\x81FÈ\xE4%m\xDA2\x9B.Ç\xB4\xB7'..hidden.."\xB9\xBE\xF9\x94\xDEJi\xA7<zV\xEEB\xD2\xE4\xE8\xC1\xC5\xD8\xC0\xDD"\xA9H.\xA6\x98\xCAV\xAF\xC1\xFC9É\x9Fr^\x8D\xCAXç16\x88\xAE\xEB\xD0\xFA\xE9uUjË\x86\xB8%ÌÌ^\xAB(V\xE2e\xFDH\x86![j\xF8\x9D\xF3|F\xC3S\xB4\xA1H\xB0\xDA}[\xE5\xCB<LÆ\xE55L\xB5\xDAB[\\xAD\x88*\xE9p\xF3\xB4bÄ\x98;\xF0`]7`/|\xAD\xFA_<\xD6Ü\xBF\xD2d\x90\x87\xAF\xE1\xE3\x8C\xEF\xA22x\x8Evjy\xC4\xF9\xF7\xB49\xE4C;\xAE\x83\x91\xE6\xF6HT{4(y\xE0a\xA1\xE9\x84\xF4\xD3M\xCC,\xFCG\xAA3DuN\x83\x80\xBBx\x99\xA7B`\xEB{\xFFs}\xE9t\xC1\xAF\xCE>q)\xA2\x9B\x863\xAB\xE7\xFBÝ3\xECn83e8W\x82\xD2y\xC3\xD6c`\xAD\x9AS'_SOÜ\xC9N\xCB\xEFm\x9D\xC3\xFE\xE8\xA0\xDE\xEFw\xE8\xFDL\xD9\xFD"\xC1Z\xD9\xC8\xB6\x97c\xD2\xE2\xE9\x84\xF8!\xDBldz\xC1_\xC3zZ\xC3Û\xE7\x8F\xB9Y\x88\xE5\xE5d\xBC4\xE9eV\xB7\xF7uz\xA4\xA14\xA9\xE4\xDB|5\xCB\xE3E5F\xDB:?\xC1Ý\xEB\xD6\xD0\xEE6\xB0gÄX\xB9\xDB-v\xD7È\x9F\x9C\xDFÖw\xF8A\xF2\xCEÂ\xD4(W\xE1\xBBß\x83\xD8V\xE4
+\xD6f\xAB=\x842`;..hidden..
+endstream
+endobj
+1036 0 obj <<
+/Type /Page
+/Contents 1037 0 R
+/Resources 1035 0 R
+/MediaBox [0 0 612 792]
+/Parent 941 0 R
+/Annots [ 981 0 R 982 0 R 983 0 R 984 0 R 985 0 R 990 0 R 991 0 R 992 0 R 993 0 R 994 0 R 995 0 R 996 0 R 997 0 R 998 0 R 999 0 R 1000 0 R 1001 0 R 1002 0 R 1003 0 R 1004 0 R 1005 0 R 1006 0 R 1007 0 R 1008 0 R 1009 0 R 1010 0 R 1011 0 R 1012 0 R 1013 0 R 1014 0 R 1015 0 R 1016 0 R 1017 0 R 1018 0 R 1019 0 R 1020 0 R 1021 0 R 1022 0 R 1023 0 R 1024 0 R 1025 0 R 1026 0 R 1027 0 R 1028 0 R 1029 0 R 1030 0 R 1031 0 R 1032 0 R 1033 0 R ]
+>> endobj
 981 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 556.311 176.695 565.421]
+/Rect [84.043 695.887 190.633 705.192]
 /Subtype /Link
-/A << /S /GoTo /D (subsection.7.4) >>
+/A << /S /GoTo /D (section.6) >>
 >> endobj
 982 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [121.901 541.76 266.986 553.466]
+/Rect [98.987 683.832 175.918 692.943]
 /Subtype /Link
-/A << /S /GoTo /D (subsubsection.7.4.1) >>
+/A << /S /GoTo /D (subsection.6.1) >>
 >> endobj
 983 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 529.805 278.413 541.815]
+/Rect [98.987 671.877 197.228 681.292]
 /Subtype /Link
-/A << /S /GoTo /D (subsection.7.5) >>
+/A << /S /GoTo /D (subsection.6.2) >>
 >> endobj
 984 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [121.901 517.85 282.368 529.86]
+/Rect [98.987 657.327 176.894 669.033]
 /Subtype /Link
-/A << /S /GoTo /D (subsubsection.7.5.1) >>
+/A << /S /GoTo /D (subsection.6.3) >>
 >> endobj
 985 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 505.895 259.952 517.905]
+/Rect [98.987 645.372 156.909 657.078]
 /Subtype /Link
-/A << /S /GoTo /D (subsection.7.6) >>
+/A << /S /GoTo /D (subsection.6.4) >>
 >> endobj
-986 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [121.901 493.94 243.464 505.645]
-/Subtype /Link
-/A << /S /GoTo /D (subsubsection.7.6.1) >>
->> endobj
-987 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [121.901 481.984 243.962 493.994]
-/Subtype /Link
-/A << /S /GoTo /D (subsubsection.7.6.2) >>
->> endobj
-988 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [121.901 470.029 232.087 481.735]
-/Subtype /Link
-/A << /S /GoTo /D (subsubsection.7.6.3) >>
->> endobj
-989 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [121.901 458.074 302.303 470.084]
-/Subtype /Link
-/A << /S /GoTo /D (subsubsection.7.6.4) >>
->> endobj
 990 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 446.119 202.777 458.129]
+/Rect [98.987 635.025 199.509 645.426]
 /Subtype /Link
-/A << /S /GoTo /D (subsection.7.7) >>
+/A << /S /GoTo /D (subsection.6.5) >>
 >> endobj
 991 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [121.901 436.759 219.345 446.173]
+/Rect [98.987 624.057 159.779 633.167]
 /Subtype /Link
-/A << /S /GoTo /D (subsubsection.7.7.1) >>
+/A << /S /GoTo /D (subsection.6.6) >>
 >> endobj
 992 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [121.901 422.208 223.958 434.218]
+/Rect [121.901 609.506 313.371 621.516]
 /Subtype /Link
-/A << /S /GoTo /D (subsubsection.7.7.2) >>
+/A << /S /GoTo /D (subsubsection.6.6.1) >>
 >> endobj
 993 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [84.043 402.986 115.923 412.066]
+/Rect [98.987 600.146 146.299 609.257]
 /Subtype /Link
-/A << /S /GoTo /D (section.8) >>
+/A << /S /GoTo /D (subsection.6.7) >>
 >> endobj
 994 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 390.931 171.604 400.042]
+/Rect [98.987 585.596 262.174 597.606]
 /Subtype /Link
-/A << /S /GoTo /D (subsection.8.1) >>
+/A << /S /GoTo /D (subsection.6.8) >>
 >> endobj
 995 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [121.901 378.976 255.917 388.086]
+/Rect [121.901 573.641 246.453 585.65]
 /Subtype /Link
-/A << /S /GoTo /D (subsubsection.8.1.1) >>
+/A << /S /GoTo /D (subsubsection.6.8.1) >>
 >> endobj
 996 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 367.02 195.953 376.131]
+/Rect [98.987 561.685 168.167 573.391]
 /Subtype /Link
-/A << /S /GoTo /D (subsection.8.2) >>
+/A << /S /GoTo /D (subsection.6.9) >>
 >> endobj
 997 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 355.065 177.333 364.176]
+/Rect [121.901 549.73 277.217 561.74]
 /Subtype /Link
-/A << /S /GoTo /D (subsection.8.3) >>
+/A << /S /GoTo /D (subsubsection.6.9.1) >>
 >> endobj
 998 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 340.515 181.208 352.525]
+/Rect [121.901 537.775 217.054 549.481]
 /Subtype /Link
-/A << /S /GoTo /D (subsection.8.4) >>
+/A << /S /GoTo /D (subsubsection.6.9.2) >>
 >> endobj
 999 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [121.901 328.56 320.056 340.57]
+/Rect [121.901 528.415 239.459 537.83]
 /Subtype /Link
-/A << /S /GoTo /D (subsubsection.8.4.1) >>
+/A << /S /GoTo /D (subsubsection.6.9.3) >>
 >> endobj
 1000 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 316.605 238.492 328.31]
+/Rect [121.901 516.46 205.846 525.875]
 /Subtype /Link
-/A << /S /GoTo /D (subsection.8.5) >>
+/A << /S /GoTo /D (subsubsection.6.9.4) >>
 >> endobj
 1001 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [121.901 304.649 260.361 316.355]
+/Rect [121.901 501.91 263.638 513.919]
 /Subtype /Link
-/A << /S /GoTo /D (subsubsection.8.5.1) >>
+/A << /S /GoTo /D (subsubsection.6.9.5) >>
 >> endobj
 1002 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [121.901 292.694 232.724 304.4]
+/Rect [98.987 492.55 177.532 501.964]
 /Subtype /Link
-/A << /S /GoTo /D (subsubsection.8.5.2) >>
+/A << /S /GoTo /D (subsection.6.10) >>
 >> endobj
 1003 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 280.739 214.144 292.445]
+/Rect [98.987 480.595 278.164 490.009]
 /Subtype /Link
-/A << /S /GoTo /D (subsection.8.6) >>
+/A << /S /GoTo /D (subsection.6.11) >>
 >> endobj
 1004 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [84.043 259.08 136.944 270.597]
+/Rect [84.043 456.341 199.22 468.081]
 /Subtype /Link
-/A << /S /GoTo /D (section.9) >>
+/A << /S /GoTo /D (section.7) >>
 >> endobj
 1005 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 246.866 183.211 258.572]
+/Rect [98.987 446.722 219.963 456.136]
 /Subtype /Link
-/A << /S /GoTo /D (subsection.9.1) >>
+/A << /S /GoTo /D (subsection.7.1) >>
 >> endobj
 1006 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 237.506 169.393 246.921]
+/Rect [98.987 434.766 151.311 444.181]
 /Subtype /Link
-/A << /S /GoTo /D (subsection.9.2) >>
+/A << /S /GoTo /D (subsection.7.2) >>
 >> endobj
 1007 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 222.956 216.495 234.966]
+/Rect [84.043 412.948 114.818 422.029]
 /Subtype /Link
-/A << /S /GoTo /D (subsection.9.3) >>
+/A << /S /GoTo /D (section.8) >>
 >> endobj
 1008 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 211.001 168.167 222.707]
+/Rect [98.987 398.298 206.214 410.004]
 /Subtype /Link
-/A << /S /GoTo /D (subsection.9.4) >>
+/A << /S /GoTo /D (subsection.8.1) >>
 >> endobj
 1009 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [121.901 199.045 243.813 211.055]
+/Rect [98.987 388.938 160.237 398.353]
 /Subtype /Link
-/A << /S /GoTo /D (subsubsection.9.4.1) >>
+/A << /S /GoTo /D (subsection.8.2) >>
 >> endobj
 1010 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [121.901 187.09 285.954 198.796]
+/Rect [98.987 376.983 195.315 386.094]
 /Subtype /Link
-/A << /S /GoTo /D (subsubsection.9.4.2) >>
+/A << /S /GoTo /D (subsection.8.3) >>
 >> endobj
 1011 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [121.901 175.135 220.182 187.145]
+/Rect [98.987 365.028 176.695 374.139]
 /Subtype /Link
-/A << /S /GoTo /D (subsubsection.9.4.3) >>
+/A << /S /GoTo /D (subsection.8.4) >>
 >> endobj
 1012 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 163.18 256.634 175.19]
+/Rect [121.901 350.477 266.986 362.183]
 /Subtype /Link
-/A << /S /GoTo /D (subsection.9.5) >>
+/A << /S /GoTo /D (subsubsection.8.4.1) >>
 >> endobj
 1013 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [84.043 141.521 263.41 153.262]
+/Rect [98.987 338.522 278.413 350.532]
 /Subtype /Link
-/A << /S /GoTo /D (section.10) >>
+/A << /S /GoTo /D (subsection.8.5) >>
 >> endobj
 1014 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 131.902 179.096 141.317]
+/Rect [121.901 326.567 280.296 338.577]
 /Subtype /Link
-/A << /S /GoTo /D (subsection.10.1) >>
+/A << /S /GoTo /D (subsubsection.8.5.1) >>
 >> endobj
 1015 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 118.318 173.009 129.058]
+/Rect [98.987 314.612 259.952 326.622]
 /Subtype /Link
-/A << /S /GoTo /D (subsection.10.2) >>
+/A << /S /GoTo /D (subsection.8.6) >>
 >> endobj
 1016 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 105.397 164.033 117.406]
+/Rect [121.901 302.657 243.464 314.363]
 /Subtype /Link
-/A << /S /GoTo /D (subsection.10.3) >>
+/A << /S /GoTo /D (subsubsection.8.6.1) >>
 >> endobj
 1017 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 96.037 189.427 105.451]
+/Rect [121.901 290.702 243.962 302.711]
 /Subtype /Link
-/A << /S /GoTo /D (subsection.10.4) >>
+/A << /S /GoTo /D (subsubsection.8.6.2) >>
 >> endobj
 1018 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [121.901 81.486 228.59 93.496]
+/Rect [121.901 278.746 232.087 290.452]
 /Subtype /Link
-/A << /S /GoTo /D (subsubsection.10.4.1) >>
+/A << /S /GoTo /D (subsubsection.8.6.3) >>
 >> endobj
-1023 0 obj <<
-/D [1021 0 R /XYZ 85.039 731.867 null]
+1019 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [121.901 266.791 302.303 278.801]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.8.6.4) >>
 >> endobj
 1020 0 obj <<
-/Font << /F33 912 0 R /F37 915 0 R >>
-/ProcSet [ /PDF /Text ]
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [98.987 254.836 202.777 266.846]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.8.7) >>
 >> endobj
-1074 0 obj <<
-/Length 1551      
-/Filter /FlateDecode
->>
-stream
-x\xDA\xED[\xC1v\xDA8\xDD\xF7+\xBC8gp-Ë\xAD\xD9\xCCI\xDA&\xED\x9CtB3]tf\xE1|\xE2XÔ\x93\xC9ß\x8C$c[@!MB\xBCG\x86\xFBÞ\xEF\xBE+a\x97\x86e\x9C\xBE\xB1\x8F\xC7\xE37oO 4\xB0\x89]\xDB5\xC6SØ\xE9c\xCFp\xB1kb\xEC\xE3\x89\xF1\xBD,\xD31\xED\xFE\xC0\xB3\xAC\xDE(J.c\xD2\xD8\xC8\xEA}\xEBc\xBB\xA4}\xE0\xF7È\xE6\x99|\xF9\xC3\xC1\xF5\x9C\xE6\xDF\xF1å\xEF\xCF\xF1zf\x80\xF8"/\xE8\xC1\xC1\xF8\x9E\x8F4~\xA6\x8Fp\xC2Úå1\xC0\xC4Up\x85\xD7\xCFyÌ\xF9n\xC8B\xD9- \xF0\x84\xC5\xC0ÑE|-\x8E\xD8W\xF2#'\xCB~S\x9A\x8A'..hidden..@|\x98/\xD26\x9C*k\xCF/LH\x9Ai\x89\xEB\xA2C\xF7\xA2\xB1{P\x96e\xE0\xA92ItÃ[\x8B\x80\xF3z#\xF0\xF4\xD1\xF1Et\x8E\x86Öé:\x89\xE9msy\xBA]H\xAC\xBDGfM\xF1M \x9A\xF31\xA5WW\x84Ìl$a$-\xAAiq\xC5f\x92\xE8D\xBF.*\x8DL\xC4+#\xD7Ù\xE29U4(.CZ\xB4rV~R\xB6\xA2i\xC7Z\x91B\xFF\xE1\xC0=,Q\x95\xFCÛ\xC4>\x98)k~Yl\x83\xBD%\xD0*\xDC\xF68H\xB9\xB6$\xD4Å\xCEX0-~\xDCt*\xB4J\xB6\x9C\xC3\xD7lnÍTX\xD0\xE1)IHZQgA"S\xE4M2G\xF1^\xB3H~\xDDB\xCDßÛ\xE2\xB6
-\xDAMD-\xAF\xEB2\xFB\x81\xB5}ÉSY\xA8\x83|7\xC8×\x85\xC0*\xE3\xF4=\xA7)[\xA1\x87m\xE4v
-xß\xABuY\xB0\x88\xCEh\xCD\xE7e\xFB\xFCL'yL~\xEBs\x86\xB7z\xE3>\xE62#H\xB2)I\x97\xF6Sr\xC3[.M\xEF\xC4\xE5a\xB7\x84$k\xAC\xAD{\xC8\\xD8\xDAc\xF2\xF6z7n;<\x8Bm\x8EPn\xEB~\xFCZ_Ø\x98\x98_,>Ö\x831P\xEF\xD7\xB3\xC5b\xC3\xF3\xD16\xAB5\Ã<\xD3\xA8P\xBB\xE81EG1\x91\xCC(\xA1 \xDB\xF9\xDD(\xFA\x8B\xCD.:\xD0Â\xA1Y]Dq\xC4"Ò\xC9\xDE,\x90\xCEc\xC2xu5\x82^kV!\x8F\xDB"\xF2+Mn%;\xC9\xC9\xE7EoÒv\x85\xB0\x978\xB8ee\x8E\x80km\xD0i\x80G")\xBCÅ\xC2\xE3\xA4f\x95\xF3\xB9\xEA\xEA\xBC\xE3\xD3(\xD4{9\xF4\x9D\xFC}\xF1T\xB9\xE9\xB7p;\xE6z\x89x\xBE\xDF\xE5\xFF\xFEB\xD0T\xD03}\xE47ë=\xD5pF&\x97$\xDD,\xE0\xF0*wz&ntdQ\xB8\xA2\xE8\xEC\x8E\x9F\x92"y\x9CE\x83Â\xE5rbpd\xCA[
-Â\xE6	[Úw\xD9Â\xAC\xDBk\xA5\x8FÍ\xDD\xF8F.F\xCF\xDFnt\xACv\xC4V\xA0%\x89\xED=\xCD/Ô\xBB\x90\xB8\xD5}v	\x90\xF2!\xB4M\xC3\xC0\xB3P\xCBn\xA5t\xC4Ç\xEC\xA9\xFA\x82\x9CF\x9F\x8F\xB5\xA4\xEE\xAB.\xF1u \xAF\xB6Ç\xD8\xDE\xD9L [5C\xF48\xFD\xEE?6z\xC0z\x87,c\x84\x85\xA5\xABOw\xD9% ..hidden..\xEE}\x90\xC6R$\xAA\xDF\xD5i\x8A-\x83\xA5\xE9ts\xF5(\xCF^\x854	\xA38Z\xB9\xB9á#\xA8Ô\xDD6n\xE7r<\xAF\xAD\x91\xF0n\xB9#{\xD6 \xAC0$\x99|Î|-\xBE\xA6\x93\xA7
-nHz\xC7f\xA5\xBA'q\xA6u\x9EQ\x98wS\xA4\xF6\xEE#\xB3#\xD6\xE5|\x94W6\x8D\xC6}\xC0A\xD9Ð!\x80\xD0nÞ(\xB0\xDA\xE2H,~%';5\x91\x8FX\xC0',\x92\xB0æ\xA6m!\xB7\xE7\xC0MC\xBA\xDA\xAA\xE5
-R#\xFAR\xDE,~\x98)6Ì\xC20\xED\xFB\xBD\}\xB1b\x82\xD7I\xC0\xEE\\xB3\xFB\xF2\xAF\xE5\x91n\xA4d\xFA\xDF}\x84z\xB9Õ\x89\xBD\x9BG\x9C\xC4h)\x89\xBD\x99,\xF7\x8AI\x8C^Ú\xA0\xFBptK\xA5\xB0D\xCB\xFC\x8Dy\x9Di\xFC\x86^\xD5\xF6\xC8Ã{\xFB\xE0\xAC\xECX<B\xAAc\x95\xB3\xFFJ\xF7i\x9A'\xE1\xF24\x97J\xF9\xA0\x9A\xE2\xF7\x85>\xA9Ë\xDF\xAF\xE2\xA7\xFC\xF5<It\x9EXM\xA5\x8D\xE8\x8Bw\x88f\xD4\x80J3\xEA\xDB,\x90..hidden..@~tY\xD2`jLÒ\xFC\xFA:P\xD6i\xA3\xA3\xA9\xDDDL;@\xE0\xFE\xAC#[V\xB0\xD3.\xB45\\xC7\xF9\xE4\x92H`\x86\xFCcIE\x91\xE7\xFFi\xAC\xB7y\xF0RK\xD7\xD9\xC6\xE2DÊ\xF9\x94\x84\xF4\x9A4\x94\xB4~:\xB2;\xB1\x97`\xAC\xE9\xEE\xE5\xAE\xFB_Y\xB9\xA2zw\xB9\xDF"N\xF4\xDFs\xB69\x86\x8A\x94CV\xA3\x89Ñ\xFD\x9F\x96\xDD	\xDA\xA4<j\xCB\xE4\xD2%\xDB VK
-kD\xDCC\x8B\xB5T\xFE\xF3\xF0OÚ\x87\x93\x9C\xDF&..hidden.."\xE8r\xCB\xAF\xD4o_\xF7g5\x8B\xAB\xDB582&p\x80\xBC\xCE?\xC6o\xFE\x8F\xC2:
-endstream
-endobj
-1073 0 obj <<
-/Type /Page
-/Contents 1074 0 R
-/Resources 1072 0 R
-/MediaBox [0 0 612 792]
-/Parent 917 0 R
-/Annots [ 1019 0 R 1024 0 R 1025 0 R 1026 0 R 1027 0 R 1028 0 R 1029 0 R 1030 0 R 1031 0 R 1032 0 R 1033 0 R 1034 0 R 1035 0 R 1036 0 R 1037 0 R 1038 0 R 1039 0 R 1040 0 R 1041 0 R 1042 0 R 1043 0 R 1044 0 R 1045 0 R 1046 0 R 1047 0 R 1048 0 R 1049 0 R 1050 0 R 1051 0 R 1052 0 R 1053 0 R 1054 0 R 1055 0 R 1056 0 R 1057 0 R 1058 0 R 1059 0 R 1060 0 R 1061 0 R 1062 0 R 1063 0 R 1064 0 R 1065 0 R 1066 0 R 1067 0 R 1068 0 R 1069 0 R 1070 0 R ]
+1021 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [121.901 245.476 219.345 254.891]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.8.7.1) >>
 >> endobj
-1019 0 obj <<
+1022 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [121.901 693.192 275.354 705.202]
+/Rect [121.901 230.926 223.958 242.936]
 /Subtype /Link
-/A << /S /GoTo /D (subsubsection.10.4.2) >>
+/A << /S /GoTo /D (subsubsection.8.7.2) >>
 >> endobj
+1023 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [84.043 211.703 115.923 220.784]
+/Subtype /Link
+/A << /S /GoTo /D (section.9) >>
+>> endobj
 1024 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [121.901 681.237 286.353 693.247]
+/Rect [98.987 199.648 171.604 208.759]
 /Subtype /Link
-/A << /S /GoTo /D (subsubsection.10.4.3) >>
+/A << /S /GoTo /D (subsection.9.1) >>
 >> endobj
 1025 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 669.282 255.09 681.292]
+/Rect [121.901 187.693 255.917 196.804]
 /Subtype /Link
-/A << /S /GoTo /D (subsection.10.5) >>
+/A << /S /GoTo /D (subsubsection.9.1.1) >>
 >> endobj
 1026 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 659.922 196.969 669.337]
+/Rect [98.987 175.738 195.953 184.848]
 /Subtype /Link
-/A << /S /GoTo /D (subsection.10.6) >>
+/A << /S /GoTo /D (subsection.9.2) >>
 >> endobj
 1027 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 645.372 167.28 657.078]
+/Rect [98.987 163.783 177.333 172.893]
 /Subtype /Link
-/A << /S /GoTo /D (subsection.10.7) >>
+/A << /S /GoTo /D (subsection.9.3) >>
 >> endobj
 1028 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 636.012 188.79 645.426]
+/Rect [98.987 149.232 181.208 161.242]
 /Subtype /Link
-/A << /S /GoTo /D (subsection.10.8) >>
+/A << /S /GoTo /D (subsection.9.4) >>
 >> endobj
 1029 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [121.901 621.461 436.338 633.471]
+/Rect [121.901 137.277 320.056 149.287]
 /Subtype /Link
-/A << /S /GoTo /D (subsubsection.10.8.1) >>
+/A << /S /GoTo /D (subsubsection.9.4.1) >>
 >> endobj
 1030 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [121.901 609.506 423.058 621.516]
+/Rect [98.987 125.322 238.492 137.028]
 /Subtype /Link
-/A << /S /GoTo /D (subsubsection.10.8.2) >>
+/A << /S /GoTo /D (subsection.9.5) >>
 >> endobj
 1031 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [121.901 597.551 286.243 609.561]
+/Rect [121.901 113.367 260.361 125.073]
 /Subtype /Link
-/A << /S /GoTo /D (subsubsection.10.8.3) >>
+/A << /S /GoTo /D (subsubsection.9.5.1) >>
 >> endobj
 1032 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 588.191 257.202 597.606]
+/Rect [121.901 101.411 232.724 113.117]
 /Subtype /Link
-/A << /S /GoTo /D (subsection.10.9) >>
+/A << /S /GoTo /D (subsubsection.9.5.2) >>
 >> endobj
 1033 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [121.901 576.236 205.019 585.347]
+/Rect [98.987 89.456 214.144 101.162]
 /Subtype /Link
-/A << /S /GoTo /D (subsubsection.10.9.1) >>
+/A << /S /GoTo /D (subsection.9.6) >>
 >> endobj
-1034 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [121.901 564.281 217.99 573.695]
-/Subtype /Link
-/A << /S /GoTo /D (subsubsection.10.9.2) >>
+1038 0 obj <<
+/D [1036 0 R /XYZ 85.039 731.867 null]
 >> endobj
 1035 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 549.73 168.167 561.436]
-/Subtype /Link
-/A << /S /GoTo /D (subsection.10.10) >>
+/Font << /F37 939 0 R /F33 936 0 R >>
+/ProcSet [ /PDF /Text ]
 >> endobj
-1036 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 537.775 402.267 549.785]
-/Subtype /Link
-/A << /S /GoTo /D (subsection.10.11) >>
+1089 0 obj <<
+/Length 1288      
+/Filter /FlateDecode
+>>
+stream
+x\xDA\xED[M\x97\x9B6\xDDÏ`i\x9FSS	I u\x97i2Iz\x9AL2v\xDBE\xD2\xC1\xF2\x98\x83(\xE0\x99\xF4\xDF,\xC9\xDB\xF8c\x92\x9C\xB1V\x80\xC1\x92}\xAF\xDE{\xF7==\x80s\xEB\xE7\xF5h/G?_\xA1\xC0a.\xF3=\xDFMJ\\x80\x98\xE33\xDFe\x8C:..hidden..<*\x8B\xFEß\xDFC8A\x97V]\xCCFx\xEDv5<Z~\x80a\xE0H\x9C\xAC\xBFE\xF4.\xAC\xA6 \xF5}H{\xF3i\xFA\xAF\xFA\xE02,\xE2\xA81\xE3\xA7c~Ï?\xEA\\x98\xB1nO6\xA0\xA3\x8459Z\xDC-\x9E\xA4e\xD4'\xA4\xDF\xF3(\x9C\xF336\xA1\x9D;!\xFB\xF2r8=\xFE\x82dXM!\xCD&L\xC7\xF2\xE4m\xFA \xE2\x88\x84\xF9\xA1\x96\x8DY	\x964\xDC\xF0L\xE4e\x9C\xDE6G\xF3\x88o\xAD\xE3\x89\xE7\xB9b\x93\xA2:\xC2\xC0te\xD2L6R\xC7 \xB2\xB6\xB0\x97-\xD41#-\xA1|\xD4g\xA0\x97\x87iFe,..hidden..	Q!WE\xFC%N\xE22\xE6*\xE6ND.O\xFE(\xEA\xF5\xBC\x93\xF8\xE7\xC3Cw\xE4	\xC9b\x97\xE1\x8A\xAF\xE2\xEA\x8C\xCAq?\xCED\xD6Î){\xAE\xF31Wl\xBC\xD3\xF0\x96\xDF\xF3\xB44\xC32!\xB8\x87È\x84EÏ\xB6
+\xA0NW\x86a\xA2Ù\x96\xE1\x84\xE7-R\x8B\xD9x|\xBC'\xDDD1\xD49\xCB\xCA\xDAhG<\xABÃ/K\x9BQ\xC9\xCApgYK\xC0\xF7hY\xF9n\xE4\xA8\xE6Å\xF4f\xF5\x99\xD7\xF9\x9D\xBC\xBAJÄ\xBD<\xCB\xCC\xE9\x99iUp\x99\xBEy\xFEP\xE5\xF3\x92\x97W_\xC3\xFB,..hidden..)x\x88.?\xFD;\xE3E\xD9\xCCF:H^~\xDC\}\xAC\xD0\xD0E\x9E\x8F\xA7h\xC3\xDDï}\x95\xCE\xE6\xCB6\x9A\x86z\xD5n\xCE\x90Ol\xA0OIJ\xA0\xCD \xE2\xF1C\x8B\xC0D\x98Xe\xF9\xDDØJ`~\xE8*01\xF2-3\xA7gf\x83\xC0\xA4Z`^
+qw\xC7y\xA6\xCB'<-y\xBE\xA8g\x95S\xE5\xE8d\xBC\xAE-\x8D\xAB\x92K\\xF2\xFB\xE2'U\x9B\xD4nP^F\xA2\xE5\xE5\xE2I\x8A&\xB3$1\x8C\xD1\xE3;n\xA1j\xF9\xB7\x89S\x90\x85\xB9Q\x94b<\xD9\xCAiÃu-\xA3P-×u\xFE\xA3\x8B2\x9C\xD4nÒ\xCAÃ~\xFEÚ\xEDSF\xAEÎ;|\xCDS\x9E\xAF\xA8\xB3E\xF3W\x91"\x89\xC7\xF2^\xD3H ;o\xA1\xC6\xF6\xF2mL\xFB\xB6\xB4\x9B\x88\x82\xC0\x86\x97SPZ\xD0W\xFEt\xEB\x92&\x80XÈC\x8E\xBD\xFD\\x8ClÛ]	?Gfx\x95[X\xCBj\xB8Ü\xE3Y\xC2\xE9W~e\xBF|\xC2\xF3e\x84}\x9B>T!W\xE4\xFF\xC9\xCB/\xBC|\xE4<..hidden..|\x81\xC2É\xE3^\xC5_\xB5vzQ|Gbc\xC2n-\x88\x9E\xDEÓ\xDCT\xC43\xA3\x91J',..hidden..<mY\xEA\x92\xE7\xA4yvy\x96\x95u\xAC\xEE;\x85X-QH\xADGß;êJ\x98^\xF2Le\x87\xF1\xF9n\xC3\xE9\xE9\xC1\xC7
+\xFC\xB8\xC8D\x853+e\x9E\x98")x\xAF\xBDN]A\x91gÎI23\xF6s|\xE0Y\x84~5r\xFAj\xCBr\x96\xD5j_GO\xC3I\x95\xC9Ë0{\xF8\xD9ÛtX\xC0D\x9Dd'
+\JhCv"9î\xED:s\xBD\x81\xADR\x96\xEA\xFEz\xAFVo\xCF\\xF7\xAD\x9Bj\xC5-\x9Dh\xC3HrÎ\xC0C\xCFx\xE4\x84\xB1c\xD7.Öh\xDBzE_\x86e\xA8tlZVI\x9D\xD1em>\xD1y\x81\xBC\xEA5{\xA3\x9A\xFCUR\xACD:I\xD3:\x905\x84[\xC0Ú1f#&\xB4-O\xE5\xA4\xF6\xE9/\xC3\xCB\xFE\xB2\xEBL\x936\xBD9\x86(\xB6~\x8B}\xE8\}\xBEÉ\x99&Pj\xD7\xFF	)\x80\xB8>..hidden..
+0
+endstream
+endobj
+1088 0 obj <<
+/Type /Page
+/Contents 1089 0 R
+/Resources 1087 0 R
+/MediaBox [0 0 612 792]
+/Parent 941 0 R
+/Annots [ 1034 0 R 1039 0 R 1040 0 R 1041 0 R 1042 0 R 1043 0 R 1044 0 R 1045 0 R 1046 0 R 1047 0 R 1048 0 R 1049 0 R 1050 0 R 1051 0 R 1052 0 R 1053 0 R 1054 0 R 1055 0 R 1056 0 R 1057 0 R 1058 0 R 1059 0 R 1060 0 R 1061 0 R 1062 0 R 1063 0 R 1064 0 R 1065 0 R 1066 0 R 1067 0 R 1068 0 R 1069 0 R 1070 0 R 1071 0 R 1072 0 R 1073 0 R 1074 0 R 1075 0 R 1076 0 R 1077 0 R 1078 0 R 1079 0 R 1080 0 R 1081 0 R 1082 0 R ]
 >> endobj
-1037 0 obj <<
+1034 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [84.043 518.552 116.471 527.339]
+/Rect [84.043 693.451 136.944 704.968]
 /Subtype /Link
-/A << /S /GoTo /D (section.11) >>
+/A << /S /GoTo /D (section.10) >>
 >> endobj
-1038 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [84.043 496.634 121.453 505.715]
-/Subtype /Link
-/A << /S /GoTo /D (section.12) >>
->> endobj
 1039 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [98.987 484.58 177.243 493.994]
+/Rect [98.987 681.237 183.211 692.943]
 /Subtype /Link
-/A << /S /GoTo /D (subsection.12.1) >>
+/A << /S /GoTo /D (subsection.10.1) >>
 >> endobj
 1040 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]

@@ Diff output truncated at 100000 characters. @@
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.