diff --git a/.cvsignore b/.cvsignore
index 1d378db06e38e06d0d105cf0e2fffa454fcce711..cba381bab8a05481d08b4f0cf358bb98ffedc538 100644
--- a/.cvsignore
+++ b/.cvsignore
@@ -4,4 +4,3 @@ data
 localconfig
 index.html
 old-params.txt
-extensions
diff --git a/Bugzilla.pm b/Bugzilla.pm
index 93c37a51c81687275184ede5dcb0bc6ec35eec58..c77c039ceb3b994d22af6a68aea9235b464bf090 100644
--- a/Bugzilla.pm
+++ b/Bugzilla.pm
@@ -26,6 +26,15 @@ package Bugzilla;
 
 use strict;
 
+# We want any compile errors to get to the browser, if possible.
+BEGIN {
+    # This makes sure we're in a CGI.
+    if ($ENV{SERVER_SOFTWARE} && !$ENV{MOD_PERL}) {
+        require CGI::Carp;
+        CGI::Carp->import('fatalsToBrowser');
+    }
+}
+
 use Bugzilla::Config;
 use Bugzilla::Constants;
 use Bugzilla::Auth;
@@ -81,6 +90,7 @@ use constant SHUTDOWNHTML_EXIT_SILENTLY => [
 
 # Note that this is a raw subroutine, not a method, so $class isn't available.
 sub init_page {
+    (binmode STDOUT, ':utf8') if Bugzilla->params->{'utf8'};
 
     # Some environment variables are not taint safe
     delete @::ENV{'PATH', 'IFS', 'CDPATH', 'ENV', 'BASH_ENV'};
diff --git a/Bugzilla/Attachment.pm b/Bugzilla/Attachment.pm
index 736959b2fe50fe839a8cfeb20da5aa75d17297fe..954765f0327c3674888a5b9a6777fd9d7a2d6100 100644
--- a/Bugzilla/Attachment.pm
+++ b/Bugzilla/Attachment.pm
@@ -88,9 +88,10 @@ sub _retrieve {
         'attachments.bug_id AS bug_id',
         'attachments.description AS description',
         'attachments.mimetype AS contenttype',
-        'attachments.submitter_id AS _attacher_id',
+        'attachments.submitter_id AS attacher_id',
         Bugzilla->dbh->sql_date_format('attachments.creation_ts',
                                        '%Y.%m.%d %H:%i') . " AS attached",
+        'attachments.modification_time',
         'attachments.filename AS filename',
         'attachments.ispatch AS ispatch',
         'attachments.isurl AS isurl',
@@ -98,13 +99,14 @@ sub _retrieve {
         'attachments.isprivate AS isprivate'
     );
     my $columns = join(", ", @columns);
-
-    my $records = Bugzilla->dbh->selectall_arrayref("SELECT $columns
-                                                     FROM attachments
-                                                     WHERE attach_id IN (" .
-                                                     join(",", @$ids) . ")
-                                                     ORDER BY attach_id",
-                                                    { Slice => {} });
+    my $dbh = Bugzilla->dbh;
+    my $records = $dbh->selectall_arrayref(
+                      "SELECT $columns
+                         FROM attachments
+                        WHERE " 
+                       . Bugzilla->dbh->sql_in('attach_id', $ids) 
+                 . " ORDER BY attach_id",
+                       { Slice => {} });
     return $records;
 }
 
@@ -187,7 +189,7 @@ the user who attached the attachment
 sub attacher {
     my $self = shift;
     return $self->{attacher} if exists $self->{attacher};
-    $self->{attacher} = new Bugzilla::User($self->{_attacher_id});
+    $self->{attacher} = new Bugzilla::User($self->{attacher_id});
     return $self->{attacher};
 }
 
@@ -208,6 +210,21 @@ sub attached {
 
 =over
 
+=item C<modification_time>
+
+the date and time on which the attachment was last modified.
+
+=back
+
+=cut
+
+sub modification_time {
+    my $self = shift;
+    return $self->{modification_time};
+}
+
+=over
+
 =item C<filename>
 
 the name of the file the attacher attached
@@ -484,7 +501,7 @@ sub _validate_data {
         my $imgdata = $img->ImageToBlob();
         $data = $imgdata;
         $cgi->param('contenttype', 'image/png');
-        $$hr_vars->{'convertedbmp'} = 1;
+        $hr_vars->{'convertedbmp'} = 1;
     }
 
     # Make sure the attachment does not exceed the maximum permitted size
@@ -741,8 +758,6 @@ Params:     C<$bug> - Bugzilla::Bug object - the bug for which to insert
 
 Returns:    the ID of the new attachment.
 
-=back
-
 =cut
 
 sub insert_attachment_for_bug {
@@ -810,12 +825,12 @@ sub insert_attachment_for_bug {
         '^requestee(_type)?-(\d+)$' => { 'type' => 'multi' },
     }, MATCH_SKIP_CONFIRM);
 
-    $$hr_vars->{'match_field'} = 'requestee';
+    $hr_vars->{'match_field'} = 'requestee';
     if ($match_status == USER_MATCH_FAILED) {
-        $$hr_vars->{'message'} = 'user_match_failed';
+        $hr_vars->{'message'} = 'user_match_failed';
     }
     elsif ($match_status == USER_MATCH_MULTIPLE) {
-        $$hr_vars->{'message'} = 'user_match_multiple';
+        $hr_vars->{'message'} = 'user_match_multiple';
     }
 
     # Escape characters in strings that will be used in SQL statements.
@@ -826,10 +841,10 @@ sub insert_attachment_for_bug {
     # Insert the attachment into the database.
     my $sth = $dbh->do(
         "INSERT INTO attachments
-            (bug_id, creation_ts, filename, description,
+            (bug_id, creation_ts, modification_time, filename, description,
              mimetype, ispatch, isurl, isprivate, submitter_id)
-         VALUES (?,?,?,?,?,?,?,?,?)", undef, ($bug->bug_id, $timestamp, $filename,
-              $description, $contenttype, $cgi->param('ispatch'),
+         VALUES (?,?,?,?,?,?,?,?,?,?)", undef, ($bug->bug_id, $timestamp, $timestamp,
+              $filename, $description, $contenttype, $cgi->param('ispatch'),
               $isurl, $isprivate, $user->id));
     # Retrieve the ID of the newly created attachment record.
     my $attachid = $dbh->bz_last_key('attachments', 'attach_id');
@@ -877,8 +892,9 @@ sub insert_attachment_for_bug {
         # This call must be done before updating the 'attachments' table.
         Bugzilla::Flag::CancelRequests($bug, $obsolete_attachment, $timestamp);
 
-        $dbh->do('UPDATE attachments SET isobsolete = 1 WHERE attach_id = ?',
-                 undef, $obsolete_attachment->id);
+        $dbh->do('UPDATE attachments SET isobsolete = 1, modification_time = ?
+                  WHERE attach_id = ?',
+                 undef, ($timestamp, $obsolete_attachment->id));
 
         $dbh->do('INSERT INTO bugs_activity (bug_id, attach_id, who, bug_when,
                                              fieldid, removed, added)
@@ -902,16 +918,42 @@ sub insert_attachment_for_bug {
     Bugzilla->error_mode(ERROR_MODE_DIE);
     eval {
         Bugzilla::Flag::validate($cgi, $bug->bug_id, -1, SKIP_REQUESTEE_ON_ERROR);
-        Bugzilla::Flag::process($bug, $attachment, $timestamp, $cgi);
+        Bugzilla::Flag::process($bug, $attachment, $timestamp, $cgi, $hr_vars);
     };
     Bugzilla->error_mode($error_mode_cache);
     if ($@) {
-        $$hr_vars->{'message'} = 'flag_creation_failed';
-        $$hr_vars->{'flag_creation_error'} = $@;
+        $hr_vars->{'message'} = 'flag_creation_failed';
+        $hr_vars->{'flag_creation_error'} = $@;
     }
 
     # Return the new attachment object.
     return $attachment;
 }
 
+=pod
+
+=item C<remove_from_db()>
+
+Description: removes an attachment from the DB.
+
+Params:     none
+
+Returns:    nothing
+
+=back
+
+=cut
+
+sub remove_from_db {
+    my $self = shift;
+    my $dbh = Bugzilla->dbh;
+
+    $dbh->bz_start_transaction();
+    $dbh->do('DELETE FROM flags WHERE attach_id = ?', undef, $self->id);
+    $dbh->do('DELETE FROM attach_data WHERE id = ?', undef, $self->id);
+    $dbh->do('UPDATE attachments SET mimetype = ?, ispatch = ?, isurl = ?, isobsolete = ?
+              WHERE attach_id = ?', undef, ('text/plain', 0, 0, 1, $self->id));
+    $dbh->bz_commit_transaction();
+}
+
 1;
diff --git a/Bugzilla/Attachment/CVS/Entries b/Bugzilla/Attachment/CVS/Entries
index 5c902d9938f61dbd8c862ef3d9871c73ab1583c3..c8becac457daab56ab5a961cca2455f0e709344a 100644
--- a/Bugzilla/Attachment/CVS/Entries
+++ b/Bugzilla/Attachment/CVS/Entries
@@ -1,2 +1,2 @@
-/PatchReader.pm/1.4/Sat Dec 30 01:58:28 2006//TBUGZILLA-3_1_2
+/PatchReader.pm/1.4/Sat Dec 30 01:58:28 2006//TBUGZILLA-3_1_3
 D
diff --git a/Bugzilla/Attachment/CVS/Tag b/Bugzilla/Attachment/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/Bugzilla/Attachment/CVS/Tag
+++ b/Bugzilla/Attachment/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/Bugzilla/Auth/CVS/Entries b/Bugzilla/Auth/CVS/Entries
index 9dc046f72ca75231e263d6ba39d43da6c269f817..a0f6d2e9df45bcfd936eb3c134166f6b63d489a3 100644
--- a/Bugzilla/Auth/CVS/Entries
+++ b/Bugzilla/Auth/CVS/Entries
@@ -1,5 +1,5 @@
-/Login.pm/1.1/Fri May 12 02:41:05 2006//TBUGZILLA-3_1_2
-/Verify.pm/1.7/Wed May 23 18:05:49 2007//TBUGZILLA-3_1_2
+/Login.pm/1.1/Fri May 12 02:41:05 2006//TBUGZILLA-3_1_3
+/Verify.pm/1.7/Wed May 23 18:05:49 2007//TBUGZILLA-3_1_3
 D/Login////
 D/Persist////
 D/Verify////
diff --git a/Bugzilla/Auth/CVS/Tag b/Bugzilla/Auth/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/Bugzilla/Auth/CVS/Tag
+++ b/Bugzilla/Auth/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/Bugzilla/Auth/Login/CGI.pm b/Bugzilla/Auth/Login/CGI.pm
index 2a61a54f77f4e496ebd0bf1eb4ae5d6373b73e6d..980e2712390062461e5cc97c7598cd79414f7129 100644
--- a/Bugzilla/Auth/Login/CGI.pm
+++ b/Bugzilla/Auth/Login/CGI.pm
@@ -45,7 +45,7 @@ sub get_login_info {
     my $username = trim($cgi->param("Bugzilla_login"));
     my $password = $cgi->param("Bugzilla_password");
 
-    $cgi->delete('Bugzilla_login', 'Bugzilla_password');
+    $cgi->delete('Bugzilla_login', 'Bugzilla_password', 'GoAheadAndLogIn');
 
     if (!defined $username || !defined $password) {
         return { failure => AUTH_NODATA };
diff --git a/Bugzilla/Auth/Login/CVS/Entries b/Bugzilla/Auth/Login/CVS/Entries
index 4aaa25325de543469d19aad90cd5aac22ef46f64..56ade9020cf662328dda916b59f21a030deca9bf 100644
--- a/Bugzilla/Auth/Login/CVS/Entries
+++ b/Bugzilla/Auth/Login/CVS/Entries
@@ -1,5 +1,5 @@
-/CGI.pm/1.7/Sat Aug 19 17:20:23 2006//TBUGZILLA-3_1_2
-/Cookie.pm/1.5/Wed Jul  5 23:42:47 2006//TBUGZILLA-3_1_2
-/Env.pm/1.4/Mon Jul  3 21:42:46 2006//TBUGZILLA-3_1_2
-/Stack.pm/1.1/Fri May 12 02:41:06 2006//TBUGZILLA-3_1_2
+/CGI.pm/1.8/Wed Nov 14 22:50:25 2007//TBUGZILLA-3_1_3
+/Cookie.pm/1.5/Wed Jul  5 23:42:47 2006//TBUGZILLA-3_1_3
+/Env.pm/1.4/Mon Jul  3 21:42:46 2006//TBUGZILLA-3_1_3
+/Stack.pm/1.1/Fri May 12 02:41:06 2006//TBUGZILLA-3_1_3
 D
diff --git a/Bugzilla/Auth/Login/CVS/Tag b/Bugzilla/Auth/Login/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/Bugzilla/Auth/Login/CVS/Tag
+++ b/Bugzilla/Auth/Login/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/Bugzilla/Auth/Persist/CVS/Entries b/Bugzilla/Auth/Persist/CVS/Entries
index 688c4931ba63751c6c6f0950d7c4fa16d8194e8c..f536b3a92e99623e0e4db8818ed72e604df87f1c 100644
--- a/Bugzilla/Auth/Persist/CVS/Entries
+++ b/Bugzilla/Auth/Persist/CVS/Entries
@@ -1,2 +1,2 @@
-/Cookie.pm/1.5/Mon Jul  3 21:42:46 2006//TBUGZILLA-3_1_2
+/Cookie.pm/1.5/Mon Jul  3 21:42:46 2006//TBUGZILLA-3_1_3
 D
diff --git a/Bugzilla/Auth/Persist/CVS/Tag b/Bugzilla/Auth/Persist/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/Bugzilla/Auth/Persist/CVS/Tag
+++ b/Bugzilla/Auth/Persist/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/Bugzilla/Auth/Verify/CVS/Entries b/Bugzilla/Auth/Verify/CVS/Entries
index 11afc2f9cbc17c2657178d81a3d3e310311a471a..6cb5a33963d4417d7ed856d956da7732013341f8 100644
--- a/Bugzilla/Auth/Verify/CVS/Entries
+++ b/Bugzilla/Auth/Verify/CVS/Entries
@@ -1,5 +1,5 @@
-/DB.pm/1.7/Fri May 12 02:41:14 2006//TBUGZILLA-3_1_2
-/LDAP.pm/1.15/Wed Mar  7 20:43:43 2007//TBUGZILLA-3_1_2
-/RADIUS.pm/1.1/Thu Aug  2 22:38:37 2007//TBUGZILLA-3_1_2
-/Stack.pm/1.1/Fri May 12 02:41:14 2006//TBUGZILLA-3_1_2
+/DB.pm/1.7/Fri May 12 02:41:14 2006//TBUGZILLA-3_1_3
+/LDAP.pm/1.17/Fri Dec 14 18:17:29 2007//TBUGZILLA-3_1_3
+/RADIUS.pm/1.1/Thu Aug  2 22:38:37 2007//TBUGZILLA-3_1_3
+/Stack.pm/1.1/Fri May 12 02:41:14 2006//TBUGZILLA-3_1_3
 D
diff --git a/Bugzilla/Auth/Verify/CVS/Tag b/Bugzilla/Auth/Verify/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/Bugzilla/Auth/Verify/CVS/Tag
+++ b/Bugzilla/Auth/Verify/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/Bugzilla/Auth/Verify/LDAP.pm b/Bugzilla/Auth/Verify/LDAP.pm
index 0176abdcb31e1873c8d94052bbe2f5e904db23f4..2cc2e8352479f70f3d8d49eb558683efbfb6592d 100644
--- a/Bugzilla/Auth/Verify/LDAP.pm
+++ b/Bugzilla/Auth/Verify/LDAP.pm
@@ -37,6 +37,7 @@ use fields qw(
 
 use Bugzilla::Constants;
 use Bugzilla::Error;
+use Bugzilla::User;
 use Bugzilla::Util;
 
 use Net::LDAP;
@@ -90,7 +91,22 @@ sub check_credentials {
                      details => {attr => $mail_attr} };
         }
 
-        $params->{bz_username} = $user_entry->get_value($mail_attr);
+        my @emails = $user_entry->get_value($mail_attr);
+
+        # Default to the first email address returned.
+        $params->{bz_username} = $emails[0];
+
+        if (@emails > 1) {
+            # Cycle through the adresses and check if they're Bugzilla logins.
+            # Use the first one that returns a valid id. 
+            foreach my $email (@emails) {
+                if ( login_to_id($email) ) {
+                    $params->{bz_username} = $email;
+                    last;
+                }
+            }
+        }
+
     } else {
         $params->{bz_username} = $username;
     }
@@ -98,6 +114,8 @@ sub check_credentials {
     $params->{realname}  ||= $user_entry->get_value("displayName");
     $params->{realname}  ||= $user_entry->get_value("cn");
 
+    $params->{extern_id} = $username;
+
     return $params;
 }
 
diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm
index bbcd759d3cdb139ab6b280a4d47c65e5cff8be9d..bc50ccff4de1fa8d69911b06bedcdf44c06e4bef 100755
--- a/Bugzilla/Bug.pm
+++ b/Bugzilla/Bug.pm
@@ -49,11 +49,9 @@ use Storable qw(dclone);
 
 use base qw(Bugzilla::Object Exporter);
 @Bugzilla::Bug::EXPORT = qw(
-    AppendComment ValidateComment
     bug_alias_to_id ValidateBugID
     RemoveVotes CheckIfVotedConfirmed
     LogActivityEntry
-    BUG_STATE_OPEN is_open_state
     editable_bug_fields
     SPECIAL_STATUS_WORKFLOW_ACTIONS
 );
@@ -75,6 +73,7 @@ sub DB_COLUMNS {
     my @custom_names = map {$_->name} @custom;
     return qw(
         alias
+        assigned_to
         bug_file_loc
         bug_id
         bug_severity
@@ -87,6 +86,7 @@ sub DB_COLUMNS {
         op_sys
         priority
         product_id
+        qa_contact
         remaining_time
         rep_platform
         reporter_accessible
@@ -96,9 +96,7 @@ sub DB_COLUMNS {
         target_milestone
         version
     ),
-    'assigned_to AS assigned_to_id',
     'reporter    AS reporter_id',
-    'qa_contact  AS qa_contact_id',
     $dbh->sql_date_format('creation_ts', '%Y.%m.%d %H:%i') . ' AS creation_ts',
     $dbh->sql_date_format('deadline', '%Y-%m-%d') . ' AS deadline',
     @custom_names;
@@ -146,9 +144,15 @@ sub VALIDATORS {
         elsif ($field->type == FIELD_TYPE_MULTI_SELECT) {
             $validator = \&_check_multi_select_field;
         }
-        else {
+        elsif ($field->type == FIELD_TYPE_DATETIME) {
+            $validator = \&_check_datetime_field;
+        }
+        elsif ($field->type == FIELD_TYPE_FREETEXT) {
             $validator = \&_check_freetext_field;
         }
+        else {
+            $validator = \&_check_default_field;
+        }
         $validators->{$field->name} = $validator;
     }
 
@@ -156,8 +160,11 @@ sub VALIDATORS {
 };
 
 use constant UPDATE_VALIDATORS => {
+    assigned_to         => \&_check_assigned_to,
     bug_status          => \&_check_bug_status,
     cclist_accessible   => \&Bugzilla::Object::check_boolean,
+    dup_id              => \&_check_dup_id,
+    qa_contact          => \&_check_qa_contact,
     reporter_accessible => \&Bugzilla::Object::check_boolean,
     resolution          => \&_check_resolution,
     target_milestone    => \&_check_target_milestone,
@@ -170,17 +177,19 @@ sub UPDATE_COLUMNS {
     my @custom_names = map {$_->name} @custom;
     my @columns = qw(
         alias
+        assigned_to
+        bug_file_loc
+        bug_severity
+        bug_status
         cclist_accessible
         component_id
         deadline
         estimated_time
         everconfirmed
-        bug_file_loc
-        bug_severity
-        bug_status
         op_sys
         priority
         product_id
+        qa_contact
         remaining_time
         rep_platform
         reporter_accessible
@@ -199,6 +208,12 @@ use constant NUMERIC_COLUMNS => qw(
     remaining_time
 );
 
+sub DATE_COLUMNS {
+    my @fields = Bugzilla->get_fields(
+        { custom => 1, type => FIELD_TYPE_DATETIME });
+    return map { $_->name } @fields;
+}
+
 # This is used by add_comment to know what we validate before putting in
 # the DB.
 use constant UPDATE_COMMENT_COLUMNS => qw(
@@ -213,7 +228,7 @@ use constant UPDATE_COMMENT_COLUMNS => qw(
 # activity table.
 use constant MAX_LINE_LENGTH => 254;
 
-# Used in ValidateComment(). Gives the max length allowed for a comment.
+# Used in _check_comment(). Gives the max length allowed for a comment.
 use constant MAX_COMMENT_LENGTH => 65535;
 
 use constant SPECIAL_STATUS_WORKFLOW_ACTIONS => qw(
@@ -223,12 +238,6 @@ use constant SPECIAL_STATUS_WORKFLOW_ACTIONS => qw(
     clearresolution
 );
 
-sub BUG_STATE_OPEN {
-    # XXX - We should cache this list.
-    my $dbh = Bugzilla->dbh;
-    return @{$dbh->selectcol_arrayref('SELECT value FROM bug_status WHERE is_open = 1')};
-}
-
 #####################################################################
 
 sub new {
@@ -428,12 +437,8 @@ sub run_create_validators {
     delete $params->{product};
 
     ($params->{bug_status}, $params->{everconfirmed})
-        = $class->_check_bug_status($params->{bug_status}, $product);
-
-    # Check whether a comment is required on bug creation.
-    my $vars = {};
-    $vars->{comment_exists} = ($params->{comment} =~ /\S+/) ? 1 : 0;
-    Bugzilla::Bug->check_status_change_triggers($params->{bug_status}, [], $vars);
+        = $class->_check_bug_status($params->{bug_status}, $product,
+                                    $params->{comment});
 
     $params->{target_milestone} = $class->_check_target_milestone(
         $params->{target_milestone}, $product);
@@ -450,9 +455,9 @@ sub run_create_validators {
     delete $params->{component};
 
     $params->{assigned_to} = 
-        $class->_check_assigned_to($component, $params->{assigned_to});
+        $class->_check_assigned_to($params->{assigned_to}, $component);
     $params->{qa_contact} =
-        $class->_check_qa_contact($component, $params->{qa_contact});
+        $class->_check_qa_contact($params->{qa_contact}, $component);
     $params->{cc} = $class->_check_cc($component, $params->{cc});
 
     # Callers cannot set Reporter, currently.
@@ -465,8 +470,8 @@ sub run_create_validators {
         $params->{remaining_time} = $params->{estimated_time};
     }
 
-    $class->_check_strict_isolation($product, $params->{cc},
-                                    $params->{assigned_to}, $params->{qa_contact});
+    $class->_check_strict_isolation($params->{cc}, $params->{assigned_to},
+                                    $params->{qa_contact}, $product);
 
     ($params->{dependson}, $params->{blocked}) = 
         $class->_check_dependencies($params->{dependson}, $params->{blocked},
@@ -488,11 +493,52 @@ sub update {
     # XXX This is just a temporary hack until all updating happens
     # inside this function.
     my $delta_ts = shift || $dbh->selectrow_array("SELECT NOW()");
-    $self->{delta_ts} = $delta_ts;
 
     my $old_bug = $self->new($self->id);
     my $changes = $self->SUPER::update(@_);
 
+    # Certain items in $changes have to be fixed so that they hold
+    # a name instead of an ID.
+    foreach my $field (qw(product_id component_id)) {
+        my $change = delete $changes->{$field};
+        if ($change) {
+            my $new_field = $field;
+            $new_field =~ s/_id$//;
+            $changes->{$new_field} = 
+                [$self->{"_old_${new_field}_name"}, $self->$new_field];
+        }
+    }
+    foreach my $field (qw(qa_contact assigned_to)) {
+        if ($changes->{$field}) {
+            my ($from, $to) = @{ $changes->{$field} };
+            $from = $old_bug->$field->login if $from;
+            $to   = $self->$field->login    if $to;
+            $changes->{$field} = [$from, $to];
+        }
+    }
+
+    my %old_groups = map {$_->id => $_} @{$old_bug->groups_in};
+    my %new_groups = map {$_->id => $_} @{$self->groups_in};
+    my ($removed_gr, $added_gr) = diff_arrays([keys %old_groups],
+                                              [keys %new_groups]);
+    if (scalar @$removed_gr || scalar @$added_gr) {
+        if (@$removed_gr) {
+            my $qmarks = join(',', ('?') x @$removed_gr);
+            $dbh->do("DELETE FROM bug_group_map
+                       WHERE bug_id = ? AND group_id IN ($qmarks)", undef,
+                     $self->id, @$removed_gr);
+        }
+        my $sth_insert = $dbh->prepare(
+            'INSERT INTO bug_group_map (bug_id, group_id) VALUES (?,?)');
+        foreach my $gid (@$added_gr) {
+            $sth_insert->execute($self->id, $gid);
+        }
+        my @removed_names = map { $old_groups{$_}->name } @$removed_gr;
+        my @added_names   = map { $new_groups{$_}->name } @$added_gr;
+        $changes->{'bug_group'} = [join(', ', @removed_names),
+                                   join(', ', @added_names)];
+    }
+    
     foreach my $comment (@{$self->{added_comments} || []}) {
         my $columns = join(',', keys %$comment);
         my @values  = values %$comment;
@@ -500,6 +546,16 @@ sub update {
         $dbh->do("INSERT INTO longdescs (bug_id, who, bug_when, $columns)
                        VALUES (?,?,?,$qmarks)", undef,
                  $self->bug_id, Bugzilla->user->id, $delta_ts, @values);
+        if ($comment->{work_time}) {
+            LogActivityEntry($self->id, "work_time", "", $comment->{work_time},
+                Bugzilla->user->id, $delta_ts);
+        }
+    }
+    
+    foreach my $comment_id (keys %{$self->{comment_isprivate} || {}}) {
+        $dbh->do("UPDATE longdescs SET isprivate = ? WHERE comment_id = ?",
+                 undef, $self->{comment_isprivate}->{$comment_id}, $comment_id);
+        # XXX It'd be nice to track this in the bug activity.
     }
 
     # Insert the values into the multiselect value tables
@@ -527,24 +583,30 @@ sub update {
         my $change = $changes->{$field};
         my $from = defined $change->[0] ? $change->[0] : '';
         my $to   = defined $change->[1] ? $change->[1] : '';
-        # Certain fields have their name stored in bugs_activity, not their id.
-        if ( grep($_ eq $field, qw(product_id component_id)) ) {
-            $field =~ s/_id$//;
-            $from  = $self->{"_old_${field}_name"};
-            $to    = $self->$field;
-        }
         LogActivityEntry($self->id, $field, $from, $to, Bugzilla->user->id,
                          $delta_ts);
     }
 
-    # If this bug is no longer a duplicate, it no longer belongs in the
-    # dup table.
-    if (exists $changes->{'resolution'} 
-        && $changes->{'resolution'}->[0] eq 'DUPLICATE') 
-    {
-        my $dup_id = $self->dup_id;
+    # Check if we have to update the duplicates table and the other bug.
+    my ($old_dup, $cur_dup) = ($old_bug->dup_id || 0, $self->dup_id || 0);
+    if ($old_dup != $cur_dup) {
         $dbh->do("DELETE FROM duplicates WHERE dupe = ?", undef, $self->id);
-        $changes->{'dupe_of'} = [$dup_id, undef];
+        if ($cur_dup) {
+            $dbh->do('INSERT INTO duplicates (dupe, dupe_of) VALUES (?,?)',
+                     undef, $self->id, $cur_dup);
+            if (my $update_dup = delete $self->{_dup_for_update}) {
+                $update_dup->update();
+            }
+        }
+        
+        $changes->{'dup_id'} = [$old_dup || undef, $cur_dup || undef];
+    }
+
+    # If any change occurred, refresh the timestamp of the bug.
+    if (scalar(keys %$changes) || $self->{added_comments}) {
+        $dbh->do('UPDATE bugs SET delta_ts = ? WHERE bug_id = ?',
+                 undef, ($delta_ts, $self->id));
+        $self->{delta_ts} = $delta_ts;
     }
 
     return $changes;
@@ -582,8 +644,8 @@ sub update_cc {
     my ($removed, $added) = diff_arrays(\@old_cc, \@new_cc);
     
     if (scalar @$removed) {
-        $dbh->do('DELETE FROM cc WHERE bug_id = ? AND who IN (' .
-                  join(',', @$removed) . ')', undef, $self->id);
+        $dbh->do('DELETE FROM cc WHERE bug_id = ? AND ' 
+                 . $dbh->sql_in('who', $removed), undef, $self->id);
     }
     foreach my $user_id (@$added) {
         $dbh->do('INSERT INTO cc (bug_id, who) VALUES (?,?)',
@@ -669,8 +731,8 @@ sub update_keywords {
     my ($removed, $added) = diff_arrays(\@old_ids, \@new_ids);
 
     if (scalar @$removed) {
-        $dbh->do('DELETE FROM keywords WHERE bug_id = ? AND keywordid IN ('
-                 . join(',', @$removed) . ')', undef, $self->id);
+        $dbh->do('DELETE FROM keywords WHERE bug_id = ? AND ' 
+                 . $dbh->sql_in('keywordid', $removed), undef, $self->id);
     }
     foreach my $keyword_id (@$added) {
         $dbh->do('INSERT INTO keywords (bug_id, keywordid) VALUES (?,?)',
@@ -689,6 +751,10 @@ sub update_keywords {
         my $added_names   = join(', ', (map {$_->name} @$added_keywords));
         LogActivityEntry($self->id, "keywords", $removed_names,
                          $added_names, Bugzilla->user->id, $delta_ts);
+
+        $dbh->do('UPDATE bugs SET delta_ts = ? WHERE bug_id = ?',
+                 undef, ($delta_ts, $self->id));
+        $self->{delta_ts} = $delta_ts;
     }
 
     return [$removed_keywords, $added_keywords];
@@ -723,12 +789,7 @@ sub remove_from_db {
     # Also, the attach_data table uses attachments.attach_id as a foreign
     # key, and so indirectly depends on a bug deletion too.
 
-    $dbh->bz_lock_tables('attachments WRITE', 'bug_group_map WRITE',
-                         'bugs WRITE', 'bugs_activity WRITE', 'cc WRITE',
-                         'dependencies WRITE', 'duplicates WRITE',
-                         'flags WRITE', 'keywords WRITE',
-                         'longdescs WRITE', 'votes WRITE',
-                         'attach_data WRITE');
+    $dbh->bz_start_transaction();
 
     $dbh->do("DELETE FROM bug_group_map WHERE bug_id = ?", undef, $bug_id);
     $dbh->do("DELETE FROM bugs_activity WHERE bug_id = ?", undef, $bug_id);
@@ -739,7 +800,6 @@ sub remove_from_db {
              undef, ($bug_id, $bug_id));
     $dbh->do("DELETE FROM flags WHERE bug_id = ?", undef, $bug_id);
     $dbh->do("DELETE FROM keywords WHERE bug_id = ?", undef, $bug_id);
-    $dbh->do("DELETE FROM longdescs WHERE bug_id = ?", undef, $bug_id);
     $dbh->do("DELETE FROM votes WHERE bug_id = ?", undef, $bug_id);
 
     # The attach_data table doesn't depend on bugs.bug_id directly.
@@ -748,15 +808,17 @@ sub remove_from_db {
                                   WHERE bug_id = ?", undef, $bug_id);
 
     if (scalar(@$attach_ids)) {
-        $dbh->do("DELETE FROM attach_data WHERE id IN (" .
-                 join(",", @$attach_ids) . ")");
+        $dbh->do("DELETE FROM attach_data WHERE " 
+                 . $dbh->sql_in('id', $attach_ids));
     }
 
     # Several of the previous tables also depend on attach_id.
     $dbh->do("DELETE FROM attachments WHERE bug_id = ?", undef, $bug_id);
     $dbh->do("DELETE FROM bugs WHERE bug_id = ?", undef, $bug_id);
 
-    $dbh->bz_unlock_tables();
+    $dbh->bz_commit_transaction();
+
+    $dbh->do("DELETE FROM longdescs WHERE bug_id = ?", undef, $bug_id);
 
     # Now this bug no longer exists
     $self->DESTROY;
@@ -797,16 +859,28 @@ sub _check_alias {
 }
 
 sub _check_assigned_to {
-    my ($invocant, $component, $name) = @_;
+    my ($invocant, $assignee, $component) = @_;
     my $user = Bugzilla->user;
 
-    $name = trim($name);
     # Default assignee is the component owner.
     my $id;
-    if (!$user->in_group('editbugs', $component->product_id) || !$name) {
+    # If this is a new bug, you can only set the assignee if you have editbugs.
+    # If you didn't specify the assignee, we use the default assignee.
+    if (!ref $invocant
+        && (!$user->in_group('editbugs', $component->product_id) || !$assignee))
+    {
         $id = $component->default_assignee->id;
     } else {
-        $id = login_to_id($name, THROW_ERROR);
+        if (!ref $assignee) {
+            $assignee = trim($assignee);
+            # When updating a bug, assigned_to can't be empty.
+            ThrowUserError("reassign_to_empty") if ref $invocant && !$assignee;
+            $assignee = Bugzilla::User->check($assignee);
+        }
+        $id = $assignee->id;
+        # create() checks this another way, so we don't have to run this
+        # check during create().
+        $invocant->_check_strict_isolation_for_user($assignee) if ref $invocant;
     }
     return $id;
 }
@@ -831,41 +905,62 @@ sub _check_bug_severity {
 }
 
 sub _check_bug_status {
-    my ($invocant, $status, $product) = @_;
+    my ($invocant, $status, $product, $comment) = @_;
     my $user = Bugzilla->user;
 
-    my @valid_statuses;
+    # Make sure this is a valid status.
+    my $new_status = ref $status ? $status : Bugzilla::Status->check($status);
+    
+    my $old_status; # Note that this is undef for new bugs.
     if (ref $invocant) {
         $product = $invocant->product_obj;
-        @valid_statuses = map { $_->name } @{$invocant->status->can_change_to};
-    }
-    else {
-        @valid_statuses = map { $_->name } @{Bugzilla::Status->can_change_to()};
-    }
-
-    if (!$product->votes_to_confirm) {
-        # UNCONFIRMED becomes an invalid status if votes_to_confirm is 0,
-        # even if you are in editbugs.
-        @valid_statuses = grep {$_ ne 'UNCONFIRMED'} @valid_statuses;
+        $old_status = $invocant->status;
+        my $comments = $invocant->{added_comments} || [];
+        $comment = $comments->[-1];
     }
-
-    if (!ref($invocant)) {
+    
+    # Check permissions for users filing new bugs.
+    if (!ref $invocant) {
+        my $default_status = Bugzilla::Status->can_change_to->[0];
+        
         if ($user->in_group('editbugs', $product->id)
             || $user->in_group('canconfirm', $product->id)) {
            # If the user with privs hasn't selected another status,
            # select the first one of the list.
-           $status ||= $valid_statuses[0];
+           $new_status ||= $default_status;
         }
         else {
             # A user with no privs cannot choose the initial status.
-            $status = $valid_statuses[0];
+            $new_status = $default_status;
         }
     }
 
-    # This check already takes the workflow into account.
-    check_field('bug_status', $status, \@valid_statuses);
+    # Make sure this is a valid transition.
+    if (!$new_status->allow_change_from($old_status, $product)) {
+         ThrowUserError('illegal_bug_status_transition',
+                        { old => $old_status, new => $new_status });
+    }
+
+    # Check if a comment is required for this change.
+    if ($new_status->comment_required_on_change_from($old_status) && !$comment)
+    {
+        ThrowUserError('comment_required', { old => $old_status,
+                                             new => $new_status });
+        
+    }
+    
+    if (ref $invocant && $new_status->name eq 'ASSIGNED'
+        && Bugzilla->params->{"usetargetmilestone"}
+        && Bugzilla->params->{"musthavemilestoneonaccept"}
+        # musthavemilestoneonaccept applies only if at least two
+        # target milestones are defined for the product.
+        && scalar(@{ $product->milestones }) > 1
+        && $invocant->target_milestone eq $product->default_milestone)
+    {
+        ThrowUserError("milestone_required", { bug => $invocant });
+    }
 
-    return $status if ref $invocant;
+    return $new_status->name if ref $invocant;
     return ($status, $status eq 'UNCONFIRMED' ? 0 : 1);
 }
 
@@ -896,7 +991,7 @@ sub _check_comment {
     $comment =~ s/\s*$//s;
     $comment =~ s/\r\n?/\n/g; # Get rid of \r.
 
-    ValidateComment($comment);
+    ThrowUserError('comment_too_long') if length($comment) > MAX_COMMENT_LENGTH;
 
     # Creation-only checks
     if (!ref $invocant) {
@@ -928,7 +1023,7 @@ sub _check_component {
     $name = trim($name);
     $name || ThrowUserError("require_component");
     ($product = $invocant->product_obj) if ref $invocant;
-    my $obj = Bugzilla::Component::check_component($product, $name);
+    my $obj = Bugzilla::Component->check({ product => $product, name => $name });
     return $obj;
 }
 
@@ -937,7 +1032,8 @@ sub _check_deadline {
     
     # Check time-tracking permissions.
     my $tt_group = Bugzilla->params->{"timetrackinggroup"};
-    my $current = ref $invocant ? $invocant->deadline : undef;
+    # deadline() returns '' instead of undef if no deadline is set.
+    my $current = ref $invocant ? ($invocant->deadline || undef) : undef;
     return $current unless $tt_group && Bugzilla->user->in_group($tt_group);
     
     # Validate entered deadline
@@ -1010,12 +1106,89 @@ sub _check_dependencies {
     return ($deps{'dependson'}, $deps{'blocked'});
 }
 
+sub _check_dup_id {
+    my ($self, $dupe_of) = @_;
+    my $dbh = Bugzilla->dbh;
+    
+    $dupe_of = trim($dupe_of);
+    $dupe_of || ThrowCodeError('undefined_field', { field => 'dup_id' });
+    # Make sure we can change the original bug (issue A on bug 96085)
+    ValidateBugID($dupe_of, 'dup_id');
+    
+    # Make sure a loop isn't created when marking this bug
+    # as duplicate.
+    my %dupes;
+    my $this_dup = $dupe_of;
+    my $sth = $dbh->prepare('SELECT dupe_of FROM duplicates WHERE dupe = ?');
+
+    while ($this_dup) {
+        if ($this_dup == $self->id) {
+            ThrowUserError('dupe_loop_detected', { bug_id  => $self->id,
+                                                   dupe_of => $dupe_of });
+        }
+        # If $dupes{$this_dup} is already set to 1, then a loop
+        # already exists which does not involve this bug.
+        # As the user is not responsible for this loop, do not
+        # prevent him from marking this bug as a duplicate.
+        last if exists $dupes{$this_dup};
+        $dupes{$this_dup} = 1;
+        $this_dup = $dbh->selectrow_array($sth, undef, $this_dup);
+    }
+
+    my $cur_dup = $self->dup_id || 0;
+    if ($cur_dup != $dupe_of && Bugzilla->params->{'commentonduplicate'}
+        && !$self->{added_comments})
+    {
+        ThrowUserError('comment_required');
+    }
+
+    # Should we add the reporter to the CC list of the new bug?
+    # If he can see the bug...
+    if ($self->reporter->can_see_bug($dupe_of)) {
+        my $dupe_of_bug = new Bugzilla::Bug($dupe_of);
+        # We only add him if he's not the reporter of the other bug.
+        $self->{_add_dup_cc} = 1
+            if $dupe_of_bug->reporter->id != $self->reporter->id;
+    }
+    # What if the reporter currently can't see the new bug? In the browser 
+    # interface, we prompt the user. In other interfaces, we default to 
+    # not adding the user, as the safest option.
+    elsif (Bugzilla->params->usage_mode == USAGE_MODE_BROWSER) {
+        # If we've already confirmed whether the user should be added...
+        my $cgi = Bugzilla->cgi;
+        my $add_confirmed = $cgi->param('confirm_add_duplicate');
+        if (defined $add_confirmed) {
+            $self->{_add_dup_cc} = $add_confirmed;
+        }
+        else {
+            # Note that here we don't check if he user is already the reporter
+            # of the dupe_of bug, since we already checked if he can *see*
+            # the bug, above. People might have reporter_accessible turned
+            # off, but cclist_accessible turned on, so they might want to
+            # add the reporter even though he's already the reporter of the
+            # dup_of bug.
+            my $vars = {};
+            my $template = Bugzilla->template;
+            # Ask the user what they want to do about the reporter.
+            $vars->{'cclist_accessible'} = $dbh->selectrow_array(
+                q{SELECT cclist_accessible FROM bugs WHERE bug_id = ?},
+                undef, $dupe_of);
+            $vars->{'original_bug_id'} = $dupe_of;
+            $vars->{'duplicate_bug_id'} = $self->id;
+            print $cgi->header();
+            $template->process("bug/process/confirm-duplicate.html.tmpl", $vars)
+              || ThrowTemplateError($template->error());
+            exit;
+        }
+    }
+
+    return $dupe_of;
+}
+
 sub _check_estimated_time {
     return $_[0]->_check_time($_[1], 'estimated_time');
 }
 
-sub _check_freetext_field { return defined $_[1] ? trim($_[1]) : ''; }
-
 sub _check_groups {
     my ($invocant, $product, $group_ids) = @_;
 
@@ -1116,6 +1289,38 @@ sub _check_priority {
     return $priority;
 }
 
+sub _check_qa_contact {
+    my ($invocant, $qa_contact, $component) = @_;
+    $qa_contact = trim($qa_contact) if !ref $qa_contact;
+    
+    my $id;
+    if (!ref $invocant) {
+        # Bugs get no QA Contact on creation if useqacontact is off.
+        return undef if !Bugzilla->params->{useqacontact};
+        # Set the default QA Contact if one isn't specified or if the
+        # user doesn't have editbugs.
+        if (!Bugzilla->user->in_group('editbugs', $component->product_id)
+            || !$qa_contact)
+        {
+            $id = $component->default_qa_contact->id;
+        }
+    }
+    
+    # If a QA Contact was specified or if we're updating, check
+    # the QA Contact for validity.
+    if (!defined $id && $qa_contact) {
+        $qa_contact = Bugzilla::User->check($qa_contact) if !ref $qa_contact;
+        $id = $qa_contact->id;
+        # create() checks this another way, so we don't have to run this
+        # check during create().
+        $invocant->_check_strict_isolation_for_user($qa_contact)
+            if ref $invocant;
+    }
+
+    # "0" always means "undef", for QA Contact.
+    return $id || undef;
+}
+
 sub _check_remaining_time {
     return $_[0]->_check_time($_[1], 'remaining_time');
 }
@@ -1128,9 +1333,45 @@ sub _check_rep_platform {
 }
 
 sub _check_resolution {
-    my ($invocant, $resolution) = @_;
+    my ($self, $resolution) = @_;
     $resolution = trim($resolution);
+    
+    # Throw a special error for resolving bugs without a resolution
+    # (or trying to change the resolution to '' on a closed bug without
+    # using clear_resolution).
+    ThrowUserError('missing_resolution', { status => $self->status->name })
+        if !$resolution && !$self->status->is_open;
+    
+    # Make sure this is a valid resolution.
     check_field('resolution', $resolution);
+
+    # The moving code doesn't use set_resolution. This check prevents
+    # people from hacking the URL variables (or using some other interface)
+    # and setting a bug to MOVED without moving it.
+    ThrowCodeError('no_manual_moved') if $resolution eq 'MOVED';
+    
+    # Don't allow open bugs to have resolutions.
+    ThrowUserError('resolution_not_allowed') if $self->status->is_open;
+    
+    # Check noresolveonopenblockers.
+    if (Bugzilla->params->{"noresolveonopenblockers"} && $resolution eq 'FIXED')
+    {
+        my @dependencies = CountOpenDependencies($self->id);
+        if (@dependencies) {
+            ThrowUserError("still_unresolved_bugs",
+                           { dependencies     => \@dependencies,
+                             dependency_count => scalar @dependencies });
+        }
+    }
+
+    # Check if they're changing the resolution and need to comment.
+    if (Bugzilla->params->{'commentonchange_resolution'} 
+        && $self->resolution && $resolution ne $self->resolution 
+        && !$self->{added_comments})
+    {
+        ThrowUserError('comment_required');
+    }
+    
     return $resolution;
 }
 
@@ -1149,32 +1390,73 @@ sub _check_status_whiteboard { return defined $_[1] ? $_[1] : ''; }
 
 # Unlike other checkers, this one doesn't return anything.
 sub _check_strict_isolation {
-    my ($invocant, $product, $cc_ids, $assignee_id, $qa_contact_id) = @_;
-
+    my ($invocant, $ccs, $assignee, $qa_contact, $product) = @_;
     return unless Bugzilla->params->{'strict_isolation'};
 
-    my @related_users = @$cc_ids;
-    push(@related_users, $assignee_id);
+    if (ref $invocant) {
+        my $original = $invocant->new($invocant->id);
+
+        # We only check people if they've been added. This way, if
+        # strict_isolation is turned on when there are invalid users
+        # on bugs, people can still add comments and so on.
+        my @old_cc = map { $_->id } @{$original->cc_users};
+        my @new_cc = map { $_->id } @{$invocant->cc_users};
+        my ($removed, $added) = diff_arrays(\@old_cc, \@new_cc);
+        $ccs = $added;
+        $assignee = $invocant->assigned_to
+            if $invocant->assigned_to->id != $original->assigned_to->id;
+        if ($invocant->qa_contact
+            && (!$original->qa_contact
+                || $invocant->qa_contact->id != $original->qa_contact->id))
+        {
+            $qa_contact = $invocant->qa_contact;
+        }
+        $product = $invocant->product;
+    }
+
+    my @related_users = @$ccs;
+    push(@related_users, $assignee) if $assignee;
 
-    if (Bugzilla->params->{'useqacontact'} && $qa_contact_id) {
-        push(@related_users, $qa_contact_id);
+    if (Bugzilla->params->{'useqacontact'} && $qa_contact) {
+        push(@related_users, $qa_contact);
     }
 
+    @related_users = @{Bugzilla::User->new_from_list(\@related_users)}
+        if !ref $invocant;
+
     # For each unique user in @related_users...(assignee and qa_contact
     # could be duplicates of users in the CC list)
-    my %unique_users = map {$_ => 1} @related_users;
+    my %unique_users = map {$_->id => $_} @related_users;
     my @blocked_users;
-    foreach my $pid (keys %unique_users) {
-        my $related_user = Bugzilla::User->new($pid);
-        if (!$related_user->can_edit_product($product->id)) {
+    foreach my $id (keys %unique_users) {
+        my $related_user = $unique_users{$id};
+        if (!$related_user->can_edit_product($product->id) ||
+            !$related_user->can_see_product($product->name)) {
             push (@blocked_users, $related_user->login);
         }
     }
     if (scalar(@blocked_users)) {
-        ThrowUserError("invalid_user_group",
-            {'users' => \@blocked_users,
-             'new' => 1,
-             'product' => $product->name});
+        my %vars = ( users   => \@blocked_users,
+                     product => $product->name );
+        if (ref $invocant) {
+            $vars{'bug_id'} = $invocant->id;
+        }
+        else {
+            $vars{'new'} = 1;
+        }
+        ThrowUserError("invalid_user_group", \%vars);
+    }
+}
+
+# This is used by various set_ checkers, to make their code simpler.
+sub _check_strict_isolation_for_user {
+    my ($self, $user) = @_;
+    return unless Bugzilla->params->{"strict_isolation"};
+    if (!$user->can_edit_product($self->{product_id})) {
+        ThrowUserError('invalid_user_group',
+                       { users   => $user->login,
+                         product => $self->product,
+                         bug_id  => $self->id });
     }
 }
 
@@ -1204,25 +1486,6 @@ sub _check_time {
     return $time;
 }
 
-sub _check_qa_contact {
-    my ($invocant, $component, $name) = @_;
-    my $user = Bugzilla->user;
-
-    return undef unless Bugzilla->params->{'useqacontact'};
-
-    $name = trim($name);
-
-    my $id;
-    if (!$user->in_group('editbugs', $component->product_id) || !$name) {
-        # We want to insert NULL into the database if we get a 0.
-        $id = $component->default_qa_contact->id || undef;
-    } else {
-        $id = login_to_id($name, THROW_ERROR);
-    }
-
-    return $id;
-}
-
 sub _check_version {
     my ($invocant, $version, $product) = @_;
     $version = trim($version);
@@ -1237,6 +1500,40 @@ sub _check_work_time {
 
 # Custom Field Validators
 
+sub _check_datetime_field {
+    my ($invocant, $date_time) = @_;
+
+    # Empty datetimes are empty strings or strings only containing
+    # 0's, whitespace, and punctuation.
+    if ($date_time =~ /^[\s0[:punct:]]*$/) {
+        return undef;
+    }
+
+    $date_time = trim($date_time);
+    my ($date, $time) = split(' ', $date_time);
+    if ($date && !validate_date($date)) {
+        ThrowUserError('illegal_date', { date   => $date,
+                                         format => 'YYYY-MM-DD' });
+    }
+    if ($time && !validate_time($time)) {
+        ThrowUserError('illegal_time', { 'time' => $time,
+                                         format => 'HH:MM:SS' });
+    }
+    return $date_time
+}
+
+sub _check_default_field { return defined $_[1] ? trim($_[1]) : ''; }
+
+sub _check_freetext_field {
+    my ($invocant, $text) = @_;
+
+    $text = (defined $text) ? trim($text) : '';
+    if (length($text) > MAX_FREETEXT_LENGTH) {
+        ThrowUserError('freetext_too_long', { text => $text });
+    }
+    return $text;
+}
+
 sub _check_multi_select_field {
     my ($invocant, $values, $field) = @_;
     return [] if !$values;
@@ -1290,13 +1587,28 @@ sub fields {
 # To run check_can_change_field.
 sub _set_global_validator {
     my ($self, $value, $field) = @_;
-    my $current_value = $self->$field;
+    my $current = $self->$field;
     my $privs;
-    $self->check_can_change_field($field, $current_value, $value, \$privs)
-        || ThrowUserError('illegal_change', { field    => $field,
-                                              oldvalue => $current_value,
-                                              newvalue => $value,
-                                              privs    => $privs });
+
+    if (ref $current && ref($current) ne 'ARRAY'
+        && $current->isa('Bugzilla::Object')) {
+        $current = $current->id ;
+    }
+    if (ref $value && ref($value) ne 'ARRAY'
+        && $value->isa('Bugzilla::Object')) {
+        $value = $value->id ;
+    }
+    my $can = $self->check_can_change_field($field, $current, $value, \$privs);
+    if (!$can) {
+        if ($field eq 'assigned_to' || $field eq 'qa_contact') {
+            $value   = user_id_to_login($value);
+            $current = user_id_to_login($current);
+        }
+        ThrowUserError('illegal_change', { field    => $field,
+                                           oldvalue => $current,
+                                           newvalue => $value,
+                                           privs    => $privs });
+    }
 }
 
 
@@ -1305,7 +1617,35 @@ sub _set_global_validator {
 #################
 
 sub set_alias { $_[0]->set('alias', $_[1]); }
+sub set_assigned_to {
+    my ($self, $value) = @_;
+    $self->set('assigned_to', $value);
+    delete $self->{'assigned_to_obj'};
+}
+sub reset_assigned_to {
+    my $self = shift;
+    if (Bugzilla->params->{'commentonreassignbycomponent'} 
+        && !$self->{added_comments})
+    {
+        ThrowUserError('comment_required');
+    }
+    my $comp = $self->component_obj;
+    $self->set_assigned_to($comp->default_assignee);
+}
 sub set_cclist_accessible { $_[0]->set('cclist_accessible', $_[1]); }
+sub set_comment_is_private {
+    my ($self, $comment_id, $isprivate) = @_;
+    return unless Bugzilla->user->is_insider;
+    my ($comment) = grep($comment_id eq $_->{id}, @{$self->longdescs});
+    ThrowUserError('comment_invalid_isprivate', { id => $comment_id }) 
+        if !$comment;
+
+    $isprivate = $isprivate ? 1 : 0;
+    if ($isprivate != $comment->{isprivate}) {
+        $self->{comment_isprivate} ||= {};
+        $self->{comment_isprivate}->{$comment_id} = $isprivate;
+    }
+}
 sub set_component  {
     my ($self, $name) = @_;
     my $old_comp  = $self->component_obj;
@@ -1341,6 +1681,38 @@ sub set_dependencies {
     $self->{'dependson'} = $dependson;
     $self->{'blocked'}   = $blocked;
 }
+sub _clear_dup_id { $_[0]->{dup_id} = undef; }
+sub set_dup_id {
+    my ($self, $dup_id) = @_;
+    my $old = $self->dup_id || 0;
+    $self->set('dup_id', $dup_id);
+    my $new = $self->dup_id || 0;
+    return if $old == $new;
+    
+    # Update the other bug.
+    my $dupe_of = new Bugzilla::Bug($self->dup_id);
+    if (delete $self->{_add_dup_cc}) {
+        $dupe_of->add_cc($self->reporter);
+    }
+    $dupe_of->add_comment("", { type       => CMT_HAS_DUPE,
+                                extra_data => $self->id });
+    $self->{_dup_for_update} = $dupe_of;
+    
+    # Now make sure that we add a duplicate comment on *this* bug.
+    # (Change an existing comment into a dup comment, if there is one,
+    # or add an empty dup comment.)
+    if ($self->{added_comments}) {
+        my @normal = grep { !defined $_->{type} || $_->{type} == CMT_NORMAL }
+                          @{ $self->{added_comments} };
+        # Turn the last one into a dup comment.
+        $normal[-1]->{type} = CMT_DUPE_OF;
+        $normal[-1]->{extra_data} = $self->dup_id;
+    }
+    else {
+        $self->add_comment('', { type       => CMT_DUPE_OF,
+                                 extra_data => $self->dup_id });
+    }
+}
 sub set_estimated_time { $_[0]->set('estimated_time', $_[1]); }
 sub _set_everconfirmed { $_[0]->set('everconfirmed', $_[1]); }
 sub set_op_sys         { $_[0]->set('op_sys',        $_[1]); }
@@ -1418,7 +1790,7 @@ sub set_product {
             my $gids = $dbh->selectcol_arrayref(
                 'SELECT bgm.group_id
                    FROM bug_group_map AS bgm
-                  WHERE bgm.bug_id IN (' . join(',', ('?' x @idlist)) . ')
+                  WHERE bgm.bug_id IN (' . join(',', ('?') x @idlist) . ')
                     AND bgm.group_id NOT IN
                         (SELECT gcm.group_id
                            FROM group_control_map AS gcm
@@ -1447,21 +1819,116 @@ sub set_product {
         $self->set_target_milestone($tm_name);
     }
     
+    if ($product_changed) {
+        # Remove groups that aren't valid in the new product. This will also
+        # have the side effect of removing the bug from groups that aren't
+        # active anymore.
+        #
+        # We copy this array because the original array is modified while we're
+        # working, and that confuses "foreach".
+        my @current_groups = @{$self->groups_in};
+        foreach my $group (@current_groups) {
+            if (!grep($group->id == $_->id, @{$product->groups_valid})) {
+                $self->remove_group($group);
+            }
+        }
+    
+        # Make sure the bug is in all the mandatory groups for the new product.
+        foreach my $group (@{$product->groups_mandatory_for(Bugzilla->user)}) {
+            $self->add_group($group);
+        }
+    }
+    
     # XXX This is temporary until all of process_bug uses update();
     return $product_changed;
 }
 
+sub set_qa_contact {
+    my ($self, $value) = @_;
+    $self->set('qa_contact', $value);
+    delete $self->{'qa_contact_obj'};
+}
+sub reset_qa_contact {
+    my $self = shift;
+    if (Bugzilla->params->{'commentonreassignbycomponent'}
+        && !$self->{added_comments})
+    {
+        ThrowUserError('comment_required');
+    }
+    my $comp = $self->component_obj;
+    $self->set_qa_contact($comp->default_qa_contact);
+}
 sub set_remaining_time { $_[0]->set('remaining_time', $_[1]); }
 # Used only when closing a bug or moving between closed states.
 sub _zero_remaining_time { $_[0]->{'remaining_time'} = 0; }
 sub set_reporter_accessible { $_[0]->set('reporter_accessible', $_[1]); }
-sub set_resolution     { $_[0]->set('resolution',    $_[1]); }
+sub set_resolution {
+    my ($self, $value, $dupe_of) = @_;
+    
+    my $old_res = $self->resolution;
+    $self->set('resolution', $value);
+    my $new_res = $self->resolution;
+    
+    if ($new_res ne $old_res) {
+        # Clear the dup_id if we're leaving the dup resolution.
+        if ($old_res eq 'DUPLICATE') {
+            $self->_clear_dup_id();
+        }
+        # Duplicates should have no remaining time left.
+        elsif ($new_res eq 'DUPLICATE' && $self->remaining_time != 0) {
+            $self->_zero_remaining_time();
+        }
+    }
+    
+    # We don't check if we're entering or leaving the dup resolution here,
+    # because we could be moving from being a dup of one bug to being a dup
+    # of another, theoretically. Note that this code block will also run
+    # when going between different closed states.
+    if ($self->resolution eq 'DUPLICATE') {
+        if ($dupe_of) {
+            $self->set_dup_id($dupe_of);
+        }
+        elsif (!$self->dup_id) {
+            ThrowUserError('dupe_id_required');
+        }
+    }
+}
+sub clear_resolution {
+    my $self = shift;
+    if (!$self->status->is_open) {
+        ThrowUserError('resolution_cant_clear', { bug_id => $self->id });
+    }
+    if (Bugzilla->params->{'commentonclearresolution'}
+        && $self->resolution && !$self->{added_comments})
+    {
+        ThrowUserError('comment_required');
+    }
+    $self->{'resolution'} = ''; 
+    $self->_clear_dup_id; 
+}
 sub set_severity       { $_[0]->set('bug_severity',  $_[1]); }
-sub set_status { 
-    my ($self, $status) = @_;
-    $self->set('bug_status', $status); 
-    # Check for the everconfirmed transition
-    $self->_set_everconfirmed(1) if (is_open_state($status) && $status ne 'UNCONFIRMED');
+sub set_status {
+    my ($self, $status, $resolution, $dupe_of) = @_;
+    my $old_status = $self->status;
+    $self->set('bug_status', $status);
+    delete $self->{'status'};
+    my $new_status = $self->status;
+    
+    if ($new_status->is_open) {
+        # Check for the everconfirmed transition
+        $self->_set_everconfirmed(1) if $new_status->name ne 'UNCONFIRMED';
+        $self->clear_resolution();
+    }
+    else {
+        # We do this here so that we can make sure closed statuses have
+        # resolutions.
+        $self->set_resolution($resolution || $self->resolution, $dupe_of);
+        
+        # Changing between closed statuses zeros the remaining time.
+        if ($new_status->id != $old_status->id && $self->remaining_time != 0) {
+            $self->_zero_remaining_time();
+        }
+    }
 }
 sub set_status_whiteboard { $_[0]->set('status_whiteboard', $_[1]); }
 sub set_summary           { $_[0]->set('short_desc',        $_[1]); }
@@ -1482,14 +1949,7 @@ sub add_cc {
     return if !$user_or_name;
     my $user = ref $user_or_name ? $user_or_name
                                  : Bugzilla::User->check($user_or_name);
-
-    if (Bugzilla->params->{strict_isolation}
-        && !$user->can_edit_product($self->product_obj->id))
-    {
-        ThrowUserError('invalid_user_group', { users  => $user->login,
-                                               bug_id => $self->id });
-    }
-
+    $self->_check_strict_isolation_for_user($user);
     my $cc_users = $self->cc_users;
     push(@$cc_users, $user) if !grep($_->id == $user->id, @$cc_users);
 }
@@ -1510,14 +1970,12 @@ sub add_comment {
     my ($self, $comment, $params) = @_;
 
     $comment = $self->_check_comment($comment);
-    # XXX At some point we need to refactor check_can_change_field
-    # so that custom installs can use PrivilegesRequired here.
-    $self->check_can_change_field('longdesc')
-        || ThrowUserError('illegal_change', { field => 'longdesc' });
 
     $params ||= {};
     if (exists $params->{work_time}) {
         $params->{work_time} = $self->_check_work_time($params->{work_time});
+        ThrowUserError('comment_required')
+            if $comment eq '' && $params->{work_time} != 0;
     }
     if (exists $params->{type}) {
         $params->{type} = $self->_check_comment_type($params->{type});
@@ -1532,6 +1990,11 @@ sub add_comment {
         return;
     }
 
+    # So we really want to comment. Make sure we are allowed to do so.
+    my $privs;
+    $self->check_can_change_field('longdesc', 0, 1, \$privs)
+        || ThrowUserError('illegal_change', { field => 'longdesc', privs => $privs });
+
     $self->{added_comments} ||= [];
     my $add_comment = dclone($params);
     $add_comment->{thetext} = $comment;
@@ -1597,6 +2060,75 @@ sub modify_keywords {
     return $any_changes;
 }
 
+sub add_group {
+    my ($self, $group) = @_;
+    # Invalid ids are silently ignored. (We can't tell people whether
+    # or not a group exists.)
+    $group = new Bugzilla::Group($group) unless ref $group;
+    return unless $group;
+
+    # Make sure that bugs in this product can actually be restricted
+    # to this group.
+    grep($group->id == $_->id, @{$self->product_obj->groups_valid})
+         || ThrowUserError('group_invalid_restriction',
+                { product => $self->product, group_id => $group->id });
+
+    # OtherControl people can add groups only during a product change,
+    # and only when the group is not NA for them.
+    if (!Bugzilla->user->in_group($group->name)) {
+        my $controls = $self->product_obj->group_controls->{$group->id};
+        if (!$self->{_old_product_name}
+            || $controls->{othercontrol} == CONTROLMAPNA)
+        {
+            ThrowUserError('group_change_denied',
+                           { bug => $self, group_id => $group->id });
+        }
+    }
+
+    my $current_groups = $self->groups_in;
+    if (!grep($group->id == $_->id, @$current_groups)) {
+        push(@$current_groups, $group);
+    }
+}
+
+sub remove_group {
+    my ($self, $group) = @_;
+    $group = new Bugzilla::Group($group) unless ref $group;
+    return unless $group;
+    
+    # First, check if this is a valid group for this product.
+    # You can *always* remove a group that is not valid for this product, so
+    # we don't do any other checks if that's the case. (set_product does this.)
+    #
+    # This particularly happens when isbuggroup is no longer 1, and we're
+    # moving a bug to a new product.
+    if (grep($_->id == $group->id, @{$self->product_obj->groups_valid})) {   
+        my $controls = $self->product_obj->group_controls->{$group->id};
+
+        # Nobody can ever remove a Mandatory group.
+        if ($controls->{membercontrol} == CONTROLMAPMANDATORY) {
+            ThrowUserError('group_invalid_removal',
+                { product => $self->product, group_id => $group->id,
+                  bug => $self });
+        }
+
+        # OtherControl people can remove groups only during a product change,
+        # and only when they are non-Mandatory and non-NA.
+        if (!Bugzilla->user->in_group($group->name)) {
+            if (!$self->{_old_product_name}
+                || $controls->{othercontrol} == CONTROLMAPMANDATORY
+                || $controls->{othercontrol} == CONTROLMAPNA)
+            {
+                ThrowUserError('group_change_denied',
+                               { bug => $self, group_id => $group->id });
+            }
+        }
+    }
+    
+    my $current_groups = $self->groups_in;
+    @$current_groups = grep { $_->id != $group->id } @$current_groups;
+}
+
 #####################################################################
 # Instance Accessors
 #####################################################################
@@ -1671,10 +2203,10 @@ sub attachments {
 
 sub assigned_to {
     my ($self) = @_;
-    return $self->{'assigned_to'} if exists $self->{'assigned_to'};
-    $self->{'assigned_to_id'} = 0 if $self->{'error'};
-    $self->{'assigned_to'} = new Bugzilla::User($self->{'assigned_to_id'});
-    return $self->{'assigned_to'};
+    return $self->{'assigned_to_obj'} if exists $self->{'assigned_to_obj'};
+    $self->{'assigned_to'} = 0 if $self->{'error'};
+    $self->{'assigned_to_obj'} ||= new Bugzilla::User($self->{'assigned_to'});
+    return $self->{'assigned_to_obj'};
 }
 
 sub blocked {
@@ -1856,18 +2388,18 @@ sub product_obj {
 
 sub qa_contact {
     my ($self) = @_;
-    return $self->{'qa_contact'} if exists $self->{'qa_contact'};
+    return $self->{'qa_contact_obj'} if exists $self->{'qa_contact_obj'};
     return undef if $self->{'error'};
 
-    if (Bugzilla->params->{'useqacontact'} && $self->{'qa_contact_id'}) {
-        $self->{'qa_contact'} = new Bugzilla::User($self->{'qa_contact_id'});
+    if (Bugzilla->params->{'useqacontact'} && $self->{'qa_contact'}) {
+        $self->{'qa_contact_obj'} = new Bugzilla::User($self->{'qa_contact'});
     } else {
         # XXX - This is somewhat inconsistent with the assignee/reporter 
         # methods, which will return an empty User if they get a 0. 
         # However, we're keeping it this way now, for backwards-compatibility.
-        $self->{'qa_contact'} = undef;
+        $self->{'qa_contact_obj'} = undef;
     }
-    return $self->{'qa_contact'};
+    return $self->{'qa_contact_obj'};
 }
 
 sub reporter {
@@ -2007,10 +2539,10 @@ sub user {
 
     my $unknown_privileges = $user->in_group('editbugs', $prod_id);
     my $canedit = $unknown_privileges
-                  || $user->id == $self->{assigned_to_id}
+                  || $user->id == $self->{'assigned_to'}
                   || (Bugzilla->params->{'useqacontact'}
-                      && $self->{'qa_contact_id'}
-                      && $user->id == $self->{qa_contact_id});
+                      && $self->{'qa_contact'}
+                      && $user->id == $self->{'qa_contact'});
     my $canconfirm = $unknown_privileges
                      || $user->in_group('canconfirm', $prod_id);
     my $isreporter = $user->id
@@ -2106,260 +2638,35 @@ sub bug_alias_to_id {
 # Workflow Control routines
 #####################################################################
 
-# Make sure that the new status is allowed by the status workflow.
-sub check_status_transition {
-    my ($self, $new_status) = @_;
-
-    if (!grep { $_->name eq $self->bug_status } @{$new_status->can_change_from}) {
-        ThrowUserError('illegal_bug_status_transition', {old => $self->bug_status,
-                                                         new => $new_status->name})
-    }
-}
-
-# Make sure all checks triggered by the workflow are successful.
-# Some are hardcoded and come from older versions of Bugzilla.
-sub check_status_change_triggers {
-    my ($self, $action, $bugs, $vars) = @_;
+sub process_knob {
+    my ($self, $action, $to_resolution, $dupe_of) = @_;
     my $dbh = Bugzilla->dbh;
-    $vars ||= {};
-
-    my @bug_ids = map {$_->id} @$bugs;
-    # First, make sure no comment is required if there is none.
-    # If a comment is given, then this check is useless.
-    if (!$vars->{comment_exists}) {
-        if (grep { $action eq $_ } SPECIAL_STATUS_WORKFLOW_ACTIONS) {
-            # 'commentonnone' doesn't exist, so this is safe.
-            ThrowUserError('comment_required') if Bugzilla->params->{"commenton$action"};
-        }
-        elsif (!scalar @bug_ids) {
-            # The bug is being created; that's why @bug_ids is undefined.
-            my $comment_required =
-              $dbh->selectrow_array('SELECT require_comment
-                                       FROM status_workflow
-                                 INNER JOIN bug_status
-                                         ON id = new_status
-                                      WHERE old_status IS NULL
-                                        AND value = ?',
-                                      undef, $action);
-
-            ThrowUserError('description_required') if $comment_required;
-        }
-        else {
-            my $required_for_transitions =
-              $dbh->selectcol_arrayref('SELECT DISTINCT bug_status.value
-                                          FROM bug_status
-                                    INNER JOIN bugs
-                                            ON bugs.bug_status = bug_status.value
-                                    INNER JOIN status_workflow
-                                            ON bug_status.id = old_status
-                                    INNER JOIN bug_status b_s
-                                            ON b_s.id = new_status
-                                         WHERE bug_id IN (' . join (',', @bug_ids). ')
-                                           AND b_s.value = ?
-                                           AND require_comment = 1',
-                                         undef, $action);
-
-            if (scalar(@$required_for_transitions)) {
-                ThrowUserError('comment_required', {old => $required_for_transitions,
-                                                    new => $action});
-            }
-        }
-    }
-
-    # Now run hardcoded checks.
-    # There is no checks for these actions.
-    return if ($action eq 'none' || $action eq 'clearresolution');
-
-    # Also leave now if we are creating a new bug (we only want to check
-    # if a comment is required on bug creation).
-    return unless scalar @bug_ids;
 
+    return if $action eq 'none';
+    
     if ($action eq 'duplicate') {
-        # You cannot mark bugs as duplicates when changing
-        # several bugs at once.
-        $vars->{bug_id} || ThrowUserError('dupe_not_allowed');
-
-        # Make sure we can change the original bug (issue A on bug 96085)
-        $vars->{dup_id} || ThrowCodeError('undefined_field', { field => 'dup_id' });
-        ValidateBugID($vars->{dup_id}, 'dup_id');
-
-        # Make sure a loop isn't created when marking this bug
-        # as duplicate.
-        my %dupes;
-        my $dupe_of = $vars->{dup_id};
-        my $sth = $dbh->prepare('SELECT dupe_of FROM duplicates
-                                 WHERE dupe = ?');
-
-        while ($dupe_of) {
-            if ($dupe_of == $vars->{bug_id}) {
-                ThrowUserError('dupe_loop_detected', { bug_id  => $vars->{bug_id},
-                                                       dupe_of => $vars->{dup_id} });
-            }
-            # If $dupes{$dupe_of} is already set to 1, then a loop
-            # already exists which does not involve this bug.
-            # As the user is not responsible for this loop, do not
-            # prevent him from marking this bug as a duplicate.
-            last if exists $dupes{"$dupe_of"};
-            $dupes{"$dupe_of"} = 1;
-            $sth->execute($dupe_of);
-            $dupe_of = $sth->fetchrow_array;
-        }
-
-        # Also, let's see if the reporter has authorization to see
-        # the bug to which we are duping. If not we need to prompt.
-        $vars->{DuplicateUserConfirm} = 1;
-
-        # DUPLICATE bugs should have no time remaining.
-        foreach my $bug (@$bugs) {
-            # Note that 0.00 is *true* for Perl!
-            next unless ($bug->remaining_time > 0);
-            $bug->_zero_remaining_time;
-            $vars->{'message'} = "remaining_time_zeroed"
-              if Bugzilla->user->in_group(Bugzilla->params->{'timetrackinggroup'});
-        }
-    }
-    elsif ($action eq 'change_resolution' || !is_open_state($action)) {
-        # don't resolve as fixed while still unresolved blocking bugs
-        if (Bugzilla->params->{"noresolveonopenblockers"}
-            && $vars->{resolution} eq 'FIXED')
-        {
-            my @dependencies = Bugzilla::Bug::CountOpenDependencies(@bug_ids);
-            if (scalar @dependencies > 0) {
-                ThrowUserError("still_unresolved_bugs",
-                               { dependencies     => \@dependencies,
-                                 dependency_count => scalar @dependencies });
-            }
-        }
-
-        # You cannot use change_resolution if there is at least one open bug
-        # nor can you close open bugs if no resolution is given.
-        my $open_states = join(',', map {$dbh->quote($_)} BUG_STATE_OPEN);
-        my $idlist = join(',', @bug_ids);
-        my $is_open =
-          $dbh->selectrow_array("SELECT 1 FROM bugs WHERE bug_id IN ($idlist)
-                                 AND bug_status IN ($open_states)");
-
-        if ($is_open) {
-            ThrowUserError('resolution_not_allowed') if ($action eq 'change_resolution');
-            ThrowUserError('missing_resolution', {status => $action}) if !$vars->{resolution};
-        }
-        # Now is good time to validate the resolution, if any.
-        check_field('resolution', $vars->{resolution},
-                    Bugzilla::Bug->settable_resolutions) if $vars->{resolution};
-
-        if ($action ne 'change_resolution') {
-            foreach my $b (@$bugs) {
-                if ($b->bug_status ne $action) {
-                    # Note that 0.00 is *true* for Perl!
-                    next unless ($b->remaining_time > 0);
-                    $b->_zero_remaining_time;
-                    $vars->{'message'} = "remaining_time_zeroed"
-                      if Bugzilla->user->in_group(Bugzilla->params->{'timetrackinggroup'});
-                }
-            }
-        }
-    }
-    elsif ($action eq 'ASSIGNED'
-           && Bugzilla->params->{"usetargetmilestone"}
-           && Bugzilla->params->{"musthavemilestoneonaccept"})
-    {
-        $vars->{requiremilestone} = 1;
+        $self->set_status(Bugzilla->params->{'duplicate_or_move_bug_status'},
+                          'DUPLICATE', $dupe_of);
     }
-}
-
-sub get_new_status_and_resolution {
-    my ($self, $action, $resolution) = @_;
-    my $dbh = Bugzilla->dbh;
-
-    my $status;
-    my $everconfirmed = $self->everconfirmed;
-    if ($action eq 'none') {
-        # Leaving the status unchanged doesn't need more investigation.
-        return ($self->bug_status, $self->resolution, $self->everconfirmed);
-    }
-    elsif ($action eq 'duplicate' || $action eq 'move') {
-        # Always change the bug status, even if the bug was already "closed".
-        $status = Bugzilla->params->{'duplicate_or_move_bug_status'};
-        $resolution = ($action eq 'duplicate') ? 'DUPLICATE' : 'MOVED';
+    elsif ($action eq 'move') {
+        $self->set_status(Bugzilla->params->{'duplicate_or_move_bug_status'},
+                          'MOVED');
     }
     elsif ($action eq 'change_resolution') {
-        $status = $self->bug_status;
-        # You cannot change the resolution of an open bug.
-        ThrowUserError('resolution_not_allowed') if is_open_state($status);
-        $resolution || ThrowUserError('missing_resolution', {status => $status});
+        $self->set_resolution($to_resolution);
     }
     elsif ($action eq 'clearresolution') {
-        $status = $self->bug_status;
-        is_open_state($status) || ThrowUserError('missing_resolution', {status => $status});
-        $resolution = '';
+        $self->clear_resolution();
     }
     else {
-        $status = $action;
-        if (is_open_state($status)) {
-            # Open bugs have no resolution.
-            $resolution = '';
-            $everconfirmed = ($status eq 'UNCONFIRMED') ? 0 : 1;
-        }
-        elsif (is_open_state($self->bug_status)) {
-            # A resolution is required to close bugs.
-            $resolution || ThrowUserError('missing_resolution', {status => $status});
-        }
-        else {
-            # Already closed bugs can only change their resolution
-            # using the change_resolution action.
-            $resolution = $self->resolution
-        }
+        $self->set_status($action, $to_resolution);
     }
-    # Now it's time to validate the bug resolution.
-    # Bug resolutions have no workflow specific rules, so any valid
-    # resolution will do it.
-    check_field('resolution', $resolution) if ($resolution ne '');
-    trick_taint($resolution);
-
-    return ($status, $resolution, $everconfirmed);
 }
 
 #####################################################################
 # Subroutines
 #####################################################################
 
-sub AppendComment {
-    my ($bugid, $whoid, $comment, $isprivate, $timestamp, $work_time,
-        $type, $extra_data) = @_;
-    $work_time ||= 0;
-    $type ||= CMT_NORMAL;
-    my $dbh = Bugzilla->dbh;
-
-    ValidateTime($work_time, "work_time") if $work_time;
-    trick_taint($work_time);
-    detaint_natural($type)
-      || ThrowCodeError('bad_arg', {argument => 'type', function => 'AppendComment'});
-
-    # Use the date/time we were given if possible (allowing calling code
-    # to synchronize the comment's timestamp with those of other records).
-    $timestamp ||= $dbh->selectrow_array('SELECT NOW()');
-
-    $comment =~ s/\r\n/\n/g;     # Handle Windows-style line endings.
-    $comment =~ s/\r/\n/g;       # Handle Mac-style line endings.
-
-    if ($comment =~ /^\s*$/ && !$type) {  # Nothin' but whitespace
-        return;
-    }
-
-    # Comments are always safe, because we always display their raw contents,
-    # and we use them in a placeholder below.
-    trick_taint($comment); 
-    my $privacyval = $isprivate ? 1 : 0 ;
-    $dbh->do(q{INSERT INTO longdescs
-                      (bug_id, who, bug_when, thetext, isprivate, work_time,
-                       type, extra_data)
-               VALUES (?, ?, ?, ?, ?, ?, ?, ?)}, undef,
-             ($bugid, $whoid, $timestamp, $comment, $privacyval, $work_time,
-              $type, $extra_data));
-    $dbh->do("UPDATE bugs SET delta_ts = ? WHERE bug_id = ?",
-             undef, $timestamp, $bugid);
-}
-
 sub update_comment {
     my ($self, $comment_id, $new_comment) = @_;
 
@@ -2382,7 +2689,7 @@ sub update_comment {
     $new_comment =~ s/\r\n?/\n/g; # Handle Windows and Mac-style line endings.
     trick_taint($new_comment);
 
-    # We assume ValidateComment() has already been called earlier.
+    # We assume _check_comment() has already been called earlier.
     Bugzilla->dbh->do('UPDATE longdescs SET thetext = ? WHERE comment_id = ?',
                        undef, ($new_comment, $comment_id));
 
@@ -2396,9 +2703,10 @@ sub editable_bug_fields {
     # Obsolete custom fields are not editable.
     my @obsolete_fields = Bugzilla->get_fields({obsolete => 1, custom => 1});
     @obsolete_fields = map { $_->name } @obsolete_fields;
-    foreach my $remove ("bug_id", "creation_ts", "delta_ts", "lastdiffed", @obsolete_fields) {
+    foreach my $remove ("bug_id", "reporter", "creation_ts", "delta_ts", "lastdiffed", @obsolete_fields) {
         my $location = lsearch(\@fields, $remove);
-        splice(@fields, $location, 1);
+        # Custom multi-select fields are not stored in the bugs table.
+        splice(@fields, $location, 1) if ($location > -1);
     }
     # Sorted because the old @::log_columns variable, which this replaces,
     # was sorted.
@@ -2417,12 +2725,6 @@ sub EmitDependList {
     return $list_ref;
 }
 
-# Tells you whether or not the argument is a valid "open" state.
-sub is_open_state {
-    my ($state) = @_;
-    return (grep($_ eq $state, BUG_STATE_OPEN) ? 1 : 0);
-}
-
 sub ValidateTime {
     my ($time, $field) = @_;
 
@@ -2521,11 +2823,11 @@ sub format_comment {
 # Get the activity of a bug, starting from $starttime (if given).
 # This routine assumes ValidateBugID has been previously called.
 sub GetBugActivity {
-    my ($id, $starttime) = @_;
+    my ($bug_id, $attach_id, $starttime) = @_;
     my $dbh = Bugzilla->dbh;
 
     # Arguments passed to the SQL query.
-    my @args = ($id);
+    my @args = ($bug_id);
 
     # Only consider changes since $starttime, if given.
     my $datepart = "";
@@ -2535,6 +2837,12 @@ sub GetBugActivity {
         $datepart = "AND bugs_activity.bug_when > ?";
     }
 
+    my $attachpart = "";
+    if ($attach_id) {
+        push(@args, $attach_id);
+        $attachpart = "AND bugs_activity.attach_id = ?";
+    }
+
     # Only includes attachments the user is allowed to see.
     my $suppjoins = "";
     my $suppwhere = "";
@@ -2564,6 +2872,7 @@ sub GetBugActivity {
             ON profiles.userid = bugs_activity.who
          WHERE bugs_activity.bug_id = ?
                $datepart
+               $attachpart
                $suppwhere
       ORDER BY bugs_activity.bug_when";
 
@@ -2682,7 +2991,7 @@ sub CountOpenDependencies {
     my $sth = $dbh->prepare(
           "SELECT blocked, COUNT(bug_status) " .
             "FROM bugs, dependencies " .
-           "WHERE blocked IN (" . (join "," , @bug_list) . ") " .
+           "WHERE " . $dbh->sql_in('blocked', \@bug_list) .
              "AND bug_id = dependson " .
              "AND bug_status IN (" . join(', ', map {$dbh->quote($_)} BUG_STATE_OPEN)  . ") " .
           $dbh->sql_group_by('blocked'));
@@ -2696,14 +3005,6 @@ sub CountOpenDependencies {
     return @dependencies;
 }
 
-sub ValidateComment {
-    my ($comment) = @_;
-
-    if (defined($comment) && length($comment) > MAX_COMMENT_LENGTH) {
-        ThrowUserError("comment_too_long");
-    }
-}
-
 # If a bug is moved to a product which allows less votes per bug
 # compared to the previous product, extra votes need to be removed.
 sub RemoveVotes {
@@ -2811,6 +3112,9 @@ sub CheckIfVotedConfirmed {
     my ($id, $who) = (@_);
     my $dbh = Bugzilla->dbh;
 
+    # XXX - Use bug methods to update the bug status and everconfirmed.
+    my $bug = new Bugzilla::Bug($id);
+
     my ($votes, $status, $everconfirmed, $votestoconfirm, $timestamp) =
         $dbh->selectrow_array("SELECT votes, bug_status, everconfirmed, " .
                               "       votestoconfirm, NOW() " .
@@ -2821,6 +3125,9 @@ sub CheckIfVotedConfirmed {
 
     my $ret = 0;
     if ($votes >= $votestoconfirm && !$everconfirmed) {
+        $bug->add_comment('', { type => CMT_POPULAR_VOTES });
+        $bug->update();
+
         if ($status eq 'UNCONFIRMED') {
             my $fieldid = get_field_id("bug_status");
             $dbh->do("UPDATE bugs SET bug_status = 'NEW', everconfirmed = 1, " .
@@ -2842,8 +3149,6 @@ sub CheckIfVotedConfirmed {
                  "VALUES (?, ?, ?, ?, ?, ?)",
                  undef, ($id, $who, $timestamp, $fieldid, '0', '1'));
 
-        AppendComment($id, $who, "", 0, $timestamp, 0, CMT_POPULAR_VOTES);
-
         $ret = 1;
     }
     return $ret;
@@ -2864,11 +3169,10 @@ sub CheckIfVotedConfirmed {
 # $oldvalue - what they are changing it from
 # $newvalue - what they are changing it to
 # $PrivilegesRequired - return the reason of the failure, if any
-# $data     - hash containing relevant parameters, e.g. from the CGI object
 ################################################################################
 sub check_can_change_field {
     my $self = shift;
-    my ($field, $oldvalue, $newvalue, $PrivilegesRequired, $data) = (@_);
+    my ($field, $oldvalue, $newvalue, $PrivilegesRequired) = (@_);
     my $user = Bugzilla->user;
 
     $oldvalue = defined($oldvalue) ? $oldvalue : '';
@@ -2884,7 +3188,6 @@ sub check_can_change_field {
         return 1;
     # numeric fields need to be compared using ==
     } elsif (($field eq 'estimated_time' || $field eq 'remaining_time')
-             && (!$data || $newvalue ne $data->{'dontchange'})
              && $oldvalue == $newvalue)
     {
         return 1;
@@ -2931,14 +3234,14 @@ sub check_can_change_field {
     # Make sure that a valid bug ID has been given.
     if (!$self->{'error'}) {
         # Allow the assignee to change anything else.
-        if ($self->{'assigned_to_id'} == $user->id) {
+        if ($self->{'assigned_to'} == $user->id) {
             return 1;
         }
 
         # Allow the QA contact to change anything else.
         if (Bugzilla->params->{'useqacontact'}
-            && $self->{'qa_contact_id'}
-            && ($self->{'qa_contact_id'} == $user->id))
+            && $self->{'qa_contact'}
+            && ($self->{'qa_contact'} == $user->id))
         {
             return 1;
         }
diff --git a/Bugzilla/BugMail.pm b/Bugzilla/BugMail.pm
index d29ffaf1e18980b06c3425e3dbcfc305ce34bb7e..1085c8b93574b1d2ea35ca65811e56ef2215b2e7 100644
--- a/Bugzilla/BugMail.pm
+++ b/Bugzilla/BugMail.pm
@@ -40,11 +40,17 @@ use Bugzilla::Bug;
 use Bugzilla::Classification;
 use Bugzilla::Product;
 use Bugzilla::Component;
+use Bugzilla::Status;
 use Bugzilla::Mailer;
 
 use Date::Parse;
 use Date::Format;
 
+use constant FORMAT_TRIPLE => "%19s|%-28s|%-28s";
+use constant FORMAT_3_SIZE => [19,28,28];
+use constant FORMAT_DOUBLE => "%19s %-55s";
+use constant FORMAT_2_SIZE => [19,55];
+
 use constant BIT_DIRECT    => 1;
 use constant BIT_WATCHING  => 2;
 
@@ -59,25 +65,34 @@ use constant REL_NAMES => {
     REL_GLOBAL_WATCHER, "GlobalWatcher"
 };
 
-sub FormatTriple {
-    my ($a, $b, $c) = (@_);
-    $^A = "";
-    my $temp = formline << 'END', $a, $b, $c;
-^>>>>>>>>>>>>>>>>>>|^<<<<<<<<<<<<<<<<<<<<<<<<<<<|^<<<<<<<<<<<<<<<<<<<<<<<<<<<~~
-END
-    ; # This semicolon appeases my emacs editor macros. :-)
-    return $^A;
+# We use this instead of format because format doesn't deal well with
+# multi-byte languages.
+sub multiline_sprintf {
+    my ($format, $args, $sizes) = @_;
+    my @parts;
+    my @my_sizes = @$sizes; # Copy this so we don't modify the input array.
+    foreach my $string (@$args) {
+        my $size = shift @my_sizes;
+        my @pieces = split("\n", wrap_hard($string, $size));
+        push(@parts, \@pieces);
+    }
+
+    my $formatted;
+    while (1) {
+        # Get the first item of each part.
+        my @line = map { shift @$_ } @parts;
+        # If they're all undef, we're done.
+        last if !grep { defined $_ } @line;
+        # Make any single undef item into ''
+        @line = map { defined $_ ? $_ : '' } @line;
+        # And append a formatted line
+        $formatted .= sprintf("$format\n", @line);
+    }
+    return $formatted;
 }
-    
-sub FormatDouble {
-    my ($a, $b) = (@_);
-    $a .= ":";
-    $^A = "";
-    my $temp = formline << 'END', $a, $b;
-^>>>>>>>>>>>>>>>>>> ^<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<~~
-END
-    ; # This semicolon appeases my emacs editor macros. :-)
-    return $^A;
+
+sub three_columns {
+    return multiline_sprintf(FORMAT_TRIPLE, \@_, FORMAT_3_SIZE);
 }
 
 # This is a bit of a hack, basically keeping the old system()
@@ -111,8 +126,8 @@ sub Send {
     }
 
     my %values = %{$dbh->selectrow_hashref(
-        'SELECT ' . join(',', editable_bug_fields()) . ',
-                lastdiffed AS start, LOCALTIMESTAMP(0) AS end
+        'SELECT ' . join(',', editable_bug_fields()) . ', reporter,
+                lastdiffed AS start_time, LOCALTIMESTAMP(0) AS end_time
            FROM bugs WHERE bug_id = ?',
         undef, $id)};
 
@@ -122,7 +137,7 @@ sub Send {
     my $component = new Bugzilla::Component($values{component_id});
     $values{component} = $component->name;
 
-    my ($start, $end) = ($values{start}, $values{end});
+    my ($start, $end) = ($values{start_time}, $values{end_time});
 
     # User IDs of people in various roles. More than one person can 'have' a 
     # role, if the person in that role has changed, or people are watching.
@@ -231,7 +246,7 @@ sub Send {
             $lastwho = $who;
             $fullwho = $whoname ? "$whoname <$who>" : $who;
             $diffheader = "\n$fullwho changed:\n\n";
-            $diffheader .= FormatTriple("What    ", "Removed", "Added");
+            $diffheader .= three_columns("What    ", "Removed", "Added");
             $diffheader .= ('-' x 76) . "\n";
         }
         $what =~ s/^(Attachment )?/Attachment #$attachid / if $attachid;
@@ -248,7 +263,7 @@ sub Send {
                 'SELECT isprivate FROM attachments WHERE attach_id = ?',
                 undef, ($attachid));
         }
-        $difftext = FormatTriple($what, $old, $new);
+        $difftext = three_columns($what, $old, $new);
         $diffpart->{'header'} = $diffheader;
         $diffpart->{'fieldname'} = $fieldname;
         $diffpart->{'text'} = $difftext;
@@ -302,13 +317,13 @@ sub Send {
                   "\nBug $id depends on bug $depbug, which changed state.\n\n" .
                   "Bug $depbug Summary: $summary\n" .
                   "${urlbase}show_bug.cgi?id=$depbug\n\n";
-                $thisdiff .= FormatTriple("What    ", "Old Value", "New Value");
+                $thisdiff .= three_columns("What    ", "Old Value", "New Value");
                 $thisdiff .= ('-' x 76) . "\n";
                 $interestingchange = 0;
             }
-            $thisdiff .= FormatTriple($fielddescription{$what}, $old, $new);
+            $thisdiff .= three_columns($fielddescription{$what}, $old, $new);
             if ($what eq 'bug_status'
-                && Bugzilla::Bug::is_open_state($old) ne Bugzilla::Bug::is_open_state($new))
+                && is_open_state($old) ne is_open_state($new))
             {
                 $interestingchange = 1;
             }
@@ -545,7 +560,8 @@ sub sendMail {
              $user->groups->{Bugzilla->params->{'timetrackinggroup'}}) {
 
             my $desc = $fielddescription{$f};
-            $head .= FormatDouble($desc, $value);
+            $head .= multiline_sprintf(FORMAT_DOUBLE, ["$desc:", $value], 
+                                       FORMAT_2_SIZE);
         }
       }
     }
diff --git a/Bugzilla/CGI.pm b/Bugzilla/CGI.pm
index ef2cb70f5e6bec1c73d73a5941a656dfe167b232..aeb8419ca7f7913356d918804afba4d722489c4e 100644
--- a/Bugzilla/CGI.pm
+++ b/Bugzilla/CGI.pm
@@ -54,7 +54,10 @@ $::SIG{PIPE} = 'IGNORE';
 # We need to do so, too, otherwise perl dies when the object is destroyed
 # and we don't have a DESTROY method (because CGI.pm's AUTOLOAD will |die|
 # on getting an unknown sub to try to call)
-sub DESTROY {};
+sub DESTROY {
+    my $self = shift;
+    $self->SUPER::DESTROY(@_);
+};
 
 sub new {
     my ($invocant, @args) = @_;
@@ -62,13 +65,6 @@ sub new {
 
     my $self = $class->SUPER::new(@args);
 
-    if (Bugzilla->error_mode eq ERROR_MODE_WEBPAGE) {
-        # This happens here so that command-line scripts don't spit out
-        # their errors in HTML format.
-        require CGI::Carp;
-        import CGI::Carp qw(fatalsToBrowser);
-    }
-
     # Make sure our outgoing cookie list is empty on each invocation
     $self->{Bugzilla_cookie_list} = [];
 
@@ -233,6 +229,27 @@ sub header {
     return $self->SUPER::header(@_) || "";
 }
 
+# CGI.pm is not utf8-aware and passes data as bytes instead of UTF-8 strings.
+sub param {
+    my $self = shift;
+    if (Bugzilla->params->{'utf8'} && scalar(@_) == 1) {
+        if (wantarray) {
+            return map { _fix_utf8($_) } $self->SUPER::param(@_);
+        }
+        else {
+            return _fix_utf8(scalar $self->SUPER::param(@_));
+        }
+    }
+    return $self->SUPER::param(@_);
+}
+
+sub _fix_utf8 {
+    my $input = shift;
+    # The is_utf8 is here in case CGI gets smart about utf8 someday.
+    utf8::decode($input) if defined $input && !utf8::is_utf8($input);
+    return $input;
+}
+
 # The various parts of Bugzilla which create cookies don't want to have to
 # pass them around to all of the callers. Instead, store them locally here,
 # and then output as required from |header|.
diff --git a/Bugzilla/CVS/Entries b/Bugzilla/CVS/Entries
index 6723942fbf36f850c48609a73f5dffa712f8de39..ee470b04e5f1d2184c49fafc73220892f722b55a 100644
--- a/Bugzilla/CVS/Entries
+++ b/Bugzilla/CVS/Entries
@@ -1,37 +1,37 @@
-/.cvsignore/1.1/Mon Aug 26 22:24:55 2002//TBUGZILLA-3_1_2
-/Attachment.pm/1.49/Tue Aug 14 12:34:50 2007//TBUGZILLA-3_1_2
-/Auth.pm/1.20/Wed Jul 12 11:51:43 2006//TBUGZILLA-3_1_2
-/Bug.pm/1.203/Tue Sep 18 21:07:20 2007//TBUGZILLA-3_1_2
-/BugMail.pm/1.110/Tue Sep  4 22:01:53 2007//TBUGZILLA-3_1_2
-/CGI.pm/1.33/Tue Jul 24 18:22:01 2007//TBUGZILLA-3_1_2
-/Chart.pm/1.15/Mon Feb 19 22:20:09 2007//TBUGZILLA-3_1_2
-/Classification.pm/1.11/Tue Dec 19 08:38:49 2006//TBUGZILLA-3_1_2
-/Component.pm/1.15/Fri Dec 22 18:10:21 2006//TBUGZILLA-3_1_2
-/Config.pm/1.72/Thu Aug  9 12:36:08 2007//TBUGZILLA-3_1_2
-/Constants.pm/1.79/Tue Sep 18 23:40:36 2007//TBUGZILLA-3_1_2
-/DB.pm/1.103/Sat Sep  8 00:14:27 2007//TBUGZILLA-3_1_2
-/Error.pm/1.22/Thu Aug 16 20:36:27 2007//TBUGZILLA-3_1_2
-/Field.pm/1.28/Mon Sep 17 04:48:04 2007//TBUGZILLA-3_1_2
-/Flag.pm/1.86/Wed Aug  8 13:07:35 2007//TBUGZILLA-3_1_2
-/FlagType.pm/1.38/Wed Jul  4 21:05:58 2007//TBUGZILLA-3_1_2
-/Group.pm/1.22/Tue Sep 18 23:36:59 2007//TBUGZILLA-3_1_2
-/Hook.pm/1.10/Fri Sep 14 23:28:47 2007//TBUGZILLA-3_1_2
-/Install.pm/1.16/Tue Aug 21 20:47:52 2007//TBUGZILLA-3_1_2
-/Keyword.pm/1.7/Tue Sep  5 19:18:26 2006//TBUGZILLA-3_1_2
-/Mailer.pm/1.12/Thu Aug 23 15:45:34 2007//TBUGZILLA-3_1_2
-/Milestone.pm/1.9/Thu Aug 23 21:31:20 2007//TBUGZILLA-3_1_2
-/Object.pm/1.19/Thu Aug 23 21:31:20 2007//TBUGZILLA-3_1_2
-/Product.pm/1.24/Tue Dec 19 10:35:42 2006//TBUGZILLA-3_1_2
-/Search.pm/1.146/Mon May 14 17:31:43 2007//TBUGZILLA-3_1_2
-/Series.pm/1.14/Mon Sep  4 16:21:47 2006//TBUGZILLA-3_1_2
-/Status.pm/1.4/Sat Jul 28 00:54:36 2007//TBUGZILLA-3_1_2
-/Template.pm/1.79/Mon Sep 17 04:48:04 2007//TBUGZILLA-3_1_2
-/Token.pm/1.53/Sun Mar 11 04:11:16 2007//TBUGZILLA-3_1_2
-/Update.pm/1.8/Tue Apr 24 23:11:42 2007//TBUGZILLA-3_1_2
-/User.pm/1.159/Thu Aug 23 21:31:20 2007//TBUGZILLA-3_1_2
-/Util.pm/1.60/Mon Sep 17 04:48:04 2007//TBUGZILLA-3_1_2
-/Version.pm/1.14/Thu Aug 23 21:31:20 2007//TBUGZILLA-3_1_2
-/WebService.pm/1.6/Mon Mar 26 07:52:17 2007//TBUGZILLA-3_1_2
+/.cvsignore/1.1/Mon Aug 26 22:24:55 2002//TBUGZILLA-3_1_3
+/Attachment.pm/1.54/Sun Jan 20 15:03:58 2008//TBUGZILLA-3_1_3
+/Auth.pm/1.20/Wed Jul 12 11:51:43 2006//TBUGZILLA-3_1_3
+/Bug.pm/1.230/Sun Jan 20 22:18:56 2008//TBUGZILLA-3_1_3
+/BugMail.pm/1.115/Sun Jan 27 19:39:28 2008//TBUGZILLA-3_1_3
+/CGI.pm/1.36/Tue Jan 29 19:19:36 2008//TBUGZILLA-3_1_3
+/Chart.pm/1.16/Fri Oct 19 06:46:14 2007//TBUGZILLA-3_1_3
+/Classification.pm/1.11/Tue Dec 19 08:38:49 2006//TBUGZILLA-3_1_3
+/Component.pm/1.16/Thu Oct 11 23:07:22 2007//TBUGZILLA-3_1_3
+/Config.pm/1.73/Fri Jan 18 05:04:19 2008//TBUGZILLA-3_1_3
+/Constants.pm/1.89/Sat Feb  2 00:34:19 2008//TBUGZILLA-3_1_3
+/DB.pm/1.109/Sun Jan 27 19:15:19 2008//TBUGZILLA-3_1_3
+/Error.pm/1.23/Sun Jan 27 19:15:19 2008//TBUGZILLA-3_1_3
+/Field.pm/1.29/Tue Oct 23 19:36:51 2007//TBUGZILLA-3_1_3
+/Flag.pm/1.89/Sun Jan 20 22:12:50 2008//TBUGZILLA-3_1_3
+/FlagType.pm/1.38/Wed Jul  4 21:05:58 2007//TBUGZILLA-3_1_3
+/Group.pm/1.22/Tue Sep 18 23:36:59 2007//TBUGZILLA-3_1_3
+/Hook.pm/1.13/Fri Oct 19 08:07:28 2007//TBUGZILLA-3_1_3
+/Install.pm/1.17/Wed Nov 28 16:35:57 2007//TBUGZILLA-3_1_3
+/Keyword.pm/1.7/Tue Sep  5 19:18:26 2006//TBUGZILLA-3_1_3
+/Mailer.pm/1.17/Sun Jan 27 18:08:45 2008//TBUGZILLA-3_1_3
+/Milestone.pm/1.12/Fri Jan 18 15:56:54 2008//TBUGZILLA-3_1_3
+/Object.pm/1.22/Fri Jan 18 15:56:54 2008//TBUGZILLA-3_1_3
+/Product.pm/1.25/Sat Jan 12 16:23:12 2008//TBUGZILLA-3_1_3
+/Search.pm/1.152/Tue Jan 29 01:47:01 2008//TBUGZILLA-3_1_3
+/Series.pm/1.16/Sun Nov 18 20:20:53 2007//TBUGZILLA-3_1_3
+/Status.pm/1.6/Thu Jan 17 20:41:44 2008//TBUGZILLA-3_1_3
+/Template.pm/1.85/Sat Dec 15 03:17:53 2007//TBUGZILLA-3_1_3
+/Token.pm/1.54/Sun Nov 18 20:20:53 2007//TBUGZILLA-3_1_3
+/Update.pm/1.9/Wed Jan 30 01:55:16 2008//TBUGZILLA-3_1_3
+/User.pm/1.164/Sun Jan 20 02:22:26 2008//TBUGZILLA-3_1_3
+/Util.pm/1.67/Thu Dec 27 22:39:27 2007//TBUGZILLA-3_1_3
+/Version.pm/1.14/Thu Aug 23 21:31:20 2007//TBUGZILLA-3_1_3
+/WebService.pm/1.6/Mon Mar 26 07:52:17 2007//TBUGZILLA-3_1_3
 D/Attachment////
 D/Auth////
 D/Config////
diff --git a/Bugzilla/CVS/Tag b/Bugzilla/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/Bugzilla/CVS/Tag
+++ b/Bugzilla/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/Bugzilla/Chart.pm b/Bugzilla/Chart.pm
index 9701f7b32deb6de4f8b0cd070d16010fb4f2462a..a119e4b7cd7041661f41b9f31ef5a8c2f68d3eb6 100644
--- a/Bugzilla/Chart.pm
+++ b/Bugzilla/Chart.pm
@@ -22,7 +22,6 @@
 #                 A. Karl Kornel <karl@kornel.name>
 
 use strict;
-use lib ".";
 
 # This module represents a chart.
 #
diff --git a/Bugzilla/Component.pm b/Bugzilla/Component.pm
index a615e7ae507594be3a5e2e9ebd8bcf743308e106..f5719e82c5c9c3359aa8ef09108cdb4d1f2e41f2 100644
--- a/Bugzilla/Component.pm
+++ b/Bugzilla/Component.pm
@@ -23,10 +23,12 @@ package Bugzilla::Component;
 
 use base qw(Bugzilla::Object);
 
+use Bugzilla::Constants;
 use Bugzilla::Util;
 use Bugzilla::Error;
 use Bugzilla::User;
 use Bugzilla::FlagType;
+use Bugzilla::Series;
 
 ###############################
 ####    Initialization     ####
@@ -43,8 +45,32 @@ use constant DB_COLUMNS => qw(
     description
 );
 
-###############################
-####       Methods         ####
+use constant REQUIRED_CREATE_FIELDS => qw(
+    name
+    product
+    initialowner
+    description
+);
+
+use constant UPDATE_COLUMNS => qw(
+    name
+    initialowner
+    initialqacontact
+    description
+);
+
+use constant VALIDATORS => {
+    product          => \&_check_product,
+    initialowner     => \&_check_initialowner,
+    initialqacontact => \&_check_initialqacontact,
+    description      => \&_check_description,
+    initial_cc       => \&_check_cc_list,
+};
+
+use constant UPDATE_VALIDATORS => {
+    name => \&_check_name,
+};
+
 ###############################
 
 sub new {
@@ -79,6 +105,225 @@ sub new {
     return $component;
 }
 
+sub create {
+    my $class = shift;
+    my $dbh = Bugzilla->dbh;
+
+    $dbh->bz_start_transaction();
+
+    $class->check_required_create_fields(@_);
+    my $params = $class->run_create_validators(@_);
+    my $cc_list = delete $params->{initial_cc};
+
+    my $component = $class->insert_create_data($params);
+
+    # We still have to fill the component_cc table.
+    $component->_update_cc_list($cc_list);
+
+    # Create series for the new component.
+    $component->_create_series();
+
+    $dbh->bz_commit_transaction();
+    return $component;
+}
+
+sub run_create_validators {
+    my $class  = shift;
+    my $params = $class->SUPER::run_create_validators(@_);
+
+    my $product = delete $params->{product};
+    $params->{product_id} = $product->id;
+    $params->{name} = $class->_check_name($params->{name}, $product);
+
+    return $params;
+}
+
+sub update {
+    my $self = shift;
+    my $changes = $self->SUPER::update(@_);
+
+    # Update the component_cc table if necessary.
+    if (defined $self->{cc_ids}) {
+        my $diff = $self->_update_cc_list($self->{cc_ids});
+        $changes->{cc_list} = $diff if defined $diff;
+    }
+    return $changes;
+}
+
+sub remove_from_db {
+    my $self = shift;
+    my $dbh = Bugzilla->dbh;
+
+    $dbh->bz_start_transaction();
+
+    if ($self->bug_count) {
+        if (Bugzilla->params->{'allowbugdeletion'}) {
+            require Bugzilla::Bug;
+            foreach my $bug_id (@{$self->bug_ids}) {
+                # Note: We allow admins to delete bugs even if they can't
+                # see them, as long as they can see the product.
+                my $bug = new Bugzilla::Bug($bug_id);
+                $bug->remove_from_db();
+            }
+        } else {
+            ThrowUserError('component_has_bugs', {nb => $self->bug_count});
+        }
+    }
+
+    $dbh->do('DELETE FROM flaginclusions WHERE component_id = ?',
+             undef, $self->id);
+    $dbh->do('DELETE FROM flagexclusions WHERE component_id = ?',
+             undef, $self->id);
+    $dbh->do('DELETE FROM component_cc WHERE component_id = ?',
+             undef, $self->id);
+    $dbh->do('DELETE FROM components WHERE id = ?', undef, $self->id);
+
+    $dbh->bz_commit_transaction();
+}
+
+################################
+# Validators
+################################
+
+sub _check_name {
+    my ($invocant, $name, $product) = @_;
+
+    $name = trim($name);
+    $name || ThrowUserError('component_blank_name');
+
+    if (length($name) > MAX_COMPONENT_SIZE) {
+        ThrowUserError('component_name_too_long', {'name' => $name});
+    }
+
+    $product = $invocant->product if (ref $invocant);
+    my $component = new Bugzilla::Component({product => $product, name => $name});
+    if ($component && (!ref $invocant || $component->id != $invocant->id)) {
+        ThrowUserError('component_already_exists', { name    => $component->name,
+                                                     product => $product });
+    }
+    return $name;
+}
+
+sub _check_description {
+    my ($invocant, $description) = @_;
+
+    $description = trim($description);
+    $description || ThrowUserError('component_blank_description');
+    return $description;
+}
+
+sub _check_initialowner {
+    my ($invocant, $owner) = @_;
+
+    $owner || ThrowUserError('component_need_initialowner');
+    my $owner_id = Bugzilla::User->check($owner)->id;
+    return $owner_id;
+}
+
+sub _check_initialqacontact {
+    my ($invocant, $qa_contact) = @_;
+
+    my $qa_contact_id;
+    if (Bugzilla->params->{'useqacontact'}) {
+        $qa_contact_id = Bugzilla::User->check($qa_contact)->id if $qa_contact;
+    }
+    elsif (ref $invocant) {
+        $qa_contact_id = $invocant->{initialqacontact};
+    }
+    return $qa_contact_id;
+}
+
+sub _check_product {
+    my ($invocant, $product) = @_;
+    return Bugzilla->user->check_can_admin_product($product->name);
+}
+
+sub _check_cc_list {
+    my ($invocant, $cc_list) = @_;
+
+    my %cc_ids;
+    foreach my $cc (@$cc_list) {
+        my $id = login_to_id($cc, THROW_ERROR);
+        $cc_ids{$id} = 1;
+    }
+    return [keys %cc_ids];
+}
+
+###############################
+####       Methods         ####
+###############################
+
+sub _update_cc_list {
+    my ($self, $cc_list) = @_;
+    my $dbh = Bugzilla->dbh;
+
+    my $old_cc_list =
+      $dbh->selectcol_arrayref('SELECT user_id FROM component_cc
+                                WHERE component_id = ?', undef, $self->id);
+
+    my ($removed, $added) = diff_arrays($old_cc_list, $cc_list);
+    my $diff;
+    if (scalar @$removed || scalar @$added) {
+        $diff = [join(', ', @$removed), join(', ', @$added)];
+    }
+
+    $dbh->do('DELETE FROM component_cc WHERE component_id = ?', undef, $self->id);
+
+    my $sth = $dbh->prepare('INSERT INTO component_cc
+                             (user_id, component_id) VALUES (?, ?)');
+    $sth->execute($_, $self->id) foreach (@$cc_list);
+
+    return $diff;
+}
+
+sub _create_series {
+    my $self = shift;
+
+    # Insert default charting queries for this product.
+    # If they aren't using charting, this won't do any harm.
+    my $prodcomp = "&product="   . url_quote($self->product->name) .
+                   "&component=" . url_quote($self->name);
+
+    my $open_query = 'field0-0-0=resolution&type0-0-0=notregexp&value0-0-0=.' .
+                     $prodcomp;
+    my $nonopen_query = 'field0-0-0=resolution&type0-0-0=regexp&value0-0-0=.' .
+                        $prodcomp;
+
+    my @series = ([get_text('series_all_open'), $open_query],
+                  [get_text('series_all_closed'), $nonopen_query]);
+
+    foreach my $sdata (@series) {
+        my $series = new Bugzilla::Series(undef, $self->product->name,
+                                          $self->name, $sdata->[0],
+                                          Bugzilla->user->id, 1, $sdata->[1], 1);
+        $series->writeToDatabase();
+    }
+}
+
+sub set_name { $_[0]->set('name', $_[1]); }
+sub set_description { $_[0]->set('description', $_[1]); }
+sub set_default_assignee {
+    my ($self, $owner) = @_;
+
+    $self->set('initialowner', $owner);
+    # Reset the default owner object.
+    delete $self->{default_assignee};
+}
+sub set_default_qa_contact {
+    my ($self, $qa_contact) = @_;
+
+    $self->set('initialqacontact', $qa_contact);
+    # Reset the default QA contact object.
+    delete $self->{default_qa_contact};
+}
+sub set_cc_list {
+    my ($self, $cc_list) = @_;
+
+    $self->{cc_ids} = $self->_check_cc_list($cc_list);
+    # Reset the list of CC user objects.
+    delete $self->{initial_cc};
+}
+
 sub bug_count {
     my $self = shift;
     my $dbh = Bugzilla->dbh;
@@ -143,15 +388,17 @@ sub flag_types {
 
 sub initial_cc {
     my $self = shift;
-
     my $dbh = Bugzilla->dbh;
 
     if (!defined $self->{'initial_cc'}) {
-        my $cc_ids = $dbh->selectcol_arrayref(
-            "SELECT user_id FROM component_cc WHERE component_id = ?",
-            undef, $self->id);
-        my $initial_cc = Bugzilla::User->new_from_list($cc_ids);
-        $self->{'initial_cc'} = $initial_cc;
+        # If set_cc_list() has been called but data are not yet written
+        # into the DB, we want the new values defined by it.
+        my $cc_ids = $self->{cc_ids}
+                     || $dbh->selectcol_arrayref('SELECT user_id FROM component_cc
+                                                  WHERE component_id = ?',
+                                                  undef, $self->id);
+
+        $self->{'initial_cc'} = Bugzilla::User->new_from_list($cc_ids);
     }
     return $self->{'initial_cc'};
 }
@@ -178,27 +425,6 @@ sub product_id  { return $_[0]->{'product_id'};  }
 ####      Subroutines      ####
 ###############################
 
-sub check_component {
-    my ($product, $comp_name) = @_;
-
-    $comp_name || ThrowUserError('component_blank_name');
-
-    if (length($comp_name) > 64) {
-        ThrowUserError('component_name_too_long',
-                       {'name' => $comp_name});
-    }
-
-    my $component =
-        new Bugzilla::Component({product => $product,
-                                 name    => $comp_name});
-    unless ($component) {
-        ThrowUserError('component_not_valid',
-                       {'product' => $product->name,
-                        'name' => $comp_name});
-    }
-    return $component;
-}
-
 1;
 
 __END__
@@ -211,9 +437,8 @@ Bugzilla::Component - Bugzilla product component class.
 
     use Bugzilla::Component;
 
-    my $component = new Bugzilla::Component(1);
-    my $component = new Bugzilla::Component({product => $product,
-                                             name    => 'AcmeComp'});
+    my $component = new Bugzilla::Component($comp_id);
+    my $component = new Bugzilla::Component({ product => $product, name => $name });
 
     my $bug_count          = $component->bug_count();
     my $bug_ids            = $component->bug_ids();
@@ -228,7 +453,23 @@ Bugzilla::Component - Bugzilla product component class.
     my $bug_flag_types     = $component->flag_types->{'bug'};
     my $attach_flag_types  = $component->flag_types->{'attachment'};
 
-    my $component  = Bugzilla::Component::check_component($product, 'AcmeComp');
+    my $component = Bugzilla::Component->check({ product => $product, name => $name });
+
+    my $component =
+      Bugzilla::Component->create({ name             => $name,
+                                    product          => $product,
+                                    initialowner     => $user_login1,
+                                    initialqacontact => $user_login2,
+                                    description      => $description});
+
+    $component->set_name($new_name);
+    $component->set_description($new_description);
+    $component->set_default_assignee($new_login_name);
+    $component->set_default_qa_contact($new_login_name);
+    $component->set_cc_list(\@new_login_names);
+    $component->update();
+
+    $component->remove_from_db;
 
 =head1 DESCRIPTION
 
@@ -241,14 +482,15 @@ Component.pm represents a Product Component object.
 =item C<new($param)>
 
  Description: The constructor is used to load an existing component
-              by passing a component id or a hash with the product
-              id and the component name.
+              by passing a component ID or a hash with the product
+              object the component belongs to and the component name.
 
  Params:      $param - If you pass an integer, the integer is the
-                       component id from the database that we want to
-                       read in. If you pass in a hash with 'name' key,
-                       then the value of the name key is the name of a
-                       component from the DB.
+                       component ID from the database that we want to
+                       read in. If you pass in a hash with the 'name'
+                       and 'product' keys, then the value of the name
+                       key is the name of a component being in the given
+                       product.
 
  Returns:     A Bugzilla::Component object.
 
@@ -288,41 +530,117 @@ Component.pm represents a Product Component object.
 
 =item C<initial_cc>
 
-Returns an arrayref of L<Bugzilla::User> objects representing the
-Initial CC List.
+ Description: Returns a list of user objects representing users being
+              in the initial CC list.
+
+ Params:      none.
+
+ Returns:     An arrayref of L<Bugzilla::User> objects.
 
 =item C<flag_types()>
 
-  Description: Returns all bug and attachment flagtypes available for
-               the component.
+ Description: Returns all bug and attachment flagtypes available for
+              the component.
 
-  Params:      none.
+ Params:      none.
 
-  Returns:     Two references to an array of flagtype objects.
+ Returns:     Two references to an array of flagtype objects.
 
 =item C<product()>
 
-  Description: Returns the product the component belongs to.
+ Description: Returns the product the component belongs to.
+
+ Params:      none.
+
+ Returns:     A Bugzilla::Product object.
+
+=item C<set_name($new_name)>
+
+ Description: Changes the name of the component.
+
+ Params:      $new_name - new name of the component (string). This name
+                          must be unique within the product.
+
+ Returns:     Nothing.
+
+=item C<set_description($new_desc)>
+
+ Description: Changes the description of the component.
+
+ Params:      $new_desc - new description of the component (string).
+
+ Returns:     Nothing.
+
+=item C<set_default_assignee($new_assignee)>
+
+ Description: Changes the default assignee of the component.
+
+ Params:      $new_owner - login name of the new default assignee of
+                           the component (string). This user account
+                           must already exist.
 
-  Params:      none.
+ Returns:     Nothing.
 
-  Returns:     A Bugzilla::Product object.
+=item C<set_default_qa_contact($new_qa_contact)>
+
+ Description: Changes the default QA contact of the component.
+
+ Params:      $new_qa_contact - login name of the new QA contact of
+                                the component (string). This user
+                                account must already exist.
+
+ Returns:     Nothing.
+
+=item C<set_cc_list(\@cc_list)>
+
+ Description: Changes the list of users being in the CC list by default.
+
+ Params:      \@cc_list - list of login names (string). All the user
+                          accounts must already exist.
+
+ Returns:     Nothing.
+
+=item C<update()>
+
+ Description: Write changes made to the component into the DB.
+
+ Params:      none.
+
+ Returns:     A hashref with changes made to the component object.
+
+=item C<remove_from_db()>
+
+ Description: Deletes the current component from the DB. The object itself
+              is not destroyed.
+
+ Params:      none.
+
+ Returns:     Nothing.
 
 =back
 
-=head1 SUBROUTINES
+=head1 CLASS METHODS
 
 =over
 
-=item C<check_component($product, $comp_name)>
+=item C<create(\%params)>
 
- Description: Checks if the component name was passed in and if it is a valid
-              component.
+ Description: Create a new component for the given product.
 
- Params:      $product - A Bugzilla::Product object.
-              $comp_name - String with a component name.
+ Params:      The hashref must have the following keys:
+              name            - name of the new component (string). This name
+                                must be unique within the product.
+              product         - a Bugzilla::Product object to which
+                                the Component is being added.
+              description     - description of the new component (string).
+              initialowner    - login name of the default assignee (string).
+              The following keys are optional:
+              initiaqacontact - login name of the default QA contact (string),
+                                or an empty string to clear it.
+              initial_cc      - an arrayref of login names to add to the
+                                CC list by default.
 
- Returns:     Bugzilla::Component object.
+ Returns:     A Bugzilla::Component object.
 
 =back
 
diff --git a/Bugzilla/Config.pm b/Bugzilla/Config.pm
index b1b0d66675d695ec48d943aa4df6d96b00f5f6c9..d84970e8cf34b991afe332e2429750a969a56f90 100644
--- a/Bugzilla/Config.pm
+++ b/Bugzilla/Config.pm
@@ -318,6 +318,17 @@ sub read_param_file {
         # Now read the param back out from the sandbox
         %params = %{$s->varglob('param')};
     }
+    elsif ($ENV{'SERVER_SOFTWARE'}) {
+       # We're in a CGI, but the params file doesn't exist. We can't
+       # Template Toolkit, or even install_string, since checksetup
+       # might not have thrown an error. Bugzilla::CGI->new
+       # hasn't even been called yet, so we manually use CGI::Carp here
+       # so that the user sees the error.
+       require CGI::Carp;
+       CGI::Carp->import('fatalsToBrowser');
+       die "The $datadir/params file does not exist."
+           . ' You probably need to run checksetup.pl.',
+    }
     return \%params;
 }
 
diff --git a/Bugzilla/Config/BugChange.pm b/Bugzilla/Config/BugChange.pm
index 65b2aec964f3bd7fe752796c1df2f5602b03282c..aec6e2428a37e69befe3c715415dfc555df215dc 100644
--- a/Bugzilla/Config/BugChange.pm
+++ b/Bugzilla/Config/BugChange.pm
@@ -48,7 +48,7 @@ sub get_param_list {
   # and bug_status.is_open is not yet defined (hence the eval), so we use
   # the bug statuses above as they are still hardcoded.
   eval {
-      my @current_closed_states = map {$_->name} Bugzilla::Status::closed_bug_statuses();
+      my @current_closed_states = map {$_->name} closed_bug_statuses();
       # If no closed state was found, use the default list above.
       @closed_bug_statuses = @current_closed_states if scalar(@current_closed_states);
   };
diff --git a/Bugzilla/Config/CVS/Entries b/Bugzilla/Config/CVS/Entries
index edc1747fe010984623603db616cc24b34e496fc6..8371c071ac8d30ecde57cc2f6f189a3915aa09fd 100644
--- a/Bugzilla/Config/CVS/Entries
+++ b/Bugzilla/Config/CVS/Entries
@@ -1,18 +1,18 @@
-/Admin.pm/1.2/Thu Oct 13 09:04:04 2005//TBUGZILLA-3_1_2
-/Attachment.pm/1.3/Mon Apr 17 20:19:35 2006//TBUGZILLA-3_1_2
-/Auth.pm/1.3/Thu Aug  2 22:38:39 2007//TBUGZILLA-3_1_2
-/BugChange.pm/1.4/Fri Jul 13 13:10:39 2007//TBUGZILLA-3_1_2
-/BugFields.pm/1.5/Mon Sep 10 22:57:00 2007//TBUGZILLA-3_1_2
-/BugMove.pm/1.1/Wed Oct 12 08:51:53 2005//TBUGZILLA-3_1_2
-/Common.pm/1.18/Tue Aug 21 20:47:52 2007//TBUGZILLA-3_1_2
-/Core.pm/1.8/Wed Apr 18 00:13:22 2007//TBUGZILLA-3_1_2
-/DependencyGraph.pm/1.1/Wed Oct 12 08:51:53 2005//TBUGZILLA-3_1_2
-/GroupSecurity.pm/1.8/Mon Aug  7 23:05:00 2006//TBUGZILLA-3_1_2
-/LDAP.pm/1.2/Fri Jun  2 11:52:48 2006//TBUGZILLA-3_1_2
-/MTA.pm/1.15/Sun Jun 17 18:57:10 2007//TBUGZILLA-3_1_2
-/PatchViewer.pm/1.1/Wed Oct 12 08:51:53 2005//TBUGZILLA-3_1_2
-/Query.pm/1.5/Tue Jul  3 16:22:01 2007//TBUGZILLA-3_1_2
-/RADIUS.pm/1.1/Thu Aug  2 22:38:39 2007//TBUGZILLA-3_1_2
-/ShadowDB.pm/1.1/Wed Oct 12 08:51:53 2005//TBUGZILLA-3_1_2
-/UserMatch.pm/1.1/Wed Oct 12 08:51:53 2005//TBUGZILLA-3_1_2
+/Admin.pm/1.2/Thu Oct 13 09:04:04 2005//TBUGZILLA-3_1_3
+/Attachment.pm/1.3/Mon Apr 17 20:19:35 2006//TBUGZILLA-3_1_3
+/Auth.pm/1.3/Thu Aug  2 22:38:39 2007//TBUGZILLA-3_1_3
+/BugChange.pm/1.5/Tue Oct  9 10:34:54 2007//TBUGZILLA-3_1_3
+/BugFields.pm/1.5/Mon Sep 10 22:57:00 2007//TBUGZILLA-3_1_3
+/BugMove.pm/1.1/Wed Oct 12 08:51:53 2005//TBUGZILLA-3_1_3
+/Common.pm/1.19/Tue Oct  9 10:34:54 2007//TBUGZILLA-3_1_3
+/Core.pm/1.8/Wed Apr 18 00:13:22 2007//TBUGZILLA-3_1_3
+/DependencyGraph.pm/1.1/Wed Oct 12 08:51:53 2005//TBUGZILLA-3_1_3
+/GroupSecurity.pm/1.8/Mon Aug  7 23:05:00 2006//TBUGZILLA-3_1_3
+/LDAP.pm/1.2/Fri Jun  2 11:52:48 2006//TBUGZILLA-3_1_3
+/MTA.pm/1.15/Sun Jun 17 18:57:10 2007//TBUGZILLA-3_1_3
+/PatchViewer.pm/1.1/Wed Oct 12 08:51:53 2005//TBUGZILLA-3_1_3
+/Query.pm/1.5/Tue Jul  3 16:22:01 2007//TBUGZILLA-3_1_3
+/RADIUS.pm/1.1/Thu Aug  2 22:38:39 2007//TBUGZILLA-3_1_3
+/ShadowDB.pm/1.1/Wed Oct 12 08:51:53 2005//TBUGZILLA-3_1_3
+/UserMatch.pm/1.1/Wed Oct 12 08:51:53 2005//TBUGZILLA-3_1_3
 D
diff --git a/Bugzilla/Config/CVS/Tag b/Bugzilla/Config/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/Bugzilla/Config/CVS/Tag
+++ b/Bugzilla/Config/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/Bugzilla/Config/Common.pm b/Bugzilla/Config/Common.pm
index 2e5e7d15d4d5a72fbf97af31e7183ae176ebaa60..03e97d6a19ab59e5add5d7934ea509d6462894e2 100644
--- a/Bugzilla/Config/Common.pm
+++ b/Bugzilla/Config/Common.pm
@@ -170,7 +170,7 @@ sub check_opsys {
 
 sub check_bug_status {
     my $bug_status = shift;
-    my @closed_bug_statuses = map {$_->name} Bugzilla::Status::closed_bug_statuses();
+    my @closed_bug_statuses = map {$_->name} closed_bug_statuses();
     if (lsearch(\@closed_bug_statuses, $bug_status) < 0) {
         return "Must be a valid closed status: one of " . join(', ', @closed_bug_statuses);
     }
diff --git a/Bugzilla/Constants.pm b/Bugzilla/Constants.pm
index d99ac4afaa29d5c4a2e43384af61f5ae35d269f7..b8b77fbadc7c66da7e88429f6ca6bcc139529bdb 100644
--- a/Bugzilla/Constants.pm
+++ b/Bugzilla/Constants.pm
@@ -91,7 +91,6 @@ use File::Basename;
     CMT_POPULAR_VOTES
     CMT_MOVED_TO
 
-    UNLOCK_ABORT
     THROW_ERROR
     
     RELATIONSHIPS
@@ -121,6 +120,7 @@ use File::Basename;
     FIELD_TYPE_SINGLE_SELECT
     FIELD_TYPE_MULTI_SELECT
     FIELD_TYPE_TEXTAREA
+    FIELD_TYPE_DATETIME
 
     USAGE_MODE_BROWSER
     USAGE_MODE_CMDLINE
@@ -142,7 +142,13 @@ use File::Basename;
 
     SAFE_PROTOCOLS
 
+    MIN_SMALLINT
+    MAX_SMALLINT
+
     MAX_LEN_QUERY_NAME
+    MAX_MILESTONE_SIZE
+    MAX_COMPONENT_SIZE
+    MAX_FREETEXT_LENGTH
 );
 
 @Bugzilla::Constants::EXPORT_OK = qw(contenttypes);
@@ -150,7 +156,7 @@ use File::Basename;
 # CONSTANTS
 #
 # Bugzilla version
-use constant BUGZILLA_VERSION => "3.1.2";
+use constant BUGZILLA_VERSION => "3.1.3";
 
 # These are unique values that are unlikely to match a string or a number,
 # to be used in criteria for match() functions and other things. They start
@@ -262,10 +268,6 @@ use constant CMT_HAS_DUPE => 2;
 use constant CMT_POPULAR_VOTES => 3;
 use constant CMT_MOVED_TO => 4;
 
-# used by Bugzilla::DB to indicate that tables are being unlocked
-# because of error
-use constant UNLOCK_ABORT => 1;
-
 # Determine whether a validation routine should return 0 or throw
 # an error when the validation fails.
 use constant THROW_ERROR => 1;
@@ -344,6 +346,7 @@ use constant FIELD_TYPE_FREETEXT  => 1;
 use constant FIELD_TYPE_SINGLE_SELECT => 2;
 use constant FIELD_TYPE_MULTI_SELECT => 3;
 use constant FIELD_TYPE_TEXTAREA  => 4;
+use constant FIELD_TYPE_DATETIME  => 5;
 
 # The maximum number of days a token will remain valid.
 use constant MAX_TOKEN_AGE => 3;
@@ -375,10 +378,10 @@ use constant DB_MODULE => {
                 dbd => { 
                     package => 'DBD-mysql',
                     module  => 'DBD::mysql',
-                    version => '2.9003',
-                    # Certain versions are broken, development versions are
-                    # always disallowed.
-                    blacklist => ['^3\.000[3-6]', '_'],
+                    # Disallow development versions
+                    blacklist => ['_'],
+                    # For UTF-8 support
+                    version => '4.00',
                 },
                 name => 'MySQL'},
     'pg'    => {db => 'Bugzilla::DB::Pg', db_version => '8.00.0000',
@@ -388,6 +391,13 @@ use constant DB_MODULE => {
                     version => '1.45',
                 },
                 name => 'PostgreSQL'},
+     'oracle'=> {db => 'Bugzilla::DB::Oracle', db_version => '10.01.0',
+                dbd => {
+                     package => 'DBD-Oracle',
+                     module  => 'DBD::Oracle',
+                     version => '1.19',
+                },
+                name => 'Oracle'},
 };
 
 # The user who should be considered "root" when we're giving
@@ -397,9 +407,21 @@ use constant ROOT_USER => $^O =~ /MSWin32/i ? 'Administrator' : 'root';
 # True if we're on Win32.
 use constant ON_WINDOWS => ($^O =~ /MSWin32/i);
 
+use constant MIN_SMALLINT => -32768;
+use constant MAX_SMALLINT => 32767;
+
 # The longest that a saved search name can be.
 use constant MAX_LEN_QUERY_NAME => 64;
 
+# The longest milestone name allowed.
+use constant MAX_MILESTONE_SIZE => 20;
+
+# The longest component name allowed.
+use constant MAX_COMPONENT_SIZE => 64;
+
+# Maximum length allowed for free text fields.
+use constant MAX_FREETEXT_LENGTH => 255;
+
 sub bz_locations {
     # We know that Bugzilla/Constants.pm must be in %INC at this point.
     # So the only question is, what's the name of the directory
@@ -431,6 +453,7 @@ sub bz_locations {
     # That means that if you modify these paths, they must be absolute paths.
     return {
         'libpath'     => $libpath,
+        'ext_libpath' => "$libpath/lib",
         # If you put the libraries in a different location than the CGIs,
         # make sure this still points to the CGIs.
         'cgi_path'    => $libpath,
diff --git a/Bugzilla/DB.pm b/Bugzilla/DB.pm
index 4aad803c617a5b0c89b9937983c3fe35e6ab1b80..4a0303287d73d05046152ab238eefd8a23889288 100644
--- a/Bugzilla/DB.pm
+++ b/Bugzilla/DB.pm
@@ -273,8 +273,7 @@ EOT
 # List of abstract methods we are checking the derived class implements
 our @_abstract_methods = qw(REQUIRED_VERSION PROGRAM_NAME DBD_VERSION
                             new sql_regexp sql_not_regexp sql_limit sql_to_days
-                            sql_date_format sql_interval
-                            bz_lock_tables bz_unlock_tables);
+                            sql_date_format sql_interval);
 
 # This overridden import method will check implementation of inherited classes
 # for missing implementation of abstract methods
@@ -335,6 +334,11 @@ sub sql_string_concat {
     return '(' . join(' || ', @params) . ')';
 }
 
+sub sql_in {
+    my ($self, $column_name, $in_list_ref) = @_;
+    return " $column_name IN (" . join(',', @$in_list_ref) . ") ";
+}
+
 sub sql_fulltext_search {
     my ($self, $column, $text) = @_;
 
@@ -448,6 +452,19 @@ sub bz_setup_foreign_keys {
     }
 }
 
+# This is used by contrib/bzdbcopy.pl, mostly.
+sub bz_drop_foreign_keys {
+    my ($self) = @_;
+
+    my @tables = $self->_bz_real_schema->get_table_list();
+    foreach my $table (@tables) {
+        my @columns = $self->_bz_real_schema->get_table_columns($table);
+        foreach my $column (@columns) {
+            $self->bz_drop_fk($table, $column);
+        }
+    }
+}
+
 #####################################################################
 # Schema Modification Methods
 #####################################################################
@@ -693,6 +710,24 @@ sub bz_drop_column {
     }
 }
 
+sub bz_drop_fk {
+    my ($self, $table, $column) = @_;
+
+    my $col_def = $self->bz_column_info($table, $column);
+    if ($col_def && exists $col_def->{REFERENCES}) {
+        my $def = $col_def->{REFERENCES};
+        print get_text('install_fk_drop',
+                       { table => $table, column => $column, fk => $def })
+            . "\n" if Bugzilla->usage_mode == USAGE_MODE_CMDLINE;
+        my @sql = $self->_bz_real_schema->get_drop_fk_sql($table,$column,$def);
+        $self->do($_) foreach @sql;
+        delete $col_def->{REFERENCES};
+        $self->_bz_real_schema->set_column($table, $column, $col_def);
+        $self->_bz_store_real_schema;
+    }
+
+}
+
 sub bz_drop_index {
     my ($self, $table, $name) = @_;
 
@@ -978,7 +1013,6 @@ sub db_new {
     }
 
     # connect using our known info to the specified db
-    # Apache::DBI will cache this when using mod_perl
     my $self = DBI->connect($dsn, $user, $pass, $attributes)
         or die "\nCan't connect to the database.\nError: $DBI::errstr\n"
         . "  Is your database installed and up and running?\n  Do you have"
@@ -1541,7 +1575,7 @@ Abstract method, should be overridden by database specific code.
 
 =item C<$limit> - number of rows to return from query (scalar)
 
-=item C<$offset> - number of rows to skip prior counting (scalar)
+=item C<$offset> - number of rows to skip before counting (scalar)
 
 =back
 
@@ -1832,60 +1866,29 @@ will not be usually used unless it was created as LOWER(column).
 
 =back
 
-=item C<bz_lock_tables>
+=item C<sql_in>
 
 =over
 
 =item B<Description>
 
-Performs a table lock operation on specified tables. If the underlying 
-database supports transactions, it should also implicitly start a new 
-transaction.
+Returns SQL syntax for the C<IN ()> operator. 
 
-Abstract method, should be overridden by database specific code.
+Only necessary where an C<IN> clause can have more than 1000 items.
 
 =item B<Params>
 
 =over
 
-=item C<@tables> - list of names of tables to lock in MySQL
-notation (ex. 'bugs AS bugs2 READ', 'logincookies WRITE')
-
-=back
+=item C<$column_name> - Column name (e.g. C<bug_id>)
 
-=item B<Returns> (nothing)
+=item C<$in_list_ref> - an arrayref containing values for C<IN ()>
 
 =back
 
-=item C<bz_unlock_tables>
-
-=over
-
-=item B<Description>
-
-Performs a table unlock operation.
-
-If the underlying database supports transactions, it should also implicitly 
-commit or rollback the transaction.
-
-Also, this function should allow to be called with the abort flag
-set even without locking tables first without raising an error
-to simplify error handling.
-
-Abstract method, should be overridden by database specific code.
-
-=item B<Params>
-
-=over
-
-=item C<$abort> - C<UNLOCK_ABORT> if the operation on locked tables
-failed (if transactions are supported, the action will be rolled
-back). No param if the operation succeeded. This is only used by
-L<Bugzilla::Error/throw_error>.
-
-=back
+=item B<Returns>
 
-=item B<Returns> (none)
+Formatted SQL for the C<IN> operator.
 
 =back
 
diff --git a/Bugzilla/DB/CVS/Entries b/Bugzilla/DB/CVS/Entries
index 97fa6b2e43c50f947a88b8358352c73eec311dab..098df55d2a648954c5420f6fce2e86fe94acac1a 100644
--- a/Bugzilla/DB/CVS/Entries
+++ b/Bugzilla/DB/CVS/Entries
@@ -1,4 +1,5 @@
-/Mysql.pm/1.54/Mon Jul 23 23:04:53 2007//TBUGZILLA-3_1_2
-/Pg.pm/1.24/Fri Jul 27 12:02:20 2007//TBUGZILLA-3_1_2
-/Schema.pm/1.89/Sat Sep  8 00:14:27 2007//TBUGZILLA-3_1_2
+/Mysql.pm/1.56/Sun Jan 27 19:15:21 2008//TBUGZILLA-3_1_3
+/Oracle.pm/1.6/Fri Jan 18 19:57:20 2008//TBUGZILLA-3_1_3
+/Pg.pm/1.26/Tue Dec 11 05:36:05 2007//TBUGZILLA-3_1_3
+/Schema.pm/1.97/Wed Jan  9 15:14:02 2008//TBUGZILLA-3_1_3
 D/Schema////
diff --git a/Bugzilla/DB/CVS/Tag b/Bugzilla/DB/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/Bugzilla/DB/CVS/Tag
+++ b/Bugzilla/DB/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/Bugzilla/DB/Mysql.pm b/Bugzilla/DB/Mysql.pm
index 25ee32b640d13f9b5688c87414c40efe903b09b2..720c8ff42681dd4cc2c78ab67f3fe45738915e2d 100644
--- a/Bugzilla/DB/Mysql.pm
+++ b/Bugzilla/DB/Mysql.pm
@@ -58,8 +58,10 @@ sub new {
     my $dsn = "DBI:mysql:host=$host;database=$dbname";
     $dsn .= ";port=$port" if $port;
     $dsn .= ";mysql_socket=$sock" if $sock;
+
+    my $attrs = { mysql_enable_utf8 => Bugzilla->params->{'utf8'} };
     
-    my $self = $class->db_new($dsn, $user, $pass);
+    my $self = $class->db_new($dsn, $user, $pass, $attrs);
 
     # This makes sure that if the tables are encoded as UTF-8, we
     # return their data correctly.
@@ -198,44 +200,6 @@ sub sql_group_by {
 }
 
 
-sub bz_lock_tables {
-    my ($self, @tables) = @_;
-
-    my $list = join(', ', @tables);
-    # Check first if there was no lock before
-    if ($self->{private_bz_tables_locked}) {
-        ThrowCodeError("already_locked", { current => $self->{private_bz_tables_locked},
-                                           new => $list });
-    } else {
-        $self->bz_start_transaction();
-        $self->do('LOCK TABLE ' . $list); 
-        $self->{private_bz_tables_locked} = $list;
-    }
-}
-
-sub bz_unlock_tables {
-    my ($self, $abort) = @_;
-
-    if ($self->bz_in_transaction) {
-        if ($abort) {
-            $self->bz_rollback_transaction();
-        }
-        else {
-            $self->bz_commit_transaction();
-        }
-    }
-    
-    # Check first if there was previous matching lock
-    if (!$self->{private_bz_tables_locked}) {
-        # Abort is allowed even without previous lock for error handling
-        return if $abort;
-        ThrowCodeError("no_matching_lock");
-    } else {
-        $self->do("UNLOCK TABLES");
-        $self->{private_bz_tables_locked} = "";
-    }
-}
-
 sub _bz_get_initial_schema {
     my ($self) = @_;
     return $self->_bz_build_schema_from_disk();
diff --git a/Bugzilla/DB/Oracle.pm b/Bugzilla/DB/Oracle.pm
new file mode 100644
index 0000000000000000000000000000000000000000..9f759785e2fb03fe20af59bb46b5d06844788d31
--- /dev/null
+++ b/Bugzilla/DB/Oracle.pm
@@ -0,0 +1,535 @@
+# -*- Mode: perl; indent-tabs-mode: nil -*-
+#
+# The contents of this file are subject to the Mozilla Public
+# License Version 1.1 (the "License"); you may not use this file
+# except in compliance with the License. You may obtain a copy of
+# the License at http://www.mozilla.org/MPL/
+#
+# Software distributed under the License is distributed on an "AS
+# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
+# implied. See the License for the specific language governing
+# rights and limitations under the License.
+#
+# The Original Code is the Bugzilla Bug Tracking System.
+#
+# The Initial Developer of the Original Code is Oracle Corporation. 
+# Portions created by Oracle are Copyright (C) 2007 Oracle Corporation. 
+# All Rights Reserved.
+#
+# Contributor(s): Lance Larsh <lance.larsh@oracle.com>
+#                 Xiaoou Wu   <xiaoou.wu@oracle.com>
+#                 Max Kanat-Alexander <mkanat@bugzilla.org>
+
+=head1 NAME
+
+Bugzilla::DB::Oracle - Bugzilla database compatibility layer for Oracle
+
+=head1 DESCRIPTION
+
+This module overrides methods of the Bugzilla::DB module with Oracle
+specific implementation. It is instantiated by the Bugzilla::DB module
+and should never be used directly.
+
+For interface details see L<Bugzilla::DB> and L<DBI>.
+
+=cut
+
+package Bugzilla::DB::Oracle;
+
+use strict;
+
+use DBD::Oracle;
+use DBD::Oracle qw(:ora_types);
+use Bugzilla::Constants;
+use Bugzilla::Error;
+use Bugzilla::Util;
+# This module extends the DB interface via inheritance
+use base qw(Bugzilla::DB);
+
+#####################################################################
+# Constants
+#####################################################################
+use constant EMPTY_STRING  => '__BZ_EMPTY_STR__';
+use constant ISOLATION_LEVEL => 'READ COMMITTED';
+use constant BLOB_TYPE => { ora_type => ORA_BLOB };
+
+sub new {
+    my ($class, $user, $pass, $host, $dbname, $port) = @_;
+
+    # You can never connect to Oracle without a DB name,
+    # and there is no default DB.
+    $dbname ||= Bugzilla->localconfig->{db_name};
+
+    # Set the language enviroment
+    $ENV{'NLS_LANG'} = '.AL32UTF8' if Bugzilla->params->{'utf8'};
+
+    # construct the DSN from the parameters we got
+    my $dsn = "DBI:Oracle:host=$host;sid=$dbname";
+    $dsn .= ";port=$port" if $port;
+    my $attrs = { FetchHashKeyName => 'NAME_lc',  
+                  LongReadLen => ( Bugzilla->params->{'maxattachmentsize'}
+                                     || 1000 ) * 1024, 
+                };
+    my $self = $class->db_new($dsn, $user, $pass, $attrs);
+
+    bless ($self, $class);
+
+    # Set the session's default date format to match MySQL
+    $self->do("ALTER SESSION SET NLS_DATE_FORMAT='YYYY-MM-DD HH24:MI:SS'");
+    $self->do("ALTER SESSION SET NLS_TIMESTAMP_FORMAT='YYYY-MM-DD HH24:MI:SS'");
+    $self->do("ALTER SESSION SET NLS_LENGTH_SEMANTICS='CHAR'") 
+        if Bugzilla->params->{'utf8'};
+    # To allow case insensitive query.
+    $self->do("ALTER SESSION SET NLS_COMP='LINGUISTIC'");
+    $self->do("ALTER SESSION SET NLS_SORT='BINARY_AI'");
+    return $self;
+}
+
+sub bz_last_key {
+    my ($self, $table, $column) = @_;
+
+    my $seq = $table . "_" . $column . "_SEQ";
+    my ($last_insert_id) = $self->selectrow_array("SELECT $seq.CURRVAL "
+                                                  . " FROM DUAL");
+    return $last_insert_id;
+}
+
+sub sql_regexp {
+    my ($self, $expr, $pattern) = @_;
+
+    return "REGEXP_LIKE($expr, $pattern)";
+}
+
+sub sql_not_regexp {
+    my ($self, $expr, $pattern) = @_;
+
+    return "NOT REGEXP_LIKE($expr, $pattern)" 
+}
+
+sub sql_limit {
+    my ($self, $limit, $offset) = @_;
+
+    if(defined $offset) {
+        return  "/* LIMIT $limit $offset */";
+    }
+    return "/* LIMIT $limit */";
+}
+
+sub sql_string_concat {
+    my ($self, @params) = @_;
+
+    return 'CONCAT(' . join(', ', @params) . ')';
+}
+
+sub sql_to_days {
+    my ($self, $date) = @_;
+
+    return " TO_CHAR(TO_DATE($date),'J') ";
+}
+sub sql_from_days{
+    my ($self, $date) = @_;
+
+    return " TO_DATE($date,'J') ";
+}
+sub sql_fulltext_search {
+    my ($self, $column, $text) = @_;
+    $text = $self->quote($text);
+    trick_taint($text);
+    return "CONTAINS($column,$text)";
+}
+
+sub sql_date_format {
+    my ($self, $date, $format) = @_;
+    
+    $format = "%Y.%m.%d %H:%i:%s" if !$format;
+
+    $format =~ s/\%Y/YYYY/g;
+    $format =~ s/\%y/YY/g;
+    $format =~ s/\%m/MM/g;
+    $format =~ s/\%d/DD/g;
+    $format =~ s/\%a/Dy/g;
+    $format =~ s/\%H/HH24/g;
+    $format =~ s/\%i/MI/g;
+    $format =~ s/\%s/SS/g;
+
+    return "TO_CHAR($date, " . $self->quote($format) . ")";
+}
+
+sub sql_interval {
+    my ($self, $interval, $units) = @_;
+
+    return "INTERVAL " . $self->quote($interval) . " $units";
+}
+
+sub sql_position {
+    my ($self, $fragment, $text) = @_;
+    return "INSTR($text, $fragment)";
+}
+
+sub sql_in {
+    my ($self, $column_name, $in_list_ref) = @_;
+    my @in_list = @$in_list_ref;
+    return $self->SUPER::sql_in($column_name, $in_list_ref) if $#in_list < 1000;
+    my @in_str;
+    while (@in_list) {
+        my $length = $#in_list + 1;
+        my $splice = $length > 1000 ? 1000 : $length;
+        my @sub_in_list = splice(@in_list, 0, $splice);
+        push(@in_str, 
+             $self->SUPER::sql_in($column_name, \@sub_in_list)); 
+    }
+    return "( " . join(" OR ", @in_str) . " )";
+}
+
+sub _fix_empty {
+    my ($string) = @_;
+    $string = '' if $string eq EMPTY_STRING;
+    return $string;
+}
+
+sub _fix_arrayref {
+    my ($row) = @_;
+    return undef if !defined $row;
+    foreach my $field (@$row) {
+        $field = _fix_empty($field) if defined $field;
+    }
+    return $row;
+}
+
+sub _fix_hashref {
+     my ($row) = @_;
+     return undef if !defined $row;
+     foreach my $value (values %$row) {
+       $value = _fix_empty($value) if defined $value;
+     }
+     return $row;
+}
+
+sub adjust_statement {
+    my ($sql) = @_;
+
+    # We can't just assume any occurrence of "''" in $sql is an empty
+    # string, since "''" can occur inside a string literal as a way of
+    # escaping a single "'" in the literal.  Therefore we must be trickier...
+
+    # split the statement into parts by single-quotes.  The negative value
+    # at the end to the split operator from dropping trailing empty strings
+    # (e.g., when $sql ends in "''")
+    my @parts = split /'/, $sql, -1;
+
+    if( !(@parts % 2) ) {
+        # Either the string is empty or the quotes are mismatched
+        # Returning input unmodified.
+        return $sql;
+    }
+
+    # We already verified that we have an odd number of parts.  If we take
+    # the first part off now, we know we're entering the loop with an even
+    # number of parts
+    my @result;
+    my $part = shift @parts;
+    
+    # Oracle requires a FROM clause in all SELECT statements, so append
+    # "FROM dual" to queries without one (e.g., "SELECT NOW()")
+    my $is_select = ($part =~ m/^\s*SELECT\b/io);
+    my $has_from =  ($part =~ m/\bFROM\b/io) if $is_select;
+
+    # Oracle recognizes CURRENT_DATE, but not CURRENT_DATE()
+    $part =~ s/\bCURRENT_DATE\b\(\)/CURRENT_DATE/io;
+    
+    # Oracle use SUBSTR instead of SUBSTRING
+    $part =~ s/\bSUBSTRING\b/SUBSTR/io;
+   
+    # Oracle need no 'AS'
+    $part =~ s/\bAS\b//ig;
+    
+    # Oracle doesn't have LIMIT, so if we find the LIMIT comment, wrap the
+    # query with "SELECT * FROM (...) WHERE rownum < $limit"
+    my ($limit,$offset) = ($part =~ m{/\* LIMIT (\d*) (\d*) \*/}o);
+    
+    push @result, $part;
+    while( @parts ) {
+        my $string = shift @parts;
+        my $nonstring = shift @parts;
+    
+        # if the non-string part is zero-length and there are more parts left,
+        # then this is an escaped quote inside a string literal   
+        while( !(length $nonstring) && @parts  ) {
+            # we know it's safe to remove two parts at a time, since we
+            # entered the loop with an even number of parts
+            $string .= "''" . shift @parts;
+            $nonstring = shift @parts;
+        }
+
+        # Look for a FROM if this is a SELECT and we haven't found one yet
+        $has_from = ($nonstring =~ m/\bFROM\b/io) 
+                    if ($is_select and !$has_from);
+
+        # Oracle recognizes CURRENT_DATE, but not CURRENT_DATE()
+        $nonstring =~ s/\bCURRENT_DATE\b\(\)/CURRENT_DATE/io;
+
+        # Oracle use SUBSTR instead of SUBSTRING
+        $nonstring =~ s/\bSUBSTRING\b/SUBSTR/io;
+        
+        # Oracle need no 'AS'
+        $nonstring =~ s/\bAS\b//ig;
+
+        # Look for a LIMIT clause
+        ($limit) = ($nonstring =~ m(/\* LIMIT (\d*) \*/)o);
+
+        push @result, $string;
+        push @result, $nonstring;
+    }
+
+    my $new_sql = join "'", @result;
+
+    # Append "FROM dual" if this is a SELECT without a FROM clause
+    $new_sql .= " FROM DUAL" if ($is_select and !$has_from);
+
+    # Wrap the query with a "WHERE rownum <= ..." if we found LIMIT
+    
+    if (defined($limit)) {
+        if ($new_sql !~ /\bWHERE\b/) {
+            $new_sql = $new_sql." WHERE 1=1";
+        }
+         my ($before_where, $after_where) = split /\bWHERE\b/i,$new_sql;
+         if (defined($offset)) {
+             if ($new_sql =~ /(.*\s+)FROM(\s+.*)/i) { 
+                 my ($before_from,$after_from) = ($1,$2);
+                 $before_where = "$before_from FROM ($before_from,"
+                              . " ROW_NUMBER() OVER (ORDER BY quipid) R "
+                              . " FROM $after_from ) "; 
+                 $after_where = " R BETWEEN $offset+1 AND $limit+$offset";
+             }
+         } else {
+                 $after_where = " rownum <=$limit AND ".$after_where;
+         }
+
+         $new_sql = $before_where." WHERE ".$after_where;
+    }
+    return $new_sql;
+}
+
+sub do {
+    my $self = shift;
+    my $sql  = shift;
+    $sql = adjust_statement($sql);
+    unshift @_, $sql;
+    return $self->SUPER::do(@_);
+}
+
+sub selectrow_array {
+    my $self = shift;
+    my $stmt = shift;
+    my $new_stmt = (ref $stmt) ? $stmt : adjust_statement($stmt);
+    unshift @_, $new_stmt;
+    if ( wantarray ) {
+        my @row = $self->SUPER::selectrow_array(@_);
+        _fix_arrayref(\@row);
+        return @row;
+    } else {
+        my $row = $self->SUPER::selectrow_array(@_);
+        $row = _fix_empty($row) if defined $row;
+        return $row;
+    }
+}
+
+sub selectrow_arrayref {
+    my $self = shift;
+    my $stmt = shift;
+    my $new_stmt = (ref $stmt) ? $stmt : adjust_statement($stmt);
+    unshift @_, $new_stmt;
+    my $ref = $self->SUPER::selectrow_arrayref(@_);
+    return undef if !defined $ref;
+
+    _fix_arrayref($ref);
+    return $ref;
+}
+
+sub selectrow_hashref {
+    my $self = shift;
+    my $stmt = shift;
+    my $new_stmt = (ref $stmt) ? $stmt : adjust_statement($stmt);
+    unshift @_, $new_stmt;
+    my $ref = $self->SUPER::selectrow_hashref(@_);
+    return undef if !defined $ref;
+
+    _fix_hashref($ref);
+    return $ref;
+}
+
+sub selectall_arrayref {
+    my $self = shift;
+    my $stmt = shift;
+    my $new_stmt = (ref $stmt) ? $stmt : adjust_statement($stmt);
+    unshift @_, $new_stmt;
+    my $ref = $self->SUPER::selectall_arrayref(@_);
+    return undef if !defined $ref;
+    
+    foreach my $row (@$ref) {
+       if (ref($row) eq 'ARRAY') {
+            _fix_arrayref($row);
+       }
+       elsif (ref($row) eq 'HASH') {
+            _fix_hashref($row);
+       }
+    }
+
+    return $ref;
+}
+
+sub selectall_hashref {
+    my $self = shift;
+    my $stmt = shift;
+    my $new_stmt = (ref $stmt) ? $stmt : adjust_statement($stmt);
+    unshift @_, $new_stmt;
+    my $rows = $self->SUPER::selectall_hashref(@_);
+    return undef if !defined $rows;
+    foreach my $row (values %$rows) { 
+          _fix_hashref($row);
+    }
+    return $rows;
+}
+
+sub selectcol_arrayref {
+    my $self = shift;
+    my $stmt = shift;
+    my $new_stmt = (ref $stmt) ? $stmt : adjust_statement($stmt);
+    unshift @_, $new_stmt;
+    my $ref = $self->SUPER::selectcol_arrayref(@_);
+    return undef if !defined $ref;
+    _fix_arrayref($ref);
+    return $ref;
+}
+
+sub prepare {
+    my $self = shift;
+    my $sql  = shift;
+    my $new_sql = adjust_statement($sql);
+    unshift @_, $new_sql;
+    return bless $self->SUPER::prepare(@_),
+                        'Bugzilla::DB::Oracle::st';
+}
+
+sub prepare_cached {
+    my $self = shift;
+    my $sql  = shift;
+    my $new_sql = adjust_statement($sql);
+    unshift @_, $new_sql;
+    return bless $self->SUPER::prepare_cached(@_),
+                      'Bugzilla::DB::Oracle::st';
+}
+
+sub quote_identifier {
+     my ($self,$id) = @_;
+     return $id;
+}
+
+#####################################################################
+# Protected "Real Database" Schema Information Methods
+#####################################################################
+
+sub bz_table_columns_real {
+    my ($self, $table) = @_;
+    $table = uc($table);
+    my @cols = $self->SUPER::bz_table_columns_real($table);
+    return map { lc($_) } @cols;
+}
+
+sub bz_table_list_real {
+    my ($self) = @_;
+    # Oracle only accepts the username in uppercase.
+    my $db_user = uc(Bugzilla->localconfig->{db_user});
+    my $table_sth = $self->table_info(undef, $db_user, undef, "TABLE");
+    my @tables = @{$self->selectcol_arrayref($table_sth, { Columns => [3] })};
+    # Oracle returns uppercase table names, but Bugzilla expects lowercase
+    # names.
+    @tables = map { lc($_) } @tables;
+    # Oracle has certain tables that start with DR$_IDX.
+    @tables = grep { $_ !~ /^dr\$/ } @tables;
+    return @tables;
+}
+
+#####################################################################
+# Custom Database Setup
+#####################################################################
+
+sub bz_setup_database {
+    my $self = shift;
+    
+    # Create a function that returns SYSDATE to emulate MySQL's "NOW()".
+    # Function NOW() is used widely in Bugzilla SQLs, but Oracle does not 
+    # have that function, So we have to create one ourself. 
+    $self->do("CREATE OR REPLACE FUNCTION NOW "
+              . " RETURN DATE IS BEGIN RETURN SYSDATE; END;");
+    # Create a WORLD_LEXER named BZ_LEX for multilingual fulltext search
+    my $lexer = $self->selectcol_arrayref(
+       "SELECT pre_name FROM CTXSYS.CTX_PREFERENCES WHERE pre_name = ? AND
+          pre_owner = ?",
+          undef,'BZ_LEX',uc(Bugzilla->localconfig->{db_user}));
+    if(!@$lexer) {
+       $self->do("BEGIN CTX_DDL.CREATE_PREFERENCE
+                        ('BZ_LEX', 'WORLD_LEXER'); END;");
+    }
+
+    $self->SUPER::bz_setup_database(@_);
+}
+
+package Bugzilla::DB::Oracle::st;
+use base qw(DBD::Oracle::st);
+ 
+sub fetchrow_arrayref {
+    my $self = shift;
+    my $ref = $self->SUPER::fetchrow_arrayref(@_);
+    return undef if !defined $ref;
+    Bugzilla::DB::Oracle::_fix_arrayref($ref);
+    return $ref;
+}
+
+sub fetchrow_array {
+    my $self = shift;
+    if ( wantarray ) {
+        my @row = $self->SUPER::fetchrow_array(@_);
+        Bugzilla::DB::Oracle::_fix_arrayref(\@row);
+        return @row;
+    } else {
+        my $row = $self->SUPER::fetchrow_array(@_);
+        $row = Bugzilla::DB::Oracle::_fix_empty($row) if defined $row;
+        return $row;
+    }
+}
+
+sub fetchrow_hashref {
+    my $self = shift;
+    my $ref = $self->SUPER::fetchrow_hashref(@_);
+    return undef if !defined $ref;
+    Bugzilla::DB::Oracle::_fix_hashref($ref);
+    return $ref;
+}
+
+sub fetchall_arrayref {
+    my $self = shift;
+    my $ref = $self->SUPER::fetchall_arrayref(@_);
+    return undef if !defined $ref;
+    foreach my $row (@$ref) {
+        if (ref($row) eq 'ARRAY') {
+             Bugzilla::DB::Oracle::_fix_arrayref($row);
+        }
+        elsif (ref($row) eq 'HASH') {
+            Bugzilla::DB::Oracle::_fix_hashref($row);
+        }
+    }
+    return $ref;
+}
+
+sub fetchall_hashref {
+    my $self = shift;
+    my $ref = $self->SUPER::fetchall_hashref(@_);
+    return undef if !defined $ref;
+    foreach my $row (values %$ref) {
+         Bugzilla::DB::Oracle::_fix_hashref($row);
+    }
+     return $ref;
+}
+    
+1;
diff --git a/Bugzilla/DB/Pg.pm b/Bugzilla/DB/Pg.pm
index 9f5b677575fe59a7bcbe142628b2efaafceb77f9..9675e1f26ca93cace8261aef551d4c1151acfca4 100644
--- a/Bugzilla/DB/Pg.pm
+++ b/Bugzilla/DB/Pg.pm
@@ -68,7 +68,9 @@ sub new {
     # creating tables.
     $dsn .= ";options='-c client_min_messages=warning'";
 
-    my $self = $class->db_new($dsn, $user, $pass);
+    my $attrs = { pg_enable_utf8 => Bugzilla->params->{'utf8'} };
+
+    my $self = $class->db_new($dsn, $user, $pass, $attrs);
 
     # all class local variables stored in DBI derived class needs to have
     # a prefix 'private_'. See DBI documentation.
@@ -156,62 +158,6 @@ sub sql_string_concat {
     return '(CAST(' . join(' AS text) || CAST(', @params) . ' AS text))';
 }
 
-sub bz_lock_tables {
-    my ($self, @tables) = @_;
-   
-    my $list = join(', ', @tables);
-    # Check first if there was no lock before
-    if ($self->{private_bz_tables_locked}) {
-        ThrowCodeError("already_locked", { current => $self->{private_bz_tables_locked},
-                                           new => $list });
-    } else {
-        my %read_tables;
-        my %write_tables;
-        foreach my $table (@tables) {
-            $table =~ /^([\d\w]+)([\s]+AS[\s]+[\d\w]+)?[\s]+(WRITE|READ)$/i;
-            my $table_name = $1;
-            if ($3 =~ /READ/i) {
-                if (!exists $read_tables{$table_name}) {
-                    $read_tables{$table_name} = undef;
-                }
-            }
-            else {
-                if (!exists $write_tables{$table_name}) {
-                    $write_tables{$table_name} = undef;
-                }
-            }
-        }
-    
-        # Begin Transaction
-        $self->bz_start_transaction();
-        
-        Bugzilla->dbh->do('LOCK TABLE ' . join(', ', keys %read_tables) .
-                          ' IN ROW SHARE MODE') if keys %read_tables;
-        Bugzilla->dbh->do('LOCK TABLE ' . join(', ', keys %write_tables) .
-                          ' IN ROW EXCLUSIVE MODE') if keys %write_tables;
-        $self->{private_bz_tables_locked} = $list;
-    }
-}
-
-sub bz_unlock_tables {
-    my ($self, $abort) = @_;
-    
-    # Check first if there was previous matching lock
-    if (!$self->{private_bz_tables_locked}) {
-        # Abort is allowed even without previous lock for error handling
-        return if $abort;
-        ThrowCodeError("no_matching_lock");
-    } else {
-        $self->{private_bz_tables_locked} = "";
-        # End transaction, tables will be unlocked automatically
-        if ($abort) {
-            $self->bz_rollback_transaction();
-        } else {
-            $self->bz_commit_transaction();
-        }
-    }
-}
-
 # Tell us whether or not a particular sequence exists in the DB.
 sub bz_sequence_exists {
     my ($self, $seq_name) = @_;
diff --git a/Bugzilla/DB/Schema.pm b/Bugzilla/DB/Schema.pm
index 1c6ee352e9d6875225f65a8b7b11b161c8a3458c..23f6e0ca4dcd349e59243503e977b7d57ec06c90 100644
--- a/Bugzilla/DB/Schema.pm
+++ b/Bugzilla/DB/Schema.pm
@@ -206,6 +206,7 @@ update this column in this table."
 =cut
 
 use constant SCHEMA_VERSION  => '2.00';
+use constant ADD_COLUMN      => 'ADD COLUMN';
 use constant ABSTRACT_SCHEMA => {
 
     # BUG-RELATED TABLES
@@ -218,7 +219,7 @@ use constant ABSTRACT_SCHEMA => {
             bug_id              => {TYPE => 'MEDIUMSERIAL', NOTNULL => 1,
                                     PRIMARYKEY => 1},
             assigned_to         => {TYPE => 'INT3', NOTNULL => 1},
-            bug_file_loc        => {TYPE => 'TEXT'},
+            bug_file_loc        => {TYPE => 'MEDIUMTEXT'},
             bug_severity        => {TYPE => 'varchar(64)', NOTNULL => 1},
             bug_status          => {TYPE => 'varchar(64)', NOTNULL => 1},
             creation_ts         => {TYPE => 'DATETIME'},
@@ -322,7 +323,7 @@ use constant ABSTRACT_SCHEMA => {
             bug_when        => {TYPE => 'DATETIME', NOTNULL => 1},
             work_time       => {TYPE => 'decimal(5,2)', NOTNULL => 1,
                                 DEFAULT => '0'},
-            thetext         => {TYPE => 'MEDIUMTEXT', NOTNULL => 1},
+            thetext         => {TYPE => 'LONGTEXT', NOTNULL => 1},
             isprivate       => {TYPE => 'BOOLEAN', NOTNULL => 1,
                                 DEFAULT => 'FALSE'},
             already_wrapped => {TYPE => 'BOOLEAN', NOTNULL => 1,
@@ -372,8 +373,9 @@ use constant ABSTRACT_SCHEMA => {
                              PRIMARYKEY => 1},
             bug_id       => {TYPE => 'INT3', NOTNULL => 1},
             creation_ts  => {TYPE => 'DATETIME', NOTNULL => 1},
-            description  => {TYPE => 'MEDIUMTEXT', NOTNULL => 1},
-            mimetype     => {TYPE => 'MEDIUMTEXT', NOTNULL => 1},
+            modification_time => {TYPE => 'DATETIME', NOTNULL => 1},
+            description  => {TYPE => 'TINYTEXT', NOTNULL => 1},
+            mimetype     => {TYPE => 'TINYTEXT', NOTNULL => 1},
             ispatch      => {TYPE => 'BOOLEAN'},
             filename     => {TYPE => 'varchar(100)', NOTNULL => 1},
             submitter_id => {TYPE => 'INT3', NOTNULL => 1,
@@ -389,6 +391,7 @@ use constant ABSTRACT_SCHEMA => {
         INDEXES => [
             attachments_bug_id_idx => ['bug_id'],
             attachments_creation_ts_idx => ['creation_ts'],
+            attachments_modification_time_idx => ['modification_time'],
             attachments_submitter_id_idx => ['submitter_id', 'bug_id'],
         ],
     },
@@ -467,7 +470,7 @@ use constant ABSTRACT_SCHEMA => {
             id               => {TYPE => 'SMALLSERIAL', NOTNULL => 1,
                                  PRIMARYKEY => 1},
             name             => {TYPE => 'varchar(50)', NOTNULL => 1},
-            description      => {TYPE => 'TEXT'},
+            description      => {TYPE => 'MEDIUMTEXT', NOTNULL => 1},
             cc_list          => {TYPE => 'varchar(200)'},
             target_type      => {TYPE => 'char(1)', NOTNULL => 1,
                                  DEFAULT => "'b'"},
@@ -525,7 +528,7 @@ use constant ABSTRACT_SCHEMA => {
                             DEFAULT => FIELD_TYPE_UNKNOWN},
             custom      => {TYPE => 'BOOLEAN', NOTNULL => 1,
                             DEFAULT => 'FALSE'},
-            description => {TYPE => 'MEDIUMTEXT', NOTNULL => 1},
+            description => {TYPE => 'TINYTEXT', NOTNULL => 1},
             mailhead    => {TYPE => 'BOOLEAN', NOTNULL => 1,
                             DEFAULT => 'FALSE'},
             sortkey     => {TYPE => 'INT2', NOTNULL => 1},
@@ -779,8 +782,8 @@ use constant ABSTRACT_SCHEMA => {
                                             COLUMN => 'userid',
                                             DELETE => 'CASCADE'}},
             name         => {TYPE => 'varchar(64)', NOTNULL => 1},
-            query        => {TYPE => 'MEDIUMTEXT', NOTNULL => 1},
-            query_type   => {TYPE => 'BOOLEAN', NOTNULL => 1},
+            query        => {TYPE => 'LONGTEXT', NOTNULL => 1},
+            query_type   => {TYPE => 'BOOLEAN', NOTNULL => 1, DEFAULT => 0},
         ],
         INDEXES => [
             namedqueries_userid_idx => {FIELDS => [qw(userid name)],
@@ -867,7 +870,7 @@ use constant ABSTRACT_SCHEMA => {
             id           => {TYPE => 'MEDIUMSERIAL', NOTNULL => 1,
                              PRIMARYKEY => 1},
             name         => {TYPE => 'varchar(255)', NOTNULL => 1},
-            description  => {TYPE => 'TEXT', NOTNULL => 1},
+            description  => {TYPE => 'MEDIUMTEXT', NOTNULL => 1},
             isbuggroup   => {TYPE => 'BOOLEAN', NOTNULL => 1},
             userregexp   => {TYPE => 'TINYTEXT', NOTNULL => 1,
                              DEFAULT => "''"},
@@ -1065,7 +1068,7 @@ use constant ABSTRACT_SCHEMA => {
             name        => {TYPE => 'varchar(64)', NOTNULL => 1},
             frequency   => {TYPE => 'INT2', NOTNULL => 1},
             last_viewed => {TYPE => 'DATETIME'},
-            query       => {TYPE => 'MEDIUMTEXT', NOTNULL => 1},
+            query       => {TYPE => 'LONGTEXT', NOTNULL => 1},
             is_public   => {TYPE => 'BOOLEAN', NOTNULL => 1,
                             DEFAULT => 'FALSE'},
         ],
@@ -1167,7 +1170,7 @@ use constant ABSTRACT_SCHEMA => {
             quipid   => {TYPE => 'MEDIUMSERIAL', NOTNULL => 1,
                          PRIMARYKEY => 1},
             userid   => {TYPE => 'INT3'},
-            quip     => {TYPE => 'TEXT', NOTNULL => 1},
+            quip     => {TYPE => 'MEDIUMTEXT', NOTNULL => 1},
             approved => {TYPE => 'BOOLEAN', NOTNULL => 1,
                          DEFAULT => 'TRUE'},
         ],
@@ -1530,9 +1533,9 @@ sub get_add_fk_sql {
     return ("ALTER TABLE $table ADD $fk_string");
 }
 
-sub _get_drop_fk_sql { 
-    my ($self, $table, $column, $old_def) = @_;
-    my $fk_name = $self->_get_fk_name($table, $column, $old_def->{REFERENCES});
+sub get_drop_fk_sql { 
+    my ($self, $table, $column, $references) = @_;
+    my $fk_name = $self->_get_fk_name($table, $column, $references);
 
     return ("ALTER TABLE $table DROP CONSTRAINT $fk_name");
 }
@@ -1748,7 +1751,7 @@ sub get_add_column_ddl {
 
     my ($self, $table, $column, $definition, $init_value) = @_;
     my @statements;
-    push(@statements, "ALTER TABLE $table ADD COLUMN $column " .
+    push(@statements, "ALTER TABLE $table ". $self->ADD_COLUMN ." $column " .
         $self->get_type_ddl($definition));
 
     # XXX - Note that although this works for MySQL, most databases will fail
@@ -2473,18 +2476,16 @@ An auto-increment L</INT4>
 
 =item C<TINYTEXT>
 
-Variable length string of characters up to 255 (2^8 - 1) characters wide 
-or more depending on the character set used.
+Variable length string of characters up to 255 (2^8 - 1) characters wide.
 
 =item C<MEDIUMTEXT>
 
-Variable length string of characters up to 16M (2^24 - 1) characters wide 
-or more depending on the character set used.
+Variable length string of characters up to 4000 characters wide.
+May be longer on some databases.
 
-=item C<TEXT>
+=item C<LONGTEXT>
 
-Variable length string of characters up to 64K (2^16 - 1) characters wide 
-or more depending on the character set used.
+Variable length string of characters up to 16M (2^24 - 1) characters wide.
 
 =item C<LONGBLOB>
 
diff --git a/Bugzilla/DB/Schema/CVS/Entries b/Bugzilla/DB/Schema/CVS/Entries
index 4d327d92e4ee29999473b16b67944da441dd958b..45e0281335c76a716cd8ef5a4059ba0fa17db15b 100644
--- a/Bugzilla/DB/Schema/CVS/Entries
+++ b/Bugzilla/DB/Schema/CVS/Entries
@@ -1,3 +1,4 @@
-/Mysql.pm/1.17/Sat Mar 10 18:21:19 2007//TBUGZILLA-3_1_2
-/Pg.pm/1.14/Sun Apr 15 01:35:56 2007//TBUGZILLA-3_1_2
+/Mysql.pm/1.19/Thu Dec 13 03:14:33 2007//TBUGZILLA-3_1_3
+/Oracle.pm/1.3/Thu Dec 13 03:14:33 2007//TBUGZILLA-3_1_3
+/Pg.pm/1.15/Tue Dec 11 02:26:49 2007//TBUGZILLA-3_1_3
 D
diff --git a/Bugzilla/DB/Schema/CVS/Tag b/Bugzilla/DB/Schema/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/Bugzilla/DB/Schema/CVS/Tag
+++ b/Bugzilla/DB/Schema/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/Bugzilla/DB/Schema/Mysql.pm b/Bugzilla/DB/Schema/Mysql.pm
index c867dc0fc3e0f0491725f4bca1747952ec6c129b..2f4bc42b2fb5f74d3923eee8fd0ba6ba12d8ce9d 100644
--- a/Bugzilla/DB/Schema/Mysql.pm
+++ b/Bugzilla/DB/Schema/Mysql.pm
@@ -81,6 +81,7 @@ use constant REVERSE_MAPPING => {
     SMALLINT  => 'INT2',
     MEDIUMINT => 'INT3',
     INTEGER   => 'INT4',
+
     # All the other types have the same name in their abstract version
     # as in their db-specific version, so no reverse mapping is needed.
 };
@@ -111,7 +112,7 @@ sub _initialize {
 
         TINYTEXT =>     'tinytext',
         MEDIUMTEXT =>   'mediumtext',
-        TEXT =>         'text',
+        LONGTEXT =>     'mediumtext',
 
         LONGBLOB =>     'longblob',
 
@@ -192,9 +193,9 @@ sub get_alter_column_ddl {
     return @statements;
 }
 
-sub _get_drop_fk_sql {
-    my ($self, $table, $column, $old_def) = @_;
-    my $fk_name = $self->_get_fk_name($table, $column, $old_def->{REFERENCES});
+sub get_drop_fk_sql {
+    my ($self, $table, $column, $references) = @_;
+    my $fk_name = $self->_get_fk_name($table, $column, $references);
     my @sql = ("ALTER TABLE $table DROP FOREIGN KEY $fk_name");
     my $dbh = Bugzilla->dbh;
 
diff --git a/Bugzilla/DB/Schema/Oracle.pm b/Bugzilla/DB/Schema/Oracle.pm
new file mode 100644
index 0000000000000000000000000000000000000000..8f0f880be240e9a4139261e0fd7a684c65bd6961
--- /dev/null
+++ b/Bugzilla/DB/Schema/Oracle.pm
@@ -0,0 +1,223 @@
+# -*- Mode: perl; indent-tabs-mode: nil -*-
+#
+# The contents of this file are subject to the Mozilla Public
+# License Version 1.1 (the "License"); you may not use this file
+# except in compliance with the License. You may obtain a copy of
+# the License at http://www.mozilla.org/MPL/
+#
+# Software distributed under the License is distributed on an "AS
+# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
+# implied. See the License for the specific language governing
+# rights and limitations under the License.
+#
+# The Original Code is the Bugzilla Bug Tracking System.
+#
+# The Initial Developer of the Original Code is Oracle Corporation.
+# Portions created by Oracle are Copyright (C) 2007 Oracle Corporation.
+# All Rights Reserved.
+#
+# Contributor(s): Lance Larsh <lance.larsh@oracle.com>
+#                 Xiaoou Wu <xiaoou.wu@oracle.com>
+#                 Max Kanat-Alexander <mkanat@bugzilla.org>
+
+package Bugzilla::DB::Schema::Oracle;
+
+###############################################################################
+#
+# DB::Schema implementation for Oracle
+#
+###############################################################################
+
+use strict;
+
+use base qw(Bugzilla::DB::Schema);
+use Carp qw(confess);
+use Digest::MD5  qw(md5_hex);
+use Bugzilla::Util;
+
+use constant ADD_COLUMN      => 'ADD';
+
+#------------------------------------------------------------------------------
+sub _initialize {
+
+    my $self = shift;
+
+    $self = $self->SUPER::_initialize(@_);
+
+    $self->{db_specific} = {
+
+        BOOLEAN =>      'integer',
+        FALSE =>        '0', 
+        TRUE =>         '1',
+
+        INT1 =>         'integer',
+        INT2 =>         'integer',
+        INT3 =>         'integer',
+        INT4 =>         'integer',
+
+        SMALLSERIAL  => 'integer',
+        MEDIUMSERIAL => 'integer',
+        INTSERIAL    => 'integer',
+
+        TINYTEXT   =>   'varchar(255)',
+        MEDIUMTEXT =>   'varchar(4000)',
+        LONGTEXT   =>   'clob',
+
+        LONGBLOB =>     'blob',
+
+        DATETIME =>     'date',
+
+    };
+
+    $self->_adjust_schema;
+
+    return $self;
+
+} #eosub--_initialize
+#--------------------------------------------------------------------
+
+sub get_table_ddl {
+    my $self = shift;
+    my $table = shift;
+    unshift @_, $table;
+    my @ddl = $self->SUPER::get_table_ddl(@_);
+
+    my @fields = @{ $self->{abstract_schema}{$table}{FIELDS} || [] };
+    while (@fields) {
+        my $field_name = shift @fields;
+        my $field_info = shift @fields;
+        # Create triggers to deal with empty string. 
+        if ( $field_info->{TYPE} =~ /varchar|TEXT/i 
+                && $field_info->{NOTNULL} ) {
+             push (@ddl, _get_notnull_trigger_ddl($table, $field_name));
+        }
+        # Create sequences and triggers to emulate SERIAL datatypes.
+        if ( $field_info->{TYPE} =~ /SERIAL/i ) {
+            push (@ddl, $self->_get_create_seq_ddl($table, $field_name));
+        }
+    }
+    return @ddl;
+
+} #eosub--get_table_ddl
+
+# Extend superclass method to create Oracle Text indexes if index type 
+# is FULLTEXT from schema. Returns a "create index" SQL statement.
+sub _get_create_index_ddl {
+
+    my ($self, $table_name, $index_name, $index_fields, $index_type) = @_;
+    $index_name = "idx_" . substr(md5_hex($index_name),0,20);
+    if ($index_type eq 'FULLTEXT') {
+        my $sql = "CREATE INDEX $index_name ON $table_name (" 
+                  . join(',',@$index_fields)
+                  . ") INDEXTYPE IS CTXSYS.CONTEXT "
+                  . " PARAMETERS('LEXER BZ_LEX SYNC(ON COMMIT)')" ;
+        return $sql;
+    }
+
+    return($self->SUPER::_get_create_index_ddl($table_name, $index_name, 
+                                               $index_fields, $index_type));
+
+} #eosub--_get_create_index_ddl
+
+# Oracle supports the use of FOREIGN KEY integrity constraints 
+# to define the referential integrity actions, including:
+# - Update and delete No Action (default)
+# - Delete CASCADE
+# - Delete SET NULL
+sub get_fk_ddl {
+    my ($self, $table, $column, $references) = @_;
+    return "" if !$references;
+
+    my $update    = $references->{UPDATE} || 'CASCADE';
+    my $delete    = $references->{DELETE};
+    my $to_table  = $references->{TABLE}  || confess "No table in reference";
+    my $to_column = $references->{COLUMN} || confess "No column in reference";
+    my $fk_name   = $self->_get_fk_name($table, $column, $references);
+
+    my $fk_string = "\n     CONSTRAINT $fk_name FOREIGN KEY ($column)\n"
+                    . "     REFERENCES $to_table($to_column)\n";
+   
+    $fk_string    = $fk_string . "     ON DELETE $delete" if $delete; 
+    
+    if ( $update =~ /CASCADE/i ){
+        my $tr_str = "CREATE OR REPLACE TRIGGER ${fk_name}_UC"
+                     . " AFTER  UPDATE  ON ". $table
+                     . " REFERENCING "
+                     . " NEW AS NEW "
+                     . " OLD AS OLD "
+                     . " FOR EACH ROW "
+                     . " BEGIN "
+                     . "     UPDATE $to_table"
+                     . "        SET $to_column = :NEW.$column"
+                     . "      WHERE $to_column = :OLD.$column;"
+                     . " END ${fk_name}_UC;";
+        my $dbh = Bugzilla->dbh; 
+        $dbh->do($tr_str);      
+    }
+
+    return $fk_string;
+}
+
+sub get_drop_fk_sql {
+    my $self = shift;
+    my ($table, $column, $references) = @_;
+    my $fk_name = $self->_get_fk_name(@_);
+    my @sql;
+    if (!$references->{UPDATE} || $references->{UPDATE} =~ /CASCADE/i) {
+        push(@sql, "DROP TRIGGER ${fk_name}_uc");
+    }
+    push(@sql, $self->SUPER::get_drop_fk_sql(@_));
+    return @sql;
+}
+
+sub _get_fk_name {
+    my ($self, $table, $column, $references) = @_;
+    my $to_table  = $references->{TABLE};
+    my $to_column = $references->{COLUMN};
+    my $fk_name   = "${table}_${column}_${to_table}_${to_column}";
+    $fk_name      = "fk_" . substr(md5_hex($fk_name),0,20);
+    
+    return $fk_name;
+}
+
+sub _get_notnull_trigger_ddl {
+      my ($table, $column) = @_;
+
+      my $notnull_sql = "CREATE OR REPLACE TRIGGER "
+                        . " ${table}_${column}"
+                        . " BEFORE INSERT OR UPDATE ON ". $table
+                        . " FOR EACH ROW"
+                        . " BEGIN "
+                        . " IF :NEW.". $column ." IS NULL THEN  "
+                        . " SELECT '" . Bugzilla::DB::Oracle->EMPTY_STRING
+                        . "' INTO :NEW.". $column ." FROM DUAL; "
+                        . " END IF; "
+                        . " END ".$table.";";
+     return $notnull_sql;
+}
+
+sub _get_create_seq_ddl {
+     my ($self, $table, $column, $start_with) = @_;
+     $start_with ||= 1;
+     my @ddl;
+     my $seq_name = "${table}_${column}_SEQ";
+     my $seq_sql = "CREATE SEQUENCE $seq_name "
+                   . " INCREMENT BY 1 "
+                   . " START WITH $start_with "
+                   . " NOMAXVALUE "
+                   . " NOCYCLE "
+                   . " NOCACHE";
+     my $serial_sql = "CREATE OR REPLACE TRIGGER ${table}_${column}_TR "
+                    . " BEFORE INSERT ON ${table} "
+                    . " FOR EACH ROW "
+                    . " BEGIN "
+                    . "   SELECT ${seq_name}.NEXTVAL "
+                    . "   INTO :NEW.${column} FROM DUAL; "
+                    . " END;";
+    push (@ddl, $seq_sql);
+    push (@ddl, $serial_sql);
+
+    return @ddl;
+}
+
+1;
diff --git a/Bugzilla/DB/Schema/Pg.pm b/Bugzilla/DB/Schema/Pg.pm
index 7a951e2dbf30f524cb85fc020d2acfc8337e87e2..070c0b03ee7ea2ed61abcd2944feb4006f07bdaa 100644
--- a/Bugzilla/DB/Schema/Pg.pm
+++ b/Bugzilla/DB/Schema/Pg.pm
@@ -75,7 +75,7 @@ sub _initialize {
 
         TINYTEXT =>     'varchar(255)',
         MEDIUMTEXT =>   'text',
-        TEXT =>         'text',
+        LONGTEXT =>     'text',
 
         LONGBLOB =>     'bytea',
 
diff --git a/Bugzilla/Error.pm b/Bugzilla/Error.pm
index 18f9aae5449e8251ed6a4fc4d7cca92e0a24323c..3e5688e2a49075c774d8b6441ab7800c9e491b29 100644
--- a/Bugzilla/Error.pm
+++ b/Bugzilla/Error.pm
@@ -46,16 +46,15 @@ sub _in_eval {
 
 sub _throw_error {
     my ($name, $error, $vars) = @_;
-
+    my $dbh = Bugzilla->dbh;
     $vars ||= {};
 
     $vars->{error} = $error;
 
-    # Make sure any locked tables are unlocked
-    # and the transaction is rolled back (if supported)
-    # If we are within an eval(), do not unlock tables as we are
+    # Make sure any transaction is rolled back (if supported).
+    # If we are within an eval(), do not roll back transactions as we are
     # eval'uating some test on purpose.
-    Bugzilla->dbh->bz_unlock_tables(UNLOCK_ABORT) unless _in_eval();
+    $dbh->bz_rollback_transaction() if ($dbh->bz_in_transaction() && !_in_eval());
 
     my $datadir = bz_locations()->{'datadir'};
     # If a writable $datadir/errorlog exists, log error details there.
@@ -124,10 +123,10 @@ sub ThrowCodeError {
 
 sub ThrowTemplateError {
     my ($template_err) = @_;
+    my $dbh = Bugzilla->dbh;
 
-    # Make sure any locked tables are unlocked
-    # and the transaction is rolled back (if supported)
-    Bugzilla->dbh->bz_unlock_tables(UNLOCK_ABORT);
+    # Make sure the transaction is rolled back (if supported).
+    $dbh->bz_rollback_transaction() if $dbh->bz_in_transaction();
 
     my $vars = {};
     if (Bugzilla->error_mode == ERROR_MODE_DIE) {
diff --git a/Bugzilla/Field.pm b/Bugzilla/Field.pm
index 34a1818de975cb81256e389d78a7d8c1f5797e44..5ad5e51d3fad6c7a63c147258c8d6d6cabab5a52 100644
--- a/Bugzilla/Field.pm
+++ b/Bugzilla/Field.pm
@@ -127,6 +127,7 @@ use constant SQL_DEFINITIONS => {
     FIELD_TYPE_SINGLE_SELECT, { TYPE => 'varchar(64)', NOTNULL => 1,
                                 DEFAULT => "'---'" },
     FIELD_TYPE_TEXTAREA,      { TYPE => 'MEDIUMTEXT' },
+    FIELD_TYPE_DATETIME,      { TYPE => 'DATETIME'   },
 };
 
 # Field definitions for the fields that ship with Bugzilla.
@@ -255,7 +256,7 @@ sub _check_type {
     my $saved_type = $type;
     # The constant here should be updated every time a new,
     # higher field type is added.
-    (detaint_natural($type) && $type <= FIELD_TYPE_TEXTAREA)
+    (detaint_natural($type) && $type <= FIELD_TYPE_DATETIME)
       || ThrowCodeError('invalid_customfield_type', { type => $saved_type });
     return $type;
 }
diff --git a/Bugzilla/Flag.pm b/Bugzilla/Flag.pm
index a6914a6618410ba1d192d485a110adad906216d1..9dc6a2ef5fc9e8a65a83b6416311e6d6f0020e2f 100644
--- a/Bugzilla/Flag.pm
+++ b/Bugzilla/Flag.pm
@@ -295,11 +295,12 @@ sub validate {
         my $not = ($attach_id) ? "" : "NOT";
 
         my $invalid_data =
-            $dbh->selectrow_array("SELECT 1 FROM flags
-                                   WHERE id IN (" . join(',', @flag_ids) . ")
-                                   AND ($field != ? OR attach_id IS $not NULL) " .
-                                   $dbh->sql_limit(1),
-                                   undef, $field_id);
+            $dbh->selectrow_array(
+                      "SELECT 1 FROM flags
+                        WHERE " 
+                       . $dbh->sql_in('id', \@flag_ids) 
+                       . " AND ($field != ? OR attach_id IS $not NULL) "
+                       . $dbh->sql_limit(1), undef, $field_id);
 
         if ($invalid_data) {
             ThrowCodeError('invalid_flag_association',
@@ -502,7 +503,7 @@ sub snapshot {
 
 =over
 
-=item C<process($bug, $attachment, $timestamp, $cgi)>
+=item C<process($bug, $attachment, $timestamp, $cgi, $hr_vars)>
 
 Processes changes to flags.
 
@@ -516,7 +517,7 @@ object used to obtain the flag fields that the user submitted.
 =cut
 
 sub process {
-    my ($bug, $attachment, $timestamp, $cgi) = @_;
+    my ($bug, $attachment, $timestamp, $cgi, $hr_vars) = @_;
     my $dbh = Bugzilla->dbh;
 
     # Make sure the bug (and attachment, if given) exists and is accessible
@@ -540,7 +541,7 @@ sub process {
     }
 
     # Create new flags and update existing flags.
-    my $new_flags = FormToNewFlags($bug, $attachment, $cgi);
+    my $new_flags = FormToNewFlags($bug, $attachment, $cgi, $hr_vars);
     foreach my $flag (@$new_flags) { create($flag, $bug, $attachment, $timestamp) }
     modify($bug, $attachment, $cgi, $timestamp);
 
@@ -562,7 +563,10 @@ sub process {
     my $flags = Bugzilla::Flag->new_from_list($flag_ids);
     foreach my $flag (@$flags) {
         my $is_retargetted = retarget($flag, $bug);
-        clear($flag, $bug, $flag->attachment) unless $is_retargetted;
+        unless ($is_retargetted) {
+            clear($flag, $bug, $flag->attachment);
+            $hr_vars->{'message'} = 'flag_cleared';
+        }
     }
 
     $flag_ids = $dbh->selectcol_arrayref(
@@ -939,7 +943,7 @@ sub clear {
 
 =over
 
-=item C<FormToNewFlags($bug, $attachment, $cgi)>
+=item C<FormToNewFlags($bug, $attachment, $cgi, $hr_vars)>
 
 Checks whether or not there are new flags to create and returns an
 array of flag objects. This array is then passed to Flag::create().
@@ -949,7 +953,7 @@ array of flag objects. This array is then passed to Flag::create().
 =cut
 
 sub FormToNewFlags {
-    my ($bug, $attachment, $cgi) = @_;
+    my ($bug, $attachment, $cgi, $hr_vars) = @_;
     my $dbh = Bugzilla->dbh;
     my $setter = Bugzilla->user;
     
@@ -959,17 +963,28 @@ sub FormToNewFlags {
 
     return () unless scalar(@type_ids);
 
-    # Get a list of active flag types available for this target.
+    # Get a list of active flag types available for this product/component.
     my $flag_types = Bugzilla::FlagType::match(
-        { 'target_type'  => $attachment ? 'attachment' : 'bug',
-          'product_id'   => $bug->{'product_id'},
+        { 'product_id'   => $bug->{'product_id'},
           'component_id' => $bug->{'component_id'},
           'is_active'    => 1 });
 
+    foreach my $type_id (@type_ids) {
+        # Checks if there are unexpected flags for the product/component.
+        if (!scalar(grep { $_->id == $type_id } @$flag_types)) {
+            $hr_vars->{'message'} = 'unexpected_flag_types';
+            last;
+        }
+    }
+
     my @flags;
     foreach my $flag_type (@$flag_types) {
         my $type_id = $flag_type->id;
 
+        # Bug flags are only valid for bugs, and attachment flags are
+        # only valid for attachments. So don't mix both.
+        next unless ($flag_type->target_type eq 'bug' xor $attachment);
+
         # We are only interested in flags the user tries to create.
         next unless scalar(grep { $_ == $type_id } @type_ids);
 
diff --git a/Bugzilla/Hook.pm b/Bugzilla/Hook.pm
index 6b710f8b5c0caa0385b938c81bdf71d479628ccd..7c47b3f3fb723114c48d45644d6ae861774a5e15 100644
--- a/Bugzilla/Hook.pm
+++ b/Bugzilla/Hook.pm
@@ -41,6 +41,8 @@ sub process {
         # If there's malicious data here, we have much bigger issues to 
         # worry about, so we can safely detaint them:
         trick_taint($extension);
+        # Skip CVS directories and any hidden files/dirs.
+        next if $extension =~ m{/CVS$} || $extension =~ m{/\.[^/]+$};
         next if -e "$extension/disabled";
         if (-e $extension.'/code/'.$name.'.pl') {
             Bugzilla->hook_args($args);
@@ -49,9 +51,32 @@ sub process {
             do($extension.'/code/'.$name.'.pl');
             ThrowCodeError('extension_invalid', 
                 { errstr => $@, name => $name, extension => $extension }) if $@;
+            # Flush stored data.
+            Bugzilla->hook_args({});
         }
     }
-    
+}
+
+sub enabled_plugins {
+    my $extdir = bz_locations()->{'extensionsdir'};
+    my @extensions = glob("$extdir/*");
+    my %enabled;
+    foreach my $extension (@extensions) {
+        trick_taint($extension);
+        my $extname = $extension;
+        $extname =~ s{^\Q$extdir\E/}{};
+        next if $extname eq 'CVS' || $extname =~ /^\./;
+        next if -e "$extension/disabled";
+        # Allow extensions to load their own libraries.
+        local @INC = ("$extension/lib", @INC);
+        $enabled{$extname} = do("$extension/version.pl");
+        ThrowCodeError('extension_invalid',
+                { errstr => $@, name => 'version',
+                  extension => $extension }) if $@;
+
+    }
+
+    return \%enabled;
 }
 
 1;
@@ -60,7 +85,7 @@ __END__
 
 =head1 NAME
 
-Bugzilla::Hook - Extendible extension hooks for Bugzilla code
+Bugzilla::Hook - Extendable extension hooks for Bugzilla code
 
 =head1 SYNOPSIS
 
@@ -76,6 +101,10 @@ hooks. When a piece of standard Bugzilla code wants to allow an extension
 to perform additional functions, it uses Bugzilla::Hook's L</process>
 subroutine to invoke any extension code if installed. 
 
+There is a sample extension in F<extensions/example/> that demonstrates
+most of the things described in this document, as well as many of the
+hooks available.
+
 =head2 How Hooks Work
 
 When a hook named C<HOOK_NAME> is run, Bugzilla will attempt to invoke any 
@@ -94,6 +123,12 @@ These params are accessible through L<Bugzilla/hook_args>.
 That returns a hashref. Very frequently, if you want your
 hook to do anything, you have to modify these variables.
 
+=head2 Versioning Extensions
+
+Every extension must have a file in its root called F<version.pl>.
+This file should return a version number when called with C<do>.
+This represents the current version of this extension.
+
 =head1 SUBROUTINES
 
 =over
@@ -191,3 +226,36 @@ definitions. F<checksetup.pl> will automatically add these tables to the
 database when run.
 
 =back
+
+=head2 webservice
+
+This hook allows you to add your own modules to the WebService. (See
+L<Bugzilla::WebService>.)
+
+Params:
+
+=over
+
+=item C<dispatch>
+
+A hashref that you can specify the names of your modules and what Perl
+module handles the functions for that module. (This is actually sent to 
+L<SOAP::Lite/dispatch_with>. You can see how that's used in F<xmlrpc.cgi>.)
+
+The Perl module name must start with C<extensions::yourextension::lib::>
+(replace C<yourextension> with the name of your extension). The C<package>
+declaration inside that module must also start with 
+C<extensions::yourextension::lib::> in that module's code.
+
+Example:
+
+  $dispatch->{Example} = "extensions::example::lib::Example";
+
+And then you'd have a module F<extensions/example/lib/Example.pm>
+
+It's recommended that all the keys you put in C<dispatch> start with the
+name of your extension, so that you don't conflict with the standard Bugzilla
+WebService functions (and so that you also don't conflict with other
+plugins).
+
+=back
diff --git a/Bugzilla/Install.pm b/Bugzilla/Install.pm
index f251e4d1c75740f634b628acf43a5c3366ebca05..c70f8a8bc47fdead2a989cdb00f1b7a76ec671df 100644
--- a/Bugzilla/Install.pm
+++ b/Bugzilla/Install.pm
@@ -307,27 +307,9 @@ sub create_admin {
         chomp($full_name);
     }
 
-    while (!$password) {
-        # trap a few interrupts so we can fix the echo if we get aborted.
-        local $SIG{HUP}  = \&_create_admin_exit;
-        local $SIG{INT}  = \&_create_admin_exit;
-        local $SIG{QUIT} = \&_create_admin_exit;
-        local $SIG{TERM} = \&_create_admin_exit;
-
-        system("stty","-echo") unless ON_WINDOWS;  # disable input echoing
-
-        print get_text('install_admin_get_password') . ' ';
-        $password = <STDIN>;
-        chomp $password;
-        print "\n", get_text('install_admin_get_password2') . ' ';
-        my $pass2 = <STDIN>;
-        chomp $pass2;
-        eval { validate_password($password, $pass2); };
-        if ($@) {
-            print "\n$@\n";
-            undef $password;
-        }
-        system("stty","echo") unless ON_WINDOWS;
+    if (!$password) {
+        $password = _prompt_for_password(
+            get_text('install_admin_get_password'));
     }
 
     my $admin = Bugzilla::User->create({ login_name    => $login, 
@@ -370,13 +352,52 @@ sub make_admin {
     print "\n", get_text('install_admin_created', { user => $user }), "\n";
 }
 
-# This is just in case we get interrupted while getting the admin's password.
-sub _create_admin_exit {
+sub _prompt_for_password {
+    my $prompt = shift;
+
+    my $password;
+    while (!$password) {
+        # trap a few interrupts so we can fix the echo if we get aborted.
+        local $SIG{HUP}  = \&_password_prompt_exit;
+        local $SIG{INT}  = \&_password_prompt_exit;
+        local $SIG{QUIT} = \&_password_prompt_exit;
+        local $SIG{TERM} = \&_password_prompt_exit;
+
+        system("stty","-echo") unless ON_WINDOWS;  # disable input echoing
+
+        print $prompt, ' ';
+        $password = <STDIN>;
+        chomp $password;
+        print "\n", get_text('install_confirm_password'), ' ';
+        my $pass2 = <STDIN>;
+        chomp $pass2;
+        eval { validate_password($password, $pass2); };
+        if ($@) {
+            print "\n$@\n";
+            undef $password;
+        }
+        system("stty","echo") unless ON_WINDOWS;
+    }
+    return $password;
+}
+
+# This is just in case we get interrupted while getting a password.
+sub _password_prompt_exit {
     # re-enable input echoing
     system("stty","echo") unless ON_WINDOWS;
     exit 1;
 }
 
+sub reset_password {
+    my $login = shift;
+    my $user = Bugzilla::User->check($login);
+    my $prompt = "\n" . get_text('install_reset_password', { user => $user });
+    my $password = _prompt_for_password($prompt);
+    $user->set_password($password);
+    $user->update();
+    print "\n", get_text('install_reset_password_done'), "\n";
+}
+
 1;
 
 __END__
diff --git a/Bugzilla/Install/CPAN.pm b/Bugzilla/Install/CPAN.pm
new file mode 100644
index 0000000000000000000000000000000000000000..b37e6d40de25bfefc1ed1920cf913b53d67b8e19
--- /dev/null
+++ b/Bugzilla/Install/CPAN.pm
@@ -0,0 +1,251 @@
+# -*- Mode: perl; indent-tabs-mode: nil -*-
+#
+# The contents of this file are subject to the Mozilla Public
+# License Version 1.1 (the "License"); you may not use this file
+# except in compliance with the License. You may obtain a copy of
+# the License at http://www.mozilla.org/MPL/
+#
+# Software distributed under the License is distributed on an "AS
+# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
+# implied. See the License for the specific language governing
+# rights and limitations under the License.
+#
+# The Original Code is the Bugzilla Bug Tracking System.
+#
+# The Initial Developer of the Original Code is Everything Solved, Inc.
+# Portions created by Everything Solved are Copyright (C) 2007
+# Everything Solved, Inc. All Rights Reserved.
+#
+# Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
+
+package Bugzilla::Install::CPAN;
+use strict;
+use base qw(Exporter);
+our @EXPORT = qw(set_cpan_config install_module BZ_LIB);
+
+use Bugzilla::Constants;
+use Bugzilla::Install::Util qw(bin_loc install_string);
+
+use CPAN;
+use Cwd qw(abs_path);
+use File::Path qw(rmtree);
+use List::Util qw(shuffle);
+
+# We need the absolute path of ext_libpath, because CPAN chdirs around
+# and so we can't use a relative directory.
+#
+# We need it often enough (and at compile time, in install-module.pl) so 
+# we make it a constant.
+use constant BZ_LIB => abs_path(bz_locations()->{ext_libpath});
+
+# CPAN requires nearly all of its parameters to be set, or it will start
+# asking questions to the user. We want to avoid that, so we have
+# defaults here for most of the required parameters we know about, in case
+# any of them aren't set. The rest are handled by set_cpan_defaults().
+use constant CPAN_DEFAULTS => {
+    auto_commit => 0,
+    # We always force builds, so there's no reason to cache them.
+    build_cache => 0,
+    cache_metadata => 1,
+    index_expire => 1,
+    scan_cache => 'atstart',
+
+    inhibit_startup_message => 1,
+    mbuild_install_build_command => './Build',
+
+    curl => bin_loc('curl'),
+    gzip => bin_loc('gzip'),
+    links => bin_loc('links'),
+    lynx => bin_loc('lynx'),
+    make => bin_loc('make'),
+    pager => bin_loc('less'),
+    tar => bin_loc('tar'),
+    unzip => bin_loc('unzip'),
+    wget => bin_loc('wget'),
+
+    urllist => [shuffle qw(
+        http://cpan.pair.com/
+        http://mirror.hiwaay.net/CPAN/
+        ftp://ftp.dc.aleron.net/pub/CPAN/
+        http://perl.secsup.org/
+        http://mirrors.kernel.org/cpan/)],
+};
+
+sub install_module {
+    my ($name, $notest) = @_;
+    my $bzlib = BZ_LIB;
+
+    # Certain modules require special stuff in order to not prompt us.
+    my $original_makepl = $CPAN::Config->{makepl_arg};
+    # This one's a regex in case we're doing Template::Plugin::GD and it
+    # pulls in Template-Toolkit as a dependency.
+    if ($name =~ /^Template/) {
+        $CPAN::Config->{makepl_arg} .= " TT_ACCEPT=y TT_EXTRAS=n";
+    }
+    elsif ($name eq 'XML::Twig') {
+        $CPAN::Config->{makepl_arg} = "-n $original_makepl";
+    }
+    elsif ($name eq 'Net::LDAP') {
+        $CPAN::Config->{makepl_arg} .= " --skipdeps";
+    }
+    elsif ($name eq 'SOAP::Lite') {
+        $CPAN::Config->{makepl_arg} .= " --noprompt";
+    }
+
+    my $module = CPAN::Shell->expand('Module', $name);
+    print install_string('install_module', 
+              { module => $name, version => $module->cpan_version }) . "\n";
+    if ($notest) {
+        CPAN::Shell->notest('install', $name);
+    }
+    else {
+        CPAN::Shell->force('install', $name);
+    }
+
+    # If it installed any binaries in the Bugzilla directory, delete them.
+    if (-d "$bzlib/bin") {
+        File::Path::rmtree("$bzlib/bin");
+    }
+
+    $CPAN::Config->{makepl_arg} = $original_makepl;
+}
+
+sub set_cpan_config {
+    my $do_global = shift;
+    my $bzlib = BZ_LIB;
+
+    # We set defaults before we do anything, otherwise CPAN will
+    # start asking us questions as soon as we load its configuration.
+    eval { require CPAN::Config; };
+    _set_cpan_defaults();
+
+    # Calling a senseless autoload that does nothing makes us
+    # automatically load any existing configuration.
+    # We want to avoid the "invalid command" message.
+    open(my $saveout, ">&STDOUT");
+    open(STDOUT, '>/dev/null');
+    eval { CPAN->ignore_this_error_message_from_bugzilla; };
+    undef $@;
+    close(STDOUT);
+    open(STDOUT, '>&', $saveout);
+
+    my $dir = $CPAN::Config->{cpan_home};
+    if (!defined $dir || !-w $dir) {
+        # If we can't use the standard CPAN build dir, we try to make one.
+        $dir = "$ENV{HOME}/.cpan";
+        mkdir $dir;
+
+        # If we can't make one, we finally try to use the Bugzilla directory.
+        if (!-w $dir) {
+            print "WARNING: Using the Bugzilla directory as the CPAN home.\n";
+            $dir = "$bzlib/.cpan";
+        }
+    }
+    $CPAN::Config->{cpan_home} = $dir;
+    $CPAN::Config->{build_dir} = "$dir/build";
+    # We always force builds, so there's no reason to cache them.
+    $CPAN::Config->{keep_source_where} = "$dir/source";
+    # This is set both here and in defaults so that it's always true.
+    $CPAN::Config->{inhibit_startup_message} = 1;
+    # Automatically install dependencies.
+    $CPAN::Config->{prerequisites_policy} = 'follow';
+    
+    # Unless specified, we install the modules into the Bugzilla directory.
+    if (!$do_global) {
+        $CPAN::Config->{makepl_arg} .= " LIB=\"$bzlib\""
+            . " INSTALLMAN1DIR=\"$bzlib/man/man1\""
+            . " INSTALLMAN3DIR=\"$bzlib/man/man3\""
+            # The bindirs are here because otherwise we'll try to write to
+            # the system binary dirs, and that will cause CPAN to die.
+            . " INSTALLBIN=\"$bzlib/bin\""
+            . " INSTALLSCRIPT=\"$bzlib/bin\""
+            # INSTALLDIRS=perl is set because that makes sure that MakeMaker
+            # always uses the directories we've specified here.
+            . " INSTALLDIRS=perl";
+        $CPAN::Config->{mbuild_arg} = "--install_base \"$bzlib\"";
+
+        # When we're not root, sometimes newer versions of CPAN will
+        # try to read/modify things that belong to root, unless we set
+        # certain config variables.
+        $CPAN::Config->{histfile} = "$dir/histfile";
+        $CPAN::Config->{use_sqlite} = 0;
+        $CPAN::Config->{prefs_dir} = "$dir/prefs";
+
+        # Unless we actually set PERL5LIB, some modules can't install
+        # themselves, like DBD::mysql, DBD::Pg, and XML::Twig.
+        my $current_lib = $ENV{PERL5LIB} ? $ENV{PERL5LIB} . ':' : '';
+        $ENV{PERL5LIB} = $current_lib . $bzlib;
+    }
+}
+
+sub _set_cpan_defaults {
+    # If CPAN hasn't been configured, we try to use some reasonable defaults.
+    foreach my $key (keys %{CPAN_DEFAULTS()}) {
+        $CPAN::Config->{$key} = CPAN_DEFAULTS->{$key}
+            if !defined $CPAN::Config->{$key};
+    }
+
+    my @missing;
+    # In newer CPANs, this is in HandleConfig. In older CPANs, it's in
+    # Config.
+    if (eval { require CPAN::HandleConfig }) {
+        @missing = CPAN::HandleConfig->missing_config_data;
+    }
+    else {
+        @missing = CPAN::Config->missing_config_data;
+    }
+
+    foreach my $key (@missing) {
+        $CPAN::Config->{$key} = '';
+    }
+}
+
+1;
+
+__END__
+
+=head1 NAME
+
+Bugzilla::Install::CPAN - Routines to install Perl modules from CPAN.
+
+=head1 SYNOPSIS
+
+ use Bugzilla::Install::CPAN;
+
+ set_cpan_config();
+ install_module('Module::Name', 1);
+
+=head1 DESCRIPTION
+
+This is primarily used by L<install-module> to do the "hard work" of
+installing CPAN modules.
+
+=head1 SUBROUTINES
+
+=over
+
+=item C<set_cpan_config>
+
+Sets up the configuration of CPAN for this session. Must be called
+before L</install_module>. Takes one boolean parameter. If true,
+L</install_module> will install modules globally instead of to the
+local F<lib/> directory. On most systems, you have to be root to do that.
+
+=item C<install_module>
+
+Installs a module from CPAN. Takes two arguments:
+
+=over
+
+=item C<$name> - The name of the module, just like you'd pass to the
+C<install> command in the CPAN shell.
+
+=item C<$notest> - If true, we skip running tests on this module. This
+can greatly speed up the installation time.
+
+=back
+
+Note that calling this function prints a B<lot> of information to
+STDOUT and STDERR.
+
+=back
diff --git a/Bugzilla/Install/CVS/Entries b/Bugzilla/Install/CVS/Entries
index 19b38b22b5e5b8041afdae0e59fabb3d420e71c4..6ec3e7465274f73ee83fab2513427fd6578bf69e 100644
--- a/Bugzilla/Install/CVS/Entries
+++ b/Bugzilla/Install/CVS/Entries
@@ -1,6 +1,7 @@
-/DB.pm/1.41/Tue Aug 21 20:47:53 2007//TBUGZILLA-3_1_2
-/Filesystem.pm/1.22/Fri Aug 17 21:11:49 2007//TBUGZILLA-3_1_2
-/Localconfig.pm/1.9/Tue Jul 24 18:22:01 2007//TBUGZILLA-3_1_2
-/Requirements.pm/1.37/Tue Aug  7 19:12:55 2007//TBUGZILLA-3_1_2
-/Util.pm/1.9/Wed Aug 22 06:38:11 2007//TBUGZILLA-3_1_2
+/CPAN.pm/1.2/Sun Dec 23 05:43:44 2007//TBUGZILLA-3_1_3
+/DB.pm/1.48/Mon Jan 28 00:54:58 2008//TBUGZILLA-3_1_3
+/Filesystem.pm/1.27/Thu Jan 17 23:15:24 2008//TBUGZILLA-3_1_3
+/Localconfig.pm/1.12/Thu Jan 17 23:15:24 2008//TBUGZILLA-3_1_3
+/Requirements.pm/1.41/Wed Dec 19 00:41:59 2007//TBUGZILLA-3_1_3
+/Util.pm/1.11/Thu Dec 13 03:14:34 2007//TBUGZILLA-3_1_3
 D
diff --git a/Bugzilla/Install/CVS/Tag b/Bugzilla/Install/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/Bugzilla/Install/CVS/Tag
+++ b/Bugzilla/Install/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/Bugzilla/Install/DB.pm b/Bugzilla/Install/DB.pm
index 327487cd9549a1a22b83996d7122550de88148fc..6b8a6fdc6e5815e630a1113199ccb5c063930114 100644
--- a/Bugzilla/Install/DB.pm
+++ b/Bugzilla/Install/DB.pm
@@ -24,7 +24,7 @@ use strict;
 
 use Bugzilla::Constants;
 use Bugzilla::Hook;
-use Bugzilla::Install::Util qw(indicate_progress);
+use Bugzilla::Install::Util qw(indicate_progress install_string);
 use Bugzilla::Util;
 use Bugzilla::Series;
 
@@ -483,7 +483,7 @@ sub update_table_definitions {
     $dbh->bz_add_column('setting', 'subclass', {TYPE => 'varchar(32)'});
 
     $dbh->bz_alter_column('longdescs', 'thetext', 
-        { TYPE => 'MEDIUMTEXT', NOTNULL => 1 }, '');
+        {TYPE => 'LONGTEXT', NOTNULL => 1}, '');
 
     # 2006-10-20 LpSolit@gmail.com - Bug 189627
     $dbh->bz_add_column('group_control_map', 'editcomponents',
@@ -514,6 +514,16 @@ sub update_table_definitions {
 
     # 2007-08-21 wurblzap@gmail.com - Bug 365378
     _make_lang_setting_dynamic();
+    
+    # 2007-11-29 xiaoou.wu@oracle.com - Bug 153129
+    _change_text_types();
+
+    # 2007-09-09 LpSolit@gmail.com - Bug 99215
+    _fix_attachment_modification_date();
+
+    # This had the wrong definition in DB::Schema.
+    $dbh->bz_alter_column('namedqueries', 'query_type',
+                          {TYPE => 'BOOLEAN', NOTNULL => 1, DEFAULT => 0});
 
     ################################################################
     # New --TABLE-- changes should go *** A B O V E *** this point #
@@ -659,8 +669,9 @@ sub _populate_longdescs {
               " for each 50.\n\n";
         local $| = 1;
 
-        $dbh->bz_lock_tables('bugs write', 'longdescs write', 'profiles write',
-                             'bz_schema WRITE');
+        # On MySQL, longdescs doesn't benefit from transactions, but this
+        # doesn't hurt.
+        $dbh->bz_start_transaction();
 
         $dbh->do('DELETE FROM longdescs');
 
@@ -722,7 +733,7 @@ sub _populate_longdescs {
 
         print "\n\n";
         $dbh->bz_drop_column('bugs', 'long_desc');
-        $dbh->bz_unlock_tables();
+        $dbh->bz_commit_transaction();
     } # main if
 }
 
@@ -740,8 +751,7 @@ sub _update_bugs_activity_field_to_fieldid {
                            [qw(fieldid)]);
         print "Populating new bugs_activity.fieldid field...\n";
 
-        $dbh->bz_lock_tables('bugs_activity WRITE', 'fielddefs WRITE');
-
+        $dbh->bz_start_transaction();
 
         my $ids = $dbh->selectall_arrayref(
             'SELECT DISTINCT fielddefs.id, bugs_activity.field
@@ -760,7 +770,7 @@ sub _update_bugs_activity_field_to_fieldid {
             $dbh->do("UPDATE bugs_activity SET fieldid = ? WHERE field = ?",
                      undef, $id, $field);
         }
-        $dbh->bz_unlock_tables();
+        $dbh->bz_commit_transaction();
 
         $dbh->bz_drop_column('bugs_activity', 'field');
     }
@@ -2898,6 +2908,91 @@ sub _make_lang_setting_dynamic {
     }
 }
 
+sub _fix_attachment_modification_date {
+    my $dbh = Bugzilla->dbh;
+    if (!$dbh->bz_column_info('attachments', 'modification_time')) {
+        # Allow NULL values till the modification time has been set.
+        $dbh->bz_add_column('attachments', 'modification_time', {TYPE => 'DATETIME'});
+
+        print "Setting the modification time for attachments...\n";
+        $dbh->do('UPDATE attachments SET modification_time = creation_ts');
+
+        # Now force values to be always defined.
+        $dbh->bz_alter_column('attachments', 'modification_time',
+                              {TYPE => 'DATETIME', NOTNULL => 1});
+
+        # Update the modification time for attachments which have been modified.
+        my $attachments =
+          $dbh->selectall_arrayref('SELECT attach_id, MAX(bug_when) FROM bugs_activity
+                                    WHERE attach_id IS NOT NULL ' .
+                                    $dbh->sql_group_by('attach_id'));
+
+        my $sth = $dbh->prepare('UPDATE attachments SET modification_time = ?
+                                 WHERE attach_id = ?');
+        $sth->execute($_->[1], $_->[0]) foreach (@$attachments);
+    }
+    # We add this here to be sure to have the index being added, due to the original
+    # patch omitting it.
+    $dbh->bz_add_index('attachments', 'attachments_modification_time_idx',
+                       [qw(modification_time)]);
+}
+
+sub _change_text_types {
+    my $dbh = Bugzilla->dbh; 
+    return if $dbh->bz_column_info('series', 'query')->{TYPE} eq 'LONGTEXT';
+    _check_content_length('attachments', 'mimetype',    255, 'attach_id');
+    _check_content_length('fielddefs',   'description', 255, 'id');
+    _check_content_length('attachments', 'description', 255, 'attach_id');
+
+    $dbh->bz_alter_column('bugs', 'bug_file_loc',
+        { TYPE => 'MEDIUMTEXT'});
+    $dbh->bz_alter_column('longdescs', 'thetext',
+        { TYPE => 'LONGTEXT', NOTNULL => 1 });
+    $dbh->bz_alter_column('attachments', 'description',
+        { TYPE => 'TINYTEXT', NOTNULL => 1 });
+    $dbh->bz_alter_column('attachments', 'mimetype',
+        { TYPE => 'TINYTEXT', NOTNULL => 1 });
+    # This also changes NULL to NOT NULL.
+    $dbh->bz_alter_column('flagtypes', 'description',
+        { TYPE => 'MEDIUMTEXT', NOTNULL => 1 }, '');
+    $dbh->bz_alter_column('fielddefs', 'description',
+        { TYPE => 'TINYTEXT', NOTNULL => 1 });
+    $dbh->bz_alter_column('namedqueries', 'query',
+        { TYPE => 'LONGTEXT', NOTNULL => 1 });
+    $dbh->bz_alter_column('groups', 'description',
+        { TYPE => 'MEDIUMTEXT', NOTNULL => 1 });
+    $dbh->bz_alter_column('quips', 'quip',
+        { TYPE => 'MEDIUMTEXT', NOTNULL => 1 });
+    $dbh->bz_alter_column('series', 'query',
+        { TYPE => 'LONGTEXT', NOTNULL => 1 });
+} 
+
+sub _check_content_length {
+    my ($table_name, $field_name, $max_length, $id_field) = @_;
+    my $dbh = Bugzilla->dbh;
+    my %contents = @{ $dbh->selectcol_arrayref(
+        "SELECT $id_field, $field_name FROM $table_name 
+          WHERE LENGTH($field_name) > ?", {Columns=>[1,2]}, $max_length) };
+
+    if (scalar keys %contents) {
+        print install_string('install_data_too_long',
+                             { column     => $field_name,
+                               id_column  => $id_field,
+                               table      => $table_name,
+                               max_length => $max_length });
+        foreach my $id (keys %contents) {
+            my $string = $contents{$id};
+            # Don't dump the whole string--it could be 16MB.
+            if (length($string) > 80) {
+                $string = substr($string, 0, 30) . "..." 
+                         . substr($string, -30) . "\n";
+            }
+            print "$id: $string\n";
+        }
+        exit 3;
+    }
+}
+
 1;
 
 __END__
diff --git a/Bugzilla/Install/Filesystem.pm b/Bugzilla/Install/Filesystem.pm
index 8387d01734ad177a981726be5880112c330e666c..a24dc28ca72228362570c18b51e3fe0e3af23471 100644
--- a/Bugzilla/Install/Filesystem.pm
+++ b/Bugzilla/Install/Filesystem.pm
@@ -62,6 +62,7 @@ sub FILESYSTEM {
     my $webdotdir     = bz_locations()->{'webdotdir'};
     my $templatedir   = bz_locations()->{'templatedir'};
     my $libdir        = bz_locations()->{'libpath'};
+    my $extlib        = bz_locations()->{'ext_libpath'};
     my $skinsdir      = bz_locations()->{'skinsdir'};
 
     my $ws_group      = Bugzilla->localconfig->{'webservergroup'};
@@ -113,6 +114,7 @@ sub FILESYSTEM {
         'customfield.pl'  => { perms => $owner_executable },
         'email_in.pl'     => { perms => $ws_executable },
         'sanitycheck.pl'  => { perms => $ws_executable },
+        'install-module.pl' => { perms => $owner_executable },
 
         'docs/makedocs.pl'   => { perms => $owner_executable },
         'docs/rel_notes.txt' => { perms => $ws_readable },
@@ -152,6 +154,8 @@ sub FILESYSTEM {
                                      dirs => $ws_dir_readable },
          "$libdir/Bugzilla"    => { files => $ws_readable,
                                      dirs => $ws_dir_readable },
+         $extlib               => { files => $ws_readable,
+                                     dirs => $ws_dir_readable },
          $templatedir          => { files => $ws_readable,
                                      dirs => $ws_dir_readable },
          images                => { files => $ws_readable,
@@ -207,16 +211,13 @@ sub FILESYSTEM {
     foreach my $skin_dir ("$skinsdir/custom", <$skinsdir/contrib/*>) {
         next unless -d $skin_dir;
         next if basename($skin_dir) =~ /^cvs$/i;
-        foreach (<$skinsdir/standard/*.css>) {
-            my $standard_css_file = basename($_);
-            my $custom_css_file = "$skin_dir/$standard_css_file";
-            $create_files{$custom_css_file} = { perms => $ws_readable, contents => <<EOT
-/*
- * Custom rules for $standard_css_file.
- * The rules you put here override rules in that stylesheet.
- */
-EOT
-            }
+        $create_dirs{"$skin_dir/yui"} = $ws_dir_readable;
+        foreach my $base_css (<$skinsdir/standard/*.css>) {
+            _add_custom_css($skin_dir, basename($base_css), \%create_files, $ws_readable);
+        }
+        foreach my $dir_css (<$skinsdir/standard/*/*.css>) {
+            $dir_css =~ s{.+?([^/]+/[^/]+)$}{$1};
+            _add_custom_css($skin_dir, $dir_css, \%create_files, $ws_readable);
         }
     }
 
@@ -251,6 +252,8 @@ EOT
                                           contents => $ht_default_deny },
         "$libdir/Bugzilla/.htaccess" => { perms    => $ws_readable,
                                           contents => $ht_default_deny },
+        "$extlib/.htaccess"          => { perms    => $ws_readable,
+                                          contents => $ht_default_deny },
         "$templatedir/.htaccess"     => { perms    => $ws_readable,
                                           contents => $ht_default_deny },
 
@@ -372,6 +375,18 @@ EOT
 
 }
 
+# A simple helper for creating "empty" CSS files.
+sub _add_custom_css {
+    my ($skin_dir, $path, $create_files, $perms) = @_;
+    $create_files->{"$skin_dir/$path"} = { perms => $perms, contents => <<EOT
+/*
+ * Custom rules for $path.
+ * The rules you put here override rules in that stylesheet.
+ */
+EOT
+    };
+}
+
 sub create_htaccess {
     _create_files(%{FILESYSTEM()->{htaccess}});
 
diff --git a/Bugzilla/Install/Localconfig.pm b/Bugzilla/Install/Localconfig.pm
index bfdb0ce946b50472ade4617078f649b5c4eccb7e..7df9e073617bf9305e89f7533f29bc513552b5a5 100644
--- a/Bugzilla/Install/Localconfig.pm
+++ b/Bugzilla/Install/Localconfig.pm
@@ -31,8 +31,10 @@ package Bugzilla::Install::Localconfig;
 use strict;
 
 use Bugzilla::Constants;
+use Bugzilla::Install::Util qw(bin_loc);
 
 use Data::Dumper;
+use File::Basename qw(dirname);
 use IO::File;
 use Safe;
 
@@ -349,44 +351,11 @@ EOT
     return { old_vars => \@old_vars, new_vars => \@new_vars };
 }
 
-sub _get_default_cvsbin {
-    return '' if ON_WINDOWS;
-
-    my $cvs_executable = `which cvs`;
-    if ($cvs_executable =~ /no cvs/ || $cvs_executable eq '') {
-        # If which didn't find it, just set to blank
-        $cvs_executable = "";
-    } else {
-        chomp $cvs_executable;
-    }
-    return $cvs_executable;
-}
-
-sub _get_default_interdiffbin {
-    return '' if ON_WINDOWS;
-
-    my $interdiff = `which interdiff`;
-    if ($interdiff =~ /no interdiff/ || $interdiff eq '') {
-        # If which didn't find it, just set to blank
-        $interdiff = '';
-    } else {
-        chomp $interdiff;
-    }
-    return $interdiff;
-}
-
+sub _get_default_cvsbin       { return bin_loc('cvs') }
+sub _get_default_interdiffbin { return bin_loc('interdiff') }
 sub _get_default_diffpath {
-    return '' if ON_WINDOWS;
-
-    my $diff_binaries;
-    $diff_binaries = `which diff`;
-    if ($diff_binaries =~ /no diff/ || $diff_binaries eq '') {
-        # If which didn't find it, set to blank
-        $diff_binaries = "";
-    } else {
-        $diff_binaries =~ s:/diff\n$::;
-    }
-    return $diff_binaries;
+    my $diff_bin = bin_loc('diff');
+    return dirname($diff_bin);
 }
 
 1;
diff --git a/Bugzilla/Install/Requirements.pm b/Bugzilla/Install/Requirements.pm
index 305c0843a76070eb56f0e7d0ae87530994343ba0..714bb387148b727e55b64a6d1a0afb880ffbace7 100644
--- a/Bugzilla/Install/Requirements.pm
+++ b/Bugzilla/Install/Requirements.pm
@@ -78,7 +78,7 @@ sub REQUIRED_MODULES {
     {
         package => 'Template-Toolkit',
         module  => 'Template',
-        version => '2.12'
+        version => '2.15'
     },
     {
         package => 'Email-Send',
@@ -225,12 +225,6 @@ sub OPTIONAL_MODULES {
         version => '3.11',
         feature => 'mod_perl'
     },
-    {
-        package => 'Apache-DBI',
-        module  => 'Apache::DBI',
-        version => '0.96',
-        feature => 'mod_perl'
-    },
     );
 
     my $all_modules = _get_extension_requirements(
@@ -434,6 +428,10 @@ EOT
             printf "%15s: $command\n", $module->{package};
         }
     }
+
+    if ($output && $check_results->{any_missing}) {
+        print install_string('install_all', { perl => $^X });
+    }
 }
 
 sub check_graphviz {
@@ -530,7 +528,7 @@ sub install_command {
         $package = $module->{package};
     }
     else {
-        $command = "$^X -MCPAN -e 'install \%s'";
+        $command = "$^X install-module.pl \%s";
         # Non-Windows installations need to use module names, because
         # CPAN doesn't understand package names.
         $package = $module->{module};
diff --git a/Bugzilla/Install/Util.pm b/Bugzilla/Install/Util.pm
index cb6b27786b0d2793d4c67cb15352d263662f405f..67aeb4873297668366ae92e46295fd8be9c59482 100644
--- a/Bugzilla/Install/Util.pm
+++ b/Bugzilla/Install/Util.pm
@@ -34,6 +34,7 @@ use Safe;
 
 use base qw(Exporter);
 our @EXPORT_OK = qw(
+    bin_loc
     get_version_and_os
     indicate_progress
     install_string
@@ -41,6 +42,21 @@ our @EXPORT_OK = qw(
     vers_cmp
 );
 
+sub bin_loc {
+    my ($bin) = @_;
+    return '' if ON_WINDOWS;
+    # Don't print any errors from "which"
+    open(my $saveerr, ">&STDERR");
+    open(STDERR, '>/dev/null');
+    my $loc = `which $bin`;
+    close(STDERR);
+    open(STDERR, ">&", $saveerr);
+    my $exit_code = $? >> 8; # See the perlvar manpage.
+    return '' if $exit_code > 0;
+    chomp($loc);
+    return $loc;
+}
+
 sub get_version_and_os {
     # Display version information
     my @os_details = POSIX::uname;
@@ -64,7 +80,7 @@ sub indicate_progress {
     my $every   = $params->{every} || 1;
 
     print "." if !($current % $every);
-    if ($current % ($every * 60) == 0) {
+    if ($current == $total || $current % ($every * 60) == 0) {
         print "$current/$total (" . int($current * 100 / $total) . "%)\n";
     }
 }
@@ -340,6 +356,11 @@ export them.
 
 =over
 
+=item C<bin_loc>
+
+On *nix systems, given the name of a binary, returns the path to that
+binary, if the binary is in the C<PATH>.
+
 =item C<get_version_and_os>
 
 Returns a hash containing information about what version of Bugzilla we're
diff --git a/Bugzilla/Mailer.pm b/Bugzilla/Mailer.pm
index 03f370a4eb492a50b4afe80f5faa4986a2d5c76a..2702b8ff160c3dbb0a71b0775a8a941234718a05 100644
--- a/Bugzilla/Mailer.pm
+++ b/Bugzilla/Mailer.pm
@@ -44,6 +44,7 @@ use Bugzilla::Util;
 use Date::Format qw(time2str);
 
 use Encode qw(encode);
+use Encode::MIME::Header;
 use Email::Address;
 use Email::MIME;
 # Loading this gives us encoding_set.
@@ -57,7 +58,15 @@ sub MessageToMTA {
 
     my $email = ref($msg) ? $msg : Email::MIME->new($msg);
     foreach my $part ($email->parts) {
-        $part->charset_set('UTF-8') if Bugzilla->params->{'utf8'};
+        if (Bugzilla->params->{'utf8'}) {
+            $part->charset_set('UTF-8');
+            # encoding_set works only with bytes, not with utf8 strings.
+            my $raw = $part->body_raw;
+            if (utf8::is_utf8($raw)) {
+                utf8::encode($raw);
+                $part->body_set($raw);
+            }
+        }
         $part->encoding_set('quoted-printable') if !is_7bit_clean($part->body);
     }
 
@@ -67,7 +76,13 @@ sub MessageToMTA {
     # Encode the headers correctly in quoted-printable
     foreach my $header qw(From To Cc Reply-To Sender Errors-To Subject) {
         if (my $value = $email->header($header)) {
-            $value = Encode::decode("UTF-8", $value) if Bugzilla->params->{'utf8'};
+            if (Bugzilla->params->{'utf8'} && !utf8::is_utf8($value)) {
+                utf8::decode($value);
+            }
+
+            # avoid excessive line wrapping done by Encode.
+            local $Encode::Encoding{'MIME-Q'}->{'bpl'} = 998;
+
             my $encoded = encode('MIME-Q', $value);
             $email->header_set($header, $encoded);
         }
diff --git a/Bugzilla/Milestone.pm b/Bugzilla/Milestone.pm
index 596c34bd84226184bcb2eca70a7a71af522e6523..fc44cf1afd71940f3d0561b0468ef211cfd60dbf 100644
--- a/Bugzilla/Milestone.pm
+++ b/Bugzilla/Milestone.pm
@@ -14,6 +14,7 @@
 #
 # Contributor(s): Tiago R. Mello <timello@async.com.br>
 #                 Max Kanat-Alexander <mkanat@bugzilla.org>
+#                 Frédéric Buclin <LpSolit@gmail.com>
 
 use strict;
 
@@ -21,6 +22,7 @@ package Bugzilla::Milestone;
 
 use base qw(Bugzilla::Object);
 
+use Bugzilla::Constants;
 use Bugzilla::Util;
 use Bugzilla::Error;
 
@@ -31,6 +33,8 @@ use Bugzilla::Error;
 use constant DEFAULT_SORTKEY => 0;
 
 use constant DB_TABLE => 'milestones';
+use constant NAME_FIELD => 'value';
+use constant LIST_ORDER => 'sortkey, value';
 
 use constant DB_COLUMNS => qw(
     id
@@ -39,8 +43,26 @@ use constant DB_COLUMNS => qw(
     sortkey
 );
 
-use constant NAME_FIELD => 'value';
-use constant LIST_ORDER => 'sortkey, value';
+use constant REQUIRED_CREATE_FIELDS => qw(
+    name
+    product
+);
+
+use constant UPDATE_COLUMNS => qw(
+    value
+    sortkey
+);
+
+use constant VALIDATORS => {
+    product => \&_check_product,
+    sortkey => \&_check_sortkey,
+};
+
+use constant UPDATE_VALIDATORS => {
+    value => \&_check_value,
+};
+
+################################
 
 sub new {
     my $class = shift;
@@ -71,6 +93,119 @@ sub new {
     return $class->SUPER::new(@_);
 }
 
+sub run_create_validators {
+    my $class  = shift;
+    my $params = $class->SUPER::run_create_validators(@_);
+
+    my $product = delete $params->{product};
+    $params->{product_id} = $product->id;
+    $params->{value} = $class->_check_value($params->{name}, $product);
+    delete $params->{name};
+
+    return $params;
+}
+
+sub update {
+    my $self = shift;
+    my $changes = $self->SUPER::update(@_);
+
+    if (exists $changes->{value}) {
+        my $dbh = Bugzilla->dbh;
+        # The milestone value is stored in the bugs table instead of its ID.
+        $dbh->do('UPDATE bugs SET target_milestone = ?
+                  WHERE target_milestone = ? AND product_id = ?',
+                 undef, ($self->name, $changes->{value}->[0], $self->product_id));
+
+        # The default milestone also stores the value instead of the ID.
+        $dbh->do('UPDATE products SET defaultmilestone = ?
+                  WHERE id = ? AND defaultmilestone = ?',
+                 undef, ($self->name, $self->product_id, $changes->{value}->[0]));
+    }
+    return $changes;
+}
+
+sub remove_from_db {
+    my $self = shift;
+    my $dbh = Bugzilla->dbh;
+
+    # The default milestone cannot be deleted.
+    if ($self->name eq $self->product->default_milestone) {
+        ThrowUserError('milestone_is_default', { milestone => $self });
+    }
+
+    if ($self->bug_count) {
+        # We don't want to delete bugs when deleting a milestone.
+        # Bugs concerned are reassigned to the default milestone.
+        my $bug_ids =
+          $dbh->selectcol_arrayref('SELECT bug_id FROM bugs
+                                    WHERE product_id = ? AND target_milestone = ?',
+                                    undef, ($self->product->id, $self->name));
+
+        my $timestamp = $dbh->selectrow_array('SELECT NOW()');
+
+        $dbh->do('UPDATE bugs SET target_milestone = ?, delta_ts = ?
+                   WHERE ' . $dbh->sql_in('bug_id', $bug_ids),
+                 undef, ($self->product->default_milestone, $timestamp));
+
+        require Bugzilla::Bug;
+        import Bugzilla::Bug qw(LogActivityEntry);
+        foreach my $bug_id (@$bug_ids) {
+            LogActivityEntry($bug_id, 'target_milestone',
+                             $self->name,
+                             $self->product->default_milestone,
+                             Bugzilla->user->id, $timestamp);
+        }
+    }
+
+    $dbh->do('DELETE FROM milestones WHERE id = ?', undef, $self->id);
+}
+
+################################
+# Validators
+################################
+
+sub _check_value {
+    my ($invocant, $name, $product) = @_;
+
+    $name = trim($name);
+    $name || ThrowUserError('milestone_blank_name');
+    if (length($name) > MAX_MILESTONE_SIZE) {
+        ThrowUserError('milestone_name_too_long', {name => $name});
+    }
+
+    $product = $invocant->product if (ref $invocant);
+    my $milestone = new Bugzilla::Milestone({product => $product, name => $name});
+    if ($milestone && (!ref $invocant || $milestone->id != $invocant->id)) {
+        ThrowUserError('milestone_already_exists', { name    => $milestone->name,
+                                                     product => $product->name });
+    }
+    return $name;
+}
+
+sub _check_sortkey {
+    my ($invocant, $sortkey) = @_;
+
+    # Keep a copy in case detaint_signed() clears the sortkey
+    my $stored_sortkey = $sortkey;
+
+    if (!detaint_signed($sortkey) || $sortkey < MIN_SMALLINT || $sortkey > MAX_SMALLINT) {
+        ThrowUserError('milestone_sortkey_invalid', {sortkey => $stored_sortkey});
+    }
+    return $sortkey;
+}
+
+sub _check_product {
+    my ($invocant, $product) = @_;
+    return Bugzilla->user->check_can_admin_product($product->name);
+}
+
+################################
+# Methods
+################################
+
+sub set_name { $_[0]->set('value', $_[1]); }
+sub set_sortkey { $_[0]->set('sortkey', $_[1]); }
+
 sub bug_count {
     my $self = shift;
     my $dbh = Bugzilla->dbh;
@@ -92,22 +227,12 @@ sub name       { return $_[0]->{'value'};      }
 sub product_id { return $_[0]->{'product_id'}; }
 sub sortkey    { return $_[0]->{'sortkey'};    }
 
-################################
-#####     Subroutines      #####
-################################
-
-sub check_sort_key {
-    my ($milestone_name, $sortkey) = @_;
-    # Keep a copy in case detaint_signed() clears the sortkey
-    my $stored_sortkey = $sortkey;
+sub product {
+    my $self = shift;
 
-    if (!detaint_signed($sortkey) || $sortkey < -32768
-        || $sortkey > 32767) {
-        ThrowUserError('milestone_sortkey_invalid',
-                       {'name' => $milestone_name,
-                        'sortkey' => $stored_sortkey});
-    }
-    return $sortkey;
+    require Bugzilla::Product;
+    $self->{'product'} ||= new Bugzilla::Product($self->product_id);
+    return $self->{'product'};
 }
 
 1;
@@ -122,13 +247,21 @@ Bugzilla::Milestone - Bugzilla product milestone class.
 
     use Bugzilla::Milestone;
 
-    my $milestone = new Bugzilla::Milestone(
-        { product => $product, name => 'milestone_value' });
+    my $milestone = new Bugzilla::Milestone({ name => $name, product => $product });
 
+    my $name       = $milestone->name;
     my $product_id = $milestone->product_id;
-    my $value = $milestone->value;
+    my $product    = $milestone->product;
+    my $sortkey    = $milestone->sortkey;
+
+    my $milestone = Bugzilla::Milestone->create(
+        { name => $name, product => $product, sortkey => $sortkey });
 
-    my $milestone = $hash_ref->{'milestone_value'};
+    $milestone->set_name($new_name);
+    $milestone->set_sortkey($new_sortkey);
+    $milestone->update();
+
+    $milestone->remove_from_db;
 
 =head1 DESCRIPTION
 
@@ -138,16 +271,48 @@ Milestone.pm represents a Product Milestone object.
 
 =over
 
-=item C<new($product_id, $value)>
+=item C<new({name => $name, product => $product})>
 
  Description: The constructor is used to load an existing milestone
-              by passing a product id and a milestone value.
+              by passing a product object and a milestone name.
 
- Params:      $product_id - Integer with a Bugzilla product id.
-              $value - String with a milestone value.
+ Params:      $product - a Bugzilla::Product object.
+              $name - the name of a milestone (string).
 
  Returns:     A Bugzilla::Milestone object.
 
+=item C<name()>
+
+ Description: Name (value) of the milestone.
+
+ Params:      none.
+
+ Returns:     The name of the milestone.
+
+=item C<product_id()>
+
+ Description: ID of the product the milestone belongs to.
+
+ Params:      none.
+
+ Returns:     The ID of a product.
+
+=item C<product()>
+
+ Description: The product object of the product the milestone belongs to.
+
+ Params:      none.
+
+ Returns:     A Bugzilla::Product object.
+
+=item C<sortkey()>
+
+ Description: Sortkey of the milestone.
+
+ Params:      none.
+
+ Returns:     The sortkey of the milestone.
+
 =item C<bug_count()>
 
  Description: Returns the total of bugs that belong to the milestone.
@@ -156,4 +321,55 @@ Milestone.pm represents a Product Milestone object.
 
  Returns:     Integer with the number of bugs.
 
+=item C<set_name($new_name)>
+
+ Description: Changes the name of the milestone.
+
+ Params:      $new_name - new name of the milestone (string). This name
+                          must be unique within the product.
+
+ Returns:     Nothing.
+
+=item C<set_sortkey($new_sortkey)>
+
+ Description: Changes the sortkey of the milestone.
+
+ Params:      $new_sortkey - new sortkey of the milestone (signed integer).
+
+ Returns:     Nothing.
+
+=item C<update()>
+
+ Description: Writes the new name and/or the new sortkey into the DB.
+
+ Params:      none.
+
+ Returns:     A hashref with changes made to the milestone object.
+
+=item C<remove_from_db()>
+
+ Description: Deletes the current milestone from the DB. The object itself
+              is not destroyed.
+
+ Params:      none.
+
+ Returns:     Nothing.
+
+=back
+
+=head1 CLASS METHODS
+
+=over
+
+=item C<create({name => $name, product => $product, sortkey => $sortkey})>
+
+ Description: Create a new milestone for the given product.
+
+ Params:      $name    - name of the new milestone (string). This name
+                         must be unique within the product.
+              $product - a Bugzilla::Product object.
+              $sortkey - the sortkey of the new milestone (signed integer)
+
+ Returns:     A Bugzilla::Milestone object.
+
 =back
diff --git a/Bugzilla/Object.pm b/Bugzilla/Object.pm
index 9afad763348f0365c3aa5dfbf2bcbfa5f1af6400..23a88855f6ccc147079e13581ee84d7a53eab8b3 100644
--- a/Bugzilla/Object.pm
+++ b/Bugzilla/Object.pm
@@ -27,12 +27,15 @@ use Bugzilla::Constants;
 use Bugzilla::Util;
 use Bugzilla::Error;
 
+use Date::Parse;
+
 use constant NAME_FIELD => 'name';
 use constant ID_FIELD   => 'id';
 use constant LIST_ORDER => NAME_FIELD;
 
 use constant UPDATE_VALIDATORS => {};
 use constant NUMERIC_COLUMNS   => ();
+use constant DATE_COLUMNS      => ();
 
 ###############################
 ####    Initialization     ####
@@ -142,8 +145,9 @@ sub new_from_list {
             push(@detainted_ids, $id);
         }
         $objects = $dbh->selectall_arrayref(
-            "SELECT $columns FROM $table WHERE $id_field IN (" 
-            . join(',', @detainted_ids) . ") ORDER BY $order", {Slice=>{}});
+            "SELECT $columns FROM $table WHERE " 
+            . $dbh->sql_in($id_field, \@detainted_ids) 
+            . "ORDER BY $order", {Slice=>{}});
     } else {
         return [];
     }
@@ -215,6 +219,7 @@ sub set {
     if (exists $validators{$field}) {
         my $validator = $validators{$field};
         $value = $self->$validator($value, $field);
+        trick_taint($value) if (defined $value && !ref($value));
 
         if ($self->can('_set_global_validator')) {
             $self->_set_global_validator($value, $field);
@@ -236,6 +241,7 @@ sub update {
     my $old_self = $self->new($self->id);
     
     my %numeric = map { $_ => 1 } $self->NUMERIC_COLUMNS;
+    my %date    = map { $_ => 1 } $self->DATE_COLUMNS;
     my (@update_columns, @values, %changes);
     foreach my $column ($self->UPDATE_COLUMNS) {
         my ($old, $new) = ($old_self->{$column}, $self->{$column});
@@ -245,7 +251,9 @@ sub update {
         if (!defined $new || !defined $old) {
             next if !defined $new && !defined $old;
         }
-        elsif ( ($numeric{$column} && $old == $new) || $old eq $new ) {
+        elsif ( ($numeric{$column} && $old == $new) 
+                || ($date{$column} && str2time($old) == str2time($new))
+                || $old eq $new ) {
             next;
         }
 
@@ -473,6 +481,12 @@ current value in the database. It only updates columns that have changed.
 Any column listed in NUMERIC_COLUMNS is treated as a number, not as a string,
 during these comparisons.
 
+=item C<DATE_COLUMNS>
+
+This is much like L</NUMERIC_COLUMNS>, except that it treats strings as
+dates when being compared. So, for example, C<2007-01-01> would be
+equal to C<2007-01-01 00:00:00>.
+
 =back
 
 =head1 METHODS
diff --git a/Bugzilla/Product.pm b/Bugzilla/Product.pm
index 728bd065207e82eb21e1f37b2ff9cda0c5e20e0a..45c489973738a1a1bfa943e1e4cc289ca30009b5 100644
--- a/Bugzilla/Product.pm
+++ b/Bugzilla/Product.pm
@@ -21,6 +21,7 @@ package Bugzilla::Product;
 use Bugzilla::Version;
 use Bugzilla::Milestone;
 
+use Bugzilla::Constants;
 use Bugzilla::Util;
 use Bugzilla::Group;
 use Bugzilla::Error;
@@ -101,6 +102,39 @@ sub group_controls {
     return $self->{group_controls};
 }
 
+sub groups_mandatory_for {
+    my ($self, $user) = @_;
+    my $groups = $user->groups_as_string;
+    my $mandatory = CONTROLMAPMANDATORY;
+    # For membercontrol we don't check group_id IN, because if membercontrol
+    # is Mandatory, the group is Mandatory for everybody, regardless of their
+    # group membership.
+    my $ids = Bugzilla->dbh->selectcol_arrayref(
+        "SELECT group_id FROM group_control_map
+          WHERE product_id = ?
+                AND (membercontrol = $mandatory
+                     OR (othercontrol = $mandatory
+                         AND group_id NOT IN ($groups)))",
+        undef, $self->id);
+    return Bugzilla::Group->new_from_list($ids);
+}
+
+sub groups_valid {
+    my ($self) = @_;
+    return $self->{groups_valid} if defined $self->{groups_valid};
+    
+    # Note that we don't check OtherControl below, because there is no
+    # valid NA/* combination.
+    my $ids = Bugzilla->dbh->selectcol_arrayref(
+        "SELECT DISTINCT group_id
+          FROM group_control_map AS gcm
+               INNER JOIN groups ON gcm.group_id = groups.id
+         WHERE product_id = ? AND isbuggroup = 1
+               AND membercontrol != " . CONTROLMAPNA,  undef, $self->id);
+    $self->{groups_valid} = Bugzilla::Group->new_from_list($ids);
+    return $self->{groups_valid};
+}
+
 sub versions {
     my $self = shift;
     my $dbh = Bugzilla->dbh;
@@ -285,6 +319,42 @@ below.
  Returns:     A hash with group id as key and hash containing 
               a Bugzilla::Group object and the properties of group
               relative to the product.
+              
+=item C<groups_mandatory_for>
+
+=over
+
+=item B<Description>
+
+Tells you what groups are mandatory for bugs in this product.
+
+=item B<Params>
+
+C<$user> - The user who you want to check.
+
+=item B<Returns> An arrayref of C<Bugzilla::Group> objects.
+
+=back
+
+=item C<groups_valid>
+
+=over
+
+=item B<Description>
+
+Returns an arrayref of L<Bugzilla::Group> objects, representing groups
+that bugs could validly be restricted to within this product. Used mostly
+by L<Bugzilla::Bug> to assure that you're adding valid groups to a bug.
+
+B<Note>: This doesn't check whether or not the current user can add/remove
+bugs to/from these groups. It just tells you that bugs I<could be in> these
+groups, in this product.
+
+=item B<Params> (none)
+
+=item B<Returns> An arrayref of L<Bugzilla::Group> objects.
+
+=back
 
 =item C<versions()>
 
diff --git a/Bugzilla/Search.pm b/Bugzilla/Search.pm
index 9b31f8b546e9aeeb3b58c82e91c9098fee7ae8eb..33cc1135e467a32772c7a7f5f648bfb212770f1f 100644
--- a/Bugzilla/Search.pm
+++ b/Bugzilla/Search.pm
@@ -40,7 +40,7 @@ use Bugzilla::Constants;
 use Bugzilla::Group;
 use Bugzilla::User;
 use Bugzilla::Field;
-use Bugzilla::Bug;
+use Bugzilla::Status;
 use Bugzilla::Keyword;
 
 use Date::Format;
@@ -96,7 +96,8 @@ sub init {
     my $self = shift;
     my $fieldsref = $self->{'fields'};
     my $params = $self->{'params'};
-    my $user = $self->{'user'} || Bugzilla->user;
+    $self->{'user'} ||= Bugzilla->user;
+    my $user = $self->{'user'};
 
     my $orderref = $self->{'order'} || 0;
     my @inputorder;
@@ -166,7 +167,7 @@ sub init {
     }
     
     if (grep($_ =~/AS (actual_time|percentage_complete)$/, @$fieldsref)) {
-        push(@supptables, "INNER JOIN longdescs AS ldtime " .
+        push(@supptables, "LEFT JOIN longdescs AS ldtime " .
                           "ON ldtime.bug_id = bugs.bug_id");
     }
 
@@ -352,8 +353,8 @@ sub init {
                     $extra .= " AND actcheck.added = $sql_chvalue";
                 }
                 push(@supptables, "LEFT JOIN bugs_activity AS actcheck " .
-                                  "ON $extra AND actcheck.fieldid IN (" .
-                                  join(",", @actlist) . ")");
+                                  "ON $extra AND " 
+                                 . $dbh->sql_in('actcheck.fieldid', \@actlist));
             }
 
             # Now that we're done using @list to determine if there are any
@@ -422,734 +423,87 @@ sub init {
     my $v;
     my $term;
     my %funcsbykey;
-    my @funcdefs =
-        (
-         "^(?:assigned_to|reporter|qa_contact),(?:notequals|equals|anyexact),%group\\.([^%]+)%" => sub {
-             my $group = $1;
-             my $groupid = Bugzilla::Group::ValidateGroupName( $group, ($user));
-             $groupid || ThrowUserError('invalid_group_name',{name => $group});
-             my @childgroups = @{$user->flatten_group_membership($groupid)};
-             my $table = "user_group_map_$chartid";
-             push (@supptables, "LEFT JOIN user_group_map AS $table " .
-                                "ON $table.user_id = bugs.$f " .
-                                "AND $table.group_id IN(" .
-                                join(',', @childgroups) . ") " .
-                                "AND $table.isbless = 0 " .
-                                "AND $table.grant_type IN(" .
-                                GRANT_DIRECT . "," . GRANT_REGEXP . ")"
-                  );
-             if ($t =~ /^not/) {
-                 $term = "$table.group_id IS NULL";
-             } else {
-                 $term = "$table.group_id IS NOT NULL";
-             }
-          },
-         "^(?:assigned_to|reporter|qa_contact),(?:equals|anyexact),(%\\w+%)" => sub {
-             $term = "bugs.$f = " . pronoun($1, $user);
-          },
-         "^(?:assigned_to|reporter|qa_contact),(?:notequals),(%\\w+%)" => sub {
-             $term = "bugs.$f <> " . pronoun($1, $user);
-          },
-         "^(assigned_to|reporter),(?!changed)" => sub {
-             my $real_f = $f;
-             $f = "login_name";
-             $ff = "profiles.login_name";
-             $funcsbykey{",$t"}->();
-             $term = "bugs.$real_f IN (SELECT userid FROM profiles WHERE $term)";
-         },
-         "^qa_contact,(?!changed)" => sub {
-             push(@supptables, "LEFT JOIN profiles AS map_qa_contact " .
-                               "ON bugs.qa_contact = map_qa_contact.userid");
-             $f = "COALESCE(map_$f.login_name,'')";
-         },
-
-         "^(?:cc),(?:notequals|equals|anyexact),%group\\.([^%]+)%" => sub {
-             my $group = $1;
-             my $groupid = Bugzilla::Group::ValidateGroupName( $group, ($user));
-             $groupid || ThrowUserError('invalid_group_name',{name => $group});
-             my @childgroups = @{$user->flatten_group_membership($groupid)};
-             my $chartseq = $chartid;
-             if ($chartid eq "") {
-                 $chartseq = "CC$sequence";
-                 $sequence++;
-             }
-             my $table = "user_group_map_$chartseq";
-             push(@supptables, "LEFT JOIN cc AS cc_$chartseq " .
-                               "ON bugs.bug_id = cc_$chartseq.bug_id");
-             push(@supptables, "LEFT JOIN user_group_map AS $table " .
-                                "ON $table.user_id = cc_$chartseq.who " .
-                                "AND $table.group_id IN(" .
-                                join(',', @childgroups) . ") " .
-                                "AND $table.isbless = 0 " .
-                                "AND $table.grant_type IN(" .
-                                GRANT_DIRECT . "," . GRANT_REGEXP . ")"
-                  );
-             if ($t =~ /^not/) {
-                 $term = "$table.group_id IS NULL";
-             } else {
-                 $term = "$table.group_id IS NOT NULL";
-             }
-          },
-
-         "^cc,(?:equals|anyexact),(%\\w+%)" => sub {
-             my $match = pronoun($1, $user);
-             my $chartseq = $chartid;
-             if ($chartid eq "") {
-                 $chartseq = "CC$sequence";
-                 $sequence++;
-             }
-             push(@supptables, "LEFT JOIN cc AS cc_$chartseq " .
-                               "ON bugs.bug_id = cc_$chartseq.bug_id " .
-                               "AND cc_$chartseq.who = $match");
-             $term = "cc_$chartseq.who IS NOT NULL";
-         },
-         "^cc,(?:notequals),(%\\w+%)" => sub {
-             my $match = pronoun($1, $user);
-             my $chartseq = $chartid;
-             if ($chartid eq "") {
-                 $chartseq = "CC$sequence";
-                 $sequence++;
-             }
-             push(@supptables, "LEFT JOIN cc AS cc_$chartseq " .
-                               "ON bugs.bug_id = cc_$chartseq.bug_id " .
-                               "AND cc_$chartseq.who = $match");
-             $term = "cc_$chartseq.who IS NULL";
-         },
-         "^cc,(?!changed)" => sub {
-             my $chartseq = $chartid;
-             if ($chartid eq "") {
-                 $chartseq = "CC$sequence";
-                 $sequence++;
-             }
-             $f = "login_name";
-             $ff = "profiles.login_name";
-             $funcsbykey{",$t"}->();
-             push(@supptables, "LEFT JOIN cc AS cc_$chartseq " .
-                               "ON bugs.bug_id = cc_$chartseq.bug_id " .
-                               "AND cc_$chartseq.who IN" .
-                               "(SELECT userid FROM profiles WHERE $term)"
-                               );
-             $term = "cc_$chartseq.who IS NOT NULL";
-         },
-
-         "^long_?desc,changedby" => sub {
-             my $table = "longdescs_$chartid";
-             push(@supptables, "INNER JOIN longdescs AS $table " .
-                               "ON $table.bug_id = bugs.bug_id");
-             my $id = login_to_id($v, THROW_ERROR);
-             $term = "$table.who = $id";
-         },
-         "^long_?desc,changedbefore" => sub {
-             my $table = "longdescs_$chartid";
-             push(@supptables, "INNER JOIN longdescs AS $table " .
-                               "ON $table.bug_id = bugs.bug_id");
-             $term = "$table.bug_when < " . $dbh->quote(SqlifyDate($v));
-         },
-         "^long_?desc,changedafter" => sub {
-             my $table = "longdescs_$chartid";
-             push(@supptables, "INNER JOIN longdescs AS $table " .
-                               "ON $table.bug_id = bugs.bug_id");
-             $term = "$table.bug_when > " . $dbh->quote(SqlifyDate($v));
-         },
-         "^content,matches" => sub {
-             # "content" is an alias for columns containing text for which we
-             # can search a full-text index and retrieve results by relevance, 
-             # currently just bug comments (and summaries to some degree).
-             # There's only one way to search a full-text index, so we only
-             # accept the "matches" operator, which is specific to full-text
-             # index searches.
-
-             # Add the longdescs table to the query so we can search comments.
-             my $table = "longdescs_$chartid";
-             my $extra = "";
-             if (Bugzilla->params->{"insidergroup"} 
-                 && !Bugzilla->user->in_group(Bugzilla->params->{"insidergroup"}))
-             {
-                 $extra = "AND $table.isprivate < 1";
-             }
-             push(@supptables, "INNER JOIN longdescs AS $table " .
-                               "ON bugs.bug_id = $table.bug_id $extra");
-
-             # Create search terms to add to the SELECT and WHERE clauses.
-             # $term1 searches comments.
-             my $term1 = $dbh->sql_fulltext_search("${table}.thetext", $v);
-
-             # short_desc searching for the WHERE clause
-             my @words = _split_words_into_like('bugs.short_desc', $v);
-             my $term2_where = join(' OR ', @words);
-
-             # short_desc relevance
-             my $factor = SUMMARY_RELEVANCE_FACTOR;
-             my @s_words = map("CASE WHEN $_ THEN $factor ELSE 0 END", @words);
-             my $term2_select = join(' + ', @s_words);
-
-             # The term to use in the WHERE clause.
-             $term = "$term1 > 0 OR ($term2_where)";
-
-             # In order to sort by relevance (in case the user requests it),
-             # we SELECT the relevance value and give it an alias so we can
-             # add it to the SORT BY clause when we build it in buglist.cgi.
-             #
-             # Note: We should be calculating the relevance based on all
-             # comments for a bug, not just matching comments, but that's hard
-             # (see http://bugzilla.mozilla.org/show_bug.cgi?id=145588#c35).
-             my $select_term = "(SUM($term1) + $term2_select) AS relevance";
-
-             # add the column not used in aggregate function explicitly
-             push(@groupby, 'bugs.short_desc');
-
-             # Users can specify to display the relevance field, in which case
-             # it'll show up in the list of fields being selected, and we need
-             # to replace that occurrence with our select term.  Otherwise
-             # we can just add the term to the list of fields being selected.
-             if (grep($_ eq "relevance", @fields)) {
-                 @fields = map($_ eq "relevance" ? $select_term : $_ , @fields);
-             }
-             else {
-                 push(@fields, $select_term);
-             }
-         },
-         "^content," => sub {
-             ThrowUserError("search_content_without_matches");
-         },
-         "^(?:deadline|creation_ts|delta_ts),(?:lessthan|greaterthan|equals|notequals),(?:-|\\+)?(?:\\d+)(?:[dDwWmMyY])\$" => sub {
-             $v = SqlifyDate($v);
-             $q = $dbh->quote($v);
-        },
-         "^commenter,(?:equals|anyexact),(%\\w+%)" => sub {
-             my $match = pronoun($1, $user);
-             my $chartseq = $chartid;
-             if ($chartid eq "") {
-                 $chartseq = "LD$sequence";
-                 $sequence++;
-             }
-             my $table = "longdescs_$chartseq";
-             my $extra = "";
-             if (Bugzilla->params->{"insidergroup"} 
-                 && !Bugzilla->user->in_group(Bugzilla->params->{"insidergroup"})) 
-             {
-                 $extra = "AND $table.isprivate < 1";
-             }
-             push(@supptables, "LEFT JOIN longdescs AS $table " .
-                               "ON $table.bug_id = bugs.bug_id $extra " .
-                               "AND $table.who IN ($match)");
-             $term = "$table.who IS NOT NULL";
-         },
-         "^commenter," => sub {
-             my $chartseq = $chartid;
-             if ($chartid eq "") {
-                 $chartseq = "LD$sequence";
-                 $sequence++;
-             }
-             my $table = "longdescs_$chartseq";
-             my $extra = "";
-             if (Bugzilla->params->{"insidergroup"} 
-                 && !Bugzilla->user->in_group(Bugzilla->params->{"insidergroup"})) 
-             {
-                 $extra = "AND $table.isprivate < 1";
-             }
-             $f = "login_name";
-             $ff = "profiles.login_name";
-             $funcsbykey{",$t"}->();
-             push(@supptables, "LEFT JOIN longdescs AS $table " .
-                               "ON $table.bug_id = bugs.bug_id $extra " .
-                               "AND $table.who IN" .
-                               "(SELECT userid FROM profiles WHERE $term)"
-                               );
-             $term = "$table.who IS NOT NULL";
-         },
-         "^long_?desc," => sub {
-             my $table = "longdescs_$chartid";
-             my $extra = "";
-             if (Bugzilla->params->{"insidergroup"} 
-                 && !Bugzilla->user->in_group(Bugzilla->params->{"insidergroup"})) 
-             {
-                 $extra = "AND $table.isprivate < 1";
-             }
-             push(@supptables, "INNER JOIN longdescs AS $table " .
-                               "ON $table.bug_id = bugs.bug_id $extra");
-             $f = "$table.thetext";
-         },
-         "^longdescs\.isprivate," => sub {
-             my $table = "longdescs_$chartid";
-             my $extra = "";
-             if (Bugzilla->params->{"insidergroup"}
-                 && !Bugzilla->user->in_group(Bugzilla->params->{"insidergroup"}))
-             {
-                 $extra = "AND $table.isprivate < 1";
-             }
-             push(@supptables, "INNER JOIN longdescs AS $table " .
-                               "ON $table.bug_id = bugs.bug_id $extra");
-             $f = "$table.isprivate";
-         },
-         "^work_time,changedby" => sub {
-             my $table = "longdescs_$chartid";
-             push(@supptables, "INNER JOIN longdescs AS $table " .
-                               "ON $table.bug_id = bugs.bug_id");
-             my $id = login_to_id($v, THROW_ERROR);
-             $term = "(($table.who = $id";
-             $term .= ") AND ($table.work_time <> 0))";
-         },
-         "^work_time,changedbefore" => sub {
-             my $table = "longdescs_$chartid";
-             push(@supptables, "INNER JOIN longdescs AS $table " .
-                               "ON $table.bug_id = bugs.bug_id");
-             $term = "(($table.bug_when < " . $dbh->quote(SqlifyDate($v));
-             $term .= ") AND ($table.work_time <> 0))";
-         },
-         "^work_time,changedafter" => sub {
-             my $table = "longdescs_$chartid";
-             push(@supptables, "INNER JOIN longdescs AS $table " .
-                               "ON $table.bug_id = bugs.bug_id");
-             $term = "(($table.bug_when > " . $dbh->quote(SqlifyDate($v));
-             $term .= ") AND ($table.work_time <> 0))";
-         },
-         "^work_time," => sub {
-             my $table = "longdescs_$chartid";
-             push(@supptables, "INNER JOIN longdescs AS $table " .
-                               "ON $table.bug_id = bugs.bug_id");
-             $f = "$table.work_time";
-         },
-         "^percentage_complete," => sub {
-             my $oper;
-             if ($t eq "equals") {
-                 $oper = "=";
-             } elsif ($t eq "greaterthan") {
-                 $oper = ">";
-             } elsif ($t eq "lessthan") {
-                 $oper = "<";
-             } elsif ($t eq "notequal") {
-                 $oper = "<>";
-             } elsif ($t eq "regexp") {
-                 # This is just a dummy to help catch bugs- $oper won't be used
-                 # since "regexp" is treated as a special case below.  But
-                 # leaving $oper uninitialized seems risky...
-                 $oper = "sql_regexp";
-             } elsif ($t eq "notregexp") {
-                 # This is just a dummy to help catch bugs- $oper won't be used
-                 # since "notregexp" is treated as a special case below.  But
-                 # leaving $oper uninitialized seems risky...
-                 $oper = "sql_not_regexp";
-             } else {
-                 $oper = "noop";
-             }
-             if ($oper ne "noop") {
-                 my $table = "longdescs_$chartid";
-                 if(lsearch(\@fields, "bugs.remaining_time") == -1) {
-                     push(@fields, "bugs.remaining_time");                  
-                 }
-                 push(@supptables, "INNER JOIN longdescs AS $table " .
-                                   "ON $table.bug_id = bugs.bug_id");
-                 my $expression = "(100 * ((SUM($table.work_time) *
-                                             COUNT(DISTINCT $table.bug_when) /
-                                             COUNT(bugs.bug_id)) /
-                                            ((SUM($table.work_time) *
-                                              COUNT(DISTINCT $table.bug_when) /
-                                              COUNT(bugs.bug_id)) +
-                                             bugs.remaining_time)))";
-                 $q = $dbh->quote($v);
-                 trick_taint($q);
-                 if ($t eq "regexp") {
-                     push(@having, $dbh->sql_regexp($expression, $q));
-                 } elsif ($t eq "notregexp") {
-                     push(@having, $dbh->sql_not_regexp($expression, $q));
-                 } else {
-                     push(@having, "$expression $oper " . $q);
-                 }
-                 push(@groupby, "bugs.remaining_time");
-             }
-             $term = "0=0";
-         },
-         "^bug_group,(?!changed)" => sub {
-            push(@supptables,
-                    "LEFT JOIN bug_group_map AS bug_group_map_$chartid " .
-                    "ON bugs.bug_id = bug_group_map_$chartid.bug_id");
-            $ff = $f = "groups_$chartid.name";
-            my $ref = $funcsbykey{",$t"};
-            &$ref;
-            push(@supptables,
-                    "LEFT JOIN groups AS groups_$chartid " .
-                    "ON groups_$chartid.id = bug_group_map_$chartid.group_id " .
-                    "AND $term");
-            $term = "$ff IS NOT NULL";
-         },
-         "^attach_data\.thedata,changed" => sub {
-            # Searches for attachment data's change must search
-            # the creation timestamp of the attachment instead.
-            $f = "attachments.whocares";
-         },
-         "^attach_data\.thedata," => sub {
-             my $atable = "attachments_$chartid";
-             my $dtable = "attachdata_$chartid";
-             my $extra = "";
-             if (Bugzilla->params->{"insidergroup"} 
-                 && !Bugzilla->user->in_group(Bugzilla->params->{"insidergroup"})) 
-             {
-                 $extra = "AND $atable.isprivate = 0";
-             }
-             push(@supptables, "INNER JOIN attachments AS $atable " .
-                               "ON bugs.bug_id = $atable.bug_id $extra");
-             push(@supptables, "INNER JOIN attach_data AS $dtable " .
-                               "ON $dtable.id = $atable.attach_id");
-             $f = "$dtable.thedata";
-         },
-         "^attachments\.submitter," => sub {
-             my $atable = "map_attachment_submitter_$chartid";
-             my $extra = "";
-             if (Bugzilla->params->{"insidergroup"}
-                 && !Bugzilla->user->in_group(Bugzilla->params->{"insidergroup"}))
-             {
-                 $extra = "AND $atable.isprivate = 0";
-             }
-             push(@supptables, "INNER JOIN attachments AS $atable " .
-                               "ON bugs.bug_id = $atable.bug_id $extra");
-             push(@supptables, "LEFT JOIN profiles AS attachers_$chartid " .
-                               "ON $atable.submitter_id = attachers_$chartid.userid");
-             $f = "attachers_$chartid.login_name";
-         },
-         "^attachments\..*," => sub {
-             my $table = "attachments_$chartid";
-             my $extra = "";
-             if (Bugzilla->params->{"insidergroup"} 
-                 && !Bugzilla->user->in_group(Bugzilla->params->{"insidergroup"})) 
-             {
-                 $extra = "AND $table.isprivate = 0";
-             }
-             push(@supptables, "INNER JOIN attachments AS $table " .
-                               "ON bugs.bug_id = $table.bug_id $extra");
-             $f =~ m/^attachments\.(.*)$/;
-             my $field = $1;
-             if ($t eq "changedby") {
-                 $v = login_to_id($v, THROW_ERROR);
-                 $q = $dbh->quote($v);
-                 $field = "submitter_id";
-                 $t = "equals";
-             } elsif ($t eq "changedbefore") {
-                 $v = SqlifyDate($v);
-                 $q = $dbh->quote($v);
-                 $field = "creation_ts";
-                 $t = "lessthan";
-             } elsif ($t eq "changedafter") {
-                 $v = SqlifyDate($v);
-                 $q = $dbh->quote($v);
-                 $field = "creation_ts";
-                 $t = "greaterthan";
-             }
-             if ($field eq "ispatch" && $v ne "0" && $v ne "1") {
-                 ThrowUserError("illegal_attachment_is_patch");
-             }
-             if ($field eq "isobsolete" && $v ne "0" && $v ne "1") {
-                 ThrowUserError("illegal_is_obsolete");
-             }
-             $f = "$table.$field";
-         },
-         "^flagtypes.name," => sub {
-             # Matches bugs by flag name/status.
-             # Note that--for the purposes of querying--a flag comprises
-             # its name plus its status (i.e. a flag named "review" 
-             # with a status of "+" can be found by searching for "review+").
-             
-             # Don't do anything if this condition is about changes to flags,
-             # as the generic change condition processors can handle those.
-             return if ($t =~ m/^changed/);
-             
-             # Add the flags and flagtypes tables to the query.  We do 
-             # a left join here so bugs without any flags still match 
-             # negative conditions (f.e. "flag isn't review+").
-             my $flags = "flags_$chartid";
-             push(@supptables, "LEFT JOIN flags AS $flags " . 
-                               "ON bugs.bug_id = $flags.bug_id ");
-             my $flagtypes = "flagtypes_$chartid";
-             push(@supptables, "LEFT JOIN flagtypes AS $flagtypes " . 
-                               "ON $flags.type_id = $flagtypes.id");
-             
-             # Generate the condition by running the operator-specific
-             # function. Afterwards the condition resides in the global $term
-             # variable.
-             $ff = $dbh->sql_string_concat("${flagtypes}.name",
-                                           "$flags.status");
-             &{$funcsbykey{",$t"}};
-             
-             # If this is a negative condition (f.e. flag isn't "review+"),
-             # we only want bugs where all flags match the condition, not 
-             # those where any flag matches, which needs special magic.
-             # Instead of adding the condition to the WHERE clause, we select
-             # the number of flags matching the condition and the total number
-             # of flags on each bug, then compare them in a HAVING clause.
-             # If the numbers are the same, all flags match the condition,
-             # so this bug should be included.
-             if ($t =~ m/not/) {
-                push(@having,
-                     "SUM(CASE WHEN $ff IS NOT NULL THEN 1 ELSE 0 END) = " .
-                     "SUM(CASE WHEN $term THEN 1 ELSE 0 END)");
-                $term = "0=0";
-             }
-         },
-         "^requestees.login_name," => sub {
-             my $flags = "flags_$chartid";
-             push(@supptables, "LEFT JOIN flags AS $flags " .
-                               "ON bugs.bug_id = $flags.bug_id ");
-             push(@supptables, "LEFT JOIN profiles AS requestees_$chartid " .
-                               "ON $flags.requestee_id = requestees_$chartid.userid");
-             $f = "requestees_$chartid.login_name";
-         },
-         "^setters.login_name," => sub {
-             my $flags = "flags_$chartid";
-             push(@supptables, "LEFT JOIN flags AS $flags " .
-                               "ON bugs.bug_id = $flags.bug_id ");
-             push(@supptables, "LEFT JOIN profiles AS setters_$chartid " .
-                               "ON $flags.setter_id = setters_$chartid.userid");
-             $f = "setters_$chartid.login_name";
-         },
-         
-         "^(changedin|days_elapsed)," => sub {
-             $f = "(" . $dbh->sql_to_days('NOW()') . " - " .
-                        $dbh->sql_to_days('bugs.delta_ts') . ")";
-         },
-
-         "^component,(?!changed)" => sub {
-             $f = $ff = "components.name";
-             $funcsbykey{",$t"}->();
-             $term = build_subselect("bugs.component_id",
-                                     "components.id",
-                                     "components",
-                                     $term);
-         },
-
-         "^product,(?!changed)" => sub {
-             # Generate the restriction condition
-             $f = $ff = "products.name";
-             $funcsbykey{",$t"}->();
-             $term = build_subselect("bugs.product_id",
-                                     "products.id",
-                                     "products",
-                                     $term);
-         },
-
-         "^classification,(?!changed)" => sub {
-             # Generate the restriction condition
-             push @supptables, "INNER JOIN products AS map_products " .
-                               "ON bugs.product_id = map_products.id";
-             $f = $ff = "classifications.name";
-             $funcsbykey{",$t"}->();
-             $term = build_subselect("map_products.classification_id",
-                                     "classifications.id",
-                                     "classifications",
-                                     $term);
-         },
-
-         "^keywords,(?!changed)" => sub {
-             my @list;
-             my $table = "keywords_$chartid";
-             foreach my $value (split(/[\s,]+/, $v)) {
-                 if ($value eq '') {
-                     next;
-                 }
-                 my $keyword = new Bugzilla::Keyword({name => $value});
-                 if ($keyword) {
-                     push(@list, "$table.keywordid = " . $keyword->id);
-                 }
-                 else {
-                     ThrowUserError("unknown_keyword",
-                                    { keyword => $v });
-                 }
-             }
-             my $haveawordterm;
-             if (@list) {
-                 $haveawordterm = "(" . join(' OR ', @list) . ")";
-                 if ($t eq "anywords") {
-                     $term = $haveawordterm;
-                 } elsif ($t eq "allwords") {
-                     my $ref = $funcsbykey{",$t"};
-                     &$ref;
-                     if ($term && $haveawordterm) {
-                         $term = "(($term) AND $haveawordterm)";
-                     }
-                 }
-             }
-             if ($term) {
-                 push(@supptables, "LEFT JOIN keywords AS $table " .
-                                   "ON $table.bug_id = bugs.bug_id");
-             }
-         },
-
-         "^dependson,(?!changed)" => sub {
-                my $table = "dependson_" . $chartid;
-                $ff = "$table.$f";
-                my $ref = $funcsbykey{",$t"};
-                &$ref;
-                push(@supptables, "LEFT JOIN dependencies AS $table " .
-                                  "ON $table.blocked = bugs.bug_id " .
-                                  "AND ($term)");
-                $term = "$ff IS NOT NULL";
-         },
-
-         "^blocked,(?!changed)" => sub {
-                my $table = "blocked_" . $chartid;
-                $ff = "$table.$f";
-                my $ref = $funcsbykey{",$t"};
-                &$ref;
-                push(@supptables, "LEFT JOIN dependencies AS $table " .
-                                  "ON $table.dependson = bugs.bug_id " .
-                                  "AND ($term)");
-                $term = "$ff IS NOT NULL";
-         },
-
-         "^alias,(?!changed)" => sub {
-             $ff = "COALESCE(bugs.alias, '')";
-             my $ref = $funcsbykey{",$t"};
-             &$ref;
-         },
-
-         "^owner_idle_time,(greaterthan|lessthan)" => sub {
-                my $table = "idle_" . $chartid;
-                $v =~ /^(\d+)\s*([hHdDwWmMyY])?$/;
-                my $quantity = $1;
-                my $unit = lc $2;
-                my $unitinterval = 'DAY';
-                if ($unit eq 'h') {
-                    $unitinterval = 'HOUR';
-                } elsif ($unit eq 'w') {
-                    $unitinterval = ' * 7 DAY';
-                } elsif ($unit eq 'm') {
-                    $unitinterval = 'MONTH';
-                } elsif ($unit eq 'y') {
-                    $unitinterval = 'YEAR';
-                }
-                my $cutoff = "NOW() - " .
-                             $dbh->sql_interval($quantity, $unitinterval);
-                my $assigned_fieldid = get_field_id('assigned_to');
-                push(@supptables, "LEFT JOIN longdescs AS comment_$table " .
-                                  "ON comment_$table.who = bugs.assigned_to " .
-                                  "AND comment_$table.bug_id = bugs.bug_id " .
-                                  "AND comment_$table.bug_when > $cutoff");
-                push(@supptables, "LEFT JOIN bugs_activity AS activity_$table " .
-                                  "ON (activity_$table.who = bugs.assigned_to " .
-                                  "OR activity_$table.fieldid = $assigned_fieldid) " .
-                                  "AND activity_$table.bug_id = bugs.bug_id " .
-                                  "AND activity_$table.bug_when > $cutoff");
-                if ($t =~ /greater/) {
-                    push(@wherepart, "(comment_$table.who IS NULL " .
-                                     "AND activity_$table.who IS NULL)");
-                } else {
-                    push(@wherepart, "(comment_$table.who IS NOT NULL " .
-                                     "OR activity_$table.who IS NOT NULL)");
-                }
-                $term = "0=0";
-         },
-
-         ",equals" => sub {
-             $term = "$ff = $q";
-         },
-         ",notequals" => sub {
-             $term = "$ff != $q";
-         },
-         ",casesubstring" => sub {
-             $term = $dbh->sql_position($q, $ff) . " > 0";
-         },
-         ",substring" => sub {
-             $term = $dbh->sql_position(lc($q), "LOWER($ff)") . " > 0";
-         },
-         ",substr" => sub {
-             $funcsbykey{",substring"}->();
-         },
-         ",notsubstring" => sub {
-             $term = $dbh->sql_position(lc($q), "LOWER($ff)") . " = 0";
-         },
-         ",regexp" => sub {
-             $term = $dbh->sql_regexp($ff, $q);
-         },
-         ",notregexp" => sub {
-             $term = $dbh->sql_not_regexp($ff, $q);
-         },
-         ",lessthan" => sub {
-             $term = "$ff < $q";
-         },
-         ",matches" => sub {
-             ThrowUserError("search_content_without_matches");
-         },
-         ",greaterthan" => sub {
-             $term = "$ff > $q";
-         },
-         ",anyexact" => sub {
-             my @list;
-             foreach my $w (split(/,/, $v)) {
-                 if ($w eq "---" && $f !~ /milestone/) {
-                     $w = "";
-                 }
-                 $q = $dbh->quote($w);
-                 trick_taint($q);
-                 push(@list, $q);
-             }
-             if (@list) {
-                 $term = "$ff IN (" . join (',', @list) . ")";
-             }
-         },
-         ",anywordssubstr" => sub {
-             $term = join(" OR ", @{GetByWordListSubstr($ff, $v)});
-         },
-         ",allwordssubstr" => sub {
-             $term = join(" AND ", @{GetByWordListSubstr($ff, $v)});
-         },
-         ",nowordssubstr" => sub {
-             my @list = @{GetByWordListSubstr($ff, $v)};
-             if (@list) {
-                 $term = "NOT (" . join(" OR ", @list) . ")";
-             }
-         },
-         ",anywords" => sub {
-             $term = join(" OR ", @{GetByWordList($ff, $v)});
-         },
-         ",allwords" => sub {
-             $term = join(" AND ", @{GetByWordList($ff, $v)});
-         },
-         ",nowords" => sub {
-             my @list = @{GetByWordList($ff, $v)};
-             if (@list) {
-                 $term = "NOT (" . join(" OR ", @list) . ")";
-             }
-         },
-         ",(changedbefore|changedafter)" => sub {
-             my $operator = ($t =~ /before/) ? '<' : '>';
-             my $table = "act_$chartid";
-             my $fieldid = $chartfields{$f};
-             if (!$fieldid) {
-                 ThrowCodeError("invalid_field_name", {field => $f});
-             }
-             push(@supptables, "LEFT JOIN bugs_activity AS $table " .
-                               "ON $table.bug_id = bugs.bug_id " .
-                               "AND $table.fieldid = $fieldid " .
-                               "AND $table.bug_when $operator " . 
-                               $dbh->quote(SqlifyDate($v)) );
-             $term = "($table.bug_when IS NOT NULL)";
-         },
-         ",(changedfrom|changedto)" => sub {
-             my $operator = ($t =~ /from/) ? 'removed' : 'added';
-             my $table = "act_$chartid";
-             my $fieldid = $chartfields{$f};
-             if (!$fieldid) {
-                 ThrowCodeError("invalid_field_name", {field => $f});
-             }
-             push(@supptables, "LEFT JOIN bugs_activity AS $table " .
-                               "ON $table.bug_id = bugs.bug_id " .
-                               "AND $table.fieldid = $fieldid " .
-                               "AND $table.$operator = $q");
-             $term = "($table.bug_when IS NOT NULL)";
-         },
-         ",changedby" => sub {
-             my $table = "act_$chartid";
-             my $fieldid = $chartfields{$f};
-             if (!$fieldid) {
-                 ThrowCodeError("invalid_field_name", {field => $f});
-             }
-             my $id = login_to_id($v, THROW_ERROR);
-             push(@supptables, "LEFT JOIN bugs_activity AS $table " .
-                               "ON $table.bug_id = bugs.bug_id " .
-                               "AND $table.fieldid = $fieldid " .
-                               "AND $table.who = $id");
-             $term = "($table.bug_when IS NOT NULL)";
-         },
-         );
+    my %func_args = (
+        'chartid' => \$chartid,
+        'sequence' => \$sequence,
+        'f' => \$f,
+        'ff' => \$ff,
+        't' => \$t,
+        'v' => \$v,
+        'q' => \$q,
+        'term' => \$term,
+        'funcsbykey' => \%funcsbykey,
+        'supptables' => \@supptables,
+        'wherepart' => \@wherepart,
+        'having' => \@having,
+        'groupby' => \@groupby,
+        'chartfields' => \%chartfields,
+        'fields' => \@fields,
+    );
+    my @funcdefs = (
+        "^(?:assigned_to|reporter|qa_contact),(?:notequals|equals|anyexact),%group\\.([^%]+)%" => \&_contact_exact_group,
+        "^(?:assigned_to|reporter|qa_contact),(?:equals|anyexact),(%\\w+%)" => \&_contact_exact,
+        "^(?:assigned_to|reporter|qa_contact),(?:notequals),(%\\w+%)" => \&_contact_notequals,
+        "^(assigned_to|reporter),(?!changed)" => \&_assigned_to_reporter_nonchanged,
+        "^qa_contact,(?!changed)" => \&_qa_contact_nonchanged,
+        "^(?:cc),(?:notequals|equals|anyexact),%group\\.([^%]+)%" => \&_cc_exact_group,
+        "^cc,(?:equals|anyexact),(%\\w+%)" => \&_cc_exact,
+        "^cc,(?:notequals),(%\\w+%)" => \&_cc_notequals,
+        "^cc,(?!changed)" => \&_cc_nonchanged,
+        "^long_?desc,changedby" => \&_long_desc_changedby,
+        "^long_?desc,changedbefore" => \&_long_desc_changedbefore,
+        "^long_?desc,changedafter" => \&_long_desc_changedafter,
+        "^content,matches" => \&_content_matches,
+        "^content," => sub { ThrowUserError("search_content_without_matches"); },
+        "^(?:deadline|creation_ts|delta_ts),(?:lessthan|greaterthan|equals|notequals),(?:-|\\+)?(?:\\d+)(?:[dDwWmMyY])\$" => \&_timestamp_compare,
+        "^commenter,(?:equals|anyexact),(%\\w+%)" => \&_commenter_exact,
+        "^commenter," => \&_commenter,
+        "^long_?desc," => \&_long_desc,
+        "^longdescs\.isprivate," => \&_longdescs_isprivate,
+        "^work_time,changedby" => \&_work_time_changedby,
+        "^work_time,changedbefore" => \&_work_time_changedbefore,
+        "^work_time,changedafter" => \&_work_time_changedafter,
+        "^work_time," => \&_work_time,
+        "^percentage_complete," => \&_percentage_complete,
+        "^bug_group,(?!changed)" => \&_bug_group_nonchanged,
+        "^attach_data\.thedata,changed" => \&_attach_data_thedata_changed,
+        "^attach_data\.thedata," => \&_attach_data_thedata,
+        "^attachments\.submitter," => \&_attachments_submitter,
+        "^attachments\..*," => \&_attachments,
+        "^flagtypes.name," => \&_flagtypes_name,
+        "^requestees.login_name," => \&_requestees_login_name,
+        "^setters.login_name," => \&_setters_login_name,
+        "^(changedin|days_elapsed)," => \&_changedin_days_elapsed,
+        "^component,(?!changed)" => \&_component_nonchanged,
+        "^product,(?!changed)" => \&_product_nonchanged,
+        "^classification,(?!changed)" => \&_classification_nonchanged,
+        "^keywords,(?!changed)" => \&_keywords_nonchanged,
+        "^dependson,(?!changed)" => \&_dependson_nonchanged,
+        "^blocked,(?!changed)" => \&_blocked_nonchanged,
+        "^alias,(?!changed)" => \&_alias_nonchanged,
+        "^owner_idle_time,(greaterthan|lessthan)" => \&_owner_idle_time_greater_less,
+        ",equals" => \&_equals,
+        ",notequals" => \&_notequals,
+        ",casesubstring" => \&_casesubstring,
+        ",substring" => \&_substring,
+        ",substr" => \&_substring,
+        ",notsubstring" => \&_notsubstring,
+        ",regexp" => \&_regexp,
+        ",notregexp" => \&_notregexp,
+        ",lessthan" => \&_lessthan,
+        ",matches" => sub { ThrowUserError("search_content_without_matches"); },
+        ",greaterthan" => \&_greaterthan,
+        ",anyexact" => \&_anyexact,
+        ",anywordssubstr" => \&_anywordsubstr,
+        ",allwordssubstr" => \&_allwordssubstr,
+        ",nowordssubstr" => \&_nowordssubstr,
+        ",anywords" => \&_anywords,
+        ",allwords" => \&_allwords,
+        ",nowords" => \&_nowords,
+        ",(changedbefore|changedafter)" => \&_changedbefore_changedafter,
+        ",(changedfrom|changedto)" => \&_changedfrom_changedto,
+        ",changedby" => \&_changedby,
+    );
     my @funcnames;
     while (@funcdefs) {
         my $key = shift(@funcdefs);
@@ -1326,7 +680,7 @@ sub init {
                         if ($f !~ /\./) {
                             $ff = "bugs.$f";
                         }
-                        &$ref;
+                        $self->$ref(%func_args);
                         if ($debug) {
                             push(@debugdata, "$f / $t / $v / " .
                                              ($term || "undef") . " *");
@@ -1389,21 +743,20 @@ sub init {
     my $suppstring = "bugs";
     my @supplist = (" ");
     foreach my $str (@supptables) {
-        if (!$suppseen{$str}) {
-            if ($str =~ /^(LEFT|INNER|RIGHT)\s+JOIN/i) {
-                $str =~ /^(.*?)\s+ON\s+(.*)$/i;
-                my ($leftside, $rightside) = ($1, $2);
-                if ($suppseen{$leftside}) {
-                    $supplist[$suppseen{$leftside}] .= " AND ($rightside)";
-                } else {
-                    $suppseen{$leftside} = scalar @supplist;
-                    push @supplist, " $leftside ON ($rightside)";
-                }
+
+        if ($str =~ /^(LEFT|INNER|RIGHT)\s+JOIN/i) {
+            $str =~ /^(.*?)\s+ON\s+(.*)$/i;
+            my ($leftside, $rightside) = ($1, $2);
+            if (defined $suppseen{$leftside}) {
+                $supplist[$suppseen{$leftside}] .= " AND ($rightside)";
             } else {
-                # Do not accept implicit joins using comma operator
-                # as they are not DB agnostic
-                ThrowCodeError("comma_operator_deprecated");
+                $suppseen{$leftside} = scalar @supplist;
+                push @supplist, " $leftside ON ($rightside)";
             }
+        } else {
+            # Do not accept implicit joins using comma operator
+            # as they are not DB agnostic
+            ThrowCodeError("comma_operator_deprecated");
         }
     }
     $suppstring .= join('', @supplist);
@@ -1520,8 +873,7 @@ sub build_subselect {
     my $dbh = Bugzilla->dbh;
     my $list = $dbh->selectcol_arrayref($q);
     return "1=2" unless @$list; # Could use boolean type on dbs which support it
-    return "$outer IN (" . join(',', @$list) . ")";
-}
+    return $dbh->sql_in($outer, $list);}
 
 sub GetByWordList {
     my ($field, $strs) = (@_);
@@ -1673,4 +1025,1070 @@ sub _split_words_into_like {
     @words = map($dbh->sql_istrcmp($field, $_, 'LIKE'), @words);
     return @words;
 }
+
+#####################################################################
+# Search Functions
+#####################################################################
+
+sub _contact_exact_group {
+    my $self = shift;
+    my %func_args = @_;
+    my ($chartid, $supptables, $f, $t, $v, $term) =
+        @func_args{qw(chartid supptables f t v term)};
+    my $user = $self->{'user'};
+    
+    $$v =~ m/%group\\.([^%]+)%/;
+    my $group = $1;
+    my $groupid = Bugzilla::Group::ValidateGroupName( $group, ($user));
+    $groupid || ThrowUserError('invalid_group_name',{name => $group});
+    my @childgroups = @{$user->flatten_group_membership($groupid)};
+    my $table = "user_group_map_$$chartid";
+    push (@$supptables, "LEFT JOIN user_group_map AS $table " .
+                        "ON $table.user_id = bugs.$$f " .
+                        "AND $table.group_id IN(" .
+                        join(',', @childgroups) . ") " .
+                        "AND $table.isbless = 0 " .
+                        "AND $table.grant_type IN(" .
+                        GRANT_DIRECT . "," . GRANT_REGEXP . ")"
+         );
+    if ($$t =~ /^not/) {
+        $$term = "$table.group_id IS NULL";
+    } else {
+        $$term = "$table.group_id IS NOT NULL";
+    }
+}
+
+sub _contact_exact {
+    my $self = shift;
+    my %func_args = @_;
+    my ($term, $f, $v) = @func_args{qw(term f v)};
+    my $user = $self->{'user'};
+    
+    $$v =~ m/(%\\w+%)/;
+    $$term = "bugs.$$f = " . pronoun($1, $user);
+}
+
+sub _contact_notequals {
+    my $self = shift;
+    my %func_args = @_;
+    my ($term, $f, $v) = @func_args{qw(term f v)};
+    my $user = $self->{'user'};
+    
+    $$v =~ m/(%\\w+%)/;
+    $$term = "bugs.$$f <> " . pronoun($1, $user);
+}
+
+sub _assigned_to_reporter_nonchanged {
+    my $self = shift;
+    my %func_args = @_;
+    my ($f, $ff, $funcsbykey, $t, $term) =
+        @func_args{qw(f ff funcsbykey t term)};
+    
+    my $real_f = $$f;
+    $$f = "login_name";
+    $$ff = "profiles.login_name";
+    $$funcsbykey{",$$t"}($self, %func_args);
+    $$term = "bugs.$real_f IN (SELECT userid FROM profiles WHERE $$term)";
+}
+
+sub _qa_contact_nonchanged {
+    my $self = shift;
+    my %func_args = @_;
+    my ($supptables, $f) =
+        @func_args{qw(supptables f)};
+    
+    push(@$supptables, "LEFT JOIN profiles AS map_qa_contact " .
+                       "ON bugs.qa_contact = map_qa_contact.userid");
+    $$f = "COALESCE(map_$$f.login_name,'')";
+}
+
+sub _cc_exact_group {
+    my $self = shift;
+    my %func_args = @_;
+    my ($chartid, $sequence, $supptables, $t, $v, $term) =
+        @func_args{qw(chartid sequence supptables t v term)};
+    my $user = $self->{'user'};
+    
+    $$v =~ m/%group\\.([^%]+)%/;
+    my $group = $1;
+    my $groupid = Bugzilla::Group::ValidateGroupName( $group, ($user));
+    $groupid || ThrowUserError('invalid_group_name',{name => $group});
+    my @childgroups = @{$user->flatten_group_membership($groupid)};
+    my $chartseq = $$chartid;
+    if ($$chartid eq "") {
+        $chartseq = "CC$$sequence";
+        $$sequence++;
+    }
+    my $table = "user_group_map_$chartseq";
+    push(@$supptables, "LEFT JOIN cc AS cc_$chartseq " .
+                       "ON bugs.bug_id = cc_$chartseq.bug_id");
+    push(@$supptables, "LEFT JOIN user_group_map AS $table " .
+                        "ON $table.user_id = cc_$chartseq.who " .
+                        "AND $table.group_id IN(" .
+                        join(',', @childgroups) . ") " .
+                        "AND $table.isbless = 0 " .
+                        "AND $table.grant_type IN(" .
+                        GRANT_DIRECT . "," . GRANT_REGEXP . ")"
+         );
+    if ($$t =~ /^not/) {
+        $$term = "$table.group_id IS NULL";
+    } else {
+        $$term = "$table.group_id IS NOT NULL";
+    }
+}
+
+sub _cc_exact {
+    my $self = shift;
+    my %func_args = @_;
+    my ($chartid, $sequence, $supptables, $term, $v) =
+        @func_args{qw(chartid sequence supptables term v)};
+    my $user = $self->{'user'};
+    
+    $$v =~ m/(%\\w+%)/;
+    my $match = pronoun($1, $user);
+    my $chartseq = $$chartid;
+    if ($$chartid eq "") {
+        $chartseq = "CC$$sequence";
+        $$sequence++;
+    }
+    push(@$supptables, "LEFT JOIN cc AS cc_$chartseq " .
+                       "ON bugs.bug_id = cc_$chartseq.bug_id " .
+                       "AND cc_$chartseq.who = $match");
+    $$term = "cc_$chartseq.who IS NOT NULL";
+}
+
+sub _cc_notequals {
+    my $self = shift;
+    my %func_args = @_;
+    my ($chartid, $sequence, $supptables, $term, $v) =
+        @func_args{qw(chartid sequence supptables term v)};
+    my $user = $self->{'user'};
+    
+    $$v =~ m/(%\\w+%)/;
+    my $match = pronoun($1, $user);
+    my $chartseq = $$chartid;
+    if ($$chartid eq "") {
+        $chartseq = "CC$$sequence";
+        $$sequence++;
+    }
+    push(@$supptables, "LEFT JOIN cc AS cc_$chartseq " .
+                       "ON bugs.bug_id = cc_$chartseq.bug_id " .
+                       "AND cc_$chartseq.who = $match");
+    $$term = "cc_$chartseq.who IS NULL";
+}
+
+sub _cc_nonchanged {
+    my $self = shift;
+    my %func_args = @_;
+    my ($chartid, $sequence, $f, $ff, $t, $funcsbykey, $supptables, $term, $v) =
+        @func_args{qw(chartid sequence f ff t funcsbykey supptables term v)};
+
+    my $chartseq = $$chartid;
+    if ($$chartid eq "") {
+        $chartseq = "CC$$sequence";
+        $$sequence++;
+    }
+    $$f = "login_name";
+    $$ff = "profiles.login_name";
+    $$funcsbykey{",$$t"}($self, %func_args);
+    push(@$supptables, "LEFT JOIN cc AS cc_$chartseq " .
+                       "ON bugs.bug_id = cc_$chartseq.bug_id " .
+                       "AND cc_$chartseq.who IN" .
+                       "(SELECT userid FROM profiles WHERE $$term)"
+                       );
+    $$term = "cc_$chartseq.who IS NOT NULL";
+}
+
+sub _long_desc_changedby {
+    my $self = shift;
+    my %func_args = @_;
+    my ($chartid, $supptables, $term, $v) =
+        @func_args{qw(chartid supptables term v)};
+    
+    my $table = "longdescs_$$chartid";
+    push(@$supptables, "LEFT JOIN longdescs AS $table " .
+                       "ON $table.bug_id = bugs.bug_id");
+    my $id = login_to_id($$v, THROW_ERROR);
+    $$term = "$table.who = $id";
+}
+
+sub _long_desc_changedbefore {
+    my $self = shift;
+    my %func_args = @_;
+    my ($chartid, $supptables, $term, $v) =
+        @func_args{qw(chartid supptables term v)};
+    my $dbh = Bugzilla->dbh;
+    
+    my $table = "longdescs_$$chartid";
+    push(@$supptables, "LEFT JOIN longdescs AS $table " .
+                       "ON $table.bug_id = bugs.bug_id");
+    $$term = "$table.bug_when < " . $dbh->quote(SqlifyDate($$v));
+}
+
+sub _long_desc_changedafter {
+    my $self = shift;
+    my %func_args = @_;
+    my ($chartid, $supptables, $term, $v) =
+        @func_args{qw(chartid supptables term v)};
+    my $dbh = Bugzilla->dbh;
+    
+    my $table = "longdescs_$$chartid";
+    push(@$supptables, "LEFT JOIN longdescs AS $table " .
+                       "ON $table.bug_id = bugs.bug_id");
+    $$term = "$table.bug_when > " . $dbh->quote(SqlifyDate($$v));
+}
+
+sub _content_matches {
+    my $self = shift;
+    my %func_args = @_;
+    my ($chartid, $supptables, $term, $groupby, $fields, $v) =
+        @func_args{qw(chartid supptables term groupby fields v)};
+    my $dbh = Bugzilla->dbh;
+    
+    # "content" is an alias for columns containing text for which we
+    # can search a full-text index and retrieve results by relevance, 
+    # currently just bug comments (and summaries to some degree).
+    # There's only one way to search a full-text index, so we only
+    # accept the "matches" operator, which is specific to full-text
+    # index searches.
+
+    # Add the longdescs table to the query so we can search comments.
+    my $table = "longdescs_$$chartid";
+    my $extra = "";
+    if (Bugzilla->params->{"insidergroup"} 
+        && !Bugzilla->user->in_group(Bugzilla->params->{"insidergroup"}))
+    {
+        $extra = "AND $table.isprivate < 1";
+    }
+    push(@$supptables, "LEFT JOIN longdescs AS $table " .
+                       "ON bugs.bug_id = $table.bug_id $extra");
+
+    # Create search terms to add to the SELECT and WHERE clauses.
+    # $term1 searches comments.
+    my $term1 = $dbh->sql_fulltext_search("${table}.thetext", $$v);
+
+    # short_desc searching for the WHERE clause
+    my @words = _split_words_into_like('bugs.short_desc', $$v);
+    my $term2_where = join(' OR ', @words);
+
+    # short_desc relevance
+    my $factor = SUMMARY_RELEVANCE_FACTOR;
+    my @s_words = map("CASE WHEN $_ THEN $factor ELSE 0 END", @words);
+    my $term2_select = join(' + ', @s_words);
+
+    # The term to use in the WHERE clause.
+    $$term = "$term1 > 0 OR ($term2_where)";
+
+    # In order to sort by relevance (in case the user requests it),
+    # we SELECT the relevance value and give it an alias so we can
+    # add it to the SORT BY clause when we build it in buglist.cgi.
+    #
+    # Note: We should be calculating the relevance based on all
+    # comments for a bug, not just matching comments, but that's hard
+    # (see http://bugzilla.mozilla.org/show_bug.cgi?id=145588#c35).
+    my $select_term = "(SUM($term1) + $term2_select) AS relevance";
+
+    # add the column not used in aggregate function explicitly
+    push(@$groupby, 'bugs.short_desc');
+
+    # Users can specify to display the relevance field, in which case
+    # it'll show up in the list of fields being selected, and we need
+    # to replace that occurrence with our select term.  Otherwise
+    # we can just add the term to the list of fields being selected.
+    if (grep($_ eq "relevance", @$fields)) {
+        @$fields = map($_ eq "relevance" ? $select_term : $_ , @$fields);
+    }
+    else {
+        push(@$fields, $select_term);
+    }
+}
+
+sub _timestamp_compare {
+    my $self = shift;
+    my %func_args = @_;
+    my ($v, $q) = @func_args{qw(v q)};
+    my $dbh = Bugzilla->dbh;
+    
+    $$v = SqlifyDate($$v);
+    $$q = $dbh->quote($$v);
+}
+
+sub _commenter_exact {
+    my $self = shift;
+    my %func_args = @_;
+    my ($chartid, $sequence, $supptables, $term, $v) =
+        @func_args{qw(chartid sequence supptables term v)};
+    my $user = $self->{'user'};
+    
+    $$v =~ m/(%\\w+%)/;
+    my $match = pronoun($1, $user);
+    my $chartseq = $$chartid;
+    if ($$chartid eq "") {
+        $chartseq = "LD$$sequence";
+        $$sequence++;
+    }
+    my $table = "longdescs_$chartseq";
+    my $extra = "";
+    if (Bugzilla->params->{"insidergroup"} 
+        && !Bugzilla->user->in_group(Bugzilla->params->{"insidergroup"})) 
+    {
+        $extra = "AND $table.isprivate < 1";
+    }
+    push(@$supptables, "LEFT JOIN longdescs AS $table " .
+                       "ON $table.bug_id = bugs.bug_id $extra " .
+                       "AND $table.who IN ($match)");
+    $$term = "$table.who IS NOT NULL";
+}
+
+sub _commenter {
+    my $self = shift;
+    my %func_args = @_;
+    my ($chartid, $sequence, $supptables, $f, $ff, $t, $funcsbykey, $term) =
+        @func_args{qw(chartid sequence supptables f ff t funcsbykey term)};
+
+    my $chartseq = $$chartid;
+    if ($$chartid eq "") {
+        $chartseq = "LD$$sequence";
+        $$sequence++;
+    }
+    my $table = "longdescs_$chartseq";
+    my $extra = "";
+    if (Bugzilla->params->{"insidergroup"} 
+        && !Bugzilla->user->in_group(Bugzilla->params->{"insidergroup"})) 
+    {
+        $extra = "AND $table.isprivate < 1";
+    }
+    $$f = "login_name";
+    $$ff = "profiles.login_name";
+    $$funcsbykey{",$$t"}($self, %func_args);
+    push(@$supptables, "LEFT JOIN longdescs AS $table " .
+                       "ON $table.bug_id = bugs.bug_id $extra " .
+                       "AND $table.who IN" .
+                       "(SELECT userid FROM profiles WHERE $$term)"
+                       );
+    $$term = "$table.who IS NOT NULL";
+}
+
+sub _long_desc {
+    my $self = shift;
+    my %func_args = @_;
+    my ($chartid, $supptables, $f) =
+        @func_args{qw(chartid supptables f)};
+    
+    my $table = "longdescs_$$chartid";
+    my $extra = "";
+    if (Bugzilla->params->{"insidergroup"} 
+        && !Bugzilla->user->in_group(Bugzilla->params->{"insidergroup"})) 
+    {
+        $extra = "AND $table.isprivate < 1";
+    }
+    push(@$supptables, "LEFT JOIN longdescs AS $table " .
+                       "ON $table.bug_id = bugs.bug_id $extra");
+    $$f = "$table.thetext";
+}
+
+sub _longdescs_isprivate {
+    my $self = shift;
+    my %func_args = @_;
+    my ($chartid, $supptables, $f) =
+        @func_args{qw(chartid supptables f)};
+    
+    my $table = "longdescs_$$chartid";
+    my $extra = "";
+    if (Bugzilla->params->{"insidergroup"}
+        && !Bugzilla->user->in_group(Bugzilla->params->{"insidergroup"}))
+    {
+        $extra = "AND $table.isprivate < 1";
+    }
+    push(@$supptables, "LEFT JOIN longdescs AS $table " .
+                      "ON $table.bug_id = bugs.bug_id $extra");
+    $$f = "$table.isprivate";
+}
+
+sub _work_time_changedby {
+    my $self = shift;
+    my %func_args = @_;
+    my ($chartid, $supptables, $v, $term) =
+        @func_args{qw(chartid supptables v term)};
+    
+    my $table = "longdescs_$$chartid";
+    push(@$supptables, "LEFT JOIN longdescs AS $table " .
+                       "ON $table.bug_id = bugs.bug_id");
+    my $id = login_to_id($$v, THROW_ERROR);
+    $$term = "(($table.who = $id";
+    $$term .= ") AND ($table.work_time <> 0))";
+}
+
+sub _work_time_changedbefore {
+    my $self = shift;
+    my %func_args = @_;
+    my ($chartid, $supptables, $v, $term) =
+        @func_args{qw(chartid supptables v term)};
+    my $dbh = Bugzilla->dbh;
+
+    my $table = "longdescs_$$chartid";
+    push(@$supptables, "LEFT JOIN longdescs AS $table " .
+                       "ON $table.bug_id = bugs.bug_id");
+    $$term = "(($table.bug_when < " . $dbh->quote(SqlifyDate($$v));
+    $$term .= ") AND ($table.work_time <> 0))";
+}
+
+sub _work_time_changedafter {
+    my $self = shift;
+    my %func_args = @_;
+    my ($chartid, $supptables, $v, $term) =
+        @func_args{qw(chartid supptables v term)};
+    my $dbh = Bugzilla->dbh;
+    
+    my $table = "longdescs_$$chartid";
+    push(@$supptables, "LEFT JOIN longdescs AS $table " .
+                       "ON $table.bug_id = bugs.bug_id");
+    $$term = "(($table.bug_when > " . $dbh->quote(SqlifyDate($$v));
+    $$term .= ") AND ($table.work_time <> 0))";
+}
+
+sub _work_time {
+    my $self = shift;
+    my %func_args = @_;
+    my ($chartid, $supptables, $f) =
+        @func_args{qw(chartid supptables f)};
+    
+    my $table = "longdescs_$$chartid";
+    push(@$supptables, "LEFT JOIN longdescs AS $table " .
+                      "ON $table.bug_id = bugs.bug_id");
+    $$f = "$table.work_time";
+}
+
+sub _percentage_complete {
+    my $self = shift;
+    my %func_args = @_;
+    my ($t, $chartid, $supptables, $fields, $q, $v, $having, $groupby, $term) =
+        @func_args{qw(t chartid supptables fields q v having groupby term)};
+    my $dbh = Bugzilla->dbh;
+    
+    my $oper;
+    if ($$t eq "equals") {
+        $oper = "=";
+    } elsif ($$t eq "greaterthan") {
+        $oper = ">";
+    } elsif ($$t eq "lessthan") {
+        $oper = "<";
+    } elsif ($$t eq "notequal") {
+        $oper = "<>";
+    } elsif ($$t eq "regexp") {
+        # This is just a dummy to help catch bugs- $oper won't be used
+        # since "regexp" is treated as a special case below.  But
+        # leaving $oper uninitialized seems risky...
+        $oper = "sql_regexp";
+    } elsif ($$t eq "notregexp") {
+        # This is just a dummy to help catch bugs- $oper won't be used
+        # since "notregexp" is treated as a special case below.  But
+        # leaving $oper uninitialized seems risky...
+        $oper = "sql_not_regexp";
+    } else {
+        $oper = "noop";
+    }
+    if ($oper ne "noop") {
+        my $table = "longdescs_$$chartid";
+        if(lsearch(@$fields, "bugs.remaining_time") == -1) {
+            push(@$fields, "bugs.remaining_time");                  
+        }
+        push(@$supptables, "LEFT JOIN longdescs AS $table " .
+                           "ON $table.bug_id = bugs.bug_id");
+        my $expression = "(100 * ((SUM($table.work_time) *
+                                    COUNT(DISTINCT $table.bug_when) /
+                                    COUNT(bugs.bug_id)) /
+                                   ((SUM($table.work_time) *
+                                     COUNT(DISTINCT $table.bug_when) /
+                                     COUNT(bugs.bug_id)) +
+                                    bugs.remaining_time)))";
+        $$q = $dbh->quote($$v);
+        trick_taint($$q);
+        if ($$t eq "regexp") {
+            push(@$having, $dbh->sql_regexp($expression, $$q));
+        } elsif ($$t eq "notregexp") {
+            push(@$having, $dbh->sql_not_regexp($expression, $$q));
+        } else {
+            push(@$having, "$expression $oper " . $$q);
+        }
+        push(@$groupby, "bugs.remaining_time");
+    }
+    $$term = "0=0";
+}
+
+sub _bug_group_nonchanged {
+    my $self = shift;
+    my %func_args = @_;
+    my ($supptables, $chartid, $ff, $f, $t, $funcsbykey, $term) =
+        @func_args{qw(supptables chartid ff f t funcsbykey term)};
+    
+    push(@$supptables,
+            "LEFT JOIN bug_group_map AS bug_group_map_$$chartid " .
+            "ON bugs.bug_id = bug_group_map_$$chartid.bug_id");
+    $$ff = $$f = "groups_$$chartid.name";
+    $$funcsbykey{",$$t"}($self, %func_args);
+    push(@$supptables,
+            "LEFT JOIN groups AS groups_$$chartid " .
+            "ON groups_$$chartid.id = bug_group_map_$$chartid.group_id " .
+            "AND $$term");
+    $$term = "$$ff IS NOT NULL";
+}
+
+sub _attach_data_thedata_changed {
+    my $self = shift;
+    my %func_args = @_;
+    my ($f) = @func_args{qw(f)};
+    
+    # Searches for attachment data's change must search
+    # the creation timestamp of the attachment instead.
+    $$f = "attachments.whocares";
+}
+
+sub _attach_data_thedata {
+    my $self = shift;
+    my %func_args = @_;
+    my ($chartid, $supptables, $f) =
+        @func_args{qw(chartid supptables f)};
+    
+    my $atable = "attachments_$$chartid";
+    my $dtable = "attachdata_$$chartid";
+    my $extra = "";
+    if (Bugzilla->params->{"insidergroup"} 
+        && !Bugzilla->user->in_group(Bugzilla->params->{"insidergroup"})) 
+    {
+        $extra = "AND $atable.isprivate = 0";
+    }
+    push(@$supptables, "INNER JOIN attachments AS $atable " .
+                       "ON bugs.bug_id = $atable.bug_id $extra");
+    push(@$supptables, "INNER JOIN attach_data AS $dtable " .
+                       "ON $dtable.id = $atable.attach_id");
+    $$f = "$dtable.thedata";
+}
+
+sub _attachments_submitter {
+    my $self = shift;
+    my %func_args = @_;
+    my ($chartid, $supptables, $f) =
+        @func_args{qw(chartid supptables f)};
+    
+    my $atable = "map_attachment_submitter_$$chartid";
+    my $extra = "";
+    if (Bugzilla->params->{"insidergroup"}
+        && !Bugzilla->user->in_group(Bugzilla->params->{"insidergroup"}))
+    {
+        $extra = "AND $atable.isprivate = 0";
+    }
+    push(@$supptables, "INNER JOIN attachments AS $atable " .
+                       "ON bugs.bug_id = $atable.bug_id $extra");
+    push(@$supptables, "LEFT JOIN profiles AS attachers_$$chartid " .
+                       "ON $atable.submitter_id = attachers_$$chartid.userid");
+    $$f = "attachers_$$chartid.login_name";
+}
+
+sub _attachments {
+    my $self = shift;
+    my %func_args = @_;
+    my ($chartid, $supptables, $f, $t, $v, $q) =
+        @func_args{qw(chartid supptables f t v q)};
+    my $dbh = Bugzilla->dbh;
+    
+    my $table = "attachments_$$chartid";
+    my $extra = "";
+    if (Bugzilla->params->{"insidergroup"} 
+        && !Bugzilla->user->in_group(Bugzilla->params->{"insidergroup"})) 
+    {
+        $extra = "AND $table.isprivate = 0";
+    }
+    push(@$supptables, "INNER JOIN attachments AS $table " .
+                       "ON bugs.bug_id = $table.bug_id $extra");
+    $$f =~ m/^attachments\.(.*)$/;
+    my $field = $1;
+    if ($$t eq "changedby") {
+        $$v = login_to_id($$v, THROW_ERROR);
+        $$q = $dbh->quote($$v);
+        $field = "submitter_id";
+        $$t = "equals";
+    } elsif ($$t eq "changedbefore") {
+        $$v = SqlifyDate($$v);
+        $$q = $dbh->quote($$v);
+        $field = "creation_ts";
+        $$t = "lessthan";
+    } elsif ($$t eq "changedafter") {
+        $$v = SqlifyDate($$v);
+        $$q = $dbh->quote($$v);
+        $field = "creation_ts";
+        $$t = "greaterthan";
+    }
+    if ($field eq "ispatch" && $$v ne "0" && $$v ne "1") {
+        ThrowUserError("illegal_attachment_is_patch");
+    }
+    if ($field eq "isobsolete" && $$v ne "0" && $$v ne "1") {
+        ThrowUserError("illegal_is_obsolete");
+    }
+    $$f = "$table.$field";
+}
+
+sub _flagtypes_name {
+    my $self = shift;
+    my %func_args = @_;
+    my ($t, $chartid, $supptables, $ff, $funcsbykey, $having, $term) =
+        @func_args{qw(t chartid supptables ff funcsbykey having term)};
+    my $dbh = Bugzilla->dbh;
+    
+    # Matches bugs by flag name/status.
+    # Note that--for the purposes of querying--a flag comprises
+    # its name plus its status (i.e. a flag named "review" 
+    # with a status of "+" can be found by searching for "review+").
+    
+    # Don't do anything if this condition is about changes to flags,
+    # as the generic change condition processors can handle those.
+    return if ($$t =~ m/^changed/);
+    
+    # Add the flags and flagtypes tables to the query.  We do 
+    # a left join here so bugs without any flags still match 
+    # negative conditions (f.e. "flag isn't review+").
+    my $flags = "flags_$$chartid";
+    push(@$supptables, "LEFT JOIN flags AS $flags " . 
+                       "ON bugs.bug_id = $flags.bug_id ");
+    my $flagtypes = "flagtypes_$$chartid";
+    push(@$supptables, "LEFT JOIN flagtypes AS $flagtypes " . 
+                       "ON $flags.type_id = $flagtypes.id");
+    
+    # Generate the condition by running the operator-specific
+    # function. Afterwards the condition resides in the global $term
+    # variable.
+    $$ff = $dbh->sql_string_concat("${flagtypes}.name",
+                                   "$flags.status");
+    $$funcsbykey{",$$t"}($self, %func_args);
+    
+    # If this is a negative condition (f.e. flag isn't "review+"),
+    # we only want bugs where all flags match the condition, not 
+    # those where any flag matches, which needs special magic.
+    # Instead of adding the condition to the WHERE clause, we select
+    # the number of flags matching the condition and the total number
+    # of flags on each bug, then compare them in a HAVING clause.
+    # If the numbers are the same, all flags match the condition,
+    # so this bug should be included.
+    if ($$t =~ m/not/) {
+       push(@$having,
+            "SUM(CASE WHEN $$ff IS NOT NULL THEN 1 ELSE 0 END) = " .
+            "SUM(CASE WHEN $$term THEN 1 ELSE 0 END)");
+       $$term = "0=0";
+    }
+}
+
+sub _requestees_login_name {
+    my $self = shift;
+    my %func_args = @_;
+    my ($f, $chartid, $supptables) = @func_args{qw(f chartid supptables)};
+    
+    my $flags = "flags_$$chartid";
+    push(@$supptables, "LEFT JOIN flags AS $flags " .
+                       "ON bugs.bug_id = $flags.bug_id ");
+    push(@$supptables, "LEFT JOIN profiles AS requestees_$$chartid " .
+                       "ON $flags.requestee_id = requestees_$$chartid.userid");
+    $$f = "requestees_$$chartid.login_name";
+}
+
+sub _setters_login_name {
+    my $self = shift;
+    my %func_args = @_;
+    my ($f, $chartid, $supptables) = @func_args{qw(f chartid supptables)};
+    
+    my $flags = "flags_$$chartid";
+    push(@$supptables, "LEFT JOIN flags AS $flags " .
+                       "ON bugs.bug_id = $flags.bug_id ");
+    push(@$supptables, "LEFT JOIN profiles AS setters_$$chartid " .
+                       "ON $flags.setter_id = setters_$$chartid.userid");
+    $$f = "setters_$$chartid.login_name";
+}
+
+sub _changedin_days_elapsed {
+    my $self = shift;
+    my %func_args = @_;
+    my ($f) = @func_args{qw(f)};
+    my $dbh = Bugzilla->dbh;
+    
+    $$f = "(" . $dbh->sql_to_days('NOW()') . " - " .
+                $dbh->sql_to_days('bugs.delta_ts') . ")";
+}
+
+sub _component_nonchanged {
+    my $self = shift;
+    my %func_args = @_;
+    my ($f, $ff, $t, $funcsbykey, $term) =
+        @func_args{qw(f ff t funcsbykey term)};
+    
+    $$f = $$ff = "components.name";
+    $$funcsbykey{",$$t"}($self, %func_args);
+    $$term = build_subselect("bugs.component_id",
+                             "components.id",
+                             "components",
+                             $$term);
+}
+sub _product_nonchanged {
+    my $self = shift;
+    my %func_args = @_;
+    my ($f, $ff, $t, $funcsbykey, $term) =
+        @func_args{qw(f ff t funcsbykey term)};
+    
+    # Generate the restriction condition
+    $$f = $$ff = "products.name";
+    $$funcsbykey{",$$t"}($self, %func_args);
+    $$term = build_subselect("bugs.product_id",
+                             "products.id",
+                             "products",
+                             $$term);
+}
+
+sub _classification_nonchanged {
+    my $self = shift;
+    my %func_args = @_;
+    my ($chartid, $v, $ff, $f, $funcsbykey, $t, $supptables, $term) =
+        @func_args{qw(chartid v ff f funcsbykey t supptables term)};
+    
+    # Generate the restriction condition
+    push @$supptables, "INNER JOIN products AS map_products " .
+                      "ON bugs.product_id = map_products.id";
+    $$f = $$ff = "classifications.name";
+    $$funcsbykey{",$$t"}($self, %func_args);
+    $$term = build_subselect("map_products.classification_id",
+                             "classifications.id",
+                             "classifications",
+                              $$term);
+}
+
+sub _keywords_nonchanged {
+    my $self = shift;
+    my %func_args = @_;
+    my ($chartid, $v, $ff, $f, $t, $term, $supptables) =
+        @func_args{qw(chartid v ff f t term)};
+    
+    my @list;
+    my $table = "keywords_$$chartid";
+    foreach my $value (split(/[\s,]+/, $$v)) {
+        if ($value eq '') {
+            next;
+        }
+        my $keyword = new Bugzilla::Keyword({name => $value});
+        if ($keyword) {
+            push(@list, "$table.keywordid = " . $keyword->id);
+        }
+        else {
+            ThrowUserError("unknown_keyword",
+                           { keyword => $$v });
+        }
+    }
+    my $haveawordterm;
+    if (@list) {
+        $haveawordterm = "(" . join(' OR ', @list) . ")";
+        if ($$t eq "anywords") {
+            $$term = $haveawordterm;
+        } elsif ($$t eq "allwords") {
+            $self->_allwords;
+            if ($$term && $haveawordterm) {
+                $$term = "(($$term) AND $haveawordterm)";
+            }
+        }
+    }
+    if ($$term) {
+        push(@$supptables, "LEFT JOIN keywords AS $table " .
+                           "ON $table.bug_id = bugs.bug_id");
+    }
+}
+
+sub _dependson_nonchanged {
+    my $self = shift;
+    my %func_args = @_;
+    my ($chartid, $ff, $f, $funcsbykey, $t, $term, $supptables) =
+        @func_args{qw(chartid ff f funcsbykey t term supptables)};
+    
+    my $table = "dependson_" . $$chartid;
+    $$ff = "$table.$$f";
+    $$funcsbykey{",$$t"}($self, %func_args);
+    push(@$supptables, "LEFT JOIN dependencies AS $table " .
+                       "ON $table.blocked = bugs.bug_id " .
+                       "AND ($$term)");
+    $$term = "$$ff IS NOT NULL";
+}
+
+sub _blocked_nonchanged {
+    my $self = shift;
+    my %func_args = @_;
+    my ($chartid, $ff, $f, $funcsbykey, $t, $term, $supptables) =
+        @func_args{qw(chartid ff f funcsbykey t term supptables)};
+
+    my $table = "blocked_" . $$chartid;
+    $$ff = "$table.$$f";
+    $$funcsbykey{",$$t"}($self, %func_args);
+    push(@$supptables, "LEFT JOIN dependencies AS $table " .
+                       "ON $table.dependson = bugs.bug_id " .
+                       "AND ($$term)");
+    $$term = "$$ff IS NOT NULL";
+}
+
+sub _alias_nonchanged {
+    my $self = shift;
+    my %func_args = @_;
+    my ($ff, $funcsbykey, $t, $term) =
+        @func_args{qw(ff funcsbykey t term)};
+    
+    $$ff = "COALESCE(bugs.alias, '')";
+    
+    $$funcsbykey{",$$t"}($self, %func_args);
+}
+
+sub _owner_idle_time_greater_less {
+    my $self = shift;
+    my %func_args = @_;
+    my ($chartid, $v, $supptables, $t, $wherepart, $term) =
+        @func_args{qw(chartid v supptables t wherepart term)};
+    my $dbh = Bugzilla->dbh;
+    
+    my $table = "idle_" . $$chartid;
+    $$v =~ /^(\d+)\s*([hHdDwWmMyY])?$/;
+    my $quantity = $1;
+    my $unit = lc $2;
+    my $unitinterval = 'DAY';
+    if ($unit eq 'h') {
+        $unitinterval = 'HOUR';
+    } elsif ($unit eq 'w') {
+        $unitinterval = ' * 7 DAY';
+    } elsif ($unit eq 'm') {
+        $unitinterval = 'MONTH';
+    } elsif ($unit eq 'y') {
+        $unitinterval = 'YEAR';
+    }
+    my $cutoff = "NOW() - " .
+                 $dbh->sql_interval($quantity, $unitinterval);
+    my $assigned_fieldid = get_field_id('assigned_to');
+    push(@$supptables, "LEFT JOIN longdescs AS comment_$table " .
+                       "ON comment_$table.who = bugs.assigned_to " .
+                       "AND comment_$table.bug_id = bugs.bug_id " .
+                       "AND comment_$table.bug_when > $cutoff");
+    push(@$supptables, "LEFT JOIN bugs_activity AS activity_$table " .
+                       "ON (activity_$table.who = bugs.assigned_to " .
+                       "OR activity_$table.fieldid = $assigned_fieldid) " .
+                       "AND activity_$table.bug_id = bugs.bug_id " .
+                       "AND activity_$table.bug_when > $cutoff");
+    if ($$t =~ /greater/) {
+        push(@$wherepart, "(comment_$table.who IS NULL " .
+                          "AND activity_$table.who IS NULL)");
+    } else {
+        push(@$wherepart, "(comment_$table.who IS NOT NULL " .
+                          "OR activity_$table.who IS NOT NULL)");
+    }
+    $$term = "0=0";
+}
+
+sub _equals {
+    my $self = shift;
+    my %func_args = @_;
+    my ($ff, $q, $term) = @func_args{qw(ff q term)};
+    
+    $$term = "$$ff = $$q";
+}
+
+sub _notequals {
+    my $self = shift;
+    my %func_args = @_;
+    my ($ff, $q, $term) = @func_args{qw(ff q term)};
+    
+    $$term = "$$ff != $$q";
+}
+
+sub _casesubstring {
+    my $self = shift;
+    my %func_args = @_;
+    my ($ff, $q, $term) = @func_args{qw(ff q term)};
+    my $dbh = Bugzilla->dbh;
+    
+    $$term = $dbh->sql_position($$q, $$ff) . " > 0";
+}
+
+sub _substring {
+    my $self = shift;
+    my %func_args = @_;
+    my ($ff, $q, $term) = @func_args{qw(ff q term)};
+    my $dbh = Bugzilla->dbh;
+    
+    $$term = $dbh->sql_position(lc($$q), "LOWER($$ff)") . " > 0";
+}
+
+sub _notsubstring {
+    my $self = shift;
+    my %func_args = @_;
+    my ($ff, $q, $term) = @func_args{qw(ff q term)};
+    my $dbh = Bugzilla->dbh;
+    
+    $$term = $dbh->sql_position(lc($$q), "LOWER($$ff)") . " = 0";
+}
+
+sub _regexp {
+    my $self = shift;
+    my %func_args = @_;
+    my ($ff, $q, $term) = @func_args{qw(ff q term)};
+    my $dbh = Bugzilla->dbh;
+    
+    $$term = $dbh->sql_regexp($$ff, $$q);
+}
+
+sub _notregexp {
+    my $self = shift;
+    my %func_args = @_;
+    my ($ff, $q, $term) = @func_args{qw(ff q term)};
+    my $dbh = Bugzilla->dbh;
+    
+    $$term = $dbh->sql_not_regexp($$ff, $$q);
+}
+
+sub _lessthan {
+    my $self = shift;
+    my %func_args = @_;
+    my ($ff, $q, $term) = @func_args{qw(ff q term)};
+
+    $$term = "$$ff < $$q";
+}
+
+sub _greaterthan {
+    my $self = shift;
+    my %func_args = @_;
+    my ($ff, $q, $term) = @func_args{qw(ff q term)};
+    
+    $$term = "$$ff > $$q";
+}
+
+sub _anyexact {
+    my $self = shift;
+    my %func_args = @_;
+    my ($f, $ff, $v, $q, $term) = @func_args{qw(f ff v q term)};
+    my $dbh = Bugzilla->dbh;
+    
+    my @list;
+    foreach my $w (split(/,/, $$v)) {
+        if ($w eq "---" && $$f !~ /resolution/) {
+            $w = "";
+        }
+        $$q = $dbh->quote($w);
+        trick_taint($$q);
+        push(@list, $$q);
+    }
+    if (@list) {
+        $$term = $dbh->sql_in($$ff, \@list);
+    }
+}
+
+sub _anywordsubstr {
+    my $self = shift;
+    my %func_args = @_;
+    my ($ff, $v, $term) = @func_args{qw(ff v term)};
+    
+    $$term = join(" OR ", @{GetByWordListSubstr($$ff, $$v)});
+}
+
+sub _allwordssubstr {
+    my $self = shift;
+    my %func_args = @_;
+    my ($ff, $v, $term) = @func_args{qw(ff v term)};
+    
+    $$term = join(" AND ", @{GetByWordListSubstr($$ff, $$v)});
+}
+
+sub _nowordssubstr {
+    my $self = shift;
+    my %func_args = @_;
+    my ($ff, $v, $term) = @func_args{qw(ff v term)};
+    
+    my @list = @{GetByWordListSubstr($$ff, $$v)};
+    if (@list) {
+        $$term = "NOT (" . join(" OR ", @list) . ")";
+    }
+}
+
+sub _anywords {
+    my $self = shift;
+    my %func_args = @_;
+    my ($ff, $v, $term) = @func_args{qw(ff v term)};
+    
+    $$term = join(" OR ", @{GetByWordList($$ff, $$v)});
+}
+
+sub _allwords {
+    my $self = shift;
+    my %func_args = @_;
+    my ($ff, $v, $term) = @func_args{qw(ff v term)};
+    
+    $$term = join(" AND ", @{GetByWordList($$ff, $$v)});
+}
+
+sub _nowords {
+    my $self = shift;
+    my %func_args = @_;
+    my ($ff, $v, $term) = @func_args{qw(ff v term)};
+    
+    my @list = @{GetByWordList($$ff, $$v)};
+    if (@list) {
+        $$term = "NOT (" . join(" OR ", @list) . ")";
+    }
+}
+
+sub _changedbefore_changedafter {
+    my $self = shift;
+    my %func_args = @_;
+    my ($chartid, $f, $ff, $t, $v, $chartfields, $supptables, $term) =
+        @func_args{qw(chartid f ff t v chartfields supptables term)};
+    my $dbh = Bugzilla->dbh;
+    
+    my $operator = ($$t =~ /before/) ? '<' : '>';
+    my $table = "act_$$chartid";
+    my $fieldid = $$chartfields{$$f};
+    if (!$fieldid) {
+        ThrowCodeError("invalid_field_name", {field => $$f});
+    }
+    push(@$supptables, "LEFT JOIN bugs_activity AS $table " .
+                      "ON $table.bug_id = bugs.bug_id " .
+                      "AND $table.fieldid = $fieldid " .
+                      "AND $table.bug_when $operator " . 
+                      $dbh->quote(SqlifyDate($$v)) );
+    $$term = "($table.bug_when IS NOT NULL)";
+}
+
+sub _changedfrom_changedto {
+    my $self = shift;
+    my %func_args = @_;
+    my ($chartid, $chartfields, $f, $t, $v, $q, $supptables, $term) =
+        @func_args{qw(chartid chartfields f t v q supptables term)};
+    
+    my $operator = ($$t =~ /from/) ? 'removed' : 'added';
+    my $table = "act_$$chartid";
+    my $fieldid = $$chartfields{$$f};
+    if (!$fieldid) {
+        ThrowCodeError("invalid_field_name", {field => $$f});
+    }
+    push(@$supptables, "LEFT JOIN bugs_activity AS $table " .
+                      "ON $table.bug_id = bugs.bug_id " .
+                      "AND $table.fieldid = $fieldid " .
+                      "AND $table.$operator = $$q");
+    $$term = "($table.bug_when IS NOT NULL)";
+}
+
+sub _changedby {
+    my $self = shift;
+    my %func_args = @_;
+    my ($chartid, $chartfields, $f, $v, $supptables, $term) =
+        @func_args{qw(chartid chartfields f v supptables term)};
+    
+    my $table = "act_$$chartid";
+    my $fieldid = $$chartfields{$$f};
+    if (!$fieldid) {
+        ThrowCodeError("invalid_field_name", {field => $$f});
+    }
+    my $id = login_to_id($$v, THROW_ERROR);
+    push(@$supptables, "LEFT JOIN bugs_activity AS $table " .
+                      "ON $table.bug_id = bugs.bug_id " .
+                      "AND $table.fieldid = $fieldid " .
+                      "AND $table.who = $id");
+    $$term = "($table.bug_when IS NOT NULL)";
+}
+
 1;
diff --git a/Bugzilla/Search/CVS/Entries b/Bugzilla/Search/CVS/Entries
index c55b180ffa91b0484a84280ed5633f7a32b90e57..dd465ff5562ecc745ba01fa6dcb7a2cb1e50a273 100644
--- a/Bugzilla/Search/CVS/Entries
+++ b/Bugzilla/Search/CVS/Entries
@@ -1,3 +1,3 @@
-/Quicksearch.pm/1.17/Fri Jul 20 12:55:55 2007//TBUGZILLA-3_1_2
-/Saved.pm/1.5/Fri Jul 13 15:16:06 2007//TBUGZILLA-3_1_2
+/Quicksearch.pm/1.20/Sat Jan  5 14:16:29 2008//TBUGZILLA-3_1_3
+/Saved.pm/1.6/Sun Nov 18 20:20:54 2007//TBUGZILLA-3_1_3
 D
diff --git a/Bugzilla/Search/CVS/Tag b/Bugzilla/Search/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/Bugzilla/Search/CVS/Tag
+++ b/Bugzilla/Search/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/Bugzilla/Search/Quicksearch.pm b/Bugzilla/Search/Quicksearch.pm
index 884479e50a896e588051d51ff465af7531f67324..df54952d55e7df3e3d7c6e150c9faf0a19450f2a 100644
--- a/Bugzilla/Search/Quicksearch.pm
+++ b/Bugzilla/Search/Quicksearch.pm
@@ -26,7 +26,7 @@ use strict;
 use Bugzilla::Error;
 use Bugzilla::Constants;
 use Bugzilla::Keyword;
-use Bugzilla::Bug;
+use Bugzilla::Status;
 use Bugzilla::Field;
 use Bugzilla::Util;
 
@@ -274,9 +274,9 @@ sub quicksearch {
                 foreach my $or_operand (split(/\|/, $qsword)) {
                     if ($or_operand =~ /^votes:([0-9]+)$/) {
                         # votes:xx ("at least xx votes")
-                        addChart('votes', 'greaterthan', $1, $negate);
+                        addChart('votes', 'greaterthan', $1 - 1, $negate);
                     }
-                    elsif ($or_operand =~ /^([^\?]+\?)([^\?]*)$/) {
+                    elsif ($or_operand =~ /^(?:flag:)?([^\?]+\?)([^\?]*)$/) {
                         # Flag and requestee shortcut
                         addChart('flagtypes.name', 'substring', $1, $negate);
                         $chart++; $and = $or = 0; # Next chart for boolean AND
diff --git a/Bugzilla/Search/Saved.pm b/Bugzilla/Search/Saved.pm
index bcc72cffec2cacfde2683f3dd19412066827704c..3484eb3bce39e9f25672504e1701fade0f36bf76 100644
--- a/Bugzilla/Search/Saved.pm
+++ b/Bugzilla/Search/Saved.pm
@@ -97,13 +97,12 @@ sub create {
     Bugzilla->login(LOGIN_REQUIRED);
     my $dbh = Bugzilla->dbh;
     $class->check_required_create_fields(@_);
+    $dbh->bz_start_transaction();
     my $params = $class->run_create_validators(@_);
 
     # Right now you can only create a Saved Search for the current user.
     $params->{userid} = Bugzilla->user->id;
 
-    $dbh->bz_lock_tables('namedqueries WRITE',
-                         'namedqueries_link_in_footer WRITE');
     my $lif = delete $params->{link_in_footer};
     my $obj = $class->insert_create_data($params);
     if ($lif) {
@@ -111,7 +110,7 @@ sub create {
                   (user_id, namedquery_id) VALUES (?,?)',
                  undef, $params->{userid}, $obj->id);
     }
-    $dbh->bz_unlock_tables();
+    $dbh->bz_commit_transaction();
 
     return $obj;
 }
diff --git a/Bugzilla/Series.pm b/Bugzilla/Series.pm
index 877f69866e1ad07b9a93aa03c6508b6d60a1b1de..a99c442fe7e0a10038257abdd46df45beab5a132 100644
--- a/Bugzilla/Series.pm
+++ b/Bugzilla/Series.pm
@@ -21,7 +21,6 @@
 #                 Lance Larsh <lance.larsh@oracle.com>
 
 use strict;
-use lib ".";
 
 # This module implements a series - a set of data to be plotted on a chart.
 #
@@ -171,7 +170,7 @@ sub writeToDatabase {
     my $self = shift;
 
     my $dbh = Bugzilla->dbh;
-    $dbh->bz_lock_tables('series_categories WRITE', 'series WRITE');
+    $dbh->bz_start_transaction();
 
     my $category_id = getCategoryID($self->{'category'});
     my $subcategory_id = getCategoryID($self->{'subcategory'});
@@ -210,7 +209,7 @@ sub writeToDatabase {
           || ThrowCodeError("missing_series_id", { 'series' => $self });
     }
     
-    $dbh->bz_unlock_tables();
+    $dbh->bz_commit_transaction();
 }
 
 # Check whether a series with this name, category and subcategory exists in
diff --git a/Bugzilla/Status.pm b/Bugzilla/Status.pm
index 9af0f043cbb714638ff5746c1aa9888b8d60b10f..5573fa8363e949d3ecf6326484ab491d28a67271 100644
--- a/Bugzilla/Status.pm
+++ b/Bugzilla/Status.pm
@@ -22,7 +22,8 @@ use strict;
 
 package Bugzilla::Status;
 
-use base qw(Bugzilla::Object);
+use base qw(Bugzilla::Object Exporter);
+@Bugzilla::Status::EXPORT = qw(BUG_STATE_OPEN is_open_state closed_bug_statuses);
 
 ################################
 #####   Initialization     #####
@@ -54,6 +55,18 @@ sub is_open   { return $_[0]->{'is_open'};  }
 #####       Methods        ####
 ###############################
 
+sub BUG_STATE_OPEN {
+    # XXX - We should cache this list.
+    my $dbh = Bugzilla->dbh;
+    return @{$dbh->selectcol_arrayref('SELECT value FROM bug_status WHERE is_open = 1')};
+}
+
+# Tells you whether or not the argument is a valid "open" state.
+sub is_open_state {
+    my ($state) = @_;
+    return (grep($_ eq $state, BUG_STATE_OPEN) ? 1 : 0);
+}
+
 sub closed_bug_statuses {
     my @bug_statuses = Bugzilla::Status->get_all;
     @bug_statuses = grep { !$_->is_open } @bug_statuses;
@@ -93,6 +106,24 @@ sub can_change_to {
     return $self->{'can_change_to'};
 }
 
+sub allow_change_from {
+    my ($self, $old_status, $product) = @_;
+
+    # Always allow transitions from a status to itself.
+    return 1 if ($old_status && $old_status->id == $self->id);
+
+    if ($self->name eq 'UNCONFIRMED' && !$product->votes_to_confirm) {
+        # UNCONFIRMED is an invalid status transition if votes_to_confirm is 0
+        # in this product.
+        return 0;
+    }
+
+    my ($cond, $values) = $self->_status_condition($old_status);
+    my ($transition_allowed) = Bugzilla->dbh->selectrow_array(
+        "SELECT 1 FROM status_workflow WHERE $cond", undef, @$values);
+    return $transition_allowed ? 1 : 0;
+}
+
 sub can_change_from {
     my $self = shift;
     my $dbh = Bugzilla->dbh;
@@ -115,6 +146,32 @@ sub can_change_from {
     return $self->{'can_change_from'};
 }
 
+sub comment_required_on_change_from {
+    my ($self, $old_status) = @_;
+    my ($cond, $values) = $self->_status_condition($old_status);
+    
+    my ($require_comment) = Bugzilla->dbh->selectrow_array(
+        "SELECT require_comment FROM status_workflow
+          WHERE $cond", undef, @$values);
+    return $require_comment;
+}
+
+# Used as a helper for various functions that have to deal with old_status
+# sometimes being NULL and sometimes having a value.
+sub _status_condition {
+    my ($self, $old_status) = @_;
+    my @values;
+    my $cond = 'old_status IS NULL';
+    # For newly-filed bugs
+    if ($old_status) {
+        $cond = 'old_status = ?';
+        push(@values, $old_status->id);
+    }
+    $cond .= " AND new_status = ?";
+    push(@values, $self->id);
+    return ($cond, \@values);
+}
+
 sub add_missing_bug_status_transitions {
     my $bug_status = shift || Bugzilla->params->{'duplicate_or_move_bug_status'};
     my $dbh = Bugzilla->dbh;
@@ -154,7 +211,7 @@ Bugzilla::Status - Bug status class.
     my $bug_status = new Bugzilla::Status({name => 'ASSIGNED'});
     my $bug_status = new Bugzilla::Status(4);
 
-    my @closed_bug_statuses = Bugzilla::Status::closed_bug_statuses();
+    my @closed_bug_statuses = closed_bug_statuses();
 
     Bugzilla::Status::add_missing_bug_status_transitions($bug_status);
 
@@ -202,6 +259,60 @@ below.
 
  Returns:     A list of Bugzilla::Status objects.
 
+=item C<allow_change_from>
+
+=over
+
+=item B<Description>
+
+Tells you whether or not a change to this status from another status is
+allowed.
+
+=item B<Params>
+
+=over
+
+=item C<$old_status> - The Bugzilla::Status you're changing from.
+
+=item C<$product> - A L<Bugzilla::Product> representing the product of
+the bug you're changing. Needed to check product-specific workflow
+issues (such as whether or not the C<UNCONFIRMED> status is enabled
+in this product).
+
+=back
+
+=item B<Returns>
+
+C<1> if you are allowed to change to this status from that status, or
+C<0> if you aren't allowed.
+
+Note that changing from a status to itself is always allowed.
+
+=back
+
+=item C<comment_required_on_change_from>
+
+=over
+
+=item B<Description>
+
+Checks if a comment is required to change to this status from another
+status, according to the current settings in the workflow.
+
+Note that this doesn't implement the checks enforced by the various
+C<commenton> parameters--those are checked by internal checks in
+L<Bugzilla::Bug>.
+
+=item B<Params>
+
+C<$old_status> - The status you're changing from.
+
+=item B<Returns>
+
+C<1> if a comment is required on this change, C<0> if not.
+
+=back
+
 =item C<add_missing_bug_status_transitions>
 
  Description: Insert all missing transitions to a given bug status.
diff --git a/Bugzilla/Template.pm b/Bugzilla/Template.pm
index c22502806f466c93efb205f68bc5692f94e69793..8c3c014fc385f7c8d1845e9d47d536b59901b018 100644
--- a/Bugzilla/Template.pm
+++ b/Bugzilla/Template.pm
@@ -36,17 +36,19 @@ use strict;
 
 use Bugzilla::Constants;
 use Bugzilla::Install::Requirements;
-use Bugzilla::Install::Util qw(template_include_path);
+use Bugzilla::Install::Util qw(install_string template_include_path);
 use Bugzilla::Util;
 use Bugzilla::User;
 use Bugzilla::Error;
-use MIME::Base64;
-use Bugzilla::Bug;
+use Bugzilla::Status;
 
+use Cwd qw(abs_path);
+use MIME::Base64;
 # for time2str - replace by TT Date plugin??
 use Date::Format ();
+use File::Basename qw(dirname);
 use File::Find;
-use File::Path;
+use File::Path qw(rmtree mkpath);
 use File::Spec;
 use IO::Dir;
 
@@ -144,8 +146,6 @@ sub quoteUrls {
     # Do this by escaping \0 to \1\0, and replacing matches with \0\0$count\0\0
     # \0 is used because it's unlikely to occur in the text, so the cost of
     # doing this should be very small
-    # Also, \0 won't appear in the value_quote'd bug title, so we don't have
-    # to worry about bogus substitutions from there
 
     # escape the 2nd escape char we're using
     my $chr1 = chr(1);
@@ -265,7 +265,7 @@ sub get_attachment_link {
             $className = "bz_obsolete";
         }
         # Prevent code injection in the title.
-        $title = value_quote($title);
+        $title = html_quote(clean_text($title));
 
         $link_text =~ s/ \[details\]$//;
         my $linkval = "attachment.cgi?id=$attachid";
@@ -321,7 +321,7 @@ sub get_bug_link {
             $title .= " - $bug_desc";
         }
         # Prevent code injection in the title.
-        $title = value_quote($title);
+        $title = html_quote(clean_text($title));
 
         my $linkval = "show_bug.cgi?id=$bug_num";
         if (defined $comment_num) {
@@ -612,11 +612,7 @@ sub create {
                     # |U+200e|Left-To-Right Mark        |0xe2 0x80 0x8e      |
                     # |U+200f|Right-To-Left Mark        |0xe2 0x80 0x8f      |
                     # --------------------------------------------------------
-                    #
-                    # Do the replacing in a loop so that we don't get tricked
-                    # by stuff like 0xe2 0xe2 0x80 0xae 0x80 0xae.
-                    while ($var =~ s/\xe2\x80(\xaa|\xab|\xac|\xad|\xae)//g) {
-                    }
+                    $var =~ s/[\x{202a}-\x{202e}]//g;
                 }
                 return $var;
             },
@@ -734,7 +730,7 @@ sub precompile_templates {
     # Remove the compiled templates.
     my $datadir = bz_locations()->{'datadir'};
     if (-e "$datadir/template") {
-        print "Removing existing compiled templates ...\n" if $output;
+        print install_string('template_removing_dir') . "\n" if $output;
 
         # XXX This frequently fails if the webserver made the files, because
         # then the webserver owns the directories. We could fix that by
@@ -750,7 +746,7 @@ sub precompile_templates {
         }
     }
 
-    print "Precompiling templates...\n" if $output;
+    print install_string('template_precompile') if $output;
 
     my $templatedir = bz_locations()->{'templatedir'};
     # Don't hang on templates which use the CGI library
@@ -785,8 +781,30 @@ sub precompile_templates {
         }
     }
 
+    # Under mod_perl, we look for templates using the absolute path of the
+    # template directory, which causes Template Toolkit to look for their 
+    # *compiled* versions using the full absolute path under the data/template
+    # directory. (Like data/template/var/www/html/mod_perl/.) To avoid
+    # re-compiling templates under mod_perl, we symlink to the
+    # already-compiled templates. This doesn't work on Windows.
+    if (!ON_WINDOWS) {
+        my $abs_root = dirname(abs_path($templatedir));
+        my $todir    = "$datadir/template$abs_root";
+        mkpath($todir);
+        # We use abs2rel so that the symlink will look like 
+        # "../../../../template" which works, while just 
+        # "data/template/template/" doesn't work.
+        my $fromdir = File::Spec->abs2rel("$datadir/template/template", $todir);
+        # We eval for systems that can't symlink at all, where "symlink" 
+        # throws a fatal error.
+        eval { symlink($fromdir, "$todir/template") 
+                   or warn "Failed to symlink from $fromdir to $todir: $!" };
+    }
+
     # If anything created a Template object before now, clear it out.
     delete Bugzilla->request_cache->{template};
+
+    print install_string('done') . "\n" if $output;
 }
 
 # Helper for precompile_templates
diff --git a/Bugzilla/Template/CVS/Tag b/Bugzilla/Template/CVS/Tag
index 80c099bc19dadebec1c7694887784832759a1d11..0ca7715dc476234040a6da28cf255d1c036fe0ae 100644
--- a/Bugzilla/Template/CVS/Tag
+++ b/Bugzilla/Template/CVS/Tag
@@ -1 +1 @@
-TBUGZILLA-3_1_2
+TBUGZILLA-3_1_3
diff --git a/Bugzilla/Template/Plugin/CVS/Entries b/Bugzilla/Template/Plugin/CVS/Entries
index a20e4453f2d5a46741cd0905badc685677a4f340..105b48e2d77ce65dbe53d96171960ec34c39b5e2 100644
--- a/Bugzilla/Template/Plugin/CVS/Entries
+++ b/Bugzilla/Template/Plugin/CVS/Entries
@@ -1,4 +1,4 @@
-/Bugzilla.pm/1.2/Fri Feb  7 07:19:15 2003//TBUGZILLA-3_1_2
-/Hook.pm/1.9/Tue Aug 21 20:47:53 2007//TBUGZILLA-3_1_2
-/User.pm/1.1/Wed Aug  4 18:08:21 2004//TBUGZILLA-3_1_2
+/Bugzilla.pm/1.2/Fri Feb  7 07:19:15 2003//TBUGZILLA-3_1_3
+/Hook.pm/1.9/Tue Aug 21 20:47:53 2007//TBUGZILLA-3_1_3
+/User.pm/1.1/Wed Aug  4 18:08:21 2004//TBUGZILLA-3_1_3
 D
diff --git a/Bugzilla/Template/Plugin/CVS/Tag b/Bugzilla/Template/Plugin/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/Bugzilla/Template/Plugin/CVS/Tag
+++ b/Bugzilla/Template/Plugin/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/Bugzilla/Token.pm b/Bugzilla/Token.pm
index 7db6b91651378a94f70fcae8f0ccd85e7e50a108..2f911fca13f07c41abc92e10f6d415536529cf2b 100644
--- a/Bugzilla/Token.pm
+++ b/Bugzilla/Token.pm
@@ -171,12 +171,10 @@ sub issue_session_token {
 
 sub CleanTokenTable {
     my $dbh = Bugzilla->dbh;
-    $dbh->bz_lock_tables('tokens WRITE');
     $dbh->do('DELETE FROM tokens
               WHERE ' . $dbh->sql_to_days('NOW()') . ' - ' .
                         $dbh->sql_to_days('issuedate') . ' >= ?',
               undef, MAX_TOKEN_AGE);
-    $dbh->bz_unlock_tables();
 }
 
 sub GenerateUniqueToken {
@@ -301,9 +299,7 @@ sub delete_token {
     return unless defined $token;
     trick_taint($token);
 
-    $dbh->bz_lock_tables('tokens WRITE');
     $dbh->do("DELETE FROM tokens WHERE token = ?", undef, $token);
-    $dbh->bz_unlock_tables();
 }
 
 # Given a token, makes sure it comes from the currently logged in user
@@ -364,14 +360,14 @@ sub _create_token {
     trick_taint($tokentype);
     trick_taint($eventdata);
 
-    $dbh->bz_lock_tables('tokens WRITE');
+    $dbh->bz_start_transaction();
 
     my $token = GenerateUniqueToken();
 
     $dbh->do("INSERT INTO tokens (userid, issuedate, token, tokentype, eventdata)
         VALUES (?, NOW(), ?, ?, ?)", undef, ($userid, $token, $tokentype, $eventdata));
 
-    $dbh->bz_unlock_tables();
+    $dbh->bz_commit_transaction();
 
     if (wantarray) {
         my (undef, $token_ts, undef) = GetTokenData($token);
diff --git a/Bugzilla/Update.pm b/Bugzilla/Update.pm
index f2b17a6b004c40adb88f452bc2c52a483a886ad4..e9da91afb37c3671915e221f02be5d61c7bcaea6 100644
--- a/Bugzilla/Update.pm
+++ b/Bugzilla/Update.pm
@@ -42,8 +42,16 @@ sub get_notifications {
         # but we failed because we cannot modify its timestamp?
         my $can_alter = 1;
         if (-e $local_file) {
-            # Try to alter its last modification time.
+            # Try to alter its last modification time. We first save the
+            # access and modification times of the file to restore them
+            # right after our test.
+            my $atime = (stat($local_file))[8];
+            my $mtime = (stat($local_file))[9];
             $can_alter = utime(undef, undef, $local_file);
+            # Restore the access and modification times to their
+            # original values, else LWP::UserAgent will never see the
+            # updated file on the server as newer than our local one.
+            utime($atime, $mtime, $local_file);
         }
         if ($can_alter) {
             my $error = _synchronize_data();
@@ -148,6 +156,8 @@ sub _synchronize_data {
     else {
         $ua->env_proxy;
     }
+    # Download the file from the server if its modification time is newer
+    # than the local one.
     $ua->mirror(REMOTE_FILE, $local_file);
 
     # $ua->mirror() forces the modification time of the local XML file
diff --git a/Bugzilla/User.pm b/Bugzilla/User.pm
index 8ccd15a63929f95c31b23c150e7540c4d17a3074..5f9e2228c48cbb4f98c50dbd7998ac3478864643 100644
--- a/Bugzilla/User.pm
+++ b/Bugzilla/User.pm
@@ -562,21 +562,16 @@ sub can_see_user {
 sub can_edit_product {
     my ($self, $prod_id) = @_;
     my $dbh = Bugzilla->dbh;
-    my $sth = $self->{sthCanEditProductId};
-    my $userid = $self->id;
-    my $query = q{SELECT group_id FROM group_control_map 
-                   WHERE product_id =? 
-                     AND canedit != 0 };
-    if (%{$self->groups}) {
-        my $groups = join(',', values(%{$self->groups}));
-        $query .= qq{AND group_id NOT IN($groups)};
-    }
-    unless ($sth) { $sth = $dbh->prepare($query); }
-    $sth->execute($prod_id);
-    $self->{sthCanEditProductId} = $sth;
-    my $result = $sth->fetchrow_array();
-    
-    return (!defined($result));
+
+    my $has_external_groups =
+      $dbh->selectrow_array('SELECT 1
+                               FROM group_control_map
+                              WHERE product_id = ?
+                                AND canedit != 0
+                                AND group_id NOT IN(' . $self->groups_as_string . ')',
+                             undef, $prod_id);
+
+    return !$has_external_groups;
 }
 
 sub can_see_bug {
@@ -771,7 +766,7 @@ sub check_can_admin_product {
 
     ($self->in_group('editcomponents', $product->id)
        && $self->can_see_product($product->name))
-         || ThrowUserError('product_access_denied', {product => $product->name});
+         || ThrowUserError('product_admin_denied', {product => $product->name});
 
     # Return the validated product object.
     return $product;
@@ -1156,9 +1151,6 @@ sub match_field {
 
     # prepare default form values
 
-    # What does a "--do_not_change--" field look like (if any)?
-    my $dontchange = $cgi->param('dontchange');
-
     # Fields can be regular expressions matching multiple form fields
     # (f.e. "requestee-(\d+)"), so expand each non-literal field
     # into the list of form fields it matches.
@@ -1217,9 +1209,6 @@ sub match_field {
 
         next if !defined $cgi->param($field);
 
-        # Skip it if this is a --do_not_change-- field
-        next if $dontchange && $dontchange eq $cgi->param($field);
-
         # We need to move the query to $raw_field, where it will be split up,
         # modified by the search, and put back into the CGI environment
         # incrementally.
@@ -1413,8 +1402,8 @@ sub wants_bug_mail {
         
         if ($fieldName eq "CC") {
             my $login = $self->login;
-            my $inold = ($old =~ /^(.*,)?\Q$login\E(,.*)?$/);
-            my $innew = ($new =~ /^(.*,)?\Q$login\E(,.*)?$/);
+            my $inold = ($old =~ /^(.*,\s*)?\Q$login\E(,.*)?$/);
+            my $innew = ($new =~ /^(.*,\s*)?\Q$login\E(,.*)?$/);
             if ($inold != $innew)
             {
                 $events{+EVT_ADDED_REMOVED} = 1;
@@ -1588,9 +1577,7 @@ sub create {
     my $class = ref($invocant) || $invocant;
     my $dbh = Bugzilla->dbh;
 
-    $dbh->bz_lock_tables('profiles WRITE', 'profiles_activity WRITE',
-        'user_group_map WRITE', 'email_setting WRITE', 'groups READ', 
-        'tokens READ', 'fielddefs READ');
+    $dbh->bz_start_transaction();
 
     my $user = $class->SUPER::create(@_);
 
@@ -1627,7 +1614,7 @@ sub create {
                    VALUES (?, ?, NOW(), ?, NOW())',
                    undef, ($user->id, $who, $creation_date_fieldid));
 
-    $dbh->bz_unlock_tables();
+    $dbh->bz_commit_transaction();
 
     # Return the newly created user account.
     return $user;
diff --git a/Bugzilla/User/CVS/Entries b/Bugzilla/User/CVS/Entries
index dbedd3a9c24efdad0279875935190d85deed0842..2fc220be2cecaaac8a0e79d5c1027cc348a41ed1 100644
--- a/Bugzilla/User/CVS/Entries
+++ b/Bugzilla/User/CVS/Entries
@@ -1,2 +1,2 @@
-/Setting.pm/1.10/Mon Dec 11 18:00:46 2006//TBUGZILLA-3_1_2
+/Setting.pm/1.12/Thu Dec 13 02:44:18 2007//TBUGZILLA-3_1_3
 D/Setting////
diff --git a/Bugzilla/User/CVS/Tag b/Bugzilla/User/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/Bugzilla/User/CVS/Tag
+++ b/Bugzilla/User/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/Bugzilla/User/Setting.pm b/Bugzilla/User/Setting.pm
index bdc653b9765f7795b954077f0a2209fa3c6016b3..f13bfe97247df7de02dd4aee497740efff7c8012 100644
--- a/Bugzilla/User/Setting.pm
+++ b/Bugzilla/User/Setting.pm
@@ -142,10 +142,12 @@ sub add_setting {
         $dbh->do('DELETE FROM setting_value WHERE name = ?', undef, $name);
         $dbh->do('DELETE FROM setting WHERE name = ?', undef, $name);
         # Remove obsolete user preferences for this setting.
-        my $list = join(', ', map {$dbh->quote($_)} @$values);
-        $dbh->do("DELETE FROM profile_setting
-                  WHERE setting_name = ? AND setting_value NOT IN ($list)",
-                  undef, $name);
+        if (defined $values && scalar(@$values)) {
+            my $list = join(', ', map {$dbh->quote($_)} @$values);
+            $dbh->do("DELETE FROM profile_setting
+                      WHERE setting_name = ? AND setting_value NOT IN ($list)",
+                      undef, $name);
+        }
     }
     else {
         print get_text('install_setting_new', { name => $name }) . "\n";
@@ -231,9 +233,8 @@ sub set_default {
 sub _setting_exists {
     my ($setting_name) = @_;
     my $dbh = Bugzilla->dbh;
-    my $sth = $dbh->prepare("SELECT name FROM setting WHERE name = ?");
-    $sth->execute($setting_name);
-    return ($sth->rows) ? 1 : 0;
+    return $dbh->selectrow_arrayref(
+        "SELECT 1 FROM setting WHERE name = ?", undef, $setting_name) || 0;
 }
 
 
@@ -335,7 +336,7 @@ $settings->{$setting_name} = new Bugzilla::User::Setting(
 
 =over 4
 
-=item C<add_setting($name, \@values, $default_value)>
+=item C<add_setting($name, \@values, $default_value, $subclass, $force_check)>
 
 Description: Checks for the existence of a setting, and adds it 
              to the database if it does not yet exist.
@@ -344,6 +345,11 @@ Params:      C<$name> - string - the name of the new setting
              C<$values> - arrayref - contains the new choices
                for the new Setting.
              C<$default_value> - string - the site default
+             C<$subclass> - string - name of the module returning
+               the list of valid values. This means legal values are
+               not stored in the DB.
+             C<$force_check> - boolean - when true, the existing setting
+               and all its values are deleted and replaced by new data.
 
 Returns:     a pointer to a hash of settings
 
diff --git a/Bugzilla/User/Setting/CVS/Entries b/Bugzilla/User/Setting/CVS/Entries
index 51a962e8dce532af0124a554b96dc2fc958a8dcd..dd14266195fb88366096da2dff22d327d0cff89a 100644
--- a/Bugzilla/User/Setting/CVS/Entries
+++ b/Bugzilla/User/Setting/CVS/Entries
@@ -1,3 +1,3 @@
-/Lang.pm/1.1/Tue Aug 21 20:47:54 2007//TBUGZILLA-3_1_2
-/Skin.pm/1.4/Tue Aug 14 21:54:34 2007//TBUGZILLA-3_1_2
+/Lang.pm/1.1/Tue Aug 21 20:47:54 2007//TBUGZILLA-3_1_3
+/Skin.pm/1.4/Tue Aug 14 21:54:34 2007//TBUGZILLA-3_1_3
 D
diff --git a/Bugzilla/User/Setting/CVS/Tag b/Bugzilla/User/Setting/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/Bugzilla/User/Setting/CVS/Tag
+++ b/Bugzilla/User/Setting/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/Bugzilla/Util.pm b/Bugzilla/Util.pm
index e15edc6b5b9513f5f74be088c8638eb28c440566..1471295fc348c2d2ef043e49069ceef30ecb2004 100644
--- a/Bugzilla/Util.pm
+++ b/Bugzilla/Util.pm
@@ -33,13 +33,14 @@ use strict;
 use base qw(Exporter);
 @Bugzilla::Util::EXPORT = qw(is_tainted trick_taint detaint_natural
                              detaint_signed
-                             html_quote url_quote value_quote xml_quote
+                             html_quote url_quote xml_quote
                              css_class_quote html_light_quote url_decode
                              i_am_cgi get_netaddr correct_urlbase
                              lsearch
                              diff_arrays diff_strings
-                             trim wrap_comment find_wrap_point
+                             trim wrap_hard wrap_comment find_wrap_point
                              format_time format_time_decimal validate_date
+                             validate_time
                              file_mod_time is_7bit_clean
                              bz_crypt generate_random_password
                              validate_email_syntax clean_text
@@ -106,8 +107,7 @@ sub html_light_quote {
            require HTML::Parser;
     };
 
-    # We need utf8_mode() from HTML::Parser 3.40.
-    if ($@ || $HTML::Parser::VERSION < 3.40) { # Package(s) not installed.
+    if ($@) { # Package(s) not installed.
         my $safe = join('|', @allow);
         my $chr = chr(1);
 
@@ -171,12 +171,6 @@ sub html_light_quote {
                                            comment => 0,
                                            process => 0);
 
-        # Avoid filling the web server error log.
-        # In HTML::Scrubber 0.08, the HTML::Parser object is stored in
-        # the "_p" key, but this may change in future versions.
-        if (ref($scrubber->{_p}) eq 'HTML::Parser') {
-            $scrubber->{_p}->utf8_mode(1);
-        }
         return $scrubber->scrub($text);
     }
 }
@@ -184,6 +178,8 @@ sub html_light_quote {
 # This originally came from CGI.pm, by Lincoln D. Stein
 sub url_quote {
     my ($toencode) = (@_);
+    utf8::encode($toencode) # The below regex works only on bytes
+        if Bugzilla->params->{'utf8'} && utf8::is_utf8($toencode);
     $toencode =~ s/([^a-zA-Z0-9_\-.])/uc sprintf("%%%02x",ord($1))/eg;
     return $toencode;
 }
@@ -195,22 +191,6 @@ sub css_class_quote {
     return $toencode;
 }
 
-sub value_quote {
-    my ($var) = (@_);
-    $var =~ s/\&/\&amp;/g;
-    $var =~ s/</\&lt;/g;
-    $var =~ s/>/\&gt;/g;
-    $var =~ s/\"/\&quot;/g;
-    # See bug http://bugzilla.mozilla.org/show_bug.cgi?id=4928 for 
-    # explanation of why Bugzilla does this linebreak substitution. 
-    # This caused form submission problems in mozilla (bug 22983, 32000).
-    $var =~ s/\r\n/\&#013;/g;
-    $var =~ s/\n\r/\&#013;/g;
-    $var =~ s/\r/\&#013;/g;
-    $var =~ s/\n/\&#013;/g;
-    return $var;
-}
-
 sub xml_quote {
     my ($var) = (@_);
     $var =~ s/\&/\&amp;/g;
@@ -221,6 +201,10 @@ sub xml_quote {
     return $var;
 }
 
+# This function must not be relied upon to return a valid string to pass to
+# the DB or the user in UTF-8 situations. The only thing you  can rely upon
+# it for is that if you url_decode a string, it will url_encode back to the 
+# exact same thing.
 sub url_decode {
     my ($todecode) = (@_);
     $todecode =~ tr/+/ /;       # pluses become spaces
@@ -355,6 +339,17 @@ sub find_wrap_point {
     return $wrappoint;
 }
 
+sub wrap_hard {
+    my ($string, $columns) = @_;
+    local $Text::Wrap::columns = $columns;
+    local $Text::Wrap::unexpand = 0;
+    local $Text::Wrap::huge = 'wrap';
+    
+    my $wrapped = wrap('', '', $string);
+    chomp($wrapped);
+    return $wrapped;
+}
+
 sub format_time {
     my ($date, $format) = @_;
 
@@ -473,6 +468,22 @@ sub validate_date {
     return $ret ? 1 : 0;
 }
 
+sub validate_time {
+    my ($time) = @_;
+    my $time2;
+
+    # $ts is undefined if the parser fails.
+    my $ts = str2time($time);
+    if ($ts) {
+        $time2 = time2str("%H:%M:%S", $ts);
+        if ($time =~ /^(\d{1,2}):(\d\d)(?::(\d\d))?$/) {
+            $time = sprintf("%02d:%02d:%02d", $1, $2, $3 || 0);
+        }
+    }
+    my $ret = ($ts && $time eq $time2);
+    return $ret ? 1 : 0;
+}
+
 sub is_7bit_clean {
     return $_[0] !~ /[^\x20-\x7E\x0A\x0D]/;
 }
@@ -539,7 +550,6 @@ Bugzilla::Util - Generic utility functions for bugzilla
   # Functions for quoting
   html_quote($var);
   url_quote($var);
-  value_quote($var);
   xml_quote($var);
 
   # Functions for decoding
@@ -652,11 +662,6 @@ Quotes characters so that they may be included as part of a url.
 Quotes characters so that they may be used as CSS class names. Spaces
 are replaced by underscores.
 
-=item C<value_quote($val)>
-
-As well as escaping html like C<html_quote>, this routine converts newlines
-into &#013;, suitable for use in html attributes.
-
 =item C<xml_quote($val)>
 
 This is similar to C<html_quote>, except that ' is escaped to &apos;. This
@@ -745,6 +750,11 @@ compared to the old one. Returns a list, where the first entry is a scalar
 containing removed items, and the second entry is a scalar containing added
 items.
 
+=item C<wrap_hard($string, $size)>
+
+Wraps a string, so that a line is I<never> longer than C<$size>.
+Returns the string, wrapped.
+
 =item C<wrap_comment($comment)>
 
 Takes a bug comment, and wraps it to the appropriate length. The length is
diff --git a/Bugzilla/WebService/Bug.pm b/Bugzilla/WebService/Bug.pm
index 14ed2e7fddc7c1ca3fc34b50d71cb52e9418fe84..01d5c16eb29616222561e6dd0ced71fd6898efad 100755
--- a/Bugzilla/WebService/Bug.pm
+++ b/Bugzilla/WebService/Bug.pm
@@ -14,6 +14,8 @@
 #
 # Contributor(s): Marc Schumann <wurblzap@gmail.com>
 #                 Max Kanat-Alexander <mkanat@bugzilla.org>
+#                 Mads Bondo Dydensborg <mbd@dbc.dk>
+#                 Tsahi Asher <tsahi_75@yahoo.com>
 
 package Bugzilla::WebService::Bug;
 
@@ -25,7 +27,6 @@ use Bugzilla::Constants;
 use Bugzilla::Error;
 use Bugzilla::Field;
 use Bugzilla::WebService::Constants;
-use Bugzilla::Util qw(detaint_natural);
 use Bugzilla::Bug;
 use Bugzilla::BugMail;
 use Bugzilla::Constants;
@@ -56,11 +57,17 @@ use constant GLOBAL_SELECT_FIELDS => qw(
 
 use constant PRODUCT_SPECIFIC_FIELDS => qw(version target_milestone component);
 
+######################################################
+# Add aliases here for old method name compatibility #
+######################################################
+
+BEGIN { *get_bugs = \&get }
+
 ###########
 # Methods #
 ###########
 
-sub get_bugs {
+sub get {
     my ($self, $params) = @_;
     my $ids = $params->{ids};
     defined $ids || ThrowCodeError('param_required', { param => 'ids' });
@@ -177,6 +184,36 @@ sub legal_values {
     return { values => \@result };
 }
 
+sub add_comment {
+    my ($self, $params) = @_;
+    
+    #The user must login in order add a comment
+    Bugzilla->login(LOGIN_REQUIRED);
+    
+    # Check parameters
+    defined $params->{id} 
+        || ThrowCodeError('param_required', { param => 'id' });
+    ValidateBugID($params->{id});
+    
+    my $comment = $params->{comment}; 
+    defined $comment
+        || ThrowCodeError('param_required', { param => 'comment' });
+    
+    my $bug = new Bugzilla::Bug($params->{id});
+    
+    Bugzilla->user->can_edit_product($bug->product_id)
+        || ThrowUserError("product_edit_denied", {product => $bug->product});
+        
+    # Append comment
+    $bug->add_comment($comment, { isprivate => $params->{private},
+                                  work_time => $params->{work_time} });
+    $bug->update();
+    
+    # Send mail.
+    Bugzilla::BugMail::Send($bug->bug_id, { changer => Bugzilla->user->login });
+    return undef;
+}
+
 1;
 
 __END__
@@ -249,7 +286,7 @@ You specified a field that doesn't exist or isn't a drop-down field.
 
 =over
 
-=item C<get_bugs> B<EXPERIMENTAL>
+=item C<get> B<EXPERIMENTAL>
 
 =over
 
@@ -257,6 +294,8 @@ You specified a field that doesn't exist or isn't a drop-down field.
 
 Gets information about particular bugs in the database.
 
+Note: Can also be called as "get_bugs" for compatibilty with Bugzilla 3.0 API.
+
 =item B<Params>
 
 =over
@@ -431,6 +470,10 @@ A hash with one element, C<id>. This is the id of the newly-filed bug.
 
 =over
 
+=item 51 (Invalid Object)
+
+The component you specified is not valid for this Product.
+
 =item 103 (Invalid Alias)
 
 The alias you specified is invalid for some reason. See the error message
@@ -438,13 +481,12 @@ for more details.
 
 =item 104 (Invalid Field)
 
-One of the drop-down fields has an invalid value. The error message will
-have more detail.
+One of the drop-down fields has an invalid value, or a value entered in a
+text field is too long. The error message will have more detail.
 
 =item 105 (Invalid Component)
 
-Either you didn't specify a component, or the component you specified was
-invalid.
+You didn't specify a component.
 
 =item 106 (Invalid Product)
 
@@ -464,5 +506,53 @@ in them. The error message will have more details.
 
 =back
 
+=item C<add_comment> B<EXPERIMENTAL>
+
+=over
+
+=item B<Description>
+
+This allows you to add a comment to a bug in Bugzilla.
+
+=item B<Params>
+
+=over
+
+=item C<id> (int) B<Required> - The id or alias of the bug to append a 
+comment to.
+
+=item C<comment> (string) B<Required> - The comment to append to the bug.
+
+=item C<private> (boolean) - If set to true, the comment is private, otherwise
+it is assumed to be public.
+
+=item C<work_time> (double) - Adds this many hours to the "Hours Worked"
+on the bug. If you are not in the time tracking group, this value will
+be ignored.
+
+
+=back
+
+=item B<Errors>
+
+=over
+
+=item 100 (Invalid Bug Alias) 
+
+If you specified an alias and either: (a) the Bugzilla you're querying
+doesn't support aliases or (b) there is no bug with that alias.
+
+=item 101 (Invalid Bug ID)
+
+The id you specified doesn't exist in the database.
+
+=item 108 (Bug Edit Denied)
+
+You did not have the necessary rights to edit the bug.
+
+=back
+
+=back
+
 
 =back
diff --git a/Bugzilla/WebService/Bugzilla.pm b/Bugzilla/WebService/Bugzilla.pm
index 1eeeebddc354c8065395428b4047b79fded6013d..c6b0218cf6d4cbcb102b521fcd865e8a28d1accc 100755
--- a/Bugzilla/WebService/Bugzilla.pm
+++ b/Bugzilla/WebService/Bugzilla.pm
@@ -21,6 +21,7 @@ package Bugzilla::WebService::Bugzilla;
 use strict;
 use base qw(Bugzilla::WebService);
 use Bugzilla::Constants;
+use Bugzilla::Hook;
 import SOAP::Data qw(type);
 
 use Time::Zone;
@@ -29,6 +30,14 @@ sub version {
     return { version => type('string')->value(BUGZILLA_VERSION) };
 }
 
+sub plugins {
+    my $plugins = Bugzilla::Hook::enabled_plugins();
+    foreach my $name (keys %$plugins) {
+        $plugins->{$name} = type('string')->value($plugins->{$name});
+    }
+    return { plugins => $plugins };
+}
+
 sub timezone {
     my $offset = tz_offset();
     $offset = (($offset / 60) / 60) * 100;
@@ -74,6 +83,25 @@ string.
 
 =back
 
+=item C<plugins> B<EXPERIMENTAL>
+
+=over
+
+=item B<Description>
+
+Gets information about the plugins that are currently installed and enabled
+in this Bugzilla.
+
+=item B<Params> (none)
+
+=item B<Returns>
+
+A hash with a single item, C<plugins>. This points to a hash. I<That> hash
+contains the names of plugins as keys, and the versions of the plugin as
+values.
+
+=back
+
 =item C<timezone> B<EXPERIMENTAL>
 
 =over
diff --git a/Bugzilla/WebService/CVS/Entries b/Bugzilla/WebService/CVS/Entries
index 279926aeefe3ba96be4a05fec9e2cc06de2f800f..3c521a2d5d7ca752f692e3d36c1e93031a76a2a5 100644
--- a/Bugzilla/WebService/CVS/Entries
+++ b/Bugzilla/WebService/CVS/Entries
@@ -1,6 +1,6 @@
-/Bug.pm/1.6/Thu Aug 23 15:41:22 2007//TBUGZILLA-3_1_2
-/Bugzilla.pm/1.4/Tue Oct 31 23:26:28 2006//TBUGZILLA-3_1_2
-/Constants.pm/1.10/Tue Sep 18 23:28:30 2007//TBUGZILLA-3_1_2
-/Product.pm/1.4/Sun Feb  4 17:51:54 2007//TBUGZILLA-3_1_2
-/User.pm/1.5/Tue Sep 18 23:28:30 2007//TBUGZILLA-3_1_2
+/Bug.pm/1.10/Fri Jan 18 21:30:29 2008//TBUGZILLA-3_1_3
+/Bugzilla.pm/1.5/Fri Oct 19 08:07:29 2007//TBUGZILLA-3_1_3
+/Constants.pm/1.14/Mon Jan 21 18:29:30 2008//TBUGZILLA-3_1_3
+/Product.pm/1.4/Sun Feb  4 17:51:54 2007//TBUGZILLA-3_1_3
+/User.pm/1.5/Tue Sep 18 23:28:30 2007//TBUGZILLA-3_1_3
 D
diff --git a/Bugzilla/WebService/CVS/Tag b/Bugzilla/WebService/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/Bugzilla/WebService/CVS/Tag
+++ b/Bugzilla/WebService/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/Bugzilla/WebService/Constants.pm b/Bugzilla/WebService/Constants.pm
index 139ec1b7b9b53b353051c44337d52d730d367529..f12c5ecd25df2b54db3a689873c8a967e0b5ff03 100755
--- a/Bugzilla/WebService/Constants.pm
+++ b/Bugzilla/WebService/Constants.pm
@@ -50,10 +50,14 @@ use base qw(Exporter);
 # comment that it was retired. Also, if an error changes its name, you'll
 # have to fix it here.
 use constant WS_ERROR_CODE => {
+    # Generic Bugzilla::Object errors are 50-99.
+    object_name_not_specified   => 50,
+    object_does_not_exist       => 51,
     # Bug errors usually occupy the 100-200 range.
     improper_bug_id_field_value => 100,
     bug_id_does_not_exist       => 101,
     bug_access_denied           => 102,
+    bug_access_query            => 102,
     invalid_field_name          => 108,
     # These all mean "invalid alias"
     alias_too_long           => 103,
@@ -62,10 +66,10 @@ use constant WS_ERROR_CODE => {
     alias_has_comma_or_space => 103,
     # Misc. bug field errors
     illegal_field => 104,
+    freetext_too_long => 104,
     # Component errors
     require_component       => 105,
     component_name_too_long => 105,
-    component_not_valid     => 105,
     # Invalid Product
     no_products         => 106,
     entry_access_denied => 106,
@@ -73,6 +77,8 @@ use constant WS_ERROR_CODE => {
     product_disabled    => 106,
     # Invalid Summary
     require_summary => 107,
+    # Not authorized to edit the bug
+    product_edit_denied => 108,
 
     # Authentication errors are usually 300-400.
     invalid_username_or_password => 300,
diff --git a/CVS/Entries b/CVS/Entries
index 955c117eaa834f958ea8f4a8b7e81019ecea50a1..1ec3d899d5246c7cd07afd56a41d10c9fffbb9de 100644
--- a/CVS/Entries
+++ b/CVS/Entries
@@ -1,79 +1,82 @@
-/.cvsignore/1.7/Tue Mar 28 19:49:01 2006//TBUGZILLA-3_1_2
-/Bugzilla.pm/1.61/Sun Sep 16 22:40:46 2007//TBUGZILLA-3_1_2
-/QUICKSTART/1.7/Sun Jul 29 18:15:28 2007//TBUGZILLA-3_1_2
-/README/1.52/Fri Oct 10 02:22:39 2003//TBUGZILLA-3_1_2
-/UPGRADING/1.1/Fri Aug 10 22:35:21 2001//TBUGZILLA-3_1_2
-/UPGRADING-pre-2.8/1.3/Thu Mar 27 00:06:37 2003//TBUGZILLA-3_1_2
-/admin.cgi/1.1/Thu Apr  5 18:18:06 2007//TBUGZILLA-3_1_2
-/attachment.cgi/1.130/Tue Aug 14 12:34:45 2007//TBUGZILLA-3_1_2
-/buglist.cgi/1.362/Mon Sep 10 12:53:32 2007//TBUGZILLA-3_1_2
-/bugzilla.dtd/1.15/Sat Jan  6 23:51:56 2007//TBUGZILLA-3_1_2
-/chart.cgi/1.24/Sun Jul 22 22:25:10 2007//TBUGZILLA-3_1_2
-/checksetup.pl/1.554/Thu Aug  9 12:36:07 2007//TBUGZILLA-3_1_2
-/colchange.cgi/1.60/Sat Sep  8 00:14:25 2007//TBUGZILLA-3_1_2
-/collectstats.pl/1.62/Mon Aug 20 18:04:19 2007//TBUGZILLA-3_1_2
-/config.cgi/1.24/Tue Oct 17 04:41:05 2006//TBUGZILLA-3_1_2
-/createaccount.cgi/1.55/Mon Jul 23 21:52:49 2007//TBUGZILLA-3_1_2
-/describecomponents.cgi/1.37/Wed Dec 27 07:37:20 2006//TBUGZILLA-3_1_2
-/describekeywords.cgi/1.20/Mon Sep  4 16:21:47 2006//TBUGZILLA-3_1_2
-/duplicates.cgi/1.60/Thu May 10 11:35:02 2007//TBUGZILLA-3_1_2
-/duplicates.xul/1.2/Thu Oct 21 19:02:28 2004//TBUGZILLA-3_1_2
-/editclassifications.cgi/1.26/Sat Oct 14 22:02:09 2006//TBUGZILLA-3_1_2
-/editcomponents.cgi/1.81/Sun Jul 22 22:25:10 2007//TBUGZILLA-3_1_2
-/editfields.cgi/1.7/Mon Nov 13 02:50:16 2006//TBUGZILLA-3_1_2
-/editflagtypes.cgi/1.49/Thu Jan  4 17:48:16 2007//TBUGZILLA-3_1_2
-/editgroups.cgi/1.84/Wed Aug  8 13:58:19 2007//TBUGZILLA-3_1_2
-/editkeywords.cgi/1.43/Sat Oct 14 22:02:09 2006//TBUGZILLA-3_1_2
-/editmilestones.cgi/1.58/Thu Aug 23 21:31:19 2007//TBUGZILLA-3_1_2
-/editparams.cgi/1.46/Tue Aug 21 20:47:51 2007//TBUGZILLA-3_1_2
-/editproducts.cgi/1.134/Sun Jul 22 22:25:10 2007//TBUGZILLA-3_1_2
-/editsettings.cgi/1.9/Sat Oct 14 22:02:09 2006//TBUGZILLA-3_1_2
-/editusers.cgi/1.142/Sun Mar 11 11:55:21 2007//TBUGZILLA-3_1_2
-/editvalues.cgi/1.23/Sat Sep  8 00:14:25 2007//TBUGZILLA-3_1_2
-/editversions.cgi/1.54/Thu Aug 23 21:31:19 2007//TBUGZILLA-3_1_2
-/editwhines.cgi/1.20/Sat Oct 14 22:02:09 2006//TBUGZILLA-3_1_2
-/editworkflow.cgi/1.4/Thu Jul 19 14:24:45 2007//TBUGZILLA-3_1_2
-/email_in.pl/1.7/Fri Sep 14 19:23:47 2007//TBUGZILLA-3_1_2
-/enter_bug.cgi/1.157/Thu Jun 14 16:25:41 2007//TBUGZILLA-3_1_2
-/importxml.pl/1.76/Tue May 29 17:24:41 2007//TBUGZILLA-3_1_2
-/index.cgi/1.23/Mon Aug 21 21:27:41 2006//TBUGZILLA-3_1_2
-/long_list.cgi/1.47/Tue Oct 25 19:31:31 2005//TBUGZILLA-3_1_2
-/mod_perl.pl/1.6/Thu Mar 15 04:29:45 2007//TBUGZILLA-3_1_2
-/page.cgi/1.19/Wed Jun 21 00:44:47 2006//TBUGZILLA-3_1_2
-/post_bug.cgi/1.188/Sat Sep  8 00:14:26 2007//TBUGZILLA-3_1_2
-/process_bug.cgi/1.388/Tue Sep 18 21:37:11 2007//TBUGZILLA-3_1_2
-/query.cgi/1.174/Sat Sep  8 00:14:26 2007//TBUGZILLA-3_1_2
-/quips.cgi/1.37/Mon Sep  4 16:21:47 2006//TBUGZILLA-3_1_2
-/relogin.cgi/1.39/Sat Oct 14 22:02:09 2006//TBUGZILLA-3_1_2
-/report.cgi/1.39/Wed Jun 21 00:44:47 2006//TBUGZILLA-3_1_2
-/reports.cgi/1.91/Sat May 26 22:27:45 2007//TBUGZILLA-3_1_2
-/request.cgi/1.41/Sat Oct 14 21:04:55 2006//TBUGZILLA-3_1_2
-/robots.txt/1.2/Wed Apr 24 18:11:00 2002//TBUGZILLA-3_1_2
-/runtests.pl/1.4/Fri Sep  3 06:59:08 2004//TBUGZILLA-3_1_2
-/sanitycheck.cgi/1.134/Sun Jul 22 22:25:11 2007//TBUGZILLA-3_1_2
-/sanitycheck.pl/1.1/Fri Mar 16 20:27:45 2007//TBUGZILLA-3_1_2
-/search_plugin.cgi/1.2/Thu Sep 28 22:19:33 2006//TBUGZILLA-3_1_2
-/show_activity.cgi/1.22/Wed Jun 21 00:44:48 2006//TBUGZILLA-3_1_2
-/show_bug.cgi/1.51/Mon May 14 17:56:29 2007//TBUGZILLA-3_1_2
-/showattachment.cgi/1.15/Wed Mar  1 22:46:21 2006//TBUGZILLA-3_1_2
-/showdependencygraph.cgi/1.62/Thu Jul 26 06:55:56 2007//TBUGZILLA-3_1_2
-/showdependencytree.cgi/1.51/Fri Aug 24 05:15:16 2007//TBUGZILLA-3_1_2
-/sidebar.cgi/1.18/Wed Jun 21 00:44:48 2006//TBUGZILLA-3_1_2
-/summarize_time.cgi/1.22/Tue Sep 18 21:37:11 2007//TBUGZILLA-3_1_2
-/testagent.cgi/1.3/Sun Feb 11 00:12:24 2007//TBUGZILLA-3_1_2
-/testserver.pl/1.17/Tue Jul 24 18:22:01 2007//TBUGZILLA-3_1_2
-/token.cgi/1.51/Mon Jul 23 09:47:11 2007//TBUGZILLA-3_1_2
-/userprefs.cgi/1.116/Thu Jul 26 14:06:23 2007//TBUGZILLA-3_1_2
-/votes.cgi/1.51/Sun Jun 10 10:18:42 2007//TBUGZILLA-3_1_2
-/whine.pl/1.33/Mon Jun 18 18:15:09 2007//TBUGZILLA-3_1_2
-/whineatnews.pl/1.29/Tue Jul  3 22:57:06 2007//TBUGZILLA-3_1_2
-/xml.cgi/1.13/Wed Aug 10 01:30:39 2005//TBUGZILLA-3_1_2
-/xmlrpc.cgi/1.2/Sun Feb  4 16:23:20 2007//TBUGZILLA-3_1_2
+/.cvsignore/1.8/Fri Oct 19 07:58:48 2007//TBUGZILLA-3_1_3
+/Bugzilla.pm/1.63/Sun Jan  6 02:53:44 2008//TBUGZILLA-3_1_3
+/QUICKSTART/1.8/Tue Oct 23 08:06:36 2007//TBUGZILLA-3_1_3
+/README/1.52/Fri Oct 10 02:22:39 2003//TBUGZILLA-3_1_3
+/UPGRADING/1.1/Fri Aug 10 22:35:21 2001//TBUGZILLA-3_1_3
+/UPGRADING-pre-2.8/1.4/Mon Dec 24 01:37:43 2007//TBUGZILLA-3_1_3
+/admin.cgi/1.2/Fri Oct 19 06:46:10 2007//TBUGZILLA-3_1_3
+/attachment.cgi/1.140/Sun Jan 20 22:18:55 2008//TBUGZILLA-3_1_3
+/buglist.cgi/1.369/Fri Jan 18 15:56:53 2008//TBUGZILLA-3_1_3
+/bugzilla.dtd/1.15/Sat Jan  6 23:51:56 2007//TBUGZILLA-3_1_3
+/chart.cgi/1.26/Sun Nov 11 22:03:16 2007//TBUGZILLA-3_1_3
+/checksetup.pl/1.556/Wed Nov 28 16:35:52 2007//TBUGZILLA-3_1_3
+/colchange.cgi/1.61/Fri Oct 19 06:46:11 2007//TBUGZILLA-3_1_3
+/collectstats.pl/1.63/Fri Oct 19 06:46:11 2007//TBUGZILLA-3_1_3
+/config.cgi/1.27/Fri Oct 19 06:46:11 2007//TBUGZILLA-3_1_3
+/createaccount.cgi/1.57/Sun Nov 11 22:03:16 2007//TBUGZILLA-3_1_3
+/describecomponents.cgi/1.38/Fri Oct 19 06:46:11 2007//TBUGZILLA-3_1_3
+/describekeywords.cgi/1.21/Fri Oct 19 06:46:11 2007//TBUGZILLA-3_1_3
+/duplicates.cgi/1.61/Fri Oct 19 06:46:11 2007//TBUGZILLA-3_1_3
+/duplicates.xul/1.2/Thu Oct 21 19:02:28 2004//TBUGZILLA-3_1_3
+/editclassifications.cgi/1.30/Sun Jan 27 23:14:14 2008//TBUGZILLA-3_1_3
+/editcomponents.cgi/1.86/Sun Jan 27 23:14:14 2008//TBUGZILLA-3_1_3
+/editfields.cgi/1.8/Fri Oct 19 06:46:11 2007//TBUGZILLA-3_1_3
+/editflagtypes.cgi/1.53/Sun Jan 27 23:14:14 2008//TBUGZILLA-3_1_3
+/editgroups.cgi/1.88/Sun Jan 27 23:14:14 2008//TBUGZILLA-3_1_3
+/editkeywords.cgi/1.45/Sun Jan 27 23:14:14 2008//TBUGZILLA-3_1_3
+/editmilestones.cgi/1.62/Sun Jan 27 23:14:14 2008//TBUGZILLA-3_1_3
+/editparams.cgi/1.47/Fri Oct 19 06:46:11 2007//TBUGZILLA-3_1_3
+/editproducts.cgi/1.139/Sun Jan 27 23:14:14 2008//TBUGZILLA-3_1_3
+/editsettings.cgi/1.11/Sun Jan 27 23:14:14 2008//TBUGZILLA-3_1_3
+/editusers.cgi/1.145/Mon Nov 19 12:43:08 2007//TBUGZILLA-3_1_3
+/editvalues.cgi/1.30/Mon Jan 28 01:36:13 2008//TBUGZILLA-3_1_3
+/editversions.cgi/1.58/Sun Jan 27 23:14:14 2008//TBUGZILLA-3_1_3
+/editwhines.cgi/1.21/Fri Oct 19 06:46:11 2007//TBUGZILLA-3_1_3
+/editworkflow.cgi/1.5/Fri Oct 19 06:46:11 2007//TBUGZILLA-3_1_3
+/email_in.pl/1.13/Sat Jan 26 10:41:13 2008//TBUGZILLA-3_1_3
+/enter_bug.cgi/1.159/Sun Nov 11 22:03:16 2007//TBUGZILLA-3_1_3
+/importxml.pl/1.77/Fri Oct 19 06:46:11 2007//TBUGZILLA-3_1_3
+/index.cgi/1.24/Fri Oct 19 06:46:11 2007//TBUGZILLA-3_1_3
+/install-module.pl/1.2/Sat Jan 12 00:43:22 2008//TBUGZILLA-3_1_3
+/long_list.cgi/1.48/Fri Oct 19 06:46:11 2007//TBUGZILLA-3_1_3
+/mod_perl.pl/1.10/Sun Jan  6 02:55:59 2008//TBUGZILLA-3_1_3
+/page.cgi/1.20/Fri Oct 19 06:46:11 2007//TBUGZILLA-3_1_3
+/post_bug.cgi/1.192/Wed Nov 14 22:50:24 2007//TBUGZILLA-3_1_3
+/process_bug.cgi/1.401/Sun Jan 27 19:15:18 2008//TBUGZILLA-3_1_3
+/query.cgi/1.178/Wed Nov 14 22:56:31 2007//TBUGZILLA-3_1_3
+/quips.cgi/1.38/Fri Oct 19 06:46:11 2007//TBUGZILLA-3_1_3
+/relogin.cgi/1.40/Fri Oct 19 06:46:11 2007//TBUGZILLA-3_1_3
+/report.cgi/1.41/Sun Nov 11 22:03:16 2007//TBUGZILLA-3_1_3
+/reports.cgi/1.93/Fri Oct 19 06:46:11 2007//TBUGZILLA-3_1_3
+/request.cgi/1.45/Sun Nov 25 21:45:04 2007//TBUGZILLA-3_1_3
+/robots.txt/1.2/Wed Apr 24 18:11:00 2002//TBUGZILLA-3_1_3
+/runtests.pl/1.5/Fri Oct 19 06:46:11 2007//TBUGZILLA-3_1_3
+/sanitycheck.cgi/1.138/Sun Nov 18 20:23:54 2007//TBUGZILLA-3_1_3
+/sanitycheck.pl/1.3/Thu Jan 31 12:00:19 2008//TBUGZILLA-3_1_3
+/search_plugin.cgi/1.3/Fri Oct 19 06:46:11 2007//TBUGZILLA-3_1_3
+/show_activity.cgi/1.24/Fri Oct 19 06:46:11 2007//TBUGZILLA-3_1_3
+/show_bug.cgi/1.52/Fri Oct 19 06:46:11 2007//TBUGZILLA-3_1_3
+/showattachment.cgi/1.16/Fri Oct 19 06:46:11 2007//TBUGZILLA-3_1_3
+/showdependencygraph.cgi/1.65/Fri Oct 19 06:46:11 2007//TBUGZILLA-3_1_3
+/showdependencytree.cgi/1.52/Fri Oct 19 06:46:11 2007//TBUGZILLA-3_1_3
+/sidebar.cgi/1.19/Fri Oct 19 06:46:11 2007//TBUGZILLA-3_1_3
+/summarize_time.cgi/1.23/Fri Oct 19 06:46:11 2007//TBUGZILLA-3_1_3
+/testagent.cgi/1.3/Sun Feb 11 00:12:24 2007//TBUGZILLA-3_1_3
+/testserver.pl/1.18/Fri Oct 19 06:46:11 2007//TBUGZILLA-3_1_3
+/token.cgi/1.53/Sun Nov 18 20:23:54 2007//TBUGZILLA-3_1_3
+/userprefs.cgi/1.119/Sun Dec 16 10:32:49 2007//TBUGZILLA-3_1_3
+/votes.cgi/1.54/Sun Nov 18 20:23:54 2007//TBUGZILLA-3_1_3
+/whine.pl/1.36/Mon Dec 24 07:42:05 2007//TBUGZILLA-3_1_3
+/whineatnews.pl/1.30/Fri Oct 19 06:46:11 2007//TBUGZILLA-3_1_3
+/xml.cgi/1.14/Fri Oct 19 06:46:11 2007//TBUGZILLA-3_1_3
+/xmlrpc.cgi/1.4/Fri Oct 19 07:58:48 2007//TBUGZILLA-3_1_3
 D/Bugzilla////
 D/contrib////
 D/docs////
+D/extensions////
 D/images////
 D/js////
+D/lib////
 D/skins////
 D/t////
 D/template////
diff --git a/CVS/Tag b/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/CVS/Tag
+++ b/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/QUICKSTART b/QUICKSTART
index 86d11317db804ef6f415bd23e9cdbf3547d38526..943773a3b4328d1cc788c525a07f51a090f9d26a 100644
--- a/QUICKSTART
+++ b/QUICKSTART
@@ -28,9 +28,6 @@ see Section 4 of the Bugzilla Guide in the docs/ directory.
    $db_* variables. In particular, $db_name and $db_user will define
    your database setup in step 5.
 
-   If you want to change platforms, operating systems, severities and
-   priorities, this can also be done in localconfig at this time.
-
 5. Using the name you provided as $db_name above, create a MySQL database
    for Bugzilla. You should also create a user permission for the name
    supplied as $db_user with read/write access to that database.
@@ -67,7 +64,7 @@ see Section 4 of the Bugzilla Guide in the docs/ directory.
    account information you provided in step 6.
 
 9. Scroll to the bottom of the page after logging in, and select
-   "parameters". Set up the relevant parameters for your local setup. 
+   "Parameters". Set up the relevant parameters for your local setup. 
 
    See section 4.2 of the Bugzilla Guide for a in-depth description of
    some of the configuration parameters available.
diff --git a/UPGRADING-pre-2.8 b/UPGRADING-pre-2.8
index 9d0da5e2469e2497f6847fe108b508aef4bcb37c..fd35b7bdb0879b77bbad66a723b9bf9653612bdf 100644
--- a/UPGRADING-pre-2.8
+++ b/UPGRADING-pre-2.8
@@ -4,6 +4,11 @@ If you are upgrading from 2.8 or newer, please read the Installation and
 Upgrade instructions in The Bugzilla Guide, found with this distribution in
 docs/html, docs/txt, and docs/sgml.
 
+Please note that the period in our version numbers is a place separator, not
+a decimal point.  The 14 in version 2.14 is newer than the 8 in 2.8, for
+example.  You should only be using this file if you have a single digit
+after the period in the version 2.x Bugzilla you are upgrading from.
+
 For a complete list of what changes, use Bonsai
 (http://cvs-mirror.mozilla.org/webtools/bonsai/cvsqueryform.cgi) to
 query the CVS tree.  For example,
diff --git a/admin.cgi b/admin.cgi
index 3edff133879fdf0bc24244731eba83a2007462be..83cc55d8b0c15cf60c80bc021644b4663b42d9e4 100644
--- a/admin.cgi
+++ b/admin.cgi
@@ -21,7 +21,7 @@
 
 use strict;
 
-use lib qw(.);
+use lib qw(. lib);
 
 use Bugzilla;
 use Bugzilla::Constants;
diff --git a/attachment.cgi b/attachment.cgi
index b60f0183b23df26fedc717b15ed7189fba37cf05..65a8aa539ab6b436d96f56d0f3c568d6128c3225 100755
--- a/attachment.cgi
+++ b/attachment.cgi
@@ -35,7 +35,7 @@
 # Make it harder for us to do dangerous things in Perl.
 use strict;
 
-use lib qw(.);
+use lib qw(. lib);
 
 use Bugzilla;
 use Bugzilla::Constants;
@@ -72,6 +72,12 @@ local our $vars = {};
 # Determine whether to use the action specified by the user or the default.
 my $action = $cgi->param('action') || 'view';
 
+# Determine if PatchReader is installed
+eval {
+    require PatchReader;
+    $vars->{'patchviewerinstalled'} = 1;
+};
+
 if ($action eq "view")  
 {
     view();
@@ -240,6 +246,9 @@ sub view {
     print $cgi->header(-type=>"$contenttype; name=\"$filename\"",
                        -content_disposition=> "inline; filename=\"$filename\"",
                        -content_length => $attachment->datasize);
+    if (Bugzilla->params->{'utf8'}) {
+        binmode STDOUT, ':raw'; # Turn off UTF8 encoding.
+    }
     print $attachment->data;
 }
 
@@ -332,71 +341,55 @@ sub insert {
     my $dbh = Bugzilla->dbh;
     my $user = Bugzilla->user;
 
+    $dbh->bz_start_transaction;
+
     # Retrieve and validate parameters
     my $bugid = $cgi->param('bugid');
     ValidateBugID($bugid);
     validateCanChangeBug($bugid);
-    ValidateComment(scalar $cgi->param('comment'));
-    my ($timestamp) = Bugzilla->dbh->selectrow_array("SELECT NOW()"); 
+    my ($timestamp) = Bugzilla->dbh->selectrow_array("SELECT NOW()");
 
     my $bug = new Bugzilla::Bug($bugid);
     my $attachment =
         Bugzilla::Attachment->insert_attachment_for_bug(THROW_ERROR, $bug, $user,
-                                                        $timestamp, \$vars);
+                                                        $timestamp, $vars);
 
-  # Insert a comment about the new attachment into the database.
-  my $comment = "Created an attachment (id=" . $attachment->id . ")\n" .
-                $attachment->description . "\n";
-  $comment .= ("\n" . $cgi->param('comment')) if defined $cgi->param('comment');
+    # Insert a comment about the new attachment into the database.
+    my $comment = "Created an attachment (id=" . $attachment->id . ")\n" .
+                  $attachment->description . "\n";
+    $comment .= ("\n" . $cgi->param('comment')) if defined $cgi->param('comment');
 
-  AppendComment($bugid, $user->id, $comment, $attachment->isprivate, $timestamp);
+    $bug->add_comment($comment, { isprivate => $attachment->isprivate });
 
   # Assign the bug to the user, if they are allowed to take it
   my $owner = "";
-  
   if ($cgi->param('takebug') && $user->in_group('editbugs', $bug->product_id)) {
-      
-      my @fields = ("assigned_to", "bug_status", "resolution", "everconfirmed",
-                    "login_name");
-      
-      # Get the old values, for the bugs_activity table
-      my @oldvalues = $dbh->selectrow_array(
-              "SELECT " . join(", ", @fields) . " " .
-              "FROM bugs " .
-              "INNER JOIN profiles " .
-              "ON profiles.userid = bugs.assigned_to " .
-              "WHERE bugs.bug_id = ?", undef, $bugid);
-      
-      my @newvalues = ($user->id, "ASSIGNED", "", 1, $user->login);
-      
+      # When taking a bug, we have to follow the workflow.
+      my $bug_status = $cgi->param('bug_status') || '';
+      ($bug_status) = grep {$_->name eq $bug_status} @{$bug->status->can_change_to};
+
+      if ($bug_status && $bug_status->is_open
+          && ($bug_status->name ne 'UNCONFIRMED' || $bug->product_obj->votes_to_confirm))
+      {
+          $bug->set_status($bug_status->name);
+          $bug->clear_resolution();
+      }
       # Make sure the person we are taking the bug from gets mail.
-      $owner = $oldvalues[4];  
-
-      # Update the bug record. Note that this doesn't involve login_name.
-      $dbh->do('UPDATE bugs SET delta_ts = ?, ' .
-               join(', ', map("$fields[$_] = ?", (0..3))) . ' WHERE bug_id = ?',
-               undef, ($timestamp, map($newvalues[$_], (0..3)) , $bugid));
-
-      # If the bug was a dupe, we have to remove its entry from the
-      # 'duplicates' table.
-      $dbh->do('DELETE FROM duplicates WHERE dupe = ?', undef, $bugid);
-
-      # We store email addresses in the bugs_activity table rather than IDs.
-      $oldvalues[0] = $oldvalues[4];
-      $newvalues[0] = $newvalues[4];
+      $owner = $bug->assigned_to->login;
+      $bug->set_assigned_to($user);
+  }
+  $bug->update($timestamp);
 
-      for (my $i = 0; $i < 4; $i++) {
-          if ($oldvalues[$i] ne $newvalues[$i]) {
-              LogActivityEntry($bugid, $fields[$i], $oldvalues[$i],
-                               $newvalues[$i], $user->id, $timestamp);
-          }
-      }      
-  }   
+  $dbh->bz_commit_transaction;
 
   # Define the variables and functions that will be passed to the UI template.
   $vars->{'mailrecipients'} =  { 'changer' => $user->login,
                                  'owner'   => $owner };
   $vars->{'attachment'} = $attachment;
+  # We cannot reuse the $bug object as delta_ts has eventually been updated
+  # since the object was created.
+  $vars->{'bugs'} = [new Bugzilla::Bug($bugid)];
+  $vars->{'header_done'} = 1;
   $vars->{'contenttypemethod'} = $cgi->param('contenttypemethod');
 
   print $cgi->header();
@@ -439,11 +432,6 @@ sub edit {
   $vars->{'bugsummary'} = $bugsummary; 
   $vars->{'attachments'} = $bugattachments;
 
-  # Determine if PatchReader is installed
-  eval {
-    require PatchReader;
-    $vars->{'patchviewerinstalled'} = 1;
-  };
   print $cgi->header();
 
   # Generate and return the UI (HTML page) from the appropriate template.
@@ -461,7 +449,6 @@ sub update {
     my $dbh = Bugzilla->dbh;
 
     # Retrieve and validate parameters
-    ValidateComment(scalar $cgi->param('comment'));
     my $attachment = validateID();
     my $bug = new Bugzilla::Bug($attachment->bug_id);
     $attachment->validate_can_edit($bug->product_id);
@@ -472,6 +459,27 @@ sub update {
     $cgi->param('isobsolete', $cgi->param('isobsolete') ? 1 : 0);
     $cgi->param('isprivate', $cgi->param('isprivate') ? 1 : 0);
 
+    # Now make sure the attachment has not been edited since we loaded the page.
+    if (defined $cgi->param('delta_ts')
+        && $cgi->param('delta_ts') ne $attachment->modification_time)
+    {
+        ($vars->{'operations'}) =
+            Bugzilla::Bug::GetBugActivity($bug->id, $attachment->id, $cgi->param('delta_ts'));
+
+        # If the modification date changed but there is no entry in
+        # the activity table, this means someone commented only.
+        # In this case, there is no reason to midair.
+        if (scalar(@{$vars->{'operations'}})) {
+            $cgi->param('delta_ts', $attachment->modification_time);
+            $vars->{'attachment'} = $attachment;
+
+            print $cgi->header();
+            # Warn the user about the mid-air collision and ask them what to do.
+            $template->process("attachment/midair.html.tmpl", $vars)
+              || ThrowTemplateError($template->error());
+            exit;
+        }
+    }
     # If the submitter of the attachment is not in the insidergroup,
     # be sure that he cannot overwrite the private bit.
     # This check must be done before calling Bugzilla::Flag*::validate(),
@@ -483,6 +491,17 @@ sub update {
         $cgi->param('isprivate', $attachment->isprivate);
     }
 
+    # If the user submitted a comment while editing the attachment,
+    # add the comment to the bug. Do this after having validated isprivate!
+    if ($cgi->param('comment')) {
+        # Prepend a string to the comment to let users know that the comment came
+        # from the "edit attachment" screen.
+        my $comment = "(From update of attachment " . $attachment->id . ")\n" .
+                      $cgi->param('comment');
+
+        $bug->add_comment($comment, { isprivate => $cgi->param('isprivate') });
+    }
+
     # The order of these function calls is important, as Flag::validate
     # assumes User::match_field has ensured that the values in the
     # requestee fields are legitimate user email addresses.
@@ -491,18 +510,8 @@ sub update {
     });
     Bugzilla::Flag::validate($cgi, $bug->id, $attachment->id);
 
-    # Lock database tables in preparation for updating the attachment.
-    $dbh->bz_lock_tables('attachments WRITE', 'flags WRITE' ,
-          'flagtypes READ', 'fielddefs READ', 'bugs_activity WRITE',
-          'flaginclusions AS i READ', 'flagexclusions AS e READ',
-          # cc, bug_group_map, user_group_map, and groups are in here so we
-          # can check the permissions of flag requestees and email addresses
-          # on the flag type cc: lists via the CanSeeBug
-          # function call in Flag::notify. group_group_map is in here si
-          # Bugzilla::User can flatten groups.
-          'bugs WRITE', 'profiles READ', 'email_setting READ',
-          'cc READ', 'bug_group_map READ', 'user_group_map READ',
-          'group_group_map READ', 'groups READ', 'group_control_map READ');
+    # Start a transaction in preparation for updating the attachment.
+    $dbh->bz_start_transaction();
 
   # Quote the description and content type for use in the SQL UPDATE statement.
   my $description = $cgi->param('description');
@@ -520,7 +529,7 @@ sub update {
   # to attachments so that we can delete pending requests if the user
   # is obsoleting this attachment without deleting any requests
   # the user submits at the same time.
-  Bugzilla::Flag::process($bug, $attachment, $timestamp, $cgi);
+  Bugzilla::Flag::process($bug, $attachment, $timestamp, $cgi, $vars);
 
   # Update the attachment record in the database.
   $dbh->do("UPDATE  attachments 
@@ -529,11 +538,12 @@ sub update {
                     filename    = ?,
                     ispatch     = ?,
                     isobsolete  = ?,
-                    isprivate   = ?
+                    isprivate   = ?,
+                    modification_time = ?
             WHERE   attach_id   = ?",
             undef, ($description, $contenttype, $filename,
             $cgi->param('ispatch'), $cgi->param('isobsolete'), 
-            $cgi->param('isprivate'), $attachment->id));
+            $cgi->param('isprivate'), $timestamp, $attachment->id));
 
   my $updated_attachment = Bugzilla::Attachment->get($attachment->id);
   # Record changes in the activity table.
@@ -572,25 +582,19 @@ sub update {
                   $attachment->isprivate, $updated_attachment->isprivate);
   }
   
-  # Unlock all database tables now that we are finished updating the database.
-  $dbh->bz_unlock_tables();
+  # Commit the transaction now that we are finished updating the database.
+  $dbh->bz_commit_transaction();
 
-  # If the user submitted a comment while editing the attachment,
-  # add the comment to the bug.
-  if ($cgi->param('comment'))
-  {
-    # Prepend a string to the comment to let users know that the comment came
-    # from the "edit attachment" screen.
-    my $comment = "(From update of attachment " . $attachment->id . ")\n" .
-                  $cgi->param('comment');
+  # Commit the comment, if any.
+  $bug->update();
 
-    # Append the comment to the list of comments in the database.
-    AppendComment($bug->id, $user->id, $comment, $updated_attachment->isprivate, $timestamp);
-  }
-  
   # Define the variables and functions that will be passed to the UI template.
   $vars->{'mailrecipients'} = { 'changer' => Bugzilla->user->login };
   $vars->{'attachment'} = $attachment;
+  # We cannot reuse the $bug object as delta_ts has eventually been updated
+  # since the object was created.
+  $vars->{'bugs'} = [new Bugzilla::Bug($bug->id)];
+  $vars->{'header_done'} = 1;
 
   print $cgi->header();
 
@@ -632,6 +636,8 @@ sub delete_attachment {
             ThrowUserError('token_does_not_exist');
         }
 
+        my $bug = new Bugzilla::Bug($attachment->bug_id);
+
         # The token is valid. Delete the content of the attachment.
         my $msg;
         $vars->{'attachment'} = $attachment;
@@ -642,25 +648,24 @@ sub delete_attachment {
         $template->process("attachment/delete_reason.txt.tmpl", $vars, \$msg)
           || ThrowTemplateError($template->error());
 
-        $dbh->bz_lock_tables('attachments WRITE', 'attach_data WRITE', 'flags WRITE');
-        $dbh->do('DELETE FROM attach_data WHERE id = ?', undef, $attachment->id);
-        $dbh->do('UPDATE attachments SET mimetype = ?, ispatch = ?, isurl = ?,
-                         isobsolete = ?
-                  WHERE attach_id = ?', undef,
-                 ('text/plain', 0, 0, 1, $attachment->id));
-        $dbh->do('DELETE FROM flags WHERE attach_id = ?', undef, $attachment->id);
-        $dbh->bz_unlock_tables;
+        # Paste the reason provided by the admin into a comment.
+        $bug->add_comment($msg);
 
         # If the attachment is stored locally, remove it.
         if (-e $attachment->_get_local_filename) {
             unlink $attachment->_get_local_filename;
         }
+        $attachment->remove_from_db();
 
         # Now delete the token.
         delete_token($token);
 
-        # Paste the reason provided by the admin into a comment.
-        AppendComment($attachment->bug_id, $user->id, $msg);
+        # Insert the comment.
+        $bug->update();
+
+        # Required to display the bug the deleted attachment belongs to.
+        $vars->{'bugs'} = [$bug];
+        $vars->{'header_done'} = 1;
 
         $template->process("attachment/updated.html.tmpl", $vars)
           || ThrowTemplateError($template->error());
diff --git a/buglist.cgi b/buglist.cgi
index f7da1626c2c50e28748868e33d438ce15eb058a3..493f4b3a986a2bcb47c8b912693adcbb61adb4e0 100755
--- a/buglist.cgi
+++ b/buglist.cgi
@@ -32,7 +32,7 @@
 # Make it harder for us to do dangerous things in Perl.
 use strict;
 
-use lib qw(.);
+use lib qw(. lib);
 
 use Bugzilla;
 use Bugzilla::Constants;
@@ -46,6 +46,7 @@ use Bugzilla::Bug;
 use Bugzilla::Product;
 use Bugzilla::Keyword;
 use Bugzilla::Field;
+use Bugzilla::Status;
 
 use Date::Parse;
 
@@ -872,6 +873,7 @@ if ($order) {
             # A custom list of columns.  Make sure each column is valid.
             foreach my $fragment (split(/,/, $order)) {
                 $fragment = trim($fragment);
+                next unless $fragment;
                 # Accept an order fragment matching a column name, with
                 # asc|desc optionally following (to specify the direction)
                 if (grep($fragment =~ /^\Q$_\E(\s+(asc|desc))?$/, @columnnames, keys(%$columns))) {
@@ -892,11 +894,12 @@ if ($order) {
             $order = join(",", @order);
             # Now that we have checked that all columns in the order are valid,
             # detaint the order string.
-            trick_taint($order);
+            trick_taint($order) if $order;
         };
     }
 }
-else {
+
+if (!$order) {
     # DEFAULT
     $order = "bugs.bug_status, bugs.priority, map_assigned_to.login_name, bugs.bug_id";
 }
@@ -946,7 +949,7 @@ $db_order =~ s/$aggregate_search/percentage_complete/g;
 # Now put $db_order into a format that Bugzilla::Search can use.
 # (We create $db_order as a string first because that's the way
 # we did it before Bugzilla::Search took an "order" argument.)
-my @orderstrings = split(',', $db_order);
+my @orderstrings = split(/,\s*/, $db_order);
 
 # Generate the basic SQL query that will be used to generate the bug list.
 my $search = new Bugzilla::Search('fields' => \@selectnames, 
@@ -962,7 +965,7 @@ if (defined $cgi->param('limit')) {
 }
 elsif ($fulltext) {
     $query .= " " . $dbh->sql_limit(FULLTEXT_BUGLIST_LIMIT);
-    $vars->{'sorted_by_relevance'} = 1;
+    $vars->{'message'} = 'buglist_sorted_by_relevance' if ($cgi->param('order') =~ /^relevance/);
 }
 
 
@@ -1081,7 +1084,7 @@ if (@bugidlist) {
      "LEFT JOIN group_control_map " .
             "ON group_control_map.product_id = bugs.product_id " .
            "AND group_control_map.group_id = bug_group_map.group_id " .
-         "WHERE bugs.bug_id IN (" . join(',',@bugidlist) . ") " .
+         "WHERE " . $dbh->sql_in('bugs.bug_id', \@bugidlist) . 
             $dbh->sql_group_by('bugs.bug_id'));
     $sth->execute();
     while (my ($bug_id, $min_membercontrol) = $sth->fetchrow_array()) {
@@ -1111,7 +1114,7 @@ $vars->{'columns'} = $columns;
 $vars->{'displaycolumns'} = \@displaycolumns;
 
 $vars->{'openstates'} = [BUG_STATE_OPEN];
-$vars->{'closedstates'} = [map {$_->name} Bugzilla::Status::closed_bug_statuses()];
+$vars->{'closedstates'} = [map {$_->name} closed_bug_statuses()];
 
 # The list of query fields in URL query string format, used when creating
 # URLs to the same query results page with different parameters (such as
@@ -1158,19 +1161,23 @@ if ($dotweak) {
     my @bug_statuses = map {$dbh->quote($_)} keys %$bugstatuses;
     my $bug_status_ids =
       $dbh->selectcol_arrayref('SELECT id FROM bug_status
-                                WHERE value IN (' . join(', ', @bug_statuses) .')');
+                               WHERE ' . $dbh->sql_in('value', \@bug_statuses));
 
     # This query collects new statuses which are common to all current bug statuses.
     # It also accepts transitions where the bug status doesn't change.
     $bug_status_ids =
-      $dbh->selectcol_arrayref('SELECT DISTINCT new_status
-                                FROM status_workflow sw1
-                                WHERE NOT EXISTS (SELECT * FROM status_workflow sw2
-                                                  WHERE sw2.old_status != sw1.new_status
-                                                  AND sw2.old_status IN (' . join(', ', @$bug_status_ids) . ')
-                                                  AND NOT EXISTS (SELECT * FROM status_workflow sw3
-                                                                  WHERE sw3.new_status = sw1.new_status
-                                                                  AND sw3.old_status = sw2.old_status))');
+      $dbh->selectcol_arrayref(
+            'SELECT DISTINCT new_status
+               FROM status_workflow sw1
+              WHERE NOT EXISTS 
+                   (SELECT * FROM status_workflow sw2
+                     WHERE sw2.old_status != sw1.new_status 
+                           AND '
+                         . $dbh->sql_in('sw2.old_status', $bug_status_ids)
+                         . ' AND NOT EXISTS 
+                           (SELECT * FROM status_workflow sw3
+                             WHERE sw3.new_status = sw1.new_status
+                                   AND sw3.old_status = sw2.old_status))');
 
     $vars->{'current_bug_statuses'} = [keys %$bugstatuses];
     $vars->{'new_bug_statuses'} = Bugzilla::Status->new_from_list($bug_status_ids);
diff --git a/chart.cgi b/chart.cgi
index db487457078ea0cb8833ae37cf784b2a10da07db..70eeb814a3c11504df511c4f8abf0f0a24a44ad1 100755
--- a/chart.cgi
+++ b/chart.cgi
@@ -43,7 +43,7 @@
 # Offer subscription when you get a "series already exists" error?
 
 use strict;
-use lib qw(.);
+use lib qw(. lib);
 
 use Bugzilla;
 use Bugzilla::Constants;
@@ -71,6 +71,7 @@ if (grep(/^cmd-/, $cgi->param())) {
 
 my $action = $cgi->param('action');
 my $series_id = $cgi->param('series_id');
+$vars->{'doc_section'} = 'reporting.html#charts';
 
 # Because some actions are chosen by buttons, we can't encode them as the value
 # of the action param, because that value is localization-dependent. So, we
diff --git a/checksetup.pl b/checksetup.pl
index 81d4a819f24f86d2004bb3b077d58fe5fc67c9c3..b8f9e325bff99e998280bfde8276300af1e6e6de 100755
--- a/checksetup.pl
+++ b/checksetup.pl
@@ -51,7 +51,7 @@ use POSIX qw(setlocale LC_CTYPE);
 use Safe;
 
 BEGIN { chdir dirname($0); }
-use lib ".";
+use lib qw(. lib);
 use Bugzilla::Constants;
 use Bugzilla::Install::Requirements;
 use Bugzilla::Install::Util qw(install_string get_version_and_os);
@@ -66,7 +66,8 @@ $ENV{'HTTP_ACCEPT_LANGUAGE'} ||= setlocale(LC_CTYPE);
 
 my %switch;
 GetOptions(\%switch, 'help|h|?', 'check-modules', 'no-templates|t',
-                     'verbose|v|no-silent', 'make-admin=s');
+                     'verbose|v|no-silent', 'make-admin=s', 
+                     'reset-password=s');
 
 # Print the help message if that switch was selected.
 pod2usage({-verbose => 1, -exitval => 1}) if $switch{'help'};
@@ -212,6 +213,9 @@ Bugzilla::Install::update_settings();
 Bugzilla::Install::make_admin($switch{'make-admin'}) if $switch{'make-admin'};
 Bugzilla::Install::create_admin();
 
+Bugzilla::Install::reset_password($switch{'reset-password'})
+    if $switch{'reset-password'};
+
 ###########################################################################
 # Create default Product and Classification
 ###########################################################################
@@ -240,6 +244,7 @@ checksetup.pl - A do-it-all upgrade and installation script for Bugzilla.
  ./checksetup.pl [--help|--check-modules]
  ./checksetup.pl [SCRIPT [--verbose]] [--no-templates|-t]
                  [--make-admin=user@domain.com]
+                 [--reset-password=user@domain.com]
 
 =head1 OPTIONS
 
@@ -267,6 +272,11 @@ Makes the specified user into a Bugzilla administrator. This is
 in case you accidentally lock yourself out of the Bugzilla administrative
 interface.
 
+=item B<--reset-password>=user@domain.com
+
+Resets the specified user's password. checksetup.pl will prompt you to 
+enter a new password for the user.
+
 =item B<--no-templates> (B<-t>)
 
 Don't compile the templates at all. Existing compiled templates will
diff --git a/colchange.cgi b/colchange.cgi
index b2deb3274b66f6b148a09aec10e823ed8e6f72af..c580547ce3df35f7654565a1741ff8b54e9c25e8 100755
--- a/colchange.cgi
+++ b/colchange.cgi
@@ -24,7 +24,7 @@
 
 use strict;
 
-use lib qw(.);
+use lib qw(. lib);
 
 use Bugzilla;
 use Bugzilla::Constants;
diff --git a/collectstats.pl b/collectstats.pl
index a1ab9b2d1976ede3202722870a95155465bb4070..1e5c5fd9d1a74d2546e878230be294fb0b3cae89 100755
--- a/collectstats.pl
+++ b/collectstats.pl
@@ -34,7 +34,7 @@ use AnyDBM_File;
 use strict;
 use IO::Handle;
 
-use lib ".";
+use lib qw(. lib);
 
 use Bugzilla;
 use Bugzilla::Constants;
diff --git a/config.cgi b/config.cgi
index c320ae5156c9d758b41079987e33c6d4dc90af28..ad8dbf0fe529399244caf60a4f74ea8996325056 100755
--- a/config.cgi
+++ b/config.cgi
@@ -28,13 +28,13 @@
 # Make it harder for us to do dangerous things in Perl.
 use strict;
 
-use lib qw(.);
+use lib qw(. lib);
 
 use Bugzilla;
 use Bugzilla::Constants;
 use Bugzilla::Error;
 use Bugzilla::Keyword;
-use Bugzilla::Bug;
+use Bugzilla::Status;
 use Bugzilla::Field;
 
 my $user = Bugzilla->login(LOGIN_OPTIONAL);
@@ -55,6 +55,9 @@ $vars->{'op_sys'}    = get_legal_field_values('op_sys');
 $vars->{'keyword'}    = [map($_->name, Bugzilla::Keyword->get_all)];
 $vars->{'resolution'} = get_legal_field_values('resolution');
 $vars->{'status'}    = get_legal_field_values('bug_status');
+$vars->{'custom_fields'} =
+  [Bugzilla->get_fields({custom => 1, obsolete => 0, type => FIELD_TYPE_SINGLE_SELECT}),
+   Bugzilla->get_fields({custom => 1, obsolete => 0, type => FIELD_TYPE_MULTI_SELECT})];
 
 # Include a list of product objects.
 if ($cgi->param('product')) {
diff --git a/contrib/CVS/Entries b/contrib/CVS/Entries
index 3a355cb33b9e16ff345372387c1113b8eee3b94a..0cf2eaa66487f28b00239223cd081d4e0793fb4c 100644
--- a/contrib/CVS/Entries
+++ b/contrib/CVS/Entries
@@ -1,17 +1,17 @@
-/README/1.11/Tue Sep  4 22:33:16 2007//TBUGZILLA-3_1_2
-/bugzilla_ldapsync.rb/1.2/Sat Apr 26 16:35:04 2003//TBUGZILLA-3_1_2
-/bz_webservice_demo.pl/1.10/Sun Jun 17 18:07:13 2007//TBUGZILLA-3_1_2
-/bzdbcopy.pl/1.4/Sun Sep  2 09:32:04 2007//TBUGZILLA-3_1_2
-/cvs-update.pl/1.1/Tue Nov 11 05:58:52 2003//TBUGZILLA-3_1_2
-/gnats2bz.pl/1.8/Sun Sep  3 20:37:01 2006//TBUGZILLA-3_1_2
-/jb2bz.py/1.5/Fri Aug 26 23:11:32 2005//TBUGZILLA-3_1_2
-/merge-users.pl/1.4/Wed Mar 28 12:57:29 2007//TBUGZILLA-3_1_2
-/mysqld-watcher.pl/1.5/Thu Mar 27 00:06:53 2003//TBUGZILLA-3_1_2
-/recode.pl/1.4/Fri Dec 29 23:16:22 2006//TBUGZILLA-3_1_2
-/sendbugmail.pl/1.7/Mon Jul  3 21:42:47 2006//TBUGZILLA-3_1_2
-/sendunsentbugmail.pl/1.9/Wed Jun 21 00:44:48 2006//TBUGZILLA-3_1_2
-/syncLDAP.pl/1.9/Fri Aug 25 22:10:39 2006//TBUGZILLA-3_1_2
-/yp_nomail.sh/1.1/Tue Sep 12 23:50:31 2000//TBUGZILLA-3_1_2
+/README/1.12/Tue Oct 16 10:13:54 2007//TBUGZILLA-3_1_3
+/bugzilla_ldapsync.rb/1.2/Sat Apr 26 16:35:04 2003//TBUGZILLA-3_1_3
+/bz_webservice_demo.pl/1.13/Fri Jan 18 21:30:30 2008//TBUGZILLA-3_1_3
+/bzdbcopy.pl/1.6/Thu Dec 13 03:14:35 2007//TBUGZILLA-3_1_3
+/cvs-update.pl/1.1/Tue Nov 11 05:58:52 2003//TBUGZILLA-3_1_3
+/gnats2bz.pl/1.8/Sun Sep  3 20:37:01 2006//TBUGZILLA-3_1_3
+/jb2bz.py/1.5/Fri Aug 26 23:11:32 2005//TBUGZILLA-3_1_3
+/merge-users.pl/1.7/Wed Nov 14 22:56:32 2007//TBUGZILLA-3_1_3
+/mysqld-watcher.pl/1.5/Thu Mar 27 00:06:53 2003//TBUGZILLA-3_1_3
+/recode.pl/1.5/Fri Oct 19 06:46:17 2007//TBUGZILLA-3_1_3
+/sendbugmail.pl/1.8/Fri Oct 19 06:46:17 2007//TBUGZILLA-3_1_3
+/sendunsentbugmail.pl/1.10/Fri Oct 19 06:46:17 2007//TBUGZILLA-3_1_3
+/syncLDAP.pl/1.12/Wed Jan 23 13:59:08 2008//TBUGZILLA-3_1_3
+/yp_nomail.sh/1.1/Tue Sep 12 23:50:31 2000//TBUGZILLA-3_1_3
 D/bugzilla-submit////
 D/cmdline////
 D/gnatsparse////
diff --git a/contrib/CVS/Tag b/contrib/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/contrib/CVS/Tag
+++ b/contrib/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/contrib/README b/contrib/README
index a22a9257559bbb67a13033afe0e85938fac8fd0d..32a5b648853a74e1fd6b0ad0ee3b4c976d786215 100644
--- a/contrib/README
+++ b/contrib/README
@@ -1,47 +1,73 @@
 This directory contains contributed software related to Bugzilla.
 Things in here have not necessarily been tested or tried by anyone
-except the original contributor, so tred carefully.  But it may still
-be useful to you.
+except the original contributor, so tread carefully.  But it may still
+be useful to you. Read the files themselves for detailed usage information
+on any specific script.
 
 This file is encoded in UTF8 for purposes of contributor names.
 
 This directory includes:
 
+bugzilla_ldapsync.rb --  Script that can be run via Cron that queries an LDAP
+                         server for e-mail addresses to add Bugzilla users
+                         for. Will optionally disable Bugzilla users with
+                         no matching LDAP record. Contributed by Thomas
+                         Stromberg <thomas+bugzilla@stromberg.org>.
+
     bugzilla-submit/ --  A standalone bug submission program.
 
-   mysqld-watcher.pl --  This script can be installed as a frequent cron 
-                         job to clean up stalled/dead queries.
+         bzdbcopy.pl --  A script to copy data from an installation running 
+                         on one DB platform to an installation running on 
+                         another DB platform.
 
-       sendbugmail.pl -- This script is a drop-in replacement for the
-                         'processmail' script which used to be shipped
-                         with Bugzilla, but was replaced by the
-                         Bugzilla/BugMail.pm Perl module.  You can use
-                         this script if you were previously calling
-                         processmail from other scripts external to
-                         Bugzilla.  See the comments at the top of
-                         the file for usage information.  Contributed
-                         by Nick Barnes of Ravenbrook Limited.
+bz_webservice_demo.p --  An example script that demonstrates how to talk to
+                         Bugzilla via XMLRPC.
+
+             cmdline/ -- Various commands for querying your Bugzilla 
+                         installation.
+
+       cvs-update.pl --  Script to keep a record of all CVS updates made 
+                         from a given directory. The log is useful when
+                         changes need to be backed out.
 
          gnatsparse/ --  A Python script used to import a GNATS database
                          into Bugzilla.
 
-         gnats2bz.pl --  A perl script to help import bugs from a GNATS 
+         gnats2bz.pl --  A Perl script to help import bugs from a GNATS 
                          database into a Bugzilla database.  Contributed by
-                         Tom Schutter <tom@platte.com>
- 
-        yp_nomail.sh --  Script you can run via cron that regularly updates
-                         the nomail file for terminated employees 
+                         Tom Schutter <tom@platte.com>.
 
-bugzilla_ldapsync.rb --  Script you can run via cron that queries an LDAP
-                         server for e-mail addresses to add Bugzilla users
-                         for. Will optionally disable Bugzilla users with
-                         no matching LDAP record. Contributed by Thomas
-                         Stromberg <thomas+bugzilla@stromberg.org>
+            jb2bz.py --  Script to import bugs from JitterBug to Bugzilla.
+
+      merge-users.pl --  Script to merge two user accounts. The activities
+                         from one account are moved to the another. Specify
+                         both accounts on the command line. The new account
+                         must already exist. 
+
+   mysqld-watcher.pl --  This script can be installed as a frequent Cron 
+                         job to clean up stalled/dead queries.
+
+           recode.pl --  Script to convert a database from one encoding 
+                         (or multiple encodings)  to UTF-8.
+
+      sendbugmail.pl --  This script is a drop-in replacement for the
+                         'processmail' script which used to be shipped
+                         with Bugzilla, but was replaced by the
+                         Bugzilla/BugMail.pm Perl module. This script can 
+                         be used if 'processmail' was previously called
+                         from other scripts external to
+                         Bugzilla.  See the comments at the top of
+                         the file for usage information. Contributed
+                         by Nick Barnes of Ravenbrook Limited.
+
+sendunsentbugmail.pl --  Script to find bugs with un-sent mail and to
+                         send all unsent messages.
 
-         syncLDAP.pl --  Script you can run via cron that queries an LDAP
+         syncLDAP.pl --  Script that can be run via Cron that queries an LDAP
                          server for users and e-mail addresses and adds
                          missing users to Bugzilla. Can disable/update 
                          non-existing/changed information. Contributed by
-                         Andreas Höfler <andreas.hoefler@bearingpoint.com>
-
+                         Andreas Höfler <andreas.hoefler@bearingpoint.com>.
 
+        yp_nomail.sh --  Script that can be run via Cron that regularly updates
+                         the nomail file for terminated employees. 
diff --git a/contrib/bugzilla-submit/CVS/Entries b/contrib/bugzilla-submit/CVS/Entries
index 3465fe011a4fd4e9b1c726708dad4995f35adba9..bec48812306ca43bb5d8d08e19e924cae88a8a6c 100644
--- a/contrib/bugzilla-submit/CVS/Entries
+++ b/contrib/bugzilla-submit/CVS/Entries
@@ -1,5 +1,5 @@
-/README/1.2/Wed Dec 10 23:36:21 2003//TBUGZILLA-3_1_2
-/bugdata.txt/1.2/Fri Jan 16 22:26:49 2004//TBUGZILLA-3_1_2
-/bugzilla-submit/1.6/Fri Jul 16 03:56:35 2004//TBUGZILLA-3_1_2
-/bugzilla-submit.xml/1.7/Mon Apr 11 14:23:32 2005//TBUGZILLA-3_1_2
+/README/1.2/Wed Dec 10 23:36:21 2003//TBUGZILLA-3_1_3
+/bugdata.txt/1.2/Fri Jan 16 22:26:49 2004//TBUGZILLA-3_1_3
+/bugzilla-submit/1.6/Fri Jul 16 03:56:35 2004//TBUGZILLA-3_1_3
+/bugzilla-submit.xml/1.7/Mon Apr 11 14:23:32 2005//TBUGZILLA-3_1_3
 D
diff --git a/contrib/bugzilla-submit/CVS/Tag b/contrib/bugzilla-submit/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/contrib/bugzilla-submit/CVS/Tag
+++ b/contrib/bugzilla-submit/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/contrib/bz_webservice_demo.pl b/contrib/bz_webservice_demo.pl
index 70fb6c29430635d69728c7cc799799e085bf53b7..a5e6af9f95694a5d0c4863167bcb27c9251cba64 100755
--- a/contrib/bz_webservice_demo.pl
+++ b/contrib/bz_webservice_demo.pl
@@ -29,6 +29,7 @@ C<bz_webservice_demo.pl --help> for detailed help
 =cut
 
 use strict;
+use lib qw(lib);
 use Getopt::Long;
 use Pod::Usage;
 use File::Basename qw(dirname);
@@ -50,6 +51,9 @@ my $bug_id;
 my $product_name;
 my $create_file_name;
 my $legal_field_values;
+my $add_comment;
+my $private;
+my $work_time;
 
 GetOptions('help|h|?'       => \$help,
            'uri=s'          => \$Bugzilla_uri,
@@ -59,7 +63,10 @@ GetOptions('help|h|?'       => \$help,
            'bug_id:s'       => \$bug_id,
            'product_name:s' => \$product_name,
            'create:s'       => \$create_file_name,
-           'field:s'        => \$legal_field_values
+           'field:s'        => \$legal_field_values,
+           'comment:s'      => \$add_comment,
+           'private:i'      => \$private,
+           'worktime:f'     => \$work_time
           ) or pod2usage({'-verbose' => 0, '-exitval' => 1});
 
 =head1 OPTIONS
@@ -87,7 +94,7 @@ Bugzilla password. Specify this together with B<--login> in order to log in.
 
 =item --rememberlogin
 
-Gives access to Bugzilla's “Bugzilla_remember” option.
+Gives access to Bugzilla's "Bugzilla_remember" option.
 Specify this option while logging in to do the same thing as ticking the
 C<Bugzilla_remember> box on Bugilla's log in form.
 Don't specify this option to do the same thing as unchecking the box.
@@ -113,6 +120,20 @@ Pass a field name to get legal values for this field. It must be either a
 global select field (such as bug_status, resolution, rep_platform, op_sys,
 priority, bug_severity) or a custom select field.
 
+=item --comment
+
+A comment to add to a bug identified by B<--bug_id>. You must also pass a B<--login>
+and B<--password> to log in to Bugzilla.
+
+=item --private
+
+An optional non-zero value to specify B<--comment> as private.
+
+=item --worktime
+
+An optional double precision number specifying the work time for B<--comment>.
+
+
 =back
 
 =head1 DESCRIPTION
@@ -214,13 +235,15 @@ if (defined($Bugzilla_login)) {
 
 =head2 Retrieving Bug Information
 
-Call C<Bug.get_bug> with the ID of the bug you want to know more of.
-The call will return a C<Bugzilla::Bug> object.
+Call C<Bug.get> with the ID of the bug you want to know more of.
+The call will return a C<Bugzilla::Bug> object. 
+
+Note: You can also use "Bug.get_bugs" for compatibility with Bugzilla 3.0 API.
 
 =cut
 
 if ($bug_id) {
-    $soapresult = $proxy->call('Bug.get_bugs', { ids => [$bug_id] });
+    $soapresult = $proxy->call('Bug.get', { ids => [$bug_id] });
     _die_on_fault($soapresult);
     $result = $soapresult->result;
     my $bug = $result->{bugs}->[0];
@@ -301,6 +324,25 @@ if ($legal_field_values) {
     print join("\n", @{$result->{values}}) . "\n";
 }
 
+=head2 Adding a comment to a bug
+
+Call C<Bug.add_comment> with the bug id, the comment text, and optionally the number
+of hours you worked on the bug, and a boolean indicating if the comment is private
+or not.
+
+=cut
+
+if ($add_comment) {
+    if ($bug_id) {
+        $soapresult = $proxy->call('Bug.add_comment', {id => $bug_id,
+            comment => $add_comment, private => $private, work_time => $work_time});
+        _die_on_fault($soapresult);
+        print "Comment added.\n";
+    }
+    else {
+        print "A --bug_id must be supplied to add a comment.";
+    }
+}
 
 =head1 NOTES
 
diff --git a/contrib/bzdbcopy.pl b/contrib/bzdbcopy.pl
index 489909882a80b0208ad61e0a9f24ad1373b1d26e..5f5800d8823812ee5bd4403acd5191e79097f5c8 100755
--- a/contrib/bzdbcopy.pl
+++ b/contrib/bzdbcopy.pl
@@ -19,9 +19,11 @@
 # Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
 
 use strict;
-use lib ".";
+use lib qw(. lib);
 use Bugzilla;
+use Bugzilla::Constants;
 use Bugzilla::DB;
+use Bugzilla::Install::Util qw(indicate_progress);
 use Bugzilla::Util;
 
 #####################################################################
@@ -33,25 +35,29 @@ use constant SOURCE_DB_TYPE => 'Mysql';
 use constant SOURCE_DB_NAME => 'bugs';
 use constant SOURCE_DB_USER => 'bugs';
 use constant SOURCE_DB_PASSWORD => '';
+use constant SOURCE_DB_HOST => 'localhost';
 
 # Settings for the 'Target' DB that you are copying to.
 use constant TARGET_DB_TYPE => 'Pg';
 use constant TARGET_DB_NAME => 'bugs';
 use constant TARGET_DB_USER => 'bugs';
 use constant TARGET_DB_PASSWORD => '';
+use constant TARGET_DB_HOST => 'localhost';
 
 #####################################################################
 # MAIN SCRIPT
 #####################################################################
 
+Bugzilla->usage_mode(USAGE_MODE_CMDLINE);
+
 print "Connecting to the '" . SOURCE_DB_NAME . "' source database on " 
       . SOURCE_DB_TYPE . "...\n";
-my $source_db = Bugzilla::DB::_connect(SOURCE_DB_TYPE, 'localhost', 
+my $source_db = Bugzilla::DB::_connect(SOURCE_DB_TYPE, SOURCE_DB_HOST, 
     SOURCE_DB_NAME, undef, undef, SOURCE_DB_USER, SOURCE_DB_PASSWORD);
 
 print "Connecting to the '" . TARGET_DB_NAME . "' target database on "
       . TARGET_DB_TYPE . "...\n";
-my $target_db = Bugzilla::DB::_connect(TARGET_DB_TYPE, 'localhost', 
+my $target_db = Bugzilla::DB::_connect(TARGET_DB_TYPE, TARGET_DB_HOST, 
     TARGET_DB_NAME, undef, undef, TARGET_DB_USER, TARGET_DB_PASSWORD);
 my $ident_char = $target_db->get_info( 29 ); # SQL_IDENTIFIER_QUOTE_CHAR
 
@@ -65,11 +71,12 @@ my @table_list = $target_db->bz_table_list_real();
 my $bz_schema_location = lsearch(\@table_list, 'bz_schema');
 splice(@table_list, $bz_schema_location, 1) if $bz_schema_location > 0;
 
-# We turn off autocommit on the target DB, because we're doing so
-# much copying.
-$target_db->{AutoCommit} = 0;
-$target_db->{AutoCommit} == 0 
-    || warn "Failed to disable autocommit on " . TARGET_DB_TYPE;
+# Instead of figuring out some fancy algorithm to insert data in the right
+# order and not break FK integrity, we just drop them all.
+$target_db->bz_drop_foreign_keys();
+# We start a transaction on the target DB, which helps when we're doing
+# so many inserts.
+$target_db->bz_start_transaction();
 foreach my $table (@table_list) {
     my @serial_cols;
     print "Reading data from the source '$table' table on " 
@@ -94,9 +101,25 @@ foreach my $table (@table_list) {
     print "Clearing out the target '$table' table on " 
           . TARGET_DB_TYPE . "...\n";
     $target_db->do("DELETE FROM $table");
+
+    # Oracle doesn't like us manually inserting into tables that have
+    # auto-increment PKs set, because of the way we made auto-increment
+    # fields work.
+    if ($target_db->isa('Bugzilla::DB::Oracle')) {
+        foreach my $column (@table_columns) {
+            my $col_info = $source_db->bz_column_info($table, $column);
+            if ($col_info && $col_info->{TYPE} =~ /SERIAL/i) {
+                print "Dropping the sequence + trigger on $table.$column...\n";
+                $target_db->do("DROP TRIGGER ${table}_${column}_TR");
+                $target_db->do("DROP SEQUENCE ${table}_${column}_SEQ");
+            }
+        }
+    }
     
     print "Writing data to the target '$table' table on " 
-          . TARGET_DB_TYPE . "...";
+          . TARGET_DB_TYPE . "...\n";
+    my $count = 0;
+    my $total = scalar @$data_in;
     foreach my $row (@$data_in) {
         # Each column needs to be bound separately, because
         # many columns need to be dealt with specially.
@@ -144,24 +167,39 @@ foreach my $table (@table_list) {
         }
 
         $insert_sth->execute();
+        $count++;
+        indicate_progress({ current => $count, total => $total, every => 100 });
     }
 
-    # PostgreSQL doesn't like it when you insert values into
-    # a serial field; it doesn't increment the counter 
-    # automatically.
-    if ($target_db->isa('Bugzilla::DB::Pg')) {
-        foreach my $column (@table_columns) {
-            my $col_info = $source_db->bz_column_info($table, $column);
-            if ($col_info && $col_info->{TYPE} =~ /SERIAL/i) {
-                # Set the sequence to the current max value + 1.
-                my ($max_val) = $target_db->selectrow_array(
+    # For some DBs, we have to do clever things with auto-increment fields.
+    foreach my $column (@table_columns) {
+        next if $target_db->isa('Bugzilla::DB::Mysql');
+        my $col_info = $source_db->bz_column_info($table, $column);
+        if ($col_info && $col_info->{TYPE} =~ /SERIAL/i) {
+            my ($max_val) = $target_db->selectrow_array(
                     "SELECT MAX($column) FROM $table");
-                $max_val = 0 if !defined $max_val;
-                $max_val++;
-                print "\nSetting the next value for $table.$column to $max_val.";
+            # Set the sequence to the current max value + 1.
+            $max_val = 0 if !defined $max_val;
+            $max_val++;
+            print "\nSetting the next value for $table.$column to $max_val.";
+            if ($target_db->isa('Bugzilla::DB::Pg')) {
+                # PostgreSQL doesn't like it when you insert values into
+                # a serial field; it doesn't increment the counter 
+                # automatically.
                 $target_db->do("SELECT pg_catalog.setval 
                                 ('${table}_${column}_seq', $max_val, false)");
             }
+            elsif ($target_db->isa('Bugzilla::DB::Oracle')) {
+                # Oracle increments the counter on every insert, and *always*
+                # sets the field, even if you gave it a value. So if there
+                # were already rows in the target DB (like the default rows
+                # created by checksetup), you'll get crazy values in your
+                # id columns. So we just dropped the sequences above and
+                # we re-create them here, starting with the right number.
+                my @sql = $target_db->_bz_real_schema->_get_create_seq_ddl(
+                    $table, $column, $max_val);
+                $target_db->do($_) foreach @sql;
+            }
         }
     }
 
@@ -169,9 +207,10 @@ foreach my $table (@table_list) {
 }
 
 print "Committing changes to the target database...\n";
-$target_db->commit;
+$target_db->bz_commit_transaction();
+$target_db->bz_setup_foreign_keys();
 
-print "All done! Make sure to run checksetup on the new DB.\n";
+print "All done! Make sure to run checksetup.pl on the new DB.\n";
 $source_db->disconnect;
 $target_db->disconnect;
 
diff --git a/contrib/cmdline/CVS/Entries b/contrib/cmdline/CVS/Entries
index c95ecdc32a702ac5e37ec6d3ed72be2929b67872..90df35046aa2d70a32556d78c3e4e7203a06ee73 100644
--- a/contrib/cmdline/CVS/Entries
+++ b/contrib/cmdline/CVS/Entries
@@ -1,8 +1,8 @@
-/bugcount/1.1/Thu Jan 27 19:42:34 2005//TBUGZILLA-3_1_2
-/bugids/1.1/Thu Jan 27 19:42:34 2005//TBUGZILLA-3_1_2
-/buglist/1.2/Thu Jan 27 19:42:34 2005//TBUGZILLA-3_1_2
-/bugs/1.2/Thu Jan 27 19:42:34 2005//TBUGZILLA-3_1_2
-/bugslink/1.1/Thu Jan 27 19:42:34 2005//TBUGZILLA-3_1_2
-/makequery/1.1/Thu Jan 27 19:42:34 2005//TBUGZILLA-3_1_2
-/query.conf/1.3/Fri Aug 26 23:11:32 2005//TBUGZILLA-3_1_2
+/bugcount/1.1/Thu Jan 27 19:42:34 2005//TBUGZILLA-3_1_3
+/bugids/1.1/Thu Jan 27 19:42:34 2005//TBUGZILLA-3_1_3
+/buglist/1.2/Thu Jan 27 19:42:34 2005//TBUGZILLA-3_1_3
+/bugs/1.2/Thu Jan 27 19:42:34 2005//TBUGZILLA-3_1_3
+/bugslink/1.1/Thu Jan 27 19:42:34 2005//TBUGZILLA-3_1_3
+/makequery/1.1/Thu Jan 27 19:42:34 2005//TBUGZILLA-3_1_3
+/query.conf/1.3/Fri Aug 26 23:11:32 2005//TBUGZILLA-3_1_3
 D
diff --git a/contrib/cmdline/CVS/Tag b/contrib/cmdline/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/contrib/cmdline/CVS/Tag
+++ b/contrib/cmdline/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/contrib/gnatsparse/CVS/Entries b/contrib/gnatsparse/CVS/Entries
index 5204476dc189afd991f6042aaac9960df987e34f..a7fb79faf8b45d452d366392bfc1ec170272c031 100644
--- a/contrib/gnatsparse/CVS/Entries
+++ b/contrib/gnatsparse/CVS/Entries
@@ -1,5 +1,5 @@
-/README/1.2/Tue Mar 23 17:59:11 2004//TBUGZILLA-3_1_2
-/gnatsparse.py/1.4/Mon Jun 19 15:58:33 2006//TBUGZILLA-3_1_2
-/magic.py/1.1/Sun Mar 21 21:32:16 2004//TBUGZILLA-3_1_2
-/specialuu.py/1.1/Sun Mar 21 21:32:16 2004//TBUGZILLA-3_1_2
+/README/1.2/Tue Mar 23 17:59:11 2004//TBUGZILLA-3_1_3
+/gnatsparse.py/1.4/Mon Jun 19 15:58:33 2006//TBUGZILLA-3_1_3
+/magic.py/1.1/Sun Mar 21 21:32:16 2004//TBUGZILLA-3_1_3
+/specialuu.py/1.1/Sun Mar 21 21:32:16 2004//TBUGZILLA-3_1_3
 D
diff --git a/contrib/gnatsparse/CVS/Tag b/contrib/gnatsparse/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/contrib/gnatsparse/CVS/Tag
+++ b/contrib/gnatsparse/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/contrib/merge-users.pl b/contrib/merge-users.pl
index c5d48737a6385f0473d13edb5ea4284d9bc41920..70250a1eeb1b893803db89a9cb3ccee3c5b2382f 100644
--- a/contrib/merge-users.pl
+++ b/contrib/merge-users.pl
@@ -44,7 +44,7 @@ merge-users.pl - Merge two user accounts.
 
 =cut
 
-use lib qw(.);
+use lib qw(. lib);
 
 use Bugzilla;
 use Bugzilla::Constants;
@@ -131,12 +131,14 @@ my $changes = {
     votes           => ['who'],
     # Tables affecting global behavior / other users.
     components      => ['initialowner', 'initialqacontact'],
+    component_cc    => ['user_id component_id'],
     quips           => ['userid'],
     series          => ['creator'],
     whine_events    => ['owner_userid'],
     watch           => ['watcher watched', 'watched watcher'],
     # Tables affecting the user directly.
     namedqueries    => ['userid name'],
+    namedqueries_link_in_footer => ['user_id namedquery_id'],
     user_group_map  => ['user_id group_id isbless grant_type'],
     email_setting   => ['user_id relationship event'],
     profile_setting => ['user_id setting_name'],
@@ -152,9 +154,8 @@ my $changes = {
     profiles        => [], # ['userid'],
 };
 
-# Lock tables
-my @locked_tables = map {"$_ WRITE"} keys(%$changes);
-$dbh->bz_lock_tables(@locked_tables);
+# Start the transaction
+$dbh->bz_start_transaction();
 
 # Delete old records from logincookies and tokens tables.
 $dbh->do('DELETE FROM logincookies WHERE userid = ?', undef, $old_id);
@@ -228,7 +229,7 @@ print "OK, records in the 'mailto' column of the 'whine_schedules' table\n" .
 # Delete the old record from the profiles table.
 $dbh->do('DELETE FROM profiles WHERE userid = ?', undef, $old_id);
 
-# Unlock tables
-$dbh->bz_unlock_tables();
+# Commit the transaction
+$dbh->bz_commit_transaction();
 
 print "Done.\n";
diff --git a/contrib/recode.pl b/contrib/recode.pl
index 49e824f6d3b94399c200c03ee27982c7dcd325e2..713465be76c3a778dc4c26dd94b146cae561a6e4 100755
--- a/contrib/recode.pl
+++ b/contrib/recode.pl
@@ -20,8 +20,7 @@
 # Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
 
 use strict;
-# Allow the script to be run from contrib or as contrib/recode.pl
-use lib '..';
+use lib qw(. lib);
 
 use Bugzilla;
 use Bugzilla::Constants;
diff --git a/contrib/sendbugmail.pl b/contrib/sendbugmail.pl
index ae282ca4a60e0b15bd7514d2ddbc06f7f0b064f8..4fd1c837400283f0e68f65230d4cd81f81cf3710 100644
--- a/contrib/sendbugmail.pl
+++ b/contrib/sendbugmail.pl
@@ -4,7 +4,7 @@
 #
 # Nick Barnes, Ravenbrook Limited, 2004-04-01.
 #
-# $Id: sendbugmail.pl,v 1.7 2006/07/03 21:42:47 mkanat%bugzilla.org Exp $
+# $Id: sendbugmail.pl,v 1.8 2007/10/19 06:46:17 mkanat%bugzilla.org Exp $
 # 
 # Bugzilla email script for Bugzilla 2.17.4 and later.  Invoke this to send
 # bugmail for a bug which has been changed directly in the database.
@@ -14,7 +14,7 @@
 # 
 # Usage: perl -T contrib/sendbugmail.pl bug_id user_email
 
-use lib qw(.);
+use lib qw(. lib);
 
 use Bugzilla;
 use Bugzilla::Util;
diff --git a/contrib/sendunsentbugmail.pl b/contrib/sendunsentbugmail.pl
index 5ed49b22edef24cf789848910a6260fda453310f..ec92a97a06d1e7546f05919e15ce97e9e12f877d 100644
--- a/contrib/sendunsentbugmail.pl
+++ b/contrib/sendunsentbugmail.pl
@@ -23,7 +23,7 @@
 
 use strict;
 
-use lib qw(.);
+use lib qw(. lib);
 
 use Bugzilla;
 use Bugzilla::Constants;
diff --git a/contrib/syncLDAP.pl b/contrib/syncLDAP.pl
index 72ea917980bc177d86c7dc804972d04924c4185c..dc0708f605f0795df72c44f7a25b09bf0bc8491f 100755
--- a/contrib/syncLDAP.pl
+++ b/contrib/syncLDAP.pl
@@ -22,7 +22,7 @@
 
 use strict;
 
-use lib qw(.);
+use lib qw(. lib);
 
 use Net::LDAP;
 use Bugzilla;
@@ -79,13 +79,13 @@ my %ldap_users;
 ###
 # Get current bugzilla users
 ###
-my $bugzilla_users = $dbh->selectall_hashref(
+my %bugzilla_users = %{ $dbh->selectall_hashref(
     'SELECT login_name AS new_login_name, realname, disabledtext ' .
-    'FROM profiles', 'new_login_name');
+    'FROM profiles', 'new_login_name') };
 
-foreach my $login_name (keys %$bugzilla_users) {
+foreach my $login_name (keys %bugzilla_users) {
     # remove whitespaces
-    $bugzilla_users->{$login_name}{'realname'} =~ s/^\s+|\s+$//g;
+    $bugzilla_users{$login_name}{'realname'} =~ s/^\s+|\s+$//g;
 }
 
 ###
@@ -131,26 +131,26 @@ if(! $mesg->count) {
    exit;
 }
    
-my $val = $mesg->as_struct;
+my %val = %{ $mesg->as_struct };
 
-while( my ($key, $value) = each(%$val) ) {
+while( my ($key, $value) = each(%val) ) {
 
-   my $login_name = @$value{Bugzilla->params->{"LDAPmailattribute"}};
-   my $realname  = @$value{"cn"};
+   my @login_name = @{ $value->{Bugzilla->params->{"LDAPmailattribute"}} };
+   my @realname  = @{ $value->{"cn"} };
 
    # no mail entered? go to next
-   if(! defined $login_name) { 
+   if(! @login_name) { 
       print "$key has no valid mail address\n";
       next; 
    }
 
    # no cn entered? use uid instead
-   if(! defined $realname) { 
-      $realname = @$value{Bugzilla->params->{"LDAPuidattribute"}};
+   if(! @realname) { 
+       @realname = @{ $value->{Bugzilla->params->{"LDAPuidattribute"}} };
    }
   
-   my $login = shift @$login_name;
-   my $real = shift @$realname;
+   my $login = shift @login_name;
+   my $real = shift @realname;
    $ldap_users{$login} = { realname => $real };
 }
 
@@ -164,10 +164,10 @@ my %update_users;
 my %create_users;
 
 print "Bugzilla-Users: \n" unless $quiet;
-while( my ($key, $value) = each(%$bugzilla_users) ) {
-  print " " . $key . " '" . @$value{'realname'} . "' " . @$value{'disabledtext'} ."\n" unless $quiet==1;
+while( my ($key, $value) = each(%bugzilla_users) ) {
+  print " " . $key . " '" . $value->{'realname'} . "' " . $value->{'disabledtext'} ."\n" unless $quiet==1;
   if(!exists $ldap_users{$key}){
-     if(@$value{'disabledtext'} eq '') {
+     if($value->{'disabledtext'} eq '') {
        $disable_users{$key} = $value;
      }
   }
@@ -175,13 +175,13 @@ while( my ($key, $value) = each(%$bugzilla_users) ) {
 
 print "\nLDAP-Users: \n" unless $quiet;
 while( my ($key, $value) = each(%ldap_users) ) {
-  print " " . $key . " '" . @$value{'realname'} . "'\n" unless $quiet==1;
-  if(!defined $bugzilla_users->{$key}){
+  print " " . $key . " '" . $value->{'realname'} . "'\n" unless $quiet==1;
+  if(!defined $bugzilla_users{$key}){
     $create_users{$key} = $value;
   }
   else { 
-    my $bugzilla_user_value = $bugzilla_users->{$key};
-    if(@$bugzilla_user_value{'realname'} ne @$value{'realname'}) {
+    my $bugzilla_user_value = $bugzilla_users{$key};
+    if($bugzilla_user_value->{'realname'} ne $value->{'realname'}) {
       $update_users{$key} = $value;
     }
   }
@@ -190,9 +190,9 @@ while( my ($key, $value) = each(%ldap_users) ) {
 print "\nDetecting email changes: \n" unless $quiet;
 while( my ($create_key, $create_value) = each(%create_users) ) {
   while( my ($disable_key, $disable_value) = each(%disable_users) ) {
-    if(@$create_value{'realname'} eq @$disable_value{'realname'}) {
+    if($create_value->{'realname'} eq $disable_value->{'realname'}) {
        print " " . $disable_key . " => " . $create_key ."'\n" unless $quiet==1;
-       $update_users{$disable_key} = { realname => @$create_value{'realname'},
+       $update_users{$disable_key} = { realname => $create_value->{'realname'},
                                        new_login_name => $create_key };
        delete $create_users{$create_key};
        delete $disable_users{$disable_key};
@@ -203,21 +203,21 @@ while( my ($create_key, $create_value) = each(%create_users) ) {
 if($quiet == 0) {
    print "\nUsers to disable: \n";
    while( my ($key, $value) = each(%disable_users) ) {
-     print " " . $key . " '" . @$value{'realname'} . "'\n";
+     print " " . $key . " '" . $value->{'realname'} . "'\n";
    }
    
    print "\nUsers to update: \n";
    while( my ($key, $value) = each(%update_users) ) {
-     print " " . $key . " '" . @$value{'realname'} . "' ";
-     if(defined @$value{'new_login_name'}) {
-       print "has changed email to " . @$value{'new_login_name'};
+     print " " . $key . " '" . $value->{'realname'} . "' ";
+     if(defined $value->{'new_login_name'}) {
+       print "has changed email to " . $value->{'new_login_name'};
      }
      print "\n";
    }
    
    print "\nUsers to create: \n";
    while( my ($key, $value) = each(%create_users) ) {
-     print " " . $key . " '" . @$value{'realname'} . "'\n";
+     print " " . $key . " '" . $value->{'realname'} . "'\n";
    }
    
    print "\n\n";
@@ -258,10 +258,10 @@ if($readonly == 0) {
 
    if($noupdate == 0) {
       while( my ($key, $value) = each(%update_users) ) {
-        if(defined @$value{'new_login_name'}) {
-          $sth_update_login->execute(@$value{'new_login_name'}, $key);
+        if(defined $value->{'new_login_name'}) {
+          $sth_update_login->execute($value->{'new_login_name'}, $key);
         } else {
-          $sth_update_realname->execute(@$value{'realname'}, $key);
+          $sth_update_realname->execute($value->{'realname'}, $key);
         }
       }
       print "done!\n" unless $quiet;
@@ -275,8 +275,8 @@ if($readonly == 0) {
       while( my ($key, $value) = each(%create_users) ) {
         Bugzilla::User->create({
             login_name => $key, 
-            realname   => @$value{'realname'},
-            password   => '*'});
+            realname   => $value->{'realname'},
+            cryptpassword   => '*'});
       }
       print "done!\n" unless $quiet;
    }
diff --git a/createaccount.cgi b/createaccount.cgi
index 1ec7ec31d167c02975d39c22071bc21c3d131b79..c2941bc4c0077269c03ab88dd90b54d808724a53 100755
--- a/createaccount.cgi
+++ b/createaccount.cgi
@@ -26,7 +26,7 @@
 
 use strict;
 
-use lib qw(.);
+use lib qw(. lib);
 
 use Bugzilla;
 use Bugzilla::Constants;
@@ -45,6 +45,8 @@ my $cgi = Bugzilla->cgi;
 my $template = Bugzilla->template;
 my $vars = {};
 
+$vars->{'doc_section'} = 'myaccount.html';
+
 print $cgi->header();
 
 # If we're using LDAP for login, then we can't create a new account here.
diff --git a/describecomponents.cgi b/describecomponents.cgi
index b282040c5087a861ef1af8899b4d2de6d396c6bf..806183783667bd8b4665cf835645065a7f346702 100755
--- a/describecomponents.cgi
+++ b/describecomponents.cgi
@@ -23,7 +23,7 @@
 #                 Frédéric Buclin <LpSolit@gmail.com>
 
 use strict;
-use lib qw(.);
+use lib qw(. lib);
 
 use Bugzilla;
 use Bugzilla::Constants;
diff --git a/describekeywords.cgi b/describekeywords.cgi
index 70c0ba4e05f0850fef8d371bd68e64c2221866c4..5ff5c5089631e98a05423ebed55700f790e1f10a 100755
--- a/describekeywords.cgi
+++ b/describekeywords.cgi
@@ -22,7 +22,7 @@
 # Contributor(s): Gervase Markham <gerv@gerv.net>
 
 use strict;
-use lib ".";
+use lib qw(. lib);
 
 use Bugzilla;
 use Bugzilla::Error;
diff --git a/docs/CVS/Entries b/docs/CVS/Entries
index e5130b70bd77a01ffc8e50ad91ad739ea02cfbfb..c9a1e4a24f852cb0352d92244bdc679b04e7bf41 100644
--- a/docs/CVS/Entries
+++ b/docs/CVS/Entries
@@ -1,7 +1,7 @@
-/.cvsignore/1.3/Tue Sep  5 19:00:55 2006//TBUGZILLA-3_1_2
-/README.docs/1.12/Fri Jul 27 16:24:05 2007//TBUGZILLA-3_1_2
-/makedocs.pl/1.17/Fri Apr  6 10:10:26 2007//TBUGZILLA-3_1_2
-/rel_notes.txt/1.48/Tue Sep 18 21:24:58 2007//TBUGZILLA-3_1_2
+/.cvsignore/1.3/Tue Sep  5 19:00:55 2006//TBUGZILLA-3_1_3
+/README.docs/1.12/Fri Jul 27 16:24:05 2007//TBUGZILLA-3_1_3
+/makedocs.pl/1.18/Fri Oct 19 06:46:18 2007//TBUGZILLA-3_1_3
+/rel_notes.txt/1.48/Tue Sep 18 21:24:58 2007//TBUGZILLA-3_1_3
 D/html////
 D/images////
 D/lib////
diff --git a/docs/CVS/Tag b/docs/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/docs/CVS/Tag
+++ b/docs/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/docs/html/Bugzilla-Guide.html b/docs/html/Bugzilla-Guide.html
index fd77654f3f30c6f7696975bfe7e7d80d860b61d8..31f28a7350f052de0ab85c89e941ba7062cb5e35 100644
--- a/docs/html/Bugzilla-Guide.html
+++ b/docs/html/Bugzilla-Guide.html
@@ -2,7 +2,7 @@
 <HTML
 ><HEAD
 ><TITLE
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TITLE
 ><META
@@ -44,7 +44,7 @@ CLASS="TITLEPAGE"
 CLASS="title"
 ><A
 NAME="AEN2"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</A
 ></H1
@@ -53,7 +53,7 @@ CLASS="corpauthor"
 >The Bugzilla Team</H3
 ><P
 CLASS="pubdate"
->2007-09-18<BR></P
+>2008-02-01<BR></P
 ><DIV
 ><DIV
 CLASS="abstract"
@@ -148,7 +148,7 @@ HREF="#extraconfig"
 ></DT
 ><DT
 >2.4. <A
-HREF="#AEN860"
+HREF="#multiple-bz-dbs"
 >Multiple Bugzilla databases with a single installation</A
 ></DT
 ><DT
@@ -212,31 +212,41 @@ HREF="#flags-overview"
 ></DT
 ><DT
 >3.9. <A
+HREF="#keywords"
+>Keywords</A
+></DT
+><DT
+>3.10. <A
 HREF="#custom-fields"
 >Custom Fields</A
 ></DT
 ><DT
->3.10. <A
+>3.11. <A
 HREF="#edit-values"
 >Legal Values</A
 ></DT
 ><DT
->3.11. <A
+>3.12. <A
 HREF="#voting"
 >Voting</A
 ></DT
 ><DT
->3.12. <A
+>3.13. <A
 HREF="#quips"
 >Quips</A
 ></DT
 ><DT
->3.13. <A
+>3.14. <A
 HREF="#groups"
 >Groups and Group Security</A
 ></DT
 ><DT
->3.14. <A
+>3.15. <A
+HREF="#sanitycheck"
+>Checking and Maintaining Database Integrity</A
+></DT
+><DT
+>3.16. <A
 HREF="#upgrading"
 >Upgrading to New Releases</A
 ></DT
@@ -381,28 +391,23 @@ HREF="#integration"
 ></DD
 ><DT
 >A. <A
-HREF="#faq"
->The Bugzilla FAQ</A
-></DT
-><DT
->B. <A
 HREF="#troubleshooting"
 >Troubleshooting</A
 ></DT
 ><DD
 ><DL
 ><DT
->B.1. <A
+>A.1. <A
 HREF="#general-advice"
 >General Advice</A
 ></DT
 ><DT
->B.2. <A
+>A.2. <A
 HREF="#trbl-testserver"
 >The Apache web server is not serving Bugzilla pages</A
 ></DT
 ><DT
->B.3. <A
+>A.3. <A
 HREF="#trbl-perlmodule"
 >I installed a Perl module, but 
       <TT
@@ -411,27 +416,27 @@ CLASS="filename"
 > claims it's not installed!</A
 ></DT
 ><DT
->B.4. <A
+>A.4. <A
 HREF="#trbl-dbdSponge"
 >DBD::Sponge::db prepare failed</A
 ></DT
 ><DT
->B.5. <A
+>A.5. <A
 HREF="#paranoid-security"
 >cannot chdir(/var/spool/mqueue)</A
 ></DT
 ><DT
->B.6. <A
+>A.6. <A
 HREF="#trbl-relogin-everyone"
 >Everybody is constantly being forced to relogin</A
 ></DT
 ><DT
->B.7. <A
+>A.7. <A
 HREF="#trbl-relogin-some"
 >Some users are constantly being forced to relogin</A
 ></DT
 ><DT
->B.8. <A
+>A.8. <A
 HREF="#trbl-index"
 ><TT
 CLASS="filename"
@@ -439,7 +444,7 @@ CLASS="filename"
 > doesn't show up unless specified in the URL</A
 ></DT
 ><DT
->B.9. <A
+>A.9. <A
 HREF="#trbl-passwd-encryption"
 >checksetup.pl reports "Client does not support authentication protocol
       requested by server..."</A
@@ -447,50 +452,50 @@ HREF="#trbl-passwd-encryption"
 ></DL
 ></DD
 ><DT
->C. <A
+>B. <A
 HREF="#patches"
 >Contrib</A
 ></DT
 ><DD
 ><DL
 ><DT
->C.1. <A
+>B.1. <A
 HREF="#cmdline"
 >Command-line Search Interface</A
 ></DT
 ><DT
->C.2. <A
+>B.2. <A
 HREF="#cmdline-bugmail"
 >Command-line 'Send Unsent Bug-mail' tool</A
 ></DT
 ></DL
 ></DD
 ><DT
->D. <A
+>C. <A
 HREF="#install-perlmodules-manual"
 >Manual Installation of Perl Modules</A
 ></DT
 ><DD
 ><DL
 ><DT
->D.1. <A
+>C.1. <A
 HREF="#modules-manual-instructions"
 >Instructions</A
 ></DT
 ><DT
->D.2. <A
+>C.2. <A
 HREF="#modules-manual-download"
 >Download Locations</A
 ></DT
 ><DT
->D.3. <A
+>C.3. <A
 HREF="#modules-manual-optional"
 >Optional Modules</A
 ></DT
 ></DL
 ></DD
 ><DT
->E. <A
+>D. <A
 HREF="#gfdl"
 >GNU Free Documentation License</A
 ></DT
@@ -610,12 +615,12 @@ HREF="#security-mysql-network-ex"
 >Disabling Networking in MySQL</A
 ></DT
 ><DT
->B-1. <A
+>A-1. <A
 HREF="#trbl-relogin-everyone-share"
 >Examples of urlbase/cookiepath pairs for sharing login cookies</A
 ></DT
 ><DT
->B-2. <A
+>A-2. <A
 HREF="#trbl-relogin-everyone-restrict"
 >Examples of urlbase/cookiepath pairs to restrict the login cookie</A
 ></DT
@@ -637,7 +642,7 @@ NAME="copyright"
 >1.1. Copyright Information</A
 ></H2
 ><P
->This document is copyright (c) 2000-2007 by the various
+>This document is copyright (c) 2000-2008 by the various
     Bugzilla contributors who wrote it.</P
 ><A
 NAME="AEN26"
@@ -652,7 +657,7 @@ CLASS="BLOCKQUOTE"
 	Front-Cover Texts, and with no Back-Cover Texts. A copy of
 	the license is included in <A
 HREF="#gfdl"
->Appendix E</A
+>Appendix D</A
 >.
       </P
 ></BLOCKQUOTE
@@ -706,7 +711,7 @@ NAME="newversions"
 >1.3. New Versions</A
 ></H2
 ><P
->&#13;      This is the 3.1.2 version of The Bugzilla Guide. It is so named 
+>&#13;      This is the 3.1.3 version of The Bugzilla Guide. It is so named 
       to match the current version of Bugzilla. 
        This version of the guide, like its associated Bugzilla version, is a
       development version. 
@@ -995,7 +1000,7 @@ CLASS="CALSTABLE"
 ><TBODY
 ><TR
 ><TD
->Warning</TD
+>Caution</TD
 ><TD
 >&#13;            <DIV
 CLASS="caution"
@@ -1028,7 +1033,7 @@ VALIGN="TOP"
 ></TR
 ><TR
 ><TD
->Hint</TD
+>Hint or Tip</TD
 ><TD
 >&#13;            <DIV
 CLASS="tip"
@@ -1051,7 +1056,7 @@ ALT="Tip"></TD
 ALIGN="LEFT"
 VALIGN="TOP"
 ><P
->Would you like a breath mint?</P
+>For best results... </P
 ></TD
 ></TR
 ></TABLE
@@ -1094,7 +1099,7 @@ VALIGN="TOP"
 ></TR
 ><TR
 ><TD
->Information requiring special attention</TD
+>Warning</TD
 ><TD
 >&#13;            <DIV
 CLASS="warning"
@@ -1734,7 +1739,7 @@ HREF="#win32-perl-modules"
         to install the Perl modules manually, see 
         <A
 HREF="#install-perlmodules-manual"
->Appendix D</A
+>Appendix C</A
 >.
       </P
 ><TABLE
@@ -1870,7 +1875,7 @@ TYPE="1"
 HREF="#install-modules-dbd-mysql"
 >DBD::mysql</A
 >
-            (2.9003) if using MySQL
+            (4.00) if using MySQL
           </P
 ></LI
 ><LI
@@ -1889,7 +1894,7 @@ HREF="#install-modules-dbd-mysql"
 HREF="#install-modules-template"
 >Template</A
 >
-            (2.12)
+            (2.15)
           </P
 ></LI
 ><LI
@@ -2043,12 +2048,6 @@ HREF="#install-modules-soap-lite"
             (2.93) for mod_perl
           </P
 ></LI
-><LI
-><P
->&#13;            Apache::DBI
-            (0.96) for mod_perl2
-          </P
-></LI
 ></OL
 >
       </P
@@ -2080,7 +2079,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="install-modules-template"
->2.1.5.2. Template Toolkit (2.12)</A
+>2.1.5.2. Template Toolkit (2.15)</A
 ></H4
 ><P
 >When you install Template Toolkit, you'll get asked various
@@ -2380,12 +2379,6 @@ TARGET="_top"
 >Bugzilla also requires a more up-to-date version of the CGI
       perl module to be installed, version 3.11 as opposed to 2.93
       </P
-><P
->Finally, Bugzilla also requires <VAR
-CLASS="literal"
->Apache::DBI</VAR
->
-      (0.96) to be installed as well.</P
 ></DIV
 ></DIV
 ><DIV
@@ -2503,8 +2496,43 @@ CLASS="filename"
 CLASS="filename"
 >checksetup.pl</TT
 > will subsequently display 
-        every time it in run.
+        every time it is run.
       </P
+><DIV
+CLASS="caution"
+><P
+></P
+><TABLE
+CLASS="caution"
+WIDTH="100%"
+BORDER="0"
+><TR
+><TD
+WIDTH="25"
+ALIGN="CENTER"
+VALIGN="TOP"
+><IMG
+SRC="../images/caution.gif"
+HSPACE="5"
+ALT="Caution"></TD
+><TD
+ALIGN="LEFT"
+VALIGN="TOP"
+><P
+>&#13;          If you are using suexec, you should use your own primary group
+          for <EM
+>webservergroup</EM
+> rather than leaving it
+          empty, and see the additional directions in the suexec section
+          <A
+HREF="#suexec"
+>Section 2.6.6.1</A
+>.
+        </P
+></TD
+></TR
+></TABLE
+></DIV
 ><P
 >&#13;        The other options in the <TT
 CLASS="filename"
@@ -3434,7 +3462,7 @@ WIDTH="100%"
 COLOR="#000000"
 ><PRE
 CLASS="programlisting"
->&#13;    PerlSwitches -I/var/www/html/bugzilla -w -T
+>&#13;    PerlSwitches -I/var/www/html/bugzilla -I/var/www/html/bugzilla/lib -w -T
     PerlConfigRequire /var/www/html/bugzilla/mod_perl.pl
                 </PRE
 ></FONT
@@ -3758,7 +3786,7 @@ CLASS="filename"
         front page. If not, consult the Troubleshooting section,
         <A
 HREF="#troubleshooting"
->Appendix B</A
+>Appendix A</A
 >.
       </P
 ><DIV
@@ -4686,7 +4714,7 @@ CLASS="section"
 ><HR><H2
 CLASS="section"
 ><A
-NAME="AEN860"
+NAME="multiple-bz-dbs"
 >2.4. Multiple Bugzilla databases with a single installation</A
 ></H2
 ><P
@@ -4807,7 +4835,13 @@ NAME="os-win32"
         work on Unix.  For that reason, we still recommend doing so on a Unix 
         based system such as GNU/Linux.  That said, if you do want to get
         Bugzilla running on Windows, you will need to make the following
-        adjustments.
+        adjustments. A detailed step-by-step
+        <A
+HREF="http://www.bugzilla.org/docs/win32install.html"
+TARGET="_top"
+>&#13;        installation guide for Windows</A
+> is also available
+        if you need more help with your installation.
       </P
 ><DIV
 CLASS="section"
@@ -4832,6 +4866,35 @@ TARGET="_top"
            The following instructions assume that you are using version
            5.8.1 of ActiveState.
           </P
+><DIV
+CLASS="note"
+><P
+></P
+><TABLE
+CLASS="note"
+WIDTH="100%"
+BORDER="0"
+><TR
+><TD
+WIDTH="25"
+ALIGN="CENTER"
+VALIGN="TOP"
+><IMG
+SRC="../images/note.gif"
+HSPACE="5"
+ALT="Note"></TD
+><TD
+ALIGN="LEFT"
+VALIGN="TOP"
+><P
+>&#13;             These instructions are for 32-bit versions of Windows. If you are
+             using a 64-bit version of Windows, you will need to install 32-bit
+             Perl in order to install the 32-bit modules as described below.
+            </P
+></TD
+></TR
+></TABLE
+></DIV
 ></DIV
 ><DIV
 CLASS="section"
@@ -4892,7 +4955,7 @@ COLOR="#000000"
 CLASS="programlisting"
 >&#13;<B
 CLASS="command"
->ppm repository add landfill http://www.landfill.bugzilla.org/ppm/</B
+>ppm repo add landfill http://www.landfill.bugzilla.org/ppm/</B
 >
         </PRE
 ></FONT
@@ -4920,6 +4983,53 @@ ALT="Note"></TD
 ALIGN="LEFT"
 VALIGN="TOP"
 ><P
+>&#13;            In versions prior to 5.8.8 build 819 of PPM the command is 
+            <TABLE
+BORDER="0"
+BGCOLOR="#E0E0E0"
+WIDTH="100%"
+><TR
+><TD
+><FONT
+COLOR="#000000"
+><PRE
+CLASS="programlisting"
+>&#13;<B
+CLASS="command"
+>ppm repository add landfill http://www.landfill.bugzilla.org/ppm/</B
+>
+            </PRE
+></FONT
+></TD
+></TR
+></TABLE
+>
+          </P
+></TD
+></TR
+></TABLE
+></DIV
+><DIV
+CLASS="note"
+><P
+></P
+><TABLE
+CLASS="note"
+WIDTH="100%"
+BORDER="0"
+><TR
+><TD
+WIDTH="25"
+ALIGN="CENTER"
+VALIGN="TOP"
+><IMG
+SRC="../images/note.gif"
+HSPACE="5"
+ALT="Note"></TD
+><TD
+ALIGN="LEFT"
+VALIGN="TOP"
+><P
 >&#13;            The PPM repository stores modules in 'packages' that may have
             a slightly different name than the module.  If retrieving these
             modules from there, you will need to pay attention to the information
@@ -5028,10 +5138,22 @@ TARGET="_top"
 >ScriptInterpreterSource</A
 >
             directive in your Apache config to avoid having to modify
-            the first line of every script to contain your path to perl 
-            perl instead of <TT
+            the first line of every script to contain your path to Perl
+            instead of <TT
 CLASS="filename"
 >/usr/bin/perl</TT
+>. When setting
+            <TT
+CLASS="filename"
+>ScriptInterpreterSource</TT
+>, do not forget
+            to specify the <B
+CLASS="command"
+>-T</B
+> flag to enable the taint
+            mode. For example: <B
+CLASS="command"
+>C:\Perl\bin\perl.exe -T</B
 >.
           </P
 ></TD
@@ -5300,99 +5422,30 @@ CLASS="section"
 ><HR><H3
 CLASS="section"
 ><A
-NAME="os-mandrake"
->2.5.3. Linux-Mandrake 8.0</A
+NAME="os-linux"
+>2.5.3. Linux Distributions</A
 ></H3
 ><P
->Linux-Mandrake 8.0 includes every required and optional library
-      for Bugzilla. The easiest way to install them is by using the
-      <B
-CLASS="command"
->urpmi</B
->  utility. If you follow these commands, you
-      should have everything you need for Bugzilla, and
-      <B
-CLASS="command"
->./checksetup.pl</B
->  should not complain about any
-      missing libraries. You may already have some of these installed.
-      </P
-><TABLE
-BORDER="0"
-BGCOLOR="#E0E0E0"
-WIDTH="100%"
-><TR
-><TD
-><FONT
-COLOR="#000000"
-><PRE
-CLASS="screen"
->&#13;<SAMP
-CLASS="prompt"
->bash#</SAMP
-> <B
-CLASS="command"
->urpmi perl-mysql</B
->
-<SAMP
-CLASS="prompt"
->bash#</SAMP
-> <B
-CLASS="command"
->urpmi perl-chart</B
->
-<SAMP
-CLASS="prompt"
->bash#</SAMP
-> <B
-CLASS="command"
->urpmi perl-gd</B
->
-<SAMP
-CLASS="prompt"
->bash#</SAMP
-> <B
-CLASS="command"
->urpmi perl-MailTools</B
->             <A
-NAME="test-mailtools"
-><IMG
-SRC="../images/callouts/1.gif"
-HSPACE="0"
-VSPACE="0"
-BORDER="0"
-ALT="(1)"></A
->
-<SAMP
-CLASS="prompt"
->bash#</SAMP
-> <B
-CLASS="command"
->urpmi apache-modules</B
->
-      </PRE
-></FONT
-></TD
-></TR
-></TABLE
-><DIV
-CLASS="calloutlist"
-><DL
-COMPACT="COMPACT"
-><DT
-><A
-HREF="#test-mailtools"
-><IMG
-SRC="../images/callouts/1.gif"
-HSPACE="0"
-VSPACE="0"
-BORDER="0"
-ALT="(1)"></A
-></DT
-><DD
->for Bugzilla email integration</DD
-></DL
-></DIV
+>Many Linux distributions include Bugzilla and its 
+            dependencies in their native package management systems. 
+            Installing Bugzilla with root access on any Linux system 
+            should be as simple as finding the Bugzilla package in the 
+            package management application and installing it using the 
+            normal command syntax. Several distributions also perform 
+            the proper web server configuration automatically on installation.
+            </P
+><P
+>Please consult the documentation of your Linux 
+            distribution for instructions on how to install packages, 
+            or for specific instructions on installing Bugzilla with 
+            native package management tools. There is also a 
+            <A
+HREF="http://wiki.mozilla.org/Bugzilla:Linux_Distro_Installation"
+TARGET="_top"
+>&#13;            Bugzilla Wiki Page</A
+> for distro-specific installation
+            notes.
+            </P
 ></DIV
 ></DIV
 ><DIV
@@ -5408,7 +5461,7 @@ CLASS="section"
 ><H3
 CLASS="section"
 ><A
-NAME="AEN982"
+NAME="AEN977"
 >2.6.1. Introduction</A
 ></H3
 ><P
@@ -5428,7 +5481,7 @@ CLASS="section"
 ><HR><H3
 CLASS="section"
 ><A
-NAME="AEN986"
+NAME="AEN981"
 >2.6.2. MySQL</A
 ></H3
 ><P
@@ -5484,7 +5537,7 @@ CLASS="section"
 ><HR><H4
 CLASS="section"
 ><A
-NAME="AEN994"
+NAME="AEN989"
 >2.6.2.1. Running MySQL as Non-Root</A
 ></H4
 ><DIV
@@ -5492,7 +5545,7 @@ CLASS="section"
 ><H5
 CLASS="section"
 ><A
-NAME="AEN996"
+NAME="AEN991"
 >2.6.2.1.1. The Custom Configuration Method</A
 ></H5
 ><P
@@ -5536,7 +5589,7 @@ CLASS="section"
 ><HR><H5
 CLASS="section"
 ><A
-NAME="AEN1000"
+NAME="AEN995"
 >2.6.2.1.2. The Custom Built Method</A
 ></H5
 ><P
@@ -5559,7 +5612,7 @@ CLASS="section"
 ><HR><H5
 CLASS="section"
 ><A
-NAME="AEN1005"
+NAME="AEN1000"
 >2.6.2.1.3. Starting the Server</A
 ></H5
 ><P
@@ -5687,14 +5740,15 @@ CLASS="section"
 ><HR><H3
 CLASS="section"
 ><A
-NAME="AEN1021"
+NAME="AEN1016"
 >2.6.3. Perl</A
 ></H3
 ><P
->On the extremely rare chance that you don't have Perl on
+>&#13;      On the extremely rare chance that you don't have Perl on
       the machine, you will have to build the sources
       yourself. The following commands should get your system
-      installed with your own personal version of Perl:</P
+      installed with your own personal version of Perl:
+      </P
 ><TABLE
 BORDER="0"
 BGCOLOR="#E0E0E0"
@@ -5751,13 +5805,13 @@ CLASS="command"
 ></TR
 ></TABLE
 ><P
->Once you have Perl installed into a directory (probably
+>&#13;      Once you have Perl installed into a directory (probably
       in <TT
 CLASS="filename"
 >~/perl/bin</TT
->), you'll have to
-      change the locations on the scripts, which is detailed later on
-      this page.</P
+>), you will need to
+      install the Perl Modules, described below.
+      </P
 ></DIV
 ><DIV
 CLASS="section"
@@ -5768,311 +5822,44 @@ NAME="install-perlmodules-nonroot"
 >2.6.4. Perl Modules</A
 ></H3
 ><P
->Installing the Perl modules as a non-root user is probably the
-      hardest part of the process. There are two different methods: a
-      completely independant Perl with its own modules, or personal
-      modules using the current (root installed) version of Perl. The
-      independant method takes up quite a bit of disk space, but is
-      less complex, while the mixed method only uses as much space as the
-      modules themselves, but takes more work to setup.</P
+>&#13;      Installing the Perl modules as a non-root user is accomplished by
+      running the <TT
+CLASS="filename"
+>install-module.pl</TT
+>
+      script. For more details on this script, see 
+      <A
+HREF="api/install-module.html"
+TARGET="_top"
+><TT
+CLASS="filename"
+>install-module.pl</TT
+>
+      documentation</A
+>
+      </P
+></DIV
+><DIV
+CLASS="section"
+><HR><H3
+CLASS="section"
+><A
+NAME="AEN1038"
+>2.6.5. HTTP Server</A
+></H3
+><P
+>Ideally, this also needs to be installed as root and
+      run under a special web server account. As long as
+      the web server will allow the running of *.cgi files outside of a
+      cgi-bin, and a way of denying web access to certain files (such as a
+      .htaccess file), you should be good in this department.</P
 ><DIV
 CLASS="section"
 ><HR><H4
 CLASS="section"
 ><A
-NAME="AEN1040"
->2.6.4.1. The Independant Method</A
-></H4
-><P
->The independant method requires that you install your own
-        personal version of Perl, as detailed in the previous section. Once
-        installed, you can start the CPAN shell with the following
-        command:</P
-><P
->&#13;          <TABLE
-BORDER="0"
-BGCOLOR="#E0E0E0"
-WIDTH="100%"
-><TR
-><TD
-><FONT
-COLOR="#000000"
-><PRE
-CLASS="screen"
->&#13;            <SAMP
-CLASS="prompt"
->bash$</SAMP
->
-            <B
-CLASS="command"
->/home/foo/perl/bin/perl -MCPAN -e 'shell'</B
->
-          </PRE
-></FONT
-></TD
-></TR
-></TABLE
->
-        </P
-><P
->And then:</P
-><P
->&#13;          <TABLE
-BORDER="0"
-BGCOLOR="#E0E0E0"
-WIDTH="100%"
-><TR
-><TD
-><FONT
-COLOR="#000000"
-><PRE
-CLASS="screen"
->&#13;            <SAMP
-CLASS="prompt"
->cpan&#62;</SAMP
->
-            <B
-CLASS="command"
->install Bundle::Bugzilla</B
->
-          </PRE
-></FONT
-></TD
-></TR
-></TABLE
->
-        </P
-><P
->With this method, module installation will usually go a lot
-        smoother, but if you have any hang-ups, you can consult the next
-        section.</P
-></DIV
-><DIV
-CLASS="section"
-><HR><H4
-CLASS="section"
-><A
-NAME="AEN1053"
->2.6.4.2. The Mixed Method</A
-></H4
-><P
->First, you'll need to configure CPAN to
-        install modules in your home directory. The CPAN FAQ says the
-        following on this issue:</P
-><P
->&#13;          <TABLE
-BORDER="0"
-BGCOLOR="#E0E0E0"
-WIDTH="100%"
-><TR
-><TD
-><FONT
-COLOR="#000000"
-><PRE
-CLASS="programlisting"
->&#13;5)  I am not root, how can I install a module in a personal directory?
-
-    You will most probably like something like this:
-
-      o conf makepl_arg "LIB=~/myperl/lib \
-                         INSTALLMAN1DIR=~/myperl/man/man1 \
-                         INSTALLMAN3DIR=~/myperl/man/man3"
-    install Sybase::Sybperl
-
-    You can make this setting permanent like all "o conf" settings with "o conf commit".
-
-    You will have to add ~/myperl/man to the MANPATH environment variable and also tell your Perl programs to
-    look into ~/myperl/lib, e.g. by including
-
-      use lib "$ENV{HOME}/myperl/lib";
-
-    or setting the PERL5LIB environment variable.
-
-    Another thing you should bear in mind is that the UNINST parameter should never be set if you are not root.</PRE
-></FONT
-></TD
-></TR
-></TABLE
->
-        </P
-><P
->So, you will need to create a Perl directory in your home
-        directory, as well as the <TT
-CLASS="filename"
->lib</TT
->,
-        <TT
-CLASS="filename"
->man</TT
->,
-        <TT
-CLASS="filename"
->man/man1</TT
->, and
-        <TT
-CLASS="filename"
->man/man3</TT
-> directories in that
-        Perl directory. Set the MANPATH variable and PERL5LIB variable, so
-        that the installation of the modules goes smoother. (Setting
-        UNINST=0 in your "make install" options, on the CPAN first-time
-        configuration, is also a good idea.)</P
-><P
->After that, go into the CPAN shell:</P
-><P
->&#13;          <TABLE
-BORDER="0"
-BGCOLOR="#E0E0E0"
-WIDTH="100%"
-><TR
-><TD
-><FONT
-COLOR="#000000"
-><PRE
-CLASS="screen"
->&#13;            <SAMP
-CLASS="prompt"
->bash$</SAMP
->
-            <B
-CLASS="command"
->perl -MCPAN -e 'shell'</B
->
-          </PRE
-></FONT
-></TD
-></TR
-></TABLE
->
-        </P
-><P
->From there, you will need to type in the above "o conf" command
-        and commit the changes. Then you can run through the installation:</P
-><P
->&#13;          <TABLE
-BORDER="0"
-BGCOLOR="#E0E0E0"
-WIDTH="100%"
-><TR
-><TD
-><FONT
-COLOR="#000000"
-><PRE
-CLASS="screen"
->&#13;            <SAMP
-CLASS="prompt"
->cpan&#62;</SAMP
->
-            <B
-CLASS="command"
->install Bundle::Bugzilla</B
->
-          </PRE
-></FONT
-></TD
-></TR
-></TABLE
->
-        </P
-><P
->Most of the module installation process should go smoothly. However,
-        you may have some problems with Template. When you first start, you will
-        want to try to install Template with the XS Stash options on. If this
-        doesn't work, it may spit out C compiler error messages and croak back
-        to the CPAN shell prompt. So, redo the install, and turn it off. (In fact,
-        say no to all of the Template questions.) It may also start failing on a
-        few of the tests. If the total tests passed is a reasonable figure (90+%),
-        force the install with the following command:</P
-><P
->&#13;          <TABLE
-BORDER="0"
-BGCOLOR="#E0E0E0"
-WIDTH="100%"
-><TR
-><TD
-><FONT
-COLOR="#000000"
-><PRE
-CLASS="screen"
->&#13;            <SAMP
-CLASS="prompt"
->cpan&#62;</SAMP
->
-            <B
-CLASS="command"
->force install Template</B
->
-          </PRE
-></FONT
-></TD
-></TR
-></TABLE
->
-        </P
-><P
->You may also want to install the other optional modules:</P
-><TABLE
-BORDER="0"
-BGCOLOR="#E0E0E0"
-WIDTH="100%"
-><TR
-><TD
-><FONT
-COLOR="#000000"
-><PRE
-CLASS="screen"
->&#13;          <SAMP
-CLASS="prompt"
->cpan&#62;</SAMP
->
-          <B
-CLASS="command"
->install GD</B
->
-          <SAMP
-CLASS="prompt"
->cpan&#62;</SAMP
->
-          <B
-CLASS="command"
->install Chart::Base</B
->
-          <SAMP
-CLASS="prompt"
->cpan&#62;</SAMP
->
-          <B
-CLASS="command"
->install MIME::Parser</B
->
-        </PRE
-></FONT
-></TD
-></TR
-></TABLE
-></DIV
-></DIV
-><DIV
-CLASS="section"
-><HR><H3
-CLASS="section"
-><A
-NAME="AEN1086"
->2.6.5. HTTP Server</A
-></H3
-><P
->Ideally, this also needs to be installed as root and
-      run under a special web server account. As long as
-      the web server will allow the running of *.cgi files outside of a
-      cgi-bin, and a way of denying web access to certain files (such as a
-      .htaccess file), you should be good in this department.</P
-><DIV
-CLASS="section"
-><HR><H4
-CLASS="section"
-><A
-NAME="AEN1089"
->2.6.5.1. Running Apache as Non-Root</A
+NAME="AEN1041"
+>2.6.5.1. Running Apache as Non-Root</A
 ></H4
 ><P
 >You can run Apache as a non-root user, but the port will need
@@ -6153,47 +5940,11 @@ CLASS="section"
 ><HR><H3
 CLASS="section"
 ><A
-NAME="AEN1098"
+NAME="AEN1050"
 >2.6.6. Bugzilla</A
 ></H3
 ><P
->If you had to install Perl modules as a non-root user
-      (<A
-HREF="#install-perlmodules-nonroot"
->Section 2.6.4</A
->) or to non-standard
-      directories, you will need to change the scripts, setting the correct
-      location of the Perl modules:</P
-><P
->&#13;        <TABLE
-BORDER="0"
-BGCOLOR="#E0E0E0"
-WIDTH="100%"
-><TR
-><TD
-><FONT
-COLOR="#000000"
-><PRE
-CLASS="programlisting"
->perl -pi -e
-        's@use strict\;@use strict\; use lib \"/home/foo/perl/lib\"\;@'
-        *cgi *pl Bug.pm processmail syncshadowdb</PRE
-></FONT
-></TD
-></TR
-></TABLE
->
-
-        Change <TT
-CLASS="filename"
->/home/foo/perl/lib</TT
-> to
-        your personal Perl library directory. You can probably skip this
-        step if you are using the independant method of Perl module
-        installation.
-      </P
-><P
->When you run <B
+>&#13;      When you run <B
 CLASS="command"
 >./checksetup.pl</B
 > to create
@@ -6202,11 +5953,15 @@ CLASS="filename"
 >localconfig</TT
 > file, it will list the Perl
       modules it finds. If one is missing, go back and double-check the
-      module installation from the CPAN shell, then delete the
-      <TT
+      module installation from <A
+HREF="#install-perlmodules-nonroot"
+>Section 2.6.4</A
+>, 
+      then delete the <TT
 CLASS="filename"
 >localconfig</TT
-> file and try again.</P
+> file and try again.
+      </P
 ><DIV
 CLASS="warning"
 ><P
@@ -6228,7 +5983,7 @@ ALT="Warning"></TD
 ALIGN="LEFT"
 VALIGN="TOP"
 ><P
->The one option in <TT
+>One option in <TT
 CLASS="filename"
 >localconfig</TT
 > you
@@ -6246,23 +6001,76 @@ CLASS="filename"
 ></TR
 ></TABLE
 ></DIV
-></DIV
-></DIV
-></DIV
-><DIV
-CLASS="chapter"
-><HR><H1
-><A
-NAME="administration"
-></A
->Chapter 3. Administering Bugzilla</H1
 ><DIV
 CLASS="section"
-><H2
+><HR><H4
 CLASS="section"
 ><A
-NAME="parameters"
->3.1. Bugzilla Configuration</A
+NAME="suexec"
+>2.6.6.1. suexec or shared hosting</A
+></H4
+><P
+>If you are running on a system that uses suexec (most shared
+        hosting environments do this), you will need to set the
+        <EM
+>webservergroup</EM
+> value in <TT
+CLASS="filename"
+>localconfig</TT
+>
+        to match <EM
+>your</EM
+> primary group, rather than the one
+        the web server runs under.  You will need to run the following
+        shell commands after running <B
+CLASS="command"
+>./checksetup.pl</B
+>,
+        every time you run it (or modify <TT
+CLASS="filename"
+>checksetup.pl</TT
+>
+        to do them for you via the system() command).
+        <TABLE
+BORDER="0"
+BGCOLOR="#E0E0E0"
+WIDTH="100%"
+><TR
+><TD
+><FONT
+COLOR="#000000"
+><PRE
+CLASS="programlisting"
+>        for i in docs graphs images js skins; do find $i -type d -exec chmod o+rx {} \; ; done
+        for i in jpg gif css js png html rdf xul; do find . -name \*.$i -exec chmod o+r {} \; ; done
+        find . -name .htaccess -exec chmod o+r {} \;
+        chmod o+x . data data/webdot</PRE
+></FONT
+></TD
+></TR
+></TABLE
+>
+        Pay particular attention to the number of semicolons and dots.
+        They are all important.  A future version of Bugzilla will
+        hopefully be able to do this for you out of the box.</P
+></DIV
+></DIV
+></DIV
+></DIV
+><DIV
+CLASS="chapter"
+><HR><H1
+><A
+NAME="administration"
+></A
+>Chapter 3. Administering Bugzilla</H1
+><DIV
+CLASS="section"
+><H2
+CLASS="section"
+><A
+NAME="parameters"
+>3.1. Bugzilla Configuration</A
 ></H2
 ><P
 >&#13;      Bugzilla is configured by changing various parameters, accessed
@@ -6664,25 +6472,33 @@ CLASS="QUOTE"
 CLASS="QUOTE"
 >"Users"</SPAN
 > link
-          appears in the footer.
+          will appear in the Administration page.
         </P
 ><P
->&#13;          The first screen you get is a search form to search for existing user
-          accounts. You can run searches based either on the ID, real name or
-          login name (i.e. the email address in most cases) of users. You can
-          search in different ways the listbox to the right of the text entry
+>&#13;          The first screen is a search form to search for existing user
+          accounts. You can run searches based either on the user ID, real
+          name or login name (i.e. the email address, or just the first part
+          of the email address if the "emailsuffix" parameter is set).
+          The search can be conducted
+          in different ways using the listbox to the right of the text entry
           box. You can match by case-insensitive substring (the default),
           regular expression, a <EM
 >reverse</EM
 > regular expression
-          match, which finds every user name which does NOT match the regular
-          expression, or the exact string if you know exactly who you are looking for.
+          match (which finds every user name which does NOT match the regular
+          expression), or the exact string if you know exactly who you are
+          looking for. The search can be restricted to users who are in a
+          specific group. By default, the restriction is turned off.
         </P
 ><P
->&#13;          You can also restrict your search to users being in some specific group.
-          By default, the restriction is turned off. Then you get a list of
-          users matching your criteria, and clicking their login name lets you
-          edit their properties.
+>&#13;          The search returns a list of
+          users matching your criteria. User properties can be edited by clicking
+          the login name. The Account History of a user can be viewed by clicking
+          the "View" link in the Account History column. The Account History
+          displays changes that have been made to the user account, the time of
+          the change and the user who made the change. For example, the Account
+          History page will display details of when a user was added or removed
+          from a group.
         </P
 ></DIV
 ><DIV
@@ -7016,12 +6832,26 @@ CLASS="filename"
 ></LI
 ><LI
 ><P
->&#13;            <EM
+> 
+            <EM
 >&#60;productname&#62;</EM
->: 
-            This allows an administrator to specify the products in which 
-            a user can see bugs. The user must still have the 
-            "editbugs" privilege to edit bugs in these products.</P
+>:
+            This allows an administrator to specify the products 
+            in which a user can see bugs. If you turn on the 
+            <SPAN
+CLASS="QUOTE"
+>"makeproductgroups"</SPAN
+> parameter in
+            the Group Security Panel in the Parameters page, 
+            then Bugzilla creates one group per product (at the time you create 
+            the product), and this group has exactly the same name as the 
+            product itself. Note that for products that already exist when
+            the parameter is turned on, the corresponding group will not be
+            created. The user must still have the <SPAN
+CLASS="QUOTE"
+>"editbugs"</SPAN
+> 
+            privilege to edit bugs in these products.</P
 ></LI
 ></UL
 ></DIV
@@ -7185,142 +7015,479 @@ HREF="#gloss-product"
 CLASS="glossterm"
 >&#13;    Products</I
 ></A
->
-
-    tend to represent real-world
-    shipping products. E.g. if your company makes computer games, 
-    you should have one product per game, perhaps a "Common" product for 
-    units of technology used in multiple games, and maybe a few special
-     products (Website, Administration...)</P
+> typically represent real-world
+    shipping products. Products can be given 
+    <A
+HREF="#classifications"
+>Classifications</A
+>. 
+    For example, if a company makes computer games, 
+    they could have a classification of "Games", and a separate
+    product for each game. This company might also have a 
+    <SPAN
+CLASS="QUOTE"
+>"Common"</SPAN
+> product for units of technology used 
+    in multiple games, and perhaps a few special products that
+    represent items that are not actually shipping products 
+    (for example, "Website", or "Administration").
+    </P
 ><P
->Many of Bugzilla's settings are configurable on a per-product
-    basis. The number of "votes" available to users is set per-product, 
-    as is the number of votes
-    required to move a bug automatically from the UNCONFIRMED status to the
-    NEW status.</P
+>&#13;    Many of Bugzilla's settings are configurable on a per-product
+    basis. The number of <SPAN
+CLASS="QUOTE"
+>"votes"</SPAN
+> available to 
+    users is set per-product, as is the number of votes
+    required to move a bug automatically from the UNCONFIRMED 
+    status to the NEW status.
+    </P
 ><P
->To create a new product:</P
+>&#13;    When creating or editing products the following options are
+    available: 
+    </P
 ><P
 ></P
-><OL
-TYPE="1"
-><LI
+><DIV
+CLASS="variablelist"
+><DL
+><DT
+>Product</DT
+><DD
 ><P
->Select "products" from the footer</P
-></LI
-><LI
+> 
+            The name of the product
+          </P
+></DD
+><DT
+>Description</DT
+><DD
 ><P
->Select the "Add" link in the bottom right</P
-></LI
-><LI
+> 
+            A brief description of the product
+          </P
+></DD
+><DT
+>URL describing milestones for this product</DT
+><DD
 ><P
->Enter the name of the product and a description. The
-        Description field may contain HTML.</P
-></LI
-></OL
+> 
+            If there is reference URL, provide it here
+          </P
+></DD
+><DT
+>Default milestone</DT
+><DD
 ><P
->Don't worry about the "Closed for bug entry", "Maximum Votes
-    per person", "Maximum votes a person can put on a single bug",
-    "Number of votes a bug in this Product needs to automatically get out
-    of the UNCONFIRMED state", and "Version" options yet. We'll cover
-    those in a few moments.
-    </P
-></DIV
-><DIV
-CLASS="section"
-><HR><H2
-CLASS="section"
-><A
-NAME="components"
->3.5. Components</A
-></H2
+> 
+            Select the default milestone for this product.
+          </P
+></DD
+><DT
+>Closed for bug entry</DT
+><DD
 ><P
->Components are subsections of a Product. E.g. the computer game 
-    you are designing may have a "UI"
-    component, an "API" component, a "Sound System" component, and a
-    "Plugins" component, each overseen by a different programmer. It
-    often makes sense to divide Components in Bugzilla according to the
-    natural divisions of responsibility within your Product or
-    company.</P
+> 
+            Select this box to prevent new bugs from being
+            entered against this product.
+          </P
+></DD
+><DT
+>Maximum votes per person</DT
+><DD
 ><P
->&#13;    Each component has a default assignee and (if you turned it on in the parameters),
-    a QA Contact. The default assignee should be the primary person who fixes bugs in
-    that component. The QA Contact should be the person who will ensure
-    these bugs are completely fixed. The Assignee, QA Contact, and Reporter
-    will get email when new bugs are created in this Component and when
-    these bugs change. Default Assignee and Default QA Contact fields only
-    dictate the 
-    <EM
->default assignments</EM
->; 
-    these can be changed on bug submission, or at any later point in
-    a bug's life.</P
+> 
+            Maximum votes a user is allowed to give for this 
+            product
+          </P
+></DD
+><DT
+>Maximum votes a person can put on a single bug</DT
+><DD
 ><P
->To create a new Component:</P
+> 
+            Maximum votes a user is allowed to give for this 
+            product in a single bug
+          </P
+></DD
+><DT
+>Confirmation threshold</DT
+><DD
+><P
+> 
+            Number of votes needed to automatically remove any
+            bug against this product from the UNCONFIRMED state
+          </P
+></DD
+><DT
+>Version</DT
+><DD
+><P
+> 
+            Specify which version of the product bugs will be
+            entered against.
+          </P
+></DD
+><DT
+>Create chart datasets for this product</DT
+><DD
+><P
+> 
+            Select to make chart datasets available for this product.
+          </P
+></DD
+></DL
+></DIV
+><P
+>&#13;    When editing a product there is also a link to edit
+    <A
+HREF="#product-group-controls"
+>Group Access Controls</A
+>.
+    </P
+><P
+>&#13;    To create a new product:
+    </P
 ><P
 ></P
 ><OL
 TYPE="1"
 ><LI
 ><P
->Select the "Edit components" link from the "Edit product"
-        page</P
+> 
+        Select <SPAN
+CLASS="QUOTE"
+>"Administration"</SPAN
+> from the footer and then
+        choose <SPAN
+CLASS="QUOTE"
+>"Products"</SPAN
+> from the main administration page.
+        </P
+></LI
+><LI
+><P
+>&#13;        Select the <SPAN
+CLASS="QUOTE"
+>"Add"</SPAN
+> link in the bottom right.
+        </P
 ></LI
 ><LI
 ><P
->Select the "Add" link in the bottom right.</P
+>&#13;        Enter the name of the product and a description. The
+        Description field may contain HTML.
+        </P
 ></LI
 ><LI
 ><P
->Fill out the "Component" field, a short "Description", 
-        the "Default Assignee" and "Default QA Contact" (if enabled). 
-        The Component and Description fields may contain HTML; 
-        the "Default Assignee" field must be a login name
-        already existing in the database. 
+>&#13;        When the product is created, Bugzilla will give a message
+        stating that a component must be created before any bugs can
+        be entered against the new product. Follow the link to create
+        a new component. See <A
+HREF="#components"
+>Components</A
+> for more
+        information.
         </P
 ></LI
 ></OL
-></DIV
 ><DIV
 CLASS="section"
-><HR><H2
+><HR><H3
 CLASS="section"
 ><A
-NAME="versions"
->3.6. Versions</A
-></H2
+NAME="product-group-controls"
+>3.4.1. Assigning Group Controls to Products</A
+></H3
 ><P
->Versions are the revisions of the product, such as "Flinders
-    3.1", "Flinders 95", and "Flinders 2000". Version is not a multi-select
-    field; the usual practice is to select the earliest version known to have
-    the bug.
-    </P
+> 
+      On the <SPAN
+CLASS="QUOTE"
+>"Product Edit"</SPAN
+> page, 
+      there is a link called 
+      <SPAN
+CLASS="QUOTE"
+>"Edit Group Access Controls"</SPAN
+>. 
+      The settings on this page control the relationship 
+      of the groups to the product being edited.
+      </P
 ><P
->To create and edit Versions:</P
+>&#13;      Groups may be applicable, default, and 
+      mandatory for each product. Groups can also control access 
+      to bugs for a given product, or be used to make bugs 
+      for a product totally read-only unless the group 
+      restrictions are met.
+      </P
+><P
+>&#13;      If any group has <EM
+>Entry</EM
+> selected, then the 
+      product will restrict bug entry to only those users 
+      who are members of all the groups with 
+      <EM
+>Entry</EM
+> selected.
+      </P
+><P
+>&#13;      If any group has <EM
+>Canedit</EM
+> selected, 
+      then the product will be read-only for any users 
+      who are not members of all of the groups with
+      <EM
+>Canedit</EM
+> selected. ONLY users who 
+      are members of all the <EM
+>Canedit</EM
+> groups 
+      will be able to edit. This is an 
+      additional restriction that further limits 
+      what can be edited by a user.
+      </P
+><P
+>&#13;      The following settings let you 
+      choose privileges on a <EM
+>per-product basis</EM
+>.
+      This is a convenient way to give privileges to 
+      some users for some products only, without having 
+      to give them global privileges which would affect 
+      all products.
+      </P
+><P
+>&#13;      Any group having <EM
+>editcomponents</EM
+> 
+      selected  allows users who are in this group to edit all 
+      aspects of this product, including components, milestones 
+      and versions.
+      </P
+><P
+>&#13;      Any group having <EM
+>canconfirm</EM
+> selected 
+      allows users who are in this group to confirm bugs 
+      in this product.
+      </P
+><P
+>&#13;      Any group having <EM
+>editbugs</EM
+> selected allows 
+      users who are in this group to edit all fields of 
+      bugs in this product.
+      </P
+><P
+>&#13;      The <EM
+>MemberControl</EM
+> and 
+      <EM
+>OtherControl</EM
+> fields indicate which 
+      bugs will be placed in this group according 
+      to the following definitions.
+      </P
+><P
+>&#13;      For each group, it is possible to specify if 
+      membership in that group is:
+      </P
 ><P
 ></P
 ><OL
 TYPE="1"
 ><LI
 ><P
->From the "Edit product" screen, select "Edit Versions"</P
+>&#13;          Required for bug entry. 
+          </P
 ></LI
 ><LI
 ><P
->You will notice that the product already has the default
-        version "undefined". Click the "Add" link in the bottom right.</P
+>&#13;          Not applicable to this product(NA),
+          a possible restriction for a member of the 
+          group to place on a bug in this product(Shown),
+          a default restriction for a member of the 
+          group to place on a bug in this product(Default),
+          or a mandatory restriction to be placed on bugs 
+          in this product(Mandatory).
+          </P
 ></LI
 ><LI
 ><P
->Enter the name of the Version. This field takes text only. 
-        Then click the "Add" button.</P
+>&#13;          Not applicable by non-members to this product(NA),
+          a possible restriction for a non-member of the 
+          group to place on a bug in this product(Shown),
+          a default restriction for a non-member of the 
+          group to place on a bug in this product(Default),
+          or a mandatory restriction to be placed on bugs 
+          in this product when entered by a non-member(Mandatory).
+          </P
 ></LI
-></OL
-></DIV
-><DIV
-CLASS="section"
-><HR><H2
-CLASS="section"
+><LI
+><P
+>&#13;          Required in order to make <EM
+>any</EM
+> change
+          to bugs in this product <EM
+>including comments.</EM
+>
+          </P
+></LI
+></OL
+><P
+>These controls are often described in this order, so a 
+      product that requires a user to be a member of group "foo" 
+      to enter a bug and then requires that the bug stay restricted
+      to group "foo" at all times and that only members of group "foo"
+      can edit the bug even if they otherwise could see the bug would 
+      have its controls summarized by...</P
+><TABLE
+BORDER="0"
+BGCOLOR="#E0E0E0"
+WIDTH="100%"
+><TR
+><TD
+><FONT
+COLOR="#000000"
+><PRE
+CLASS="programlisting"
+> 
+foo: ENTRY, MANDATORY/MANDATORY, CANEDIT
+      </PRE
+></FONT
+></TD
+></TR
+></TABLE
+></DIV
+></DIV
+><DIV
+CLASS="section"
+><HR><H2
+CLASS="section"
+><A
+NAME="components"
+>3.5. Components</A
+></H2
+><P
+>Components are subsections of a Product. E.g. the computer game 
+    you are designing may have a "UI"
+    component, an "API" component, a "Sound System" component, and a
+    "Plugins" component, each overseen by a different programmer. It
+    often makes sense to divide Components in Bugzilla according to the
+    natural divisions of responsibility within your Product or
+    company.</P
+><P
+>&#13;    Each component has a default assignee and (if you turned it on in the parameters),
+    a QA Contact. The default assignee should be the primary person who fixes bugs in
+    that component. The QA Contact should be the person who will ensure
+    these bugs are completely fixed. The Assignee, QA Contact, and Reporter
+    will get email when new bugs are created in this Component and when
+    these bugs change. Default Assignee and Default QA Contact fields only
+    dictate the 
+    <EM
+>default assignments</EM
+>; 
+    these can be changed on bug submission, or at any later point in
+    a bug's life.</P
+><P
+>To create a new Component:</P
+><P
+></P
+><OL
+TYPE="1"
+><LI
+><P
+>Select the <SPAN
+CLASS="QUOTE"
+>"Edit components"</SPAN
+> link 
+        from the <SPAN
+CLASS="QUOTE"
+>"Edit product"</SPAN
+> page</P
+></LI
+><LI
+><P
+>Select the <SPAN
+CLASS="QUOTE"
+>"Add"</SPAN
+> link in the bottom right.</P
+></LI
+><LI
+><P
+>Fill out the <SPAN
+CLASS="QUOTE"
+>"Component"</SPAN
+> field, a 
+        short <SPAN
+CLASS="QUOTE"
+>"Description"</SPAN
+>, the 
+        <SPAN
+CLASS="QUOTE"
+>"Default Assignee"</SPAN
+>, <SPAN
+CLASS="QUOTE"
+>"Default CC List"</SPAN
+> 
+        and <SPAN
+CLASS="QUOTE"
+>"Default QA Contact"</SPAN
+> (if enabled). 
+        The <SPAN
+CLASS="QUOTE"
+>"Component Description"</SPAN
+> field may contain a 
+        limited subset of HTML tags. The <SPAN
+CLASS="QUOTE"
+>"Default Assignee"</SPAN
+> 
+        field must be a login name already existing in the Bugzilla database. 
+        </P
+></LI
+></OL
+></DIV
+><DIV
+CLASS="section"
+><HR><H2
+CLASS="section"
+><A
+NAME="versions"
+>3.6. Versions</A
+></H2
+><P
+>Versions are the revisions of the product, such as "Flinders
+    3.1", "Flinders 95", and "Flinders 2000". Version is not a multi-select
+    field; the usual practice is to select the earliest version known to have
+    the bug.
+    </P
+><P
+>To create and edit Versions:</P
+><P
+></P
+><OL
+TYPE="1"
+><LI
+><P
+>From the "Edit product" screen, select "Edit Versions"</P
+></LI
+><LI
+><P
+>You will notice that the product already has the default
+        version "undefined". Click the "Add" link in the bottom right.</P
+></LI
+><LI
+><P
+>Enter the name of the Version. This field takes text only. 
+        Then click the "Add" button.</P
+></LI
+></OL
+></DIV
+><DIV
+CLASS="section"
+><HR><H2
+CLASS="section"
 ><A
 NAME="milestones"
 >3.7. Milestones</A
@@ -7776,14 +7943,14 @@ NAME="flags-admin"
 >&#13;       If you have the <SPAN
 CLASS="QUOTE"
 >"editcomponents"</SPAN
-> permission, you will
-       have <SPAN
+> permission, you can
+       edit Flag Types from the main administration page. Clicking the
+       <SPAN
 CLASS="QUOTE"
->"Edit: ... | Flags | ..."</SPAN
-> in your page footer.
-       Clicking on that link will bring you to the <SPAN
+>"Flags"</SPAN
+> link will bring you to the <SPAN
 CLASS="QUOTE"
->"Administer 
+>"Administer
        Flag Types"</SPAN
 > page. Here, you can select whether you want 
        to create (or edit) a Bug flag, or an Attachment flag.
@@ -7797,8 +7964,28 @@ CLASS="section"
 ><HR><H4
 CLASS="section"
 ><A
+NAME="flags-edit"
+>3.8.5.1. Editing a Flag</A
+></H4
+><P
+>&#13;         To edit a flag's properties, just click on the <SPAN
+CLASS="QUOTE"
+>"Edit"</SPAN
+>
+         link next to the flag's description. That will take you to the same
+         form as described below (<A
+HREF="#flags-create"
+>Section 3.8.5.2</A
+>).
+       </P
+></DIV
+><DIV
+CLASS="section"
+><HR><H4
+CLASS="section"
+><A
 NAME="flags-create"
->3.8.5.1. Creating a Flag</A
+>3.8.5.2. Creating a Flag</A
 ></H4
 ><P
 >&#13;          When you click on the <SPAN
@@ -7814,7 +8001,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="flags-create-field-name"
->3.8.5.1.1. Name</A
+>3.8.5.2.1. Name</A
 ></H5
 ><P
 >&#13;            This is the name of the flag. This will be displayed 
@@ -7829,7 +8016,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="flags-create-field-description"
->3.8.5.1.2. Description</A
+>3.8.5.2.2. Description</A
 ></H5
 ><P
 >&#13;            The description describes the flag in more detail. It is visible
@@ -7850,7 +8037,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="flags-create-field-category"
->3.8.5.1.3. Category</A
+>3.8.5.2.3. Category</A
 ></H5
 ><P
 >&#13;            Default behaviour for a newly-created flag is to appear on
@@ -7980,7 +8167,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="flags-create-field-sortkey"
->3.8.5.1.4. Sort Key</A
+>3.8.5.2.4. Sort Key</A
 ></H5
 ><P
 >&#13;            Flags normally show up in alphabetical order. If you want them to 
@@ -8004,7 +8191,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="flags-create-field-active"
->3.8.5.1.5. Active</A
+>3.8.5.2.5. Active</A
 ></H5
 ><P
 >&#13;            Sometimes, you might want to keep old flag information in the 
@@ -8025,7 +8212,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="flags-create-field-requestable"
->3.8.5.1.6. Requestable</A
+>3.8.5.2.6. Requestable</A
 ></H5
 ><P
 >&#13;            New flags are, by default, <SPAN
@@ -8055,7 +8242,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="flags-create-field-specific"
->3.8.5.1.7. Specifically Requestable</A
+>3.8.5.2.7. Specifically Requestable</A
 ></H5
 ><P
 >&#13;            By default this box is checked for new flags, meaning that users may make
@@ -8075,7 +8262,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="flags-create-field-multiplicable"
->3.8.5.1.8. Multiplicable</A
+>3.8.5.2.8. Multiplicable</A
 ></H5
 ><P
 >&#13;            Any flag with <SPAN
@@ -8100,7 +8287,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="flags-create-field-cclist"
->3.8.5.1.9. CC List</A
+>3.8.5.2.9. CC List</A
 ></H5
 ><P
 >&#13;            If you want certain users to be notified every time this flag is 
@@ -8114,7 +8301,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="flags-create-grant-group"
->3.8.5.1.10. Grant Group</A
+>3.8.5.2.10. Grant Group</A
 ></H5
 ><P
 >&#13;            When this field is set to some given group, only users in the group
@@ -8140,7 +8327,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="flags-create-request-group"
->3.8.5.1.11. Request Group</A
+>3.8.5.2.11. Request Group</A
 ></H5
 ><P
 >&#13;            When this field is set to some given group, only users in the group
@@ -8160,7 +8347,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="flags-delete"
->3.8.5.2. Deleting a Flag</A
+>3.8.5.3. Deleting a Flag</A
 ></H4
 ><P
 >&#13;          When you are at the <SPAN
@@ -8215,27 +8402,38 @@ CLASS="QUOTE"
 ></TABLE
 ></DIV
 ></DIV
+></DIV
+></DIV
 ><DIV
 CLASS="section"
-><HR><H4
+><HR><H2
 CLASS="section"
 ><A
-NAME="flags-edit"
->3.8.5.3. Editing a Flag</A
-></H4
+NAME="keywords"
+>3.9. Keywords</A
+></H2
 ><P
->&#13;          To edit a flag's properties, just click on the <SPAN
-CLASS="QUOTE"
->"Edit"</SPAN
->
-          link next to the flag's description. That will take you to the same
-          form described in the <SPAN
-CLASS="QUOTE"
->"Creating a Flag"</SPAN
-> section.
-        </P
-></DIV
-></DIV
+>&#13;    The administrator can define keywords which can be used to tag and
+    categorise bugs. For example, the keyword "regression" is commonly used.
+    A company might have a policy stating all regressions
+    must be fixed by the next release - this keyword can make tracking those
+    bugs much easier.
+    </P
+><P
+>&#13;    Keywords are global, rather than per-product. If the administrator changes
+    a keyword currently applied to any bugs, the keyword cache must be rebuilt
+    using the <A
+HREF="#sanitycheck"
+>Section 3.15</A
+> script. Currently keywords can not
+    be marked obsolete to prevent future usage.
+    </P
+><P
+>&#13;    Keywords can be created, edited or deleted by clicking the "Keywords"
+    link in the admin page. There are two fields for each keyword - the keyword
+    itself and a brief description. Once created, keywords can be selected
+    and applied to individual bugs in that bug's "Details" section.
+    </P
 ></DIV
 ><DIV
 CLASS="section"
@@ -8243,7 +8441,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="custom-fields"
->3.9. Custom Fields</A
+>3.10. Custom Fields</A
 ></H2
 ><P
 >&#13;      One of the most requested features was the ability to add your own custom
@@ -8261,7 +8459,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="add-custom-fields"
->3.9.1. Adding Custom Fields</A
+>3.10.1. Adding Custom Fields</A
 ></H3
 ><P
 >&#13;        The <SPAN
@@ -8316,7 +8514,7 @@ CLASS="QUOTE"
               this custom field is added to the DB. See
               <A
 HREF="#edit-values-list"
->Section 3.10.1</A
+>Section 3.11.1</A
 > for information about editing
               legal values.
             </P
@@ -8375,14 +8573,14 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="edit-custom-fields"
->3.9.2. Editing Custom Fields</A
+>3.10.2. Editing Custom Fields</A
 ></H3
 ><P
 >&#13;        As soon as a custom field is created, its name and type cannot be
         changed. If this field is a drop down menu, its legal values can
         be set as described in <A
 HREF="#edit-values-list"
->Section 3.10.1</A
+>Section 3.11.1</A
 >. All
         other attributes can be edited as described above.
       </P
@@ -8393,7 +8591,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="delete-custom-fields"
->3.9.3. Deleting Custom Fields</A
+>3.10.3. Deleting Custom Fields</A
 ></H3
 ><P
 >&#13;        At this point, it is not possible to delete custom fields from
@@ -8409,7 +8607,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="edit-values"
->3.10. Legal Values</A
+>3.11. Legal Values</A
 ></H2
 ><P
 >&#13;      Since Bugzilla 2.20 RC1, legal values for Operating Systems, platforms,
@@ -8427,7 +8625,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="edit-values-list"
->3.10.1. Viewing/Editing legal values</A
+>3.11.1. Viewing/Editing legal values</A
 ></H3
 ><P
 >&#13;        Editing legal values requires <SPAN
@@ -8452,7 +8650,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="edit-values-delete"
->3.10.2. Deleting legal values</A
+>3.11.2. Deleting legal values</A
 ></H3
 ><P
 >&#13;        You can also delete legal values, but only if the two following conditions
@@ -8484,7 +8682,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="voting"
->3.11. Voting</A
+>3.12. Voting</A
 ></H2
 ><P
 >Voting allows users to be given a pot of votes which they can allocate
@@ -8546,7 +8744,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="quips"
->3.12. Quips</A
+>3.13. Quips</A
 ></H2
 ><P
 >&#13;      Quips are small text messages that can be configured to appear
@@ -8593,7 +8791,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="groups"
->3.13. Groups and Group Security</A
+>3.14. Groups and Group Security</A
 ></H2
 ><P
 >Groups allow the administrator
@@ -8667,8 +8865,8 @@ CLASS="section"
 ><HR><H3
 CLASS="section"
 ><A
-NAME="AEN1686"
->3.13.1. Creating Groups</A
+NAME="create-groups"
+>3.14.1. Creating Groups</A
 ></H3
 ><P
 >To create Groups:</P
@@ -8805,8 +9003,8 @@ CLASS="section"
 ><HR><H3
 CLASS="section"
 ><A
-NAME="AEN1713"
->3.13.2. Assigning Users to Groups</A
+NAME="edit-groups"
+>3.14.2. Assigning Users to Groups</A
 ></H3
 ><P
 >Users can become a member of a group in several ways.</P
@@ -8837,108 +9035,32 @@ CLASS="section"
 ><HR><H3
 CLASS="section"
 ><A
-NAME="AEN1723"
->3.13.3. Assigning Group Controls to Products</A
+NAME="AEN1788"
+>3.14.3. Assigning Group Controls to Products</A
 ></H3
 ><P
->&#13;      On the product edit page, there is a page to edit the 
-      <SPAN
-CLASS="QUOTE"
->"Group Controls"</SPAN
-> 
-      for a product. This  allows you to 
-      configure how a group relates to the product. 
-      Groups may be applicable, default, 
-      and mandatory as well as used to control entry 
-      or used to make bugs in the product
-      totally read-only unless the group restrictions are met. 
-      </P
-><P
->&#13;      For each group, it is possible to specify if membership in that
-      group is...
-      </P
-><P
-></P
-><OL
-TYPE="1"
-><LI
-><P
->&#13;          required for bug entry, 
-          </P
-></LI
-><LI
-><P
->&#13;          Not applicable to this product(NA),
-          a possible restriction for a member of the 
-          group to place on a bug in this product(Shown),
-          a default restriction for a member of the 
-          group to place on a bug in this product(Default),
-          or a mandatory restriction to be placed on bugs 
-          in this product(Mandatory).
-          </P
-></LI
-><LI
-><P
->&#13;          Not applicable by non-members to this product(NA),
-          a possible restriction for a non-member of the 
-          group to place on a bug in this product(Shown),
-          a default restriction for a non-member of the 
-          group to place on a bug in this product(Default),
-          or a mandatory restriction to be placed on bugs 
-          in this product when entered by a non-member(Mandatory).
-          </P
-></LI
-><LI
-><P
->&#13;          required in order to make <EM
->any</EM
-> change
-          to bugs in this product <EM
->including comments.</EM
->
-          </P
-></LI
-></OL
-><P
->These controls are often described in this order, so a 
-      product that requires a user to be a member of group "foo" 
-      to enter a bug and then requires that the bug stay restricted
-      to group "foo" at all times and that only members of group "foo"
-      can edit the bug even if they otherwise could see the bug would 
-      have its controls summarized by...</P
-><TABLE
-BORDER="0"
-BGCOLOR="#E0E0E0"
-WIDTH="100%"
-><TR
-><TD
-><FONT
-COLOR="#000000"
-><PRE
-CLASS="programlisting"
-> 
-foo: ENTRY, MANDATORY/MANDATORY, CANEDIT
-      </PRE
-></FONT
-></TD
-></TR
-></TABLE
+>&#13;     For information on assigning group controls to
+     products, see <A
+HREF="#products"
+>Products</A
+>.
+     </P
 ></DIV
 ><DIV
 CLASS="section"
 ><HR><H3
 CLASS="section"
 ><A
-NAME="AEN1741"
->3.13.4. Common Applications of Group Controls</A
+NAME="AEN1792"
+>3.14.4. Common Applications of Group Controls</A
 ></H3
 ><DIV
 CLASS="section"
 ><H4
 CLASS="section"
 ><A
-NAME="AEN1743"
->3.13.4.1. General User Access With Security Group</A
+NAME="AEN1794"
+>3.14.4.1. General User Access With Security Group</A
 ></H4
 ><P
 >To permit any user to file bugs in each product (A, B, C...) 
@@ -8972,8 +9094,8 @@ CLASS="section"
 ><HR><H4
 CLASS="section"
 ><A
-NAME="AEN1747"
->3.13.4.2. General User Access With A Security Product</A
+NAME="AEN1798"
+>3.14.4.2. General User Access With A Security Product</A
 ></H4
 ><P
 >To permit any user to file bugs in a Security product
@@ -9004,8 +9126,8 @@ CLASS="section"
 ><HR><H4
 CLASS="section"
 ><A
-NAME="AEN1751"
->3.13.4.3. Product Isolation With Common Group</A
+NAME="AEN1802"
+>3.14.4.3. Product Isolation With Common Group</A
 ></H4
 ><P
 >To permit users of product A to access the bugs for
@@ -9087,16 +9209,85 @@ CLASS="section"
 ><HR><H2
 CLASS="section"
 ><A
-NAME="upgrading"
->3.14. Upgrading to New Releases</A
+NAME="sanitycheck"
+>3.15. Checking and Maintaining Database Integrity</A
 ></H2
 ><P
->&#13;      Upgrading Bugzilla is something we all want to do from time to time,
-      be it to get new features or pick up the latest security fix. How easy
-      it is to update depends on a few factors:
+>&#13;    Over time it is possible for the Bugzilla database to become corrupt
+    or to have anomalies.
+    This could happen through normal usage of Bugzilla, manual database
+    administration outside of the Bugzilla user interface, or from some
+    other unexpected event. Bugzilla includes a "Sanity Check" script that
+    can perform several basic database checks, and repair certain problems or
+    inconsistencies. 
     </P
 ><P
-></P
+>&#13;    To run the "Sanity Check" script, log in as an Administrator and click the
+    "Sanity Check" link in the admin page. Any problems that are found will be
+    displayed in red letters. If the script is capable of fixing a problem,
+    it will present a link to initiate the fix. If the script can not
+    fix the problem it will require manual database administration or recovery.
+    </P
+><P
+>&#13;    The "Sanity Check" script can also be run from the command line via the perl
+    script <TT
+CLASS="filename"
+>sanitycheck.pl</TT
+>. The script can also be run as
+    a <B
+CLASS="command"
+>cron</B
+> job. Results will be delivered by email.
+    </P
+><P
+>&#13;    The "Sanity Check" script should be run on a regular basis as a matter of
+    best practice.
+    </P
+><DIV
+CLASS="warning"
+><P
+></P
+><TABLE
+CLASS="warning"
+WIDTH="100%"
+BORDER="0"
+><TR
+><TD
+WIDTH="25"
+ALIGN="CENTER"
+VALIGN="TOP"
+><IMG
+SRC="../images/warning.gif"
+HSPACE="5"
+ALT="Warning"></TD
+><TD
+ALIGN="LEFT"
+VALIGN="TOP"
+><P
+>&#13;      The "Sanity Check" script is no substitute for a competent database
+      administrator. It is only designed to check and repair basic database
+      problems.
+      </P
+></TD
+></TR
+></TABLE
+></DIV
+></DIV
+><DIV
+CLASS="section"
+><HR><H2
+CLASS="section"
+><A
+NAME="upgrading"
+>3.16. Upgrading to New Releases</A
+></H2
+><P
+>&#13;      Upgrading Bugzilla is something we all want to do from time to time,
+      be it to get new features or pick up the latest security fix. How easy
+      it is to update depends on a few factors:
+    </P
+><P
+></P
 ><UL
 ><LI
 ><P
@@ -9115,7 +9306,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="upgrading-version-defns"
->3.14.1. Version Definitions</A
+>3.16.1. Version Definitions</A
 ></H3
 ><P
 >&#13;        Bugzilla displays the version you are using at the top of the home
@@ -9192,7 +9383,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="upgrading-notifications"
->3.14.2. Upgrading - Notifications</A
+>3.16.2. Upgrading - Notifications</A
 ></H3
 ><P
 >&#13;        Bugzilla 3.0 introduces the ability to automatically notify
@@ -9232,7 +9423,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="upgrading-methods"
->3.14.3. Upgrading - Methods and Procedure</A
+>3.16.3. Upgrading - Methods and Procedure</A
 ></H3
 ><P
 >&#13;        There are three different ways to upgrade your installation.
@@ -9245,7 +9436,7 @@ TYPE="1"
 ><P
 >&#13;            Using CVS (<A
 HREF="#upgrade-cvs"
->Section 3.14.3.1</A
+>Section 3.16.3.1</A
 >)
           </P
 ></LI
@@ -9253,7 +9444,7 @@ HREF="#upgrade-cvs"
 ><P
 >&#13;            Downloading a new tarball (<A
 HREF="#upgrade-tarball"
->Section 3.14.3.2</A
+>Section 3.16.3.2</A
 >)
           </P
 ></LI
@@ -9261,7 +9452,7 @@ HREF="#upgrade-tarball"
 ><P
 >&#13;            Applying the relevant patches (<A
 HREF="#upgrade-patches"
->Section 3.14.3.3</A
+>Section 3.16.3.3</A
 >)
           </P
 ></LI
@@ -9337,7 +9528,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="upgrade-cvs"
->3.14.3.1. Upgrading using CVS</A
+>3.16.3.1. Upgrading using CVS</A
 ></H4
 ><P
 >&#13;          Every release of Bugzilla, whether it is a point release or a bugfix,
@@ -9462,7 +9653,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="upgrade-tarball"
->3.14.3.2. Upgrading using the tarball</A
+>3.16.3.2. Upgrading using the tarball</A
 ></H4
 ><P
 >&#13;          If you are unable (or unwilling) to use CVS, another option that's
@@ -9593,7 +9784,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="upgrade-patches"
->3.14.3.3. Upgrading using patches</A
+>3.16.3.3. Upgrading using patches</A
 ></H4
 ><P
 >&#13;          If you are doing a bugfix upgrade -- that is, one where only the 
@@ -9689,7 +9880,7 @@ CLASS="filename"
             This could make it more difficult to upgrade using CVS
             (<A
 HREF="#upgrade-cvs"
->Section 3.14.3.1</A
+>Section 3.16.3.1</A
 >) in the future.
           </P
 ></TD
@@ -9704,7 +9895,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="upgrading-completion"
->3.14.4. Completing Your Upgrade</A
+>3.16.4. Completing Your Upgrade</A
 ></H3
 ><P
 >&#13;        Regardless of which upgrade method you choose, you will need to
@@ -10557,6 +10748,15 @@ TARGET="_top"
     installations there will necessarily have all Bugzilla features enabled,
     and different installations run different versions, so some things may not
     quite work as this document describes.</P
+><P
+>&#13;      Frequently Asked Questions (FAQ) are available and answered on
+      <A
+HREF="http://wiki.mozilla.org/Bugzilla:FAQ"
+TARGET="_top"
+>wiki.mozilla.org</A
+>.
+      They may cover some questions you have which are left unanswered.
+    </P
 ></DIV
 ><DIV
 CLASS="section"
@@ -11153,21 +11353,13 @@ TARGET="_top"
     returns bugs where the content of the field matches any one of the selected
     values. If none is selected, then the field can take any value.</P
 ><P
->&#13;      Once you've run a search, you can save it as a Saved Search, which
-      appears in the page footer.
-      On the Saved Searches tab of your User Preferences page (the Prefs link
-      in Bugzilla's footer), members of the group defined in the
-      querysharegroup parameter can share such Saved Searches with user groups
-      so that other users may use them.
-      At the same place, you can see Saved Searches other users are sharing, and
-      have them show up in your personal Bugzilla footer along with your own
-      Saved Searches.
-      If somebody is sharing a Search with a group she or he is allowed to
-      <A
-HREF="#groups"
->assign users to</A
->, the sharer may opt to have
-      the Search show up in the group's direct members' footers by default.
+>&#13;      After a search is run, you can save it as a Saved Search, which
+      will appear in the page footer. If you are in the group defined 
+      by the "querysharegroup" parameter, you may share your queries 
+      with other users, see <A
+HREF="#savedsearches"
+>Saved Searches</A
+> for more details.
     </P
 ><DIV
 CLASS="section"
@@ -11265,7 +11457,7 @@ NAME="negation"
 >&#13;          At first glance, negation seems redundant. Rather than
           searching for
           <A
-NAME="AEN2239"
+NAME="AEN2302"
 ></A
 ><BLOCKQUOTE
 CLASS="BLOCKQUOTE"
@@ -11276,7 +11468,7 @@ CLASS="BLOCKQUOTE"
 >
           one could search for 
           <A
-NAME="AEN2241"
+NAME="AEN2304"
 ></A
 ><BLOCKQUOTE
 CLASS="BLOCKQUOTE"
@@ -11287,7 +11479,7 @@ CLASS="BLOCKQUOTE"
 >
           However, the search 
           <A
-NAME="AEN2243"
+NAME="AEN2306"
 ></A
 ><BLOCKQUOTE
 CLASS="BLOCKQUOTE"
@@ -11299,7 +11491,7 @@ CLASS="BLOCKQUOTE"
           would find every bug where anyone on the CC list did not contain 
           "@mozilla.org" while
           <A
-NAME="AEN2245"
+NAME="AEN2308"
 ></A
 ><BLOCKQUOTE
 CLASS="BLOCKQUOTE"
@@ -11313,7 +11505,7 @@ CLASS="BLOCKQUOTE"
           complex expressions to be built using terms OR'd together and then
           negated. Negation permits queries such as
           <A
-NAME="AEN2247"
+NAME="AEN2310"
 ></A
 ><BLOCKQUOTE
 CLASS="BLOCKQUOTE"
@@ -11326,7 +11518,7 @@ CLASS="BLOCKQUOTE"
           to find bugs that are neither 
           in the update product or in the documentation component or
           <A
-NAME="AEN2249"
+NAME="AEN2312"
 ></A
 ><BLOCKQUOTE
 CLASS="BLOCKQUOTE"
@@ -11354,7 +11546,7 @@ NAME="multiplecharts"
           a bug that has two different people cc'd on it, then you need 
           to use two boolean charts. A search for
           <A
-NAME="AEN2254"
+NAME="AEN2317"
 ></A
 ><BLOCKQUOTE
 CLASS="BLOCKQUOTE"
@@ -11369,7 +11561,7 @@ CLASS="BLOCKQUOTE"
           containing "foo@" and someone else containing "@mozilla.org",
           then you would need two boolean charts.
           <A
-NAME="AEN2256"
+NAME="AEN2319"
 ></A
 ><BLOCKQUOTE
 CLASS="BLOCKQUOTE"
@@ -11425,8 +11617,23 @@ CLASS="section"
 ><HR><H3
 CLASS="section"
 ><A
+NAME="casesensitivity"
+>5.5.3. Case Sensitivity in Searches</A
+></H3
+><P
+>&#13;      Bugzilla queries are case-insensitive and accent-insensitive, when
+      used with either MySQL or Oracle databases. When using Bugzilla with
+      PostgreSQL, however, some queries are case-sensitive. This is due to
+      the way PostgreSQL handles case and accent sensitivity. 
+      </P
+></DIV
+><DIV
+CLASS="section"
+><HR><H3
+CLASS="section"
+><A
 NAME="list"
->5.5.3. Bug Lists</A
+>5.5.4. Bug Lists</A
 ></H3
 ><P
 >If you run a search, a list of matching bugs will be returned.
@@ -11558,7 +11765,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="individual-buglists"
->5.5.4. Adding/removing tags to/from bugs</A
+>5.5.5. Adding/removing tags to/from bugs</A
 ></H3
 ><P
 >&#13;        You can add and remove tags from individual bugs, which let you find and
@@ -12060,7 +12267,7 @@ CLASS="section"
 ><HR><H3
 CLASS="section"
 ><A
-NAME="AEN2389"
+NAME="AEN2455"
 >5.8.1. Autolinkification</A
 ></H3
 ><P
@@ -12153,8 +12360,22 @@ CLASS="section"
 ><HR><H3
 CLASS="section"
 ><A
+NAME="comment-wrapping"
+>5.8.3. Server-Side Comment Wrapping</A
+></H3
+><P
+>&#13;      Bugzilla stores comments unwrapped and wraps them at display time. This
+      ensures proper wrapping in all browsers. Lines beginning with the "&#62;" 
+      character are assumed to be quotes, and are not wrapped.
+      </P
+></DIV
+><DIV
+CLASS="section"
+><HR><H3
+CLASS="section"
+><A
 NAME="dependencytree"
->5.8.3. Dependency Tree</A
+>5.8.4. Dependency Tree</A
 ></H3
 ><P
 >&#13;        On the <SPAN
@@ -12224,44 +12445,19 @@ NAME="userpreferences"
 >5.10. User Preferences</A
 ></H2
 ><P
->Once you have logged in, you can customize various aspects of
-    Bugzilla via the "Edit prefs" link in the page footer.
-    The preferences are split into three tabs:</P
-><DIV
-CLASS="section"
-><HR><H3
-CLASS="section"
-><A
-NAME="accountpreferences"
->5.10.1. Account Preferences</A
-></H3
-><P
->On this tab, you can change your basic account information,
-      including your password, email address and real name. For security
-      reasons, in order to change anything on this page you must type your
-      <EM
->current</EM
->
-      password into the
-      <SPAN
-CLASS="QUOTE"
->"Password"</SPAN
->
-      field at the top of the page.
-      If you attempt to change your email address, a confirmation
-      email is sent to both the old and new addresses, with a link to use to
-      confirm the change. This helps to prevent account hijacking.</P
-></DIV
+>&#13;    Once logged in, you can customize various aspects of
+    Bugzilla via the "Preferences" link in the page footer.
+    The preferences are split into five tabs:</P
 ><DIV
 CLASS="section"
 ><HR><H3
 CLASS="section"
 ><A
 NAME="generalpreferences"
->5.10.2. General Preferences</A
+>5.10.1. General Preferences</A
 ></H3
 ><P
->&#13;        This tab allows you to change several Bugzilla behavior.
+>&#13;        This tab allows you to change several default settings of Bugzilla.
       </P
 ><P
 ></P
@@ -12269,57 +12465,67 @@ NAME="generalpreferences"
 COMPACT="COMPACT"
 ><LI
 ><P
->&#13;            Field separator character for CSV files -
-            This controls separator character used in CSV formatted Bug List.
+>&#13;            Bugzilla's general appearance (skin) - select which skin to use.
+            Bugzilla supports adding custom skins.
           </P
 ></LI
 ><LI
 ><P
->&#13;            After changing bugs - This controls which bugs or no bugs
-            are shown in the page after you changed bugs.
-            You can select the bug you've changed this time, or the next
-            bug of the list.
+>&#13;            Quote the associated comment when you click on its reply link - sets
+            the behavior of the comment "Reply" link. Options include quoting the
+            full comment, just reference the comment number, or turn the link off.
           </P
 ></LI
 ><LI
 ><P
->&#13;            Add individual bugs to saved searches - this controls
-            whether you can add individual bugs to saved searches
-            or you can't.
+>&#13;            Language used in email - select which language email will be sent in,
+            from the list of available languages.
           </P
 ></LI
 ><LI
 ><P
->&#13;            When viewing a bug, show comments in this order -
-            This controls the order of comments, you can select below:
-            <P
-></P
-><TABLE
-BORDER="0"
-><TBODY
-><TR
-><TD
->Initial description, comment 1, comment 2, ...</TD
-></TR
-><TR
-><TD
->Initial description, last comment, ..., comment 2, comment 1.</TD
-></TR
-><TR
-><TD
->Initial last comment, ..., comment 2, comment 1, description.</TD
-></TR
-></TBODY
-></TABLE
+>&#13;            After changing a bug - This controls what page is displayed after
+            changes to a bug are submitted. The options include to show the bug
+            just modified, to show the next bug in your list, or to do nothing.
+          </P
+></LI
+><LI
 ><P
-></P
->
+>&#13;            Enable tags for bugs - turn bug tagging on or off.
+          </P
+></LI
+><LI
+><P
+>&#13;            Zoom textareas large when in use (requires JavaScript) - enable or
+            disable the automatic expanding of text areas when  text is being
+            entered into them. 
+          </P
+></LI
+><LI
+><P
+>&#13;            Field separator character for CSV files -
+            Select between a comma and semi-colon for exported CSV bug lists.
+          </P
+></LI
+><LI
+><P
+>&#13;            Automatically add me to the CC list of bugs I change - set default
+            behavior of CC list. Options include "Always", "Never", and "Only
+            if I have no role on them". 
+          </P
+></LI
+><LI
+><P
+>&#13;            When viewing a bug, show comments in this order -
+            controls the order of comments. Options include "Oldest
+            to Newest", "Newest to Oldest" and "Newest to Oldest, but keep the
+            bug description at the top".
           </P
 ></LI
 ><LI
 ><P
->&#13;            Show a quip at the top of each bug list - This controls
-            whether a quip will be shown on the Bug list page or not.
+>&#13;            Show a quip at the top of each bug list - controls
+            whether a quip will be shown on the Bug list page.
           </P
 ></LI
 ></UL
@@ -12330,65 +12536,11 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="emailpreferences"
->5.10.3. Email Preferences</A
+>5.10.2. Email Preferences</A
 ></H3
 ><P
->&#13;        This tab controls the amount of email Bugzilla sends you.
-      </P
-><P
->&#13;        The first item on this page is marked <SPAN
-CLASS="QUOTE"
->"Users to watch"</SPAN
->.
-        When you enter one or more comma-delineated user accounts (usually email
-        addresses) into the text entry box, you will receive a copy of all the
-        bugmail those users are sent (security settings permitting).
-        This powerful functionality enables seamless transitions as developers
-        change projects or users go on holiday.
-      </P
-><DIV
-CLASS="note"
-><P
-></P
-><TABLE
-CLASS="note"
-WIDTH="100%"
-BORDER="0"
-><TR
-><TD
-WIDTH="25"
-ALIGN="CENTER"
-VALIGN="TOP"
-><IMG
-SRC="../images/note.gif"
-HSPACE="5"
-ALT="Note"></TD
-><TD
-ALIGN="LEFT"
-VALIGN="TOP"
-><P
->&#13;          The ability to watch other users may not be available in all
-          Bugzilla installations. If you don't see this feature, and feel
-          that you need it, speak to your administrator.
-        </P
-></TD
-></TR
-></TABLE
-></DIV
-><P
->&#13;        Each user listed in the <SPAN
-CLASS="QUOTE"
->"Users watching you"</SPAN
-> field
-        has you listed in their <SPAN
-CLASS="QUOTE"
->"Users to watch"</SPAN
-> list
-        and can get bugmail according to your relationship to the bug and
-        their <SPAN
-CLASS="QUOTE"
->"Field/recipient specific options"</SPAN
-> setting.
+>&#13;        This tab allows you to enable or disable email notification on
+        specific events.
       </P
 ><P
 >&#13;        In general, users have almost complete control over how much (or
@@ -12424,12 +12576,12 @@ ALT="Note"></TD
 ALIGN="LEFT"
 VALIGN="TOP"
 ><P
->&#13;          Your Bugzilla administrator can stop a user from receiving
-          bugmail by adding the user's name to the 
-          <TT
-CLASS="filename"
->data/nomail</TT
-> file. This is a drastic step
+>&#13;          A Bugzilla administrator can stop a user from receiving
+          bugmail by clicking the <SPAN
+CLASS="QUOTE"
+>"Bugmail Disabled"</SPAN
+> checkbox
+          when editing the user account. This is a drastic step
           best taken only for disabled accounts, as it overrides 
           the user's individual mail preferences.
         </P
@@ -12438,6 +12590,20 @@ CLASS="filename"
 ></TABLE
 ></DIV
 ><P
+>&#13;        There are two global options -- <SPAN
+CLASS="QUOTE"
+>"Email me when someone
+        asks me to set a flag"</SPAN
+> and <SPAN
+CLASS="QUOTE"
+>"Email me when someone
+        sets a flag I asked for"</SPAN
+>. These define how you want to
+        receive bugmail with regards to flags. Their use is quite
+        straightforward; enable the checkboxes if you want Bugzilla to
+        send you mail under either of the above conditions.
+      </P
+><P
 >&#13;        If you'd like to set your bugmail to something besides
         'Completely ON' and 'Completely OFF', the
         <SPAN
@@ -12591,63 +12757,286 @@ CLASS="QUOTE"
 ></TABLE
 ></DIV
 ><P
->&#13;        Two items not in the table (<SPAN
-CLASS="QUOTE"
->"Email me when someone
-        asks me to set a flag"</SPAN
-> and <SPAN
-CLASS="QUOTE"
->"Email me when someone
-        sets a flag I asked for"</SPAN
->) define how you want to
-        receive bugmail with regards to flags. Their use is quite
-        straightforward; enable the checkboxes if you want Bugzilla to
-        send you mail under either of the above conditions.
-      </P
-><P
->&#13;        By default, Bugzilla sends out email regardless of who made the
-        change... even if you were the one responsible for generating
-        the email in the first place. If you don't care to receive bugmail
-        from your own changes, check the box marked <SPAN
+>&#13;        Bugzilla has a feature called <SPAN
 CLASS="QUOTE"
->"Only email me
-        reports of changes made by other people"</SPAN
+>"Users Watching"</SPAN
 >.
+        When you enter one or more comma-delineated user accounts (usually email
+        addresses) into the text entry box, you will receive a copy of all the
+        bugmail those users are sent (security settings permitting).
+        This powerful functionality enables seamless transitions as developers
+        change projects or users go on holiday.
       </P
-></DIV
-><DIV
-CLASS="section"
-><HR><H3
-CLASS="section"
-><A
-NAME="permissionsettings"
->5.10.4. Permissions</A
-></H3
-><P
->This is a purely informative page which outlines your current
-      permissions on this installation of Bugzilla - what product groups you
-      are in, and whether you can edit bugs or perform various administration
-      functions.</P
-></DIV
-></DIV
 ><DIV
-CLASS="section"
-><HR><H2
-CLASS="section"
-><A
-NAME="reporting"
->5.11. Reports and Charts</A
-></H2
+CLASS="note"
 ><P
->As well as the standard buglist, Bugzilla has two more ways of
-    viewing sets of bugs. These are the reports (which give different
-    views of the current state of the database) and charts (which plot
-    the changes in particular sets of bugs over time.)</P
-><DIV
-CLASS="section"
-><HR><H3
-CLASS="section"
-><A
+></P
+><TABLE
+CLASS="note"
+WIDTH="100%"
+BORDER="0"
+><TR
+><TD
+WIDTH="25"
+ALIGN="CENTER"
+VALIGN="TOP"
+><IMG
+SRC="../images/note.gif"
+HSPACE="5"
+ALT="Note"></TD
+><TD
+ALIGN="LEFT"
+VALIGN="TOP"
+><P
+>&#13;          The ability to watch other users may not be available in all
+          Bugzilla installations. If you don't see this feature, and feel
+          that you need it, speak to your administrator.
+        </P
+></TD
+></TR
+></TABLE
+></DIV
+><P
+>&#13;        Each user listed in the <SPAN
+CLASS="QUOTE"
+>"Users watching you"</SPAN
+> field
+        has you listed in their <SPAN
+CLASS="QUOTE"
+>"Users to watch"</SPAN
+> list
+        and can get bugmail according to your relationship to the bug and
+        their <SPAN
+CLASS="QUOTE"
+>"Field/recipient specific options"</SPAN
+> setting.
+      </P
+></DIV
+><DIV
+CLASS="section"
+><HR><H3
+CLASS="section"
+><A
+NAME="savedsearches"
+>5.10.3. Saved Searches</A
+></H3
+><P
+>&#13;      On this tab you can view and run any Saved Searches that you have
+      created, and also any Saved Searches that other members of the group
+      defined in the "querysharegroup" parameter have shared. 
+      Saved Searches can be added to the page footer from this screen. 
+      If somebody is sharing a Search with a group she or he is allowed to
+      <A
+HREF="#groups"
+>assign users to</A
+>, the sharer may opt to have
+      the Search show up in the footer of the group's direct members by default.
+      </P
+></DIV
+><DIV
+CLASS="section"
+><HR><H3
+CLASS="section"
+><A
+NAME="accountpreferences"
+>5.10.4. Name and Password</A
+></H3
+><P
+>On this tab, you can change your basic account information,
+      including your password, email address and real name. For security
+      reasons, in order to change anything on this page you must type your
+      <EM
+>current</EM
+> password into the <SPAN
+CLASS="QUOTE"
+>"Password"</SPAN
+>
+      field at the top of the page.
+      If you attempt to change your email address, a confirmation
+      email is sent to both the old and new addresses, with a link to use to
+      confirm the change. This helps to prevent account hijacking.</P
+></DIV
+><DIV
+CLASS="section"
+><HR><H3
+CLASS="section"
+><A
+NAME="permissionsettings"
+>5.10.5. Permissions</A
+></H3
+><P
+>&#13;      This is a purely informative page which outlines your current
+      permissions on this installation of Bugzilla.
+      </P
+><P
+>&#13;      A complete list of permissions is below. Only users with 
+      <EM
+>editusers</EM
+> privileges can change the permissions 
+      of other users.
+      </P
+><P
+></P
+><DIV
+CLASS="variablelist"
+><DL
+><DT
+>admin</DT
+><DD
+><P
+> 
+             Indicates user is an Administrator.
+            </P
+></DD
+><DT
+>bz_canusewhineatothers</DT
+><DD
+><P
+> 
+             Indicates user can configure whine reports for other users.
+            </P
+></DD
+><DT
+>bz_canusewhines</DT
+><DD
+><P
+> 
+             Indicates user can configure whine reports for self.
+            </P
+></DD
+><DT
+>bz_sudoers</DT
+><DD
+><P
+> 
+             Indicates user can perform actions as other users.
+            </P
+></DD
+><DT
+>bz_sudo_protect</DT
+><DD
+><P
+> 
+             Indicates user can not be impersonated by other users.
+            </P
+></DD
+><DT
+>canconfirm</DT
+><DD
+><P
+> 
+             Indicates user can confirm a bug or mark it a duplicate.
+            </P
+></DD
+><DT
+>creategroups</DT
+><DD
+><P
+> 
+             Indicates user can create and destroy groups.
+            </P
+></DD
+><DT
+>editbugs</DT
+><DD
+><P
+> 
+             Indicates user can edit all bug fields.
+            </P
+></DD
+><DT
+>editclassifications</DT
+><DD
+><P
+> 
+             Indicates user can create, destroy, and edit classifications.
+            </P
+></DD
+><DT
+>editcomponents</DT
+><DD
+><P
+> 
+             Indicates user can create, destroy, and edit components.
+            </P
+></DD
+><DT
+>editkeywords</DT
+><DD
+><P
+> 
+             Indicates user can create, destroy, and edit keywords.
+            </P
+></DD
+><DT
+>editusers</DT
+><DD
+><P
+> 
+             Indicates user can edit or disable users.
+            </P
+></DD
+><DT
+>tweakparams</DT
+><DD
+><P
+> 
+             Indicates user can change Parameters.
+            </P
+></DD
+></DL
+></DIV
+><DIV
+CLASS="note"
+><P
+></P
+><TABLE
+CLASS="note"
+WIDTH="100%"
+BORDER="0"
+><TR
+><TD
+WIDTH="25"
+ALIGN="CENTER"
+VALIGN="TOP"
+><IMG
+SRC="../images/note.gif"
+HSPACE="5"
+ALT="Note"></TD
+><TD
+ALIGN="LEFT"
+VALIGN="TOP"
+><P
+>&#13;        For more information on how permissions work in Bugzilla (i.e. who can
+        change what), see  <A
+HREF="#cust-change-permissions"
+>Section 6.4</A
+>. 
+        </P
+></TD
+></TR
+></TABLE
+></DIV
+></DIV
+></DIV
+><DIV
+CLASS="section"
+><HR><H2
+CLASS="section"
+><A
+NAME="reporting"
+>5.11. Reports and Charts</A
+></H2
+><P
+>As well as the standard buglist, Bugzilla has two more ways of
+    viewing sets of bugs. These are the reports (which give different
+    views of the current state of the database) and charts (which plot
+    the changes in particular sets of bugs over time.)</P
+><DIV
+CLASS="section"
+><HR><H3
+CLASS="section"
+><A
 NAME="reports"
 >5.11.1. Reports</A
 ></H3
@@ -12753,7 +13142,7 @@ CLASS="section"
 ><HR><H4
 CLASS="section"
 ><A
-NAME="AEN2517"
+NAME="AEN2652"
 >5.11.2.1. Creating Charts</A
 ></H4
 ><P
@@ -12793,7 +13182,7 @@ CLASS="section"
 ><HR><H4
 CLASS="section"
 ><A
-NAME="AEN2524"
+NAME="charts-new-series"
 >5.11.2.2. Creating New Data Sets</A
 ></H4
 ><P
@@ -13144,7 +13533,7 @@ NAME="whining-query"
         choice).  If you do not have any saved searches, you can take this 
         opportunity to create one (see <A
 HREF="#list"
->Section 5.5.3</A
+>Section 5.5.4</A
 >).
       </P
 ><DIV
@@ -13222,7 +13611,7 @@ CLASS="section"
 ><HR><H3
 CLASS="section"
 ><A
-NAME="AEN2577"
+NAME="AEN2712"
 >5.13.4. Saving Your Changes</A
 ></H3
 ><P
@@ -14545,6 +14934,19 @@ VALIGN="TOP"
       who is allowed to make what sorts of value transition.
     </P
 ><P
+>&#13;     By default, assignees, QA owners and users
+     with <EM
+>editbugs</EM
+> privileges can edit all fields of bugs, 
+     except group restrictions (unless they are members of the groups they 
+     are trying to change). Bug reporters also have the ability to edit some 
+     fields, but in a more restrictive manner. Other users, without 
+     <EM
+>editbugs</EM
+> privileges, can not edit 
+     bugs, except to comment and add themselves to the CC list.
+    </P
+><P
 >&#13;      For maximum flexibility, customizing this means editing Bugzilla's Perl 
       code. This gives the administrator complete control over exactly who is
       allowed to do what. The relevant method is called
@@ -14874,3544 +15276,9 @@ TARGET="_top"
 CLASS="appendix"
 ><HR><H1
 ><A
-NAME="faq"
-></A
->Appendix A. The Bugzilla FAQ</H1
-><P
->&#13;    This FAQ includes questions not covered elsewhere in the Guide.
-  </P
-><DIV
-CLASS="qandaset"
-><DL
-><DT
->1. <A
-HREF="#faq-general"
->General Questions</A
-></DT
-><DD
-><DL
-><DT
->A.1.1. <A
-HREF="#faq-general-tryout"
->&#13;            Can I try out Bugzilla somewhere?
-          </A
-></DT
-><DT
->A.1.2. <A
-HREF="#faq-general-license"
->&#13;            What license is Bugzilla distributed under?
-          </A
-></DT
-><DT
->A.1.3. <A
-HREF="#faq-general-support"
->&#13;            How do I get commercial support for Bugzilla?
-          </A
-></DT
-><DT
->A.1.4. <A
-HREF="#faq-general-companies"
->&#13;            What major companies or projects are currently using Bugzilla
-            for bug-tracking?
-          </A
-></DT
-><DT
->A.1.5. <A
-HREF="#faq-general-maintainers"
->&#13;            Who maintains Bugzilla?
-          </A
-></DT
-><DT
->A.1.6. <A
-HREF="#faq-general-compare"
->&#13;            How does Bugzilla stack up against other bug-tracking databases?
-          </A
-></DT
-><DT
->A.1.7. <A
-HREF="#faq-general-bzmissing"
->&#13;            Why doesn't Bugzilla offer this or that feature or compatibility
-            with this other tracking software?
-          </A
-></DT
-><DT
->A.1.8. <A
-HREF="#faq-general-db"
->&#13;            What databases does Bugzilla run on?
-          </A
-></DT
-><DT
->A.1.9. <A
-HREF="#faq-general-perlpath"
->&#13;            My perl is located at <TT
-CLASS="filename"
->/usr/local/bin/perl</TT
->
-            and not <TT
-CLASS="filename"
->/usr/bin/perl</TT
->. Is there an easy
-            to change that in all the files that have this hard-coded?
-          </A
-></DT
-><DT
->A.1.10. <A
-HREF="#faq-general-cookie"
->&#13;            Is there an easy way to change the Bugzilla cookie name?
-          </A
-></DT
-><DT
->A.1.11. <A
-HREF="#faq-general-selinux"
->&#13;            How can Bugzilla be made to work under SELinux?
-          </A
-></DT
-></DL
-></DD
-><DT
->2. <A
-HREF="#faq-phb"
->Managerial Questions</A
-></DT
-><DD
-><DL
-><DT
->A.2.1. <A
-HREF="#faq-phb-client"
->&#13;            Is Bugzilla web-based, or do you have to have specific software or
-            a specific operating system on your machine?
-          </A
-></DT
-><DT
->A.2.2. <A
-HREF="#faq-phb-priorities"
->&#13;            Does Bugzilla allow us to define our own priorities and levels?
-            Do we have complete freedom to change the labels of fields and
-            format of them, and the choice of acceptable values?
-          </A
-></DT
-><DT
->A.2.3. <A
-HREF="#faq-phb-reporting"
->&#13;            Does Bugzilla provide any reporting features, metrics, graphs,
-            etc? You know, the type of stuff that management likes to see. :)
-          </A
-></DT
-><DT
->A.2.4. <A
-HREF="#faq-phb-email"
->&#13;            Is there email notification? If so, what do you see
-            when you get an email?
-          </A
-></DT
-><DT
->A.2.5. <A
-HREF="#faq-phb-emailapp"
->&#13;            Do users have to have any particular type of email application?
-          </A
-></DT
-><DT
->A.2.6. <A
-HREF="#faq-phb-data"
->&#13;            Does Bugzilla allow data to be imported and exported? If I had
-            outsiders write up a bug report using a MS Word bug template,
-            could that template be imported into <SPAN
-CLASS="QUOTE"
->"matching"</SPAN
->
-            fields? If I wanted to take the results of a query and export
-            that data to MS Excel, could I do that?
-          </A
-></DT
-><DT
->A.2.7. <A
-HREF="#faq-phb-l10n"
->&#13;            Has anyone converted Bugzilla to another language to be
-            used in other countries? Is it localizable?
-          </A
-></DT
-><DT
->A.2.8. <A
-HREF="#faq-phb-reports"
->&#13;            Can a user create and save reports?
-            Can they do this in Word format? Excel format?
-          </A
-></DT
-><DT
->A.2.9. <A
-HREF="#faq-phb-backup"
->&#13;            Are there any backup features provided?
-          </A
-></DT
-><DT
->A.2.10. <A
-HREF="#faq-phb-maintenance"
->&#13;            What type of human resources are needed to be on staff to install
-            and maintain Bugzilla? Specifically, what type of skills does the
-            person need to have? I need to find out what types of individuals
-            would we need to hire and how much would that cost if we were to
-            go with Bugzilla vs. buying an <SPAN
-CLASS="QUOTE"
->"out-of-the-box"</SPAN
->
-            solution.
-          </A
-></DT
-><DT
->A.2.11. <A
-HREF="#faq-phb-installtime"
->&#13;            What time frame are we looking at if we decide to hire people
-            to install and maintain the Bugzilla? Is this something that
-            takes hours or days to install and a couple of hours per week
-            to maintain and customize, or is this a multi-week install process,
-            plus a full time job for 1 person, 2 people, etc?
-          </A
-></DT
-><DT
->A.2.12. <A
-HREF="#faq-phb-cost"
->&#13;            Is there any licensing fee or other fees for using Bugzilla? Any
-            out-of-pocket cost other than the bodies needed as identified above?
-          </A
-></DT
-><DT
->A.2.13. <A
-HREF="#faq-phb-renameBugs"
->&#13;            We don't like referring to problems as 'bugs'. Can we change that?
-          </A
-></DT
-></DL
-></DD
-><DT
->3. <A
-HREF="#faq-admin"
->Administrative Questions</A
-></DT
-><DD
-><DL
-><DT
->A.3.1. <A
-HREF="#faq-admin-midair"
->&#13;            Does Bugzilla provide record locking when there is simultaneous
-            access to the same bug? Does the second person get a notice
-            that the bug is in use or how are they notified?
-          </A
-></DT
-><DT
->A.3.2. <A
-HREF="#faq-admin-livebackup"
->&#13;            Can users be on the system while a backup is in progress?
-          </A
-></DT
-><DT
->A.3.3. <A
-HREF="#faq-admin-cvsupdate"
->&#13;            How can I update the code and the database using CVS?
-          </A
-></DT
-><DT
->A.3.4. <A
-HREF="#faq-admin-enable-unconfirmed"
->&#13;            How do I make it so that bugs can have an UNCONFIRMED status?
-          </A
-></DT
-><DT
->A.3.5. <A
-HREF="#faq-admin-moving"
->&#13;            How do I move a Bugzilla installation from one machine to another?
-          </A
-></DT
-><DT
->A.3.6. <A
-HREF="#faq-admin-makeadmin"
->&#13;            How do I make a new Bugzilla administrator?
-            The previous administrator is gone...
-          </A
-></DT
-></DL
-></DD
-><DT
->4. <A
-HREF="#faq-security"
->Bugzilla Security</A
-></DT
-><DD
-><DL
-><DT
->A.4.1. <A
-HREF="#faq-security-mysql"
->&#13;            How do I completely disable MySQL security if it's giving
-            me problems? (I've followed the instructions in the installation
-            section of this guide...)
-          </A
-></DT
-><DT
->A.4.2. <A
-HREF="#faq-security-knownproblems"
->&#13;            Are there any security problems with Bugzilla?
-          </A
-></DT
-></DL
-></DD
-><DT
->5. <A
-HREF="#faq-email"
->Bugzilla Email</A
-></DT
-><DD
-><DL
-><DT
->A.5.1. <A
-HREF="#faq-email-nomail"
->&#13;            I have a user who doesn't want to receive any more email
-            from Bugzilla. How do I stop it entirely for this user?
-          </A
-></DT
-><DT
->A.5.2. <A
-HREF="#faq-email-testing"
->&#13;            I'm evaluating/testing Bugzilla, and don't want it to send email
-            to anyone but me. How do I do it?
-          </A
-></DT
-><DT
->A.5.3. <A
-HREF="#faq-email-whine"
->&#13;            I want whineatnews.pl to whine at something other than new and
-            reopened bugs. How do I do it?
-          </A
-></DT
-><DT
->A.5.4. <A
-HREF="#faq-email-in"
->&#13;            How do I set up the email interface to submit or change bugs via email?
-          </A
-></DT
-><DT
->A.5.5. <A
-HREF="#faq-email-sendmailnow"
->&#13;            Email takes FOREVER to reach me from Bugzilla -- it's
-            extremely slow. What gives?
-          </A
-></DT
-><DT
->A.5.6. <A
-HREF="#faq-email-nonreceived"
->&#13;             How come email from Bugzilla changes never reaches me?
-          </A
-></DT
-></DL
-></DD
-><DT
->6. <A
-HREF="#faq-db"
->Bugzilla Database</A
-></DT
-><DD
-><DL
-><DT
->A.6.1. <A
-HREF="#faq-db-corrupted"
->&#13;            I think my database might be corrupted, or contain
-            invalid entries. What do I do?
-          </A
-></DT
-><DT
->A.6.2. <A
-HREF="#faq-db-manualedit"
->&#13;            I want to manually edit some entries in my database. How?
-          </A
-></DT
-><DT
->A.6.3. <A
-HREF="#faq-db-permissions"
->&#13;            I think I've set up MySQL permissions correctly, but Bugzilla still
-            can't connect.
-          </A
-></DT
-><DT
->A.6.4. <A
-HREF="#faq-db-synchronize"
->&#13;            How do I synchronize bug information among multiple
-            different Bugzilla databases?
-          </A
-></DT
-></DL
-></DD
-><DT
->7. <A
-HREF="#faq-nt"
->Can Bugzilla run on a Windows server?</A
-></DT
-><DD
-><DL
-><DT
->A.7.1. <A
-HREF="#faq-nt-easiest"
->&#13;            What is the easiest way to run Bugzilla on Win32 (Win98+/NT/2K)?
-          </A
-></DT
-><DT
->A.7.2. <A
-HREF="#faq-nt-bundle"
->&#13;            Is there a "Bundle::Bugzilla" equivalent for Win32?
-          </A
-></DT
-><DT
->A.7.3. <A
-HREF="#faq-nt-mappings"
->&#13;            CGI's are failing with a <SPAN
-CLASS="QUOTE"
->"something.cgi is not a valid
-            Windows NT application"</SPAN
-> error. Why?
-          </A
-></DT
-><DT
->A.7.4. <A
-HREF="#faq-nt-dbi"
->&#13;            I'm having trouble with the perl modules for NT not being
-            able to talk to the database.
-          </A
-></DT
-></DL
-></DD
-><DT
->8. <A
-HREF="#faq-use"
->Bugzilla Usage</A
-></DT
-><DD
-><DL
-><DT
->A.8.1. <A
-HREF="#faq-use-changeaddress"
->&#13;            How do I change my user name (email address) in Bugzilla?
-          </A
-></DT
-><DT
->A.8.2. <A
-HREF="#faq-use-query"
->&#13;            The query page is very confusing.
-            Isn't there a simpler way to query?
-          </A
-></DT
-><DT
->A.8.3. <A
-HREF="#faq-use-accept"
->&#13;            I'm confused by the behavior of the <SPAN
-CLASS="QUOTE"
->"Accept"</SPAN
->
-            button in the Show Bug form. Why doesn't it assign the bug
-            to me when I accept it?
-          </A
-></DT
-><DT
->A.8.4. <A
-HREF="#faq-use-attachment"
->&#13;            I can't upload anything into the database via the
-            <SPAN
-CLASS="QUOTE"
->"Create Attachment"</SPAN
-> link. What am I doing wrong?
-          </A
-></DT
-><DT
->A.8.5. <A
-HREF="#faq-use-keyword"
->&#13;            How do I change a keyword in Bugzilla, once some bugs are using it?
-          </A
-></DT
-><DT
->A.8.6. <A
-HREF="#faq-use-close"
->&#13;            Why can't I close bugs from the <SPAN
-CLASS="QUOTE"
->"Change Several Bugs
-            at Once"</SPAN
-> page?
-          </A
-></DT
-></DL
-></DD
-><DT
->9. <A
-HREF="#faq-hacking"
->Bugzilla Hacking</A
-></DT
-><DD
-><DL
-><DT
->A.9.1. <A
-HREF="#faq-hacking-templatestyle"
->&#13;            What kind of style should I use for templatization?
-          </A
-></DT
-><DT
->A.9.2. <A
-HREF="#faq-hacking-bugzillabugs"
->&#13;            What bugs are in Bugzilla right now?
-          </A
-></DT
-><DT
->A.9.3. <A
-HREF="#faq-hacking-priority"
->&#13;            How can I change the default priority to a null value?
-            For instance, have the default priority be <SPAN
-CLASS="QUOTE"
->"---"</SPAN
->
-            instead of <SPAN
-CLASS="QUOTE"
->"P2"</SPAN
->?
-          </A
-></DT
-><DT
->A.9.4. <A
-HREF="#faq-hacking-patches"
->&#13;            What's the best way to submit patches?  What guidelines
-            should I follow?
-          </A
-></DT
-></DL
-></DD
-></DL
-><DIV
-CLASS="qandadiv"
-><H3
-><A
-NAME="faq-general"
-></A
->1. General Questions</H3
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-general-tryout"
-></A
-><B
->A.1.1. </B
->
-            Can I try out Bugzilla somewhere?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            If you want to take a test ride, there are test installations
-            at <A
-HREF="http://landfill.bugzilla.org/"
-TARGET="_top"
->http://landfill.bugzilla.org/</A
->,
-            ready to play with directly from your browser.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-general-license"
-></A
-><B
->A.1.2. </B
->
-            What license is Bugzilla distributed under?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            Bugzilla is covered by the Mozilla Public License.
-            See details at <A
-HREF="http://www.mozilla.org/MPL/"
-TARGET="_top"
->http://www.mozilla.org/MPL/</A
->.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-general-support"
-></A
-><B
->A.1.3. </B
->
-            How do I get commercial support for Bugzilla?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            <A
-HREF="http://www.bugzilla.org/support/consulting.html"
-TARGET="_top"
->http://www.bugzilla.org/support/consulting.html</A
->
-            is a list of companies and individuals who have asked us to
-            list them as consultants for Bugzilla.
-          </P
-><P
->&#13;            There are several experienced
-            Bugzilla hackers on the mailing list/newsgroup who are willing
-            to make themselves available for generous compensation.
-            Try sending a message to the mailing list asking for a volunteer.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-general-companies"
-></A
-><B
->A.1.4. </B
->
-            What major companies or projects are currently using Bugzilla
-            for bug-tracking?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            There are <EM
->dozens</EM
-> of major companies with public
-            Bugzilla sites to track bugs in their products. We have a fairly
-            complete list available on our website at
-            <A
-HREF="http://bugzilla.org/installation-list/"
-TARGET="_top"
->http://bugzilla.org/installation-list/</A
->. If you
-            have an installation of Bugzilla and would like to be added to the
-            list, whether it's a public install or not, simply e-mail
-            Gerv <CODE
-CLASS="email"
->&#60;<A
-HREF="mailto:gerv@mozilla.org"
->gerv@mozilla.org</A
->&#62;</CODE
->.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-general-maintainers"
-></A
-><B
->A.1.5. </B
->
-            Who maintains Bugzilla?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            A <A
-HREF="http://www.bugzilla.org/developers/profiles.html"
-TARGET="_top"
->core
-            team</A
->, led by Dave Miller (justdave@bugzilla.org).
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-general-compare"
-></A
-><B
->A.1.6. </B
->
-            How does Bugzilla stack up against other bug-tracking databases?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            We can't find any head-to-head comparisons of Bugzilla against
-            other defect-tracking software. If you know of one, please get
-            in touch. In the experience of Matthew Barnson (the original
-            author of this FAQ), though, Bugzilla offers superior
-            performance on commodity hardware, better price (free!), more
-            developer-friendly features (such as stored queries, email
-            integration, and platform independence), improved scalability,
-            greater flexibility, and superior ease-of-use when compared
-            to commercial bug-tracking software.
-          </P
-><P
->&#13;            If you happen to be a vendor for commercial bug-tracking
-            software, and would like to submit a list of advantages your
-            product has over Bugzilla, simply send it to 
-            <CODE
-CLASS="email"
->&#60;<A
-HREF="mailto:documentation@bugzilla.org"
->documentation@bugzilla.org</A
->&#62;</CODE
-> and we'd be happy to
-            include the comparison in our documentation.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-general-bzmissing"
-></A
-><B
->A.1.7. </B
->
-            Why doesn't Bugzilla offer this or that feature or compatibility
-            with this other tracking software?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            It may be that the support has not been built yet, or that you
-            have not yet found it. While Bugzilla makes strides in usability,
-            customizability, scalability, and user interface with each release,
-            that doesn't mean it can't still use improvement!
-          </P
-><P
->&#13;            The best way to make an enhancement request is to <A
-HREF="https://bugzilla.mozilla.org/enter_bug.cgi?product=Bugzilla"
-TARGET="_top"
->file
-            a bug at bugzilla.mozilla.org</A
-> and set the Severity
-            to 'enhancement'. Your 'request for enhancement' (RFE) will
-            start out in the UNCONFIRMED state, and will stay there until
-            someone with the ability to CONFIRM the bug reviews it.
-            If that person feels it to be a good request that fits in with
-            Bugzilla's overall direction, the status will be changed to
-            NEW; if not, they will probably explain why and set the bug
-            to RESOLVED/WONTFIX. If someone else has made the same (or
-            almost the same) request before, your request will be marked
-            RESOLVED/DUPLICATE, and a pointer to the previous RFE will be
-            added.
-          </P
-><P
->&#13;            Even if your RFE gets approved, that doesn't mean it's going
-            to make it right into the next release; there are a limited
-            number of developers, and a whole lot of RFEs... some of
-            which are <EM
->quite</EM
-> complex. If you're a
-            code-hacking sort of person, you can help the project along
-            by making a patch yourself that supports the functionality
-            you require. If you have never contributed anything to
-            Bugzilla before, please be sure to read the 
-            <A
-HREF="http://www.bugzilla.org/docs/developer.html"
-TARGET="_top"
->Developers' Guide</A
->
-            and
-            <A
-HREF="http://www.bugzilla.org/docs/contributor.html"
-TARGET="_top"
->Contributors' Guide</A
->
-            before going ahead.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-general-db"
-></A
-><B
->A.1.8. </B
->
-            What databases does Bugzilla run on?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            MySQL is the default database for Bugzilla. It was originally chosen 
-            because it is free, easy to install, and was available for the hardware 
-            Netscape intended to run it on.
-          </P
-><P
->&#13;            As of Bugzilla 2.22, complete support for PostgreSQL 
-            is included. With this release using PostgreSQL with Bugzilla 
-            should be as stable as using MySQL. If you experience any problems
-            with PostgreSQL compatibility, they will be taken as
-            seriously as if you were running MySQL.
-          </P
-><P
->&#13;            There are plans to include an Oracle driver for Bugzilla 3.1.2. 
-            Track progress at
-            <A
-HREF="https://bugzilla.mozilla.org/show_bug.cgi?id=189947"
-TARGET="_top"
->&#13;            Bug 189947</A
->.
-          </P
-><P
->&#13;            Sybase support was worked on for a time. However, several 
-            complicating factors have prevented Sybase support from 
-            being realized. There are currently no plans to revive it.
-          </P
-><P
->&#13;            <A
-HREF="https://bugzilla.mozilla.org/show_bug.cgi?id=237862"
-TARGET="_top"
->&#13;            Bug 237862</A
-> is a good bug to read through if you'd
-            like to see what progress is being made on general database
-            compatibility.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-general-perlpath"
-></A
-><B
->A.1.9. </B
->
-            My perl is located at <TT
-CLASS="filename"
->/usr/local/bin/perl</TT
->
-            and not <TT
-CLASS="filename"
->/usr/bin/perl</TT
->. Is there an easy
-            to change that in all the files that have this hard-coded?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            The easiest way to get around this is to create a link from
-            one to the other:
-            <B
-CLASS="command"
->ln -s /usr/local/bin/perl /usr/bin/perl</B
->.
-            If that's not an option for you, the following bit of perl
-            magic will change all the shebang lines (that is to say,
-            the line at the top of each file that starts with '#!' 
-            and contains the path) to something else:
-          </P
-><TABLE
-BORDER="0"
-BGCOLOR="#E0E0E0"
-WIDTH="100%"
-><TR
-><TD
-><FONT
-COLOR="#000000"
-><PRE
-CLASS="programlisting"
->&#13;perl -pi -e 's@#\!/usr/bin/perl@#\!/usr/local/bin/perl@' *cgi *pl
-          </PRE
-></FONT
-></TD
-></TR
-></TABLE
-><P
->&#13;            Sadly, this command-line won't work on Windows unless you
-            also have Cygwin. However, MySQL comes with a binary called
-            <B
-CLASS="command"
->replace</B
-> which can do the job:
-          </P
-><TABLE
-BORDER="0"
-BGCOLOR="#E0E0E0"
-WIDTH="100%"
-><TR
-><TD
-><FONT
-COLOR="#000000"
-><PRE
-CLASS="programlisting"
->&#13;C:\mysql\bin\replace "#!/usr/bin/perl" "#!C:\perl\bin\perl" -- *.cgi *.pl
-          </PRE
-></FONT
-></TD
-></TR
-></TABLE
-><DIV
-CLASS="note"
-><P
-></P
-><TABLE
-CLASS="note"
-WIDTH="100%"
-BORDER="0"
-><TR
-><TD
-WIDTH="25"
-ALIGN="CENTER"
-VALIGN="TOP"
-><IMG
-SRC="../images/note.gif"
-HSPACE="5"
-ALT="Note"></TD
-><TD
-ALIGN="LEFT"
-VALIGN="TOP"
-><P
->&#13;              If your perl path is something else again, just follow the
-              above examples and replace
-              <TT
-CLASS="filename"
->/usr/local/bin/perl</TT
-> with your own perl path.
-            </P
-></TD
-></TR
-></TABLE
-></DIV
-><P
->&#13;            Once you've modified all your files, you'll also need to modify the
-            <TT
-CLASS="filename"
->t/002goodperl.t</TT
-> test, as it tests that all
-            shebang lines are equal to <TT
-CLASS="filename"
->/usr/bin/perl</TT
->.
-            (For more information on the test suite, please check out the 
-            appropriate section in the <A
-HREF="http://www.bugzilla.org/docs/developer.html#testsuite"
-TARGET="_top"
->Developers'
-            Guide</A
->.) Having done this, run the test itself:
-            <TABLE
-BORDER="0"
-BGCOLOR="#E0E0E0"
-WIDTH="100%"
-><TR
-><TD
-><FONT
-COLOR="#000000"
-><PRE
-CLASS="programlisting"
->&#13;            perl runtests.pl 2 --verbose
-            </PRE
-></FONT
-></TD
-></TR
-></TABLE
->
-            to ensure that you've modified all the relevant files.
-          </P
-><P
->&#13;            If using Apache on Windows, you can avoid the whole problem
-            by setting the <A
-HREF="http://httpd.apache.org/docs-2.0/mod/core.html#scriptinterpretersource"
-TARGET="_top"
->&#13;            ScriptInterpreterSource</A
-> directive to 'Registry'.
-            (If using Apache 2 or higher, set it to 'Registry-Strict'.)
-            ScriptInterperterSource requires a registry entry
-            <SPAN
-CLASS="QUOTE"
->"HKEY_CLASSES_ROOT\.cgi\Shell\ExecCGI\Command"</SPAN
-> to
-            associate .cgi files with your perl executable. If one does
-            not already exist, create it with a default value of
-           <SPAN
-CLASS="QUOTE"
->"&#60;full path to perl&#62; -T"</SPAN
->, e.g.
-           <SPAN
-CLASS="QUOTE"
->"C:\Perl\bin\perl.exe -T"</SPAN
->.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-general-cookie"
-></A
-><B
->A.1.10. </B
->
-            Is there an easy way to change the Bugzilla cookie name?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            At present, no.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-general-selinux"
-></A
-><B
->A.1.11. </B
->
-            How can Bugzilla be made to work under SELinux?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            As a web application, Bugzilla simply requires its root
-            directory to have the httpd context applied for it to work
-            properly under SELinux. This should happen automatically
-            on distributions that use SELinux and that package Bugzilla
-            (if it is installed with the native package management tools).
-            Information on how to view and change SELinux file contexts
-            can be found at the 
-            <A
-HREF="http://docs.fedoraproject.org/selinux-faq-fc5/"
-TARGET="_top"
->&#13;            SELinux FAQ</A
->.
-
-          </P
-></DIV
-></DIV
-></DIV
-><DIV
-CLASS="qandadiv"
-><H3
-><A
-NAME="faq-phb"
-></A
->2. Managerial Questions</H3
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-phb-client"
-></A
-><B
->A.2.1. </B
->
-            Is Bugzilla web-based, or do you have to have specific software or
-            a specific operating system on your machine?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            It is web and e-mail based.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-phb-priorities"
-></A
-><B
->A.2.2. </B
->
-            Does Bugzilla allow us to define our own priorities and levels?
-            Do we have complete freedom to change the labels of fields and
-            format of them, and the choice of acceptable values?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            Yes. However, modifying some fields, notably those related to bug
-            progression states, also require adjusting the program logic to
-            compensate for the change.
-          </P
-><P
->&#13;            As of Bugzilla 3.0 custom fields can be created via the
-            "Custom Fields" admin page.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-phb-reporting"
-></A
-><B
->A.2.3. </B
->
-            Does Bugzilla provide any reporting features, metrics, graphs,
-            etc? You know, the type of stuff that management likes to see. :)
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            Yes. Look at <A
-HREF="https://bugzilla.mozilla.org/report.cgi"
-TARGET="_top"
->https://bugzilla.mozilla.org/report.cgi</A
->
-            for samples of what Bugzilla can do in reporting and graphing.
-            Fuller documentation is provided in <A
-HREF="#reporting"
->Section 5.11</A
->.
-          </P
-><P
->&#13;            If you can not get the reports you want from the included reporting
-            scripts, it is possible to hook up a professional reporting package
-            such as Crystal Reports using ODBC. If you choose to do this,
-            beware that giving direct access to the database does contain some
-            security implications. Even if you give read-only access to the
-            bugs database it will bypass the secure bugs features of Bugzilla.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-phb-email"
-></A
-><B
->A.2.4. </B
->
-            Is there email notification? If so, what do you see
-            when you get an email?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            Email notification is user-configurable. By default, the bug id
-            and summary of the bug report accompany each email notification,
-            along with a list of the changes made.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-phb-emailapp"
-></A
-><B
->A.2.5. </B
->
-            Do users have to have any particular type of email application?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            Bugzilla email is sent in plain text, the most compatible
-            mail format on the planet.
-            <DIV
-CLASS="note"
-><P
-></P
-><TABLE
-CLASS="note"
-WIDTH="100%"
-BORDER="0"
-><TR
-><TD
-WIDTH="25"
-ALIGN="CENTER"
-VALIGN="TOP"
-><IMG
-SRC="../images/note.gif"
-HSPACE="5"
-ALT="Note"></TD
-><TD
-ALIGN="LEFT"
-VALIGN="TOP"
-><P
->&#13;                If you decide to use the bugzilla_email integration features
-                to allow Bugzilla to record responses to mail with the
-                associated bug, you may need to caution your users to set
-                their mailer to <SPAN
-CLASS="QUOTE"
->"respond to messages in the format in
-                which they were sent"</SPAN
->. For security reasons Bugzilla
-                ignores HTML tags in comments, and if a user sends HTML-based
-                email into Bugzilla the resulting comment looks downright awful.
-              </P
-></TD
-></TR
-></TABLE
-></DIV
->
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-phb-data"
-></A
-><B
->A.2.6. </B
->
-            Does Bugzilla allow data to be imported and exported? If I had
-            outsiders write up a bug report using a MS Word bug template,
-            could that template be imported into <SPAN
-CLASS="QUOTE"
->"matching"</SPAN
->
-            fields? If I wanted to take the results of a query and export
-            that data to MS Excel, could I do that?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            Bugzilla can output buglists as HTML (the default), CSV or RDF.
-            The link for CSV can be found at the bottom of the buglist in HTML
-            format. This CSV format can easily be imported into MS Excel or
-            other spreadsheet applications.
-          </P
-><P
->&#13;            To use the RDF format of the buglist it is necessary to append a
-            <SAMP
-CLASS="computeroutput"
->&#38;ctype=rdf</SAMP
-> to the URL. RDF
-            is meant to be machine readable and thus it is assumed that the
-            URL would be generated programmatically so there is no user visible
-            link to this format.
-          </P
-><P
->&#13;            Currently the only script included with Bugzilla that can import
-            data is <TT
-CLASS="filename"
->importxml.pl</TT
-> which is intended to be
-            used for importing the data generated by the XML ctype of
-            <TT
-CLASS="filename"
->show_bug.cgi</TT
-> in association with bug moving.
-            Any other use is left as an exercise for the user.
-          </P
-><P
->&#13;            There are also scripts included in the <TT
-CLASS="filename"
->contrib/</TT
->
-            directory for using e-mail to import information into Bugzilla,
-            but these scripts are not currently supported and included for
-            educational purposes.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-phb-l10n"
-></A
-><B
->A.2.7. </B
->
-            Has anyone converted Bugzilla to another language to be
-            used in other countries? Is it localizable?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            Yes. For more information including available translated templates,
-            see <A
-HREF="http://www.bugzilla.org/download.html#localizations"
-TARGET="_top"
->http://www.bugzilla.org/download.html#localizations</A
->.
-            Some admin interfaces have been templatized (for easy localization)
-            but many of them are still available in English only. Also, there
-            may be issues with the charset not being declared. See <A
-HREF="https://bugzilla.mozilla.org/show_bug.cgi?id=126266"
-TARGET="_top"
->bug 126226</A
->
-            for more information.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-phb-reports"
-></A
-><B
->A.2.8. </B
->
-            Can a user create and save reports?
-            Can they do this in Word format? Excel format?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            Yes. No. Yes (using the CSV format).
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-phb-backup"
-></A
-><B
->A.2.9. </B
->
-            Are there any backup features provided?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            You should use the backup options supplied by your database platform.  
-            Vendor documentation for backing up a MySQL database can be found at 
-            <A
-HREF="http://www.mysql.com/doc/B/a/Backup.html"
-TARGET="_top"
->http://www.mysql.com/doc/B/a/Backup.html</A
->. 
-            PostgreSQL backup documentation can be found at
-            <A
-HREF="http://www.postgresql.org/docs/8.0/static/backup.html"
-TARGET="_top"
->http://www.postgresql.org/docs/8.0/static/backup.html</A
->.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-phb-maintenance"
-></A
-><B
->A.2.10. </B
->
-            What type of human resources are needed to be on staff to install
-            and maintain Bugzilla? Specifically, what type of skills does the
-            person need to have? I need to find out what types of individuals
-            would we need to hire and how much would that cost if we were to
-            go with Bugzilla vs. buying an <SPAN
-CLASS="QUOTE"
->"out-of-the-box"</SPAN
->
-            solution.
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            If Bugzilla is set up correctly from the start, continuing
-            maintenance needs are minimal and can be done easily using
-            the web interface.
-          </P
-><P
->&#13;            Commercial Bug-tracking software typically costs somewhere
-            upwards of $20,000 or more for 5-10 floating licenses. Bugzilla
-            consultation is available from skilled members of the newsgroup.
-            Simple questions are answered there and then.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-phb-installtime"
-></A
-><B
->A.2.11. </B
->
-            What time frame are we looking at if we decide to hire people
-            to install and maintain the Bugzilla? Is this something that
-            takes hours or days to install and a couple of hours per week
-            to maintain and customize, or is this a multi-week install process,
-            plus a full time job for 1 person, 2 people, etc?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            It all depends on your level of commitment. Someone with much
-            Bugzilla experience can get you up and running in less than a day,
-            and your Bugzilla install can run untended for years. If your
-            Bugzilla strategy is critical to your business workflow, hire
-            somebody to who has reasonable Perl skills, and a familiarity
-            with the operating system on which Bugzilla will be running,
-            and have them handle your process management, bug-tracking
-            maintenance, and local customization.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-phb-cost"
-></A
-><B
->A.2.12. </B
->
-            Is there any licensing fee or other fees for using Bugzilla? Any
-            out-of-pocket cost other than the bodies needed as identified above?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            No. Bugzilla, Perl, the Template Toolkit, and all other support
-            software needed to make Bugzilla work can be downloaded for free.
-            MySQL and PostgreSQL -- the databases supported by Bugzilla -- 
-            are also open-source. MySQL asks that if you find their product 
-            valuable, you purchase a support contract from them that suits your needs.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-phb-renameBugs"
-></A
-><B
->A.2.13. </B
->
-            We don't like referring to problems as 'bugs'. Can we change that?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            Yes! As of Bugzilla 2.18, it is a simple matter to change the
-            word 'bug' into whatever word/phrase is used by your organization.
-            See the documentation on Customization for more details,
-            specifically <A
-HREF="#template-specific"
->Section 6.2.5</A
->.
-          </P
-></DIV
-></DIV
-></DIV
-><DIV
-CLASS="qandadiv"
-><H3
-><A
-NAME="faq-admin"
-></A
->3. Administrative Questions</H3
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-admin-midair"
-></A
-><B
->A.3.1. </B
->
-            Does Bugzilla provide record locking when there is simultaneous
-            access to the same bug? Does the second person get a notice
-            that the bug is in use or how are they notified?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            Bugzilla does not lock records. It provides mid-air collision
-            detection -- which means that it warns a user when a commit is
-            about to conflict with commits recently made by another user,
-            and offers the second user a choice of options to deal with
-            the conflict.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-admin-livebackup"
-></A
-><B
->A.3.2. </B
->
-            Can users be on the system while a backup is in progress?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            Refer to your database platform documentation for details on how to do hot
-            backups.  
-            Vendor documentation for backing up a MySQL database can be found at 
-            <A
-HREF="http://www.mysql.com/doc/B/a/Backup.html"
-TARGET="_top"
->http://www.mysql.com/doc/B/a/Backup.html</A
->. 
-            PostgreSQL backup documentation can be found at
-            <A
-HREF="http://www.postgresql.org/docs/8.0/static/backup.html"
-TARGET="_top"
->http://www.postgresql.org/docs/8.0/static/backup.html</A
->.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-admin-cvsupdate"
-></A
-><B
->A.3.3. </B
->
-            How can I update the code and the database using CVS?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            <P
-></P
-><OL
-TYPE="1"
-><LI
-><P
->&#13;                  Make a backup of both your Bugzilla directory and the
-                  database. For the Bugzilla directory this is as easy as
-                  doing <B
-CLASS="command"
->cp -rp bugzilla bugzilla.bak</B
->.
-                  For the database, there's a number of options - see the
-                  MySQL docs and pick the one that fits you best (the easiest
-                  is to just make a physical copy of the database on the disk,
-                  but you have to have the database server shut down to do
-                  that without risking dataloss).
-                </P
-></LI
-><LI
-><P
->&#13;                  Make the Bugzilla directory your current directory.
-                </P
-></LI
-><LI
-><P
->&#13;                  Use <B
-CLASS="command"
->cvs -q update -AdP</B
-> if you want to
-                  update to the tip or
-                  <B
-CLASS="command"
->cvs -q update -dP -rTAGNAME</B
->
-                  if you want a specific version (in that case you'll have to
-                  replace TAGNAME with a CVS tag name such as BUGZILLA-2_16_5).
-                </P
-><P
->&#13;                  If you've made no local changes, this should be very clean.
-                  If you have made local changes, then watch the cvs output
-                  for C results. If you get any lines that start with a C
-                  it means there  were conflicts between your local changes
-                  and what's in CVS. You'll need to fix those manually before
-                  continuing.
-                </P
-></LI
-><LI
-><P
->&#13;                  After resolving any conflicts that the cvs update operation
-                  generated, running <B
-CLASS="command"
->./checksetup.pl</B
-> will
-                  take care of updating the database for you as well as any
-                  other changes required for the new version to operate.
-                </P
-><DIV
-CLASS="warning"
-><P
-></P
-><TABLE
-CLASS="warning"
-WIDTH="100%"
-BORDER="0"
-><TR
-><TD
-WIDTH="25"
-ALIGN="CENTER"
-VALIGN="TOP"
-><IMG
-SRC="../images/warning.gif"
-HSPACE="5"
-ALT="Warning"></TD
-><TD
-ALIGN="LEFT"
-VALIGN="TOP"
-><P
->&#13;                    Once you run checksetup.pl, the only way to go back is
-                    to restore the database backups. You can't
-                    <SPAN
-CLASS="QUOTE"
->"downgrade"</SPAN
-> the system cleanly under most
-                    circumstances.
-                  </P
-></TD
-></TR
-></TABLE
-></DIV
-></LI
-></OL
->
-          </P
-><P
->&#13;            See also the instructions in <A
-HREF="#upgrade-cvs"
->Section 3.14.3.1</A
->.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-admin-enable-unconfirmed"
-></A
-><B
->A.3.4. </B
->
-            How do I make it so that bugs can have an UNCONFIRMED status?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            To use the UNCONFIRMED status, you must have the 'usevotes'
-            parameter set to <SPAN
-CLASS="QUOTE"
->"On"</SPAN
->. You must then visit the
-            <TT
-CLASS="filename"
->editproducts.cgi</TT
-> page and set the <SPAN
-CLASS="QUOTE"
->"
-            Number of votes a bug in this product needs to automatically
-            get out of the UNCONFIRMED state"</SPAN
-> to be a non-zero number.
-            (You will have to do this for each product that wants to use
-            the UNCONFIRMED state.) If you do not actually want users to be
-            able to vote for bugs entered against this product, leave the
-            <SPAN
-CLASS="QUOTE"
->"Maximum votes per person"</SPAN
-> value at '0'.
-          </P
-><P
->&#13;            There is work being done to decouple the UNCONFIRMED state from
-            the 'usevotes' parameter for future versions of Bugzilla.
-            Follow the discussion and progress at <A
-HREF="https://bugzilla.mozilla.org/show_bug.cgi?id=162060"
-TARGET="_top"
->bug
-            162060</A
->.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-admin-moving"
-></A
-><B
->A.3.5. </B
->
-            How do I move a Bugzilla installation from one machine to another?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            Reference your database vendor's documentation for information on 
-            backing up and restoring your Bugzilla database on to a different server.
-            Vendor documentation for backing up a MySQL database can be found at 
-            <A
-HREF="http://dev.mysql.com/doc/mysql/en/mysqldump.html"
-TARGET="_top"
->http://dev.mysql.com/doc/mysql/en/mysqldump.html</A
->.
-            PostgreSQL backup documentation can be found at
-            <A
-HREF="http://www.postgresql.org/docs/8.0/static/backup.html"
-TARGET="_top"
->http://www.postgresql.org/docs/8.0/static/backup.html</A
->.
-          </P
-><P
->&#13;            On your new machine, follow the instructions found in <A
-HREF="#installing-bugzilla"
->Chapter 2</A
-> as far as setting up the physical
-            environment of the new machine with perl, webserver, modules, etc. 
-            Having done that, you can either: copy your entire Bugzilla
-            directory from the old machine to a new one (if you want to keep
-            your existing code and modifications), or download a newer version
-            (if you are planning to upgrade at the same time). Even if you are
-            upgrading to clean code, you will still want to bring over the 
-            <TT
-CLASS="filename"
->localconfig</TT
-> file, and the 
-            <TT
-CLASS="filename"
->data</TT
-> directory from the
-            old machine, as they contain configuration information that you 
-            probably won't want to re-create.
-          </P
-><DIV
-CLASS="note"
-><P
-></P
-><TABLE
-CLASS="note"
-WIDTH="100%"
-BORDER="0"
-><TR
-><TD
-WIDTH="25"
-ALIGN="CENTER"
-VALIGN="TOP"
-><IMG
-SRC="../images/note.gif"
-HSPACE="5"
-ALT="Note"></TD
-><TD
-ALIGN="LEFT"
-VALIGN="TOP"
-><P
->&#13;              If the hostname or port number of your database server changed
-              as part of the move, you'll need to update the appropriate
-              variables in localconfig before taking the next step.
-            </P
-></TD
-></TR
-></TABLE
-></DIV
-><P
->&#13;            Once you have your code in place, and your database has
-            been restored from the backup you made in step 1, run
-            <B
-CLASS="command"
->checksetup.pl</B
->. This will upgrade your
-            database (if necessary), rebuild your templates, etc.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-admin-makeadmin"
-></A
-><B
->A.3.6. </B
->
-            How do I make a new Bugzilla administrator?
-            The previous administrator is gone...
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            Run <B
-CLASS="command"
->checksetup.pl</B
-> with
-            <VAR
-CLASS="option"
->--make-admin</VAR
-> option.
-            Its usage is <VAR
-CLASS="option"
->--make-admin=user@example.org</VAR
->.
-            The user account must be exist in the Bugzilla database.
-          </P
-></DIV
-></DIV
-></DIV
-><DIV
-CLASS="qandadiv"
-><H3
-><A
-NAME="faq-security"
-></A
->4. Bugzilla Security</H3
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-security-mysql"
-></A
-><B
->A.4.1. </B
->
-            How do I completely disable MySQL security if it's giving
-            me problems? (I've followed the instructions in the installation
-            section of this guide...)
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            You can run MySQL like this: <B
-CLASS="command"
->mysqld --skip-grant-tables</B
->.
-            However, doing so disables all MySQL security. This is a bad idea.
-            Please consult <A
-HREF="#security-mysql"
->Section 4.2</A
-> of this guide
-            and the MySQL documentation for better solutions.
-            </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-security-knownproblems"
-></A
-><B
->A.4.2. </B
->
-            Are there any security problems with Bugzilla?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            The Bugzilla code has undergone a reasonably complete security
-            audit, and user-facing CGIs run under Perl's taint mode. However, 
-            it is recommended that you closely examine permissions on your
-            Bugzilla installation, and follow the recommended security
-            guidelines found in The Bugzilla Guide.
-          </P
-></DIV
-></DIV
-></DIV
-><DIV
-CLASS="qandadiv"
-><H3
-><A
-NAME="faq-email"
-></A
->5. Bugzilla Email</H3
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-email-nomail"
-></A
-><B
->A.5.1. </B
->
-            I have a user who doesn't want to receive any more email
-            from Bugzilla. How do I stop it entirely for this user?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            The user can stop Bugzilla from sending any mail by unchecking
-            all boxes on the 'Edit prefs' -&#62; 'Email settings' page.
-            (As of 2.18,this is made easier by the addition of a 'Disable
-            All Mail' button.) Alternately, you can add their email address
-            to the <TT
-CLASS="filename"
->data/nomail</TT
-> file (one email address
-            per line). This will override their personal preferences, and
-            they will never be sent mail again.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-email-testing"
-></A
-><B
->A.5.2. </B
->
-            I'm evaluating/testing Bugzilla, and don't want it to send email
-            to anyone but me. How do I do it?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            To disable email, set the
-            <VAR
-CLASS="option"
->mail_delivery_method</VAR
-> parameter to
-            <VAR
-CLASS="literal"
->none</VAR
-> (2.20 and later), or
-            <TABLE
-BORDER="0"
-BGCOLOR="#E0E0E0"
-WIDTH="100%"
-><TR
-><TD
-><FONT
-COLOR="#000000"
-><PRE
-CLASS="programlisting"
->$enableSendMail</PRE
-></FONT
-></TD
-></TR
-></TABLE
-> parameter to '0'
-            in either <TT
-CLASS="filename"
->BugMail.pm</TT
-> (2.18 and later) or 
-            <TT
-CLASS="filename"
->processmail</TT
-> (up to 2.16.x).
-          </P
-><DIV
-CLASS="note"
-><P
-></P
-><TABLE
-CLASS="note"
-WIDTH="100%"
-BORDER="0"
-><TR
-><TD
-WIDTH="25"
-ALIGN="CENTER"
-VALIGN="TOP"
-><IMG
-SRC="../images/note.gif"
-HSPACE="5"
-ALT="Note"></TD
-><TD
-ALIGN="LEFT"
-VALIGN="TOP"
-><P
->&#13;              Up to 2.16.x, changing
-              <TABLE
-BORDER="0"
-BGCOLOR="#E0E0E0"
-WIDTH="100%"
-><TR
-><TD
-><FONT
-COLOR="#000000"
-><PRE
-CLASS="programlisting"
->$enableSendMail</PRE
-></FONT
-></TD
-></TR
-></TABLE
->
-              will only affect bugmail; email related to password changes,
-              email address changes, bug imports, flag changes, etc. will
-              still be sent out. As of the final release of 2.18, however,
-              the above step will disable <EM
->all</EM
-> mail
-              sent from Bugzilla for any purpose.
-            </P
-></TD
-></TR
-></TABLE
-></DIV
-><P
->&#13;            To have bugmail (and only bugmail) redirected to you instead of
-            its intended recipients, leave
-            <TABLE
-BORDER="0"
-BGCOLOR="#E0E0E0"
-WIDTH="100%"
-><TR
-><TD
-><FONT
-COLOR="#000000"
-><PRE
-CLASS="programlisting"
->$enableSendMail</PRE
-></FONT
-></TD
-></TR
-></TABLE
-> alone;
-            instead, edit the <SPAN
-CLASS="QUOTE"
->"newchangedmail"</SPAN
-> parameter
-            as follows:
-          </P
-><P
-></P
-><UL
-><LI
-><P
->&#13;                Replace <SPAN
-CLASS="QUOTE"
->"To:"</SPAN
-> with <SPAN
-CLASS="QUOTE"
->"X-Real-To:"</SPAN
->
-              </P
-></LI
-><LI
-><P
->&#13;                Replace <SPAN
-CLASS="QUOTE"
->"Cc:"</SPAN
-> with <SPAN
-CLASS="QUOTE"
->"X-Real-CC:"</SPAN
->
-              </P
-></LI
-><LI
-><P
->&#13;                Add a <SPAN
-CLASS="QUOTE"
->"To: %lt;your_email_address&#62;"</SPAN
->
-              </P
-></LI
-></UL
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-email-whine"
-></A
-><B
->A.5.3. </B
->
-            I want whineatnews.pl to whine at something other than new and
-            reopened bugs. How do I do it?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            For older versions of Bugzilla, you may be able to apply 
-            Klaas Freitag's patch for <SPAN
-CLASS="QUOTE"
->"whineatassigned"</SPAN
->,
-            which can be found in
-            <A
-HREF="https://bugzilla.mozilla.org/show_bug.cgi?id=6679"
-TARGET="_top"
->bug
-            6679</A
->. Note that this patch was made in 2000, so it may take
-            some work to apply cleanly to any releases of Bugzilla newer than
-            that, but you can use it as a starting point.
-          </P
-><P
->&#13;            An updated (and much-expanded) version of this functionality is
-            due to be released as part of Bugzilla 2.20; see 
-            <A
-HREF="https://bugzilla.mozilla.org/show_bug.cgi?id=185090"
-TARGET="_top"
->bug
-            185090</A
-> for the discussion, and for more up-to-date patches
-            if you just can't wait.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-email-in"
-></A
-><B
->A.5.4. </B
->
-            How do I set up the email interface to submit or change bugs via email?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            Bugzilla 3.0 and later offers the ability submit or change
-            bugs via email, using the <TT
-CLASS="filename"
->email_in.pl</TT
->
-            script within the root directory of the Bugzilla installation.
-            More information on the script can be found in
-            <A
-HREF="api/email_in.html"
-TARGET="_top"
->docs/html/api/email_in.html</A
->.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-email-sendmailnow"
-></A
-><B
->A.5.5. </B
->
-            Email takes FOREVER to reach me from Bugzilla -- it's
-            extremely slow. What gives?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            If you are using <SPAN
-CLASS="application"
->sendmail</SPAN
->, try
-            enabling <VAR
-CLASS="option"
->sendmailnow</VAR
-> in
-            <TT
-CLASS="filename"
->editparams.cgi</TT
->. For earlier versions of
-            <SPAN
-CLASS="application"
->sendmail</SPAN
->, one could achieve
-            significant performance improvement in the UI (at the cost of
-            delaying the sending of mail) by setting this parameter to
-            <VAR
-CLASS="literal"
->off</VAR
->. Sites with
-            <SPAN
-CLASS="application"
->sendmail</SPAN
-> version 8.12 (or higher)
-            should leave this <VAR
-CLASS="literal"
->on</VAR
->, as they will not see
-            any performance benefit.
-          </P
-><P
->&#13;            If you are using an alternate
-            <A
-HREF="#gloss-mta"
-><I
-CLASS="glossterm"
->MTA</I
-></A
->, make sure the
-            options given in <TT
-CLASS="filename"
->Bugzilla/BugMail.pm</TT
->
-            and any other place where <SPAN
-CLASS="application"
->sendmail</SPAN
->
-            is called are correct for your MTA.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-email-nonreceived"
-></A
-><B
->A.5.6. </B
->
-             How come email from Bugzilla changes never reaches me?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            Double-check that you have not turned off email in your user
-            preferences. Confirm that Bugzilla is able to send email by
-            visiting the <SPAN
-CLASS="QUOTE"
->"Log In"</SPAN
-> link of your Bugzilla
-            installation and clicking the <SPAN
-CLASS="QUOTE"
->"Submit Request"</SPAN
->
-            button after entering your email address.
-          </P
-><P
->&#13;            If you never receive mail from Bugzilla, chances are you do
-            not have sendmail in "/usr/lib/sendmail". Ensure sendmail
-            lives in, or is symlinked to, "/usr/lib/sendmail".
-          </P
-><P
->&#13;            If you are using an MTA other than
-            <SPAN
-CLASS="application"
->sendmail</SPAN
-> the
-            <VAR
-CLASS="option"
->sendmailnow</VAR
-> param must be set to
-            <VAR
-CLASS="literal"
->on</VAR
-> or no mail will be sent.
-          </P
-></DIV
-></DIV
-></DIV
-><DIV
-CLASS="qandadiv"
-><H3
-><A
-NAME="faq-db"
-></A
->6. Bugzilla Database</H3
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-db-corrupted"
-></A
-><B
->A.6.1. </B
->
-            I think my database might be corrupted, or contain
-            invalid entries. What do I do?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            Run the <SPAN
-CLASS="QUOTE"
->"sanity check"</SPAN
-> utility
-            (<TT
-CLASS="filename"
->sanitycheck.cgi</TT
->) from your web browser
-            to see! If it finishes without errors, you're
-            <EM
->probably</EM
-> OK. If it doesn't come back
-            OK (i.e. any red letters), there are certain things
-            Bugzilla can recover from and certain things it can't. If
-            it can't auto-recover, I hope you're familiar with
-            mysqladmin commands or have installed another way to
-            manage your database. Sanity Check, although it is a good
-            basic check on your database integrity, by no means is a
-            substitute for competent database administration and
-            avoiding deletion of data. It is not exhaustive, and was
-            created to do a basic check for the most common problems
-            in Bugzilla databases.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-db-manualedit"
-></A
-><B
->A.6.2. </B
->
-            I want to manually edit some entries in my database. How?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            There is no facility in Bugzilla itself to do this. It's also
-            generally not a smart thing to do if you don't know exactly what
-            you're doing. If you understand SQL, though, you can use the
-            <B
-CLASS="command"
->mysql</B
-> or <B
-CLASS="command"
->psql</B
-> command line 
-            utilities to manually insert, delete and modify table information. 
-            There are also more intuitive GUI clients available for both MySQL 
-            and PostgreSQL. For MySQL, we recommend
-            <A
-HREF="http://www.phpmyadmin.net/"
-TARGET="_top"
->phpMyAdmin</A
->.
-          </P
-><P
->&#13;            Remember, backups are your friend. Everyone makes mistakes, and
-            it's nice to have a safety net in case you mess something up.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-db-permissions"
-></A
-><B
->A.6.3. </B
->
-            I think I've set up MySQL permissions correctly, but Bugzilla still
-            can't connect.
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            Try running MySQL from its binary:
-            <B
-CLASS="command"
->mysqld --skip-grant-tables</B
->.
-            This will allow you to completely rule out grant tables as the
-            cause of your frustration. If this Bugzilla is able to connect
-            at this point then you need to check that you have granted proper
-            permission to the user password combo defined in
-            <TT
-CLASS="filename"
->localconfig</TT
->.
-          </P
-><DIV
-CLASS="warning"
-><P
-></P
-><TABLE
-CLASS="warning"
-WIDTH="100%"
-BORDER="0"
-><TR
-><TD
-WIDTH="25"
-ALIGN="CENTER"
-VALIGN="TOP"
-><IMG
-SRC="../images/warning.gif"
-HSPACE="5"
-ALT="Warning"></TD
-><TD
-ALIGN="LEFT"
-VALIGN="TOP"
-><P
->&#13;              Running MySQL with this command line option is very insecure and
-              should only be done when not connected to the external network
-              as a troubleshooting step.  Please do not run your production
-              database in this mode.
-            </P
-></TD
-></TR
-></TABLE
-></DIV
-><P
->&#13;            You may also be suffering from a client version mismatch:
-          </P
-><P
->&#13;            MySQL 4.1 and up uses an authentication protocol based on
-            a password hashing algorithm that is incompatible with that
-            used by older clients. If you upgrade the server to 4.1,
-            attempts to connect to it with an older client may fail
-            with the following message:
-          </P
-><P
->&#13;            <TABLE
-BORDER="0"
-BGCOLOR="#E0E0E0"
-WIDTH="100%"
-><TR
-><TD
-><FONT
-COLOR="#000000"
-><PRE
-CLASS="screen"
-><SAMP
-CLASS="prompt"
->shell&#62;</SAMP
-> mysql
-            Client does not support authentication protocol requested
-            by server; consider upgrading MySQL client
-            </PRE
-></FONT
-></TD
-></TR
-></TABLE
->
-          </P
-><P
->&#13;            To solve this problem, you should use one of the following
-            approaches:
-          </P
-><P
->&#13;            <P
-></P
-><UL
-><LI
-><P
->&#13;                  Upgrade all client programs to use a 4.1.1 or newer
-                  client library.
-                </P
-></LI
-><LI
-><P
->&#13;                  When connecting to the server with a pre-4.1 client
-                  program, use an account that still has a
-                  pre-4.1-style password.
-                </P
-></LI
-><LI
-><P
->&#13;                  Reset the password to pre-4.1 style for each user
-                  that needs to use a pre-4.1 client program.
-                  This can be done using the SET PASSWORD statement
-                  and the OLD_PASSWORD() function:
-                  <TABLE
-BORDER="0"
-BGCOLOR="#E0E0E0"
-WIDTH="100%"
-><TR
-><TD
-><FONT
-COLOR="#000000"
-><PRE
-CLASS="screen"
->&#13;                    <SAMP
-CLASS="prompt"
->mysql&#62;</SAMP
-> SET PASSWORD FOR
-                    <SAMP
-CLASS="prompt"
->    -&#62;</SAMP
-> ' some_user '@' some_host ' = OLD_PASSWORD(' newpwd ');
-                  </PRE
-></FONT
-></TD
-></TR
-></TABLE
->
-                </P
-></LI
-></UL
->
-            
-          </P
-><P
->&#13;          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-db-synchronize"
-></A
-><B
->A.6.4. </B
->
-            How do I synchronize bug information among multiple
-            different Bugzilla databases?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            Well, you can synchronize or you can move bugs.
-            Synchronization will only work one way -- you can create
-            a read-only copy of the database at one site, and have it
-            regularly updated at intervals from the main database.
-          </P
-><P
->&#13;            MySQL has some synchronization features built-in to the
-            latest releases. It would be great if someone looked into
-            the possibilities there and provided a report to the
-            newsgroup on how to effectively synchronize two Bugzilla
-            installations.
-          </P
-><P
->&#13;            If you simply need to transfer bugs from one Bugzilla to another,
-            checkout the <SPAN
-CLASS="QUOTE"
->"move.pl"</SPAN
-> script in the Bugzilla
-            distribution.
-          </P
-></DIV
-></DIV
-></DIV
-><DIV
-CLASS="qandadiv"
-><H3
-><A
-NAME="faq-nt"
-></A
->7. Can Bugzilla run on a Windows server?</H3
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-nt-easiest"
-></A
-><B
->A.7.1. </B
->
-            What is the easiest way to run Bugzilla on Win32 (Win98+/NT/2K)?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            Making Bugzilla work easily with Windows
-            was one of the major goals of the 2.18 milestone. If the
-            necessary components are in place (perl, a webserver, an MTA, etc.)
-            then installation of Bugzilla on a Windows box should be no more
-            difficult than on any other platform. As with any installation,
-            we recommend that you carefully and completely follow the
-            installation instructions in <A
-HREF="#os-win32"
->Section 2.5.1</A
->.
-          </P
-><P
->&#13;            While doing so, don't forget to check out the very excellent guide
-            to <A
-HREF="http://www.bugzilla.org/docs/win32install.html"
-TARGET="_top"
->&#13;            Installing Bugzilla on Microsoft Windows</A
-> written by
-            Byron Jones. Thanks, Byron!
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-nt-bundle"
-></A
-><B
->A.7.2. </B
->
-            Is there a "Bundle::Bugzilla" equivalent for Win32?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            Not currently. Bundle::Bugzilla enormously simplifies Bugzilla
-            installation on UNIX systems. If someone can volunteer to
-            create a suitable PPM bundle for Win32, it would be appreciated.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-nt-mappings"
-></A
-><B
->A.7.3. </B
->
-            CGI's are failing with a <SPAN
-CLASS="QUOTE"
->"something.cgi is not a valid
-            Windows NT application"</SPAN
-> error. Why?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            Depending on what Web server you are using, you will have to
-            configure the Web server to treat *.cgi files as CGI scripts.
-            In IIS, you do this by adding *.cgi to the App Mappings with
-            the &#60;path&#62;\perl.exe %s %s as the executable.
-          </P
-><P
->&#13;            Microsoft has some advice on this matter, as well:
-            <A
-NAME="AEN3281"
-></A
-><BLOCKQUOTE
-CLASS="BLOCKQUOTE"
-><P
->&#13;                <SPAN
-CLASS="QUOTE"
->"Set application mappings. In the ISM, map the extension
-                for the script file(s) to the executable for the script
-                interpreter. For example, you might map the extension .py to
-                Python.exe, the executable for the Python script interpreter.
-                Note For the ActiveState Perl script interpreter, the extension
-                '.pl' is associated with PerlIS.dll by default. If you want
-                to change the association of .pl to perl.exe, you need to
-                change the application mapping. In the mapping, you must add
-                two percent (%) characters to the end of the pathname for
-                perl.exe, as shown in this example: 
-                <B
-CLASS="command"
->c:\perl\bin\perl.exe %s %s</B
->"</SPAN
->
-              </P
-></BLOCKQUOTE
->
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-nt-dbi"
-></A
-><B
->A.7.4. </B
->
-            I'm having trouble with the perl modules for NT not being
-            able to talk to the database.
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            Your modules may be outdated or inaccurate. Try:
-            <P
-></P
-><OL
-TYPE="1"
-><LI
-><P
->&#13;                  Hitting <A
-HREF="http://www.activestate.com/ActivePerl"
-TARGET="_top"
->http://www.activestate.com/ActivePerl</A
->
-                </P
-></LI
-><LI
-><P
->&#13;                  Download ActivePerl
-                </P
-></LI
-><LI
-><P
->&#13;                  Go to your prompt
-                </P
-></LI
-><LI
-><P
->&#13;                  Type 'ppm'
-                </P
-></LI
-><LI
-><P
->&#13;                  <SAMP
-CLASS="prompt"
->PPM&#62;</SAMP
-> <B
-CLASS="command"
->install DBI DBD-mysql GD</B
->
-                </P
-></LI
-></OL
->
-            I reckon TimeDate comes with the activeperl.
-            You can check the ActiveState site for packages for installation
-            through PPM. <A
-HREF="http://www.activestate.com/Packages/"
-TARGET="_top"
->http://www.activestate.com/Packages/</A
->.
-          </P
-></DIV
-></DIV
-></DIV
-><DIV
-CLASS="qandadiv"
-><H3
-><A
-NAME="faq-use"
-></A
->8. Bugzilla Usage</H3
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-use-changeaddress"
-></A
-><B
->A.8.1. </B
->
-            How do I change my user name (email address) in Bugzilla?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            You can change your email address from the Name and Password
-            section in Preferences. You will be emailed at both the old 
-            and new addresses for confirmation. 'Administrative Policies' 
-            must have the 'allowemailchange' parameter set to <SPAN
-CLASS="QUOTE"
->"On"</SPAN
->.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-use-query"
-></A
-><B
->A.8.2. </B
->
-            The query page is very confusing.
-            Isn't there a simpler way to query?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            The interface was simplified by a UI designer for 2.16. Further
-            suggestions for improvement are welcome, but we won't sacrifice
-            power for simplicity.
-          </P
-><P
->&#13;            As of 2.18, there is also a 'simpler' search available. At the top
-            of the search page are two links; <SPAN
-CLASS="QUOTE"
->"Advanced Search"</SPAN
->
-            will take you to the familiar full-power/full-complexity search
-            page. The <SPAN
-CLASS="QUOTE"
->"Find a Specific Bug"</SPAN
-> link will take you
-            to a much-simplified page where you can pick a product and
-            status (open,closed, or both), then enter words that appear in
-            the bug you want to find. This search will scour the 'Summary'
-            and 'Comment' fields, and return a list of bugs sorted so that
-            the bugs with the most hits/matches are nearer to the top.
-          </P
-><DIV
-CLASS="note"
-><P
-></P
-><TABLE
-CLASS="note"
-WIDTH="100%"
-BORDER="0"
-><TR
-><TD
-WIDTH="25"
-ALIGN="CENTER"
-VALIGN="TOP"
-><IMG
-SRC="../images/note.gif"
-HSPACE="5"
-ALT="Note"></TD
-><TD
-ALIGN="LEFT"
-VALIGN="TOP"
-><P
->&#13;              Matches in the Summary will 'trump' matches in comments,
-              and bugs with summary-matches will be placed higher in
-              the buglist --  even if a lower-ranked bug has more matches
-              in the comments section.
-            </P
-></TD
-></TR
-></TABLE
-></DIV
-><P
->&#13;            Bugzilla uses a cookie to remember which version of the page
-            you visited last, and brings that page up when you next do a
-            search. The default page for new users (or after an upgrade)
-            is the 'simple' search.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-use-accept"
-></A
-><B
->A.8.3. </B
->
-            I'm confused by the behavior of the <SPAN
-CLASS="QUOTE"
->"Accept"</SPAN
->
-            button in the Show Bug form. Why doesn't it assign the bug
-            to me when I accept it?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            The current behavior is acceptable to bugzilla.mozilla.org and
-            most users. If you want to change this behavior, though, you
-            have your choice of patches: 
-            <P
-></P
-><TABLE
-BORDER="0"
-><TBODY
-><TR
-><TD
->&#13;                <A
-HREF="https://bugzilla.mozilla.org/show_bug.cgi?id=35195"
-TARGET="_top"
->Bug 35195</A
->
-                seeks to add an <SPAN
-CLASS="QUOTE"
->"...and accept the bug"</SPAN
-> checkbox
-                to the UI. It has two patches attached to it: 
-                <A
-HREF="https://bugzilla.mozilla.org/showattachment.cgi?attach_id=8029"
-TARGET="_top"
->attachment 8029</A
->
-                was originally created for Bugzilla 2.12, while 
-                <A
-HREF="https://bugzilla.mozilla.org/showattachment.cgi?attach_id=91372"
-TARGET="_top"
->attachment 91372</A
->
-                is an updated version for Bugzilla 2.16
-              </TD
-></TR
-><TR
-><TD
->&#13;                <A
-HREF="https://bugzilla.mozilla.org/show_bug.cgi?id=37613"
-TARGET="_top"
->Bug
-                37613</A
-> also provides two patches (against Bugzilla
-                2.12): one to add a 'Take Bug' option, and the other to
-                automatically reassign the bug on 'Accept'. 
-              </TD
-></TR
-></TBODY
-></TABLE
-><P
-></P
->
-            These patches are all somewhat dated now, and cannot be applied
-            directly, but they are simple enough to provide a guide on how
-            Bugzilla can be customized and updated to suit your needs.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-use-attachment"
-></A
-><B
->A.8.4. </B
->
-            I can't upload anything into the database via the
-            <SPAN
-CLASS="QUOTE"
->"Create Attachment"</SPAN
-> link. What am I doing wrong?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            The most likely cause is a very old browser or a browser that is
-            incompatible with file upload via POST. Download the latest version
-            of your favourite browser to handle uploads correctly.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-use-keyword"
-></A
-><B
->A.8.5. </B
->
-            How do I change a keyword in Bugzilla, once some bugs are using it?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            In the Bugzilla administrator UI, edit the keyword and
-            it will let you replace the old keyword name with a new one.
-            This will cause a problem with the keyword cache; run
-            <B
-CLASS="command"
->sanitycheck.cgi</B
-> to fix it.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-use-close"
-></A
-><B
->A.8.6. </B
->
-            Why can't I close bugs from the <SPAN
-CLASS="QUOTE"
->"Change Several Bugs
-            at Once"</SPAN
-> page?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            Simple answer; you can.
-          </P
-><P
->&#13;            The logic behind the page checks every bug in the list to
-            determine legal state changes, and then only shows you controls
-            to do things that could apply to <EM
->every</EM
-> bug
-            on the list. The reason for this is that if you try to do something
-            illegal to a bug, the whole process will grind to a halt, and all
-            changes after the failed one will <EM
->also</EM
-> fail.
-            Since that isn't a good outcome, the page doesn't even present
-            you with the option.
-          </P
-><P
->&#13;            In practical terms, that means that in order to mark
-            multiple bugs as CLOSED, then every bug on the page has to be
-            either RESOLVED or VERIFIED already; if this is not the case,
-            then the option to close the bugs will not appear on the page.
-          </P
-><P
->&#13;            The rationale is that if you pick one of the bugs that's not
-            VERIFIED and try to CLOSE it, the bug change will fail
-            miserably (thus killing any changes in the list after it
-            while doing the bulk change) so it doesn't even give you the
-            choice.
-          </P
-></DIV
-></DIV
-></DIV
-><DIV
-CLASS="qandadiv"
-><H3
-><A
-NAME="faq-hacking"
-></A
->9. Bugzilla Hacking</H3
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-hacking-templatestyle"
-></A
-><B
->A.9.1. </B
->
-            What kind of style should I use for templatization?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            Gerv and Myk suggest a 2-space indent, with embedded code sections on
-            their own line, in line with outer tags. Like this:</P
-><TABLE
-BORDER="0"
-BGCOLOR="#E0E0E0"
-WIDTH="100%"
-><TR
-><TD
-><FONT
-COLOR="#000000"
-><PRE
-CLASS="programlisting"
->&#13;&#60;fred&#62;
-[% IF foo %]
-  &#60;bar&#62;
-  [% FOREACH x = barney %]
-    &#60;tr&#62;
-      &#60;td&#62;
-        [% x %]
-      &#60;/td&#62;
-    &#60;tr&#62;
-  [% END %]
-[% END %]
-&#60;/fred&#62;
-</PRE
-></FONT
-></TD
-></TR
-></TABLE
-><P
-> Myk also recommends you turn on PRE_CHOMP in the template
-        initialization to prevent bloating of HTML with unnecessary whitespace.
-        </P
-><P
->Please note that many have differing opinions on this subject,
-        and the existing templates in Bugzilla espouse both this and a 4-space
-        style. Either is acceptable; the above is preferred.</P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-hacking-bugzillabugs"
-></A
-><B
->A.9.2. </B
->
-            What bugs are in Bugzilla right now?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            Try <A
-HREF="https://bugzilla.mozilla.org/buglist.cgi?bug_status=NEW&#38;bug_status=ASSIGNED&#38;bug_status=REOPENED&#38;product=Bugzilla"
-TARGET="_top"
->&#13;            this link</A
-> to view current bugs or requests for
-            enhancement for Bugzilla.
-          </P
-><P
->&#13;            You can view bugs marked for 3.2 release
-            <A
-HREF="https://bugzilla.mozilla.org/buglist.cgi?product=Bugzilla&#38;target_milestone=Bugzilla+&#38;bz-nextver;"
-TARGET="_top"
->here</A
->.
-            This list includes bugs for the 3.2 release that have already
-            been fixed and checked into CVS. Please consult the
-            <A
-HREF="http://www.bugzilla.org/"
-TARGET="_top"
->&#13;            Bugzilla Project Page</A
-> for details on how to
-            check current sources out of CVS so you can have these
-            bug fixes early!
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-hacking-priority"
-></A
-><B
->A.9.3. </B
->
-            How can I change the default priority to a null value?
-            For instance, have the default priority be <SPAN
-CLASS="QUOTE"
->"---"</SPAN
->
-            instead of <SPAN
-CLASS="QUOTE"
->"P2"</SPAN
->?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            This is well-documented in <A
-HREF="https://bugzilla.mozilla.org/show_bug.cgi?id=49862"
-TARGET="_top"
->bug
-            49862</A
->. Ultimately, it's as easy as adding the
-            <SPAN
-CLASS="QUOTE"
->"---"</SPAN
-> priority field to your localconfig file
-            in the appropriate area, re-running checksetup.pl, and then
-            changing the default priority in your browser using
-            <B
-CLASS="command"
->editparams.cgi</B
->. 
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-hacking-patches"
-></A
-><B
->A.9.4. </B
->
-            What's the best way to submit patches?  What guidelines
-            should I follow?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
-><P
-></P
-><OL
-TYPE="1"
-><LI
-><P
->&#13;                  Enter a bug into bugzilla.mozilla.org for the <SPAN
-CLASS="QUOTE"
->"<A
-HREF="https://bugzilla.mozilla.org/enter_bug.cgi?product=Bugzilla"
-TARGET="_top"
->Bugzilla</A
->"</SPAN
->
-                  product.
-                </P
-></LI
-><LI
-><P
->&#13;                  Upload your patch as a unified diff (having used <SPAN
-CLASS="QUOTE"
->"diff
-                  -u"</SPAN
-> against the <EM
->current sources</EM
->
-                  checked out of CVS), or new source file by clicking
-                  <SPAN
-CLASS="QUOTE"
->"Create a new attachment"</SPAN
-> link on the bug
-                  page you've just created, and include any descriptions of
-                  database changes you may make, into the bug ID you submitted
-                  in step #1. Be sure and click the <SPAN
-CLASS="QUOTE"
->"Patch"</SPAN
-> checkbox
-                  to indicate the text you are sending is a patch!
-                </P
-></LI
-><LI
-><P
->&#13;                  Announce your patch and the associated URL
-                  (https://bugzilla.mozilla.org/show_bug.cgi?id=XXXXXX)
-                  for discussion in the newsgroup
-                  (mozilla.support.bugzilla). You'll get a
-                  really good, fairly immediate reaction to the
-                  implications of your patch, which will also give us
-                  an idea how well-received the change would be.
-                </P
-></LI
-><LI
-><P
->&#13;                  If it passes muster with minimal modification, the
-                  person to whom the bug is assigned in Bugzilla is
-                  responsible for seeing the patch is checked into CVS.
-                </P
-></LI
-><LI
-><P
->&#13;                  Bask in the glory of the fact that you helped write
-                  the most successful open-source bug-tracking software
-                  on the planet :)
-                </P
-></LI
-></OL
-></P
-></DIV
-></DIV
-></DIV
-></DIV
-></DIV
-><DIV
-CLASS="appendix"
-><HR><H1
-><A
 NAME="troubleshooting"
 ></A
->Appendix B. Troubleshooting</H1
+>Appendix A. Troubleshooting</H1
 ><P
 >This section gives solutions to common Bugzilla installation
   problems. If none of the section headings seems to match your
@@ -18423,7 +15290,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="general-advice"
->B.1. General Advice</A
+>A.1. General Advice</A
 ></H2
 ><P
 >If you can't get <TT
@@ -18488,7 +15355,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="trbl-testserver"
->B.2. The Apache web server is not serving Bugzilla pages</A
+>A.2. The Apache web server is not serving Bugzilla pages</A
 ></H2
 ><P
 >After you have run <B
@@ -18532,7 +15399,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="trbl-perlmodule"
->B.3. I installed a Perl module, but 
+>A.3. I installed a Perl module, but 
       <TT
 CLASS="filename"
 >checksetup.pl</TT
@@ -18571,7 +15438,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="trbl-dbdSponge"
->B.4. DBD::Sponge::db prepare failed</A
+>A.4. DBD::Sponge::db prepare failed</A
 ></H2
 ><P
 >The following error message may appear due to a bug in DBD::mysql
@@ -18655,7 +15522,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="paranoid-security"
->B.5. cannot chdir(/var/spool/mqueue)</A
+>A.5. cannot chdir(/var/spool/mqueue)</A
 ></H2
 ><P
 >If you are installing Bugzilla on SuSE Linux, or some other
@@ -18714,7 +15581,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="trbl-relogin-everyone"
->B.6. Everybody is constantly being forced to relogin</A
+>A.6. Everybody is constantly being forced to relogin</A
 ></H2
 ><P
 >The most-likely cause is that the <SPAN
@@ -18755,10 +15622,10 @@ NAME="trbl-relogin-everyone-share"
 ></A
 ><P
 ><B
->Example B-1. Examples of urlbase/cookiepath pairs for sharing login cookies</B
+>Example A-1. Examples of urlbase/cookiepath pairs for sharing login cookies</B
 ></P
 ><A
-NAME="AEN3477"
+NAME="AEN3048"
 ></A
 ><BLOCKQUOTE
 CLASS="BLOCKQUOTE"
@@ -18796,10 +15663,10 @@ NAME="trbl-relogin-everyone-restrict"
 ></A
 ><P
 ><B
->Example B-2. Examples of urlbase/cookiepath pairs to restrict the login cookie</B
+>Example A-2. Examples of urlbase/cookiepath pairs to restrict the login cookie</B
 ></P
 ><A
-NAME="AEN3484"
+NAME="AEN3055"
 ></A
 ><BLOCKQUOTE
 CLASS="BLOCKQUOTE"
@@ -18842,7 +15709,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="trbl-relogin-some"
->B.7. Some users are constantly being forced to relogin</A
+>A.7. Some users are constantly being forced to relogin</A
 ></H2
 ><P
 >First, make sure cookies are enabled in the user's browser.
@@ -18881,7 +15748,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="trbl-index"
->B.8. <TT
+>A.8. <TT
 CLASS="filename"
 >index.cgi</TT
 > doesn't show up unless specified in the URL</A
@@ -18912,7 +15779,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="trbl-passwd-encryption"
->B.9. checksetup.pl reports "Client does not support authentication protocol
+>A.9. checksetup.pl reports "Client does not support authentication protocol
       requested by server..."</A
 ></H2
 ><P
@@ -18948,7 +15815,7 @@ CLASS="appendix"
 ><A
 NAME="patches"
 ></A
->Appendix C. Contrib</H1
+>Appendix B. Contrib</H1
 ><P
 >&#13;    There are a number of unofficial Bugzilla add-ons in the 
     <TT
@@ -18963,7 +15830,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="cmdline"
->C.1. Command-line Search Interface</A
+>B.1. Command-line Search Interface</A
 ></H2
 ><P
 >&#13;      There are a suite of Unix utilities for searching Bugzilla from the 
@@ -19107,7 +15974,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="cmdline-bugmail"
->C.2. Command-line 'Send Unsent Bug-mail' tool</A
+>B.2. Command-line 'Send Unsent Bug-mail' tool</A
 ></H2
 ><P
 >&#13;      Within the <TT
@@ -19159,14 +16026,14 @@ CLASS="appendix"
 ><A
 NAME="install-perlmodules-manual"
 ></A
->Appendix D. Manual Installation of Perl Modules</H1
+>Appendix C. Manual Installation of Perl Modules</H1
 ><DIV
 CLASS="section"
 ><H2
 CLASS="section"
 ><A
 NAME="modules-manual-instructions"
->D.1. Instructions</A
+>C.1. Instructions</A
 ></H2
 ><P
 >&#13;      If you need to install Perl modules manually, here's how it's done.
@@ -19284,7 +16151,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="modules-manual-download"
->D.2. Download Locations</A
+>C.2. Download Locations</A
 ></H2
 ><DIV
 CLASS="note"
@@ -19560,7 +16427,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="modules-manual-optional"
->D.3. Optional Modules</A
+>C.3. Optional Modules</A
 ></H2
 ><P
 >&#13;      Chart::Base:
@@ -19704,11 +16571,11 @@ CLASS="appendix"
 ><A
 NAME="gfdl"
 ></A
->Appendix E. GNU Free Documentation License</H1
+>Appendix D. GNU Free Documentation License</H1
 ><P
 >Version 1.1, March 2000</P
 ><A
-NAME="AEN3668"
+NAME="AEN3239"
 ></A
 ><BLOCKQUOTE
 CLASS="BLOCKQUOTE"
@@ -20171,7 +17038,7 @@ NAME="gfdl-howto"
     of the License in the document and put the following copyright and
     license notices just after the title page:</P
 ><A
-NAME="AEN3758"
+NAME="AEN3329"
 ></A
 ><BLOCKQUOTE
 CLASS="BLOCKQUOTE"
@@ -20208,7 +17075,7 @@ CLASS="glossdiv"
 ><H1
 CLASS="glossdiv"
 ><A
-NAME="AEN3763"
+NAME="AEN3334"
 >0-9, high ascii</A
 ></H1
 ><DL
@@ -21118,7 +17985,7 @@ NAME="gloss-zarro"
         Terry had the following to say:
         </P
 ><A
-NAME="AEN4008"
+NAME="AEN3579"
 ></A
 ><TABLE
 BORDER="0"
diff --git a/docs/html/CVS/Entries b/docs/html/CVS/Entries
index ebf4436a236d41db3514e8f7a44381ffff197617..9f0b9c59462ea221d19846c58a86ed07eb1d5845 100644
--- a/docs/html/CVS/Entries
+++ b/docs/html/CVS/Entries
@@ -1,2 +1,2 @@
-/.cvsignore/1.1/Tue Sep  5 19:00:55 2006//TBUGZILLA-3_1_2
+/.cvsignore/1.1/Tue Sep  5 19:00:55 2006//TBUGZILLA-3_1_3
 D/api////
diff --git a/docs/html/CVS/Tag b/docs/html/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/docs/html/CVS/Tag
+++ b/docs/html/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/docs/html/about.html b/docs/html/about.html
index 3e911dee546605ece294177aa5469c328fe614fc..06f06ac2b337ec51422786b3afd993ddcf48b536 100644
--- a/docs/html/about.html
+++ b/docs/html/about.html
@@ -7,12 +7,12 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
 REL="PREVIOUS"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -38,7 +38,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -157,7 +157,7 @@ ACCESSKEY="N"
 WIDTH="33%"
 ALIGN="left"
 VALIGN="top"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TD
 ><TD
diff --git a/docs/html/administration.html b/docs/html/administration.html
index dc886c6b9cac3b6021075e34a933148f40a725c8..7c87861d4826db64dbc50539ee642f4c965951b2 100644
--- a/docs/html/administration.html
+++ b/docs/html/administration.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -36,7 +36,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -168,110 +168,120 @@ HREF="flags-overview.html#flags-admin"
 ></DD
 ><DT
 >3.9. <A
+HREF="keywords.html"
+>Keywords</A
+></DT
+><DT
+>3.10. <A
 HREF="custom-fields.html"
 >Custom Fields</A
 ></DT
 ><DD
 ><DL
 ><DT
->3.9.1. <A
+>3.10.1. <A
 HREF="custom-fields.html#add-custom-fields"
 >Adding Custom Fields</A
 ></DT
 ><DT
->3.9.2. <A
+>3.10.2. <A
 HREF="custom-fields.html#edit-custom-fields"
 >Editing Custom Fields</A
 ></DT
 ><DT
->3.9.3. <A
+>3.10.3. <A
 HREF="custom-fields.html#delete-custom-fields"
 >Deleting Custom Fields</A
 ></DT
 ></DL
 ></DD
 ><DT
->3.10. <A
+>3.11. <A
 HREF="edit-values.html"
 >Legal Values</A
 ></DT
 ><DD
 ><DL
 ><DT
->3.10.1. <A
+>3.11.1. <A
 HREF="edit-values.html#edit-values-list"
 >Viewing/Editing legal values</A
 ></DT
 ><DT
->3.10.2. <A
+>3.11.2. <A
 HREF="edit-values.html#edit-values-delete"
 >Deleting legal values</A
 ></DT
 ></DL
 ></DD
 ><DT
->3.11. <A
+>3.12. <A
 HREF="voting.html"
 >Voting</A
 ></DT
 ><DT
->3.12. <A
+>3.13. <A
 HREF="quips.html"
 >Quips</A
 ></DT
 ><DT
->3.13. <A
+>3.14. <A
 HREF="groups.html"
 >Groups and Group Security</A
 ></DT
 ><DD
 ><DL
 ><DT
->3.13.1. <A
-HREF="groups.html#AEN1686"
+>3.14.1. <A
+HREF="groups.html#create-groups"
 >Creating Groups</A
 ></DT
 ><DT
->3.13.2. <A
-HREF="groups.html#AEN1713"
+>3.14.2. <A
+HREF="groups.html#edit-groups"
 >Assigning Users to Groups</A
 ></DT
 ><DT
->3.13.3. <A
-HREF="groups.html#AEN1723"
+>3.14.3. <A
+HREF="groups.html#AEN1788"
 >Assigning Group Controls to Products</A
 ></DT
 ><DT
->3.13.4. <A
-HREF="groups.html#AEN1741"
+>3.14.4. <A
+HREF="groups.html#AEN1792"
 >Common Applications of Group Controls</A
 ></DT
 ></DL
 ></DD
 ><DT
->3.14. <A
+>3.15. <A
+HREF="sanitycheck.html"
+>Checking and Maintaining Database Integrity</A
+></DT
+><DT
+>3.16. <A
 HREF="upgrading.html"
 >Upgrading to New Releases</A
 ></DT
 ><DD
 ><DL
 ><DT
->3.14.1. <A
+>3.16.1. <A
 HREF="upgrading.html#upgrading-version-defns"
 >Version Definitions</A
 ></DT
 ><DT
->3.14.2. <A
+>3.16.2. <A
 HREF="upgrading.html#upgrading-notifications"
 >Upgrading - Notifications</A
 ></DT
 ><DT
->3.14.3. <A
+>3.16.3. <A
 HREF="upgrading.html#upgrading-methods"
 >Upgrading - Methods and Procedure</A
 ></DT
 ><DT
->3.14.4. <A
+>3.16.4. <A
 HREF="upgrading.html#upgrading-completion"
 >Completing Your Upgrade</A
 ></DT
diff --git a/docs/html/api/Bugzilla/Attachment.html b/docs/html/api/Bugzilla/Attachment.html
index 9403b4f2f9319103577fb0cdd57d612d1c5ae60e..d08f6217fe91010548f13ef26f09c1c49276f078 100644
--- a/docs/html/api/Bugzilla/Attachment.html
+++ b/docs/html/api/Bugzilla/Attachment.html
@@ -104,6 +104,15 @@ name="Instance_Properties"
 </dd>
 </dl>
 
+<dl>
+<dt><a name="modification_time"
+><code  class="code">modification_time</code></a></dt>
+
+<dd>
+<p>the date and time on which the attachment was last modified.</p>
+</dd>
+</dl>
+
 <dl>
 <dt><a name="filename"
 ><code  class="code">filename</code></a></dt>
@@ -253,6 +262,16 @@ name="Class_Methods"
 <p>Params: <code  class="code">$bug</code> - Bugzilla::Bug object - the bug for which to insert the attachment. <code  class="code">$user</code> - Bugzilla::User object - the user we&#39;re inserting an attachment for. <code  class="code">$timestamp</code> - scalar - timestamp of the insert as returned by SELECT NOW(). <code  class="code">$hr_vars</code> - hash reference - reference to a hash of template variables.</p>
 
 <p>Returns: the ID of the new attachment.</p>
+
+<dt><a name="remove_from_db()"
+><code  class="code">remove_from_db()</code></a></dt>
+
+<dd>
+<p>Description: removes an attachment from the DB.</p>
+
+<p>Params: none</p>
+
+<p>Returns: nothing</p>
 </dd>
 </dl>
 <p class="backlinkbottom"><b><a name="___bottom" href="../index.html" title="All Documents">&lt;&lt;</a></b></p>
diff --git a/docs/html/api/Bugzilla/Component.html b/docs/html/api/Bugzilla/Component.html
index d46690090e6a461646d84cd85f22970f4f7f3375..45f82172a983bc063252bd6060456d6d52dc5db1 100644
--- a/docs/html/api/Bugzilla/Component.html
+++ b/docs/html/api/Bugzilla/Component.html
@@ -16,7 +16,7 @@ Bugzilla::Component</title>
   <li class='indexItem indexItem1'><a href='#SYNOPSIS'>SYNOPSIS</a>
   <li class='indexItem indexItem1'><a href='#DESCRIPTION'>DESCRIPTION</a>
   <li class='indexItem indexItem1'><a href='#METHODS'>METHODS</a>
-  <li class='indexItem indexItem1'><a href='#SUBROUTINES'>SUBROUTINES</a>
+  <li class='indexItem indexItem1'><a href='#CLASS_METHODS'>CLASS METHODS</a>
 </ul>
 </div>
 
@@ -32,9 +32,8 @@ name="SYNOPSIS"
 
 <pre  class="code">    use Bugzilla::Component;
 
-    my $component = new Bugzilla::Component(1);
-    my $component = new Bugzilla::Component({product =&#62; $product,
-                                             name    =&#62; &#39;AcmeComp&#39;});
+    my $component = new Bugzilla::Component($comp_id);
+    my $component = new Bugzilla::Component({ product =&#62; $product, name =&#62; $name });
 
     my $bug_count          = $component-&#62;bug_count();
     my $bug_ids            = $component-&#62;bug_ids();
@@ -49,7 +48,23 @@ name="SYNOPSIS"
     my $bug_flag_types     = $component-&#62;flag_types-&#62;{&#39;bug&#39;};
     my $attach_flag_types  = $component-&#62;flag_types-&#62;{&#39;attachment&#39;};
 
-    my $component  = Bugzilla::Component::check_component($product, &#39;AcmeComp&#39;);</pre>
+    my $component = Bugzilla::Component-&#62;check({ product =&#62; $product, name =&#62; $name });
+
+    my $component =
+      Bugzilla::Component-&#62;create({ name             =&#62; $name,
+                                    product          =&#62; $product,
+                                    initialowner     =&#62; $user_login1,
+                                    initialqacontact =&#62; $user_login2,
+                                    description      =&#62; $description});
+
+    $component-&#62;set_name($new_name);
+    $component-&#62;set_description($new_description);
+    $component-&#62;set_default_assignee($new_login_name);
+    $component-&#62;set_default_qa_contact($new_login_name);
+    $component-&#62;set_cc_list(\@new_login_names);
+    $component-&#62;update();
+
+    $component-&#62;remove_from_db;</pre>
 
 <h1><a class='u' href='#___top' title='click to go to top of document'
 name="DESCRIPTION"
@@ -67,14 +82,15 @@ name="METHODS"
 
 <dd>
 <pre  class="code"> Description: The constructor is used to load an existing component
-              by passing a component id or a hash with the product
-              id and the component name.
+              by passing a component ID or a hash with the product
+              object the component belongs to and the component name.
 
  Params:      $param - If you pass an integer, the integer is the
-                       component id from the database that we want to
-                       read in. If you pass in a hash with &#39;name&#39; key,
-                       then the value of the name key is the name of a
-                       component from the DB.
+                       component ID from the database that we want to
+                       read in. If you pass in a hash with the &#39;name&#39;
+                       and &#39;product&#39; keys, then the value of the name
+                       key is the name of a component being in the given
+                       product.
 
  Returns:     A Bugzilla::Component object.</pre>
 
@@ -124,48 +140,138 @@ name="METHODS"
 ><code  class="code">initial_cc</code></a></dt>
 
 <dd>
-<p>Returns an arrayref of <a href="../Bugzilla/User.html" class="podlinkpod"
->Bugzilla::User</a> objects representing the Initial CC List.</p>
+<pre  class="code"> Description: Returns a list of user objects representing users being
+              in the initial CC list.
+
+ Params:      none.
+
+ Returns:     An arrayref of L&#60;Bugzilla::User&#62; objects.</pre>
 
 <dt><a name="flag_types()"
 ><code  class="code">flag_types()</code></a></dt>
 
 <dd>
-<pre  class="code">  Description: Returns all bug and attachment flagtypes available for
-               the component.
+<pre  class="code"> Description: Returns all bug and attachment flagtypes available for
+              the component.
 
-  Params:      none.
+ Params:      none.
 
-  Returns:     Two references to an array of flagtype objects.</pre>
+ Returns:     Two references to an array of flagtype objects.</pre>
 
 <dt><a name="product()"
 ><code  class="code">product()</code></a></dt>
 
 <dd>
-<pre  class="code">  Description: Returns the product the component belongs to.
+<pre  class="code"> Description: Returns the product the component belongs to.
+
+ Params:      none.
+
+ Returns:     A Bugzilla::Product object.</pre>
+
+<dt><a name="set_name($new_name)"
+><code  class="code">set_name($new_name)</code></a></dt>
+
+<dd>
+<pre  class="code"> Description: Changes the name of the component.
+
+ Params:      $new_name - new name of the component (string). This name
+                          must be unique within the product.
+
+ Returns:     Nothing.</pre>
+
+<dt><a name="set_description($new_desc)"
+><code  class="code">set_description($new_desc)</code></a></dt>
+
+<dd>
+<pre  class="code"> Description: Changes the description of the component.
+
+ Params:      $new_desc - new description of the component (string).
+
+ Returns:     Nothing.</pre>
+
+<dt><a name="set_default_assignee($new_assignee)"
+><code  class="code">set_default_assignee($new_assignee)</code></a></dt>
+
+<dd>
+<pre  class="code"> Description: Changes the default assignee of the component.
 
-  Params:      none.
+ Params:      $new_owner - login name of the new default assignee of
+                           the component (string). This user account
+                           must already exist.
 
-  Returns:     A Bugzilla::Product object.</pre>
+ Returns:     Nothing.</pre>
+
+<dt><a name="set_default_qa_contact($new_qa_contact)"
+><code  class="code">set_default_qa_contact($new_qa_contact)</code></a></dt>
+
+<dd>
+<pre  class="code"> Description: Changes the default QA contact of the component.
+
+ Params:      $new_qa_contact - login name of the new QA contact of
+                                the component (string). This user
+                                account must already exist.
+
+ Returns:     Nothing.</pre>
+
+<dt><a name="set_cc_list(\@cc_list)"
+><code  class="code">set_cc_list(\@cc_list)</code></a></dt>
+
+<dd>
+<pre  class="code"> Description: Changes the list of users being in the CC list by default.
+
+ Params:      \@cc_list - list of login names (string). All the user
+                          accounts must already exist.
+
+ Returns:     Nothing.</pre>
+
+<dt><a name="update()"
+><code  class="code">update()</code></a></dt>
+
+<dd>
+<pre  class="code"> Description: Write changes made to the component into the DB.
+
+ Params:      none.
+
+ Returns:     A hashref with changes made to the component object.</pre>
+
+<dt><a name="remove_from_db()"
+><code  class="code">remove_from_db()</code></a></dt>
+
+<dd>
+<pre  class="code"> Description: Deletes the current component from the DB. The object itself
+              is not destroyed.
+
+ Params:      none.
+
+ Returns:     Nothing.</pre>
 </dd>
 </dl>
 
 <h1><a class='u' href='#___top' title='click to go to top of document'
-name="SUBROUTINES"
->SUBROUTINES</a></h1>
+name="CLASS_METHODS"
+>CLASS METHODS</a></h1>
 
 <dl>
-<dt><a name="check_component($product,_$comp_name)"
-><code  class="code">check_component($product, $comp_name)</code></a></dt>
+<dt><a name="create(\%params)"
+><code  class="code">create(\%params)</code></a></dt>
 
 <dd>
-<pre  class="code"> Description: Checks if the component name was passed in and if it is a valid
-              component.
-
- Params:      $product - A Bugzilla::Product object.
-              $comp_name - String with a component name.
+<pre  class="code"> Description: Create a new component for the given product.
+
+ Params:      The hashref must have the following keys:
+              name            - name of the new component (string). This name
+                                must be unique within the product.
+              product         - a Bugzilla::Product object to which
+                                the Component is being added.
+              description     - description of the new component (string).
+              initialowner    - login name of the default assignee (string).
+              The following keys are optional:
+              initiaqacontact - login name of the default QA contact (string),
+                                or an empty string to clear it.
+              initial_cc      - an arrayref of login names to add to the
+                                CC list by default.
 
- Returns:     Bugzilla::Component object.</pre>
+ Returns:     A Bugzilla::Component object.</pre>
 </dd>
 </dl>
 <p class="backlinkbottom"><b><a name="___bottom" href="../index.html" title="All Documents">&lt;&lt;</a></b></p>
diff --git a/docs/html/api/Bugzilla/DB.html b/docs/html/api/Bugzilla/DB.html
index 1615b6a767f37c9313dce90a539d220daa902ed9..2ae736563a54eee2f5b344f49b3ff8e5cc8c0b4f 100644
--- a/docs/html/api/Bugzilla/DB.html
+++ b/docs/html/api/Bugzilla/DB.html
@@ -420,8 +420,8 @@ name="SQL_Generation"
 <dl>
 <dt><a name="$limit_-_number_of_rows_to_return_from_query_(scalar)"
 ><code  class="code">$limit</code> - number of rows to return from query (scalar)
-<dt><a name="$offset_-_number_of_rows_to_skip_prior_counting_(scalar)"
-><code  class="code">$offset</code> - number of rows to skip prior counting (scalar)</a></dt>
+<dt><a name="$offset_-_number_of_rows_to_skip_before_counting_(scalar)"
+><code  class="code">$offset</code> - number of rows to skip before counting (scalar)</a></dt>
 </dl>
 
 <dt><a name="Returns"
@@ -753,8 +753,8 @@ name="SQL_Generation"
 </dd>
 </dl>
 
-<dt><a name="bz_lock_tables"
-><code  class="code">bz_lock_tables</code></a></dt>
+<dt><a name="sql_in"
+><code  class="code">sql_in</code></a></dt>
 
 <dd>
 <dl>
@@ -762,52 +762,27 @@ name="SQL_Generation"
 ><b>Description</b></a></dt>
 
 <dd>
-<p>Performs a table lock operation on specified tables. If the underlying database supports transactions, it should also implicitly start a new transaction.</p>
+<p>Returns SQL syntax for the <code  class="code">IN ()</code> operator.</p>
 
-<p>Abstract method, should be overridden by database specific code.</p>
+<p>Only necessary where an <code  class="code">IN</code> clause can have more than 1000 items.</p>
 
 <dt><a name="Params"
 ><b>Params</b></a></dt>
 
 <dd>
 <dl>
-<dt><a name="@tables_-_list_of_names_of_tables_to_lock_in_MySQL_notation_(ex._&#39;bugs_AS_bugs2_READ&#39;,_&#39;logincookies_WRITE&#39;)"
-><code  class="code">@tables</code> - list of names of tables to lock in MySQL notation (ex. &#39;bugs AS bugs2 READ&#39;, &#39;logincookies WRITE&#39;)</a></dt>
+<dt><a name="$column_name_-_Column_name_(e.g._bug_id)"
+><code  class="code">$column_name</code> - Column name (e.g. <code  class="code">bug_id</code>)
+<dt><a name="$in_list_ref_-_an_arrayref_containing_values_for_IN_()"
+><code  class="code">$in_list_ref</code> - an arrayref containing values for <code  class="code">IN ()</code></a></dt>
 </dl>
 
-<dt><a name="Returns_(nothing)"
-><b>Returns</b> (nothing)</a></dt>
-</dl>
-
-<dt><a name="bz_unlock_tables"
-><code  class="code">bz_unlock_tables</code></a></dt>
-
-<dd>
-<dl>
-<dt><a name="Description"
-><b>Description</b></a></dt>
-
-<dd>
-<p>Performs a table unlock operation.</p>
-
-<p>If the underlying database supports transactions, it should also implicitly commit or rollback the transaction.</p>
-
-<p>Also, this function should allow to be called with the abort flag set even without locking tables first without raising an error to simplify error handling.</p>
-
-<p>Abstract method, should be overridden by database specific code.</p>
-
-<dt><a name="Params"
-><b>Params</b></a></dt>
+<dt><a name="Returns"
+><b>Returns</b></a></dt>
 
 <dd>
-<dl>
-<dt><a 
-><code  class="code">$abort</code> - <code  class="code">UNLOCK_ABORT</code> if the operation on locked tables failed (if transactions are supported, the action will be rolled back). No param if the operation succeeded. This is only used by <a href="../Bugzilla/Error.html#throw_error" class="podlinkpod"
->&#34;throw_error&#34; in Bugzilla::Error</a>.</a></dt>
-</dl>
-
-<dt><a name="Returns_(none)"
-><b>Returns</b> (none)</a></dt>
+<p>Formatted SQL for the <code  class="code">IN</code> operator.</p>
+</dd>
 </dl>
 </dd>
 </dl>
diff --git a/docs/html/api/Bugzilla/DB/Oracle.html b/docs/html/api/Bugzilla/DB/Oracle.html
new file mode 100644
index 0000000000000000000000000000000000000000..a2248687dbcf5c02c2a971524f4edb520cc5cd91
--- /dev/null
+++ b/docs/html/api/Bugzilla/DB/Oracle.html
@@ -0,0 +1,40 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html>
+  <head>
+    <title>
+Bugzilla::DB::Oracle</title>
+    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+  <link rel="stylesheet" title="style" type="text/css" href="../../style.css" media="all" >
+
+</head>
+  <body id="pod">
+<p class="backlinktop"><b><a name="___top" href="../../index.html" accesskey="1" title="All Documents">&lt;&lt;</a></b></p>
+<h1>Bugzilla::DB::Oracle</h1>
+<div class='indexgroup'>
+<ul   class='indexList indexList1'>
+  <li class='indexItem indexItem1'><a href='#NAME'>NAME</a>
+  <li class='indexItem indexItem1'><a href='#DESCRIPTION'>DESCRIPTION</a>
+</ul>
+</div>
+
+<h1><a class='u' href='#___top' title='click to go to top of document'
+name="NAME"
+>NAME</a></h1>
+
+<p>Bugzilla::DB::Oracle - Bugzilla database compatibility layer for Oracle</p>
+
+<h1><a class='u' href='#___top' title='click to go to top of document'
+name="DESCRIPTION"
+>DESCRIPTION</a></h1>
+
+<p>This module overrides methods of the Bugzilla::DB module with Oracle specific implementation.
+It is instantiated by the Bugzilla::DB module and should never be used directly.</p>
+
+<p>For interface details see <a href="../../Bugzilla/DB.html" class="podlinkpod"
+>Bugzilla::DB</a> and <a href="../../DBI.html" class="podlinkpod"
+>DBI</a>.</p>
+<p class="backlinkbottom"><b><a name="___bottom" href="../../index.html" title="All Documents">&lt;&lt;</a></b></p>
+
+<!-- end doc -->
+
+</body></html>
diff --git a/docs/html/api/Bugzilla/DB/Schema.html b/docs/html/api/Bugzilla/DB/Schema.html
index 8623230fa948ea06db501c0f9b43267cb09074a1..f185ca0f867ab51e66d9965f3a9376b72296158a 100644
--- a/docs/html/api/Bugzilla/DB/Schema.html
+++ b/docs/html/api/Bugzilla/DB/Schema.html
@@ -707,19 +707,19 @@ name="ABSTRACT_DATA_TYPES"
 ><code  class="code">TINYTEXT</code></a></dt>
 
 <dd>
-<p>Variable length string of characters up to 255 (2^8 - 1) characters wide or more depending on the character set used.</p>
+<p>Variable length string of characters up to 255 (2^8 - 1) characters wide.</p>
 
 <dt><a name="MEDIUMTEXT"
 ><code  class="code">MEDIUMTEXT</code></a></dt>
 
 <dd>
-<p>Variable length string of characters up to 16M (2^24 - 1) characters wide or more depending on the character set used.</p>
+<p>Variable length string of characters up to 4000 characters wide. May be longer on some databases.</p>
 
-<dt><a name="TEXT"
-><code  class="code">TEXT</code></a></dt>
+<dt><a name="LONGTEXT"
+><code  class="code">LONGTEXT</code></a></dt>
 
 <dd>
-<p>Variable length string of characters up to 64K (2^16 - 1) characters wide or more depending on the character set used.</p>
+<p>Variable length string of characters up to 16M (2^24 - 1) characters wide.</p>
 
 <dt><a name="LONGBLOB"
 ><code  class="code">LONGBLOB</code></a></dt>
diff --git a/docs/html/api/Bugzilla/Flag.html b/docs/html/api/Bugzilla/Flag.html
index f9273f9e3f88a28e056d8474328286949a95e7b5..b2d01bfc8d45cfdac7d637d3980529e803b8425f 100644
--- a/docs/html/api/Bugzilla/Flag.html
+++ b/docs/html/api/Bugzilla/Flag.html
@@ -151,11 +151,12 @@ it has no ID yet and $attach_id is set to -1 to force its check anyway.</p>
 </dl>
 
 <dl>
-<dt><a name="process($bug,_$attachment,_$timestamp,_$cgi)"
+<dt><a name="process($bug,_$attachment,_$timestamp,_$cgi,_$hr_vars)"
 ><code  class="code">process($bug,
 $attachment,
 $timestamp,
-$cgi)</code></a></dt>
+$cgi,
+$hr_vars)</code></a></dt>
 
 <dd>
 <p>Processes changes to flags.</p>
@@ -225,10 +226,11 @@ $attachment)</code></a></dt>
 </dl>
 
 <dl>
-<dt><a name="FormToNewFlags($bug,_$attachment,_$cgi)"
+<dt><a name="FormToNewFlags($bug,_$attachment,_$cgi,_$hr_vars)"
 ><code  class="code">FormToNewFlags($bug,
 $attachment,
-$cgi)</code></a></dt>
+$cgi,
+$hr_vars)</code></a></dt>
 
 <dd>
 <p>Checks whether or not there are new flags to create and returns an array of flag objects.
diff --git a/docs/html/api/Bugzilla/Hook.html b/docs/html/api/Bugzilla/Hook.html
index f45a6feb2c9ef51688930b6a7ebba666e3f07198..c9fb75b2ec508286057e0ccf79d103aff2693d33 100644
--- a/docs/html/api/Bugzilla/Hook.html
+++ b/docs/html/api/Bugzilla/Hook.html
@@ -18,6 +18,7 @@ Bugzilla::Hook</title>
   <ul   class='indexList indexList2'>
     <li class='indexItem indexItem2'><a href='#How_Hooks_Work'>How Hooks Work</a>
     <li class='indexItem indexItem2'><a href='#Arguments_Passed_to_Hooks'>Arguments Passed to Hooks</a>
+    <li class='indexItem indexItem2'><a href='#Versioning_Extensions'>Versioning Extensions</a>
   </ul>
   <li class='indexItem indexItem1'><a href='#SUBROUTINES'>SUBROUTINES</a>
   <li class='indexItem indexItem1'><a href='#HOOKS'>HOOKS</a>
@@ -26,6 +27,7 @@ Bugzilla::Hook</title>
     <li class='indexItem indexItem2'><a href='#install-requirements'>install-requirements</a>
     <li class='indexItem indexItem2'><a href='#install-update_db'>install-update_db</a>
     <li class='indexItem indexItem2'><a href='#db_schema-abstract_schema'>db_schema-abstract_schema</a>
+    <li class='indexItem indexItem2'><a href='#webservice'>webservice</a>
   </ul>
 </ul>
 </div>
@@ -34,7 +36,7 @@ Bugzilla::Hook</title>
 name="NAME"
 >NAME</a></h1>
 
-<p>Bugzilla::Hook - Extendible extension hooks for Bugzilla code</p>
+<p>Bugzilla::Hook - Extendable extension hooks for Bugzilla code</p>
 
 <h1><a class='u' href='#___top' title='click to go to top of document'
 name="SYNOPSIS"
@@ -51,6 +53,8 @@ name="DESCRIPTION"
 <p>Bugzilla allows extension modules to drop in and add routines at arbitrary points in Bugzilla code. These points are referred to as hooks. When a piece of standard Bugzilla code wants to allow an extension to perform additional functions, it uses Bugzilla::Hook&#39;s <a href="#process" class="podlinkpod"
 >&#34;process&#34;</a> subroutine to invoke any extension code if installed.</p>
 
+<p>There is a sample extension in <em  class="code">extensions/example/</em> that demonstrates most of the things described in this document, as well as many of the hooks available.</p>
+
 <h2><a class='u' href='#___top' title='click to go to top of document'
 name="How_Hooks_Work"
 >How Hooks Work</a></h2>
@@ -70,6 +74,12 @@ name="Arguments_Passed_to_Hooks"
 <p>These params are accessible through <a href="../Bugzilla.html#hook_args" class="podlinkpod"
 >&#34;hook_args&#34; in Bugzilla</a>. That returns a hashref. Very frequently, if you want your hook to do anything, you have to modify these variables.</p>
 
+<h2><a class='u' href='#___top' title='click to go to top of document'
+name="Versioning_Extensions"
+>Versioning Extensions</a></h2>
+
+<p>Every extension must have a file in its root called <em  class="code">version.pl</em>. This file should return a version number when called with <code  class="code">do</code>. This represents the current version of this extension.</p>
+
 <h1><a class='u' href='#___top' title='click to go to top of document'
 name="SUBROUTINES"
 >SUBROUTINES</a></h1>
@@ -162,6 +172,35 @@ name="db_schema-abstract_schema"
 ><code  class="code">schema</code> - A hashref, in the format of <a href="../Bugzilla/DB/Schema.html#ABSTRACT_SCHEMA" class="podlinkpod"
 >&#34;ABSTRACT_SCHEMA&#34; in Bugzilla::DB::Schema</a>. Add new hash keys to make new table definitions. <em  class="code">checksetup.pl</em> will automatically add these tables to the database when run.</a></dt>
 </dl>
+
+<h2><a class='u' href='#___top' title='click to go to top of document'
+name="webservice"
+>webservice</a></h2>
+
+<p>This hook allows you to add your own modules to the WebService. (See <a href="../Bugzilla/WebService.html" class="podlinkpod"
+>Bugzilla::WebService</a>.)</p>
+
+<p>Params:</p>
+
+<dl>
+<dt><a name="dispatch"
+><code  class="code">dispatch</code></a></dt>
+
+<dd>
+<p>A hashref that you can specify the names of your modules and what Perl module handles the functions for that module. (This is actually sent to <a href="../SOAP/Lite.html#dispatch_with" class="podlinkpod"
+>&#34;dispatch_with&#34; in SOAP::Lite</a>. You can see how that&#39;s used in <em  class="code">xmlrpc.cgi</em>.)</p>
+
+<p>The Perl module name must start with <code  class="code">extensions::yourextension::lib::</code> (replace <code  class="code">yourextension</code> with the name of your extension). The <code  class="code">package</code> declaration inside that module must also start with <code  class="code">extensions::yourextension::lib::</code> in that module&#39;s code.</p>
+
+<p>Example:</p>
+
+<pre  class="code">  $dispatch-&#62;{Example} = &#34;extensions::example::lib::Example&#34;;</pre>
+
+<p>And then you&#39;d have a module <em  class="code">extensions/example/lib/Example.pm</em></p>
+
+<p>It&#39;s recommended that all the keys you put in <code  class="code">dispatch</code> start with the name of your extension, so that you don&#39;t conflict with the standard Bugzilla WebService functions (and so that you also don&#39;t conflict with other plugins).</p>
+</dd>
+</dl>
 <p class="backlinkbottom"><b><a name="___bottom" href="../index.html" title="All Documents">&lt;&lt;</a></b></p>
 
 <!-- end doc -->
diff --git a/docs/html/api/Bugzilla/Install/CPAN.html b/docs/html/api/Bugzilla/Install/CPAN.html
new file mode 100644
index 0000000000000000000000000000000000000000..c2fdd5ad483d293c89b6d5f0a5e74a9711cbccff
--- /dev/null
+++ b/docs/html/api/Bugzilla/Install/CPAN.html
@@ -0,0 +1,77 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html>
+  <head>
+    <title>
+Bugzilla::Install::CPAN</title>
+    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+  <link rel="stylesheet" title="style" type="text/css" href="../../style.css" media="all" >
+
+</head>
+  <body id="pod">
+<p class="backlinktop"><b><a name="___top" href="../../index.html" accesskey="1" title="All Documents">&lt;&lt;</a></b></p>
+<h1>Bugzilla::Install::CPAN</h1>
+<div class='indexgroup'>
+<ul   class='indexList indexList1'>
+  <li class='indexItem indexItem1'><a href='#NAME'>NAME</a>
+  <li class='indexItem indexItem1'><a href='#SYNOPSIS'>SYNOPSIS</a>
+  <li class='indexItem indexItem1'><a href='#DESCRIPTION'>DESCRIPTION</a>
+  <li class='indexItem indexItem1'><a href='#SUBROUTINES'>SUBROUTINES</a>
+</ul>
+</div>
+
+<h1><a class='u' href='#___top' title='click to go to top of document'
+name="NAME"
+>NAME</a></h1>
+
+<p>Bugzilla::Install::CPAN - Routines to install Perl modules from CPAN.</p>
+
+<h1><a class='u' href='#___top' title='click to go to top of document'
+name="SYNOPSIS"
+>SYNOPSIS</a></h1>
+
+<pre  class="code"> use Bugzilla::Install::CPAN;
+
+ set_cpan_config();
+ install_module(&#39;Module::Name&#39;, 1);</pre>
+
+<h1><a class='u' href='#___top' title='click to go to top of document'
+name="DESCRIPTION"
+>DESCRIPTION</a></h1>
+
+<p>This is primarily used by <a href="../../install-module.html" class="podlinkpod"
+>install-module</a> to do the &#34;hard work&#34; of installing CPAN modules.</p>
+
+<h1><a class='u' href='#___top' title='click to go to top of document'
+name="SUBROUTINES"
+>SUBROUTINES</a></h1>
+
+<dl>
+<dt><a name="set_cpan_config"
+><code  class="code">set_cpan_config</code></a></dt>
+
+<dd>
+<p>Sets up the configuration of CPAN for this session. Must be called before <a href="#install_module" class="podlinkpod"
+>&#34;install_module&#34;</a>. Takes one boolean parameter. If true, <a href="#install_module" class="podlinkpod"
+>&#34;install_module&#34;</a> will install modules globally instead of to the local <em  class="code">lib/</em> directory. On most systems, you have to be root to do that.</p>
+
+<dt><a name="install_module"
+><code  class="code">install_module</code></a></dt>
+
+<dd>
+<p>Installs a module from CPAN. Takes two arguments:</p>
+
+<dl>
+<dt><a name="$name_-_The_name_of_the_module,_just_like_you&#39;d_pass_to_the_install_command_in_the_CPAN_shell."
+><code  class="code">$name</code> - The name of the module, just like you&#39;d pass to the <code  class="code">install</code> command in the CPAN shell.
+<dt><a name="$notest_-_If_true,_we_skip_running_tests_on_this_module._This_can_greatly_speed_up_the_installation_time."
+><code  class="code">$notest</code> - If true, we skip running tests on this module. This can greatly speed up the installation time.</a></dt>
+</dl>
+
+<p>Note that calling this function prints a <b>lot</b> of information to STDOUT and STDERR.</p>
+</dd>
+</dl>
+<p class="backlinkbottom"><b><a name="___bottom" href="../../index.html" title="All Documents">&lt;&lt;</a></b></p>
+
+<!-- end doc -->
+
+</body></html>
diff --git a/docs/html/api/Bugzilla/Install/Util.html b/docs/html/api/Bugzilla/Install/Util.html
index 3212738c741c5b87f2d382531494af6d1843410d..c805cfcbc7804251eba0cd957f97d0d1ab9e5258 100644
--- a/docs/html/api/Bugzilla/Install/Util.html
+++ b/docs/html/api/Bugzilla/Install/Util.html
@@ -46,6 +46,15 @@ name="SUBROUTINES"
 >SUBROUTINES</a></h1>
 
 <dl>
+<dt><a name="bin_loc"
+><code  class="code">bin_loc</code></a></dt>
+
+<dd>
+<p>On *nix systems,
+given the name of a binary,
+returns the path to that binary,
+if the binary is in the <code  class="code">PATH</code>.</p>
+
 <dt><a name="get_version_and_os"
 ><code  class="code">get_version_and_os</code></a></dt>
 
diff --git a/docs/html/api/Bugzilla/Milestone.html b/docs/html/api/Bugzilla/Milestone.html
index 10e9522d1e40eee8a6337a17b9b5e83b3613e30d..7f5e025735257a5d5ca60bccb9f0847bc3ab847e 100644
--- a/docs/html/api/Bugzilla/Milestone.html
+++ b/docs/html/api/Bugzilla/Milestone.html
@@ -16,6 +16,7 @@ Bugzilla::Milestone</title>
   <li class='indexItem indexItem1'><a href='#SYNOPSIS'>SYNOPSIS</a>
   <li class='indexItem indexItem1'><a href='#DESCRIPTION'>DESCRIPTION</a>
   <li class='indexItem indexItem1'><a href='#METHODS'>METHODS</a>
+  <li class='indexItem indexItem1'><a href='#CLASS_METHODS'>CLASS METHODS</a>
 </ul>
 </div>
 
@@ -31,13 +32,21 @@ name="SYNOPSIS"
 
 <pre  class="code">    use Bugzilla::Milestone;
 
-    my $milestone = new Bugzilla::Milestone(
-        { product =&#62; $product, name =&#62; &#39;milestone_value&#39; });
+    my $milestone = new Bugzilla::Milestone({ name =&#62; $name, product =&#62; $product });
 
+    my $name       = $milestone-&#62;name;
     my $product_id = $milestone-&#62;product_id;
-    my $value = $milestone-&#62;value;
+    my $product    = $milestone-&#62;product;
+    my $sortkey    = $milestone-&#62;sortkey;
 
-    my $milestone = $hash_ref-&#62;{&#39;milestone_value&#39;};</pre>
+    my $milestone = Bugzilla::Milestone-&#62;create(
+        { name =&#62; $name, product =&#62; $product, sortkey =&#62; $sortkey });
+
+    $milestone-&#62;set_name($new_name);
+    $milestone-&#62;set_sortkey($new_sortkey);
+    $milestone-&#62;update();
+
+    $milestone-&#62;remove_from_db;</pre>
 
 <h1><a class='u' href='#___top' title='click to go to top of document'
 name="DESCRIPTION"
@@ -50,18 +59,58 @@ name="METHODS"
 >METHODS</a></h1>
 
 <dl>
-<dt><a name="new($product_id,_$value)"
-><code  class="code">new($product_id, $value)</code></a></dt>
+<dt><a name="new({name_=_$name,_product_=&#62;_$product})&#62;"
+><code  class="code">new({name =</code> $name, product =&#62; $product})&#62;</a></dt>
 
 <dd>
 <pre  class="code"> Description: The constructor is used to load an existing milestone
-              by passing a product id and a milestone value.
+              by passing a product object and a milestone name.
 
- Params:      $product_id - Integer with a Bugzilla product id.
-              $value - String with a milestone value.
+ Params:      $product - a Bugzilla::Product object.
+              $name - the name of a milestone (string).
 
  Returns:     A Bugzilla::Milestone object.</pre>
 
+<dt><a name="name()"
+><code  class="code">name()</code></a></dt>
+
+<dd>
+<pre  class="code"> Description: Name (value) of the milestone.
+
+ Params:      none.
+
+ Returns:     The name of the milestone.</pre>
+
+<dt><a name="product_id()"
+><code  class="code">product_id()</code></a></dt>
+
+<dd>
+<pre  class="code"> Description: ID of the product the milestone belongs to.
+
+ Params:      none.
+
+ Returns:     The ID of a product.</pre>
+
+<dt><a name="product()"
+><code  class="code">product()</code></a></dt>
+
+<dd>
+<pre  class="code"> Description: The product object of the product the milestone belongs to.
+
+ Params:      none.
+
+ Returns:     A Bugzilla::Product object.</pre>
+
+<dt><a name="sortkey()"
+><code  class="code">sortkey()</code></a></dt>
+
+<dd>
+<pre  class="code"> Description: Sortkey of the milestone.
+
+ Params:      none.
+
+ Returns:     The sortkey of the milestone.</pre>
+
 <dt><a name="bug_count()"
 ><code  class="code">bug_count()</code></a></dt>
 
@@ -71,6 +120,68 @@ name="METHODS"
  Params:      none.
 
  Returns:     Integer with the number of bugs.</pre>
+
+<dt><a name="set_name($new_name)"
+><code  class="code">set_name($new_name)</code></a></dt>
+
+<dd>
+<pre  class="code"> Description: Changes the name of the milestone.
+
+ Params:      $new_name - new name of the milestone (string). This name
+                          must be unique within the product.
+
+ Returns:     Nothing.</pre>
+
+<dt><a name="set_sortkey($new_sortkey)"
+><code  class="code">set_sortkey($new_sortkey)</code></a></dt>
+
+<dd>
+<pre  class="code"> Description: Changes the sortkey of the milestone.
+
+ Params:      $new_sortkey - new sortkey of the milestone (signed integer).
+
+ Returns:     Nothing.</pre>
+
+<dt><a name="update()"
+><code  class="code">update()</code></a></dt>
+
+<dd>
+<pre  class="code"> Description: Writes the new name and/or the new sortkey into the DB.
+
+ Params:      none.
+
+ Returns:     A hashref with changes made to the milestone object.</pre>
+
+<dt><a name="remove_from_db()"
+><code  class="code">remove_from_db()</code></a></dt>
+
+<dd>
+<pre  class="code"> Description: Deletes the current milestone from the DB. The object itself
+              is not destroyed.
+
+ Params:      none.
+
+ Returns:     Nothing.</pre>
+</dd>
+</dl>
+
+<h1><a class='u' href='#___top' title='click to go to top of document'
+name="CLASS_METHODS"
+>CLASS METHODS</a></h1>
+
+<dl>
+<dt><a name="create({name_=_$name,_product_=&#62;_$product,_sortkey_=&#62;_$sortkey})&#62;"
+><code  class="code">create({name =</code> $name, product =&#62; $product, sortkey =&#62; $sortkey})&#62;</a></dt>
+
+<dd>
+<pre  class="code"> Description: Create a new milestone for the given product.
+
+ Params:      $name    - name of the new milestone (string). This name
+                         must be unique within the product.
+              $product - a Bugzilla::Product object.
+              $sortkey - the sortkey of the new milestone (signed integer)
+
+ Returns:     A Bugzilla::Milestone object.</pre>
 </dd>
 </dl>
 <p class="backlinkbottom"><b><a name="___bottom" href="../index.html" title="All Documents">&lt;&lt;</a></b></p>
diff --git a/docs/html/api/Bugzilla/Object.html b/docs/html/api/Bugzilla/Object.html
index b6fa7fd7acf86511f4e145a6a9d5b913db751d58..e425ebd54ee32e02e151984c37d8fc63b6be3e84 100644
--- a/docs/html/api/Bugzilla/Object.html
+++ b/docs/html/api/Bugzilla/Object.html
@@ -150,6 +150,13 @@ name="CONSTANTS"
 >&#34;update&#34;</a> is called, it compares each column in the object to its current value in the database. It only updates columns that have changed.</p>
 
 <p>Any column listed in NUMERIC_COLUMNS is treated as a number, not as a string, during these comparisons.</p>
+
+<dt><a name="DATE_COLUMNS"
+><code  class="code">DATE_COLUMNS</code></a></dt>
+
+<dd>
+<p>This is much like <a href="#NUMERIC_COLUMNS" class="podlinkpod"
+>&#34;NUMERIC_COLUMNS&#34;</a>, except that it treats strings as dates when being compared. So, for example, <code  class="code">2007-01-01</code> would be equal to <code  class="code">2007-01-01 00:00:00</code>.</p>
 </dd>
 </dl>
 
diff --git a/docs/html/api/Bugzilla/Product.html b/docs/html/api/Bugzilla/Product.html
index 60227fe61d847e252a011e7b8dc392136b3f0bb6..6c01b9a818beb109d927c5f5550bfaa8ba749181 100644
--- a/docs/html/api/Bugzilla/Product.html
+++ b/docs/html/api/Bugzilla/Product.html
@@ -95,6 +95,49 @@ name="METHODS"
               a Bugzilla::Group object and the properties of group
               relative to the product.</pre>
 
+<dt><a name="groups_mandatory_for"
+><code  class="code">groups_mandatory_for</code></a></dt>
+
+<dd>
+<dl>
+<dt><a name="Description"
+><b>Description</b></a></dt>
+
+<dd>
+<p>Tells you what groups are mandatory for bugs in this product.</p>
+
+<dt><a name="Params"
+><b>Params</b></a></dt>
+
+<dd>
+<p><code  class="code">$user</code> - The user who you want to check.</p>
+
+<dt><a name="Returns_An_arrayref_of_Bugzilla::Group_objects."
+><b>Returns</b> An arrayref of <code  class="code">Bugzilla::Group</code> objects.</a></dt>
+</dl>
+
+<dt><a name="groups_valid"
+><code  class="code">groups_valid</code></a></dt>
+
+<dd>
+<dl>
+<dt><a name="Description"
+><b>Description</b></a></dt>
+
+<dd>
+<p>Returns an arrayref of <a href="../Bugzilla/Group.html" class="podlinkpod"
+>Bugzilla::Group</a> objects, representing groups that bugs could validly be restricted to within this product. Used mostly by <a href="../Bugzilla/Bug.html" class="podlinkpod"
+>Bugzilla::Bug</a> to assure that you&#39;re adding valid groups to a bug.</p>
+
+<p><b>Note</b>: This doesn&#39;t check whether or not the current user can add/remove bugs to/from these groups. It just tells you that bugs <i>could be in</i> these groups, in this product.</p>
+
+<dt><a name="Params_(none)"
+><b>Params</b> (none)
+<dt><a name="Returns_An_arrayref_of_Bugzilla::Group_objects."
+><b>Returns</b> An arrayref of <a href="../Bugzilla/Group.html" class="podlinkpod"
+>Bugzilla::Group</a> objects.</a></dt>
+</dl>
+
 <dt><a name="versions()"
 ><code  class="code">versions()</code></a></dt>
 
diff --git a/docs/html/api/Bugzilla/Status.html b/docs/html/api/Bugzilla/Status.html
index baee695e8b7bfe9441e65755a2286c30566aa0e6..baed93eb14896e6f7c7e3ed0b1bff94dd565b227 100644
--- a/docs/html/api/Bugzilla/Status.html
+++ b/docs/html/api/Bugzilla/Status.html
@@ -34,7 +34,7 @@ name="SYNOPSIS"
     my $bug_status = new Bugzilla::Status({name =&#62; &#39;ASSIGNED&#39;});
     my $bug_status = new Bugzilla::Status(4);
 
-    my @closed_bug_statuses = Bugzilla::Status::closed_bug_statuses();
+    my @closed_bug_statuses = closed_bug_statuses();
 
     Bugzilla::Status::add_missing_bug_status_transitions($bug_status);</pre>
 
@@ -90,6 +90,67 @@ name="METHODS"
 
  Returns:     A list of Bugzilla::Status objects.</pre>
 
+<dt><a name="allow_change_from"
+><code  class="code">allow_change_from</code></a></dt>
+
+<dd>
+<dl>
+<dt><a name="Description"
+><b>Description</b></a></dt>
+
+<dd>
+<p>Tells you whether or not a change to this status from another status is allowed.</p>
+
+<dt><a name="Params"
+><b>Params</b></a></dt>
+
+<dd>
+<dl>
+<dt><a name="$old_status_-_The_Bugzilla::Status_you&#39;re_changing_from."
+><code  class="code">$old_status</code> - The Bugzilla::Status you&#39;re changing from.
+<dt><a 
+><code  class="code">$product</code> - A <a href="../Bugzilla/Product.html" class="podlinkpod"
+>Bugzilla::Product</a> representing the product of the bug you&#39;re changing. Needed to check product-specific workflow issues (such as whether or not the <code  class="code">UNCONFIRMED</code> status is enabled in this product).</a></dt>
+</dl>
+
+<dt><a name="Returns"
+><b>Returns</b></a></dt>
+
+<dd>
+<p><code  class="code">1</code> if you are allowed to change to this status from that status, or <code  class="code">0</code> if you aren&#39;t allowed.</p>
+
+<p>Note that changing from a status to itself is always allowed.</p>
+</dd>
+</dl>
+
+<dt><a name="comment_required_on_change_from"
+><code  class="code">comment_required_on_change_from</code></a></dt>
+
+<dd>
+<dl>
+<dt><a name="Description"
+><b>Description</b></a></dt>
+
+<dd>
+<p>Checks if a comment is required to change to this status from another status, according to the current settings in the workflow.</p>
+
+<p>Note that this doesn&#39;t implement the checks enforced by the various <code  class="code">commenton</code> parameters--those are checked by internal checks in <a href="../Bugzilla/Bug.html" class="podlinkpod"
+>Bugzilla::Bug</a>.</p>
+
+<dt><a name="Params"
+><b>Params</b></a></dt>
+
+<dd>
+<p><code  class="code">$old_status</code> - The status you&#39;re changing from.</p>
+
+<dt><a name="Returns"
+><b>Returns</b></a></dt>
+
+<dd>
+<p><code  class="code">1</code> if a comment is required on this change, <code  class="code">0</code> if not.</p>
+</dd>
+</dl>
+
 <dt><a name="add_missing_bug_status_transitions"
 ><code  class="code">add_missing_bug_status_transitions</code></a></dt>
 
diff --git a/docs/html/api/Bugzilla/User/Setting.html b/docs/html/api/Bugzilla/User/Setting.html
index 8c39224fce98c6a01a2f5c183668e4cc777aa02b..2da8826b59119422a658c8b07e0aab33a1e54727 100644
--- a/docs/html/api/Bugzilla/User/Setting.html
+++ b/docs/html/api/Bugzilla/User/Setting.html
@@ -59,17 +59,22 @@ name="CLASS_FUNCTIONS"
 >CLASS FUNCTIONS</a></h1>
 
 <dl>
-<dt><a name="add_setting($name,_\@values,_$default_value)"
+<dt><a name="add_setting($name,_\@values,_$default_value,_$subclass,_$force_check)"
 ><code  class="code">add_setting($name,
 \@values,
-$default_value)</code></a></dt>
+$default_value,
+$subclass,
+$force_check)</code></a></dt>
 
 <dd>
 <p>Description: Checks for the existence of a setting,
 and adds it to the database if it does not yet exist.</p>
 
 <p>Params: <code  class="code">$name</code> - string - the name of the new setting <code  class="code">$values</code> - arrayref - contains the new choices for the new Setting.
-<code  class="code">$default_value</code> - string - the site default</p>
+<code  class="code">$default_value</code> - string - the site default <code  class="code">$subclass</code> - string - name of the module returning the list of valid values.
+This means legal values are not stored in the DB.
+<code  class="code">$force_check</code> - boolean - when true,
+the existing setting and all its values are deleted and replaced by new data.</p>
 
 <p>Returns: a pointer to a hash of settings</p>
 
@@ -157,8 +162,8 @@ name="POD_ERRORS"
 which are explained below:</b></p>
 
 <dl>
-<dt><a name="Around_line_390:"
->Around line 390:</a></dt>
+<dt><a name="Around_line_396:"
+>Around line 396:</a></dt>
 
 <dd>
 <p>You forgot a &#39;=back&#39; before &#39;=head1&#39;</p>
diff --git a/docs/html/api/Bugzilla/Util.html b/docs/html/api/Bugzilla/Util.html
index 860b54eceabf8cb479ad924523e7d26d4d3c0b4b..99cbbd8b187b15666a5dc8552dec976cbc9f2f4f 100644
--- a/docs/html/api/Bugzilla/Util.html
+++ b/docs/html/api/Bugzilla/Util.html
@@ -52,7 +52,6 @@ name="SYNOPSIS"
   # Functions for quoting
   html_quote($var);
   url_quote($var);
-  value_quote($var);
   xml_quote($var);
 
   # Functions for decoding
@@ -170,12 +169,6 @@ name="Quoting"
 <dd>
 <p>Quotes characters so that they may be used as CSS class names. Spaces are replaced by underscores.</p>
 
-<dt><a name="value_quote($val)"
-><code  class="code">value_quote($val)</code></a></dt>
-
-<dd>
-<p>As well as escaping html like <code  class="code">html_quote</code>, this routine converts newlines into &#38;#013;, suitable for use in html attributes.</p>
-
 <dt><a name="xml_quote($val)"
 ><code  class="code">xml_quote($val)</code></a></dt>
 
@@ -272,6 +265,12 @@ name="String_Manipulation"
 <dd>
 <p>Takes two strings containing a list of comma- or space-separated items and returns what items were removed from or added to the new one, compared to the old one. Returns a list, where the first entry is a scalar containing removed items, and the second entry is a scalar containing added items.</p>
 
+<dt><a name="wrap_hard($string,_$size)"
+><code  class="code">wrap_hard($string, $size)</code></a></dt>
+
+<dd>
+<p>Wraps a string, so that a line is <i>never</i> longer than <code  class="code">$size</code>. Returns the string, wrapped.</p>
+
 <dt><a name="wrap_comment($comment)"
 ><code  class="code">wrap_comment($comment)</code></a></dt>
 
diff --git a/docs/html/api/Bugzilla/WebService/Bug.html b/docs/html/api/Bugzilla/WebService/Bug.html
index c28cad7f9475788b80fd8ab34537c2592984ea36..acb47243b84d93136bcdc89add71a1990fa6f398 100644
--- a/docs/html/api/Bugzilla/WebService/Bug.html
+++ b/docs/html/api/Bugzilla/WebService/Bug.html
@@ -114,8 +114,8 @@ name="Bug_Creation_and_Modification"
 >Bug Creation and Modification</a></h2>
 
 <dl>
-<dt><a name="get_bugs_EXPERIMENTAL"
-><code  class="code">get_bugs</code> <b>EXPERIMENTAL</b></a></dt>
+<dt><a name="get_EXPERIMENTAL"
+><code  class="code">get</code> <b>EXPERIMENTAL</b></a></dt>
 
 <dd>
 <dl>
@@ -125,6 +125,8 @@ name="Bug_Creation_and_Modification"
 <dd>
 <p>Gets information about particular bugs in the database.</p>
 
+<p>Note: Can also be called as &#34;get_bugs&#34; for compatibilty with Bugzilla 3.0 API.</p>
+
 <dt><a name="Params"
 ><b>Params</b></a></dt>
 
@@ -327,6 +329,12 @@ This is the id of the newly-filed bug.</p>
 
 <dd>
 <dl>
+<dt><a name="51_(Invalid_Object)"
+>51 (Invalid Object)</a></dt>
+
+<dd>
+<p>The component you specified is not valid for this Product.</p>
+
 <dt><a name="103_(Invalid_Alias)"
 >103 (Invalid Alias)</a></dt>
 
@@ -338,15 +346,15 @@ See the error message for more details.</p>
 >104 (Invalid Field)</a></dt>
 
 <dd>
-<p>One of the drop-down fields has an invalid value.
+<p>One of the drop-down fields has an invalid value,
+or a value entered in a text field is too long.
 The error message will have more detail.</p>
 
 <dt><a name="105_(Invalid_Component)"
 >105 (Invalid Component)</a></dt>
 
 <dd>
-<p>Either you didn&#39;t specify a component,
-or the component you specified was invalid.</p>
+<p>You didn&#39;t specify a component.</p>
 
 <dt><a name="106_(Invalid_Product)"
 >106 (Invalid Product)</a></dt>
@@ -374,6 +382,63 @@ The error message will have more details.</p>
 </dl>
 </dd>
 </dl>
+
+<dt><a name="add_comment_EXPERIMENTAL"
+><code  class="code">add_comment</code> <b>EXPERIMENTAL</b></a></dt>
+
+<dd>
+<dl>
+<dt><a name="Description"
+><b>Description</b></a></dt>
+
+<dd>
+<p>This allows you to add a comment to a bug in Bugzilla.</p>
+
+<dt><a name="Params"
+><b>Params</b></a></dt>
+
+<dd>
+<dl>
+<dt><a name="id_(int)_Required_-_The_id_or_alias_of_the_bug_to_append_a_comment_to."
+><code  class="code">id</code> (int) <b>Required</b> - The id or alias of the bug to append a comment to.
+<dt><a name="comment_(string)_Required_-_The_comment_to_append_to_the_bug."
+><code  class="code">comment</code> (string) <b>Required</b> - The comment to append to the bug.
+<dt><a name="private_(boolean)_-_If_set_to_true,_the_comment_is_private,_otherwise_it_is_assumed_to_be_public."
+><code  class="code">private</code> (boolean) - If set to true,
+the comment is private,
+otherwise it is assumed to be public.
+<dt><a 
+><code  class="code">work_time</code> (double) - Adds this many hours to the &#34;Hours Worked&#34; on the bug.
+If you are not in the time tracking group,
+this value will be ignored.</a></dt>
+</dl>
+
+<dt><a name="Errors"
+><b>Errors</b></a></dt>
+
+<dd>
+<dl>
+<dt><a name="100_(Invalid_Bug_Alias)"
+>100 (Invalid Bug Alias)</a></dt>
+
+<dd>
+<p>If you specified an alias and either: (a) the Bugzilla you&#39;re querying doesn&#39;t support aliases or (b) there is no bug with that alias.</p>
+
+<dt><a name="101_(Invalid_Bug_ID)"
+>101 (Invalid Bug ID)</a></dt>
+
+<dd>
+<p>The id you specified doesn&#39;t exist in the database.</p>
+
+<dt><a name="108_(Bug_Edit_Denied)"
+>108 (Bug Edit Denied)</a></dt>
+
+<dd>
+<p>You did not have the necessary rights to edit the bug.</p>
+</dd>
+</dl>
+</dd>
+</dl>
 </dd>
 </dl>
 <p class="backlinkbottom"><b><a name="___bottom" href="../../index.html" title="All Documents">&lt;&lt;</a></b></p>
diff --git a/docs/html/api/Bugzilla/WebService/Bugzilla.html b/docs/html/api/Bugzilla/WebService/Bugzilla.html
index e4d88f3a1ad6a612e772de4cf60dd75e4942253d..2647487f5928615984dbe0a9e5a08b0522b9afba 100644
--- a/docs/html/api/Bugzilla/WebService/Bugzilla.html
+++ b/docs/html/api/Bugzilla/WebService/Bugzilla.html
@@ -65,6 +65,31 @@ that is the version as a string.</p>
 ><b>Errors</b> (none)</a></dt>
 </dl>
 
+<dt><a name="plugins_EXPERIMENTAL"
+><code  class="code">plugins</code> <b>EXPERIMENTAL</b></a></dt>
+
+<dd>
+<dl>
+<dt><a name="Description"
+><b>Description</b></a></dt>
+
+<dd>
+<p>Gets information about the plugins that are currently installed and enabled in this Bugzilla.</p>
+
+<dt><a name="Params_(none)"
+><b>Params</b> (none)
+<dt><a name="Returns"
+><b>Returns</b></a></dt>
+
+<dd>
+<p>A hash with a single item,
+<code  class="code">plugins</code>.
+This points to a hash.
+<i>That</i> hash contains the names of plugins as keys,
+and the versions of the plugin as values.</p>
+</dd>
+</dl>
+
 <dt><a name="timezone_EXPERIMENTAL"
 ><code  class="code">timezone</code> <b>EXPERIMENTAL</b></a></dt>
 
diff --git a/docs/html/api/CVS/Entries b/docs/html/api/CVS/Entries
index b36922754f96d6bcddc4df7a4d5ced0de9873b06..acf4d5691994666f3633eab3ad4365ec2ba5eb01 100644
--- a/docs/html/api/CVS/Entries
+++ b/docs/html/api/CVS/Entries
@@ -1,3 +1,3 @@
-/.cvsignore/1.1/Tue Sep  5 19:00:55 2006//TBUGZILLA-3_1_2
-/style.css/1.1/Tue Sep  5 19:00:55 2006//TBUGZILLA-3_1_2
+/.cvsignore/1.1/Tue Sep  5 19:00:55 2006//TBUGZILLA-3_1_3
+/style.css/1.1/Tue Sep  5 19:00:55 2006//TBUGZILLA-3_1_3
 D
diff --git a/docs/html/api/CVS/Tag b/docs/html/api/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/docs/html/api/CVS/Tag
+++ b/docs/html/api/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/docs/html/api/checksetup.html b/docs/html/api/checksetup.html
index 77275aa5950c4cf49cf4281a8bc8ebfd4f24a40a..5a11285e6dd4718aa5876c14f191effa0690d1e8 100644
--- a/docs/html/api/checksetup.html
+++ b/docs/html/api/checksetup.html
@@ -38,7 +38,8 @@ name="SYNOPSIS"
 
 <pre  class="code"> ./checksetup.pl [--help|--check-modules]
  ./checksetup.pl [SCRIPT [--verbose]] [--no-templates|-t]
-                 [--make-admin=user@domain.com]</pre>
+                 [--make-admin=user@domain.com]
+                 [--reset-password=user@domain.com]</pre>
 
 <h1><a class='u' href='#___top' title='click to go to top of document'
 name="OPTIONS"
@@ -70,6 +71,12 @@ name="OPTIONS"
 <dd>
 <p>Makes the specified user into a Bugzilla administrator. This is in case you accidentally lock yourself out of the Bugzilla administrative interface.</p>
 
+<dt><a name="--reset-password=user@domain.com"
+><b>--reset-password</b>=user@domain.com</a></dt>
+
+<dd>
+<p>Resets the specified user&#39;s password. checksetup.pl will prompt you to enter a new password for the user.</p>
+
 <dt><a name="--no-templates_(-t)"
 ><b>--no-templates</b> (<b>-t</b>)</a></dt>
 
diff --git a/docs/html/api/contrib/bz_webservice_demo.html b/docs/html/api/contrib/bz_webservice_demo.html
index dfac5dc4414bd033d1ddc52b9dc1136ba7f8c4ad..19bd75ce5dfb292ffb070c56dcaec1bcab3824a9 100644
--- a/docs/html/api/contrib/bz_webservice_demo.html
+++ b/docs/html/api/contrib/bz_webservice_demo.html
@@ -29,6 +29,7 @@ bz_webservice_demo.pl</title>
     <li class='indexItem indexItem2'><a href='#Retrieving_Product_Information'>Retrieving Product Information</a>
     <li class='indexItem indexItem2'><a href='#Creating_A_Bug'>Creating A Bug</a>
     <li class='indexItem indexItem2'><a href='#Getting_Legal_Field_Values'>Getting Legal Field Values</a>
+    <li class='indexItem indexItem2'><a href='#Adding_a_comment_to_a_bug'>Adding a comment to a bug</a>
   </ul>
   <li class='indexItem indexItem1'><a href='#NOTES'>NOTES</a>
   <ul   class='indexList indexList2'>
@@ -93,7 +94,7 @@ Specify this together with <b>--login</b> in order to log in.</p>
 >--rememberlogin</a></dt>
 
 <dd>
-<p>Gives access to Bugzilla&#39;s &#226;&#128;&#156;Bugzilla_remember&#226;&#128;&#157; option.
+<p>Gives access to Bugzilla&#39;s &#34;Bugzilla_remember&#34; option.
 Specify this option while logging in to do the same thing as ticking the <code  class="code">Bugzilla_remember</code> box on Bugilla&#39;s log in form.
 Don&#39;t specify this option to do the same thing as unchecking the box.</p>
 
@@ -128,6 +129,25 @@ rep_platform,
 op_sys,
 priority,
 bug_severity) or a custom select field.</p>
+
+<dt><a name="--comment"
+>--comment</a></dt>
+
+<dd>
+<p>A comment to add to a bug identified by <b>--bug_id</b>.
+You must also pass a <b>--login</b> and <b>--password</b> to log in to Bugzilla.</p>
+
+<dt><a name="--private"
+>--private</a></dt>
+
+<dd>
+<p>An optional non-zero value to specify <b>--comment</b> as private.</p>
+
+<dt><a name="--worktime"
+>--worktime</a></dt>
+
+<dd>
+<p>An optional double precision number specifying the work time for <b>--comment</b>.</p>
 </dd>
 </dl>
 
@@ -187,9 +207,11 @@ Bugzilla&#39;s defaults apply (as specified by its <code  class="code">rememberl
 name="Retrieving_Bug_Information"
 >Retrieving Bug Information</a></h2>
 
-<p>Call <code  class="code">Bug.get_bug</code> with the ID of the bug you want to know more of.
+<p>Call <code  class="code">Bug.get</code> with the ID of the bug you want to know more of.
 The call will return a <code  class="code">Bugzilla::Bug</code> object.</p>
 
+<p>Note: You can also use &#34;Bug.get_bugs&#34; for compatibility with Bugzilla 3.0 API.</p>
+
 <h2><a class='u' href='#___top' title='click to go to top of document'
 name="Retrieving_Product_Information"
 >Retrieving Product Information</a></h2>
@@ -212,6 +234,15 @@ name="Getting_Legal_Field_Values"
 <p>Call <code  class="code">Bug.legal_values</code> with the name of the field (including custom select fields).
 The call will return a reference to an array with the list of legal values for this field.</p>
 
+<h2><a class='u' href='#___top' title='click to go to top of document'
+name="Adding_a_comment_to_a_bug"
+>Adding a comment to a bug</a></h2>
+
+<p>Call <code  class="code">Bug.add_comment</code> with the bug id,
+the comment text,
+and optionally the number of hours you worked on the bug,
+and a boolean indicating if the comment is private or not.</p>
+
 <h1><a class='u' href='#___top' title='click to go to top of document'
 name="NOTES"
 >NOTES</a></h1>
diff --git a/docs/html/api/email_in.html b/docs/html/api/email_in.html
index 3495b786596621b240670697977aac914fa0af8c..9d248b36ef338f7231570ea13f10141c4972596e 100644
--- a/docs/html/api/email_in.html
+++ b/docs/html/api/email_in.html
@@ -74,7 +74,16 @@ name="Creating_a_New_Bug"
  This is a signature line, and will be removed automatically, It will not
  be included in the bug description.</pre>
 
-<p>The <code  class="code">@</code> labels can be any valid field name in Bugzilla that can be set on <code  class="code">enter_bug.cgi</code>. For the list of field names, see the <code  class="code">fielddefs</code> table in the database. The above example shows the minimum fields you <b>must</b> specify.</p>
+<p>The <code  class="code">@</code> labels can be any valid field name in Bugzilla that can be set on <code  class="code">enter_bug.cgi</code>. For the list of required field names, see <a href="./Bugzilla/WebService/Bug.html#Create" class="podlinkpod"
+>&#34;Create&#34; in Bugzilla::WebService::Bug</a>. Note, that there is some difference in the names of the required input fields between web and email interfaces, as listed below:</p>
+
+<ul>
+<li><code  class="code">platform</code> in web is <code  class="code">@rep_platform</code> in email</li>
+
+<li><code  class="code">severity</code> in web is <code  class="code">@bug_severity</code> in email</li>
+</ul>
+
+<p>For the list of all field names, see the <code  class="code">fielddefs</code> table in the database.</p>
 
 <p>The values for the fields can be split across multiple lines, but note that a newline will be parsed as a single space, for the value. So, for example:</p>
 
diff --git a/docs/html/api/index.html b/docs/html/api/index.html
index 1f624eb96d2e401af85878928fdd9448bd899983..a03f65e1fe91063181dfd953ac8f62a547b0a483 100644
--- a/docs/html/api/index.html
+++ b/docs/html/api/index.html
@@ -2,13 +2,13 @@
 <html>
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-    <title>Bugzilla 3.1.2 API Documentation</title>
+    <title>Bugzilla 3.1.3 API Documentation</title>
   
 <link rel="stylesheet" title="style" type="text/css" href="style.css" media="all" >
 
 </head>
   <body class="contentspage">
-    <h1>Bugzilla 3.1.2 API Documentation</h1>
+    <h1>Bugzilla 3.1.3 API Documentation</h1>
 <dl class='superindex'>
 <dt><a name="Files">Files</a></dt>
 <dd>
@@ -41,6 +41,14 @@
   <th><a href="./importxml.html">importxml</a></th>
   <td>Import bugzilla bug data from xml.</td>
 </tr>
+<tr class="odd">
+  <th><a href="./install-module.html">install-module</a></th>
+  <td>Installs or upgrades modules from CPAN</td>
+</tr>
+<tr class="even">
+  <th><a href="./sanitycheck.html">sanitycheck</a></th>
+  <td>Perl script to perform a sanity check at the command line</td>
+</tr>
 </table></dd>
 
 <dt><a name="Modules">Modules</a></dt>
@@ -95,41 +103,49 @@
   <td>Bugzilla database compatibility layer for MySQL</td>
 </tr>
 <tr class="even">
+  <th><a href="./Bugzilla/DB/Oracle.html">Bugzilla::DB::Oracle</a></th>
+  <td>Bugzilla database compatibility layer for Oracle</td>
+</tr>
+<tr class="odd">
   <th><a href="./Bugzilla/DB/Pg.html">Bugzilla::DB::Pg</a></th>
   <td>Bugzilla database compatibility layer for PostgreSQL</td>
 </tr>
-<tr class="odd">
+<tr class="even">
   <th><a href="./Bugzilla/DB/Schema.html">Bugzilla::DB::Schema</a></th>
   <td>Abstract database schema for Bugzilla</td>
 </tr>
-<tr class="even">
+<tr class="odd">
   <th><a href="./Bugzilla/Error.html">Bugzilla::Error</a></th>
   <td>Error handling utilities for Bugzilla</td>
 </tr>
-<tr class="odd">
+<tr class="even">
   <th><a href="./Bugzilla/Field.html">Bugzilla::Field</a></th>
   <td>a particular piece of information about bugs and useful routines for form field manipulation</td>
 </tr>
-<tr class="even">
+<tr class="odd">
   <th><a href="./Bugzilla/Flag.html">Bugzilla::Flag</a></th>
   <td>A module to deal with Bugzilla flag values.</td>
 </tr>
-<tr class="odd">
+<tr class="even">
   <th><a href="./Bugzilla/FlagType.html">Bugzilla::FlagType</a></th>
   <td>A module to deal with Bugzilla flag types.</td>
 </tr>
-<tr class="even">
+<tr class="odd">
   <th><a href="./Bugzilla/Group.html">Bugzilla::Group</a></th>
   <td>Bugzilla group class.</td>
 </tr>
-<tr class="odd">
+<tr class="even">
   <th><a href="./Bugzilla/Hook.html">Bugzilla::Hook</a></th>
-  <td>Extendible extension hooks for Bugzilla code</td>
+  <td>Extendable extension hooks for Bugzilla code</td>
 </tr>
-<tr class="even">
+<tr class="odd">
   <th><a href="./Bugzilla/Install.html">Bugzilla::Install</a></th>
   <td>Functions and variables having to do with installation.</td>
 </tr>
+<tr class="even">
+  <th><a href="./Bugzilla/Install/CPAN.html">Bugzilla::Install::CPAN</a></th>
+  <td>Routines to install Perl modules from CPAN.</td>
+</tr>
 <tr class="odd">
   <th><a href="./Bugzilla/Install/DB.html">Bugzilla::Install::DB</a></th>
   <td>Fix up the database during installation.</td>
diff --git a/docs/html/api/install-module.html b/docs/html/api/install-module.html
new file mode 100644
index 0000000000000000000000000000000000000000..78ccc19a92da3f37b983d40ac28033e217786a48
--- /dev/null
+++ b/docs/html/api/install-module.html
@@ -0,0 +1,90 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html>
+  <head>
+    <title>
+install-module.pl</title>
+    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+  <link rel="stylesheet" title="style" type="text/css" href="style.css" media="all" >
+
+</head>
+  <body id="pod">
+<p class="backlinktop"><b><a name="___top" href="index.html" accesskey="1" title="All Documents">&lt;&lt;</a></b></p>
+<h1>install-module.pl</h1>
+<div class='indexgroup'>
+<ul   class='indexList indexList1'>
+  <li class='indexItem indexItem1'><a href='#NAME'>NAME</a>
+  <li class='indexItem indexItem1'><a href='#SYNOPSIS'>SYNOPSIS</a>
+  <li class='indexItem indexItem1'><a href='#OPTIONS'>OPTIONS</a>
+</ul>
+</div>
+
+<h1><a class='u' href='#___top' title='click to go to top of document'
+name="NAME"
+>NAME</a></h1>
+
+<p>install-module.pl - Installs or upgrades modules from CPAN</p>
+
+<h1><a class='u' href='#___top' title='click to go to top of document'
+name="SYNOPSIS"
+>SYNOPSIS</a></h1>
+
+<pre  class="code">  ./install-module.pl Module::Name [--global]
+  ./install-module.pl --all [--global]
+  ./install-module.pl --all-upgrade [--global]
+  ./install-module.pl --show-config
+
+  Do &#34;./install-module.pl --help&#34; for more information.</pre>
+
+<h1><a class='u' href='#___top' title='click to go to top of document'
+name="OPTIONS"
+>OPTIONS</a></h1>
+
+<dl>
+<dt><a name="Module::Name"
+><b>Module::Name</b></a></dt>
+
+<dd>
+<p>The name of a module that you want to install from CPAN. This is the same thing that you&#39;d give to the <code  class="code">install</code> command in the CPAN shell.</p>
+
+<p>You can specify multiple module names separated by a space to install multiple modules.</p>
+
+<dt><a name="--global"
+><b>--global</b></a></dt>
+
+<dd>
+<p>This makes install-module install modules globally for all applications, instead of just for Bugzilla.</p>
+
+<p>On most systems, you have to be root for <code  class="code">--global</code> to work.</p>
+
+<dt><a name="--all"
+><b>--all</b></a></dt>
+
+<dd>
+<p>This will make install-module do its best to install every required and optional module that is not installed that Bugzilla can use.</p>
+
+<p>Some modules may fail to install. You can run checksetup.pl to see which installed properly.</p>
+
+<dt><a name="--upgrade-all"
+><b>--upgrade-all</b></a></dt>
+
+<dd>
+<p>This is like <code  class="code">--all</code>, except it forcibly installs the very latest version of every Bugzilla prerequisite, whether or not you already have them installed.</p>
+
+<dt><a name="--show-config"
+><b>--show-config</b></a></dt>
+
+<dd>
+<p>Prints out the CPAN configuration in raw Perl format. Useful for debugging.</p>
+
+<dt><a name="--help"
+><b>--help</b></a></dt>
+
+<dd>
+<p>Shows this help.</p>
+</dd>
+</dl>
+<p class="backlinkbottom"><b><a name="___bottom" href="index.html" title="All Documents">&lt;&lt;</a></b></p>
+
+<!-- end doc -->
+
+</body></html>
diff --git a/docs/html/api/sanitycheck.html b/docs/html/api/sanitycheck.html
new file mode 100644
index 0000000000000000000000000000000000000000..0f3039ea18b32175e69b0f84c6109040fe95aece
--- /dev/null
+++ b/docs/html/api/sanitycheck.html
@@ -0,0 +1,69 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html>
+  <head>
+    <title>
+sanitycheck.pl</title>
+    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+  <link rel="stylesheet" title="style" type="text/css" href="style.css" media="all" >
+
+</head>
+  <body id="pod">
+<p class="backlinktop"><b><a name="___top" href="index.html" accesskey="1" title="All Documents">&lt;&lt;</a></b></p>
+<h1>sanitycheck.pl</h1>
+<div class='indexgroup'>
+<ul   class='indexList indexList1'>
+  <li class='indexItem indexItem1'><a href='#NAME'>NAME</a>
+  <li class='indexItem indexItem1'><a href='#SYNOPSIS'>SYNOPSIS</a>
+  <li class='indexItem indexItem1'><a href='#OPTIONS'>OPTIONS</a>
+  <li class='indexItem indexItem1'><a href='#DESCRIPTION'>DESCRIPTION</a>
+</ul>
+</div>
+
+<h1><a class='u' href='#___top' title='click to go to top of document'
+name="NAME"
+>NAME</a></h1>
+
+<p>sanitycheck.pl - Perl script to perform a sanity check at the command line</p>
+
+<h1><a class='u' href='#___top' title='click to go to top of document'
+name="SYNOPSIS"
+>SYNOPSIS</a></h1>
+
+<pre  class="code"> ./sanitycheck.pl [--help]
+ ./sanitycheck.pl [--verbose] --login &#60;user@domain.com&#62;</pre>
+
+<h1><a class='u' href='#___top' title='click to go to top of document'
+name="OPTIONS"
+>OPTIONS</a></h1>
+
+<dl>
+<dt><a name="--help"
+><b>--help</b></a></dt>
+
+<dd>
+<p>Displays this help text</p>
+
+<dt><a name="--verbose"
+><b>--verbose</b></a></dt>
+
+<dd>
+<p>Causes this script to be more verbose in its output. Without this option, the script will return only errors. With the option, the script will append all output to the email.</p>
+
+<dt><a name="--login"
+><b>--login</b></a></dt>
+
+<dd>
+<p>This should be passed the email address of a user that is capable of running the Sanity Check process, a user with the editcomponents priv. This user will receive an email with the results of the script run.</p>
+</dd>
+</dl>
+
+<h1><a class='u' href='#___top' title='click to go to top of document'
+name="DESCRIPTION"
+>DESCRIPTION</a></h1>
+
+<p>This script provides a way of running a &#39;Sanity Check&#39; on the database via either a CLI or cron. It is equivalent to calling sanitycheck.cgi via a web broswer.</p>
+<p class="backlinkbottom"><b><a name="___bottom" href="index.html" title="All Documents">&lt;&lt;</a></b></p>
+
+<!-- end doc -->
+
+</body></html>
diff --git a/docs/html/attachments.html b/docs/html/attachments.html
index 7bb34d75c7681c7192bb99ca387e33799c747cac..bd2692958ef7ae11b8203fa2a4aeaba4c6382d4d 100644
--- a/docs/html/attachments.html
+++ b/docs/html/attachments.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/bug_page.html b/docs/html/bug_page.html
index e8e52879815447e5508ea73268b76021fe15510c..70fb2ac35514b53c6b9c45f4bdeabeee47bf404e 100644
--- a/docs/html/bug_page.html
+++ b/docs/html/bug_page.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/bugreports.html b/docs/html/bugreports.html
index 061032b23899e53a789f843f71f4e98f806e5238..6668165ad6c99f57b76533680396e758c61c91f6 100644
--- a/docs/html/bugreports.html
+++ b/docs/html/bugreports.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/classifications.html b/docs/html/classifications.html
index a2472bd3cbc978d2674b3c7db6f4b6b5f1982903..c6fb1c0dcef48c5560f1f31d8d97d541945f70dc 100644
--- a/docs/html/classifications.html
+++ b/docs/html/classifications.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/cmdline-bugmail.html b/docs/html/cmdline-bugmail.html
index fcb056f44e1500e43620dc7da919b72cf83b8726..a718885d796a2896d1bfbc8a8dd98c5b68f9e96a 100644
--- a/docs/html/cmdline-bugmail.html
+++ b/docs/html/cmdline-bugmail.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -57,7 +57,7 @@ ACCESSKEY="P"
 WIDTH="80%"
 ALIGN="center"
 VALIGN="bottom"
->Appendix C. Contrib</TD
+>Appendix B. Contrib</TD
 ><TD
 WIDTH="10%"
 ALIGN="right"
@@ -78,7 +78,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="cmdline-bugmail"
->C.2. Command-line 'Send Unsent Bug-mail' tool</A
+>B.2. Command-line 'Send Unsent Bug-mail' tool</A
 ></H1
 ><P
 >&#13;      Within the <TT
diff --git a/docs/html/cmdline.html b/docs/html/cmdline.html
index beea775a2c0795b5c7bb14b17548234a85ed5cd7..7190d0054938991dbffdba8bc8b8adc9994c2225 100644
--- a/docs/html/cmdline.html
+++ b/docs/html/cmdline.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -57,7 +57,7 @@ ACCESSKEY="P"
 WIDTH="80%"
 ALIGN="center"
 VALIGN="bottom"
->Appendix C. Contrib</TD
+>Appendix B. Contrib</TD
 ><TD
 WIDTH="10%"
 ALIGN="right"
@@ -78,7 +78,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="cmdline"
->C.1. Command-line Search Interface</A
+>B.1. Command-line Search Interface</A
 ></H1
 ><P
 >&#13;      There are a suite of Unix utilities for searching Bugzilla from the 
diff --git a/docs/html/components.html b/docs/html/components.html
index 1474e5cbc1d8d07732ec9ad6d1d78bf394494189..da4a8154a857495be3c8f8000289d05f18109192 100644
--- a/docs/html/components.html
+++ b/docs/html/components.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -109,20 +109,52 @@ NAME="components"
 TYPE="1"
 ><LI
 ><P
->Select the "Edit components" link from the "Edit product"
-        page</P
+>Select the <SPAN
+CLASS="QUOTE"
+>"Edit components"</SPAN
+> link 
+        from the <SPAN
+CLASS="QUOTE"
+>"Edit product"</SPAN
+> page</P
 ></LI
 ><LI
 ><P
->Select the "Add" link in the bottom right.</P
+>Select the <SPAN
+CLASS="QUOTE"
+>"Add"</SPAN
+> link in the bottom right.</P
 ></LI
 ><LI
 ><P
->Fill out the "Component" field, a short "Description", 
-        the "Default Assignee" and "Default QA Contact" (if enabled). 
-        The Component and Description fields may contain HTML; 
-        the "Default Assignee" field must be a login name
-        already existing in the database. 
+>Fill out the <SPAN
+CLASS="QUOTE"
+>"Component"</SPAN
+> field, a 
+        short <SPAN
+CLASS="QUOTE"
+>"Description"</SPAN
+>, the 
+        <SPAN
+CLASS="QUOTE"
+>"Default Assignee"</SPAN
+>, <SPAN
+CLASS="QUOTE"
+>"Default CC List"</SPAN
+> 
+        and <SPAN
+CLASS="QUOTE"
+>"Default QA Contact"</SPAN
+> (if enabled). 
+        The <SPAN
+CLASS="QUOTE"
+>"Component Description"</SPAN
+> field may contain a 
+        limited subset of HTML tags. The <SPAN
+CLASS="QUOTE"
+>"Default Assignee"</SPAN
+> 
+        field must be a login name already existing in the Bugzilla database. 
         </P
 ></LI
 ></OL
diff --git a/docs/html/configuration.html b/docs/html/configuration.html
index 10a99da471a39fb75e81cf464a9600380d1f1fa2..02ed962a8e0a7f0a5f007c7b60d60213103c308d 100644
--- a/docs/html/configuration.html
+++ b/docs/html/configuration.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -187,8 +187,43 @@ CLASS="filename"
 CLASS="filename"
 >checksetup.pl</TT
 > will subsequently display 
-        every time it in run.
+        every time it is run.
       </P
+><DIV
+CLASS="caution"
+><P
+></P
+><TABLE
+CLASS="caution"
+WIDTH="100%"
+BORDER="0"
+><TR
+><TD
+WIDTH="25"
+ALIGN="CENTER"
+VALIGN="TOP"
+><IMG
+SRC="../images/caution.gif"
+HSPACE="5"
+ALT="Caution"></TD
+><TD
+ALIGN="LEFT"
+VALIGN="TOP"
+><P
+>&#13;          If you are using suexec, you should use your own primary group
+          for <EM
+>webservergroup</EM
+> rather than leaving it
+          empty, and see the additional directions in the suexec section
+          <A
+HREF="nonroot.html#suexec"
+>Section 2.6.6.1</A
+>.
+        </P
+></TD
+></TR
+></TABLE
+></DIV
 ><P
 >&#13;        The other options in the <TT
 CLASS="filename"
@@ -1118,7 +1153,7 @@ WIDTH="100%"
 COLOR="#000000"
 ><PRE
 CLASS="programlisting"
->&#13;    PerlSwitches -I/var/www/html/bugzilla -w -T
+>&#13;    PerlSwitches -I/var/www/html/bugzilla -I/var/www/html/bugzilla/lib -w -T
     PerlConfigRequire /var/www/html/bugzilla/mod_perl.pl
                 </PRE
 ></FONT
@@ -1442,7 +1477,7 @@ CLASS="filename"
         front page. If not, consult the Troubleshooting section,
         <A
 HREF="troubleshooting.html"
->Appendix B</A
+>Appendix A</A
 >.
       </P
 ><DIV
diff --git a/docs/html/conventions.html b/docs/html/conventions.html
index 455a4cf4f4984ef6c6f03bba3d8bcca25b0fa2c4..d42cc8a16a1718d5b90742aafe54c9cfd9817b57 100644
--- a/docs/html/conventions.html
+++ b/docs/html/conventions.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -104,7 +104,7 @@ CLASS="CALSTABLE"
 ><TBODY
 ><TR
 ><TD
->Warning</TD
+>Caution</TD
 ><TD
 >&#13;            <DIV
 CLASS="caution"
@@ -137,7 +137,7 @@ VALIGN="TOP"
 ></TR
 ><TR
 ><TD
->Hint</TD
+>Hint or Tip</TD
 ><TD
 >&#13;            <DIV
 CLASS="tip"
@@ -160,7 +160,7 @@ ALT="Tip"></TD
 ALIGN="LEFT"
 VALIGN="TOP"
 ><P
->Would you like a breath mint?</P
+>For best results... </P
 ></TD
 ></TR
 ></TABLE
@@ -203,7 +203,7 @@ VALIGN="TOP"
 ></TR
 ><TR
 ><TD
->Information requiring special attention</TD
+>Warning</TD
 ><TD
 >&#13;            <DIV
 CLASS="warning"
diff --git a/docs/html/copyright.html b/docs/html/copyright.html
index 43b41e6a05ca8bf5a6ab9b090df67aa4bdca3d71..c737e77b1acfb188ad917fb6857daa3928a658ce 100644
--- a/docs/html/copyright.html
+++ b/docs/html/copyright.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -81,7 +81,7 @@ NAME="copyright"
 >1.1. Copyright Information</A
 ></H1
 ><P
->This document is copyright (c) 2000-2007 by the various
+>This document is copyright (c) 2000-2008 by the various
     Bugzilla contributors who wrote it.</P
 ><A
 NAME="AEN26"
@@ -96,7 +96,7 @@ CLASS="BLOCKQUOTE"
 	Front-Cover Texts, and with no Back-Cover Texts. A copy of
 	the license is included in <A
 HREF="gfdl.html"
->Appendix E</A
+>Appendix D</A
 >.
       </P
 ></BLOCKQUOTE
diff --git a/docs/html/credits.html b/docs/html/credits.html
index ddaf9a26ca35d4ed4e321a5e546be40d3ffbff25..3cc29a0c09f3a8732b347ea087c31d23e8140806 100644
--- a/docs/html/credits.html
+++ b/docs/html/credits.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/cust-change-permissions.html b/docs/html/cust-change-permissions.html
index d5dd1ae297aaf463d0a0c851c68bb18b31fde1f8..88feabb07cf13fa8fd3144aa1aa69c8dea45eea5 100644
--- a/docs/html/cust-change-permissions.html
+++ b/docs/html/cust-change-permissions.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -121,6 +121,19 @@ VALIGN="TOP"
       who is allowed to make what sorts of value transition.
     </P
 ><P
+>&#13;     By default, assignees, QA owners and users
+     with <EM
+>editbugs</EM
+> privileges can edit all fields of bugs, 
+     except group restrictions (unless they are members of the groups they 
+     are trying to change). Bug reporters also have the ability to edit some 
+     fields, but in a more restrictive manner. Other users, without 
+     <EM
+>editbugs</EM
+> privileges, can not edit 
+     bugs, except to comment and add themselves to the CC list.
+    </P
+><P
 >&#13;      For maximum flexibility, customizing this means editing Bugzilla's Perl 
       code. This gives the administrator complete control over exactly who is
       allowed to do what. The relevant method is called
diff --git a/docs/html/cust-hooks.html b/docs/html/cust-hooks.html
index f11d531bd2ae8807e994b7c40f7d62d2b0e2e7ac..aa5a5ca112b06e4312ff685355b1100e0696e5ff 100644
--- a/docs/html/cust-hooks.html
+++ b/docs/html/cust-hooks.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/cust-skins.html b/docs/html/cust-skins.html
index e1194e9debd5906886c5ac7cffc3d3cb2f4d75e8..5b0146311437b79b537bab1cd06027b5b1490de1 100644
--- a/docs/html/cust-skins.html
+++ b/docs/html/cust-skins.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/cust-templates.html b/docs/html/cust-templates.html
index bbfa6b11f27dd32e96167b435de7da46ff08310a..bab97ab7f3fa9f282b1422b3caf9f8c5bc7220ab 100644
--- a/docs/html/cust-templates.html
+++ b/docs/html/cust-templates.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/custom-fields.html b/docs/html/custom-fields.html
index 85639353a6f519c99e426542c0901ace05e7b840..6ecefa2684c6071d2708b75af1aac4daca9510a2 100644
--- a/docs/html/custom-fields.html
+++ b/docs/html/custom-fields.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -15,8 +15,8 @@ REL="UP"
 TITLE="Administering Bugzilla"
 HREF="administration.html"><LINK
 REL="PREVIOUS"
-TITLE="Flags"
-HREF="flags-overview.html"><LINK
+TITLE="Keywords"
+HREF="keywords.html"><LINK
 REL="NEXT"
 TITLE="Legal Values"
 HREF="edit-values.html"></HEAD
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -49,7 +49,7 @@ WIDTH="10%"
 ALIGN="left"
 VALIGN="bottom"
 ><A
-HREF="flags-overview.html"
+HREF="keywords.html"
 ACCESSKEY="P"
 >Prev</A
 ></TD
@@ -78,7 +78,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="custom-fields"
->3.9. Custom Fields</A
+>3.10. Custom Fields</A
 ></H1
 ><P
 >&#13;      One of the most requested features was the ability to add your own custom
@@ -96,7 +96,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="add-custom-fields"
->3.9.1. Adding Custom Fields</A
+>3.10.1. Adding Custom Fields</A
 ></H2
 ><P
 >&#13;        The <SPAN
@@ -151,7 +151,7 @@ CLASS="QUOTE"
               this custom field is added to the DB. See
               <A
 HREF="edit-values.html#edit-values-list"
->Section 3.10.1</A
+>Section 3.11.1</A
 > for information about editing
               legal values.
             </P
@@ -210,14 +210,14 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="edit-custom-fields"
->3.9.2. Editing Custom Fields</A
+>3.10.2. Editing Custom Fields</A
 ></H2
 ><P
 >&#13;        As soon as a custom field is created, its name and type cannot be
         changed. If this field is a drop down menu, its legal values can
         be set as described in <A
 HREF="edit-values.html#edit-values-list"
->Section 3.10.1</A
+>Section 3.11.1</A
 >. All
         other attributes can be edited as described above.
       </P
@@ -228,7 +228,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="delete-custom-fields"
->3.9.3. Deleting Custom Fields</A
+>3.10.3. Deleting Custom Fields</A
 ></H2
 ><P
 >&#13;        At this point, it is not possible to delete custom fields from
@@ -254,7 +254,7 @@ WIDTH="33%"
 ALIGN="left"
 VALIGN="top"
 ><A
-HREF="flags-overview.html"
+HREF="keywords.html"
 ACCESSKEY="P"
 >Prev</A
 ></TD
@@ -282,7 +282,7 @@ ACCESSKEY="N"
 WIDTH="33%"
 ALIGN="left"
 VALIGN="top"
->Flags</TD
+>Keywords</TD
 ><TD
 WIDTH="34%"
 ALIGN="center"
diff --git a/docs/html/customization.html b/docs/html/customization.html
index 9db0ab0bea5d8b7dcc7ec3762b853a22206431a2..0ac0e2139f3e64cc4153db39fff3bdc5c099625d 100644
--- a/docs/html/customization.html
+++ b/docs/html/customization.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -36,7 +36,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/disclaimer.html b/docs/html/disclaimer.html
index 364690c75b1b14129e7c257c04c308ba2f9c9c7c..497ed7c826ca16c9663583c14b50f5ba374a7527 100644
--- a/docs/html/disclaimer.html
+++ b/docs/html/disclaimer.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/edit-values.html b/docs/html/edit-values.html
index efaab064a384cb52703198d88ac35e3a28c07c1e..d02e22ebdfeac8f16ec78d21e5f884cf8fb30796 100644
--- a/docs/html/edit-values.html
+++ b/docs/html/edit-values.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -78,7 +78,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="edit-values"
->3.10. Legal Values</A
+>3.11. Legal Values</A
 ></H1
 ><P
 >&#13;      Since Bugzilla 2.20 RC1, legal values for Operating Systems, platforms,
@@ -96,7 +96,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="edit-values-list"
->3.10.1. Viewing/Editing legal values</A
+>3.11.1. Viewing/Editing legal values</A
 ></H2
 ><P
 >&#13;        Editing legal values requires <SPAN
@@ -121,7 +121,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="edit-values-delete"
->3.10.2. Deleting legal values</A
+>3.11.2. Deleting legal values</A
 ></H2
 ><P
 >&#13;        You can also delete legal values, but only if the two following conditions
diff --git a/docs/html/extraconfig.html b/docs/html/extraconfig.html
index cddd833af1aec28019b33f5243eb368f57d800b1..32abb777ae578c44081bb5601f265f90b45d4c3a 100644
--- a/docs/html/extraconfig.html
+++ b/docs/html/extraconfig.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -19,7 +19,7 @@ TITLE="Configuration"
 HREF="configuration.html"><LINK
 REL="NEXT"
 TITLE="Multiple Bugzilla databases with a single installation"
-HREF="x860.html"></HEAD
+HREF="multiple-bz-dbs.html"></HEAD
 ><BODY
 CLASS="section"
 BGCOLOR="#FFFFFF"
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -63,7 +63,7 @@ WIDTH="10%"
 ALIGN="right"
 VALIGN="bottom"
 ><A
-HREF="x860.html"
+HREF="multiple-bz-dbs.html"
 ACCESSKEY="N"
 >Next</A
 ></TD
@@ -944,7 +944,7 @@ WIDTH="33%"
 ALIGN="right"
 VALIGN="top"
 ><A
-HREF="x860.html"
+HREF="multiple-bz-dbs.html"
 ACCESSKEY="N"
 >Next</A
 ></TD
diff --git a/docs/html/faq.html b/docs/html/faq.html
deleted file mode 100644
index 03d31fdc7c5e6a251fa301851a37b1fb95e315ef..0000000000000000000000000000000000000000
--- a/docs/html/faq.html
+++ /dev/null
@@ -1,3667 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
-<HTML
-><HEAD
-><TITLE
->The Bugzilla FAQ</TITLE
-><META
-NAME="GENERATOR"
-CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
-REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
-    Development 
-    Release"
-HREF="index.html"><LINK
-REL="PREVIOUS"
-TITLE="Integrating Bugzilla with Third-Party Tools"
-HREF="integration.html"><LINK
-REL="NEXT"
-TITLE="Troubleshooting"
-HREF="troubleshooting.html"></HEAD
-><BODY
-CLASS="appendix"
-BGCOLOR="#FFFFFF"
-TEXT="#000000"
-LINK="#0000FF"
-VLINK="#840084"
-ALINK="#0000FF"
-><DIV
-CLASS="NAVHEADER"
-><TABLE
-SUMMARY="Header navigation table"
-WIDTH="100%"
-BORDER="0"
-CELLPADDING="0"
-CELLSPACING="0"
-><TR
-><TH
-COLSPAN="3"
-ALIGN="center"
->The Bugzilla Guide - 3.1.2 
-    Development 
-    Release</TH
-></TR
-><TR
-><TD
-WIDTH="10%"
-ALIGN="left"
-VALIGN="bottom"
-><A
-HREF="integration.html"
-ACCESSKEY="P"
->Prev</A
-></TD
-><TD
-WIDTH="80%"
-ALIGN="center"
-VALIGN="bottom"
-></TD
-><TD
-WIDTH="10%"
-ALIGN="right"
-VALIGN="bottom"
-><A
-HREF="troubleshooting.html"
-ACCESSKEY="N"
->Next</A
-></TD
-></TR
-></TABLE
-><HR
-ALIGN="LEFT"
-WIDTH="100%"></DIV
-><DIV
-CLASS="appendix"
-><H1
-><A
-NAME="faq"
-></A
->Appendix A. The Bugzilla FAQ</H1
-><P
->&#13;    This FAQ includes questions not covered elsewhere in the Guide.
-  </P
-><DIV
-CLASS="qandaset"
-><DL
-><DT
->1. <A
-HREF="faq.html#faq-general"
->General Questions</A
-></DT
-><DD
-><DL
-><DT
->A.1.1. <A
-HREF="faq.html#faq-general-tryout"
->&#13;            Can I try out Bugzilla somewhere?
-          </A
-></DT
-><DT
->A.1.2. <A
-HREF="faq.html#faq-general-license"
->&#13;            What license is Bugzilla distributed under?
-          </A
-></DT
-><DT
->A.1.3. <A
-HREF="faq.html#faq-general-support"
->&#13;            How do I get commercial support for Bugzilla?
-          </A
-></DT
-><DT
->A.1.4. <A
-HREF="faq.html#faq-general-companies"
->&#13;            What major companies or projects are currently using Bugzilla
-            for bug-tracking?
-          </A
-></DT
-><DT
->A.1.5. <A
-HREF="faq.html#faq-general-maintainers"
->&#13;            Who maintains Bugzilla?
-          </A
-></DT
-><DT
->A.1.6. <A
-HREF="faq.html#faq-general-compare"
->&#13;            How does Bugzilla stack up against other bug-tracking databases?
-          </A
-></DT
-><DT
->A.1.7. <A
-HREF="faq.html#faq-general-bzmissing"
->&#13;            Why doesn't Bugzilla offer this or that feature or compatibility
-            with this other tracking software?
-          </A
-></DT
-><DT
->A.1.8. <A
-HREF="faq.html#faq-general-db"
->&#13;            What databases does Bugzilla run on?
-          </A
-></DT
-><DT
->A.1.9. <A
-HREF="faq.html#faq-general-perlpath"
->&#13;            My perl is located at <TT
-CLASS="filename"
->/usr/local/bin/perl</TT
->
-            and not <TT
-CLASS="filename"
->/usr/bin/perl</TT
->. Is there an easy
-            to change that in all the files that have this hard-coded?
-          </A
-></DT
-><DT
->A.1.10. <A
-HREF="faq.html#faq-general-cookie"
->&#13;            Is there an easy way to change the Bugzilla cookie name?
-          </A
-></DT
-><DT
->A.1.11. <A
-HREF="faq.html#faq-general-selinux"
->&#13;            How can Bugzilla be made to work under SELinux?
-          </A
-></DT
-></DL
-></DD
-><DT
->2. <A
-HREF="faq.html#faq-phb"
->Managerial Questions</A
-></DT
-><DD
-><DL
-><DT
->A.2.1. <A
-HREF="faq.html#faq-phb-client"
->&#13;            Is Bugzilla web-based, or do you have to have specific software or
-            a specific operating system on your machine?
-          </A
-></DT
-><DT
->A.2.2. <A
-HREF="faq.html#faq-phb-priorities"
->&#13;            Does Bugzilla allow us to define our own priorities and levels?
-            Do we have complete freedom to change the labels of fields and
-            format of them, and the choice of acceptable values?
-          </A
-></DT
-><DT
->A.2.3. <A
-HREF="faq.html#faq-phb-reporting"
->&#13;            Does Bugzilla provide any reporting features, metrics, graphs,
-            etc? You know, the type of stuff that management likes to see. :)
-          </A
-></DT
-><DT
->A.2.4. <A
-HREF="faq.html#faq-phb-email"
->&#13;            Is there email notification? If so, what do you see
-            when you get an email?
-          </A
-></DT
-><DT
->A.2.5. <A
-HREF="faq.html#faq-phb-emailapp"
->&#13;            Do users have to have any particular type of email application?
-          </A
-></DT
-><DT
->A.2.6. <A
-HREF="faq.html#faq-phb-data"
->&#13;            Does Bugzilla allow data to be imported and exported? If I had
-            outsiders write up a bug report using a MS Word bug template,
-            could that template be imported into <SPAN
-CLASS="QUOTE"
->"matching"</SPAN
->
-            fields? If I wanted to take the results of a query and export
-            that data to MS Excel, could I do that?
-          </A
-></DT
-><DT
->A.2.7. <A
-HREF="faq.html#faq-phb-l10n"
->&#13;            Has anyone converted Bugzilla to another language to be
-            used in other countries? Is it localizable?
-          </A
-></DT
-><DT
->A.2.8. <A
-HREF="faq.html#faq-phb-reports"
->&#13;            Can a user create and save reports?
-            Can they do this in Word format? Excel format?
-          </A
-></DT
-><DT
->A.2.9. <A
-HREF="faq.html#faq-phb-backup"
->&#13;            Are there any backup features provided?
-          </A
-></DT
-><DT
->A.2.10. <A
-HREF="faq.html#faq-phb-maintenance"
->&#13;            What type of human resources are needed to be on staff to install
-            and maintain Bugzilla? Specifically, what type of skills does the
-            person need to have? I need to find out what types of individuals
-            would we need to hire and how much would that cost if we were to
-            go with Bugzilla vs. buying an <SPAN
-CLASS="QUOTE"
->"out-of-the-box"</SPAN
->
-            solution.
-          </A
-></DT
-><DT
->A.2.11. <A
-HREF="faq.html#faq-phb-installtime"
->&#13;            What time frame are we looking at if we decide to hire people
-            to install and maintain the Bugzilla? Is this something that
-            takes hours or days to install and a couple of hours per week
-            to maintain and customize, or is this a multi-week install process,
-            plus a full time job for 1 person, 2 people, etc?
-          </A
-></DT
-><DT
->A.2.12. <A
-HREF="faq.html#faq-phb-cost"
->&#13;            Is there any licensing fee or other fees for using Bugzilla? Any
-            out-of-pocket cost other than the bodies needed as identified above?
-          </A
-></DT
-><DT
->A.2.13. <A
-HREF="faq.html#faq-phb-renameBugs"
->&#13;            We don't like referring to problems as 'bugs'. Can we change that?
-          </A
-></DT
-></DL
-></DD
-><DT
->3. <A
-HREF="faq.html#faq-admin"
->Administrative Questions</A
-></DT
-><DD
-><DL
-><DT
->A.3.1. <A
-HREF="faq.html#faq-admin-midair"
->&#13;            Does Bugzilla provide record locking when there is simultaneous
-            access to the same bug? Does the second person get a notice
-            that the bug is in use or how are they notified?
-          </A
-></DT
-><DT
->A.3.2. <A
-HREF="faq.html#faq-admin-livebackup"
->&#13;            Can users be on the system while a backup is in progress?
-          </A
-></DT
-><DT
->A.3.3. <A
-HREF="faq.html#faq-admin-cvsupdate"
->&#13;            How can I update the code and the database using CVS?
-          </A
-></DT
-><DT
->A.3.4. <A
-HREF="faq.html#faq-admin-enable-unconfirmed"
->&#13;            How do I make it so that bugs can have an UNCONFIRMED status?
-          </A
-></DT
-><DT
->A.3.5. <A
-HREF="faq.html#faq-admin-moving"
->&#13;            How do I move a Bugzilla installation from one machine to another?
-          </A
-></DT
-><DT
->A.3.6. <A
-HREF="faq.html#faq-admin-makeadmin"
->&#13;            How do I make a new Bugzilla administrator?
-            The previous administrator is gone...
-          </A
-></DT
-></DL
-></DD
-><DT
->4. <A
-HREF="faq.html#faq-security"
->Bugzilla Security</A
-></DT
-><DD
-><DL
-><DT
->A.4.1. <A
-HREF="faq.html#faq-security-mysql"
->&#13;            How do I completely disable MySQL security if it's giving
-            me problems? (I've followed the instructions in the installation
-            section of this guide...)
-          </A
-></DT
-><DT
->A.4.2. <A
-HREF="faq.html#faq-security-knownproblems"
->&#13;            Are there any security problems with Bugzilla?
-          </A
-></DT
-></DL
-></DD
-><DT
->5. <A
-HREF="faq.html#faq-email"
->Bugzilla Email</A
-></DT
-><DD
-><DL
-><DT
->A.5.1. <A
-HREF="faq.html#faq-email-nomail"
->&#13;            I have a user who doesn't want to receive any more email
-            from Bugzilla. How do I stop it entirely for this user?
-          </A
-></DT
-><DT
->A.5.2. <A
-HREF="faq.html#faq-email-testing"
->&#13;            I'm evaluating/testing Bugzilla, and don't want it to send email
-            to anyone but me. How do I do it?
-          </A
-></DT
-><DT
->A.5.3. <A
-HREF="faq.html#faq-email-whine"
->&#13;            I want whineatnews.pl to whine at something other than new and
-            reopened bugs. How do I do it?
-          </A
-></DT
-><DT
->A.5.4. <A
-HREF="faq.html#faq-email-in"
->&#13;            How do I set up the email interface to submit or change bugs via email?
-          </A
-></DT
-><DT
->A.5.5. <A
-HREF="faq.html#faq-email-sendmailnow"
->&#13;            Email takes FOREVER to reach me from Bugzilla -- it's
-            extremely slow. What gives?
-          </A
-></DT
-><DT
->A.5.6. <A
-HREF="faq.html#faq-email-nonreceived"
->&#13;             How come email from Bugzilla changes never reaches me?
-          </A
-></DT
-></DL
-></DD
-><DT
->6. <A
-HREF="faq.html#faq-db"
->Bugzilla Database</A
-></DT
-><DD
-><DL
-><DT
->A.6.1. <A
-HREF="faq.html#faq-db-corrupted"
->&#13;            I think my database might be corrupted, or contain
-            invalid entries. What do I do?
-          </A
-></DT
-><DT
->A.6.2. <A
-HREF="faq.html#faq-db-manualedit"
->&#13;            I want to manually edit some entries in my database. How?
-          </A
-></DT
-><DT
->A.6.3. <A
-HREF="faq.html#faq-db-permissions"
->&#13;            I think I've set up MySQL permissions correctly, but Bugzilla still
-            can't connect.
-          </A
-></DT
-><DT
->A.6.4. <A
-HREF="faq.html#faq-db-synchronize"
->&#13;            How do I synchronize bug information among multiple
-            different Bugzilla databases?
-          </A
-></DT
-></DL
-></DD
-><DT
->7. <A
-HREF="faq.html#faq-nt"
->Can Bugzilla run on a Windows server?</A
-></DT
-><DD
-><DL
-><DT
->A.7.1. <A
-HREF="faq.html#faq-nt-easiest"
->&#13;            What is the easiest way to run Bugzilla on Win32 (Win98+/NT/2K)?
-          </A
-></DT
-><DT
->A.7.2. <A
-HREF="faq.html#faq-nt-bundle"
->&#13;            Is there a "Bundle::Bugzilla" equivalent for Win32?
-          </A
-></DT
-><DT
->A.7.3. <A
-HREF="faq.html#faq-nt-mappings"
->&#13;            CGI's are failing with a <SPAN
-CLASS="QUOTE"
->"something.cgi is not a valid
-            Windows NT application"</SPAN
-> error. Why?
-          </A
-></DT
-><DT
->A.7.4. <A
-HREF="faq.html#faq-nt-dbi"
->&#13;            I'm having trouble with the perl modules for NT not being
-            able to talk to the database.
-          </A
-></DT
-></DL
-></DD
-><DT
->8. <A
-HREF="faq.html#faq-use"
->Bugzilla Usage</A
-></DT
-><DD
-><DL
-><DT
->A.8.1. <A
-HREF="faq.html#faq-use-changeaddress"
->&#13;            How do I change my user name (email address) in Bugzilla?
-          </A
-></DT
-><DT
->A.8.2. <A
-HREF="faq.html#faq-use-query"
->&#13;            The query page is very confusing.
-            Isn't there a simpler way to query?
-          </A
-></DT
-><DT
->A.8.3. <A
-HREF="faq.html#faq-use-accept"
->&#13;            I'm confused by the behavior of the <SPAN
-CLASS="QUOTE"
->"Accept"</SPAN
->
-            button in the Show Bug form. Why doesn't it assign the bug
-            to me when I accept it?
-          </A
-></DT
-><DT
->A.8.4. <A
-HREF="faq.html#faq-use-attachment"
->&#13;            I can't upload anything into the database via the
-            <SPAN
-CLASS="QUOTE"
->"Create Attachment"</SPAN
-> link. What am I doing wrong?
-          </A
-></DT
-><DT
->A.8.5. <A
-HREF="faq.html#faq-use-keyword"
->&#13;            How do I change a keyword in Bugzilla, once some bugs are using it?
-          </A
-></DT
-><DT
->A.8.6. <A
-HREF="faq.html#faq-use-close"
->&#13;            Why can't I close bugs from the <SPAN
-CLASS="QUOTE"
->"Change Several Bugs
-            at Once"</SPAN
-> page?
-          </A
-></DT
-></DL
-></DD
-><DT
->9. <A
-HREF="faq.html#faq-hacking"
->Bugzilla Hacking</A
-></DT
-><DD
-><DL
-><DT
->A.9.1. <A
-HREF="faq.html#faq-hacking-templatestyle"
->&#13;            What kind of style should I use for templatization?
-          </A
-></DT
-><DT
->A.9.2. <A
-HREF="faq.html#faq-hacking-bugzillabugs"
->&#13;            What bugs are in Bugzilla right now?
-          </A
-></DT
-><DT
->A.9.3. <A
-HREF="faq.html#faq-hacking-priority"
->&#13;            How can I change the default priority to a null value?
-            For instance, have the default priority be <SPAN
-CLASS="QUOTE"
->"---"</SPAN
->
-            instead of <SPAN
-CLASS="QUOTE"
->"P2"</SPAN
->?
-          </A
-></DT
-><DT
->A.9.4. <A
-HREF="faq.html#faq-hacking-patches"
->&#13;            What's the best way to submit patches?  What guidelines
-            should I follow?
-          </A
-></DT
-></DL
-></DD
-></DL
-><DIV
-CLASS="qandadiv"
-><H3
-><A
-NAME="faq-general"
-></A
->1. General Questions</H3
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-general-tryout"
-></A
-><B
->A.1.1. </B
->
-            Can I try out Bugzilla somewhere?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            If you want to take a test ride, there are test installations
-            at <A
-HREF="http://landfill.bugzilla.org/"
-TARGET="_top"
->http://landfill.bugzilla.org/</A
->,
-            ready to play with directly from your browser.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-general-license"
-></A
-><B
->A.1.2. </B
->
-            What license is Bugzilla distributed under?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            Bugzilla is covered by the Mozilla Public License.
-            See details at <A
-HREF="http://www.mozilla.org/MPL/"
-TARGET="_top"
->http://www.mozilla.org/MPL/</A
->.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-general-support"
-></A
-><B
->A.1.3. </B
->
-            How do I get commercial support for Bugzilla?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            <A
-HREF="http://www.bugzilla.org/support/consulting.html"
-TARGET="_top"
->http://www.bugzilla.org/support/consulting.html</A
->
-            is a list of companies and individuals who have asked us to
-            list them as consultants for Bugzilla.
-          </P
-><P
->&#13;            There are several experienced
-            Bugzilla hackers on the mailing list/newsgroup who are willing
-            to make themselves available for generous compensation.
-            Try sending a message to the mailing list asking for a volunteer.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-general-companies"
-></A
-><B
->A.1.4. </B
->
-            What major companies or projects are currently using Bugzilla
-            for bug-tracking?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            There are <EM
->dozens</EM
-> of major companies with public
-            Bugzilla sites to track bugs in their products. We have a fairly
-            complete list available on our website at
-            <A
-HREF="http://bugzilla.org/installation-list/"
-TARGET="_top"
->http://bugzilla.org/installation-list/</A
->. If you
-            have an installation of Bugzilla and would like to be added to the
-            list, whether it's a public install or not, simply e-mail
-            Gerv <CODE
-CLASS="email"
->&#60;<A
-HREF="mailto:gerv@mozilla.org"
->gerv@mozilla.org</A
->&#62;</CODE
->.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-general-maintainers"
-></A
-><B
->A.1.5. </B
->
-            Who maintains Bugzilla?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            A <A
-HREF="http://www.bugzilla.org/developers/profiles.html"
-TARGET="_top"
->core
-            team</A
->, led by Dave Miller (justdave@bugzilla.org).
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-general-compare"
-></A
-><B
->A.1.6. </B
->
-            How does Bugzilla stack up against other bug-tracking databases?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            We can't find any head-to-head comparisons of Bugzilla against
-            other defect-tracking software. If you know of one, please get
-            in touch. In the experience of Matthew Barnson (the original
-            author of this FAQ), though, Bugzilla offers superior
-            performance on commodity hardware, better price (free!), more
-            developer-friendly features (such as stored queries, email
-            integration, and platform independence), improved scalability,
-            greater flexibility, and superior ease-of-use when compared
-            to commercial bug-tracking software.
-          </P
-><P
->&#13;            If you happen to be a vendor for commercial bug-tracking
-            software, and would like to submit a list of advantages your
-            product has over Bugzilla, simply send it to 
-            <CODE
-CLASS="email"
->&#60;<A
-HREF="mailto:documentation@bugzilla.org"
->documentation@bugzilla.org</A
->&#62;</CODE
-> and we'd be happy to
-            include the comparison in our documentation.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-general-bzmissing"
-></A
-><B
->A.1.7. </B
->
-            Why doesn't Bugzilla offer this or that feature or compatibility
-            with this other tracking software?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            It may be that the support has not been built yet, or that you
-            have not yet found it. While Bugzilla makes strides in usability,
-            customizability, scalability, and user interface with each release,
-            that doesn't mean it can't still use improvement!
-          </P
-><P
->&#13;            The best way to make an enhancement request is to <A
-HREF="https://bugzilla.mozilla.org/enter_bug.cgi?product=Bugzilla"
-TARGET="_top"
->file
-            a bug at bugzilla.mozilla.org</A
-> and set the Severity
-            to 'enhancement'. Your 'request for enhancement' (RFE) will
-            start out in the UNCONFIRMED state, and will stay there until
-            someone with the ability to CONFIRM the bug reviews it.
-            If that person feels it to be a good request that fits in with
-            Bugzilla's overall direction, the status will be changed to
-            NEW; if not, they will probably explain why and set the bug
-            to RESOLVED/WONTFIX. If someone else has made the same (or
-            almost the same) request before, your request will be marked
-            RESOLVED/DUPLICATE, and a pointer to the previous RFE will be
-            added.
-          </P
-><P
->&#13;            Even if your RFE gets approved, that doesn't mean it's going
-            to make it right into the next release; there are a limited
-            number of developers, and a whole lot of RFEs... some of
-            which are <EM
->quite</EM
-> complex. If you're a
-            code-hacking sort of person, you can help the project along
-            by making a patch yourself that supports the functionality
-            you require. If you have never contributed anything to
-            Bugzilla before, please be sure to read the 
-            <A
-HREF="http://www.bugzilla.org/docs/developer.html"
-TARGET="_top"
->Developers' Guide</A
->
-            and
-            <A
-HREF="http://www.bugzilla.org/docs/contributor.html"
-TARGET="_top"
->Contributors' Guide</A
->
-            before going ahead.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-general-db"
-></A
-><B
->A.1.8. </B
->
-            What databases does Bugzilla run on?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            MySQL is the default database for Bugzilla. It was originally chosen 
-            because it is free, easy to install, and was available for the hardware 
-            Netscape intended to run it on.
-          </P
-><P
->&#13;            As of Bugzilla 2.22, complete support for PostgreSQL 
-            is included. With this release using PostgreSQL with Bugzilla 
-            should be as stable as using MySQL. If you experience any problems
-            with PostgreSQL compatibility, they will be taken as
-            seriously as if you were running MySQL.
-          </P
-><P
->&#13;            There are plans to include an Oracle driver for Bugzilla 3.1.2. 
-            Track progress at
-            <A
-HREF="https://bugzilla.mozilla.org/show_bug.cgi?id=189947"
-TARGET="_top"
->&#13;            Bug 189947</A
->.
-          </P
-><P
->&#13;            Sybase support was worked on for a time. However, several 
-            complicating factors have prevented Sybase support from 
-            being realized. There are currently no plans to revive it.
-          </P
-><P
->&#13;            <A
-HREF="https://bugzilla.mozilla.org/show_bug.cgi?id=237862"
-TARGET="_top"
->&#13;            Bug 237862</A
-> is a good bug to read through if you'd
-            like to see what progress is being made on general database
-            compatibility.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-general-perlpath"
-></A
-><B
->A.1.9. </B
->
-            My perl is located at <TT
-CLASS="filename"
->/usr/local/bin/perl</TT
->
-            and not <TT
-CLASS="filename"
->/usr/bin/perl</TT
->. Is there an easy
-            to change that in all the files that have this hard-coded?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            The easiest way to get around this is to create a link from
-            one to the other:
-            <B
-CLASS="command"
->ln -s /usr/local/bin/perl /usr/bin/perl</B
->.
-            If that's not an option for you, the following bit of perl
-            magic will change all the shebang lines (that is to say,
-            the line at the top of each file that starts with '#!' 
-            and contains the path) to something else:
-          </P
-><TABLE
-BORDER="0"
-BGCOLOR="#E0E0E0"
-WIDTH="100%"
-><TR
-><TD
-><FONT
-COLOR="#000000"
-><PRE
-CLASS="programlisting"
->&#13;perl -pi -e 's@#\!/usr/bin/perl@#\!/usr/local/bin/perl@' *cgi *pl
-          </PRE
-></FONT
-></TD
-></TR
-></TABLE
-><P
->&#13;            Sadly, this command-line won't work on Windows unless you
-            also have Cygwin. However, MySQL comes with a binary called
-            <B
-CLASS="command"
->replace</B
-> which can do the job:
-          </P
-><TABLE
-BORDER="0"
-BGCOLOR="#E0E0E0"
-WIDTH="100%"
-><TR
-><TD
-><FONT
-COLOR="#000000"
-><PRE
-CLASS="programlisting"
->&#13;C:\mysql\bin\replace "#!/usr/bin/perl" "#!C:\perl\bin\perl" -- *.cgi *.pl
-          </PRE
-></FONT
-></TD
-></TR
-></TABLE
-><DIV
-CLASS="note"
-><P
-></P
-><TABLE
-CLASS="note"
-WIDTH="100%"
-BORDER="0"
-><TR
-><TD
-WIDTH="25"
-ALIGN="CENTER"
-VALIGN="TOP"
-><IMG
-SRC="../images/note.gif"
-HSPACE="5"
-ALT="Note"></TD
-><TD
-ALIGN="LEFT"
-VALIGN="TOP"
-><P
->&#13;              If your perl path is something else again, just follow the
-              above examples and replace
-              <TT
-CLASS="filename"
->/usr/local/bin/perl</TT
-> with your own perl path.
-            </P
-></TD
-></TR
-></TABLE
-></DIV
-><P
->&#13;            Once you've modified all your files, you'll also need to modify the
-            <TT
-CLASS="filename"
->t/002goodperl.t</TT
-> test, as it tests that all
-            shebang lines are equal to <TT
-CLASS="filename"
->/usr/bin/perl</TT
->.
-            (For more information on the test suite, please check out the 
-            appropriate section in the <A
-HREF="http://www.bugzilla.org/docs/developer.html#testsuite"
-TARGET="_top"
->Developers'
-            Guide</A
->.) Having done this, run the test itself:
-            <TABLE
-BORDER="0"
-BGCOLOR="#E0E0E0"
-WIDTH="100%"
-><TR
-><TD
-><FONT
-COLOR="#000000"
-><PRE
-CLASS="programlisting"
->&#13;            perl runtests.pl 2 --verbose
-            </PRE
-></FONT
-></TD
-></TR
-></TABLE
->
-            to ensure that you've modified all the relevant files.
-          </P
-><P
->&#13;            If using Apache on Windows, you can avoid the whole problem
-            by setting the <A
-HREF="http://httpd.apache.org/docs-2.0/mod/core.html#scriptinterpretersource"
-TARGET="_top"
->&#13;            ScriptInterpreterSource</A
-> directive to 'Registry'.
-            (If using Apache 2 or higher, set it to 'Registry-Strict'.)
-            ScriptInterperterSource requires a registry entry
-            <SPAN
-CLASS="QUOTE"
->"HKEY_CLASSES_ROOT\.cgi\Shell\ExecCGI\Command"</SPAN
-> to
-            associate .cgi files with your perl executable. If one does
-            not already exist, create it with a default value of
-           <SPAN
-CLASS="QUOTE"
->"&#60;full path to perl&#62; -T"</SPAN
->, e.g.
-           <SPAN
-CLASS="QUOTE"
->"C:\Perl\bin\perl.exe -T"</SPAN
->.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-general-cookie"
-></A
-><B
->A.1.10. </B
->
-            Is there an easy way to change the Bugzilla cookie name?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            At present, no.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-general-selinux"
-></A
-><B
->A.1.11. </B
->
-            How can Bugzilla be made to work under SELinux?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            As a web application, Bugzilla simply requires its root
-            directory to have the httpd context applied for it to work
-            properly under SELinux. This should happen automatically
-            on distributions that use SELinux and that package Bugzilla
-            (if it is installed with the native package management tools).
-            Information on how to view and change SELinux file contexts
-            can be found at the 
-            <A
-HREF="http://docs.fedoraproject.org/selinux-faq-fc5/"
-TARGET="_top"
->&#13;            SELinux FAQ</A
->.
-
-          </P
-></DIV
-></DIV
-></DIV
-><DIV
-CLASS="qandadiv"
-><H3
-><A
-NAME="faq-phb"
-></A
->2. Managerial Questions</H3
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-phb-client"
-></A
-><B
->A.2.1. </B
->
-            Is Bugzilla web-based, or do you have to have specific software or
-            a specific operating system on your machine?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            It is web and e-mail based.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-phb-priorities"
-></A
-><B
->A.2.2. </B
->
-            Does Bugzilla allow us to define our own priorities and levels?
-            Do we have complete freedom to change the labels of fields and
-            format of them, and the choice of acceptable values?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            Yes. However, modifying some fields, notably those related to bug
-            progression states, also require adjusting the program logic to
-            compensate for the change.
-          </P
-><P
->&#13;            As of Bugzilla 3.0 custom fields can be created via the
-            "Custom Fields" admin page.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-phb-reporting"
-></A
-><B
->A.2.3. </B
->
-            Does Bugzilla provide any reporting features, metrics, graphs,
-            etc? You know, the type of stuff that management likes to see. :)
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            Yes. Look at <A
-HREF="https://bugzilla.mozilla.org/report.cgi"
-TARGET="_top"
->https://bugzilla.mozilla.org/report.cgi</A
->
-            for samples of what Bugzilla can do in reporting and graphing.
-            Fuller documentation is provided in <A
-HREF="reporting.html"
->Section 5.11</A
->.
-          </P
-><P
->&#13;            If you can not get the reports you want from the included reporting
-            scripts, it is possible to hook up a professional reporting package
-            such as Crystal Reports using ODBC. If you choose to do this,
-            beware that giving direct access to the database does contain some
-            security implications. Even if you give read-only access to the
-            bugs database it will bypass the secure bugs features of Bugzilla.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-phb-email"
-></A
-><B
->A.2.4. </B
->
-            Is there email notification? If so, what do you see
-            when you get an email?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            Email notification is user-configurable. By default, the bug id
-            and summary of the bug report accompany each email notification,
-            along with a list of the changes made.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-phb-emailapp"
-></A
-><B
->A.2.5. </B
->
-            Do users have to have any particular type of email application?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            Bugzilla email is sent in plain text, the most compatible
-            mail format on the planet.
-            <DIV
-CLASS="note"
-><P
-></P
-><TABLE
-CLASS="note"
-WIDTH="100%"
-BORDER="0"
-><TR
-><TD
-WIDTH="25"
-ALIGN="CENTER"
-VALIGN="TOP"
-><IMG
-SRC="../images/note.gif"
-HSPACE="5"
-ALT="Note"></TD
-><TD
-ALIGN="LEFT"
-VALIGN="TOP"
-><P
->&#13;                If you decide to use the bugzilla_email integration features
-                to allow Bugzilla to record responses to mail with the
-                associated bug, you may need to caution your users to set
-                their mailer to <SPAN
-CLASS="QUOTE"
->"respond to messages in the format in
-                which they were sent"</SPAN
->. For security reasons Bugzilla
-                ignores HTML tags in comments, and if a user sends HTML-based
-                email into Bugzilla the resulting comment looks downright awful.
-              </P
-></TD
-></TR
-></TABLE
-></DIV
->
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-phb-data"
-></A
-><B
->A.2.6. </B
->
-            Does Bugzilla allow data to be imported and exported? If I had
-            outsiders write up a bug report using a MS Word bug template,
-            could that template be imported into <SPAN
-CLASS="QUOTE"
->"matching"</SPAN
->
-            fields? If I wanted to take the results of a query and export
-            that data to MS Excel, could I do that?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            Bugzilla can output buglists as HTML (the default), CSV or RDF.
-            The link for CSV can be found at the bottom of the buglist in HTML
-            format. This CSV format can easily be imported into MS Excel or
-            other spreadsheet applications.
-          </P
-><P
->&#13;            To use the RDF format of the buglist it is necessary to append a
-            <SAMP
-CLASS="computeroutput"
->&#38;ctype=rdf</SAMP
-> to the URL. RDF
-            is meant to be machine readable and thus it is assumed that the
-            URL would be generated programmatically so there is no user visible
-            link to this format.
-          </P
-><P
->&#13;            Currently the only script included with Bugzilla that can import
-            data is <TT
-CLASS="filename"
->importxml.pl</TT
-> which is intended to be
-            used for importing the data generated by the XML ctype of
-            <TT
-CLASS="filename"
->show_bug.cgi</TT
-> in association with bug moving.
-            Any other use is left as an exercise for the user.
-          </P
-><P
->&#13;            There are also scripts included in the <TT
-CLASS="filename"
->contrib/</TT
->
-            directory for using e-mail to import information into Bugzilla,
-            but these scripts are not currently supported and included for
-            educational purposes.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-phb-l10n"
-></A
-><B
->A.2.7. </B
->
-            Has anyone converted Bugzilla to another language to be
-            used in other countries? Is it localizable?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            Yes. For more information including available translated templates,
-            see <A
-HREF="http://www.bugzilla.org/download.html#localizations"
-TARGET="_top"
->http://www.bugzilla.org/download.html#localizations</A
->.
-            Some admin interfaces have been templatized (for easy localization)
-            but many of them are still available in English only. Also, there
-            may be issues with the charset not being declared. See <A
-HREF="https://bugzilla.mozilla.org/show_bug.cgi?id=126266"
-TARGET="_top"
->bug 126226</A
->
-            for more information.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-phb-reports"
-></A
-><B
->A.2.8. </B
->
-            Can a user create and save reports?
-            Can they do this in Word format? Excel format?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            Yes. No. Yes (using the CSV format).
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-phb-backup"
-></A
-><B
->A.2.9. </B
->
-            Are there any backup features provided?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            You should use the backup options supplied by your database platform.  
-            Vendor documentation for backing up a MySQL database can be found at 
-            <A
-HREF="http://www.mysql.com/doc/B/a/Backup.html"
-TARGET="_top"
->http://www.mysql.com/doc/B/a/Backup.html</A
->. 
-            PostgreSQL backup documentation can be found at
-            <A
-HREF="http://www.postgresql.org/docs/8.0/static/backup.html"
-TARGET="_top"
->http://www.postgresql.org/docs/8.0/static/backup.html</A
->.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-phb-maintenance"
-></A
-><B
->A.2.10. </B
->
-            What type of human resources are needed to be on staff to install
-            and maintain Bugzilla? Specifically, what type of skills does the
-            person need to have? I need to find out what types of individuals
-            would we need to hire and how much would that cost if we were to
-            go with Bugzilla vs. buying an <SPAN
-CLASS="QUOTE"
->"out-of-the-box"</SPAN
->
-            solution.
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            If Bugzilla is set up correctly from the start, continuing
-            maintenance needs are minimal and can be done easily using
-            the web interface.
-          </P
-><P
->&#13;            Commercial Bug-tracking software typically costs somewhere
-            upwards of $20,000 or more for 5-10 floating licenses. Bugzilla
-            consultation is available from skilled members of the newsgroup.
-            Simple questions are answered there and then.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-phb-installtime"
-></A
-><B
->A.2.11. </B
->
-            What time frame are we looking at if we decide to hire people
-            to install and maintain the Bugzilla? Is this something that
-            takes hours or days to install and a couple of hours per week
-            to maintain and customize, or is this a multi-week install process,
-            plus a full time job for 1 person, 2 people, etc?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            It all depends on your level of commitment. Someone with much
-            Bugzilla experience can get you up and running in less than a day,
-            and your Bugzilla install can run untended for years. If your
-            Bugzilla strategy is critical to your business workflow, hire
-            somebody to who has reasonable Perl skills, and a familiarity
-            with the operating system on which Bugzilla will be running,
-            and have them handle your process management, bug-tracking
-            maintenance, and local customization.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-phb-cost"
-></A
-><B
->A.2.12. </B
->
-            Is there any licensing fee or other fees for using Bugzilla? Any
-            out-of-pocket cost other than the bodies needed as identified above?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            No. Bugzilla, Perl, the Template Toolkit, and all other support
-            software needed to make Bugzilla work can be downloaded for free.
-            MySQL and PostgreSQL -- the databases supported by Bugzilla -- 
-            are also open-source. MySQL asks that if you find their product 
-            valuable, you purchase a support contract from them that suits your needs.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-phb-renameBugs"
-></A
-><B
->A.2.13. </B
->
-            We don't like referring to problems as 'bugs'. Can we change that?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            Yes! As of Bugzilla 2.18, it is a simple matter to change the
-            word 'bug' into whatever word/phrase is used by your organization.
-            See the documentation on Customization for more details,
-            specifically <A
-HREF="cust-templates.html#template-specific"
->Section 6.2.5</A
->.
-          </P
-></DIV
-></DIV
-></DIV
-><DIV
-CLASS="qandadiv"
-><H3
-><A
-NAME="faq-admin"
-></A
->3. Administrative Questions</H3
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-admin-midair"
-></A
-><B
->A.3.1. </B
->
-            Does Bugzilla provide record locking when there is simultaneous
-            access to the same bug? Does the second person get a notice
-            that the bug is in use or how are they notified?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            Bugzilla does not lock records. It provides mid-air collision
-            detection -- which means that it warns a user when a commit is
-            about to conflict with commits recently made by another user,
-            and offers the second user a choice of options to deal with
-            the conflict.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-admin-livebackup"
-></A
-><B
->A.3.2. </B
->
-            Can users be on the system while a backup is in progress?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            Refer to your database platform documentation for details on how to do hot
-            backups.  
-            Vendor documentation for backing up a MySQL database can be found at 
-            <A
-HREF="http://www.mysql.com/doc/B/a/Backup.html"
-TARGET="_top"
->http://www.mysql.com/doc/B/a/Backup.html</A
->. 
-            PostgreSQL backup documentation can be found at
-            <A
-HREF="http://www.postgresql.org/docs/8.0/static/backup.html"
-TARGET="_top"
->http://www.postgresql.org/docs/8.0/static/backup.html</A
->.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-admin-cvsupdate"
-></A
-><B
->A.3.3. </B
->
-            How can I update the code and the database using CVS?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            <P
-></P
-><OL
-TYPE="1"
-><LI
-><P
->&#13;                  Make a backup of both your Bugzilla directory and the
-                  database. For the Bugzilla directory this is as easy as
-                  doing <B
-CLASS="command"
->cp -rp bugzilla bugzilla.bak</B
->.
-                  For the database, there's a number of options - see the
-                  MySQL docs and pick the one that fits you best (the easiest
-                  is to just make a physical copy of the database on the disk,
-                  but you have to have the database server shut down to do
-                  that without risking dataloss).
-                </P
-></LI
-><LI
-><P
->&#13;                  Make the Bugzilla directory your current directory.
-                </P
-></LI
-><LI
-><P
->&#13;                  Use <B
-CLASS="command"
->cvs -q update -AdP</B
-> if you want to
-                  update to the tip or
-                  <B
-CLASS="command"
->cvs -q update -dP -rTAGNAME</B
->
-                  if you want a specific version (in that case you'll have to
-                  replace TAGNAME with a CVS tag name such as BUGZILLA-2_16_5).
-                </P
-><P
->&#13;                  If you've made no local changes, this should be very clean.
-                  If you have made local changes, then watch the cvs output
-                  for C results. If you get any lines that start with a C
-                  it means there  were conflicts between your local changes
-                  and what's in CVS. You'll need to fix those manually before
-                  continuing.
-                </P
-></LI
-><LI
-><P
->&#13;                  After resolving any conflicts that the cvs update operation
-                  generated, running <B
-CLASS="command"
->./checksetup.pl</B
-> will
-                  take care of updating the database for you as well as any
-                  other changes required for the new version to operate.
-                </P
-><DIV
-CLASS="warning"
-><P
-></P
-><TABLE
-CLASS="warning"
-WIDTH="100%"
-BORDER="0"
-><TR
-><TD
-WIDTH="25"
-ALIGN="CENTER"
-VALIGN="TOP"
-><IMG
-SRC="../images/warning.gif"
-HSPACE="5"
-ALT="Warning"></TD
-><TD
-ALIGN="LEFT"
-VALIGN="TOP"
-><P
->&#13;                    Once you run checksetup.pl, the only way to go back is
-                    to restore the database backups. You can't
-                    <SPAN
-CLASS="QUOTE"
->"downgrade"</SPAN
-> the system cleanly under most
-                    circumstances.
-                  </P
-></TD
-></TR
-></TABLE
-></DIV
-></LI
-></OL
->
-          </P
-><P
->&#13;            See also the instructions in <A
-HREF="upgrading.html#upgrade-cvs"
->Section 3.14.3.1</A
->.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-admin-enable-unconfirmed"
-></A
-><B
->A.3.4. </B
->
-            How do I make it so that bugs can have an UNCONFIRMED status?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            To use the UNCONFIRMED status, you must have the 'usevotes'
-            parameter set to <SPAN
-CLASS="QUOTE"
->"On"</SPAN
->. You must then visit the
-            <TT
-CLASS="filename"
->editproducts.cgi</TT
-> page and set the <SPAN
-CLASS="QUOTE"
->"
-            Number of votes a bug in this product needs to automatically
-            get out of the UNCONFIRMED state"</SPAN
-> to be a non-zero number.
-            (You will have to do this for each product that wants to use
-            the UNCONFIRMED state.) If you do not actually want users to be
-            able to vote for bugs entered against this product, leave the
-            <SPAN
-CLASS="QUOTE"
->"Maximum votes per person"</SPAN
-> value at '0'.
-          </P
-><P
->&#13;            There is work being done to decouple the UNCONFIRMED state from
-            the 'usevotes' parameter for future versions of Bugzilla.
-            Follow the discussion and progress at <A
-HREF="https://bugzilla.mozilla.org/show_bug.cgi?id=162060"
-TARGET="_top"
->bug
-            162060</A
->.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-admin-moving"
-></A
-><B
->A.3.5. </B
->
-            How do I move a Bugzilla installation from one machine to another?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            Reference your database vendor's documentation for information on 
-            backing up and restoring your Bugzilla database on to a different server.
-            Vendor documentation for backing up a MySQL database can be found at 
-            <A
-HREF="http://dev.mysql.com/doc/mysql/en/mysqldump.html"
-TARGET="_top"
->http://dev.mysql.com/doc/mysql/en/mysqldump.html</A
->.
-            PostgreSQL backup documentation can be found at
-            <A
-HREF="http://www.postgresql.org/docs/8.0/static/backup.html"
-TARGET="_top"
->http://www.postgresql.org/docs/8.0/static/backup.html</A
->.
-          </P
-><P
->&#13;            On your new machine, follow the instructions found in <A
-HREF="installing-bugzilla.html"
->Chapter 2</A
-> as far as setting up the physical
-            environment of the new machine with perl, webserver, modules, etc. 
-            Having done that, you can either: copy your entire Bugzilla
-            directory from the old machine to a new one (if you want to keep
-            your existing code and modifications), or download a newer version
-            (if you are planning to upgrade at the same time). Even if you are
-            upgrading to clean code, you will still want to bring over the 
-            <TT
-CLASS="filename"
->localconfig</TT
-> file, and the 
-            <TT
-CLASS="filename"
->data</TT
-> directory from the
-            old machine, as they contain configuration information that you 
-            probably won't want to re-create.
-          </P
-><DIV
-CLASS="note"
-><P
-></P
-><TABLE
-CLASS="note"
-WIDTH="100%"
-BORDER="0"
-><TR
-><TD
-WIDTH="25"
-ALIGN="CENTER"
-VALIGN="TOP"
-><IMG
-SRC="../images/note.gif"
-HSPACE="5"
-ALT="Note"></TD
-><TD
-ALIGN="LEFT"
-VALIGN="TOP"
-><P
->&#13;              If the hostname or port number of your database server changed
-              as part of the move, you'll need to update the appropriate
-              variables in localconfig before taking the next step.
-            </P
-></TD
-></TR
-></TABLE
-></DIV
-><P
->&#13;            Once you have your code in place, and your database has
-            been restored from the backup you made in step 1, run
-            <B
-CLASS="command"
->checksetup.pl</B
->. This will upgrade your
-            database (if necessary), rebuild your templates, etc.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-admin-makeadmin"
-></A
-><B
->A.3.6. </B
->
-            How do I make a new Bugzilla administrator?
-            The previous administrator is gone...
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            Run <B
-CLASS="command"
->checksetup.pl</B
-> with
-            <VAR
-CLASS="option"
->--make-admin</VAR
-> option.
-            Its usage is <VAR
-CLASS="option"
->--make-admin=user@example.org</VAR
->.
-            The user account must be exist in the Bugzilla database.
-          </P
-></DIV
-></DIV
-></DIV
-><DIV
-CLASS="qandadiv"
-><H3
-><A
-NAME="faq-security"
-></A
->4. Bugzilla Security</H3
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-security-mysql"
-></A
-><B
->A.4.1. </B
->
-            How do I completely disable MySQL security if it's giving
-            me problems? (I've followed the instructions in the installation
-            section of this guide...)
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            You can run MySQL like this: <B
-CLASS="command"
->mysqld --skip-grant-tables</B
->.
-            However, doing so disables all MySQL security. This is a bad idea.
-            Please consult <A
-HREF="security-mysql.html"
->Section 4.2</A
-> of this guide
-            and the MySQL documentation for better solutions.
-            </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-security-knownproblems"
-></A
-><B
->A.4.2. </B
->
-            Are there any security problems with Bugzilla?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            The Bugzilla code has undergone a reasonably complete security
-            audit, and user-facing CGIs run under Perl's taint mode. However, 
-            it is recommended that you closely examine permissions on your
-            Bugzilla installation, and follow the recommended security
-            guidelines found in The Bugzilla Guide.
-          </P
-></DIV
-></DIV
-></DIV
-><DIV
-CLASS="qandadiv"
-><H3
-><A
-NAME="faq-email"
-></A
->5. Bugzilla Email</H3
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-email-nomail"
-></A
-><B
->A.5.1. </B
->
-            I have a user who doesn't want to receive any more email
-            from Bugzilla. How do I stop it entirely for this user?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            The user can stop Bugzilla from sending any mail by unchecking
-            all boxes on the 'Edit prefs' -&#62; 'Email settings' page.
-            (As of 2.18,this is made easier by the addition of a 'Disable
-            All Mail' button.) Alternately, you can add their email address
-            to the <TT
-CLASS="filename"
->data/nomail</TT
-> file (one email address
-            per line). This will override their personal preferences, and
-            they will never be sent mail again.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-email-testing"
-></A
-><B
->A.5.2. </B
->
-            I'm evaluating/testing Bugzilla, and don't want it to send email
-            to anyone but me. How do I do it?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            To disable email, set the
-            <VAR
-CLASS="option"
->mail_delivery_method</VAR
-> parameter to
-            <VAR
-CLASS="literal"
->none</VAR
-> (2.20 and later), or
-            <TABLE
-BORDER="0"
-BGCOLOR="#E0E0E0"
-WIDTH="100%"
-><TR
-><TD
-><FONT
-COLOR="#000000"
-><PRE
-CLASS="programlisting"
->$enableSendMail</PRE
-></FONT
-></TD
-></TR
-></TABLE
-> parameter to '0'
-            in either <TT
-CLASS="filename"
->BugMail.pm</TT
-> (2.18 and later) or 
-            <TT
-CLASS="filename"
->processmail</TT
-> (up to 2.16.x).
-          </P
-><DIV
-CLASS="note"
-><P
-></P
-><TABLE
-CLASS="note"
-WIDTH="100%"
-BORDER="0"
-><TR
-><TD
-WIDTH="25"
-ALIGN="CENTER"
-VALIGN="TOP"
-><IMG
-SRC="../images/note.gif"
-HSPACE="5"
-ALT="Note"></TD
-><TD
-ALIGN="LEFT"
-VALIGN="TOP"
-><P
->&#13;              Up to 2.16.x, changing
-              <TABLE
-BORDER="0"
-BGCOLOR="#E0E0E0"
-WIDTH="100%"
-><TR
-><TD
-><FONT
-COLOR="#000000"
-><PRE
-CLASS="programlisting"
->$enableSendMail</PRE
-></FONT
-></TD
-></TR
-></TABLE
->
-              will only affect bugmail; email related to password changes,
-              email address changes, bug imports, flag changes, etc. will
-              still be sent out. As of the final release of 2.18, however,
-              the above step will disable <EM
->all</EM
-> mail
-              sent from Bugzilla for any purpose.
-            </P
-></TD
-></TR
-></TABLE
-></DIV
-><P
->&#13;            To have bugmail (and only bugmail) redirected to you instead of
-            its intended recipients, leave
-            <TABLE
-BORDER="0"
-BGCOLOR="#E0E0E0"
-WIDTH="100%"
-><TR
-><TD
-><FONT
-COLOR="#000000"
-><PRE
-CLASS="programlisting"
->$enableSendMail</PRE
-></FONT
-></TD
-></TR
-></TABLE
-> alone;
-            instead, edit the <SPAN
-CLASS="QUOTE"
->"newchangedmail"</SPAN
-> parameter
-            as follows:
-          </P
-><P
-></P
-><UL
-><LI
-><P
->&#13;                Replace <SPAN
-CLASS="QUOTE"
->"To:"</SPAN
-> with <SPAN
-CLASS="QUOTE"
->"X-Real-To:"</SPAN
->
-              </P
-></LI
-><LI
-><P
->&#13;                Replace <SPAN
-CLASS="QUOTE"
->"Cc:"</SPAN
-> with <SPAN
-CLASS="QUOTE"
->"X-Real-CC:"</SPAN
->
-              </P
-></LI
-><LI
-><P
->&#13;                Add a <SPAN
-CLASS="QUOTE"
->"To: %lt;your_email_address&#62;"</SPAN
->
-              </P
-></LI
-></UL
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-email-whine"
-></A
-><B
->A.5.3. </B
->
-            I want whineatnews.pl to whine at something other than new and
-            reopened bugs. How do I do it?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            For older versions of Bugzilla, you may be able to apply 
-            Klaas Freitag's patch for <SPAN
-CLASS="QUOTE"
->"whineatassigned"</SPAN
->,
-            which can be found in
-            <A
-HREF="https://bugzilla.mozilla.org/show_bug.cgi?id=6679"
-TARGET="_top"
->bug
-            6679</A
->. Note that this patch was made in 2000, so it may take
-            some work to apply cleanly to any releases of Bugzilla newer than
-            that, but you can use it as a starting point.
-          </P
-><P
->&#13;            An updated (and much-expanded) version of this functionality is
-            due to be released as part of Bugzilla 2.20; see 
-            <A
-HREF="https://bugzilla.mozilla.org/show_bug.cgi?id=185090"
-TARGET="_top"
->bug
-            185090</A
-> for the discussion, and for more up-to-date patches
-            if you just can't wait.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-email-in"
-></A
-><B
->A.5.4. </B
->
-            How do I set up the email interface to submit or change bugs via email?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            Bugzilla 3.0 and later offers the ability submit or change
-            bugs via email, using the <TT
-CLASS="filename"
->email_in.pl</TT
->
-            script within the root directory of the Bugzilla installation.
-            More information on the script can be found in
-            <A
-HREF="api/email_in.html"
-TARGET="_top"
->docs/html/api/email_in.html</A
->.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-email-sendmailnow"
-></A
-><B
->A.5.5. </B
->
-            Email takes FOREVER to reach me from Bugzilla -- it's
-            extremely slow. What gives?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            If you are using <SPAN
-CLASS="application"
->sendmail</SPAN
->, try
-            enabling <VAR
-CLASS="option"
->sendmailnow</VAR
-> in
-            <TT
-CLASS="filename"
->editparams.cgi</TT
->. For earlier versions of
-            <SPAN
-CLASS="application"
->sendmail</SPAN
->, one could achieve
-            significant performance improvement in the UI (at the cost of
-            delaying the sending of mail) by setting this parameter to
-            <VAR
-CLASS="literal"
->off</VAR
->. Sites with
-            <SPAN
-CLASS="application"
->sendmail</SPAN
-> version 8.12 (or higher)
-            should leave this <VAR
-CLASS="literal"
->on</VAR
->, as they will not see
-            any performance benefit.
-          </P
-><P
->&#13;            If you are using an alternate
-            <A
-HREF="glossary.html#gloss-mta"
-><I
-CLASS="glossterm"
->MTA</I
-></A
->, make sure the
-            options given in <TT
-CLASS="filename"
->Bugzilla/BugMail.pm</TT
->
-            and any other place where <SPAN
-CLASS="application"
->sendmail</SPAN
->
-            is called are correct for your MTA.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-email-nonreceived"
-></A
-><B
->A.5.6. </B
->
-             How come email from Bugzilla changes never reaches me?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            Double-check that you have not turned off email in your user
-            preferences. Confirm that Bugzilla is able to send email by
-            visiting the <SPAN
-CLASS="QUOTE"
->"Log In"</SPAN
-> link of your Bugzilla
-            installation and clicking the <SPAN
-CLASS="QUOTE"
->"Submit Request"</SPAN
->
-            button after entering your email address.
-          </P
-><P
->&#13;            If you never receive mail from Bugzilla, chances are you do
-            not have sendmail in "/usr/lib/sendmail". Ensure sendmail
-            lives in, or is symlinked to, "/usr/lib/sendmail".
-          </P
-><P
->&#13;            If you are using an MTA other than
-            <SPAN
-CLASS="application"
->sendmail</SPAN
-> the
-            <VAR
-CLASS="option"
->sendmailnow</VAR
-> param must be set to
-            <VAR
-CLASS="literal"
->on</VAR
-> or no mail will be sent.
-          </P
-></DIV
-></DIV
-></DIV
-><DIV
-CLASS="qandadiv"
-><H3
-><A
-NAME="faq-db"
-></A
->6. Bugzilla Database</H3
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-db-corrupted"
-></A
-><B
->A.6.1. </B
->
-            I think my database might be corrupted, or contain
-            invalid entries. What do I do?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            Run the <SPAN
-CLASS="QUOTE"
->"sanity check"</SPAN
-> utility
-            (<TT
-CLASS="filename"
->sanitycheck.cgi</TT
->) from your web browser
-            to see! If it finishes without errors, you're
-            <EM
->probably</EM
-> OK. If it doesn't come back
-            OK (i.e. any red letters), there are certain things
-            Bugzilla can recover from and certain things it can't. If
-            it can't auto-recover, I hope you're familiar with
-            mysqladmin commands or have installed another way to
-            manage your database. Sanity Check, although it is a good
-            basic check on your database integrity, by no means is a
-            substitute for competent database administration and
-            avoiding deletion of data. It is not exhaustive, and was
-            created to do a basic check for the most common problems
-            in Bugzilla databases.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-db-manualedit"
-></A
-><B
->A.6.2. </B
->
-            I want to manually edit some entries in my database. How?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            There is no facility in Bugzilla itself to do this. It's also
-            generally not a smart thing to do if you don't know exactly what
-            you're doing. If you understand SQL, though, you can use the
-            <B
-CLASS="command"
->mysql</B
-> or <B
-CLASS="command"
->psql</B
-> command line 
-            utilities to manually insert, delete and modify table information. 
-            There are also more intuitive GUI clients available for both MySQL 
-            and PostgreSQL. For MySQL, we recommend
-            <A
-HREF="http://www.phpmyadmin.net/"
-TARGET="_top"
->phpMyAdmin</A
->.
-          </P
-><P
->&#13;            Remember, backups are your friend. Everyone makes mistakes, and
-            it's nice to have a safety net in case you mess something up.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-db-permissions"
-></A
-><B
->A.6.3. </B
->
-            I think I've set up MySQL permissions correctly, but Bugzilla still
-            can't connect.
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            Try running MySQL from its binary:
-            <B
-CLASS="command"
->mysqld --skip-grant-tables</B
->.
-            This will allow you to completely rule out grant tables as the
-            cause of your frustration. If this Bugzilla is able to connect
-            at this point then you need to check that you have granted proper
-            permission to the user password combo defined in
-            <TT
-CLASS="filename"
->localconfig</TT
->.
-          </P
-><DIV
-CLASS="warning"
-><P
-></P
-><TABLE
-CLASS="warning"
-WIDTH="100%"
-BORDER="0"
-><TR
-><TD
-WIDTH="25"
-ALIGN="CENTER"
-VALIGN="TOP"
-><IMG
-SRC="../images/warning.gif"
-HSPACE="5"
-ALT="Warning"></TD
-><TD
-ALIGN="LEFT"
-VALIGN="TOP"
-><P
->&#13;              Running MySQL with this command line option is very insecure and
-              should only be done when not connected to the external network
-              as a troubleshooting step.  Please do not run your production
-              database in this mode.
-            </P
-></TD
-></TR
-></TABLE
-></DIV
-><P
->&#13;            You may also be suffering from a client version mismatch:
-          </P
-><P
->&#13;            MySQL 4.1 and up uses an authentication protocol based on
-            a password hashing algorithm that is incompatible with that
-            used by older clients. If you upgrade the server to 4.1,
-            attempts to connect to it with an older client may fail
-            with the following message:
-          </P
-><P
->&#13;            <TABLE
-BORDER="0"
-BGCOLOR="#E0E0E0"
-WIDTH="100%"
-><TR
-><TD
-><FONT
-COLOR="#000000"
-><PRE
-CLASS="screen"
-><SAMP
-CLASS="prompt"
->shell&#62;</SAMP
-> mysql
-            Client does not support authentication protocol requested
-            by server; consider upgrading MySQL client
-            </PRE
-></FONT
-></TD
-></TR
-></TABLE
->
-          </P
-><P
->&#13;            To solve this problem, you should use one of the following
-            approaches:
-          </P
-><P
->&#13;            <P
-></P
-><UL
-><LI
-><P
->&#13;                  Upgrade all client programs to use a 4.1.1 or newer
-                  client library.
-                </P
-></LI
-><LI
-><P
->&#13;                  When connecting to the server with a pre-4.1 client
-                  program, use an account that still has a
-                  pre-4.1-style password.
-                </P
-></LI
-><LI
-><P
->&#13;                  Reset the password to pre-4.1 style for each user
-                  that needs to use a pre-4.1 client program.
-                  This can be done using the SET PASSWORD statement
-                  and the OLD_PASSWORD() function:
-                  <TABLE
-BORDER="0"
-BGCOLOR="#E0E0E0"
-WIDTH="100%"
-><TR
-><TD
-><FONT
-COLOR="#000000"
-><PRE
-CLASS="screen"
->&#13;                    <SAMP
-CLASS="prompt"
->mysql&#62;</SAMP
-> SET PASSWORD FOR
-                    <SAMP
-CLASS="prompt"
->    -&#62;</SAMP
-> ' some_user '@' some_host ' = OLD_PASSWORD(' newpwd ');
-                  </PRE
-></FONT
-></TD
-></TR
-></TABLE
->
-                </P
-></LI
-></UL
->
-            
-          </P
-><P
->&#13;          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-db-synchronize"
-></A
-><B
->A.6.4. </B
->
-            How do I synchronize bug information among multiple
-            different Bugzilla databases?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            Well, you can synchronize or you can move bugs.
-            Synchronization will only work one way -- you can create
-            a read-only copy of the database at one site, and have it
-            regularly updated at intervals from the main database.
-          </P
-><P
->&#13;            MySQL has some synchronization features built-in to the
-            latest releases. It would be great if someone looked into
-            the possibilities there and provided a report to the
-            newsgroup on how to effectively synchronize two Bugzilla
-            installations.
-          </P
-><P
->&#13;            If you simply need to transfer bugs from one Bugzilla to another,
-            checkout the <SPAN
-CLASS="QUOTE"
->"move.pl"</SPAN
-> script in the Bugzilla
-            distribution.
-          </P
-></DIV
-></DIV
-></DIV
-><DIV
-CLASS="qandadiv"
-><H3
-><A
-NAME="faq-nt"
-></A
->7. Can Bugzilla run on a Windows server?</H3
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-nt-easiest"
-></A
-><B
->A.7.1. </B
->
-            What is the easiest way to run Bugzilla on Win32 (Win98+/NT/2K)?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            Making Bugzilla work easily with Windows
-            was one of the major goals of the 2.18 milestone. If the
-            necessary components are in place (perl, a webserver, an MTA, etc.)
-            then installation of Bugzilla on a Windows box should be no more
-            difficult than on any other platform. As with any installation,
-            we recommend that you carefully and completely follow the
-            installation instructions in <A
-HREF="os-specific.html#os-win32"
->Section 2.5.1</A
->.
-          </P
-><P
->&#13;            While doing so, don't forget to check out the very excellent guide
-            to <A
-HREF="http://www.bugzilla.org/docs/win32install.html"
-TARGET="_top"
->&#13;            Installing Bugzilla on Microsoft Windows</A
-> written by
-            Byron Jones. Thanks, Byron!
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-nt-bundle"
-></A
-><B
->A.7.2. </B
->
-            Is there a "Bundle::Bugzilla" equivalent for Win32?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            Not currently. Bundle::Bugzilla enormously simplifies Bugzilla
-            installation on UNIX systems. If someone can volunteer to
-            create a suitable PPM bundle for Win32, it would be appreciated.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-nt-mappings"
-></A
-><B
->A.7.3. </B
->
-            CGI's are failing with a <SPAN
-CLASS="QUOTE"
->"something.cgi is not a valid
-            Windows NT application"</SPAN
-> error. Why?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            Depending on what Web server you are using, you will have to
-            configure the Web server to treat *.cgi files as CGI scripts.
-            In IIS, you do this by adding *.cgi to the App Mappings with
-            the &#60;path&#62;\perl.exe %s %s as the executable.
-          </P
-><P
->&#13;            Microsoft has some advice on this matter, as well:
-            <A
-NAME="AEN3281"
-></A
-><BLOCKQUOTE
-CLASS="BLOCKQUOTE"
-><P
->&#13;                <SPAN
-CLASS="QUOTE"
->"Set application mappings. In the ISM, map the extension
-                for the script file(s) to the executable for the script
-                interpreter. For example, you might map the extension .py to
-                Python.exe, the executable for the Python script interpreter.
-                Note For the ActiveState Perl script interpreter, the extension
-                '.pl' is associated with PerlIS.dll by default. If you want
-                to change the association of .pl to perl.exe, you need to
-                change the application mapping. In the mapping, you must add
-                two percent (%) characters to the end of the pathname for
-                perl.exe, as shown in this example: 
-                <B
-CLASS="command"
->c:\perl\bin\perl.exe %s %s</B
->"</SPAN
->
-              </P
-></BLOCKQUOTE
->
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-nt-dbi"
-></A
-><B
->A.7.4. </B
->
-            I'm having trouble with the perl modules for NT not being
-            able to talk to the database.
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            Your modules may be outdated or inaccurate. Try:
-            <P
-></P
-><OL
-TYPE="1"
-><LI
-><P
->&#13;                  Hitting <A
-HREF="http://www.activestate.com/ActivePerl"
-TARGET="_top"
->http://www.activestate.com/ActivePerl</A
->
-                </P
-></LI
-><LI
-><P
->&#13;                  Download ActivePerl
-                </P
-></LI
-><LI
-><P
->&#13;                  Go to your prompt
-                </P
-></LI
-><LI
-><P
->&#13;                  Type 'ppm'
-                </P
-></LI
-><LI
-><P
->&#13;                  <SAMP
-CLASS="prompt"
->PPM&#62;</SAMP
-> <B
-CLASS="command"
->install DBI DBD-mysql GD</B
->
-                </P
-></LI
-></OL
->
-            I reckon TimeDate comes with the activeperl.
-            You can check the ActiveState site for packages for installation
-            through PPM. <A
-HREF="http://www.activestate.com/Packages/"
-TARGET="_top"
->http://www.activestate.com/Packages/</A
->.
-          </P
-></DIV
-></DIV
-></DIV
-><DIV
-CLASS="qandadiv"
-><H3
-><A
-NAME="faq-use"
-></A
->8. Bugzilla Usage</H3
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-use-changeaddress"
-></A
-><B
->A.8.1. </B
->
-            How do I change my user name (email address) in Bugzilla?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            You can change your email address from the Name and Password
-            section in Preferences. You will be emailed at both the old 
-            and new addresses for confirmation. 'Administrative Policies' 
-            must have the 'allowemailchange' parameter set to <SPAN
-CLASS="QUOTE"
->"On"</SPAN
->.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-use-query"
-></A
-><B
->A.8.2. </B
->
-            The query page is very confusing.
-            Isn't there a simpler way to query?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            The interface was simplified by a UI designer for 2.16. Further
-            suggestions for improvement are welcome, but we won't sacrifice
-            power for simplicity.
-          </P
-><P
->&#13;            As of 2.18, there is also a 'simpler' search available. At the top
-            of the search page are two links; <SPAN
-CLASS="QUOTE"
->"Advanced Search"</SPAN
->
-            will take you to the familiar full-power/full-complexity search
-            page. The <SPAN
-CLASS="QUOTE"
->"Find a Specific Bug"</SPAN
-> link will take you
-            to a much-simplified page where you can pick a product and
-            status (open,closed, or both), then enter words that appear in
-            the bug you want to find. This search will scour the 'Summary'
-            and 'Comment' fields, and return a list of bugs sorted so that
-            the bugs with the most hits/matches are nearer to the top.
-          </P
-><DIV
-CLASS="note"
-><P
-></P
-><TABLE
-CLASS="note"
-WIDTH="100%"
-BORDER="0"
-><TR
-><TD
-WIDTH="25"
-ALIGN="CENTER"
-VALIGN="TOP"
-><IMG
-SRC="../images/note.gif"
-HSPACE="5"
-ALT="Note"></TD
-><TD
-ALIGN="LEFT"
-VALIGN="TOP"
-><P
->&#13;              Matches in the Summary will 'trump' matches in comments,
-              and bugs with summary-matches will be placed higher in
-              the buglist --  even if a lower-ranked bug has more matches
-              in the comments section.
-            </P
-></TD
-></TR
-></TABLE
-></DIV
-><P
->&#13;            Bugzilla uses a cookie to remember which version of the page
-            you visited last, and brings that page up when you next do a
-            search. The default page for new users (or after an upgrade)
-            is the 'simple' search.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-use-accept"
-></A
-><B
->A.8.3. </B
->
-            I'm confused by the behavior of the <SPAN
-CLASS="QUOTE"
->"Accept"</SPAN
->
-            button in the Show Bug form. Why doesn't it assign the bug
-            to me when I accept it?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            The current behavior is acceptable to bugzilla.mozilla.org and
-            most users. If you want to change this behavior, though, you
-            have your choice of patches: 
-            <P
-></P
-><TABLE
-BORDER="0"
-><TBODY
-><TR
-><TD
->&#13;                <A
-HREF="https://bugzilla.mozilla.org/show_bug.cgi?id=35195"
-TARGET="_top"
->Bug 35195</A
->
-                seeks to add an <SPAN
-CLASS="QUOTE"
->"...and accept the bug"</SPAN
-> checkbox
-                to the UI. It has two patches attached to it: 
-                <A
-HREF="https://bugzilla.mozilla.org/showattachment.cgi?attach_id=8029"
-TARGET="_top"
->attachment 8029</A
->
-                was originally created for Bugzilla 2.12, while 
-                <A
-HREF="https://bugzilla.mozilla.org/showattachment.cgi?attach_id=91372"
-TARGET="_top"
->attachment 91372</A
->
-                is an updated version for Bugzilla 2.16
-              </TD
-></TR
-><TR
-><TD
->&#13;                <A
-HREF="https://bugzilla.mozilla.org/show_bug.cgi?id=37613"
-TARGET="_top"
->Bug
-                37613</A
-> also provides two patches (against Bugzilla
-                2.12): one to add a 'Take Bug' option, and the other to
-                automatically reassign the bug on 'Accept'. 
-              </TD
-></TR
-></TBODY
-></TABLE
-><P
-></P
->
-            These patches are all somewhat dated now, and cannot be applied
-            directly, but they are simple enough to provide a guide on how
-            Bugzilla can be customized and updated to suit your needs.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-use-attachment"
-></A
-><B
->A.8.4. </B
->
-            I can't upload anything into the database via the
-            <SPAN
-CLASS="QUOTE"
->"Create Attachment"</SPAN
-> link. What am I doing wrong?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            The most likely cause is a very old browser or a browser that is
-            incompatible with file upload via POST. Download the latest version
-            of your favourite browser to handle uploads correctly.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-use-keyword"
-></A
-><B
->A.8.5. </B
->
-            How do I change a keyword in Bugzilla, once some bugs are using it?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            In the Bugzilla administrator UI, edit the keyword and
-            it will let you replace the old keyword name with a new one.
-            This will cause a problem with the keyword cache; run
-            <B
-CLASS="command"
->sanitycheck.cgi</B
-> to fix it.
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-use-close"
-></A
-><B
->A.8.6. </B
->
-            Why can't I close bugs from the <SPAN
-CLASS="QUOTE"
->"Change Several Bugs
-            at Once"</SPAN
-> page?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            Simple answer; you can.
-          </P
-><P
->&#13;            The logic behind the page checks every bug in the list to
-            determine legal state changes, and then only shows you controls
-            to do things that could apply to <EM
->every</EM
-> bug
-            on the list. The reason for this is that if you try to do something
-            illegal to a bug, the whole process will grind to a halt, and all
-            changes after the failed one will <EM
->also</EM
-> fail.
-            Since that isn't a good outcome, the page doesn't even present
-            you with the option.
-          </P
-><P
->&#13;            In practical terms, that means that in order to mark
-            multiple bugs as CLOSED, then every bug on the page has to be
-            either RESOLVED or VERIFIED already; if this is not the case,
-            then the option to close the bugs will not appear on the page.
-          </P
-><P
->&#13;            The rationale is that if you pick one of the bugs that's not
-            VERIFIED and try to CLOSE it, the bug change will fail
-            miserably (thus killing any changes in the list after it
-            while doing the bulk change) so it doesn't even give you the
-            choice.
-          </P
-></DIV
-></DIV
-></DIV
-><DIV
-CLASS="qandadiv"
-><H3
-><A
-NAME="faq-hacking"
-></A
->9. Bugzilla Hacking</H3
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-hacking-templatestyle"
-></A
-><B
->A.9.1. </B
->
-            What kind of style should I use for templatization?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            Gerv and Myk suggest a 2-space indent, with embedded code sections on
-            their own line, in line with outer tags. Like this:</P
-><TABLE
-BORDER="0"
-BGCOLOR="#E0E0E0"
-WIDTH="100%"
-><TR
-><TD
-><FONT
-COLOR="#000000"
-><PRE
-CLASS="programlisting"
->&#13;&#60;fred&#62;
-[% IF foo %]
-  &#60;bar&#62;
-  [% FOREACH x = barney %]
-    &#60;tr&#62;
-      &#60;td&#62;
-        [% x %]
-      &#60;/td&#62;
-    &#60;tr&#62;
-  [% END %]
-[% END %]
-&#60;/fred&#62;
-</PRE
-></FONT
-></TD
-></TR
-></TABLE
-><P
-> Myk also recommends you turn on PRE_CHOMP in the template
-        initialization to prevent bloating of HTML with unnecessary whitespace.
-        </P
-><P
->Please note that many have differing opinions on this subject,
-        and the existing templates in Bugzilla espouse both this and a 4-space
-        style. Either is acceptable; the above is preferred.</P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-hacking-bugzillabugs"
-></A
-><B
->A.9.2. </B
->
-            What bugs are in Bugzilla right now?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            Try <A
-HREF="https://bugzilla.mozilla.org/buglist.cgi?bug_status=NEW&#38;bug_status=ASSIGNED&#38;bug_status=REOPENED&#38;product=Bugzilla"
-TARGET="_top"
->&#13;            this link</A
-> to view current bugs or requests for
-            enhancement for Bugzilla.
-          </P
-><P
->&#13;            You can view bugs marked for 3.2 release
-            <A
-HREF="https://bugzilla.mozilla.org/buglist.cgi?product=Bugzilla&#38;target_milestone=Bugzilla+&#38;bz-nextver;"
-TARGET="_top"
->here</A
->.
-            This list includes bugs for the 3.2 release that have already
-            been fixed and checked into CVS. Please consult the
-            <A
-HREF="http://www.bugzilla.org/"
-TARGET="_top"
->&#13;            Bugzilla Project Page</A
-> for details on how to
-            check current sources out of CVS so you can have these
-            bug fixes early!
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-hacking-priority"
-></A
-><B
->A.9.3. </B
->
-            How can I change the default priority to a null value?
-            For instance, have the default priority be <SPAN
-CLASS="QUOTE"
->"---"</SPAN
->
-            instead of <SPAN
-CLASS="QUOTE"
->"P2"</SPAN
->?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
->
-            This is well-documented in <A
-HREF="https://bugzilla.mozilla.org/show_bug.cgi?id=49862"
-TARGET="_top"
->bug
-            49862</A
->. Ultimately, it's as easy as adding the
-            <SPAN
-CLASS="QUOTE"
->"---"</SPAN
-> priority field to your localconfig file
-            in the appropriate area, re-running checksetup.pl, and then
-            changing the default priority in your browser using
-            <B
-CLASS="command"
->editparams.cgi</B
->. 
-          </P
-></DIV
-></DIV
-><DIV
-CLASS="qandaentry"
-><DIV
-CLASS="question"
-><P
-><A
-NAME="faq-hacking-patches"
-></A
-><B
->A.9.4. </B
->
-            What's the best way to submit patches?  What guidelines
-            should I follow?
-          </P
-></DIV
-><DIV
-CLASS="answer"
-><P
-><B
-> </B
-><P
-></P
-><OL
-TYPE="1"
-><LI
-><P
->&#13;                  Enter a bug into bugzilla.mozilla.org for the <SPAN
-CLASS="QUOTE"
->"<A
-HREF="https://bugzilla.mozilla.org/enter_bug.cgi?product=Bugzilla"
-TARGET="_top"
->Bugzilla</A
->"</SPAN
->
-                  product.
-                </P
-></LI
-><LI
-><P
->&#13;                  Upload your patch as a unified diff (having used <SPAN
-CLASS="QUOTE"
->"diff
-                  -u"</SPAN
-> against the <EM
->current sources</EM
->
-                  checked out of CVS), or new source file by clicking
-                  <SPAN
-CLASS="QUOTE"
->"Create a new attachment"</SPAN
-> link on the bug
-                  page you've just created, and include any descriptions of
-                  database changes you may make, into the bug ID you submitted
-                  in step #1. Be sure and click the <SPAN
-CLASS="QUOTE"
->"Patch"</SPAN
-> checkbox
-                  to indicate the text you are sending is a patch!
-                </P
-></LI
-><LI
-><P
->&#13;                  Announce your patch and the associated URL
-                  (https://bugzilla.mozilla.org/show_bug.cgi?id=XXXXXX)
-                  for discussion in the newsgroup
-                  (mozilla.support.bugzilla). You'll get a
-                  really good, fairly immediate reaction to the
-                  implications of your patch, which will also give us
-                  an idea how well-received the change would be.
-                </P
-></LI
-><LI
-><P
->&#13;                  If it passes muster with minimal modification, the
-                  person to whom the bug is assigned in Bugzilla is
-                  responsible for seeing the patch is checked into CVS.
-                </P
-></LI
-><LI
-><P
->&#13;                  Bask in the glory of the fact that you helped write
-                  the most successful open-source bug-tracking software
-                  on the planet :)
-                </P
-></LI
-></OL
-></P
-></DIV
-></DIV
-></DIV
-></DIV
-></DIV
-><DIV
-CLASS="NAVFOOTER"
-><HR
-ALIGN="LEFT"
-WIDTH="100%"><TABLE
-SUMMARY="Footer navigation table"
-WIDTH="100%"
-BORDER="0"
-CELLPADDING="0"
-CELLSPACING="0"
-><TR
-><TD
-WIDTH="33%"
-ALIGN="left"
-VALIGN="top"
-><A
-HREF="integration.html"
-ACCESSKEY="P"
->Prev</A
-></TD
-><TD
-WIDTH="34%"
-ALIGN="center"
-VALIGN="top"
-><A
-HREF="index.html"
-ACCESSKEY="H"
->Home</A
-></TD
-><TD
-WIDTH="33%"
-ALIGN="right"
-VALIGN="top"
-><A
-HREF="troubleshooting.html"
-ACCESSKEY="N"
->Next</A
-></TD
-></TR
-><TR
-><TD
-WIDTH="33%"
-ALIGN="left"
-VALIGN="top"
->Integrating Bugzilla with Third-Party Tools</TD
-><TD
-WIDTH="34%"
-ALIGN="center"
-VALIGN="top"
->&nbsp;</TD
-><TD
-WIDTH="33%"
-ALIGN="right"
-VALIGN="top"
->Troubleshooting</TD
-></TR
-></TABLE
-></DIV
-></BODY
-></HTML
->
\ No newline at end of file
diff --git a/docs/html/flags-overview.html b/docs/html/flags-overview.html
index df753608b5b47fba1c35c45489aca4d1e4806c3a..6dd6aea86dcd9bae86445334523aeb915c7b3a68 100644
--- a/docs/html/flags-overview.html
+++ b/docs/html/flags-overview.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -18,8 +18,8 @@ REL="PREVIOUS"
 TITLE="Milestones"
 HREF="milestones.html"><LINK
 REL="NEXT"
-TITLE="Custom Fields"
-HREF="custom-fields.html"></HEAD
+TITLE="Keywords"
+HREF="keywords.html"></HEAD
 ><BODY
 CLASS="section"
 BGCOLOR="#FFFFFF"
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -63,7 +63,7 @@ WIDTH="10%"
 ALIGN="right"
 VALIGN="bottom"
 ><A
-HREF="custom-fields.html"
+HREF="keywords.html"
 ACCESSKEY="N"
 >Next</A
 ></TD
@@ -458,14 +458,14 @@ NAME="flags-admin"
 >&#13;       If you have the <SPAN
 CLASS="QUOTE"
 >"editcomponents"</SPAN
-> permission, you will
-       have <SPAN
+> permission, you can
+       edit Flag Types from the main administration page. Clicking the
+       <SPAN
 CLASS="QUOTE"
->"Edit: ... | Flags | ..."</SPAN
-> in your page footer.
-       Clicking on that link will bring you to the <SPAN
+>"Flags"</SPAN
+> link will bring you to the <SPAN
 CLASS="QUOTE"
->"Administer 
+>"Administer
        Flag Types"</SPAN
 > page. Here, you can select whether you want 
        to create (or edit) a Bug flag, or an Attachment flag.
@@ -479,8 +479,28 @@ CLASS="section"
 ><H3
 CLASS="section"
 ><A
+NAME="flags-edit"
+>3.8.5.1. Editing a Flag</A
+></H3
+><P
+>&#13;         To edit a flag's properties, just click on the <SPAN
+CLASS="QUOTE"
+>"Edit"</SPAN
+>
+         link next to the flag's description. That will take you to the same
+         form as described below (<A
+HREF="flags-overview.html#flags-create"
+>Section 3.8.5.2</A
+>).
+       </P
+></DIV
+><DIV
+CLASS="section"
+><H3
+CLASS="section"
+><A
 NAME="flags-create"
->3.8.5.1. Creating a Flag</A
+>3.8.5.2. Creating a Flag</A
 ></H3
 ><P
 >&#13;          When you click on the <SPAN
@@ -496,7 +516,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="flags-create-field-name"
->3.8.5.1.1. Name</A
+>3.8.5.2.1. Name</A
 ></H4
 ><P
 >&#13;            This is the name of the flag. This will be displayed 
@@ -511,7 +531,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="flags-create-field-description"
->3.8.5.1.2. Description</A
+>3.8.5.2.2. Description</A
 ></H4
 ><P
 >&#13;            The description describes the flag in more detail. It is visible
@@ -532,7 +552,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="flags-create-field-category"
->3.8.5.1.3. Category</A
+>3.8.5.2.3. Category</A
 ></H4
 ><P
 >&#13;            Default behaviour for a newly-created flag is to appear on
@@ -662,7 +682,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="flags-create-field-sortkey"
->3.8.5.1.4. Sort Key</A
+>3.8.5.2.4. Sort Key</A
 ></H4
 ><P
 >&#13;            Flags normally show up in alphabetical order. If you want them to 
@@ -686,7 +706,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="flags-create-field-active"
->3.8.5.1.5. Active</A
+>3.8.5.2.5. Active</A
 ></H4
 ><P
 >&#13;            Sometimes, you might want to keep old flag information in the 
@@ -707,7 +727,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="flags-create-field-requestable"
->3.8.5.1.6. Requestable</A
+>3.8.5.2.6. Requestable</A
 ></H4
 ><P
 >&#13;            New flags are, by default, <SPAN
@@ -737,7 +757,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="flags-create-field-specific"
->3.8.5.1.7. Specifically Requestable</A
+>3.8.5.2.7. Specifically Requestable</A
 ></H4
 ><P
 >&#13;            By default this box is checked for new flags, meaning that users may make
@@ -757,7 +777,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="flags-create-field-multiplicable"
->3.8.5.1.8. Multiplicable</A
+>3.8.5.2.8. Multiplicable</A
 ></H4
 ><P
 >&#13;            Any flag with <SPAN
@@ -782,7 +802,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="flags-create-field-cclist"
->3.8.5.1.9. CC List</A
+>3.8.5.2.9. CC List</A
 ></H4
 ><P
 >&#13;            If you want certain users to be notified every time this flag is 
@@ -796,7 +816,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="flags-create-grant-group"
->3.8.5.1.10. Grant Group</A
+>3.8.5.2.10. Grant Group</A
 ></H4
 ><P
 >&#13;            When this field is set to some given group, only users in the group
@@ -822,7 +842,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="flags-create-request-group"
->3.8.5.1.11. Request Group</A
+>3.8.5.2.11. Request Group</A
 ></H4
 ><P
 >&#13;            When this field is set to some given group, only users in the group
@@ -842,7 +862,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="flags-delete"
->3.8.5.2. Deleting a Flag</A
+>3.8.5.3. Deleting a Flag</A
 ></H3
 ><P
 >&#13;          When you are at the <SPAN
@@ -897,26 +917,6 @@ CLASS="QUOTE"
 ></TABLE
 ></DIV
 ></DIV
-><DIV
-CLASS="section"
-><H3
-CLASS="section"
-><A
-NAME="flags-edit"
->3.8.5.3. Editing a Flag</A
-></H3
-><P
->&#13;          To edit a flag's properties, just click on the <SPAN
-CLASS="QUOTE"
->"Edit"</SPAN
->
-          link next to the flag's description. That will take you to the same
-          form described in the <SPAN
-CLASS="QUOTE"
->"Creating a Flag"</SPAN
-> section.
-        </P
-></DIV
 ></DIV
 ></DIV
 ><DIV
@@ -953,7 +953,7 @@ WIDTH="33%"
 ALIGN="right"
 VALIGN="top"
 ><A
-HREF="custom-fields.html"
+HREF="keywords.html"
 ACCESSKEY="N"
 >Next</A
 ></TD
@@ -977,7 +977,7 @@ ACCESSKEY="U"
 WIDTH="33%"
 ALIGN="right"
 VALIGN="top"
->Custom Fields</TD
+>Keywords</TD
 ></TR
 ></TABLE
 ></DIV
diff --git a/docs/html/flags.html b/docs/html/flags.html
index e950d720e16c27b408c976647778275231f36d20..2c742e0f4a58b09991906915c9f2c45aa1b161bd 100644
--- a/docs/html/flags.html
+++ b/docs/html/flags.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/general-advice.html b/docs/html/general-advice.html
index 0b7874ff2879845270ce30eca4ac4f75828ae867..91beecc2d0f3b7733f28702e72c0fdfa793b1385 100644
--- a/docs/html/general-advice.html
+++ b/docs/html/general-advice.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -57,7 +57,7 @@ ACCESSKEY="P"
 WIDTH="80%"
 ALIGN="center"
 VALIGN="bottom"
->Appendix B. Troubleshooting</TD
+>Appendix A. Troubleshooting</TD
 ><TD
 WIDTH="10%"
 ALIGN="right"
@@ -78,7 +78,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="general-advice"
->B.1. General Advice</A
+>A.1. General Advice</A
 ></H1
 ><P
 >If you can't get <TT
diff --git a/docs/html/gfdl-0.html b/docs/html/gfdl-0.html
index fdaf96912af323ab5575f188ba8d3d41ab92f744..c66349458306b6fd29871eca39bd63fe51ecafa6 100644
--- a/docs/html/gfdl-0.html
+++ b/docs/html/gfdl-0.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -57,7 +57,7 @@ ACCESSKEY="P"
 WIDTH="80%"
 ALIGN="center"
 VALIGN="bottom"
->Appendix E. GNU Free Documentation License</TD
+>Appendix D. GNU Free Documentation License</TD
 ><TD
 WIDTH="10%"
 ALIGN="right"
diff --git a/docs/html/gfdl-1.html b/docs/html/gfdl-1.html
index 854bb9ecaaedfb89c3e5e3fa108bc9280dfaa3ba..7212ea62c4d99f07f413ca8b9fe7ac3e2da74b49 100644
--- a/docs/html/gfdl-1.html
+++ b/docs/html/gfdl-1.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -57,7 +57,7 @@ ACCESSKEY="P"
 WIDTH="80%"
 ALIGN="center"
 VALIGN="bottom"
->Appendix E. GNU Free Documentation License</TD
+>Appendix D. GNU Free Documentation License</TD
 ><TD
 WIDTH="10%"
 ALIGN="right"
diff --git a/docs/html/gfdl-10.html b/docs/html/gfdl-10.html
index a668955eccb25695f457fc71fe9e90c5a017a245..6929dca544aed40c396ec50213e3bd387718f988 100644
--- a/docs/html/gfdl-10.html
+++ b/docs/html/gfdl-10.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -57,7 +57,7 @@ ACCESSKEY="P"
 WIDTH="80%"
 ALIGN="center"
 VALIGN="bottom"
->Appendix E. GNU Free Documentation License</TD
+>Appendix D. GNU Free Documentation License</TD
 ><TD
 WIDTH="10%"
 ALIGN="right"
diff --git a/docs/html/gfdl-2.html b/docs/html/gfdl-2.html
index 780850c549a67396d1046dcc6421c14ac4f5a429..e9d5315275d4bb4236527823392a0f8a1d09007d 100644
--- a/docs/html/gfdl-2.html
+++ b/docs/html/gfdl-2.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -57,7 +57,7 @@ ACCESSKEY="P"
 WIDTH="80%"
 ALIGN="center"
 VALIGN="bottom"
->Appendix E. GNU Free Documentation License</TD
+>Appendix D. GNU Free Documentation License</TD
 ><TD
 WIDTH="10%"
 ALIGN="right"
diff --git a/docs/html/gfdl-3.html b/docs/html/gfdl-3.html
index 5b5dddbf36d06a8e6a5147be2da94208a6c5e0b2..bb951c40c66405da7ed502e2f41e6b5d75209977 100644
--- a/docs/html/gfdl-3.html
+++ b/docs/html/gfdl-3.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -57,7 +57,7 @@ ACCESSKEY="P"
 WIDTH="80%"
 ALIGN="center"
 VALIGN="bottom"
->Appendix E. GNU Free Documentation License</TD
+>Appendix D. GNU Free Documentation License</TD
 ><TD
 WIDTH="10%"
 ALIGN="right"
diff --git a/docs/html/gfdl-4.html b/docs/html/gfdl-4.html
index 2cfb7d8aed0fe33762e8438e6ce39088728f3ea4..bfbecc3290aebeaba678f4d9aae874179355b61f 100644
--- a/docs/html/gfdl-4.html
+++ b/docs/html/gfdl-4.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -57,7 +57,7 @@ ACCESSKEY="P"
 WIDTH="80%"
 ALIGN="center"
 VALIGN="bottom"
->Appendix E. GNU Free Documentation License</TD
+>Appendix D. GNU Free Documentation License</TD
 ><TD
 WIDTH="10%"
 ALIGN="right"
diff --git a/docs/html/gfdl-5.html b/docs/html/gfdl-5.html
index 61ee7bc76d09dec54b35abdccb5f328886329542..c06e6ba7e8f105f723393eed65fe6b667f8dcd84 100644
--- a/docs/html/gfdl-5.html
+++ b/docs/html/gfdl-5.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -57,7 +57,7 @@ ACCESSKEY="P"
 WIDTH="80%"
 ALIGN="center"
 VALIGN="bottom"
->Appendix E. GNU Free Documentation License</TD
+>Appendix D. GNU Free Documentation License</TD
 ><TD
 WIDTH="10%"
 ALIGN="right"
diff --git a/docs/html/gfdl-6.html b/docs/html/gfdl-6.html
index 2374d03f520386b9d44a7b64b7aa52823fc7f3a2..cb05702e8d11f9b1feb1f969ee4d54ff0b0c5beb 100644
--- a/docs/html/gfdl-6.html
+++ b/docs/html/gfdl-6.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -57,7 +57,7 @@ ACCESSKEY="P"
 WIDTH="80%"
 ALIGN="center"
 VALIGN="bottom"
->Appendix E. GNU Free Documentation License</TD
+>Appendix D. GNU Free Documentation License</TD
 ><TD
 WIDTH="10%"
 ALIGN="right"
diff --git a/docs/html/gfdl-7.html b/docs/html/gfdl-7.html
index c63ef1dfdeec3ce9c06fc3d5f4dafbb7669b7469..933960c35b3a322a8d60176ba62da9d936ec57d2 100644
--- a/docs/html/gfdl-7.html
+++ b/docs/html/gfdl-7.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -57,7 +57,7 @@ ACCESSKEY="P"
 WIDTH="80%"
 ALIGN="center"
 VALIGN="bottom"
->Appendix E. GNU Free Documentation License</TD
+>Appendix D. GNU Free Documentation License</TD
 ><TD
 WIDTH="10%"
 ALIGN="right"
diff --git a/docs/html/gfdl-8.html b/docs/html/gfdl-8.html
index 8038156d43dedd732e20c3bc9acb68a9c14fbb31..f7757819a0947213f4332b65c44e4242020ccb2a 100644
--- a/docs/html/gfdl-8.html
+++ b/docs/html/gfdl-8.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -57,7 +57,7 @@ ACCESSKEY="P"
 WIDTH="80%"
 ALIGN="center"
 VALIGN="bottom"
->Appendix E. GNU Free Documentation License</TD
+>Appendix D. GNU Free Documentation License</TD
 ><TD
 WIDTH="10%"
 ALIGN="right"
diff --git a/docs/html/gfdl-9.html b/docs/html/gfdl-9.html
index 99da1fd3b57b3667abdfe5c8f83c58115ce0da01..a83365faca544be1a856d863c561c469242014c3 100644
--- a/docs/html/gfdl-9.html
+++ b/docs/html/gfdl-9.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -57,7 +57,7 @@ ACCESSKEY="P"
 WIDTH="80%"
 ALIGN="center"
 VALIGN="bottom"
->Appendix E. GNU Free Documentation License</TD
+>Appendix D. GNU Free Documentation License</TD
 ><TD
 WIDTH="10%"
 ALIGN="right"
diff --git a/docs/html/gfdl-howto.html b/docs/html/gfdl-howto.html
index 02e47575163813c69e91456bcb52a06d57e0d31a..d8b0ae92a88d32287fd1c35c73d693cb7248e82b 100644
--- a/docs/html/gfdl-howto.html
+++ b/docs/html/gfdl-howto.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -57,7 +57,7 @@ ACCESSKEY="P"
 WIDTH="80%"
 ALIGN="center"
 VALIGN="bottom"
->Appendix E. GNU Free Documentation License</TD
+>Appendix D. GNU Free Documentation License</TD
 ><TD
 WIDTH="10%"
 ALIGN="right"
@@ -85,7 +85,7 @@ NAME="gfdl-howto"
     of the License in the document and put the following copyright and
     license notices just after the title page:</P
 ><A
-NAME="AEN3758"
+NAME="AEN3329"
 ></A
 ><BLOCKQUOTE
 CLASS="BLOCKQUOTE"
diff --git a/docs/html/gfdl.html b/docs/html/gfdl.html
index c5b85ad4a975a1c115e68c67fd41ee14d3cc88e8..f1cab669119ee20d014684585a107312ba8b40de 100644
--- a/docs/html/gfdl.html
+++ b/docs/html/gfdl.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -36,7 +36,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -75,7 +75,7 @@ CLASS="appendix"
 ><A
 NAME="gfdl"
 ></A
->Appendix E. GNU Free Documentation License</H1
+>Appendix D. GNU Free Documentation License</H1
 ><DIV
 CLASS="TOC"
 ><DL
@@ -148,7 +148,7 @@ HREF="gfdl-howto.html"
 ><P
 >Version 1.1, March 2000</P
 ><A
-NAME="AEN3668"
+NAME="AEN3239"
 ></A
 ><BLOCKQUOTE
 CLASS="BLOCKQUOTE"
diff --git a/docs/html/glossary.html b/docs/html/glossary.html
index ba7d34b28caf0fb81afe22dfc75edb31f9fb4db6..6a5f549c072c23cedb83112a2e34d23dcca891f8 100644
--- a/docs/html/glossary.html
+++ b/docs/html/glossary.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -33,7 +33,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -74,7 +74,7 @@ CLASS="glossdiv"
 ><H1
 CLASS="glossdiv"
 ><A
-NAME="AEN3763"
+NAME="AEN3334"
 >0-9, high ascii</A
 ></H1
 ><DL
@@ -984,7 +984,7 @@ NAME="gloss-zarro"
         Terry had the following to say:
         </P
 ><A
-NAME="AEN4008"
+NAME="AEN3579"
 ></A
 ><TABLE
 BORDER="0"
diff --git a/docs/html/groups.html b/docs/html/groups.html
index c0e5753850294c45061b0c421cd3874e40996962..1889db9e8a5679b6aaea3b64650f5b69475bd272 100644
--- a/docs/html/groups.html
+++ b/docs/html/groups.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -18,8 +18,8 @@ REL="PREVIOUS"
 TITLE="Quips"
 HREF="quips.html"><LINK
 REL="NEXT"
-TITLE="Upgrading to New Releases"
-HREF="upgrading.html"></HEAD
+TITLE="Checking and Maintaining Database Integrity"
+HREF="sanitycheck.html"></HEAD
 ><BODY
 CLASS="section"
 BGCOLOR="#FFFFFF"
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -63,7 +63,7 @@ WIDTH="10%"
 ALIGN="right"
 VALIGN="bottom"
 ><A
-HREF="upgrading.html"
+HREF="sanitycheck.html"
 ACCESSKEY="N"
 >Next</A
 ></TD
@@ -78,7 +78,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="groups"
->3.13. Groups and Group Security</A
+>3.14. Groups and Group Security</A
 ></H1
 ><P
 >Groups allow the administrator
@@ -152,8 +152,8 @@ CLASS="section"
 ><H2
 CLASS="section"
 ><A
-NAME="AEN1686"
->3.13.1. Creating Groups</A
+NAME="create-groups"
+>3.14.1. Creating Groups</A
 ></H2
 ><P
 >To create Groups:</P
@@ -290,8 +290,8 @@ CLASS="section"
 ><H2
 CLASS="section"
 ><A
-NAME="AEN1713"
->3.13.2. Assigning Users to Groups</A
+NAME="edit-groups"
+>3.14.2. Assigning Users to Groups</A
 ></H2
 ><P
 >Users can become a member of a group in several ways.</P
@@ -322,108 +322,32 @@ CLASS="section"
 ><H2
 CLASS="section"
 ><A
-NAME="AEN1723"
->3.13.3. Assigning Group Controls to Products</A
+NAME="AEN1788"
+>3.14.3. Assigning Group Controls to Products</A
 ></H2
 ><P
->&#13;      On the product edit page, there is a page to edit the 
-      <SPAN
-CLASS="QUOTE"
->"Group Controls"</SPAN
-> 
-      for a product. This  allows you to 
-      configure how a group relates to the product. 
-      Groups may be applicable, default, 
-      and mandatory as well as used to control entry 
-      or used to make bugs in the product
-      totally read-only unless the group restrictions are met. 
-      </P
-><P
->&#13;      For each group, it is possible to specify if membership in that
-      group is...
-      </P
-><P
-></P
-><OL
-TYPE="1"
-><LI
-><P
->&#13;          required for bug entry, 
-          </P
-></LI
-><LI
-><P
->&#13;          Not applicable to this product(NA),
-          a possible restriction for a member of the 
-          group to place on a bug in this product(Shown),
-          a default restriction for a member of the 
-          group to place on a bug in this product(Default),
-          or a mandatory restriction to be placed on bugs 
-          in this product(Mandatory).
-          </P
-></LI
-><LI
-><P
->&#13;          Not applicable by non-members to this product(NA),
-          a possible restriction for a non-member of the 
-          group to place on a bug in this product(Shown),
-          a default restriction for a non-member of the 
-          group to place on a bug in this product(Default),
-          or a mandatory restriction to be placed on bugs 
-          in this product when entered by a non-member(Mandatory).
-          </P
-></LI
-><LI
-><P
->&#13;          required in order to make <EM
->any</EM
-> change
-          to bugs in this product <EM
->including comments.</EM
->
-          </P
-></LI
-></OL
-><P
->These controls are often described in this order, so a 
-      product that requires a user to be a member of group "foo" 
-      to enter a bug and then requires that the bug stay restricted
-      to group "foo" at all times and that only members of group "foo"
-      can edit the bug even if they otherwise could see the bug would 
-      have its controls summarized by...</P
-><TABLE
-BORDER="0"
-BGCOLOR="#E0E0E0"
-WIDTH="100%"
-><TR
-><TD
-><FONT
-COLOR="#000000"
-><PRE
-CLASS="programlisting"
-> 
-foo: ENTRY, MANDATORY/MANDATORY, CANEDIT
-      </PRE
-></FONT
-></TD
-></TR
-></TABLE
+>&#13;     For information on assigning group controls to
+     products, see <A
+HREF="products.html"
+>Products</A
+>.
+     </P
 ></DIV
 ><DIV
 CLASS="section"
 ><H2
 CLASS="section"
 ><A
-NAME="AEN1741"
->3.13.4. Common Applications of Group Controls</A
+NAME="AEN1792"
+>3.14.4. Common Applications of Group Controls</A
 ></H2
 ><DIV
 CLASS="section"
 ><H3
 CLASS="section"
 ><A
-NAME="AEN1743"
->3.13.4.1. General User Access With Security Group</A
+NAME="AEN1794"
+>3.14.4.1. General User Access With Security Group</A
 ></H3
 ><P
 >To permit any user to file bugs in each product (A, B, C...) 
@@ -457,8 +381,8 @@ CLASS="section"
 ><H3
 CLASS="section"
 ><A
-NAME="AEN1747"
->3.13.4.2. General User Access With A Security Product</A
+NAME="AEN1798"
+>3.14.4.2. General User Access With A Security Product</A
 ></H3
 ><P
 >To permit any user to file bugs in a Security product
@@ -489,8 +413,8 @@ CLASS="section"
 ><H3
 CLASS="section"
 ><A
-NAME="AEN1751"
->3.13.4.3. Product Isolation With Common Group</A
+NAME="AEN1802"
+>3.14.4.3. Product Isolation With Common Group</A
 ></H3
 ><P
 >To permit users of product A to access the bugs for
@@ -601,7 +525,7 @@ WIDTH="33%"
 ALIGN="right"
 VALIGN="top"
 ><A
-HREF="upgrading.html"
+HREF="sanitycheck.html"
 ACCESSKEY="N"
 >Next</A
 ></TD
@@ -625,7 +549,7 @@ ACCESSKEY="U"
 WIDTH="33%"
 ALIGN="right"
 VALIGN="top"
->Upgrading to New Releases</TD
+>Checking and Maintaining Database Integrity</TD
 ></TR
 ></TABLE
 ></DIV
diff --git a/docs/html/hintsandtips.html b/docs/html/hintsandtips.html
index ec430d350a03c371be1598181fead6726f82740e..cac83e4ba1da511054272c795fb417fe363fa0a9 100644
--- a/docs/html/hintsandtips.html
+++ b/docs/html/hintsandtips.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -88,7 +88,7 @@ CLASS="section"
 ><H2
 CLASS="section"
 ><A
-NAME="AEN2389"
+NAME="AEN2455"
 >5.8.1. Autolinkification</A
 ></H2
 ><P
@@ -181,8 +181,22 @@ CLASS="section"
 ><H2
 CLASS="section"
 ><A
+NAME="comment-wrapping"
+>5.8.3. Server-Side Comment Wrapping</A
+></H2
+><P
+>&#13;      Bugzilla stores comments unwrapped and wraps them at display time. This
+      ensures proper wrapping in all browsers. Lines beginning with the "&#62;" 
+      character are assumed to be quotes, and are not wrapped.
+      </P
+></DIV
+><DIV
+CLASS="section"
+><H2
+CLASS="section"
+><A
 NAME="dependencytree"
->5.8.3. Dependency Tree</A
+>5.8.4. Dependency Tree</A
 ></H2
 ><P
 >&#13;        On the <SPAN
diff --git a/docs/html/index.html b/docs/html/index.html
index 82fd56f171427a6d688c7de952fea3e178419cd1..d4159df3580f5debc5e1759c320cbffb12b05231 100644
--- a/docs/html/index.html
+++ b/docs/html/index.html
@@ -2,7 +2,7 @@
 <HTML
 ><HEAD
 ><TITLE
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TITLE
 ><META
@@ -47,7 +47,7 @@ CLASS="TITLEPAGE"
 CLASS="title"
 ><A
 NAME="AEN2"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</A
 ></H1
@@ -56,7 +56,7 @@ CLASS="corpauthor"
 >The Bugzilla Team</H3
 ><P
 CLASS="pubdate"
->2007-09-18<BR></P
+>2008-02-01<BR></P
 ><DIV
 ><DIV
 CLASS="abstract"
@@ -151,7 +151,7 @@ HREF="extraconfig.html"
 ></DT
 ><DT
 >2.4. <A
-HREF="x860.html"
+HREF="multiple-bz-dbs.html"
 >Multiple Bugzilla databases with a single installation</A
 ></DT
 ><DT
@@ -215,31 +215,41 @@ HREF="flags-overview.html"
 ></DT
 ><DT
 >3.9. <A
+HREF="keywords.html"
+>Keywords</A
+></DT
+><DT
+>3.10. <A
 HREF="custom-fields.html"
 >Custom Fields</A
 ></DT
 ><DT
->3.10. <A
+>3.11. <A
 HREF="edit-values.html"
 >Legal Values</A
 ></DT
 ><DT
->3.11. <A
+>3.12. <A
 HREF="voting.html"
 >Voting</A
 ></DT
 ><DT
->3.12. <A
+>3.13. <A
 HREF="quips.html"
 >Quips</A
 ></DT
 ><DT
->3.13. <A
+>3.14. <A
 HREF="groups.html"
 >Groups and Group Security</A
 ></DT
 ><DT
->3.14. <A
+>3.15. <A
+HREF="sanitycheck.html"
+>Checking and Maintaining Database Integrity</A
+></DT
+><DT
+>3.16. <A
 HREF="upgrading.html"
 >Upgrading to New Releases</A
 ></DT
@@ -384,28 +394,23 @@ HREF="integration.html"
 ></DD
 ><DT
 >A. <A
-HREF="faq.html"
->The Bugzilla FAQ</A
-></DT
-><DT
->B. <A
 HREF="troubleshooting.html"
 >Troubleshooting</A
 ></DT
 ><DD
 ><DL
 ><DT
->B.1. <A
+>A.1. <A
 HREF="general-advice.html"
 >General Advice</A
 ></DT
 ><DT
->B.2. <A
+>A.2. <A
 HREF="trbl-testserver.html"
 >The Apache web server is not serving Bugzilla pages</A
 ></DT
 ><DT
->B.3. <A
+>A.3. <A
 HREF="trbl-perlmodule.html"
 >I installed a Perl module, but 
       <TT
@@ -414,27 +419,27 @@ CLASS="filename"
 > claims it's not installed!</A
 ></DT
 ><DT
->B.4. <A
+>A.4. <A
 HREF="trbl-dbdsponge.html"
 >DBD::Sponge::db prepare failed</A
 ></DT
 ><DT
->B.5. <A
+>A.5. <A
 HREF="paranoid-security.html"
 >cannot chdir(/var/spool/mqueue)</A
 ></DT
 ><DT
->B.6. <A
+>A.6. <A
 HREF="trbl-relogin-everyone.html"
 >Everybody is constantly being forced to relogin</A
 ></DT
 ><DT
->B.7. <A
+>A.7. <A
 HREF="trbl-relogin-some.html"
 >Some users are constantly being forced to relogin</A
 ></DT
 ><DT
->B.8. <A
+>A.8. <A
 HREF="trbl-index.html"
 ><TT
 CLASS="filename"
@@ -442,7 +447,7 @@ CLASS="filename"
 > doesn't show up unless specified in the URL</A
 ></DT
 ><DT
->B.9. <A
+>A.9. <A
 HREF="trbl-passwd-encryption.html"
 >checksetup.pl reports "Client does not support authentication protocol
       requested by server..."</A
@@ -450,50 +455,50 @@ HREF="trbl-passwd-encryption.html"
 ></DL
 ></DD
 ><DT
->C. <A
+>B. <A
 HREF="patches.html"
 >Contrib</A
 ></DT
 ><DD
 ><DL
 ><DT
->C.1. <A
+>B.1. <A
 HREF="cmdline.html"
 >Command-line Search Interface</A
 ></DT
 ><DT
->C.2. <A
+>B.2. <A
 HREF="cmdline-bugmail.html"
 >Command-line 'Send Unsent Bug-mail' tool</A
 ></DT
 ></DL
 ></DD
 ><DT
->D. <A
+>C. <A
 HREF="install-perlmodules-manual.html"
 >Manual Installation of Perl Modules</A
 ></DT
 ><DD
 ><DL
 ><DT
->D.1. <A
+>C.1. <A
 HREF="modules-manual-instructions.html"
 >Instructions</A
 ></DT
 ><DT
->D.2. <A
+>C.2. <A
 HREF="modules-manual-download.html"
 >Download Locations</A
 ></DT
 ><DT
->D.3. <A
+>C.3. <A
 HREF="modules-manual-optional.html"
 >Optional Modules</A
 ></DT
 ></DL
 ></DD
 ><DT
->E. <A
+>D. <A
 HREF="gfdl.html"
 >GNU Free Documentation License</A
 ></DT
@@ -613,12 +618,12 @@ HREF="security-mysql.html#security-mysql-network-ex"
 >Disabling Networking in MySQL</A
 ></DT
 ><DT
->B-1. <A
+>A-1. <A
 HREF="trbl-relogin-everyone.html#trbl-relogin-everyone-share"
 >Examples of urlbase/cookiepath pairs for sharing login cookies</A
 ></DT
 ><DT
->B-2. <A
+>A-2. <A
 HREF="trbl-relogin-everyone.html#trbl-relogin-everyone-restrict"
 >Examples of urlbase/cookiepath pairs to restrict the login cookie</A
 ></DT
diff --git a/docs/html/install-perlmodules-manual.html b/docs/html/install-perlmodules-manual.html
index e2793486dde68c0a704c23e94f22f892f589e18c..03129c8234268b363cea1f2b0729c852dc84a833 100644
--- a/docs/html/install-perlmodules-manual.html
+++ b/docs/html/install-perlmodules-manual.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -36,7 +36,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -75,7 +75,7 @@ CLASS="appendix"
 ><A
 NAME="install-perlmodules-manual"
 ></A
->Appendix D. Manual Installation of Perl Modules</H1
+>Appendix C. Manual Installation of Perl Modules</H1
 ><DIV
 CLASS="TOC"
 ><DL
@@ -84,17 +84,17 @@ CLASS="TOC"
 >Table of Contents</B
 ></DT
 ><DT
->D.1. <A
+>C.1. <A
 HREF="modules-manual-instructions.html"
 >Instructions</A
 ></DT
 ><DT
->D.2. <A
+>C.2. <A
 HREF="modules-manual-download.html"
 >Download Locations</A
 ></DT
 ><DT
->D.3. <A
+>C.3. <A
 HREF="modules-manual-optional.html"
 >Optional Modules</A
 ></DT
diff --git a/docs/html/installation.html b/docs/html/installation.html
index d3e2aebea03f74109496e0a35d7e60be4aab5991..250f8eeef6e842bd019ff07a6ad0a4fb11efec52 100644
--- a/docs/html/installation.html
+++ b/docs/html/installation.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -556,7 +556,7 @@ HREF="os-specific.html#win32-perl-modules"
         to install the Perl modules manually, see 
         <A
 HREF="install-perlmodules-manual.html"
->Appendix D</A
+>Appendix C</A
 >.
       </P
 ><TABLE
@@ -692,7 +692,7 @@ TYPE="1"
 HREF="installation.html#install-modules-dbd-mysql"
 >DBD::mysql</A
 >
-            (2.9003) if using MySQL
+            (4.00) if using MySQL
           </P
 ></LI
 ><LI
@@ -711,7 +711,7 @@ HREF="installation.html#install-modules-dbd-mysql"
 HREF="installation.html#install-modules-template"
 >Template</A
 >
-            (2.12)
+            (2.15)
           </P
 ></LI
 ><LI
@@ -865,12 +865,6 @@ HREF="installation.html#install-modules-soap-lite"
             (2.93) for mod_perl
           </P
 ></LI
-><LI
-><P
->&#13;            Apache::DBI
-            (0.96) for mod_perl2
-          </P
-></LI
 ></OL
 >
       </P
@@ -902,7 +896,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="install-modules-template"
->2.1.5.2. Template Toolkit (2.12)</A
+>2.1.5.2. Template Toolkit (2.15)</A
 ></H3
 ><P
 >When you install Template Toolkit, you'll get asked various
@@ -1202,12 +1196,6 @@ TARGET="_top"
 >Bugzilla also requires a more up-to-date version of the CGI
       perl module to be installed, version 3.11 as opposed to 2.93
       </P
-><P
->Finally, Bugzilla also requires <VAR
-CLASS="literal"
->Apache::DBI</VAR
->
-      (0.96) to be installed as well.</P
 ></DIV
 ></DIV
 ><DIV
diff --git a/docs/html/installing-bugzilla.html b/docs/html/installing-bugzilla.html
index 0fcf875a81b2d8ca14432f6ac55cc3a9d2cb02f7..013d5b4647625a0f0923927666c6f80a49861e37 100644
--- a/docs/html/installing-bugzilla.html
+++ b/docs/html/installing-bugzilla.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -36,7 +36,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -212,7 +212,7 @@ HREF="extraconfig.html#apache-addtype"
 ></DD
 ><DT
 >2.4. <A
-HREF="x860.html"
+HREF="multiple-bz-dbs.html"
 >Multiple Bugzilla databases with a single installation</A
 ></DT
 ><DT
@@ -237,8 +237,8 @@ CLASS="productname"
 ></DT
 ><DT
 >2.5.3. <A
-HREF="os-specific.html#os-mandrake"
->Linux-Mandrake 8.0</A
+HREF="os-specific.html#os-linux"
+>Linux Distributions</A
 ></DT
 ></DL
 ></DD
@@ -251,17 +251,17 @@ HREF="nonroot.html"
 ><DL
 ><DT
 >2.6.1. <A
-HREF="nonroot.html#AEN982"
+HREF="nonroot.html#AEN977"
 >Introduction</A
 ></DT
 ><DT
 >2.6.2. <A
-HREF="nonroot.html#AEN986"
+HREF="nonroot.html#AEN981"
 >MySQL</A
 ></DT
 ><DT
 >2.6.3. <A
-HREF="nonroot.html#AEN1021"
+HREF="nonroot.html#AEN1016"
 >Perl</A
 ></DT
 ><DT
@@ -271,12 +271,12 @@ HREF="nonroot.html#install-perlmodules-nonroot"
 ></DT
 ><DT
 >2.6.5. <A
-HREF="nonroot.html#AEN1086"
+HREF="nonroot.html#AEN1038"
 >HTTP Server</A
 ></DT
 ><DT
 >2.6.6. <A
-HREF="nonroot.html#AEN1098"
+HREF="nonroot.html#AEN1050"
 >Bugzilla</A
 ></DT
 ></DL
diff --git a/docs/html/integration.html b/docs/html/integration.html
index 36d5402d60c9261505fbd8b18fcfb2e0761205b8..dd0c3ae9be1b83a8bad68338fee6d85bafd51c5e 100644
--- a/docs/html/integration.html
+++ b/docs/html/integration.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -18,8 +18,8 @@ REL="PREVIOUS"
 TITLE="Customizing Who Can Change What"
 HREF="cust-change-permissions.html"><LINK
 REL="NEXT"
-TITLE="The Bugzilla FAQ"
-HREF="faq.html"></HEAD
+TITLE="Troubleshooting"
+HREF="troubleshooting.html"></HEAD
 ><BODY
 CLASS="section"
 BGCOLOR="#FFFFFF"
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -63,7 +63,7 @@ WIDTH="10%"
 ALIGN="right"
 VALIGN="bottom"
 ><A
-HREF="faq.html"
+HREF="troubleshooting.html"
 ACCESSKEY="N"
 >Next</A
 ></TD
@@ -269,7 +269,7 @@ WIDTH="33%"
 ALIGN="right"
 VALIGN="top"
 ><A
-HREF="faq.html"
+HREF="troubleshooting.html"
 ACCESSKEY="N"
 >Next</A
 ></TD
@@ -293,7 +293,7 @@ ACCESSKEY="U"
 WIDTH="33%"
 ALIGN="right"
 VALIGN="top"
->The Bugzilla FAQ</TD
+>Troubleshooting</TD
 ></TR
 ></TABLE
 ></DIV
diff --git a/docs/html/keywords.html b/docs/html/keywords.html
new file mode 100644
index 0000000000000000000000000000000000000000..ac4d1b69dde28d74230ff1ef8b98f7478c3ece76
--- /dev/null
+++ b/docs/html/keywords.html
@@ -0,0 +1,170 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
+<HTML
+><HEAD
+><TITLE
+>Keywords</TITLE
+><META
+NAME="GENERATOR"
+CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
+REL="HOME"
+TITLE="The Bugzilla Guide - 3.1.3 
+    Development 
+    Release"
+HREF="index.html"><LINK
+REL="UP"
+TITLE="Administering Bugzilla"
+HREF="administration.html"><LINK
+REL="PREVIOUS"
+TITLE="Flags"
+HREF="flags-overview.html"><LINK
+REL="NEXT"
+TITLE="Custom Fields"
+HREF="custom-fields.html"></HEAD
+><BODY
+CLASS="section"
+BGCOLOR="#FFFFFF"
+TEXT="#000000"
+LINK="#0000FF"
+VLINK="#840084"
+ALINK="#0000FF"
+><DIV
+CLASS="NAVHEADER"
+><TABLE
+SUMMARY="Header navigation table"
+WIDTH="100%"
+BORDER="0"
+CELLPADDING="0"
+CELLSPACING="0"
+><TR
+><TH
+COLSPAN="3"
+ALIGN="center"
+>The Bugzilla Guide - 3.1.3 
+    Development 
+    Release</TH
+></TR
+><TR
+><TD
+WIDTH="10%"
+ALIGN="left"
+VALIGN="bottom"
+><A
+HREF="flags-overview.html"
+ACCESSKEY="P"
+>Prev</A
+></TD
+><TD
+WIDTH="80%"
+ALIGN="center"
+VALIGN="bottom"
+>Chapter 3. Administering Bugzilla</TD
+><TD
+WIDTH="10%"
+ALIGN="right"
+VALIGN="bottom"
+><A
+HREF="custom-fields.html"
+ACCESSKEY="N"
+>Next</A
+></TD
+></TR
+></TABLE
+><HR
+ALIGN="LEFT"
+WIDTH="100%"></DIV
+><DIV
+CLASS="section"
+><H1
+CLASS="section"
+><A
+NAME="keywords"
+>3.9. Keywords</A
+></H1
+><P
+>&#13;    The administrator can define keywords which can be used to tag and
+    categorise bugs. For example, the keyword "regression" is commonly used.
+    A company might have a policy stating all regressions
+    must be fixed by the next release - this keyword can make tracking those
+    bugs much easier.
+    </P
+><P
+>&#13;    Keywords are global, rather than per-product. If the administrator changes
+    a keyword currently applied to any bugs, the keyword cache must be rebuilt
+    using the <A
+HREF="sanitycheck.html"
+>Section 3.15</A
+> script. Currently keywords can not
+    be marked obsolete to prevent future usage.
+    </P
+><P
+>&#13;    Keywords can be created, edited or deleted by clicking the "Keywords"
+    link in the admin page. There are two fields for each keyword - the keyword
+    itself and a brief description. Once created, keywords can be selected
+    and applied to individual bugs in that bug's "Details" section.
+    </P
+></DIV
+><DIV
+CLASS="NAVFOOTER"
+><HR
+ALIGN="LEFT"
+WIDTH="100%"><TABLE
+SUMMARY="Footer navigation table"
+WIDTH="100%"
+BORDER="0"
+CELLPADDING="0"
+CELLSPACING="0"
+><TR
+><TD
+WIDTH="33%"
+ALIGN="left"
+VALIGN="top"
+><A
+HREF="flags-overview.html"
+ACCESSKEY="P"
+>Prev</A
+></TD
+><TD
+WIDTH="34%"
+ALIGN="center"
+VALIGN="top"
+><A
+HREF="index.html"
+ACCESSKEY="H"
+>Home</A
+></TD
+><TD
+WIDTH="33%"
+ALIGN="right"
+VALIGN="top"
+><A
+HREF="custom-fields.html"
+ACCESSKEY="N"
+>Next</A
+></TD
+></TR
+><TR
+><TD
+WIDTH="33%"
+ALIGN="left"
+VALIGN="top"
+>Flags</TD
+><TD
+WIDTH="34%"
+ALIGN="center"
+VALIGN="top"
+><A
+HREF="administration.html"
+ACCESSKEY="U"
+>Up</A
+></TD
+><TD
+WIDTH="33%"
+ALIGN="right"
+VALIGN="top"
+>Custom Fields</TD
+></TR
+></TABLE
+></DIV
+></BODY
+></HTML
+>
\ No newline at end of file
diff --git a/docs/html/lifecycle.html b/docs/html/lifecycle.html
index ec4d313dd812a824f3d233cf706df1a386e8229e..1d8e58747ee001dc6c3488af813a43c599fc14b2 100644
--- a/docs/html/lifecycle.html
+++ b/docs/html/lifecycle.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/milestones.html b/docs/html/milestones.html
index dfa20fb9710a9facd8af10de259c55e92fe4a308..e9953948fb245768856a26e6089d64a1eb586cdb 100644
--- a/docs/html/milestones.html
+++ b/docs/html/milestones.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/modules-manual-download.html b/docs/html/modules-manual-download.html
index b5bd6ed1d590f11149afc8a3c4e424f5cfbb4624..793443660a4d66152efc8615dc66b4a41a56af52 100644
--- a/docs/html/modules-manual-download.html
+++ b/docs/html/modules-manual-download.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -57,7 +57,7 @@ ACCESSKEY="P"
 WIDTH="80%"
 ALIGN="center"
 VALIGN="bottom"
->Appendix D. Manual Installation of Perl Modules</TD
+>Appendix C. Manual Installation of Perl Modules</TD
 ><TD
 WIDTH="10%"
 ALIGN="right"
@@ -78,7 +78,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="modules-manual-download"
->D.2. Download Locations</A
+>C.2. Download Locations</A
 ></H1
 ><DIV
 CLASS="note"
diff --git a/docs/html/modules-manual-instructions.html b/docs/html/modules-manual-instructions.html
index 28e7d147c6b38905bedcae143638cb6bb6f41a18..d45620df7742771aa9128df354b533f38cd5cc46 100644
--- a/docs/html/modules-manual-instructions.html
+++ b/docs/html/modules-manual-instructions.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -57,7 +57,7 @@ ACCESSKEY="P"
 WIDTH="80%"
 ALIGN="center"
 VALIGN="bottom"
->Appendix D. Manual Installation of Perl Modules</TD
+>Appendix C. Manual Installation of Perl Modules</TD
 ><TD
 WIDTH="10%"
 ALIGN="right"
@@ -78,7 +78,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="modules-manual-instructions"
->D.1. Instructions</A
+>C.1. Instructions</A
 ></H1
 ><P
 >&#13;      If you need to install Perl modules manually, here's how it's done.
diff --git a/docs/html/modules-manual-optional.html b/docs/html/modules-manual-optional.html
index a62ae6734a8b4562e268e50eea6ce18fca1217d9..1c37683b79f75920868c6ed670a200a52930e7cb 100644
--- a/docs/html/modules-manual-optional.html
+++ b/docs/html/modules-manual-optional.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -57,7 +57,7 @@ ACCESSKEY="P"
 WIDTH="80%"
 ALIGN="center"
 VALIGN="bottom"
->Appendix D. Manual Installation of Perl Modules</TD
+>Appendix C. Manual Installation of Perl Modules</TD
 ><TD
 WIDTH="10%"
 ALIGN="right"
@@ -78,7 +78,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="modules-manual-optional"
->D.3. Optional Modules</A
+>C.3. Optional Modules</A
 ></H1
 ><P
 >&#13;      Chart::Base:
diff --git a/docs/html/x860.html b/docs/html/multiple-bz-dbs.html
similarity index 97%
rename from docs/html/x860.html
rename to docs/html/multiple-bz-dbs.html
index cf1933b8aa8caf547cb6bbc5e8f9056d53fddbe2..10d0a39ff9110c59978cc3cd2522d8f1e2eb4f4d 100644
--- a/docs/html/x860.html
+++ b/docs/html/multiple-bz-dbs.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -77,7 +77,7 @@ CLASS="section"
 ><H1
 CLASS="section"
 ><A
-NAME="AEN860"
+NAME="multiple-bz-dbs"
 >2.4. Multiple Bugzilla databases with a single installation</A
 ></H1
 ><P
diff --git a/docs/html/myaccount.html b/docs/html/myaccount.html
index 65144a021e1df6d1e2df08585bec21c115c6b013..9e9122d8bf5f287b08d707d962cf1d52d60efbd8 100644
--- a/docs/html/myaccount.html
+++ b/docs/html/myaccount.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/newversions.html b/docs/html/newversions.html
index ef1c86425e3cf05e7a7fa16a6337213482662db6..a2e051adb30a765402df9e22b71282678ea44e6f 100644
--- a/docs/html/newversions.html
+++ b/docs/html/newversions.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -81,7 +81,7 @@ NAME="newversions"
 >1.3. New Versions</A
 ></H1
 ><P
->&#13;      This is the 3.1.2 version of The Bugzilla Guide. It is so named 
+>&#13;      This is the 3.1.3 version of The Bugzilla Guide. It is so named 
       to match the current version of Bugzilla. 
        This version of the guide, like its associated Bugzilla version, is a
       development version. 
diff --git a/docs/html/nonroot.html b/docs/html/nonroot.html
index 31c7e3749c786c5a34b1bf3ca40687e633d934c2..68a8a7b874df5daca5db919fad5735577bbf7ece 100644
--- a/docs/html/nonroot.html
+++ b/docs/html/nonroot.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -85,7 +85,7 @@ CLASS="section"
 ><H2
 CLASS="section"
 ><A
-NAME="AEN982"
+NAME="AEN977"
 >2.6.1. Introduction</A
 ></H2
 ><P
@@ -105,7 +105,7 @@ CLASS="section"
 ><H2
 CLASS="section"
 ><A
-NAME="AEN986"
+NAME="AEN981"
 >2.6.2. MySQL</A
 ></H2
 ><P
@@ -161,7 +161,7 @@ CLASS="section"
 ><H3
 CLASS="section"
 ><A
-NAME="AEN994"
+NAME="AEN989"
 >2.6.2.1. Running MySQL as Non-Root</A
 ></H3
 ><DIV
@@ -169,7 +169,7 @@ CLASS="section"
 ><H4
 CLASS="section"
 ><A
-NAME="AEN996"
+NAME="AEN991"
 >2.6.2.1.1. The Custom Configuration Method</A
 ></H4
 ><P
@@ -213,7 +213,7 @@ CLASS="section"
 ><H4
 CLASS="section"
 ><A
-NAME="AEN1000"
+NAME="AEN995"
 >2.6.2.1.2. The Custom Built Method</A
 ></H4
 ><P
@@ -236,7 +236,7 @@ CLASS="section"
 ><H4
 CLASS="section"
 ><A
-NAME="AEN1005"
+NAME="AEN1000"
 >2.6.2.1.3. Starting the Server</A
 ></H4
 ><P
@@ -364,14 +364,15 @@ CLASS="section"
 ><H2
 CLASS="section"
 ><A
-NAME="AEN1021"
+NAME="AEN1016"
 >2.6.3. Perl</A
 ></H2
 ><P
->On the extremely rare chance that you don't have Perl on
+>&#13;      On the extremely rare chance that you don't have Perl on
       the machine, you will have to build the sources
       yourself. The following commands should get your system
-      installed with your own personal version of Perl:</P
+      installed with your own personal version of Perl:
+      </P
 ><TABLE
 BORDER="0"
 BGCOLOR="#E0E0E0"
@@ -428,13 +429,13 @@ CLASS="command"
 ></TR
 ></TABLE
 ><P
->Once you have Perl installed into a directory (probably
+>&#13;      Once you have Perl installed into a directory (probably
       in <TT
 CLASS="filename"
 >~/perl/bin</TT
->), you'll have to
-      change the locations on the scripts, which is detailed later on
-      this page.</P
+>), you will need to
+      install the Perl Modules, described below.
+      </P
 ></DIV
 ><DIV
 CLASS="section"
@@ -445,296 +446,29 @@ NAME="install-perlmodules-nonroot"
 >2.6.4. Perl Modules</A
 ></H2
 ><P
->Installing the Perl modules as a non-root user is probably the
-      hardest part of the process. There are two different methods: a
-      completely independant Perl with its own modules, or personal
-      modules using the current (root installed) version of Perl. The
-      independant method takes up quite a bit of disk space, but is
-      less complex, while the mixed method only uses as much space as the
-      modules themselves, but takes more work to setup.</P
-><DIV
-CLASS="section"
-><H3
-CLASS="section"
-><A
-NAME="AEN1040"
->2.6.4.1. The Independant Method</A
-></H3
-><P
->The independant method requires that you install your own
-        personal version of Perl, as detailed in the previous section. Once
-        installed, you can start the CPAN shell with the following
-        command:</P
-><P
->&#13;          <TABLE
-BORDER="0"
-BGCOLOR="#E0E0E0"
-WIDTH="100%"
-><TR
-><TD
-><FONT
-COLOR="#000000"
-><PRE
-CLASS="screen"
->&#13;            <SAMP
-CLASS="prompt"
->bash$</SAMP
->
-            <B
-CLASS="command"
->/home/foo/perl/bin/perl -MCPAN -e 'shell'</B
->
-          </PRE
-></FONT
-></TD
-></TR
-></TABLE
->
-        </P
-><P
->And then:</P
-><P
->&#13;          <TABLE
-BORDER="0"
-BGCOLOR="#E0E0E0"
-WIDTH="100%"
-><TR
-><TD
-><FONT
-COLOR="#000000"
-><PRE
-CLASS="screen"
->&#13;            <SAMP
-CLASS="prompt"
->cpan&#62;</SAMP
->
-            <B
-CLASS="command"
->install Bundle::Bugzilla</B
->
-          </PRE
-></FONT
-></TD
-></TR
-></TABLE
->
-        </P
-><P
->With this method, module installation will usually go a lot
-        smoother, but if you have any hang-ups, you can consult the next
-        section.</P
-></DIV
-><DIV
-CLASS="section"
-><H3
-CLASS="section"
-><A
-NAME="AEN1053"
->2.6.4.2. The Mixed Method</A
-></H3
-><P
->First, you'll need to configure CPAN to
-        install modules in your home directory. The CPAN FAQ says the
-        following on this issue:</P
-><P
->&#13;          <TABLE
-BORDER="0"
-BGCOLOR="#E0E0E0"
-WIDTH="100%"
-><TR
-><TD
-><FONT
-COLOR="#000000"
-><PRE
-CLASS="programlisting"
->&#13;5)  I am not root, how can I install a module in a personal directory?
-
-    You will most probably like something like this:
-
-      o conf makepl_arg "LIB=~/myperl/lib \
-                         INSTALLMAN1DIR=~/myperl/man/man1 \
-                         INSTALLMAN3DIR=~/myperl/man/man3"
-    install Sybase::Sybperl
-
-    You can make this setting permanent like all "o conf" settings with "o conf commit".
-
-    You will have to add ~/myperl/man to the MANPATH environment variable and also tell your Perl programs to
-    look into ~/myperl/lib, e.g. by including
-
-      use lib "$ENV{HOME}/myperl/lib";
-
-    or setting the PERL5LIB environment variable.
-
-    Another thing you should bear in mind is that the UNINST parameter should never be set if you are not root.</PRE
-></FONT
-></TD
-></TR
-></TABLE
->
-        </P
-><P
->So, you will need to create a Perl directory in your home
-        directory, as well as the <TT
-CLASS="filename"
->lib</TT
->,
-        <TT
-CLASS="filename"
->man</TT
->,
-        <TT
+>&#13;      Installing the Perl modules as a non-root user is accomplished by
+      running the <TT
 CLASS="filename"
->man/man1</TT
->, and
-        <TT
-CLASS="filename"
->man/man3</TT
-> directories in that
-        Perl directory. Set the MANPATH variable and PERL5LIB variable, so
-        that the installation of the modules goes smoother. (Setting
-        UNINST=0 in your "make install" options, on the CPAN first-time
-        configuration, is also a good idea.)</P
-><P
->After that, go into the CPAN shell:</P
-><P
->&#13;          <TABLE
-BORDER="0"
-BGCOLOR="#E0E0E0"
-WIDTH="100%"
-><TR
-><TD
-><FONT
-COLOR="#000000"
-><PRE
-CLASS="screen"
->&#13;            <SAMP
-CLASS="prompt"
->bash$</SAMP
+>install-module.pl</TT
 >
-            <B
-CLASS="command"
->perl -MCPAN -e 'shell'</B
->
-          </PRE
-></FONT
-></TD
-></TR
-></TABLE
->
-        </P
-><P
->From there, you will need to type in the above "o conf" command
-        and commit the changes. Then you can run through the installation:</P
-><P
->&#13;          <TABLE
-BORDER="0"
-BGCOLOR="#E0E0E0"
-WIDTH="100%"
-><TR
-><TD
-><FONT
-COLOR="#000000"
-><PRE
-CLASS="screen"
->&#13;            <SAMP
-CLASS="prompt"
->cpan&#62;</SAMP
->
-            <B
-CLASS="command"
->install Bundle::Bugzilla</B
->
-          </PRE
-></FONT
-></TD
-></TR
-></TABLE
->
-        </P
-><P
->Most of the module installation process should go smoothly. However,
-        you may have some problems with Template. When you first start, you will
-        want to try to install Template with the XS Stash options on. If this
-        doesn't work, it may spit out C compiler error messages and croak back
-        to the CPAN shell prompt. So, redo the install, and turn it off. (In fact,
-        say no to all of the Template questions.) It may also start failing on a
-        few of the tests. If the total tests passed is a reasonable figure (90+%),
-        force the install with the following command:</P
-><P
->&#13;          <TABLE
-BORDER="0"
-BGCOLOR="#E0E0E0"
-WIDTH="100%"
-><TR
-><TD
-><FONT
-COLOR="#000000"
-><PRE
-CLASS="screen"
->&#13;            <SAMP
-CLASS="prompt"
->cpan&#62;</SAMP
->
-            <B
-CLASS="command"
->force install Template</B
->
-          </PRE
-></FONT
-></TD
-></TR
-></TABLE
->
-        </P
-><P
->You may also want to install the other optional modules:</P
-><TABLE
-BORDER="0"
-BGCOLOR="#E0E0E0"
-WIDTH="100%"
-><TR
-><TD
-><FONT
-COLOR="#000000"
-><PRE
-CLASS="screen"
->&#13;          <SAMP
-CLASS="prompt"
->cpan&#62;</SAMP
->
-          <B
-CLASS="command"
->install GD</B
->
-          <SAMP
-CLASS="prompt"
->cpan&#62;</SAMP
->
-          <B
-CLASS="command"
->install Chart::Base</B
->
-          <SAMP
-CLASS="prompt"
->cpan&#62;</SAMP
+      script. For more details on this script, see 
+      <A
+HREF="api/install-module.html"
+TARGET="_top"
+><TT
+CLASS="filename"
+>install-module.pl</TT
 >
-          <B
-CLASS="command"
->install MIME::Parser</B
+      documentation</A
 >
-        </PRE
-></FONT
-></TD
-></TR
-></TABLE
-></DIV
+      </P
 ></DIV
 ><DIV
 CLASS="section"
 ><H2
 CLASS="section"
 ><A
-NAME="AEN1086"
+NAME="AEN1038"
 >2.6.5. HTTP Server</A
 ></H2
 ><P
@@ -748,7 +482,7 @@ CLASS="section"
 ><H3
 CLASS="section"
 ><A
-NAME="AEN1089"
+NAME="AEN1041"
 >2.6.5.1. Running Apache as Non-Root</A
 ></H3
 ><P
@@ -830,47 +564,11 @@ CLASS="section"
 ><H2
 CLASS="section"
 ><A
-NAME="AEN1098"
+NAME="AEN1050"
 >2.6.6. Bugzilla</A
 ></H2
 ><P
->If you had to install Perl modules as a non-root user
-      (<A
-HREF="nonroot.html#install-perlmodules-nonroot"
->Section 2.6.4</A
->) or to non-standard
-      directories, you will need to change the scripts, setting the correct
-      location of the Perl modules:</P
-><P
->&#13;        <TABLE
-BORDER="0"
-BGCOLOR="#E0E0E0"
-WIDTH="100%"
-><TR
-><TD
-><FONT
-COLOR="#000000"
-><PRE
-CLASS="programlisting"
->perl -pi -e
-        's@use strict\;@use strict\; use lib \"/home/foo/perl/lib\"\;@'
-        *cgi *pl Bug.pm processmail syncshadowdb</PRE
-></FONT
-></TD
-></TR
-></TABLE
->
-
-        Change <TT
-CLASS="filename"
->/home/foo/perl/lib</TT
-> to
-        your personal Perl library directory. You can probably skip this
-        step if you are using the independant method of Perl module
-        installation.
-      </P
-><P
->When you run <B
+>&#13;      When you run <B
 CLASS="command"
 >./checksetup.pl</B
 > to create
@@ -879,11 +577,15 @@ CLASS="filename"
 >localconfig</TT
 > file, it will list the Perl
       modules it finds. If one is missing, go back and double-check the
-      module installation from the CPAN shell, then delete the
-      <TT
+      module installation from <A
+HREF="nonroot.html#install-perlmodules-nonroot"
+>Section 2.6.4</A
+>, 
+      then delete the <TT
 CLASS="filename"
 >localconfig</TT
-> file and try again.</P
+> file and try again.
+      </P
 ><DIV
 CLASS="warning"
 ><P
@@ -905,7 +607,7 @@ ALT="Warning"></TD
 ALIGN="LEFT"
 VALIGN="TOP"
 ><P
->The one option in <TT
+>One option in <TT
 CLASS="filename"
 >localconfig</TT
 > you
@@ -923,6 +625,59 @@ CLASS="filename"
 ></TR
 ></TABLE
 ></DIV
+><DIV
+CLASS="section"
+><H3
+CLASS="section"
+><A
+NAME="suexec"
+>2.6.6.1. suexec or shared hosting</A
+></H3
+><P
+>If you are running on a system that uses suexec (most shared
+        hosting environments do this), you will need to set the
+        <EM
+>webservergroup</EM
+> value in <TT
+CLASS="filename"
+>localconfig</TT
+>
+        to match <EM
+>your</EM
+> primary group, rather than the one
+        the web server runs under.  You will need to run the following
+        shell commands after running <B
+CLASS="command"
+>./checksetup.pl</B
+>,
+        every time you run it (or modify <TT
+CLASS="filename"
+>checksetup.pl</TT
+>
+        to do them for you via the system() command).
+        <TABLE
+BORDER="0"
+BGCOLOR="#E0E0E0"
+WIDTH="100%"
+><TR
+><TD
+><FONT
+COLOR="#000000"
+><PRE
+CLASS="programlisting"
+>        for i in docs graphs images js skins; do find $i -type d -exec chmod o+rx {} \; ; done
+        for i in jpg gif css js png html rdf xul; do find . -name \*.$i -exec chmod o+r {} \; ; done
+        find . -name .htaccess -exec chmod o+r {} \;
+        chmod o+x . data data/webdot</PRE
+></FONT
+></TD
+></TR
+></TABLE
+>
+        Pay particular attention to the number of semicolons and dots.
+        They are all important.  A future version of Bugzilla will
+        hopefully be able to do this for you out of the box.</P
+></DIV
 ></DIV
 ></DIV
 ><DIV
diff --git a/docs/html/os-specific.html b/docs/html/os-specific.html
index 15465d5662adbc31bca91d2dd5122f94819b4afe..765528951ab2e699494ee7eff0aaa5ea6cbc42c0 100644
--- a/docs/html/os-specific.html
+++ b/docs/html/os-specific.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -16,7 +16,7 @@ TITLE="Installing Bugzilla"
 HREF="installing-bugzilla.html"><LINK
 REL="PREVIOUS"
 TITLE="Multiple Bugzilla databases with a single installation"
-HREF="x860.html"><LINK
+HREF="multiple-bz-dbs.html"><LINK
 REL="NEXT"
 TITLE="UNIX (non-root) Installation Notes"
 HREF="nonroot.html"></HEAD
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -49,7 +49,7 @@ WIDTH="10%"
 ALIGN="left"
 VALIGN="bottom"
 ><A
-HREF="x860.html"
+HREF="multiple-bz-dbs.html"
 ACCESSKEY="P"
 >Prev</A
 ></TD
@@ -108,7 +108,13 @@ NAME="os-win32"
         work on Unix.  For that reason, we still recommend doing so on a Unix 
         based system such as GNU/Linux.  That said, if you do want to get
         Bugzilla running on Windows, you will need to make the following
-        adjustments.
+        adjustments. A detailed step-by-step
+        <A
+HREF="http://www.bugzilla.org/docs/win32install.html"
+TARGET="_top"
+>&#13;        installation guide for Windows</A
+> is also available
+        if you need more help with your installation.
       </P
 ><DIV
 CLASS="section"
@@ -133,6 +139,35 @@ TARGET="_top"
            The following instructions assume that you are using version
            5.8.1 of ActiveState.
           </P
+><DIV
+CLASS="note"
+><P
+></P
+><TABLE
+CLASS="note"
+WIDTH="100%"
+BORDER="0"
+><TR
+><TD
+WIDTH="25"
+ALIGN="CENTER"
+VALIGN="TOP"
+><IMG
+SRC="../images/note.gif"
+HSPACE="5"
+ALT="Note"></TD
+><TD
+ALIGN="LEFT"
+VALIGN="TOP"
+><P
+>&#13;             These instructions are for 32-bit versions of Windows. If you are
+             using a 64-bit version of Windows, you will need to install 32-bit
+             Perl in order to install the 32-bit modules as described below.
+            </P
+></TD
+></TR
+></TABLE
+></DIV
 ></DIV
 ><DIV
 CLASS="section"
@@ -193,7 +228,7 @@ COLOR="#000000"
 CLASS="programlisting"
 >&#13;<B
 CLASS="command"
->ppm repository add landfill http://www.landfill.bugzilla.org/ppm/</B
+>ppm repo add landfill http://www.landfill.bugzilla.org/ppm/</B
 >
         </PRE
 ></FONT
@@ -221,6 +256,53 @@ ALT="Note"></TD
 ALIGN="LEFT"
 VALIGN="TOP"
 ><P
+>&#13;            In versions prior to 5.8.8 build 819 of PPM the command is 
+            <TABLE
+BORDER="0"
+BGCOLOR="#E0E0E0"
+WIDTH="100%"
+><TR
+><TD
+><FONT
+COLOR="#000000"
+><PRE
+CLASS="programlisting"
+>&#13;<B
+CLASS="command"
+>ppm repository add landfill http://www.landfill.bugzilla.org/ppm/</B
+>
+            </PRE
+></FONT
+></TD
+></TR
+></TABLE
+>
+          </P
+></TD
+></TR
+></TABLE
+></DIV
+><DIV
+CLASS="note"
+><P
+></P
+><TABLE
+CLASS="note"
+WIDTH="100%"
+BORDER="0"
+><TR
+><TD
+WIDTH="25"
+ALIGN="CENTER"
+VALIGN="TOP"
+><IMG
+SRC="../images/note.gif"
+HSPACE="5"
+ALT="Note"></TD
+><TD
+ALIGN="LEFT"
+VALIGN="TOP"
+><P
 >&#13;            The PPM repository stores modules in 'packages' that may have
             a slightly different name than the module.  If retrieving these
             modules from there, you will need to pay attention to the information
@@ -329,10 +411,22 @@ TARGET="_top"
 >ScriptInterpreterSource</A
 >
             directive in your Apache config to avoid having to modify
-            the first line of every script to contain your path to perl 
-            perl instead of <TT
+            the first line of every script to contain your path to Perl
+            instead of <TT
 CLASS="filename"
 >/usr/bin/perl</TT
+>. When setting
+            <TT
+CLASS="filename"
+>ScriptInterpreterSource</TT
+>, do not forget
+            to specify the <B
+CLASS="command"
+>-T</B
+> flag to enable the taint
+            mode. For example: <B
+CLASS="command"
+>C:\Perl\bin\perl.exe -T</B
 >.
           </P
 ></TD
@@ -601,99 +695,30 @@ CLASS="section"
 ><H2
 CLASS="section"
 ><A
-NAME="os-mandrake"
->2.5.3. Linux-Mandrake 8.0</A
+NAME="os-linux"
+>2.5.3. Linux Distributions</A
 ></H2
 ><P
->Linux-Mandrake 8.0 includes every required and optional library
-      for Bugzilla. The easiest way to install them is by using the
-      <B
-CLASS="command"
->urpmi</B
->  utility. If you follow these commands, you
-      should have everything you need for Bugzilla, and
-      <B
-CLASS="command"
->./checksetup.pl</B
->  should not complain about any
-      missing libraries. You may already have some of these installed.
-      </P
-><TABLE
-BORDER="0"
-BGCOLOR="#E0E0E0"
-WIDTH="100%"
-><TR
-><TD
-><FONT
-COLOR="#000000"
-><PRE
-CLASS="screen"
->&#13;<SAMP
-CLASS="prompt"
->bash#</SAMP
-> <B
-CLASS="command"
->urpmi perl-mysql</B
->
-<SAMP
-CLASS="prompt"
->bash#</SAMP
-> <B
-CLASS="command"
->urpmi perl-chart</B
->
-<SAMP
-CLASS="prompt"
->bash#</SAMP
-> <B
-CLASS="command"
->urpmi perl-gd</B
->
-<SAMP
-CLASS="prompt"
->bash#</SAMP
-> <B
-CLASS="command"
->urpmi perl-MailTools</B
->             <A
-NAME="test-mailtools"
-><IMG
-SRC="../images/callouts/1.gif"
-HSPACE="0"
-VSPACE="0"
-BORDER="0"
-ALT="(1)"></A
->
-<SAMP
-CLASS="prompt"
->bash#</SAMP
-> <B
-CLASS="command"
->urpmi apache-modules</B
->
-      </PRE
-></FONT
-></TD
-></TR
-></TABLE
-><DIV
-CLASS="calloutlist"
-><DL
-COMPACT="COMPACT"
-><DT
-><A
-HREF="os-specific.html#test-mailtools"
-><IMG
-SRC="../images/callouts/1.gif"
-HSPACE="0"
-VSPACE="0"
-BORDER="0"
-ALT="(1)"></A
-></DT
-><DD
->for Bugzilla email integration</DD
-></DL
-></DIV
+>Many Linux distributions include Bugzilla and its 
+            dependencies in their native package management systems. 
+            Installing Bugzilla with root access on any Linux system 
+            should be as simple as finding the Bugzilla package in the 
+            package management application and installing it using the 
+            normal command syntax. Several distributions also perform 
+            the proper web server configuration automatically on installation.
+            </P
+><P
+>Please consult the documentation of your Linux 
+            distribution for instructions on how to install packages, 
+            or for specific instructions on installing Bugzilla with 
+            native package management tools. There is also a 
+            <A
+HREF="http://wiki.mozilla.org/Bugzilla:Linux_Distro_Installation"
+TARGET="_top"
+>&#13;            Bugzilla Wiki Page</A
+> for distro-specific installation
+            notes.
+            </P
 ></DIV
 ></DIV
 ><DIV
@@ -712,7 +737,7 @@ WIDTH="33%"
 ALIGN="left"
 VALIGN="top"
 ><A
-HREF="x860.html"
+HREF="multiple-bz-dbs.html"
 ACCESSKEY="P"
 >Prev</A
 ></TD
diff --git a/docs/html/parameters.html b/docs/html/parameters.html
index 0acd4fd9234c68633c712897694ddb43a54b5997..6ce1ab7afa5b494c0f7b00991907c30268ebd374 100644
--- a/docs/html/parameters.html
+++ b/docs/html/parameters.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/paranoid-security.html b/docs/html/paranoid-security.html
index 9e67085f9d4ab78a53480458090768eb832e47ff..8f80dbf8c9391a194a01bbaec31bd6ddcf05cbf4 100644
--- a/docs/html/paranoid-security.html
+++ b/docs/html/paranoid-security.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -57,7 +57,7 @@ ACCESSKEY="P"
 WIDTH="80%"
 ALIGN="center"
 VALIGN="bottom"
->Appendix B. Troubleshooting</TD
+>Appendix A. Troubleshooting</TD
 ><TD
 WIDTH="10%"
 ALIGN="right"
@@ -78,7 +78,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="paranoid-security"
->B.5. cannot chdir(/var/spool/mqueue)</A
+>A.5. cannot chdir(/var/spool/mqueue)</A
 ></H1
 ><P
 >If you are installing Bugzilla on SuSE Linux, or some other
diff --git a/docs/html/patches.html b/docs/html/patches.html
index 20b559fe9b31c5ccaa393cac1812e986fc3b1f7b..f8aaf934247e705f4285e7e8322988b7f20399a7 100644
--- a/docs/html/patches.html
+++ b/docs/html/patches.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -78,7 +78,7 @@ CLASS="appendix"
 ><A
 NAME="patches"
 ></A
->Appendix C. Contrib</H1
+>Appendix B. Contrib</H1
 ><DIV
 CLASS="TOC"
 ><DL
@@ -87,12 +87,12 @@ CLASS="TOC"
 >Table of Contents</B
 ></DT
 ><DT
->C.1. <A
+>B.1. <A
 HREF="cmdline.html"
 >Command-line Search Interface</A
 ></DT
 ><DT
->C.2. <A
+>B.2. <A
 HREF="cmdline-bugmail.html"
 >Command-line 'Send Unsent Bug-mail' tool</A
 ></DT
diff --git a/docs/html/products.html b/docs/html/products.html
index 0bf82940306b8b4215a233ccfbac346efabafd58..b1d11731dad887ea7bb438a79067543eac835439 100644
--- a/docs/html/products.html
+++ b/docs/html/products.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -87,46 +87,351 @@ HREF="glossary.html#gloss-product"
 CLASS="glossterm"
 >&#13;    Products</I
 ></A
->
-
-    tend to represent real-world
-    shipping products. E.g. if your company makes computer games, 
-    you should have one product per game, perhaps a "Common" product for 
-    units of technology used in multiple games, and maybe a few special
-     products (Website, Administration...)</P
+> typically represent real-world
+    shipping products. Products can be given 
+    <A
+HREF="classifications.html"
+>Classifications</A
+>. 
+    For example, if a company makes computer games, 
+    they could have a classification of "Games", and a separate
+    product for each game. This company might also have a 
+    <SPAN
+CLASS="QUOTE"
+>"Common"</SPAN
+> product for units of technology used 
+    in multiple games, and perhaps a few special products that
+    represent items that are not actually shipping products 
+    (for example, "Website", or "Administration").
+    </P
 ><P
->Many of Bugzilla's settings are configurable on a per-product
-    basis. The number of "votes" available to users is set per-product, 
-    as is the number of votes
-    required to move a bug automatically from the UNCONFIRMED status to the
-    NEW status.</P
+>&#13;    Many of Bugzilla's settings are configurable on a per-product
+    basis. The number of <SPAN
+CLASS="QUOTE"
+>"votes"</SPAN
+> available to 
+    users is set per-product, as is the number of votes
+    required to move a bug automatically from the UNCONFIRMED 
+    status to the NEW status.
+    </P
 ><P
->To create a new product:</P
+>&#13;    When creating or editing products the following options are
+    available: 
+    </P
+><P
+></P
+><DIV
+CLASS="variablelist"
+><DL
+><DT
+>Product</DT
+><DD
+><P
+> 
+            The name of the product
+          </P
+></DD
+><DT
+>Description</DT
+><DD
+><P
+> 
+            A brief description of the product
+          </P
+></DD
+><DT
+>URL describing milestones for this product</DT
+><DD
+><P
+> 
+            If there is reference URL, provide it here
+          </P
+></DD
+><DT
+>Default milestone</DT
+><DD
+><P
+> 
+            Select the default milestone for this product.
+          </P
+></DD
+><DT
+>Closed for bug entry</DT
+><DD
+><P
+> 
+            Select this box to prevent new bugs from being
+            entered against this product.
+          </P
+></DD
+><DT
+>Maximum votes per person</DT
+><DD
+><P
+> 
+            Maximum votes a user is allowed to give for this 
+            product
+          </P
+></DD
+><DT
+>Maximum votes a person can put on a single bug</DT
+><DD
+><P
+> 
+            Maximum votes a user is allowed to give for this 
+            product in a single bug
+          </P
+></DD
+><DT
+>Confirmation threshold</DT
+><DD
+><P
+> 
+            Number of votes needed to automatically remove any
+            bug against this product from the UNCONFIRMED state
+          </P
+></DD
+><DT
+>Version</DT
+><DD
+><P
+> 
+            Specify which version of the product bugs will be
+            entered against.
+          </P
+></DD
+><DT
+>Create chart datasets for this product</DT
+><DD
+><P
+> 
+            Select to make chart datasets available for this product.
+          </P
+></DD
+></DL
+></DIV
+><P
+>&#13;    When editing a product there is also a link to edit
+    <A
+HREF="products.html#product-group-controls"
+>Group Access Controls</A
+>.
+    </P
+><P
+>&#13;    To create a new product:
+    </P
 ><P
 ></P
 ><OL
 TYPE="1"
 ><LI
 ><P
->Select "products" from the footer</P
+> 
+        Select <SPAN
+CLASS="QUOTE"
+>"Administration"</SPAN
+> from the footer and then
+        choose <SPAN
+CLASS="QUOTE"
+>"Products"</SPAN
+> from the main administration page.
+        </P
 ></LI
 ><LI
 ><P
->Select the "Add" link in the bottom right</P
+>&#13;        Select the <SPAN
+CLASS="QUOTE"
+>"Add"</SPAN
+> link in the bottom right.
+        </P
 ></LI
 ><LI
 ><P
->Enter the name of the product and a description. The
-        Description field may contain HTML.</P
+>&#13;        Enter the name of the product and a description. The
+        Description field may contain HTML.
+        </P
+></LI
+><LI
+><P
+>&#13;        When the product is created, Bugzilla will give a message
+        stating that a component must be created before any bugs can
+        be entered against the new product. Follow the link to create
+        a new component. See <A
+HREF="components.html"
+>Components</A
+> for more
+        information.
+        </P
 ></LI
 ></OL
+><DIV
+CLASS="section"
+><H2
+CLASS="section"
+><A
+NAME="product-group-controls"
+>3.4.1. Assigning Group Controls to Products</A
+></H2
 ><P
->Don't worry about the "Closed for bug entry", "Maximum Votes
-    per person", "Maximum votes a person can put on a single bug",
-    "Number of votes a bug in this Product needs to automatically get out
-    of the UNCONFIRMED state", and "Version" options yet. We'll cover
-    those in a few moments.
-    </P
+> 
+      On the <SPAN
+CLASS="QUOTE"
+>"Product Edit"</SPAN
+> page, 
+      there is a link called 
+      <SPAN
+CLASS="QUOTE"
+>"Edit Group Access Controls"</SPAN
+>. 
+      The settings on this page control the relationship 
+      of the groups to the product being edited.
+      </P
+><P
+>&#13;      Groups may be applicable, default, and 
+      mandatory for each product. Groups can also control access 
+      to bugs for a given product, or be used to make bugs 
+      for a product totally read-only unless the group 
+      restrictions are met.
+      </P
+><P
+>&#13;      If any group has <EM
+>Entry</EM
+> selected, then the 
+      product will restrict bug entry to only those users 
+      who are members of all the groups with 
+      <EM
+>Entry</EM
+> selected.
+      </P
+><P
+>&#13;      If any group has <EM
+>Canedit</EM
+> selected, 
+      then the product will be read-only for any users 
+      who are not members of all of the groups with
+      <EM
+>Canedit</EM
+> selected. ONLY users who 
+      are members of all the <EM
+>Canedit</EM
+> groups 
+      will be able to edit. This is an 
+      additional restriction that further limits 
+      what can be edited by a user.
+      </P
+><P
+>&#13;      The following settings let you 
+      choose privileges on a <EM
+>per-product basis</EM
+>.
+      This is a convenient way to give privileges to 
+      some users for some products only, without having 
+      to give them global privileges which would affect 
+      all products.
+      </P
+><P
+>&#13;      Any group having <EM
+>editcomponents</EM
+> 
+      selected  allows users who are in this group to edit all 
+      aspects of this product, including components, milestones 
+      and versions.
+      </P
+><P
+>&#13;      Any group having <EM
+>canconfirm</EM
+> selected 
+      allows users who are in this group to confirm bugs 
+      in this product.
+      </P
+><P
+>&#13;      Any group having <EM
+>editbugs</EM
+> selected allows 
+      users who are in this group to edit all fields of 
+      bugs in this product.
+      </P
+><P
+>&#13;      The <EM
+>MemberControl</EM
+> and 
+      <EM
+>OtherControl</EM
+> fields indicate which 
+      bugs will be placed in this group according 
+      to the following definitions.
+      </P
+><P
+>&#13;      For each group, it is possible to specify if 
+      membership in that group is:
+      </P
+><P
+></P
+><OL
+TYPE="1"
+><LI
+><P
+>&#13;          Required for bug entry. 
+          </P
+></LI
+><LI
+><P
+>&#13;          Not applicable to this product(NA),
+          a possible restriction for a member of the 
+          group to place on a bug in this product(Shown),
+          a default restriction for a member of the 
+          group to place on a bug in this product(Default),
+          or a mandatory restriction to be placed on bugs 
+          in this product(Mandatory).
+          </P
+></LI
+><LI
+><P
+>&#13;          Not applicable by non-members to this product(NA),
+          a possible restriction for a non-member of the 
+          group to place on a bug in this product(Shown),
+          a default restriction for a non-member of the 
+          group to place on a bug in this product(Default),
+          or a mandatory restriction to be placed on bugs 
+          in this product when entered by a non-member(Mandatory).
+          </P
+></LI
+><LI
+><P
+>&#13;          Required in order to make <EM
+>any</EM
+> change
+          to bugs in this product <EM
+>including comments.</EM
+>
+          </P
+></LI
+></OL
+><P
+>These controls are often described in this order, so a 
+      product that requires a user to be a member of group "foo" 
+      to enter a bug and then requires that the bug stay restricted
+      to group "foo" at all times and that only members of group "foo"
+      can edit the bug even if they otherwise could see the bug would 
+      have its controls summarized by...</P
+><TABLE
+BORDER="0"
+BGCOLOR="#E0E0E0"
+WIDTH="100%"
+><TR
+><TD
+><FONT
+COLOR="#000000"
+><PRE
+CLASS="programlisting"
+> 
+foo: ENTRY, MANDATORY/MANDATORY, CANEDIT
+      </PRE
+></FONT
+></TD
+></TR
+></TABLE
+></DIV
 ></DIV
 ><DIV
 CLASS="NAVFOOTER"
diff --git a/docs/html/query.html b/docs/html/query.html
index 837ee212fa2cef58466d80c9988454ef4f9e55e2..315c5f236a92b4666c806f5fc0d60f58ef744ea8 100644
--- a/docs/html/query.html
+++ b/docs/html/query.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -96,21 +96,13 @@ TARGET="_top"
     returns bugs where the content of the field matches any one of the selected
     values. If none is selected, then the field can take any value.</P
 ><P
->&#13;      Once you've run a search, you can save it as a Saved Search, which
-      appears in the page footer.
-      On the Saved Searches tab of your User Preferences page (the Prefs link
-      in Bugzilla's footer), members of the group defined in the
-      querysharegroup parameter can share such Saved Searches with user groups
-      so that other users may use them.
-      At the same place, you can see Saved Searches other users are sharing, and
-      have them show up in your personal Bugzilla footer along with your own
-      Saved Searches.
-      If somebody is sharing a Search with a group she or he is allowed to
-      <A
-HREF="groups.html"
->assign users to</A
->, the sharer may opt to have
-      the Search show up in the group's direct members' footers by default.
+>&#13;      After a search is run, you can save it as a Saved Search, which
+      will appear in the page footer. If you are in the group defined 
+      by the "querysharegroup" parameter, you may share your queries 
+      with other users, see <A
+HREF="userpreferences.html#savedsearches"
+>Saved Searches</A
+> for more details.
     </P
 ><DIV
 CLASS="section"
@@ -208,7 +200,7 @@ NAME="negation"
 >&#13;          At first glance, negation seems redundant. Rather than
           searching for
           <A
-NAME="AEN2239"
+NAME="AEN2302"
 ></A
 ><BLOCKQUOTE
 CLASS="BLOCKQUOTE"
@@ -219,7 +211,7 @@ CLASS="BLOCKQUOTE"
 >
           one could search for 
           <A
-NAME="AEN2241"
+NAME="AEN2304"
 ></A
 ><BLOCKQUOTE
 CLASS="BLOCKQUOTE"
@@ -230,7 +222,7 @@ CLASS="BLOCKQUOTE"
 >
           However, the search 
           <A
-NAME="AEN2243"
+NAME="AEN2306"
 ></A
 ><BLOCKQUOTE
 CLASS="BLOCKQUOTE"
@@ -242,7 +234,7 @@ CLASS="BLOCKQUOTE"
           would find every bug where anyone on the CC list did not contain 
           "@mozilla.org" while
           <A
-NAME="AEN2245"
+NAME="AEN2308"
 ></A
 ><BLOCKQUOTE
 CLASS="BLOCKQUOTE"
@@ -256,7 +248,7 @@ CLASS="BLOCKQUOTE"
           complex expressions to be built using terms OR'd together and then
           negated. Negation permits queries such as
           <A
-NAME="AEN2247"
+NAME="AEN2310"
 ></A
 ><BLOCKQUOTE
 CLASS="BLOCKQUOTE"
@@ -269,7 +261,7 @@ CLASS="BLOCKQUOTE"
           to find bugs that are neither 
           in the update product or in the documentation component or
           <A
-NAME="AEN2249"
+NAME="AEN2312"
 ></A
 ><BLOCKQUOTE
 CLASS="BLOCKQUOTE"
@@ -297,7 +289,7 @@ NAME="multiplecharts"
           a bug that has two different people cc'd on it, then you need 
           to use two boolean charts. A search for
           <A
-NAME="AEN2254"
+NAME="AEN2317"
 ></A
 ><BLOCKQUOTE
 CLASS="BLOCKQUOTE"
@@ -312,7 +304,7 @@ CLASS="BLOCKQUOTE"
           containing "foo@" and someone else containing "@mozilla.org",
           then you would need two boolean charts.
           <A
-NAME="AEN2256"
+NAME="AEN2319"
 ></A
 ><BLOCKQUOTE
 CLASS="BLOCKQUOTE"
@@ -368,8 +360,23 @@ CLASS="section"
 ><H2
 CLASS="section"
 ><A
+NAME="casesensitivity"
+>5.5.3. Case Sensitivity in Searches</A
+></H2
+><P
+>&#13;      Bugzilla queries are case-insensitive and accent-insensitive, when
+      used with either MySQL or Oracle databases. When using Bugzilla with
+      PostgreSQL, however, some queries are case-sensitive. This is due to
+      the way PostgreSQL handles case and accent sensitivity. 
+      </P
+></DIV
+><DIV
+CLASS="section"
+><H2
+CLASS="section"
+><A
 NAME="list"
->5.5.3. Bug Lists</A
+>5.5.4. Bug Lists</A
 ></H2
 ><P
 >If you run a search, a list of matching bugs will be returned.
@@ -501,7 +508,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="individual-buglists"
->5.5.4. Adding/removing tags to/from bugs</A
+>5.5.5. Adding/removing tags to/from bugs</A
 ></H2
 ><P
 >&#13;        You can add and remove tags from individual bugs, which let you find and
diff --git a/docs/html/quips.html b/docs/html/quips.html
index 928208b69da7804caf97966cc2f3fa29f0b6289d..d534c0d4941616da3d2f74e21bc96f022e6d9505 100644
--- a/docs/html/quips.html
+++ b/docs/html/quips.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -78,7 +78,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="quips"
->3.12. Quips</A
+>3.13. Quips</A
 ></H1
 ><P
 >&#13;      Quips are small text messages that can be configured to appear
diff --git a/docs/html/reporting.html b/docs/html/reporting.html
index 1546a6124299c5cf75e57f885ab72a852f2f4510..968a1bcafb4be981ec91b0c0afd475741fba7f90 100644
--- a/docs/html/reporting.html
+++ b/docs/html/reporting.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -195,7 +195,7 @@ CLASS="section"
 ><H3
 CLASS="section"
 ><A
-NAME="AEN2517"
+NAME="AEN2652"
 >5.11.2.1. Creating Charts</A
 ></H3
 ><P
@@ -235,7 +235,7 @@ CLASS="section"
 ><H3
 CLASS="section"
 ><A
-NAME="AEN2524"
+NAME="charts-new-series"
 >5.11.2.2. Creating New Data Sets</A
 ></H3
 ><P
diff --git a/docs/html/sanitycheck.html b/docs/html/sanitycheck.html
new file mode 100644
index 0000000000000000000000000000000000000000..29d27ecefd6db42406bcf91be61eef19624b1a86
--- /dev/null
+++ b/docs/html/sanitycheck.html
@@ -0,0 +1,208 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
+<HTML
+><HEAD
+><TITLE
+>Checking and Maintaining Database Integrity</TITLE
+><META
+NAME="GENERATOR"
+CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
+REL="HOME"
+TITLE="The Bugzilla Guide - 3.1.3 
+    Development 
+    Release"
+HREF="index.html"><LINK
+REL="UP"
+TITLE="Administering Bugzilla"
+HREF="administration.html"><LINK
+REL="PREVIOUS"
+TITLE="Groups and Group Security"
+HREF="groups.html"><LINK
+REL="NEXT"
+TITLE="Upgrading to New Releases"
+HREF="upgrading.html"></HEAD
+><BODY
+CLASS="section"
+BGCOLOR="#FFFFFF"
+TEXT="#000000"
+LINK="#0000FF"
+VLINK="#840084"
+ALINK="#0000FF"
+><DIV
+CLASS="NAVHEADER"
+><TABLE
+SUMMARY="Header navigation table"
+WIDTH="100%"
+BORDER="0"
+CELLPADDING="0"
+CELLSPACING="0"
+><TR
+><TH
+COLSPAN="3"
+ALIGN="center"
+>The Bugzilla Guide - 3.1.3 
+    Development 
+    Release</TH
+></TR
+><TR
+><TD
+WIDTH="10%"
+ALIGN="left"
+VALIGN="bottom"
+><A
+HREF="groups.html"
+ACCESSKEY="P"
+>Prev</A
+></TD
+><TD
+WIDTH="80%"
+ALIGN="center"
+VALIGN="bottom"
+>Chapter 3. Administering Bugzilla</TD
+><TD
+WIDTH="10%"
+ALIGN="right"
+VALIGN="bottom"
+><A
+HREF="upgrading.html"
+ACCESSKEY="N"
+>Next</A
+></TD
+></TR
+></TABLE
+><HR
+ALIGN="LEFT"
+WIDTH="100%"></DIV
+><DIV
+CLASS="section"
+><H1
+CLASS="section"
+><A
+NAME="sanitycheck"
+>3.15. Checking and Maintaining Database Integrity</A
+></H1
+><P
+>&#13;    Over time it is possible for the Bugzilla database to become corrupt
+    or to have anomalies.
+    This could happen through normal usage of Bugzilla, manual database
+    administration outside of the Bugzilla user interface, or from some
+    other unexpected event. Bugzilla includes a "Sanity Check" script that
+    can perform several basic database checks, and repair certain problems or
+    inconsistencies. 
+    </P
+><P
+>&#13;    To run the "Sanity Check" script, log in as an Administrator and click the
+    "Sanity Check" link in the admin page. Any problems that are found will be
+    displayed in red letters. If the script is capable of fixing a problem,
+    it will present a link to initiate the fix. If the script can not
+    fix the problem it will require manual database administration or recovery.
+    </P
+><P
+>&#13;    The "Sanity Check" script can also be run from the command line via the perl
+    script <TT
+CLASS="filename"
+>sanitycheck.pl</TT
+>. The script can also be run as
+    a <B
+CLASS="command"
+>cron</B
+> job. Results will be delivered by email.
+    </P
+><P
+>&#13;    The "Sanity Check" script should be run on a regular basis as a matter of
+    best practice.
+    </P
+><DIV
+CLASS="warning"
+><P
+></P
+><TABLE
+CLASS="warning"
+WIDTH="100%"
+BORDER="0"
+><TR
+><TD
+WIDTH="25"
+ALIGN="CENTER"
+VALIGN="TOP"
+><IMG
+SRC="../images/warning.gif"
+HSPACE="5"
+ALT="Warning"></TD
+><TD
+ALIGN="LEFT"
+VALIGN="TOP"
+><P
+>&#13;      The "Sanity Check" script is no substitute for a competent database
+      administrator. It is only designed to check and repair basic database
+      problems.
+      </P
+></TD
+></TR
+></TABLE
+></DIV
+></DIV
+><DIV
+CLASS="NAVFOOTER"
+><HR
+ALIGN="LEFT"
+WIDTH="100%"><TABLE
+SUMMARY="Footer navigation table"
+WIDTH="100%"
+BORDER="0"
+CELLPADDING="0"
+CELLSPACING="0"
+><TR
+><TD
+WIDTH="33%"
+ALIGN="left"
+VALIGN="top"
+><A
+HREF="groups.html"
+ACCESSKEY="P"
+>Prev</A
+></TD
+><TD
+WIDTH="34%"
+ALIGN="center"
+VALIGN="top"
+><A
+HREF="index.html"
+ACCESSKEY="H"
+>Home</A
+></TD
+><TD
+WIDTH="33%"
+ALIGN="right"
+VALIGN="top"
+><A
+HREF="upgrading.html"
+ACCESSKEY="N"
+>Next</A
+></TD
+></TR
+><TR
+><TD
+WIDTH="33%"
+ALIGN="left"
+VALIGN="top"
+>Groups and Group Security</TD
+><TD
+WIDTH="34%"
+ALIGN="center"
+VALIGN="top"
+><A
+HREF="administration.html"
+ACCESSKEY="U"
+>Up</A
+></TD
+><TD
+WIDTH="33%"
+ALIGN="right"
+VALIGN="top"
+>Upgrading to New Releases</TD
+></TR
+></TABLE
+></DIV
+></BODY
+></HTML
+>
\ No newline at end of file
diff --git a/docs/html/security-bugzilla.html b/docs/html/security-bugzilla.html
index b02dfb3d3c6f788e0a3104c962fcafe4677be641..bf7878f24207badeed574da8a5edf9067dc82f99 100644
--- a/docs/html/security-bugzilla.html
+++ b/docs/html/security-bugzilla.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/security-mysql.html b/docs/html/security-mysql.html
index 5efbdf8b9743452eb17a3b223ebe5cce27d7e0c9..0ee40c5848a9470610deef08760a32c055f0f95e 100644
--- a/docs/html/security-mysql.html
+++ b/docs/html/security-mysql.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/security-os.html b/docs/html/security-os.html
index 0cf3fda308660cc712e45175dcb7d64054c23885..dfbebb2a674dfd3526d1e134ef80d12dc2d8d320 100644
--- a/docs/html/security-os.html
+++ b/docs/html/security-os.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/security-webserver.html b/docs/html/security-webserver.html
index c0bc269aabb2d069e03eb4233c24ce099e19e1c6..fce93bb5a55812c69fb127ee6fbc122e96fe0317 100644
--- a/docs/html/security-webserver.html
+++ b/docs/html/security-webserver.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/security.html b/docs/html/security.html
index 6e5b58e33a5ef6037a2187de461cdac91ca47569..6547b52ffe13cd0b58ac090e73091786b127b38c 100644
--- a/docs/html/security.html
+++ b/docs/html/security.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -36,7 +36,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/timetracking.html b/docs/html/timetracking.html
index 4b13a11c48f699c3795581c9c9d22e9d28c01446..dbfcc83fb7f2694fe891d3c772ee83ea30276d38 100644
--- a/docs/html/timetracking.html
+++ b/docs/html/timetracking.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/trbl-dbdsponge.html b/docs/html/trbl-dbdsponge.html
index 545b5900b5b67fbfe6c8d4962c8d9835e551a849..9021f954280b3574333ecc7d1c961fc19f9453c0 100644
--- a/docs/html/trbl-dbdsponge.html
+++ b/docs/html/trbl-dbdsponge.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -40,7 +40,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -58,7 +58,7 @@ ACCESSKEY="P"
 WIDTH="80%"
 ALIGN="center"
 VALIGN="bottom"
->Appendix B. Troubleshooting</TD
+>Appendix A. Troubleshooting</TD
 ><TD
 WIDTH="10%"
 ALIGN="right"
@@ -79,7 +79,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="trbl-dbdSponge"
->B.4. DBD::Sponge::db prepare failed</A
+>A.4. DBD::Sponge::db prepare failed</A
 ></H1
 ><P
 >The following error message may appear due to a bug in DBD::mysql
diff --git a/docs/html/trbl-index.html b/docs/html/trbl-index.html
index 1af4d41270df7e2d6db8dd678d63c57af1441963..b59fe663e7f35fb25421c6ac3877a37020922a44 100644
--- a/docs/html/trbl-index.html
+++ b/docs/html/trbl-index.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -42,7 +42,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -60,7 +60,7 @@ ACCESSKEY="P"
 WIDTH="80%"
 ALIGN="center"
 VALIGN="bottom"
->Appendix B. Troubleshooting</TD
+>Appendix A. Troubleshooting</TD
 ><TD
 WIDTH="10%"
 ALIGN="right"
@@ -81,7 +81,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="trbl-index"
->B.8. <TT
+>A.8. <TT
 CLASS="filename"
 >index.cgi</TT
 > doesn't show up unless specified in the URL</A
diff --git a/docs/html/trbl-passwd-encryption.html b/docs/html/trbl-passwd-encryption.html
index 746864b32468569df16c7f6a1c92789597e94cc5..cb89f95ba4e244570c67f58e47797f04a983de64 100644
--- a/docs/html/trbl-passwd-encryption.html
+++ b/docs/html/trbl-passwd-encryption.html
@@ -9,7 +9,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -41,7 +41,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -59,7 +59,7 @@ ACCESSKEY="P"
 WIDTH="80%"
 ALIGN="center"
 VALIGN="bottom"
->Appendix B. Troubleshooting</TD
+>Appendix A. Troubleshooting</TD
 ><TD
 WIDTH="10%"
 ALIGN="right"
@@ -80,7 +80,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="trbl-passwd-encryption"
->B.9. checksetup.pl reports "Client does not support authentication protocol
+>A.9. checksetup.pl reports "Client does not support authentication protocol
       requested by server..."</A
 ></H1
 ><P
diff --git a/docs/html/trbl-perlmodule.html b/docs/html/trbl-perlmodule.html
index 46e632dd7e94b567dd03ae001ba82048ceeb3a36..3cb7562254f65354b0e079bf2134772f9d240932 100644
--- a/docs/html/trbl-perlmodule.html
+++ b/docs/html/trbl-perlmodule.html
@@ -8,7 +8,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -40,7 +40,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -58,7 +58,7 @@ ACCESSKEY="P"
 WIDTH="80%"
 ALIGN="center"
 VALIGN="bottom"
->Appendix B. Troubleshooting</TD
+>Appendix A. Troubleshooting</TD
 ><TD
 WIDTH="10%"
 ALIGN="right"
@@ -79,7 +79,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="trbl-perlmodule"
->B.3. I installed a Perl module, but 
+>A.3. I installed a Perl module, but 
       <TT
 CLASS="filename"
 >checksetup.pl</TT
diff --git a/docs/html/trbl-relogin-everyone.html b/docs/html/trbl-relogin-everyone.html
index 2737450492fdae40396b97ccfa7d4232be44dc74..228f12b702240ca7172f148f30e4b16ab39c11ff 100644
--- a/docs/html/trbl-relogin-everyone.html
+++ b/docs/html/trbl-relogin-everyone.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -57,7 +57,7 @@ ACCESSKEY="P"
 WIDTH="80%"
 ALIGN="center"
 VALIGN="bottom"
->Appendix B. Troubleshooting</TD
+>Appendix A. Troubleshooting</TD
 ><TD
 WIDTH="10%"
 ALIGN="right"
@@ -78,7 +78,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="trbl-relogin-everyone"
->B.6. Everybody is constantly being forced to relogin</A
+>A.6. Everybody is constantly being forced to relogin</A
 ></H1
 ><P
 >The most-likely cause is that the <SPAN
@@ -119,10 +119,10 @@ NAME="trbl-relogin-everyone-share"
 ></A
 ><P
 ><B
->Example B-1. Examples of urlbase/cookiepath pairs for sharing login cookies</B
+>Example A-1. Examples of urlbase/cookiepath pairs for sharing login cookies</B
 ></P
 ><A
-NAME="AEN3477"
+NAME="AEN3048"
 ></A
 ><BLOCKQUOTE
 CLASS="BLOCKQUOTE"
@@ -160,10 +160,10 @@ NAME="trbl-relogin-everyone-restrict"
 ></A
 ><P
 ><B
->Example B-2. Examples of urlbase/cookiepath pairs to restrict the login cookie</B
+>Example A-2. Examples of urlbase/cookiepath pairs to restrict the login cookie</B
 ></P
 ><A
-NAME="AEN3484"
+NAME="AEN3055"
 ></A
 ><BLOCKQUOTE
 CLASS="BLOCKQUOTE"
diff --git a/docs/html/trbl-relogin-some.html b/docs/html/trbl-relogin-some.html
index 886ece29ac35c3e73bde90eaa4392febf9ccd1de..239a9ef6a3582c73c1e2667bbcc7b7ea67241cc7 100644
--- a/docs/html/trbl-relogin-some.html
+++ b/docs/html/trbl-relogin-some.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -57,7 +57,7 @@ ACCESSKEY="P"
 WIDTH="80%"
 ALIGN="center"
 VALIGN="bottom"
->Appendix B. Troubleshooting</TD
+>Appendix A. Troubleshooting</TD
 ><TD
 WIDTH="10%"
 ALIGN="right"
@@ -78,7 +78,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="trbl-relogin-some"
->B.7. Some users are constantly being forced to relogin</A
+>A.7. Some users are constantly being forced to relogin</A
 ></H1
 ><P
 >First, make sure cookies are enabled in the user's browser.
diff --git a/docs/html/trbl-testserver.html b/docs/html/trbl-testserver.html
index 4ac79af383dbba2afa55ad2dbea86ad071dae617..fe178cfcbda4656aab96400d9dbec986fa8b4815 100644
--- a/docs/html/trbl-testserver.html
+++ b/docs/html/trbl-testserver.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -40,7 +40,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -58,7 +58,7 @@ ACCESSKEY="P"
 WIDTH="80%"
 ALIGN="center"
 VALIGN="bottom"
->Appendix B. Troubleshooting</TD
+>Appendix A. Troubleshooting</TD
 ><TD
 WIDTH="10%"
 ALIGN="right"
@@ -79,7 +79,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="trbl-testserver"
->B.2. The Apache web server is not serving Bugzilla pages</A
+>A.2. The Apache web server is not serving Bugzilla pages</A
 ></H1
 ><P
 >After you have run <B
diff --git a/docs/html/troubleshooting.html b/docs/html/troubleshooting.html
index a85f3694d343fa1ad9270f47cfc6964a8ecd5d77..fe0a37d9d6ce1bb424ad443f3603a890d38b9a8e 100644
--- a/docs/html/troubleshooting.html
+++ b/docs/html/troubleshooting.html
@@ -7,13 +7,13 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
 REL="PREVIOUS"
-TITLE="The Bugzilla FAQ"
-HREF="faq.html"><LINK
+TITLE="Integrating Bugzilla with Third-Party Tools"
+HREF="integration.html"><LINK
 REL="NEXT"
 TITLE="General Advice"
 HREF="general-advice.html"></HEAD
@@ -36,7 +36,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -46,7 +46,7 @@ WIDTH="10%"
 ALIGN="left"
 VALIGN="bottom"
 ><A
-HREF="faq.html"
+HREF="integration.html"
 ACCESSKEY="P"
 >Prev</A
 ></TD
@@ -75,7 +75,7 @@ CLASS="appendix"
 ><A
 NAME="troubleshooting"
 ></A
->Appendix B. Troubleshooting</H1
+>Appendix A. Troubleshooting</H1
 ><DIV
 CLASS="TOC"
 ><DL
@@ -84,17 +84,17 @@ CLASS="TOC"
 >Table of Contents</B
 ></DT
 ><DT
->B.1. <A
+>A.1. <A
 HREF="general-advice.html"
 >General Advice</A
 ></DT
 ><DT
->B.2. <A
+>A.2. <A
 HREF="trbl-testserver.html"
 >The Apache web server is not serving Bugzilla pages</A
 ></DT
 ><DT
->B.3. <A
+>A.3. <A
 HREF="trbl-perlmodule.html"
 >I installed a Perl module, but 
       <TT
@@ -103,27 +103,27 @@ CLASS="filename"
 > claims it's not installed!</A
 ></DT
 ><DT
->B.4. <A
+>A.4. <A
 HREF="trbl-dbdsponge.html"
 >DBD::Sponge::db prepare failed</A
 ></DT
 ><DT
->B.5. <A
+>A.5. <A
 HREF="paranoid-security.html"
 >cannot chdir(/var/spool/mqueue)</A
 ></DT
 ><DT
->B.6. <A
+>A.6. <A
 HREF="trbl-relogin-everyone.html"
 >Everybody is constantly being forced to relogin</A
 ></DT
 ><DT
->B.7. <A
+>A.7. <A
 HREF="trbl-relogin-some.html"
 >Some users are constantly being forced to relogin</A
 ></DT
 ><DT
->B.8. <A
+>A.8. <A
 HREF="trbl-index.html"
 ><TT
 CLASS="filename"
@@ -131,7 +131,7 @@ CLASS="filename"
 > doesn't show up unless specified in the URL</A
 ></DT
 ><DT
->B.9. <A
+>A.9. <A
 HREF="trbl-passwd-encryption.html"
 >checksetup.pl reports "Client does not support authentication protocol
       requested by server..."</A
@@ -160,7 +160,7 @@ WIDTH="33%"
 ALIGN="left"
 VALIGN="top"
 ><A
-HREF="faq.html"
+HREF="integration.html"
 ACCESSKEY="P"
 >Prev</A
 ></TD
@@ -188,7 +188,7 @@ ACCESSKEY="N"
 WIDTH="33%"
 ALIGN="left"
 VALIGN="top"
->The Bugzilla FAQ</TD
+>Integrating Bugzilla with Third-Party Tools</TD
 ><TD
 WIDTH="34%"
 ALIGN="center"
diff --git a/docs/html/upgrading.html b/docs/html/upgrading.html
index 1fdc55d9eead0489969e21e72e86b44e830d38b6..88923233beead953c4fdec9876c0b1de35b378cd 100644
--- a/docs/html/upgrading.html
+++ b/docs/html/upgrading.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -15,8 +15,8 @@ REL="UP"
 TITLE="Administering Bugzilla"
 HREF="administration.html"><LINK
 REL="PREVIOUS"
-TITLE="Groups and Group Security"
-HREF="groups.html"><LINK
+TITLE="Checking and Maintaining Database Integrity"
+HREF="sanitycheck.html"><LINK
 REL="NEXT"
 TITLE="Bugzilla Security"
 HREF="security.html"></HEAD
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -49,7 +49,7 @@ WIDTH="10%"
 ALIGN="left"
 VALIGN="bottom"
 ><A
-HREF="groups.html"
+HREF="sanitycheck.html"
 ACCESSKEY="P"
 >Prev</A
 ></TD
@@ -78,7 +78,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="upgrading"
->3.14. Upgrading to New Releases</A
+>3.16. Upgrading to New Releases</A
 ></H1
 ><P
 >&#13;      Upgrading Bugzilla is something we all want to do from time to time,
@@ -105,7 +105,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="upgrading-version-defns"
->3.14.1. Version Definitions</A
+>3.16.1. Version Definitions</A
 ></H2
 ><P
 >&#13;        Bugzilla displays the version you are using at the top of the home
@@ -182,7 +182,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="upgrading-notifications"
->3.14.2. Upgrading - Notifications</A
+>3.16.2. Upgrading - Notifications</A
 ></H2
 ><P
 >&#13;        Bugzilla 3.0 introduces the ability to automatically notify
@@ -222,7 +222,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="upgrading-methods"
->3.14.3. Upgrading - Methods and Procedure</A
+>3.16.3. Upgrading - Methods and Procedure</A
 ></H2
 ><P
 >&#13;        There are three different ways to upgrade your installation.
@@ -235,7 +235,7 @@ TYPE="1"
 ><P
 >&#13;            Using CVS (<A
 HREF="upgrading.html#upgrade-cvs"
->Section 3.14.3.1</A
+>Section 3.16.3.1</A
 >)
           </P
 ></LI
@@ -243,7 +243,7 @@ HREF="upgrading.html#upgrade-cvs"
 ><P
 >&#13;            Downloading a new tarball (<A
 HREF="upgrading.html#upgrade-tarball"
->Section 3.14.3.2</A
+>Section 3.16.3.2</A
 >)
           </P
 ></LI
@@ -251,7 +251,7 @@ HREF="upgrading.html#upgrade-tarball"
 ><P
 >&#13;            Applying the relevant patches (<A
 HREF="upgrading.html#upgrade-patches"
->Section 3.14.3.3</A
+>Section 3.16.3.3</A
 >)
           </P
 ></LI
@@ -327,7 +327,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="upgrade-cvs"
->3.14.3.1. Upgrading using CVS</A
+>3.16.3.1. Upgrading using CVS</A
 ></H3
 ><P
 >&#13;          Every release of Bugzilla, whether it is a point release or a bugfix,
@@ -452,7 +452,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="upgrade-tarball"
->3.14.3.2. Upgrading using the tarball</A
+>3.16.3.2. Upgrading using the tarball</A
 ></H3
 ><P
 >&#13;          If you are unable (or unwilling) to use CVS, another option that's
@@ -583,7 +583,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="upgrade-patches"
->3.14.3.3. Upgrading using patches</A
+>3.16.3.3. Upgrading using patches</A
 ></H3
 ><P
 >&#13;          If you are doing a bugfix upgrade -- that is, one where only the 
@@ -679,7 +679,7 @@ CLASS="filename"
             This could make it more difficult to upgrade using CVS
             (<A
 HREF="upgrading.html#upgrade-cvs"
->Section 3.14.3.1</A
+>Section 3.16.3.1</A
 >) in the future.
           </P
 ></TD
@@ -694,7 +694,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="upgrading-completion"
->3.14.4. Completing Your Upgrade</A
+>3.16.4. Completing Your Upgrade</A
 ></H2
 ><P
 >&#13;        Regardless of which upgrade method you choose, you will need to
@@ -790,7 +790,7 @@ WIDTH="33%"
 ALIGN="left"
 VALIGN="top"
 ><A
-HREF="groups.html"
+HREF="sanitycheck.html"
 ACCESSKEY="P"
 >Prev</A
 ></TD
@@ -818,7 +818,7 @@ ACCESSKEY="N"
 WIDTH="33%"
 ALIGN="left"
 VALIGN="top"
->Groups and Group Security</TD
+>Checking and Maintaining Database Integrity</TD
 ><TD
 WIDTH="34%"
 ALIGN="center"
diff --git a/docs/html/useradmin.html b/docs/html/useradmin.html
index 1ec78fc6c36d65d7e18b487cb8a5dede168a5036..0ad4ae5aa3d835b720697c559b2403a23e387fd9 100644
--- a/docs/html/useradmin.html
+++ b/docs/html/useradmin.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -150,25 +150,33 @@ CLASS="QUOTE"
 CLASS="QUOTE"
 >"Users"</SPAN
 > link
-          appears in the footer.
+          will appear in the Administration page.
         </P
 ><P
->&#13;          The first screen you get is a search form to search for existing user
-          accounts. You can run searches based either on the ID, real name or
-          login name (i.e. the email address in most cases) of users. You can
-          search in different ways the listbox to the right of the text entry
+>&#13;          The first screen is a search form to search for existing user
+          accounts. You can run searches based either on the user ID, real
+          name or login name (i.e. the email address, or just the first part
+          of the email address if the "emailsuffix" parameter is set).
+          The search can be conducted
+          in different ways using the listbox to the right of the text entry
           box. You can match by case-insensitive substring (the default),
           regular expression, a <EM
 >reverse</EM
 > regular expression
-          match, which finds every user name which does NOT match the regular
-          expression, or the exact string if you know exactly who you are looking for.
+          match (which finds every user name which does NOT match the regular
+          expression), or the exact string if you know exactly who you are
+          looking for. The search can be restricted to users who are in a
+          specific group. By default, the restriction is turned off.
         </P
 ><P
->&#13;          You can also restrict your search to users being in some specific group.
-          By default, the restriction is turned off. Then you get a list of
-          users matching your criteria, and clicking their login name lets you
-          edit their properties.
+>&#13;          The search returns a list of
+          users matching your criteria. User properties can be edited by clicking
+          the login name. The Account History of a user can be viewed by clicking
+          the "View" link in the Account History column. The Account History
+          displays changes that have been made to the user account, the time of
+          the change and the user who made the change. For example, the Account
+          History page will display details of when a user was added or removed
+          from a group.
         </P
 ></DIV
 ><DIV
@@ -502,12 +510,26 @@ CLASS="filename"
 ></LI
 ><LI
 ><P
->&#13;            <EM
+> 
+            <EM
 >&#60;productname&#62;</EM
->: 
-            This allows an administrator to specify the products in which 
-            a user can see bugs. The user must still have the 
-            "editbugs" privilege to edit bugs in these products.</P
+>:
+            This allows an administrator to specify the products 
+            in which a user can see bugs. If you turn on the 
+            <SPAN
+CLASS="QUOTE"
+>"makeproductgroups"</SPAN
+> parameter in
+            the Group Security Panel in the Parameters page, 
+            then Bugzilla creates one group per product (at the time you create 
+            the product), and this group has exactly the same name as the 
+            product itself. Note that for products that already exist when
+            the parameter is turned on, the corresponding group will not be
+            created. The user must still have the <SPAN
+CLASS="QUOTE"
+>"editbugs"</SPAN
+> 
+            privilege to edit bugs in these products.</P
 ></LI
 ></UL
 ></DIV
diff --git a/docs/html/userpreferences.html b/docs/html/userpreferences.html
index 0e5b034c7a928b2ba06e9428a731cff425eb4efa..a72e5790ed7bc43eca6e7c6cc3223e234061f812 100644
--- a/docs/html/userpreferences.html
+++ b/docs/html/userpreferences.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -81,44 +81,19 @@ NAME="userpreferences"
 >5.10. User Preferences</A
 ></H1
 ><P
->Once you have logged in, you can customize various aspects of
-    Bugzilla via the "Edit prefs" link in the page footer.
-    The preferences are split into three tabs:</P
-><DIV
-CLASS="section"
-><H2
-CLASS="section"
-><A
-NAME="accountpreferences"
->5.10.1. Account Preferences</A
-></H2
-><P
->On this tab, you can change your basic account information,
-      including your password, email address and real name. For security
-      reasons, in order to change anything on this page you must type your
-      <EM
->current</EM
->
-      password into the
-      <SPAN
-CLASS="QUOTE"
->"Password"</SPAN
->
-      field at the top of the page.
-      If you attempt to change your email address, a confirmation
-      email is sent to both the old and new addresses, with a link to use to
-      confirm the change. This helps to prevent account hijacking.</P
-></DIV
+>&#13;    Once logged in, you can customize various aspects of
+    Bugzilla via the "Preferences" link in the page footer.
+    The preferences are split into five tabs:</P
 ><DIV
 CLASS="section"
 ><H2
 CLASS="section"
 ><A
 NAME="generalpreferences"
->5.10.2. General Preferences</A
+>5.10.1. General Preferences</A
 ></H2
 ><P
->&#13;        This tab allows you to change several Bugzilla behavior.
+>&#13;        This tab allows you to change several default settings of Bugzilla.
       </P
 ><P
 ></P
@@ -126,57 +101,67 @@ NAME="generalpreferences"
 COMPACT="COMPACT"
 ><LI
 ><P
->&#13;            Field separator character for CSV files -
-            This controls separator character used in CSV formatted Bug List.
+>&#13;            Bugzilla's general appearance (skin) - select which skin to use.
+            Bugzilla supports adding custom skins.
           </P
 ></LI
 ><LI
 ><P
->&#13;            After changing bugs - This controls which bugs or no bugs
-            are shown in the page after you changed bugs.
-            You can select the bug you've changed this time, or the next
-            bug of the list.
+>&#13;            Quote the associated comment when you click on its reply link - sets
+            the behavior of the comment "Reply" link. Options include quoting the
+            full comment, just reference the comment number, or turn the link off.
           </P
 ></LI
 ><LI
 ><P
->&#13;            Add individual bugs to saved searches - this controls
-            whether you can add individual bugs to saved searches
-            or you can't.
+>&#13;            Language used in email - select which language email will be sent in,
+            from the list of available languages.
           </P
 ></LI
 ><LI
 ><P
->&#13;            When viewing a bug, show comments in this order -
-            This controls the order of comments, you can select below:
-            <P
-></P
-><TABLE
-BORDER="0"
-><TBODY
-><TR
-><TD
->Initial description, comment 1, comment 2, ...</TD
-></TR
-><TR
-><TD
->Initial description, last comment, ..., comment 2, comment 1.</TD
-></TR
-><TR
-><TD
->Initial last comment, ..., comment 2, comment 1, description.</TD
-></TR
-></TBODY
-></TABLE
+>&#13;            After changing a bug - This controls what page is displayed after
+            changes to a bug are submitted. The options include to show the bug
+            just modified, to show the next bug in your list, or to do nothing.
+          </P
+></LI
+><LI
 ><P
-></P
->
+>&#13;            Enable tags for bugs - turn bug tagging on or off.
+          </P
+></LI
+><LI
+><P
+>&#13;            Zoom textareas large when in use (requires JavaScript) - enable or
+            disable the automatic expanding of text areas when  text is being
+            entered into them. 
           </P
 ></LI
 ><LI
 ><P
->&#13;            Show a quip at the top of each bug list - This controls
-            whether a quip will be shown on the Bug list page or not.
+>&#13;            Field separator character for CSV files -
+            Select between a comma and semi-colon for exported CSV bug lists.
+          </P
+></LI
+><LI
+><P
+>&#13;            Automatically add me to the CC list of bugs I change - set default
+            behavior of CC list. Options include "Always", "Never", and "Only
+            if I have no role on them". 
+          </P
+></LI
+><LI
+><P
+>&#13;            When viewing a bug, show comments in this order -
+            controls the order of comments. Options include "Oldest
+            to Newest", "Newest to Oldest" and "Newest to Oldest, but keep the
+            bug description at the top".
+          </P
+></LI
+><LI
+><P
+>&#13;            Show a quip at the top of each bug list - controls
+            whether a quip will be shown on the Bug list page.
           </P
 ></LI
 ></UL
@@ -187,65 +172,11 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="emailpreferences"
->5.10.3. Email Preferences</A
+>5.10.2. Email Preferences</A
 ></H2
 ><P
->&#13;        This tab controls the amount of email Bugzilla sends you.
-      </P
-><P
->&#13;        The first item on this page is marked <SPAN
-CLASS="QUOTE"
->"Users to watch"</SPAN
->.
-        When you enter one or more comma-delineated user accounts (usually email
-        addresses) into the text entry box, you will receive a copy of all the
-        bugmail those users are sent (security settings permitting).
-        This powerful functionality enables seamless transitions as developers
-        change projects or users go on holiday.
-      </P
-><DIV
-CLASS="note"
-><P
-></P
-><TABLE
-CLASS="note"
-WIDTH="100%"
-BORDER="0"
-><TR
-><TD
-WIDTH="25"
-ALIGN="CENTER"
-VALIGN="TOP"
-><IMG
-SRC="../images/note.gif"
-HSPACE="5"
-ALT="Note"></TD
-><TD
-ALIGN="LEFT"
-VALIGN="TOP"
-><P
->&#13;          The ability to watch other users may not be available in all
-          Bugzilla installations. If you don't see this feature, and feel
-          that you need it, speak to your administrator.
-        </P
-></TD
-></TR
-></TABLE
-></DIV
-><P
->&#13;        Each user listed in the <SPAN
-CLASS="QUOTE"
->"Users watching you"</SPAN
-> field
-        has you listed in their <SPAN
-CLASS="QUOTE"
->"Users to watch"</SPAN
-> list
-        and can get bugmail according to your relationship to the bug and
-        their <SPAN
-CLASS="QUOTE"
->"Field/recipient specific options"</SPAN
-> setting.
+>&#13;        This tab allows you to enable or disable email notification on
+        specific events.
       </P
 ><P
 >&#13;        In general, users have almost complete control over how much (or
@@ -281,12 +212,12 @@ ALT="Note"></TD
 ALIGN="LEFT"
 VALIGN="TOP"
 ><P
->&#13;          Your Bugzilla administrator can stop a user from receiving
-          bugmail by adding the user's name to the 
-          <TT
-CLASS="filename"
->data/nomail</TT
-> file. This is a drastic step
+>&#13;          A Bugzilla administrator can stop a user from receiving
+          bugmail by clicking the <SPAN
+CLASS="QUOTE"
+>"Bugmail Disabled"</SPAN
+> checkbox
+          when editing the user account. This is a drastic step
           best taken only for disabled accounts, as it overrides 
           the user's individual mail preferences.
         </P
@@ -295,6 +226,20 @@ CLASS="filename"
 ></TABLE
 ></DIV
 ><P
+>&#13;        There are two global options -- <SPAN
+CLASS="QUOTE"
+>"Email me when someone
+        asks me to set a flag"</SPAN
+> and <SPAN
+CLASS="QUOTE"
+>"Email me when someone
+        sets a flag I asked for"</SPAN
+>. These define how you want to
+        receive bugmail with regards to flags. Their use is quite
+        straightforward; enable the checkboxes if you want Bugzilla to
+        send you mail under either of the above conditions.
+      </P
+><P
 >&#13;        If you'd like to set your bugmail to something besides
         'Completely ON' and 'Completely OFF', the
         <SPAN
@@ -448,28 +393,80 @@ CLASS="QUOTE"
 ></TABLE
 ></DIV
 ><P
->&#13;        Two items not in the table (<SPAN
-CLASS="QUOTE"
->"Email me when someone
-        asks me to set a flag"</SPAN
-> and <SPAN
+>&#13;        Bugzilla has a feature called <SPAN
 CLASS="QUOTE"
->"Email me when someone
-        sets a flag I asked for"</SPAN
->) define how you want to
-        receive bugmail with regards to flags. Their use is quite
-        straightforward; enable the checkboxes if you want Bugzilla to
-        send you mail under either of the above conditions.
+>"Users Watching"</SPAN
+>.
+        When you enter one or more comma-delineated user accounts (usually email
+        addresses) into the text entry box, you will receive a copy of all the
+        bugmail those users are sent (security settings permitting).
+        This powerful functionality enables seamless transitions as developers
+        change projects or users go on holiday.
       </P
+><DIV
+CLASS="note"
+><P
+></P
+><TABLE
+CLASS="note"
+WIDTH="100%"
+BORDER="0"
+><TR
+><TD
+WIDTH="25"
+ALIGN="CENTER"
+VALIGN="TOP"
+><IMG
+SRC="../images/note.gif"
+HSPACE="5"
+ALT="Note"></TD
+><TD
+ALIGN="LEFT"
+VALIGN="TOP"
+><P
+>&#13;          The ability to watch other users may not be available in all
+          Bugzilla installations. If you don't see this feature, and feel
+          that you need it, speak to your administrator.
+        </P
+></TD
+></TR
+></TABLE
+></DIV
 ><P
->&#13;        By default, Bugzilla sends out email regardless of who made the
-        change... even if you were the one responsible for generating
-        the email in the first place. If you don't care to receive bugmail
-        from your own changes, check the box marked <SPAN
+>&#13;        Each user listed in the <SPAN
 CLASS="QUOTE"
->"Only email me
-        reports of changes made by other people"</SPAN
->.
+>"Users watching you"</SPAN
+> field
+        has you listed in their <SPAN
+CLASS="QUOTE"
+>"Users to watch"</SPAN
+> list
+        and can get bugmail according to your relationship to the bug and
+        their <SPAN
+CLASS="QUOTE"
+>"Field/recipient specific options"</SPAN
+> setting.
+      </P
+></DIV
+><DIV
+CLASS="section"
+><H2
+CLASS="section"
+><A
+NAME="savedsearches"
+>5.10.3. Saved Searches</A
+></H2
+><P
+>&#13;      On this tab you can view and run any Saved Searches that you have
+      created, and also any Saved Searches that other members of the group
+      defined in the "querysharegroup" parameter have shared. 
+      Saved Searches can be added to the page footer from this screen. 
+      If somebody is sharing a Search with a group she or he is allowed to
+      <A
+HREF="groups.html"
+>assign users to</A
+>, the sharer may opt to have
+      the Search show up in the footer of the group's direct members by default.
       </P
 ></DIV
 ><DIV
@@ -477,14 +474,185 @@ CLASS="section"
 ><H2
 CLASS="section"
 ><A
+NAME="accountpreferences"
+>5.10.4. Name and Password</A
+></H2
+><P
+>On this tab, you can change your basic account information,
+      including your password, email address and real name. For security
+      reasons, in order to change anything on this page you must type your
+      <EM
+>current</EM
+> password into the <SPAN
+CLASS="QUOTE"
+>"Password"</SPAN
+>
+      field at the top of the page.
+      If you attempt to change your email address, a confirmation
+      email is sent to both the old and new addresses, with a link to use to
+      confirm the change. This helps to prevent account hijacking.</P
+></DIV
+><DIV
+CLASS="section"
+><H2
+CLASS="section"
+><A
 NAME="permissionsettings"
->5.10.4. Permissions</A
+>5.10.5. Permissions</A
 ></H2
 ><P
->This is a purely informative page which outlines your current
-      permissions on this installation of Bugzilla - what product groups you
-      are in, and whether you can edit bugs or perform various administration
-      functions.</P
+>&#13;      This is a purely informative page which outlines your current
+      permissions on this installation of Bugzilla.
+      </P
+><P
+>&#13;      A complete list of permissions is below. Only users with 
+      <EM
+>editusers</EM
+> privileges can change the permissions 
+      of other users.
+      </P
+><P
+></P
+><DIV
+CLASS="variablelist"
+><DL
+><DT
+>admin</DT
+><DD
+><P
+> 
+             Indicates user is an Administrator.
+            </P
+></DD
+><DT
+>bz_canusewhineatothers</DT
+><DD
+><P
+> 
+             Indicates user can configure whine reports for other users.
+            </P
+></DD
+><DT
+>bz_canusewhines</DT
+><DD
+><P
+> 
+             Indicates user can configure whine reports for self.
+            </P
+></DD
+><DT
+>bz_sudoers</DT
+><DD
+><P
+> 
+             Indicates user can perform actions as other users.
+            </P
+></DD
+><DT
+>bz_sudo_protect</DT
+><DD
+><P
+> 
+             Indicates user can not be impersonated by other users.
+            </P
+></DD
+><DT
+>canconfirm</DT
+><DD
+><P
+> 
+             Indicates user can confirm a bug or mark it a duplicate.
+            </P
+></DD
+><DT
+>creategroups</DT
+><DD
+><P
+> 
+             Indicates user can create and destroy groups.
+            </P
+></DD
+><DT
+>editbugs</DT
+><DD
+><P
+> 
+             Indicates user can edit all bug fields.
+            </P
+></DD
+><DT
+>editclassifications</DT
+><DD
+><P
+> 
+             Indicates user can create, destroy, and edit classifications.
+            </P
+></DD
+><DT
+>editcomponents</DT
+><DD
+><P
+> 
+             Indicates user can create, destroy, and edit components.
+            </P
+></DD
+><DT
+>editkeywords</DT
+><DD
+><P
+> 
+             Indicates user can create, destroy, and edit keywords.
+            </P
+></DD
+><DT
+>editusers</DT
+><DD
+><P
+> 
+             Indicates user can edit or disable users.
+            </P
+></DD
+><DT
+>tweakparams</DT
+><DD
+><P
+> 
+             Indicates user can change Parameters.
+            </P
+></DD
+></DL
+></DIV
+><DIV
+CLASS="note"
+><P
+></P
+><TABLE
+CLASS="note"
+WIDTH="100%"
+BORDER="0"
+><TR
+><TD
+WIDTH="25"
+ALIGN="CENTER"
+VALIGN="TOP"
+><IMG
+SRC="../images/note.gif"
+HSPACE="5"
+ALT="Note"></TD
+><TD
+ALIGN="LEFT"
+VALIGN="TOP"
+><P
+>&#13;        For more information on how permissions work in Bugzilla (i.e. who can
+        change what), see  <A
+HREF="cust-change-permissions.html"
+>Section 6.4</A
+>. 
+        </P
+></TD
+></TR
+></TABLE
+></DIV
 ></DIV
 ></DIV
 ><DIV
diff --git a/docs/html/using-intro.html b/docs/html/using-intro.html
index 54ead1f88271aeb450bdb8e9493ba431bf239f98..e96fb381a723e9f16c0d1eb5fb4c50be4558f2fc 100644
--- a/docs/html/using-intro.html
+++ b/docs/html/using-intro.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -92,6 +92,15 @@ TARGET="_top"
     installations there will necessarily have all Bugzilla features enabled,
     and different installations run different versions, so some things may not
     quite work as this document describes.</P
+><P
+>&#13;      Frequently Asked Questions (FAQ) are available and answered on
+      <A
+HREF="http://wiki.mozilla.org/Bugzilla:FAQ"
+TARGET="_top"
+>wiki.mozilla.org</A
+>.
+      They may cover some questions you have which are left unanswered.
+    </P
 ></DIV
 ><DIV
 CLASS="NAVFOOTER"
diff --git a/docs/html/using.html b/docs/html/using.html
index 8d6dcad2351911084c90a2a6345574b4c66b4f0b..a9f97db27fb538c2251d1e91d115605b630fa3f0 100644
--- a/docs/html/using.html
+++ b/docs/html/using.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -36,7 +36,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -122,11 +122,16 @@ HREF="query.html#quicksearch"
 ></DT
 ><DT
 >5.5.3. <A
+HREF="query.html#casesensitivity"
+>Case Sensitivity in Searches</A
+></DT
+><DT
+>5.5.4. <A
 HREF="query.html#list"
 >Bug Lists</A
 ></DT
 ><DT
->5.5.4. <A
+>5.5.5. <A
 HREF="query.html#individual-buglists"
 >Adding/removing tags to/from bugs</A
 ></DT
@@ -165,7 +170,7 @@ HREF="hintsandtips.html"
 ><DL
 ><DT
 >5.8.1. <A
-HREF="hintsandtips.html#AEN2389"
+HREF="hintsandtips.html#AEN2455"
 >Autolinkification</A
 ></DT
 ><DT
@@ -175,6 +180,11 @@ HREF="hintsandtips.html#commenting"
 ></DT
 ><DT
 >5.8.3. <A
+HREF="hintsandtips.html#comment-wrapping"
+>Server-Side Comment Wrapping</A
+></DT
+><DT
+>5.8.4. <A
 HREF="hintsandtips.html#dependencytree"
 >Dependency Tree</A
 ></DT
@@ -194,21 +204,26 @@ HREF="userpreferences.html"
 ><DL
 ><DT
 >5.10.1. <A
-HREF="userpreferences.html#accountpreferences"
->Account Preferences</A
-></DT
-><DT
->5.10.2. <A
 HREF="userpreferences.html#generalpreferences"
 >General Preferences</A
 ></DT
 ><DT
->5.10.3. <A
+>5.10.2. <A
 HREF="userpreferences.html#emailpreferences"
 >Email Preferences</A
 ></DT
 ><DT
+>5.10.3. <A
+HREF="userpreferences.html#savedsearches"
+>Saved Searches</A
+></DT
+><DT
 >5.10.4. <A
+HREF="userpreferences.html#accountpreferences"
+>Name and Password</A
+></DT
+><DT
+>5.10.5. <A
 HREF="userpreferences.html#permissionsettings"
 >Permissions</A
 ></DT
@@ -262,7 +277,7 @@ HREF="whining.html#whining-query"
 ></DT
 ><DT
 >5.13.4. <A
-HREF="whining.html#AEN2577"
+HREF="whining.html#AEN2712"
 >Saving Your Changes</A
 ></DT
 ></DL
diff --git a/docs/html/versions.html b/docs/html/versions.html
index 609ac44674bb5d17c8f0ebad0818012da62b9000..3b27b38c67e9b6cb2e3e0d07f9f0370f2ac9e1d4 100644
--- a/docs/html/versions.html
+++ b/docs/html/versions.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
diff --git a/docs/html/voting.html b/docs/html/voting.html
index d7a75cdcfca4d99414f6d119d534f542b105b691..bb174e529ab1788272e7c0e5e714ffd6c5bdc5e0 100644
--- a/docs/html/voting.html
+++ b/docs/html/voting.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -78,7 +78,7 @@ CLASS="section"
 CLASS="section"
 ><A
 NAME="voting"
->3.11. Voting</A
+>3.12. Voting</A
 ></H1
 ><P
 >Voting allows users to be given a pot of votes which they can allocate
diff --git a/docs/html/whining.html b/docs/html/whining.html
index 1fd9f4c2276b5639476275365aeed2bf26163f24..d4013af92fb149c960153c7ece2d25bc2320fc0d 100644
--- a/docs/html/whining.html
+++ b/docs/html/whining.html
@@ -7,7 +7,7 @@
 NAME="GENERATOR"
 CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
 REL="HOME"
-TITLE="The Bugzilla Guide - 3.1.2 
+TITLE="The Bugzilla Guide - 3.1.3 
     Development 
     Release"
 HREF="index.html"><LINK
@@ -39,7 +39,7 @@ CELLSPACING="0"
 ><TH
 COLSPAN="3"
 ALIGN="center"
->The Bugzilla Guide - 3.1.2 
+>The Bugzilla Guide - 3.1.3 
     Development 
     Release</TH
 ></TR
@@ -347,7 +347,7 @@ NAME="whining-query"
         choice).  If you do not have any saved searches, you can take this 
         opportunity to create one (see <A
 HREF="query.html#list"
->Section 5.5.3</A
+>Section 5.5.4</A
 >).
       </P
 ><DIV
@@ -425,7 +425,7 @@ CLASS="section"
 ><H2
 CLASS="section"
 ><A
-NAME="AEN2577"
+NAME="AEN2712"
 >5.13.4. Saving Your Changes</A
 ></H2
 ><P
diff --git a/docs/images/CVS/Entries b/docs/images/CVS/Entries
index be2e47b6ddd15fc5347f0886cd8ec44d4b717449..5bb8f89492e385cc0abcb1ed884e2bc1404e3bba 100644
--- a/docs/images/CVS/Entries
+++ b/docs/images/CVS/Entries
@@ -1,7 +1,7 @@
-/bzLifecycle.png/1.4/Sun Sep  3 21:04:34 2006/-kb/TBUGZILLA-3_1_2
-/bzLifecycle.xml/1.3/Sun Sep  3 20:37:02 2006//TBUGZILLA-3_1_2
-/caution.gif/1.2/Wed May  8 21:16:44 2002/-kb/TBUGZILLA-3_1_2
-/note.gif/1.1/Thu Aug 23 14:30:18 2001/-kb/TBUGZILLA-3_1_2
-/tip.gif/1.2/Wed May  8 21:16:44 2002/-kb/TBUGZILLA-3_1_2
-/warning.gif/1.2/Wed May  8 21:16:44 2002/-kb/TBUGZILLA-3_1_2
+/bzLifecycle.png/1.4/Sun Sep  3 21:04:34 2006/-kb/TBUGZILLA-3_1_3
+/bzLifecycle.xml/1.3/Sun Sep  3 20:37:02 2006//TBUGZILLA-3_1_3
+/caution.gif/1.2/Wed May  8 21:16:44 2002/-kb/TBUGZILLA-3_1_3
+/note.gif/1.1/Thu Aug 23 14:30:18 2001/-kb/TBUGZILLA-3_1_3
+/tip.gif/1.2/Wed May  8 21:16:44 2002/-kb/TBUGZILLA-3_1_3
+/warning.gif/1.2/Wed May  8 21:16:44 2002/-kb/TBUGZILLA-3_1_3
 D/callouts////
diff --git a/docs/images/CVS/Tag b/docs/images/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/docs/images/CVS/Tag
+++ b/docs/images/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/docs/images/callouts/CVS/Entries b/docs/images/callouts/CVS/Entries
index 29382e4338d63c724135a5b7a8d32d5f063c57ab..0ca62c7e53e39780644485232b0e9e0c80b6d797 100644
--- a/docs/images/callouts/CVS/Entries
+++ b/docs/images/callouts/CVS/Entries
@@ -1,4 +1,4 @@
-/1.gif/1.1/Sat May 17 01:27:53 2003/-kb/TBUGZILLA-3_1_2
-/2.gif/1.1/Sat May 17 01:27:54 2003/-kb/TBUGZILLA-3_1_2
-/3.gif/1.1/Thu Jul  3 20:23:39 2003/-kb/TBUGZILLA-3_1_2
+/1.gif/1.1/Sat May 17 01:27:53 2003/-kb/TBUGZILLA-3_1_3
+/2.gif/1.1/Sat May 17 01:27:54 2003/-kb/TBUGZILLA-3_1_3
+/3.gif/1.1/Thu Jul  3 20:23:39 2003/-kb/TBUGZILLA-3_1_3
 D
diff --git a/docs/images/callouts/CVS/Tag b/docs/images/callouts/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/docs/images/callouts/CVS/Tag
+++ b/docs/images/callouts/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/docs/lib/CVS/Tag b/docs/lib/CVS/Tag
index 80c099bc19dadebec1c7694887784832759a1d11..0ca7715dc476234040a6da28cf255d1c036fe0ae 100644
--- a/docs/lib/CVS/Tag
+++ b/docs/lib/CVS/Tag
@@ -1 +1 @@
-TBUGZILLA-3_1_2
+TBUGZILLA-3_1_3
diff --git a/docs/lib/Pod/CVS/Tag b/docs/lib/Pod/CVS/Tag
index 80c099bc19dadebec1c7694887784832759a1d11..0ca7715dc476234040a6da28cf255d1c036fe0ae 100644
--- a/docs/lib/Pod/CVS/Tag
+++ b/docs/lib/Pod/CVS/Tag
@@ -1 +1 @@
-TBUGZILLA-3_1_2
+TBUGZILLA-3_1_3
diff --git a/docs/lib/Pod/Simple/CVS/Tag b/docs/lib/Pod/Simple/CVS/Tag
index 80c099bc19dadebec1c7694887784832759a1d11..0ca7715dc476234040a6da28cf255d1c036fe0ae 100644
--- a/docs/lib/Pod/Simple/CVS/Tag
+++ b/docs/lib/Pod/Simple/CVS/Tag
@@ -1 +1 @@
-TBUGZILLA-3_1_2
+TBUGZILLA-3_1_3
diff --git a/docs/lib/Pod/Simple/HTML/CVS/Entries b/docs/lib/Pod/Simple/HTML/CVS/Entries
index 59f00779fe2346a318b1c3f1b5766d6fdce40956..3915764b83dbaca1128bb91592841cab4191cfc3 100644
--- a/docs/lib/Pod/Simple/HTML/CVS/Entries
+++ b/docs/lib/Pod/Simple/HTML/CVS/Entries
@@ -1,2 +1,2 @@
-/Bugzilla.pm/1.1/Tue Sep  5 19:00:56 2006//TBUGZILLA-3_1_2
+/Bugzilla.pm/1.1/Tue Sep  5 19:00:56 2006//TBUGZILLA-3_1_3
 D
diff --git a/docs/lib/Pod/Simple/HTML/CVS/Tag b/docs/lib/Pod/Simple/HTML/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/docs/lib/Pod/Simple/HTML/CVS/Tag
+++ b/docs/lib/Pod/Simple/HTML/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/docs/lib/Pod/Simple/HTMLBatch/Bugzilla.pm b/docs/lib/Pod/Simple/HTMLBatch/Bugzilla.pm
index 06c76c678b85eddcf690980a8ad09002ae1cd425..c0a70fa5750d987a96007f709f907af8be3240f6 100644
--- a/docs/lib/Pod/Simple/HTMLBatch/Bugzilla.pm
+++ b/docs/lib/Pod/Simple/HTMLBatch/Bugzilla.pm
@@ -31,7 +31,8 @@ BEGIN { *esc = \&Pod::Simple::HTML::esc }
 # Note that if you leave out a category here, it will not be indexed
 # in the contents file, even though its HTML POD will still exist.
 use constant FILE_TRANSLATION => {
-    Files      => ['importxml', 'contrib', 'checksetup', 'email_in'],
+    Files      => ['importxml', 'contrib', 'checksetup', 'email_in', 'install-module',
+                   'sanitycheck'],
     Modules    => ['bugzilla'],
     Extensions => ['extensions'],
 };
diff --git a/docs/lib/Pod/Simple/HTMLBatch/CVS/Entries b/docs/lib/Pod/Simple/HTMLBatch/CVS/Entries
index 1a5c2e7a9961fcb63f65d8e04871eae22b159e43..b6cbf08ff869e1648396ac89e26dd043fb9a53e5 100644
--- a/docs/lib/Pod/Simple/HTMLBatch/CVS/Entries
+++ b/docs/lib/Pod/Simple/HTMLBatch/CVS/Entries
@@ -1,2 +1,2 @@
-/Bugzilla.pm/1.2/Tue Oct 17 06:45:44 2006//TBUGZILLA-3_1_2
+/Bugzilla.pm/1.4/Thu Jan 31 12:00:19 2008//TBUGZILLA-3_1_3
 D
diff --git a/docs/lib/Pod/Simple/HTMLBatch/CVS/Tag b/docs/lib/Pod/Simple/HTMLBatch/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/docs/lib/Pod/Simple/HTMLBatch/CVS/Tag
+++ b/docs/lib/Pod/Simple/HTMLBatch/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/docs/makedocs.pl b/docs/makedocs.pl
index b636a2f37ab53059e65ba55f616eba721a114c85..1b9a44296b44a781cf3da91bee207fa8c853cdd6 100644
--- a/docs/makedocs.pl
+++ b/docs/makedocs.pl
@@ -34,7 +34,7 @@ BEGIN {
     chdir dirname($0);
 }
 
-use lib qw(.. lib);
+use lib qw(.. ../lib lib);
 
 # We only compile our POD if Pod::Simple is installed. We do the checks
 # this way so that if there's a compile error in Pod::Simple::HTML::Bugzilla,
diff --git a/docs/pdf/Bugzilla-Guide.pdf b/docs/pdf/Bugzilla-Guide.pdf
index 74654ae86c1627bcf1ad25a8b21109c6e9a62a53..9885eb834554fde79906b5f1dd14ce3669788a1b 100644
--- a/docs/pdf/Bugzilla-Guide.pdf
+++ b/docs/pdf/Bugzilla-Guide.pdf
@@ -3,7 +3,7 @@
 << /S /GoTo /D (1.0) >>
 endobj
 4 0 obj
-(The Bugzilla Guide 3.1.2 Development Release)
+(The Bugzilla Guide 3.1.3 Development Release)
 endobj
 5 0 obj
 << /S /GoTo /D (2.0) >>
@@ -123,7 +123,7 @@ endobj
 << /S /GoTo /D (6.6.5.4.3) >>
 endobj
 84 0 obj
-(2.1.5.2. Template Toolkit \(2.12\))
+(2.1.5.2. Template Toolkit \(2.15\))
 endobj
 85 0 obj
 << /S /GoTo /D (6.6.5.5.3) >>
@@ -417,7 +417,7 @@ endobj
 << /S /GoTo /D (6.10.23.2) >>
 endobj
 280 0 obj
-(2.5.3. LinuxMandrake 8.0)
+(2.5.3. Linux Distributions)
 endobj
 281 0 obj
 << /S /GoTo /D (6.11.1) >>
@@ -474,118 +474,118 @@ endobj
 (2.6.4. Perl Modules)
 endobj
 317 0 obj
-<< /S /GoTo /D (6.11.27.25.3) >>
+<< /S /GoTo /D (6.11.28.2) >>
 endobj
 320 0 obj
-(2.6.4.1. The Independant Method)
+(2.6.5. HTTP Server)
 endobj
 321 0 obj
-<< /S /GoTo /D (6.11.27.26.3) >>
+<< /S /GoTo /D (6.11.28.25.3) >>
 endobj
 324 0 obj
-(2.6.4.2. The Mixed Method)
+(2.6.5.1. Running Apache as NonRoot)
 endobj
 325 0 obj
-<< /S /GoTo /D (6.11.28.2) >>
+<< /S /GoTo /D (6.11.29.2) >>
 endobj
 328 0 obj
-(2.6.5. HTTP Server)
+(2.6.6. Bugzilla)
 endobj
 329 0 obj
-<< /S /GoTo /D (6.11.28.27.3) >>
+<< /S /GoTo /D (6.11.29.26.3) >>
 endobj
 332 0 obj
-(2.6.5.1. Running Apache as NonRoot)
+(2.6.6.1. suexec or shared hosting)
 endobj
 333 0 obj
-<< /S /GoTo /D (6.11.29.2) >>
+<< /S /GoTo /D (7.0) >>
 endobj
 336 0 obj
-(2.6.6. Bugzilla)
+(Chapter 3. Administering Bugzilla)
 endobj
 337 0 obj
-<< /S /GoTo /D (7.0) >>
+<< /S /GoTo /D (7.12.1) >>
 endobj
 340 0 obj
-(Chapter 3. Administering Bugzilla)
+(3.1. Bugzilla Configuration)
 endobj
 341 0 obj
-<< /S /GoTo /D (7.12.1) >>
+<< /S /GoTo /D (7.13.1) >>
 endobj
 344 0 obj
-(3.1. Bugzilla Configuration)
+(3.2. User Administration)
 endobj
 345 0 obj
-<< /S /GoTo /D (7.13.1) >>
+<< /S /GoTo /D (7.13.30.2) >>
 endobj
 348 0 obj
-(3.2. User Administration)
+(3.2.1. Creating the Default User)
 endobj
 349 0 obj
-<< /S /GoTo /D (7.13.30.2) >>
+<< /S /GoTo /D (7.13.31.2) >>
 endobj
 352 0 obj
-(3.2.1. Creating the Default User)
+(3.2.2. Managing Other Users)
 endobj
 353 0 obj
-<< /S /GoTo /D (7.13.31.2) >>
+<< /S /GoTo /D (7.13.31.27.3) >>
 endobj
 356 0 obj
-(3.2.2. Managing Other Users)
+(3.2.2.1. Searching for existing users)
 endobj
 357 0 obj
 << /S /GoTo /D (7.13.31.28.3) >>
 endobj
 360 0 obj
-(3.2.2.1. Searching for existing users)
+(3.2.2.2. Creating new users)
 endobj
 361 0 obj
-<< /S /GoTo /D (7.13.31.29.3) >>
+<< /S /GoTo /D (7.13.31.28.12.4) >>
 endobj
 364 0 obj
-(3.2.2.2. Creating new users)
+(3.2.2.2.1. Selfregistration)
 endobj
 365 0 obj
-<< /S /GoTo /D (7.13.31.29.12.4) >>
+<< /S /GoTo /D (7.13.31.28.13.4) >>
 endobj
 368 0 obj
-(3.2.2.2.1. Selfregistration)
+(3.2.2.2.2. Accounts created by an administrator)
 endobj
 369 0 obj
-<< /S /GoTo /D (7.13.31.29.13.4) >>
+<< /S /GoTo /D (7.13.31.29.3) >>
 endobj
 372 0 obj
-(3.2.2.2.2. Accounts created by an administrator)
+(3.2.2.3. Modifying Users)
 endobj
 373 0 obj
 << /S /GoTo /D (7.13.31.30.3) >>
 endobj
 376 0 obj
-(3.2.2.3. Modifying Users)
+(3.2.2.4. Deleting Users)
 endobj
 377 0 obj
 << /S /GoTo /D (7.13.31.31.3) >>
 endobj
 380 0 obj
-(3.2.2.4. Deleting Users)
+(3.2.2.5. Impersonating Users)
 endobj
 381 0 obj
-<< /S /GoTo /D (7.13.31.32.3) >>
+<< /S /GoTo /D (7.14.1) >>
 endobj
 384 0 obj
-(3.2.2.5. Impersonating Users)
+(3.3. Classifications)
 endobj
 385 0 obj
-<< /S /GoTo /D (7.14.1) >>
+<< /S /GoTo /D (7.15.1) >>
 endobj
 388 0 obj
-(3.3. Classifications)
+(3.4. Products)
 endobj
 389 0 obj
-<< /S /GoTo /D (7.15.1) >>
+<< /S /GoTo /D (7.15.32.2) >>
 endobj
 392 0 obj
-(3.4. Products)
+(3.4.1. Assigning Group Controls to Products)
 endobj
 393 0 obj
 << /S /GoTo /D (7.16.1) >>
@@ -612,1242 +612,1264 @@ endobj
 (3.8. Flags)
 endobj
 409 0 obj
-<< /S /GoTo /D (7.19.32.2) >>
+<< /S /GoTo /D (7.19.33.2) >>
 endobj
 412 0 obj
 (3.8.1. A Simple Example)
 endobj
 413 0 obj
-<< /S /GoTo /D (7.19.33.2) >>
+<< /S /GoTo /D (7.19.34.2) >>
 endobj
 416 0 obj
 (3.8.2. About Flags)
 endobj
 417 0 obj
-<< /S /GoTo /D (7.19.33.33.3) >>
+<< /S /GoTo /D (7.19.34.32.3) >>
 endobj
 420 0 obj
 (3.8.2.1. Values)
 endobj
 421 0 obj
-<< /S /GoTo /D (7.19.34.2) >>
+<< /S /GoTo /D (7.19.35.2) >>
 endobj
 424 0 obj
 (3.8.3. Using flag requests)
 endobj
 425 0 obj
-<< /S /GoTo /D (7.19.35.2) >>
+<< /S /GoTo /D (7.19.36.2) >>
 endobj
 428 0 obj
 (3.8.4. Two Types of Flags)
 endobj
 429 0 obj
-<< /S /GoTo /D (7.19.35.34.3) >>
+<< /S /GoTo /D (7.19.36.33.3) >>
 endobj
 432 0 obj
 (3.8.4.1. Attachment Flags)
 endobj
 433 0 obj
-<< /S /GoTo /D (7.19.35.35.3) >>
+<< /S /GoTo /D (7.19.36.34.3) >>
 endobj
 436 0 obj
 (3.8.4.2. Bug Flags)
 endobj
 437 0 obj
-<< /S /GoTo /D (7.19.36.2) >>
+<< /S /GoTo /D (7.19.37.2) >>
 endobj
 440 0 obj
 (3.8.5. Administering Flags)
 endobj
 441 0 obj
-<< /S /GoTo /D (7.19.36.36.3) >>
+<< /S /GoTo /D (7.19.37.35.3) >>
 endobj
 444 0 obj
-(3.8.5.1. Creating a Flag)
+(3.8.5.1. Editing a Flag)
 endobj
 445 0 obj
-<< /S /GoTo /D (7.19.36.36.14.4) >>
+<< /S /GoTo /D (7.19.37.36.3) >>
 endobj
 448 0 obj
-(3.8.5.1.1. Name)
+(3.8.5.2. Creating a Flag)
 endobj
 449 0 obj
-<< /S /GoTo /D (7.19.36.36.15.4) >>
+<< /S /GoTo /D (7.19.37.36.14.4) >>
 endobj
 452 0 obj
-(3.8.5.1.2. Description)
+(3.8.5.2.1. Name)
 endobj
 453 0 obj
-<< /S /GoTo /D (7.19.36.36.16.4) >>
+<< /S /GoTo /D (7.19.37.36.15.4) >>
 endobj
 456 0 obj
-(3.8.5.1.3. Category)
+(3.8.5.2.2. Description)
 endobj
 457 0 obj
-<< /S /GoTo /D (7.19.36.36.17.4) >>
+<< /S /GoTo /D (7.19.37.36.16.4) >>
 endobj
 460 0 obj
-(3.8.5.1.4. Sort Key)
+(3.8.5.2.3. Category)
 endobj
 461 0 obj
-<< /S /GoTo /D (7.19.36.36.18.4) >>
+<< /S /GoTo /D (7.19.37.36.17.4) >>
 endobj
 464 0 obj
-(3.8.5.1.5. Active)
+(3.8.5.2.4. Sort Key)
 endobj
 465 0 obj
-<< /S /GoTo /D (7.19.36.36.19.4) >>
+<< /S /GoTo /D (7.19.37.36.18.4) >>
 endobj
 468 0 obj
-(3.8.5.1.6. Requestable)
+(3.8.5.2.5. Active)
 endobj
 469 0 obj
-<< /S /GoTo /D (7.19.36.36.20.4) >>
+<< /S /GoTo /D (7.19.37.36.19.4) >>
 endobj
 472 0 obj
-(3.8.5.1.7. Specifically Requestable)
+(3.8.5.2.6. Requestable)
 endobj
 473 0 obj
-<< /S /GoTo /D (7.19.36.36.21.4) >>
+<< /S /GoTo /D (7.19.37.36.20.4) >>
 endobj
 476 0 obj
-(3.8.5.1.8. Multiplicable)
+(3.8.5.2.7. Specifically Requestable)
 endobj
 477 0 obj
-<< /S /GoTo /D (7.19.36.36.22.4) >>
+<< /S /GoTo /D (7.19.37.36.21.4) >>
 endobj
 480 0 obj
-(3.8.5.1.9. CC List)
+(3.8.5.2.8. Multiplicable)
 endobj
 481 0 obj
-<< /S /GoTo /D (7.19.36.36.23.4) >>
+<< /S /GoTo /D (7.19.37.36.22.4) >>
 endobj
 484 0 obj
-(3.8.5.1.10. Grant Group)
+(3.8.5.2.9. CC List)
 endobj
 485 0 obj
-<< /S /GoTo /D (7.19.36.36.24.4) >>
+<< /S /GoTo /D (7.19.37.36.23.4) >>
 endobj
 488 0 obj
-(3.8.5.1.11. Request Group)
+(3.8.5.2.10. Grant Group)
 endobj
 489 0 obj
-<< /S /GoTo /D (7.19.36.37.3) >>
+<< /S /GoTo /D (7.19.37.36.24.4) >>
 endobj
 492 0 obj
-(3.8.5.2. Deleting a Flag)
+(3.8.5.2.11. Request Group)
 endobj
 493 0 obj
-<< /S /GoTo /D (7.19.36.38.3) >>
+<< /S /GoTo /D (7.19.37.37.3) >>
 endobj
 496 0 obj
-(3.8.5.3. Editing a Flag)
+(3.8.5.3. Deleting a Flag)
 endobj
 497 0 obj
 << /S /GoTo /D (7.20.1) >>
 endobj
 500 0 obj
-(3.9. Custom Fields)
+(3.9. Keywords)
 endobj
 501 0 obj
-<< /S /GoTo /D (7.20.37.2) >>
+<< /S /GoTo /D (7.21.1) >>
 endobj
 504 0 obj
-(3.9.1. Adding Custom Fields)
+(3.10. Custom Fields)
 endobj
 505 0 obj
-<< /S /GoTo /D (7.20.38.2) >>
+<< /S /GoTo /D (7.21.38.2) >>
 endobj
 508 0 obj
-(3.9.2. Editing Custom Fields)
+(3.10.1. Adding Custom Fields)
 endobj
 509 0 obj
-<< /S /GoTo /D (7.20.39.2) >>
+<< /S /GoTo /D (7.21.39.2) >>
 endobj
 512 0 obj
-(3.9.3. Deleting Custom Fields)
+(3.10.2. Editing Custom Fields)
 endobj
 513 0 obj
-<< /S /GoTo /D (7.21.1) >>
+<< /S /GoTo /D (7.21.40.2) >>
 endobj
 516 0 obj
-(3.10. Legal Values)
+(3.10.3. Deleting Custom Fields)
 endobj
 517 0 obj
-<< /S /GoTo /D (7.21.40.2) >>
+<< /S /GoTo /D (7.22.1) >>
 endobj
 520 0 obj
-(3.10.1. Viewing/Editing legal values)
+(3.11. Legal Values)
 endobj
 521 0 obj
-<< /S /GoTo /D (7.21.41.2) >>
+<< /S /GoTo /D (7.22.41.2) >>
 endobj
 524 0 obj
-(3.10.2. Deleting legal values)
+(3.11.1. Viewing/Editing legal values)
 endobj
 525 0 obj
-<< /S /GoTo /D (7.22.1) >>
+<< /S /GoTo /D (7.22.42.2) >>
 endobj
 528 0 obj
-(3.11. Voting)
+(3.11.2. Deleting legal values)
 endobj
 529 0 obj
 << /S /GoTo /D (7.23.1) >>
 endobj
 532 0 obj
-(3.12. Quips)
+(3.12. Voting)
 endobj
 533 0 obj
 << /S /GoTo /D (7.24.1) >>
 endobj
 536 0 obj
-(3.13. Groups and Group Security)
+(3.13. Quips)
 endobj
 537 0 obj
-<< /S /GoTo /D (7.24.42.2) >>
+<< /S /GoTo /D (7.25.1) >>
 endobj
 540 0 obj
-(3.13.1. Creating Groups)
+(3.14. Groups and Group Security)
 endobj
 541 0 obj
-<< /S /GoTo /D (7.24.43.2) >>
+<< /S /GoTo /D (7.25.43.2) >>
 endobj
 544 0 obj
-(3.13.2. Assigning Users to Groups)
+(3.14.1. Creating Groups)
 endobj
 545 0 obj
-<< /S /GoTo /D (7.24.44.2) >>
+<< /S /GoTo /D (7.25.44.2) >>
 endobj
 548 0 obj
-(3.13.3. Assigning Group Controls to Products)
+(3.14.2. Assigning Users to Groups)
 endobj
 549 0 obj
-<< /S /GoTo /D (7.24.45.2) >>
+<< /S /GoTo /D (7.25.45.2) >>
 endobj
 552 0 obj
-(3.13.4. Common Applications of Group Controls)
+(3.14.3. Assigning Group Controls to Products)
 endobj
 553 0 obj
-<< /S /GoTo /D (7.24.45.39.3) >>
+<< /S /GoTo /D (7.25.46.2) >>
 endobj
 556 0 obj
-(3.13.4.1. General User Access With Security Group)
+(3.14.4. Common Applications of Group Controls)
 endobj
 557 0 obj
-<< /S /GoTo /D (7.24.45.40.3) >>
+<< /S /GoTo /D (7.25.46.38.3) >>
 endobj
 560 0 obj
-(3.13.4.2. General User Access With A Security Product)
+(3.14.4.1. General User Access With Security Group)
 endobj
 561 0 obj
-<< /S /GoTo /D (7.24.45.41.3) >>
+<< /S /GoTo /D (7.25.46.39.3) >>
 endobj
 564 0 obj
-(3.13.4.3. Product Isolation With Common Group)
+(3.14.4.2. General User Access With A Security Product)
 endobj
 565 0 obj
-<< /S /GoTo /D (7.25.1) >>
+<< /S /GoTo /D (7.25.46.40.3) >>
 endobj
 568 0 obj
-(3.14. Upgrading to New Releases)
+(3.14.4.3. Product Isolation With Common Group)
 endobj
 569 0 obj
-<< /S /GoTo /D (7.25.46.2) >>
+<< /S /GoTo /D (7.26.1) >>
 endobj
 572 0 obj
-(3.14.1. Version Definitions)
+(3.15. Checking and Maintaining Database Integrity)
 endobj
 573 0 obj
-<< /S /GoTo /D (7.25.47.2) >>
+<< /S /GoTo /D (7.27.1) >>
 endobj
 576 0 obj
-(3.14.2. Upgrading Notifications)
+(3.16. Upgrading to New Releases)
 endobj
 577 0 obj
-<< /S /GoTo /D (7.25.48.2) >>
+<< /S /GoTo /D (7.27.47.2) >>
 endobj
 580 0 obj
-(3.14.3. Upgrading Methods and Procedure)
+(3.16.1. Version Definitions)
 endobj
 581 0 obj
-<< /S /GoTo /D (7.25.48.42.3) >>
+<< /S /GoTo /D (7.27.48.2) >>
 endobj
 584 0 obj
-(3.14.3.1. Upgrading using CVS)
+(3.16.2. Upgrading Notifications)
 endobj
 585 0 obj
-<< /S /GoTo /D (7.25.48.43.3) >>
+<< /S /GoTo /D (7.27.49.2) >>
 endobj
 588 0 obj
-(3.14.3.2. Upgrading using the tarball)
+(3.16.3. Upgrading Methods and Procedure)
 endobj
 589 0 obj
-<< /S /GoTo /D (7.25.48.44.3) >>
+<< /S /GoTo /D (7.27.49.41.3) >>
 endobj
 592 0 obj
-(3.14.3.3. Upgrading using patches)
+(3.16.3.1. Upgrading using CVS)
 endobj
 593 0 obj
-<< /S /GoTo /D (7.25.49.2) >>
+<< /S /GoTo /D (7.27.49.42.3) >>
 endobj
 596 0 obj
-(3.14.4. Completing Your Upgrade)
+(3.16.3.2. Upgrading using the tarball)
 endobj
 597 0 obj
-<< /S /GoTo /D (8.0) >>
+<< /S /GoTo /D (7.27.49.43.3) >>
 endobj
 600 0 obj
-(Chapter 4. Bugzilla Security)
+(3.16.3.3. Upgrading using patches)
 endobj
 601 0 obj
-<< /S /GoTo /D (8.26.1) >>
+<< /S /GoTo /D (7.27.50.2) >>
 endobj
 604 0 obj
-(4.1. Operating System)
+(3.16.4. Completing Your Upgrade)
 endobj
 605 0 obj
-<< /S /GoTo /D (8.26.50.2) >>
+<< /S /GoTo /D (8.0) >>
 endobj
 608 0 obj
-(4.1.1. TCP/IP Ports)
+(Chapter 4. Bugzilla Security)
 endobj
 609 0 obj
-<< /S /GoTo /D (8.26.51.2) >>
+<< /S /GoTo /D (8.28.1) >>
 endobj
 612 0 obj
-(4.1.2. System User Accounts)
+(4.1. Operating System)
 endobj
 613 0 obj
-<< /S /GoTo /D (8.26.52.2) >>
+<< /S /GoTo /D (8.28.51.2) >>
 endobj
 616 0 obj
-(4.1.3. The chroot Jail)
+(4.1.1. TCP/IP Ports)
 endobj
 617 0 obj
-<< /S /GoTo /D (8.27.1) >>
+<< /S /GoTo /D (8.28.52.2) >>
 endobj
 620 0 obj
-(4.2. MySQL)
+(4.1.2. System User Accounts)
 endobj
 621 0 obj
-<< /S /GoTo /D (8.27.53.2) >>
+<< /S /GoTo /D (8.28.53.2) >>
 endobj
 624 0 obj
-(4.2.1. The MySQL System Account)
+(4.1.3. The chroot Jail)
 endobj
 625 0 obj
-<< /S /GoTo /D (8.27.54.2) >>
+<< /S /GoTo /D (8.29.1) >>
 endobj
 628 0 obj
-(4.2.2. The MySQL root and anonymous Users)
+(4.2. MySQL)
 endobj
 629 0 obj
-<< /S /GoTo /D (8.27.55.2) >>
+<< /S /GoTo /D (8.29.54.2) >>
 endobj
 632 0 obj
-(4.2.3. Network Access)
+(4.2.1. The MySQL System Account)
 endobj
 633 0 obj
-<< /S /GoTo /D (8.28.1) >>
+<< /S /GoTo /D (8.29.55.2) >>
 endobj
 636 0 obj
-(4.3. Web server)
+(4.2.2. The MySQL root and anonymous Users)
 endobj
 637 0 obj
-<< /S /GoTo /D (8.28.56.2) >>
+<< /S /GoTo /D (8.29.56.2) >>
 endobj
 640 0 obj
-(4.3.1. Disabling Remote Access to Bugzilla Configuration Files)
+(4.2.3. Network Access)
 endobj
 641 0 obj
-<< /S /GoTo /D (8.29.1) >>
+<< /S /GoTo /D (8.30.1) >>
 endobj
 644 0 obj
-(4.4. Bugzilla)
+(4.3. Web server)
 endobj
 645 0 obj
-<< /S /GoTo /D (8.29.57.2) >>
+<< /S /GoTo /D (8.30.57.2) >>
 endobj
 648 0 obj
-(4.4.1. Prevent users injecting malicious Javascript)
+(4.3.1. Disabling Remote Access to Bugzilla Configuration Files)
 endobj
 649 0 obj
-<< /S /GoTo /D (9.0) >>
+<< /S /GoTo /D (8.31.1) >>
 endobj
 652 0 obj
-(Chapter 5. Using Bugzilla)
+(4.4. Bugzilla)
 endobj
 653 0 obj
-<< /S /GoTo /D (9.30.1) >>
+<< /S /GoTo /D (8.31.58.2) >>
 endobj
 656 0 obj
-(5.1. Introduction)
+(4.4.1. Prevent users injecting malicious Javascript)
 endobj
 657 0 obj
-<< /S /GoTo /D (9.31.1) >>
+<< /S /GoTo /D (9.0) >>
 endobj
 660 0 obj
-(5.2. Create a Bugzilla Account)
+(Chapter 5. Using Bugzilla)
 endobj
 661 0 obj
 << /S /GoTo /D (9.32.1) >>
 endobj
 664 0 obj
-(5.3. Anatomy of a Bug)
+(5.1. Introduction)
 endobj
 665 0 obj
 << /S /GoTo /D (9.33.1) >>
 endobj
 668 0 obj
-(5.4. Life Cycle of a Bug)
+(5.2. Create a Bugzilla Account)
 endobj
 669 0 obj
 << /S /GoTo /D (9.34.1) >>
 endobj
 672 0 obj
-(5.5. Searching for Bugs)
+(5.3. Anatomy of a Bug)
 endobj
 673 0 obj
-<< /S /GoTo /D (9.34.58.2) >>
+<< /S /GoTo /D (9.35.1) >>
 endobj
 676 0 obj
-(5.5.1. Boolean Charts)
+(5.4. Life Cycle of a Bug)
 endobj
 677 0 obj
-<< /S /GoTo /D (9.34.58.45.3) >>
+<< /S /GoTo /D (9.36.1) >>
 endobj
 680 0 obj
-(5.5.1.1. Pronoun Substitution)
+(5.5. Searching for Bugs)
 endobj
 681 0 obj
-<< /S /GoTo /D (9.34.58.46.3) >>
+<< /S /GoTo /D (9.36.59.2) >>
 endobj
 684 0 obj
-(5.5.1.2. Negation)
+(5.5.1. Boolean Charts)
 endobj
 685 0 obj
-<< /S /GoTo /D (9.34.58.47.3) >>
+<< /S /GoTo /D (9.36.59.44.3) >>
 endobj
 688 0 obj
-(5.5.1.3. Multiple Charts)
+(5.5.1.1. Pronoun Substitution)
 endobj
 689 0 obj
-<< /S /GoTo /D (9.34.59.2) >>
+<< /S /GoTo /D (9.36.59.45.3) >>
 endobj
 692 0 obj
-(5.5.2. Quicksearch)
+(5.5.1.2. Negation)
 endobj
 693 0 obj
-<< /S /GoTo /D (9.34.60.2) >>
+<< /S /GoTo /D (9.36.59.46.3) >>
 endobj
 696 0 obj
-(5.5.3. Bug Lists)
+(5.5.1.3. Multiple Charts)
 endobj
 697 0 obj
-<< /S /GoTo /D (9.34.61.2) >>
+<< /S /GoTo /D (9.36.60.2) >>
 endobj
 700 0 obj
-(5.5.4. Adding/removing tags to/from bugs)
+(5.5.2. Quicksearch)
 endobj
 701 0 obj
-<< /S /GoTo /D (9.35.1) >>
+<< /S /GoTo /D (9.36.61.2) >>
 endobj
 704 0 obj
-(5.6. Filing Bugs)
+(5.5.3. Case Sensitivity in Searches)
 endobj
 705 0 obj
-<< /S /GoTo /D (9.35.62.2) >>
+<< /S /GoTo /D (9.36.62.2) >>
 endobj
 708 0 obj
-(5.6.1. Reporting a New Bug)
+(5.5.4. Bug Lists)
 endobj
 709 0 obj
-<< /S /GoTo /D (9.35.63.2) >>
+<< /S /GoTo /D (9.36.63.2) >>
 endobj
 712 0 obj
-(5.6.2. Clone an Existing Bug)
+(5.5.5. Adding/removing tags to/from bugs)
 endobj
 713 0 obj
-<< /S /GoTo /D (9.36.1) >>
+<< /S /GoTo /D (9.37.1) >>
 endobj
 716 0 obj
-(5.7. Attachments)
+(5.6. Filing Bugs)
 endobj
 717 0 obj
-<< /S /GoTo /D (9.36.64.2) >>
+<< /S /GoTo /D (9.37.64.2) >>
 endobj
 720 0 obj
-(5.7.1. Patch Viewer)
+(5.6.1. Reporting a New Bug)
 endobj
 721 0 obj
-<< /S /GoTo /D (9.36.64.48.3) >>
+<< /S /GoTo /D (9.37.65.2) >>
 endobj
 724 0 obj
-(5.7.1.1. Viewing Patches in Patch Viewer)
+(5.6.2. Clone an Existing Bug)
 endobj
 725 0 obj
-<< /S /GoTo /D (9.36.64.49.3) >>
+<< /S /GoTo /D (9.38.1) >>
 endobj
 728 0 obj
-(5.7.1.2. Seeing the Difference Between Two Patches)
+(5.7. Attachments)
 endobj
 729 0 obj
-<< /S /GoTo /D (9.36.64.50.3) >>
+<< /S /GoTo /D (9.38.66.2) >>
 endobj
 732 0 obj
-(5.7.1.3. Getting More Context in a Patch)
+(5.7.1. Patch Viewer)
 endobj
 733 0 obj
-<< /S /GoTo /D (9.36.64.51.3) >>
+<< /S /GoTo /D (9.38.66.47.3) >>
 endobj
 736 0 obj
-(5.7.1.4. Collapsing and Expanding Sections of a Patch)
+(5.7.1.1. Viewing Patches in Patch Viewer)
 endobj
 737 0 obj
-<< /S /GoTo /D (9.36.64.52.3) >>
+<< /S /GoTo /D (9.38.66.48.3) >>
 endobj
 740 0 obj
-(5.7.1.5. Linking to a Section of a Patch)
+(5.7.1.2. Seeing the Difference Between Two Patches)
 endobj
 741 0 obj
-<< /S /GoTo /D (9.36.64.53.3) >>
+<< /S /GoTo /D (9.38.66.49.3) >>
 endobj
 744 0 obj
-(5.7.1.6. Going to Bonsai and LXR)
+(5.7.1.3. Getting More Context in a Patch)
 endobj
 745 0 obj
-<< /S /GoTo /D (9.36.64.54.3) >>
+<< /S /GoTo /D (9.38.66.50.3) >>
 endobj
 748 0 obj
-(5.7.1.7. Creating a Unified Diff)
+(5.7.1.4. Collapsing and Expanding Sections of a Patch)
 endobj
 749 0 obj
-<< /S /GoTo /D (9.37.1) >>
+<< /S /GoTo /D (9.38.66.51.3) >>
 endobj
 752 0 obj
-(5.8. Hints and Tips)
+(5.7.1.5. Linking to a Section of a Patch)
 endobj
 753 0 obj
-<< /S /GoTo /D (9.37.65.2) >>
+<< /S /GoTo /D (9.38.66.52.3) >>
 endobj
 756 0 obj
-(5.8.1. Autolinkification)
+(5.7.1.6. Going to Bonsai and LXR)
 endobj
 757 0 obj
-<< /S /GoTo /D (9.37.66.2) >>
+<< /S /GoTo /D (9.38.66.53.3) >>
 endobj
 760 0 obj
-(5.8.2. Comments)
+(5.7.1.7. Creating a Unified Diff)
 endobj
 761 0 obj
-<< /S /GoTo /D (9.37.67.2) >>
+<< /S /GoTo /D (9.39.1) >>
 endobj
 764 0 obj
-(5.8.3. Dependency Tree)
+(5.8. Hints and Tips)
 endobj
 765 0 obj
-<< /S /GoTo /D (9.38.1) >>
+<< /S /GoTo /D (9.39.67.2) >>
 endobj
 768 0 obj
-(5.9. Time Tracking Information)
+(5.8.1. Autolinkification)
 endobj
 769 0 obj
-<< /S /GoTo /D (9.39.1) >>
+<< /S /GoTo /D (9.39.68.2) >>
 endobj
 772 0 obj
-(5.10. User Preferences)
+(5.8.2. Comments)
 endobj
 773 0 obj
-<< /S /GoTo /D (9.39.68.2) >>
+<< /S /GoTo /D (9.39.69.2) >>
 endobj
 776 0 obj
-(5.10.1. Account Preferences)
+(5.8.3. ServerSide Comment Wrapping)
 endobj
 777 0 obj
-<< /S /GoTo /D (9.39.69.2) >>
+<< /S /GoTo /D (9.39.70.2) >>
 endobj
 780 0 obj
-(5.10.2. General Preferences)
+(5.8.4. Dependency Tree)
 endobj
 781 0 obj
-<< /S /GoTo /D (9.39.70.2) >>
+<< /S /GoTo /D (9.40.1) >>
 endobj
 784 0 obj
-(5.10.3. Email Preferences)
+(5.9. Time Tracking Information)
 endobj
 785 0 obj
-<< /S /GoTo /D (9.39.71.2) >>
+<< /S /GoTo /D (9.41.1) >>
 endobj
 788 0 obj
-(5.10.4. Permissions)
+(5.10. User Preferences)
 endobj
 789 0 obj
-<< /S /GoTo /D (9.40.1) >>
+<< /S /GoTo /D (9.41.71.2) >>
 endobj
 792 0 obj
-(5.11. Reports and Charts)
+(5.10.1. General Preferences)
 endobj
 793 0 obj
-<< /S /GoTo /D (9.40.72.2) >>
+<< /S /GoTo /D (9.41.72.2) >>
 endobj
 796 0 obj
-(5.11.1. Reports)
+(5.10.2. Email Preferences)
 endobj
 797 0 obj
-<< /S /GoTo /D (9.40.73.2) >>
+<< /S /GoTo /D (9.41.73.2) >>
 endobj
 800 0 obj
-(5.11.2. Charts)
+(5.10.3. Saved Searches)
 endobj
 801 0 obj
-<< /S /GoTo /D (9.40.73.55.3) >>
+<< /S /GoTo /D (9.41.74.2) >>
 endobj
 804 0 obj
-(5.11.2.1. Creating Charts)
+(5.10.4. Name and Password)
 endobj
 805 0 obj
-<< /S /GoTo /D (9.40.73.56.3) >>
+<< /S /GoTo /D (9.41.75.2) >>
 endobj
 808 0 obj
-(5.11.2.2. Creating New Data Sets)
+(5.10.5. Permissions)
 endobj
 809 0 obj
-<< /S /GoTo /D (9.41.1) >>
+<< /S /GoTo /D (9.42.1) >>
 endobj
 812 0 obj
-(5.12. Flags)
+(5.11. Reports and Charts)
 endobj
 813 0 obj
-<< /S /GoTo /D (9.42.1) >>
+<< /S /GoTo /D (9.42.76.2) >>
 endobj
 816 0 obj
-(5.13. Whining)
+(5.11.1. Reports)
 endobj
 817 0 obj
-<< /S /GoTo /D (9.42.74.2) >>
+<< /S /GoTo /D (9.42.77.2) >>
 endobj
 820 0 obj
-(5.13.1. The Event)
+(5.11.2. Charts)
 endobj
 821 0 obj
-<< /S /GoTo /D (9.42.75.2) >>
+<< /S /GoTo /D (9.42.77.54.3) >>
 endobj
 824 0 obj
-(5.13.2. Whining Schedule)
+(5.11.2.1. Creating Charts)
 endobj
 825 0 obj
-<< /S /GoTo /D (9.42.76.2) >>
+<< /S /GoTo /D (9.42.77.55.3) >>
 endobj
 828 0 obj
-(5.13.3. Whining Searches)
+(5.11.2.2. Creating New Data Sets)
 endobj
 829 0 obj
-<< /S /GoTo /D (9.42.77.2) >>
+<< /S /GoTo /D (9.43.1) >>
 endobj
 832 0 obj
-(5.13.4. Saving Your Changes)
+(5.12. Flags)
 endobj
 833 0 obj
-<< /S /GoTo /D (10.0) >>
+<< /S /GoTo /D (9.44.1) >>
 endobj
 836 0 obj
-(Chapter 6. Customizing Bugzilla)
+(5.13. Whining)
 endobj
 837 0 obj
-<< /S /GoTo /D (10.43.1) >>
+<< /S /GoTo /D (9.44.78.2) >>
 endobj
 840 0 obj
-(6.1. Custom Skins)
+(5.13.1. The Event)
 endobj
 841 0 obj
-<< /S /GoTo /D (10.44.1) >>
+<< /S /GoTo /D (9.44.79.2) >>
 endobj
 844 0 obj
-(6.2. Template Customization)
+(5.13.2. Whining Schedule)
 endobj
 845 0 obj
-<< /S /GoTo /D (10.44.78.2) >>
+<< /S /GoTo /D (9.44.80.2) >>
 endobj
 848 0 obj
-(6.2.1. Template Directory Structure)
+(5.13.3. Whining Searches)
 endobj
 849 0 obj
-<< /S /GoTo /D (10.44.79.2) >>
+<< /S /GoTo /D (9.44.81.2) >>
 endobj
 852 0 obj
-(6.2.2. Choosing a Customization Method)
+(5.13.4. Saving Your Changes)
 endobj
 853 0 obj
-<< /S /GoTo /D (10.44.80.2) >>
+<< /S /GoTo /D (10.0) >>
 endobj
 856 0 obj
-(6.2.3. How To Edit Templates)
+(Chapter 6. Customizing Bugzilla)
 endobj
 857 0 obj
-<< /S /GoTo /D (10.44.81.2) >>
+<< /S /GoTo /D (10.45.1) >>
 endobj
 860 0 obj
-(6.2.4. Template Formats and Types)
+(6.1. Custom Skins)
 endobj
 861 0 obj
-<< /S /GoTo /D (10.44.82.2) >>
+<< /S /GoTo /D (10.46.1) >>
 endobj
 864 0 obj
-(6.2.5. Particular Templates)
+(6.2. Template Customization)
 endobj
 865 0 obj
-<< /S /GoTo /D (10.44.83.2) >>
+<< /S /GoTo /D (10.46.82.2) >>
 endobj
 868 0 obj
-(6.2.6. Configuring Bugzilla to Detect the User's Language)
+(6.2.1. Template Directory Structure)
 endobj
 869 0 obj
-<< /S /GoTo /D (10.45.1) >>
+<< /S /GoTo /D (10.46.83.2) >>
 endobj
 872 0 obj
-(6.3. The Bugzilla Extension Mechanism)
+(6.2.2. Choosing a Customization Method)
 endobj
 873 0 obj
-<< /S /GoTo /D (10.46.1) >>
+<< /S /GoTo /D (10.46.84.2) >>
 endobj
 876 0 obj
-(6.4. Customizing Who Can Change What)
+(6.2.3. How To Edit Templates)
 endobj
 877 0 obj
-<< /S /GoTo /D (10.47.1) >>
+<< /S /GoTo /D (10.46.85.2) >>
 endobj
 880 0 obj
-(6.5. Integrating Bugzilla with ThirdParty Tools)
+(6.2.4. Template Formats and Types)
 endobj
 881 0 obj
-<< /S /GoTo /D (10.47.84.2) >>
+<< /S /GoTo /D (10.46.86.2) >>
 endobj
 884 0 obj
-(6.5.1. Bonsai)
+(6.2.5. Particular Templates)
 endobj
 885 0 obj
-<< /S /GoTo /D (10.47.85.2) >>
+<< /S /GoTo /D (10.46.87.2) >>
 endobj
 888 0 obj
-(6.5.2. CVS)
+(6.2.6. Configuring Bugzilla to Detect the User's Language)
 endobj
 889 0 obj
-<< /S /GoTo /D (10.47.86.2) >>
+<< /S /GoTo /D (10.47.1) >>
 endobj
 892 0 obj
-(6.5.3. Perforce SCM)
+(6.3. The Bugzilla Extension Mechanism)
 endobj
 893 0 obj
-<< /S /GoTo /D (10.47.87.2) >>
+<< /S /GoTo /D (10.48.1) >>
 endobj
 896 0 obj
-(6.5.4. Subversion)
+(6.4. Customizing Who Can Change What)
 endobj
 897 0 obj
-<< /S /GoTo /D (10.47.88.2) >>
+<< /S /GoTo /D (10.49.1) >>
 endobj
 900 0 obj
-(6.5.5. Tinderbox/Tinderbox2)
+(6.5. Integrating Bugzilla with ThirdParty Tools)
 endobj
 901 0 obj
-<< /S /GoTo /D (11.0) >>
+<< /S /GoTo /D (10.49.88.2) >>
 endobj
 904 0 obj
-(Appendix A. The Bugzilla FAQ)
+(6.5.1. Bonsai)
 endobj
 905 0 obj
-<< /S /GoTo /D (12.0) >>
+<< /S /GoTo /D (10.49.89.2) >>
 endobj
 908 0 obj
-(Appendix B. Troubleshooting)
+(6.5.2. CVS)
 endobj
 909 0 obj
-<< /S /GoTo /D (12.48.1) >>
+<< /S /GoTo /D (10.49.90.2) >>
 endobj
 912 0 obj
-(B.1. General Advice)
+(6.5.3. Perforce SCM)
 endobj
 913 0 obj
-<< /S /GoTo /D (12.49.1) >>
+<< /S /GoTo /D (10.49.91.2) >>
 endobj
 916 0 obj
-(B.2. The Apache web server is not serving Bugzilla pages)
+(6.5.4. Subversion)
 endobj
 917 0 obj
-<< /S /GoTo /D (12.50.1) >>
+<< /S /GoTo /D (10.49.92.2) >>
 endobj
 920 0 obj
-(B.3. I installed a Perl module, but checksetup.pl claims it's not installed!)
+(6.5.5. Tinderbox/Tinderbox2)
 endobj
 921 0 obj
-<< /S /GoTo /D (12.51.1) >>
+<< /S /GoTo /D (11.0) >>
 endobj
 924 0 obj
-(B.4. DBD::Sponge::db prepare failed)
+(Appendix A. Troubleshooting)
 endobj
 925 0 obj
-<< /S /GoTo /D (12.52.1) >>
+<< /S /GoTo /D (11.50.1) >>
 endobj
 928 0 obj
-(B.5. cannot chdir\(/var/spool/mqueue\))
+(A.1. General Advice)
 endobj
 929 0 obj
-<< /S /GoTo /D (12.53.1) >>
+<< /S /GoTo /D (11.51.1) >>
 endobj
 932 0 obj
-(B.6. Everybody is constantly being forced to relogin)
+(A.2. The Apache web server is not serving Bugzilla pages)
 endobj
 933 0 obj
-<< /S /GoTo /D (12.54.1) >>
+<< /S /GoTo /D (11.52.1) >>
 endobj
 936 0 obj
-(B.7. Some users are constantly being forced to relogin)
+(A.3. I installed a Perl module, but checksetup.pl claims it's not installed!)
 endobj
 937 0 obj
-<< /S /GoTo /D (12.55.1) >>
+<< /S /GoTo /D (11.53.1) >>
 endobj
 940 0 obj
-(B.8. index.cgi doesn't show up unless specified in the URL)
+(A.4. DBD::Sponge::db prepare failed)
 endobj
 941 0 obj
-<< /S /GoTo /D (12.56.1) >>
+<< /S /GoTo /D (11.54.1) >>
 endobj
 944 0 obj
-(B.9. checksetup.pl reports "Client does not support authentication protocol requested by server...")
+(A.5. cannot chdir\(/var/spool/mqueue\))
 endobj
 945 0 obj
-<< /S /GoTo /D (13.0) >>
+<< /S /GoTo /D (11.55.1) >>
 endobj
 948 0 obj
-(Appendix C. Contrib)
+(A.6. Everybody is constantly being forced to relogin)
 endobj
 949 0 obj
-<< /S /GoTo /D (13.57.1) >>
+<< /S /GoTo /D (11.56.1) >>
 endobj
 952 0 obj
-(C.1. Commandline Search Interface)
+(A.7. Some users are constantly being forced to relogin)
 endobj
 953 0 obj
-<< /S /GoTo /D (13.58.1) >>
+<< /S /GoTo /D (11.57.1) >>
 endobj
 956 0 obj
-(C.2. Commandline 'Send Unsent Bugmail' tool)
+(A.8. index.cgi doesn't show up unless specified in the URL)
 endobj
 957 0 obj
-<< /S /GoTo /D (14.0) >>
+<< /S /GoTo /D (11.58.1) >>
 endobj
 960 0 obj
-(Appendix D. Manual Installation of Perl Modules)
+(A.9. checksetup.pl reports "Client does not support authentication protocol requested by server...")
 endobj
 961 0 obj
-<< /S /GoTo /D (14.59.1) >>
+<< /S /GoTo /D (12.0) >>
 endobj
 964 0 obj
-(D.1. Instructions)
+(Appendix B. Contrib)
 endobj
 965 0 obj
-<< /S /GoTo /D (14.60.1) >>
+<< /S /GoTo /D (12.59.1) >>
 endobj
 968 0 obj
-(D.2. Download Locations)
+(B.1. Commandline Search Interface)
 endobj
 969 0 obj
-<< /S /GoTo /D (14.61.1) >>
+<< /S /GoTo /D (12.60.1) >>
 endobj
 972 0 obj
-(D.3. Optional Modules)
+(B.2. Commandline 'Send Unsent Bugmail' tool)
 endobj
 973 0 obj
-<< /S /GoTo /D (15.0) >>
+<< /S /GoTo /D (13.0) >>
 endobj
 976 0 obj
-(Appendix E. GNU Free Documentation License)
+(Appendix C. Manual Installation of Perl Modules)
 endobj
 977 0 obj
-<< /S /GoTo /D (15.62.1) >>
+<< /S /GoTo /D (13.61.1) >>
 endobj
 980 0 obj
-(0. Preamble)
+(C.1. Instructions)
 endobj
 981 0 obj
-<< /S /GoTo /D (15.63.1) >>
+<< /S /GoTo /D (13.62.1) >>
 endobj
 984 0 obj
-(1. Applicability and Definition)
+(C.2. Download Locations)
 endobj
 985 0 obj
-<< /S /GoTo /D (15.64.1) >>
+<< /S /GoTo /D (13.63.1) >>
 endobj
 988 0 obj
-(2. Verbatim Copying)
+(C.3. Optional Modules)
 endobj
 989 0 obj
-<< /S /GoTo /D (15.65.1) >>
+<< /S /GoTo /D (14.0) >>
 endobj
 992 0 obj
-(3. Copying in Quantity)
+(Appendix D. GNU Free Documentation License)
 endobj
 993 0 obj
-<< /S /GoTo /D (15.66.1) >>
+<< /S /GoTo /D (14.64.1) >>
 endobj
 996 0 obj
-(4. Modifications)
+(0. Preamble)
 endobj
 997 0 obj
-<< /S /GoTo /D (15.67.1) >>
+<< /S /GoTo /D (14.65.1) >>
 endobj
 1000 0 obj
-(5. Combining Documents)
+(1. Applicability and Definition)
 endobj
 1001 0 obj
-<< /S /GoTo /D (15.68.1) >>
+<< /S /GoTo /D (14.66.1) >>
 endobj
 1004 0 obj
-(6. Collections of Documents)
+(2. Verbatim Copying)
 endobj
 1005 0 obj
-<< /S /GoTo /D (15.69.1) >>
+<< /S /GoTo /D (14.67.1) >>
 endobj
 1008 0 obj
-(7. Aggregation with Independent Works)
+(3. Copying in Quantity)
 endobj
 1009 0 obj
-<< /S /GoTo /D (15.70.1) >>
+<< /S /GoTo /D (14.68.1) >>
 endobj
 1012 0 obj
-(8. Translation)
+(4. Modifications)
 endobj
 1013 0 obj
-<< /S /GoTo /D (15.71.1) >>
+<< /S /GoTo /D (14.69.1) >>
 endobj
 1016 0 obj
-(9. Termination)
+(5. Combining Documents)
 endobj
 1017 0 obj
-<< /S /GoTo /D (15.72.1) >>
+<< /S /GoTo /D (14.70.1) >>
 endobj
 1020 0 obj
-(10. Future Revisions of this License)
+(6. Collections of Documents)
 endobj
 1021 0 obj
-<< /S /GoTo /D (15.73.1) >>
+<< /S /GoTo /D (14.71.1) >>
 endobj
 1024 0 obj
-(How to use this License for your documents)
+(7. Aggregation with Independent Works)
 endobj
 1025 0 obj
-<< /S /GoTo /D (16.0) >>
+<< /S /GoTo /D (14.72.1) >>
 endobj
 1028 0 obj
-(Glossary)
+(8. Translation)
 endobj
 1029 0 obj
-<< /S /GoTo /D (17.0) >>
+<< /S /GoTo /D (14.73.1) >>
 endobj
 1032 0 obj
-(09, high ascii)
+(9. Termination)
 endobj
 1033 0 obj
-<< /S /GoTo /D (17.73.89.2) >>
+<< /S /GoTo /D (14.74.1) >>
 endobj
 1036 0 obj
-(.htaccess)
+(10. Future Revisions of this License)
 endobj
 1037 0 obj
-<< /S /GoTo /D (18.0) >>
+<< /S /GoTo /D (14.75.1) >>
 endobj
 1040 0 obj
-(A)
+(How to use this License for your documents)
 endobj
 1041 0 obj
-<< /S /GoTo /D (18.73.90.2) >>
+<< /S /GoTo /D (15.0) >>
 endobj
 1044 0 obj
-(Apache)
+(Glossary)
 endobj
 1045 0 obj
-<< /S /GoTo /D (18.73.90.57.3) >>
+<< /S /GoTo /D (16.0) >>
 endobj
 1048 0 obj
-(Useful Directives when configuring Bugzilla)
+(09, high ascii)
 endobj
 1049 0 obj
-<< /S /GoTo /D (19.0) >>
+<< /S /GoTo /D (16.75.93.2) >>
 endobj
 1052 0 obj
-(B)
+(.htaccess)
 endobj
 1053 0 obj
-<< /S /GoTo /D (19.73.91.2) >>
+<< /S /GoTo /D (17.0) >>
 endobj
 1056 0 obj
-(Bug)
+(A)
 endobj
 1057 0 obj
-<< /S /GoTo /D (19.73.92.2) >>
+<< /S /GoTo /D (17.75.94.2) >>
 endobj
 1060 0 obj
-(Bug Number)
+(Apache)
 endobj
 1061 0 obj
-<< /S /GoTo /D (19.73.93.2) >>
+<< /S /GoTo /D (17.75.94.56.3) >>
 endobj
 1064 0 obj
-(Bugzilla)
+(Useful Directives when configuring Bugzilla)
 endobj
 1065 0 obj
-<< /S /GoTo /D (20.0) >>
+<< /S /GoTo /D (18.0) >>
 endobj
 1068 0 obj
-(C)
+(B)
 endobj
 1069 0 obj
-<< /S /GoTo /D (20.73.94.2) >>
+<< /S /GoTo /D (18.75.95.2) >>
 endobj
 1072 0 obj
-(Common Gateway Interface)
+(Bug)
 endobj
 1073 0 obj
-<< /S /GoTo /D (20.73.95.2) >>
+<< /S /GoTo /D (18.75.96.2) >>
 endobj
 1076 0 obj
-(Component)
+(Bug Number)
 endobj
 1077 0 obj
-<< /S /GoTo /D (20.73.96.2) >>
+<< /S /GoTo /D (18.75.97.2) >>
 endobj
 1080 0 obj
-(Comprehensive Perl Archive Network)
+(Bugzilla)
 endobj
 1081 0 obj
-<< /S /GoTo /D (20.73.97.2) >>
+<< /S /GoTo /D (19.0) >>
 endobj
 1084 0 obj
-(contrib)
+(C)
 endobj
 1085 0 obj
-<< /S /GoTo /D (21.0) >>
+<< /S /GoTo /D (19.75.98.2) >>
 endobj
 1088 0 obj
-(D)
+(Common Gateway Interface)
 endobj
 1089 0 obj
-<< /S /GoTo /D (21.73.98.2) >>
+<< /S /GoTo /D (19.75.99.2) >>
 endobj
 1092 0 obj
-(daemon)
+(Component)
 endobj
 1093 0 obj
-<< /S /GoTo /D (21.73.99.2) >>
+<< /S /GoTo /D (19.75.100.2) >>
 endobj
 1096 0 obj
-(DOS Attack)
+(Comprehensive Perl Archive Network)
 endobj
 1097 0 obj
-<< /S /GoTo /D (22.0) >>
+<< /S /GoTo /D (19.75.101.2) >>
 endobj
 1100 0 obj
-(G)
+(contrib)
 endobj
 1101 0 obj
-<< /S /GoTo /D (22.73.100.2) >>
+<< /S /GoTo /D (20.0) >>
 endobj
 1104 0 obj
-(Groups)
+(D)
 endobj
 1105 0 obj
-<< /S /GoTo /D (23.0) >>
+<< /S /GoTo /D (20.75.102.2) >>
 endobj
 1108 0 obj
-(J)
+(daemon)
 endobj
 1109 0 obj
-<< /S /GoTo /D (23.73.101.2) >>
+<< /S /GoTo /D (20.75.103.2) >>
 endobj
 1112 0 obj
-(JavaScript)
+(DOS Attack)
 endobj
 1113 0 obj
-<< /S /GoTo /D (24.0) >>
+<< /S /GoTo /D (21.0) >>
 endobj
 1116 0 obj
-(M)
+(G)
 endobj
 1117 0 obj
-<< /S /GoTo /D (24.73.102.2) >>
+<< /S /GoTo /D (21.75.104.2) >>
 endobj
 1120 0 obj
-(Message Transport Agent)
+(Groups)
 endobj
 1121 0 obj
-<< /S /GoTo /D (24.73.103.2) >>
+<< /S /GoTo /D (22.0) >>
 endobj
 1124 0 obj
-(MySQL)
+(J)
 endobj
 1125 0 obj
-<< /S /GoTo /D (25.0) >>
+<< /S /GoTo /D (22.75.105.2) >>
 endobj
 1128 0 obj
-(P)
+(JavaScript)
 endobj
 1129 0 obj
-<< /S /GoTo /D (25.73.104.2) >>
+<< /S /GoTo /D (23.0) >>
 endobj
 1132 0 obj
-(Perl Package Manager)
+(M)
 endobj
 1133 0 obj
-<< /S /GoTo /D (25.73.105.2) >>
+<< /S /GoTo /D (23.75.106.2) >>
 endobj
 1136 0 obj
-(Product)
+(Message Transport Agent)
 endobj
 1137 0 obj
-<< /S /GoTo /D (25.73.106.2) >>
+<< /S /GoTo /D (23.75.107.2) >>
 endobj
 1140 0 obj
-(Perl)
+(MySQL)
 endobj
 1141 0 obj
-<< /S /GoTo /D (26.0) >>
+<< /S /GoTo /D (24.0) >>
 endobj
 1144 0 obj
-(Q)
+(P)
 endobj
 1145 0 obj
-<< /S /GoTo /D (26.73.107.2) >>
+<< /S /GoTo /D (24.75.108.2) >>
 endobj
 1148 0 obj
-(QA)
+(Perl Package Manager)
 endobj
 1149 0 obj
-<< /S /GoTo /D (27.0) >>
+<< /S /GoTo /D (24.75.109.2) >>
 endobj
 1152 0 obj
-(R)
+(Product)
 endobj
 1153 0 obj
-<< /S /GoTo /D (27.73.108.2) >>
+<< /S /GoTo /D (24.75.110.2) >>
 endobj
 1156 0 obj
-(Relational DataBase Management System)
+(Perl)
 endobj
 1157 0 obj
-<< /S /GoTo /D (27.73.109.2) >>
+<< /S /GoTo /D (25.0) >>
 endobj
 1160 0 obj
-(Regular Expression)
+(Q)
 endobj
 1161 0 obj
-<< /S /GoTo /D (28.0) >>
+<< /S /GoTo /D (25.75.111.2) >>
 endobj
 1164 0 obj
-(S)
+(QA)
 endobj
 1165 0 obj
-<< /S /GoTo /D (28.73.110.2) >>
+<< /S /GoTo /D (26.0) >>
 endobj
 1168 0 obj
-(Service)
+(R)
 endobj
 1169 0 obj
-<< /S /GoTo /D (28.73.111.2) >>
+<< /S /GoTo /D (26.75.112.2) >>
 endobj
 1172 0 obj
-(SGML )
+(Relational DataBase Management System)
 endobj
 1173 0 obj
-<< /S /GoTo /D (29.0) >>
+<< /S /GoTo /D (26.75.113.2) >>
 endobj
 1176 0 obj
-(T)
+(Regular Expression)
 endobj
 1177 0 obj
-<< /S /GoTo /D (29.73.112.2) >>
+<< /S /GoTo /D (27.0) >>
 endobj
 1180 0 obj
-(Target Milestone)
+(S)
 endobj
 1181 0 obj
-<< /S /GoTo /D (29.73.113.2) >>
+<< /S /GoTo /D (27.75.114.2) >>
 endobj
 1184 0 obj
-(Tool Command Language)
+(Service)
 endobj
 1185 0 obj
-<< /S /GoTo /D (30.0) >>
+<< /S /GoTo /D (27.75.115.2) >>
 endobj
 1188 0 obj
-(Z)
+(SGML )
 endobj
 1189 0 obj
-<< /S /GoTo /D (30.73.114.2) >>
+<< /S /GoTo /D (28.0) >>
 endobj
 1192 0 obj
-(Zarro Boogs Found)
+(T)
 endobj
 1193 0 obj
-<< /S /GoTo /D [1194 0 R  /Fit ] >>
+<< /S /GoTo /D (28.75.116.2) >>
+endobj
+1196 0 obj
+(Target Milestone)
+endobj
+1197 0 obj
+<< /S /GoTo /D (28.75.117.2) >>
+endobj
+1200 0 obj
+(Tool Command Language)
 endobj
-1196 0 obj <<
+1201 0 obj
+<< /S /GoTo /D (29.0) >>
+endobj
+1204 0 obj
+(Z)
+endobj
+1205 0 obj
+<< /S /GoTo /D (29.75.118.2) >>
+endobj
+1208 0 obj
+(Zarro Boogs Found)
+endobj
+1209 0 obj
+<< /S /GoTo /D [1210 0 R  /Fit ] >>
+endobj
+1212 0 obj <<
 /Length 212       
 /Filter /FlateDecode
 >>
 stream
 xڍ�1k�@�w�
 ��p�I�;�א&�1�2���6ФC}ϱ	J	���O"���P������PY8g]Ѽ�B@�\�?L�E���.a����Cm!��
-@�Ef�����=7�5֋������4�/��l�I	yj��!_���4�s�K/@ѡ��p��k�&���ʣ� E&?��ȅİ$��CIM�u�1�zN��珹�����bYR�endstream
+@�Ef�����=7�5֋������4�/��l�I	ej��!_���4�s�K/@ѡ��p��k�&���ʣ� E&?��ȅİ$��CIM�u�1�zN��珹�����cR�endstream
 endobj
-1194 0 obj <<
+1210 0 obj <<
 /Type /Page
-/Contents 1196 0 R
-/Resources 1195 0 R
+/Contents 1212 0 R
+/Resources 1211 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 1202 0 R
+/Parent 1218 0 R
 >> endobj
-1197 0 obj <<
-/D [1194 0 R /XYZ 71.731 729.265 null]
+1213 0 obj <<
+/D [1210 0 R /XYZ 71.731 729.265 null]
 >> endobj
-1198 0 obj <<
-/D [1194 0 R /XYZ 71.731 718.306 null]
+1214 0 obj <<
+/D [1210 0 R /XYZ 71.731 718.306 null]
 >> endobj
-1199 0 obj <<
-/D [1194 0 R /XYZ 71.731 718.306 null]
+1215 0 obj <<
+/D [1210 0 R /XYZ 71.731 718.306 null]
 >> endobj
 2 0 obj <<
-/D [1194 0 R /XYZ 351.709 667.995 null]
+/D [1210 0 R /XYZ 351.709 667.995 null]
 >> endobj
-1195 0 obj <<
-/Font << /F23 1201 0 R >>
+1211 0 obj <<
+/Font << /F23 1217 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-1205 0 obj <<
+1221 0 obj <<
 /Length 534       
 /Filter /FlateDecode
 >>
 stream
-xڍTɎ�0��+|��Z��x�q0�z��=(���%��	2__J��=9�z��G:<b��Q�i��!**�,j�
�:�nx���9����$KZ�i��1<՛�7�F��4��$���n��ORU���$OK������ҷ����ҘNޞU�3��4��"�C
J���C�▗E	���]���3R�q���q�����q/EF+���o�~��Q�)+V%�������Xo ,��9�>���,�ji�yB�a��[k���DtF�.�Z6��ԡ�\��8�<b�8{
-��$E�]�wU�	�P��'��4�4�{�_5jm���}��U0���cΈ�AO{�6X�^����Z�J������1�
- ��q�Z�ڿB�q��O/�ʦ��?���Y-��˛���̋
-D4�f��/Y^2��ϩ�����\.���;kq p";C.5�u1�x��Rg���|�ѹ����8��U%��9��b;Z{��ݞ��FM��K���
���x�ټ���;|��������?3$�endstream
+xڍTɎ�0��+|��Z�o=f:@O�·��Vcl+��	2__jq���"Q��#�H�&~4)).9�Ƭȓvڐ���ƈ]Q`�3����r^��Iv���l��Oj\<i�$��|�K��'j�2�XY�����Q���2tё���"�y�=˔��C��4�����02��|���-/I2�p
Ż����$��.��Ӓ )&G�^�ׄ��o�~�Qv!�Re�e�^cK\�yll0V�(��>��jW������t�|	��>e-}f�h߇�Ns1t@S��j
+��Hi�z�wm�U%�p�z�>��Ȭ��������k�^F�T���Q{N)ABG=�Q�h�zM�'�
d�rV��\D���Yd�<`��Ӳ��!����z����lZ-�pWG���*=v��,/緅,�D46X���_��"��-�S]?=��:\��3w�:�H�Dv�]��ń����*u��W�軍�ݞ��Ao�*�?�)��/���������|Na�8*��$[(�@[[��^��Ks��㗻�pE���w��q$�endstream
 endobj
-1204 0 obj <<
+1220 0 obj <<
 /Type /Page
-/Contents 1205 0 R
-/Resources 1203 0 R
+/Contents 1221 0 R
+/Resources 1219 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 1202 0 R
+/Parent 1218 0 R
 >> endobj
-1206 0 obj <<
-/D [1204 0 R /XYZ 71.731 729.265 null]
+1222 0 obj <<
+/D [1220 0 R /XYZ 71.731 729.265 null]
 >> endobj
-1203 0 obj <<
-/Font << /F23 1201 0 R /F27 1208 0 R >>
+1219 0 obj <<
+/Font << /F23 1217 0 R /F27 1224 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-1211 0 obj <<
-/Length 56607     
+1227 0 obj <<
+/Length 56608     
 /Filter /FlateDecode
 >>
 stream
@@ -1913,9 +1935,9 @@ e
 e�Z�;ʚ
 �6w(�4;�l�P(�ء@e�x�B9�C�����f��
�
 c�;d]��CA�
-f�/2v(>]�x���"��#�P<��O��Z�C�3١x;�������?�����_��_Oo/�_}�|�e{{;�H㎗�>_�q�q��Ɲ�+wg�;[�����Ɲ�
���YG���b㮬i�Ѻ��qw�Ѹ���ظ;�h���@jܝto��Y8lܕ3�;J 6��:w�6wg�;[�����Ɲ�
��]YӸ�ub�qgk�qw�Ѹ���ظ;�h���@lܕ5�;Z 6��:w�6wg�;[�����Ɲ�
��]YӸ�ub�qgk�qwҽqgg�qw�Ѹ���ظ+kw�.@lܝu4�lm 6��:w�6wg�;[�����qG����YG���b�qgk�qw�Ѹ���ظ+kw�.@lܝu4�lm 6��:w�6wg�;[�����qG����9k���F���;���s�Ɲ�
���Xg�N������Ɲ�
���YG���b�qgk�qW�4�h]�ظ;�h���@lܝu4�lm 6��:w�6weM�������Ɲ�
���YG���b�qgk�qW�Ѹ��qԸ;�޸��pظ;�h�Y�@lܝu4�lm 6�ʚ��wg�;[�����Ɲ�
���YG���b㮬i�Ѻ��qw�Ѹ���ظ;�h���@lܝu4�lm 6�ʚ��wg�;[�����Ɲ�
���I�Ɲ����])G���a�qgi�qw�Ѹ���ظ;�h���@lܕ5�;Z 6��:w�6wg�;[�����Ɲ�
��]YӸ�ub�qgk�qw�Ѹ���ظ;�h���@l܍u6�d]�ظ;�h���@lܝu4�lm 5�N�7��,6�ʙ��wg�;[�����Ɲ�
���YG���b㮬i�Ѻ��qw�Ѹ���ظ;�h���@lܝu4�lm 6�ʚ��wg�;[�����Ɲ�
���YG���b㮬i�Ѻ��qw�Ѹ���Ը;�޸��pظ;�h�Y�@lܕ5�;Z 6��:w�6wg�;[�����Ɲ�
��]YӸ�ub�qgk�qw�Ѹ���ظ;�h���@lܕ5�;Z 6��:w�6wg�;[�����Ɲ�
��]YӸ�uR��{����a�qgi�qw�Ѹ���ظ+kw�.@lܝu4�lm 6��:w�6wg�;[�����Ɲ�+wg�;[�����Ɲ�
���YG���b㮬i�Ѻ��qw�Ѹ���ظ;�h���@lܝu4�lm 5�J:wt6�w��wVw��;K�����Ɲ�
��]YӸ�ub㎱�h��"���y9j��"���?m_�4������巿~������|����C9sm�ϣr�������������p+�|��#ᕿ^�|z۾������p�YV~��qY��E��$��RYSV���\V*k�J�6��JeMY��rYi���$��RYSV���\V*k�J�6��JeMY��rYi���$��RYSV���XV*�(+�Y8.+�3e%J�e��β����JeMY��rY��)+��@.+�5e%Z�e��β����JeMY��rY��)+��@.+�5e%Z�e��β����JeMY��rY��)+��@.+�5e%Z�e��β����J���J4~�aY����DcḬTΔ�(m ���z-+����T֔�hm ��ʚ��
�RYSV���\V�,+ɺ���T֔�hm ��ʚ��
�RYSV���\V�,+ɺ���T֔�hm ��ʚ��
�RYSV���XVi�Jr6�J�e%*�e�r��Di��T֔�hm ���:�J�.@.+�5e%Z�e����Dk��T֔�hm ���:�J�.@.+�5e%Z�e����Dk��T֔�hm ���:�J�.@.+�5e%Z�e����Dk��T�QV��pXVe�JR6��J�LY��rY��)+��@.+�5e%Z�e��β����JeMY��rY��)+��@.+�5e%Z�e��β����JeMY��rY��)+��@.+�5e%Z�e��^�J��@.+�5e%Z�e����Dk��T�QV��p\V�,+I����T֔�hm ��ʚ��
�RYSV���\V�,+ɺ���T֔�hm ��ʚ��
�RYSV���\V�,+ɺ���T֔�hm ��ʚ��
�RYSV���\V�,+ɺ���T֔�hm ��J:�Jt��J�LY��rYi���$��RYSV���\V*k�J�6��JeMY��rYi���$��RYSV���\V*k�J�6��JeMY��rYi���$��RYSV���\V*k�J�6��JeMY��rYi���$�IJRIGY���qY��)+Q�@.+�5e%Z�e��β����JeMY��rY��)+��@.+�5e%Z�e��^�J��@.+�5e%Z�e����Dk��T֔�hm ���:�J�.@.+�5e%Z�e����Dk��T֔�hm ��F�����òR)GY���qY��)+Q�@.+�5e%Z�e��β������NЕ�x�QV~���aYy|���|�SV�<�����q�ZV>���߼>|�ݟ��o�.�����?���������=|�ڜ�=�
+f�/2v(>]�x���"��#�P<��O��Z�C�3١x;�������?�����_��_Oo/�_}�|�e{{;�H㎗�>_�q�q��Ɲ�+wg�;[�����Ɲ�
���YG���b㮬i�Ѻ��qw�Ѹ���ظ;�h���@jܝto��Y8lܕ3�;J 6��:w�6wg�;[�����Ɲ�
��]YӸ�ub�qgk�qw�Ѹ���ظ;�h���@lܕ5�;Z 6��:w�6wg�;[�����Ɲ�
��]YӸ�ub�qgk�qwҽqgg�qw�Ѹ���ظ+kw�.@lܝu4�lm 6��:w�6wg�;[�����qG����YG���b�qgk�qw�Ѹ���ظ+kw�.@lܝu4�lm 6��:w�6wg�;[�����qG����9k���F���;���s�Ɲ�
���Xg�N������Ɲ�
���YG���b�qgk�qW�4�h]�ظ;�h���@lܝu4�lm 6��:w�6weM�������Ɲ�
���YG���b�qgk�qW�Ѹ��qԸ;�޸��pظ;�h�Y�@lܝu4�lm 6�ʚ��wg�;[�����Ɲ�
���YG���b㮬i�Ѻ��qw�Ѹ���ظ;�h���@lܝu4�lm 6�ʚ��wg�;[�����Ɲ�
���I�Ɲ����])G���a�qgi�qw�Ѹ���ظ;�h���@lܕ5�;Z 6��:w�6wg�;[�����Ɲ�
��]YӸ�ub�qgk�qw�Ѹ���ظ;�h���@l܍u6�d]�ظ;�h���@lܝu4�lm 5�N�7��,6�ʙ��wg�;[�����Ɲ�
���YG���b㮬i�Ѻ��qw�Ѹ���ظ;�h���@lܝu4�lm 6�ʚ��wg�;[�����Ɲ�
���YG���b㮬i�Ѻ��qw�Ѹ���Ը;�޸��pظ;�h�Y�@lܕ5�;Z 6��:w�6wg�;[�����Ɲ�
��]YӸ�ub�qgk�qw�Ѹ���ظ;�h���@lܕ5�;Z 6��:w�6wg�;[�����Ɲ�
��]YӸ�uR��{����a�qgi�qw�Ѹ���ظ+kw�.@lܝu4�lm 6��:w�6wg�;[�����Ɲ�+wg�;[�����Ɲ�
���YG���b㮬i�Ѻ��qw�Ѹ���ظ;�h���@lܝu4�lm 5�J:wt6�w��wVw��;K�����Ɲ�
��]YӸ�ub㎱�h��"���y9j��"���?m_�4������巿~������|����C9sm�ϣr�������������p+�|��#ᕿ^�|z۾������p�YV~��qY��E��$��RYSV���\V*k�J�6��JeMY��rYi���$��RYSV���\V*k�J�6��JeMY��rYi���$��RYSV���XV*�(+�Y8.+�3e%J�e��β����JeMY��rY��)+��@.+�5e%Z�e��β����JeMY��rY��)+��@.+�5e%Z�e��β����JeMY��rY��)+��@.+�5e%Z�e��β����J���J4~�aY����DcḬTΔ�(m ���z-+����T֔�hm ��ʚ��
�RYSV���\V�,+ɺ���T֔�hm ��ʚ��
�RYSV���\V�,+ɺ���T֔�hm ��ʚ��
�RYSV���XVi�Jr6�J�e%*�e�r��Di��T֔�hm ���:�J�.@.+�5e%Z�e����Dk��T֔�hm ���:�J�.@.+�5e%Z�e����Dk��T֔�hm ���:�J�.@.+�5e%Z�e����Dk��T�QV��pXVe�JR6��J�LY��rY��)+��@.+�5e%Z�e��β����JeMY��rY��)+��@.+�5e%Z�e��β����JeMY��rY��)+��@.+�5e%Z�e��^�J��@.+�5e%Z�e����Dk��T�QV��p\V�,+I����T֔�hm ��ʚ��
�RYSV���\V�,+ɺ���T֔�hm ��ʚ��
�RYSV���\V�,+ɺ���T֔�hm ��ʚ��
�RYSV���\V�,+ɺ���T֔�hm ��J:�Jt��J�LY��rYi���$��RYSV���\V*k�J�6��JeMY��rYi���$��RYSV���\V*k�J�6��JeMY��rYi���$��RYSV���\V*k�J�6��JeMY��rYi���$�IJRIGY���qY��)+Q�@.+�5e%Z�e��β����JeMY��rY��)+��@.+�5e%Z�e��^�J��@.+�5e%Z�e����Dk��T֔�hm ���:�J�.@.+�5e%Z�e����Dk��T֔�hm ��F�����òR)GY���qY��)+Q�@.+�5e%Z�e��β������NЕ�x�QV~���aYy|���|�SV�<�����q�ZV>���߼>|�ݟ��o�.�����?���������=|�ڜ��=�
 3.��]/�����~�_�V�G�V�����V�ˋ@���r���i5��@n5�5�Zȭ���V���[
eM���r���i5��@n5�5�Zȭ���V���Z
��[
4~�a�����@c��Pδ(m ��zm5����Pִhm �ʚV�
�VCY�j����j�l5Ⱥ���Pִhm �ʚV�
�VCY�j����j�l5Ⱥ���Pִhm �ʚV�
�VCY�j����jiZ
r6[
��*ǭ�r��@i��Pִhm ��:[
�.@n5�5�Zȭ����@k��Pִhm ��:[
�.@n5�5�Zȭ����@k��Pִhm ��:[
�.@n5�5�Zȭ����@k��P��j��p�jeZ
R6�[
�L���r���i5��@n5�5�Zȭ���V���[
eM���r���i5��@n5�5�Zȭ���V���[
eM���r���i5��@n5�5�Zȭ��^[
��@n5�5�Zȭ����@k��P��j��p�j�l5H����Pִhm �ʚV�
�VCY�j����j�l5Ⱥ���Pִhm �ʚV�
�VCY�j����j�l5Ⱥ���Pִhm �ʚV�
�VCY�j����j�l5Ⱥ���Pִhm �J:Z
t�[
�L���r�a��� ��VCY�j����j(kZ
�6�[
eM���r�a��� ��VCY�j����j(kZ
�6�[
eM���r�a��� ��VCY�j����j(kZ
�6�[
eM���r�a��� ��VCIG����q���i5P�@n5�5�Zȭ���V���[
eM���r���i5��@n5�5�Zȭ��^[
��@n5�5�Zȭ����@k��Pִhm ��:[
�.@n5�5�Zȭ����@k��Pִhm �F�V����VC)G����q���i5P�@n5�5�Zȭ���V���[
�
-L���Ƨ����+?k�����[�q��j\F��������� ���}����'Ӎ��ھ�>2�o��~���3����{�ϧ����5n|�~����z9��X�~����֗���QZ��w�
<��%S�|�Zȟrf��S�Ⱥ��SΔ5�r���)k>��
�O9S�|�Zȟrf��S�Ⱥ��SΔ5�r���)k>��
�O9S�|�Zȟrf��S�Ⱥ��SΔ5�r��⧜)���3t�?�L9�)g(m ʙ��O9#��O9S�|�Zȟr����3�6�?�LY�)ghm ʙ��r����YeM9��r9��)g��@.g�5�,Z�嬱�r����YeM9��r9��)g��@.g�5�,Z�嬱�r����Y���Y4~�a9����EcḜUΔ�(m ���z-g����U֔�hm ��ʚr�
�rVYS΢��\��,gɺ���U֔�hm ��ʚr�
�rVYS΢��\��,gɺ���U֔�hm ��ʚr�
�rVYS΢��X�i�Yr6�Y��,*��r��Ei��U֔�hm ���:�Y�.@.g�5�,Z�嬲��Ek��U֔�hm ���:�Y�.@.g�5�,Z�嬲��Ek��U֔�hm ���:�Y�.@.g�5�,Z�嬲��Ek��U�Q΢�pX�e�YR6��Y�L9��r9��)g��@.g�5�,Z�嬱�r����YeM9��r9��)g��@.g�5�,Z�嬱�r����YeM9��r9��)g��@.g�5�,Z�嬰^�Y��@.g�5�,Z�嬲��Ek��U�Q΢�p\��,gI����U֔�hm ��ʚr�
�rVYS΢��\��,gɺ���U֔�hm ��ʚr�
�rVYS΢��\��,gɺ���U֔�hm ��ʚr�
�rVYS΢��\��,gɺ���U֔�hm ��J:�Yt��Y�L9��r9k���%��rVYS΢��\�*k�Y�6��YeM9��r9k���%��rVYS΢��\�*k�Y�6��YeM9��r9k���%��rVYS΢��\�*k�Y�6��YeM9��r9k���%��rVIG9���q9��)gQ�@.g�5�,Z�嬱�r����YeM9��r9��)g��@.g�5�,Z�嬰^�Y��@.g�5�,Z�嬲��Ek��U֔�hm ���:�Y�.@.g�5�,Z�嬲��Ek��U֔�hm ��F�r����rV)G9���q9��)gQ�@.g�5�,Z�嬱�r�������ӕ�x�Q�~��q9{|���S�.��K����̵�}�����?��������|�9��]�>=�fA��tP��bn<��O7>.ƾ�chm c�:�1�.@.Ɣ5�Z�Ř��b���bL9S����\��,�Ⱥ��S�chm cʚb�
�bLYS����\��,�Ⱥ��S�chm cʚb�
�bLYS����\��,�Ⱥ��S�chm cʚb�
�bLYS����\��,�Ⱥ��SνC�gcJ8�14��1�L1��r1&��b�+��1eM1��r1��)���@.Ɣ5�Z�Ř��b����1eM1��r1��)���@.Ɣ5�Z�Ř��b����1eM1��r1��)���@.Ɣ5�Z�Ř��#g�S�Q���p\�)g�1�6��1eM1��r1f��#��bLYS����\�)k�1�6��1eM1��r1f��#��bLYS����\�)k�1�6��1eM1��r1f��#��bLYS����\�)k�1�6�1%�:�ŘQ�#e�S�c(m cʚb�
�bLYS����\��,�Ⱥ��S�chm cʚb�
�bLYS����\��,�Ⱥ��S�chm cʚb�
�bLYS����\�	��
+L���Ƨ�����+?k�����[�q��j\F��������� ���}����'Ӎ��ھ�>2�o��~���3����{�ϧ����5n|�~����z9��X�~����֗���QZ��w�
<��%S�|�Zȟrf��S�Ⱥ��SΔ5�r���)k>��
�O9S�|�Zȟrf��S�Ⱥ��SΔ5�r���)k>��
�O9S�|�Zȟrf��S�Ⱥ��SΔ5�r��⧜)���3t�?�L9�)g(m ʙ��O9#��O9S�|�Zȟr����3�6�?�LY�)ghm ʙ��r����YeM9��r9��)g��@.g�5�,Z�嬱�r����YeM9��r9��)g��@.g�5�,Z�嬱�r����Y���Y4~�a9����EcḜUΔ�(m ���z-g����U֔�hm ��ʚr�
�rVYS΢��\��,gɺ���U֔�hm ��ʚr�
�rVYS΢��\��,gɺ���U֔�hm ��ʚr�
�rVYS΢��X�i�Yr6�Y��,*��r��Ei��U֔�hm ���:�Y�.@.g�5�,Z�嬲��Ek��U֔�hm ���:�Y�.@.g�5�,Z�嬲��Ek��U֔�hm ���:�Y�.@.g�5�,Z�嬲��Ek��U�Q΢�pX�e�YR6��Y�L9��r9��)g��@.g�5�,Z�嬱�r����YeM9��r9��)g��@.g�5�,Z�嬱�r����YeM9��r9��)g��@.g�5�,Z�嬰^�Y��@.g�5�,Z�嬲��Ek��U�Q΢�p\��,gI����U֔�hm ��ʚr�
�rVYS΢��\��,gɺ���U֔�hm ��ʚr�
�rVYS΢��\��,gɺ���U֔�hm ��ʚr�
�rVYS΢��\��,gɺ���U֔�hm ��J:�Yt��Y�L9��r9k���%��rVYS΢��\�*k�Y�6��YeM9��r9k���%��rVYS΢��\�*k�Y�6��YeM9��r9k���%��rVYS΢��\�*k�Y�6��YeM9��r9k���%��rVIG9���q9��)gQ�@.g�5�,Z�嬱�r����YeM9��r9��)g��@.g�5�,Z�嬰^�Y��@.g�5�,Z�嬲��Ek��U֔�hm ���:�Y�.@.g�5�,Z�嬲��Ek��U֔�hm ��F�r����rV)G9���q9��)gQ�@.g�5�,Z�嬱�r�������ӕ�x�Q�~��q9{|���S�.��K����̵�}�����?��������|�9��]�>=�fA��tP��bn<��O7>.ƾ�chm c�:�1�.@.Ɣ5�Z�Ř��b���bL9S����\��,�Ⱥ��S�chm cʚb�
�bLYS����\��,�Ⱥ��S�chm cʚb�
�bLYS����\��,�Ⱥ��S�chm cʚb�
�bLYS����\��,�Ⱥ��SνC�gcJ8�14��1�L1��r1&��b�+��1eM1��r1��)���@.Ɣ5�Z�Ř��b����1eM1��r1��)���@.Ɣ5�Z�Ř��b����1eM1��r1��)���@.Ɣ5�Z�Ř��#g�S�Q���p\�)g�1�6��1eM1��r1f��#��bLYS����\�)k�1�6��1eM1��r1f��#��bLYS����\�)k�1�6��1eM1��r1f��#��bLYS����\�)k�1�6�1%�:�ŘQ�#e�S�c(m cʚb�
�bLYS����\��,�Ⱥ��S�chm cʚb�
�bLYS����\��,�Ⱥ��S�chm cʚb�
�bLYS����\�	��
 �bLYS����\�)k�1�6�1%�:�Řq�b����1eM1��r1��)���@.Ɣ5�Z�Ř��b����1eM1��r1��)���@.Ɣ5�Z�Ř��b����1eM1��r1��)���@.Ɣ5�Z�Ř��b����1eM1��b1���Cg�S�c(m c�:�1�.@.Ɣ5�Z�Ř��Ck�S�chm c�:�1�.@.Ɣ5�Z�Ř��Ck�S�chm c�:�1�.@.Ɣ5�Z�Ř��Ck�S�chm c�:�1�.@,Ɣtc�,cʙb�
�bLYS����\��,�Ⱥ��S�chm cʚb�
�bLYS����\�	��
 �bLYS����\�)k�1�6��1eM1��r1f��#��bLYS����\�)k�1�6��1eM1��b1f�)���8,Ɣrc�,cʙb�
�bLYS����\��,�Ⱥ��;��\1��ا�c��+?k��e�3�3c�̵{�����������ۿ^{�o������5c�'wu�{�~}]�6cp�ٌ}��q3��E�Ck�3�ٌ�ur3��i���@lƔt4c�,7cʙf�
�f�Xg3F��͘��Ck�S�4chm 7cʚf�
�f�Xg3F��͘��Ck�S�4chm 7cʚf�
�f�Xg3F��͘��Ck�S�4chm 7cʚf�
�f�Xg3F�H͘r��?ðS�ь��p܌)g�1�6��1a�6c`]�܌)k�1�6��1eM3��r3��i���@nƌu6cd]�܌)k�1�6��1eM3��r3��i���@nƌu6cd]�܌)k�1�6��1eM3��r3��i���@lƌ4�9�͘R�f���fL9ӌ���܌)k�1�6��1c��Y 7cʚf�
�fLYӌ���܌)k�1�6��1c��Y 7cʚf�
�fLYӌ���܌)k�1�6��1c��Y 7cʚf�
�fLYӌ���،)�h��Y8lƌ2�)�͘r�Ci�S�4chm 7cʚf�
�f�Xg3F��͘��Ck�S�4chm 7cʚf�
�f�Xg3F��͘��Ck�S�4chm 7cʚf�
�fLX��XW 7cʚf�
�fLYӌ���،)�h��Y8nƌs6c$]�܌)k�1�6��1eM3��r3��i���@nƌu6cd]�܌)k�1�6��1eM3��r3��i���@nƌu6cd]�܌)k�1�6��1eM3��r3��i���@nƌu6cd]�܌)k�1�6�1%�:�͘r�Ci�3�ٌ�ur3��i���@nƔ5�Z�͘��Ck�3�ٌ�ur3��i���@nƔ5�Z�͘��Ck�3�ٌ�ur3��i���@nƔ5�Z�͘��Ck�3�ٌ�ub3���Cg�S�4c(m 7cʚf�
�f�Xg3F��͘��Ck�S�4chm 7cʚf�
�fLX��XW 7cʚf�
�fLYӌ���܌)k�1�6��1c��Y 7cʚf�
�fLYӌ���܌)k�1�6�1#M3F��a3���Ce�S�4c(m 7cʚf�
�f�Xg3F����q��1��h�>]�;��_ٌ�/���o0l�ƙk3����7�_�����t���-}���F:�yұ����_�p��|�������r�"7ұ�,[���rz�xiP���k���S��yhm �yʚ8�
�8�Xg�G��q��&�Ck1�S�硳p�)g�<�6��<c�qY �yʚ8�
�8OY硵��)k�<�6��<c�qY �yʚ8�
�8OY硵��)k�<�6��<c�qY �yʚ8�
�8OY硵��)k�<�6��<c�qY �yʹ�yh��8O	G����q�����P�@����ur�������@��5qZ�q��&�Ck9�3��ur�������@��5qZ�q��&�Ck9�3��ur�������@��5qZ�q��&�Ck1�3��y�l�yJ9�<T��<�L���r�������@��u�yd]��)k�<�6��<eM���r�������@��u�yd]��)k�<�6��<eM���r�������@��u�yd]��)k�<�6��<eM���b���#�Cg�0�3��y�l�yʙ8�
�8OY硵��)k�<�6��<c�qY �yʚ8�
�8OY硵��)k�<�6��<c�qY �yʚ8�
�8OY硵��)k�<�6��<a��y`]��)k�<�6��<eM���b���#�Cg�8�3��tr�������@��5qZ�q��&�Ck9�3��ur�������@��5qZ�q��&�Ck9�3��ur�������@��5qZ�q��&�Ck9�3��ur�������@��t�y�,�yʙ8�
�8�Xg�G��q��&�Ck9�S��yhm �yʚ8�
�8�Xg�G��q��&�Ck9�S��yhm �yʚ8�
�8�Xg�G��q��&�Ck9�S��yhm �yʚ8�
�8�Xg�G��q���8���8O9硴��)k�<�6��<c�qY �yʚ8�
�8OY硵��)k�<�6��<a��y`]��)k�<�6��<eM���r�������@��u�yd]��)k�<�6��<eM���r�������@��4q9�q�R�8���8O9硴��)k�<�6��<c�qY �y�=����"#��t��8��"K��x'��x/��#�y��5�{q������{{���}�'��n����{}���r�����ᇺ���{ς�ӽ��//Y \ʚ��
ĂKIG����q���)�P�@.��u\d]�\p)k
 .�6�.eM���r���)���@.��u\d]�\p)k
@@ -1930,7 +1952,7 @@ L
 .�6�.c�Y \J:
 .t�.�L���r���)���@.��u\d]�\p)k
 .�6�.eM���r���)���@.���Zp�ur���)���@.��5Z�����Bk��2�Yp�ur���)���@.��5Z�����Bk��2�\�l\J9
-.T�.�L���r���)���@.��u\d]�\pwG��‹����E�������Q�d�}e���G�A��̬��~�m�a�Fkڞ��TY$�&����'�������b�i����]V�Y$uֹ����_���<s.��W��/��ۇ���������}�	�ǻ��~w���<|�Zp�/�{������w��z7�jb7��tc��A�Ɯ��1V{��1���16k�1g�n���nL���P�؍9uuc�� vcN]��=�ݘSW7�jb7��tc��A�Ɯ��1V{�1��n���n̩�c��Sj�1T� vcN]��=�ݘSW7�jb7��Ս�ڃ؍)5��c�1g~��X��ń�n�Ś�n̙�c��3���H��؍9uuc�� vcN]��=�ݘSW7�jb7��tc��A�Ɯ��1V{�1��n���n̩�c��Sj�1T� vcN]��=�ݘSW7�jb7��Ս�ڃԍ)tuch�uc�<ucL�vc�\��=�ݘSW7�jb7��tc��A�Ɯ��1V{�1��n���n̩�c��Sj�1T� vcN]��=�ݘSW7�jb7��Ս�ڃ؍)5��c�1��n���n̩�c��s�c��S��Ɛ�9�Ɯ��1F{�1��n���n̩�c��Sj�1T� vcN]��=�ݘSW7�jb7��Ս�ڃ؍)5��c�1��n���n̩�c��s���X�A�ƌ��1R� vcN]��=�ݘSW7�jR7��S7�f�a7��tc��A�Ɯ��1V{�1��n���n̩�c��Sj�1T� vcN]��=�ݘSW7�jb7��Ս�ڃ؍)5��c�1��n���n̩�c��s���X�A�Ɣ�n�1�ݘSW7�jR7��S7�f�a7��Ս1ڃ؍)5��c�1��n���n̩�c��s���X�A�Ɣ�n�1�ݘSW7�jb7��Ս�ڃ؍9uuc�� vcJM7���n̩�c��s���X�A�Ɯ��1V{�1��CuR7��S7�f�a7��Ս1ڃ؍9uuc�� vcJM7���n̩�c��s���X�A�Ɯ��1V{�1��n��9�ݘSW7�jb7��Ս�ڃ؍9uuc�� vcJM7���n̩�c��s���X�A�Ɯ��1V{��1��n͞�n̑�n�ɚ�n̙�c��s���X�A�Ɣ�n�1���N��9=t�"W�1x����_�����z�܍��n쏯y��߾������/��ñ�G��Ǝ��������_ɗǫ�X#x�Fo}=0z�!ڃuF��A�������H�	�P�A�������Ȩ;0"ur`��F�� FJM`�jr`��F�� FF݁�c�#�&0B�90Rj#T{�#�&0B�902��H�)��x9���W`�b�q`��F�� FB=F��A�������H�	�P�A�������Ȩ;0"ur`��F�� FJM`�jr`��F�� FF݁�c�#�&0B�90Rj#T{�#�&0B�102h#2{#E��ɚ��H�	��A�������Ȩ;0"ur`��F�� FJM`�jr`��F�� FF݁�c�#�&0B�90Rj#T{�#�&0B�902��H�)5��=ȁ�R�ڃ)tFh�F�L`Dd�q`��F�� FJM`�jr`��F�� FF݁�c�#�&0B�90Rj#T{�#�&0B�902��H�)5��=ȁ�R�ڃ)5��=ȁ�Pρ�s�#�&0B�90Rj#T{#���͚��Ș;0"tr`��F�� FJM`�jr`��F�� FF݁�c�#�&0B�90Rj#T{�#�&0B�902��H�)5��=ȁ�R�ڃ)5��=ȁ�Qw`D���H�	�P�A��#4k�#e&0B�902��H�)5��=ȁ�R�ڃ)5��=ȁ�Qw`D���H�	�P�A�������H�	�P�A���#R� FJM`�jr`��F�� FJM`�jr`d��:10R�
+.T�.�L���r���)���@.��u\d]�\pwG��‹����E�������Q�d�}e���G�A��̬��~�m�a�Fkڞ��TY$�&����'�������b�i����]V�Y$uֹ����_���<s.��W��/��ۇ���������}�	�ǻ��~w���<|�Zp�/�{������w��z7�jb7��tc��A�Ɯ��1V{��1���16k�1g�n���nL���P�؍9uuc�� vcN]��=�ݘSW7�jb7��tc��A�Ɯ��1V{�1��n���n̩�c��Sj�1T� vcN]��=�ݘSW7�jb7��Ս�ڃ؍)5��c�1g~��X��ń�n�Ś�n̙�c��3���H��؍9uuc�� vcN]��=�ݘSW7�jb7��tc��A�Ɯ��1V{�1��n���n̩�c��Sj�1T� vcN]��=�ݘSW7�jb7��Ս�ڃԍ)tuch�uc�<ucL�vc�\��=�ݘSW7�jb7��tc��A�Ɯ��1V{�1��n���n̩�c��Sj�1T� vcN]��=�ݘSW7�jb7��Ս�ڃ؍)5��c�1��n���n̩�c��s�c��S��Ɛ�9�Ɯ��1F{�1��n���n̩�c��Sj�1T� vcN]��=�ݘSW7�jb7��Ս�ڃ؍)5��c�1��n���n̩�c��s���X�A�ƌ��1R� vcN]��=�ݘSW7�jR7��S7�f�a7��tc��A�Ɯ��1V{�1��n���n̩�c��Sj�1T� vcN]��=�ݘSW7�jb7��Ս�ڃ؍)5��c�1��n���n̩�c��s���X�A�Ɣ�n�1�ݘSW7�jR7��S7�f�a7��Ս1ڃ؍)5��c�1��n���n̩�c��s���X�A�Ɣ�n�1�ݘSW7�jb7��Ս�ڃ؍9uuc�� vcJM7���n̩�c��s���X�A�Ɯ��1V{�1��CuR7��S7�f�a7��Ս1ڃ؍9uuc�� vcJM7���n̩�c��s���X�A�Ɯ��1V{�1��n��9�ݘSW7�jb7��Ս�ڃ؍9uuc�� vcJM7���n̩�c��s���X�A�Ɯ��1V{��1��n͞�n̑�n�ɚ�n̙�c��s���X�A�Ɣ�n�1���N��9=t�"/׺1x����_�����z�܍��n쏯y��߾������/��ñ�G��Ǝ��������_ɗǫ�X#x�Fo}=0z�!ڃuF��A�������H�	�P�A�������Ȩ;0"ur`��F�� FJM`�jr`��F�� FF݁�c�#�&0B�90Rj#T{�#�&0B�902��H�)��x9���W`�b�q`��F�� FB=F��A�������H�	�P�A�������Ȩ;0"ur`��F�� FJM`�jr`��F�� FF݁�c�#�&0B�90Rj#T{�#�&0B�102h#2{#E��ɚ��H�	��A�������Ȩ;0"ur`��F�� FJM`�jr`��F�� FF݁�c�#�&0B�90Rj#T{�#�&0B�902��H�)5��=ȁ�R�ڃ)tFh�F�L`Dd�q`��F�� FJM`�jr`��F�� FF݁�c�#�&0B�90Rj#T{�#�&0B�902��H�)5��=ȁ�R�ڃ)5��=ȁ�Pρ�s�#�&0B�90Rj#T{#���͚��Ș;0"tr`��F�� FJM`�jr`��F�� FF݁�c�#�&0B�90Rj#T{�#�&0B�902��H�)5��=ȁ�R�ڃ)5��=ȁ�Qw`D���H�	�P�A��#4k�#e&0B�902��H�)5��=ȁ�R�ڃ)5��=ȁ�Qw`D���H�	�P�A�������H�	�P�A���#R� FJM`�jr`��F�� FJM`�jr`d��:10R�
 �Ь9�������H�	�P�A���#R� FJM`�jr`��F�� FJM`�jr`$�s`���H�	�P�A�������H�	�P�A���#R� FJM`�jr`��F�� FJM`�jb`d�Fd�F�\��5ǁ�2!ڃ)5��=ȁ�Qw`D�����ዬ���E�F�_�����LJ�:��������p����~`��3	��V^�ϟ��������T�|���Ke�?��sp�����o_���������끂���7>�ǿ߾V���?�]�]��\/�޾@��A.�����H�)�P�A.�����Ȩ��"ur��@�� @JM�jr��@�� @F��c� ���B���Rj
  T{� ���B���2�.�H�T�)�T��x9��W�b�q��@�� @B=@��A.�����H�)�P�A.�����Ȩ��"ur��@�� @JM�jr��@�� @F��c� ���B���Rj
  T{� ���B���2h
@@ -1992,1452 +2014,1478 @@ V节Ѭ9
 �P�9���p��pK��p�9��Rn�ڃn)5��=��Rn�ڃnu�[��A���p��pK�	�P�A���p��p˨;�"ur��Ԅ[�� �[JM��jr��Ԅ[�� �[M�Ef�a���n!Ysn)3��=��Rn�ڃnu�[��A���p��pK�	�P�A���p��p˨;�"ur��Ԅ[�� �[JM��jr��Ԅ[�� �[F���c��-�&�B�9�Rj�-T{�-��p͚�pː	���9���p��pK�	�P�A���p��p˨;�"ur��Ԅ[�� �[JM��jr��Ԅ[�� �[F���c��-�&�B�9�Rj�-T{��-�&�B�9��9�ur��Ԅ[�� �[JM��jb���n�Ysns�[��A���p��pK�	�P�A���p��p˨;�"ur��Ԅ[�� �[JM��jr��Ԅ[�� �[F���c��-�&�B�9�Rj�-T{��-�&�B�9�2��H�n)5��=��BW��f�q��̄[�� �[F���c��-�&�B�9�Rj�-T{��-�&�B�9�2��H�n)5��=��Rn�ڃn)5��=��Qw�E��pK�	�P�A���p��pK�	�P�A����-R� �[
 ]��5��2n!ڃn)5��=��Qw�E��pK�	�P�A���p��pK�	�P�A��z�@��n)5��=��Rn�ڃn)5��=��Qw�E��pK�	�P�A���p��pK�	�P�A��p�̞�pK�+�B��8�Rf�-D{��-ʎD���q
 �.^��r5ܺ��;_�!��í�L­O+�������7���t�n��p���g��;��v[�Cj��Cj�{�Cjo_>��j�Ԕ���ڃ�!5����:�CjJM��jr����x�� �xJM��jr�g���:��Sjz<T{{<��͚�O����A��{<R� �xJM��jr����x�� �xJM��jr�g���:��Sjz<T{�{<���C���Sjz<T{�{<����1�=�R��ڃ��)5=�=�=�R��ڃ��u�x��A��y��P��O���C���Sfz<D{�{<��{<P� �xJM��jr����x�� �xJM��jr�g���:��Sjz<T{�{<���C���Sjz<T{�{<����1�=�R��ڃ��)5=�=�=�R��ڃ��4=�=�=�"W��d�q����x�� �xJM��jr�g���:��Sjz<T{�{<���C���Sjz<T{�{<����1�=�R��ڃ��)5=�=�=�R��ڃ��u�x��A����O���P�A���z<4k{<C��#���Sfz<D{�{<���C���Sjz<T{�{<����1�=�R��ڃ��)5=�=�=�R��ڃ��u�x��A����O���P�A����O���9�=�R��ڃ��)5=�=�=�BW��f�q�g���:��Sjz<T{�{<���C���Sjz<T{�{<����1�=�R��ڃ��)5=�=�=�R��ڃ��u�x��A����O���P�A����Ϩ��#ur����x�� �x
-]=�5�=�2��!ڃ��u�x��A����O���P�A����Ϩ��#ur����x�� �xJM��jr����x�� �xF�=�c�{<���C���Sjz<T{�{<���C���3���H���)t�xh��x�L��hr����x�� �xF�=�c�{<���C���Sjz<T{�{<���C�����ur����x�� �xJM��jr����x�� �xF�=�c�{<���C���Sjz<T{�{<���C���3hz<2{{<E�ɚ�O����A���d����8�x�=���8�e�������㟂���>�>=|�����ç�>ǿ{�x�������[����?�p��C���jo�endstream
+]=�5�=�2��!ڃ��u�x��A����O���P�A����Ϩ��#ur����x�� �xJM��jr����x�� �xF�=�c�{<���C���Sjz<T{�{<���C���3���H���)t�xh��x�L��hr����x�� �xF�=�c�{<���C���Sjz<T{�{<���C�����ur����x�� �xJM��jr����x�� �xF�=�c�{<���C���Sjz<T{�{<���C���3hz<2{{<E�ɚ�O����A���d����8�x�=���8�e�������㟂���>�>=|�����ç�>ǿ{�x�������[����?�p��C���&o�endstream
 endobj
-1210 0 obj <<
+1226 0 obj <<
 /Type /Page
-/Contents 1211 0 R
-/Resources 1209 0 R
+/Contents 1227 0 R
+/Resources 1225 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 1202 0 R
-/Annots [ 1213 0 R 1216 0 R 1217 0 R 1218 0 R 1219 0 R 1220 0 R 1221 0 R 1222 0 R 1223 0 R 1224 0 R 1225 0 R 1226 0 R 1227 0 R 1228 0 R 1229 0 R 1230 0 R 1231 0 R 1232 0 R 1233 0 R 1234 0 R 1235 0 R 1236 0 R 1237 0 R 1238 0 R 1239 0 R 1240 0 R 1241 0 R 1242 0 R 1243 0 R 1244 0 R 1245 0 R 1246 0 R 1247 0 R 1248 0 R 1249 0 R 1250 0 R 1251 0 R 1252 0 R 1253 0 R 1254 0 R 1255 0 R 1256 0 R 1257 0 R 1258 0 R 1259 0 R 1260 0 R 1261 0 R 1262 0 R 1263 0 R 1264 0 R 1265 0 R 1266 0 R 1267 0 R 1268 0 R 1269 0 R 1270 0 R 1271 0 R 1272 0 R 1273 0 R 1274 0 R 1275 0 R 1276 0 R 1277 0 R 1278 0 R 1279 0 R 1280 0 R 1281 0 R 1282 0 R 1283 0 R 1284 0 R 1285 0 R 1286 0 R 1287 0 R 1288 0 R 1289 0 R 1290 0 R 1291 0 R 1292 0 R 1293 0 R 1294 0 R 1295 0 R 1296 0 R 1297 0 R 1298 0 R 1299 0 R 1300 0 R 1301 0 R 1302 0 R 1303 0 R 1304 0 R ]
+/Parent 1218 0 R
+/Annots [ 1229 0 R 1232 0 R 1233 0 R 1234 0 R 1235 0 R 1236 0 R 1237 0 R 1238 0 R 1239 0 R 1240 0 R 1241 0 R 1242 0 R 1243 0 R 1244 0 R 1245 0 R 1246 0 R 1247 0 R 1248 0 R 1249 0 R 1250 0 R 1251 0 R 1252 0 R 1253 0 R 1254 0 R 1255 0 R 1256 0 R 1257 0 R 1258 0 R 1259 0 R 1260 0 R 1261 0 R 1262 0 R 1263 0 R 1264 0 R 1265 0 R 1266 0 R 1267 0 R 1268 0 R 1269 0 R 1270 0 R 1271 0 R 1272 0 R 1273 0 R 1274 0 R 1275 0 R 1276 0 R 1277 0 R 1278 0 R 1279 0 R 1280 0 R 1281 0 R 1282 0 R 1283 0 R 1284 0 R 1285 0 R 1286 0 R 1287 0 R 1288 0 R 1289 0 R 1290 0 R 1291 0 R 1292 0 R 1293 0 R 1294 0 R 1295 0 R 1296 0 R 1297 0 R 1298 0 R 1299 0 R 1300 0 R 1301 0 R 1302 0 R 1303 0 R 1304 0 R 1305 0 R 1306 0 R 1307 0 R 1308 0 R 1309 0 R 1310 0 R 1311 0 R 1312 0 R 1313 0 R 1314 0 R 1315 0 R 1316 0 R 1317 0 R 1318 0 R 1319 0 R 1320 0 R ]
 >> endobj
-1213 0 obj <<
+1229 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [71.731 679.836 158.096 686.82]
 /Subtype /Link
 /A << /S /GoTo /D (about) >>
 >> endobj
-1216 0 obj <<
+1232 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [533.001 679.836 537.983 686.82]
 /Subtype /Link
 /A << /S /GoTo /D (about) >>
 >> endobj
-1217 0 obj <<
+1233 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [95.641 662.456 203.466 671.367]
 /Subtype /Link
 /A << /S /GoTo /D (copyright) >>
 >> endobj
-1218 0 obj <<
+1234 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [533.001 662.456 537.983 671.367]
 /Subtype /Link
 /A << /S /GoTo /D (copyright) >>
 >> endobj
-1219 0 obj <<
+1235 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [95.641 651.562 156.791 658.416]
 /Subtype /Link
 /A << /S /GoTo /D (disclaimer) >>
 >> endobj
-1220 0 obj <<
+1236 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [533.001 651.562 537.983 658.416]
 /Subtype /Link
 /A << /S /GoTo /D (disclaimer) >>
 >> endobj
-1221 0 obj <<
+1237 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [95.641 638.61 168.438 645.465]
 /Subtype /Link
 /A << /S /GoTo /D (newversions) >>
 >> endobj
-1222 0 obj <<
+1238 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [533.001 638.61 537.983 645.465]
 /Subtype /Link
 /A << /S /GoTo /D (newversions) >>
 >> endobj
-1223 0 obj <<
+1239 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [95.641 625.659 141.858 632.513]
 /Subtype /Link
 /A << /S /GoTo /D (credits) >>
 >> endobj
-1224 0 obj <<
+1240 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [533.001 625.659 537.983 632.513]
 /Subtype /Link
 /A << /S /GoTo /D (credits) >>
 >> endobj
-1225 0 obj <<
+1241 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [95.641 612.708 206.894 619.562]
 /Subtype /Link
 /A << /S /GoTo /D (conventions) >>
 >> endobj
-1226 0 obj <<
+1242 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [533.001 612.708 537.983 619.562]
 /Subtype /Link
 /A << /S /GoTo /D (conventions) >>
 >> endobj
-1227 0 obj <<
+1243 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [71.731 595.442 159.481 604.329]
 /Subtype /Link
 /A << /S /GoTo /D (installing-bugzilla) >>
 >> endobj
-1228 0 obj <<
+1244 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [533.001 595.442 537.983 604.329]
 /Subtype /Link
 /A << /S /GoTo /D (installing-bugzilla) >>
 >> endobj
-1229 0 obj <<
+1245 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [95.641 582.023 157.907 588.877]
 /Subtype /Link
 /A << /S /GoTo /D (installation) >>
 >> endobj
-1230 0 obj <<
+1246 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [533.001 582.023 537.983 588.877]
 /Subtype /Link
 /A << /S /GoTo /D (installation) >>
 >> endobj
-1231 0 obj <<
+1247 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [119.552 569.071 160.508 575.925]
 /Subtype /Link
 /A << /S /GoTo /D (install-perl) >>
 >> endobj
-1232 0 obj <<
+1248 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [533.001 569.071 537.983 575.925]
 /Subtype /Link
 /A << /S /GoTo /D (install-perl) >>
 >> endobj
-1233 0 obj <<
+1249 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [119.552 554.062 211.686 562.974]
 /Subtype /Link
 /A << /S /GoTo /D (install-database) >>
 >> endobj
-1234 0 obj <<
+1250 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [533.001 554.062 537.983 562.974]
 /Subtype /Link
 /A << /S /GoTo /D (install-database) >>
 >> endobj
-1235 0 obj <<
+1251 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [143.462 541.111 208.498 550.022]
 /Subtype /Link
 /A << /S /GoTo /D (install-mysql) >>
 >> endobj
-1236 0 obj <<
+1252 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [533.001 541.111 537.983 550.022]
 /Subtype /Link
 /A << /S /GoTo /D (install-mysql) >>
 >> endobj
-1237 0 obj <<
+1253 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [143.462 528.16 224.547 537.071]
 /Subtype /Link
 /A << /S /GoTo /D (install-pg) >>
 >> endobj
-1238 0 obj <<
+1254 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [533.001 528.16 537.983 537.071]
 /Subtype /Link
 /A << /S /GoTo /D (install-pg) >>
 >> endobj
-1239 0 obj <<
+1255 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [119.552 517.265 190.814 524.12]
 /Subtype /Link
 /A << /S /GoTo /D (install-webserver) >>
 >> endobj
-1240 0 obj <<
+1256 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [533.001 517.265 537.983 524.12]
 /Subtype /Link
 /A << /S /GoTo /D (install-webserver) >>
 >> endobj
-1241 0 obj <<
+1257 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [119.552 502.257 178.221 511.168]
 /Subtype /Link
 /A << /S /GoTo /D (install-bzfiles) >>
 >> endobj
-1242 0 obj <<
+1258 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [533.001 502.257 537.983 511.168]
 /Subtype /Link
 /A << /S /GoTo /D (install-bzfiles) >>
 >> endobj
-1243 0 obj <<
+1259 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [119.552 491.363 197.867 498.217]
 /Subtype /Link
 /A << /S /GoTo /D (install-perlmodules) >>
 >> endobj
-1244 0 obj <<
+1260 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [533.001 491.363 537.983 498.217]
 /Subtype /Link
 /A << /S /GoTo /D (install-perlmodules) >>
 >> endobj
-1245 0 obj <<
+1261 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [143.462 476.354 226.769 485.265]
 /Subtype /Link
 /A << /S /GoTo /D (install-modules-dbd-mysql) >>
 >> endobj
-1246 0 obj <<
+1262 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [533.001 476.354 537.983 485.265]
 /Subtype /Link
 /A << /S /GoTo /D (install-modules-dbd-mysql) >>
 >> endobj
-1247 0 obj <<
+1263 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [143.462 463.402 270.365 472.314]
 /Subtype /Link
 /A << /S /GoTo /D (install-modules-template) >>
 >> endobj
-1248 0 obj <<
+1264 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [533.001 463.402 537.983 472.314]
 /Subtype /Link
 /A << /S /GoTo /D (install-modules-template) >>
 >> endobj
-1249 0 obj <<
+1265 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [143.462 450.825 216.787 459.362]
 /Subtype /Link
 /A << /S /GoTo /D (install-modules-gd) >>
 >> endobj
-1250 0 obj <<
+1266 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [533.001 450.825 537.983 459.362]
 /Subtype /Link
 /A << /S /GoTo /D (install-modules-gd) >>
 >> endobj
-1251 0 obj <<
+1267 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [143.462 437.873 244.462 446.411]
 /Subtype /Link
 /A << /S /GoTo /D (install-modules-chart-base) >>
 >> endobj
-1252 0 obj <<
+1268 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [533.001 437.873 537.983 446.411]
 /Subtype /Link
 /A << /S /GoTo /D (install-modules-chart-base) >>
 >> endobj
-1253 0 obj <<
+1269 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [143.462 424.548 244.024 433.46]
 /Subtype /Link
 /A << /S /GoTo /D (install-modules-gd-graph) >>
 >> endobj
-1254 0 obj <<
+1270 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [533.001 424.548 537.983 433.46]
 /Subtype /Link
 /A << /S /GoTo /D (install-modules-gd-graph) >>
 >> endobj
-1255 0 obj <<
+1271 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [143.462 411.597 236.543 420.508]
 /Subtype /Link
 /A << /S /GoTo /D (install-modules-gd-text) >>
 >> endobj
-1256 0 obj <<
+1272 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [533.001 411.597 537.983 420.508]
 /Subtype /Link
 /A << /S /GoTo /D (install-modules-gd-text) >>
 >> endobj
-1257 0 obj <<
+1273 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [143.462 398.645 247.113 407.557]
 /Subtype /Link
 /A << /S /GoTo /D (install-modules-xml-twig) >>
 >> endobj
-1258 0 obj <<
+1274 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [533.001 398.645 537.983 407.557]
 /Subtype /Link
 /A << /S /GoTo /D (install-modules-xml-twig) >>
 >> endobj
-1259 0 obj <<
+1275 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [143.462 385.694 245.907 394.605]
 /Subtype /Link
 /A << /S /GoTo /D (install-modules-soap-lite) >>
 >> endobj
-1260 0 obj <<
+1276 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [533.001 385.694 537.983 394.605]
 /Subtype /Link
 /A << /S /GoTo /D (install-modules-soap-lite) >>
 >> endobj
-1261 0 obj <<
+1277 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [143.462 373.116 255.093 381.654]
 /Subtype /Link
 /A << /S /GoTo /D (install-modules-patchreader) >>
 >> endobj
-1262 0 obj <<
+1278 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [533.001 373.116 537.983 381.654]
 /Subtype /Link
 /A << /S /GoTo /D (install-modules-patchreader) >>
 >> endobj
-1263 0 obj <<
+1279 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [119.552 359.791 256.338 368.702]
 /Subtype /Link
 /A << /S /GoTo /D (install-MTA) >>
 >> endobj
-1264 0 obj <<
+1280 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [533.001 359.791 537.983 368.702]
 /Subtype /Link
 /A << /S /GoTo /D (install-MTA) >>
 >> endobj
-1265 0 obj <<
+1281 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [119.552 346.84 271.48 355.751]
 /Subtype /Link
 /A << /S /GoTo /D (using-mod_perl-with-bugzilla) >>
 >> endobj
-1266 0 obj <<
+1282 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [533.001 346.84 537.983 355.751]
 /Subtype /Link
 /A << /S /GoTo /D (using-mod_perl-with-bugzilla) >>
 >> endobj
-1267 0 obj <<
+1283 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [95.641 333.888 168.428 342.8]
 /Subtype /Link
 /A << /S /GoTo /D (configuration) >>
 >> endobj
-1268 0 obj <<
+1284 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 333.888 537.983 342.8]
 /Subtype /Link
 /A << /S /GoTo /D (configuration) >>
 >> endobj
-1269 0 obj <<
+1285 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [119.552 320.937 188.732 329.848]
 /Subtype /Link
 /A << /S /GoTo /D (localconfig) >>
 >> endobj
-1270 0 obj <<
+1286 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 320.937 537.983 329.848]
 /Subtype /Link
 /A << /S /GoTo /D (localconfig) >>
 >> endobj
-1271 0 obj <<
+1287 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [119.552 310.043 209.314 316.897]
 /Subtype /Link
 /A << /S /GoTo /D (database-engine) >>
 >> endobj
-1272 0 obj <<
+1288 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 310.043 537.983 316.897]
 /Subtype /Link
 /A << /S /GoTo /D (database-engine) >>
 >> endobj
-1273 0 obj <<
+1289 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [143.462 295.034 282.639 303.945]
 /Subtype /Link
 /A << /S /GoTo /D (database-schema) >>
 >> endobj
-1274 0 obj <<
+1290 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 295.034 537.983 303.945]
 /Subtype /Link
 /A << /S /GoTo /D (database-schema) >>
 >> endobj
-1275 0 obj <<
+1291 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [143.462 282.082 208.498 290.994]
 /Subtype /Link
 /A << /S /GoTo /D (mysql) >>
 >> endobj
-1276 0 obj <<
+1292 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 282.082 537.983 290.994]
 /Subtype /Link
 /A << /S /GoTo /D (mysql) >>
 >> endobj
-1277 0 obj <<
+1293 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [143.462 269.131 224.547 278.042]
 /Subtype /Link
 /A << /S /GoTo /D (postgresql) >>
 >> endobj
-1278 0 obj <<
+1294 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 269.131 537.983 278.042]
 /Subtype /Link
 /A << /S /GoTo /D (postgresql) >>
 >> endobj
-1279 0 obj <<
+1295 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [119.552 256.18 198.963 265.091]
 /Subtype /Link
 /A << /S /GoTo /D (547) >>
 >> endobj
-1280 0 obj <<
+1296 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 256.18 537.983 265.091]
 /Subtype /Link
 /A << /S /GoTo /D (547) >>
 >> endobj
-1281 0 obj <<
+1297 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [119.552 245.285 189.15 252.14]
 /Subtype /Link
 /A << /S /GoTo /D (http) >>
 >> endobj
-1282 0 obj <<
+1298 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 245.285 537.983 252.14]
 /Subtype /Link
 /A << /S /GoTo /D (http) >>
 >> endobj
-1283 0 obj <<
+1299 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [143.462 230.277 266.599 239.188]
 /Subtype /Link
 /A << /S /GoTo /D (http-apache) >>
 >> endobj
-1284 0 obj <<
+1300 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 230.277 537.983 239.188]
 /Subtype /Link
 /A << /S /GoTo /D (http-apache) >>
 >> endobj
-1285 0 obj <<
+1301 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [143.462 219.383 334.932 226.237]
 /Subtype /Link
 /A << /S /GoTo /D (http-iis) >>
 >> endobj
-1286 0 obj <<
+1302 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 219.383 537.983 226.237]
 /Subtype /Link
 /A << /S /GoTo /D (http-iis) >>
 >> endobj
-1287 0 obj <<
+1303 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [119.552 204.374 178.221 213.285]
 /Subtype /Link
 /A << /S /GoTo /D (install-config-bugzilla) >>
 >> endobj
-1288 0 obj <<
+1304 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 204.374 537.983 213.285]
 /Subtype /Link
 /A << /S /GoTo /D (install-config-bugzilla) >>
 >> endobj
-1289 0 obj <<
+1305 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [95.641 191.422 250.898 200.334]
 /Subtype /Link
 /A << /S /GoTo /D (extraconfig) >>
 >> endobj
-1290 0 obj <<
+1306 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 191.422 537.983 200.334]
 /Subtype /Link
 /A << /S /GoTo /D (extraconfig) >>
 >> endobj
-1291 0 obj <<
+1307 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [119.552 178.471 192.328 187.382]
 /Subtype /Link
 /A << /S /GoTo /D (697) >>
 >> endobj
-1292 0 obj <<
+1308 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 178.471 537.983 187.382]
 /Subtype /Link
 /A << /S /GoTo /D (697) >>
 >> endobj
-1293 0 obj <<
+1309 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [119.552 165.52 222.605 174.431]
 /Subtype /Link
 /A << /S /GoTo /D (716) >>
 >> endobj
-1294 0 obj <<
+1310 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 165.52 537.983 174.431]
 /Subtype /Link
 /A << /S /GoTo /D (716) >>
 >> endobj
-1295 0 obj <<
+1311 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [119.552 152.568 219.726 161.48]
 /Subtype /Link
 /A << /S /GoTo /D (installation-whining-cron) >>
 >> endobj
-1296 0 obj <<
+1312 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 152.568 537.983 161.48]
 /Subtype /Link
 /A << /S /GoTo /D (installation-whining-cron) >>
 >> endobj
-1297 0 obj <<
+1313 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [119.552 139.617 179.327 148.528]
 /Subtype /Link
 /A << /S /GoTo /D (installation-whining) >>
 >> endobj
-1298 0 obj <<
+1314 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 139.617 537.983 148.528]
 /Subtype /Link
 /A << /S /GoTo /D (installation-whining) >>
 >> endobj
-1299 0 obj <<
+1315 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [119.552 128.723 197.409 135.577]
 /Subtype /Link
 /A << /S /GoTo /D (patch-viewer) >>
 >> endobj
-1300 0 obj <<
+1316 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 128.723 537.983 135.577]
 /Subtype /Link
 /A << /S /GoTo /D (patch-viewer) >>
 >> endobj
-1301 0 obj <<
+1317 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [119.552 115.651 243.247 122.625]
 /Subtype /Link
 /A << /S /GoTo /D (bzradius) >>
 >> endobj
-1302 0 obj <<
+1318 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 115.651 537.983 122.625]
 /Subtype /Link
 /A << /S /GoTo /D (bzradius) >>
 >> endobj
-1303 0 obj <<
+1319 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [119.552 102.7 231.78 109.674]
 /Subtype /Link
 /A << /S /GoTo /D (bzldap) >>
 >> endobj
-1304 0 obj <<
+1320 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 102.7 537.983 109.674]
 /Subtype /Link
 /A << /S /GoTo /D (bzldap) >>
 >> endobj
-1212 0 obj <<
-/D [1210 0 R /XYZ 71.731 729.265 null]
+1228 0 obj <<
+/D [1226 0 R /XYZ 71.731 729.265 null]
 >> endobj
 6 0 obj <<
-/D [1210 0 R /XYZ 244.332 703.236 null]
+/D [1226 0 R /XYZ 244.332 703.236 null]
 >> endobj
-1209 0 obj <<
-/Font << /F23 1201 0 R /F32 1215 0 R /F27 1208 0 R /F33 1306 0 R >>
+1225 0 obj <<
+/Font << /F23 1217 0 R /F32 1231 0 R /F27 1224 0 R /F33 1322 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-1354 0 obj <<
-/Length 56673     
+1370 0 obj <<
+/Length 56579     
 /Filter /FlateDecode
 >>
 stream
-xڔ�_�d�}e��O�'��tee�}�&46C�F��a�"z�C�4Аf��;��٧j�ʻr1� R�\+�I���^�{����?�o������>n��ӿ���7?��?����w�����?�������t�;���9<�/>s<>�τ�o�������������o���o��߾�Cy�?����N���w����|������O?m��o���O?|����������Ͽ��w�o�������_����/����?�������������?�?����8?����pww�͛ϻ�A�no�;�&/�����Co�x�?���x�x�\�n�^�6�����p���Y�.���p<Y���kw����YZ�g�X�c=
�R���+��]V>����Sn���q;��pc�۳W�
ܱ���/�x����;֧�͓�n�^�6����p�xr��,[���t�y�����+��X�_ý�n�^�6p�z�.�(�`ݞ�bm�e���k8I�x��p�z�n�u{����;���p�?�ƳW�
ܱ���kݞ�bm�E���������˳h]�;����ӳ�n�^�6p�z���Gkݞ�bm������(�_��,�e�����y��p�z��u{����;֗�2�����+��X����$�۳W�
�l=����VZdzl]�;���p�����+��X�_�ͽ�n�^�6p��xxz����+�^��n�'�c.ϲu�XoO���L��+��X��kݞ�bm����5��s��+�^�ޝ��;�g<���c=
'kݞ�bm����5�?5m�^qnGy�n����i/[����QZdzl]�;��wp#̍g�X�c�?�>�ou<{��������Z�g�Xx��ps�}�?�Ƴl]�;������3��bm����5�[���kw���N���^�6����5����,[����5�Z���kw���(̍g�X�c=
7��x������O7�㳴�gٺ�w���+���g�v������3��"m������h�۳W�
�l}>���x��p�z������kw����Z�g�X�c=
'�cn<{���������p�~��Y�����k8Z���kw����AZ�g�X�c}<�˿ϔg�Xx�z�9�<I�x��p�z{�|����+��X�7ֺ={�����k�����+�^�ޞ����Qv6nGy����W���Q����Q:�g�H�c=������-���]������o��3�\8��������f��8��ӯ+���3�:w���p���ۋh<�G�)��R�����|���c�w���??����?��/?���~w��û�x�׏�~ʿ��_��p����ӻ�����p�͛O���Ͽ]��U?���Ǘ?��ez������97����A.X�g�Xx�z�9���I�G�ٸ���{B����e�v��/�Ϳ�ع={E����8�J���k/[��_����gٺ�w��o�x����+��X�_�͝�n�^�6p��t�
��n�^�6pgausxx���ϲu�XO����x����;�mr�c�����Ydž��
�
��fÆ��6g6�67l�:6llm m؜t۰��p�aSʱaCe�p��c�����Ydž��
�
���
[�6e͆
�7l�:6llm n؜ul���@ܰ9�ذ����aS�l�к�q��c�����Ydž��
�
���
[�6c�6��@ܰ9�ذ����asֱacki��ۆ����
�rfÆ��6g6�67l�:6llm n؜ul���@ܰ)k6lh]��asֱackq��c�����Ydž��
�
��fÆ��6g6�67l�:6llm n؜ul���@ܰ)k6lh]��asֱacki��ۆ����
�s�
K�6e͆
�7l�:6llm n؜ul���@ܰ9�ذ����aS�l�к�q��c�����Ydž��
�
���
[�6e͆
�7l�:6llm n؜ul���@ܰ9�ذ����aS�l�к�i��ۆ����
�s�
K�6g6�67lʚ
Z n؜ul���@ܰ9�ذ����asֱackq�f�s�F��6g6�67l�:6llm n؜ul���@ܰ)k6lh]��asֱackq��c�����Ydž��
�
���
:G6��6l�,n؜sl�X�@ܰ���l��s|}�&c�6�ˆ����_���q�6�6l�c���������O�����O���wo�h_�/������_>���Qܞ��O߼����=��w~1oO���?�Ç�Co?����x:<��_� �۳W�
�l�;n��u<���c=�_�$��۳W�
ܱ>n�u{����;֧��Ó�n�^�6����5��I�Xdzl]�;���pg�۳W�
ܱ���;)���g�v����t����+�^�>���[iϲu�X����GY�g�X�c=7ֺ={������'�IZ�g�Xx��xs�A*�<�e�ܱ�w�ֺ={������y�cn<{�����k��?�ƳW�
�l}:
w�:�e�ܱ�����17��bm����5��s��+��X�_��Z�g�Xx��|�n䏹�,[����5H�˓W�oa;��Ó�����c�v�O�ӓ�7��"m�����������ɳh]�;����`�۳W�
ܱ������n�^�6pǺUNκ={�������k8I�x��p�z�n�u{����;���p|����+��X�_Í�n�^�6p'�9<>�py��p�z:�:H���kw��jS�drhm grʚL�
�L�H�ɑ�q��)���PY8��3�Jș��&�Ck9�3֙ɑur&������@��5�Zș��&�Ck9�3֙ɑur&������@��5�Zș��&�Ck9�3֙ɑur&������@��5�Z�����L���L�(�ɑ�q��)g29�6�39eM&��r&������@��ufrd]���)k29�6�39eM&��r&������@��ufrd]���)k29�6�39eM&��r&������@���5��
-�LNY�ɡ����)k29�639%�:Ǚ�q�L���39eM&��r&������@��5�Zș���L���39eM&��r&������@��5�Zș���L���39eM&��r&������@��5�Zș���L���39eM&��b&��#�Cg�8�S�dr(m gr�:39�.@��5�Zș��&�Ck9�S�drhm gr�:39�.@��5�Zș��&�Ck9�S�drhm gr�:39�.@��5�Zș��&�Ck9�S�drhm gr�:39�.@��tdr�,grʙL�
�LNY�ɡ�������Ⱥ�9�S�drhm grʚL�
�LNY�ɡ����	�k&�ș��&�Ck9�S�drhm grʚL�
�L�Xg&G�ș��&�Ck9�S�drhm grʚL�
�L�H�ɑ�q��)���PY8��3�Jș�~٥29�[&��J�����?��wǧ���5�z?����z�Dχ��狟(噄rǜ{���_>�������_�ݽ�m���w������6��tx���p�T�����^w�p8^��y��~�>�:?���}�A.X�g�X�S�Ǔ��gٺ�w����흴n�^�6p�:EeM��r�i��@n�u6�d]��<*k�G�6��GeM��r�i��@n�u6�d]��<*k�G�6�G%�#:�ͣr�yDi�y4��<�ur�i��@n�5�#Z�ͣ��yDk�y4��<�ur�i��@n�5�#Z�ͣ��yDk�y4��<�ur�i��@n�5�#Z�ͣ��yDk�y4��<�uR�[�Ʒ0l�p4�h,7�ʙ��
��QX_�G��@n�5�#Z�ͣ��yDk�yT�4�hm 7��:�G�.@n�5�#Z�ͣ��yDk�yT�4�hm 7��:�G�.@n�5�#Z�ͣ��yDk�yT�4�hm 6�F�摜���Q)G���q�iQ�@n�5�#Z�ͣ��摬��GeM��r�i��@n�5�#Z�ͣ��摬��GeM��r�i��@n�5�#Z�ͣ��摬��GeM��r�i��@l�t4��,6�F�摔���Q9�<����<*k�G�6��GeM��r�h��y$���QY�<����<*k�G�6��GeM��r�h��y$���QY�<����<*k�G�6��GeM��r�(���#XW 7�ʚ��
��QY�<����<*�h�Y8n�s6�$]��<*k�G�6��GeM��r�i��@n�u6�d]��<*k�G�6��GeM��r�i��@n�u6�d]��<*k�G�6��GeM��r�i��@n�u6�d]��<*k�G�6�G%�#:�ͣr�yDi�y4��<�ur�i��@n�5�#Z�ͣ��yDk�y4��<�ur�i��@n�5�#Z�ͣ��yDk�y4��<�ur�i��@n�5�#Z�ͣ��yDk�y4��<�ub󨤣yDg�yT�4�(m 7�ʚ��
���Xg�H��ͣ��yDk�yT�4�hm 7�ʚ��
��QX_�G��@n�5�#Z�ͣ��yDk�yT�4�hm 7��:�G�.@n�5�#Z�ͣ��yDk�yT�4�hm 6�F�摜���Q)G���q�iQ�@n��=�<��ؚǷ��~��9�?=ߝ?�_
x��s���s���pz��<����k��qd������_~~�����U��W��q7u<����U
-|�<��s.%�?����kw���T�d�hm g�ʚ��
��Xg�I��Y��&�Dk9�T�d�hm g�ʚ��
��Xg�I��Y��&�Dk9�T�d�hm g�ʚ��
��Xg�I��Y��&�Dk1�Tґu��p�u*g�N�6��Nc�Y'Y g�ʚ��
�SY�u����u*k�N�6��Nc�Y'Y g�ʚ��
�SY�u����u*k�N�6��Nc�Y'Y g�ʚ��
�SY�u����u*k�N�6��Nc�Y'Y e�ʹe�h|ìS	G։��q֩��:Q�@�:��5��
-�SY�u����u*k�N�6��NeM։�r�i�3�$��SY�u����u*k�N�6��NeM։�r�i�3�$��SY�u����u*k�N�6��NeM։�b�i��:��8�:�rd��,g�ʙ��
�SY�u����u��:ɺ�9�T�d�hm g�ʚ��
�SY�u����u��:ɺ�9�T�d�hm g�ʚ��
�SY�u����u��:ɺ�9�T�d�hm g�ʚ��
ĬSIG։��a�i��:I�8�:�3Y'J�Y��&�Dk9�T�d�hm g��:�N�.@�:�5Y'Z�Y��&�Dk9�T�d�hm g��:�N�.@�:�5Y'Z�Y��&�Dk9�T�d�hm g����u�ur֩��:��@�:�5Y'Z�Y��������8g�I��Y��&�Dk9�T�d�hm g�ʚ��
��Xg�I��Y��&�Dk9�T�d�hm g�ʚ��
��Xg�I��Y��&�Dk9�T�d�hm g�ʚ��
��Xg�I��Y��&�Dk1�Tґu��p�u*g�N�6��Nc�Y'Y g�ʚ��
�SY�u����u*k�N�6��Nc�Y'Y g�ʚ��
�SY�u����u*k�N�6��Nc�Y'Y g�ʚ��
�SY�u����u*k�N�6��Nc�Y'Y f�J:�Nt��N�L։�r֩��:��@�:�uf�d]��u*k�N�6��NeM։�r֩��:��@�:��5��
-�SY�u����u*k�N�6��NeM։�r�i�3�$��SY�u����u*k�N�6��NeM։�b�i��:��8�:�rd��,g�ʙ��
䬓�D�u��زη
�~ֹ�9�ʬs�N�u�g^���Û�s{�����ï�?��i�>/E
-/#�W����{�n>���|��n���n�
�nAY�-����-(k��6��c��Y wʚn�
�nAY�-����-(k��6��c��Y uʹuh|�nA	G����q����P�@����[��
-�nAY�-����-(k��6��eM���r�`��[ ��nAY�-����-(k��6��eM���r�`��[ ��nAY�-����-(k��6��eM���b�`����8��rt�,wʙn�
�nAY�-����-��Ⱥ��[P�thm wʚn�
�nAY�-����-��Ⱥ��[P�thm wʚn�
�nAY�-����-��Ⱥ��[P�thm wʚn�
�nAIG����a�`��H�8��3�J�݂��[@k�[P�thm w�:��.@��5�Z�݂��[@k�[P�thm w�:��.@��5�Z�݂��[@k�[P�thm w���-�ur������@��5�Z�݂��n���n�8g�@��݂��[@k�[P�thm wʚn�
�n�Xg�@��݂��[@k�[P�thm wʚn�
�n�Xg�@��݂��[@k�[P�thm wʚn�
�n�Xg�@��݂��[@k�[P��-��p�-(g��6��c��Y wʚn�
�nAY�-����-(k��6��c��Y wʚn�
�nAY�-����-(k��6��c��Y wʚn�
�nAY�-����-(k��6��c��Y vJ:�t���L���r������@��uvd]��-(k��6��eM���r������@����[��
-�nAY�-����-(k��6��eM���r�`��[ ��nAY�-����-(k��6��eM���b�`����8��rt�,wʙn�
�n����[�ϱuo#��na�s,���n�ts�Ip���x�[8�n�?|��������>��n���o����Ͼ|w������I�
�����e&�������L�/�������o�����폝�;���<v2�9v"�䱓�f����IY3vBky줬;���<v2�9v"�䱓�f����IY3vBky줬;���<v2�9v"�䱓�f����IY3vBkq줤c������(3v"e�x줜;���<vR֌���@;)k�Nhm ���u��Ⱥ�y줬;���<vR֌���@;)k�Nhm ���u��Ⱥ�y줬;���<vR֌���@;)k�Nhm ����u���c'e��	�
䱓�f����II��	��㱓qαI ���5c'�6��Nʚ�Z�c'e��	�
䱓�αY ���5c'�6��Nʚ�Z�c'e��	�
䱓�αY ���5c'�6��Nʚ�Z�c'e��	�
䱓�αY ���5c'�6�NJ:�N�,���3c'�6��N�:�Nd]�<vR֌���@;)k�Nhm ���5c'�6��N�:�Nd]�<vR֌���@;)k�Nhm ���5c'�6��N�:�Nd]�<vR֌���@;)k�Nhm ���5c'�6��N�:�Nd]�8vR�1vBg�x줜;���<vR֌���@;�;�u��IY3vBky줬;���<vR֌���@;	���	�+��Nʚ�Z�c'e��	�
䱓�f�����X�؉���Nʚ�Z�c'e��	�
䱓�f�����H3v"g�p줔c�����I93vBiy�D�1v�ϱ���.�N�c����Wi=�;����N�ױ��;���/����Oc���1|���������Z����x�1�����ۻ���p��9��Co?��c�O�o���`ݞ�bm�Υ�q:�X�-Z�.@�E���E���-Ze�-Z�6�o�*knѢ��|��X�-Z�.@�E���E���-Ze�-Z�6�o�*knѢ��|��X�-Z�.@�E���-Z4���-Z%�h�X8�E���E���-Za}�E�ȷh�5�h��@�E���E���-Ze�-Z�6�o��EK�ȷh�5�h��@�E���E���-Ze�-Z�6�o��EK�ȷh�5�h��@�E���E���-Ze�-Z�6o�inђ�qx�V)�-ZT�o�*g��6��eM���r�a�3� ��<CY�g����g(k��6��eM���r�a�3� ��<CY�g����g(k��6��eM���r�a�3� ��<CY�g����g(k��6�%y:�y�Q&� e�8�P��(m �ʚ<�
�<CY�g����g��3Ⱥ�9�P��hm �ʚ<�
�<CY�g����g��3Ⱥ�9�P��hm �ʚ<�
�<CY�g����g�k���y��&�@k9�P��hm �J:�t���yI �ʚ<�
�<CY�g����g(k��6��c�yY �ʚ<�
�<CY�g����g(k��6��c�yY �ʚ<�
�<CY�g����g(k��6��c�yY �ʚ<�
�<CIG����q����3P�@�3�u�d]��g(k��6��eM���r����3��@�3�u�d]��g(k��6��eM���r����3��@�3�u�d]��g(k��6��eM���r����3��@�3�u�d]��g(��3�Y8�3�3yJ�y��&�@k9�0֙g�ur����3��@�3�5yZ�y��&�@k9���<�+��eM���r����3��@�3�5yZ�y���<����eM���r����3��@�3�5yZ�y��&� g�0�Pʑg��p�g(g��6��j
-D���c�3޶�y����+o���O��g�g^���g|�q���?|���
-�t�׾�M�W��a�����^�qz8��>gz�9�ρOO����K�u{������w���󃳎gٺ�w�ۥbgݞ�bm����p�h�۳W�
ܱ>�_����۳W�
�l�?
���:�e�ܱ���;kݞ�bm����5�I��G�8��</NV���+��[���VZdzl]�;��wp�����+��X_
-6kݞ�bm 'qʚ$�
�$�XgG��I��&�Ck9�S�$qhm 'qʚ$�
�$�XgG��I��&�Ck9�S�$qhm 'qʚ$�
�$�XgG�HI�rnI��0�S‘ġ�p��)g�8�6��8a}M���9�S�$qhm 'qʚ$�
�$NY�ġ�����L�Ⱥ�9�S�$qhm 'qʚ$�
�$NY�ġ�����L�Ⱥ�9�S�$qhm 'qʚ$�
�$NY�ġ����i�8r6�8�I*�I�r&�Ci9�S�$qhm 'q�:�8�.@N�5IZ�I��&�Ck9�S�$qhm 'q�:�8�.@N�5IZ�I��&�Ck9�S�$qhm 'q�:�8�.@N�5IZ�I��&�Ck1�Sґġ�p��e�8R6��8�L��r��I���@N�5IZ�I���$����8eM��r��I���@N�5IZ�I���$����8eM��r��I���@N�5IZ�I���&q`]���)k�8�6��8eM��b��#�Cg�8�3Ιđtr��I���@N�5IZ�I��&�Ck9�3֙đur��I���@N�5IZ�I��&�Ck9�3֙đur��I���@N�5IZ�I��&�Ck9�3֙đur��I���@L�t$q�,'qʙ$�
�$�XgG��I��&�Ck9�S�$qhm 'qʚ$�
�$�XgG��I��&�Ck9�S�$qhm 'qʚ$�
�$�XgG��I��&�Ck9�S�$qhm 'qʚ$�
�$�XgG��I���$���$N9�ġ����)k�8�6��8c�IY 'qʚ$�
�$NY�ġ����)k�8�6��8a}M���9�S�$qhm 'qʚ$�
�$NY�ġ�����L�Ⱥ�9�S�$qhm 'qʚ$�
�$NY�ġ����i�8r6�8�I*�I�r&�Ci9��/�T��cK���g�I�������t�;]yc����o��'�>��u��č��L�������?m��?�a���u����_?�����}���z�������ڧ���﾿���y{�u��A�[dzl]�;�����Z�g�X�c}8�>�I���kw�����Igݞ�bm�����k�s�<���c=
�iݞ�bm����5��Uκ={�����k8Z���k/[�����Ydzl]�;���wv�Һ={�������vֺ={��������}�p��������I�ϲt�X�����n�^�6p�z����d���kw��o��$�۳W�
ܩ��_�IZdzl]�;���p{'�۳W�
ܱn�������
Ğ�YG���bϯ���Ѻ���w��󳵁��;�����@���u��lm ��ʚ��{~g=?[H=��n=?;�=�s����
Ğ_Y��ub�ﬣ�gk��w��󳵁��;�����@���5=?Z ���:z~�6{~g=?[�=������
Ğ_Y��ub�ﬣ�gk��w��󳵁��;�����@���5=?Z ������g�[��N���l,���9z~�6{~c�=?YW ���:z~�6{~g=?[�=������
Ğ_Y��ub�ﬣ�gk��w��󳵁��;�����@���5=?Z ���:z~�6{~g=?[�=������
��_IGϏ��Q��[����a��gi��w��󳵁��+kz~�.@���u��lm ���:z~�6{~g=?[�=����G�Ğ�YG���b�ﬣ�gk��w��󳵁��+kz~�.@���u��lm ���:z~�6�z~'�z~v�z~�=?*�=�s����
Ğ�YG���b�ﬣ�gk��W���h]���;�����@���u��lm ���:z~�6{~eMϏ��=������
Ğ�YG���b�ﬣ�gk��7���ub�ﬣ�gk��w��󳵁��;���p��+gz~�.@���u��lm ���:z~�6{~g=?[�=����G�Ğ�YG���b�ﬣ�gk��w��󳵁��+kz~�.@���u��lm ���:z~�6{~g=?[�=����G�Ğ�YG���R��[����a��gi��W���h]���;�����@���u��lm ���:z~�6{~eMϏ��=������
Ğ�YG���b�ﬣ�gk��W���h]���;�����@���u��lm ���:z~�6{~eMϏ�H=��n=?;�=�s����
Ğ�YG���bϯ���Ѻ���w��󳵁��;�����@���u��lm ���:{~��@���u��lm ���:z~�6{~g=?[�=����G�Ğ�YG���b�ﬣ�gk��w��󳵁��+�����8���r��YY8���s��,m ������?��g*�����s�u��=�'����g|�m�y���o^q{�Ŷ���7�_���ο�;ﵝ�,|��ʾ�p������,Z�����T���T�8g*K�ȩ��&�Ek9�U֤�hm ��ʚT�
�T�Xg*K�ȩ��&�Ek9�U֤�hm ��ʚT�
�T�Xg*K�ȩ��&�Ek9�U֤�hm ��ʚT�
�T�Xg*K�ȩ��&�Ek1�Uґʢ�p��*gRY�6�SYc��,Y ��ʚT�
�TVY�ʢ����*kRY�6�SYc��,Y ��ʚT�
�TVY�ʢ����*kRY�6�SYc��,Y ��ʚT�
�TVY�ʢ����*kRY�6�SYc��,Y ��ʹ��h|�TV	G*���q*��IeQ�@Ne��5��
-�TVY�ʢ����*kRY�6�SYeM*��r*k�3�%��TVY�ʢ����*kRY�6�SYeM*��r*k�3�%��TVY�ʢ����*kRY�6�SYeM*��b*k�Ie��8Le�r���,��ʙT�
�TVY�ʢ�����Leɺ�9�U֤�hm ��ʚT�
�TVY�ʢ�����Leɺ�9�U֤�hm ��ʚT�
�TVY�ʢ�����Leɺ�9�U֤�hm ��ʚT�
�TVIG*���a*k�IeI�8Ne�3�,Jȩ��&�Ek9�U֤�hm ���:SY�.@Ne�5�,Zȩ��&�Ek9�U֤�hm ���:SY�.@Ne�5�,Zȩ��&�Ek9�U֤�hm �����ʂur*��Ie��@Ne�5�,Z�����T���T�8g*K�ȩ��&�Ek9�U֤�hm ��ʚT�
�T�Xg*K�ȩ��&�Ek9�U֤�hm ��ʚT�
�T�Xg*K�ȩ��&�Ek9�U֤�hm ��ʚT�
�T�Xg*K�ȩ��&�Ek1�Uґʢ�p��*gRY�6�SYc��,Y ��ʚT�
�TVY�ʢ����*kRY�6�SYc��,Y ��ʚT�
�TVY�ʢ����*kRY�6�SYc��,Y ��ʚT�
�TVY�ʢ����*kRY�6�SYc��,Y ��J:RYt�SY�L*��r*��Ie��@Ne�u��d]���*kRY�6�SYeM*��r*��Ie��@Ne��5��
-�TVY�ʢ����*kRY�6�SYeM*��r*k�3�%��TVY�ʢ����*kRY�6�SYeM*��b*k�Ie��8Le�r���,��ʙT�
�T��O�����Rٷ]�~*��9�T�x%�=�&����"Le�3��l^~��>��/?���ï�?�_����~�y���}w���<���}i�����7��Bj{w���~�:�ݜ:���۟:�� 0uBky�d�s�D��S'e��	�
䩓�f����IY3uBky�d�s�D��S'e��	�
䩓�f����IY3uBky�d�s�D��S'e��	�
䩓�f����II��	��é�Qf�D����I93uBiy꤬�:���<uR�L���@�:�:�u��IY3uBky꤬�:���<uR�L���@�:�:�u��IY3uBky꤬�:���<uR�L���@�:	���	�+��Nʚ�Z�S'e��	�
ĩ����:�S'�S'�.@�:)k�Nhm O��5S'�6��Nʚ�Z�S'c�S'�.@�:)k�Nhm O��5S'�6��Nʚ�Z�S'c�S'�.@�:)k�Nhm O��5S'�6��Nʚ�Z�S'c�S'�.@�:)k�Nhm N��tL��Y8�:)g�N(m O��uN�Ⱥ�y꤬�:���<uR�L���@�:)k�Nhm O��uN�Ⱥ�y꤬�:���<uR�L���@�:)k�Nhm O��uN�Ⱥ�y꤬�:���<uR�L���@�:)k�Nhm O��uN�Ⱥ�qꤤc�����I93uBiy꤬�:���<u2�9u"�䩓�f����IY3uBky꤬�:���<u�שXW O��5S'�6��Nʚ�Z�S'e��	�
䩓�ΩY O��5S'�6��Nʚ�Z�S'e��	�
ĩ��f�D����I)��	��㩓rf���ԉ�7bꄟc�:���O��?��wǧ�������|�7��':�����1.N��Cy&S��:}�����>�����wǛo?l���ǥK�O/u��[?���川��3��q��7w����g�ɺ��̺���:Z�g֕5g���@>���9����uc�g�ɺ��̺���:Z�g֕5g���@>���9����uc�g�ɺ��̺���:Z�g֕t�YGg��̺r��:J�g֍u�Y'��3�ʚ3�hm �YW֜YGk�̺���:Z�g֍u�Y'��3�ʚ3�hm �YW֜YGk�̺���:Z�g֍u�Y'��3�ʚ3�hm �YW֜YGk�̺���:Z�g֍u�Y'��3�ʹ�YG�[�YW�qf���3�ʙ3�(m �Y��3�`]�|f]Ysf�
�3�ʚ3�hm �YW֜YGk�̺��3�d]�|f]Ysf�
�3�ʚ3�hm �YW֜YGk�̺��3�d]�|f]Ysf�
�3�ʚ3�hm �YW֜YGk�̺���:9�g֕r�YGe��̺r�=Di�=Tִ�hm ���:�C�.@n�5�!Z�����=Dk�=Tִ�hm ���:�C�.@n�5�!Z�����=Dk�=Tִ�hm ���:�C�.@n�5�!Z�����=Dk�=T����p�e�CR6��C�L{��r{��i��@n�5�!Z����������CeM{��r{��i��@n�5�!Z����������CeM{��r{��i��@n�5�!Z�������`]��*k�C�6��CeM{��b{���=Dg�=4���tr{��i��@n�5�!Z�����=Dk�=4���ur{��i��@n�5�!Z�����=Dk�=4���ur{��i��@n�5�!Z�����=Dk�=4���ur{��i��@l�t���,��ʙ��
���Xg{H������=Dk�=Tִ�hm ��ʚ��
���Xg{H������=Dk�=Tִ�hm ��ʚ��
���Xg{H������=Dk�=Tִ�hm ��ʚ��
���Xg{H�����������P9�����*k�C�6��Cc��!Y ��ʚ��
��PY�����*k�C�6��Ca}m���=Tִ�hm ��ʚ��
��PY������lɺ��=Tִ�hm ��ʚ��
��PY�����i�Cr6�C��!*���r�=Di�=�o�T{��ck߆~w��������N/���ߊ���������-��������3yd+Fw���������������O������?>n���}���?��×���;~;�����/~}����^�k�׏�>K�|��S��I*�7$����J����
-���+eM���r����p��@�p�5Z����
-���+eM���r����p��@�p�5Z����
-���+eM���r����p��@�p�5Z����
-���*��*4��a�����Ac��Q�T8(m W8��Z�ur����p��@�p�5Z�����Ak��1�Y�ur����p��@�p�5Z�����Ak��1�Y�ur����p��@�p�5Z�����Ak��1�T8�lV8J9*T�+�L���r����p��@�p�uV8d]�\�(k*�6�+eM���r����p��@�p�uV8d]�\�(k*�6�+eM���r����p��@�p�uV8d]�\�(k*�6�+eM���b�����Ag��1�T8�lW8ʙ
+xڔ�_�d�}]��O��	�9����Q��3��d�H�8b4�&;��4��O?Y}�>Y�Tݕ��/���$�hp��=~ws��������n������_���?�������㉻�����������;>�΀ooϷ�w�9��g�7O�����C����_����wχ��w��o��<������o����o�o��݇/������׿|����O_?l��?�p��������O_��o���럶?����ؗ����������oǿ�?��������_����'>�����{�y��������s��oxx�oz��=�� O����{����k߷>�u<���c=�'kݞ�bm����5�>K���kw���VJ�=z�Y��������ۣ�l܎���X���iw����g��;��bm����p�d�۳W�
|��ts�<9�x��p�z:�<�I���kw����Z�g�X�c=
��R��u{�����[��_�IZdzl]�;���p� �۳W�
ܱ�����5n<{�����k�����+��k���9�=�_��,ZW�������,�۳W�
ܱ��"��Z�g�X�c}<<?J�G�8���x��/�y��p�z��u{����;֗�2�����+��X����$�۳W�
|�z�-�ݭ��gٺ�w���x'�۳W�
ܱ����{iݞ�bm������l�۳W�
|�z�9���/sy��p�z{xz�f�^�6p�z8=X���kw���^�27��bm��ֻ��p'�ϲu�X�_��Z�g�X�c=
�OMۣW���Q���[��x�����[����QZdzl]�;��wp#��^�6p�z�}���x����;���㓵n�^�6�}�����Q�27�e�ܱ��/8��+��X�_ý�n�^�6p�z���/s��+��o}<
'��x��p�z�n�u{����;���p��̍g�X�c=
7����k߷>����:�e�ܱ���ۣW���Q��O����iw����Gkݞ�bm�����w� �ϲu�X��½�g<{�����k�����+��X�_�I�27��bm������p�~�ɳh]�;���p����+��X�_�̓�n�^�6p��x���)�^�6�}���p�$��Y�.������IZ�g�X�c�?�<X���kw����YZ�g�X�����5���l���q;��wp'����,܎����ҹ={E��������-��o�������>���n<S˅��qz<<��۬�����c��o�޾���W����?>����|����mJq7���/_?����������??���O�?����?��O��p��Û�x�׏�����O�~���o����7�������W�r��Ͽ]��Y?���Ǘ?�Џ2��a���y��������� �X�g�X���ts�m��n���q;�����R���+���(�_�����s{����;��p�����+��o�;��:�e�ܱ����IZ�g�X�c=
7wҺ={������7�ֺ={���������I��f<���c=��O��+��X�ə��
[�6g6�67lʚ
Z n؜ul���@ܰ9�ذ����as�m����цM)dž
���
�s�
K�6g6�67l�:6llm nؔ56�.@ܰ9�ذ����asֱackq��c����MY�aC��
���
[�6g6�67l�:6llm n،un�Ⱥq��c�����Ydž��
�
��n6v7lʙ
J n؜ul���@ܰ9�ذ����asֱackqæ�ٰ�u��Ydž��
�
���
[�6g6�67lʚ
Z n؜ul���@ܰ9�ذ����asֱackqæ�ٰ�u��Ydž��
�
��n6v7l�96l,m nؔ56�.@ܰ9�ذ����asֱackq��c����MY�aC��
���
[�6g6�67l�:6llm nؔ56�.@ܰ9�ذ����asֱackq��c����MY�aC��
��n6v7l�96l,m n؜ul���@ܰ)k6lh]��asֱackq��c�����Ydž��
�
���
YW n؜ul���@ܰ9�ذ����asֱackqæ�ٰ�u��Ydž��
�
���
[�6g6�6�6lJ:6l�lm؜r۰��p�asαaciq�k*�a���홚��n��s,�#o��-sww�
�xd۰ݏ
��ݏ���?|�盛�?l���{�E�����������Gq{�;�>}�J�v��t���ɼ==����>��􇷟���ps��yǺ={�����w���󃳎gٺ�w����˟��u{����;և�ͣ�n�^�6p��t�x����+��o�?
/�6��,[����5�Y���kw���NJ�=z�Y���;8�s{�����[������gٺ�w����e���۳W�
ܱ���kݞ�bm�����+�IZ�g�X��������O�x��p�z:�=Z���kw�����/s��+��X�_ý�en<{�����O��NZdzl]�;���p��̍g�X�c=
����kw���h�۳W�
|��|�n�/s�Y�.���k�Η'�_�v|��'�����c�v�O�ӓ�n<{E����S77��G�KM�E�
+ܱ��kݞ�bm����-ܟ�u{����;֭rr���+��o=������gٺ�w����^Z�g�X�c=
�iݞ�bm����5�X���kw"�����.ϲu�XO��Һ={����ڔ5�Zș��&�Ck1�3�dr�lfrJ929T�39�L&��r&������@��ufrd]���)k29�6�39eM&��r&������@��ufrd]���)k29�6�39eM&��r&������@��ufrd]���)k29�6�39eM&��b&��#�Cg�0�3�dr�lgrʙL�
�LNY�ɡ����)k29�6�39c��Y grʚL�
�LNY�ɡ����)k29�6�39c��Y grʚL�
�LNY�ɡ����)k29�6�39a�dr`]���)k29�6�39eM&��b&��#�Cg�8�3Ιɑtr&������@��5�Zș��&�Ck9�3֙ɑur&������@��5�Zș��&�Ck9�3֙ɑur&������@��5�Zș��&�Ck9�3֙ɑur&������@��tdr�,grʙL�
�L�Xg&G�ș��&�Ck9�S�drhm grʚL�
�L�Xg&G�ș��&�Ck9�S�drhm grʚL�
�L�Xg&G�ș��&�Ck9�S�drhm grʚL�
�L�Xg&G������L���LN9�ɡ����)k29�6�39c��Y grʚL�
�LNY�ɡ����)k29�6�39a�dr`]���)k29�6�39eM&��r&������@��ufrd]���)k29�6�39eM&��r&������@��4�9���R�L���LN9�ɡ�����]*��ϱer�����Ln�s�xw|:ܽ�������|���'zx>�==����P�I(w̹��������m��������n�ϟ�����߶q����]/��S�N��{m����x�����.������+���u{����;E��p<I�x��p�z:<��I���kw�#QT�4�hm 7�ʚ��
���Xg�H��ͣ��yDk�yT�4�hm 7�ʚ��
���Xg�H��ͣ��yDk�yT��<��p�<*g�G�6��Gc��#Y 7�ʚ��
��QY�<����<*k�G�6��Gc��#Y 7�ʚ��
��QY�<����<*k�G�6��Gc��#Y 7�ʚ��
��QY�<����<*k�G�6��Gc��#Y 5�ʹ5�h|
��Q	G���q�iQ�@n���<�ur�i��@n�5�#Z�ͣ��yDk�y4��<�ur�i��@n�5�#Z�ͣ��yDk�y4��<�ur�i��@n�5�#Z�ͣ��yDk�y4�4��l6�J9�GT��G�L��r�i��@n�u6�d]��<*k�G�6��GeM��r�i��@n�u6�d]��<*k�G�6��GeM��r�i��@n�u6�d]��<*k�G�6��GeM��b󨤣yDg�y4�4��l7�ʙ��
��QY�<����<*k�G�6��Gc��#Y 7�ʚ��
��QY�<����<*k�G�6��Gc��#Y 7�ʚ��
��QY�<����<*k�G�6��Ga�4�`]��<*k�G�6��GeM��b󨤣yDg�y4��<�tr�i��@n�5�#Z�ͣ��yDk�y4��<�ur�i��@n�5�#Z�ͣ��yDk�y4��<�ur�i��@n�5�#Z�ͣ��yDk�y4��<�ur�i��@l�t4��,7�ʙ��
���Xg�H��ͣ��yDk�yT�4�hm 7�ʚ��
���Xg�H��ͣ��yDk�yT�4�hm 7�ʚ��
���Xg�H��ͣ��yDk�yT�4�hm 7�ʚ��
���Xg�H��ͣ�������Q9�<����<*k�G�6��Gc��#Y 7�ʚ��
��QY�<����<*k�G�6��Ga�4�`]��<*k�G�6��GeM��r�i��@n�u6�d]��<*k�G�6��GeM��r�i��@l�4�#9�ͣR������Q9�<����<�{�y�ϱ5�����q�s�xz�;�#���K���ۯ���������x(�\��T�#s<�n��?|��mbx���֋������n�x�w����y���<��\><��9ޱn�^�6p�:*LeM։�r֩��:��@�:�uf�d]��u*k�N�6��NeM։�r֩��:��@�:�uf�d]��u*k�N�6��NeM։�r֩��:��@�:�uf�d]��u*k�N�6�N%Y':�Y�r&�Di9�4֙u�ur֩��:��@�:�5Y'Z�Y��&�Dk9�4֙u�ur֩��:��@�:�5Y'Z�Y��&�Dk9�4֙u�ur֩��:��@�:�5Y'Z�Y��&�Dk9�4֙u�uR֩�[։��0�:�pd�h,g�ʙ��
�SX/Y'XW g�ʚ��
�SY�u����u*k�N�6��Nc�Y'Y g�ʚ��
�SY�u����u*k�N�6��Nc�Y'Y g�ʚ��
�SY�u����u*k�N�6�N#M�I��a֩�#�De�8�T�d�(m g�ʚ��
��Xg�I��Y��&�Dk9�T�d�hm g�ʚ��
��Xg�I��Y��&�Dk9�T�d�hm g�ʚ��
��Xg�I��Y��&�Dk9�T�d�hm f�J:�Nt�N�L�I��q֩��:Q�@�:�5Y'Z�Y��&�Dk9�4֙u�ur֩��:��@�:�5Y'Z�Y��&�Dk9�4֙u�ur֩��:��@�:�5Y'Z�Y��&�Dk9��K�	��Y��&�Dk9�T�d�hm f�J:�Nt��N�Y'I g�ʚ��
�SY�u����u*k�N�6��Nc�Y'Y g�ʚ��
�SY�u����u*k�N�6��Nc�Y'Y g�ʚ��
�SY�u����u*k�N�6��Nc�Y'Y g�ʚ��
ĬSIG։��q֩��:Q�@�:�uf�d]��u*k�N�6��NeM։�r֩��:��@�:�uf�d]��u*k�N�6��NeM։�r֩��:��@�:�uf�d]��u*k�N�6��NeM։�r֩��:��@�:�uf�d]��u*��:�Y8�:�3Y'J�Y��&�Dk9�4֙u�ur֩��:��@�:�5Y'Z�Y��&�Dk9��K�	��Y��&�Dk9�T�d�hm g�ʚ��
��Xg�I��Y��&�Dk9�T�d�hm g�ʚ��
Ĭ�H�u��q�u*��:QY8�:�3Y'J�Y'ʼn"��ϱe�����s�s��Y爝0��\���ë�s{�����ï�?��i�>ߋ^F0�{��q/���|��-��������Z�݂��[@k�[P�thm w�:��.@��5�Z�݂��[@k�[P�thm w�:��.@��s����݂�n���nA9�-����-�[��
+�nAY�-����-(k��6��eM���r�`��[ ��nAY�-����-(k��6��eM���r�`��[ ��nAY�-����-(k��6��eM���b�`����8��rt�,wʙn�
�nAY�-����-��Ⱥ��[P�thm wʚn�
�nAY�-����-��Ⱥ��[P�thm wʚn�
�nAY�-����-��Ⱥ��[P�thm wʚn�
�nAIG����a�`��H�8��3�J�݂��[@k�[P�thm w�:��.@��5�Z�݂��[@k�[P�thm w�:��.@��5�Z�݂��[@k�[P�thm w�z����[P�thm wʚn�
�nAIG����q�`��[ ��nAY�-����-(k��6��eM���r�`��[ ��nAY�-����-(k��6��eM���r�`��[ ��nAY�-����-(k��6��eM���r�`��[ ��nAY�-����-(���Y8��3�J�݂��n����eM���r������@��5�Z�݂��n����eM���r������@��5�Z�݂��n����eM���r������@��5�Z�݂��n���%�:�݂r�[@i�[P�thm w�:��.@��5�Z�݂��[@k�[P�thm w�z����[P�thm wʚn�
�nAY�-����-��Ⱥ��[P�thm wʚn�
�nAY�-����-i�r6���*�݂r�[@i�[�����sl���H`�[��K�p{�[8ݜ%��na<s�N�[��������ӧ?�[�������?o�����?��O�l8��O/3���{��2�~�'�2v��;���폝�~;���<v2�9v"�䱓�f����IY3vBky줬;���<v2�9v"�䱓�f����IY3vBky줬;���<v2�9v"�䱓�f����IY3vBkq줤c������(3v"e�x줜;���<vR֌���@;)k�Nhm ���u��Ⱥ�y줬;���<vR֌���@;)k�Nhm ���u��Ⱥ�y줬;���<vR֌���@;)k�Nhm ����2v�
+䱓�f����IY3vBkq줤c������8�؉���Nʚ�Z�c'e��	�
䱓�f�����X�؉���Nʚ�Z�c'e��	�
䱓�f�����X�؉���Nʚ�Z�c'e��	�
䱓�f�����X�؉���Nʚ�Z�c'%c't��Nʙ�J�c'c�c'�.@;)k�Nhm ���5c'�6��Nʚ�Z�c'c�c'�.@;)k�Nhm ���5c'�6��Nʚ�Z�c'c�c'�.@;)k�Nhm ���5c'�6��Nʚ�Z�c'c�c'�.@;)�;��p<vRΌ�P�@;)k�Nhm ���u��Ⱥ�y줬;���<vR֌���@;)k�Nhm ����2v�
+䱓�f����IY3vBky줬;���<v2�9v"�䱓�f����IY3vBky줬;���8v2Ҍ���8;)�;��p<vRΌ�P�@;��F���slc��ˢ���i�s��GZ���zx���x�2v�c��}��o?�q���4�O���_�?��O/�������g�+�۟�ۻ�������<����=���t�����X�g�X�s)u��5�y����o�*knѢ��|�VYs��
�[�ʚ[�hm ߢ5�y����o�*knѢ��|�VYs��
�[�ʚ[�hm ߢ5�y����n�*�v���ax�V	�-Z4�o�*gnѢ��|�VX/�h������-Zȷh�5�h��@�E���E���-Zc��hɺ�����-Zȷh�5�h��@�E���E���-Zc��hɺ�����-Zȷh�5�h��@�E���E���-Z#�-Zr6o�*�E����-Z�L���r����3��@�3�u�d]��g(k��6��eM���r����3��@�3�u�d]��g(k��6��eM���r����3��@�3�u�d]��g(k��6��eM���b���#�@g�0�0���l�ʙ<�
�<CY�g����g(k��6��c�yY �ʚ<�
�<CY�g����g(k��6��c�yY �ʚ<�
�<CY�g����g(k��6��a��`]��g(k��6��eM���b���#�@g�8�0Ιg�tr����3��@�3�5yZ�y��&�@k9�0֙g�ur����3��@�3�5yZ�y��&�@k9�0֙g�ur����3��@�3�5yZ�y��&�@k9�0֙g�ur����3��@�3�t��,�ʙ<�
�<�Xg�A��y��&�@k9�P��hm �ʚ<�
�<�Xg�A��y��&�@k9�P��hm �ʚ<�
�<�Xg�A��y��&�@k9�P��hm �ʚ<�
�<�Xg�A��y���<���<C9�g����g(k��6��c�yY �ʚ<�
�<CY�g����g(k��6��a��`]��g(k��6��eM���r����3��@�3�u�d]��g(k��6��eM���r����3��@�3�4y9�y�R�<���<C9�g����gPS ��[����3�?�_x�����x��<c<s�3�g����g������7+������7�/����ۇ���p8~�3<|�<��s����7��}�w�۳W�
|�zw<�<?8�x��pǺ]*v���+��X7�ֺ={��������O�ʺ={����������Ydzl]�;���pg�۳W�
ܱ���;)���g�v�������ʹ={E���`���J�x��p�z���Һ={����K�f�۳W�
�$NY�ġ�����L�Ⱥ�9�S�$qhm 'qʚ$�
�$NY�ġ�����L�Ⱥ�9�S�$qhm 'qʚ$�
�$NY�ġ�����L�Ⱥ�)�S�-�C�k&qJ8�84��8�L��r'��$�+��8eM��r��I���@N�5IZ�I���$����8eM��r��I���@N�5IZ�I���$����8eM��r��I���@N�5IZ�I��&�#g�0�Sʑġ�p��)g�8�6��8eM��rg�3�#��$NY�ġ����)k�8�6��8eM��rg�3�#��$NY�ġ����)k�8�6��8eM��rg�3�#��$NY�ġ����)k�8�6�8%I:�I�Q&�#e�8�S�$q(m 'qʚ$�
�$NY�ġ�����L�Ⱥ�9�S�$qhm 'qʚ$�
�$NY�ġ�����L�Ⱥ�9�S�$qhm 'qʚ$�
�$NY�ġ����	�%��
+�$NY�ġ����)k�8�6�8%I:�I�q�$����8eM��r��I���@N�5IZ�I���$����8eM��r��I���@N�5IZ�I���$����8eM��r��I���@N�5IZ�I���$����8eM��b��#�Cg�8�S�$q(m 'q�:�8�.@N�5IZ�I��&�Ck9�S�$qhm 'q�:�8�.@N�5IZ�I��&�Ck9�S�$qhm 'q�:�8�.@N�5IZ�I��&�Ck9�S�$qhm 'q�:�8�.@L�t$q�,'qʙ$�
�$NY�ġ�����L�Ⱥ�9�S�$qhm 'qʚ$�
�$NY�ġ����	�%��
+�$NY�ġ����)k�8�6��8eM��rg�3�#��$NY�ġ����)k�8�6��8eM��bg�I���8L�r$q�,'qʙ$�
�$n��RI~�-�{ݟ�'q���ǻ����t�E����Ο���x�m���$n<�g��ݎ �������w�?��������ߖW��A���뉎OO���k�r<��S�����������ykϲu�XO��Gkݞ�bm����p�p'�۳W�
ܱ�����&�u{����o�_Ý��Y�����k8=H���kw�����r���+��X�_��Z�g�X���x�n��u<���c=�g�,�۳W�
ܱ>�kg�۳W�
ܱ>�O�G�8����x8�7���Y�.���;x����+��X����_;ٺ={�����[�;I���kwj���p���,[����5��I���kw�[~ﬣ�gk��w��󳵁��+kz~�.@���u��lm ���:z~�6{~g=?[�=����G�Ğ�YG���R��[����a��gi��W���h]���;�����@���u��lm ���:z~�6{~eMϏ��=������
Ğ�YG���b�ﬣ�gk��W���h]���;�����@���u��lm ���:z~�6{~eMϏ�=�s~����F=�n=?�=�s����
�Xg�O��=������
Ğ�YG���b�ﬣ�gk��W���h]���;�����@���u��lm ���:z~�6{~eMϏ��=������
Ğ�YG���b�ﬣ�gk��W���q��;���p��;���Y�@���u��lm ��ʚ��{~g=?[�=������
Ğ�YG���bϯ���Ѻ���w��󳵁��;�����@���u��lm ��ʚ��{~g=?[�=������
���I�������_)GϏ��a��gi��w��󳵁��;�����@���5=?Z ���:z~�6{~g=?[�=������
Ğ_Y��ub�ﬣ�gk��w��󳵁��;�����@���u��d]���;�����@���u��lm ��N����,��ʙ��{~g=?[�=������
Ğ�YG���bϯ���Ѻ���w��󳵁��;�����@���u��lm ��ʚ��{~g=?[�=������
Ğ�YG���bϯ���Ѻ���w��󳵁��;���p��;���Y�@���5=?Z ���:z~�6{~g=?[�=������
Ğ_Y��ub�ﬣ�gk��w��󳵁��;�����@���5=?Z ���:z~�6{~g=?[�=������
Ğ_Y��uR��[����a��gi��w��󳵁��+kz~�.@���u��lm ���:z~�6{~g=?[�=��Ξ��+{~g=?[�=������
Ğ�YG���bϯ���Ѻ���w��󳵁��;�����@���u��lm ��J:z~t6�z~��z~V{~�=?K�=?������홊�w{~��+n��
:���_q�g.=���+n�}����M���O���s罶3��7S�Wn?�}�9 �Ek1�Uґʢ�p���LeI��9�U֤�hm ��ʚT�
�TVY�ʢ�����Leɺ�9�U֤�hm ��ʚT�
�TVY�ʢ�����Leɺ�9�U֤�hm ��ʚT�
�TVY�ʢ�����Leɺ�9�U֤�hm ��J:RYt�SY�L*��r*k�3�%��TVY�ʢ����*kRY�6�SYeM*��r*k�3�%��TVY�ʢ����*kRY�6�SYeM*��r*k�3�%��TVY�ʢ����*kRY�6�SYeM*��r*k�3�%��TV9�T��a��*�He�X8Ne�3�,Jȩ��^RY��@Ne�5�,Zȩ��&�Ek9�U֤�hm ���:SY�.@Ne�5�,Zȩ��&�Ek9�U֤�hm ���:SY�.@Ne�5�,Zȩ��&�Ek9�U֤�hm ��F�T����TV)G*���q*��IeQ�@Ne�5�,Zȩ���T���SYeM*��r*��Ie��@Ne�5�,Zȩ���T���SYeM*��r*��Ie��@Ne�5�,Zȩ���T���SYeM*��r*��Ie��@Le�t���,��F�T����TV9�ʢ����*kRY�6�SYeM*��r*k�3�%��TVY�ʢ����*kRY�6�SYeM*��r*k�3�%��TVY�ʢ����*kRY�6�SYeM*��r*+��T�+�SYeM*��r*��Ie��@Le�t���,���9SY�.@Ne�5�,Zȩ��&�Ek9�U֤�hm ���:SY�.@Ne�5�,Zȩ��&�Ek9�U֤�hm ���:SY�.@Ne�5�,Zȩ��&�Ek9�U֤�hm ���:SY�.@Ne�5�,Z�����T���TV9�ʢ�����Leɺ�9�U֤�hm ��ʚT�
�TVY�ʢ�����Leɺ�9�U֤�hm ��ʚT�
�TVY�ʢ�����Leɺ�9�U֤�hm ��ʚT�
�TVY�ʢ�����Leɺ�1�Uґʢ�p��*gRY�6�SYeM*��r*k�3�%��TVY�ʢ����*kRY�6�SYeM*��r*+��T�+�SYeM*��r*��Ie��@Ne�5�,Zȩ���T���SYeM*��r*��Ie��@Ne�5�,Z����&�%g�0�Uʑʢ�p��*gRY�6�SYj?E*��cKe_w�w�����XR��T�������0��\Rټ��?}��/?}������/�?��/���c�������>�/�~"���ӽ���w~�/S'��ͩӫ�������Z�S'c�S'�.@�:)k�Nhm O��5S'�6��Nʚ�Z�S'c�S'�.@�:)k�Nhm O��5S'�6��Nʚ�Z�S'c�S'�.@�:)k�Nhm O��5S'�6�NJ:�N�,N��2S'R6��Nʙ�J�S'e��	�
䩓�f�����X�ԉ���Nʚ�Z�S'e��	�
䩓�f�����X�ԉ���Nʚ�Z�S'e��	�
䩓�f����IX/S'��@�:)k�Nhm O��5S'�6�NJ:�N�,O��sN�H��y꤬�:���<uR�L���@�:)k�Nhm O��uN�Ⱥ�y꤬�:���<uR�L���@�:)k�Nhm O��uN�Ⱥ�y꤬�:���<uR�L���@�:)k�Nhm O��uN�Ⱥ�y꤬�:���8uR�1uBg�xꤜ�:���<u2�9u"�䩓�f����IY3uBky꤬�:���<u2�9u"�䩓�f����IY3uBky꤬�:���<u2�9u"�䩓�f����IY3uBky꤬�:���<u2�9u"�ĩ����:�S'���	�
䩓�f�����X�ԉ���Nʚ�Z�S'e��	�
䩓�f����IX/S'��@�:)k�Nhm O��5S'�6��Nʚ�Z�S'c�S'�.@�:)k�Nhm O��5S'�6��Nʚ�Z�S'#�ԉ��é�R��*�S'���	�
�mo��	?�6uz�+ڟ:���O��ӕ�������Ot�-���c�;u�L�Ns����������ׯ_>���7������O��=�~�w�L���u�v�y�E�<|�yS���ݿ)����My�6�o�+knʣ��|S�X�My�.@�)���)���Mye�My�6�o�+knʣ��|S�X�My�.@�)���)���Mye�My�6�o�+knʣ��|S�X�My�.@�)���)���My%7��Y8�)���)���Myc�7�ɺ������<Z�7�57���@�)���)���Myc�7�ɺ������<Z�7�57���@�)���)���Myc�7�ɺ������<Z�7�57���@�)���)���Myc�7�ɺ�馼rn7����7�pܔGc����r�<J�7��rS�+�o�+knʣ��|S^YsS�
��ʚ��hm ߔ7�yS���o�+knʣ��|S^YsS�
��ʚ��hm ߔ7�yS���o�+knʣ��|S^YsS�
��ʚ��hm ޔ7�ܔ'g��R���,ߔW΄�(m ��ʚ��
���XghI�ȡ��&�Dk9�Tք�hm ��ʚ��
���XghI�ȡ��&�Dk9�Tք�hm ��ʚ��
���XghI�ȡ��&�Dk9�Tք�hm ��J:BKtCK�LhI��qh��	-Q�@-�5�%Zȡ��&�Dk9�4�Z�urh��	-��@-�5�%Zȡ��&�Dk9�4�Z�urh��	-��@-�5�%Zȡ��&�Dk9��Kh	�ȡ��&�Dk9�Tք�hm ��J:BKt�CK㜡%I ��ʚ��
��RYZ���Z*kBK�6�CKc��%Y ��ʚ��
��RYZ���Z*kBK�6�CKc��%Y ��ʚ��
��RYZ���Z*kBK�6�CKc��%Y ��ʚ��
��RIGh���qh��	-Q�@-�u��d]�Z*kBK�6�CKeMh��rh��	-��@-�u��d]�Z*kBK�6�CKeMh��rh��	-��@-�u��d]�Z*kBK�6�CKeMh��rh��	-��@-�u��d]�Z*�-�Y8-�3�%Jȡ��&�Dk9�4�Z�urh��	-��@-�5�%Zȡ��&�Dk9��Kh	�ȡ��&�Dk9�Tք�hm ��ʚ��
���XghI�ȡ��&�Dk9�Tք�hm ��ʚ��
���HZ��qZ*�-QY8-�3�%Jȡ�~'�BK�[h��j�-�?Ƿ�?pz�;���V���Ϝ�y��:�����~��L�2ˇY��������?���|����/�?=��q���ݧ_����/?}��������?|���m�yw�{���.�m�y����`�I*�W?��
+��ǀ
 �
�
+�Xg�C������Ak��Q�T8hm W8ʚ
+�
�
+�Xg�C������Ak��Q�T8hm W8ʚ
+�
�
+�Xg�C������Ak��Q�T8hm W8ʚ
+�
�
+�Xg�C�H�rn_ð�Q�Qᠱp\�(g*�6�+a�T8`]�\�(k*�6�+eM���r����p��@�p�uV8d]�\�(k*�6�+eM���r����p��@�p�uV8d]�\�(k*�6�+eM���r����p��@�p�49��R�
+���
+G9Sᠴ�\�(k*�6�+c�Y W8ʚ
+�
�
+GYSᠵ�\�(k*�6�+c�Y W8ʚ
+�
�
 GYSᠵ�\�(k*�6�+c�Y W8ʚ
 �
�
+GYSᠵ�X�(�p�Y8�p�2)��r��Ai��Q�T8hm W8ʚ
+�
�
+�Xg�C������Ak��Q�T8hm W8ʚ
+�
�
+�Xg�C������Ak��Q�T8hm W8ʚ
+�
�
+GX/XW W8ʚ
+�
�
+GYSᠵ�X�(�p�Y8�p�sV8$]�\�(k*�6�+eM���r����p��@�p�uV8d]�\�(k*�6�+eM���r����p��@�p�uV8d]�\�(k*�6�+eM���r����p��@�p�uV8d]�\�(k*�6+%:��r��Ai��1�Y�ur����p��@�p�5Z�����Ak��1�Y�ur����p��@�p�5Z�����Ak��1�Y�ur����p��@�p�5Z�����Ak��1�Y�ub�����Ag��Q�T8(m W8ʚ
+�
�
+�Xg�C������Ak��Q�T8hm W8ʚ
+�
�
+GX/XW W8ʚ
+�
�
 GYSᠵ�\�(k*�6�+c�Y W8ʚ
 �
�
-GYSᠵ�\�(k*�6�+a}�p����Q�T8hm W8ʚ
-�
�
-GIG����q�c���!��
-GYSᠵ�\�(k*�6�+eM���r�c���!��
-GYSᠵ�\�(k*�6�+eM���r�c���!��
-GYSᠵ�\�(k*�6�+eM���r�c���!��
-GYSᠵ�X�(�p�Y8�p�3J����
-���+eM���r����p��@�p�5Z����
-���+eM���r����p��@�p�5Z����
-���+eM���r����p��@�p�5Z����
-��+%:��r��Ai��Q�T8hm W8�:+�.@�p�5Z�����Ak��Q�T8hm W8��Z�ur����p��@�p�5Z�����Ak��1�Y�ur����p��@�p�5Z�����Ak��1�T8�lV8J9*T�+�L���r�����
-?�VἍ^�+����W���vs{�o�Ϥ�9R�|�������ϟ�z|>_f.����`7{i�������>�x���;���ۗ�R���`ݞ�bm�������[+eݞ�bm������p{�y�+p�z�NҺ={�����kx����n�^�6p�z��ֺ={�������k�yr��,[���t�mγ�n�^�6p�z��˓�n�^�6p��tx���_��,�e���p|<:�x��p�z��u{����;��w��	[�g�X�co�Tּb�
�WL�|�$Y �bRY�I�6�_1��y�$Zȯ�Tּb�
�WL�|�$Y �bRY�I�6�_1��y�$Zȯ�Tּb�
�WL�|�$Y �bRY�I�6_1��#nGg�8nW���(m ���:�v�.@�ە5q;Z�q��&nGk9nW���hm ���:�v�.@�ە5q;Z�q��&nGk9nW���hm ���:�v�.@�ە5q;Z�q��&nGk9nW���hm ���:�v�.@�ەs�����q������]9������k���q��&nGk9nW���hm ��ʚ��
��Xg�N��q��&nGk9nW���hm ��ʚ��
��Xg�N��q��&nGk9nW���hm ��ʚ��
ĸ�H���q�+��QY8�ە3q;J�q��&nGk9n7���urܮ�����@�ە5q;Z�q��&nGk9n7���urܮ�����@�ە5q;Z�q��&nGk9n7���urܮ�����@�ە5q;Z�q������ø�(���q�+g�v�6��veM܎�rܮ�����@�ۍu��d]��+k�v�6��veM܎�rܮ�����@�ۍu��d]��+k�v�6��veM܎�rܮ�����@�ۅ�5n�
-�]Y�����+k�v�6�v%q;:�q�qθ����veM܎�rܮ�����@�ە5q;Z�q��θ����veM܎�rܮ�����@�ە5q;Z�q��θ����veM܎�rܮ�����@�ە5q;Z�q��θ����veM܎�bܮ�#nGg�8nW���(m ���:�v�.@�ە5q;Z�q��&nGk9nW���hm ���:�v�.@�ە5q;Z�q��&nGk9nW���hm ���:�v�.@�ە5q;Z�q��&nGk9nW���hm ���:�v�.@�ەt���,��ʙ��
�]Y�������ɺ�9nW���hm ��ʚ��
�]Y������k���q��&nGk9nW���hm ��ʚ��
��Xg�N��q��&nGk9nW���hm ��ʚ��
ĸ�H���q�+��QY8�ە3q;J�q;��"n�ϱ��oK��ݸ}�s,q�핸�xw�y��}<���v�����/��]�}�����������/��N���t����6z����O������x/�eg�v������P���+��X�kݞ�bm������l}�g�X�s5�x�}�����gٺ�w�㌂��.Z�w�5w��@�ˠ��ˀ��]a}�����w�5w��@�ˠ��ˀ��]e�]�6��2��@��w�5w��@�ˠ��ˀ��]%w�Y8��`��.I �eP��e@k�.���.Z�w�5w��@��`��.Y �eP��e@k�.���.Z�w�5w��@��`��.Y �eP��e@k�.���.Z�w�5w��@��`��.Y �eP��e@k�.�����,�eP��e@i�.��λd]�|�AYs��
�ʚ�hm �eP��e@k�.��λd]�|�AYs��
�ʚ�hm �eP��e@k�.��λd]�|�AYs��
�ʚ�hm �eP��e@k�.��λd]�t�A9��h|ûJ8�2��p|�A9s��
���z��+��2(k�2���|�AYs��
�ʚ�hm �e0�y�����2(k�2���|�AYs��
�ʚ�hm �e0�y�����2(k�2���|�AYs��
�ʚ�hm �e0��e g��.�R���,�eP��e@i�.���.Z�w�u�e ��ʚ�hm �eP��e@k�.���.Z�w�u�e ��ʚ�hm �eP��e@k�.���.Z�w�u�e ��ʚ�hm �eP��e@k�.�����,�e0��e e��.�r�.J�w�5w��@�ˠ��ˀ��]c�wȺ��.���.Z�w�5w��@�ˠ��ˀ��]c�wȺ��.���.Z�w�5w��@�ˠ��ˀ��]a}�����w�5w��@�ˠ��ˀ��]%w�Y8��`��.I �eP��e@k�.���.Z�w�5w��@��`��.Y �eP��e@k�.���.Z�w�5w��@��`��.Y �eP��e@k�.���.Z�w�5w��@��`��.Y �eP��e@k�.�����,�eP��e@i�.��λd]�|�AYs��
�ʚ�hm �eP��e@k�.��λd]�|�AYs��
�ʚ�hm �eP��e@k�.��λd]�|�AYs��
�ʚ�hm �eP��e@k�.��λd]�x�AI�]t��2(g�2���|�AYs��
��:�2�u�]e�]�6��2(k�2���|�AYs��
���z��+��2(k�2���|�AYs��
�ʚ�hm �e0�y�����2(k�2���|�AYs��
�ʚ�hm �e0��e g��.�R���,�eP��e@i�.���u�?�v����������������.������������������E�x(ϼ�e8����ۧO?���L���ï����ϟ�����?}����<�et��_?����t���:���?��o>��t����,Z��Ye�t�
�鬲f:���t�X�t�����ʚ�,Z��Ye�t�
�鬲f:���t�X�t�����ʚ�,Z��Ye�t�
�鬲f:���t�H3�%g�p:��c:����tV93�Eiy:���΢��<�5�9�%��鬲f:���tVY3�Eky:���΢��<�5�9�%��鬲f:���tVY3�Eky:���΢��<�5�9�%��鬲f:���tVY3�Ekq:��c:����t�(3�%e�x:���΢��<�U�Lg��@��*k��hm Og�uNgɺ�y:���΢��<�U�Lg��@��*k��hm Og�uNgɺ�y:���΢��<�U�Lg��@��*k��hm Og��u:���Ye�t�
�鬲f:���tVI�t����q��,I Og�5�Y�6���ʚ�,Z��Ye�t�
�鬱��,Y Og�5�Y�6���ʚ�,Z��Ye�t�
�鬱��,Y Og�5�Y�6���ʚ�,Z��Ye�t�
�鬱��,Y Og�5�Y�6��J:���,Og�3�Y�6����:��d]�<�U�Lg��@��*k��hm Og�5�Y�6����:��d]�<�U�Lg��@��*k��hm Og�5�Y�6����:��d]�<�U�Lg��@��*k��hm Og�5�Y�6����:��d]�8�U�1�Eg�x:���΢��<�U�Lg��@���Βu�tVY3�Eky:���΢��<�U�Lg��@��
-��t�+���ʚ�,Z��Ye�t�
�鬲f:���t�X�t�����ʚ�,Z��Ye�t�
�鬲f:���t�H3�%g�p:��c:����tV93�Eiy:���T�Y��t��Nu:��9��W��==��>�+��L���1�������H��@��<}������'��7�=���?��k<��s�5���칿�A.X�g�X�c=��<>H���kw�O���Giݞ�bm�e���k����,[����5�=I���kw����,�۳W�
ܱn��s��.@�6�����]��l��9ǻ�Y�@|���w����.@g�dk�]�ʚw�u���u���
�w:�x [��t��.@�6�h��]�d]��.@g�dk�]��:������u���
�w*k�����t��.@�6���]�lm ��I�w��p�.@�̻�Q���]��:������u���
�w:�x [��Tּ����]�lm ��Yǻ���@|���w����.@eͻ�Ѻ��]��:������u���
�w:�x [��Tּ����]�lm ��I�w��p�.@��di�]�ʚw�u���u���
�w:�x [��t��.@�6���y Z ��Yǻ���@|���w����.@g�dk�]�ʚw�u���u���
�w:�x [��t��.@�6���y Z ��9����oa�.@'��������s���
�w�<hB��M�u4ak񠉳��&lm 4q�qЄ�
ă&ʚ�&h]�x��Y�A�6�8�8h���AgM��@<h��9h���M�u4ak񠉳��&lm 4q�qЄ�
��&J:���qt��)��&�,4q�qЄ�
ă&�:����x�DYs���8�8h���AgM��@<h��	[�M�5Mк�񠉳��&lm 4q�qЄ�
ă&�:����x�DYs���8�8h���AgM��@:h��Av��(�8h����A�MX�@<h��	[�M�u4ak񠉲�	Z 4q�qЄ�
ă&�:����x��Y�A�6�(k��u�AgM��@<h��	[�M�u4ak񠉱΃&d]�x��Y�A�6�8�8h���A'����px�D9s���8�8h���AgM��@<h��	[�M�5Mк�񠉳��&lm 4q�qЄ�
ă&�:����x�DYs���8�8h���AgM��@<h��	[�M�5Mк�񠉳��&lm 4q���	;�M�s4ai񠉲�	Z 4q�qЄ�
ă&�:����x��Y�A�6�(k��u�AgM��@<h��	[�M�u4ak񠉲�	Z 4q�qЄ�
ă&�:����x��Y�A�6�(k��u�A'����px��9�A�6�8�8h���Ae�A�.@<h��	[�M�u4ak񠉳��&lm 41�yЄ�+�8�8h���AgM��@<h��	[�M�5Mк�񠉳��&lm 4q�qЄ�
ă&�:����t�DI�At6��8�vЄ��Ã&�9����x��t\?hŸ��3u=�a�	|�����A���x�d<��&wo�l����o?��}�����x�\�n�����}ӇL���C�g��?d�`]��}+k�o�6��oeM���r���ɾ��@ξ�uf�d]��}+k�o�6��oeM���b���#�Fg�8�6Ι}�tr���ɾ��@ξ�5�7Z�ٷ�&�Fk9�6֙}�ur���ɾ��@ξ�5�7Z�ٷ�&�Fk9�6֙}�ur���ɾ��@ξ�5�7Z�ٷ�&�Fk9�6֙}�ur���ɾ��@̾�td��,g�ʙ��
���Xg�M��ٷ�&�Fk9�V�d�hm g�ʚ��
���Xg�M��ٷ�&�Fk9�V�d�hm g�ʚ��
���Xg�M��ٷ�&�Fk9�V�d�hm g�ʚ��
���Xg�M�Hٷrn�7��0�V‘}��p�}+g�o�6��oa};��9�V�d�hm g�ʚ��
��[Y�}����}�̾ɺ�9�V�d�hm g�ʚ��
��[Y�}����}�̾ɺ�9�V�d�hm g�ʚ��
��[Y�}����}i�or6�o��7*�ٷr&�Fi9�V�d�hm g��:�o�.@ξ�5�7Z�ٷ�&�Fk9�V�d�hm g��:�o�.@ξ�5�7Z�ٷ�&�Fk9�V�d�hm g��:�o�.@ξ�5�7Z�ٷ�&�Fk1�Vґ}��p�}e�oR6��o�L���r���ɾ��@ξ�5�7Z�ٷ��웬��oeM���r���ɾ��@ξ�5�7Z�ٷ��웬��oeM���r���ɾ��@ξ�5�7Z�ٷ��f�`]��}+k�o�6��oeM���b���#�Fg�8�6Ι}�tr���ɾ��@ξ�5�7Z�ٷ�&�Fk9�6֙}�ur���ɾ��@ξ�5�7Z�ٷ�&�Fk9�6֙}�ur���ɾ��@ξ�5�7Z�ٷ�&�Fk9�6֙}�ur���ɾ��@̾�td��,g�ʙ��
���Xg�M��ٷ�&�Fk9�V�d�hm g�ʚ��
���Xg�M��ٷ�&�Fk9�V�d�hm g�ʚ��
���Xg�M��ٷ�&�Fk9�V�d�hm g�ʚ��
���Xg�M��ٷ�������[9�}����}+k�o�6��oc��7Y g�ʚ��
��[Y�}����}+k�o�6��oa};��9�V�d�hm g�ʚ��
��[Y�}����}�̾ɺ�9�V�d�hm g�ʚ��
��[Y�}����}i�or6�o��7*�ٷr&�Fi9���Yd��9���mc���}���O�w��z%��;��>������rQ=�3���q�������ӏ���ӏ?|�2B�_��������-$���xx����e|]�ç�k�7�zM����������ʚ5=Z�kze͚�
�5��fM����X皞����ʹ�����kz%kz4���ʙ5=J�kza}]Ӄu�^Y��GkyM��Yӣ����W֬���@^��\ӓu�^Y��GkyM��Yӣ����W֬���@^��\ӓu�^Y��GkyM��Yӣ����W֬���@\�i���l��r��QY8^�+g��(m ��5kz�6����:��d]���W֬���@^�+k��hm ��5kz�6����:��d]���W֬���@^�+k��hm ��5kz�6����:��d]���W֬���@^�+k��hm ��t���Y8\�e���l��3kz�6���ʚ5=Z�kze͚�
�5���5=Y ��5kz�6���ʚ5=Z�kze͚�
�5���5=Y ��5kz�6���ʚ5=Z�kze͚�
�5�������yM��Yӣ����W֬���@\�+�Xӣ�p��7ι�'��5��fM���^Y��GkyM��Yӣ����7ֹ�'��5��fM���^Y��GkyM��Yӣ����7ֹ�'��5��fM���^Y��GkyM��Yӣ����7ֹ�'��5��fM���^Iǚ���5�rfM����X皞����ʚ5=Z�kze͚�
�5��fM����X皞����ʚ5=Z�kze͚�
�5��fM����X皞����ʚ5=Z�kze͚�
�5��fM����X皞���J:���,��3kz�6���ʚ5=Z�kzc�kz�.@^�+k��hm ��5kz�6���ʚ5=Z�kza}]Ӄu�^Y��GkyM��Yӣ����W֬���@^��\ӓu�^Y��GkyM��Yӣ����W֬���@\�i���l��r��QY8^�+g��(m ���g�jM��c[ӿ�����?Dz������{>�F������5�������������?���D�7�������)�|c|��ƌ7y���?��3�Y8~c�r�(m �1�X�3Ⱥ���ʚ7f�����e�3��@~c���hm �1�X�3Ⱥ���ʚ7f�����e�3��@~c����Ak��1����ur㣬i|��@n|�5�Zȍ����Ak��1����uR㣜[�Ʒ0l|�p4>h,7>ʙ��
��GX_��@n|�5�Zȍ����Ak��Q�4>hm 7>�:�.@n|�5�Zȍ����Ak��Q�4>hm 7>�:�.@n|�5�Zȍ����Ak��Q�4>hm 6>F�Ƈ����G)G���q㣜i|P�@n|�5�Zȍ���Ƈ��eM��r㣬i|��@n|�5�Zȍ���Ƈ��eM��r㣬i|��@n|�5�Zȍ���Ƈ��eM��r㣬i|��@l|�t4>�,6>F�Ƈ����G9�������(k�6�eM��r�c���!���GY�������(k�6�eM��r�c���!���GY�������(k�6�eM��r�#���XW 7>ʚ��
��GY�������(�h|�Y8n|�s6>$]���(k�6�eM��r㣬i|��@n|�u6>d]���(k�6�eM��r㣬i|��@n|�u6>d]���(k�6�eM��r㣬i|��@n|�u6>d]���(k�6%�:Ǎ�r��Ai��1����ur㣬i|��@n|�5�Zȍ����Ak��1����ur㣬i|��@n|�5�Zȍ����Ak��1����ur㣬i|��@n|�5�Zȍ����Ak��1����ub㣤��Ag��Q�4>(m 7>ʚ��
���Xg�C�ȍ����Ak��Q�4>hm 7>ʚ��
��GX_��@n|�5�Zȍ����Ak��Q�4>hm 7>�:�.@n|�5�Zȍ����Ak��Q�4>hm 6>F�Ƈ����G)G���q㣜i|P�@n|�O�~���y��7>���������t��篯�����p8=�]n|�Cy&���(|��?������������_����7���ȸ�{���;>?��F�>�x���|?�9n��/}��s��,ZW���tx<=H���kw��ۗ�w(���kw���h�۳W�
�l=�����{oϲu�XO��<K���kw���X���kw�O�����+��]V�Ǘ�w�x��p�z��u{����;��w��ϲlݞ�bm����-���CY�g�Xx�z:
'iϲu�X�_�흴n�^�6p�z����x����;���pc�۳W�
�l�;��?�Ƴl]�;����I���^�6p��p�y����+��X�������+�����^��ϲu�XG���)���@,��t���,��ʙ��
���Xg�M��已��Fk��V֔�hm ��ʚ��
���Xg�M��已��Fk��V֔�hm ��ʚ��
���Xg�M��已��Fk��V֔�hm ��ʚ��
���Xg�M�H�rn�7�°�V�Q~��p\~+g�o�6��oa}-�����V֔�hm ��ʚ��
��[YS~���\~�,�ɺ���V֔�hm ��ʚ��
��[YS~���\~�,�ɺ���V֔�hm ��ʚ��
��[YS~���X~i�or6�o��7*��r��Fi��V֔�hm ���:�o�.@.��5�7Z�已��Fk��V֔�hm ���:�o�.@.��5�7Z�已��Fk��V֔�hm ���:�o�.@.��5�7Z�已��Fk��V�Q~��pX~e�oR6��o�L���r���)���@.��5�7Z�己����oeM���r���)���@.��5�7Z�己����oeM���r���)���@.��5�7Z�巰���`]�\~+k�o�6��oeM���b�����Fg��6�Y~�tr���)���@.��5�7Z�已��Fk��6�Y~�ur���)���@.��5�7Z�已��Fk��6�Y~�ur���)���@.��5�7Z�已��Fk��6�Y~�ur���)���@,��t���,��ʙ��
���Xg�M��已��Fk��V֔�hm ��ʚ��
���Xg�M��已��Fk��V֔�hm ��ʚ��
���Xg�M��已��Fk��V֔�hm ��ʚ��
���Xg�M��巒������[9S~���\~+k�o�6��oc��7Y ��ʚ��
��[YS~���\~+k�o�6��oa}-�����V֔�hm ��ʚ��
��[YS~���\~�,�ɺ���V֔�hm ��ʚ��
��[YS~���X~i�or6�o��7*��r��Fi����U���c+��f�ϻ�����+��x{��[~��x��>����~���㧟����Oy���n��>����������܇��}��Ǽ=O{/{��]�#���7����&�`]�<�U�Lv��@��*k&�hm Ov�5�]�6�'��:'�d]�<�U�Lv��@��*k&�hm Ov�5�]�6�'��:'�d]�<�U�Lv��@��*k&�hm Ov�5�]�6'�F��.9��]��]T�'�ʙ�.Jȓ]e�d�
�ɮ���.Y Ov�5�]�6�'�ʚ�.Zȓ]e�d�
�ɮ���.Y Ov�5�]�6�'�ʚ�.Zȓ]e�d�
�ɮ���.Y Ov�5�]�6�'�ʚ�.Z��]%�]t'�F��.)Ǔ]��d�
�ɮ�f����dWY3�Eky�k�s�K�ȓ]e�d�
�ɮ�f����dWY3�Eky�k�s�K�ȓ]e�d�
�ɮ�f����dWY3�Eky�+���]��@��*k&�hm Ov�5�]�6'�J:&��,Ov�sNvI��y����좵�<�U�Lv��@��*k&�hm Ov�uNvɺ�y����좵�<�U�Lv��@��*k&�hm Ov�uNvɺ�y����좵�<�U�Lv��@��*k&�hm Ov�uNvɺ�y����좵�8�U�1�Eg�x����좴�<�5�9�%��ɮ�f����dWY3�Eky����좵�<�5�9�%��ɮ�f����dWY3�Eky����좵�<�5�9�%��ɮ�f����dWY3�Eky����좵�<�5�9�%��ɮ���.:Ǔ]��d�
�ɮ�f����d�X�d���'�ʚ�.Zȓ]e�d�
�ɮ�f����dWX_'�`]�<�U�Lv��@��*k&�hm Ov�5�]�6�'��:'�d]�<�U�Lv��@��*k&�hm Ov�5�]�6'�F��.9��]��]T�'�ʙ�.Jȓ��}������&�o��������W��i�]b|Y�x&�݇1����~�����w/hz|:�޾�-틿X7{�X/���9}�������[;���t{�s��n���q;����x����+��X�kݞ�bm������l}�g�Xx��|<ܾ�G�Xdzl]�;�����Z�g�X�c}8ܾ�W�ʺ={����x����mjhm �MMX_ߦ��oSSּM
�
䷩)kަ����Ԕ5oSCk�mj�:ߦF��oSSּM
�
䷩)kަ����Ԕt�M
��㷩�|�I �MMY�65�6�ߦ��y�Z�oSSּM
�
䷩�|�Y �MMY�65�6�ߦ��y�Z�oSSּM
�
䷩�|�Y �MMY�65�6�ߦ��y�Z�oSSּM
�
䷩�|�Y �MMY�65�6ߦ���mj�,�MM9�65�6�ߦf��mjd]��65e�����@~����mjhm �MMY�65�6�ߦf��mjd]��65e�����@~����mjhm �MMY�65�6�ߦf��mjd]��65e�����@~����mjhm �MMY�65�6�ߦf��mjd]��65��ަ�Ʒ0|�������p�65��i�6�O3��i��@>͠�9̀��ie�i�6�O3(kN3���|��X�i�.@>͠�9̀��ie�i�6�O3(kN3���|��X�i�.@>͠�9̀��ie�i�6�O3(kN3���x��Hs������J9N3��p|�A9s��
��ʚ�hm �f0�y����O3(kN3���|�AYs��
��ʚ�hm �f0�y����O3(kN3���|�AYs��
��ʚ�hm �f0�y����O3(kN3���|�AYs��
��J:N3��px��(s������ʙ�(m �fP֜f@k�4���4Zȧ�u�f ���ʚ�hm �fP֜f@k�4���4Zȧ�u�f ���ʚ�hm �fP֜f@k�4���4Zȧ���4XW �fP֜f@k�4���4Z���t�f@g��4�q��$]�|�AYs��
��ʚ�hm �fP֜f@k�4����d]�|�AYs��
��ʚ�hm �fP֜f@k�4����d]�|�AYs��
��ʚ�hm �fP֜f@k�4����d]�|�AYs��
��J:N3��p|�A9s��
���:O3�u�ie�i�6�O3(kN3���|�AYs��
���:O3�u�ie�i�6�O3(kN3���|�AYs��
���:O3�u�ie�i�6�O3(kN3���|�AYs��
���:O3�u�i%��Y8>͠�9̀��ie�i�6�O3�<�@�ȧ�5���@>͠�9̀��ie�i�6�O3��i��@>͠�9̀��ie�i�6�O3(kN3���|��X�i�.@>͠�9̀��ie�i�6�O3(kN3���x��Hs������J9N3��p|�A9s��
��tm@�f�ϱ�fx{a�4���8�e�����϶�UO�-��y<O�
-9��Z1�t����3y����Q����_?~�����w���ix���\oL�垎�w����㙷t�d…��2��
ē	�:N&���x2�Y���6O&(kN&�u��g'��@<���d[�'�u�L`k�d��Γ	d]�x2�Y���6O&8�8�����g'��@<���9����'�u�L`k�d����	lm �Lp��d;�'�3'P���d����	lm �Lp�q2��
ē	�:N&���x2AYs2�O&8�8�����g'��@<���d[�'�5'к��d����	lm �Lp�q2��
ē	�:N&���x2AYs2�O&8�8�����'�N&��px2�9���6O&(kN&�u��g'��@<���d[�'�u�L`k�d���dZ �Lp�q2��
ē	�:N&���x2�Y���6O&(kN&�u��g'��@<���d[�'�u�L`k�d���dZ �Lpί'��F'�p;�������'X�@<�`��dYW �Lp�q2��
ē	�:N&���x2�Y���6O&(kN&�u��g'��@<���d[�'�u�L`k�d���dZ �Lp�q2��
ē	�:N&���x2�Y���6�N&(�8��������N&��px2�9���6O&8�8�����e���.@<���d[�'�u�L`k�d����	lm �LP֜L@�ē	�:N&���x2�Y���6O&8�8�����e���.@<���d[�'�u�L`k�d��n'�Y8:����d*�'�s�L`i�d����	lm �Lp�q2��
ē	ʚ�	h]�x2�Y���6O&8�8�����g'��@<���9����'�u�L`k�d����	lm �Lp�q2��
ē	�:O&�u��g'��@<���d[H'�t;����������.@<���d[�'�u�L`k�d����	lm �LP֜L@�ē	�:N&���x2�Y���6O&8�8�����e���.@<���d[�'�u�L`k�d����	lm �LP֜L@�ē	�:N&���t2�I��	�,�Lp�q2��
ē	ʚ�	h]�x2�Y���6O&8�8�����g'��@<���9����'�u�L`k�d����	lm �Lp�q2��
ē	ʚ�	h]�x2�Y���6O&8�8�����g'��@<���9���H'�t;�������'X�@<���d[�'�5'к��d����	lm �Lp�q2��
ē	�:N&���x2�X����@<���d[�'�u�L`k�d����	lm �LP֜L@�ē	�:N&���x2�Y���6O&8�8�����%'��8:�����VO&8�8��������L������Pp�;������8��d���g���[���������<��L8�	_�����onn���|���}|wxxzE]�D������'ç�q򛏻'�� '���'댓ɺ�9NV���hm ��ʚ8�
�8YIG����q�l�3N&��8YY'���'+k�d�6��deM���r�l�3N&��8����n��J��
-�
-��+P?(��2eEx��#di�	L�dG4���%ݽ����2�[uV.�D���d$��z�R'�ڃ'+5q2�=�q�R'�ڃ'u�ɤ�A����8��8Y���Q�A����8��8٨;N&ur����ɨ� ��
-]q2�5�q�2'#ڃ'u�ɤ�A����8��8Y���Q�A����8��8٨;N&ur����ɨ� ��JM��jr����ɨ� ��F�q2�c��d�&NF�9NVj�dT{��d�&NF�9N6ꎓI�'+�'�x=�q�W��b�q����Ɉ� ��B��ɠ�A����8��8Y���Q�A����8��8٨;N&ur����ɨ� ��JM��jr����ɨ� ��F�q2�c��d�&NF�9NVj�dT{��d�&NF�1N6h�d2{�dE�8ɚ�8Y����A����8��8٨;N&ur����ɨ� ��JM��jr����ɨ� ��F�q2�c��d�&NF�9NVj�dT{��d�&NF�9N6ꎓI�'+5q2�=�q�R'�ڃ'+t��h��ɆL�Ld�q����Ɉ� ��JM��jr����ɨ� ��F�q2�c��d�&NF�9NVj�dT{��d�&NF�9N6ꎓI�'+5q2�=�q�R'�ڃ'+5q2�=�q�P/q2�s��d�&NF�9NVj�dT{�d��8͚�8٘;N&tr����ɨ� ��JM��jr����ɨ� ��F�q2�c��d�&NF�9NVj�dT{��d�&NF�9N6ꎓI�'+5q2�=�q�R'�ڃ'+5q2�=�q�Qw�L��8Y���Q�A����d4k��de&NF�9N6ꎓI�'+5q2�=�q�R'�ڃ'+5q2�=�q�Qw�L��8Y���Q�A����8��8Y���Q�A�����dR� ��JM��jr����ɨ� ��JM��jr�l�'�:1NV芓Ѭ9����8��8Y���Q�A�����dR� ��JM��jr����ɨ� ��JM��jr�,�K���8Y���Q�A����8��8Y���Q�A�����dR� ��JM��jr����ɨ� ��JM��jb�l���d��Ɋ\q2�5�q�2'#ڃ'�*N��q���[��8��{\�ɯ{#N~~>������#�8�a�����ן����w��/O��^�w���߅��}���~��7=~��//�F��e�B���9�/�Vj^��j�˰������\���Q�A�͍�{sR� ��JMo�jro����� ��
-]�9�5ǽ�1woN���\���Q�A�͕�����\���Q�A�͍�{sR� ��JMo�jro����� ��JMo�jron�ݛ�:�7WjzsT{�{s��7G��7WjzsT{�{s��ޜ�1Ƚ�Rӛ�ڃ؛+t��h����Lo�hron�ݛ�:�7WjzsT{�{s��7G��7WjzsT{�{s��ޜ�1Ƚ�Rӛ�ڃܛ+5�9�=Ƚ�Rӛ�ڃܛu�椎A�͕�����\���Q�A�͕�����ܨ�7'uRo��so�����
-\�9�5ǽ�2ӛ#ڃܛ�қ�:�7WjzsT{�{s��7G��7WjzsT{�{s��ޜ�1Ƚ�Rӛ�ڃܛ+5�9�=Ƚ�Rӛ�ڃܛu�椎A�͕�����\���Q�A�͕�����ܠ����9���zs$k�{se�7G��7WjzsT{�{s��ޜ�1Ƚ�Rӛ�ڃܛ+5�9�=Ƚ�Rӛ�ڃܛu�椎A�͕�����\���Q�A�͕�����ܨ�7'uro����� ��JMo�jbo��՛�Ys؛2�9�=ǽ�2ӛ#ڃܛ+5�9�=Ƚ�Rӛ�ڃܛu�椎A�͕�����\���Q�A�͕�����ܨ�7'uro����� ��JMo�jro����� ��B����A�͕�����\���Q�A���zs4k�{sc�ޜ�1Ƚ�Rӛ�ڃܛ+5�9�=Ƚ�Rӛ�ڃܛu�椎A�͕�����\���Q�A�͕�����ܨ�7'uro����� ��JMo�jro����� ��Fݽ9�c�{s��7G��7W���Ѭ9�͕�����ܨ�7'uro����� ��JMo�jro����� ��Fݽ9�c�{s��7G��7WjzsT{�{s��7G��77���I�ܛ+5�9�=Ƚ�Rӛ�ڃܛ+5�9�=Ƚ�QwoN���\��7G��7WfzsD{�{s��7G��77���I�ܛ+5�9�=Ƚ�Rӛ�ڃܛ+5�9�=Ƚ�P/�9�s�{s��7G��7WjzsT{�{s��7G��77���I�ܛ+5�9�=Ƚ�Rӛ�ڃܛ+5�9�=���Aӛ��s؛+r��H����Lo�hro~�M���ǹ7�λ{������wO���b����_N��z8?������E��P>��</����_�����:��_�������{��/���զ�����<�M���Q\��;)���+�w�	�o��K8��~�H��7)5}�=�}�BW߄f�qߤ��M�� �MF�}�c��&��oB��oRj�&T{��&��oB��o2��H��7)5}�=�}�R�7�ڃ�7)5}�=�}�Qw�D��I��P�A��	��I��P�A��&R� �M�<�M(^�aߤ��7�Xs�7)3}�=�}�P/}�s��&��oB��oRj�&T{��&��oB��o2��H��7)5}�=�}�R�7�ڃ�7)5}�=�}�Qw�D��I��P�A��	��I��P�A����̞þI��oB��oRf�&D{��&��oB��o2��H��7)5}�=�}�R�7�ڃ�7)5}�=�}�Qw�D��I��P�A��	��I��P�A��&R� �MJM߄jrߤ��M�� �M
-]}�5�}�!�7�s�7)3}�=�}�R�7�ڃ�7)5}�=�}�Qw�D��I��P�A��	��I��P�A��&R� �MJM߄jrߤ��M�� �MJM߄jr�$�K���I��P�A��	�ľI��oB��o2����7)5}�=�}�R�7�ڃ�7)5}�=�}�Qw�D��I��P�A��	��I��P�A��&R� �MJM߄jrߤ��M�� �MJM߄jr�d��7�:�oRj�&T{�&���	͚�I���A��&R� �MJM߄jrߤ��M�� �MJM߄jr�d��7�:�oRj�&T{��&��oB��oRj�&T{��&��1�}�R�7�ڃ�7)5}�=�}�R�7�ڃ�7u�M��A���&4k��&e�oB��oRj�&T{��&��1�}�R�7�ڃ�7)5}�=�}�R�7�ڃ�7	��7�:�oRj�&T{��&��oB��oRj�&T{��&��1�}�R�7�ڃ�7)5}�=�}�R�7�ڃ�74}�=�}�"W߄d�qߤ��M�� �M�-���{�����o:�c������������My��?~��˟v��?�s^�����_޾s������i�"��!|�p�Cxy�|���o|��_^��j�˿��_�E��)5/�B���_J�˿P�A~��Rǡڃ�u�q��A�㔚8��8N�+�C��8�Sf�8D{��8��8��1�q�Rǡڃ�)5q�=�q�Rǡڃ�u�q��A�㔚8��8N���P�A�㔚8��8Ψ;�#ur���q�� �qJM�jr���q�� �qF�q�c��8e��8��0�S���P�9�㔙8��8N��8�9�q�Rǡڃ�)5q�=�q�Rǡڃ�u�q��A�㔚8��8N���P�A�㔚8��8Ψ;�#ur���q�� �qJM�jr���q�� �qMGf�a���!Ys�)3q�=�q�Rǡڃ�u�q��A�㔚8��8N���P�A�㔚8��8Ψ;�#ur���q�� �qJM�jr���q�� �qF�q�c��8�&�C�9�Sj�8T{�8��8͚�8ΐ���9�㔙8��8N���P�A�㔚8��8Ψ;�#ur���q�� �qJM�jr���q�� �qF�q�c��8�&�C�9�Sj�8T{��8�&�C�9��%�ur���q�� �qJM�jb��ǡYs�s�q��A�㔚8��8N���P�A�㔚8��8Ψ;�#ur���q�� �qJM�jr���q�� �qF�q�c��8�&�C�9�Sj�8T{��8�&�C�9�3��H��)5q�=�q�BW�f�q���q�� �qF�q�c��8�&�C�9�Sj�8T{��8�&�C�9�3��H��)5q�=�q�Rǡڃ�)5q�=�q�QwG��8N���P�A�㔚8��8N���P�A�㌺�8R� �q
-]q�5�q�2�!ڃ�)5q�=�q�QwG��8N���P�A�㔚8��8N���P�A��z��@���)5q�=�q�Rǡڃ�)5q�=�q�QwG��8N���P�A�㔚8��8N���P�A���8�̞�8N�+�C��8�Sf�8D{��8*�D����]�hO�q���������&�{�3�_r�:��폦�m��g�G.i\^��O_����?�:�?�6��o�?~����ry1�_ϯ�z�}~�{~}�r�����t�۱�^n?�}������E?���[��@�=m�����]M���F[�^w=�O^0^�Xs���m����19���kC�k"k��6d��&���ikC�ak"k���~�Ȟ��
�Ǭ��9~�ڐyƚȚ�'�
����9~�Z���j {���6d�&����jC�j"k���6d�&���j!�j�k��6�z����1~�ڀy��Ě�'�
����9~�Z��)j {���6d�&���jC��i"k���6d�&����iA�'���9~nڐyl�Ț㇦
�g���9~bڐy`�Ț�ǥ������YiC�Qi"k��6d��&���)i#���	��G���'���1~>ڀy<�Ě㇣
�g���9~2ڐy0�Ț�Ǣ�������hC�h"k��6d��&���ihC�ah"k���~Ȟ��
�Ǡ��9~ڐy�Ț�'�
����9~��6yy���s��!��3�5�>2�=Ys�Գ�C�^��#��O<��s���!�3�5�;2�:Ys���!�3�5Ǐ9r?�d��3Ά�#�D�?�l�<�Ld���͆���D�?�,��d3�=��52�5Ys�P�!�L3�5�O424Ys�8� ���@�?�l�<�Ld���F\�1x=�O101�Xs�� ��@�?�l�<�Ld���ˆ̳�D�?�l�<�Ld��c˂�O-�s�̲!��2�5�,2�+Ys���!�2�5Ǐ*r?�d��sʆ�c�D�?�l�<�Ld��ʆ��D�?�,��t2�=��&q=�L��?�l�<�Lb��SɆ�C�D�?�,��D2�=��#2�#Ys�0�!�,2�5�O"2"Ys��m���19��dC�d"k�@6d�?&����cC��c"k�=�~�Ȟ��
�ǎ��9~�ؐy�Ț�'�
����9|�X�y���g���5&�z�46`�3&���)���a�C��%��_=�{����O��x���߾�/������㼀��?�ry��ǯ�}�������}�����+=��J}�H�Ǘ�G��	���/��և/x�=�_$�f����	 ڃ�"��	�:�EJ͋P�A~��R�"T{�_$�ԼH���	u�H��1�/Pj^$�j���	�ڃ�"��E�� �H���E��A~��R�"T{�_$�ԼH���	(5
�=��Qw�B���E����1lY�bk�se�gA��h�%iurԢ�T-�� w-JM؂jrڢԴ-�� �-F�y�c���pA��qQj"T{�3��sA��t1�N]H��(5��=Ƚ�R��ڃ��(5��=�ՋA����s�(r�/H��/�L��hr����/�� 0F�	�c�#���A���QjBT{�S���A���1��aH��(5E�=�M�RŠڃ��(5]�=�e�QwC��8F��cP�A�c��@��DF���A�氒1d2"{�Ce��A���QjbT{�s���A���1�NfH��(5��=�݌RΠڃ��(5��=���Qw>C��F�)hP�Anh�����F��hP�A.i�zIi@���(55
�=�=�RԠڃ��(t55h�W5��Y
�c�����A���Qj�T{�����A���1�NlH��(5�
�=ȝ�Rڠڃ��(5�
�=ȵ�QwnC���F�)nP�Ann������F��nP�A.o���R� �7JM}�jb���Ys��(3
�=��Qw�C��G�)qP�Anq����G��qP�A.r���R� G9JM��jr��Ԅ9�� �9JM��jr�cԝ�:9�Qj
-T{��&�A�9�Qj:T{�K��T��1���BW��f�q���;�� ';JM��jr�cԝ�:9�Qj�T{���&�A�9�Qj�T{��^P� G<JMŃjrǣԄ<�� �<JM˃jr�cԝ�:9�Qj�T{���&�A�9�Qj�T{��&�!��0�Q�{��9�{�������OQ�~�s�s��W>���o|���?<�x����%�y\��?��o���v����=������\I��<�==��=O�w��)|�|����} ���������"����P{��?���ũ볬��u�NJM<�jb<��O�YsO)3��=��Qw<E��xJ���P�A����x
-��xJ���P�A�����)R� �SJM<�jr<���S�� �SJM<�jr<e�O�:9�Rj�)T{��)�&�B�9�Rj�)T{��)��x��1H�2����cO)p�S(��S�L<�hr<%�K<��xJ���P�A����x
-��xJ���P�A�����)R� �SJM<�jr<���S�� �SJM<�jr<e�O�:9�Rj�)T{��)�&�B�9�Rj�)T{�)�&�"��0�R䊧��9����x
-��xJ���P�A�����)R� �SJM<�jr<���S�� �SJM<�jr<e�O�:9�Rj�)T{��)�&�B�9�Rj�)T{��)��x��1��RO�ڃO)5��=��BW<�f�a<e��SD��S�L<�hr<���S�� �SJM<�jr<e�O�:9�Rj�)T{��)�&�B�9�Rj�)T{��)��x��1��RO�ڃO)5��=��RO�ڃO	�O�:9�Rj�)T{��)�&�B�1�R芧Ь9�����)B� �SJM<�jr<���S�� �SJM<�jr<e�O�:9�Rj�)T{��)�&�B�9�Rj�)T{��)��x��1��RO�ڃO)5��=��RO�ڃOu�S��A����x
-��xJ�+�B��8�Rf�)D{��)��x��1��RO�ڃO)5��=��RO�ڃOu�S��A����x
-��xJ���P�A����x
-��xʨ;�"ur<���S�� �SJM<�jr<���S�� �SF���c�)��x
-͚�xJ����A����x
-��xʨ;�"ur<���S�� �SJM<�jr<���S�� �SB��S��A����x
-��xJ���P�A����x
-��xʨ;�"ur<���S�� �SJM<�jr<���S�� �SM<Ef�a<��O!YsO)3��=���q��)��x�T:�����������/w���O�3�x�i�S������h�^���z�������G�����/��_4���o�~�|����{_����j[�w^���>��<P�>~�$��go�=x��6��&���&Ω��c���Sj�8T� 6qN]M�=HM�C�M�5�M�3W�hb��4q��Al✺�8V{�8��&���&Ω��c���Sj�8T� 6qN]M�=�M�SW�jb���ıڃ��)5M�c�8��&���&Ω��c���s�j�X�Al┚&�1M�3�5q,^�Q��s�b�a����1ڃ��u7q��Al✺�8V{�8��&���&Ω��c���Sj�8T� 6qN]M�=�M�SW�jb���ıڃ��)5M�c�8��&���&Ω��c���s�j�X�Aj���84{��8G��8&k�8g�&���&Ω��c���Sj�8T� 6qN]M�=�M�SW�jb���ıڃ��)5M�c�8��&���&Ω��c���s�j�X�Al┚&�1�M�SW�jb���ıڃ��9��ıYs��)r5qH�6q�\M�=�M�SW�jb���ıڃ��)5M�c�8��&���&Ω��c���s�j�X�Al┚&�1�M�SW�jb���ıڃ��9u5q�� 6qF�M�s�8��&���&Ω��c���s蹉c�氉Sf�8D� 6qN]M�=�M�SW�jb���ıڃ��)5M�c�8��&���&Ω��c���s�j�X�Al┚&�1�M�SW�jb���ıڃ��9u5q�� 6qJM���&Ω��c���s蹉c�氉s�j��Al┚&�1�M�SW�jb���ıڃ��9u5q�� 6qJM���&Ω��c���s�j�X�Al✺�8V{�8���Cub���ıڃ��9u5q�� 6qN]M�=�M�R�ġ:��s蹉c�氉s�j��Al✺�8V{�8���Cub���ıڃ��9u5q�� 6qN]M�=�M�QwG��&Ω��c���s�j�X�Al✺�8V{�8���Cub���ıڃ��9u5q�� 6qN]M�=HM�BW�f�Q��s�d�a����1ڃ��a�u������3�=5q�=���=|z>�Z��M��̥����������/?���V�Z����颽�R��w=�v�v�'W���?y�E�?A��?Qj�T{����?A��?1��OH�ܟ(5�	�=���Rӟ�ڃܟ(5�	�=���QwB���D��OP�A�O������D��OP�A�O���R� �'�<�'(^�a��՟�Xsܟ(3�	�=���P/�	�s����?A��?Qj�T{����?A��?1��OH�ܟ(5�	�=���Rӟ�ڃܟ(5�	�=���QwB���D��OP�A�O������D��OP�A�O���̞��D��?A��?Qf�D{����?A��?1��OH�ܟ(5�	�=���Rӟ�ڃܟ(5�	�=���QwB���D��OP�A�O������D��OP�A�O���R� �'JM�jr���'�� �'
-]�	�5���!ӟ�sܟ(3�	�=���Rӟ�ڃܟ(5�	�=���QwB���D��OP�A�O������D��OP�A�O���R� �'JM�jr���'�� �'JM�jr"�K���D��OP�A�O������D��?A��?1��O�ܟ(5�	�=���Rӟ�ڃܟ(5�	�=���QwB���D��OP�A�O������D��OP�A�O���R� �'JM�jr���'�� �'JM�jrb�ݟ�:�?Qj�T{����͚��D��O�A�O���R� �'JM�jr���'�� �'JM�jrb�ݟ�:�?Qj�T{����?A��?Qj�T{�������1���Rӟ�ڃܟ(5�	�=���Rӟ�ڃܟu�'��A�O��4k��e�?A��?Qj�T{�������1���Rӟ�ڃܟ(5�	�=���Rӟ�ڃܟ�ҟ�:�?Qj�T{����?A��?Qj�T{�������1���Rӟ�ڃܟ(5�	�=���Rӟ�ڃ؟4�	�=���"W�d�q���'�� �'���O�{������?9���|���OL�L�_u��Vc��4�{_h}&9�'��<��_~�������_~����$'���O�3���+�����������c���ox��{<�}~}j���xG=��ڃ������(���j���>?X���j��~>�4<8��Q6{�<���K���h����V=��ڃ��O/�����j�����=���Q�gY���ݧOV=��ڃ�����J=��ڃ�����_�z��
�߯">�~���Ϣ:��O��Tϟ�����z�ix�$��go�=x��~�z��
��W�O?
�/s�,�c�@}�{~y����7�<PO���l��go�=x�~�{�?��>zì��ɇ��>�_p�YF���z�9x����7�<PO?�z��
�����ӣTϟ������AO?
�R]�eu�����'��?{C��u�/U�y+�=�/`Uj^��j�X��_�J���*5/`E���J�XQ�A~�R�VT{�_�j��VR� ��U�y+�=�/`U�z+�5�/`Uf^��h�X��`�:���Rs���J�T{�`(50P�A>�a�}���1�0���� �Pj`�ڃ|�C�9��j�����A>����@����Rs���J�T{�`u� u�e�`�x=�0�`�Xs|�C�9��h��^`�:���Rs���J�T{�`(50P�A>�a�}���1�0���� �Pj`�ڃ|�C�9��j�����A>����@����Rs���J�T{`40��9<���u�ɚ���D{�`(50P�A>�a�}���1�0���� �Pj`�ڃ|�C�9��j�����A>����@����Rs���J�T{�`u� u�����=�0���� �P�:��f��C���=�0���� �Pj`�ڃ|�C�9��j�����A>����@����Rs���J�T{�`u� u�����=�0���� �Pj`�ڃ|�C����A>����@����Rs���
-]0Ь9>�a�}���1�0���� �Pj`�ڃ|�C�9��j�����A>����@����Rs���J�T{�`u� u�����=�0���� �Pj`�ڃ|�è���c�`(50P�A<���u�͚���D{�`u� u�����=�0���� �Pj`�ڃ|�è���c�`(50P�A>����@����Rs���F�0H�|�C�9��j�����=�0���� �0�>�A��
-]0Ь9>����@����Rs���F�0H�|�C�9��j�����=�0���� �����s�`(50P�A>����@����Rs���F�0H�|�C�9��j�����=�0���� �0h`��sx�C����5�0���� ��s��~����{�0����v������x�c}�|��i��_?��o�ïo�^��v��������zy9<|����/�����o��/�x���L��/�V]�eu��w/�8���go�=x�>�=�[���j�����g��z��
��W���_>:u}��1x�>�}�l��go�=x�>�=�>S���go�=x�~������J=��ڃ�[�5���8��A>��Ԝ�A��<�Rs���8J�yT{��4�q��9>��̜�A��<�Rs���8J�yT{���u��!u�y��<�=��q���8�� ��Qj��ڃ|G���8��A>��Ԝ�A��<�Rs���8J�yT{���u��!u�y��<�=��q���8�� ��Q�:��f��yc��8��A>��Ԝ�A��<�Rs���8J�yT{���u��!u�y��<�=��q���8�� ��Qj��ڃ|Ǩ�<�c���(5�qP�A>��Ԝ�A��<�Rs���8F��qH�|G�9��j�y���8h���Qf�� ڃ|Ǩ�<�c���(5�qP�A>��Ԝ�A��<�Rs���8F��qH�|G�9��j�y��<�=��q���8�� ��1�>�C���8J�yT{���(5�qP�A>��Ԝ�A��<�Q�yR� ��Q��<��cxG��<�5��q���8�� ����<�s���(5�qP�A>��Ԝ�A��<�Rs���8F��qH�|G�9��j�y��<�=��q���8�� ��1�>�C���8J�yT{���(5�qP�A>��Ԝ�A��<�As�̞��8�\�q��9>��̜�A��<�Rs���8F��qH�|G�9��j�y��<�=��q���8�� ��1�>�C���8J�yT{���(5�qP�A>��Ԝ�A��<�Q�yR� ��Qj��ڃ|G�9��j�y���8h���1d���s|G�9��h�y��<�=��q���8�� ��1�>�C���8J�yT{���(5�qP�A>��Ԝ�A��<�Q�yR� ��Qj��ڃ|G�9��j�y��<�=��q�z9����8J�yT{���(5�qP�A<���u͚��8���q�|G�9��j�y��<�=��q���8�� ��1�>�C���8J�yT{���(5�qP�A>��Ԝ�A��<�Q�yR� ��Qj��ڃ|G�9��j�y��<�=��q����:�<�Rs���8
-]�qЬ9>��̜�A��<�Q�yR� ��Qj��ڃ|G�9��j�y��<�=��q����:�<�Rs���8J�yT{���(5�qP�A>�c�}��1��q���8�� ��Qj��ڃ|G�9��j�y���8��A<���u͚��8��yD{���(5�qP�A>�c�}��1��q���8�� ��Qj��ڃ|G�9��j�y�^��:�<�Rs���8J�yT{���(5�qP�A>�c�}��1��q���8�� ��Qj��ڃ|G�9��j�y��<�=��q��� Ys|G�9��h�y��"����8�ǹ�Fs|��{��8|��x��qΟ8�����������O?~���8Ϗw��%��e���ǣ��e����\���]�7�ΊYs|TĐ�)Bd��EA�"@��1d��Ys|KĐ9%Bd��!C��5�WD��#"���1`.��Xs|?Đ9Bd���C�v�5ǗC����s|6Đ�Bd���C�d�5�C�{!D�_�M^���c�O�2�B��9�bȜ	!���H�!s#�Ț�!��B��9>b�\!���6�!s�Ț�� F\wA�� �GA@�9>	b�\!����!s�Ț�c ��-"k�/�r����!s�Ț� ��	"k��2�?��9��!�}�Ȟ�����"k��~2g?��9>�a��� ���� �� {��}2�>��9��a�u���1>�a��� ���ʇ �� {�O|2>��9��aȜ� �����!sۃȚ���܇=��9>�a�\� �����!s҃Ț���="k��yr�������!sɃȚ�;��"k��x27<��9��!�}�Ȟ��<_� �j
-owm�� �z�w0w;H�9��q���8&���0d.vYs|�Ð9�Ad��C�V�5Ǘ:�u��s|�Ð��Ad��C�D�5�:��D�_��>�d��iC�2�5�w9��D��0dnrYsx�C�9�`��9�k�]��-��5LJ8�;D�_��>�d��	C��5��7��D��0dnoYs|yC����=�g7��D���0dNnYs|pÐ��Ad��
A�c@���0d.mYs|gÐ9�Ad��
#�^��
���x5��5��$���0dNkYs|X��Ad��U
A�@���0d.jYs|OÐ9�Ad��1
C��5Ǘ4�i��s|FÐ��Ad��

C��5�4��D�_ϸM^�g�c�Og2�3��9��aȜ� ���h������b����{��e2�2��9��aȜ� ���P�!s'�Ț�+��G2��9>�a�\� ���>�!s�Ț����m"k�/cr�����,�!s�Ț���I"k�b2�0��9��!�}Ȟ�S��%"k�`q�� �z��`070H�9��!�}�Ȟ�����"k�o_2�/��9>|a�ܽ ���� �� {�O^2/��9�waȜ� ���؅!s�Ț�K�܇.��9>sa�\� ���ƅ!s�Ț���}"k��[r������e�����sւĚ���M"k�/Zr�������!s͂Ț�[��)"k�Y2w,��9�bq���8&���0d.XYs|�9_Ad���
-C�v�5Ǘ+�W��s|��ZAd���
-C�d�5�+�{D�^�b�U�Xcx��x�Ry�c|�€9SAb��
-��p�F}�󉊫��/T~�q��T<<�=���D*�G�'*�׉������w_����~|{���w̏��ɿ��op���:8S�����ַˇ���ۨ������#7o��[u}��1x�>޽���Rϟ������|�to��go�=x��~^��Q���7�<�r����F]�eu��4�Rsj��c+J͵T{��(5WP�A>�b�}s��1�WW���+�� ^Qj.��ڃ|{E�9��j�����
-�=�X��,�� aQj���ڃ|�E�9Ăj�)��[,��A�ƢԜcA�� �Rs���,J�QT{�ϲ�r��9ȗY���,�� gQj���ڃ|�E�9Ђj���-��A�ҢԜiA��P�Rs���[-
-]�ZЬ9>�b�}���1�[���-�� mQj���ڃ|�E�9܂j�����-��A�ޢԜoA����Rs���.J�T{�ϸu�q!u�%���=��\��k.�� �sQj��ڃ|�Ũ���c���(5g]P�A<��u�͚��.��qD{�ϻu�w!u�����=�G^��+/�� �yQj��ڃ|�Ũ���c���(5�^P�A>���\|A���Rs���/F�w_H�|�E�9��j������=��_��0�� ��1�C��+0�<��A�z�(p]�A����2s��s0B�܃u�E��$�=�Ga���0�� ߅Qjàڃ|ƨ�6�c���(5�aP�A>��\�A��F�Rs$��31F�wbH�|)F�9�j���Z�=��b���1�� ��1hnƐ�sx5F��l�5LJc���1�� ߎQj�Ǡڃ|>ƨ�~�c�/�(5'dP�A>"��\�A����RsH��S2FݷdH�|MF�9'�j�A���=�7e���2�� ��1�+C���2J�iT{���(5�eP�A�/��u`͚�3�̍"{���(3gf�A>4��\�A��֌Rsl��s3F��fH�|qF�99�j������=�wg���3�� ��1�=C���3J��T{��(5hP�A�A���A���P/wh@��|�F�9E�j�1��
�=��h�ҠYs|�Ƙ�&
�c���(5giP�A>L��\�A��6�Rs����4F��iH�|�F�9Q�j���J
�=�wj��C5�� ��1�UC��k5J͹T{��(5kP�A�Y���A��l�Q��R� _�QjNנڃx�F��z
�5��k��6�� ��1�aC��+6J�T{��(5�lP�A�e���A����Q�=R� _�QjNڠڃ|�F��j�j�]��
�=ȧm��oې:���Rs���7JͅT{�o�(5GnP�A>sc�}��1��n�NݠYs|�F��v�h����
�=�'o��oސ:��Rs����7J��T{�o�(5�oP�A>#���P� _�QjN�ڃ|G����j����=ȧp��o�:��Rs��8J�ET{�o�(5GqP�A<�c���!���2�"�i$k���(3�q�A��s|�E���q��s}���D���7r�F����ӇOx#g}�|#�Ӻ�������_���/��j����{�8�W��с�}H��>�r�ݎ���"pH��1ȇT��C*�� RQj��ڃ|HE�9��j�!��C*��A>���RA����RsH��C*J�!T{�4�T��9>���RA����RsH��C*J�!T{��uR!u�!��
-�=ȇT��C*�� RQj��ڃ|HE��C*��A>���RA����RsH��C*J�!T{��uR!u�!��
-�=ȇT��C*�� RQ�:��f��!c�C*��A>���RA����RsH��C*J�!T{��uR!u�!��
+GYSᠵ�\�(k*�6+#M�C��a�����Ae��Q�T8(m W8����p�sl����~��������?���;~��x&������?���������|:<��\.��?a7{iͷ�����>�x���;���ۗ�Q���xǺ={��������Vʺ={�����7��흳�Y�����k8=H���kw����Vʺ={�����k8Z���k߷�_�͓��gٺ�w���os��u{����;��_��u{����;֧Ã�	���g�v^�x<��9�e�ܱ�7B*k^1���+&�5��Dk��ʚWL�����Ic���$��WL*k^1���+&�5��Dk��ʚWL�����Ic���$��WL*k^1���+&�5��Dk��ʚWL�����Ic���$��WL*k^1���+&�t���,��ʙ��
��Xg�N��q��&nGk9nW���hm ��ʚ��
��Xg�N��q��&nGk9nW���hm ��ʚ��
��Xg�N��q��&nGk9nW���hm ��ʚ��
��Xg�N�Hq�rnq;_�0nW����p�+g�v�6��va���`]��+k�v�6��veM܎�rܮ�����@�ۍu��d]��+k�v�6��veM܎�rܮ�����@�ۍu��d]��+k�v�6��veM܎�rܮ�����@�ۍ4q;9�q�R�����]9�����+k�v�6��vc�q;Y ��ʚ��
�]Y�����+k�v�6��vc�q;Y ��ʚ��
�]Y�����+k�v�6��vc�q;Y ��ʚ��
�]Y�����+���Y8�ۍ2q;)�q�r&nGi9nW���hm ��ʚ��
��Xg�N��q��&nGk9nW���hm ��ʚ��
��Xg�N��q��&nGk9nW���hm ��ʚ��
�]X/q;XW ��ʚ��
�]Y�����+���Y8�ۍs��$]��+k�v�6��veM܎�rܮ�����@�ۍu��d]��+k�v�6��veM܎�rܮ�����@�ۍu��d]��+k�v�6��veM܎�rܮ�����@�ۍu��d]��+k�v�6�v%q;:�q�r&nGi9n7���urܮ�����@�ە5q;Z�q��&nGk9n7���urܮ�����@�ە5q;Z�q��&nGk9n7���urܮ�����@�ە5q;Z�q��&nGk9n7���ubܮ�#nGg�8nW���(m ��ʚ��
��Xg�N��q��&nGk9nW���hm ��ʚ��
�]X/q;XW ��ʚ��
�]Y�����+k�v�6��vc�q;Y ��ʚ��
�]Y�����+k�v�6�v#M�N��aܮ�#nGe�8nW���(m ���j��?���.�����ϱ���W����������L�������������t��<�l�.�o�|��w��ǧ�o矯|�����60:N��}����Qv6nGy:<��]�ܞ�"m����p�����+��X�����w{����;W��ۗ���x��p�:�((k�2���|�AYs��
�ʚ�hm �e��]��@�ˠ��ˀ��]e�]�6��2(k�2���|��X�]�.@�ˠ��ˀ��]e�]�6�2(�ˀ���]�wH���.���.Z�w�5w��@�ˠ��ˀ��]c�wȺ��.���.Z�w�5w��@�ˠ��ˀ��]c�wȺ��.���.Z�w�5w��@�ˠ��ˀ��]c�wȺ��.���.Z�w�t�e@g��.�r�.J�w�u�e ��ʚ�hm �eP��e@k�.���.Z�w�u�e ��ʚ�hm �eP��e@k�.���.Z�w�u�e ��ʚ�hm �eP��e@k�.���.Z�w�u�e ���ʹ�e@�k�eP�q����ʙ�(m �e��]��@�ˠ��ˀ��]e�]�6��2(k�2���|��X�]�.@�ˠ��ˀ��]e�]�6��2(k�2���|��X�]�.@�ˠ��ˀ��]e�]�6��2(k�2���x��Hs����ûJ9�2��p|�A9s��
�ʚ�hm �e0�y�����2(k�2���|�AYs��
�ʚ�hm �e0�y�����2(k�2���|�AYs��
�ʚ�hm �e0�y�����2(k�2���|�AYs��
ĻJ:�2��px��(s�����ʙ�(m �eP��e@k�.���.Z�w�u�e ��ʚ�hm �eP��e@k�.���.Z�w�u�e ��ʚ�hm �eP��e@k�.���.Z�w��r��+��2(k�2���|�AYs��
ĻJ:�2��p|��8�]�.@�ˠ��ˀ��]e�]�6��2(k�2���|��X�]�.@�ˠ��ˀ��]e�]�6��2(k�2���|��X�]�.@�ˠ��ˀ��]e�]�6��2(k�2���|��X�]�.@�ˠ��ˀ��]%w�Y8�ˠ��ˀ��]c�wȺ��.���.Z�w�5w��@�ˠ��ˀ��]c�wȺ��.���.Z�w�5w��@�ˠ��ˀ��]c�wȺ��.���.Z�w�5w��@�ˠ��ˀ��]c�wȺ��.�����,�eP��e@i�.���.Z�w�u�e ��ʚ�hm �eP��e@k�.���.Z�w��r��+��2(k�2���|�AYs��
�ʚ�hm �e0�y�����2(k�2���|�AYs��
�ʚ�hm �e0��e g��.�R���,�eP��e@i�.���u�?�v����������������.����w��ݷ_�o��?'�/��Cy�r��8.3��o�>}����g���O�n���?���������{�ܗ��ſ~�����v�'�2���?���>��t����,Z��Ye�t�
�鬲f:���t�X�t�����ʚ�,Z��Ye�t�
�鬲f:���t�X�t�����ʚ�,Z��Ye�t�
�鬲f:���t�H3�%g�p:��c:����tV93�Eiy:���΢��<�5�9�%��鬲f:���tVY3�Eky:���΢��<�5�9�%��鬲f:���tVY3�Eky:���΢��<�5�9�%��鬲f:���tVY3�Ekq:��c:����t�(3�%e�x:���΢��<�U�Lg��@��*k��hm Og�uNgɺ�y:���΢��<�U�Lg��@��*k��hm Og�uNgɺ�y:���΢��<�U�Lg��@��*k��hm Og��2��
+�鬲f:���tVY3�Ekq:��c:����t�8�t�����ʚ�,Z��Ye�t�
�鬲f:���t�X�t�����ʚ�,Z��Ye�t�
�鬲f:���t�X�t�����ʚ�,Z��Ye�t�
�鬲f:���t�X�t�����ʚ�,Z��Y%�Yt���ʙ�,J��Yc��Y�.@��*k��hm Og�5�Y�6���ʚ�,Z��Yc��Y�.@��*k��hm Og�5�Y�6���ʚ�,Z��Yc��Y�.@��*k��hm Og�5�Y�6���ʚ�,Z��Yc��Y�.@��*�΢�p<�U�LgQ�@��*k��hm Og�uNgɺ�y:���΢��<�U�Lg��@��*k��hm Og��2��
+�鬲f:���tVY3�Eky:���΢��<�5�9�%��鬲f:���tVY3�Eky:���΢��8�5�Lg��8��*�΢�p<�U�LgQ�@���/=�t?�6�}�Sݟ�����fwOO�_k��fy&������/��y#��7P�7O߽���z:��b�f����������\o_��p:{��� �X�g�X�c=��<>H���kw�O���Giݞ�bm������p/��Y�.���k�{����+��X�_��YZ�g�X�c�^���]�lm �PIǻ���8|�s�w����.@g�dk�]��:������5�D��w:�x [��t��.@�6���]�lm ��X��ɺ�]��:������u���
�w:�x [��Tּ����]�lm ��Yǻ���@z��n�dg��]�ʙw�t���u���
�w:�x [��t��.@�6���y Z ��Yǻ���@|���w����.@g�dk�]�ʚw�u���u���
�w:�x [��t��.@�6���y Z ��Yǻ���@z��n�dg��]��9������5�D��w:�x [��t��.@�6���]�lm �PY�.@�.@|���w����.@g�dk�]��:������5�D��w:�x [��t��.@�6���]�lm �PY�.@�.@x�s~{ _��]�N������w:�x K��4�yЄ�+�8�8h���AgM��@<h��	[�M�5Mк�񠉳��&lm 4q�qЄ�
ă&�:����x�DYs���8�8h���AgM��@<h��	[HM�t4Ag�蠉SnMXY8<h��	K�M�u4ak񠉲�	Z 4q�qЄ�
ă&�:����x��Y�A�6�(k��u�AgM��@<h��	[�M�u4ak񠉲�	Z 4q�qЄ�
ă&�:����t��I��&�,4Q�q���Ã&�9����x��Y�A�6�8�8h���Ae�A�.@<h��	[�M�u4ak񠉳��&lm 4Q�4A�ă&�:����x��Y�A�6�8�8h���Ac�MȺ񠉳��&lm 4q�qЄ�
��&N�4ag��r�	J 4q�qЄ�
ă&�:����x��Y�A�6�(k��u�AgM��@<h��	[�M�u4ak񠉲�	Z 4q�qЄ�
ă&�:����x��Y�A�6�(k��u�AgM��@:h��Av�8�8h���Ae�A�.@<h��	[�M�u4ak񠉳��&lm 4Q�4A�ă&�:����x��Y�A�6�8�8h���Ae�A�.@<h��	[�M�u4ak񠉳��&lm 4Q�4A���&N�4ag��s��&,m 4q�qЄ�
ă&ʚ�&h]�x��Y�A�6�8�8h���AgM��@<hb��	YW 4q�qЄ�
ă&�:����x��Y�A�6�(k��u�AgM��@<h��	[�M�u4ak頉���&�l4q���	+�M�s4ai�	��~Є?Ƿg�z���A��A�㕃&�/��x&M�^4�^����~������q��q��w�d�g�}ӇL���C�g�o?d�`]��}+k�o�6��oeM���r���ɾ��@ξ�uf�d]��}+k�o�6��oeM���b���#�Fg�8�6Ι}�tr���ɾ��@ξ�5�7Z�ٷ�&�Fk9�6֙}�ur���ɾ��@ξ�5�7Z�ٷ�&�Fk9�6֙}�ur���ɾ��@ξ�5�7Z�ٷ�&�Fk9�6֙}�ur���ɾ��@̾�td��,g�ʙ��
���Xg�M��ٷ�&�Fk9�V�d�hm g�ʚ��
���Xg�M��ٷ�&�Fk9�V�d�hm g�ʚ��
���Xg�M��ٷ�&�Fk9�V�d�hm g�ʚ��
���Xg�M�Hٷrn�7_�0�V‘}��p�}+g�o�6��oa�d�`]��}+k�o�6��oeM���r���ɾ��@ξ�uf�d]��}+k�o�6��oeM���r���ɾ��@ξ�uf�d]��}+k�o�6��oeM���r���ɾ��@̾�4�79�ٷR������[9�}����}+k�o�6��oc��7Y g�ʚ��
��[Y�}����}+k�o�6��oc��7Y g�ʚ��
��[Y�}����}+k�o�6��oc��7Y g�ʚ��
��[Y�}����}+�Ⱦ�Y8̾�2�7)�ٷr&�Fi9�V�d�hm g�ʚ��
���Xg�M��ٷ�&�Fk9�V�d�hm g�ʚ��
���Xg�M��ٷ�&�Fk9�V�d�hm g�ʚ��
��[X/�7XW g�ʚ��
��[Y�}����}+�Ⱦ�Y8ξ�sf�$]��}+k�o�6��oeM���r���ɾ��@ξ�uf�d]��}+k�o�6��oeM���r���ɾ��@ξ�uf�d]��}+k�o�6��oeM���r���ɾ��@ξ�uf�d]��}+k�o�6�o%�7:�ٷr&�Fi9�6֙}�ur���ɾ��@ξ�5�7Z�ٷ�&�Fk9�6֙}�ur���ɾ��@ξ�5�7Z�ٷ�&�Fk9�6֙}�ur���ɾ��@ξ�5�7Z�ٷ�&�Fk9�6֙}�ub���#�Fg�8�V�d�(m g�ʚ��
���Xg�M��ٷ�&�Fk9�V�d�hm g�ʚ��
��[X/�7XW g�ʚ��
��[Y�}����}+k�o�6��oc��7Y g�ʚ��
��[Y�}����}+k�o�6�o#M�M��a���#�Fe�8�V�d�(m g�0��?ǖ}�n�w�����f���z�><r�=�I�}?���������~��˿�p���×���Ǘ���Y?��ps�x���ϙ�����/��~(�����V֔�hm ��ʚ��
��[YS~���\~�,�ɺ���V֔�hm ��ʚ��
��[IG����q�m���&���[YS~���\~+k�o�6��oeM���r�m���&���[YS~���\~+k�o�6��oeM���r�m���&���[YS~���\~+k�o�6��oeM���r�m���&���[YS~���X~+�(��Y8.��3�7J�己����oeM���r���)���@.��5�7Z�己����oeM���r���)���@.��5�7Z�己����oeM���r���)���@.��5�7Z�己����o���o4��a�����Fc��VΔ�(m ���z)�����V֔�hm ��ʚ��
��[YS~���\~�,�ɺ���V֔�hm ��ʚ��
��[YS~���\~�,�ɺ���V֔�hm ��ʚ��
��[YS~���X~i�or6�o��7*��r��Fi��V֔�hm ���:�o�.@.��5�7Z�已��Fk��V֔�hm ���:�o�.@.��5�7Z�已��Fk��V֔�hm ���:�o�.@.��5�7Z�已��Fk��V�Q~��pX~e�oR6��o�L���r���)���@.��5�7Z�己����oeM���r���)���@.��5�7Z�己����oeM���r���)���@.��5�7Z�巰^�o��@.��5�7Z�已��Fk��V�Q~��p\~�,�I����V֔�hm ��ʚ��
��[YS~���\~�,�ɺ���V֔�hm ��ʚ��
��[YS~���\~�,�ɺ���V֔�hm ��ʚ��
��[YS~���\~�,�ɺ���V֔�hm ��J:�ot��o�L���r�m���&���[YS~���\~+k�o�6��oeM���r�m���&���[YS~���\~+k�o�6��oeM���r�m���&���[YS~���\~+k�o�6��oeM���r�m���&���[IG����q���)�Q�@.��5�7Z�己����oeM���r���)���@.��5�7Z�巰^�o��@.��5�7Z�已��Fk��V֔�hm ���:�o�.@.��5�7Z�已��Fk��V֔�hm ��F�򛜍��[)G����q���)�Q�@.��fU~�����י�~���9~<=ߝ?k���������ۯ�w����޿_T���̥�>����~����?n�������a��~���>��������׷�܇���|��c��������d~s���G�?�}�A`��ȓ]e�d�
�ɮ�f����dWY3�Eky�k�s�K�ȓ]e�d�
�ɮ�f����dWY3�Eky�k�s�K�ȓ]e�d�
�ɮ�f����dWY3�Ekq�k��쒳q8�U�1�Ee�x����좴�<�U�Lv��@����u�dWY3�Eky����좵�<�U�Lv��@����u�dWY3�Eky����좵�<�U�Lv��@����u�dWY3�Eky����좵�8�U�1�Eg�p�k��쒲q<�U�LvQ�@��*k&�hm Ov�5�]�6�'��:'�d]�<�U�Lv��@��*k&�hm Ov�5�]�6�'��:'�d]�<�U�Lv��@��*k&�hm Ov�5�]�6�'��z��u�dWY3�Eky����좵�8�U�1�Eg�x�k�s�K�ȓ]e�d�
�ɮ�f����dWY3�Eky�k�s�K�ȓ]e�d�
�ɮ�f����dWY3�Eky�k�s�K�ȓ]e�d�
�ɮ�f����dWY3�Eky�k�s�K�ȓ]e�d�
�ɮ���.:Ǔ]��d�
�ɮ���.Y Ov�5�]�6�'�ʚ�.Zȓ]e�d�
�ɮ���.Y Ov�5�]�6�'�ʚ�.Zȓ]e�d�
�ɮ���.Y Ov�5�]�6�'�ʚ�.Zȓ]e�d�
�ɮ���.Y Nv�tLv�Y8��*g&�(m Ov�5�]�6�'��:'�d]�<�U�Lv��@��*k&�hm Ov�5�]�6�'��z��u�dWY3�Eky����좵�<�U�Lv��@����u�dWY3�Eky����좵�<�U�Lv��@��i&��lNv�rLvQY8��*g&�(m Ov���j���c�����Ov�?�_�������p�/k�d��0������_~������/�%����d=���d��۟������C�?ۛo��L���{��t{����Q�Oǣtn�^�6p�z�o�u{����;֧����ݞ�bm���������:�e�ܱ���ֺ={���������V���+��X��ϔ5oSCk�mj�zy�XW �MMY�65�6�ߦ��y�Z�oSSּM
�
䷩�|�Y �MMY�65�6�ߦ��y�Z�oSS��65t�ߦf��mj$]��65e�����@~����mjhm �MMY�65�6�ߦf��mjd]��65e�����@~����mjhm �MMY�65�6�ߦf��mjd]��65e�����@~����mjhm �MMY�65�6�ߦf��mjd]��65e�����@|��������p�65����P�@~���η��u��Ԕ5oSCk�mjʚ������65e�����@~���η��u��Ԕ5oSCk�mjʚ������65e�����@~���η��u��Ԕ5oSCk�mjʚ������65e�����@~���η��u��Ԕs{�_��mjJ8ަ�����Ԕ3�P�@>� ���`]�|�AYs��
��ʚ�hm �fP֜f@k�4����d]�|�AYs��
��ʚ�hm �fP֜f@k�4����d]�|�AYs��
��ʚ�hm �fP֜f@k�4���49���r�f@e��4�r�4Jȧ�5���@>�`��4Y �fP֜f@k�4���4Zȧ�5���@>�`��4Y �fP֜f@k�4���4Zȧ�5���@>�`��4Y �fP֜f@k�4���4Z���t�f@g��4�Q�4)ǧ�3�P�@>͠�9̀��ie�i�6�O3�<�@�ȧ�5���@>͠�9̀��ie�i�6�O3�<�@�ȧ�5���@>͠�9̀��ie�i�6�O3��4XW �fP֜f@k�4���4Z���t�f@g��4�q��$]�|�AYs��
��ʚ�hm �fP֜f@k�4����d]�|�AYs��
��ʚ�hm �fP֜f@k�4����d]�|�AYs��
��ʚ�hm �fP֜f@k�4����d]�|�AYs��
��J:N3��p|�A9s��
���:O3�u�ie�i�6�O3(kN3���|�AYs��
���:O3�u�ie�i�6�O3(kN3���|�AYs��
���:O3�u�ie�i�6�O3(kN3���|�AYs��
���:O3�u�i%��Y8>͠�9̀��ie�i�6�O3�<�@�ȧ�5���@>͠�9̀��ie�i�6�O3��4XW �fP֜f@k�4���4Zȧ�5���@>�`��4Y �fP֜f@k�4���4Zȧ�5���@<�`�9�@���i��PY8>͠�9̀��i�6 N3���N3����{�a�s��oS�=���ߦ6���f���~�������������������/~���O����ֵw��dz�Շx�B���O����~s����?��A`ҏ���X礟��'�ʚI?Zȓ~eͤ�
�I��fҏ���X礟��&�ʹM�����~%�~4�'�ʙI?Jȓ~a�L���yү������<�W�L���@��+k&�hm O��uN�ɺ�yү������<�W�L���@��+k&�hm O��uN�ɺ�yү������<�W�L���@��+k&�hm N��4�~r6'�J9&��,O��3�~�6�'�ʚI?Zȓ~c��~�.@��+k&�hm O��5�~�6�'�ʚI?Zȓ~c��~�.@��+k&�hm O��5�~�6�'�ʚI?Zȓ~c��~�.@��+k&�hm O��5�~�6'�J:&��,N��2�~R6�'�ʙI?Jȓ~eͤ�
�I��fҏ���X礟��'�ʚI?Zȓ~eͤ�
�I��fҏ���X礟��'�ʚI?Zȓ~eͤ�
�I��fҏ��_X/�~��@��+k&�hm O��5�~�6'�J:&��,O��sN�I��yү������<�W�L���@��+k&�hm O��uN�ɺ�yү������<�W�L���@��+k&�hm O��uN�ɺ�yү������<�W�L���@��+k&�hm O��uN�ɺ�yү������8�W�1�Gg�xү������<�7�9�'��I��fҏ��_Y3�Gkyү������<�7�9�'��I��fҏ��_Y3�Gkyү������<�7�9�'��I��fҏ��_Y3�Gkyү������<�7�9�'��I���I?:Ǔ~�̤�
�I��fҏ���X礟��'�ʚI?Zȓ~eͤ�
�I��fҏ��_X/�~��@��+k&�hm O��5�~�6�'�ʚI?Zȓ~c��~�.@��+k&�hm O��5�~�6�'�ʚI?Z��~#ͤ����I�R�I?*Ǔ~�̤�
�I���\M��sl������I���8�e�����϶�TOw�?�x<<~���9K��9�^>�xd<��qNc���?���O�����L�_���������O��q���y����/�r��o>������e^~H����2o>$e����B9_{���K�2�<$e����F���p��C���IY8~��u��U����/:4ʼ琔��e^rH���+�2o8$e����B9_o����
�2�6$e��͆F���p�ZCco5$�k��P�+
��8~��Q�}��,���(�2CR�_eh�y�!)��1��CP6�_bh�y�!)�o04ʼ������e�^H����r�����e�[H���[�2/-$e����F�7��p��B���+e��e�F�w��p��Bc/*$�k����B2��Q(����l���(�~BR��Nh�y9!)ǯ&4ʼ������
+�|-!(�/%4ʼ�����7e���p|��(s������B9���q|��(s�����F���,�+0ʜ+ e��X�P�[�l]*0��P�^��L���+�{
�F�d,(����'�W.8�N`�9N@���i��eR��e���p|�@(�MP6�/e��p|��(s�����[F�S�,"�y�����+F�#�,� 0�\  e����Q���)���1�@X0�<`|����^�������7�2'HY8>8 ����(���2�HY8>5`��4@����̙R���1�����́R��e���p|[�(sZ�����B9�
+��q|U�(sT����F���,�0�qN���axL@�rK�|�KF�Cd,�0�\ e����Q��)��r��e��z�Q�x�)ǧ�2�HY8�`�9@�������7@�8�`�9@�����̵�R�oeN��p|(��r'`_���J�Q�H�)�'�2HY8�`��<�	_��8����`l_0� e��,�Q�*�)�7�2'HY8> ���(����2��HY8>`��@�������R������������R���L�O��q�o�I�IY8��rv��lW�F�蟔����G�O��0���0�?DZ�P�������(���p��e*R��L�O��q�/���e��7����,��F�������(����p��l�A�8.��2A?)�9�Q��'e��7ʤ��,��B9;~P6+~c?	_�8�7��d,��F�|����x_(g���q�o�	�IY8���2�>)�;Q&�'e�8ؿ������ǵ�Q&�'e�8�7ʔ��,w�F�L����H_(g���q�o�	�IY8��2u>)�m�Q&�'e�0��t� ,V��7�|�q�o�)��X8��+9>}��ƿ|�����C|�m�K�����w�9�b�p����ou��q��L�j��Xo��������onn��ۗ��~���m�zwxx����D������d��i��돻ƾ�A��X�6�XeM���y���>��
�B�YG"��R$�[%���a'��	eQ��1�u��ʲ��X�:��e��@f�u�lm 6�ʚh��Yg�,[�嬳�t��
�x�YG=��b?��	hѺ�1�u��в��X�:��h��@i�u��lm ��ʚ��sZg=-[HE��nI-;�Q�s����
ĮVY֢ubZ묣�ek��u֑ײ���:�(l��@ll�5�-Z f��::[�6K[g�-[�����ږ�
��VYܢubr묣�ek��u֑ݲ���:�(o��@lo�5�-Z �����e�k�N�%�l,F��9*\�6;\c�!.YW ���:Z\�6k\g9.[�A���"��
�&WY�ub�묣�ek��u֑沵��:�s��@�s�5�.Z &��:]�6+]g�.[�����R��
�VWIG����Q��[����a��#�ei1�u�Q������*k�]�.@Lw�u��lm ֻ�:�]�6^g/[�
��&�E�Č�YG���b��#�ek1�u�Q󲵁��*k�^�.@Lz�u4�lm V��:�^�6��^'��^v��^�q/*�y�s����
���YG���b�묣�ek��Uք�h]���:�h}��@�}�u�lm ��:�_�6�_eM���ٯ��
���YG���b�묣�ek��5���ub쬣fk�v֑���;�V��p�+gb`�.@́�u��lm ��:�`�6�`gU0[�]��&F��4�YG��b�#fk1v�Q����+k"a�.@̄�ut�lm ���:Ra�6cag�0[����&F��d�YG3��R5�[6���a8윣fi�V���h]��;����@,��u$�lm F��:*b�6;beMH���)������
Ě�YGN��bP쬣(fk�)V�D�h]��;����@,��u��lm ���:�b�6�beM`��H���n�1;���s�̘�
���YGi��bk����Ѻ�17v�����X;�H���@���uT�lm v��:�c��@L��u��lm ���:�c�6dg2[�
��&BF���YG���b��#Efk1Fv�Q#����#+����8J��rk�YY8���sd�,m �ɐך2�?Ƿg^��6>ǫ8y�[�'?>0N�lq�툓�˯��k���w�_^D�t��߅�*<�^���^�ݗ/��A�߾������u����+_����lm ���Yӛ���ܛ+kzs�6�{sc��9Y��_��,Gz������FT(0�e��Ž���Z.Q���6ɶ�w��쓹_�[X�eA�A���M��~ܛ+5�9�=Ƚ�Rӛ�ڃ؛+t��h����ܽ9�c�{s��7G��7WjzsT{�{s��7G��77���I�ܛ+5�9�=Ƚ�Rӛ�ڃܛ+5�9�=Ƚ�QwoN���\���Q�A�͕�����\���Q�A�͍�{sR� ��JMo�jbo��՛�Ysܛ+3�9�=Ƚ�QwoN���\���Q�A�͕�����\���Q�A�͍�{sR� ��JMo�jro����� ��JMo�jron�ݛ�:�7WjzsT{�{s��7G��7WjzsT{�{s��ޜ�1H��2/�9��c؛+p��(����Lo�hro.�ko���\���Q�A�͕�����\���Q�A�͍�{sR� ��JMo�jro����� ��JMo�jron�ݛ�:�7WjzsT{�{s��7G��7WjzsT{{s��7'��7W��͑�9�͕�����\���Q�A�͍�{sR� ��JMo�jro����� ��JMo�jron�ݛ�:�7WjzsT{�{s��7G��7WjzsT{�{s��ޜ�1Ƚ�Rӛ�ڃܛ+5�9�=���BWo�f�aon���D����Lo�hro����� ��JMo�jron�ݛ�:�7WjzsT{�{s��7G��7WjzsT{�{s��ޜ�1Ƚ�Rӛ�ڃܛ+5�9�=Ƚ�Rӛ�ڃܛ�ڛ�:�7WjzsT{�{s��7G��7W���Ѭ9�͍�{sB� ��JMo�jro����� ��JMo�jron�ݛ�:�7WjzsT{�{s��7G��7WjzsT{�{s��ޜ�1Ƚ�Rӛ�ڃܛ+5�9�=Ƚ�Rӛ�ڃܛu�椎A�͕�����\��7G��7WfzsD{�{s��ޜ�1Ƚ�Rӛ�ڃܛ+5�9�=Ƚ�Rӛ�ڃܛu�椎A�͕�����\���Q�A�͕�����ܨ�7'uro����� ��JMo�jro����� ��Fݽ9�c{s���͚��\����A�͕�����ܨ�7'uro����� ��JMo�jro����� ��B����A�͕�����\���Q�A�͕�����ܨ�7'uro����� ��JMo�jro����� ��MoNf�ao��՛#Ysܛ+3�9�=Ƚ�q6�zs�=.��m�}:�͏�??���_�Y�[���wܧ��C��FOO����~Q�~(?��<���߾���O��x�������������O���ן�Xm����^��71ӗKDq��Iџ?���&������
+�}��_�&R� �MJM߄jbߤ��7�Ys�7)3}�=�}�Qw�D��I��P�A��	��I��P�A��&R� �MJM߄jrߤ��M�� �MJM߄jr�d��7�:�oRj�&T{��&��oB��oRj�&T{��&��1H}�2/}��c�7)p�M(��M�L߄hr�$�k���I��P�A��	��I��P�A��&R� �MJM߄jrߤ��M�� �MJM߄jr�d��7�:�oRj�&T{��&��oB��oRj�&T{�&��o"��oR�ꛐ�9��	��I��P�A��&R� �MJM߄jrߤ��M�� �MJM߄jr�d��7�:�oRj�&T{��&��oB��oRj�&T{��&��1�}�R�7�ڃ�7)5}�=�}�BW߄f�a�d��MD��M�L߄hrߤ��M�� �MJM߄jr�d��7�:�oRj�&T{��&��oB��oRj�&T{��&��1�}�R�7�ڃ�7)5}�=�}�R�7�ڃ�7	��7�:�oRj�&T{��&��oB��oR��Ь9��&B� �MJM߄jrߤ��M�� �MJM߄jr�d��7�:�oRj�&T{��&��oB��oRj�&T{��&��1�}�R�7�ڃ�7)5}�=�}�R�7�ڃ�7u�M��A��	�ľI��oB��oRf�&D{��&��1�}�R�7�ڃ�7)5}�=�}�R�7�ڃ�7u�M��A��	��I��P�A��	��ɨ�o"urߤ��M�� �MJM߄jrߤ��M�� �MF�}�c�&���	͚�I���A��	��ɨ�o"urߤ��M�� �MJM߄jrߤ��M�� �MB��M��A��	��I��P�A��	��ɨ�o"urߤ��M�� �MJM߄jrߤ��M�� �MM�Df�aߤ��7!Ys�7)3}�=�}�q���&�=.}�mLt�7��o:}�7}~�{���}����M�������?��?��O�����6�ͭ�,}�?m\ŷ_>�!�~�~�������_o���=��2����c�?���|���)5�B���_JM�jrg�Ǒ:9�Sj�8T{�8��8͚�8N����A�㌺�8R� �qJM�jr���q�� �qJM�jrg�Ǒ:9�Sj�8T{��8�&�C�9�Sj�8T{��8��8��1�q�Rǡڃ�)5q�=�q�Rǡڃ�u�q��A��y��P��8N�+�C��8�Sf�8D{��8�^�8P� �qJM�jr���q�� �qJM�jrg�Ǒ:9�Sj�8T{��8�&�C�9�Sj�8T{��8��8��1�q�Rǡڃ�)5q�=�q�Rǡڃ�4q�=�q�"W�d�q���q�� �qJM�jrg�Ǒ:9�Sj�8T{��8�&�C�9�Sj�8T{��8��8��1�q�Rǡڃ�)5q�=�q�Rǡڃ�u�q��A�㔚8��8N���P�A����84k�8C&�#��8�Sf�8D{��8�&�C�9�Sj�8T{��8��8��1�q�Rǡڃ�)5q�=�q�Rǡڃ�u�q��A�㔚8��8N���P�A�㔚8��8N��8�9�q�Rǡڃ�)5q�=�q�BW�f�qg��:9�Sj�8T{��8�&�C�9�Sj�8T{��8��8��1�q�Rǡڃ�)5q�=�q�Rǡڃ�u�q��A�㔚8��8N���P�A�㔚8��8Ψ;�#ur���q�� �q
+]q�5�q�2�!ڃ�u�q��A�㔚8��8N���P�A�㔚8��8Ψ;�#ur���q�� �qJM�jr���q�� �qF�q�c��8�&�C�9�Sj�8T{��8�&�C�9�3��H��)t�qh��q�L�hr���q�� �qF�q�c��8�&�C�9�Sj�8T{��8�&�C�9��5�ur���q�� �qJM�jr���q�� �qF�q�c��8�&�C�9�Sj�8T{��8�&�C�1�3h�82{�8E�8ɚ�8N����A���q��8�D�?���??�<���LJ��o~�t�r�~�~(?s������������v����:��������O�_?
�����&s�OwO��/����/�}9�;��dn�Æ���?��w�ox�M��w�ʼ��F�v�a+p��F����2���w�B���u�;l��6�=�ﰕ�wب� ��Vj�a�ڃ�ۨ�6�c��a+5�Q�A~��Լ�F���R���w�F��I��[�y��j�;l��6�=�ﰕ�wب� ��6h�a��s�[��6�5�ﰕ�w؈� ��Vj�a�ڃ�ۨ�6�c��a+5�Q�A~��Լ�F���R���w�F��I��[�y��j�;l��6�=�ﰕ�wب� ��6�~�M��w�J�;lT{��a+5�Q�A|����͚�w؆�;l"{��a+3��A~��Լ�F���R���w�F��I��[�y��j�;l��6�=�ﰕ�wب� ��6�~�M��w�J�;lT{��a+5�Q�A~��Լ�F���P��A���[�y��j�;l��6�=����a�Ys�ۘ�6�c��a+5�Q�A~��Լ�F���R���w�F��I��[�y��j�;l��6�=�ﰕ�wب� ��6�~�M��w�J�;lT{��a+5�Q�A~��Լ�F���Q�;lR� ��Vj�a�ڃ�[��6�5�ﰕ�w؈� ��6�~�M��w�J�;lT{��a+5�Q�A~��Լ�F���Q�;lR� ��Vj�a�ڃ�[�y��j�;l��6�=�ﰍ��a�:��R���w�J�;lT{��a+5�Q�A~�m����1����a�Ys�[�y��h�;l��6�=�ﰍ��a�:��R���w�J�;lT{��a+5�Q�A~�-��;lP� ��Vj�a�ڃ�[�y��j�;l��6�=�ﰍ��a�:��R���w�J�;lT{��a+5�Q�A|�mм�&����"�;l$k��a+3��A~�}�\X�����������;���c�þ������5�ϰ/?r}������o_����������������7ןO�_��OW����/���\�o-���S�_��Ko~��-x;ƟY0`��@b��7�?��d����+Ys�uC��
+D�Z�����5��U����=�U0d��@d���*Ys�9C�k
+D�KA��S
+@�H�����5�_Q0d>�@d��'�r�Ț�nG�;���(�1��!�f
+���`���1�u�Z�Ě�V�c���c�CC��!���1d""k�C��!�����s��9�s�6�Ț�2ǐ	s��9�r�*�Ț�&G�;���8�1dz"k�kC&�!��8�1dJ"k;!&���0�1�jpȻ�ǀ	pH�9�o���Ț��F�;���8�1d�"k��C&�!��8�1d�"k�{A��Ȟ��Ɛim��9.m�ІȚ��Ɛ�l��9nl� {�C��!�渮1d�"k�#�����1�j�����ƀijH�9.j���Ț�Ɛ�i��9ni�S {�CC��!�渢1d""k�C��!�渟��g��9�g�v�Ț�rƐ	g��9�f�j�Ț�f�c���c��C��!�渖1db"kS#�R���1�d�3{�#C��!�渐1d"k��C��!�渍�Nc��9c�.�Ț�*Ɛ�b��9Nb�"�Ț�F�;���8�1dZ"k�KC&�!��8�1d*"k�A�Ȟ��Ɛ�_��9�_���o�8}1`�k��A��Ȟ��Ői^��9.^���Ț��Ő�]��9n]�S {�CC�s!��r1d""k�C�p!��o��[��9�[���Ț�Ő	[��9�Z���Ț�E�;i��0h1��Y��ŀ�YH�9NY���Ț�E�;c��8b1d"k�C&`!��8_1d�"k�ە��k�rL�9W�n�Ț�jŐ�V��9NV�b�Ț�^E�;W��8V1dZ"k�KC&T!��8S1d*"k!&Q��0P1��SȻ�:ŀ�SH�9NS�
+U��/q	Sn2��.���7~���}O/ܥ����)+L��_��O���v���ߍQ�+OO���s��x:�Q��>}�J��nӷ_��>��O��_����=xP�������������u�9JM�jb�Е��Ys�(3��=�ݏQw�C���G�iP�A�������H�)�P�An���# R� g@JM�jr	�Ԥ@�� �@JM
�jrd��:9	Rj� T{�� �&B�9Rj� T{�� ��8��1Hy�2/}��cX)p%B(�GB�L%�hr'$�k(��TH�i�P�A����\��`H�)�P�An����!R� gCJM7�jr9�ԤC�� �CJM=�jr?d��:9!Rj"T{�+"�&#B�9$RjJ"T{["�&&"��0'R�ꉐ�9.������H���P�A��"R� �EJM[�jr]���E�� FJMa�jrcd��:93Rj:#T{�K#�&5B�96Rjj#T{�{#�����1�ɑR��ڃ\)5��=��BWy�f�a{d��GD��G�L�hr���$H�� GHJM��jr�d�"�:9ERjZ$T{�k$�&GB�9HRj�$T{��$��(��1�Y�R�%�ڃ\&)5i�=�q�RS'�ڃ�'	�(�:9QRj%T{�+%�&SB�1TR�*�Ь9n���c%B� �JJM��jr���$K�� GKJM��jr�d�.�:9]Rj�%T{��%�&_B�9`Rj
+&T{�&��1��R�1�ڃ\2)5)�=�1�RS3�ڃ�3uM��AN����	�ĪI�+kB��8lRf�&D{��&��1�y�R�7�ڃ\8)5��=ȑ�RS9�ڃ�9u�N��AN����	���I�ɝP�A����	���ɨ;z"ur���tO�� �OJM��jr����O�� �OF��c(��
+͚�
+J�ɠ�A���
+��ʨ;�"ur���P�� QJM�jr��TQ�� wQB��Q��AN���6
+��:J�ɣP�A���B
+��Fʨ;�"ur&��tR�� �RJM*�jr,���R�� �RM0Ef�a2���L!Ys\M)3��=���q��)�=.��m�t�N���o����㧧>�~�O=�x������S����__���<���x�;}�_����nѷ���>}~�yG���j[��O/ON]?��<P�>?���g?P{�@]	�R�ġڃ��)5M�=�M�QwG��&N�i�P�Al���84k��8e��C���3�n�H���)5M�=�M�R�ġڃ��)5M�=�M�QwG��&N�i�P�An┚&��&N�i�P�An⌺�8R� 7qJM�jr��4q�� 7qJM�jrg��đ:��S楉C�v�8�&Ś�&N�i��An�zm�@����)5M�=�M�R�ġڃ��)5M�=�M�QwG��&N�i�P�An┚&��&N�i�P�An⌺�8R� 7qJM�jr��4q�� 7qJM�jbg�4qd�6q�\M�5�M�2��!ڃ��)5M�=�M�QwG��&N�i�P�An┚&��&N�i�P�An⌺�8R� 7qJM�jr��4q�� 7qJM�jrg��đ:��Sj�8T{��8���C���S�j�Ь9l��&�Ȟ�&N�i��An┚&��&N�i�P�An⌺�8R� 7qJM�jr��4q�� 7qJM�jrg��đ:��Sj�8T{��8���C���Sj�8T{��8�^�8P� 7qJM�jr��4q�� 6q
+]M�5�M�1wG��&N�i�P�An┚&��&N�i�P�An⌺�8R� 7qJM�jr��4q�� 7qJM�jrg��đ:��Sj�8T{��8���C���Sj�8T{��8��&��1�M�R�ġڃ��)t5qh�7q�L�hrg��đ:��Sj�8T{��8���C���Sj�8T{��8��&��1�M�R�ġڃ��)5M�=�M�R�ġڃ��u7q��An┚&��&N�i�P�An┚&��&Ψ��#ub���ġYs��)3M�=�M�R�ġڃ��u7q��An┚&��&N�i�P�An┚&��&N��&�9�M�R�ġڃ��)5M�=�M�R�ġڃ��u7q��An┚&��&N�i�P�An┚&��&Πi���9l���8$k��8e��C�����K4q�{\������;�=�m�~�;������\��ϫ��O��������/?|ƽ)��t���Q���Ga\��m�C���a��/rܟ�ڃ؟8u�'�� �'N]�	�=���Rӟ�:�?q��OX�A�O���V{��������D��OP�؟8u�'�� �'N]�	�=���SW�jb���'��A�O���?a�v��^�k�g������Ĩ�?!ub��՟�ڃ؟8u�'�� �'N]�	�=���Rӟ�:�?q��OX�A�O���V{��������D��OP�؟8u�'�� �'N]�	�=���SW�jR��՟��sԟ8�ҟ0Ys؟8s�'�� �'N]�	�=���Rӟ�:�?q��OX�A�O���V{��������D��OP�؟8u�'�� �'N]�	�=���SW�jb���'��A�O���V{��������ġ���͚��D��?A��?q��O�A�O���V{��������D��OP�؟8u�'�� �'N]�	�=���SW�jb���'��A�O���V{��������ĩ�?a��?1��OH��؟8u�'�� �'N]�	�=H��C/�	�5���2ӟ :�?q��OX�A�O���V{��������D��OP�؟8u�'�� �'N]�	�=���SW�jb���'��A�O���V{��������ĩ�?a��?Qj�T� �'N]�	�=H��C/�	�5���3W�hb���'��A�O���V{��������ĩ�?a��?Qj�T� �'N]�	�=���SW�jb��՟�ڃ؟(5�	�c��������ĩ�?a��?q��OX�A�O����1H��C/�	�5���3W�hb��՟�ڃ؟(5�	�c��������ĩ�?a��?q��OX�A�O���R� �'N]�	�=���SW�jb��՟�ڃ؟(5�	�c��������ĩ�?a��?q��OX�A�O��4{��G^�&k�g������
+ӟ����g*�8�O�����^��)|���W��oo��<��R���/�~&?r�OVy�?����?��O����?~���7�������̾��Fx�G�����?`���ߞ!�/���
���wϯ���益��@�������o�(���=x�>�=�[���=���|��p��ˏ��s�����$���~����z�s�ɪ���@�����ˋ��{���|_}9�ݿ�/���eu�w_�X���=x�>�ݿ>P��g?P{�@=�ix��/J���j�_E|:�ixtj~�9x���4<<I���=x���4����g?P{�@=�i8Y���=��z:�i���2��eu�wO//R���j����U/?��ڃ��ݓ���G?0k�}����������g������U/?��ڃ��?��^����@����g��A����@���σ��4<Hu�,�c�@=�i����g?P{�@�|/թ���� ~�թ���� ~�U���+�c?����VV{?����VV{?����VV{?���|��1�`u���+�=H`u���l�~�ՙ���� ~�U����c�`(50P�A>����@����Rs���F�0H�|�C�9��j�����=�0���� �0�>�A��J�T{�`(50P�A>����@����Q�R� �P�����cx�C����5�0���� �����s�`(50P�A>����@����Rs���F�0H�|�C�9��j�����=�0���� �0�>�A��J�T{�`(50P�A>����@����As��̞��\0��9>����@����Rs���F�0H�|�C�9��j�����=�0���� �0�>�A��J�T{�`(50P�A>����@����Q�R� �Pj`�ڃ|�C�9��j���h��0d`�s|�C�9��h�����=�0���� �0�>�A��J�T{�`(50P�A>����@����Q�R� �Pj`�ڃ|�C�9��j�����=�0�z=���J�T{�`(50P�A<���u�͚���0�|�C�9��j�����=�0���� �0�>�A��J�T{�`(50P�A>����@����Q�R� �Pj`�ڃ|�C�9��j�����=�0��`�:���Rs���
+]0Ь9>����@����Q�R� �Pj`�ڃ|�C�9��j�����=�0��`�:���Rs���J�T{�`(50P�A>�a�}���1�0���� �Pj`�ڃ|�C�9��j�����A<���u�͚���D{�`(50P�A>�a�}���1�0���� �Pj`�ڃ|�C�9��j��^`�:���Rs���J�T{�`(50P�A>�a�}���1�0���� �Pj`�ڃ|�C�9��j�����=�0�` Ys|�C�9��h�:� `��q9�q{o������1`������5
+�X?r9��`���~����?�޽8�������u������������~����o��/�|�{|}S��y���eu�w/�sV����@������d���~����z�����H����@���է����g���eu�w��V���j�Ow�o��z���<P��_��R/?��ڃ�[�5���8��A>��Ԝ�A��<�Rs���8J�yT{��4�q��9>��̜�A��<�Rs���8J�yT{���u��!u�y��<�=��q���8�� ��Qj��ڃ|G���8��A>��Ԝ�A��<�Rs���8J�yT{���u��!u�y��<�=��q���8�� ��Q�:��f��yc��8��A>��Ԝ�A��<�Rs���8J�yT{���u��!u�y��<�=��q���8�� ��Qj��ڃ|Ǩ�<�c���(5�qP�A>��Ԝ�A��<�Rs���8F��qH�|G�9��j�y���8h���Qf�� ڃ|Ǩ�<�c���(5�qP�A>��Ԝ�A��<�Rs���8F��qH�|G�9��j�y��<�=��q���8�� ��1�>�C���8J�yT{���(5�qP�A>��Ԝ�A��<�Q�yR� ��Q��<��cxG��<�5��q���8�� ����<�s���(5�qP�A>��Ԝ�A��<�Rs���8F��qH�|G�9��j�y��<�=��q���8�� ��1�>�C���8J�yT{���(5�qP�A>��Ԝ�A��<�As�̞��8�\�q��9>��̜�A��<�Rs���8F��qH�|G�9��j�y��<�=��q���8�� ��1�>�C���8J�yT{���(5�qP�A>��Ԝ�A��<�Q�yR� ��Qj��ڃ|G�9��j�y���8h���1d���s|G�9��h�y��<�=��q���8�� ��1�>�C���8J�yT{���(5�qP�A>��Ԝ�A��<�Q�yR� ��Qj��ڃ|G�9��j�y��<�=��q�z=����8J�yT{���(5�qP�A<���u͚��8���q�|G�9��j�y��<�=��q���8�� ��1�>�C���8J�yT{���(5�qP�A>��Ԝ�A��<�Q�yR� ��Qj��ڃ|G�9��j�y��<�=��q����:�<�Rs���8
+]�qЬ9>��̜�A��<�Q�yR� ��Qj��ڃ|G�9��j�y��<�=��q����:�<�Rs���8J�yT{���(5�qP�A>�c�}��1��q���8�� ��Qj��ڃ|G�9��j�y���8��A<���u͚��8��yD{���(5�qP�A>�c�}��1��q���8�� ��Qj��ڃ|G�9��j�y�^��:�<�Rs���8J�yT{���(5�qP�A>�c�}��1��q���8�� ��Qj��ڃ|G�9��j�y��<�=��q��� Ys|G�9��h�y��"����q9�s{����y����Ϗ�����p�tz9�7��ot�7���־[T����@�i��������_~����������ÿ���?~����w?�~����W��s���kKw�u��|�����?�����Og�߽��s�~��/�wA���~W�y��j��]���.�=��w������ ��5�~�K����J��]T{���*5�wQ�A~��Լ�E����Q��]R� ��Uj��ڃ�~W�y��j��]���.�=��w
���d���U�z��d���]e��.�=��w������ ��5�~�K����J��]T{���*5�wQ�A~��Լ�E����Q��]R� ��Uj��ڃ�~W�y��j��]���.�=��w����:���R�~����J��]T{��*t��E�����!�~�Ȟ������]D{���*5�wQ�A~��Լ�E����Q��]R� ��Uj��ڃ�~W�y��j��]���.�=��w����:���R�~����J��]T{���*5�wQ�A~�+���]P� ��Uj��ڃ�~W�y��j��]����h���5�~�K����J��]T{���*5�wQ�A~��Լ�E����Q��]R� ��Uj��ڃ�~W�y��j��]���.�=��w����:���R�~����J��]T{���*5�wQ�A~�k��~��1��w������ ��U�z��f���]e��.�=��w����:���R�~����J��]T{���*5�wQ�A~�k��~��1��w������ ��Uj��ڃ�~W�y��j��]������A~��Լ�E����R�~����J��]T{���u��%u��]����h���Uf��"ڃ�~W�y��j��]������A~��Լ�E����R�~����J��]T{���
+��~�9��w������ ��Uj��ڃ�~W�y��j��]������A~��Լ�E����R�~����J��]T{��4�w��9|����~ɚ������]D{����/U�w����߽},�t�~��������[��N�u��O\��~�����˯�|���[>=ܝ�-������qz8��t�2���?x�Ŏ��淀�Ys�Q@C曀D�P����@�А� �5��4d>Hd���
���Ys�@!�#���Ѐ� �5���3d>�Gd�����o�Ys��?A���s��?C�D��ϐ���5��3d��Gd����>&��;&��ϐ���5���3d>�Gd��G��o�Ys��?A���s�y?C��~D��ϐ���5��3�����c�U?����s�I?C�~D��ϐ���5��3d��Gd����?�d��g����Ys�
?C�~D��ϐ�~�5�_���x�=ǟ�3d��Gd��w����Ys��>C�}D��O���}@��ϐ�Z�5���3��T��c��>�;}$��O��#}@��ϐ�B�5���3d>�Gd�����o�Ys�e>A���s�Y>C�|D��ϐ�$�5��3d��Gd�����?�d����/�Ys�>C�3|D��ϐ��5�_�����=G��3���{��L����>�G��xπ��Ab��Վ���юcr���C�b�5��:�sD��0dnuYs|�C��P�=�g:�+D���0dNtYs|�Ð��Ad��uA��@���0d.sYs|�Ð9�Ad��QC�&�5�9�������0޺�A����0`Nq�Xs|�Ð��Ad��A�#@���0d.pYs|Ð9�Ad���
C���5Ǘ7�o��s|vÐ��Ad���
C���5�7�{D�_��>�d��
C���5�w6�3D��0⺱A��^�^l�Wc|^À��Ab��m
C��5LJ5��D�_��>�d��I
C��5��4�sD��0dniYs|IC����=�g4�+D���0dNhYs|@Ð��Ad��������cr���C�r�5�w3��D��0⺙A��_��>�b��C�Z�5Ƿ2�SD��0d�dYs|%C��H�=�'2�D���0d�cYs|Ð��Ad��eA��@���0d�bYs|Ð9�Ad��AC��5��0��a��s|
+Ð��Ad��#�3ގ���5�0�`��s|��~Ad���C���5LJ/��D�_��>zd���C���5��.�sD��0dn]Ys|�B����=�g.�+D�߸0dN\Ys|��oAd��uA��@���0�lA��ߵ0`�Z�Xs|��iAd��EA�@���0d�YYs|�9eAd��!C��5�W,>&�G,��1�',�D�߯0d�WYs|��]Ad���
+A��@���0d�VYs|�9YAd���
+C�^�5��*��c����0޺TA��ߩ0`�T�Xs|��n/||��~�ˉ���_/T��@ʼnT�?�=��[�.T����xZ'*�����黯���ӯ���Rq�w����]�����;�����绗�~������6j�|�{|}r��y���eu�w/�{T����@������d���~����z�����F����@���k ���׿Oj������u�FQjN��ڃ|lE����j����
+�=�'W��o��:��Rsv���+J��T{�o�(5�WP�A<�b��_!����2s���#,J�T{��(5�XP�A>�b�}���1��X��s,�� dQj.��ڃ|�E�9ʂj�Y�^ﲀ:�2�Rs����,J�uT{��(5ZP�A>�b�}���1�WZ��3-�� jQj.��ڃx�E��X�5��Z���:�b�Rs���-J��T{��(5�[P�A>�b�}���1��[���-�� pQj.��ڃ|�E�9�j���;.��A��ԜrA����Rs���{.J�AT{�O�u�t!u�U���=��]�.��Ys|�E�9�h�y���.��A��ԜxA��ȋRs���;/J͡T{�O�u�z!u�����=�_���/�� �|Qj���ڃ|�Ũ���c�/�(5�_P�A>���\A����Rs���0F�7`H�tF��30(ގ�!�K0(�߂Qf�� ڃ|F��{0��A��Ԝ�A��(�Rs��0J�aT{�O�u߆!u�u��<�=�b��1�� ߈Qj�Ġڃ|&ƨ�N�c�/�(5�bP�A>��\�A��^�Rs0�ē1��2{��(r��A���p�2s9���1J��T{���uߏ!u����=�Gd��+2�� ߑQjɠڃ|Jƨ���c���(5�dP�A>(��\�A����RsT��2F�weH�|YF�9-�j�q���=��e�̠YsxbƐ�1Cd��e���=ȇf��K3�� ߚQj�͠ڃ|nƨ���c�/�(5'gP�A>:��\�A���Rsx���3FݷgH�|}F�9?�j���
�=�7h��#4�� ����
�s�/�(5�hP�A>F��\�A���B�A4k�O�sߤ!t�U��,
�=ȇi���4�� ߦQj�Ӡڃ|�ƨ�>
�c�/�(5'jP�A>R��\�A��N�Rs���S5FݷjH�|�F�9W�j����b
�=�7k���5�� ��1�[C���5J��T{��(t]�A���~�2s���6F�7lH�|�F�9c�j�!��
�=ȷl��c6�� ��1�gC��6J�IT{���(5WmP�A�k���A����Q�mR� _�Qj�۠ڃ|�F��p�j����
�=�gn���ܐ:�ҍBש4k���(3�n�A�w���A���Q��R� _�Qj�ޠڃ|�F��|�j�����
�=��o�z���8J�	T{���(5WpP�A�����A���Q�-R� _�Qj��ڃ|G����j�M��(�=�gq��8d�^�Q�:��d��qe�:�=��q����9�{\.�ܞ�9>�s�{�9�|#�t�{��o������n���O?���_���{�Z�?]�����������@�>���>�r�Ry���!R� RQj��ڃ|HE�9��j�!��
+�=ȇT����:���RsH��C*J�!T{��(5�TP�A<�b�R!�����2sH��C*J�!T{��(5�TP�A>�b�}H��1ȇT��C*�� RQj��ڃ|HE�9��j�!�^��:���RsH��C*J�!T{��(5�TP�A>�b�}H��1ȇT��C*�� RQj��ڃxHE��
+�5LJT���:���RsH��C*J�!T{��(5�TP�A>�b�}H��1ȇT��C*�� RQj��ڃ|HE�9��j�!��C*��A>���RA����RsH��C*J�!T{��uR!u�!��
+�=��T���Ys|HE�9��h�!��C*��A>���RA����RsH��C*J�!T{��uR!u�!��
+�=ȇT��C*�� RQj��ڃ|HŨ��
+�c��(5�TP�A>���RA����RsH��C*F݇TH�tHE��C*(ގ�!�C*(�RQf� ڃ|HE��C*��A>���RA����RsH��C*J�!T{��uR!u�!��
+�=ȇT��C*�� RQj��ڃ|HŨ��
+�c��(5�TP�A>���RA����RsH��C*�!2{�(rRA�����2sH��C*J�!T{��uR!u�!��
 �=ȇT��C*�� RQj��ڃ|HŨ��
-�c��(5�TP�A>���RA����RsH��C*F݇TH�|HE�9��j�!��C*h�RQf� ڃ|HŨ��
 �c��(5�TP�A>���RA����RsH��C*F݇TH�|HE�9��j�!��
-�=ȇT��C*�� R1�>�B��C*J�!T{��(5�TP�A>���RA����Q�!R� RQ���
-��cxHE��
-�5LJT��C*�� R��
-�s��(5�TP�A>���RA����RsH��C*F݇TH�|HE�9��j�!��
-�=ȇT��C*�� R1�>�B��C*J�!T{��(5�TP�A>���RA��AsH�̞�C*�\�T��9>���RA����RsH��C*F݇TH�|HE�9��j�!��
-�=ȇT��C*�� R1�>�B��C*J�!T{��(5�TP�A>���RA����Q�!R� RQj��ڃ|HE�9��j�!��C*h�R1d��s|HE�9��h�!��
-�=ȇT��C*�� R1�>�B��C*J�!T{��(5�TP�A>���RA����Q�!R� RQj��ڃ|HE�9��j�!��
-�=ȇT�z9���C*J�!T{��(5�TP�A<���uH͚�C*�܇T�|HE�9��j�!��
+�=��T���YsxHŐ9�Bd��!e�
+�=ȇT��C*�� RQj��ڃ|HŨ��
+�c��(5�TP�A>���RA����RsH��C*F݇TH�|HE�9��j�!��
+�=ȇT��C*�� R���
+�s��(5�TP�A>���RA��B�!4k��sR!t�!��
+�=ȇT��C*�� RQj��ڃ|HŨ��
+�c��(5�TP�A>���RA����RsH��C*F݇TH�|HE�9��j�!��
+�=ȇT��C*�� R1�>�B��C*J�!T{�(tRA�����2sH��C*F݇TH�|HE�9��j�!��
 �=ȇT��C*�� R1�>�B��C*J�!T{��(5�TP�A>���RA����Q�!R� RQj��ڃ|HE�9��j�!��
-�=ȇT����:���RsH��C*
-]�TЬ9>���RA����Q�!R� RQj��ڃ|HE�9��j�!��
-�=ȇT����:���RsH��C*J�!T{��(5�TP�A>�b�}H��1ȇT��C*�� RQj��ڃ|HE�9��j�!��C*��A<���uH͚�C*��!D{��(5�TP�A>�b�}H��1ȇT��C*�� RQj��ڃ|HE�9��j�!�^��:���RsH��C*J�!T{��(5�TP�A>�b�}H��1ȇT��C*�� RQj��ڃ|HE�9��j�!��
-�=��T�� Ys|HE�9��h�!��� �
-~��!��%���qH���Fӯ���!�|�|H��:��?|���*�Owϧ���Z����o�o�<>�=�>�F�*��Zo����w/�^��"����P{�}�����,��YV����x��D�}�Ys�����4ϟ�����z�9x����7�|_�x�9x|p��,�c�@=�,������go�=x��~�z��
���U$��3K�� �YRj�,�:�̒Sי%V{�,9u�Yb��̒Sי%V{�,)5g�P�xfɩ���=�g����,�ڃxfɩ���=Hg���,��sxfə���=�g����,�ڃxfɩ���=�g���3K��A<���uf���3KN]g�X�A<���uf���3KF�g�H��xfɩ���=�g����,�ڃxfɩ���=�g���3K��A<���uf���3KN]g�X�A:����%6k�,)3g��xfɩ���=�g����,�ڃxfɩ���=�g���3K��A<���uf���3KN]g�X�A<���uf���3KJ͙%T� �Yr�:��j�%��3K�� �Yr�:��j�%����c�,9u�Yb��̒C�g�ج9<���uf���3KJ͙%T� �Yr�:��j�%��3K�� �Yr�:��j�%����c�,9u�Yb��̒Sי%V{�,9u�Yb��̒Rsf	�1�g����,�ڃxfɩ���=�g����,�ڃxfI�9����3K��vf���1:����%k�,9s�Yb��̒Q��%R� �Yr�:��j�%��3K�� �Yr�:��j�%����c�,9u�Yb��̒Sי%V{�,9u�Yb��̒Rsf	�1�g����,�ڃxfɩ���=�g����,�ڃtfI����=Gg�y>��d��%g�3K�� �Yr�:��j�%����c�,9u�Yb��̒Sי%V{�,9u�Yb��̒Rsf	�1�g����,�ڃxfɩ���=�g����,�ڃxfI�9����3KN]g�X�A<���uf���3K=�Yb���̒"י%${�,9s�Yb��̒Sי%V{�,9u�Yb��̒Rsf	�1�g����,�ڃxfɩ���=�g����,�ڃxfI�9����3KN]g�X�A<���uf���3KN]g�X�A<�d�}f��9�g����,�ڃxfɩ���=Hg�z>��f��%e���c�,9u�Yb��̒Sי%V{�,9u�Yb��̒Rsf	�1�g����,�ڃxfɩ���=�g����,�ڃxfI�9����3KN]g�X�A<���uf���3KN]g�X�A<��ԜYBu�%��3K�� �Yr����5�g����,1ڃxfI�9����3KN]g�X�A<���uf���3KN]g�X�A<��ԜYBu�%��3K�� �Yr�:��j�%��3K�� �YRj�,�:�̒Sי%V{�,9u�Yb��̒Sי%V{�,)5g�P�tfɡ�3Kl��Yr�:��h�%��3K�� �YRj�,�:�̒Sי%V{�,9u�Yb��̒Sי%V{�,u�Y"u�%��3K�� �Yr�:��j�%��3K�� �YRj�,�:�̒Sי%V{�,9u�Yb��̒Sי%V{��,)t�YB���̒#�g���9<���uf���3Kp@ȜY����3u����|��=ݟ����U��Q�����_N��z�F���Շ������|&���ש��;����/�����?������?y�~8�������G?|����;���q����@܉jrܩ�ĝ�� ǝJM܉jr�i�w�:9�Tj�NT{��N�&�D�9�Tj�NT{��N��1�q�Rw�ڃw*5q'�=�q�Rw�ڃwuǝ��A�;����ĸS�+�D��8�Tf�ND{��N��1�q�Rw�ڃw*5q'�=�q�Rw�ڃwuǝ��A�;�����S��;Q�A�;�����Ө;�$urܩ�ĝ�� ǝJM܉jrܩ�ĝ�� ǝF�q'�c��Ne��N��0�T��;Q�9�;�����S����9�q�Rw�ڃw*5q'�=�q�Rw�ڃwuǝ��A�;�����S��;Q�A�;�����Ө;�$urܩ�ĝ�� ǝJM܉jrܩ�ĝ�� ƝM�If�aܩ�w"Ysw*3q'�=�q�Rw�ڃwuǝ��A�;�����S��;Q�A�;�����Ө;�$urܩ�ĝ�� ǝJM܉jrܩ�ĝ�� ǝF�q'�c��N�&�D�9�Tj�NT{�N���͚øӐ�;��9�;�����S��;Q�A�;�����Ө;�$urܩ�ĝ�� ǝJM܉jrܩ�ĝ�� ǝF�q'�c��N�&�D�9�Tj�NT{��N�&�D�9��%�urܩ�ĝ�� ǝJM܉jbܩ�w�Yswsǝ��A�;�����S��;Q�A�;�����Ө;�$urܩ�ĝ�� ǝJM܉jrܩ�ĝ�� ǝF�q'�c��N�&�D�9�Tj�NT{��N�&�D�9�4�;I�w*5q'�=�q�BW܉f�qܩ�ĝ�� ǝF�q'�c��N�&�D�9�Tj�NT{��N�&�D�9�4�;I�w*5q'�=�q�Rw�ڃw*5q'�=�q�Qw�I��S��;Q�A�;�����S��;Q�A�;���NR� Ɲ
-]q'�5�q�2w"ڃw*5q'�=�q�Qw�I��S��;Q�A�;�����S��;Q�A�;�z�;A��w*5q'�=�q�Rw�ڃw*5q'�=�q�Qw�I��S��;Q�A�;�����S��;Q�A�;
���̞øS�+�D��8�Tf�ND{��N�E܉��w^���q���q������[ԏ�_�0�\�I���������_���~��_�{W��냕����������������x���_^_�j�닕���ڃ��b�^^_���+5�/F����J��Q�A~}�R��bT{�__l���bR� ��X�y}1�=ȯ/Vj^_�j���^_�f��닍�wB� �JM�jr���� �JM�jr�n�]��:�pWj
+�=ȇT����:�B�!4k��(3�T�A>���RA����Q�!R� RQj��ڃ|HE�9��j�!��
+�=ȇT�z=���C*J�!T{��(5�TP�A>���RA����Q�!R� RQj��ڃ|HE�9��j�!��
+�=��T�C*d�RQ�:��d��!e�
+�=ȇT����C*�{\���-y><�r�{�C*'<��M�>=�C*���!��uH��~��Ƿ7T���>�fuʧ�Y?����t���ҍ~������6.x�{����/�z���|_}<�Iy���YV����p�y�~��̚; �>��y���<P��z���|_�|�s�p���������g��?(N���j��?
'�^~����U$��3K�� �YRj�,�:�̒Sי%V{�,9u�Yb��̒Sי%V{�,)5g�P�xfɩ���=�g����,�ڃxfɩ���=Hg���,��sxfə���=�g����,�ڃxfɩ���=�g���3K��A<���uf���3KN]g�X�A<���uf���3KF�g�H��xfɩ���=�g����,�ڃxfɩ���=�g���3K��A<���uf���3KN]g�X�A:���˙%6k�,)3g��xfɩ���=�g����,�ڃxfɩ���=�g���3K��A<���uf���3KN]g�X�A<���uf���3KJ͙%T� �Yr�:��j�%��3K�� �Yr�:��j�%����c�,9u�Yb��̒C/g�ج9<���uf���3KJ͙%T� �Yr�:��j�%��3K�� �Yr�:��j�%����c�,9u�Yb��̒Sי%V{�,9u�Yb��̒Rsf	�1�g����,�ڃxfɩ���=�g����,�ڃxfI�9����3K��vf���1:���˙%k�,9s�Yb��̒Q��%R� �Yr�:��j�%��3K�� �Yr�:��j�%����c�,9u�Yb��̒Sי%V{�,9u�Yb��̒Rsf	�1�g����,�ڃxfɩ���=�g����,�ڃtfI����=Gg�y9��d��%g�3K�� �Yr�:��j�%����c�,9u�Yb��̒Sי%V{�,9u�Yb��̒Rsf	�1�g����,�ڃxfɩ���=�g����,�ڃxfI�9����3KN]g�X�A<���uf���3K��Yb���̒"י%${�,9s�Yb��̒Sי%V{�,9u�Yb��̒Rsf	�1�g����,�ڃxfɩ���=�g����,�ڃxfI�9����3KN]g�X�A<���uf���3KN]g�X�A<�d�}f��9�g����,�ڃxfɩ���=Hg�z9��f��%e���c�,9u�Yb��̒Sי%V{�,9u�Yb��̒Rsf	�1�g����,�ڃxfɩ���=�g����,�ڃxfI�9����3KN]g�X�A<���uf���3KN]g�X�A<��ԜYBu�%��3K�� �Yr����5�g����,1ڃxfI�9����3KN]g�X�A<���uf���3KN]g�X�A<��ԜYBu�%��3K�� �Yr�:��j�%��3K�� �YRj�,�:�̒Sי%V{�,9u�Yb��̒Sי%V{�,)5g�P�tfɡ�3Kl��Yr�:��h�%��3K�� �YRj�,�:�̒Sי%V{�,9u�Yb��̒Sי%V{�,u�Y"u�%��3K�� �Yr�:��j�%��3K�� �YRj�,�:�̒Sי%V{�,9u�Yb��̒Sי%V{��,)t�YB���̒#/g���9<���uf���3Kp@ȜY������U��3K�{���t��}�g���b�߿htz9�7��o������~Q�~(?�CK�uj�o.���������?���÷��Mg��R�_��������]�N�mw�y��ǝo�;Q�A�;�����S��;Q�A�;���NR� ǝJM܉jrܩ�ĝ�� ǝJM܉jr�i�w�:9�Tj�NT{��N�&�D�9�Tj�NT{��N��1�q�Rw�ڃw*tŝh�ǝ�L܉hr�i�w�:9�Tj�NT{��N�&�D�9�Tj�NT{��N��1�q�Rw�ڃw*5q'�=�q�Rw�ڃwuǝ��A�;�����S��;Q�A�;�����Ө;�$uRܩ�K܉��Ɲ
+\q'�5�q�2w"ڃw
+�w�:9�Tj�NT{��N�&�D�9�Tj�NT{��N��1�q�Rw�ڃw*5q'�=�q�Rw�ڃwuǝ��A�;�����S��;Q�A�;����ĸӠ�;��9�;��N$k��Ne&�D�9�Tj�NT{��N��1�q�Rw�ڃw*5q'�=�q�Rw�ڃwuǝ��A�;�����S��;Q�A�;�����Ө;�$urܩ�ĝ�� ǝJM܉jbܩ�w�Ysw2q'�=�q�2w"ڃw*5q'�=�q�Rw�ڃwuǝ��A�;�����S��;Q�A�;�����Ө;�$urܩ�ĝ�� ǝJM܉jrܩ�ĝ�� ǝB�Ɲ��A�;�����S��;Q�A�;��N4k��Nc�1�q�Rw�ڃw*5q'�=�q�Rw�ڃwuǝ��A�;�����S��;Q�A�;�����Ө;�$urܩ�ĝ�� ǝJM܉jrܩ�ĝ�� ǝF�q'�c��N�&�D�1�T�;Ѭ9�;�����Ө;�$urܩ�ĝ�� ǝJM܉jrܩ�ĝ�� ǝF�q'�c��N�&�D�9�Tj�NT{��N�&�D�9�4�;I�w*5q'�=�q�Rw�ڃw*5q'�=�q�Qw�I�ĸS�+�D��8�Tf�ND{��N�&�D�9�4�;I�w*5q'�=�q�Rw�ڃw*5q'�=�q�P�q'�s��N�&�D�9�Tj�NT{��N�&�D�9�4�;I�w*5q'�=�q�Rw�ڃw*5q'�=�q�Aw��sw*rŝH�ǝ�L܉hr�Iu��;���ĝ�%�q�y�{����A�y������øs�L���ĝ��׿�q����?��޷�_V^����_��]?_L�c>_|�;���/�/F����J��Q�A�|�P��/u�狕���ڃ��b���Ũ� �X��|1�=ȟ/6��|1�c�?_��|����+5�/F����
+]�/F������܅;�c�w��pG��pWj
+wT{�w��pG��p7�.�I�\�+5�;�=ȅ�RS��ڃ\�+5�;�=ȅ�Qw�N���]�)�Q�A.ܕ�����]�)�Q�A.܍�wR� �JM�jb��U��Ys\�+3�;�=ȅ�Qw�N���]�)�Q�A.ܕ�����]�)�Q�A.܍�wR� �JM�jr���� �JM�jr�n�]��:�pWj
+wT{�w��pG��pWj
+wT{�w���1H��2/�;��cX�+p�(���L�hr�.�k����]�)�Q�A.ܕ�����]�)�Q�A.܍�wR� �JM�jr���� �JM�jr�n�]��:�pWj
+wT{�w��pG��pWj
+wT{w��p'��pW�*ܑ�9.ܕ�����]�)�Q�A.܍�wR� �JM�jr���� �JM�jr�n�]��:�pWj
+wT{�w��pG��pWj
+wT{�w���1ȅ�RS��ڃ\�+5�;�=���BW�f�a�n��D���L�hr���� �JM�jr�n�]��:�pWj
+wT{�w��pG��pWj
+wT{�w���1ȅ�RS��ڃ\�+5�;�=ȅ�RS��ڃ\��Z��:�pWj
+wT{�w��pG��pW�*�Ѭ9.܍�wB� �JM�jr���� �JM�jr�n�]��:�pWj
 wT{�w��pG��pWj
 wT{�w���1ȅ�RS��ڃ\�+5�;�=ȅ�RS��ڃ\�uA.ܕ�����]��pG��pWf
-wD{�w���1ȅ�RS��ڃ\�+5�;�=ȅ�RS��ڃ\�uA.ܕ�����]�)�Q�A.ܕ�����ݨ�p'ur���� �JM�jr���� �F݅;�c�
-we�w�ǰpW�*�Q�9.ܕ�����]����9ȅ�RS��ڃ\�+5�;�=ȅ�RS��ڃ\�uA.ܕ�����]�)�Q�A.ܕ�����ݨ�p'ur���� �JM�jr���� �M�Nf�a��U�#Ys\�+3�;�=ȅ�RS��ڃ\�uA.ܕ�����]�)�Q�A.ܕ�����ݨ�p'ur���� �JM�jr���� �F݅;�c�w��pG��pWj
-wT{w���͚��ݐ)܉�9.ܕ�����]�)�Q�A.ܕ�����ݨ�p'ur���� �JM�jr���� �F݅;�c�w��pG��pWj
-wT{�w��pG��p�pur���� �JM�jb��U��Ys\�sA.ܕ�����]�)�Q�A.ܕ�����ݨ�p'ur���� �JM�jr���� �F݅;�c�w��pG��pWj
-wT{�w��pG��p7�.�I�\�+5�;�=���BW�f�q���� �F݅;�c�w��pG��pWj
-wT{�w��pG��p7�.�I�\�+5�;�=ȅ�RS��ڃ\�+5�;�=ȅ�Qw�N���]�)�Q�A.ܕ�����]�)�Q�A.܍�wR� �
-]�;�5Dž�2S�#ڃ\�+5�;�=ȅ�Qw�N���]�)�Q�A.ܕ�����]�)�Q�A.܅z)�A��\�+5�;�=ȅ�RS��ڃ\�+5�;�=ȅ�Qw�N���]�)�Q�A.ܕ�����]�)�Q�A,�
�̞��]��pG��pWf
-wD{�w��E���\�_��/������������(ܟ�:��������E��P>s)��������w_~���_�v�wO��+�����������w
_pg�W_�8�~�E �F�9�Vj2hT{�3h����1��R�A�ڃ�A+54�=��BW�f�qm̝A:9�Vj2hT{�3h�&�F�9�Vj2hT{�3h����1��R�A�ڃ�A+54�=��R�A�ڃ�AugФ�AΠ����Z�ɠQ�AΠ����ڨ;�&ur��dШ� f�
-]4�5��2�A#ڃ�AugФ�AΠ����Z�ɠQ�AΠ����ڨ;�&ur��dШ� g�JM�jr��dШ� g�F�4�c�3h�&�F�9�Vj2hT{�3h�&�F�9�6�ΠI��A+�A�x=��W�b�q��dЈ� g�B�dР�AΠ����Z�ɠQ�AΠ����ڨ;�&ur��dШ� g�JM�jr��dШ� g�F�4�c�3h�&�F�9�Vj2hT{�3h�&�F�1�6h2h2{3hE�ɚ�Z�ɠ�AΠ����ڨ;�&ur��dШ� g�JM�jr��dШ� g�F�4�c�3h�&�F�9�Vj2hT{�3h�&�F�9�6�ΠI��A+54�=��R�A�ڃ�A+te�h�fІLMd�q��dЈ� g�JM�jr��dШ� g�F�4�c�3h�&�F�9�Vj2hT{�3h�&�F�9�6�ΠI��A+54�=��R�A�ڃ�A+54�=��P/4�s�3h�&�F�9�Vj2hT{3h��͚�ژ;�&tr��dШ� g�JM�jr��dШ� g�F�4�c�3h�&�F�9�Vj2hT{�3h�&�F�9�6�ΠI��A+54�=��R�A�ڃ�A+54�=��QwM��Z�ɠQ�A̠�2h4k�3he&�F�9�6�ΠI��A+54�=��R�A�ڃ�A+54�=��QwM��Z�ɠQ�AΠ����Z�ɠQ�AΠ��3hR� g�JM�jr��dШ� g�JM�jrmԝA�:1�V�ʠѬ9Π����Z�ɠQ�AΠ��3hR� g�JM�jr��dШ� g�JM�jr-�K
��Z�ɠQ�AΠ����Z�ɠQ�AΠ��3hR� g�JM�jr��dШ� g�JM�jbm�d�d�fЊ\4�5��2�A#ڃ�AG�*���qΠ������{�}?�x�����W=~���#��W�Ͽ|�����_?|x�����_��_�����,���y���\�w^��tE�������u���7_�N"k��NC��$���4d�N"k��NA�Ȟ�Ӑ�9��9�9
���Ț�Ӑ	9��9�8�+N {�NC&�$��8�4d�M"k��MC&�$��8��.7��9�6
�l�Ț�hӈ��$�z��M&�$��8��5��9n5
�T�Ț�PӐ�4��9�4
�H�Ț�DS������4d�L"k��LC��$���4d�L"k��LA�*Ȟ�&ӐI2��92
��Ț�Ӑ�1��9N1�KL {�:L�3L⮦0�4�j0���Ӏ	0I�9�/o����s�^2�%�5��!�]Ys\]2�%�5�ɥ wq	d�qoi��D�ǖ�LkId�qiiȄ�D�g��ܕ%�=Ǎ�!�XYsX2}%�5�u�!WYs�V
-1e%�5�]��VVI��G�LSIb�qQi��D�甂�5%�=�-�!�RYsR2%�5��!QYs�P
-r�@����L>Id�q<iȴ�D����L8Id�q6)�]M�s�L2�$�5���!�KYsXKqŒ^�a*)�����w�L&Ib�q$i�4�D���L Id�q)�]G�s�F2i$�5�a�!�EYs\E2Q$�5�I� w	d�qi��D�ǐ�LId�q	iȄ�D�g���KyL�9n 
��Ț��Ґ���9����G��8}�.A�9�
��Ț��ѐi��9.
���Ț��Q��v��u4dRG"k�CGC�s$��r4d"G"k�GA��Ȟ�ѐ���9�
���Ț�ѐ	��9���F {��FC&i$��0h4��	��р�I�9N�KF {�;FC&c$��8b4dF"k�FC&`$��8_���9n
�t�Ț�pѐ���9�
�h�Ț�dQ��X��W4drE"k�cEC�U$��T4dBE"k�3EA�JȞ�Fш+Q$�z�E�O$��N4d�D"k��DA�2Ȟ�.ѐ���9�
�&�Ț�"ѐ	��9�o���s�"2)"�5�!�!�!Ys\!2"�5�	� w�d�qh��D�LJ�L{Hd�qyhȄ�D�f�BLu`�ash���w=�����Xs\B+'bC�����;N
��(
�o����w[bj�>���i������?|������OW����_9�ӟ�x����×?�S�~_��������|9}���0! ����/�8|�E�D��Tjr@T{��@��"��1�M�R�ڃ�*5] �=�e�R��ڃuׁ��A���@��DP�iQ�A���L��PШ�$ur+��Ă�� �
-]� �5�Š2�"ڃ
uW���A���p��tP�iQ�A���|��Ш� $urC��D��� g�JMG�jrI�Ԥ��� DŽF�5!�c�{B�&(D�9)Tj�BT{��B�&+D�9,4�.I��*��x=�y�W_�b�qa��$��� G�B�T���A�������P�i
Q�A�
������Ш�8$urs��D��� g�JMw�jry�Ԥ��� LJF��!�c��C�&@D�9ATjDT{�+D�&CD�1D4hJD2{[DE�ɚ�Q���A.��$��(Ѩ�J$ur��Ԅ��� ��JM��jr���䉨� �F݅"�c�E�&RD�9STj:ET{�KE�&UD�9V4�I��+*5�"�=�ɢR�,�ڃX-*te�h����L�Hd�q���ċ�� �JM��jr���$��� G�F�#�c�;F�&dD�9eTjZFT{�kF�&gD�9h4�.I��4*5Q#�=�Y�R�5�ڃ\6*5i#�=�q�P/u#�s��F�&pD�9qTjGT{+G���͚��ј�t$tr��Ď�� �JM�jr��$��� G�F��#�c��G�&|D�9}Tj�GT{��G�&D�9�4�. I��@*5$�=��R�A�ڃ\B*5)$�=�1�Qw
I��R�	"Q�AL"��H4k��He&�D�9�4�.#I��F*5q$�=�y�R�G�ڃ\H*5�$�=ȑ�Qw%I��NR�	%Q�AN%��V��ZR��%Q�A&���IR� 7�JM4�jr6��t��� ��JM:�jr<i�]O�:��T�
-(Ѭ9N(�����R��(Q�A)��KJR� ��JML�jrN������ �JMR�jrT)�KU	��R�	+Q�AN+�����R��+Q�A,��KR� 7�JMd�jrf��t��� ��JMj�jbli�Ԗd����\�%�5�ɥ2�\"ڃ\]R'(�K����:s</����_�N���;��:����ӧ�����|�R^ޯ���~�������?�J������.��>�_����1�W���W=��~�H��1)5�=��BWDŽf�qǤ�tL�� wLF��c�;&��cB��cRj:&T{�;&��cB��c2��H��1)5�=��R�1�ڃ�1)5�=��Qw�D��I��P�A��	��I��P�A�;&R� uL�<wL(^�aǤ��1�Xs�1)3�=��P/�s�;&��cB��cRj:&T{�;&��cB��c2��H��1)5�=��R�1�ڃ�1)5�=��Qw�D��I��P�A��	��I��P�A����̞ÎI��cB��cRf:&D{�;&��cB��c2��H��1)5�=��R�1�ڃ�1)5�=��Qw�D��I��P�A��	��I��P�A�;&R� wLJMDŽjrǤ�tL�� vL
-]�5��!�1�s�1)3�=��R�1�ڃ�1)5�=��Qw�D��I��P�A��	��I��P�A�;&R� wLJMDŽjrǤ�tL�� wLJMDŽjr�$�K���I��P�A��	�ĎI��cB��c2����1)5�=��R�1�ڃ�1)5�=��Qw�D��I��P�A��	��I��P�A�;&R� wLJMDŽjrǤ�tL�� wLJMDŽjr�d��1�:�cRj:&T{;&���	͚�I���A�;&R� wLJMDŽjrǤ�tL�� wLJMDŽjr�d��1�:�cRj:&T{�;&��cB��cRj:&T{�;&��1��R�1�ڃ�1)5�=��R�1�ڃ�1uwL��A��:&4k�;&e�cB��cRj:&T{�;&��1��R�1�ڃ�1)5�=��R�1�ڃ�1	��1�:�cRj:&T{�;&��cB��cRj:&T{�;&��1��R�1�ڃ�1)5�=��R�1�ڃ�14�=��"WDŽd�qǤ�tL�� wL�-���{�;������c:��c���1�����3wL�3���auL���������E>���x'`��p0����G���3��𝗵��ݿ�&���x�em��2:���:��ux�� �O�y�=ȯ�Sj^��j�����_�G����)5��C��uxJ���P�A~�R�:<T{�_�g��:<R� �O�y�=ȯ�Sj^��j��𔚌��Ԩ;#%urF��d��� f�
-])�5��2��"ڃ��ug���A�H�����T��HQ�A�H�����Ԩ;#%urF��d��� g�JMF�jrF��d��� g�F�)�c�3R�&#E�9#Uj2RT{�3R�&#E�9#5��HI���*󜑢x=��WF�b�qF��d��� g�B�d���A�H�����T��HQ�A�H�����Ԩ;#%urF��d��� g�JMF�jrF��d��� g�F�)�c�3R�&#E�9#Uj2RT{�3R�&#E�1#5h2R2{3RE��ɚ�T��H�A�H�����Ԩ;#%urF��d��� g�JMF�jrF��d��� g�F�)�c�3R�&#E�9#Uj2RT{�3R�&#E�9#5��HI���*5)�=��R���ڃ��*te�h�f��LFJd�qF��d��� g�JMF�jrF��d��� g�F�)�c�3R�&#E�9#Uj2RT{�3R�&#E�9#5��HI���*5)�=��R���ڃ��*5)�=��P/)�s�3R�&#E�9#Uj2RT{3R���͚�Ԙ;#%trF��d��� g�JMF�jrF��d��� g�F�)�c�3R�&#E�9#Uj2RT{�3R�&#E�9#5��HI���*5)�=��R���ڃ��*5)�=��QwFJ��T��HQ�A�H�2R4k�3Re&#E�9#5��HI���*5)�=��R���ڃ��*5)�=��QwFJ��T��HQ�A�H�����T��HQ�A�H��3RR� g�JMF�jrF��d��� g�JMF�jrFjԝ��:1#U��HѬ9�H�����T��HQ�A�H��3RR� g�JMF�jrF��d��� g�JMF�jrF*�KF
-��T��HQ�A�H�����T��HQ�A�H��3RR� g�JMF�jrF��d��� g�JMF�jbFj�d�d�f��\)�5��2��"ڃ���*#��q�H��d�����������O���w/��eާ��O��~p����������}^yz���������}��L����[�endstream
+wD{�w���1ȅ�RS��ڃ\�+5�;�=ȅ�RS��ڃ\�uA.ܕ�����]�)�Q�A.ܕ�����ݨ�p'ur���� �JM�jr���� �F݅;�cw���͚��]�)��A.ܕ�����ݨ�p'ur���� �JM�jr���� �B���A.ܕ�����]�)�Q�A.ܕ�����ݨ�p'ur���� �JM�jr���� �M�Nf�a��U�#Ys\�+3�;�=ȅ;�ڢp���R����/������燗����A���p����ß_�>ݿ_T���\�|��|:�����~��m|���e��8�=<|>�b�Π����/x�A��E �F�9�Vj2hT{�3h����1��R�A�ڃ�A+54�=��BW�f�qm̝A:9�Vj2hT{�3h�&�F�9�Vj2hT{�3h����1��R�A�ڃ�A+54�=��R�A�ڃ�AugФ�AΠ����Z�ɠQ�AΠ����ڨ;�&ur��dШ� f�
+]4�5��2�A#ڃ�AugФ�AΠ����Z�ɠQ�AΠ����ڨ;�&ur��dШ� g�JM�jr��dШ� g�F�4�c�3h�&�F�9�Vj2hT{�3h�&�F�9�6�ΠI��A+�A�x;��W�b�q��dЈ� g�B�fР�AΠ����Z�ɠQ�AΠ����ڨ;�&ur��dШ� g�JM�jr��dШ� g�F�4�c�3h�&�F�9�Vj2hT{�3h�&�F�1�6h2h2{3hE�ɚ�Z�ɠ�AΠ����ڨ;�&ur��dШ� g�JM�jr��dШ� g�F�4�c�3h�&�F�9�Vj2hT{�3h�&�F�9�6�ΠI��A+54�=��R�A�ڃ�A+te�h�fІLMd�q��dЈ� g�JM�jr��dШ� g�F�4�c�3h�&�F�9�Vj2hT{�3h�&�F�9�6�ΠI��A+54�=��R�A�ڃ�A+54�=��P�4�s�3h�&�F�9�Vj2hT{3h��͚�ژ;�&tr��dШ� g�JM�jr��dШ� g�F�4�c�3h�&�F�9�Vj2hT{�3h�&�F�9�6�ΠI��A+54�=��R�A�ڃ�A+54�=��QwM��Z�ɠQ�A̠�2h4k�3he&�F�9�6�ΠI��A+54�=��R�A�ڃ�A+54�=��QwM��Z�ɠQ�AΠ����Z�ɠQ�AΠ��3hR� g�JM�jr��dШ� g�JM�jrmԝA�:1�V�ʠѬ9Π����Z�ɠQ�AΠ��3hR� g�JM�jr��dШ� g�JM�jr-�k
��Z�ɠQ�AΠ����Z�ɠQ�AΠ��3hR� g�JM�jr��dШ� g�JM�jbm�d�d�fЊ\4�5��2�A#ڃ�AG�*����A�6�����1>�}���������|_~$��J����?������O�~X������_��m}������+��G����]w��;����m�_�N"k��NC��$���4d�N"k��NA�Ȟ�Ӑ�9��9�9
���Ț�Ӑ	9��9�8�+N {�NC&�$��8�4d�M"k��MC&�$��8��.7��9�6
�l�Ț�hӈ��$�v��M&�$��8��5��9n5
�T�Ț�PӐ�4��9�4
�H�Ț�DS������4d�L"k��LC��$���4d�L"k��LA�*Ȟ�&ӐI2��92
��Ț�Ӑ�1��9N1�KL {�:L^2L�n�0�4�j0���Ӏ	0I�9�/?&���19渽4d�K"k��KC��$�渺4d�K"k��KA��Ȟ��Ґ�-��9�-
�֒Ț��Ґ	-��9�,�+K {�KC&�$��8�4d�J"k��JC&�$��0�b�J�k�J㭬���1�*
���Ě�Ґ	*��9�)�kJ {�[JC&�$��8�4d:J"k�+JC&�$��8��.(��9�'
�|�Ț�xҐi'��9.'
�p�Ț�lR����縙4d�I"k��IC��$�氖4�%	��TRx)%��1�$
�L�Ě�HҐi$��9.$
�@�Ț�<R����縍4d�H"k��HC��$�渊4d�H"k��HA�"Ȟ�Ґ�!��9�!
��Ț�Ґ	!��9� ?&��19渁4dH"k�HC�$��~4�	���Q��|��{4d�G"k��GC�y$��x4d�G"k�sGA��Ȟ��ѐI��9
�ΑȚ��ѐ���9N�G {��FC&o$��8n4d�F"k��FC&l$��8k���9n
���Țàш�g$�v�kF&f$��8e�.��9�
���Ț�ѐi��9.
���Ț�|Q��^��]4d�E"k��EC�[$��Z4d�E"k��EA�bȞ�^ѐ���9�
�V�Ț�Rѐ	��9��+E {E#�D���1
�>�Ě�:ѐ���9N��D {��DC&K$��8J4d�D"k��DC&H$��8G���ֈ���ѐI��9
��Ț�
+ѐ���9N�D {��CC&?$��8>4d�C"k��CC&<$��0;b�C�k�C�䐼�1
�ސĚ��Z9�/qi
oʾ�����������mKL
�Ϥ5|\������w�����w������|����������~���w���}����x��������	��.o�	��ohQ�A����� Ш�$ur��D��� g�JM�jr�Ԥ��� ǁF�u �c��@�&D�9TjAT{�+A�&D�94�.I��
+*5� �=���BW/�f�q1��$��� G�F�� �c��A�&D�9Tj�AT{��A�&D�9 4�.I��*5!�=��R��ڃ\*5)!�=�1�QwMH��P�	
+Q�AN
+�����P��
+Q�A���BR� ��ʼą(ގa^����Xs\*3�!�=ȑ�P��!�s�;C�&4D�95TjZCT{�kC�&7D�984�.I��*5�!�=�١R��ڃ\*5�!�=��Qw}H���P�	Q�AN����
+Q��Q�A
��̞�Q�+FD��8GTfzDD{��D�&ID�9J4�I��%*5a"�=�i�R�&�ڃ\'*5y"�=ȁ�Qw�H��FQ��Q�A���N��RQ�IQ�A���kER� ��JM��jr���4��� V�
+]�"�5��!S.�s�.*3�"�=���R�/�ڃ\0*5	#�=��Qw�H��Q�	Q�AN�����Q��Q�A���FR� 7�JMԈjr֨�t��� ��JMڈjr�(�k���Q�	Q�AN������Q�+sD��8t4�.	��:*5�#�=ȹ�R�;�ڃ\<*5�#�=�ѣQw�H���Q�	Q�AN������Q��Q�A ��HR� 7�JM�jr��t��� ��JM
+�jri�]C�:��Tj�HT{�H��&͚�*R��"�A#���HR� ��JM�jr������ �JM"�jr$i�]I�:��TjBIT{�SI���D���TjrIT{��I��b��1�ͤRM�ڃ�M*5�$�=��R�N�ڃOuד��A�'�J4k�Je��D���Tj2JT{�CJ��1�-�RS�ڃ�S*5=%�=�E�R�T�ڃU
+�ZU�:��Tj�JT{��J���D���Tj�JT{�K��’�1ȍ�RY�ڃ�Y*5�%�=ȥ�R�Z�ڃ[4�%�=���"Wp�d�qr��4��� W��	���Kwy�9��ǿǟ^Ͽ��x||�{������j�_�//��g���i����?��?���_�������7���}���8j,w����n~����/�c�;&��cB��cR��Ь9��	��ɨ�c"urǤ�tL�� wLJMDŽjrǤ�tL�� wLF��c�;&��cB��cRj:&T{�;&��cB��c2��H��1)5�=��R�1�ڃ�1)5�=��Qw�D���I���	��1��:&k�;&e�cB��c�curǤ�tL�� wLJMDŽjrǤ�tL�� wLF��c�;&��cB��cRj:&T{�;&��cB��c2��H��1)5�=��R�1�ڃ�1)5�=��A�1��s�1)ruLH�wL�LDŽhrǤ�tL�� wLF��c�;&��cB��cRj:&T{�;&��cB��c2��H��1)5�=��R�1�ڃ�1)5�=��Qw�D��I��P�A��	�ĎI��cB��c2d:&"{�;&e�cB��cRj:&T{�;&��cB��c2��H��1)5�=��R�1�ڃ�1)5�=��Qw�D��I��P�A��	��I��P�Az�@���1)5�=��R�1�ڃ�1)tuLh�wL���c�;&��cB��cRj:&T{�;&��cB��c2��H��1)5�=��R�1�ڃ�1)5�=��Qw�D��I��P�A��	��I��P�A�;&R� wLJMDŽjbǤ��1�Ys�1)3�=��Qw�D��I��P�A��	��I��P�A�;&R� wLJMDŽjrǤ�tL�� wLJMDŽjr�d��1�:�cRj:&T{�;&��cB��cRj:&T{�;&��1��BWDŽf�qǤ�tL�� wLJMDŽjr�d��1�:�cRj:&T{�;&��cB��cRj:&T{�;&�^;&P� wLJMDŽjrǤ�tL�� wLJMDŽjr�d��1�:�cRj:&T{�;&��cB��cRj:&T{;&��c"��cR�ꘐ�9��	����Q����6:��1�>������wL�g������_����t�E��tc�0}�?
+�N�w���~��3���;k;ݝ^�E��_㝏�]~��1x����)5��C��sxJ���P�A��R�9<T{�?�g��9<R� O���=ȟ�Sj>��j�����ڃ�9<����:�sxJ���P�A��R�9<T{�?���d��� g�F�)�c�3R�&#E�1#U��HѬ9�H�����Ԩ;#%urF��d��� g�JMF�jrF��d��� g�F�)�c�3R�&#E�9#Uj2RT{�3R�&#E�9#5��HI���*5)�=��R���ڃ��*5)�=��QwFJ���T�����1�H�2Rk�3Re&#E�9#�5#urF��d��� g�JMF�jrF��d��� g�F�)�c�3R�&#E�9#Uj2RT{�3R�&#E�9#5��HI���*5)�=��R���ڃ��*5)�=��A����s��*re�H�g��LF�hrF��d��� g�F�)�c�3R�&#E�9#Uj2RT{�3R�&#E�9#5��HI���*5)�=��R���ڃ��*5)�=��QwFJ��T��HQ�A�H����ČT�+#E��0#5d2R"{�3Re&#E�9#Uj2RT{�3R�&#E�9#5��HI���*5)�=��R���ڃ��*5)�=��QwFJ��T��HQ�A�H�����T��HQ�A�H�z�HA����*5)�=��R���ڃ��*te�h�g���)�c�3R�&#E�9#Uj2RT{�3R�&#E�9#5��HI���*5)�=��R���ڃ��*5)�=��QwFJ��T��HQ�A�H�����T��HQ�A�H��3RR� g�JMF�jbF�Е��Ys��*3)�=��QwFJ��T��HQ�A�H�����T��HQ�A�H��3RR� g�JMF�jrF��d��� g�JMF�jrFjԝ��:9#Uj2RT{�3R�&#E�9#Uj2RT{�3R��1��BWF�f�qF��d��� g�JMF�jrFjԝ��:9#Uj2RT{�3R�&#E�9#Uj2RT{�3R�^3RP� g�JMF�jrF��d��� g�JMF�jrFjԝ��:9#Uj2RT{�3R�&#E�9#Uj2RT{3R�&#%��0#U��H��9�H��������T)������x�t�����t���g����˗�?���t���ۿ
+�{>]���{��>�O�^��~�������:יH�+��Lendstream
 endobj
-1353 0 obj <<
+1369 0 obj <<
 /Type /Page
-/Contents 1354 0 R
-/Resources 1352 0 R
+/Contents 1370 0 R
+/Resources 1368 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 1202 0 R
-/Annots [ 1356 0 R 1357 0 R 1358 0 R 1359 0 R 1360 0 R 1361 0 R 1362 0 R 1363 0 R 1364 0 R 1365 0 R 1366 0 R 1367 0 R 1368 0 R 1369 0 R 1370 0 R 1371 0 R 1372 0 R 1373 0 R 1374 0 R 1375 0 R 1376 0 R 1377 0 R 1378 0 R 1379 0 R 1380 0 R 1381 0 R 1382 0 R 1383 0 R 1384 0 R 1385 0 R 1386 0 R 1387 0 R 1388 0 R 1389 0 R 1390 0 R 1391 0 R 1392 0 R 1393 0 R 1394 0 R 1395 0 R 1396 0 R 1397 0 R 1398 0 R 1399 0 R 1400 0 R 1401 0 R 1402 0 R 1403 0 R 1404 0 R 1405 0 R 1406 0 R 1407 0 R 1408 0 R 1409 0 R 1410 0 R 1411 0 R 1412 0 R 1413 0 R 1414 0 R 1415 0 R 1416 0 R 1417 0 R 1418 0 R 1419 0 R 1420 0 R 1421 0 R 1422 0 R 1423 0 R 1424 0 R 1425 0 R 1426 0 R 1427 0 R 1428 0 R 1429 0 R 1430 0 R 1431 0 R 1432 0 R 1433 0 R 1434 0 R 1435 0 R 1436 0 R 1437 0 R 1438 0 R 1439 0 R 1440 0 R 1441 0 R 1442 0 R 1443 0 R 1444 0 R 1445 0 R 1446 0 R 1447 0 R 1448 0 R 1449 0 R ]
+/Parent 1218 0 R
+/Annots [ 1372 0 R 1373 0 R 1374 0 R 1375 0 R 1376 0 R 1377 0 R 1378 0 R 1379 0 R 1380 0 R 1381 0 R 1382 0 R 1383 0 R 1384 0 R 1385 0 R 1386 0 R 1387 0 R 1388 0 R 1389 0 R 1390 0 R 1391 0 R 1392 0 R 1393 0 R 1394 0 R 1395 0 R 1396 0 R 1397 0 R 1398 0 R 1399 0 R 1400 0 R 1401 0 R 1402 0 R 1403 0 R 1404 0 R 1405 0 R 1406 0 R 1407 0 R 1408 0 R 1409 0 R 1410 0 R 1411 0 R 1412 0 R 1413 0 R 1414 0 R 1415 0 R 1416 0 R 1417 0 R 1418 0 R 1419 0 R 1420 0 R 1421 0 R 1422 0 R 1423 0 R 1424 0 R 1425 0 R 1426 0 R 1427 0 R 1428 0 R 1429 0 R 1430 0 R 1431 0 R 1432 0 R 1433 0 R 1434 0 R 1435 0 R 1436 0 R 1437 0 R 1438 0 R 1439 0 R 1440 0 R 1441 0 R 1442 0 R 1443 0 R 1444 0 R 1445 0 R 1446 0 R 1447 0 R 1448 0 R 1449 0 R 1450 0 R 1451 0 R 1452 0 R 1453 0 R 1454 0 R 1455 0 R 1456 0 R 1457 0 R 1458 0 R 1459 0 R 1460 0 R 1461 0 R 1462 0 R 1463 0 R 1464 0 R 1465 0 R ]
 >> endobj
-1356 0 obj <<
+1372 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [119.552 706.187 355.445 715.098]
 /Subtype /Link
 /A << /S /GoTo /D (apache-addtype) >>
 >> endobj
-1357 0 obj <<
+1373 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 706.187 537.983 715.098]
 /Subtype /Link
 /A << /S /GoTo /D (apache-addtype) >>
 >> endobj
-1358 0 obj <<
+1374 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [95.641 693.235 324.5 702.147]
 /Subtype /Link
-/A << /S /GoTo /D (859) >>
+/A << /S /GoTo /D (multiple-bz-dbs) >>
 >> endobj
-1359 0 obj <<
+1375 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 693.235 537.983 702.147]
 /Subtype /Link
-/A << /S /GoTo /D (859) >>
+/A << /S /GoTo /D (multiple-bz-dbs) >>
 >> endobj
-1360 0 obj <<
+1376 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [95.641 680.284 234.28 689.195]
 /Subtype /Link
 /A << /S /GoTo /D (os-specific) >>
 >> endobj
-1361 0 obj <<
+1377 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 680.284 537.983 689.195]
 /Subtype /Link
 /A << /S /GoTo /D (os-specific) >>
 >> endobj
-1362 0 obj <<
+1378 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [119.552 669.39 223.78 676.244]
 /Subtype /Link
 /A << /S /GoTo /D (os-win32) >>
 >> endobj
-1363 0 obj <<
+1379 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 669.39 537.983 676.244]
 /Subtype /Link
 /A << /S /GoTo /D (os-win32) >>
 >> endobj
-1364 0 obj <<
+1380 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [143.462 656.438 221.101 663.293]
 /Subtype /Link
 /A << /S /GoTo /D (win32-perl) >>
 >> endobj
-1365 0 obj <<
+1381 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 656.438 537.983 663.293]
 /Subtype /Link
 /A << /S /GoTo /D (win32-perl) >>
 >> endobj
-1366 0 obj <<
+1382 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [143.462 643.487 270.913 650.341]
 /Subtype /Link
 /A << /S /GoTo /D (win32-perl-modules) >>
 >> endobj
-1367 0 obj <<
+1383 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 643.487 537.983 650.341]
 /Subtype /Link
 /A << /S /GoTo /D (win32-perl-modules) >>
 >> endobj
-1368 0 obj <<
+1384 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [143.462 628.478 334.813 637.39]
 /Subtype /Link
 /A << /S /GoTo /D (win32-code-changes) >>
 >> endobj
-1369 0 obj <<
+1385 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 628.478 537.983 637.39]
 /Subtype /Link
 /A << /S /GoTo /D (win32-code-changes) >>
 >> endobj
-1370 0 obj <<
+1386 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [143.462 615.527 265.763 624.438]
 /Subtype /Link
 /A << /S /GoTo /D (win32-http) >>
 >> endobj
-1371 0 obj <<
+1387 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 615.527 537.983 624.438]
 /Subtype /Link
 /A << /S /GoTo /D (win32-http) >>
 >> endobj
-1372 0 obj <<
+1388 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [143.462 602.575 234.789 611.487]
 /Subtype /Link
 /A << /S /GoTo /D (win32-email) >>
 >> endobj
-1373 0 obj <<
+1389 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 602.575 537.983 611.487]
 /Subtype /Link
 /A << /S /GoTo /D (win32-email) >>
 >> endobj
-1374 0 obj <<
+1390 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [119.552 591.681 187.068 598.535]
 /Subtype /Link
 /A << /S /GoTo /D (os-macosx) >>
 >> endobj
-1375 0 obj <<
+1391 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 591.681 537.983 598.535]
 /Subtype /Link
 /A << /S /GoTo /D (os-macosx) >>
 >> endobj
-1376 0 obj <<
+1392 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [143.462 578.73 213.479 585.584]
 /Subtype /Link
 /A << /S /GoTo /D (macosx-sendmail) >>
 >> endobj
-1377 0 obj <<
+1393 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 578.73 537.983 585.584]
 /Subtype /Link
 /A << /S /GoTo /D (macosx-sendmail) >>
 >> endobj
-1378 0 obj <<
+1394 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [143.462 565.778 335.5 572.633]
 /Subtype /Link
 /A << /S /GoTo /D (macosx-libraries) >>
 >> endobj
-1379 0 obj <<
+1395 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 565.778 537.983 572.633]
 /Subtype /Link
 /A << /S /GoTo /D (macosx-libraries) >>
 >> endobj
-1380 0 obj <<
+1396 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [119.552 552.827 226.809 559.681]
+/Rect [119.552 552.827 222.584 559.681]
 /Subtype /Link
-/A << /S /GoTo /D (os-mandrake) >>
+/A << /S /GoTo /D (os-linux) >>
 >> endobj
-1381 0 obj <<
+1397 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 552.827 537.983 559.681]
 /Subtype /Link
-/A << /S /GoTo /D (os-mandrake) >>
+/A << /S /GoTo /D (os-linux) >>
 >> endobj
-1382 0 obj <<
+1398 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [95.641 538.192 254.464 546.73]
 /Subtype /Link
 /A << /S /GoTo /D (nonroot) >>
 >> endobj
-1383 0 obj <<
+1399 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 538.192 537.983 546.73]
 /Subtype /Link
 /A << /S /GoTo /D (nonroot) >>
 >> endobj
-1384 0 obj <<
+1400 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [119.552 526.924 193.713 533.778]
 /Subtype /Link
-/A << /S /GoTo /D (981) >>
+/A << /S /GoTo /D (976) >>
 >> endobj
-1385 0 obj <<
+1401 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 526.924 537.983 533.778]
 /Subtype /Link
-/A << /S /GoTo /D (981) >>
+/A << /S /GoTo /D (976) >>
 >> endobj
-1386 0 obj <<
+1402 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [119.552 511.915 177.116 520.827]
 /Subtype /Link
-/A << /S /GoTo /D (985) >>
+/A << /S /GoTo /D (980) >>
 >> endobj
-1387 0 obj <<
+1403 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 511.915 537.983 520.827]
 /Subtype /Link
-/A << /S /GoTo /D (985) >>
+/A << /S /GoTo /D (980) >>
 >> endobj
-1388 0 obj <<
+1404 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [143.462 498.964 298.44 507.875]
 /Subtype /Link
-/A << /S /GoTo /D (993) >>
+/A << /S /GoTo /D (988) >>
 >> endobj
-1389 0 obj <<
+1405 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 498.964 537.983 507.875]
 /Subtype /Link
-/A << /S /GoTo /D (993) >>
+/A << /S /GoTo /D (988) >>
 >> endobj
-1390 0 obj <<
+1406 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [119.552 488.07 160.508 494.924]
 /Subtype /Link
-/A << /S /GoTo /D (1020) >>
+/A << /S /GoTo /D (1015) >>
 >> endobj
-1391 0 obj <<
+1407 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 488.07 537.983 494.924]
 /Subtype /Link
-/A << /S /GoTo /D (1020) >>
+/A << /S /GoTo /D (1015) >>
 >> endobj
-1392 0 obj <<
+1408 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [119.552 475.118 197.867 481.973]
 /Subtype /Link
 /A << /S /GoTo /D (install-perlmodules-nonroot) >>
 >> endobj
-1393 0 obj <<
+1409 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 475.118 537.983 481.973]
 /Subtype /Link
 /A << /S /GoTo /D (install-perlmodules-nonroot) >>
 >> endobj
-1394 0 obj <<
+1410 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [143.462 460.11 276.552 469.021]
+/Rect [119.552 462.167 197.708 469.021]
 /Subtype /Link
-/A << /S /GoTo /D (1039) >>
+/A << /S /GoTo /D (1037) >>
 >> endobj
-1395 0 obj <<
+1411 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 460.11 537.983 469.021]
+/Rect [528.02 462.167 537.983 469.021]
 /Subtype /Link
-/A << /S /GoTo /D (1039) >>
+/A << /S /GoTo /D (1037) >>
 >> endobj
-1396 0 obj <<
+1412 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [143.462 449.216 253.17 456.07]
+/Rect [143.462 447.158 296.208 456.07]
 /Subtype /Link
-/A << /S /GoTo /D (1052) >>
+/A << /S /GoTo /D (1040) >>
 >> endobj
-1397 0 obj <<
+1413 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 449.216 537.983 456.07]
+/Rect [528.02 447.158 537.983 456.07]
 /Subtype /Link
-/A << /S /GoTo /D (1052) >>
+/A << /S /GoTo /D (1040) >>
 >> endobj
-1398 0 obj <<
+1414 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [119.552 436.144 197.708 443.118]
+/Rect [119.552 434.207 178.221 443.118]
 /Subtype /Link
-/A << /S /GoTo /D (1085) >>
+/A << /S /GoTo /D (1049) >>
 >> endobj
-1399 0 obj <<
+1415 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 436.144 537.983 443.118]
+/Rect [528.02 434.207 537.983 443.118]
 /Subtype /Link
-/A << /S /GoTo /D (1085) >>
+/A << /S /GoTo /D (1049) >>
 >> endobj
-1400 0 obj <<
+1416 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [143.462 421.255 296.208 430.167]
+/Rect [143.462 421.255 273.763 430.167]
 /Subtype /Link
-/A << /S /GoTo /D (1088) >>
+/A << /S /GoTo /D (suexec) >>
 >> endobj
-1401 0 obj <<
+1417 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 421.255 537.983 430.167]
 /Subtype /Link
-/A << /S /GoTo /D (1088) >>
->> endobj
-1402 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [119.552 408.304 178.221 417.215]
-/Subtype /Link
-/A << /S /GoTo /D (1097) >>
->> endobj
-1403 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 408.304 537.983 417.215]
-/Subtype /Link
-/A << /S /GoTo /D (1097) >>
+/A << /S /GoTo /D (suexec) >>
 >> endobj
-1404 0 obj <<
+1418 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [71.731 393.096 180.502 401.983]
+/Rect [71.731 406.047 180.502 414.934]
 /Subtype /Link
 /A << /S /GoTo /D (administration) >>
 >> endobj
-1405 0 obj <<
+1419 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 393.096 537.983 401.983]
+/Rect [528.02 406.047 537.983 414.934]
 /Subtype /Link
 /A << /S /GoTo /D (administration) >>
 >> endobj
-1406 0 obj <<
+1420 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 377.619 204.681 386.53]
+/Rect [95.641 390.57 204.681 399.482]
 /Subtype /Link
 /A << /S /GoTo /D (parameters) >>
 >> endobj
-1407 0 obj <<
+1421 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 377.619 537.983 386.53]
+/Rect [528.02 390.57 537.983 399.482]
 /Subtype /Link
 /A << /S /GoTo /D (parameters) >>
 >> endobj
-1408 0 obj <<
+1422 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 366.725 194.709 373.579]
+/Rect [95.641 379.676 194.709 386.53]
 /Subtype /Link
 /A << /S /GoTo /D (useradmin) >>
 >> endobj
-1409 0 obj <<
+1423 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 366.725 537.983 373.579]
+/Rect [528.02 379.676 537.983 386.53]
 /Subtype /Link
 /A << /S /GoTo /D (useradmin) >>
 >> endobj
-1410 0 obj <<
+1424 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [119.552 351.716 247.002 360.628]
+/Rect [119.552 364.668 247.002 373.579]
 /Subtype /Link
 /A << /S /GoTo /D (defaultuser) >>
 >> endobj
-1411 0 obj <<
+1425 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 351.716 537.983 360.628]
+/Rect [528.02 364.668 537.983 373.579]
 /Subtype /Link
 /A << /S /GoTo /D (defaultuser) >>
 >> endobj
-1412 0 obj <<
+1426 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [119.552 338.765 235.207 347.676]
+/Rect [119.552 351.716 235.207 360.628]
 /Subtype /Link
 /A << /S /GoTo /D (manageusers) >>
 >> endobj
-1413 0 obj <<
+1427 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 338.765 537.983 347.676]
+/Rect [528.02 351.716 537.983 360.628]
 /Subtype /Link
 /A << /S /GoTo /D (manageusers) >>
 >> endobj
-1414 0 obj <<
+1428 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [143.462 325.813 286.644 334.725]
+/Rect [143.462 338.765 286.644 347.676]
 /Subtype /Link
 /A << /S /GoTo /D (user-account-search) >>
 >> endobj
-1415 0 obj <<
+1429 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 325.813 537.983 334.725]
+/Rect [528.02 338.765 537.983 347.676]
 /Subtype /Link
 /A << /S /GoTo /D (user-account-search) >>
 >> endobj
-1416 0 obj <<
+1430 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [143.462 312.862 251.954 321.773]
+/Rect [143.462 325.813 251.954 334.725]
 /Subtype /Link
 /A << /S /GoTo /D (createnewusers) >>
 >> endobj
-1417 0 obj <<
+1431 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 312.862 537.983 321.773]
+/Rect [528.02 325.813 537.983 334.725]
 /Subtype /Link
 /A << /S /GoTo /D (createnewusers) >>
 >> endobj
-1418 0 obj <<
+1432 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [143.462 299.91 243.636 308.822]
+/Rect [143.462 312.862 243.636 321.773]
 /Subtype /Link
 /A << /S /GoTo /D (modifyusers) >>
 >> endobj
-1419 0 obj <<
+1433 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 299.91 537.983 308.822]
+/Rect [528.02 312.862 537.983 321.773]
 /Subtype /Link
 /A << /S /GoTo /D (modifyusers) >>
 >> endobj
-1420 0 obj <<
+1434 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [143.462 286.959 235.327 295.87]
+/Rect [143.462 299.91 235.327 308.822]
 /Subtype /Link
 /A << /S /GoTo /D (user-account-deletion) >>
 >> endobj
-1421 0 obj <<
+1435 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 286.959 537.983 295.87]
+/Rect [528.02 299.91 537.983 308.822]
 /Subtype /Link
 /A << /S /GoTo /D (user-account-deletion) >>
 >> endobj
-1422 0 obj <<
+1436 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [143.462 274.008 258.569 282.919]
+/Rect [143.462 286.959 258.569 295.87]
 /Subtype /Link
 /A << /S /GoTo /D (impersonatingusers) >>
 >> endobj
-1423 0 obj <<
+1437 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 274.008 537.983 282.919]
+/Rect [528.02 286.959 537.983 295.87]
 /Subtype /Link
 /A << /S /GoTo /D (impersonatingusers) >>
 >> endobj
-1424 0 obj <<
+1438 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 263.113 171.197 269.968]
+/Rect [95.641 276.065 171.197 282.919]
 /Subtype /Link
 /A << /S /GoTo /D (classifications) >>
 >> endobj
-1425 0 obj <<
+1439 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 263.113 537.983 269.968]
+/Rect [528.02 276.065 537.983 282.919]
 /Subtype /Link
 /A << /S /GoTo /D (classifications) >>
 >> endobj
-1426 0 obj <<
+1440 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 250.162 147.945 257.016]
+/Rect [95.641 263.113 147.945 269.968]
 /Subtype /Link
 /A << /S /GoTo /D (products) >>
 >> endobj
-1427 0 obj <<
+1441 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 250.162 537.983 257.016]
+/Rect [528.02 263.113 537.983 269.968]
 /Subtype /Link
 /A << /S /GoTo /D (products) >>
 >> endobj
-1428 0 obj <<
+1442 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [119.552 248.105 297.224 257.016]
+/Subtype /Link
+/A << /S /GoTo /D (product-group-controls) >>
+>> endobj
+1443 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 248.105 537.983 257.016]
+/Subtype /Link
+/A << /S /GoTo /D (product-group-controls) >>
+>> endobj
+1444 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [95.641 235.153 163.447 244.065]
 /Subtype /Link
 /A << /S /GoTo /D (components) >>
 >> endobj
-1429 0 obj <<
+1445 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 235.153 537.983 244.065]
 /Subtype /Link
 /A << /S /GoTo /D (components) >>
 >> endobj
-1430 0 obj <<
+1446 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [95.641 224.259 147.387 231.113]
 /Subtype /Link
 /A << /S /GoTo /D (versions) >>
 >> endobj
-1431 0 obj <<
+1447 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 224.259 537.983 231.113]
 /Subtype /Link
 /A << /S /GoTo /D (versions) >>
 >> endobj
-1432 0 obj <<
+1448 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [95.641 211.308 156.801 218.162]
 /Subtype /Link
 /A << /S /GoTo /D (milestones) >>
 >> endobj
-1433 0 obj <<
+1449 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 211.308 537.983 218.162]
 /Subtype /Link
 /A << /S /GoTo /D (milestones) >>
 >> endobj
-1434 0 obj <<
+1450 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [95.641 196.299 134.665 205.21]
 /Subtype /Link
 /A << /S /GoTo /D (flags-overview) >>
 >> endobj
-1435 0 obj <<
+1451 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 196.299 537.983 205.21]
 /Subtype /Link
 /A << /S /GoTo /D (flags-overview) >>
 >> endobj
-1436 0 obj <<
+1452 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [119.552 183.348 220.283 192.259]
 /Subtype /Link
 /A << /S /GoTo /D (flags-simpleexample) >>
 >> endobj
-1437 0 obj <<
+1453 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 183.348 537.983 192.259]
 /Subtype /Link
 /A << /S /GoTo /D (flags-simpleexample) >>
 >> endobj
-1438 0 obj <<
+1454 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [119.552 170.396 193.444 179.308]
 /Subtype /Link
 /A << /S /GoTo /D (flags-about) >>
 >> endobj
-1439 0 obj <<
+1455 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 170.396 537.983 179.308]
 /Subtype /Link
 /A << /S /GoTo /D (flags-about) >>
 >> endobj
-1440 0 obj <<
+1456 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [143.462 159.382 202.401 166.356]
 /Subtype /Link
 /A << /S /GoTo /D (flag-values) >>
 >> endobj
-1441 0 obj <<
+1457 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 159.382 537.983 166.356]
 /Subtype /Link
 /A << /S /GoTo /D (flag-values) >>
 >> endobj
-1442 0 obj <<
+1458 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [119.552 144.493 220.831 153.405]
 /Subtype /Link
 /A << /S /GoTo /D (flag-askto) >>
 >> endobj
-1443 0 obj <<
+1459 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 144.493 537.983 153.405]
 /Subtype /Link
 /A << /S /GoTo /D (flag-askto) >>
 >> endobj
-1444 0 obj <<
+1460 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [119.552 131.542 222.734 140.453]
 /Subtype /Link
 /A << /S /GoTo /D (flag-types) >>
 >> endobj
-1445 0 obj <<
+1461 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 131.542 537.983 140.453]
 /Subtype /Link
 /A << /S /GoTo /D (flag-types) >>
 >> endobj
-1446 0 obj <<
+1462 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [143.462 118.59 246.405 127.502]
 /Subtype /Link
 /A << /S /GoTo /D (flag-type-attachment) >>
 >> endobj
-1447 0 obj <<
+1463 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 118.59 537.983 127.502]
 /Subtype /Link
 /A << /S /GoTo /D (flag-type-attachment) >>
 >> endobj
-1448 0 obj <<
+1464 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [143.462 105.639 216.528 114.55]
 /Subtype /Link
 /A << /S /GoTo /D (flag-type-bug) >>
 >> endobj
-1449 0 obj <<
+1465 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 105.639 537.983 114.55]
 /Subtype /Link
 /A << /S /GoTo /D (flag-type-bug) >>
 >> endobj
-1355 0 obj <<
-/D [1353 0 R /XYZ 71.731 729.265 null]
+1371 0 obj <<
+/D [1369 0 R /XYZ 71.731 729.265 null]
 >> endobj
-1352 0 obj <<
-/Font << /F27 1208 0 R /F32 1215 0 R /F33 1306 0 R >>
+1368 0 obj <<
+/Font << /F27 1224 0 R /F32 1231 0 R /F33 1322 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-1499 0 obj <<
-/Length 56203     
+1515 0 obj <<
+/Length 51879     
 /Filter /FlateDecode
 >>
 stream
-xڜ�͒dיe7����;�=~����2�$YK������f��E�����u#��'b���|�M�.�Wky��"�[���=l���������?������?���<|���?�ǿ9�'��O�������x~==n��]No���g����F������������������廷���������<��?���_O������<=|��?��O���߾��ӟ���[��O���?�������?��].ϧ����O��=���������{�y��k=}�B^OϏ�[/�u���������|���,[���zz�<J���k���p~����;�X����Z�g�Xx��x>=�=;�x����z==��H���k�ϧ�kݟ�cm��u������ޱ6��i{�ޜu<��x`�ކGkݟ�cm��u{��$�G�8w��ރ�Y:�g�Hx����iϲuX���|����;�X�w��Z�g�Xx`��gǛ�17��cm�m���?r^�_��Y�.�����b���w�
<�>m��s��;�X���I���ޱ6��u{�u<��x`�ކ��17��cm��u{.���x������m8[���ko[߶��A��ϲuX��A:ߟ�c�;�=�^�/��w��;Pn���7��#m�M�������~��Y�����t}����;�X�w��*���w�
<�������ܱ6����
WiϲuX����$���w�
<�no��YZ�g�Xx`���kݟ�cm�m������~��Y�.�����t����;�X�N//ֺ?{��������&���w�
�m�no���i���;Pn������e����x����;�X�7�*ڌg�Xx����iϲuX�w�,ƍg�Xx`����y���������Z�g�Xx���pz~���ϲuX�����x����֧����ޱ6����
O�g�x����������(ڌgٺ����p����;�X���"ƍg�Xx`���7���;���V�l��y�?���(�G��p��ޑ6���tzz�����;�X_O�ֺ?{�����ׇ�Ӌ�7�e�<�^O���x������mx����;�X���Q���ޱ6��m{��:�e�<�no�E���ޱ6����
g�3n<{�����6<X���koZN�o�g\�E�
-<�^No�����k�O��kݟ�cm����$�P`<z�Y�������y������Oֺ?{�����<^�u������]�g'y��������m�H�x������
�Giݟ�cm��u{��I��cm������f���w�
�m�>�����\�e�<�^N���$�ޱ6���t�>[���k����$̍g�Xx����
��$ϲuX���j���w�
<�no��[���g���{ �N��io[����,��Y�.���ȳ�<{������"�N��k�/��Wkݟ�cm�m����"�N�,[���rz�g'y������mx����;�X��A����;�޶�lo�<;ɳl]���m�X���k��� �N��k��� �N��ko[_N�7iϲuX/�g+���g��O��<>ɳw�
<����_�u������o�{ �O�,[��u{��I��cm��u{�u������m��'y����7�O�� ?�γh]���m8[���k��� �O��k�/�'��Ly�������Ӄ&�,[���rz��'y����֧�ó���ޱ6����
2�ȳw�
�m��GcN�?���(���Q*�>zGY����Z"�ޑ6������O>���?B�]�=]^O���n<��e<>|�:�/������郆����7��{��;>^O��?����?׷���q<�g>r����/��m����H�
�^��l}ҭ��|�^����4j�r���{ب�x!ǍZ 6j�:5�65g�[�����F��
�FMYӨ�ub�欣Qck�QsҽQcg�Qs�Ѩ���ب)k5�.@lԜu4jlm 6j�:5�65g�[�����QC��F�YG���b�欣Qck�Qs�Ѩ���ب)k5�.@lԜu4jlm 6j�:5�65g�[�����QC��F�9�6jl��F�	�F����F�9G���b�f��Q#�
-�F�YG���b�欣Qck�Qs�Ѩ���ب)k5�.@lԜu4jlm 6j�:5�65g�[�����QC��F�YG���b�欣Qck�Qs�Ѩ���Ԩ)�h���8jԜro�XY8lԜs4j,m 6j�:5�65eM��������F��
�F�YG���b�欣Qck�QS�4jh]�ب9�h���@lԜu4jlm 6j�:5�65eM��������F��
�F�YG���R��{����Q����QCe�Qs�Ѩ���ب9�h���@lԜu4jlm 6jʚF
�5g�[�����F��
�F�YG���b���i�к��Qs�Ѩ���ب9�h���@lԜu4jlm 6j�:5��@lԜu4jlm 6j�:5�6�5'�5v5�L��������F��
�F�YG���b�欣Qck�QS�4jh]�ب9�h���@lԜu4jlm 6j�:5�65eM��������F��
�F�YG���b�欣Qck�QS�4jh]�ب9�h���@jԜto��Y8lԜs4j,m 6jʚF
�5g�[�����F��
�F�YG���b���i�к��Qs�Ѩ���ب9�h���@lԜu4jlm 6jʚF
�5g�[�����F��
�F�YG���b���i�к��QsҽQcg�Qs�Ѩ���ب9�h���@lԔ5�Z 6j�:5�65g�[�����F��
�F�Xg�F������F��
�F�YG���b�欣Qck�QS�4jh]�ب9�h���@lԜu4jlm 6j�:5�6�5%�:G��S�+���s�F��
�F
+Ө������qܨ��X��Fm�3��gn��3��e4j��O_��F�C�?֨�˝�ڧ�{ܨ}�B�Q#��FMYӨ���ܨ)k5�6�5eM���r�f��Q#��FMYӨ���ب)�h��Y8nԔ3�Jȍ���F���5eM���r���i���@nԔ5�Zȍ���F���5eM���r���i���@nԔ5�Zȍ���F���5eM���r���i���@nԔ5�Zȍ���F���5��54~�a����QCc�QS�4j(m 7j��Ѩ�ur���i���@nԔ5�Zȍ���QCk�Q3�٨�ur���i���@nԔ5�Zȍ���QCk�Q3�٨�ur���i���@nԔ5�Zȍ���QCk�Q3�4j�l6jJ95T�5�L���r���i���@nԌu6jd]�ܨ)k5�6�5eM���r���i���@nԌu6jd]�ܨ)k5�6�5eM���r���i���@nԌu6jd]�ܨ)k5�6�5eM���b����QCg�Q3�4j�l7jʙF
�
�FMYӨ���ܨ)k5�6�5c��Y 7jʚF
�
�FMYӨ���ܨ)k5�6�5c��Y 7jʚF
�
�FMYӨ���ܨ)k5�6�5a�h����QS�4jhm 7jʚF
�
�FMIG����q�f��Q#��FMYӨ���ܨ)k5�6�5eM���r�f��Q#��FMYӨ���ܨ)k5�6�5eM���r�f��Q#��FMYӨ���ܨ)k5�6�5eM���r�f��Q#��FMYӨ���ب)�h��Y8nԔ3�Jȍ���F���5eM���r���i���@nԔ5�Zȍ���F���5eM���r���i���@nԔ5�Zȍ���F���5eM���r���i���@nԔ5�Zȍ���F��5%�:Ǎ�r�QCi�QS�4jhm 7j�:5�.@nԔ5�Zȍ���QCk�QS�4jhm 7j��Ѩ�ur���i���@nԔ5�Zȍ���QCk�Q3�٨�ur���i���@nԔ5�Zȍ���QCk�Q3�4j�l6jJ95T�5�L���r�v�X�F
_�ި}z���F��u��ߣ��vz|}�Fm<�Ѩ]G��?�$�������}��H�.lj���|y�W��>��o���ϧ���o_�
���k���S��xhm �x�:s<�.@��59Z�9��&�Ck9�S��xhm �x�:s<�.@��59Z�9������O9�㡴������Ⱥ�9�S��xhm �xʚ�
�OY�㡵������Ⱥ�9�S��xhm �xʚ�
�OY�㡵������Ⱥ�9�S��xhm �xʚ�
�OY�㡵������Ⱥ�)�S�=�C�g�xJ8r<4�s<�L���r�'�9XW �xʚ�
�OY�㡵���)kr<�6�s<c�9Y �xʚ�
�OY�㡵���)kr<�6�s<c�9Y �xʚ�
�OY�㡵���)kr<�6s<#M�G��a���#�Ce�8�S��x(m �xʚ�
��Xg�G��9��&�Ck9�S��xhm �xʚ�
��Xg�G��9��&�Ck9�S��xhm �xʚ�
��Xg�G��9��&�Ck9�S��xhm �xJ:r<ts<�L�G��q�����P�@��59Z�9��&�Ck9�3֙�ur�������@��59Z�9��&�Ck9�3֙�ur�������@��59Z�9��&�Ck9�֏�+�s<eM���r�������@��t�x�,�x�9s<�.@��59Z�9��&�Ck9�S��xhm �x�:s<�.@��59Z�9��&�Ck9�S��xhm �x�:s<�.@��59Z�9��&�Ck9�S��xhm �x�:s<�.@��59Z�9������O9�㡴������Ⱥ�9�S��xhm �xʚ�
�OY�㡵������Ⱥ�9�S��xhm �xʚ�
�OY�㡵������Ⱥ�9�S��xhm �xʚ�
�OY�㡵������Ⱥ�1�Sґ㡳p��)gr<�6�s<eM���r�g�3�#��OY�㡵���)kr<�6�s<eM���r�'�9XW �xʚ�
�OY�㡵���)kr<�6�s<c�9Y �xʚ�
�OY�㡵���)kr<�6s<#M�G��a���#�Ce�8�S��x(m �x�=����u�9ާ��x=��_��?����)|e��S���-������z��g��㽍�����o?���~��]_���x���P��-�����_Χ��Cx�y��k<}�B���Ǜ/�u���������`�u���������Z�g�Xx���S:��(;w��ރ�Y:�g�Hx`�ރkݟ�cm������f�g�Xx��v>]��Vc��Y�.�����b���w�
<�>�.�ʺ?{�����6������ޱ6�v�
�ΚgѺ���p}����;�X����"���w�
<�no��Z�g�Xx�z�ކ�c.ϲuX���7iݟ�cm����t~����;�X_O��7��w������O��'ϲtX����Z�g�Xx`�ރ�����ޱ6�����Wiݟ�cm��@��6\�u<��x`�ʚ	�6�'0�5hm O`(k&0��@��0�9�A��ʚ	�6�'0�5hm O`(k&0��@��0�9�A��ʚ	�6'0�tL`��p<�����@iy�X�Y O`(k&0��@��P�L`���<�����@ky�X�Y O`(k&0��@��P�L`���<�����@ky�X�Y O`(k&0��@��P�L`���<�����@ky�X�Y M`(�>����0��P�1������rf�
�	a�����
-�	e�Z�ʚ	�6�'0�5hm O`�� ��	e�Z�ʚ	�6�'0�5hm O`�� ��	e�Z�ʚ	�6�'0�5hm N`i&0��8��P�1������rf�
�	e�Z��:'0Ⱥ�yCY3������f�
�	e�Z��:'0Ⱥ�yCY3������f�
�	e�Z��:'0Ⱥ�yCY3������f�
�	%�,N`e&0H�8��P�L`���<�����@kyCY3�������	�.@��P�L`���<�����@kyCY3�������	�.@��P�L`���<�����@kyCY3������~L`�u���f�
�	e�Z�J:&0�Y8��0�9�A��ʚ	�6�'0�5hm O`(k&0��@��0�9�A��ʚ	�6�'0�5hm O`(k&0��@��0�9�A��ʚ	�6�'0�5hm O`(k&0��@��0�9�A��ʚ	�6'0�tL`��p<�����@iy�X�Y O`(k&0��@��P�L`���<�����@ky�X�Y O`(k&0��@��P�L`���<�����@ky�X�Y O`(k&0��@��P�L`���<�����@ky�X�Y N`(��@g�xC93������f�
�	c�d]�<�����@kyCY3������f�
�	a�����
-�	e�Z�ʚ	�6�'0�5hm O`�� ��	e�Z�ʚ	�6�'0�5hm N`i&0��8��P�1������rf�
�	�s�?���c����2`��u����zz��q�|~���zE#v�YT���LF0�c�o�q~��I����������o�����:q���}z��qܷ/�8�6��8c�qY �qʚ8�
�8NYǡ���)k�8�6��8c�qY �qʚ8�
�8NIG���q����P�@��u�qd]��)k�8�6��8eM��r������@��u�qd]��)k�8�6��8eM��r������@��u�qd]��)k�8�6��8eM��r������@��u�qd]��)�ǡ�3�8%q�q�r&�Ci9�֏8�+��8eM��r������@��5qZ�q���8����8eM��r������@��5qZ�q���8����8eM��r������@��5qZ�q��&�#g�0�S�ǡ�p�)g�8�6��8eM��rg�3�#��8NYǡ���)k�8�6��8eM��rg�3�#��8NYǡ���)k�8�6��8eM��rg�3�#��8NYǡ���)k�8�6�8%q:�q�Q&�#e�8�S��q(m �qʚ8�
�8NYǡ�����Ⱥ�9�S��qhm �qʚ8�
�8NYǡ�����Ⱥ�9�S��qhm �qʚ8�
�8NYǡ���	�G��q��&�Ck9�S��qhm �qJ:�8t��8�qI �qʚ8�
�8NYǡ���)k�8�6��8c�qY �qʚ8�
�8NYǡ���)k�8�6��8c�qY �qʚ8�
�8NYǡ���)k�8�6��8c�qY �qʚ8�
�8NIG���q����P�@��u�qd]��)k�8�6��8eM��r������@��u�qd]��)k�8�6��8eM��r������@��u�qd]��)k�8�6��8eM��r������@��u�qd]��)���Y8��3qJ�q��&�Ck9�3�Ǒur������@��5qZ�q��&�Ck9�֏8�+��8eM��r������@��5qZ�q���8����8eM��r������@��5qZ�q��&�#g�0�S�ǡ�p�)g�8�6���K�q�:�8��ˀ8��u,q��Nw}�~<q7�Iwq�?���o�u���or���뷁����_�9x�3������o_rhm r�:9�.@�5�Zȁ��&�Ck9�S�rhm r�:9�.@�5�Z�����@���@N9ȡ�����Ⱥ�9�S�rhm rʚ@�
�@NYȡ�����Ⱥ�9�S�rhm rʚ@�
�@NYȡ�����Ⱥ�9�S�rhm rʚ@�
�@NYȡ�����Ⱥ�)�S�=�C�grJ894�9�L ��r '��XW rʚ@�
�@NYȡ���)k9�6�9c��Y rʚ@�
�@NYȡ���)k9�6�9c��Y rʚ@�
�@NYȡ���)k9�69#M G��a ��#�Ce�8�S�r(m rʚ@�
�@�Xg G�ȁ��&�Ck9�S�rhm rʚ@�
�@�Xg G�ȁ��&�Ck9�S�rhm rʚ@�
�@�Xg G�ȁ��&�Ck9�S�rhm rJ:9t9�L G��q ��	�P�@�5�Zȁ��&�Ck9�3�ȑur ��	���@�5�Zȁ��&�Ck9�3�ȑur ��	���@�5�Zȁ��&�Ck9�֏@�+�9eM ��r ��	���@�tr�,r�99�.@�5�Zȁ��&�Ck9�S�rhm r�:9�.@�5�Zȁ��&�Ck9�S�rhm r�:9�.@�5�Zȁ��&�Ck9�S�rhm r�:9�.@�5�Z�����@���@N9ȡ�����Ⱥ�9�S�rhm rʚ@�
�@NYȡ�����Ⱥ�9�S�rhm rʚ@�
�@NYȡ�����Ⱥ�9�S�rhm rʚ@�
�@NYȡ�����Ⱥ�1�S�ȡ�p�)g9�6�9eM ��r g�3�#��@NYȡ���)k9�6�9eM ��r '��XW rʚ@�
�@NYȡ���)k9�6�9c��Y rʚ@�
�@NYȡ���)k9�69#M G��a ��#�Ce�8�S�r(m r�e�
-��u�ܧ���x������㶿��_9��$���@�����q!����[_!�v:�?�����BnVc�g5��eWc߾����@�Ɣ5�Z�՘��Ck�3�Y��ur5������@�ƔtTc�,Wcʙj�
�j�Xg5F��՘��Ck�S�Tchm Wcʚj�
�j�Xg5F��՘��Ck�S�Tchm Wcʚj�
�j�Xg5F��՘��Ck�S�Tchm Wcʚj�
�j�Xg5F�H՘r��?ðS�Q���p\�)g�1�6��1a������S�Tchm Wcʚj�
�jLYS����\���Ⱥ��S�Tchm Wcʚj�
�jLYS����\���Ⱥ��S�Tchm Wcʚj�
�jLYS����X�i�1r6�1��*�՘r�Ci�S�Tchm Wc�:�1�.@�Ɣ5�Z�՘��Ck�S�Tchm Wc�:�1�.@�Ɣ5�Z�՘��Ck�S�Tchm Wc�:�1�.@�Ɣ5�Z�՘��Ck�S�Q���pX�e�1R6��1�L5��r5������@�Ɣ5�Z�՘��j����1eM5��r5������@�Ɣ5�Z�՘��j����1eM5��r5������@�Ɣ5�Z�՘�~Tc`]�\�)k�1�6��1eM5��b5���Cg�3�Y��tr5������@�Ɣ5�Z�՘��Ck�3�Y��ur5������@�Ɣ5�Z�՘��Ck�3�Y��ur5������@�Ɣ5�Z�՘��Ck�3�Y��ur5������@�ƔtTc�,Wcʙj�
�j�Xg5F��՘��Ck�S�Tchm Wcʚj�
�j�Xg5F��՘��Ck�S�Tchm Wcʚj�
�j�Xg5F��՘��Ck�S�Tchm Wcʚj�
�j�Xg5F��՘��j���jL9S����\�)k�1�6��1c��Y Wcʚj�
�jLYS����\�)k�1�6��1a������S�Tchm Wcʚj�
�jLYS����\���Ⱥ��S�Tchm Wcʚj�
�jLYS����X�i�1r6�1��*�՘r�Ci�;��T5��c��>��Ǝ_��?����)|���S���-�����z����3ydoƶ���a�������������i�w���������|�&;?�m_z����X�e����;��OׯG	�r�������x~��^�o�}!7���w�
<�>�������w�
<���^/ֺ?{�������m�8��(;w��ރ�Y:�g�Hx`�ރkݟ�cm������f�g�Xx��v>]���c��Y�.�����b���w�
<�>�.ϏҺ?{�����6��a����ޱ6�v#�
�ΚgѺ���p}����;�X����"���w�
<�no��Z�g�Xx�z�ކ�c.ϲuX���7iݟ�cm����t~����;�X_O��7��w������O��'ϲtX����Z�g�Xx`�ރ�����ޱ6�����Wiݟ�cm��W�no�UZdzl]���m�<J���k��;��5_����(+k�D�
�/Q6�9�A��sʚ9�6��0�5shm �a(k�0��@��0�9�A��sʚ9�6�0�t�a��p<�����@iy�X�Y �a(k�0��@��P��a���<�����@ky�X�Y �a(k�0��@��P��a���<�����@ky�X�Y �a(k�0��@��P��a���<�����@ky�X�Y �a(�>����0��P�1������rf�
�9a�����
-�9e�Z�sʚ9�6��0�5shm �a�� ��9e�Z�sʚ9�6��0�5shm �a�� ��9e�Z�sʚ9�6��0�5shm �ai�0��8��P�1������rf�
�9e�Z�s�:�0Ⱥ�yCY3������f�
�9e�Z�s�:�0Ⱥ�yCY3������f�
�9e�Z�s�:�0Ⱥ�yCY3������f�
�9%s�,�ae�0H�8��P��a���<�����@kyCY3�������9�.@��P��a���<�����@kyCY3�������9�.@��P��a���<�����@kyCY3������~�a�u���f�
�9e�Z�sJ:�0�Y8��0�9�A��sʚ9�6��0�5shm �a(k�0��@��0�9�A��sʚ9�6��0�5shm �a(k�0��@��0�9�A��sʚ9�6��0�5shm �a(k�0��@��0�9�A��sʚ9�6�0�t�a��p<�����@iy�X�Y �a(k�0��@��P��a���<�����@ky�X�Y �a(k�0��@��P��a���<�����@ky�X�Y �a(k�0��@��P��a���<�����@ky�X�Y �a(��@g�xC93������f�
�9c�sd]�<�����@kyCY3������f�
�9a�����
-�9e�Z�sʚ9�6��0�5shm �a�� ��9e�Z�sʚ9�6��0�5shm �ai�0��8��P�1������rf�
�9��=5���c����2`��u�u_���v��1�_��g� ��������������ӟ�����ǟ>�T�O����������͹�����?��j���x����VN�A��<��Ws�l�x!��[�͆���@��f�YG���b�ᬣ�`k��p��l����l(k�
�.@l6�u4lm 6�:�
�6�
g�[�͆���@��f�9�6l��f�	�f����f�9G���b�a��� �
-�f�YG���b�ᬣ�`k��p��l����l(k�
�.@l6�u4lm 6�:�
�6�
g�[�͆���@��f�YG���b�ᬣ�`k��p��l����l(�h6��8j6�ro6XY8l6�s4,m 6�:�
�6�
eM����͆��f��
�f�YG���b�ᬣ�`k��P�4h]��l8�h6��@l6�u4lm 6�:�
�6�
eM����͆��f��
�f�YG���R��{����Q�����@e��p��l����l8�h6��@l6�u4lm 6ʚf��
g�[�͆��f��
�f�YG���b���i6��p��l����l8�h6��@l6�u4lm 6�:�
��@l6�u4lm 6�:�
�6��
'ݛ
v�
�L����͆��f��
�f�YG���b�ᬣ�`k��P�4h]��l8�h6��@l6�u4lm 6�:�
�6�
eM����͆��f��
�f�YG���b�ᬣ�`k��P�4h]��l8�h6��@j6�to6�Y8l6�s4,m 6ʚf��
g�[�͆��f��
�f�YG���b���i6к���p��l����l8�h6��@l6�u4lm 6ʚf��
g�[�͆��f��
�f�YG���b���i6к���pҽ�`g��p��l����l8�h6��@l6�5�Z 6�:�
�6�
g�[�͆��f��
�f�Xg�A��͆��f��
�f�YG���b�ᬣ�`k��P�4h]��l8�h6��@l6�u4lm 6�:�
�6��
%�:G͆S��+�͆s�f��
�f��l������q�l��X��˝fc|-%6��l\F���_���0����4��>���|:�E�N%z�y���?�N�/��;���@�N%gߩ���w*)k�S	��S�Y�w*�����J�:�S��
��Tr��Jlm ~����;�к��;��u|�[Hߩ��w*��p��J�9�S��
��TR�|�Z ~�����Tbk�;��5}Z�}����Ck��3���ur�������@��5}Z�}����Ck��3���ur�������@��5}Z�}����Ck��3���uR���{����0��p�yh,�yʙ>�
�>OX?�<��@��5}Z�}����Ck��S��yhm �y�:�<�.@��5}Z�}����Ck��S��yhm �y�:�<�.@��5}Z�}����Ck��S��yhm �yF�>����>O)G����q�����P�@��5}Z�}���>����<eM���r�������@��5}Z�}���>����<eM���r�������@��5}Z�}���>����<eM���r�������@��t�y�,�yF�>����>O9�硴���)k�<�6��<eM���r�g���#��>OY�硵���)k�<�6��<eM���r�g���#��>OY�硵���)k�<�6��<eM���r�'�}XW �yʚ>�
�>OY�硵���)����Y8��s�y$]���)k�<�6��<eM���r�������@��u�yd]���)k�<�6��<eM���r�������@��u�yd]���)k�<�6��<eM���r�������@��u�yd]���)k�<�6�<%}:�}�r��Ci��3���ur�������@��5}Z�}����Ck��3���ur�������@��5}Z�}����Ck��3���ur�������@��5}Z�}����Ck��3���ub�����Cg��S��y(m �yʚ>�
�>�Xg�G��}����Ck��S��yhm �yʚ>�
�>OX?�<��@��5}Z�}����Ck��S��yhm �y�:�<�.@��5}Z�}����Ck��S��yhm �yF�>����>O)G����q�����P�@��'}������2��;~_�|���'��J�O�篷@�?�n�%����3yd�yߧt��}���<oy����������\N׃߬������΋�C�_����zz��K��V��ko[�Χ��k&cϲuX����?V���;�X���l���w�
<�no��5����ޱ6���|�������gٺ����뫵��ޱ6���|��_3)���k������XXY�g�Xx����
O�:�e�<�no���Iް��ޱ6����
�,����w�
<��?��u��������� �6�?���(���,��g�Hx`�ރkݟ�cm������f�g�Xx��v>]^���,[���zzy����;�X�O�g�cn<{�����6<�8��;�ޮ�����Y�,ZW��u{��Һ?{�����6\^�u������m8[���ko[�`�t��,[���zz~{����;�X�O�Wkݟ�cm�����l��>z�Y�����t~q?p�,K��u{��u������=x�H���k�ۻ�x����;���lo�UZdzl]�ֱ����Aky�GY3̃��0��f��
�ac��<d]�<̣��Aky�GY3̃��0��f��
�ac��<d]�<̣��Akq�GI�0:��<ʙa�6��y�u�u�0��f��
�ae�0Z��<ʚa�6��y�u�u�0��f��
�ae�0Z��<ʚa�6��y�u�u�0��f��
�ae�0Z��<ʚa�6��y�u�u�0�r��<h��a%�<h,�(g�yP�@�֏a��@�Q�󠵁<̣��Aky�GY3̃��0���a�.@�Q�󠵁<̣��Aky�GY3̃��0���a�.@�Q�󠵁<̣��Aky�GY3̃��0��f�����a��<�,�(g�yP�@�Q�󠵁<�c�s�����y�5�<hm �(k�y��@�Q�󠵁<�c�s�����y�5�<hm �(k�y��@�Q�󠵁<�c�s�����y�5�<hm �(k�y��@�Q�1̃���0�Qf�����a��0J��<ʚa�6��y�5�<hm ���!��ae�0Z��<ʚa�6��y�5�<hm ���!��ae�0Z��<ʚa�6��y�5�<hm ���0XW �(k�y��@�Q�󠵁8̣�c����a��<$]�<̣��Aky�GY3̃��0��f��
�ac��<d]�<̣��Aky�GY3̃��0��f��
�ac��<d]�<̣��Aky�GY3̃��0��f��
�ac��<d]�<̣��Akq�GI�0:��<ʙa�6��y�u�u�0��f��
�ae�0Z��<ʚa�6��y�u�u�0��f��
�ae�0Z��<ʚa�6��y�u�u�0��f��
�ae�0Z��<ʚa�6��y�u�u�0���at��y�3�<(m �(k�y��@�1�9�C���<ʚa�6��y�5�<hm �(k�y��@�֏a��@�Q�󠵁<̣��Aky�GY3̃��0���a�.@�Q�󠵁<̣��Aky�GY3̃��0��f�����a��<�,�(g�yP�@�9ޚQ�<�:�a�O/���p���u�u�<�?Q�m���y�#c��2�y������~��s������$�y�UM�\O_�0xU�ϯ�� �X���e�J�3@ʚ �6�g��u���u���f�
� e�Z�3@ʚ �6�g��u���u���f�
� e�Z�3@ʚ �6�g��u���u���f�
� e�Z�3@ʚ �6g��43@�l��)gf�P�@�R������<���Bky�X�Y ��)kf���@�R������<���BkyHX?f���yHY3�����f�
� e�Z�3@�:g�Ⱥ�yHY3�����f�
� %3@�,���"�� e�Z�3@ʚ �6�g��53@hm ���"�� e�Z�3@ʚ �6�g��53@hm ���"�� e�Z�3@ʚ �6�g��53@hm ���"�� e�Z�3@J:f��Y8�R������<d�s���g��53@hm ��)kf���@�R������<d�s���g��53@hm ��)kf���@�R������<d�s���g��53@hm ��)kf���@�R������<d�s���f��s�B�g��)�Bc�xH93�����~���u���f�
� e�Z�3@ʚ �6�g��u���u���f�
� e�Z�3@ʚ �6�g��u���u���f�
� e�Z�3@ʚ �6g��43@�l��)�Be�xH93�����f�
� c�3@d]�<���BkyHY3�����f�
� c�3@d]�<���BkyHY3�����f�
� c�3@d]�<���BkyHY3������ tg��23@�l��)gf�P�@�R������<���Bky�X�Y ��)kf���@�R������<���Bky�X�Y ��)kf���@�R������<���BkyHX?f���yHY3�����f�
� %3@�,���"�� e�Z�3@ʚ �6�g��53@hm ���"�� e�Z�3@ʚ �6�g��53@hm ���"�� e�Z�3@ʚ �6�g��53@hm ���"�� e�Z�3@J:f��Y8�R������<d�s���g��53@hm ��)kf���@�R������<d�s���g��53@hm ��)kf���@�R������<d�s���g��53@hm ��)kf���@�R������<d�s��g��t����p<���BiyHY3������ �.@�R������<���BkyHY3�����~���u���f�
� e�Z�3@ʚ �6�g��u���u���f�
� e�Z�3@ʚ �6g��43@�l��)�Be�xH93����񾍚�ױ��}z0t�:����]7�����G��u����/?��?~�������O����ӗ?�嗟~���&�ۯ����󷿓/ף�ɏ
+xڜ�͒dW�]7���3�=~���&M�&�Mj i��E�Ш�J4��n�=�D�~����h쮺\�3U�k��������{9�^���sy;]��������w����w��������t�����ϯ��
������r�����vz�xyx=]�������Ϳ��|�vz{�~����<�g����������t�����������ן���_~��O���o��O�������w����v�<����>���pzx:�z����Z����z��������^�
���ko[����*��Y�.����|y����;�X����$���w�
<�noÃ���ޱ6���|zx{v��,[���zzz}����;�X�O/ֺ?{�����_6ϯҺ?{����֧�mxzs��,[��u{�u������m��%�?z�Y���\�ҹ?{G������=�H�x������狴��ޱ6����ֺ?{������o���x������/���ʿ�dzl]������Z�g�Xx`}ڞ�?�Ƴw�
<�no�17��cm�m���6<J�x������
W�cn<{�����6\䏹��k���p����;�޶�moÃ�17�e�<�no�t�?y��v�{:��_��G�w����W�n<{G������������ɳh]�����l���w�
<�n���UZ�g�Xx`��Mgݟ�cm�m�y{��:�e�<�no��IZ�g�Xx`�ކ���ޱ6�����ֺ?{������������˳l]���i�� ���w�
<�>�^^�u���������MZ�g�Xx�z�����(;w��������;��(�7��,���w�
<�no�U���ޱ6��q{.�:�e�<�n��Y���ޱ6����
�!��k������ޱ6������*�s3�e�<�^Og�_��;�X�N��ֺ?{�����6<ɟq��;�޶>ooã�i3�e�<�no��Z�g�Xx`�ކ��7��cm��u{�!��q��e{�ϛ�QV6�@y=���s����֧�ӛ���ޱ6���zzx����;�޶�>��^�ϸ�,[���zzx�?mƳw�
<�noÓ���ޱ6����
��g�x������o��p���,[��u{.�g�x������m8˟q��;�X����Z�g�Xx����pz|s?��,ZW���rz���g�Xx`}:=�X���k�/'����;���V���@�hͳ,]���=x����;�X����"���w�
<�n�<;ɳw�
�m�lo�EZdzl]���m8?J���k��� �N��k�/��7kݟ�cm�m���t}u?��,[���rz�g'y����֧���Z�g�Xx`�ކ'�cn<{�������m�g'y������
Wkݟ�cm��u{�5��q�@����$�ޑ6��i{��:�e�<�n�<;ɳw�
<�>�.��$�ޱ6���rzy����;�޶>?�.��$ϲuX/�yv�g�Xx`�ކ'kݟ�cm��u{��I��cm�m���6ȳ�<��x`�ކ����ޱ6����
��$�ޱ6����
��$�ޱ6����t~���,[���rz�ү��q�@�t:��<{G�������Z�g�Xx������$ϲuX�wA���;�X����Z�g�Xx`��y|�g�Xx�����
��<��x`�ކ����ޱ6����
��$�ޱ6���rz�Δg�Xx�z~8=�`"ϲuX/�'y|�g�Xx`}:=<[���k��� ��<{������{4����l܁r{���w��;Pno��%��i��p����{�#�������t���3�_���7���rz���Y�>hx�^�{���G��۹������s�y��s}����Cy�#w<���~����:��Q<~ۣ]��|��m}I����|<&ǣW��>�����9����@��u�xlm �xʚ�s<g9[�9�����
��YG���b�����к�1�s֑㱵���9�㱳p��9���X�@��59Z �x�:r<�6s<g9[�9�����
�OY��ub��#�ck1�s֑㱵���9�����@��59Z �x�:r<�6s<g9[�9�����
�OY��uB��_s<6~�Q��{����a��#�ci1�3֙�ub��#�ck1�s֑㱵���9�����@��59Z �x�:r<�6s<g9[�9�����
�OY��ub��#�ck1�s֑㱵���9�����@��t�x�l�xN��x�,�x�9r<�6s<g9[�9��&�C���YG���b��#�ck1�s֑㱵���)kr<�.@��u�xlm �x�:r<�6s<g9[�9��&�C���YG���b��#�ck)�s�=�cg�(�Sʑ㡲q��9���X�@��u�xlm �x�:r<�6s<eM����9�����
��YG���b��#�ck1�S��xh]���9�����@��u�xlm �x�:r<�6s<c�9YW �x�:r<�6s<g9[H9���9;�9�r&�C���YG���b��#�ck1�s֑㱵���)kr<�.@��u�xlm �x�:r<�6s<g9[�9��&�C���YG���b��#�ck1�s֑㱵���)kr<�.@��u�xlm �xN��x�,�x�9r<�6s<eM����9�����
��YG���b��#�ck1�S��xh]���9�����@��u�xlm �x�:r<�6s<eM����9�����
��YG���b��#�ck1�S��xh]���9�㱳p��9���X�@��u�xlm �xʚ�s<g9[�9�����
��YG���b�g�3�#�
+��YG���b��#�ck1�s֑㱵���)kr<�.@��u�xlm �x�:r<�6s<g9[H9�������)������9G���b�=����u|}���8���u,9��N�������s���G�w9�?��ˏ��{�o�>t7z��q��F
^�l�>���F���Y 7jʚF
�
�FMYӨ���ܨ)k5�6�5c��Y 7jʚF
�
�FMIG����q���i�P�@nԌu6jd]�ܨ)k5�6�5eM���r���i���@nԌu6jd]�ܨ)k5�6�5eM���r���i���@nԌu6jd]�ܨ)k5�6�5eM���r���i���@nԌu6jd]�Ԩ)�ި��35%�Ǎ�r�QCi�Q֏F
�+�5eM���r���i���@nԔ5�Zȍ���F���5eM���r���i���@nԔ5�Zȍ���F���5eM���r���i���@nԔ5�Z�����Q#g�QS�Ѩ��pܨ)g5�6�5eM���r�f��Q#��FMYӨ���ܨ)k5�6�5eM���r�f��Q#��FMYӨ���ܨ)k5�6�5eM���r�f��Q#��FMYӨ���ܨ)k5�65%�:���Q�Q#e�QS�4j(m 7jʚF
�
�FMYӨ���ܨ�l�Ⱥ��QS�4jhm 7jʚF
�
�FMYӨ���ܨ�l�Ⱥ��QS�4jhm 7jʚF
�
�FMYӨ���ܨ	�G��ȍ���QCk�QS�4jhm 6jJ:5t�5㜍I 7jʚF
�
�FMYӨ���ܨ)k5�6�5c��Y 7jʚF
�
�FMYӨ���ܨ)k5�6�5c��Y 7jʚF
�
�FMYӨ���ܨ)k5�6�5c��Y 7jʚF
�
�FMIG����q���i�P�@nԌu6jd]�ܨ)k5�6�5eM���r���i���@nԌu6jd]�ܨ)k5�6�5eM���r���i���@nԌu6jd]�ܨ)k5�6�5eM���r���i���@nԌu6jd]�ب)�h��Y8nԔ3�Jȍ���QCk�Q3�٨�ur���i���@nԔ5�Zȍ���QCk�Q֏F
�+�5eM���r���i���@nԔ5�Zȍ���F���5eM���r���i���@nԔ5�Z�����Q#g�QS�Ѩ��pܨ)g5�6����J5j�:�F��ˀF��u��_��vz|}�Fm<�Ѩ]G���_~��5j���F
^�l�>���F���Y 7jʚF
�
�FMYӨ���ܨ)k5�6�5c��Y 7jʚF
�
�FMIG����q���i�P�@nԌu6jd]�ܨ)k5�6�5eM���r���i���@nԌu6jd]�ܨ)k5�6�5eM���r���i���@nԌu6jd]�ܨ)k5�6�5eM���r���i���@nԌu6jd]�Ԩ)�ި��35%�Ǎ�r�QCi�Q֏F
�+�5eM���r���i���@nԔ5�Zȍ���F���5eM���r���i���@nԔ5�Zȍ���F���5eM���r���i���@nԔ5�Z�����Q#g�QS�Ѩ��pܨ)g5�6�5eM���r�f��Q#��FMYӨ���ܨ)k5�6�5eM���r�f��Q#��FMYӨ���ܨ)k5�6�5eM���r�f��Q#��FMYӨ���ܨ)k5�65%�:���Q�Q#e�QS�4j(m 7jʚF
�
�FMYӨ���ܨ�l�Ⱥ��QS�4jhm 7jʚF
�
�FMYӨ���ܨ�l�Ⱥ��QS�4jhm 7jʚF
�
�FMYӨ���ܨ	�G��ȍ���QCk�QS�4jhm 6jJ:5t�5㜍I 7jʚF
�
�FMYӨ���ܨ)k5�6�5c��Y 7jʚF
�
�FMYӨ���ܨ)k5�6�5c��Y 7jʚF
�
�FMYӨ���ܨ)k5�6�5c��Y 7jʚF
�
�FMIG����q���i�P�@nԌu6jd]�ܨ)k5�6�5eM���r���i���@nԌu6jd]�ܨ)k5�6�5eM���r���i���@nԌu6jd]�ܨ)k5�6�5eM���r���i���@nԌu6jd]�ب)�h��Y8nԔ3�Jȍ���QCk�Q3�٨�ur���i���@nԔ5�Zȍ���QCk�Q֏F
�+�5eM���r���i���@nԔ5�Zȍ���F���5eM���r���i���@nԔ5�Z�����Q#g�QS�Ѩ��pܨ)g5�6����J5j�:�F���x�6jǯ��\����Gm���������t}����3yd/��F��?�py����������������o�=�7���>I��M�n�v�7������?
���>��ӷ/���x��z!7���w�
<�����u������������Ydzl]������Z�g�Xx`}>]�on�u���������^*���ko[_���IZdzl]���mx��Q���;�X����/�u������m�X���ko[_�������l܁r{�g�ܟ�#m��u{�u�������˛��ݟ�cm�m���ty�?pƳl]������Z�g�Xx`}>]�叹��k����$��g�Xx�)z�ކGgͳh]���m�>K���k���py����;�X���l���w�
�m=ooÃ�1�gٺ�����ۛ���ޱ6���|:�Z���k���g����;���V^Χ����gY����{�l���w�
<�n���EZ�g�Xx`�ޅǫ���ޱ6����
WiϲuX����(���w�
<�no�Y���ޱ6��:�^�5�1hm ��뜏!���e�|Z��1ʚ��6��c�5�1hm ��뜏!���e�|Z��1J:�c�Y8��Q��Ǡ��<c�s>����c�5�1hm ��(k�c��@��Q��Ǡ��<c�s>����c�5�1hm ��(k�c��@��Q��Ǡ��<c�s>����c�5�1hm ��(k�c��@��Q��Ǡ��<c�s>����c�s��A�g��(ᘏAc�x>F93���|��~�ǀu�|��f>�
��e�|Z��1ʚ��6��c�u�ǐu�|��f>�
��e�|Z��1ʚ��6��c�u�ǐu�|��f>�
��e�|Z��1ʚ��6�c�4�1�l��(嘏Ae�x>F93���|��f>�
��c��1d]�<����Aky>FY3���|��f>�
��c��1d]�<����Aky>FY3���|��f>�
��c��1d]�<����Aky>FY3���|����t�c�2�1�l��(g�cP�@��Q��Ǡ��<����Aky>�X�|Y ��(k�c��@��Q��Ǡ��<����Aky>�X�|Y ��(k�c��@��Q��Ǡ��<����Aky>FX?�c��y>FY3���|��f>�
��%�1�,��眏!���e�|Z��1ʚ��6��c�5�1hm ��뜏!���e�|Z��1ʚ��6��c�5�1hm ��뜏!���e�|Z��1ʚ��6��c�5�1hm ��뜏!���e�|Z��1J:�c�Y8��Q��Ǡ��<c�s>����c�5�1hm ��(k�c��@��Q��Ǡ��<c�s>����c�5�1hm ��(k�c��@��Q��Ǡ��<c�s>����c�5�1hm ��(k�c��@��Q��Ǡ��<c�s>���c�t�Ǡ�p<����Aiy>FY3���|�����.@��Q��Ǡ��<����Aky>FY3���|��~�ǀu�|��f>�
��e�|Z��1ʚ��6��c�u�ǐu�|��f>�
��e�|Z��1ʚ��6�c�4�1�l��(嘏Ae�x>F93���|-���|�|̧��x=��9~�|�h�h>f<���l�Q��c�᯿���_j��_n�Ǽӿ�������h<f�B�K���^��,ķ�f!��@��0��B��q<����@iyBY3���,��f�
�Yc��d]�<����@kyBY3���,��f�
�Ya�����
+�Ye�,ZȳʚY�6�g!�5�hm �B뜅 ��Ye�,ZȳʚY�6g!�t�B��p<a�s���g!�5�hm �B(kf!��@��P��B���<a�s���g!�5�hm �B(kf!��@��P��B���<a�s���g!�5�hm �B(kf!��@��P��B���<a�s���g!�5�hm �B(阅@g�xB93���,���Y�.@��P��B���<����@kyBY3���,���Y�.@��P��B���<����@kyBY3���,���Y�.@��P��B���<����@kyBY3���,���Y�.@��P�}��a8��c���Y��,Jȳ��1�ȳʚY�6�g!�5�hm �B(kf!��@��0�9A�ȳʚY�6�g!�5�hm �B(kf!��@��0�9A�ȳʚY�6�g!�5�hm �B(kf!��@��0��B��q8��c���Y��,JȳʚY�6�g!�u�B�u�,��f�
�Ye�,ZȳʚY�6�g!�u�B�u�,��f�
�Ye�,ZȳʚY�6�g!�u�B�u�,��f�
�Ye�,Z��J:f!�Y8��0��B��q<����@iyBY3���,��f�
�Yc��d]�<����@kyBY3���,��f�
�Yc��d]�<����@kyBY3���,��f�
�Ya�����
+�Ye�,ZȳʚY�6g!�t�B��p<a�s���g!�5�hm �B(kf!��@��P��B���<a�s���g!�5�hm �B(kf!��@��P��B���<a�s���g!�5�hm �B(kf!��@��P��B���<a�s���g!�5�hm �B(阅@g�xB93���,���Y�.@��P��B���<����@kyBY3���,���Y�.@��P��B���<����@kyBY3���,���Y�.@��P��B���<����@kyBY3���,���Y�.@��P�1����,�rf�
�Ye�,Zȳ�:g!Ⱥ�yBY3���,��f�
�Ye�,Zȳ��1�ȳʚY�6�g!�5�hm �B(kf!��@��0�9A�ȳʚY�6�g!�5�hm �B(kf!��@��0��B��q8��c���Y��,Jȳ8qp_�>��e�,��������������G��ۣ��/��Wt}�~<�.��CyfC��4�����Ͽ��`&����}ۥ������C�������|��ь����ا}܌}�B�Ck�S�4chm 7cʚf�
�f�Xg3F��͘��Ck�S�ь��p܌)g�1�6��1c��Y 7cʚf�
�fLYӌ���܌)k�1�6��1c��Y 7cʚf�
�fLYӌ���܌)k�1�6��1c��Y 7cʚf�
�fLYӌ���܌)k�1�6��1c��Y 5cʹ7ch��fL	G3���q3��i�P�@nƄ���
+�fLYӌ���܌)k�1�6��1eM3��r3f��#��fLYӌ���܌)k�1�6��1eM3��r3f��#��fLYӌ���܌)k�1�6��1eM3��b3f�i���8lƔr4c�,7cʙf�
�fLYӌ���܌�l�Ⱥ��S�4chm 7cʚf�
�fLYӌ���܌�l�Ⱥ��S�4chm 7cʚf�
�fLYӌ���܌�l�Ⱥ��S�4chm 7cʚf�
�fLIG3���a3f�i�H�8nƔ3�J�͘��Ck�S�4chm 7c�:�1�.@nƔ5�Z�͘��Ck�S�4chm 7c�:�1�.@nƔ5�Z�͘��Ck�S�4chm 7c��ь�ur3��i���@nƔ5�Z�͘��f���f�8g3F��͘��Ck�S�4chm 7cʚf�
�f�Xg3F��͘��Ck�S�4chm 7cʚf�
�f�Xg3F��͘��Ck�S�4chm 7cʚf�
�f�Xg3F��͘��Ck�S�ь��p܌)g�1�6��1c��Y 7cʚf�
�fLYӌ���܌)k�1�6��1c��Y 7cʚf�
�fLYӌ���܌)k�1�6��1c��Y 7cʚf�
�fLYӌ���܌)k�1�6��1c��Y 6cJ:�1t��1�L3��r3��i���@nƌu6cd]�܌)k�1�6��1eM3��r3��i���@nƄ���
+�fLYӌ���܌)k�1�6��1eM3��r3f��#��fLYӌ���܌)k�1�6��1eM3��b3f�i���8lƔr4c�,7cʙf�
�f�vR������2�;~K3v�ӌme=�>r36����e4c���ϿFc?����f4v�| oVco�?�ݫ��e�j���>�ƾ}!P����\�)k�1�6��1eM5��r5f��#��jLYS����X�)���Y8�Ɣ3�J�՘��j����1eM5��r5������@�Ɣ5�Z�՘��j����1eM5��r5������@�Ɣ5�Z�՘��j����1eM5��r5������@�Ɣ5�Z�՘��j����1�ܫ14~�a5���Cc�S�Tc(m Wc��Q��ur5������@�Ɣ5�Z�՘��Ck�3�Y��ur5������@�Ɣ5�Z�՘��Ck�3�Y��ur5������@�Ɣ5�Z�՘��Ck�3�Tc�lVcJ9�1T��1�L5��r5������@�ƌuVcd]�\�)k�1�6��1eM5��r5������@�ƌuVcd]�\�)k�1�6��1eM5��r5������@�ƌuVcd]�\�)k�1�6��1eM5��b5���Cg�3�Tc�lWcʙj�
�jLYS����\�)k�1�6��1c��Y Wcʚj�
�jLYS����\�)k�1�6��1c��Y Wcʚj�
�jLYS����\�)k�1�6��1a������S�Tchm Wcʚj�
�jLIG5���q5f��#��jLYS����\�)k�1�6��1eM5��r5f��#��jLYS����\�)k�1�6��1eM5��r5f��#��jLYS����\�)k�1�6��1eM5��r5f��#��jLYS����X�)���Y8�Ɣ3�J�՘��j����1eM5��r5������@�Ɣ5�Z�՘��j����1eM5��r5������@�Ɣ5�Z�՘��j����1eM5��r5������@�Ɣ5�Z�՘��j���1%�:�՘r�Ci�S�Tchm Wc�:�1�.@�Ɣ5�Z�՘��Ck�S�Tchm Wc��Q��ur5������@�Ɣ5�Z�՘��Ck�3�Y��ur5������@�Ɣ5�Z�՘��Ck�3�Tc�lVcJ9�1T��1�L5��r5v\;�j_�^�}z���������i����r�p56����uTc���/��������=>���a��{#{=�ƒR��)է�}�R}�B �Bk9�2֙R�urJ��I���@L��t�T�,�Tʙ�
+�
��XgJE��)��&�Bk9�R֤Thm �Tʚ�
+�
��XgJE��)��&�Bk9�R֤Thm �Tʚ�
+�
��XgJE��)��&�Bk9�R֤Thm �Tʚ�
+�
��XgJE�H)�r�)?�0�R‘R��p�R)gR*�6�S*a�H���9�R֤Thm �Tʚ�
+�
�JY�R����R�L�Ⱥ�9�R֤Thm �Tʚ�
+�
�JY�R����R�L�Ⱥ�9�R֤Thm �Tʚ�
+�
�JY�R����RiR*r6S*�)*�)�r&�Bi9�R֤Thm �T�:S*�.@N��5)Z�)��&�Bk9�R֤Thm �T�:S*�.@N��5)Z�)��&�Bk9�R֤Thm �T�:S*�.@N��5)Z�)��&�Bk1�RґR��p�ReR*R6�S*�LJ��rJ��I���@N��5)Z�)��Δ���S*eMJ��rJ��I���@N��5)Z�)��Δ���S*eMJ��rJ��I���@N��5)Z�)��~�T`]��R)kR*�6�S*eMJ��bJ��#�Bg�8�2ΙR�trJ��I���@N��5)Z�)��&�Bk9�2֙R�urJ��I���@N��5)Z�)��&�Bk9�2֙R�urJ��I���@N��5)Z�)��&�Bk9�2֙R�urJ��I���@L��t�T�,�Tʙ�
+�
��XgJE��)��&�Bk9�R֤Thm �Tʚ�
+�
��XgJE��)��&�Bk9�R֤Thm �Tʚ�
+�
��XgJE��)��&�Bk9�R֤Thm �Tʚ�
+�
��XgJE��)����
+���J9�R����R)kR*�6�S*c�)Y �Tʚ�
+�
�JY�R����R)kR*�6�S*a�H���9�R֤Thm �Tʚ�
+�
�JY�R����R�L�Ⱥ�9�R֤Thm �Tʚ�
+�
�JY�R����RiR*r6S*�)*�)�r&�Bi9�:.�TJ��cO�>�H��_��?����)|��S��������S�����R�GF�?}������~x���_��?�p>�����_�	���o�/=~�I�m@��io���_��Q��<���~�>�_�����[/�u���������&���w�
<���^/ֺ?{�������m�8��(;w��ރ�Y:�g�Hx`�ރkݟ�cm������f�g�Xxۺ�����v�u<��x`��^^�u���������QZ�g�Xx`�ކ�'iݟ�cm��F�a{�5ϢuX����,���w�
<�no��EZ�g�Xx`�ކ����ޱ6�u�1�=��Y�.������&���w�
<�>�ίֺ?{��������}�p����i���ϲtX����Z�g�Xx`�ރ�����ޱ6�����Wiݟ�cm�m�u{��:�e�<�no��QZ�g�Xx`�ކ���3��cm��u{�u����c
�+k�Y��Y�Y�7�������:�0��@��p�1������f��0�u�a���4���;�s�9�0X�@��P��a�u����9�6�0�u�a���8��c��
�9e�Z �a8��`kq�Y�[�s�:�0��@��P��a�u����9�6�0�u�a���8��c��
�9e�Z �a8��96~����sl,�a8��`iq�X�YW �a8��`kq�Y�[�s�:�0��@��P��a�u����9�6�0�u�a���8��c��
�9e�Z �a8��`kq�Y�[�s�:�0��@��P�1������S�s�,�a8��`iq�Y�[�sʚ9�.@��p�1�������9�6�0�u�a���8�����@��9gslm �a8��`kq�Y�[�sʚ9�.@��p�1�������9�6��0�t��`g�hC)�*�s�9�0X�@��p�1�������9�6�0�5sh]�8��c��
�9gslm �a8��`kqCY3����s�:�0��@��p�1�������9�6�0�u�a�u����9�6�0�u�a���4���;�sʙ9�.@��p�1�������9�6�0�u�a���8�����@��9gslm �a8��`kq�Y�[�sʚ9�.@��p�1�������9�6�0�u�a���8�����@��9gslm �a8�>������s�9�6�0�5sh]�8��c��
�9gslm �a8��`kqCY3����s�:�0��@��p�1�������9�6�0�5sh]�8��c��
�9gslm �a8��`kqCY3���HsN��a��p8��c��
�9gslm �a(k�0к�q�Y�[�s�:�0��@��p�1�������9��@��p�1�������9�6�0�u�a���8�����@��9gslm �a8��`kq�Y�[HsJ:�0��8��p�}����9�s,m �a�����������/�x^�����Oc‾Y8��A�Lb������������Ͽ�����O?|��/����������͹������A��۹������
�f~5�����9n6�}!�l����l�l6Ⱥ���P�4hm 7ʚf�
�fCY�l����l�l6Ⱥ���P�4hm 7ʚf�
�fCY�l����l�l6Ⱥ���Pν�@�g6J8�
4��
�L���r�!��XW 7ʚf�
�fCY�l����l(k�
�6��
c��Y 7ʚf�
�fCY�l����l(k�
�6��
c��Y 7ʚf�
�fCY�l����l(k�
�6�
#M�A��a�����@e��P�4(m 7ʚf�
�f�Xg�A��͆���@k��P�4hm 7ʚf�
�f�Xg�A��͆���@k��P�4hm 7ʚf�
�f�Xg�A��͆���@k��P�4hm 6J:�
t�
�L�A��q���i6P�@n6�5�Z�͆���@k��0��l�ur���i6��@n6�5�Z�͆���@k��0��l�ur���i6��@n6�5�Z�͆���@k��֏f�+��
eM���r���i6��@l6�t4�,7�9�
�.@n6�5�Z�͆���@k��P�4hm 7�:�
�.@n6�5�Z�͆���@k��P�4hm 7�:�
�.@n6�5�Z�͆���@k��P�4hm 7�:�
�.@n6�5�Z�͆��f���fC9�l����l�l6Ⱥ���P�4hm 7ʚf�
�fCY�l����l�l6Ⱥ���P�4hm 7ʚf�
�fCY�l����l�l6Ⱥ���P�4hm 7ʚf�
�fCY�l����l�l6Ⱥ���P��l��p�l(g�
�6��
eM���r�a��� ��fCY�l����l(k�
�6��
eM���r�!��XW 7ʚf�
�fCY�l����l(k�
�6��
c��Y 7ʚf�
�fCY�l����l(k�
�6�
#M�A��a�����@e��P�4(m 7�Q�j6�u��Ƨ�����X���fc�����?E�l�gf�q��?~���a���+i\�?�}�����ϧ��Q�1�S	^��N�O/��;��}!�Jhm ����;���@�N%c�ߩD��ߩ���N%�6��SIY�Jhm ����;���@�N%c�ߩD��ߩ���N%�6�SII�w*��p��Jʙ�TBi�;��u~�Y ����;���@�N%eM���r�������@��u�yd]���)k�<�6��<eM���r�������@��u�yd]���)k�<�6��<eM���r�������@��u�yd]���)����3�<%}�}�r��Ci��֏>�+��<eM���r�������@��5}Z�}���>����<eM���r�������@��5}Z�}���>����<eM���r�������@��5}Z�}����#g��S��硲p��)g�<�6��<eM���r�g���#��>OY�硵���)k�<�6��<eM���r�g���#��>OY�硵���)k�<�6��<eM���r�g���#��>OY�硵���)k�<�6�<%}:�}�Q��#e��S��y(m �yʚ>�
�>OY�硵������Ⱥ���S��yhm �yʚ>�
�>OY�硵������Ⱥ���S��yhm �yʚ>�
�>OY�硵���	�G���}����Ck��S��yhm �yJ:�<t��<�}I �yʚ>�
�>OY�硵���)k�<�6��<c�}Y �yʚ>�
�>OY�硵���)k�<�6��<c�}Y �yʚ>�
�>OY�硵���)k�<�6��<c�}Y �yʚ>�
�>OIG����q�����P�@��u�yd]���)k�<�6��<eM���r�������@��u�yd]���)k�<�6��<eM���r�������@��u�yd]���)k�<�6��<eM���r�������@��u�yd]���)����Y8��3}J�}����Ck��3���ur�������@��5}Z�}����Ck��֏>�+��<eM���r�������@��5}Z�}���>����<eM���r�������@��5}Z�}����#g��S��硲p��)g�<�6��<��D���c��>���_��?����)�y�O�篷@�?Q�m�����Q�]��)�/o���k��������������.�����o������t���ϯ���y=�}�%�_+y������O����5���gٺ����߼J���k���p����;�X�����IY�g�Xx��|>]��X�Xdzl]������Z�g�Xx`}>]߯��u���������+���ko[_���IZdzl]���m��_�7���w�
<�no��+���k�{M���w�
�m}���_����l܁r{���x������=x����;�X_O/o��w������o���U��ϲuX���kݟ�cm����ty�?�Ƴw�
<�noÓ��3��cm��Z�a{�5ϢuX����,���w�
<�no��EZ�g�Xx`�ކ����ޱ6��}�����˳l]������MZ�g�Xx`}>�_�u������ӳ�
���g�n+/������ɳ,]���=x����;�X����"���w�
<�n���UZ�g�Xx0��
WiϲuXǎ��f��
�ae�0Z��<ʚa�6��y�u�u�0��f��
�ae�0Z��<ʚa�6��y�u�u�0��f��
�a%�<�,�(g�yP�@�1�9�C���<ʚa�6��y�5�<hm �(k�y��@�1�9�C���<ʚa�6��y�5�<hm �(k�y��@�1�9�C���<ʚa�6��y�5�<hm �(k�y��@�1�9�C�H�<ʹ��3�y�p�p<̣��Aiy�GX?�y��y�GY3̃��0��f��
�ae�0Z��<�:�yȺ�y�GY3̃��0��f��
�ae�0Z��<�:�yȺ�y�GY3̃��0��f��
�ae�0Z��<F�ar6�y�r�p<̣��Aiy�GY3̃��0���a�.@�Q�󠵁<̣��Aky�GY3̃��0���a�.@�Q�󠵁<̣��Aky�GY3̃��0���a�.@�Q�󠵁<̣��Akq�GI�0:��<F�aR6��y�3�<(m �(k�y��@�Q�󠵁<�c�s�����y�5�<hm �(k�y��@�Q�󠵁<�c�s�����y�5�<hm �(k�y��@�Q�󠵁<�#��<`]�<̣��Aky�GY3̃��0���at��y�s�t�0��f��
�ae�0Z��<ʚa�6��y�u�u�0��f��
�ae�0Z��<ʚa�6��y�u�u�0��f��
�ae�0Z��<ʚa�6��y�u�u�0��f��
�a%�<�,�(g�yP�@�1�9�C���<ʚa�6��y�5�<hm �(k�y��@�1�9�C���<ʚa�6��y�5�<hm �(k�y��@�1�9�C���<ʚa�6��y�5�<hm �(k�y��@�1�9�C���<J:�y�Y8�Q�󠴁<̣��Aky��X�0Y �(k�y��@�Q�󠵁<̣��Aky�GX?�y��y�GY3̃��0��f��
�ae�0Z��<�:�yȺ�y�GY3̃��0��f��
�ae�0Z��<F�ar6�y�r�p<̣��Aiy��xkF
���؇y>��ǧ�a��ױ�\x���_�p�g<2�y�c�������۷K8��OX>��N�_��$����	�W5����n�՞o_�����<���Bky�X�Y ��)kf���@�R������<���Bky�X�Y ��)kf���@�R������<���Bky�X�Y ��)kf���@�R������<���Bkq�H3D����rf�
� e�Z�3@ʚ �6�g��u���u���f�
� e�Z�3@ʚ �6�g���c�+�g��53@hm ��)kf���@�R������<d�s���g��53@hm ��)kf���@�R�1�����q� �.@�R������<���BkyHY3������ �.@�R������<���BkyHY3������ �.@�R������<���BkyHY3������ �.@�R������8��c��� ��J�3@�:g�Ⱥ�yHY3�����f�
� e�Z�3@�:g�Ⱥ�yHY3�����f�
� e�Z�3@�:g�Ⱥ�yHY3�����f�
� e�Z�3@�:g�Ⱥ�iH9� 4~���� 4�g��33@(m ��	��XW ��)kf���@�R������<���Bky�X�Y ��)kf���@�R������<���Bky�X�Y ��)kf���@�R������<���Bkq�H3D����R� T�g��33@(m ��)kf���@�2�9D��3@ʚ �6�g��53@hm ��)kf���@�2�9D��3@ʚ �6�g��53@hm ��)kf���@�2�9D��3@ʚ �6�g��53@hm ��)�Bg�p�(3D����rf�
� e�Z�3@ʚ �6�g��u���u���f�
� e�Z�3@ʚ �6�g��u���u���f�
� e�Z�3@ʚ �6�g���c�+�g��53@hm ��)kf���@�R�1�����q� �.@�R������<���BkyHY3������ �.@�R������<���BkyHY3������ �.@�R������<���BkyHY3������ �.@�R������8��c��� ��J�3@�:g�Ⱥ�yHY3�����f�
� e�Z�3@�:g�Ⱥ�yHY3�����f�
� e�Z�3@�:g�Ⱥ�yHY3�����f�
� e�Z�3@�:g�Ⱥ�qHI�:�3@ʙ �6�g��53@hm ���"�� e�Z�3@ʚ �6�g��53@hm ��	��XW ��)kf���@�R������<���Bky�X�Y ��)kf���@�R������<���Bkq�H3D����R� T�g��33@(m ���ۨ |�Ч�3@ǯc�:����z�<��xd��=����?��_�����ӿ�������������&�ۯ����󷿓/ף�ɏ
 ^��?���
 ��"Y W�ʚ
 �
�
@@ -3468,2583 +3516,2763 @@ QYS!
 �
�
 QIG����q����Q�@��uV�d]�\!*k*D�6�+DeM���r������@��uV�d]�\!*k*D�6�+DeM���r������@��uV�d]�\!*k*D�6�+DeM���r������@��uV�d]�X!*��Y8��3"J����BDk�B4�Y!�ur������@��5"Z����BDk�B֏
 �+�+DeM���r������@��5"Z����
-���+DeM���r������@��5"Z����B$g�BT�Q!��p\!*g*D�6�+Dj�D���c�?���_��ϯ���_����[Ϝ�o�_P�h��=\o��x(���<JĿ��������.�o�|��kz����߹��au8�F^���O/��k4�}�_������h��M�.@�Me��h����5�ʚ��Dk�k4�5+Z���΀���VeM���r���	X��@X�5+Z���΀���VeM���r���	X��@X�5+Z���΀���VeM���b���#`Eg�8`U��(m ��:V�.@X�5+Z���&`Ek9`U��hm ��:V�.@X�5+Z���&`Ek9`U��hm ��:V�.@X�5+Z���&`Ek9`U��hm ��:V�.@
-X�sX���������U9�����
-�G�
-����&`Ek9`U��hm �ʚ��
��Xg�J����&`Ek9`U��hm �ʚ��
��Xg�J����&`Ek9`U��hm �ʚ��
Ā�H���q�*�XQY8X�3+J���&`Ek9`5���ur���	X��@X�5+Z���&`Ek9`5���ur���	X��@X�5+Z���&`Ek9`5���ur���	X��@X�5+Z�������À�(���q�*gV�6�VeM���r���	X��@X�u�d]��*kV�6�VeM���r���	X��@X�u�d]��*kV�6�VeM���r���	X��@X��#`�
-�UY�����*kV�6V%+:��q΀���VeM���r���	X��@X�5+Z���΀���VeM���r���	X��@X�5+Z���΀���VeM���r���	X��@X�5+Z���΀���VeM���b���#`Eg�8`U��(m ��:V�.@X�5+Z���&`Ek9`U��hm ��:V�.@X�5+Z���&`Ek9`U��hm ��:V�.@X�5+Z���&`Ek9`U��hm ��:V�.@X�t��,�ʙ��
�UY������Xɺ�9`U��hm �ʚ��
�UY�����
-�G�
-����&`Ek9`U��hm �ʚ��
��Xg�J����&`Ek9`U��hm �ʚ��
Ā�H���q�*�XQY8X�3+J�+e�"`�ױ��^���a�z�:���r'`=?�^.��gf�z�����O��,X���/��/������p��v׺������Ƈ}������	]��`������?�`�}!���ur���`��@�`�5Z�����Ak��1����ur���`��@�`�5Z�����Ak��1����ur���`��@�`�5Z�����Ak��1����uR��{���0�`�pt0h,w0ʙ�
�FX?:��@�`�5Z�����Ak��Q�t0hm w0�:;�.@�`�5Z�����Ak��Q�t0hm w0�:;�.@�`�5Z�����Ak��Q�t0hm v0F�����F)G���q���`P�@�`�5Z�������;eM��r���`��@�`�5Z�������;eM��r���`��@�`�5Z�������;eM��r���`��@�`�tt0�,v0F�����F9�������(k:�6�;eM��rc���!��FY�������(k:�6�;eM��rc���!��FY�������(k:�6�;eM��r#�XW w0ʚ�
�FY�������(��`�Y8�`�sv0$]���(k:�6�;eM��r���`��@�`�uv0d]���(k:�6�;eM��r���`��@�`�uv0d]���(k:�6�;eM��r���`��@�`�uv0d]���(k:�6;%:��r��Ai��1����ur���`��@�`�5Z�����Ak��1����ur���`��@�`�5Z�����Ak��1����ur���`��@�`�5Z�����Ak��1����ub����AgḃQ�t0(m w0ʚ�
��XgC������Ak��Q�t0hm w0ʚ�
�FX?:��@�`�5Z�����Ak��Q�t0hm w0�:;�.@�`�5Z�����Ak��Q�t0hm v0F�����F)G���q���`P�@�`��
�����;�O/��尃9~��=���'������z����Mn�+�~��o_�?-a�������~����r������z��b�on��¯g�~���~�B��
�Ve�Q+Z�G��:�Zɺ���UYsԊ��Q����
�Ve�Q+Z�G��:�Zɺ���UYsԊ��Q����
�Ve�Q+Z�G�F��Vr6�Z�r���p|Ԫ�9jEi��UYsԊ��Q��ΣV�.@>jU�����|Ԫ�9jEk��UYsԊ��Q��ΣV�.@>jU�����|Ԫ�9jEk��UYsԊ��Q��ΣV�.@>jU�����|Ԫ�9jEk�UI�Q+:�G�F��VR6��Z�3G�(m �*k�Z��@>jU�����|�j�󨕬��Z�5G�hm �*k�Z��@>jU�����|�j�󨕬��Z�5G�hm �*k�Z��@>jU�����|�*�G�`]�|Ԫ�9jEk��UYsԊ��Q����Vt��Z�s��t�Q����
�Ve�Q+Z�G�ʚ�V�6��Z�u��u�Q����
�Ve�Q+Z�G�ʚ�V�6��Z�u��u�Q����
�Ve�Q+Z�G�ʚ�V�6��Z�u��u�Q����
ģV%G��,�*g�ZQ�@>j5�y�J��G�ʚ�V�6��Z�5G�hm �*k�Z��@>j5�y�J��G�ʚ�V�6��Z�5G�hm �*k�Z��@>j5�y�J��G�ʚ�V�6��Z�5G�hm �*k�Z��@>j5�y�J��G�J:�Z�Y8>jU�����|Ԫ�9jEk���X�Q+Y �*k�Z��@>jU�����|Ԫ�9jEk��UX?�Z����UYsԊ��Q����
�Ve�Q+Z�G��:�Zɺ���UYsԊ��Q����
�Ve�Q+Z�G�F��Vr6�Z�r���p|Ԫ�9jEi�����R���؏Z?�8j=~ݸ�������
�Z��<j}<�t�����?�����?�������o����?�כ�_o]on�#�O/������|t՚;D��Ͽ��;�/����
�;De�"Z �!:�Cdk��Y�"[�w��:���@�CT�q������S�w��,�!:�Cdi��Y�"[�w�ʚ;D�.@�Ct�q�������;D�6��u�!���x����CD��;Dgw�lm �!:�Cdk��Y�"[�w�ʚ;D�.@�Ct�q�������;D�6���t�Cdg��Q)�"*�w��9�Y�@�Ct�q�������;D�6��5w�h]�x�����
�;Dgw�lm �!:�Cdk�QYs����w��:���@�Ct�q�������;D�6��u�!�u����;D�6��u�!���t���";�w�ʙ;D�.@�Ct�q�������;D�6��u�!���x����CD��;Dgw�lm �!:�Cdk��Y�"[�w�ʚ;D�.@�Ct�q�������;D�6��u�!���x����CD��;Dgw�lm �!:�~������s�;D�6��5w�h]�x�����
�;Dgw�lm �!:�Cdk�QYs����w��:���@�Ct�q�������;D�6��5w�h]�x�����
�;Dgw�lm �!:�Cdk�QYs���Hw�N��!��px�����
�;Dgw�lm �!*k�Ѻ���Y�"[�w��:���@�Ct�q�������;D��@�Ct�q�������;D�6��u�!���x����CD��;Dgw�lm �!:�Cdk��Y�"[Hw�J:���8�Ct������;D�w�,m �!���;D~_���2���u�������;㚏���ן��,޼C�Ow��q���_�����i����_�Q������[�Ƿ��������������o���}⍃���k����������?�H�7"�K�7"�~i�7"߾�Ak�FDYs#��򍈲�F�
�c�7"d]�|#���Ak�FDYs#��⍈��toD�27"�l߈(gnDP�@�Q�܈���|#���Ak�F�X�Y ߈(knD��@�Q�܈���|#���Ak�F�X�Y ߈(knD��@�Q�܈���|#���Ak�FDX?nD���FDYs#��򍈲�F�
�%7"�,߈�!��e͍Z�7"ʚ�6�oD�57"hm ߈�!��e͍Z�7"ʚ�6�oD�57"hm ߈�!��e͍Z�7"ʚ�6�oD�57"hm ߈�!��e͍Z�7"J:nD�Y8�Q�܈���|#b��F���oD�57"hm ߈(knD��@�Q�܈���|#b��F���oD�57"hm ߈(knD��@�Q�܈���|#b��F���oD�57"hm ߈(knD��@�Q�܈���|#b��F��oD�t܈��p|#���Ai�FDYs#��򍈱��.@�Q�܈���|#���Ak�FDYs#��򍈰~܈�u򍈲�F�
�e͍Z�7"ʚ�6�oD�uވ�u򍈲�F�
�e͍Z�7"ʚ�6oD�47"�lވ(�Ae��FD9s#����-�|��ȧ���zx#r�:����=.�/|#2��t#r����[�"�[Yo}�~y����5ޘ�z;����ïq~����x�A������vt?h7�|�N����ʙ�Q�@��]Y�A;Z��+k>hGk��vc���u��ʚ���@��]Y�A;Z��+k>hGk��vc���u��ʚ���@��]Y�A;Z��+k>hGk��va����+�?hW�|Ў���ʚ���@��]I���,�n��v�.@��]Y�A;Z��+k>hGk��ve��hm �n��v�.@��]Y�A;Z��+k>hGk��ve��hm �n��v�.@��]Y�A;Z��+k>hGk��ve��hm �n��v�.@��]Y�A;Z��+������ڕ3�����A����ɺ���ve��hm Ю����
�ڕ5�����A����ɺ���ve��hm Ю����
�ڕ5�����A����ɺ���ve��hm Ю����
�ڕ5�����A����ɺ��v%���p�A�r�v�6�?hW�|Ў����:?h'��ڕ5�����A���v�6�?hW�|Ў������A;XW Ю����
�ڕ5�����A���v�6�?h7��A;Y Ю����
�ڕ5�����A���v�6?h7�|�N����J9>hGe���v���(m �N�����u��z�A���X>h������m��'��}<����?"��/��_����P_�����������wHݞa���^����NjZ_�����x����
-�Eͯ`��:�
-�o_|Z�_����
-�6���EY�,hm ���y
�.@��P��k���<�����@ky^CY3���򼆱�y
�.@��P��k���<�����Ak��GI��:�W?F��R6��~�3W?(m _�(k�~��@��Q�\����|�c��ꇬ��~�5W?hm _�(k�~��@��Q�\����|�c��ꇬ��~�5W?hm _�(k�~��@��Q�\����|�#�W?`]�|�����Ak��GYs����Տ���t��~�s^��t�Տ����
�e��Z�W?ʚ��6��~�u^��u�Տ����
�e��Z�W?ʚ��6��~�u^��u�Տ����
�e��Z�W?ʚ��6��~�u^��u�Տ����
ī%W?�,_�(g�~P�@��1�y�C��W?ʚ��6��~�5W?hm _�(k�~��@��1�y�C��W?ʚ��6��~�5W?hm _�(k�~��@��1�y�C��W?ʚ��6��~�5W?hm _�(k�~��@��1�y�C��W?J:�~�Y8��Q�\����|�����Ak���X��Y _�(k�~��@��Q�\����|�����Ak��GX?�~����GYs����Տ����
�e��Z�W?�:�~Ⱥ���GYs����Տ����
�e��Z�W?F��r6�~�r\���p|�����Ai����E]���د~>���9~_�|���'�0����y~���&ϧ����4��#���q���������ӟ�����~������������/��/���_��p����r�l��������y�������r=��_�<~y����w�r���7ύrú?{��������CIY�g�Xx`}==?X���ko[ϧ��ggϲuX����Jʺ?{��������Z�g�Xx`}==��PR���;�޶>mo�ӛ��gٺ�����h���w�
<�no������g���{p=K���io[����"��Y�.�����)���k�ۻ�`���w�
<��n�K�*���w�
�m}y�����+x<��x`��_�u����֧�y�cn<{�����6<�s��;�޶�noã��gٺ����p�?�Ƴw�
<�no�E���ޱ6����
gkݟ�cm�m���6<�s�Y�.���6H���w��a��ӫ�E~}�p����U���ޑ6�����������ɳh]����Z���k�ۻ�t����;�X����QZ�g�Xx�z�ކ���gٺ����py����;�X����,���w�
<�noÃ���ޱ6���pzys?��,[���z�~:H���k�O��kݟ�cm����ty~����;�޶^��A�Ŵ?���(��@�wu�p��
x<K���i��p�?mƳw�
<��F�g�3$��,PY�����*k�@�6��@eM��rh�3$��,PY�����*k�@�6��@eM��rh�3$��,PY�����*k�@�6�@%Y :�Y�Q&$e�8T�d�(m g�ʚ,�
�,PY�������ɺ�9T�d�hm g�ʚ,�
�,PY�������ɺ�9T�d�hm g�ʚ,�
�,PY�����
-�G��Y��&Dk9T�d�hm f�J:�@t��@�Y I g�ʚ,�
�,PY�����*k�@�6��@c�Y Y g�ʚ,�
�,PY�����*k�@�6��@c�Y Y g�ʚ,�
�,PY�����*k�@�6��@c�Y Y g�ʚ,�
�,PIG���q���Q�@��uf�d]��*k�@�6��@eM��r�����@��uf�d]��*k�@�6��@eM��r�����@��uf�d]��*k�@�6��@eM��r�����@��uf�d]��*���Y8��3Y J�Y��&Dk94֙�ur�����@��5Y Z�Y��&Dk9֏,�+��@eM��r�����@��5Y Z�Y���,����@eM��r�����@��5Y Z�Y��&$g�0Tʑ��p�*g�@�6����Me��:�,���x|;��_��ϯ���1������+�\O����1��P��a�y������|���/������<<\����$�������'!�oS����p�
z���^s���o�q����@�H����&@Dk9@T��hm �ʚ��
���Xg�H����&@Dk9@T��hm �ʚ��
���Xg�H����&@Dk1@T� ��p *gD�6�Dc�"Y �ʚ��
��QY ��� *kD�6�Dc�"Y �ʚ��
��QY ��� *kD�6�Dc�"Y �ʚ��
��QY ��� *kD�6�Dc�"Y �ʹ�h���Q	G����q���	Q�@��#@�
-��QY ��� *kD�6�DeM���r�h�3@$���QY ��� *kD�6�DeM���r�h�3@$���QY ��� *kD�6�DeM���b�h�	��8�r��,�ʙ��
��QY ��� �ɺ�9@T��hm �ʚ��
��QY ��� �ɺ�9@T��hm �ʚ��
��QY ��� �ɺ�9@T��hm �ʚ��
��QIG����a�h�	I�8�3"J���&@Dk9@T��hm ��:D�.@�5"Z���&@Dk9@T��hm ��:D�.@�5"Z���&@Dk9@T��hm ��� �ur���	��@�5"Z����������8g�H����&@Dk9@T��hm �ʚ��
���Xg�H����&@Dk9@T��hm �ʚ��
���Xg�H����&@Dk9@T��hm �ʚ��
���Xg�H����&@Dk1@T� ��p *gD�6�Dc�"Y �ʚ��
��QY ��� *kD�6�Dc�"Y �ʚ��
��QY ��� *kD�6�Dc�"Y �ʚ��
��QY ��� *kD�6�Dc�"Y �J:Dt�D�L���r���	��@�u�d]� *kD�6�DeM���r���	��@��#@�
-��QY ��� *kD�6�DeM���r�h�3@$���QY ��� *kD�6�DeM���b�h�	��8�r��,�ʙ��
���S"��=@��2 @<~K�x� �?%��q<3����&���jŸ��=C��������Jħ��|�������K	g�/~�>�^�a����8�}�Y8�}�3�Jȵ���ڇ��keM��r����}��@�}�5�Zȵ���ڇ��keM��r����}��@�}�5�Zȵ���ڇ��keM��r����}��@�}�5�Zȵ���ڇ��j��k4~�a�����Ac��Q��>(m �>��Q��ur����}��@�}�5�Zȵ����Ak��1�Y��ur����}��@�}�5�Zȵ����Ak��1�Y��ur����}��@�}�5�Zȵ����Ak��1��>�l�>J9jT�k�L��r����}��@�}�u�>d]�\�(kj�6�keM��r����}��@�}�u�>d]�\�(kj�6�keM��r����}��@�}�u�>d]�\�(kj�6�keM��b�����Ag��1��>�l�>ʙ��
��GYS����\�(kj�6�kc��Y �>ʚ��
��GYS����\�(kj�6�kc��Y �>ʚ��
��GYS����\�(kj�6�ka��}����Q��>hm �>ʚ��
��GIG���q�c���!���GYS����\�(kj�6�keM��r�c���!���GYS����\�(kj�6�keM��r�c���!���GYS����\�(kj�6�keM��r�c���!���GYS����X�(�}�Y8�}�3�Jȵ���ڇ��keM��r����}��@�}�5�Zȵ���ڇ��keM��r����}��@�}�5�Zȵ���ڇ��keM��r����}��@�}�5�Zȵ���ڇ�k%�:ǵ�r��Ai��Q��>hm �>�:k�.@�}�5�Zȵ����Ak��Q��>hm �>��Q��ur����}��@�}�5�Zȵ����Ak��1�Y��ur����}��@�}�5�Zȵ����Ak��1��>�l�>J9jT�k�L��r�sܧ��_�^�|zP������Ʈ�O����Q�gf�s�����ۿ���������������_~�×��˗oOuOo/��>��ow��/G�ϸ�_�x��/��b���8�fi�b�X��0YW ^;�fk�b�Y��0[���:.���@�V�\�u�Ű���a�6/��u\���x1��b��
ċae��0Z ^;�fk�b�Y��0[���:.���@�V�q1����ŰS�ì,^;�fi�b�Y��0[��ʚ�a�.@�v�q1���Ű���a�6/��u\���x1���F�ċag�lm ^;�fk�b�Y��0[��ʚ�a�.@�v�q1���Ű���a�6�.��t�fg��bX)��0*���9.�Y�@�v�q1���Ű���a�6/��5�h]�x1��b��
ċag�lm ^;�fk�bXYs1�����:.���@�v�q1���Ű���a�6/��u^�u�Ű���a�6/��u\���t1���0;��ʙ�a�.@�v�q1���Ű���a�6/��u\���x1���F�ċag�lm ^;�fk�b�Y��0[��ʚ�a�.@�v�q1���Ű���a�6/��u\���x1���F�ċag�lm ];�~1����Űs��a�6/��5�h]�x1��b��
ċag�lm ^;�fk�bXYs1�����:.���@�v�q1���Ű���a�6/��5�h]�x1��b��
ċag�lm ^;�fk�bXYs1��H�N�_��px1��b��
ċag�lm ^+k.�Ѻ��b�Y��0[���:.���@�v�q1���Ű�΋a��@�v�q1���Ű���a�6/��u\���x1���F�ċag�lm ^;�fk�b�Y��0[H�J:.���8�v��b���Ëa��,m ^�M���a~_���2��.��ul������~���������������<��b�|�f�/����������P;]��������<o�gߜ^s�����o���}s�6�͝u웳���o�cߜ�
�}se;9Z �;��7gkq��YǾ9[����:����@�7W�웣u¾�s~�7g�g�;��X8��3�Jȵ��~�
-`]�\+(kj�6�keM���r������@��u�
-d]�\+(kj�6�keM���r������@��u�
-d]�\+(kj�6�keM���r������@��4�9���R�Z���ZA9S+���\+(kj�6�kc��Y �
-ʚZ�
�ZAYS+���\+(kj�6�kc��Y �
-ʚZ�
�ZAYS+���\+(kj�6�kc��Y �
-ʚZ�
�ZAYS+���X+(��Y8��2�)ǵ�r�V@i�VP��
-h��+��fG��8�����
-�{ǡ)d�6�p8B'�bi��.Fu5�_o�zW. ��{�#����R�4��Ձ�VPj�
+���+DeM���r������@��5"Z����B$g�BT�Q!��p\!*g*D�6�+Dj�D���c�?�����
+��u����zz|�U�����g���/��Wt~<=�\n��x(���<J��˗���?U��ͷW>m�1=�I�������:�_�	/t~��z�5�߾���Dg��k4�s~�&I ����k4��@�Me��h����5�ʚ��
��Xg�J����&`Ek9`U��hm �ʚ��
��Xg�J����&`Ek9`U��hm �ʚ��
��Xg�J����&`Ek1`U����p�*gV�6�Vc�+Y �ʚ��
�UY�����*kV�6�Vc�+Y �ʚ��
�UY�����*kV�6�Vc�+Y �ʚ��
�UY�����*kV�6�Vc�+Y �ʹ�h�ÀU	G����q���	XQ�@X��#`�
+�UY�����*kV�6�VeM���r�j�3`%��UY�����*kV�6�VeM���r�j�3`%��UY�����*kV�6�VeM���b�j�	X��8X�r��,�ʙ��
�UY������Xɺ�9`U��hm �ʚ��
�UY������Xɺ�9`U��hm �ʚ��
�UY������Xɺ�9`U��hm �ʚ��
ĀUIG����a�j�	XI�8X�3+J���&`Ek9`U��hm ��:V�.@X�5+Z���&`Ek9`U��hm ��:V�.@X�5+Z���&`Ek9`U��hm �����ur���	X��@X�5+Z���������8g�J����&`Ek9`U��hm �ʚ��
��Xg�J����&`Ek9`U��hm �ʚ��
��Xg�J����&`Ek9`U��hm �ʚ��
��Xg�J����&`Ek1`U����p�*gV�6�Vc�+Y �ʚ��
�UY�����*kV�6�Vc�+Y �ʚ��
�UY�����*kV�6�Vc�+Y �ʚ��
�UY�����*kV�6�Vc�+Y �J:Vt�V�L���r���	X��@X�u�d]��*kV�6�VeM���r���	X��@X��#`�
+�UY�����*kV�6�VeM���r�j�3`%��UY�����*kV�6�VeM���b�j�	X��8X�r��,�ʙ��
䀕2L�����O/��ױ��;��y���3���^F�������~�����_�k�����p��v׺������Ƈ}������	]��`������?�`�}!���ur���`��@�`�5Z�����Ak��1����ur���`��@�`�5Z�����Ak��1����ur���`��@�`�5Z�����Ak��1����uR��{���0�`�pt0h,w0ʙ�
�FX?:��@�`�5Z�����Ak��Q�t0hm w0�:;�.@�`�5Z�����Ak��Q�t0hm w0�:;�.@�`�5Z�����Ak��Q�t0hm v0F�����F)G���q���`P�@�`�5Z�������;eM��r���`��@�`�5Z�������;eM��r���`��@�`�5Z�������;eM��r���`��@�`�tt0�,v0F�����F9�������(k:�6�;eM��rc���!��FY�������(k:�6�;eM��rc���!��FY�������(k:�6�;eM��r#�XW w0ʚ�
�FY�������(��`�Y8�`�sv0$]���(k:�6�;eM��r���`��@�`�uv0d]���(k:�6�;eM��r���`��@�`�uv0d]���(k:�6�;eM��r���`��@�`�uv0d]���(k:�6;%:��r��Ai��1����ur���`��@�`�5Z�����Ak��1����ur���`��@�`�5Z�����Ak��1����ur���`��@�`�5Z�����Ak��1����ub����AgḃQ�t0(m w0ʚ�
��XgC������Ak��Q�t0hm w0ʚ�
�FX?:��@�`�5Z�����Ak��Q�t0hm w0�:;�.@�`�5Z�����Ak��Q�t0hm v0F�����F)G���q���`P�@�`��
�����;�O/��尃9~��=��n?k߰��3�����`�~�����?�����%��_�����������r�l�}z=�v1�7���Q+�z���_��Q�r|����Q����V�6�Z�5G�h]�x��㨕�
ģVgG�lm �:�8jek�UYsԊ��G��:�Z��@<ju�q����Q����V�6��Z�t���qt���Q++�G��9�ZY�@<ju�q����Q�����Z�u����x��㨕�
ģVgG�lm �*k�ZѺ���Y�Q+[�G��:�Z��@<ju�q����Q�����Z�u����x��㨕�
��V'ݏZ�Y8:jU�qԊ���Q�s��V�6�Z�u����x��㨕�
ģVe�Q+Z �:�8jek��Y�Q+[�G��:�Z��@<jU���u�Q����V�6�Z�u����x��㨕�
ģVc�G�d]�x��㨕�
ģVgG�lm �:�~�����Q�r���Z�u����x��㨕�
ģVgG�lm �*k�ZѺ���Y�Q+[�G��:�Z��@<ju�q����Q�����Z�u����x��㨕�
ģVgG�lm �*k�ZѺ���Y�Q+[HG�N����px��㨕�
ģVe�Q+Z �:�8jek��Y�Q+[�G��:�Z��@<jU���u�Q����V�6�Z�u����x��㨕�
ģVe�Q+Z �:�8jek��Y�Q+[�G��:�Z��@<jU���u�Q���G��,�:�8jei��Y�Q+[�G�ʚ�V�.@<ju�q����Q����V�6�Z�u����x�j�󨕬+�Z�u����x��㨕�
ģVgG�lm �*k�ZѺ���Y�Q+[�G��:�Z��@<ju�q����Q����Vt6��Z�r?jee���9�Q+K�G�psi�Z�u|}���8>j��񷍻�o�u<3�ZO9]�������_��������?o����q����t����덣�����������z>�j�w���w��~A�w�߾�CDk��X�"Y �!*k���@�CT��!���|����CDk��Hs�H����R�;DT���3w�(m �!*k���@�C4�y�H��w�ʚ;D�6���5w�hm �!*k���@�C4�y�H��w�ʚ;D�6���5w�hm �!*k���@�C4�y�H��w�ʚ;D�6���5w�hm �!*�CDg���(s�H����r��
�;De�"Z�w�ʚ;D�6���u�!�u�����
�;De�"Z�w�ʚ;D�6���u�!�u�����
�;De�"Z�w�ʚ;D�6������+���5w�hm �!*k���@�CT�q������q�;D�.@�CT��!���|����CDk�QYs�������;D�.@�CT��!���|����CDk�QYs�������;D�.@�CT��!���|����CDk�QYs�������;D�.@�CT��!���x�������;D��"J�w��:�ɺ��QYs��������
�;De�"Z�w��:�ɺ��QYs��������
�;De�"Z�w��:�ɺ��QYs��������
�;De�"Z�w��:�ɺ��QI�":�w�ʙ;D�6���5w�hm �!�C$��;De�"Z�w�ʚ;D�6���5w�hm �!
+��"XW �!*k���@�CT��!���|����CDk��X�"Y �!*k���@�CT��!���|����CDk��Hs�H����R�;DT���3w�(m �!ҕ��C�ױ�!~zp�x�:�p}{�^�;���������=.�/���Cy���y\"��/�~�ˏ�������_�Q�����[�Ƿ����������;�����������o�<�_~��o����;�H�7"�K�7"�~i�7"߾�Ak�FDYs#��򍈲�F�
�c�7"d]�|#���Ak�FDYs#��⍈��toD�27"�l߈(gnDP�@�Q�܈���|#���Ak�F�X�Y ߈(knD��@�Q�܈���|#���Ak�F�X�Y ߈(knD��@�Q�܈���|#���Ak�FDX?nD���FDYs#��򍈲�F�
�%7"�,߈�!��e͍Z�7"ʚ�6�oD�57"hm ߈�!��e͍Z�7"ʚ�6�oD�57"hm ߈�!��e͍Z�7"ʚ�6�oD�57"hm ߈�!��e͍Z�7"J:nD�Y8�Q�܈���|#b��F���oD�57"hm ߈(knD��@�Q�܈���|#b��F���oD�57"hm ߈(knD��@�Q�܈���|#b��F���oD�57"hm ߈(knD��@�Q�܈���|#b��F��oD�t܈��p|#���Ai�FDYs#��򍈱��.@�Q�܈���|#���Ak�FDYs#��򍈰~܈�u򍈲�F�
�e͍Z�7"ʚ�6�oD�uވ�u򍈲�F�
�e͍Z�7"ʚ�6oD�47"�lވ(�Ae��FD9s#����-�|��ȧ�7"ǯc��ܹy|��A��oD�3�nD.��7"�Td|+�O�/�����Uo��U�v�5��?�?h��uЎ����F��I�8��]9�A;J��+k>hGk��ve��hm �n��v�.@��]Y�A;Z��+k>hGk��ve��hm �n��v�.@��]Y�A;Z��+k>hGk��ve��hm �.���u��ʚ���@��]Y�A;Z��+������ڍs~�N���+k>hGk��ve��hm Ю����
�ڍu~�N���+k>hGk��ve��hm Ю����
�ڍu~�N���+k>hGk��ve��hm Ю����
�ڍu~�N���+k>hGk�v%���p�A�r�v�6�?h7��A;Y Ю����
�ڕ5�����A���v�6�?h7��A;Y Ю����
�ڕ5�����A���v�6�?h7��A;Y Ю����
�ڕ5�����A���v�6�?h7��A;Y ~Ю��vt�?hW�|Ў���ʚ���@���X��d]��A���v�6�?hW�|Ў���ʚ���@��]X?>h�
+�ڕ5�����A���v�6�?hW�|Ў����:?h'��ڕ5�����A���v�6�?hW�|Ў���F����8��])���,Ю����
���3_�A;�����O/>h?~����t}~���3�>h���#����۟ٿ���:>a������;�n�0\_O/�����W~9=<<}�>��~Q�+X>�������_����W�(k���
�`Q�|Z�_�b�s^����5�5�hm �k(k�5��@��P��k���<�a�s^����5�5�hm �k(k�~��@��Q�q�����ՏQ�ꇔ�����J�W?ʚ��6��~�5W?hm _���!��e��Z�W?ʚ��6��~�5W?hm _���!��e��Z�W?ʚ��6��~�5W?hm _����XW _�(k�~��@��Q�\����x���������W?$]�|�����Ak��GYs����Տ����
�c�W?d]�|�����Ak��GYs����Տ����
�c�W?d]�|�����Ak��GYs����Տ����
�c�W?d]�|�����Ak��GI��:�W?ʙ��6��~�u^��u�Տ����
�e��Z�W?ʚ��6��~�u^��u�Տ����
�e��Z�W?ʚ��6��~�u^��u�Տ����
�e��Z�W?ʚ��6��~�u^��u�Տ���t��~�3W?(m _�(k�~��@��1�y�C��W?ʚ��6��~�5W?hm _�(k�~��@��֏���@��Q�\����|�����Ak��GYs����Տ�Ϋ�.@��Q�\����|�����Ak��GYs����Տ��ꇜ�ë�W?�,_�(g�~P�@��9�GQW?�:���O/�������u|������¼��S���럇]O����4��#���i����������_���o?����?��?���������Ƿ������~���8���/?������m��wy���~��o�_��{e����r�_T�����c�����{��BnX�g�Xx`}:�>]�u���������Giݟ�cm�m��#��*��Y�.���6��
����ޱ6����
�_)����w�
<�noÃ���ޱ6�u�����7 �:�e�<�^O��Wiݟ�cm������b���w�
<���.�������w�
�m�no���i���;Pn������e�����G;�g�Hx`�ހ��i3��cm����~5�yNK���ʚsZ�6��i�5�hm ��*k�i��@>�5�yNK���ʚsZ�6��i�5�hm ��*k�i��@>�5�yNK���ʚsZ�6��i�5�hm ��*�8�Eg���(sNK���9�r��
�sZe�9-Z��ʚsZ�6��i�u�Ӓu�9����
�sZe�9-Z��ʚsZ�6��i�u�Ӓu�9����
�sZe�9-Z��ʚsZ�6��i����+��i�5�hm ��*k�i��@<�U�qN����9�q�sZ�.@>�U֜Ӣ��|N��9�Ek��VYsN���9���sZ�.@>�U֜Ӣ��|N��9�Ek��VYsN���9���sZ�.@>�U֜Ӣ��|N��9�Ek��VYsN���9���sZ�.@>�U֜Ӣ��xN������sZ��9-J���:�iɺ���VYsN���9����
�sZe�9-Z���:�iɺ���VYsN���9����
�sZe�9-Z���:�iɺ���VYsN���9����
�sZe�9-Z���:�iɺ��VI�9-:��ʙsZ�6��i�5�hm ���<�%��sZe�9-Z��ʚsZ�6��i�5�hm ��
+��9-XW ��*k�i��@>�U֜Ӣ��|N��9�Ek���X�9-Y ��*k�i��@>�U֜Ӣ��|N��9�Ek��HsNK���9�R�sZT��i�3�(m ��ҥ�8��ױ��~zpN{�:�s�3�ӎ?$�s���8�}���_��������y���/?\���/�������%���߾9����������y����h/�r=��_�<~y����w�r���7ύrú?{��������CIY�g�Xx`}==?X���ko[ϧ��ggϲuX����Jʺ?{��������Z�g�Xx`}==��PR���;�޶>mo�ӛ��gٺ�����h���w�
<�no��/���;��(���z����;�޶>o��EZdzl]���=x�=R���;�X�w��Z�g�Xx`}��N�*���w�
�m}y���A�<�e�<�n��b���w�
<�>m��s��;�X���I���ޱ6��u{�u<��x`�ކ��17��cm��u{.���x������m8[���ko[߶��A��ϲuX��A:ߟ�c�;�=�^�/��w��;P������x�����ڨ���#�
+�,PY�����*k�@�6��@eM��rh�3$��,PY�����*k�@�6��@eM��rh�3$��,PY�����*k�@�6��@eM��bh����8��rd��,g�ʙ,�
�,PY�������ɺ�9T�d�hm g�ʚ,�
�,PY�������ɺ�9T�d�hm g�ʚ,�
�,PY�������ɺ�9T�d�hm g�ʚ,�
�,PIG���ah��I�8��3Y J�Y��&Dk9T�d�hm g��:�@�.@��5Y Z�Y��&Dk9T�d�hm g��:�@�.@��5Y Z�Y��&Dk9T�d�hm g�����ur�����@��5Y Z�Y���,���,�8gH��Y��&Dk9T�d�hm g�ʚ,�
�,�XgH��Y��&Dk9T�d�hm g�ʚ,�
�,�XgH��Y��&Dk9T�d�hm g�ʚ,�
�,�XgH��Y��&Dk1Tґ��p�*g�@�6��@c�Y Y g�ʚ,�
�,PY�����*k�@�6��@c�Y Y g�ʚ,�
�,PY�����*k�@�6��@c�Y Y g�ʚ,�
�,PY�����*k�@�6��@c�Y Y f�J:�@t��@�L��r�����@��uf�d]��*k�@�6��@eM��r�����@���#�
+�,PY�����*k�@�6��@eM��rh�3$��,PY�����*k�@�6��@eM��bh����8��rd��,g�ʙ,�
�,�bSY ��=��2����ױI^O��j�����m������������+�Cyf���������_�����u�W������p���߷�F
+�|z~|�������0�~�����k�C�_�<n�o�����Dg"[�������
���YG���b���	Ѻ�1@t� ��� :���@�u�lm �ʚ��Dg"[H���";��s����
��QY �ub��#@dk1@t� ��� :���@�5"Z ��:D�6Dg"[�������
��QY �ub��#@dk1@t� ��� :���@�5"Z ���5@d�g�N��l,��9D�6Dc�"YW ��:D�6Dg"[�������
��QY �ub��#@dk1@t� ��� :���@�5"Z ��:D�6Dg"[�������
��QIG����Q��{����a��#@di1@t� ��� *kD�.@�u�lm ��:D�6Dg"[���&@D����YG���b��#@dk1@t� ��� *kD�.@�u�lm ��:D�6�D'�Dv�D�"*��s����
���YG���b��#@dk1@T��h]� :���@�u�lm ��:D�6DeM����������
���YG���b��#@dk1@4� �ub��#@dk1@t� ��� :� ��p *gD�.@�u�lm ��:D�6Dg"[���&@D����YG���b��#@dk1@t� ��� *kD�.@�u�lm ��:D�6Dg"[���&@D����YG���R��{����a��#@di1@T��h]� :���@�u�lm ��:D�6DeM����������
���YG���b��#@dk1@T��h]� :���@�u�lm ��:D�6DeM���H���";��s����
���YG���b���	Ѻ�1@t� ��� :���@�u�lm ��:D��@�u�lm ��:D�6Dg"[���&@D����YG���b��#@dk1@t� ��� *���8
+�rYY8�s�,m ��Ι��_��g>����^� ����������xf����M���Մ�����?�����o��O��9���'��%�����^��}>�������q\���p\�(��_���H����*\�,������h�`ٴ)�0�Mk� �N�=2�Oמּ'Nf����Õ��U�r�(���i� ځ��1�l���r�G�i��ځ��Qj�>�v �}�����m�ζ�K �}�����m���jr�G�i��ځ��1�l���r�G�i��ځ��Qj�>�v �}�����m�ζ�K �}���}P�ö�G�Ŋ㶏2��A���#�s��5��>JM��䶏R��A����Դ}P�@n�u�}H]���Դ}P�@n�(5mT;��>JM��䶏Qgۇ�%��>JM��䶏R��A����Դ}P�@l�4m2;�>�m$+��>�L��䶏R��A���c���!u	䶏R��A����Դ}P�@n�(5mT;��>F�mR�@n�(5mT;��>JM��䶏R��A���c���!u	䶏R��A����Դ}P�@l�(t�}Ь8l�2m";��>�L��䶏R��A����Դ}P�@n�u�}H]���Դ}P�@n�(5mT;��>JM��䶏Qgۇ�%��>JM��䶏R��A����Դ}P�@n����u
䶏R��A����Դ}P�@l�(t�}Ь8n�s�}]���Դ}P�@n�(5mT;��>JM��䶏Qgۇ�%��>JM��䶏R��A����Դ}P�@n�u�}H]���Դ}P�@n�(5mT;��>JM��䶏Qgۇ�%��>JM��Ķ�BG�͊㶏2��A���c���!u	䶏R��A����Դ}P�@n�(5mT;��>F�mR�@n�(5mT;��>JM��䶏R��A���c���!u	䶏R��A����Դ}P�@n�(5mT;��>F�mR�@l�(t�}Ь8n�(3mD;��>JM��䶏Qgۇ�%��>JM��䶏R��A����Դ}P�@n����u
䶏R��A����Դ}P�@n�(5mT;��>F�mR�@n�(5mT;��>JM��䶏R��A���cд}��8l�(r�}��8n�(3mD;��>�����ϱ�}.>���n�g�s���{:O�9�m���l��a��>~�ӧ?|��Ň��������������oOu�/���?��_ݗ��^�'�����ዿ����.��@���b�5�/����aT;�/����aT;�/����aT;�/��:/�I]�bX��F��bX��F��bX��F��bب�b��%�/����aT;�/����aT;�/����aT;/�
��a2;/�9.���8�Vf.��@�Vj.�Q�@�6�&u	�a��b��a��b��a��b��a�΋aR�@�Vj.�Q�@�Vj.�Q�@�Vj.�Q�@�6�&u	�a��b��a��b�ċa���a4+/�
��a";�/����aD;�/����aT;�/����aT;�/��:/�I]�bX��F��bX��F��bX��F��bب�b��%�/����aT;�/����aT;�/����aT;�/��z�u
�a��b��a��b�ċa���a4+�/��9/�	]�bX��F��bX��F��bX��F��bب�b��%�/����aT;�/����aT;�/����aT;�/��:/�I]�bX��F��bX��F��bX��F��bب�b��%�/����aT;/�:.�Ѭ8�Vf.��@�6�&u	�a��b��a��b��a��b��a�΋aR�@�Vj.�Q�@�Vj.�Q�@�Vj.�Q�@�6�&u	�a��b��a��b��a��b��a�΋aR�@�V�F���bX��F��bX��F��bب�b��%�/����aT;�/����aT;�/����aT;�/��z�u
�a��b��a��b��a��b��a�΋aR�@�Vj.�Q�@�Vj.�Q�@�Vj.�Q�@�6h.���8�V�F���bX��F��b�nZ��0~��b��c�����������^y?��������ϧ��޿噋����7ÿ|��������/���?z?�o_�x����a��7��<��/>�������v �+5��v �+5��v �u��R�o�j�R�o�j�R�o�j�Q�9�K �+s�7G�2��8�
+(V������m���
+����VPj�
+�v ������m����jr[����@��m����jr[A�i+�ځ�VPj�
+�v ��:�
+�.��VPj�
+�v ������m����jb[��i+��q�VP�h+ Yq�VPf�
+�v ������m�ζ�K ������m����jr[A�i+�ځ�V0�l+��r[A�i+�ځ�VPj�
+�v ������m�ζ�K ������m����jb[A����f�a[��i+�q�VPf�
+�v ������m����jr[����@��m����jr[A�i+�ځ�VPj�
+�v ��:�
+�.��VPj�
+�v ������m����jr[A���k ������m����jb[A����f�q[����@��m����jr[A�i+�ځ�VPj�
 �v ��:�
 �.��VPj�
 �v ������m����jr[����@��m����jr[A�i+�ځ�VPj�
-�v ��zn+��r[A�i+�ځ�VPj�
+�v ��:�
+�.��VPj�
 �v �:�
-hV��9�
-�.��VPj�
-�v ������m����jr[����@��m����jr[A�i+�ځ�VPj�
+hV������m�ζ�K ������m����jr[A�i+�ځ�V0�l+��r[A�i+�ځ�VPj�
+�v ������m�ζ�K ������m����jr[A�i+�ځ�V0�l+��b[A����f�q[A�i+ ځ�VPj�
 �v ��:�
 �.��VPj�
-�v ������m����jr[����@��m����jb[A����f�q[A�i+ ځ�V0�l+��r[A�i+�ځ�VPj�
-�v ������m�ζ�K ������m����jr[A�i+�ځ�V0�l+��r[A�i+�ځ�VPj�
-�v ������m�ζ�K �:�
-hV������m����jr[����@��m����jr[A�i+�ځ�VPj�
-�v ��zn+��r[A�i+�ځ�VPj�
-�v ������m�ζ�K ������m����jr[A�i+�ځ�V0h�
-dv�9�
-HV������m��C{�V�ﱵ.������V���Vx~+<q[a|梭pw����ϟ��6q��_>��˵����t?��Q�_^vg�s

��5�ſ��k��_c���0��VฆF���Z���F��Z��khP�@��Vj��Q�@��Vj��Q�@��Vj��Q�@��6꼆&u	�kh����kh����kh����kh��khR�@��Vj��Q�@��Vj��Q�@��Vj��Q�@��6h����8��V丆F���Z���F��Z���F��ڨ���%�����khT;�����khT;�����khT;����:��I]�Z���F��Z���F��Z���F��ڨ���%�����khT;�����khT;��:��Ѭ8��6d����8��Vf���@��Vj��Q�@��Vj��Q�@��6꼆&u	�kh����kh����kh����kh��khR�@��Vj��Q�@��Vj��Q�@��Vj��Q�@�����5�����khT;�����khT;��:��Ѭ8��6漆&t	�kh����kh����kh����kh��khR�@��Vj��Q�@��Vj��Q�@��Vj��Q�@��6꼆&u	�kh����kh����kh����kh��khR�@��Vj��Q�@��V踆F���Z���F��ڨ���%�����khT;�����khT;�����khT;����:��I]�Z���F��Z���F��Z���F��ڨ���%�����khT;�����khT;�����khT;����:��I]�Z��͊�khe���kh����kh��khR�@��Vj��Q�@��Vj��Q�@��Vj��Q�@�����5�����khT;�����khT;�����khT;����:��I]�Z���F��Z���F��Z���F��ڠ��&���Z��Ɋ�khe���kh:����=�k苯�xܽ����v�����z�|
=>sq
}���>~����?��������T�,�_p����w=���ϥ�o��������7��K�J��7��K�J��7��K�F����.�tۮ�����0�mW�mG����]��mG���]���vP�@�mWjn�Q�@�mWjn�Q�@�mWjn�Q�@�m7�m'u	��v�����v�����v�����v���vR�@�mWjn�Q�@�mWjn�Q�@�mWjn�Q�@�m7hn���8�mW�mG����]��mG���]��mG���ݨ��%�oە��vT;�oە��vT;�oە��vT;�oۍ:o�I]��]��mG���]��mG���]��mG���ݨ��%�oە��vT;�oە��vT;o�:n�Ѭ8�m7dnۉ�8�mWfn��@�mWjn�Q�@�mWjn�Q�@�m7�m'u	��v�����v�����v�����v���vR�@�mWjn�Q�@�mWjn�Q�@�mWjn�Q�@�m����5�oە��vT;�oە��vT;o�:n�Ѭ8�m7�m't	��v�����v�����v�����v���vR�@�mWjn�Q�@�mWjn�Q�@�mWjn�Q�@�m7�m'u	��v�����v�����v�����v���vR�@�mWjn�Q�@�mW�mG����]��mG���ݨ��%�oە��vT;�oە��vT;�oە��vT;�oۍ:o�I]��]��mG���]��mG���]��mG���ݨ��%�oە��vT;�oە��vT;�oە��vT;�oۍ:o�I]�]��͊��ve����v�����v���vR�@�mWjn�Q�@�mWjn�Q�@�mWjn�Q�@�m����5�oە��vT;�oە��vT;�oە��vT;�oۍ:o�I]��]��mG���]��mG���]��mG��ݠ�m'���]��Ɋ��ve�������luێ�c�m���w��������/���������@ݝ�G�޶��3��a\����_�����=������᧯�;��|���~~w�{���Nj�9_�7��?.^�ˏ�\~��'§�����k_㊹}�ځ�է��Z�㳬.�;����x'���7��QO
-��}��ځ;������n���v�u���1__�:>��������}��ځ;����R�>{C�������$���7��酌��Qg��%��7JM����RӼA��y��4oP�@n�u6oH]�y�̭y��e6o8�7(V7o���
������7���ܼQj�7�v 7o���
�����y�jr�ƨ�yC�����y�jr�F�iޠځܼQj�7�v 7o�:�7�.�ܼQj�7�v 7o���
�����y�jb�Ơiސ�qؼQ�h� YqܼQf�7�v 7o���
������
�K 7o���
�����y�jr�F�iޠځܼ1�lސ�r�F�iޠځܼQj�7�v 7o���
������
�K 7o���
�����y�jb�F��y�f�a�Ɛi��qܼQf�7�v 7o���
�����y�jr�ƨ�yC�����y�jr�F�iޠځܼQj�7�v 7o�:�7�.�ܼQj�7�v 7o���
�����y�jr�F���
�k 7o���
�����y�jb�F��y�f�q�Ƙ�yC�����y�jr�F�iޠځܼQj�7�v 7o�:�7�.�ܼQj�7�v 7o���
�����y�jr�ƨ�yC�����y�jr�F�iޠځܼQj�7�v 7o�:�7�.�ܼQj�7�v 6o:�7hV7o���
������
�K 7o���
�����y�jr�F�iޠځܼ1�lސ�r�F�iޠځܼQj�7�v 7o���
������
�K 7o���
�����y�jr�F�iޠځܼ1�lސ�b�F��y�f�q�F�i� ځܼQj�7�v 7o�:�7�.�ܼQj�7�v 7o���
�����y�jr�F���
�k 7o���
�����y�jr�F�iޠځܼ1�lސ�r�F�iޠځܼQj�7�v 7o���
�����yCf�a�F��y�d�q�F�i� ځܼ���h���ؚ7_�7����oßN������G�����k�y>�������q~������G޾P*7�������/�|�������o_��u���LJ����g���o����_�������5
|�|��K���������/rE�>{C������p��O�:>�����^^��}��ځ;������E��go����^��)�R���P;�z���R�eu	�QO���u��
�w����?ET���j?�;�n���v�u����p����lv�y�38��}�ځ;�����U���P;pG}9<�ڿ��go�x]}=�^�:>���������}��ځ;����O�os�7��QO��o8�7��^��p�cxpj>�������}��ځ;����Y��go������V�>{C����������m.�eu	�Q�O��R�>{C����p|����j�/�'���Go�w��;���o8�,�K��z�3x����j�Oۦ�R���P;pG=�)<�Ku��
�����?�{��ϲ�?���n���v��z�c8ʿ���P;pG=�1|����j^W����os㳬.�;����E�
g|��ځ;���óU���P;pG}9<��_x|��ځ;C#�?�G�7��YV������`���7��Q����4+�w\��D;�w\�:w\H]y�E��qA�y�E��qA�y�E��qA�y�ŨsDž�%�w\��T;�w\��T;�w\��T;�w\�:w\H]y�E��qA�y�E��qA�y�E��qA�y�ŨsDž�%�v\�����x�;.
-;.(V�(3;.�v ������;.J͎��;.J͎��;.J͎��;.F�;.�.����츠ځ���츠ځ���츠ځ��bԹ�B��;.J͎��;.J͎��;.J͎��;.͎��;.�;.HV�(3;.�v �(5;.�v �u��R��j�R��j�R��j�Q��K �(5;.�v �(5;.�v �(5;.�v �u��R��j�R��j⎋Bǎ��;.�̎��;.�̎��;.J͎��;.J͎��;.F�;.�.����츠ځ���츠ځ���츠ځ��bԹ�B��;.J͎��;.J͎��;.J͎��;.B=︀��R��j�R��j⎋Bǎ��;.Ɯ;.�.����츠ځ���츠ځ���츠ځ��bԹ�B��;.J͎��;.J͎��;.J͎��;.F�;.�.����츠ځ���츠ځ���츠ځ��bԹ�B��;.J͎��;.
-;.hV�(3;.�v �u��R��j�R��j�R��j�Q��K �(5;.�v �(5;.�v �(5;.�v �u��R��j�R��j�R��j�Q��K �(t츠Yq���� ځ���츠ځ��bԹ�B��;.J͎��;.J͎��;.J͎��;.B=︀��R��j�R��j�R��j�Q��K �(5;.�v �(5;.�v �(5;.�v �4;.dv�(r� Yq���� ځ�㲿I�v\�{l;._��aw�e�{�����q������u���އ���a��|d�q9�%����>�x~;�������y������Yy���x�� ;K.sD�������#���ځ<"`�9"@��#J͈���#J͈���#J͈���#B=����R3"�j�R3"�j�R3"�j�Q���K �(5#�v �(5#�v �(t��Yq<"`�9"@��#J͈���#J͈���#J͈���#F�#�.�<"�Ԍ�ځ<"�Ԍ�ځ<"�Ԍ�ځ<"`�9"@��#J͈���#J͈���#J͈���#F�#�.�<"�Ԍ�ځ8"��1"�f��23"�h�Q���K �(5#�v �(5#�v �(5#�v �u����R3"�j�R3"�j�R3"�j�Q���K �(5#�v �(5#�v �(5#�v �u���҈�2�/�pD@�cD�Ŋ�efD�����G@]yD@�@�yD@�@�yD@�@�yD��sD��%�G��T;�G��T;�G��T;�G�:GH]yD@�@�yD@�@�yD@�@�qD�� ��pD@�cD�Ɋ�efD����fD�����R�@PjFP�@PjFP�@PjFP�@0� u	��fD����fD����fD�����R�@PjFP�@PjFP�@P�@��pD�� ��xD@�@�yD@�@�yD@�@�yD��sD��%�G��T;�G��T;�G��T;�G�:GH]yD@�@�yD@�@�yD@�@�yD@��P�@PjFP�@PjFP�@P�@��xD��sD��%�G��T;�G��T;�G��T;�G�:GH]yD@�@�yD@�@�yD@�@�yD��sD��%�G��T;�G��T;�G��T;�G�:GH]yD@�@�qD@�cD�͊�efD�����R�@PjFP�@PjFP�@PjFP�@0� u	��fD����fD����fD�����R�@PjFP�@PjFP�@PjFP�@0� u	���4+�G��D;�G��T;�G�:GH]yD@�@�yD@�@�yD@�@�yD@��P�@PjFP�@PjFP�@PjFP�@0� u	��fD����fD����fD����fD�̎�E�$+�G��D;�G���jD���6"p�5`D`�{�����������?��>"p<��������O����C�Lf2$����������_���o�{��~>ܿ��}Fޏ<�=���7}�Ծ/��~�����7�k ׾���7�ȵo����jr�[��}�ځ\�6�}��r�[��}�ځ\�Vjjߨv ־:j�hV׾�9k߄.�\�Vjjߨv ׾���7�ȵo����jr�ۨ��M�ȵo����jr�[��}�ځ\�Vjjߨv ׾�:kߤ.�\�Vjjߨv ׾���7�ȵo����jr�ۨ��M�ȵo����jb�[����f�q�[��}#ځ\�6�}��r�[��}�ځ\�Vjjߨv ׾���7�ȵo���7�K ׾���7�ȵo����jr�[��}�ځ\�6�}��r�[��}�ځ\�Vjjߨv ׾���7�ȵo���7�K վ��վQ��ڷG�Ŋ�ڷ2S�F���-�s��5�k�JM���ڷRS�F�����ԾQ�@�}u־I]����ԾQ�@�}+5�oT;�k�JM���ڷQg��%�k�JM���ڷRS�F�����ԾQ�@�}4�o2;kߊ�o$+�k��L���ڷRS�F���m�Y�&u	�ڷRS�F�����ԾQ�@�}+5�oT;�k�F��oR�@�}+5�oT;�k�JM���ڷRS�F���m�Y�&u	�ڷRS�F�����ԾQ�@�}+tԾѬ8�}2�o";�k��L���ڷRS�F�����ԾQ�@�}u־I]����ԾQ�@�}+5�oT;�k�JM���ڷQg��%�k�JM���ڷRS�F�����ԾQ�@�}�\�u
�ڷRS�F�����ԾQ�@�}+tԾѬ8�}s־	]����ԾQ�@�}+5�oT;�k�JM���ڷQg��%�k�JM���ڷRS�F�����ԾQ�@�}u־I]����ԾQ�@�}+5�oT;�k�JM���ڷQg��%�k�JM���ڷBG�͊�ڷ2S�F���m�Y�&u	�ڷRS�F�����ԾQ�@�}+5�oT;�k�F��oR�@�}+5�oT;�k�JM���ڷRS�F���m�Y�&u	�ڷRS�F�����ԾQ�@�}+5�oT;�k�F��oR�@�}+tԾѬ8�}+3�oD;�k�JM���ڷQg��%�k�JM���ڷRS�F�����ԾQ�@�}�\�u
�ڷRS�F�����ԾQ�@�}+5�oT;�k�F��oR�@�}+5�oT;�k�JM���ڷRS�F���m�Ծ��8�}+rԾ��8�}+3�oD;�k��fU���վ/�Ծ���R�>r�����p<>a�;�I���P��������߶���>}�������[��w����/�	g9��q>t��w�qW��~9���r�RS�Cu	�r�SG9���r�SG9���r�SG9���r�RS�Cu	�r�SG9���r�C�r���8g�r���8������8��r���8��r���8��r���8������8��r���8��r���8��r���8������8��r���8��r���8��r���8�����8g�(DZxF�8n�8+�q��8F;�qF��8R�@,�9u��X�@,�9u��X�@,�9u��X�@,�)5�8T�@,�9u��X�@,�9u��X�@,�9u��X�@,�)5�8T�@,�9u��X�@,�9u��X�@,�9u��X�@*�)t����8*�9r+�1YqX�s�(�1ځX�s�(DZځX�Sj�q�.�X�s�(DZځX�s�(DZځX�s�(DZځX�Sj�q�.�X�s�(DZځX�s�(DZځX�s�(DZځX�Sj�q�.�X�s�(DZځX�s�(DZځT�s�V�c����Q�C����Q�c����Q�c����Q�c���Ԕ�P]���Q�c����Q�c����Q�c���Ԕ�P]���Q�c����Q�c����Q�c��g�Y�#u
�r�SG9���r�SG9���r�C�r���8e�����8��r���8��r���8��r���8������8��r���8��r���8��r���8������8��r���8��r���8��r���8������8��r�H�8�n�86+�q��8F;�qJM9�%�qN�8V;�qN�8V;�qN�8V;�qJM9�%�qN�8V;�qN�8V;�qN�8V;�qJM9�%�qN�8V;�qN�8V;�qN�8V;�qJM9�%��q��qlV��9�q�v ��:�q�v �㔚r�K ��:�q�v ��:�q�v ��:�q�v ��:�q���X�s�(DZځX�s�(DZځX�s�(DZځX�Sj�q�.�X�s�(DZځX�s�(DZځX�s�(DZځT�S�(ǡ�qT�s�V�c����Q�c���ͮ��8�?>s�5��q�=��7QN�}�r��L�q�y�ϟ߾������r�����ó����Iy���?������>9��|�~��˵�.?����z��z�S��_ҿ�|��_���W����v >����%�H�_:t{��͊��/���/]��K���/Y�@|�ҩ��KV;��t�x�����/���/Q]��K���/Y�@|�ҩi��ځ��Uj��v 7|�:��.���Uj��v 7|���/��
_���jr�ר��K��
_���jb�W���f�q�W�i�"ځ��5�l���r�W�i��ځ��Uj��v 7|���/��
_�Ά/�K 7|���/��
_���jr�W�i��ځ��5�l���r�W�i��ځ��Uj��v 7|���/��
_�Ά/�K 5|��5|Q�Æ�G�Ŋㆯ2��E���+�s��5��JM��䆯R��E����4|Q�@n�u6|I]���4|Q�@n�*5
_T;��JM��䆯Qg×�%��JM��䆯R��E����4|Q�@l�4
_2;��
_$+���L��䆯R��E���k���%u	䆯R��E����4|Q�@n�*5
_T;��F�
_R�@n�*5
_T;��JM��䆯R��E���k���%u	䆯R��E����4|Q�@l�*t4|Ѭ8l�2
_";���L��䆯R��E����4|Q�@n�u6|I]���4|Q�@n�*5
_T;��JM��䆯Qg×�%��JM��䆯R��E����4|Q�@n�
-���u
䆯R��E����4|Q�@l�*t4|Ѭ8n�s6|	]���4|Q�@n�*5
_T;��JM��䆯Qg×�%��JM��䆯R��E����4|Q�@n�u6|I]���4|Q�@n�*5
_T;��JM��䆯Qg×�%��JM��Ć�BG�͊ㆯ2��E���k���%u	䆯R��E����4|Q�@n�*5
_T;��F�
_R�@n�*5
_T;��JM��䆯R��E���k���%u	䆯R��E����4|Q�@n�*5
_T;��F�
_R�@l�*t4|Ѭ8n�*3
_D;��JM��䆯Qg×�%��JM��䆯R��E����4|Q�@n�
-���u
䆯R��E����4|Q�@n�*5
_T;��F�
_R�@n�*5
_T;��JM��䆯R��E���k�4|��8l�*r4|��8n�*3
_D;���8
_�[���k@�w�{����o����<�]��at,ޮQ�}��|d��������������߮L��	�9��_����_�������Ʒʇ.����y9�^|w��|��ځ�������ɨ㳬.�;�����^��go������V�>{C������vƤ���7���>�o�<ب㳬.�;����Ū�go���>��Θ��}��ځ;�����+u��
���ϧ?�G��ϲ�?��3&�n���v��z�cx���J�>{C�����pg���7��������7�}�͎�!OG�7���h?�V�>{C������j��n���v�u��x�{���eu	�Q���V�>{C����p�$�67>{C������(��3>{C���5��?��注��;����I��go������}��ځ;���h���7��ً:F��<�.��ȣ�,�ځ�ȣ�,�ځ�ȣбȃf��"�1�"�K /�(5�<�v /�(5�<�v /�(5�<�v /�u.��"�R�ȃj�"�R�ȃj�"�R�ȃj�"�Q�"�K /�(5�<�v /�(5�<�v /�(5�<�v /�u.��"�R�ȃj�"�B�"�Nj<��"�ȋ<F��<�.��ȣ�,�ځ�ȣ�,�ځ�ȣ�,�ځ��cԹ�C�ȋ<J�"�ȋ<J�"�ȋ<J�"�ȋ<F��<�.��ȣ�,�ځ�ȣ�,�ځ�ȣ�,�ځ��cԹ�C�H�<��yP��E�E+�y��ED;�y�z^�u
�E�f���E�f���E�f���E��ER�@^�QjyP�@^�QjyP�@^�QjyP�@^�1�\�!u	�E�f���E�f���E�f���E�f��̎�EE�E$+�y��ED;�y��ET;�y�:yH]y�G�Y�A�y�G�Y�A�y�G�Y�A�y�Ǩs���%�y��ET;�y��ET;�y��ET;�y�:yH]y�G�Y�A�y�G�Y�A�q�G�c�͊�ECf��Ȏ�Eef���E�f���E�f���E��ER�@^�QjyP�@^�QjyP�@^�QjyP�@^�1�\�!u	�E�f���E�f���E�f���E��y@]y�G�Y�A�y�G�Y�A�q�G�c�͊�Ec�EB�@^�QjyP�@^�QjyP�@^�QjyP�@^�1�\�!u	�E�f���E�f���E�f���E��ER�@^�QjyP�@^�QjyP�@^�QjyP�@^�1�\�!u	�E�f���E��E4+�y��ED;�y�:yH]y�G�Y�A�y�G�Y�A�y�G�Y�A�y�Ǩs���%�y��ET;�y��ET;�y��ET;�y�:yH]y�G�Y�A�y�G�Y�A�y�G�Y�A�y�Ǩs���%y:yЬ8^�Qfy�@^�QjyP�@^�1�\�!u	�E�f���E�f���E�f���E��y@]y�G�Y�A�y�G�Y�A�y�G�Y�A�y�Ǩs���%�y��ET;�y��ET;�y��ET;y�E2;y9y��8^�Qfy�@^䡭�ȃ�c[���ȳ�=����rxx�W
�<�����޾��?�ޝ�^{�Q=>��d��8Vy���?_����/�鯿}������ç��?}����߯�@����9O��W�\�/?�!_~���{@1��b�RSA��b�Y!u	�b�RSA����CP�@.�(5�T;��!F��R�@.�(5�T;��!JM1��b�RSA��b�Y!u	�b�2�b��aXQ�(��Xq\Qf�!�v C�z.���r1D�)��ځ\Qj�!�v C��b�����b�K C��b������jr1D�)��ځ\1�,���r1D�)��ځ\Qj�!�v C��b�����Bf�a1D���d�q1D�)� ځ\Qj�!�v C�:�!�.�\Qj�!�v C��b������jr1Ĩ�B������jr1D�)��ځ\Qj�!�v C�:�!�.�\Qj�!�v C��b�����b���C�Bd�q1D�)� ځ\Qj�!�v C��b�����b�K C��b������jr1D�)��ځ\1�,���r1D�)��ځ\Qj�!�v C��b������!���\Qj�!�v C��b�����b���c�b�K C��b������jr1D�)��ځ\1�,���r1D�)��ځ\Qj�!�v C��b�����b�K C��b������jr1D�)��ځ\1�,���r1D�)��ځXQ�(��Yq\Qf�!�v C�:�!�.�\Qj�!�v C��b������jr1Ĩ�B������jr1D�)��ځ\Qj�!�v C�:�!�.�\Qj�!�v C��b������jr1Ĩ�B�����b���e��hr1D�)��ځ\1�,���r1D�)��ځ\Qj�!�v C��b������!���\Qj�!�v C��b������jr1Ĩ�B������jr1D�)��ځ\Qj�!�v C�b���E�b���e��hr1�����c+�\|����b���X�!w7�!���#�B���r���qww�������a����뿞�����G�����ǟ������v��?����o��Ǝ���9��_�����7����Gs�������_���ܻosDV��2�rDV�	1�r�V^�oʑw�gr̕��7r�̉��r���q@v_�2�qDV��2�qDV��2gqDV�	r���q|g��Yq|g�\�Yq|gȜ�Yq|'�yd���!sGd��	�!sGd��������ax�&�ܾ�Wa|�f���Xq|�f�\�Yq|�fȜ�Yq|�&�y�d��!s�Fd��!s�Fd��!s�Fd�� ���n�́���m��u�Ƿm��i�LJm���]�>���U�!s�Fd��I�!s�Fd��=��9��a|�&�y�b��%�!s�Fd���!s�Fd��
�!s�Fd��� �����k����ǧk�����wk�����Gk��7k@v_�2kDV��2�jDVߪ2�jDV�	rީ�q|�f��Yqx�f�q�F�eߧ0�i$V�	rަ�q|�f��Yq|�f�\�Yq|�fȜ�Yq|�&�y�d��5�!s�Fd��)�!s�Fd���!s�Fd��� �
��h�����g����Ƿg����LJg��wg@v^�q�x�'g�����f�̹���f���f@v_�2�fDV��2WfDVߘ2'fDV��&��e����e��q�ǧe��e��we��Y��Ge��7e@v_�2eDV��2�dDVߒ2�dDV�	1wd�V^�o��w�'d����c��L�|���v=v�p<��%��Qệ�����xl|&�c��z��������᧯��߬��ۻ+���Ļs��3�����	�������|��_�<ޟ�
��/rE�>{C�����o¬�}��ځ;����E�?>zì�����p|��~��et	�QOOV�>{C����g�x'���7��QO
-o�P��go�x]�?�1�Ku|��%pG=�1�=Hu��
�w���ۿT���j?�V�>{C���������ɩ㳬.�;������*u��
�wԧÇg�n���v���rx������
�����?�G�7��YV������`���7��QO����>zì���gp/��3>{����NwR�eu	�Q��J�S�v ?���<��j�SJ�S�v ?�`����K ?���<��j�SJ�S�v ?���<��j�SF�O=���SJ�S�v ?���<��j�SJ�S�v ?�`����K =�����/����P�8~�A�y����z~��5��zPj�z@�����T;��zPj�z@����ΧH]����T;��zPj�z@�����T;��z0�|��%��zPjZ��v �V���*���U����jb{ՠ����qX`U�h�"Yq�aUfJ��v �X��+��MV��*+�K �Y��6+��}V��Њjr�U�鴢ځ�j5ꬵ��r�U�i��ځ�mUjʭ�v �[��~+��
W�Ί+�K �\���+��=W���jb�U���f�a�Ր���q\xUf��v w^���+�ȵW����jr�ը��J���W����jr�U�)��ځ\�Uj:��v �`�:k��.�\�Uj���v wa��2,��uX���jr#V��J,�k �b��V,�ȽX���jb5V���f�q;֘�K��Y��!�jrGV�)ɢځ\�Ujz��v 7e�:���.�\�Ujڲ�v �e���,�ȕY��3�jrk֨�6K���Y��9�jrwV�)Ϣځ\�Uj���v 7h�:+��.�\�UjZ��v �h:��hVWi��.-��mZ��:-�K j��F-�ȝZ��T�jr�V��բځܬ5�֒�r�V�iעځܯUj
-��v Wl���-��-[�Κ-�K m���-��][��l�jr�V��ۢځܸ5�ܒ�b�V��u�f�q�V�)�"ځ\�Uj���v �o�:뷤.�\�Uj��v wp��.��5\����jrW��*.�k �q��6.��}\����jr%W���ځ��5�咺r1W�i�ځ��Ujʹ�v �s��~.��
]���Kf�aIW����d�qOW�)�"ځ\�ݯ���.~���{�5����=~����b
-O=�����0����~��|d+릪���������7�}���oO8|��~����{�.g�}U�x�W�=>�^ܶ��̇.��?����p���������,�K��zxy����j�O���S�n���v���rxy�gzJ�>{C�������Q�㳬.�;����E��go���������R���P;pG=�1�Yu��
���/�?�;�ne��v�ӟ��(���7��QO��}��ځ;��������>{C������.ýS�gY]w����U���P;pG}:�==Hu��
�w�����
��Wm>����Ϣ�?��'�n���v��z�c�{����j?��U���P;pg�c��u�����R���j�R���j⪊BǪ
-�ǫ*Ɯ�*�.����Ԭ��ځ���Ԭ��ځ���Ԭ��ځ��bԹ�B�ȫ*Jͪ
+�v ������m����jr[A���k ������m����jr[A�i+�ځ�V0�l+��r[A�i+�ځ�VPj�
+�v ������m���@f�a[A����d�q[A�i+ ځ�V�?�Wm�[[��c@[a�s��m�q�m���E[��j[��>��x�8��o~����������_ԧ���Y�\C��ü���{ػ�~�1v��Q��kh�kh+�����khD;����z��u
�kh����kh����kh����kh��khR�@��Vj��Q�@��Vj��Q�@��Vj��Q�@��6꼆&u	�kh����kh����kh����kh���̎�khE�kh$+�����khD;�����khT;����:��I]�Z���F��Z���F��Z���F��ڨ���%�����khT;�����khT;�����khT;����:��I]�Z���F��Z���F��Z��͊�khC��Ȏ�khe���kh����kh����kh��khR�@��Vj��Q�@��Vj��Q�@��Vj��Q�@��6꼆&u	�kh����kh����kh����kh����A]�Z���F��Z���F��Z��͊�khc�khB�@��Vj��Q�@��Vj��Q�@��Vj��Q�@��6꼆&u	�kh����kh����kh����kh��khR�@��Vj��Q�@��Vj��Q�@��Vj��Q�@��6꼆&u	�kh����kh��kh4+�����khD;����:��I]�Z���F��Z���F��Z���F��ڨ���%�����khT;�����khT;�����khT;����:��I]�Z���F��Z���F��Z���F��ڨ���%��:��Ѭ8��Vf���@��Vj��Q�@��6꼆&u	�kh����kh����kh����kh����A]�Z���F��Z���F��Z���F��ڨ���%�����khT;�����khT;�����khT;��
�kh2;��9����8��Vf���@����]q
��c������k��ϱ\C�^���;�#����5�x�����5�_>|��O�?~�������T�,�]p�y|ܻ��K�������'�_�~�A`���o�f���o�f���o���vR�@�mW�vێ�e޶+pܶ�Xq|ۮ�ܶ#ځ|�.��m;�k ߶+5���v ߶+5���v ߶+5���v ߶u޶���m�Rsێj�m�Rsێj�m�Rsێj�m�Q�m;�K ߶+5���v ߶+5���v ߶+5���v ޶4��dv޶+rܶ#Yq|ۮ�ܶ#ځ|ۮ�ܶ�ځ|�n�y�N�ȷ�J�m;�ȷ�J�m;�ȷ�J�m;�ȷ�F����.�|ۮ�ܶ�ځ|ۮ�ܶ�ځ|ۮ�ܶ�ځ|�n�y�N�ȷ�J�m;�ȷ�J�m;����
+��hV޶2��Dv߶+3��v ߶+5���v ߶+5���v ߶u޶���m�Rsێj�m�Rsێj�m�Rsێj�m�Q�m;�K ߶+5���v ߶+5���v ߶+5���v ߶�|��ȷ�J�m;�ȷ�J�m;����
+��hV߶s޶��m�Rsێj�m�Rsێj�m�Rsێj�m�Q�m;�K ߶+5���v ߶+5���v ߶+5���v ߶u޶���m�Rsێj�m�Rsێj�m�Rsێj�m�Q�m;�K ߶+5���v ޶+tܶ�Yq|ۮ�ܶ#ځ|�n�y�N�ȷ�J�m;�ȷ�J�m;�ȷ�J�m;�ȷ�F����.�|ۮ�ܶ�ځ|ۮ�ܶ�ځ|ۮ�ܶ�ځ|�n�y�N�ȷ�J�m;�ȷ�J�m;�ȷ�J�m;�ȷ�F����.�xۮ�qێf��m�2sێh�m�Rsێj�m�Q�m;�K ߶+5���v ߶+5���v ߶+5���v ߶�|��ȷ�J�m;�ȷ�J�m;�ȷ�J�m;�ȷ�F����.�|ۮ�ܶ�ځ|ۮ�ܶ�ځ|ۮ�ܶ�ځx�n�ܶ��qxۮ�qێd��m�2sێh�m��A��m�ϱݶ_|����������������������o��Ot��������<3o���e�o?��/?}�:��������w�~�|>|���݇?||s�{���Nj�w9��7��.^�Ïg.?����������x�ܞ��v�������x��%pG�;<o��={E����S������w�������R�g����z��/��Nϲ��w��'�n�^Q;pG}8=� ���+j�ãT�g����E���
�K 7o���
�����y�jr�F�iޠځܼ1�lސ�R�F�[���0l�(p4oP�8n�(3�D;��7B=7o@]�y��4oP�@n�(5�T;��7JM����Qg��%��7JM����RӼA��y��4oP�@n�u6oH]�y��4oP�@n�(5�T;��7JM����AӼ!��y��ѼA��y��4o�@n�(5�T;��7F��R�@n�(5�T;��7JM����RӼA��yc�ټ!u	��RӼA��y��4oP�@n�(5�T;��7F��R�@n�(5�T;��7JM����BG�͊��!Ӽ!��y��4o�@n�(5�T;��7JM����Qg��%��7JM����RӼA��y��4oP�@n�u6oH]�y��4oP�@n�(5�T;��7JM����P��P�@n�(5�T;��7JM����BG�͊��1g��%��7JM����RӼA��y��4oP�@n�u6oH]�y��4oP�@n�(5�T;��7JM����Qg��%��7JM����RӼA��y��4oP�@n�u6oH]�y��4oP�@l�(t4oЬ8n�(3�D;��7F��R�@n�(5�T;��7JM����RӼA��yc�ټ!u	��RӼA��y��4oP�@n�(5�T;��7F��R�@n�(5�T;��7JM����RӼA��yc�ټ!u	��BG�͊��2ӼA��y��4oP�@n�u6oH]�y��4oP�@n�(5�T;��7JM����P��P�@n�(5�T;��7JM����RӼA��yc�ټ!u	��RӼA��y��4oP�@n�(5�T;�7M�̎��"G�Ɋ��2ӼA��yCUѼ�ϱ5o.>4o�?���O�\�N�V�;����3O��ӷ_��������@w��4��#�(��������O?}����?������u��LJ����.����x����͎���o�4����<��χ��㗷�u{��ځ𢡊����"u<���������={E����p�z�����+j�χ��?ET�����WO�wq� ��,�K��z�1��L�۳W��QO?��?ET����w�ӏ�֪۳W�|_}>�n�=�f�퐧���(���+h���U�g����>�^������W_����;��gY]wԻ�ӓU�g�����~���͍g�����~�7�����/�ܜ~�Nͳ���;���p�(���+j��T�g�����~G�n�^Q;�}�x�1ܸ���,�K��zwx|y�����w����٪۳W��Q����ۣW̊{��=�O�7�<�����~�Vݞ��v����m
+(u{��ځ;��p'���+j��ޝ~wRϲ����T�g�����~G��x��ځ;���pc���+j���7/��,�K��zwxx���g����>n���={E�����`�Sx<{E�����ӏ�A��3�eu	�QO?�{�n�^Q;pG݆W:v\Ь8�qQfv\�@�q1��q!u	��f����f����f�����R�@�qQjv\P�@�qQjv\P�@�qQjv\P�@�q1��q!u	��f����f����f�����R�@�qQ���e�(p츠Xq���� ځ��"���k �(5;.�v �(5;.�v �(5;.�v �u��R��j�R��j�R��j�Q��K �(5;.�v �(5;.�v �(5;.�v �4;.dv�(r� Yq���� ځ���츠ځ��bԹ�B��;.J͎��;.J͎��;.J͎��;.F�;.�.����츠ځ���츠ځ���츠ځ��bԹ�B��;.J͎��;.J͎��;.
+;.hV�2;.Dv�(3;.�v �(5;.�v �(5;.�v �u��R��j�R��j�R��j�Q��K �(5;.�v �(5;.�v �(5;.�v ������;.J͎��;.J͎��;.
+;.hV�s���R��j�R��j�R��j�Q��K �(5;.�v �(5;.�v �(5;.�v �u��R��j�R��j�R��j�Q��K �(5;.�v �(t츠Yq���� ځ��bԹ�B��;.J͎��;.J͎��;.J͎��;.F�;.�.����츠ځ���츠ځ���츠ځ��bԹ�B��;.J͎��;.J͎��;.J͎��;.F�;.�.���б�f��2��h�R��j�Q��K �(5;.�v �(5;.�v �(5;.�v ������;.J͎��;.J͎��;.J͎��;.F�;.�.����츠ځ���츠ځ���츠ځ��b�츐�q��ȱ�d��2��h���&��q�ϱ��\|���������������[�O��<��c~9���ˌg�ȶ�rK.��/?8�;�������v�������v����_Av�\2"@�2]~���w>������#J͈��K �8u��ځ8"��1"�j∀SLj���#F�#���8"��1"�j∀SLj���#N#�v �(5#�.�8"��1"�j∀SLj��H#�Fج8PfF]qD��cD�����V;G�:FX�@PjFP]qD��cD�����V;G�:FX�@PjFP]qD��cD�����V;G�:FX�@PjFP]qD��cD����n#lV�8s�0ځ8"�Ԍ��∀SLj���#N#�v �8u��ځ8"�Ԍ��∀SLj���#N#�v �8u��ځ8"�Ԍ��∀SLj���#N#�v �8u��ځ8"�Ԍ��ˆ�3���xF#�FX�8p�`�qD��sD��5G�:FX�@p�`�qD��cD����fD��%G�:FX�@p�`�qD��cD����fD��%G�:FX�@p�`�qD��cD�����4;�F��0Yq8"��1"�h∀SLj���#J͈��K �8u��ځ8"��1"�j∀SLj���#J͈��K �8u��ځ8"��1"�j∀SLj���#J͈��K �8u��ځ8"��1"�j҈�C�6+�F9F��8p�`�qD��cD�����V;G��T�@p�`�qD��cD�����V;G��T�@p�`�qD��cD�����V;G�:GH]qD��cD�����V;�F���Yq8"�̌ �∀SLj���#N#�v �8u��ځ8"�Ԍ��∀SLj���#N#�v �8u��ځ8"�Ԍ��∀SLj���#N#�v �8u��ځ8"�Ԍ��∀SLj��H#�Fج8p�`�qD@�@u	���V;G�:FX�@p�`�qD@�@u	���V;G�:FX�@p�`�qD@�@u	���V;G�:FX�@p�`�qD@�@u	��n#lV�8s�0ځ8"��1"�j∀R3"���#N#�v �8u��ځ8"��1"�j∀Q���k �8u��ځ8"��1"�j∀SLj���#J͈��K �8u��ځ8"��1"�j∀SLj��H#
+#hv�8r`��pD��cD����Û�ߞ���#�9~}|>ܿ�]����G�Ǘӿ�^?����������<��	��o�w��w�_����_�v��w��b���#���{#��M2���_�~�A��
�ȵo����jr�[��}�ځ\�Vjjߨv ׾�:kߤ.�\�Vjjߨv ׾���7���o���7�ǵoc��7�K ׾���7�ȵo����jr�[��}�ځ\�6�}��r�[��}�ځ\�Vjjߨv ׾���7�ȵo���7�K ׾���7�ȵo����jr�[��}�ځ\�6�}��r�[��}�ځX�V�}�Yq\�Vfj߈v ׾�:kߤ.�\�Vjjߨv ׾���7�ȵo����jr�ۨ��M�ȵo����jr�[��}�ځ\�Vjjߨv ׾�:kߤ.�\�Vjjߨv ׾���7�ȵo����jr�ۨ��M�H�oen�o/ð���Q�F�����Ծ�@�}�\�u
�ڷRS�F�����ԾQ�@�}+5�oT;�k�F��oR�@�}+5�oT;�k�JM���ڷRS�F���m�Y�&u	�ڷRS�F�����ԾQ�@�}+5�oT;k�M�̎�ڷ"G�Ɋ�ڷ2S�F�����ԾQ�@�}u־I]����ԾQ�@�}+5�oT;�k�JM���ڷQg��%�k�JM���ڷRS�F�����ԾQ�@�}u־I]����ԾQ�@�}+5�oT;k�
+�o4+k߆L�Ȏ�ڷ2S�F�����ԾQ�@�}+5�oT;�k�F��oR�@�}+5�oT;�k�JM���ڷRS�F���m�Y�&u	�ڷRS�F�����ԾQ�@�}+5�oT;�k�B=׾A]����ԾQ�@�}+5�oT;k�
+�o4+�k�Ɯ�oB�@�}+5�oT;�k�JM���ڷRS�F���m�Y�&u	�ڷRS�F�����ԾQ�@�}+5�oT;�k�F��oR�@�}+5�oT;�k�JM���ڷRS�F���m�Y�&u	�ڷRS�F�����Q�F�����Ծ�@�}u־I]����ԾQ�@�}+5�oT;�k�JM���ڷQg��%�k�JM���ڷRS�F�����ԾQ�@�}u־I]����ԾQ�@�}+5�oT;�k�JM���ڷQg��%k�
+�o4+�k��L���ڷRS�F���m�Y�&u	�ڷRS�F�����ԾQ�@�}+5�oT;�k�B=׾A]����ԾQ�@�}+5�oT;�k�JM���ڷQg��%�k�JM���ڷRS�F�����ԾQ�@�}4�o2;kߊ�o$+�k��L�����~�Yվ�sl����ϱԾ�Wjߏ�9
+־�3�}������_�|����o~���/?���޽�c�ӯ.ķ��ϻ���r|�Y�����帷�q�v ��:�q�.�\�Sj�q�v �㔚r���8���jr9Ψ�G���8���jb9N���f�q9N�)�!ځ\�3�,Ǒ�r9N�)ǡځ\�Sj�q�v �㔚r���8��r�K �㔚r���8���jr9N�)ǡځ\�3�,Ǒ�r9N�)ǡځ\�Sj�q�v �㔚r���8��r�K �㔹��P��r�G9Ŋ�r�2S�C��'�s9�5��qJM9��r�RS�C���Ԕ�P�@.�u��H]��Ԕ�P�@.�)5�8T;��qJM9��r�Qg9��%��qJM9��r�RS�C���Ԕ�P�@,�4�82;�q��8$+��q�L9��r�RS�C��g�Y�#u	�r�RS�C���Ԕ�P�@.�)5�8T;��qF��8R�@.�)5�8T;��qJM9��r�RS�C��g�Y�#u	�r�RS�C���Ԕ�P�@,�)t��Ь8,�2�8";��q�L9��r�RS�C���Ԕ�P�@.�u��H]��Ԕ�P�@.�)5�8T;��qJM9��r�Qg9��%��qJM9��r�RS�C���Ԕ�P�@.�	�\�u
�r�RS�C���Ԕ�P�@,�)t��Ь8.�s��]��Ԕ�P�@.�)5�8T;��qJM9��r�Qg9��%��qJM9��r�RS�C���Ԕ�P�@.�u��H]��Ԕ�P�@.�)5�8T;��qJM9��r�Qg9��%��qJM9��r�BG9͊�r�2S�C��g�Y�#u	�r�RS�C���Ԕ�P�@.�)5�8T;��qF��8R�@.�)5�8T;��qJM9��r�RS�C��g�Y�#u	�r�RS�C���Ԕ�P�@.�)5�8T;��qF��8R�@,�)t��Ь8.�)3�8D;��qJM9��r�Qg9��%��qJM9��r�RS�C���Ԕ�P�@.�	�\�u
�r�RS�C���Ԕ�P�@.�)5�8T;��qF��8R�@.�)5�8T;��qJM9��r�RS�C��gД���8,�)r�㐬8.�)3�8D;��q���8�[9��c@9n�s������}��r�x&帻��O_?�����ï�O�K�����_N���?���O_���0���w��?~���^vy��]�����>�L���K���������������D����J��/Q�@|��B��/Ѭ8~��1��/	]���J��/Q�@~��R��KT;�_�Լ����_u����%�_�Լ����_*5
_T;��JM��䆯Qg×�%��JM��䆯R��E����4|Q�@n�u6|I]���4|Q�@l�*t4|Ѭ8n�*3
_D;��F�
_R�@n�*5
_T;��JM��䆯R��E���k���%u	䆯R��E����4|Q�@n�*5
_T;��F�
_R�@n�*5
_T;��JM��䆯R��E���k���%u	���2��/��a��U�h��Xq��Uf��v 7|�zn���r�W�i��ځ��Uj��v 7|���/��
_�Ά/�K 7|���/��
_���jr�W�i��ځ��5�l���r�W�i��ځ��Uj��v 7|���/��
_���Kf�a�W���d�q�W�i�"ځ��Uj��v 7|�:��.���Uj��v 7|���/��
_���jr�ר��K��
_���jr�W�i��ځ��Uj��v 7|�:��.���Uj��v 7|���/��
_���/��
_C��Kd�q�W�i�"ځ��Uj��v 7|���/��
_�Ά/�K 7|���/��
_���jr�W�i��ځ��5�l���r�W�i��ځ��Uj��v 7|���/��
_��������Uj��v 7|���/��
_���/��
_cΆ/�K 7|���/��
_���jr�W�i��ځ��5�l���r�W�i��ځ��Uj��v 7|���/��
_�Ά/�K 7|���/��
_���jr�W�i��ځ��5�l���r�W�i��ځ��U�h��Yq��Uf��v 7|�:��.���Uj��v 7|���/��
_���jr�ר��K��
_���jr�W�i��ځ��Uj��v 7|�:��.���Uj��v 7|���/��
_���jr�ר��K��
_���/��
_e��hr�W�i��ځ��5�l���r�W�i��ځ��Uj��v 7|���/��
_��������Uj��v 7|���/��
_���jr�ר��K��
_���jr�W�i��ځ��Uj��v 6|
��/��
_E��/��
_e��hr×��ዟck�^|h���o>p��'���(��gN��<~�:����<�����͋/�鯿���e�l������?3��=�~�������Hy��3�~�����sӿ=�(��>�p<ܿ�/	r<�d��w���;Gn�2Yq;���(��Q&+n�<��^-r{�Ɋ{�|<�^��W��Q$;n��;<?Kr{�Ɋ�!w��J��e��v������r{�Ɋ{�|:��?8r<�d�퐧_��%Cn�2Yq;����Oz
�=�d�퐧_�[In�2Yq�ϧ_|��ۓV؎w��?��Fƣ,V�y������(��C>�^�/��(��>�r<�>��FƣHv�ywxz���(��C>������5e��v��/���md<�dŽ_��9���+2���퐧_��GGn�2Yq;����ɑۣLV�y��?Jr{�Ɋ��w�7��:@v��2�9DVo�2�9DV�q��xƫ9��9 vO�2�9DV��2s9DV��2[9DV/�r���q<�cȬ�Yq��c�L�Yq<�c���Yq��#�9�d��4�!��Cd��.�!3�Cd��(�!��Cd��"� � ��s8����[8FS8^�����Cb��
+� ���8�����7���
���7���
���7���7@v��2�7DVo�2�7DV�2{7DV��r����q<uc�,�Yq�sc���Yq<rc�l�Yq�p#�9pd�Ѽ��u�.�p��hcچ��0�1`vmH�8^��N�Gm��%�'m�E"+��l�9"+��l�-"+��l9�l��8��1dVl��8ް1d&l��8�1d�k��8^�����x�ƐY�!��x�Ɛ��!��x�Ɛ٬!��p�F����p��xc����0ު1`�jH�8�1dvj��8^�����x�ƐY�!��x�Ɛ��!��x�Ɛ٦!��x�F�s�Ȏ�YCf��Ȋ�MCf��Ȋ�ACf��Ȋ�5A�1 ;��h�%"+�wh�"+Gh�86h���e��
+��f}�Ċ��Cfz�Ȋ��Cfw�Ȋ��A�� ;�'g��"+��f��"+��f��"+��f9�f��8��1dVf��8ޘ1d&f��8�1d�e��8^��N��e��%��e�e"+�we�Y"+Ge�86e��E�A;��d�5"+��d�)"+��d�"+�Wd9Gd��8��1dd��8ޏ1d�c��8�1d�c��8^�����x6ƐY�!��x3Ɛ��!��x0Ɛً!��x-F�s,Ȏ�Cf)�ȊÝ#��/�x$ƀو!��x!F�s Ȏ�yCf�Ȋ�mCf�Ȋ�aCf�Ȋ�UA�Q ;�'a�E"+��`�9"+��`�-"+��`9�`��8��1dV`��8ހ1d&`��8�1d�_��8^���p�ňc����0�}1`f_H�8}1d6_��8^|�|��x�ŐY{!��x�Ő�z!��x�Ő�y!��x��:yy�'�8�x1d^��8�w1d�]��8w1d�]��8^v�v��x�ŐYu!��x�Ő�t!��x�Ő�s!��p�E�s��p��xcɅ��0�q1`f\H�8q����Bb�p9Xp����?>�_�~��;�r|9�[������N�^z��;�3q9������=�o���~�����_������闟��Wb8>�����<����/���~.>�~����j�����݀jr�����@�����jr�A��9�ځ\tPj��v w�:��.�\wPj��v 7����ȥ����jr�����@�H�en�/ð���Q@�����4 �@�@�\��u
��RӃ@��	��T!P�@.C(5mT;��F��R�@�D(5�T;�[JM-��b�Rӌ@��a�Y� u	�z�Rӏ@��!��T$P�@.I(5-	T;{MQ�̎ê�"GWɊ㶄2S�@��0��4&P�@�Lu�&H]�6���&P�@nN(5�	T;��JM{����Qg���%�+JM����RS�@��H��4)P�@�Ru�)H]�N���)P�@nT(5�
+T;K
+�
+4+{�L��Ȏ�j�2ӭ@��]���+P�@.X(5
T;�;F�%R�@�Y(5=T;��JM��䲅RӶ@��oa�Y� u	�ʅRӹ@��u���.P�@.^(5�T;��B=�/@]�~���/P�@n`(5T;K
+-4+�{ƜEB�@�b(5]T;��JM��B�R��@���a�Y� u	�Z�R��@�����T3P�@.g(5�T;��F�
R�@�h(5
T;�[JMM�䢆R��@���a�Y� u	了R��@�����Q�@�⸴�̴6�@�mu7H]����t7P�@no(5�
T;�JM����Qg���%�kJM���&�RS�@��̡Դ9P�@�su:H]�ҡ�t:P�@nu(5�T;��JM���n�Qg���%�
+�4+��L��䒇R��@���a�Y� u	䪇R��@������=P�@.|(5�T;�;B=�>@]�����>P�@n~(5�T;��JM�����Qg��%�+ JM���RSA����4AP�@�4e2;� �}$+�!�L%��R5D+?�V������ϱCn�C�����C�3)��B1�_oo�>������o��?����/���>��������ϟ~�r~�_�|��������x�$q��8=p����_����-λ����������P�@��Sj��P�@��3h����8��S丛C���nN���C��nN���C��nΨ�n��%��攚�9T;��攚�9T;��攚�9T;���:��H]�nN���C��nN���C��nN���C��nΨ�n��%��攚�9T;��攚�9T;��:��Ь8��3d���8��Sf���@��Sj��P�@��Sj��P�@��3꼛#u	�9��n��9��n��9��n��9�λ9R�@��Sj��P�@��Sj��P�@��Sj��P�@����n�5��攚�9T;��攚�9T;��:��Ь8��3漛#t	�9��n��9��n��9��n��9�λ9R�@��Sj��P�@��Sj��P�@��Sj��P�@��3꼛#u	�9��n��9��n��9��n��9�λ9R�@��Sj��P�@��S踛C���nN���C��nΨ�n��%��攚�9T;��攚�9T;��攚�9T;���:��H]�nN���C��nN���C��nN���C��nΨ�n��%��攚�9T;��攚�9T;��攚�9T;���:��H]�nN��n͊�9e�n��9��n��9�λ9R�@��Sj��P�@��Sj��P�@��Sj��P�@����n�5��攚�9T;��攚�9T;��攚�9T;���:��H]�nN���C��nN���C��nN���C��nΠ��#���nN��nɊ�9e�n�仹�.u7��c����p7��9��A��˶�Jwsy&wsw�n�~����?�|����͂������9%ޞc޽�}~ܛO>����<�G�C�������n/�}�w���+j�r�����w����D�=zŬ������x��Ee�g]w����Ѫ۳W��QO?��[�n�^Q;pG=�N������+j��ޝ~wRϲ����T�g�����~�Xt����w�ӏ�ƪ۳W�|_�?n^�:�eu	�Q��Xt����w���͓U�g����>�
+�g�����p�1<��pƳ�.�;���po���+j�����+f�퐧����
g<{����0�~�Rϲ���[)�:^s�j�k.�:^s�j�k.�:^s�j�k.���\���k.�:^s�j�k.�:^s�j�k.�:^s�j�k.���\���k.�:^s�j�k.�:^s�j�k.�:^s�j�k.���\���k.���5,^��k.���Ŋ��\8s�����\u���5_s���V;_s���V;_s���V;_s�Լ��%_s���V;_s���V;_s���V;_s�Լ��%_s��Q�e�����Q�e�����Q�e�����Q�E�㨮�ȭ��d�a]י���hb]ש���jb]W��뢺b]ש���jb]ש���jb]ש���jb]W��뢺b]ש���jb]ש���jb]ש���jb]W��뢺b]ש���jb]ש���jR]ס[]�͊���"G]Ɏú�3G]��ĺ�SG]��ĺ�SG]��ĺ�RS�Eu	ĺ�SG]��ĺ�SG]��ĺ�SG]��ĺ�RS�Eu	ĺ�SG]��ĺ�SG]��ĺ�SG]��ĺ�Qg]��5�Nu]V;�Nu]V;����lV�u���.�K �u�:꺬v �u�:꺬v �u�:꺬v �u���.�K �u�:꺬v �u�:꺬v �u�:꺬v �u���.�K �u�:꺬v �u�:꺬v �u�:꺬v �u���.�K �u�:꺬v �u��u٬8��:s�u�@��*5u]T�@��:u�uY�@��:u�uY�@��:u�uY�@��*5u]T�@��:u�uY�@��:u�uY�@��:u�uY�@��*5u]T�@��:u�uY�@��:u�uY�@��:u�uY�@��*5u]T�@��:t��YqX�u��2ځX�u��ځX�Uj꺨.�X�u��ځX�u��ځX�u��ځX�5�뒺b]ש���jb]ש���jb]ש���jb]W��뢺b]ש���jb]ש���jb]ש���jR]W����f�Q]ב[]�Ɋú�3G]��ĺ.TNM]�?Ƿg.?�~]>Ƿ?���'����8�������۫��w?�x&�le�Tu����7�}���_|����__^����y���-���\��۪��n��{|x>�|�m�ϙ�.?����x�{�3���:�eu	�Q���Vݞ��v���x�{=EQ����w������)u{��ځ�O�ÃTdz�.�;���p�,���+j���)u{��ځ;���pk���+j��>�~��e��v����x�����w����ƪ۳W��Q�O/��w{��ځ�/��wNϲ��w��'�n�^Q;pG}<�>�Ku{��ځ;���� ��^Q;�������p��<�����~w�Rݞ��v��z�1�>Iu{��ځ;���p�����w6?��Q�
+�K ��(5�*�v ��(5�*�v ��(t���Yq��b̹�B�ȫ*Jͪ
 �ȫ*Jͪ
 �ȫ*Jͪ
 �ȫ*F��*�.����Ԭ��ځ���Ԭ��ځ���Ԭ��ځ��bԹ�B�ȫ*Jͪ
-���*
-�*hV��(3�*�v ��u�����R���j�R���j�R���j�Q�
+�ȫ*Jͪ
+�ȫ*Jͪ
+�ȫ*F��*�.����Ԭ��ځ���б��f��2���h�Q�
 �K ��(5�*�v ��(5�*�v ��(5�*�v ��u�����R���j�R���j�R���j�Q�
-�K ��(s[UA�2WU8VUP�8^UQfVU�@^U�yU�5�WU��UT;�WU��UT;�WU��UT;�WU�:WUH]yUE�YUA�yUE�YUA�yUE�YUA�yUŨsU��%�WU��UT;�WU��UT;�WU��UT;WU�U2;WU9VU��8^UQfVU�@^UQjVUP�@^U1�\U!u	�U�fU��U�fU��U�fU��U��UR�@^UQjVUP�@^UQjVUP�@^UQjVUP�@^U1�\U!u	�U�fU��U�fU��U��U4+WU�U";�WU��UD;�WU��UT;�WU��UT;�WU�:WUH]yUE�YUA�yUE�YUA�yUE�YUA�yUŨsU��%�WU��UT;�WU��UT;�WU��UT;�WU�z^Uu
�U�fU��U�fU��U��U4+�WU�9WU]yUE�YUA�yUE�YUA�yUE�YUA�yUŨsU��%�WU��UT;�WU��UT;�WU��UT;�WU�:WUH]yUE�YUA�yUE�YUA�yUE�YUA�yUŨsU��%�WU��UT;WU:VUЬ8^UQfVU�@^U1�\U!u	�U�fU��U�fU��U�fU��U��UR�@^UQjVUP�@^UQjVUP�@^UQjVUP�@^U1�\U!u	�U�fU��U�fU��U�fU��U��UR�@\UQ�XUA��xUE�YUA�yUE�YUA�yUŨsU��%�WU��UT;�WU��UT;�WU��UT;�WU�z^Uu
�U�fU��U�fU��U�fU��U��UR�@^UQjVUP�@^UQjVUP�@^UQjVUP�@\U1hVU��8\UQ�XUA��xUE�YUA�yUeD�����VU.����������������_��G�W�J������۪�o��W��C�LvU�cY�������˯������_�~��������O��m�o������O���_>n�����?>|�����>~������?���o�~~|}���o�~���uo�e�@K�j����?�^�"�?вځ��R�-�K �@���-��?�:u�@�j��N?вځ��R�-�K �@���-��?�:u�@�j��N?вځ��Q�������S���v �@���-�H?�:t���͊�h��h]�Z��hY�@��֩�ZV;�u������h��hQ]�Z��hY�@��֩�ZV;�u������h��hQ]�Z��hY�@��֩�ZV;�u������h��hQ]�Z��hY�@��֡��lV�@���-��?�*5?Т���N?вځ��S���v �@���-��?�*5?Т���N?вځ��S���v �@���-��?�*5?Т���N?вځ��S���v �@���-��?�*5?Т����~�e���Zg�h�@��֩�ZV;�Uj~�Eu	�h�:~�e��Z��hY�@��֩�ZV;�5�����5�u������h�:~�e��Z��hY�@��V����%�u������h�:~�e��Z��hY�@��V��Z4;�~�u��-��?�:s�@�h��������Ǐ�\~��h�{�M�^�~���@�^�#�ϳ���uw��i�����;��w{�\<�^o}�|���<��}�+�kl�eu	�Q��o�pV��go���>�V�>{C��u{nĩ��V;�/Qj�/Au	��K�:�/a������KX�@|�ĩ��V;�/Qj�/Au	��K�:�/a������KX�@|�ĩ��V;��/Q�x�͎��K�9�/a������KX�@|�ĩ��V;�/Qj�/Au	��K�:�/a������KX�@|�ĩ��V;�/1�|���5�/q�x�����K�:�/a������KX�@|�D�y��%�/q�x�����K�:�/a����nYq�~�2�~	�K �_���~	���8u�_�j��%Nځ�~�R�~	�K �_���~	���8u�_�j��%Nځ�~�R�~	�K �_���~	���8u�_�j��%Nځ�~�R�~	�K �_���~	�H�8t{��͊��K�9�/a������T�@|�ĩ��V;�/q�x�����K�:�/a������T�@|�ĩ��V;�/q�x�����K�:�/a������T�@|�ĩ��V;�/q�x�����K�:�/a������T�@x�ę?�/a�2��/q��~	���8s�_�h��%F����%Nځ�~�S��%�v �_���~	���(5���%Nځ�~�S��%�v �_���~	���(5���%Nځ�~�S��%�v �_���~	�H�(t�_�f���%���/a����g��K�@|�ĩ��V;�/Qj�/Au	��K�:�/a������KX�@|�ĩ��V;�/Qj�/Au	��K�:�/a������KX�@|�ĩ��V;�/Qj�/Au	��K�:�/a������KX�@z�ġ��%lV�_���~	���8s�_�h��%N�<���8J�<���8F��8�.�<�����ځ<�����ځ<�����ځ<�c�9�C���8J�<���8J�<���8J�<���8B=�〺�<�R3��j�<�R3��j�<�B�<���8Ɯ�8�.�<�����ځ<�����ځ<�����ځ<�c�9�C���8J�<���8J�<���8J�<���8F��8�.�<�����ځ<�����ځ<�����ځ<�c�9�C���8J�<���8
-�8hV��(3�8�v ��u�㐺�<�R3��j�<�R3��j�<�R3��j�<�Q�<�K ��(5�8�v ��(5�8�v ��(5�8�v ��u�㐺�<�R3��j�<�R3��j�<�R3��j�<�Q�<�K ��(t��Yq<����� ځ<�����ځ<�c�9�C���8J�<���8J�<���8J�<���8B=�〺�<�R3��j�<�R3��j�<�R3��j�<�Q�<�K ��(5�8�v ��(5�8�v ��(5�8�v ��4�8dv��(r�� Yq<����� ځ<������q�{l�8_��ywg�{���-����z�~��Lr�~�?~�����O�����Ͽ~��7����jɗ_��ϟ�����O㉓�|��˧/_����p��
-��ۧo_����������w_��_������%�N�e�;����w���	���Rs'�j�Rs'�j�Rs'�j❠As'Hf�ᝠ"ǝ ��w��̝ ��w�J͝ ��w�F�w��.�|'���	�ځ|'���	�ځ|'���	�ځ|'h�y'H��w�J͝ ��w�J͝ ��w�J͝ ��w�F�w��.�|'���	�ځ|'���	�ځx'��q'�f�ᝠ!s'Hd��2s'�h�Rs'�j�Rs'�j�Q� �K �	*5w��v �	*5w��v �	*5w��v �	u�	���Rs'�j�Rs'�j�Rs'�j�P�w����|'���	�ځ|'���	�ځx'��q'�f��1� �K �	*5w��v �	*5w��v �	*5w��v �	u�	���Rs'�j�Rs'�j�Rs'�j�Q� �K �	*5w��v �	*5w��v �	*5w��v �	u�	���Rs'�j❠Bǝ ��w��̝ ��w�F�w��.�|'���	�ځ|'���	�ځ|'���	�ځ|'h�y'H��w�J͝ ��w�J͝ ��w�J͝ ��w�F�w��.�|'���	�ځ|'���	�ځ|'���	�ځ|'h�y'H��w�
-w�hV�	*3w��v �	*5w��v �	u�	���Rs'�j�Rs'�j�Rs'�j�P�w����|'���	�ځ|'���	�ځ|'���	�ځ|'h�y'H��w�J͝ ��w�J͝ ��w�J͝ ��w�͝ ��w��w�HV�	*3w��v �	ҽ�����	^|
�����t���o��?�?\�������/��?e�����;���_g���o_~�ӭ���w���տ\�������~l����ow�������p�>�b���?C��@"+���|-Ȏ�
����8~(Аy'�Ȋ�W
�G��8~"P��@ ;��4d�$���q@C�m@"+�_4d$���Y@A�W��8~Аy�Ȋ�
�����8~
Аy�Ȋç������0~Ѐy�Ċ�G�
�7���8~Аy��Ȋ���9_�����?C��?"+��3d��#����?C��?"+����M�_��'�8~�ϐy�Ȋ��������8~�ϐy�Ȋ�g�9_�����?C�?"+��3d��#���u?#������8_����]?C�Y?"+��3d��#���E?C�A?"+����|�Ȏ�������8~�ϐyǏȊ�W��G���8~�O��? ;���3d��#����>C��>"+�_�3d�#����>A�W���8~�ϐy��Ȋ���8��#�2�_�3`�#����>AΗ���8~�ϐy��Ȋ�G��7���8~�ϐy��Ȋ���9_����m>C�i>"+��3d��#���U>C�Q>"+����|�Ȏ��������8~�ϐy��Ȋ�������8~�O��> ;���3��qQ������{�]���{��{$V?�w�<���O.q��!���Ǐ�2o�Yq��!������	r��d��[{��S{DV?�gȼ�Gd��+{��x���9���9@v��2�9DV��2�9DV/�2�9DV��1k9�Vn�oL�w�C9�N��+9��H��9��9@v��2�8DV��2�8DV/�2�8DV��r����q��c�L�Yq<�c���Yq��cȌ�Yq<�#ȹ�d���!3�Cd���!��Cd�������a8#��߀Wa�}c�LߐXq<|c���Yq�zcȌ�Yq<y#ȹxd��ލ!3wCd��؍!�uCd��ҍ!3tCd��̍ ��
��7���
��7�̾
���6�̸
���6����>���!3kCd��!�iCd�ᢍǠ
��a<g#��fb��!3eCd��!�cCd��!3bCd�� �
���5��|
���5��v
���5��p
�dz5���5@vo�2�5DV�2{5DV��2c5DVO�r.���q�Sc���Yq8RcıQC�e/�05$V��r����q�Mc�L�Yq<Lc���Yq�JcȌ�Yq<I#ȹHd���!3GCd���!�ECd���!3DCd��� �
-
��4��
��4������3������3���3@v��q��xƣ3���Nj3�����s3��k3@vo�2S3DV�2;3DV��2#3DVO��&�3����2�̼���2�̶���2�̰�dz2���2@vo�2�2DV�2{2DV��2c2DVN�1K2�V��o�Ȑw�#2̆��2��"d�Kl�1{-/��1�_��l��z���Ϝ�f���B��xx9�O�9��|dۏ�s����߾����������?�߼��?~��َ�+���L�ŷ�ߩx�E`���
-�f���
-�ι
-R�@�Pj+P�@ެPjF+P�@��Pjv+P�@\�0h�+��8�Pf�+�@ޯPj,P�@��Pj6,P�@^�0ꜱ u	�!�f���-�f���9�f���E��'-@]y�B�Y�@�y�B��@�y�B�ٶ@�y�¨sނ�%�.���T;�7.���T;g.:v.Ь8^�0机 t	��f����f�����f�������R�@�Pj�/P�@޾Pj�/P�@��Pj�/P�@^�0�� u	��f���f��)�f��5��9R�@�Pj1P�@��P��@��xC���@�yès��%��1��uT;��1���T;�'2���T;�W2�:g2H]y(C�Y�@�y+C��@�y.C���@�y1ès2��%�G3���T;�w3���T;��3���T;��3�:�3H]i@C�ۂ��a����1��b��2���h�P�S���<��Ԭi�ځ����j�ځ<���lj�ځ��a�9�A���JͲ���J͸���J;��F��.�<��Ԭl�ځ����m�ځ<���lm�ځ��a��m��q8��ȱ��d���23��h��R���j��Q���K �o(5��v �o(5�v Op(5�v �pu�p����R�āj��R3Ɓj��R�ǁj�"�Q�$�K �r(5��v �r(5��v Ns(tls�Yq��a��s�q<С�,t ځ�ѡԌt�ځ<ӡ��t�ځ��a�9�A��cJ�Z��{J�`�ȓJ�f�ȫF���.�<ܡ�,w�ځ�ݡԌw�ځ<ߡ��w�ځ��!���k �x(5+�v �x(5C�v Ny(tly�Yq��a�9�A�ȃJ͢�țJͨ�ȳJͮ���F���.�<�Ԭ{�ځ���|�ځ<��l|�ځ��a�9�A��CJ����[J����sJ���ȋF���.�<��Ԭ~�ځ����1��f���2���h���Q���K �(5 �v o�(5# �v π(5; �v /�uN�����R��j��R3�j�$�R�	�j�*�Q�,�K �(5� �v o�(5� �v σ(5� �v /�uN����H�B�J��;!��P��S!J�V��k!F�s!�.�<��,��ځ��Ԍ��ځ<��솠ځ�"��t�k ��(5�!�v �(5"�v O�(5"�v ��uΈ���R�$�j�R3&�j�R�'�j⢈A3)Bf�ᨈ"Ǫ�ǻ"�̰���"��j[��6.r�汿.��=.�E���"'�����"�#ۼ�ݘ�������������?�������������~�F�������������_�Y-��j���ޯ���P-%t	�j�RS-E��Z��TKQ�@��*5�RT;���F��RR�@��*5�RT;���JM���j�RS-E��Zj�Y-%u	�j�RS-E��Z��TKQ�@��*5�RT;���F��RR�@��*5�RT;��
-�R4+����L���j�Qg���%���JM���j�RS-E��Z��TKQ�@��uVKI]�Z��TKQ�@��*5�RT;���JM���j�Qg���%���JM���j�RS-E��Z��TKQ�@��uVKI]�Z�̭Z��eVK8��(VWK��j)���R�������\-Uj���v WK��j)���R��Z�jr�Ԩ�ZJ���R��Z�jr�T����ځ\-Uj���v WK�:���.�\-Uj���v WK��j)���R��Z�jb�Ԡ����qX-U䨖"Yq\-Uf���v WK��j)���R��j)�K WK��j)���R��Z�jr�T����ځ\-5ꬖ��r�T����ځ\-Uj���v WK��j)���R��j)�K WK��j)���R��Z�jb�T��Z�f�a�Ԑ���q\-Uf���v WK��j)���R��Z�jr�Ԩ�ZJ���R��Z�jr�T����ځ\-Uj���v WK�:���.�\-Uj���v WK��j)���R��Z�jr�T��j)�k WK��j)���R��Z�jb�T��Z�f�q�Ԙ�ZJ���R��Z�jr�T����ځ\-Uj���v WK�:���.�\-Uj���v WK��j)���R��Z�jr�Ԩ�ZJ���R��Z�jr�T����ځ\-Uj���v WK�:���.�\-Uj���v VK:��hVWK��j)���R��j)�K WK��j)���R��Z�jr�T����ځ\-5ꬖ��r�T����ځ\-Uj���v WK��j)���R��j)�K WK��j)���R��Z�jr�T����ځ\-5ꬖ��b�T��Z�f�q�T���"ځ\-Uj���v WK�:���.�\-Uj���v WK��j)���R��Z�jr�T��j)�k WK��j)���R��Z�jr�T����ځ\-5ꬖ��r�T����ځ\-Uj���v WK��j)���R��ZJf�a�T��Z�d�q�T���"ځ\-�F�����ت��M��j���X��7^�?n�T-٪���Z��_?~����n�����vL�=K����^�������!w��oF���oF_|��7��x3��%�ߌVjތF���h���hT;�ߌVjތF���h��ߌu
�7���7�Q�@~3Z�y3��7���7�Q�@~3ڨ��hR�@~3Z�y3��7���7�Q�@|3Z��؏f�q�ߘ��O���~��؏jr�_�)��ځ\�Wj���v ��:���.�\�Wj���v ���b?���~��؏jr�ߨ��O���~��؏jr�_�)��ځ\�Wj���v ��:���.�\�Wj���v �:��hV���b?���~��b?�K ���b?���~��؏jr�_�)��ځ\�7�,���r�_�)��ځ\�Wj���v ���b?���~��b?�K ���b?���~��؏jr�_�)��ځ\�7�,���R�_�[���0,�+p�Q�8.�+3�~D;���B=�A]�د��Q�@.�+5�~T;���JM���b�Qg���%���JM���b�RS�G��د��Q�@.�u�I]�د��Q�@.�+5�~T;���JM���b�AS�'��د�Q�G��د���@.�+5�~T;���F��~R�@.�+5�~T;���JM���b�RS�G���o�Y�'u	�b�RS�G��د��Q�@.�+5�~T;���F��~R�@.�+5�~T;���JM���b�BG�͊�b�!S�'��د���@.�+5�~T;���JM���b�Qg���%���JM���b�RS�G��د��Q�@.�u�I]�د��Q�@.�+5�~T;���JM���b�P��~P�@.�+5�~T;���JM���b�BG�͊�b�1g���%���JM���b�RS�G��د��Q�@.�u�I]�د��Q�@.�+5�~T;���JM���b�Qg���%���JM���b�RS�G��د��Q�@.�u�I]�د��Q�@,�+t�Ѭ8.�+3�~D;���F��~R�@.�+5�~T;���JM���b�RS�G���o�Y�'u	�b�RS�G��د��Q�@.�+5�~T;���F��~R�@.�+5�~T;���JM���b�RS�G���o�Y�'u	�b�BG�͊�b�2S�G��د��Q�@.�u�I]�د��Q�@.�+5�~T;���JM���b�P��~P�@.�+5�~T;���JM���b�RS�G���o�Y�'u	�b�RS�G��د��Q�@.�+5�~T;��M��̎�b�"G�Ɋ�b�2S�G��ؿ_LW�~�[���G��[���ۛ���X�ي����߾���b����Ϻ�����ۿK<����O��Yz��=K�_|�����@���һRSzG���.�s��5�K�JM���һRSzG����Ԕ�Q�@.�u��I]���Ԕ�Q�@.�+5�wT;K�
-�w4+�K�Ɯ�wB�@.�+5�wT;�K�JM���һRSzG���n�Yz'u	�һRSzG����Ԕ�Q�@.�+5�wT;�K�F��wR�@.�+5�wT;�K�JM���һRSzG���n�Yz'u	�һRSzG�����QzG����̔��@.�u��I]���Ԕ�Q�@.�+5�wT;�K�JM���һQg��%�K�JM���һRSzG����Ԕ�Q�@.�u��I]���Ԕ�Q�@.�+5�wT;�K�JM���һQg��%�J���J�(^�a�]���b�q�]�)�#ځ\z���ȥw���jr�]�)��ځ\zWjJ�v �ލ:K�.�\zWjJ�v �ޕ��;�ȥw���jr�ݨ��N�ȥw���jr�]�)��ځ\zWjJ�v ��
��;���wE��;�ǥwe��hr�]�)��ځ\z7�,���r�]�)��ځ\zWjJ�v �ޕ��;�ȥw���;�K �ޕ��;�ȥw���jr�]�)��ځ\z7�,���r�]�)��ځ\zWjJ�v ��:J�hV��
��;�ǥwe��hr�]�)��ځ\zWjJ�v �ލ:K�.�\zWjJ�v �ޕ��;�ȥw���jr�ݨ��N�ȥw���jr�]�)��ځ\zWjJ�v �ޅz.���r�]�)��ځ\zWjJ�v ��:J�hV�ލ9K�.�\zWjJ�v �ޕ��;�ȥw���jr�ݨ��N�ȥw���jr�]�)��ځ\zWjJ�v �ލ:K�.�\zWjJ�v �ޕ��;�ȥw���jr�ݨ��N�ȥw���jb�]���f�q�]�)�#ځ\z7�,���r�]�)��ځ\zWjJ�v �ޕ��;�ȥw���;�K �ޕ��;�ȥw���jr�]�)��ځ\z7�,���r�]�)��ځ\zWjJ�v �ޕ��;�ȥw���;�K ��:J�hV�ޕ��;�ȥw���jr�ݨ��N�ȥw���jr�]�)��ځ\zWjJ�v �ޅz.���r�]�)��ځ\zWjJ�v �ޕ��;�ȥw���;�K �ޕ��;�ȥw���jr�]�)��ځXz7hJ�dv��9J�HV�ޕ��;�ȥ����*����J�_���n�}�{��m����ן�LJӿ7�������|���^��������������������{_���f��endstream
+�K ��(5�*�v ��(5�*�v ��(5�*�v ��u����Ҫ�2�U/�pUE�cUŊ�UefU��U��WU@]yUE�YUA�yUE�YUA�yUE�YUA�yUŨsU��%�WU��UT;�WU��UT;�WU��UT;�WU�:WUH]yUE�YUA�yUE�YUA�yUE�YUA�qUŠYU!��pUE�cUɊ�UefU��U�fU��U��UR�@^UQjVUP�@^UQjVUP�@^UQjVUP�@^U1�\U!u	�U�fU��U�fU��U�fU��U��UR�@^UQjVUP�@^UQjVUP�@\UQ�XUA��pUŐYU!��xUE�YUA�yUE�YUA�yUE�YUA�yUŨsU��%�WU��UT;�WU��UT;�WU��UT;�WU�:WUH]yUE�YUA�yUE�YUA�yUE�YUA�yUE��UP�@^UQjVUP�@^UQjVUP�@\UQ�XUA��xUŘsU��%�WU��UT;�WU��UT;�WU��UT;�WU�:WUH]yUE�YUA�yUE�YUA�yUE�YUA�yUŨsU��%�WU��UT;�WU��UT;�WU��UT;�WU�:WUH]yUE�YUA�qUE�cU͊�UefU��U��UR�@^UQjVUP�@^UQjVUP�@^UQjVUP�@^U1�\U!u	�U�fU��U�fU��U�fU��U��UR�@^UQjVUP�@^UQjVUP�@^UQjVUP�@^U1�\U!u	�U��U4+�WU��UD;�WU��UT;�WU�:WUH]yUE�YUA�yUE�YUA�yUE�YUA�yUE��UP�@^UQjVUP�@^UQjVUP�@^UQjVUP�@^U1�\U!u	�U�fU��U�fU��U�fU��U�fU�̎�UE�U$+�WU��UD;�WU��AԪ
+~�mU��c<<��_�������?�}w���r�7��':�#���w�w��<�]��XV�O?~��o?�����?>���׏�_�������˗�_~��������ǟ~�����~��_onn����_����?������^�`�O�v���eo���-���/h/�n���}�A�ZT;���5�����%���Uj��E��Z��ZT;���Uj��E��Z��/hI]�Z��ZT;���Uj��E��Z��ZT;�����ZP�@��V�����/h��/hQ�@��V��Z4+���5�����%���Uj��E��Z��ZT;���Uj��E��Z��/hI]�Z��ZT;���Uj��E��Z��ZT;���5�����%���Uj��E��Z��ZT;���Uj��E��Z��/hI]�Z��ZT;��U���͊�/h��/h�@��֨�ZR�@��V�����/h��/hQ�@��V�����/h�:��%u	�/h��/hQ�@��V�����/h��/hQ�@��֨�ZR�@��V�����/h��/hQ�@��V�����/h�:��%u	�/h:��E���Ze�ZD;���Uj��E��Z��/hI]�Z��ZT;���Uj��E��Z��ZT;�����ZP�@��V�����/h��/hQ�@��V�����/h�:��%u	�/h��/hQ�@��V�����/h��/hQ�@��֠���̎�/h9��E���Ze�ZD;������P}A��c����c����cy�ő_{��rx����^�G��g��W�����������=����{.�/�>X��do�����ч�䝷klϲ��w���?�U����w����Ѫ۳W��Q��F�����ځ����������K�����ځ�����%�v ��D�y	���/1�|	�K ��D�y	���/Qj�_�j��K�����ځ�����%dv��D�y	���/Qj�_�j��K�����ځ����������K�����ځ�����%�v ��D�y	���/���%��������%�v ��D�y	���/Qj�_�j��K�:�_B���/Qj�_�j��K�����ځ�������Yq��c������K�����ځ�����%�v ��D�y	���/1�|	�K ��D�y	���/Qj�_�j��K�����ځ����������K�����ځ�����%�v ��D�y	���/1�|	�K ��D�y	���/Q�x	���/Qf�_�h��K�:�_B���/Qj�_�j��K�����ځ�����%�v ��Ĩ��%�.������%�v ��D�y	���/Qj�_�j��K�:�_B���/Qj�_�j��K�����ځ�����%�v ��Ĩ��%�.���en�/A�2�_����+��_�̼��������P�@~�R��T;��_�Լ�����(5�/A���%F��/!u	���(5�/A���%J��KP�@~�R��T;��_b���R�@~�R��T;��_�Լ�����(5�/A���%��K��8|�"��K��8~�2��D;��_�Լ�����u����%��_�Լ�����(5�/A���%J��KP�@~�Q��KH]��%J��KP�@~�R��T;��_�Լ�����u����%��_�Լ�����(5�/A���%
+�/A����%���K��8~�2��D;��_����ځ<�����ځ<�c�9�C���8J�<���8J�<���8J�<���8F��8�.�<�����ځ<�����ځ<�����ځ<�#��<�k ��(5�8�v ��(5�8�v ��(t��Yq<�c�9�C���8J�<���8J�<���8J�<���8F��8�.�<�����ځ<�����ځ<�����ځ<�c�9�C���8J�<���8J�<���8J�<���8F��8�.�<�����ځ8���1��f��<�23��h�<�Q�<�K ��(5�8�v ��(5�8�v ��(5�8�v ��u�㐺�<�R3��j�<�R3��j�<�R3��j�<�Q�<�K ��(5�8�v ��(5�8�v ��(5�8�v ��u�㐺�<�B�<���8��<���8J�<���8F��8�.�<�����ځ<�����ځ<�����ځ<�#��<�k ��(5�8�v ��(5�8�v ��(5�8�v ��u�㐺�<�R3��j�<�R3��j�<�R3��j�<�A3�Cf��<�"�<���8��<���8��/j?�6�s�1�v�q�?�����+�/�<��ǯ/��<N�^����}��߿?>|������/?�w�������������x�ɟ?���?~�e<�����9��B>|������$��X~u��o�{o-�G����F����"��S�� ������y ��ǁ��m �Ǘ���a ��g�B�U ��7��'��]��A�sHb��5�!sHd��)� �% ��w��� ��G���
 ����� ������@v��2�DV�2wDV_�2GDV��	r^��q|�gȜ�Yq|�g���Yqx�g�q�G�e��	/W~�U��0'~$V�2�}DV_�2�}DV��	r^��q|�gȜ�Yq|�g���Yq|�g��Yq|�'�y�d��-�!s�Gd��!�!s�Gd���!s�Gd��	�u�|��O.q|�gȜ�Yq|�g���Yqx�g�q�G�e��	p^��q|�gȜ�Yq|�g���Yq|�g��Yq|�'�y�d��!s�Gd��!s�Gd��!s�Gd��y� �u�Ƿy��i�LJy��]��Wy��Q��'y��y@v��2�xDV�q��xƗx�!��gx��Wx@v��2'xDV�2�wDV_�2�wDV��	r^��q|wgȜ�Yq|tg���Yq|qg��Yq|n'�ymd��!sjGd��!sgGd��!sdGd�� ����uF�u^��q�s[Gb��e�!sXGd��Y� �U��7u��I��u��=���t��1�ǧt���%�>����!sFGd���!sCGd���!s@Gd���� ���Ƿs����LJs�����Ws�����'sB�����r��r�]��s+Gb���l�C9�۝��3����8������O��?���������t�������i~����Osw���e�׏��{�����^��endstream
 endobj
-1498 0 obj <<
+1514 0 obj <<
 /Type /Page
-/Contents 1499 0 R
-/Resources 1497 0 R
+/Contents 1515 0 R
+/Resources 1513 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 1202 0 R
-/Annots [ 1501 0 R 1502 0 R 1503 0 R 1504 0 R 1505 0 R 1506 0 R 1507 0 R 1508 0 R 1509 0 R 1510 0 R 1511 0 R 1512 0 R 1513 0 R 1514 0 R 1515 0 R 1516 0 R 1517 0 R 1518 0 R 1519 0 R 1520 0 R 1521 0 R 1522 0 R 1523 0 R 1524 0 R 1525 0 R 1526 0 R 1527 0 R 1528 0 R 1529 0 R 1530 0 R 1531 0 R 1532 0 R 1533 0 R 1534 0 R 1535 0 R 1536 0 R 1537 0 R 1538 0 R 1539 0 R 1540 0 R 1541 0 R 1542 0 R 1543 0 R 1544 0 R 1545 0 R 1546 0 R 1547 0 R 1548 0 R 1549 0 R 1550 0 R 1551 0 R 1552 0 R 1553 0 R 1554 0 R 1555 0 R 1556 0 R 1557 0 R 1558 0 R 1559 0 R 1560 0 R 1561 0 R 1562 0 R 1563 0 R 1564 0 R 1565 0 R 1566 0 R 1567 0 R 1570 0 R 1571 0 R 1572 0 R 1573 0 R 1574 0 R 1575 0 R 1576 0 R 1577 0 R 1578 0 R 1579 0 R 1580 0 R 1581 0 R 1582 0 R 1583 0 R 1584 0 R 1585 0 R 1586 0 R 1587 0 R 1588 0 R 1589 0 R 1590 0 R 1591 0 R 1592 0 R 1593 0 R 1594 0 R 1595 0 R 1596 0 R ]
+/Parent 1218 0 R
+/Annots [ 1517 0 R 1518 0 R 1519 0 R 1520 0 R 1521 0 R 1522 0 R 1523 0 R 1524 0 R 1525 0 R 1526 0 R 1527 0 R 1528 0 R 1529 0 R 1530 0 R 1531 0 R 1532 0 R 1533 0 R 1534 0 R 1535 0 R 1536 0 R 1537 0 R 1538 0 R 1539 0 R 1540 0 R 1541 0 R 1542 0 R 1543 0 R 1544 0 R 1545 0 R 1546 0 R 1547 0 R 1548 0 R 1549 0 R 1550 0 R 1551 0 R 1552 0 R 1553 0 R 1554 0 R 1555 0 R 1556 0 R 1557 0 R 1558 0 R 1559 0 R 1560 0 R 1561 0 R 1562 0 R 1563 0 R 1564 0 R 1565 0 R 1566 0 R 1567 0 R 1568 0 R 1569 0 R 1570 0 R 1571 0 R 1572 0 R 1573 0 R 1574 0 R 1575 0 R 1576 0 R 1577 0 R 1578 0 R 1579 0 R 1580 0 R 1581 0 R 1582 0 R 1583 0 R 1584 0 R 1585 0 R 1586 0 R 1587 0 R 1590 0 R 1591 0 R 1592 0 R 1593 0 R 1594 0 R 1595 0 R 1596 0 R 1597 0 R 1598 0 R 1599 0 R 1600 0 R 1601 0 R 1602 0 R 1603 0 R 1604 0 R 1605 0 R 1606 0 R ]
 >> endobj
-1501 0 obj <<
+1517 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [119.552 706.187 226.101 715.098]
 /Subtype /Link
 /A << /S /GoTo /D (flags-admin) >>
 >> endobj
-1502 0 obj <<
+1518 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 706.187 537.983 715.098]
 /Subtype /Link
 /A << /S /GoTo /D (flags-admin) >>
 >> endobj
-1503 0 obj <<
+1519 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [143.462 693.235 237.269 702.147]
+/Rect [143.462 693.235 232.298 702.147]
 /Subtype /Link
-/A << /S /GoTo /D (flags-create) >>
+/A << /S /GoTo /D (flags-edit) >>
 >> endobj
-1504 0 obj <<
+1520 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 693.235 537.983 702.147]
 /Subtype /Link
-/A << /S /GoTo /D (flags-create) >>
+/A << /S /GoTo /D (flags-edit) >>
 >> endobj
-1505 0 obj <<
+1521 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [143.462 680.284 237.269 689.195]
 /Subtype /Link
-/A << /S /GoTo /D (flags-delete) >>
+/A << /S /GoTo /D (flags-create) >>
 >> endobj
-1506 0 obj <<
+1522 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 680.284 537.983 689.195]
 /Subtype /Link
-/A << /S /GoTo /D (flags-delete) >>
+/A << /S /GoTo /D (flags-create) >>
 >> endobj
-1507 0 obj <<
+1523 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [143.462 667.333 232.298 676.244]
+/Rect [143.462 667.333 237.269 676.244]
 /Subtype /Link
-/A << /S /GoTo /D (flags-edit) >>
+/A << /S /GoTo /D (flags-delete) >>
 >> endobj
-1508 0 obj <<
+1524 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 667.333 537.983 676.244]
 /Subtype /Link
-/A << /S /GoTo /D (flags-edit) >>
+/A << /S /GoTo /D (flags-delete) >>
 >> endobj
-1509 0 obj <<
+1525 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [95.641 654.381 153.524 663.293]
+/Subtype /Link
+/A << /S /GoTo /D (keywords) >>
+>> endobj
+1526 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 654.381 537.983 663.293]
+/Subtype /Link
+/A << /S /GoTo /D (keywords) >>
+>> endobj
+1527 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 656.319 170.928 663.293]
+/Rect [95.641 643.487 175.909 650.341]
 /Subtype /Link
 /A << /S /GoTo /D (custom-fields) >>
 >> endobj
-1510 0 obj <<
+1528 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 656.319 537.983 663.293]
+/Rect [528.02 643.487 537.983 650.341]
 /Subtype /Link
 /A << /S /GoTo /D (custom-fields) >>
 >> endobj
-1511 0 obj <<
+1529 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [119.552 641.43 234.689 650.341]
+/Rect [119.552 628.478 239.67 637.39]
 /Subtype /Link
 /A << /S /GoTo /D (add-custom-fields) >>
 >> endobj
-1512 0 obj <<
+1530 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 641.43 537.983 650.341]
+/Rect [528.02 628.478 537.983 637.39]
 /Subtype /Link
 /A << /S /GoTo /D (add-custom-fields) >>
 >> endobj
-1513 0 obj <<
+1531 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [119.552 628.478 234.141 637.39]
+/Rect [119.552 615.527 239.122 624.438]
 /Subtype /Link
 /A << /S /GoTo /D (edit-custom-fields) >>
 >> endobj
-1514 0 obj <<
+1532 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 628.478 537.983 637.39]
+/Rect [528.02 615.527 537.983 624.438]
 /Subtype /Link
 /A << /S /GoTo /D (edit-custom-fields) >>
 >> endobj
-1515 0 obj <<
+1533 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [119.552 615.527 239.112 624.438]
+/Rect [119.552 602.575 244.093 611.487]
 /Subtype /Link
 /A << /S /GoTo /D (delete-custom-fields) >>
 >> endobj
-1516 0 obj <<
+1534 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 615.527 537.983 624.438]
+/Rect [528.02 602.575 537.983 611.487]
 /Subtype /Link
 /A << /S /GoTo /D (delete-custom-fields) >>
 >> endobj
-1517 0 obj <<
+1535 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 602.575 169.594 611.487]
+/Rect [95.641 589.624 169.594 598.535]
 /Subtype /Link
 /A << /S /GoTo /D (edit-values) >>
 >> endobj
-1518 0 obj <<
+1536 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 602.575 537.983 611.487]
+/Rect [528.02 589.624 537.983 598.535]
 /Subtype /Link
 /A << /S /GoTo /D (edit-values) >>
 >> endobj
-1519 0 obj <<
+1537 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [119.552 589.624 264.367 598.535]
+/Rect [119.552 576.673 264.367 585.584]
 /Subtype /Link
 /A << /S /GoTo /D (edit-values-list) >>
 >> endobj
-1520 0 obj <<
+1538 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 589.624 537.983 598.535]
+/Rect [528.02 576.673 537.983 585.584]
 /Subtype /Link
 /A << /S /GoTo /D (edit-values-list) >>
 >> endobj
-1521 0 obj <<
+1539 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [119.552 576.673 233.105 585.584]
+/Rect [119.552 563.721 233.105 572.633]
 /Subtype /Link
 /A << /S /GoTo /D (edit-values-delete) >>
 >> endobj
-1522 0 obj <<
+1540 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 576.673 537.983 585.584]
+/Rect [528.02 563.721 537.983 572.633]
 /Subtype /Link
 /A << /S /GoTo /D (edit-values-delete) >>
 >> endobj
-1523 0 obj <<
+1541 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 563.721 144.448 572.633]
+/Rect [95.641 550.77 144.448 559.681]
 /Subtype /Link
 /A << /S /GoTo /D (voting) >>
 >> endobj
-1524 0 obj <<
+1542 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 563.721 537.983 572.633]
+/Rect [528.02 550.77 537.983 559.681]
 /Subtype /Link
 /A << /S /GoTo /D (voting) >>
 >> endobj
-1525 0 obj <<
+1543 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 550.77 141.858 559.681]
+/Rect [95.641 537.818 141.858 546.73]
 /Subtype /Link
 /A << /S /GoTo /D (quips) >>
 >> endobj
-1526 0 obj <<
+1544 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 550.77 537.983 559.681]
+/Rect [528.02 537.818 537.983 546.73]
 /Subtype /Link
 /A << /S /GoTo /D (quips) >>
 >> endobj
-1527 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 537.818 227.905 546.73]
-/Subtype /Link
-/A << /S /GoTo /D (groups) >>
->> endobj
-1528 0 obj <<
+1545 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 537.818 537.983 546.73]
+/Rect [95.641 524.867 227.905 533.778]
 /Subtype /Link
 /A << /S /GoTo /D (groups) >>
 >> endobj
-1529 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [119.552 524.867 215.571 533.778]
-/Subtype /Link
-/A << /S /GoTo /D (1685) >>
->> endobj
-1530 0 obj <<
+1546 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 524.867 537.983 533.778]
 /Subtype /Link
-/A << /S /GoTo /D (1685) >>
+/A << /S /GoTo /D (groups) >>
 >> endobj
-1531 0 obj <<
+1547 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [119.552 511.915 257.085 520.827]
+/Rect [119.552 511.915 215.571 520.827]
 /Subtype /Link
-/A << /S /GoTo /D (1712) >>
+/A << /S /GoTo /D (create-groups) >>
 >> endobj
-1532 0 obj <<
+1548 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 511.915 537.983 520.827]
 /Subtype /Link
-/A << /S /GoTo /D (1712) >>
+/A << /S /GoTo /D (create-groups) >>
 >> endobj
-1533 0 obj <<
+1549 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [119.552 498.964 302.205 507.875]
+/Rect [119.552 498.964 257.085 507.875]
 /Subtype /Link
-/A << /S /GoTo /D (1722) >>
+/A << /S /GoTo /D (edit-groups) >>
 >> endobj
-1534 0 obj <<
+1550 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 498.964 537.983 507.875]
 /Subtype /Link
-/A << /S /GoTo /D (1722) >>
+/A << /S /GoTo /D (edit-groups) >>
 >> endobj
-1535 0 obj <<
+1551 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [119.552 486.013 315.485 494.924]
+/Rect [119.552 486.013 302.205 494.924]
 /Subtype /Link
-/A << /S /GoTo /D (1740) >>
+/A << /S /GoTo /D (1787) >>
 >> endobj
-1536 0 obj <<
+1552 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 486.013 537.983 494.924]
 /Subtype /Link
-/A << /S /GoTo /D (1740) >>
+/A << /S /GoTo /D (1787) >>
 >> endobj
-1537 0 obj <<
+1553 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [143.462 473.061 350.016 481.973]
+/Rect [119.552 473.061 315.485 481.973]
 /Subtype /Link
-/A << /S /GoTo /D (1742) >>
+/A << /S /GoTo /D (1791) >>
 >> endobj
-1538 0 obj <<
+1554 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 473.061 537.983 481.973]
 /Subtype /Link
-/A << /S /GoTo /D (1742) >>
+/A << /S /GoTo /D (1791) >>
 >> endobj
-1539 0 obj <<
+1555 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [143.462 460.11 365.238 469.021]
+/Rect [143.462 460.11 350.016 469.021]
 /Subtype /Link
-/A << /S /GoTo /D (1746) >>
+/A << /S /GoTo /D (1793) >>
 >> endobj
-1540 0 obj <<
+1556 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 460.11 537.983 469.021]
 /Subtype /Link
-/A << /S /GoTo /D (1746) >>
+/A << /S /GoTo /D (1793) >>
 >> endobj
-1541 0 obj <<
+1557 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [143.462 447.158 338.718 456.07]
+/Rect [143.462 447.158 365.238 456.07]
 /Subtype /Link
-/A << /S /GoTo /D (1750) >>
+/A << /S /GoTo /D (1797) >>
 >> endobj
-1542 0 obj <<
+1558 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 447.158 537.983 456.07]
 /Subtype /Link
-/A << /S /GoTo /D (1750) >>
+/A << /S /GoTo /D (1797) >>
 >> endobj
-1543 0 obj <<
+1559 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 434.207 229.309 443.118]
+/Rect [143.462 434.207 338.718 443.118]
 /Subtype /Link
-/A << /S /GoTo /D (upgrading) >>
+/A << /S /GoTo /D (1801) >>
 >> endobj
-1544 0 obj <<
+1560 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 434.207 537.983 443.118]
 /Subtype /Link
-/A << /S /GoTo /D (upgrading) >>
+/A << /S /GoTo /D (1801) >>
 >> endobj
-1545 0 obj <<
+1561 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [119.552 423.193 226.649 430.167]
+/Rect [95.641 421.255 299.973 430.167]
 /Subtype /Link
-/A << /S /GoTo /D (upgrading-version-defns) >>
+/A << /S /GoTo /D (sanitycheck) >>
 >> endobj
-1546 0 obj <<
+1562 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 423.193 537.983 430.167]
+/Rect [528.02 421.255 537.983 430.167]
 /Subtype /Link
-/A << /S /GoTo /D (upgrading-version-defns) >>
+/A << /S /GoTo /D (sanitycheck) >>
 >> endobj
-1547 0 obj <<
+1563 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [119.552 408.304 251.825 417.215]
+/Rect [95.641 408.304 229.309 417.215]
 /Subtype /Link
-/A << /S /GoTo /D (upgrading-notifications) >>
+/A << /S /GoTo /D (upgrading) >>
 >> endobj
-1548 0 obj <<
+1564 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 408.304 537.983 417.215]
 /Subtype /Link
+/A << /S /GoTo /D (upgrading) >>
+>> endobj
+1565 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [119.552 397.29 226.649 404.264]
+/Subtype /Link
+/A << /S /GoTo /D (upgrading-version-defns) >>
+>> endobj
+1566 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 397.29 537.983 404.264]
+/Subtype /Link
+/A << /S /GoTo /D (upgrading-version-defns) >>
+>> endobj
+1567 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [119.552 382.401 251.825 391.312]
+/Subtype /Link
 /A << /S /GoTo /D (upgrading-notifications) >>
 >> endobj
-1549 0 obj <<
+1568 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 382.401 537.983 391.312]
+/Subtype /Link
+/A << /S /GoTo /D (upgrading-notifications) >>
+>> endobj
+1569 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [119.552 395.353 294.973 404.264]
+/Rect [119.552 369.45 294.973 378.361]
 /Subtype /Link
 /A << /S /GoTo /D (upgrading-methods) >>
 >> endobj
-1550 0 obj <<
+1570 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 395.353 537.983 404.264]
+/Rect [528.02 369.45 537.983 378.361]
 /Subtype /Link
 /A << /S /GoTo /D (upgrading-methods) >>
 >> endobj
-1551 0 obj <<
+1571 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [143.462 382.401 269.379 391.312]
+/Rect [143.462 356.498 269.379 365.41]
 /Subtype /Link
 /A << /S /GoTo /D (upgrade-cvs) >>
 >> endobj
-1552 0 obj <<
+1572 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 382.401 537.983 391.312]
+/Rect [528.02 356.498 537.983 365.41]
 /Subtype /Link
 /A << /S /GoTo /D (upgrade-cvs) >>
 >> endobj
-1553 0 obj <<
+1573 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [143.462 369.45 290.121 378.361]
+/Rect [143.462 343.547 290.121 352.458]
 /Subtype /Link
 /A << /S /GoTo /D (upgrade-tarball) >>
 >> endobj
-1554 0 obj <<
+1574 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 369.45 537.983 378.361]
+/Rect [528.02 343.547 537.983 352.458]
 /Subtype /Link
 /A << /S /GoTo /D (upgrade-tarball) >>
 >> endobj
-1555 0 obj <<
+1575 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [143.462 356.498 279.88 365.41]
+/Rect [143.462 330.595 279.88 339.507]
 /Subtype /Link
 /A << /S /GoTo /D (upgrade-patches) >>
 >> endobj
-1556 0 obj <<
+1576 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 356.498 537.983 365.41]
+/Rect [528.02 330.595 537.983 339.507]
 /Subtype /Link
 /A << /S /GoTo /D (upgrade-patches) >>
 >> endobj
-1557 0 obj <<
+1577 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [119.552 343.547 255.152 352.458]
+/Rect [119.552 317.644 255.152 326.555]
 /Subtype /Link
 /A << /S /GoTo /D (upgrading-completion) >>
 >> endobj
-1558 0 obj <<
+1578 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 343.547 537.983 352.458]
+/Rect [528.02 317.644 537.983 326.555]
 /Subtype /Link
 /A << /S /GoTo /D (upgrading-completion) >>
 >> endobj
-1559 0 obj <<
+1579 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [71.731 328.339 154.48 337.225]
+/Rect [71.731 302.436 154.48 311.323]
 /Subtype /Link
 /A << /S /GoTo /D (security) >>
 >> endobj
-1560 0 obj <<
+1580 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 328.339 537.983 337.225]
+/Rect [528.02 302.436 537.983 311.323]
 /Subtype /Link
 /A << /S /GoTo /D (security) >>
 >> endobj
-1561 0 obj <<
+1581 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 312.862 184.746 321.773]
+/Rect [95.641 286.959 184.746 295.87]
 /Subtype /Link
 /A << /S /GoTo /D (security-os) >>
 >> endobj
-1562 0 obj <<
+1582 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 312.862 537.983 321.773]
+/Rect [528.02 286.959 537.983 295.87]
 /Subtype /Link
 /A << /S /GoTo /D (security-os) >>
 >> endobj
-1563 0 obj <<
+1583 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [119.552 301.968 197.329 308.822]
+/Rect [119.552 276.065 197.329 282.919]
 /Subtype /Link
 /A << /S /GoTo /D (security-os-ports) >>
 >> endobj
-1564 0 obj <<
+1584 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 301.968 537.983 308.822]
+/Rect [528.02 276.065 537.983 282.919]
 /Subtype /Link
 /A << /S /GoTo /D (security-os-ports) >>
 >> endobj
-1565 0 obj <<
+1585 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [119.552 286.959 235.217 295.87]
+/Rect [119.552 261.056 235.217 269.968]
 /Subtype /Link
 /A << /S /GoTo /D (security-os-accounts) >>
 >> endobj
-1566 0 obj <<
+1586 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 286.959 537.983 295.87]
+/Rect [528.02 261.056 537.983 269.968]
 /Subtype /Link
 /A << /S /GoTo /D (security-os-accounts) >>
 >> endobj
-1567 0 obj <<
+1587 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [119.552 275.976 211.048 282.919]
+/Rect [119.552 250.073 211.048 257.016]
 /Subtype /Link
 /A << /S /GoTo /D (security-os-chroot) >>
 >> endobj
-1570 0 obj <<
+1590 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 275.976 537.983 282.919]
+/Rect [528.02 250.073 537.983 257.016]
 /Subtype /Link
 /A << /S /GoTo /D (security-os-chroot) >>
 >> endobj
-1571 0 obj <<
+1591 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 261.056 145.733 269.968]
+/Rect [95.641 235.153 145.733 244.065]
 /Subtype /Link
 /A << /S /GoTo /D (security-mysql) >>
 >> endobj
-1572 0 obj <<
+1592 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 261.056 537.983 269.968]
+/Rect [528.02 235.153 537.983 244.065]
 /Subtype /Link
 /A << /S /GoTo /D (security-mysql) >>
 >> endobj
-1573 0 obj <<
+1593 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [119.552 248.105 263.172 257.016]
+/Rect [119.552 222.202 263.172 231.113]
 /Subtype /Link
 /A << /S /GoTo /D (security-mysql-account) >>
 >> endobj
-1574 0 obj <<
+1594 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 248.105 537.983 257.016]
+/Rect [528.02 222.202 537.983 231.113]
 /Subtype /Link
 /A << /S /GoTo /D (security-mysql-account) >>
 >> endobj
-1575 0 obj <<
+1595 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [119.552 235.153 321.663 244.065]
+/Rect [119.552 209.25 321.663 218.162]
 /Subtype /Link
 /A << /S /GoTo /D (security-mysql-root) >>
 >> endobj
-1576 0 obj <<
+1596 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 235.153 537.983 244.065]
+/Rect [528.02 209.25 537.983 218.162]
 /Subtype /Link
 /A << /S /GoTo /D (security-mysql-root) >>
 >> endobj
-1577 0 obj <<
+1597 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [119.552 224.259 209.922 231.113]
+/Rect [119.552 198.356 209.922 205.21]
 /Subtype /Link
 /A << /S /GoTo /D (security-mysql-network) >>
 >> endobj
-1578 0 obj <<
+1598 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 224.259 537.983 231.113]
+/Rect [528.02 198.356 537.983 205.21]
 /Subtype /Link
 /A << /S /GoTo /D (security-mysql-network) >>
 >> endobj
-1579 0 obj <<
+1599 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 211.308 157.768 218.162]
+/Rect [95.641 185.405 157.768 192.259]
 /Subtype /Link
 /A << /S /GoTo /D (security-webserver) >>
 >> endobj
-1580 0 obj <<
+1600 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 211.308 537.983 218.162]
+/Rect [528.02 185.405 537.983 192.259]
 /Subtype /Link
 /A << /S /GoTo /D (security-webserver) >>
 >> endobj
-1581 0 obj <<
+1601 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [119.552 196.299 373.596 205.21]
+/Rect [119.552 170.396 373.596 179.308]
 /Subtype /Link
 /A << /S /GoTo /D (security-webserver-access) >>
 >> endobj
-1582 0 obj <<
+1602 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 196.299 537.983 205.21]
+/Rect [528.02 170.396 537.983 179.308]
 /Subtype /Link
 /A << /S /GoTo /D (security-webserver-access) >>
 >> endobj
-1583 0 obj <<
+1603 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 183.348 146.839 192.259]
+/Rect [95.641 157.445 146.839 166.356]
 /Subtype /Link
 /A << /S /GoTo /D (security-bugzilla) >>
 >> endobj
-1584 0 obj <<
+1604 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 183.348 537.983 192.259]
+/Rect [528.02 157.445 537.983 166.356]
 /Subtype /Link
 /A << /S /GoTo /D (security-bugzilla) >>
 >> endobj
-1585 0 obj <<
+1605 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [119.552 170.396 317.935 179.308]
+/Rect [119.552 144.493 317.935 153.405]
 /Subtype /Link
 /A << /S /GoTo /D (security-bugzilla-charset) >>
 >> endobj
-1586 0 obj <<
+1606 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 170.396 537.983 179.308]
+/Rect [528.02 144.493 537.983 153.405]
 /Subtype /Link
 /A << /S /GoTo /D (security-bugzilla-charset) >>
 >> endobj
-1587 0 obj <<
+1516 0 obj <<
+/D [1514 0 R /XYZ 71.731 729.265 null]
+>> endobj
+1513 0 obj <<
+/Font << /F27 1224 0 R /F32 1231 0 R /F35 1589 0 R /F33 1322 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1653 0 obj <<
+/Length 58926     
+/Filter /FlateDecode
+>>
+stream
+xڔ�͒d�y]9�S԰j�Wx�ǐ`S�n�dj��fm=(�4�Y��D����#���}��|�4 @\��NU��^�=~ww���^�������;�??}��?���w?�����7��������������������������3�񻗻������3��������p�������?�q~����������������~�����_��/?�����?��?����0�LJ�����~�S���v~����g����x��1��OW?����
iw����Gkݞ�am�u����x�o)�x��p�z���u{����;���p������XO_�ݣ�n�ް6���xxx{r��,[������j�۳7�
ܱ>^��u{����;�����n�ް6���G؇'iϲu�XO_�㫴n�ް6p�z�N�w�����XO_ý�n�ް6����5�?o���q;��wp�?pƳ7�
ܱ���;kݞ�am������f�goXx��v<ܿ�8�Y�.������Z�goX�c=���17��am����5<�8���^��ߝ��Ggͳh]�;�����,�۳7�
ܱ����iݞ�am����5�u{����׭���p�~��Y�.������MZ�goX�c}>_�u{����;��ó�
���
g�+ӟ�8�x��p�z���u{����;��w�t/�۳7�
ܱ����iݞ�am�u���kx���,[����5�?J���
kw����(��goX�c=}
wֺ={���������M��ϲu�XO���x����;���݋�n�ް6p��zx��ް6����5<�8�Y�.���kx������XO_������
g�v����A���ސ6�����K�x��p�z�����x����;�ӷpg�۳7�
ܱ��䏹��
k�[_�o����dzl]�;և�㋵n�ް6p��tz^���ް6p�z��䏹��
k�[_O_ã��gٺ�w����A���ް6p�z��叹��
kw����h�۳7�
�n};}
w���x��p�z������K؎��`��u{�p;���*��goHx��pwwx}q?j�,ZW������l�۳7�
ܱ����iݞ�am��u��u{憵�׭���� ��Y�.���k�������XO_��YZ�goX�c=��wֺ={��������˛��gٺ�w���Oiݞ�am������b�۳7�
ܱ��ߤu{����׭��A���(;��<}���n��PnGy���$�ސ6p�z��?�̳7�
�n}<}��:�e�ܱ���<ɳ7�
ܱ����!��
kw���㛵n�ް6�����,�'y��p��p8�?@�goX�c}:<?[���
kw���A.O��
k�[�O_�\��Y�.���kx������XO_�\�����XO_�����
g�+_N߁�y�=����(O_��un�ސ6p��tx���<{��������Z�goXx��zwx���<���c}8���I��am����5<Y���
kw���A�N��
k�[��7��:�e�ܱ���{�3n<{�����k���<{�����k������^�>����ϸ<���c�?�ɿ��goX�c}:<�X���
kw�/�7ƣ7����<����5ϲt�XO����n�ް6p�z��u{����;�ӷ g'y����׭���Ay��p�z���Һ={�����k���<{��������Z�goXx��pwxxu?��,[�����*g'y����;֧�ó�n�ް6p�z��䏹��
k�[O_����Y�.���kx������XO_��C���
g�v���@�N��
i�[�N߁&�,[������I��am����p/g'y����;֗�˫�n�ް6����p/g'y��p�zx���<{�����kx������XO_������^����9;ɳl]�;���po�۳7�
ܱ��9;ɳ7�
ܱ��9;ɳ7�
�n}�;e0�gٺ�w���g+���
g�v�O�������X_�/ֺ={����ַ�w �'y��p�z���$�ް6p�z��u{����;��� �'y����W�Ow��A��<���c=}
Gkݞ�am����5��I��am�����$�>S��am�u���p'��<���c�?<��I��am����p�l�۳7�
ܱ��L���^�ޟ���q�G�ٸ��;x��o��PnGy�d-�goH�c=}��'��6���}����í�����������v�/���<������>�~�\{��S��}����V����du~��L�.�M�����_�������/_>��8}�����8~�gf;ǀr^�>\��t��E�|���"lm �q�q^��
��"ʚ�"h]�x^�Y�y�6ϋ8�8/���yg�E��@:/���:��E�s�ai񼈳��"lm �q�q^��
��"ʚ�"h]�x^�Y�y�6ϋ8�8/���yg�E��@</b��YW �q�q^��
��"�:΋���x^�Y�y�6ϋ(k΋�u�yg�E��@</��[H�E�t;/����y��y�.@</��[��E�u�ak񼈳��"lm �Q֜A���"�:΋���x^�Y�y�6ϋ8�8/���ye�y�.@</��[��E�u�ak񼈳��"lm �Q֜A���"�:΋���t^�I��"�,�q�q^��
��"ʚ�"h]�x^�Y�y�6ϋ8�8/���yg�E��@</��9/����E�u�ak񼈳��"lm �q�q^��
��"ʚ�"h]�x^�Y�y�6ϋ8�8/���yg�E��@</��9/���E���y6^�輈n�E�X8</��K��E�u�!�
+��"�:΋���x^�Y�y�6ϋ8�8/���ye�y�.@</��[��E�u�ak񼈳��"lm �Q֜A���"�:΋���x^�Y�y�6ϋ8�8/���y%�E��8:/��yVϋ8�8/���yg�E��@</��9/����E�u�ak񼈳��"lm �q�q^��
��"ʚ�"h]�x^�Y�y�6ϋ8�8/���yg�E��@</��9/����E�u�ak񼈳��"lm �q���;G�E�r�Ae��s��",m �q�q^��
��"�:΋���x^DYs^�ϋ8�8/���yg�E��@</��[��E�5�Eк�񼈳��"lm �q�q^��
��"�:΋���x^�X�y��@</��[��E�u�ak鼈�n�E�Y8</��9/����E�u�ak񼈳��"lm �q�q^��
��"ʚ�"h]�x^�Y�y�6ϋ8�8/���yg�E��@</��9/����E�u�ak񼈳��"lm �q�q^��
��"ʚ�"h]�x^�Y�y�6�΋8�v^�����"�9΋���x^DYs^�ϋ8�8/���yg�E��@</��[��E�5�Eк�񼈳��"lm �q�q^��
��"�:΋���x^DYs^�ϋ8�8/���yg�E��@</��[��E�5�Eк�鼈�n�E�Y8</��K��E�u�ak񼈲�Z �q�q^��
��"�:΋���x^�Y�y�6ϋ�</B���E�u�ak񼈳��"lm �q�q^��
��"ʚ�"h]�x^�Y�y�6ϋ8�8/���yg�E��@:/���:G�E�r;/����y��EX�@</3�y�ߞ�k��E�s\���V,�y��%�u������8.�w�~����_��������������o�闿|�z-"}|�[�S��w��v��]�]���NVz���U���Q)�I�Q�(%e�'5�䤤,ǤF������T(gH
+��qFj��HIY8nH�2	))��Q�%e�����q��e�QR��Q�L6J��q4j�iFIY8.F�r��l�F�Z����V�G*J�K��F�N����JT(g$
+��q"j�)DIY8�C�2y()�q�Q�
%e�����q��e�PR��P�LJ��qj��AIY8�A�rƠ�l��F������(����p�ePR�P��((G��n�'�.P�~�H?Iw	����}��p\}�V���}����(S|��p�{erOR�cO�L�I��q�)�3�e�8�4�T��,7�F�ē�����(�w��p\w
+�;A�8N;�2e')�]�Q&�$e�8�4�4��,�˜��Ü��F�I�K��F�������(�q��p\q
+�8A�8N8�2')���Q&�$e�8�4ʴ��,��B9�MP6��M�L�I��q�i�I6IY86�2�&)ǵ�P�X���T�(Sj��p�ie2MR#Mc�&	/aXh
+_M���L#L�I��q�i�I3IY83�2]&)�U�P�(���$�(Sd��p�cerLR�cL�L�I��q�)�3�e�8�4�T��,7�F�������(�_��p\_�V���}����(S^��p�]e�KR�Kc�%	/a\\
+�.��8�-�2�%)ǭ�Q&�$e�8�4�t��,W�B9#KP6�K�LaI��q_i��+IY8�+�2m%)�e�Pΰ����(SU��p�Te�JR��J�LOI��qM)�3�e�8�4ʔ��,v��82J^�8�4�4�d,�B9JP6��I�L=I��q;i�I'IY8'�2�$)�դP�h���d�(SL��p�KerIR�cI�L+I��q))�3�e�8�4�T��,7�F�D����@�(�G��p\G
+�#A�8L#�q��$��qi��"�X8�"�2M$)�E�P� ����(SC��p�BeRHR�CH�LI��qy[y� ���H�LI��q�h��IY8��2�#)��P�������(S=��p�<e�GR��G�L�H��a�(��AX0L�o��仄q�h���X8����#}�-q�H
+������8�������p�l���H��ˏ_�����/\[�k/G~{��!g��W����w^�>�\�w�������7�u򛋕5o.Fk���ʚ7�����be͛���@~s����\��o.Vּ��
�7+k�\��򛋕5o.Fk����:�\L��o.Vּ��
�7+k�\��⛋�t��,7��9#s�.@�̕5�9Zȥ��&5Gk96W���hm ���:�s�.@NΕ5�9Z�չ�&;Gk9<W֔�hm ���:�s�.@�ϕ5�9Z���&AGk9BW�T�hm w��:Ct�.@Nѕ5-:Z�5������ ]9S����ܤ��ɺ�9KW�t�hm ��ʚ4�
�8]YS����ܧ��ɺ�9QW�4�hm W�ʚL�
�P]YS����ܪ��ɺ�9WW���hm �ʚd�
�h]YS����ܭ��ɺ�)]Wέ]G�%�u%�:��r�`Gi�a�s������cGk�dW֤�hm ��ʚ��
��Xg�N��I���iGk�jW�d�hm ��ʚ��
��Xg�N��y���oGk�pW�$�hm G�ʚ��
���H���q��+�h�QY8�ݕ3�;J�����xGk�y7���ur�������@.ߕ5�;Z�񻲦~Gk�7���ur��i���@���5<Z�!����Gk��7�Óur������@.�5I<Z�Q���*���.�(Ɠ�q��+g�x�6��xeM��r ��)���@n�uF�d]���+k:y�6�KyeM*��r,������@��u�d]���+k�y�6��yeM6��r8��)���@n��σur>������@.�5	=Z���������8gHO��)����Gk��W���hm �ʚ��
��XgTO��Y����Gk��W֤�hm ��ʚ��
��Xg`O�ȉ����Gk��W�d�hm ��ʚ��
���XglO�ȹ����Gk��Wґܣ�p�+g�{�6��{c��=Y ��ʚ��
��^Y�ߣ���+k
+|�6�|c�>Y g�ʚ�
�_Y�⣵��+kj|�6�{|c�A>Y '�ʚ&�
�*_Y�壵��+k�|�6��|c�q>Y ��J:�|t�}�L���r�������@��u��d]���+kZ}�6�k}eM���r���)���@n����ur�������@.��5�>Z�񾲦�Gk��7��ur¯�i���@���5?Z�!����Gk��7����l��J9z~T��~�Lҏ�rԿ���?ǖ�_v�o�]������\��x���a�xd�G����8�\�w��ӟ?����C�����ޏ����n�?�w��3z��������;Z�ѻ�&zGk9z�s���ѻ�&zGk9zW�D�hm G�ʚ��
���Xg�N��ѻ�&zGk9zW�D�hm F�J:�wt��w��;I G�ʚ��
��]Y�����+k�w�6��wc��;Y G�ʚ��
��]Y�����+k�w�6��wc��;Y G�ʚ��
��]Y�����+k�w�6��wc��;Y G�ʚ��
��]IG���q�����Q�@�ލuF�d]��+k�w�6��weM��r�������@�ލuF�d]��+k�w�6��weM��r�������@�ލuF�d]��+k�w�6��weM��r�������@�ލuF�d]��+�����ѻ������]9������9z�
+��]Y�����+k�w�6��weM��r�n�3z'���]Y�����+k�w�6��weM��r�n�3z'���]Y�����+k�w�6��weM��b�n�����8�ޕrD�,G�ʙ��
��]Y�������ɺ�9zW�D�hm G�ʚ��
��]Y�������ɺ�9zW�D�hm G�ʚ��
��]Y�������ɺ�9zW�D�hm G�ʚ��
��]IG���a�n���I�8�ޕ3�;J�ѻ�&zGk9zW�D�hm G��:�w�.@�ޕ5�;Z�ѻ�&zGk9zW�D�hm G��:�w�.@�ޕ5�;Z�ѻ�&zGk9zW�D�hm G��z����9zW�D�hm G�ʚ��
��]IG���q�n�3z'���]Y�����+k�w�6��weM��r�n�3z'���]Y�����+k�w�6��weM��r�n�3z'���]Y�����+k�w�6��weM��r�n�3z'���]Y�����+���Y8�ޕ3�;J�ѻ��蝬��weM��r�������@�ޕ5�;Z�ѻ��蝬��weM��r�������@�ޕ5�;Z�ѻ��蝬��weM��r�������@�ޕ5�;Z�ѻ��蝬�w%�;:�ѻr&zGi9zW�D�hm G��:�w�.@�ޕ5�;Z�ѻ�&zGk9zW�D�hm G��z����9zW�D�hm G�ʚ��
��]Y�������ɺ�9zW�D�hm G�ʚ��
��]Y�����i�wr6�w��;*�ѻr&zGi9zߏ�U�c��/>���n���9�����x��g���#[��4�����?��󗟷��_~���o_eb��Q�,�X�߿>��y�<|��R��O��R���z�6��zeM_��r_������@����׃ur_������@��5}=Z�}����Gk��7��דur_������@��5}=Z�}��������8g_O��}����Gk��W���hm ��ʚ��
��Xg_O��}����Gk��W���hm ��ʚ��
��Xg_O��}����Gk��W���hm ��ʚ��
��Xg_O��}����Gk��W��ף�p��+g�z�6��zc�}=Y ��ʚ��
�^Y�ף����+k�z�6��zc�}=Y ��ʚ��
�^Y�ף����+k�z�6��zc�}=Y ��ʚ��
�^Y�ף����+k�z�6��zc�}=Y ��ʹ��h��a_����GcḯW���(m ���z������W���hm ��ʚ��
�^Y�ף�������ɺ���W���hm ��ʚ��
�^Y�ף�������ɺ���W���hm ��ʚ��
�^Y�ף����i�zr6�z�}=*�}�r��Gi��W���hm ���:�z�.@��5}=Z�}����Gk��W���hm ���:�z�.@��5}=Z�}����Gk��W���hm ���:�z�.@��5}=Z�}����Gk��W��ף�p��e�zR6��z�L_��r_������@��5}=Z�}��ξ����zeM_��r_������@��5}=Z�}��ξ����zeM_��r_������@��5}=Z�}����z��@��5}=Z�}����Gk��W��ף�p�����I����W���hm ��ʚ��
�^Y�ף�������ɺ���W���hm ��ʚ��
�^Y�ף�������ɺ���W���hm ��ʚ��
�^Y�ף�������ɺ���W���hm ��J:�zt��z�L_��r_o���'��^Y�ף����+k�z�6��zeM_��r_o���'��^Y�ף����+k�z�6��zeM_��r_o���'��^Y�ף����+k�z�6��zeM_��r_o���'�ľ^IG_���q_����Q�@��5}=Z�}��ξ����zeM_��r_������@��5}=Z�}����z��@��5}=Z�}����Gk��W���hm ���:�z�.@��5}=Z�}����Gk��W���hm ��F�����þ^)G_���q_����Q�@���q����������|����?�������_���{�Y?�����������<���8����˟?��e�[�O?����k
��}�p�|�}�{>�����d��3K����Y��Y2Z�Y���,����deM���r���ɒ��@̒�td��,g��9�d�.@Β�5Y2Z�Y��&KFk9KV�d�hm g��:�d�.@Β�5Y2Z�Y��&KFk9KV�d�hm g��:�d�.@Β�5Y2Z�Y��&KFk9KV�d�hm g��:�d�.@Β�5Y2Z�Y���,���,Y9�%����%�̒ɺ�9KV�d�hm g�ʚ,�
�,YY�%����%�̒ɺ�9KV�d�hm g�ʚ,�
�,YY�%����%�̒ɺ�9KV�d�hm g�ʚ,�
�,YY�%����%�̒ɺ�)KV�-KF�%�d%Y2�Y�r&KFi9K�s���Y��&KFk9KV�d�hm g�ʚ,�
�,�Xg�L��Y��&KFk9KV�d�hm g�ʚ,�
�,�Xg�L��Y��&KFk9KV�d�hm g�ʚ,�
�,�H�%��q�%+�ȒQY8Β�3Y2J�Y��&KFk9K6֙%�ur���ɒ��@Β�5Y2Z�Y��&KFk9K6֙%�ur���ɒ��@Β�5Y2Z�Y��&KFk9K6֙%�ur���ɒ��@Β�5Y2Z�Y���,���,�(�%��q�%+g�d�6��deM���r���ɒ��@Β�uf�d]��%+k�d�6��deM���r���ɒ��@Β�uf�d]��%+k�d�6��deM���r���ɒ��@Β���%�ur���ɒ��@Β�5Y2Z�Y���,���,�8g�L��Y��&KFk9KV�d�hm g�ʚ,�
�,�Xg�L��Y��&KFk9KV�d�hm g�ʚ,�
�,�Xg�L��Y��&KFk9KV�d�hm g�ʚ,�
�,�Xg�L��Y��&KFk1KVґ%��p�%+g�d�6��dc�Y2Y g�ʚ,�
�,YY�%����%+k�d�6��dc�Y2Y g�ʚ,�
�,YY�%����%+k�d�6��dc�Y2Y g�ʚ,�
�,YY�%����%+k�d�6��dc�Y2Y f�J:�dt��d�L���r���ɒ��@Β�uf�d]��%+k�d�6��deM���r���ɒ��@Β���%�ur���ɒ��@Β�5Y2Z�Y��&KFk9K6֙%�ur���ɒ��@Β�5Y2Z�Y��&KFk1K6�d��lf�J9�dT��d�L���r�Ly�Ȓ�slY��ǀ,y�s������Y����ӏ��㷟���/�f��<sΒ&��_���_F�����}���/_?���cq����B�����i�����ǝ����P>~P��@P�5
+Z���&@Ak9@1���ur���	P��@P�5
+Z���&@Ak9@1���ur���	P��@P�5
+Z���&@Ak9@1���uR���[���K(J84��L���r�"����+�eM���r���	P��@P�5
+Z��������eM���r���	P��@P�5
+Z��������eM���r���	P��@P�5
+Z���&@!g�0@Q����p�(g�6�eM���r�b�3@!���EY�����(k�6�eM���r�b�3@!���EY�����(k�6�eM���r�b�3@!���EY�����(k�6%
+:��Q&@!e�8@Q�((m (ʚ��
��EY������PȺ�9@Q�(hm (ʚ��
��EY������PȺ�9@Q�(hm (ʚ��
��EY������9@�
+��EY�����(k�6%
+:��q�����eM���r���	P��@P�5
+Z��������eM���r���	P��@P�5
+Z��������eM���r���	P��@P�5
+Z��������eM���b���#@Ag�8@Q�((m (�:�.@P�5
+Z���&@Ak9@Q�(hm (�:�.@P�5
+Z���&@Ak9@Q�(hm (�:�.@P�5
+Z���&@Ak9@Q�(hm (�:�.@P�t(�,(ʙ��
��EY������PȺ�9@Q�(hm (ʚ��
��EY������9@�
+��EY�����(k�6�eM���r�b�3@!���EY�����(k�6�eM���b�b�	P��8P�r(�,(ʙ��
���
+��������|����%@��������x��e<sP�G��_>�p|�������jvr���"w������(�d'�m�!�;�.>��;�>~xgZ��lS���6t���f��m$]���6e�;���@~g���mhm ��MY��6�6���f��md]���6e�;���@~g���mhm ��MY��6�6���f��md]���6e�;���@~g���mhm ��MY��6�6���f��md]���6e�;���@|g���w���p��6��;�P�@~g���d����YeM2��r2��If��@Nf�5�,Z�ɬ��d����YeM2��r2��If��@Nf�5�,Z�ɬ��d����YeM2��r2��If��@Nf�5�,Z�ɬ��d����Y�ܒY4^�0�U‘̢�p��*g�Y�6��Ya='�`]���*k�Y�6��YeM2��r2��If��@Nf�u&�d]���*k�Y�6��YeM2��r2��If��@Nf�u&�d]���*k�Y�6��YeM2��r2��If��@Lf�4�,9�ɬR�d���dV9�̢����*k�Y�6��Yc��,Y '�ʚd�
�dVY�̢����*k�Y�6��Yc��,Y '�ʚd�
�dVY�̢����*k�Y�6��Yc��,Y '�ʚd�
�dVY�̢����*�Hf�Y8Lf�2�,)�ɬr&�Ei9�U�$�hm '�ʚd�
�d�Xg2K��ɬ�&�Ek9�U�$�hm '�ʚd�
�d�Xg2K��ɬ�&�Ek9�U�$�hm '�ʚd�
�dVX��,XW '�ʚd�
�dVY�̢����*�Hf�Y8Nf�s&�$]���*k�Y�6��YeM2��r2��If��@Nf�u&�d]���*k�Y�6��YeM2��r2��If��@Nf�u&�d]���*k�Y�6��YeM2��r2��If��@Nf�u&�d]���*k�Y�6�Y%�,:�ɬr&�Ei9�5֙̒ur2��If��@Nf�5�,Z�ɬ�&�Ek9�5֙̒ur2��If��@Nf�5�,Z�ɬ�&�Ek9�5֙̒ur2��If��@Nf�5�,Z�ɬ�&�Ek9�5֙̒ub2��#�Eg�8�U�$�(m '�ʚd�
�d�Xg2K��ɬ�&�Ek9�U�$�hm '�ʚd�
�dVX��,XW '�ʚd�
�dVY�̢����*k�Y�6��Yc��,Y '�ʚd�
�dVY�̢����*k�Y�6�Y#M2K��a2��#�Ee�8�U�$�(m '���Jf�sl���ǀdv�s�u�l{z};<�a1;9�#����������Oۿ��?����߮�hϏߝ=�g�?<>��E����c晋��ۈ}���*���R�>���:L)G���af�)�H�8�”rda�,Eaʸ5a(��a��#Cc�03��`�l�`J9R0TC0�*��R�����(S���q�)�ȿPY8���r�_�,�_J9�/T�/�L�E��a�#�Be�0�R��{��pX{)刽PY8L��2�)��~˼Pw���Kٶ�u�0,��p^h,�]B9�.P.8l��r�]�,�]J9�.T�.�Q*�I�Q��"e��Rʑs��ps)�h�PY8,��r�\�,f\F�����ÆK)G…��a�����Be��R�o��p�n�(�HX0궔o˶�w	�hK	G����a���#�Be�0�2��Z�l�ZJ9R-TC-��*���R�H���D�(Sh��q�g)�ȳPY8���r�Y�,�YJ9�,T�,�L�E��a���#�Be�0�R��c��pTc)�c��F)���|�K	G����a�����Be��R�`��p�_e�+R6�+��*��R��
+����J)Gt���are�)�H�8쭔r�V�,�VJ9Z+TK+��*���P��
+�+��*���R��
+����J��
+��0L��0e�]�R��
+��èJ)GS���aQ��#�Be�0�2��T�l�TJ9R*TC*�*��R��
+��Ä�(SP��q�O)�ȧPY8���r�S�,�SJ9�)T�)�L5E��a3��#�Be�(�Rƭ�B�%k)%����Q��"e㰓RʑI��pI)�h�PY8,��rR�,�QF�:����6J)G���a����BeᰊR�E��p�De�(R6{(�9*�1�R�
+���J)G���ae���H�8j��qK�Px	��J	G����a���#~Be�0}2ʔO�lvOJ9�'T�'��*�œR��	����I(g�����R��	����I)G���a夔#rBe�0q2�N�l�MJ9�&T�&�m*�e�R��	�����G�D‚QӤ|[҄�KMJ8z&4k��(��L�!�=r��S�������������o��z�8/ϧ�_��L�<��)���?������ۧ��O��<�=��r����c�tw|���:�=���3�x�ˏw��A^/�]��\�n�ް6�����x�t�<���c}8�<<K���
kw�����/P�u{����;���p���������5ܽ:�x��pǺ���Y�3��@|a���f�����L'�^�����3�3/�D��f:�xa&[�/�t���L�6_��ㅙlm �0SY��L�.@|a���f�����Lg/�dk��:^����3�u��d]�C+kjh�6�{heM��r��i���@���uf�d]�F+k�h�6�h%q4:�y�r��Fi��6֙H�ur$������@5�4Zȩ����Fk��6֙K�ur0��)���@n��5�4Z�ٴ���Fk��6֙N�ur<������@55Z�	����Fk��6֙Q�uRH��[I��K��J8bj4�sj�LO��rQ-���+��jeMU��rW��	���@N��5m5Z�u��μ���keMa��rc������@ά�5�5Zȥ���Ԛ��ckeMm��ro��	���@N��5�5Z�յ�&�&g�0�V�Q^��p�^+g�k�6��keM��r�m�3�&��[YSa����a+kBl�6�SleM���r�m�3�&�� [YSd����d+k�l�6��leM���r�m�3�&��8[YSg����g+km�6m%�6:���Q&�&e�8�VΔ�(m ��ʚX�
�\[Y�k���\l�L�ɺ�9�V�T�hm w�ʚp�
�t[Y�n���\o�̷ɺ�9�V��hm 7�ʚ��
�[Y�q���\r�9��
+�[YSs����s+k�n�6�n%M7:�U�qά����neMٍ�rۭ�����@λ�5}7Zȅ���ě��#oeM��r筬	���@N��5�7Zȵ���ܛ���oeM��r󭬉���@ξ�5�7Z�己������oeM���b���#�Gg�8W�4�(m W��:3p�.@��5%8Z�-��&Gk9W���hm ��:�p�.@�•5U8Z�]��&Gk9
Wִ�hm ���:�p�.@ĕ5�8Zȍ��&Gk9W�t�hm ���:Sq�.@�ŕt���,��ʙ`�
�d\Yӌ���\����ɺ�9W֔�hm ��ʚx�
�|\Yӏ���\��9!�
+�\YS����ܑ+kBr�6�SreMK��rMn�3''��\YS����ܔ+k�r�6��reMW��bYn�I���8�˕r��,��ʙ��
��|?�V�9~�-2��������X2������p�)ϙ�x&�y^��w?�6^������������?�������8~��E��۵����(�?��Q��?�z�{��a�W1k��_�~
��@
C��5����Ak��Q��0hm �0ʚ�
��Xg
C��5����Ak��Q��0hm �0ʚ�
��Xg
C��5����Ak��Q��0hm �0ʚ�
��Xg
C�H5�rn5/aX�(�a�X8�a�35J�5���k��@�a�55Z�5����Ak��Q��0hm �0�:k�.@�a�55Z�5����Ak��Q��0hm �0�:k�.@�a�55Z�5����Ak��Q��0hm �0F�����F)G
���q
���aP�@�a�55Z�5������keM
��r
���a��@�a�55Z�5������keM
��r
���a��@�a�55Z�5������keM
��r
���a��@�a�t�0�,�0F�����F9S�\�(kj�6�keM
��r
c���!��FYS�\�(kj�6�keM
��r
c���!��FYS�\�(kj�6�keM
��r
#���+�keM
��r
���a��@�a�t�0�,�0�9k�.@�a�55Z�5����Ak��Q��0hm �0�:k�.@�a�55Z�5����Ak��Q��0hm �0�:k�.@�a�55Z�5����Ak��Q��0hm �0�:k�.@�a�55Z�5������F9Sà��\��aȺ���Q��0hm �0ʚ�
�FYSà��\��aȺ���Q��0hm �0ʚ�
�FYSà��\��aȺ���Q��0hm �0ʚ�
�FYSà��\��aȺ���Q�Qà�p\�(gj�6�keM
��r
c���!��FYS�\�(kj�6�keM
��r
#���+�keM
��r
���a��@�a�55Z�5������keM
��r
���a��@�a�55Z�5����!g㰆Q�Qà�p\�(gj�6�k��lC�0�9���c@
��9������<s
3�I
�8j������_���߾~(]��?M��wGφ��e�/{�e�ׇ�뷿�O8���߻��|x�;^� W�۳7�
ܱ�^��u{����;�<�_�u<���c}8��X���
kw�㥛ʚ�x����Oe�[<��@~������	��o�Tּ��
�x*k����[<�5o�Dk�-��:��I��o�Tּ��
�x*k����[<�t�����x�|�'I ��SY�O�6��⩬y�'Z�o�Tּ��
�x�|�'Y ��SY�O�6��⩬y�'Z�o�Tּ��
�x�|�'Y ��SY�O�6��⩬y�'Z�o�Tּ��
�x�|�'Y ��SY�O�6�⩤�-��,��S9s���
��:��u��e���6��(k����|�@Ys���
��:��u��e���6��(k����|�@Ys���
��:��u��e���6��(k����|�@Ys���
��:��u��������w�p�-@c��n�r�nJ�w��|���+��(k����|�@Ys���
�ʚ�hm �-0�y�����(k����|�@Ys���
�ʚ�hm �-0�y�����(k����|�@Ys���
�ʚ�hm �-0��- g��n�R���,�-P��-@i�n���nZ�w�u�- ��ʚ�hm �-P��-@k�n���nZ�w�u�- ��ʚ�hm �-P��-@k�n���nZ�w�u�- ��ʚ�hm �-P��-@k�n�����,�-0��- e��n�r�nJ�w�5w��@�[���[����c�wȺ��n���nZ�w�5w��@�[���[����c�wȺ��n���nZ�w�5w��@�[���[����a=�-��
+�ʚ�hm �-P��-@k�n�����,�-0�y�����(k����|�@Ys���
�ʚ�hm �-0�y�����(k����|�@Ys���
�ʚ�hm �-0�y�����(k����|�@Ys���
�ʚ�hm �-0�y�����(k����x�@I��t��(g����|��X���.@�[���[����e���6��(k����|��X���.@�[���[����e���6��(k����|��X���.@�[���[����e���6��(k����|��X���.@�[���n:�w�3wP�@�[���[����c�wȺ��n���nZ�w�5w��@�[���[����a=�-��
+�ʚ�hm �-P��-@k�n���nZ�w�u�- ��ʚ�hm �-P��-@k�n���nZ�w�4w��8�[���n*�w�3wP�@�[@��[��c�[p�1�n���X��߸[p>�>�݂�L�<���O��������O������w~w����o�_�p������_�����������_�y����Yu�u�����sl���9��/g���������ʹͱ�x	�9��96�sl���
�9�����`]�<�V�̱��@�c+k��hm ϱ�5sl�6����:��d]�<�V�̱��@�c+k��hm ϱ�5sl�6����:��d]�<�V�̱��@�c+k��hm ϱ�5sl�6��F�969�sl�slT���ʙ96J�sle��
�9���96Y ϱ�5sl�6���ʚ96Z�sle��
�9���96Y ϱ�5sl�6���ʚ96Z�sle��
�9���96Y ϱ�5sl�6���ʚ96Z�sl%slt��F�96)�sl���
�9��f����[Y3�Fky�m�s�M��sle��
�9��f����[Y3�Fky�m�s�M��sle��
�9��f����[Y3�Fky�-��96XW ϱ�5sl�6���ʚ96Z�sl%slt����9��$]�<�V�̱��@�c+k��hm ϱ�5sl�6����:��d]�<�V�̱��@�c+k��hm ϱ�5sl�6����:��d]�<�V�̱��@�c+k��hm ϱ�5sl�6����:��d]�<�V�̱��@�c+�c��p<�V�̱Q�@�c�c�u�[Y3�Fky����c���<�V�̱��@�c�c�u�[Y3�Fky����c���<�V�̱��@�c�c�u�[Y3�Fky����c���<�V�̱��@�c�c�u�[I����9�rf����[Y3�Fky�m�s�M��sle��
�9��f����[Y3�Fky�-��96XW ϱ�5sl�6���ʚ96Z�sle��
�9���96Y ϱ�5sl�6���ʚ96Z�sle��
�9��f�M���[)����9�rf����{.����9�9���x~ܝc��o�����k�N?u��m��O?�~��L����c��?�y��e_}|z;��ͬ3����%��C��xx����������_���קk�u{����;����˳�n�ް6p��z�=�����^�����'iϲu�XO_��DY�goX�c=}
�WMY�goX�c=}
�ֺ={����� ���{'�eg�v�㭐ʙ�L�����Ie�k&��@~ͤ��5�hm �f�X�k&ɺ��5�ʚ�L�����Ie�k&��@~ͤ��5�hm �fRXϯ��
+��L*k^3���k&�5��Dk�5�ʚ�L�����Ic���$���L*k^3���k&�5��Dk�5�J:^3����k&�s�f���_3��y�$Zȯ�Tּf�
��L*k^3���k&�u�f���_3��y�$Zȯ�Tּf�
��L*k^3���k&�u�f���_3��y�$Zȯ�Tּf�
��L*k^3���k&�u�f���_3��y�$Z���T��It�_3��y�$Jȯ�4���I�.@~ͤ��5�hm �fRY�I�6�_3��y�$Zȯ�4���I�.@~ͤ��5�hm �fRY�I�6�_3��y�$Zȯ�4���I�.@~ͤ��5�hm �fRY�I�6�_3���k���]c�wMȺ�鮉rnwM�x	û&J8�p|�D9s��
�&�z�k��wM�5wM��@�k���k���]e�]�6���kB��wM�5wM��@�k���k���]e�]�6���kB��wM�5wM��@�k���k���]e�]�6�i�qx�D)�]T��(g��|�DYs��
�&�:u�]e�]�6��(k��|�DYs��
�&�:u�]e�]�6��(k��|�DYs��
�&�:u�]e�]�6��(k��x�DI�]t�e�q|�D9s��
�&ʚ�&hm �5Q��5Ak����λ&d]�|�DYs��
�&ʚ�&hm �5Q��5Ak����λ&d]�|�DYs��
�&ʚ�&hm �5Q��5Ak�����u�]e�]�6��(k��x�DI�]t���kB��wM�5wM��@�k���k���]e�]�6���kB��wM�5wM��@�k���k���]e�]�6���kB��wM�5wM��@�k���k���]e�]�6���kB��wM�5wM��@�k���	:�wM�3wMP�@�kb��	Y �5Q��5Ak�����	Z�wM�5wM��@�kb��	Y �5Q��5Ak�����	Z�wM�5wM��@�kb��	Y �5Q��5Ak�����	Z�wM�5wM��@�kb��	Y �5Q�q����&ʙ�&(m �5Q��5Ak����λ&d]�|�DYs��
�&ʚ�&hm �5Q��5Ak�����u�]e�]�6��(k��|�DYs��
�&�:u�]e�]�6��(k��|�DYs��
Ļ&F��&�l�5Q�q����&ʙ�&(m �5ٿӡ�����\|�k��9���L����#�fr<��&�q��}��_~�:ϛ�����������u�<�V�=���W>���K���(9�<��3ͻ���i��iZ�i��&�Ck9�3֙�ur���I���@N�5iZ�i��&�Ck9�3֙�ur���I���@L�t�y�,�yʙ4�
�4�Xg�G��i��&�Ck9�S֤yhm �yʚ4�
�4�Xg�G��i��&�Ck9�S֤yhm �yʚ4�
�4�Xg�G��i��&�Ck9�S֤yhm �yʚ4�
�4�Xg�G�Hi�rni/a��)�H��X8N�3iJ�i����<��@N�5iZ�i��&�Ck9�S֤yhm �y�:�<�.@N�5iZ�i��&�Ck9�S֤yhm �y�:�<�.@N�5iZ�i��&�Ck9�S֤yhm �yF�4����4O)G����q���I�P�@N�5iZ�i���4����<eM���r���I���@N�5iZ�i���4����<eM���r���I���@N�5iZ�i���4����<eM���r���I���@L�t�y�,�yF�4����4O9�桴���)k�<�6��<eM���r�g�3�#��4OY�桵���)k�<�6��<eM���r�g�3�#��4OY�桵���)k�<�6��<eM���r�'��4�+��<eM���r���I���@L�t�y�,�y�9�<�.@N�5iZ�i��&�Ck9�S֤yhm �y�:�<�.@N�5iZ�i��&�Ck9�S֤yhm �y�:�<�.@N�5iZ�i��&�Ck9�S֤yhm �y�:�<�.@N�5iZ�i���4���4O9�桴����L�Ⱥ�9�S֤yhm �yʚ4�
�4OY�桵����L�Ⱥ�9�S֤yhm �yʚ4�
�4OY�桵����L�Ⱥ�9�S֤yhm �yʚ4�
�4OY�桵����L�Ⱥ�1�Sґ桳p��)g�<�6��<eM���r�g�3�#��4OY�桵���)k�<�6��<eM���r�'��4�+��<eM���r���I���@N�5iZ�i���4����<eM���r���I���@N�5iZ�i��&�#g�0�Sʑ桲p��)g�<�6�Ӽ��L�y�9�4��c@���9�4��i���M���$̻a�����/�F��e���o��z�&�]���#�~w�~|���`��}|�<s�w븏�b?�Ce�0�3ʔq�lvqJ9�8T�8�M*�E�R� ����(SÑ�q��)�H�PY8
+�q��Px	�
+N	G���ag�)�H�8�ߔr�o�,�oJ9�7T�7��*�ٛQ�z#e�ySʑ���p�)���PY8�ݔr�n�,�nF�ҍ����M)G���a䦔�qCe�pS����p��e�6R6�6%�����Ea��m]�.aX�)���X8Lڄrm�\pس)���PY8�ٔr�l�,�lJ9B6T36�L�F��aæ�#aCe�0`S�ѯ��pX�)��PY8L׌2�)�ݚR�l
���hM)G����a���#XCe�(W3�Q���`Ԫ)ߖ�������N
���JM)G����a�f�)�H�8�Ӕr�i�,�iJ9�4T�4�a*�Y�Q�J#e�ISʑ���p�)���PY8�єr�h�,�hF�����M)G����a����ACe�@S�-@C�%��3���
+��������L)Gw���au��#:Ce�093�g�l�fJ9r3Tc3��*���R�������(S���qؘ)�H�PY8̔r�e�,�eJ9�2T�2��e(veJ9�2T�2�M*GE�2nA
+/a��aj226[2�)*�!�R����ÊL)GD���aBf�)�H�8�ǔr�c�,�cJ9�1T�1��*�٘Q�#e�Sʑ���p�)���PY8�Ŕr�b�,�bF�R����NL)G&���Q$��[#��KbJ814�0�LF��a��#
Ce�0S�х��pX�)��PY8LŒ2E)�=�R����L)G���a	��#Ce�03�T`�l6`J90T0��*���R�������(S~��q�})�}���ї������K)G����a�e���H�8l��r�^�,�^J9:/T+/��*���P����.�y*�q�R����òK)G؅��a�e���H�8l��r$]�,]J9z.Tk.�1*G)�1������K���}�0���p4\h,\��	��C|{��3<?��[���_�?��}Jx����������1ӵ�3��#[��2ڭ����ǟ��ϟ�|�m��������w�+�Q�o;�Q����o[�ly���>~������rź={��������o5)���
k�[_���'iϲu�XO_���AY�goX�c=}
��IY�goX�c=}
�ֺ={��������p�ۣ�l܎���ҹ={C����;�������XO}���۳7�
�n};��� n��Y�.����?������X���+eݞ�am����5<=I���
k��w����Y�,ZW����5<<K���
kw�����EZ�goX�c=}
Gkݞ�am�u���5ܹsy��p��px~{������X��Wkݞ�am�����l��=z�Y��������~��Y�.���;x������XO��ӽ�n�ް6p�z��u{����;�N_Ã��gٺ�w�۫��u���
�wC;kn_���|�BYs��
��:/`�u�
e��6��`(k�`���|	CYs
+�
�c�:�a�u�=e�A�6Ob(鸉����U��Y�6�c뼌A�ȷ1�5�1��@>��������e͉�6��d뼒A��w2�5�2��@>��������e͹�6�f뼘A��73�5G3��@>���������e���6��g뼞A�H�3�s;���K��P�qC���+ʙ3(m ���%
��@����9����9
e�=
�6�/j(kNj���|T�X�U
�.@����9����i
e�m
�6��k(k�k���|`�X�
�.@����9����
e͝
�6�/m(kNm���xl�Hsm����{J9n��p|rC9ss�
�ʚ�hm �0�yy���oo(k�o���|~CYs�
�ʚhm �0�y�����p(kq���|�CYs��
�kʚshm �0�y����or(k�r���|�CYs��
��J:Ns��px��(s������ʙ(m ��P���@k�J���LZȇ:�u^� ��[ʚchm ��P���@k�b���dZ�G;�u^� ��ʚ�hm ��P���@k�z���|Z�<��|��+�ox(k�x���|�CYs��
�KJ:Ny��p|��8�5�.@�硬9���Ie�M�6��z(k�z���|��X�e�.@����9���ye�}�6�/|(kN|���|��X��.@��9���eͭ�6��}(k�}���|��X���.@����9�����%w?�Y8����9�����c��?Ⱥ�������Z�'@�57@��@���9���!c��@Ⱥ�����Z��@�5�@��@���9	���Qc�WAȺ��.���0ZȧA�5�A��@���9���c�BȺ��F���#!�,�	Q��	Ai�R���TZ��B�u^!��{!ʚ�!hm �Q��Ak�j���lZȇC��|9�+�o�(k�����|>DYs?�
�"ʚ"hm 1�yE����(k����|JDYsK�
�k"ʚs"hm 1�\!g��R��"�,�Q��Ai��^̸}Z?�v[��c�q����W���������/����q\��?�����O����������?�p����~��c��rx|��ó��{�Na�ssd&�􁓀_|������+�peM��r��I���@N��5	8Z�	������peM��r��I���@L��t$��,'��9p�.@N��5	8Z�	��&Gk9W�$�hm '��:p�.@N��5	8Z�	��&Gk9W�$�hm '��:p�.@N��5	8Z�	��&Gk9W�$�hm '��:p�.@N��5	8Z�	������\9��������L�ɺ�9W�$�hm '�ʚ�
�\Y��������L�ɺ�9W�$�hm '�ʚ�
�\Y��������L�ɺ�9W�$�hm '�ʚ�
�\Y��������L�ɺ�)W�-G�%p%	8�	�r&Gi9�s��	��&Gk9W�$�hm '�ʚ�
��XgN��	��&Gk9W�$�hm '�ʚ�
��XgN��	��&Gk9W�$�hm '�ʚ�
��H����q��+�H�QY8N��3	8J�	��&Gk97֙��ur��I���@N��5	8Z�	��&Gk97֙��ur��I���@N��5	8Z�	��&Gk97֙��ur��I���@N��5	8Z�	�������(����q��+gp�6�peM��r��I���@N��u&�d]���+kp�6�peM��r��I���@N��u&�d]���+kp�6�peM��r��I���@N������ur��I���@N��5	8Z�	�������8gN��	��&Gk9W�$�hm '�ʚ�
��XgN��	��&Gk9W�$�hm '�ʚ�
��XgN��	��&Gk9W�$�hm '�ʚ�
��XgN��	��&Gk1Wґ���p��+gp�6�pc�	8Y '�ʚ�
�\Y�������+kp�6�pc�	8Y '�ʚ�
�\Y�������+kp�6�pc�	8Y '�ʚ�
�\Y�������+kp�6�pc�	8Y &�J:pt�p�L��r��I���@N��u&�d]���+kp�6�peM��r��I���@N������ur��I���@N��5	8Z�	��&Gk97֙��ur��I���@N��5	8Z�	��&Gk17�$��l&�J9pT�p�L��r�0�?ǖ�_|����|�s������Y���_/���~?�^_����<sN��_Vߟ�����~��������{W�?��h��/�Ο��o�����o�y�	��9���5�??~�u��SY3�Dky������<�T֌?��@��u��SY3�Dky������<�T֌?��@iƟ�l�?�r�?QY8*gƟ(m �?�5�O�6�ǟ�:ǟd]�<�T֌?��@*kƟhm �?�5�O�6�ǟ�:ǟd]�<�T֌?��@*kƟhm �?�5�O�6�ǟ�:ǟd]�<�T֌?��@*kƟhm �?�t�?�Y8eƟ�l�?�3�O�6�ǟʚ�'Z��Oe���
����'Y �?�5�O�6�ǟʚ�'Z��Oe���
����'Y �?�5�O�6�ǟʚ�'Z��Oe���
�񧰞ǟ`]�<�T֌?��@*kƟhm �?�t�?�Y8��t��SY3�Dky������<�T֌?��@��u��SY3�Dky������<�T֌?��@��u��SY3�Dky������<�T֌?��@��u��SY3�Dkq���c������S93�Diy�i�s�I���Oe���
��f�����SY3�Dky�i�s�I���Oe���
��f�����SY3�Dky�i�s�I���Oe���
��f�����SY3�Dky�i�s�I���O%�Ot�ǟʙ�'J��Oe���
����'Y �?�5�O�6�ǟʚ�'Z��Oe���
�񧰞ǟ`]�<�T֌?��@*kƟhm �?�5�O�6�ǟ�:ǟd]�<�T֌?��@*kƟhm �?�5�O�6ǟF��'9��O��OT�ǟʙ�'J��O�!��'~�m�y�1`���9����������v������y�y?Ɵ�����|~�ӧ�_�o�������_?}��������?}��O���?��}��?����\��v�~;|���_v�s���9ݸ�u�O7>~�n���<�P�L7��@�n�n�u�tCY3�@ky����n���8�P�1�@g�p�a��n��q<�P�L7P�@�n(k�hm O7�5�
�6���:�d]�<�P�L7��@�n(k�hm O7�5�
�6���:�d]�<�P�L7��@�n(k�hm O7�5�
�6���z�n�u�tCY3�@ky����n���8�P�1�@g�x�a�s�A���
e�t�
�醲f����tCY3�@ky�a�s�A���
e�t�
�醲f����tCY3�@ky�a�s�A���
e�t�
�醲f����tCY3�@ky�a�s�A���
e�t�
�醒��:��
��t�
�醱��Y O7�5�
�6��ʚ�Z��
e�t�
�醱��Y O7�5�
�6��ʚ�Z��
e�t�
�醱��Y O7�5�
�6��ʚ�Z��
e�t�
�醱��Y N7�tL7�Y8�n(g�(m O7�5�
�6���:�d]�<�P�L7��@�n(k�hm O7�5�
�6���z�n�u�tCY3�@ky����n���<�P�L7��@�n�n�u�tCY3�@ky����n���<�P�L7��@�ni��lN7�rL7PY8�n(g�(m O7hA ��9����ǀ�����+�����n�g�Ӎ�1��O��~�ۍ��˯c��w�|���}��o_���ߏ�Ə�Z���`N���v�X������~a��������~� p"�
�a�:O��u�0e͉0�6�O�)kN����|"LYs"�
�a�:O��u�0e͉0�6�O�)kN����|"LYs"�
�aF�a�l�S�q"���aʙa(m �S֜Ck�D���ad]�|"LYs"�
�aʚahm �S֜Ck�D���ad]�|"LY�3Ekyg��ٙ����3U��L��@ޙ�ܙ�u��TY�3Ekyg��ٙ����3Uұ3Eg�pgj�ٙ��q�3U��LQ�@ޙ*kv�hm �L�5;S�6�w��:w�d]��3U��L��@ޙ*kv�hm �L�5;S�6�w��:w�d]��3U��L��@ޙ*kv�hm �L�5;S�6�w��zޙ�u��TY�3Ekyg��ٙ����3Uұ3Eg�xgj�sgJ��;Se���
䝩�fg����TY�3Ekygj�sgJ��;Se���
䝩�fg����TY�3Ekygj�sgJ��;Se���
䝩�fg����TY�3Ekygj�sgJ��;Se���
ĝ����):�;S����
䝩�Ν)Y �L�5;S�6�w�ʚ�)Z�;Se���
䝩�Ν)Y �L�5;S�6�w�ʚ�)Z�;Se���
䝩�Ν)Y �L�5;S�6�w�ʚ�)Z�;Se���
䝩�Ν)Y �L�t�L�Y8ޙ*gv�(m �L�5;S�6�w��:w�d]��3U��L��@ޙ*kv�hm �L�5;S�6�w��zޙ�u��TY�3Ekyg��ٙ����3U��L��@ޙ�ܙ�u��TY�3Ekyg��ٙ����3U��L��@ܙiv��l�L�r�LQY8ޙ*gv�(m �Li�(v��9����ǀ�����+�{<Y��3Ϝw���J�����95���?m�����_N��ۼ��\����_��W���G�:}:}��]��c~�}~���Y�*���W�?+��9`V���@Y3+@kqV��cV�����(3+ e�xV������<+P��
+��@�(kfhm �
+�u�
+Ⱥ�yV������<+P��
+��@�(kfhm �
+�u�
+Ⱥ�yV������<+P��
+��@�(kfhm �
+��<+��
+�Y��fV���@Y3+@kqV��cV�����8笀��gʚYZȳeͬ��
�Y��fV����X笀��gʚYZȳeͬ��
�Y��fV����X笀��gʚYZȳeͬ��
�Y��fV����X笀��gʚYZ��%�t�gʙYJȳc���.@�(kfhm �
+�5��6�gʚYZȳc���.@�(kfhm �
+�5��6�gʚYZȳc���.@�(kfhm �
+�5��6�gʚYZȳc���.@�(���p<+P��
+P�@�(kfhm �
+�u�
+Ⱥ�yV������<+P��
+��@�(kfhm �
+��<+��
+�Y��fV���@Y3+@kyV������<+0�9+ ��Y��fV���@Y3+@kyV������8+0��
+��8�(���p<+P��
+P�@��?���۬��c<���
+�?�_y���d}�U���yT�4F�����8�x�
+��ň���������͗��j���o��w�����¿�<s�k�r����p�u�٪�QVnG9�ie�s��p|��(s������\B9/s��q|��(s�����\F��\�,_�2��"e���P�k\�l��2ʜ�"e���Q�)�W��2G�HY8<�%���‚��-���w	��[F��[d,_�2��"e���PΫ[�l��2ʜ�"e����Q��)�׶�2ǶHY8>�%���(�w��2g�HY8>�e���E���-�́-R��k	����q<�5�l`IY8^�e��,�_�q�_Ix	����e�
+������{%c�x�j����p<y5�,^IY8޻
+圻��q<v5�l]IY8^�e���,�\�2+WR�7�B9'��l\�2�VR�׭F�q+)��V�̲����]�m�yֺ�\p<j5�lZIY8^�e��,�Y�q�YIx	�-��)+�CV�̎�����Qf�J����(�`%e�x�*�s�
+���x�(�]%e�x�j����p<[5ʬVIY8ެ
+圬��q<X5��UIY8^�eƪ�,OU�2KUR�w�B9g��l�T�2UR��8�$���<��N%c�x�*�s�
+���0�(�K%e�x�j����p<I5�,RIY8ޣ
+圣��q<F5�lQIY8^�e���,�P�2+TR�7�B9'��lP�2�SR�קF��))��S��򔔅�ݩP��)(��Sc�S^�xqj����p<75ʬMIY8ޚ
+圚��q<45��LIY8^�eF��,OL�2SR������y�r���(�-%e�xYj����p<+5ʬJIY8ޔ
+圔��q<(5��IIY8^�eƤ�,OI�2KRRw�˜)�#R�R�]�xAj����p<�6��(}�m<z�����E���p<��mG��y<��7���a:��_������@�?�??��o���?{||���3�5��������F�_C��5>~��/����W>����
kw�O���Wiݞ�am�����x�����^���������:�e�ܱ���|����{:��_�Go��|=<��s{����;��m�m�s�M���ng�n�6g��:v�lm .��uL���@w+k��h]���v�1�fkq���c������Y�̛�
ġ��f���[ogco�6���:��lm .��uL���@}+�X}��q��v�m�������9����
������7[�pe��7��:F�lm ���u����@\�;똂���8W֬�Ѻ�q�c���$�Y�&��
�U���Y8[��pe�2����:��lm �Ýu����@Z�;�6gg�h$��c%����N�9�P��
ĩ����8[�kqgsq�6�ʚ�8Z nƝu����@��;�؍����w�1gkq<��Y��u�~�Yǀ��
�	���
9[�+rg3�����49�����+v�($�s�䏉BaJ��'dJ�Ydt���72���O泰ڣ�����d��� >$7�|IN�:�oɝ:��ڃ��ܩ�=9�=H/��=)g���Q�2��eߕ;u<,g��i�S��rV{_�;u</g��R���eߘ;u<2g��S�;sV{_�;u<5g��R���eߛ;u<8g��ɹSǛsV{_�;u<;g���R���eߞ;u<>g����C���l��@w�x��h�#t��:�� �Cw�x��j�St����� �Fw�x��j�t��E:�� �Iw�x��j�t��w�� �Lw�x��j��t��u:�� �Ow�x��j�u��7�� �Rw�x��j�Cu��:�� �Uw��X�͚�������A|����d���G�JͫuT�A|����p��ħ�No�Y�A|����|����F�/�I]�
�S�#vV{��;u�cg��%�S�SvV{�+5��Q]�=�SǃvV{��;u�ig��U�SdzvV{��+t�lG���m�#���L�>ow�x��h�����y�����3�_c��;|�_w �t�73�G����\^�?�w�z����W���Ͽ|���|�{/���ۿ�x��ÿ}x���|�{�/��
>�%�;�=q?�߾�O��_@>t�_��w���h��|������ϲ��翶OV�>{C�������n������z�cxx����j�<�}�Qg0A�2���RL�ڃL(5��=���RL�ڃLu�.�L(s&P��`B�#�@��8�Pf�	D{��	�^�	P�A&��`��`B�	&P�A&��`��`¨3� u�`B�	&P�A&��`��`B�	&P�A&�:�	R�A&��`��`B�	&P�A&��`��` 	&��9&9�	$k��	e&�@�9�Pj�	T{��	��`��e��	�&�@�9�Pj�	T{��	�&�@�9�0�&H]9�Pj�	T{��	�&�@�9�Pj�	T{��	��`��e��	�&�@�9�Pj�	T{�	��`͚�`	&��9&��`��`B�	&P�A&��`��`¨3� u�`B�	&P�A&��`��`B�	&P�A&�:�	R�A&��`��`B�	&P�A&��`��`B��`�u��	�&�@�9�Pj�	T{�	��`͚�`˜3� t�`B�	&P�A&��`��`B�	&P�A&�:�	R�A&��`��`B�	&P�A&��`��`¨3� u�`B�	&P�A&��`��`B�	&P�A&�:�	R�A&��`��`B�#�@��8�Pf�	D{��	��`��e��	�&�@�9�Pj�	T{��	�&�@�9�0�&H]9�Pj�	T{��	�&�@�9�Pj�	T{��	��`��e��	�&�@�9�Pj�	T{��	�&�@�9�0�&H]1�P�&Ь9&��`��`B�	&P�A&�:�	R�A&��`��`B�	&P�A&��`��`B��`�u��	�&�@�9�Pj�	T{��	�&�@�9�0�&H]9�Pj�	T{��	�&�@�9�Pj�	T{�	�&� ��0�P�&��9&��`��`�^��`��L\}
&����?8��S�Y���u��=�����ç_h|&�r��J��o��y9���?�~��ן�/}|:No��t��/tw��k#�O������������=|�"����?��E>Q���P{pG}><�Yu��
�?W�����}�͞�!�ǣ4���@{pG=�|����j�χ���w��
�?W_�[dd��YV���txz����j����q�R���P{pG=�1��C�n������—�ýS�YT�����pz����j��?��'�n������z�c8Zu��
�?W��?�/�N�eu�QO�Ǘ�n�������x8>[u��
�w�����f�}N��'�7�|��epG=�<Zu��
�w���ÝT���P{pG=�)ܟ��}��ڃ�����I�㳬.�;�����^��go�=������o8�7��Q�_��}��ڃ����×����YV���txx���������x��d���7��Q��_��go�=���p�cx���eu�Q��V�>{C����� �Eb��
��v���I�
g|�ڃ����?�;��ϲ���?�������
�w����n������:�H(5g)P�A>Ka�y���e��R(5g)P�A>K�Ԝ�@��,�Rs���F�g)H]�,�Rs���J�Y
+T{��R(5g)P�A>Ka�y���e��R(s;K�����P�8K�b��Y
+e�,�=�g)�z9K�:�g)����� ��Pj�R�ڃ|�B�9K�j�Y
+�γ�.�|�B�9K�j�Y
+��,�=�g)����� ��0�<KA�2�g)����� ��Pj�R�ڃ|�B�9K�j�Y
+��,�=�g)9�R Ys|�B�9K�h�Y
+��,�=�g)�:�R���Y
+��,�=�g)����� ��Pj�R�ڃ|�¨�,�� ��Pj�R�ڃ|�B�9K�j�Y
+��,�=�g)�:�R���Y
+��,�=�g)����� ��P�8K�f��Y
+C�,�=�g)����� ��Pj�R�ڃ|�B�9K�j�Y
+�γ�.�|�B�9K�j�Y
+��,�=�g)����� ��0�<KA�2�g)����� ��Pj�R�ڃ|�B�9K�j�Y
+�^�R���Y
+��,�=�g)����� ��P�8K�f��Y
+cγ�.�|�B�9K�j�Y
+��,�=�g)����� ��0�<KA�2�g)����� ��Pj�R�ڃ|�B�9K�j�Y
+�γ�.�|�B�9K�j�Y
+��,�=�g)����� ��0�<KA�2�g)����� ��P�8K�f��Y
+e�,�=�g)�:�R���Y
+��,�=�g)����� ��Pj�R�ڃ|�¨�,�� ��Pj�R�ڃ|�B�9K�j�Y
+��,�=�g)�:�R���Y
+��,�=�g)����� ��Pj�R�ڃ|�¨�,�� ��P�8K�f��Y
+e�,�=�g)����� ��0�<KA�2�g)����� ��Pj�R�ڃ|�B�9K�j�Y
+�^�R���Y
+��,�=�g)����� ��Pj�R�ڃ|�¨�,�� ��Pj�R�ڃ|�B�9K�j�Y
+��,�=�g)��d���P�8K�d��Y
+e�,�=�g)�/+���=��W_�R���������y|9�7��7z�Z�O���|&�)��4���_��o����g;���o���}��L|�]��O	v~�sF��5g4{�5��ُ_�YT{�Y��h͚�h֘3�%t�hV��fQ�A�f��h��hV��fQ�A�f�:�YR�A�f��h��hV��fQ�A�f��h��h֨3�%u�hV��fQ�A�f��h��hV��fQ�A�f�:�YR�A�f��h��hV�#�E��8�Uf�YD{��Y��h��e��Y�&�E�9�Uj�YT{��Y�&�E�9�5�fI]9�Uj�YT{��Y�&�E�9�Uj�YT{��Y��h��e��Y�&�E�9�Uj�YT{��Y�&�E�9�5�fI])�U�͢x=�ѬG4�b�q4��D��� G�B�D�����*5�,�=�ѬR͢ڃ�*5�,�=�ѬQg4K�2�ѬR͢ڃ�*5�,�=�ѬR͢ڃ�uF��.��*5�,�=�ѬR͢ڃ�*5�,�=�ѬA͒�s�*rD�H�G��L4�hr4��D��� G�F��,�� G�JM4�jr4��D��� G�JM4�jr4k�͒�r4��D��� G�JM4�jr4��D��� G�F��,�� G�JM4�jr4��D��� F�
+�,�5�Ѭ!��s�*3�,�=�ѬR͢ڃ�*5�,�=�ѬQg4K�2�ѬR͢ڃ�*5�,�=�ѬR͢ڃ�uF��.��*5�,�=�ѬR͢ڃ�*5�,�=�ѬP/�,�� G�JM4�jr4��D��� F�
+�,�5�Ѭ1g4K�2�ѬR͢ڃ�*5�,�=�ѬR͢ڃ�uF��.��*5�,�=�ѬR͢ڃ�*5�,�=�ѬQg4K�2�ѬR͢ڃ�*5�,�=�ѬR͢ڃ�uF��.��*5�,�=�ѬBG4�f�q4��D��� G�F��,�� G�JM4�jr4��D��� G�JM4�jr4k�͒�r4��D��� G�JM4�jr4��D��� G�F��,�� G�JM4�jr4��D��� G�JM4�jr4k�͒�b4��͢Ys�*3�,�=�ѬR͢ڃ�uF��.��*5�,�=�ѬR͢ڃ�*5�,�=�ѬP/�,�� G�JM4�jr4��D��� G�JM4�jr4k�͒�r4��D��� G�JM4�jr4��D��� F�M4Kf�a4���"Ys�*3�,�=���~���Y�[4{�5 ����2��?���쉣��D�w#������ϯo?���w����������J�ǽ�n�?}M�-?}}���������&u䟾Vj~��䟾Vj~��䟾Vj~��䟾�姯A]�������F��������F��������F�����:���e��Z���Q�A������Ċ_���G���7��	]��Wj*~T{�+~���G���Wj*~T{�+~�Ί��e�+~���G���Wj*~T{�+~���G���7��I]��Wj*~T{�+~���G���Wj*~T{�+~�Ί��e�+~���G���W��Ѭ9�������ߨ��'u�_���Q�A�������_���Q�A���:+~R�A�������_���Q�A�������ߨ��'u�_���Q�A�������_���Q�A���:+~R�A����U�(^�aů�Q�Xs\�+3?�=��P/?�� W�JMŏjrů�T��� W�JMŏjr�o�Y�rů�T��� W�JMŏjrů�T��� W�F�?�� W�JMŏjrů�T��� W�JMŏjb�o�T�d�V��?�5��2S�#ڃ\�+5?�=��Qg�O�2��RS�ڃ\�+5?�=��RS�ڃ\�uV��.�\�+5?�=��RS�ڃ\�+5?�=��Qg�O�2��RS�ڃ\�+5?�=��BGŏf�a�o�T�D�W��Lŏhrů�T��� W�JMŏjr�o�Y�rů�T��� W�JMŏjrů�T��� W�F�?�� W�JMŏjrů�T��� W�JMŏjr�/�K��:��RS�ڃ\�+5?�=��BGŏf�q�o�Y��rů�T��� W�JMŏjrů�T��� W�F�?�� W�JMŏjrů�T��� W�JMŏjr�o�Y�rů�T��� W�JMŏjrů�T��� W�F�?�� W�JMŏjbů�Q�Ys\�+3?�=��Qg�O�2��RS�ڃ\�+5?�=��RS�ڃ\�uV��.�\�+5?�=��RS�ڃ\�+5?�=��Qg�O�2��RS�ڃ\�+5?�=��RS�ڃ\�uV��.�X�+tT�h�W��Lŏhrů�T��� W�F�?�� W�JMŏjrů�T��� W�JMŏjr�/�K��:��RS�ڃ\�+5?�=��RS�ڃ\�uV��.�\�+5?�=��RS�ڃ\�+5?�=��AS��sX�+rT�H�W��Lŏhrſ�����V�_}���݊�{,�ݍ���:=���I���^�ۏLJ^������ݷ?�V���ܿ��?}��_�}����߽�3��7����q�/��=?�W0��_�W���������� ��7�|�O�2��������� ��Wj��ڃ��_�yϏj�{~�����.���_��{~���=��{~k���+3���A~�/��{~P�A~ϯԼ�G��=�R�����J�{~T{���u��'u���J�{~T{���+5��Q�A~ϯԼ�G��=�Q�{~R�A~ϯԼ�G��=�R�����J�{~T{��4����9|ϯ��ɚ�����{~D{���+5��Q�A~�o�����e���+5��Q�A~ϯԼ�G��=�R�����F���I]�=�R�����J�{~T{���+5��Q�A~�o�����e���+5��Q�A~ϯԼ�G��=�B�{~4k��2����9~ϯ̼�G��=�R�����J�{~T{���u��'u���J�{~T{���+5��Q�A~ϯԼ�G��=�Q�{~R�A~ϯԼ�G��=�R�����J�{~T{������u���+5��Q�A~ϯԼ�G��=�B�{~4k���s��'t���J�{~T{���+5��Q�A~ϯԼ�G��=�Q�{~R�A~ϯԼ�G��=�R�����J�{~T{���u��'u���J�{~T{���+5��Q�A~ϯԼ�G��=�Q�{~R�A~ϯԼ�G��=�B�{~4k���+3���A~�o�����e���+5��Q�A~ϯԼ�G��=�R�����F���I]�=�R�����J�{~T{���+5��Q�A~�o�����e���+5��Q�A~ϯԼ�G��=�R�����F���I]�=�B�{~4k���+3���A~ϯԼ�G��=�Q�{~R�A~ϯԼ�G��=�R�����J�{~T{������u���+5��Q�A~ϯԼ�G��=�R�����F���I]�=�R�����J�{~T{���+5��Q�A|�oм�'���=�"�{~$k���+3���A~�O���{~��{�������ǯ�U��g��xο}$����k������?�~��ۓ������󏧇~z}��cP��:��h����~����Q��/;���ew��×��E*�����8�
+Ğ��2d~��Ț�_�2d~��Ț㟡2d~��Ț�ߠ��	* {��ʐ��)"k�}ʐ��)"k�zʐ��)"k�wJ��g���9��)C�7���9��)C����9��)C�צ��9��)AΟ�������ߙ"���W��8~d���1��)��H�9�})AΟ����ǥ�ߖ"�������"���g��_�"���7�9R
+Ȟ��2d~O�Ț�_�2d�S"k��SC�<%��;��N��9�N
��Ț��Ԑ	N��9�M
�ڔȚ��T�35��(45�֙w5����FdJ��'�LaJb�q_z�����2�q�!ӖYs\�2a)�5�Y�!S�Ysܔ
+r&�@���LOJd�qMj�ĤD����LIJd�qG*ș��s�2
)�5��!�Ys��2�(�5�����Xc�ot��]�q5j�D�$�'��L1Jd�q/*ș��s�2�(�5ǥ�!�Ys��2�(�5Ǎ� g"
+d�q j���D�ס�LJd�qjȔ�D�w���Y(�=�Q�!ӄYs\�2A(�5�9�G
J�����K
+
+^�qj�t�$�W��LJd�qj��D������'�=��!�~Ys\~2�'�5�٧!S}Ys�|
+r&�@���L�Id�q�i�ĞD����L�Id�q�y��d���2Ǒ�!�xYs\x2�'�5�y�G�I�����i'�=�a�!�uYs\u2Q'�5�I�!StYs�s
+r�@�ǜ�L�Id�q�iȄ�D�g��L�Id�q�)șp�sp2�&�5���!oYs�n2�&�5�ݦ g�	d�q�i�4�D��F�&��c�k0�&�5ǭ� g�	d�q�i�t�D�W��L�Id�q�i��D�����y&�=�q�!�fYs\f2a&�5�Y�!SeYs�d
+r&�@���L�Id�q�i�ĘD����L�Id�q�)șa�saq4�^�q�i��$�痆L}Id�q{)ș^�s^2�%�5�ե!]Ys�\2�%�5ǽ�m�[��ǖ�LkId�qiiȄ�D�g��LeId�qc)șX�sX2}%�5�u�!WYs�V2e%�5�]��UXcUo4��]�qQi��$�画=��)�Kl1��;@K��%��c���S�O#��f���B�������ӯ3>��l)���*������������'���O�����O��˷�|��0|��͕�1�|:3��>��/�~�"P�ڃ�*5! �=�)�QgH�2�5�R��ڃ*5E �=�M�R�ڃ�uv��.�\*5i �=�q�RS�ڃ�*5� �=ȉ�Qg#H�2ȕ�R�	�ڃ
+*t��h����L,�hr.h����r1��$��� G�JM5�jr7�Ԅ��� ��F�� �� ׃JM>�jr@����� 7�JMD�jrFh����rI�Ԥ��� DŽJMM�jrO����� '�F�M!�� U��ܲB��0,T�(Q�9n�����P����u�C�&1D�92Tj*CT{�;C�&4D�954�l
I]�6TjrCT{��C��8D��9Tj�CT{��C����e��C�&=D�9>Tj�CT{��C�&@D�1A4hD2{+DE�ɚ�Q�)�An����Ѩ�G$u�"Q�IQ�A���*��.Q�	Q�AN�:�DR�A���<��@Q�)Q�An��H��LѨ�S$u�RQ�IQ�A���Z��^Q�#XD��0Y4d�E"{��Ee&[D�9\Tj�ET{��E�&^D�9_4��I]�`TjFT{�#F��bD��cTjBFT{�SF�Ζ��e�kF�&gD�9hTj�FT{��F�&jD�9k�ku�Q�IQ�A�����ľQ�#pD��8q4�l	]�rTj2GT{�CG��tD��uTjbGT{�sG��ޑ�e��G�&yD�9zTj�GT{��G�&|D�9}4�lI]�~Tj�GT{�H���D���Tj"HT{�3H����e�KH�&�D�1�T�!Ѭ9�!�� ��$Ҩ��$u�*R��"Q�A#��2��6R��#Q�A�#�:�HR�A.$��D��HR��$Q�A�$��P��TҨ��$u�ZR��%Q�A&��b��fR��&Q�A�&�:�IR�A,':�I4k��Ie��D���TjJT{�J�Ά��e�+J�&�D�9�TjJJT{�[J�&�D�9�ꥧu�R�I*Q�A�*�����R�	+Q�AN+�:�JR�A�+������R�),Q�An,������Ҡ�,��9,-9RK$k�cKe��D�����Up��c+.��$���ci.��\޽�Ѡ�2ٚ���Sߢ�������O?����O������u����|��v�|���e�/����p�r�k�C�����<�^>�"���go�=��z��yw��R��,����z:<=Yu��
�w�����T���P{pG=�1��3�S���P{���_��N�gQ]w����Q��go�=���������}��ڃ;����h���7���}��×g��ϲ���|����j����:u�~0�=H� ���'�٬9�ae�W�]�w��:��ڃxE�����=�W�:��ڃxE@��"��2�W�:��ڃxE�����=�W�:��ڃxE@��"��2�W�:��ڃxE�����=�W�:��ڃxE@��"��2�W�:��ڃtE���6k�8s\`��RsE��e�8u\`��S�V{�8u\`��RsE��e�8u\`��S�V{�8u\`��RsE��e�8u\`��S�V{�8u\`��RsE��e�8������ctE���k�8s\`��Q�R�A�"��qE���+NWX�A�"��qE���+J�T�A�"��qE���+NWX�A�"��qE���+J�T�A�"��qE���+NWX�A�"��qE���+
+W��9�"�����5�W�9�0ڃxE�����=�W��+�.�xE�����=�W�:��ڃxE�����=�W��+�.�xE�����=�W�:��ڃxE�����=�W��+�.�xE�����=�W�:��ڃtE���6k��(r\@�����3�F{�8u\`��S�V{�(5WP]�S�V{�8u\`��S�V{�(5WP]�S�V{�8u\`��S�V{�u^ u�+NWX�A�"��qE���+ݮ�YsxE@��"��2�W�:��ڃxE�����=�W�:��ڃxE@��"��2�W�:��ڃxE�����=�W�:��ڃxE@��"��2�W�:��ڃxE�����=�W�:��ڃxE@��"��2�W�:��ڃtE���6k�8s\`��RsE��e�8u\`��S�V{�8u\`��RsE��e�8u\`��S�V{�8u\`��RsE��e�8u\`��S�V{�8u\`��RsE��e��8t�"�f��g�+�� ^p�"�j������ ^p�"�j���+�� ^p�"�j���+���xE�����=�W�:��ڃxE�����=�W��+�.�xE�����=�W�:��ڃxE�����=HW:���stE���&k�8s\`�����7���x����x|ٻ"������������������������iQ=>���;�qI��~���n��;o���������j��[ͳ�/;��/���~�"���ڃ��*5
 �=�
�R���ڃ��u6��.���*5
 �=�
�R���ڃ��*5
 �=�
�QgH�2�
�R���ڃ��*t4�h�7��L�hrh�����r��4��� 7�JM�jr��4��� 7�F�
 �� 7�JM�jr��4��� 7�JM�jrh�����r��4��� 7�JM�jr��4��� 7�F�
 �� 5���@�ǰT�h�Q�9n�����P���u�@��D��Tj@T{�@��D��4�l�I]�Tj@T{�@��D��Tj@T{�@����e�@��D��Tj@T{�@��D��4h@2{@E�ɚ�P�i��An�����Ш�$u�P�i�Q�An�����P�i�Q�An��:@R�An�����P�i�Q�An�����Ш�$u�P�i�Q�An�����P��D��4d@"{�@e�D��Tj@T{�@��D��4�l�I]�Tj@T{�@��D��Tj@T{�@����e�@��D��Tj@T{�@��D���u�P�i�Q�An�����P��D��4�l�	]�Tj@T{�@��D��Tj@T{�@����e�@��D��Tj@T{�@��D��4�l�I]�Tj@T{�@��D��Tj@T{�@����e�@��D��T�h�Ѭ9n�����Ш�$u�P�i�Q�An�����P�i�Q�An��:@R�An�����P�i�Q�An�����Ш�$u�P�i�Q�An�����P�i�Q�An��:@R�Al�:@4k�@e�D��Tj@T{�@����e�@��D��Tj@T{�@��D���u�P�i�Q�An�����P�i�Q�An��:@R�An�����P�i�Q�An�����Рi���9l�9@$k�@e�D��ܯ�T��ck���4���ci��7���A�{n��gfx7����o���;�{���\Q���+���,�W���x�U�g����YD��w���YD��w�:KR�An,������R�i,Q�An,������Ҩ��$u��R�i,Q�An,������R�i,Q�An,�:KR�An,������R���D�渱TfKD{�K��ƒ�e�K���D���TjKT{�K���D���4�l,I]��TjKT{�K���D���TjKT{�K��ƒ�e�K���D���TjKT{�K���D���4�l,I]��T��X�x=���Gc�b�qc��4��� 7�B�4�����X*5�%�=ȍ�R�X�ڃ�X*5�%�=ȍ�QgcI�2ȍ�R�X�ڃ�X*5�%�=ȍ�R�X�ڃ�Xu6��.��X*5�%�=ȍ�R�X�ڃ�X*5�%�=���A�X��s�X*r4�H�7��Lc�hrc��4��� 7�F��%�� 7�JMc�jrc��4��� 7�JMc�jrci��X��rc��4��� 7�JMc�jrc��4��� 7�F��%�� 7�JMc�jrc��4��� 6�
+�%�5���!�X�s�X*3�%�=ȍ�R�X�ڃ�X*5�%�=ȍ�QgcI�2ȍ�R�X�ڃ�X*5�%�=ȍ�R�X�ڃ�Xu6��.��X*5�%�=ȍ�R�X�ڃ�X*5�%�=ȍ�P/�%�� 7�JMc�jrc��4��� 6�
+�%�5Ǎ�1gcI�2ȍ�R�X�ڃ�X*5�%�=ȍ�R�X�ڃ�Xu6��.��X*5�%�=ȍ�R�X�ڃ�X*5�%�=ȍ�QgcI�2ȍ�R�X�ڃ�X*5�%�=ȍ�R�X�ڃ�Xu6��.��X*5�%�=���BGc�f�qc��4��� 7�F��%�� 7�JMc�jrc��4��� 7�JMc�jrci��X��rc��4��� 7�JMc�jrc��4��� 7�F��%�� 7�JMc�jrc��4��� 7�JMc�jrci��X��bc���X�Ys�X*3�%�=ȍ�R�X�ڃ�Xu6��.��X*5�%�=ȍ�R�X�ڃ�X*5�%�=ȍ�P/�%�� 7�JMc�jrc��4��� 7�JMc�jrci��X��rc��4��� 7�JMc�jrc��4��� 6�McIf�ac���X"Ys�X*3�%�=ȍ�~'�K�[cy�5�������|��������l,O���������?��a��~����$�<��~��/u���t'�<����녿o>t�}?>>>�����g_�u��
�w���ۿj(���7̚�i;���ۿw3��,����:bW���E���Uj�YT{��Y���E���5�gI]��Uj�YT{��Y���E���Uj�YT{��Y��z��e��Y���E���Uj�YT{��Y���E���5�gI]��Uj�YT{�Y��z͚�zV��g�A�g�:�YR�A�g��z��zV��gQ�A�g��z��z֨��%u�zV��gQ�A�g��z��zV��gQ�A�g�:�YR�A�g��z��zV��gQ�A�g��z��z֨��%u�zV�[=���ֳ
+�,�5���2S�"ڃ\�
+�Rς�r=��Գ�� ׳JM=�jr=��Գ�� ׳F��,�� ׳JM=�jr=��Գ�� ׳JM=�jr=k�Yϒ�r=��Գ�� ׳JM=�jr=��Գ�� ֳM=Kf�a=��Q�"Ys\�*3�,�=���RSϢڃ\�uֳ�.�\�*5�,�=���RSϢڃ\�*5�,�=���Qg=K�2���RSϢڃ\�*5�,�=���RSϢڃ\�uֳ�.�\�*5�,�=���RSϢڃX�*tԳh�ֳ�L=Kd�q=��Գ�� ׳JM=�jr=��Գ�� ׳F��,�� ׳JM=�jr=��Գ�� ׳JM=�jr=k�Yϒ�r=��Գ�� ׳JM=�jr=��Գ�� ׳B�Գ���\�*5�,�=���RSϢڃX�*tԳh�׳Ɯ�,�� ׳JM=�jr=��Գ�� ׳JM=�jr=k�Yϒ�r=��Գ�� ׳JM=�jr=��Գ�� ׳F��,�� ׳JM=�jr=��Գ�� ׳JM=�jr=k�Yϒ�r=��Գ�� ֳ
+�,�5���2S�"ڃ\�uֳ�.�\�*5�,�=���RSϢڃ\�*5�,�=���Qg=K�2���RSϢڃ\�*5�,�=���RSϢڃ\�uֳ�.�\�*5�,�=���RSϢڃ\�*5�,�=���Qg=K�2���BG=�f�q=��Գ�� ׳JM=�jr=k�Yϒ�r=��Գ�� ׳JM=�jr=��Գ�� ׳B�Գ���\�*5�,�=���RSϢڃ\�*5�,�=���Qg=K�2���RSϢڃ\�*5�,�=���RSϢڃX�4�,�=���"G=�d�q=��Գ�� ׳��g�{l����x��[�������QϞ^��������̬g�G=��_������~��?���_���~<~��/?��c�6�GH��_ȇݿ��������~��@�jr��䀨� �JM�jrhԙ��r��䀨� �JM�jr��䀨� �F�9 �� �JM�jb�Б�Ys�*39 �=�9�QgH�2�9�R��ڃ�*59 �=�9�R��ڃ�u怤.��*59 �=�9�R��ڃ�*59 �=�9�QgH�2�9�R��ڃ�*59 �=�9�R��ڃ�u怤.��*s�Q��P�#D��8Tfr@D{�s@�^r@P�A�����P��Q�A�����Ш3$u�P��Q�A�����P��Q�A��:s@R�A�����P��Q�A�����Р���9�9r@$k�s@e&D�9Tjr@T{�s@����e�s@�&D�9Tjr@T{�s@�&D�94��I]9Tjr@T{�s@�&D�9Tjr@T{�s@����e�s@�&D�9Tjr@T{s@��͚�А���9�����P��Q�A�����Ш3$u�P��Q�A�����P��Q�A��:s@R�A�����P��Q�A�����P���u�s@�&D�9Tjr@T{s@��͚�И3$t�P��Q�A�����P��Q�A��:s@R�A�����P��Q�A�����Ш3$u�P��Q�A�����P��Q�A��:s@R�A�����P�#D��8Tfr@D{�s@����e�s@�&D�9Tjr@T{�s@�&D�94��I]9Tjr@T{�s@�&D�9Tjr@T{�s@����e�s@�&D�9Tjr@T{�s@�&D�94��I]1T��Ѭ9�����P��Q�A��:s@R�A�����P��Q�A�����P���u�s@�&D�9Tjr@T{�s@�&D�94��I]9Tjr@T{�s@�&D�9Tjr@T{s@�&$��0T����9������*6����r����t����ǯ�1ͻ���׀�Gf�0b�z����~���_�������{�wY_��������/���[���g�����_�����O�����D.s;���tzt��Q&kn�|<ܽ��Cne��v��_��$��2Ys;�Fz����Y��H��9~�Ր��W"k��Ր��W"k�Ո�W^	���x���W{��Ր�}W"k��Ր�qW"k��Ր�eW"k��U������6d"n"k�nC��&���6d�m"k��mA�vȞ�rې	���9ζ
�j�Ț�fېI���9�9{m {�kmC&�&��0�6�(�	��NۀɴI�9��9m {�mC&�&��8�6d�l"k��lC&�&��8��첁�9��
�(�Ț�$ې)���9�
��Ț�[������6dBl"k�3lC��&���6dl"k�lA��Ȟ��ڀ[|M����F�5q�c�]0�5�5���m��\��׆LpMd�qnm���D��ֆLjMd�qh-��Y�s\Y2�5�5lj�!SXYs�W2y5�5�q� g[
d�qYmȄ�D�gՆLUMd�qSm�$�D��BLO
`�aMm�S�w=�)�SR�Xs�Q25�5�� gC
d�qAm��D��ӆL=Md�q;mȤ�D��ӂ��4�=�մ!MYs�L2�4�5ǽ�!�KYsKr��@��҆L(Md�q&m�T�D�6�F�4��cH/}4x5�u�G�Xs�F2e4�5�]�!�EYsEr6�@�цLMd�qm���D��ІL
+Md�q-��A�s\A24�5�	�!S@Ys�?2�3�5���m��>���φL�Ld�q�l�T�D�6�F�3��c<p�� ��ΆL�Ld�q�lȔ�D�wΆL�Ld�q�,��8�s\82�3�5�y�!S7Ys�62i3�5�a� g�d�q�l�D�D�'͆L�Ld�q�l���D��̂�-3�=�%�!2Ys�1qT�^�q�l�$�$�̂��2�=���!/Ys�.2�2�5�ݲ!�-Ys-r6�@�ˆL�Ld�q�l���D��ʆL�Ld�q�,��)�s\)2�2�5lj�!S(Ys�'2y2�5�q� g�d�a�l�&x=�Y�S%�Xs�$2I2�5�A� g�d�q�l���D��ȆL�Ld�q�l�d�D�Gȷ�K��O.s\ 22�5���!SYs�2�1�5�� gwd�qul�D�D�'džLqLd�qol���D���BLk`�ail��w=ƙ�S�Xs��F�*1�/�Ɨ�����x�����N	?7z�����#������3>�����8�����׿����˯������~ȍ�o�`s�G�{�������_6������cD��DΨ� g�B�tΠ��\:+5�3�=ȱ�RS;�ڃ�;+5�3�=�ɳQg�L�2�ճR�=�ڃ>+5�3�=���BG��f�q�l��?�r��$Ш� G�JM�jr�ԄШ� ��F�-4�� ��JM�jr��Ѩ� 7�JM�jrm��E��r�ԤѨ� ��JM�jr��Ҩ� '�F��4�� W�JM&�jb(��QJ�Ys�J+3�4�=ȹ�Qg/M�2�ŴR�L�ڃM+5�4�=�ݴRN�ڃ�Nu�Ӥ.�\O+5�4�=��RSP�ڃ�P+55�=��QgGM�2�%�R�R�ڃS+555�=�=�RT�ڃ�Tu6դ.�TU+s˪Q�ðZ���F�渭Vf�jD{��j�^�jP�A.�������Z���Q�A�����ڨ��&u��Z�ɭQ�A�������Z���Q�Aή�:�kR�A.�������Z���Q�A����۠i���9��92l$k�Cle��F���VjblT{�sl����e��l�&�F�9�Vj�lT{��l�&�F�9�6�l�I]��Vj�lT{�m���F���Vj"mT{�3m��N��e�Km�&�F�9�VjjmT{{m��`͚�dېi���9����l��p[�)�Q�An���x��|ۨ��&u�[�I�Q�A�������[�	�Q�AN��:[nR�A�������[�)�Q�An������[����u��n�&�F�9�Vj�nT{�n���͚��ۘ��&t��[�ɼQ�A�������[���Q�Aν�:{oR�A.�������[���Q�A�����ۨ��&u��[�ɿQ�A�����\���Q�A���:;pR�A.�����\��G��Wf�pD{��p��&��e��p�&G�9Wj�pT{��p�&G�97���I]�WjqT{�#q��G��WjBqT{�Sq��V��e�kq�&G�9Wj�qT{��q�&G�97���I]�W�H�Ѭ9�Ǖ�z��~\�	�Q�ANȍ:rR�A�ȕ����\�)�Q�Anɕ����\����u��r�&)G�9*Wj�rT{��r�&,G�9-7�l�I]�.Wj�rT{�s��0G��1Wj"sT{3s��3'��4W�H͑�9�͕�����|?�V�9~��8��Ow��������i�������z|fV�kw����Sv��.��b=?������p��ն�\�����������?~�O���7��Q�/V�>{C������wR�>{C�����x�{>9u|��epG=����U���P{pGG
��+	�� _IPj�$�ڃ|%A��+	���|%A����j���J�=�W��+	�� _I0꼒@�2�W��+	�� _IPj�$�ڃx%A��J�5�W�9�$����J�=�W��+	�� _IPj�$�ڃ|%���J�� _IPj�$�ڃ|%A����j���J�=�W�:�$�����J�=�W��+	�� _IPj�$�ڃ|%���J�� _IPj�$�ڃx%A��J�5�W��+	�� _I0꼒@�2�W��+	�� _IPj�$�ڃ|%A����j���+	�.�|%A����j���J�=�W��+	�� _I0꼒@�2�W��+	�� _IPj�$�ڃ|%A����j���+	�.�t%A�ە���J�Ǖk��$(3W�A�� �˕P�A����\I@��J�Rs%��+	J͕T{��$u^I u�+	J͕T{��$(5WP�A����\I@��J�Q�R�A����\I@��J�Rs%��+	J͕T{�$4W��9����q%ɚ�+	�̕D{��$(5WP�A��`�y%��e��$(5WP�A����\I@��J�Rs%��+	F�WH]�J�Rs%��+	J͕T{��$(5WP�A��`�y%��e��$(5WP�A����\I@��J�BǕ4k�$2W��9����\I@��J�Rs%��+	J͕T{��$u^I u�+	J͕T{��$(5WP�A����\I@��J�Q�R�A����\I@��J�Rs%��+	J͕T{��$�r%�u��$(5WP�A����\I@��J�BǕ4k��$s^I t�+	J͕T{��$(5WP�A����\I@��J�Q�R�A����\I@��J�Rs%��+	J͕T{��$u^I u�+	J͕T{��$(5WP�A����\I@��J�Q�R�A����\I@��J�BǕ4k��$(3W�A��`�y%��e��$(5WP�A����\I@��J�Rs%��+	F�WH]�J�Rs%��+	J͕T{��$(5WP�A��`�y%��e��$(5WP�A����\I@��J�Rs%��+	F�WH]�J�BǕ4k��$(3W�A����\I@��J�Q�R�A����\I@��J�Rs%��+	J͕T{��$�r%�u��$(5WP�A����\I@��J�Rs%��+	F�WH]�J�Rs%��+	J͕T{��$(5WP�A��`�\I ���J�"Ǖ$k��$(3W�A��@Ὸ���c��p�5�J���X�$�����Ϻ�JB>3�$܍+	�ǯ�I8������k��H�������7�]����������/�}��ڃ;�8(t܃@����3�=F{�A8u܃`���S�=V{�A(5� P]��S�=V{�A8u܃`���S�=V{�Auރ u�{N� X�A���q���{N� X�A���܃@u�{N� X�A���q���{��A�YsxB����2�� �:�A�ڃx©��=�� �:�A�ڃxB����2�� �:�A�ڃx©��=�� �:�A�ڃxB����2�� �:�A�ڃx©��=�� �:�A�ڃxB����2�� �:�A�ڃt¡�=6k�A8s܃`���Rs�e�A8u܃`���S�=V{�A8u܃`���Rs�e�A8u܃`���S�=V{�A8u܃`���Rs�e�A8u܃`���S�=V{�A8u܃`���Rs�e�A8����ct�=k�A8s܃`���Q�=R�A���q���{N� X�A���q���{J�=T�A���q���{N� X�A���q���{J�=T�A���q���{N� X�A���q���{
+� ��9�����5�� �9�A0ڃx©��=�� ��{�.�x©��=�� �:�A�ڃx©��=�� ��{�.�x©��=�� �:�A�ڃx©��=�� ��{�.�x©��=�� �:�A�ڃt¡�=6k��A(r܃@����3�=F{�A8u܃`���S�=V{�A(5� P]��S�=V{�A8u܃`���S�=V{�A(5� P]��S�=V{�A8u܃`���S�=V{�Auރ u�{N� X�A���q���{��A�YsxB����2�� �:�A�ڃx©��=�� �:�A�ڃxB����2�� �:�A�ڃx©��=�� �:�A�ڃxB����2�� �:�A�ڃx©��=�� �:�A�ڃxB����2�� �:�A�ڃt¡�=6k�A8s܃`���Rs�e�A8u܃`���S�=V{�A8u܃`���Rs�e�A8u܃`���S�=V{�A8u܃`���Rs�e�A8u܃`���S�=V{�A8u܃`���Rs�e��A8t��f��=g�{�� ރp��j�=���� ރp��j�=��{�� ރp��j�=��{���x©��=�� �:�A�ڃx©��=�� ��{�.�x©��=�� �:�A�ڃx©��=H� :�A��st‘�=&k�A8s܃`���8�}����g����=��=�ܟ�k�A??�p:ܿ�}����r�yQ=>��\݃8�"�O�_�����>�[O��+_������;�.�|�YO]}��z���z
+��zʨ��"u�zJ���P�A��:�)4k��)e��B���2꬧H]��Rj�)T{��)���B���Rj�)T{��)��z��e��)���B���Rj�)T{��)���B���2꬧H]��Rj�)T{��)���B���Rj�)T{��)��z��e��)en���cXO)p�S(��S�L=�hr=%�K=�:���RSO�ڃ\O)5��=���RSO�ڃ\Ou�S�.�\O)5��=���RSO�ڃ\O)5��=���Qg=E�2���RSO�ڃ\O)5��=���RSO�ڃXO4��=���"G=�d�q=���S�� �SJM=�jr=e�YO��r=���S�� �SJM=�jr=���S�� �SF���� �SJM=�jr=���S�� �SJM=�jr=e�YO��r=���S�� �SJM=�jb=��QO�YsXO2��=���2SO!ڃ\O)5��=���RSO�ڃ\Ou�S�.�\O)5��=���RSO�ڃ\O)5��=���Qg=E�2���RSO�ڃ\O)5��=���RSO�ڃ\O	�RO��r=���S�� �SJM=�jb=��QO�Ys\Os�S�.�\O)5��=���RSO�ڃ\O)5��=���Qg=E�2���RSO�ڃ\O)5��=���RSO�ڃ\Ou�S�.�\O)5��=���RSO�ڃ\O)5��=���Qg=E�2���RSO�ڃXO)t�Sh��S�L=�hr=e�YO��r=���S�� �SJM=�jr=���S�� �SF���� �SJM=�jr=���S�� �SJM=�jr=e�YO��r=���S�� �SJM=�jr=���S�� �SF���� �S
+��5���2SO!ڃ\O)5��=���Qg=E�2���RSO�ڃ\O)5��=���RSO�ڃ\O	�RO��r=���S�� �SJM=�jr=���S�� �SF���� �SJM=�jr=���S�� �SJM=�jb=e��Sd��S���5���2SO!ڃ\O�@�����SW_��[O��_YO=/��p�����U=u�i=���?�=��_������u�_������TUO������'��xx>�����j>������������"��e���+5O�Q�A~Z��<�G��i�R����F�O�I]�i�2���(^���z���(�?�Wf��#ڃ��^���������^�yZ�j��z��i=�=�O땚���� ?�7�|ZO�2�O땚���� ?�Wj�֣ڃ��^�yZ�j��z�Χ��.���^�yZ�j��z��i=�=�O땚���� >�7h�֓�s��^��i=�5�O땙���� ?�Wj�֣ڃ��ި�i=�� ?�Wj�֣ڃ��^�yZ�j��z��i=�=�O�:�֓���z��i=�=�O땚���� ?�Wj�֣ڃ��ި�i=�� ?�Wj�֣ڃ��^�yZ�j��z����h�>�7d���s��^�yZ�h��z��i=�=�O땚���� ?�7�|ZO�2�O땚���� ?�Wj�֣ڃ��^�yZ�j��z�Χ��.���^�yZ�j��z��i=�=�O땚���� ?���i=�� ?�Wj�֣ڃ��^�yZ�j��z����h�?�7�|ZO�2�O땚���� ?�Wj�֣ڃ��^�yZ�j��z�Χ��.���^�yZ�j��z��i=�=�O땚���� ?�7�|ZO�2�O땚���� ?�Wj�֣ڃ��^�yZ�j��z�Χ��.���^�yZ�j��z����h�?�Wf��#ڃ��ި�i=�� ?�Wj�֣ڃ��^�yZ�j��z��i=�=�O�:�֓���z��i=�=�O땚���� ?�Wj�֣ڃ��ި�i=�� ?�Wj�֣ڃ��^�yZ�j��z��i=�=�O�:�֓���z����h�?�Wf��#ڃ��^�yZ�j��z�Χ��.���^�yZ�j��z��i=�=�O땚���� ?���i=�� ?�Wj�֣ڃ��^�yZ�j��z��i=�=�O�:�֓���z��i=�=�O땚���� ?�Wj�֣ڃ��ޠyZOf���zE���H�?�Wf��#ڃ��~��zZ��c{Z�5�i���x����b���b�>����:��o��__~��|d<�ϣ�����������r�������O^�ߝv�2���_+��^��ު��O�ǧ����-��v�����Q��go�=��>^}��ڃ���?��[F�eu�Q�
+o��[��go�=�����V�>{C�������`K��go�=��z�����?�6��,����z:<?[u��
�w����I�k���
�w�����?�V���j~�>���:>��2�����l)u��
�w����E��go�=����}��ڃ����?�/��G����gp��������z�3�b���7��Q�O/�����j~��w��o8㳬.�;����d���7��Qw��os�7��Q��o8�7��<H�r�c�wj>��:����N�R�>{C�����p�$���7��Q�G�n�������[l���m.�eu�QO�Ǘ�n�������x8>[u��
�w�����f�}N��'�7�|��epG=�<Zu��
�w���ÝT���P{pG=�)ܟ��}��ڃ�����I�㳬.�;�����^��go�=������o8�7��Q�_��}��ڃ;?:{<|���'�eu�QO��g�7���j��Wx����E��g}����E��g}�:֗�e��W��Y_T{�W��g}Ѭ9�Y_e�g}�A�Y_�Ο�%u��Uj~����Uj~����Uj~����5��Y_R�A�Y_��g}Q�A�Y_��g}Q�A�Y_����=ȷ��:o����!����=ȷ����C�� �Rjn�ڃ|{Ȩ���� �R�v{��1�=��q{Ś��C���!D{�o	�r{�u�o)5��P�A�=���B����Rs{���CF���H]���Rs{���CJ��!T{�o)5��P�A�=d�y{��e�o)5��P�A�=���B����Rs{���C��!2{o)r�B�����2s{���CJ��!T{�ou�"u��CJ��!T{�o)5��P�A�=���B����Q��!R�A�=���B����Rs{���CJ��!T{�ou�"u��CJ��!T{�o)5��P�A�=��q{͚��C���!"{�o)3���A�=���B����Rs{���CF���H]���Rs{���CJ��!T{�o)5��P�A�=d�y{��e�o)5��P�A�=���B����Rs{���CB��u��CJ��!T{�o)5��P�A�=��q{͚��CƜ��]���Rs{���CJ��!T{�o)5��P�A�=d�y{��e�o)5��P�A�=���B����Rs{���CF���H]���Rs{���CJ��!T{�o)5��P�A�=d�y{��e�o)5��P�A�=��q{͚��C���!D{�ou�"u��CJ��!T{�o)5��P�A�=���B����Q��!R�A�=���B����Rs{���CJ��!T{�ou�"u��CJ��!T{�o)5��P�A�=���B����Q��!R�A�=��q{͚��C���!D{�o)5��P�A�=d�y{��e�o)5��P�A�=���B����Rs{���CB��u��CJ��!T{�o)5��P�A�=���B����Q��!R�A�=���B����Rs{���CJ��!T{o4����9�=��q{ɚ��C���!D{�o��Q���{l����������#�:=����Nm���N��п�����_��p1�L���j��ǿJ/�}�9=4����y.�����|�p,�Ț�S1�̥"k���r�����H�!s#�Ț�1�́"k���2�a��9�
#�yȞ��0��]"k���2Ga��9>	c�\�!����s��c0�-k�/�2�`��9>c�\�!���� �	 {��2�_��9��b�!����!s��Ț�/���ٗ}r��/���"k�/�2_��9>�b�\{!���֋ � {��2w^��9��b�y!���ċDž�������y{���2�]��9��b�v!�����!sՅȚ�.��']��9>�b��s!�����!s̅Ț�S.��%"k��r�q�����!sÅȚ�.��"k�Ϸ2�[��9��"�y�Ȟ��-���"k��qm!�z�O�0[H�9��"�y�Ȟ�c-�̭"k�/�2�Z��9>�b�\i!���F� � {��2�Y��9��b�g!���4�!s��Ț�,��gY��9>�b��d!���"�!s��Ț�s,��5"k�o�r�b�����;,�]M���#,�]��	��5��Wn���+��2��W��+D�_^1d�Ys|vŐ��Bd���AΓ+@�\1d�Ys|mŐ9�Bd��C��
+�5�wV9Ϭ��s|dŐ��Bd��C��
+�5��U��*D��VbN��XcxX�x�
+y�c|Uŀ9�Bb��IC�
+�5��T9ϩ��s|LŐ��Bd��%C�
+�5�gT�+*D��P�<�d��C�~
+�5��S��)D��N1d.�Ys|7E��l
+�=�GS��)D�_L1d�Ysx.ň�Z
+��cx+Ex9�^���N
+�5�WR�#)D��H1d.�Ys|E��<
+�=��Q��(D�_F1d�Ys|Ő��Bd��MAΓ(@�D1d�Ys|
Ő9�Bd��)C�
+�5�wPn��3(��2�GP�(D�_@1d�Ysx�Ĉ��	��c|�D���	�=LJO��'D�_=1d��Ys|�Đ�xBd��A�s'@�;1dn�Ys|�Đ9tBd��C��	�5�7N9O���s|�Đ�oBd��uC�	�5ǧM��&D��5�<kd��QC�	�5�M�8�x=��L�k&$��2�<ed��!C�	�5�WL�#&D��01d.�Ys|�D��|	�=��K��%D�_.1d�Ys|�Đ�ZBd���AΓ%@�,1d�Ys|�Đ9VBd��C�R	�5�wJ9ϔ��sx�Ĉ�F	��c|�Ā9PBb��yC�:	�5ǷI9O���s|�Đ�KBd��UC�(	�5�'I��$D��#�M^Α��#1dn�Ys|�Đ9DBd��C�
+	�5�7H9O���s|�Đ�?Bd���C���5ǧG��#D��bΎ�Xcxt�x��y�c|qĀ98Bb����!��З؎�\�����/���������޷�y��U�������ϑl�c�O��|f�9��#�������������_>V�_o��za>�E{z���vI��k�������/7�=��Rr�ڃ�r+5-7�=�5�P/97�� �JMэjrӭ�Dݨ� g�JM׍jr�mԙv��rܭ��ݨ� ��JM��jb���x�Ys\ysfބ.�z+5�7�=ȭ�R{�ڃ�{+5�7�=�ŷQg�M�2�ѷRS}�ڃ�}+5�7�=��R�~�ڃ\u�ߤ.��+58�=�
�R��ڃ��+58�=�%�Qg
+N�2�1�RS��ڃ؃+t�h�'��L�hrnԙ���r�Ԕ�� ��JM�jr����� �F��8�� G�JM%�jr'�Ԅ�� ��JM+�jr-nԙ���r0���� 7�JM4�jr6��t�� ��F��8�� �����q�ǰW��Q�9Nȕ����\����u�Cr��$G��%WjbrT{�sr��'G��(7�L�I]9*Wj�rT{��r�&,G�9-Wj�rT{��r�μ��e�s��0G��1Wj"sT{�3s��3G��47hRs2{csE��ɚ��\�	��ANΕ�����ܨ3;'u��\�)�Q�Anϕ�����\���Q�A.Ѝ:tR�A�Е�
+��]�	�Q�ANѕ���ݨ3G'u� ]�)�Q�Anҕ�(��,]��KG��L7d�t"{��te�NG��OWjuT{�u��QG��R7���I]9TWjJuT{�[u�&VG�9WWjzuT{��u��d��e��u��ZG��[Wj�uT{��u��]G��^�%_u�]�)�Q�Anؕ���Č]��cG��d7�L�	]9fWjjvT{�{v�&hG�9iWj�vT{��v�ά��e��v��lG��mWj�vT{��v��oG��p7�L�I]9rWj*wT{�;w�&tG�9uWjZwT{�kw��ܝ�e��w��xG��yW��Ѭ9�ޕ�����ݨ3}'u��]���Q�A�ߕ����^�i�Q�A���:3xR�Aᕚ��^���Q�A�ᕚ��"ި3�'u�(^���Q�A�╚0��4^�i�Q�A��:�xR�A�:
+y4k�ye&�G�9�Wj:yT{�Ky��T��e�cy���G���Wj�yT{��y���G����%�u�p^�)�Q�An畚x��|^���Q�A.�:zR�A�蕚���^�	�Q�AN镚��Ěޠ����9�9�z$k��ze&�G�9��D\t��=����k<=����cI�7�����=���.���33��i������o��}�����|��������twY��/������X�7����7�O,?~H,Q�AN,������Ҩ3�$u��R�I,Q�AN,������R�I,Q�AN,�:KR�AN,������R�I,Q�AN,������Ҩ3�$u��R�I,Q�AL,:K4k�Ke&�D�9�4�L,I]9�TjKT{�K�&�D�9�TjKT{�K��Ē�e�K�&�D�9�TjKT{�K�&�D�9�4�L,I]9�TjKT{�K�&�D�9�TjKT{�K��Ē�e�Ken�%��c�X*p$�(�'��Lb�hrb)�Kb	�:ȉ�R�X�ڃ�X*5�%�=ȉ�R�X�ڃ�Xu&��.��X*5�%�=ȉ�R�X�ڃ�X*5�%�=ȉ�QgbI�2ȉ�R�X�ڃ�X*5�%�=ȉ�R�X�ڃ�X4�%�=���"Gb�d�qb��$��� '�JMb�jrbiԙX��rb��$��� '�JMb�jrb��$��� '�F��%�� '�JMb�jrb��$��� '�JMb�jrbiԙX��rb��$��� '�JMb�jbb�БX�Ys�X2�%�=lj�2�X"ڃ�X*5�%�=ȉ�R�X�ڃ�Xu&��.��X*5�%�=ȉ�R�X�ڃ�X*5�%�=ȉ�QgbI�2ȉ�R�X�ڃ�X*5�%�=ȉ�R�X�ڃ�X
+��X��rb��$��� '�JMb�jbb�БX�Ys�Xs&��.��X*5�%�=ȉ�R�X�ڃ�X*5�%�=ȉ�QgbI�2ȉ�R�X�ڃ�X*5�%�=ȉ�R�X�ڃ�Xu&��.��X*5�%�=ȉ�R�X�ڃ�X*5�%�=ȉ�QgbI�2ȉ�R�X�ڃ�X*t$�h�'��Lb�hrbiԙX��rb��$��� '�JMb�jrb��$��� '�F��%�� '�JMb�jrb��$��� '�JMb�jrbiԙX��rb��$��� '�JMb�jrb��$��� '�F��%�� &�
+�%�5lj�2�X"ڃ�X*5�%�=ȉ�QgbI�2ȉ�R�X�ڃ�X*5�%�=ȉ�R�X�ڃ�X
+��X��rb��$��� '�JMb�jrb��$��� '�F��%�� '�JMb�jrb��$��� '�JMb�jbbi�$�d�&���%�5lj�2�X"ڃ�XR'(K�[by�5 �����׋�#�;=`a9>2�ӧ���ן~��ן?�w���^������y������\}�ݺ��؏+��9L+9�J$k�JC&�$��0�T�h*��9,*9�J$ksJE��ɚÖҐI)��9)9:J$k+JE��ɚÄR���D�氟4d�I"{�IE�vɚ�rR�[8���f�
+�$�5�ͤ!�L�sL*r��H�֒��$�5���"G)�d�a'i�d�D�F���$�5���"G �d�a��QG"Ys�F2i$�=�a�"G�d�a��E"Ys�D*r�H����LId�A�����)*!�����]�a��QA�Xs�@
+r&�@.s@*r�H�֏��#�5��"G��d�a�h�d�D�F���#�5�ţ"G��d�a��Q;"Ys�:2�#�=���"G�d�a��9"Ys�8*r�H���Fy#�5Fq����1,8�Fk�FE��ɚæѐI��99zF$kkFE��ɚÔQ��dD��c4d2F"{#FE��ɚÂQ�#`D��0_T���9l
�t�Ȟ�pQ��[D��ZT���9J���^�Q�h��+�Wc+*p��(�����"�5���"G��d�a�h�$�D���}"�5�u�"G��d�a���Q&"Ys�%2Y"�=�Q�"G��d�a���$"Ys�#*rԈH�����)"�����"�5��"G��d�Q��ĭ@D�z�C&?$��0>T�h��9,9�C$k�CE��ɚ��АI��99zC$kkCE��ɚ��P��4D��34d2C"{#CE��ɚ��P�#0D��0/T���9l
���ȞðP��+D��*T�"x=�I�GQ�b�aOh��D�Ƅ�-!�5�%�"GH�d�aF��Q"Ys�2	!�=��"G?�d�a=��"Ys�*r��H�v��L6Hd�a4���"YsX*r�H�悊� �5���!�
+�s
+*q���JP�#D��0T�(��9�
�<�Ȟ�8P��
D��T���9�9�@$k�@A�$�e�@E�ɚ�P�#D��0T�(��9��
��Ȟ�P��D���T����9��9�?$k��?#�����Oy[����V
+��5���~�f�?���������8�{����{�������>�t<<����~x>^�÷�`=�����ߌO�}��}��6��H����endstream
+endobj
+1652 0 obj <<
+/Type /Page
+/Contents 1653 0 R
+/Resources 1651 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 1218 0 R
+/Annots [ 1655 0 R 1656 0 R 1657 0 R 1658 0 R 1659 0 R 1660 0 R 1661 0 R 1662 0 R 1663 0 R 1664 0 R 1665 0 R 1666 0 R 1667 0 R 1668 0 R 1669 0 R 1670 0 R 1671 0 R 1672 0 R 1673 0 R 1674 0 R 1675 0 R 1676 0 R 1677 0 R 1678 0 R 1679 0 R 1680 0 R 1681 0 R 1682 0 R 1683 0 R 1684 0 R 1685 0 R 1686 0 R 1687 0 R 1688 0 R 1689 0 R 1690 0 R 1691 0 R 1692 0 R 1693 0 R 1694 0 R 1695 0 R 1696 0 R 1697 0 R 1698 0 R 1699 0 R 1700 0 R 1701 0 R 1702 0 R 1703 0 R 1704 0 R 1705 0 R 1706 0 R 1707 0 R 1708 0 R 1709 0 R 1710 0 R 1711 0 R 1712 0 R 1713 0 R 1714 0 R 1715 0 R 1716 0 R 1717 0 R 1718 0 R 1719 0 R 1720 0 R 1721 0 R 1722 0 R 1723 0 R 1724 0 R 1725 0 R 1726 0 R 1727 0 R 1728 0 R 1729 0 R 1730 0 R 1731 0 R 1732 0 R 1733 0 R 1734 0 R 1735 0 R 1736 0 R 1737 0 R 1738 0 R 1739 0 R 1740 0 R 1741 0 R 1742 0 R 1743 0 R 1744 0 R 1745 0 R 1746 0 R 1747 0 R 1748 0 R 1749 0 R 1750 0 R ]
+>> endobj
+1655 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [71.731 155.188 143.421 164.075]
+/Rect [71.731 706.321 143.421 715.208]
 /Subtype /Link
 /A << /S /GoTo /D (using) >>
 >> endobj
-1588 0 obj <<
+1656 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 155.188 537.983 164.075]
+/Rect [528.02 706.321 537.983 715.208]
 /Subtype /Link
 /A << /S /GoTo /D (using) >>
 >> endobj
-1589 0 obj <<
+1657 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 141.768 162.331 148.623]
+/Rect [95.641 692.902 162.331 699.756]
 /Subtype /Link
 /A << /S /GoTo /D (using-intro) >>
 >> endobj
-1590 0 obj <<
+1658 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 141.768 537.983 148.623]
+/Rect [528.02 692.902 537.983 699.756]
 /Subtype /Link
 /A << /S /GoTo /D (using-intro) >>
 >> endobj
-1591 0 obj <<
+1659 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 126.76 218.489 135.671]
+/Rect [95.641 677.893 218.489 686.804]
 /Subtype /Link
 /A << /S /GoTo /D (myaccount) >>
 >> endobj
-1592 0 obj <<
+1660 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 126.76 537.983 135.671]
+/Rect [528.02 677.893 537.983 686.804]
 /Subtype /Link
 /A << /S /GoTo /D (myaccount) >>
 >> endobj
-1593 0 obj <<
+1661 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 113.808 186.958 122.72]
+/Rect [95.641 664.942 186.958 673.853]
 /Subtype /Link
 /A << /S /GoTo /D (bug_page) >>
 >> endobj
-1594 0 obj <<
+1662 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 113.808 537.983 122.72]
+/Rect [528.02 664.942 537.983 673.853]
 /Subtype /Link
 /A << /S /GoTo /D (bug_page) >>
 >> endobj
-1595 0 obj <<
+1663 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 100.857 192.209 109.768]
+/Rect [95.641 651.99 192.209 660.902]
 /Subtype /Link
 /A << /S /GoTo /D (lifecycle) >>
 >> endobj
-1596 0 obj <<
+1664 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 100.857 537.983 109.768]
+/Rect [528.02 651.99 537.983 660.902]
 /Subtype /Link
 /A << /S /GoTo /D (lifecycle) >>
 >> endobj
-1500 0 obj <<
-/D [1498 0 R /XYZ 71.731 729.265 null]
->> endobj
-1497 0 obj <<
-/Font << /F27 1208 0 R /F32 1215 0 R /F35 1569 0 R /F33 1306 0 R >>
-/ProcSet [ /PDF /Text ]
->> endobj
-1646 0 obj <<
-/Length 57375     
-/Filter /FlateDecode
->>
-stream
-xڜ�O�d�}%���e�����K�$㌍��Lf�=�B��@�� R�^���s3��x�,oܣ*�Nt������������n��/��LJ�~����|������;�'�O���?��/�����tw��onoN/��ϼ<����t�={���������?�>}�rzy�����n<�G~����������}���_>���O���������/�?��_���������������1_��{#[?��t��x��9�|�W���桷���ܝ���.}����+�X�o��^Z�g�Xx`}>==<H���k/Zoo����Y�,ZW��u���u������k�}����+�X���l���W�
�l=o_�ͳ��gٺ��w�Ǘiݟ�bm�����%KZ�g�Xx`}>=���o�^q���|:?��s<��x`ݾ�Gkݟ�bm��u���κ?{�����-��I���k/[ﶯ�NZdzl]���k������+�X���,��g�Xx`ݾ�kݟ�bm�e���t�"̍gٺ��w��g�g<{��������Z�g�Xx`}>=ؿ
-�g�Xx���}
��x�����}
�ֺ?{�����5ȿH�^q�@�}w��x��������wp+��Y�.����叹��k�۷pc���W�
<�>��_䏹��k/[����~��ϲuX�N�Oֺ?{��������17��bm��u�䏹��k/[����^Zdzl]���k��?�ƳW�
<�n_í�17��bm��u��ֺ?{����֗�k��?�Ƴl]���k�ίO^1���N�oY�G�w����g�n<{E���ֻ�����Q�gѺ�w��Gkݟ�bm��u��u������_t���+�^�����NZdzl]���k�}����+�X����(���W�
<�n�⍵��^�6�������~��Y�.���i�� ���W�
<�>����u��������㋴��^�6��n�俙�G�ٸ����[���,܁r���ҹ?{E�����ɟ6��+�^��o_����gٺ��۷p�?�ƳW�
<�n_��c�<{�������b���W�
�l}�9=>���ϲuX�Ng����k���Gkݟ�bm��u��ϸ��k/[���^��ϲuX����Z�g�Xx`ݾ�[�3n<{�����5ȿ �^q��i��ϛ�QV6�@�}7ֹ?{E������E��g�Xx`}>�<[���k/[�oNrv�gٺ��w�9;ɳW�
<�n_���^�6���}
rv�g�Xx���}
w�:�e�<�n_í�7��bm��u���$�^�6���}
7ֺ?{�������������gѺ����gxy����և������^�6���t�(0��,�e�y���<��x`ݾ�kݟ�bm��u��o�u������[���<{�������k����,[��u���Һ?{�����5��I��bm������b���W�
�l��9�=�sy����z{z���<{��������Z�g�Xx`ݾ��cn<{�������k���<��x`ݾ�;kݟ�bm��u��_��G�8w�ܾ9;ɳW�
�l}ؾ����gٺ���w g'y����ևӭ����+�X�NO�ֺ?{�����Ǜӭ���Y�.����I�N��k����`���W�
<�n_�����+�^�>m_����Y�.���5�Z���k��� g'y������k���<{�������Yy����z{z��o�^q�@�p:��I��"m������d���W�
�l}پ9>ɳl]���[��<{�����5�[���k��� �'y�����7�� ��<��x`ݾ�����^�6���}
r|�g�Xx`}:=�?gʳW�
�l=ߜnd0�gٺ����9>ɳW�
<�>�n�u������k��D��bm�e���5����eg���wp/����,܁r�d-�g�Hx`ݾ���<����D����t�o��3o?�����{:�\�۬7v�|������G��������o��=n?�^n/��<���<��~���?~�������/_~�� ��{�y��v�x>�}�Y2}�<��cf�>�q���b���ɒѺ�1Kv֑%����%;�Ȓ��@ʒ�tϒ�Y8̒�3Y2J f��:�d�6�dgY2[�Y���,��
�,YY�%�ub��#Kfk1Kv֑%����%;�Ȓ��@̒�5Y2Z f��:�d�6�dgY2[�Y���,��
�,YY�%�ub��#Kfk)Kv�=Kfg�0KvΑ%����%+k�d�.@̒�ud�lm f��:�d�6�dgY2[�Y��&KF��,�YG���b��#Kfk1Kv֑%����%+k�d�.@̒�ud�lm f��:�d�6�dgY2[�Y��&KF��,�9�e�l|�,�	�,����,�9G���b�l�3K&�
-�,�YG���b��#Kfk1Kv֑%����%+k�d�.@̒�ud�lm f��:�d�6�dgY2[�Y��&KF��,�YG���b��#Kfk1Kv֑%����%+�Ȓ��8ʒ�rϒYY8̒�sd�,m f��:�d�6�deM����Y���,��
�,�YG���b��#Kfk1KV�d�h]��%;�Ȓ��@̒�ud�lm f��:�d�6�deM����Y���,��
�,�YG���R��{����Q���#KFe�0KvΑ%����%;�Ȓ��@̒�ud�lm f�ʚ,��dgY2[�Y���,��
�,�YG���b���ɒѺ�1Kv֑%����%;�Ȓ��@̒�ud�lm f��:�d��@̒�ud�lm f��:�d�6��d'ݳdv�d�L����Y���,��
�,�YG���b��#Kfk1KV�d�h]��%;�Ȓ��@̒�ud�lm f��:�d�6�deM����Y���,��
�,�YG���b��#Kfk1KV�d�h]��%;�Ȓ��@ʒ�tϒ�Y8̒�sd�,m f�ʚ,��dgY2[�Y���,��
�,�YG���b���ɒѺ�1Kv֑%����%;�Ȓ��@̒�ud�lm f�ʚ,��dgY2[�Y���,��
�,�YG���b���ɒѺ�)Kv�=Kfg�0KvΑ%����%;�Ȓ��@̒�5Y2Z f��:�d�6�dgY2[�Y���,��
�,�Xg�L��Y���,��
�,�YG���b��#Kfk1KV�d�h]��%;�Ȓ��@̒�ud�lm f��:�d�6��d%Y2:GY�S�Y2+�Y�s�,��
�,���Y2�oϼ���GY2|��ܽ�o�5Y���~o?rN��~o�a���|9K��,9a�����a������㗿~�����b��������������k�w(o>�q����@���r���	P��@P�5
-Z��������eM���r���	P��@P�5
-Z��������eM���r���	P��@P�5
-Z����������4��a���#@Ac�8@Q�((m (����ur���	P��@P�5
-Z���&@Ak9@1���ur���	P��@P�5
-Z���&@Ak9@1���ur���	P��@P�5
-Z���&@Ak1@1�(�l(J9T��L���r���	P��@P�u(d]��(k�6�eM���r���	P��@P�u(d]��(k�6�eM���r���	P��@P�u(d]��(k�6�eM���b���#@Ag�0@1�(�l(ʙ��
��EY�����(k�6�c�
-Y (ʚ��
��EY�����(k�6�c�
-Y (ʚ��
��EY�����(k�6�a}
P��9@Q�(hm (ʚ��
��EIG����q�b�3@!���EY�����(k�6�eM���r�b�3@!���EY�����(k�6�eM���r�b�3@!���EY�����(k�6�eM���r�b�3@!���EY�����(�P�Y8P�3
-J��������eM���r���	P��@P�5
-Z��������eM���r���	P��@P�5
-Z��������eM���r���	P��@P�5
-Z�������%
-:��r&@Ai9@Q�(hm (�:�.@P�5
-Z���&@Ak9@Q�(hm (����ur���	P��@P�5
-Z���&@Ak9@1���ur���	P��@P�5
-Z���&@Ak1@1�(�l(J9T��L���r�B�P�s�ʛ����X��+����������k�r;�������?�����������7r�������J��|g|��ζ7���m�?��
�
�w�)�xg:��l3���6�.@~g���mhm ��MY��6�6��٦�ygZ��l3���6�.@~g���mhm ��MY��6�6��٦�ygZ��l3���6�.@~g���mhm ��MY��6�6��٦�ygZ��l3���6�.@~g���mhm ��MI�;��Y8~g�r�m(m ���Xg2K��ɬ�&�Ek9�U�$�hm '�ʚd�
�d�Xg2K��ɬ�&�Ek9�U�$�hm '�ʚd�
�d�Xg2K��ɬ�&�Ek9�U�$�hm '�ʚd�
�d�Xg2K�Hɬr��,��0�U‘̢�p��*g�Y�6��Ya}Mf��9�U�$�hm '�ʚd�
�dVY�̢�����Lfɺ�9�U�$�hm '�ʚd�
�dVY�̢�����Lfɺ�9�U�$�hm '�ʚd�
�dVY�̢����i�Yr6�Y��,*�ɬr&�Ei9�U�$�hm '��:�Y�.@Nf�5�,Z�ɬ�&�Ek9�U�$�hm '��:�Y�.@Nf�5�,Z�ɬ�&�Ek9�U�$�hm '��:�Y�.@Nf�5�,Z�ɬ�&�Ek1�Uґ̢�p��e�YR6��Y�L2��r2��If��@Nf�5�,Z�ɬ��d����YeM2��r2��If��@Nf�5�,Z�ɬ��d����YeM2��r2��If��@Nf�5�,Z�ɬ��&�`]���*k�Y�6��YeM2��b2��#�Eg�8�5Ι̒tr2��If��@Nf�5�,Z�ɬ�&�Ek9�5֙̒ur2��If��@Nf�5�,Z�ɬ�&�Ek9�5֙̒ur2��If��@Nf�5�,Z�ɬ�&�Ek9�5֙̒ur2��If��@Lf�t$��,'�ʙd�
�d�Xg2K��ɬ�&�Ek9�U�$�hm '�ʚd�
�d�Xg2K��ɬ�&�Ek9�U�$�hm '�ʚd�
�d�Xg2K��ɬ�&�Ek9�U�$�hm '�ʚd�
�d�Xg2K��ɬ��d���dV9�̢����*k�Y�6��Yc��,Y '�ʚd�
�dVY�̢����*k�Y�6��Ya}Mf��9�U�$�hm '�ʚd�
�dVY�̢�����Lfɺ�9�U�$�hm '�ʚd�
�dVY�̢����i�Yr6�Y��,*�ɬr&�Ei9�=�?U2��cOf�|Hf�?���ζ�����3'���d�n$������/��������_��z�E��_˽�֏s{���=�fg(�t�bo>�q(���@(��r(��	���@Ŕ5�Zȡ���P���C1eM(��b(��#Cg�8S΄b(m �b�:C1�.@Ŕ5�Zȡ��&Ck9Sքbhm �b�:C1�.@Ŕ5�Zȡ��&Ck9Sքbhm �b�:C1�.@Ŕ5�Zȡ��&Ck9Sքbhm �b�:C1�.@
-Ŕs�������P���PL9�����	�k(�ȡ��&Ck9Sքbhm �bʚP�
�P�Xg(F�ȡ��&Ck9Sքbhm �bʚP�
�P�Xg(F�ȡ��&Ck9Sքbhm �bʚP�
�P�H���q�)��PY8Ŕ3�Jȡ��&Ck93���ur(��	���@Ŕ5�Zȡ��&Ck93���ur(��	���@Ŕ5�Zȡ��&Ck93���ur(��	���@Ŕ5�Z�����P���P�(���q�)gB1�6�C1eM(��r(��	���@Ōu�bd]��)kB1�6�C1eM(��r(��	���@Ōu�bd]��)kB1�6�C1eM(��r(��	���@ń�5�
-�PLY�����)kB1�6C1%�:ǡ�q�P���C1eM(��r(��	���@Ŕ5�Zȡ���P���C1eM(��r(��	���@Ŕ5�Zȡ���P���C1eM(��r(��	���@Ŕ5�Zȡ���P���C1eM(��b(��#Cg�8S΄b(m �b�:C1�.@Ŕ5�Zȡ��&Ck9Sքbhm �b�:C1�.@Ŕ5�Zȡ��&Ck9Sքbhm �b�:C1�.@Ŕ5�Zȡ��&Ck9Sքbhm �b�:C1�.@Ŕt�b�,�bʙP�
�PLY�������Ⱥ�9Sքbhm �bʚP�
�PLY�����	�k(�ȡ��&Ck9Sքbhm �bʚP�
�P�Xg(F�ȡ��&Ck9Sքbhm �bʚP�
�P�H���q�)��PY8Ŕ3�Jȡ�q��B1�{(��c<��bǟ�7�����ݕP������'���Pl<�g��͊��_?��o�~����~������������a7练߯�������Go<��������׿�y�A.X�g�Xxy{|s>��;k�E�
-<�ޝ���u������k��79ʺ?{�����5��u����o�ܾ��ggϲuX��C�5�#Ek�}�ʚ������>R%�#Eg��}��9�GJ���#Uּ��
���*k�G����H�5�#Ek�}��:�GJ���#Uּ��
���*k�G����H�5�#Ek�}��:3s�.@�̕5�9Zș��&3Gk93W�d�hm g��:3s�.@�̕5�9Z����������\9����������ɺ�93W�d�hm g�ʚ��
��\Y����������ɺ�93W�d�hm g�ʚ��
��\Y����������ɺ�93W�d�hm g�ʚ��
��\Y����������ɺ�)3W�=3G�[f�J82s4�3s�Lf��rf.���9XW g�ʚ��
��\Y�������+k2s�6�3sc��9Y g�ʚ��
��\Y�������+k2s�6�3sc��9Y g�ʚ��
��\Y�������+k2s�63s#MfN��af��#3Ge�83W�d�(m g�ʚ��
���XgfN�ș��&3Gk93W�d�hm g�ʚ��
���XgfN�ș��&3Gk93W�d�hm g�ʚ��
���XgfN�ș��&3Gk93W�d�hm f�J:2st3s�LfN��qf����Q�@�̕5�9Zș��&3Gk937֙��urf������@�̕5�9Zș��&3Gk937֙��urf������@�̕5�9Zș��&3Gk93����+�3seMf��rf������@�̕td��,g��93s�.@�̕5�9Zș��&3Gk93W�d�hm g��:3s�.@�̕5�9Zș��&3Gk93W�d�hm g��:3s�.@�̕5�9Zș��&3Gk93W�d�hm g��:3s�.@�̕5�9Z����������\9����������ɺ�93W�d�hm g�ʚ��
��\Y����������ɺ�93W�d�hm g�ʚ��
��\Y����������ɺ�93W�d�hm g�ʚ��
��\Y����������ɺ�13Wґ���p��+g2s�6�3seMf��rfn�33'���\Y�������+k2s�6�3seMf��rf.���9XW g�ʚ��
��\Y�������+k2s�6�3sc��9Y g�ʚ��
��\Y�������+k2s�63s#MfN��af��#3Ge�83W�d�(m g��ٴ���s��������X2��+��������3��L2����y�������!=o�1�۟�����=?�����N���6�>�x��'|_�??��nΗ>����k�ϧ��[iݟ�bm�AU>�>�9�x����zwzz����+�XǙe���6��(k����|�@X_��u��e���6��(k����|�@Ys���
��:��u��e���6��(k����x�@I��t���[@��w�5w��@�[���[����e���6���[@��w�5w��@�[���[����e���6���[@��w�5w��@�[���[����e���6���[@��w�5w��@�[���n:�w�3wP�@�[`��nY �-P��-@k�n���nZ�w�5w��@�[`��nY �-P��-@k�n���nZ�w�5w��@�[`��nY �-P��-@k�n���nZ�w�5w��@�[`��nY �-P��n���n���h,�-P��-@i�n����-��
-�ʚ�hm �-P��-@k�n���nZ�w�u�- ��ʚ�hm �-P��-@k�n���nZ�w�u�- ��ʚ�hm �-P��-@k�n���nZ�w�4w��8�[���n*�w�3wP�@�[���[����c�wȺ��n���nZ�w�5w��@�[���[����c�wȺ��n���nZ�w�5w��@�[���[����c�wȺ��n���nZ�w�5w��@�[���n:�w�2wH�8�[���[����e���6��(k����|��X���.@�[���[����e���6��(k����|��X���.@�[���[����e���6��(k����|�@X_��u��e���6��(k����x�@I��t���[@��w�5w��@�[���[����e���6���[@��w�5w��@�[���[����e���6���[@��w�5w��@�[���[����e���6���[@��w�5w��@�[���n:�w�3wP�@�[`��nY �-P��-@k�n���nZ�w�5w��@�[`��nY �-P��-@k�n���nZ�w�5w��@�[`��nY �-P��-@k�n���nZ�w�5w��@�[`��nY �-P�q�����ʙ�(m �-P��-@k�n��λd]�|�@Ys���
�ʚ�hm �-P��-@k�n����-��
-�ʚ�hm �-P��-@k�n���nZ�w�u�- ��ʚ�hm �-P��-@k�n���nZ�w�4w��8�[���n*�w�3wP�@�[@��[��c�[��c�݂�ϱ�-8_�[��;������gr��~�-���׏�~��_>����������—�u������?�����?�?��|�ן}��~���ͫ��g>o������u�
��9�~��9�c�� 0�&��9�r�sl4���[	����9�rf����[X_��`]�<�V�̱��@�c+k��hm ϱ�5sl�6����:��d]�<�V�̱��@�c+k��hm ϱ�5sl�6����:��d]�<�V�̱��@�c+k��hm ϱ�5sl�6��F�969�sl�slT���ʙ96J�sle��
�9���96Y ϱ�5sl�6���ʚ96Z�sle��
�9���96Y ϱ�5sl�6���ʚ96Z�sle��
�9���96Y ϱ�5sl�6���ʚ96Z�sl%slt��F�96)�sl���
�9��f����[Y3�Fky�m�s�M��sle��
�9��f����[Y3�Fky�m�s�M��sle��
�9��f����[Y3�Fky�-��sl��@�c+k��hm ϱ�5sl�6��J:���,ϱ�sαI��y����c���<�V�̱��@�c+k��hm ϱ�uαɺ�y����c���<�V�̱��@�c+k��hm ϱ�uαɺ�y����c���<�V�̱��@�c+k��hm ϱ�uαɺ�y����c���8�V�1�Fg�x����c���<�6�9�&��9��f����[Y3�Fky����c���<�6�9�&��9��f����[Y3�Fky����c���<�6�9�&��9��f����[Y3�Fky����c���<�6�9�&��9���96:�sl���
�9��f�����X������ʚ96Z�sle��
�9��f����[X_��`]�<�V�̱��@�c+k��hm ϱ�5sl�6����:��d]�<�V�̱��@�c+k��hm ϱ�5sl�6��F�969�sl�slT���ʙ96J�s�㹰�c�����o>̱�?Ƿ?���'�������-����������}��8�����������燗��?�z忟W����!�x>�}�c:�|y��|�֯ǻ���år��?{��������QZ�g�Xx`}�~ϟ�u������O��� ��Y�.���5|�(���k�����OՔu������k�����+��q�n�t���;P��B*g^3���k&�5��Dk�5�ʚ�L�����Ic���$���L*k^3���k&�5��Dk�5�ʚ�L�����Ia}}�$XW �fRY�I�6�_3��y�$Zȯ�Tּf�
��L�|�$Y �fRY�I�6�_3��y�$Z���T��It�_3i��5�$]���Ie�k&��@~ͤ��5�hm �fRY�I�6�_3i��5�d]���Ie�k&��@~ͤ��5�hm �fRY�I�6�_3i��5�d]���Ie�k&��@~ͤ��5�hm �fRY�I�6�_3i��5�d]���Ie�k&��@|ͤ���L��p��I��k&Q�@~ͤ���L�u�k&�5��Dk�5�ʚ�L�����Ie�k&��@~ͤ���L�u�k&�5��Dk�5�ʚ�L�����Ie�k&��@~ͤ���L�u�k&�5��Dk�5�ʚ�L�����Ie�]�6���kB�HwM�s�k�Ʒ0�k���	�wM�3wMP�@�k"��wM�������	Z�wM�5wM��@�k���k���]c�wMȺ������	Z�wM�5wM��@�k���k���]c�wMȺ������	Z�wM�5wM��@�k���k���]#�]r6�(�k����]��]�6��(k��|��X�]�.@�k���k���]e�]�6��(k��|��X�]�.@�k���k���]e�]�6��(k��|��X�]�.@�k���k���]e�]�6�(�k����]��]R6��(g��|�DYs��
�&ʚ�&hm �51�yׄ���(k��|�DYs��
�&ʚ�&hm �51�yׄ���(k��|�DYs��
�&ʚ�&hm �5�׻&`]�|�DYs��
�&ʚ�&hm �5Q�q����&�9t�]e�]�6��(k��|�DYs��
�&�:u�]e�]�6��(k��|�DYs��
�&�:u�]e�]�6��(k��|�DYs��
�&�:u�]e�]�6�(�k����]��]�6���kB��wM�5wM��@�k���k���]e�]�6���kB��wM�5wM��@�k���k���]e�]�6���kB��wM�5wM��@�k���k���]e�]�6���kB��wM�t�5Ag����r�	J�wM�5wM��@�kb��	Y �5Q��5Ak�����	Z�wM�5wM��@�k"��wM�������	Z�wM�5wM��@�k���k���]c�wMȺ������	Z�wM�5wM��@�k���k���]#�]r6�(�k����]��]�6����PwM�s�wM�|���û&ǟ�o{����y�۬3�f2���y�6������/�ɏ����~�}����ɓK����+��ǻ�����荒I��硷��0ͻ�A��<�6�<gi[�i��&�C��4�YG���b��#�ck1�s֑汵���)k�<�.@L�u�ylm �yN��y�,�y�9�<�6�<eM����i���4��
�4�YG���b��#�ck1�S֤yh]���9�H���@L�u�ylm �y�:�<�6�<eM����i���4��
�4�YG���b��#�ck1�S֤yh]���9�4��oa��9�汱p��9�H�X�@L�u�yd]���9�H���@L�u�ylm �y�:�<�6�<eM����i���4��
�4�YG���b��#�ck1�S֤yh]���9�H���@L�u�ylm �y�:�<�6��<%i:Gi�S�i+�i�s�4��
�4�YG���b���I�к�1�s֑汵���9�H���@L�u�ylm �yʚ4��<gi[�i���4��
�4�YG���b���I�к�1�s֑汵���9�H���@J�tO��Y8J�r�y�l�y�9�<�6�<gi[�i���4��
�4OY��ub��#�ck1�s֑汵���9�H���@L�5iZ �y�:�<�6�<gi[�i���4��
�4�Xg�G��i���4��
�4�YG���R��{����a���I�P��1�s֑汵���9�H���@L�u�ylm �yʚ4��<gi[�i���4��
�4�YG���b���I�к�1�s֑汵���9�H���@L�u�ylm �yʚ4��<gi[Hi���i;�i�s�4��
�4OY��ub��#�ck1�s֑汵���9�H���@L�5iZ �y�:�<�6�<gi[�i���4��
�4OY��ub��#�ck1�s֑汵���9�H���@L�5iZ �yN��y�,�y�9�<�6�<gi[�i��&�C��4�YG���b��#�ck1�s֑汵����L�Ⱥ1�s֑汵���9�H���@L�u�ylm �yʚ4��<gi[�i���4��
�4�YG���R���#�Cg�(�s�=�ce�0�sΑ汴���AOf�<�ߞy�1��<�K�w{%�o�4o<�4�v�y����OF��i�������]��˴��C=����]�_�Ga^9��3�{���9�6�9c��Y 'rʚD�
�DNY�ȡ����)k9�6�9c��Y 'rʚD�
�DNIG"���q"��I�P�@N�u&rd]���)k9�6�9eM"��r"��I���@N�u&rd]���)k9�6�9eM"��r"��I���@N�u&rd]���)k9�6�9eM"��r"��I���@N�u&rd]���)�ȡ�-9%�lj�r&�Ci9���D�+�9eM"��r"��I���@N�5�Zȉ���D���9eM"��r"��I���@N�5�Zȉ���D���9eM"��r"��I���@N�5�Z����&�#g�0�Sʑȡ�p��)g9�6�9eM"��r"g�3�#��DNY�ȡ����)k9�6�9eM"��r"g�3�#��DNY�ȡ����)k9�6�9eM"��r"g�3�#��DNY�ȡ����)k9�69%�:���Q&�#e�8�S�$r(m 'rʚD�
�DNY�ȡ�����L�Ⱥ�9�S�$rhm 'rʚD�
�DNY�ȡ�����L�Ⱥ�9�S�$rhm 'rʚD�
�DNY�ȡ����	�k"�ȉ��&�Ck9�S�$rhm &rJ:9t�9㜉I 'rʚD�
�DNY�ȡ����)k9�6�9c��Y 'rʚD�
�DNY�ȡ����)k9�6�9c��Y 'rʚD�
�DNY�ȡ����)k9�6�9c��Y 'rʚD�
�DNIG"���q"��I�P�@N�u&rd]���)k9�6�9eM"��r"��I���@N�u&rd]���)k9�6�9eM"��r"��I���@N�u&rd]���)k9�6�9eM"��r"��I���@N�u&rd]���)�H��Y8N�3�Jȉ��&�Ck9�3֙ȑur"��I���@N�5�Zȉ��&�Ck9���D�+�9eM"��r"��I���@N�5�Zȉ���D���9eM"��r"��I���@N�5�Z����&�#g�0�Sʑȡ�p��)g9�6���K%r�9�D���x|8L�?Ƿ?���'��������-�������]�@�<�rO#���/_~�����˯�g<?~�x?~��}������������o�ly��;�� ������u���������g[ʺ?{����֧���AZdzl]���k�:�P���+�X����m)���k����9���k/[�����I�G�ٸ����ҹ?{E�����X���k�ϧ����?{����֗����_ōu<��x`�;==Y���k���ۯ�eݟ�bm��u��u���������k�w�<��x`ݾ��Giݟ�bm��u�n��u������k8[���k/[���p�~��Y�.������EZ�g�Xx`}<���u������ӣ�
���g�.+oϧ����gY����w�h���W�
<�n��í���^�6���}�wҺ?{�������p'��Y�.��x_����hm ��[Ys]�
��"ʚ�"hm _1�y]�����(k�����|]DYs]�
��"ʚ�"hm _1�y]�����(k�����x]DI�ut���(g�����|]�X�u�.@�.���.���ue�u�6���(k�����|]�X�u�.@�.���.���ue�u�6���(k�����|]�X�u�.@�.���.���ue�u�6���(k�����|]�X�u�.@�.���u4���u%�E�X8�.���.���ua}�.���E�5�E��@�.���.���ue�u�6����.B���E�5�E��@�.���.���ue�u�6����.B���E�5�E��@�.���.���ue�u�6��i����qx]D)�uT���(g�����|]DYs]�
��"�:���u�ue�u�6���(k�����|]DYs]�
��"�:���u�ue�u�6���(k�����|]DYs]�
��"�:���u�ue�u�6���(k�����x]DI�ut��e����q|]D9s]�
��"ʚ�"hm _Q�\Ak������"d]�|]DYs]�
��"ʚ�"hm _Q�\Ak������"d]�|]DYs]�
��"ʚ�"hm _Q�\Ak�����^�
-��"ʚ�"hm _Q�\Ak񺈒��"�,_1�y]�����(k�����|]DYs]�
��"ʚ�"hm _1�y]�����(k�����|]DYs]�
��"ʚ�"hm _1�y]�����(k�����|]DYs]�
��"ʚ�"hm _1�y]�����(k�����x]DI�ut���(g�����|]�X�u�.@�.���.���ue�u�6���(k�����|]�X�u�.@�.���.���ue�u�6���(k�����|]�X�u�.@�.���.���ue�u�6���(k�����|]�X�u�.@�.���:��E�3�EP�@�.���.���uc��EȺ������Z��E�5�E��@�.���.���ua}�.���E�5�E��@�.���.���ue�u�6����.B���E�5�E��@�.���.���ue�u�6��i����qx]D)�uT���(g�����|]/f\�.��c�.��c�u��ϱ���|����R�l_�=��}��0��~8?|�㗟�������Ǜ�?~������������t��?�
-߿y�n����#3����>N��H���9W�$�hm '�ʚ�
�\Y��������L�ɺ�9W�$�hm '�ʚ�
�\IG���qn�3'��\Y�������+kp�6�peM��rn�3'��\Y�������+kp�6�peM��rn�3'��\Y�������+kp�6�peM��rn�3'��\Y�������+�H��Y8N��3	8J�	������peM��r��I���@N��5	8Z�	������peM��r��I���@N��5	8Z�	������peM��r��I���@N��5	8Z�	������p��p4��a��#Gc�8W�$�(m '������ur��I���@N��5	8Z�	��&Gk97֙��ur��I���@N��5	8Z�	��&Gk97֙��ur��I���@N��5	8Z�	��&Gk17�$��l&�J9pT�p�L��r��I���@N��u&�d]���+kp�6�peM��r��I���@N��u&�d]���+kp�6�peM��r��I���@N��u&�d]���+kp�6�peM��b��#Gg�07�$�l'�ʙ�
�\Y�������+kp�6�pc�	8Y '�ʚ�
�\Y�������+kp�6�pc�	8Y '�ʚ�
�\Y�������+kp�6�pa}M���9W�$�hm '�ʚ�
�\IG���qn�3'��\Y�������+kp�6�peM��rn�3'��\Y�������+kp�6�peM��rn�3'��\Y�������+kp�6�peM��rn�3'��\Y�������+�H��Y8N��3	8J�	������peM��r��I���@N��5	8Z�	������peM��r��I���@N��5	8Z�	������peM��r��I���@N��5	8Z�	�����p%	8:�	�r&Gi9W�$�hm '��:p�.@N��5	8Z�	��&Gk9W�$�hm '������ur��I���@N��5	8Z�	��&Gk97֙��ur��I���@N��5	8Z�	��&Gk17�$��l&�J9pT�p�L��r~0�?Ǟ������	���������Y���^.���N��~�m���rQ=�3�	x"����O?/e��_����O�/�p��U�w�_;�m��g|�����r��:��_���5�?��u��SY3�Dky������<�T֌?��@��u��SY3�Dky������<�T֌?��@iƟ�l�?�r�?QY8*gƟ(m �?�5�O�6�ǟ�:ǟd]�<�T֌?��@*kƟhm �?�5�O�6�ǟ�:ǟd]�<�T֌?��@*kƟhm �?�5�O�6�ǟ�:ǟd]�<�T֌?��@*kƟhm �?�t�?�Y8eƟ�l�?�3�O�6�ǟʚ�'Z��Oe���
����'Y �?�5�O�6�ǟʚ�'Z��Oe���
����'Y �?�5�O�6�ǟʚ�'Z��Oe���
�񧰾�?��y������<�T֌?��@*���p<�4�9�$���f�����SY3�Dky������<�4�9�$���f�����SY3�Dky������<�4�9�$���f�����SY3�Dky������<�4�9�$���f�����SI������rf������X�����ǟʚ�'Z��Oe���
��f������X�����ǟʚ�'Z��Oe���
��f������X�����ǟʚ�'Z��Oe���
��f������X����ǟJ:Ɵ�,�?�3�O�6�ǟʚ�'Z��Oc��O�.@*kƟhm �?�5�O�6�ǟʚ�'Z��Oa}�u��SY3�Dky������<�T֌?��@��u��SY3�Dky������<�T֌?��@iƟ�l�?�r�?QY8*gƟ(m �?i�(Ɵ�9��盏���ϱ�?�WƟ�/����ǟ������ˇs��������u����|��������������?|#����|����p����������~,��s����;����:�t�ͯ�x�����t�
�醲f����t�X�t����ʚ�Z��
e�t�
�醒��:��
��t�����rf����tCY3�@ky����n���<�0�9� ��醲f����tCY3�@ky����n���<�0�9� ��醲f����tCY3�@ky����n���<����XW O7�5�
�6��ʚ�Z��
%�
t���9�$]�<�P�L7��@�n(k�hm O7�5�
�6���:�d]�<�P�L7��@�n(k�hm O7�5�
�6���:�d]�<�P�L7��@�n(k�hm O7�5�
�6���:�d]�<�P�L7��@�n(�n��p<�P�L7P�@�n�n�u�tCY3�@ky����n���<�P�L7��@�n�n�u�tCY3�@ky����n���<�P�L7��@�n�n�u�tCY3�@ky����n���<�P�L7��@�n�n�u�tCI�t����rf����tCY3�@ky�a�s�A���
e�t�
�醲f����tCY3�@ky�!���
��@�n(k�hm O7�5�
�6��ʚ�Z��
c��
�.@�n(k�hm O7�5�
�6��ʚ�Z��
#�t�����R��*��
��t�
��-�t?�>�x�1`�q�9�ƻ]�����-O7�3�Ӎ�1����|�ۍ����1����O_>|�c�Ǘq����c���ָ�2ػ�W��]8�u{|�+_�|?�_���a�8���0c�'�Ⱥ��D���DZ�'”5'���@>��9���0c�'�Ⱥ��D���DZ�'”5'���@>��9���0#͉0r6O�)�8����0�̉0�6�O�)kN����|"�X�0�.@>��9���0e͉0�6�O�)kN����|"�X�0�.@>��ٙ����3U��L��@ޙ*kv�hm �L�u�Lɺ�yg��ٙ����3U��L��@ܙ*�ؙ��p�35��LI�8ޙ*gv�(m �L�5;S�6�w�ʚ�)Z�;Sc�;S�.@ޙ*kv�hm �L�5;S�6�w�ʚ�)Z�;Sc�;S�.@ޙ*kv�hm �L�5;S�6�w�ʚ�)Z�;Sa}ݙ�u��TY�3Ekyg��ٙ����3Uұ3Eg�xgj�sgJ��;Se���
䝩�fg����TY�3Ekygj�sgJ��;Se���
䝩�fg����TY�3Ekygj�sgJ��;Se���
䝩�fg����TY�3Ekygj�sgJ��;Se���
ĝ����):�;S����
䝩�Ν)Y �L�5;S�6�w�ʚ�)Z�;Se���
䝩�Ν)Y �L�5;S�6�w�ʚ�)Z�;Se���
䝩�Ν)Y �L�5;S�6�w�ʚ�)Z�;Se���
䝩�Ν)Y �L�t�L�Y8ޙ*gv�(m �L�5;S�6�w��:w�d]��3U��L��@ޙ*kv�hm �L�5;S�6�w����3�
-䝩�fg����TY�3Ekyg��ٙ����35ֹ3%�䝩�fg����TY�3Ekyg��ٙ����35��L��8ܙ*�ؙ��p�3U��LQ�@ޙ��Q�L�s�;�7v�ǟ�o<vs���|��x�ugzʠ�O��/�Ω鏟�u������y�Ϲ&�ӗ��?�W�~��\�>l�����c��}|<��Y�*��ͯ�xV��s����
�Y��fV���@IǬ����Y�QfV@���@93+@iyV������<+P��
-��@���u�@Y3+@kyV������<+P��
-��@���u�@Y3+@kyV������<+P��
-��@�����+�gʚYZȳeͬ��
�Y���Y:dz㜳�.@�(kfhm �
-�5��6�gʚYZȳc���.@�(kfhm �
-�5��6�gʚYZȳc���.@�(kfhm �
-�5��6�gʚYZȳc���.@�(kfhm �
-�t�
-�Y8�(gf(m �
-�u�
-Ⱥ�yV������<+P��
-��@�(kfhm �
-�u�
-Ⱥ�yV������<+P��
-��@�(kfhm �
-�u�
-Ⱥ�yV������<+P��
-��@�(kfhm �
-�u�
-Ⱥ�qV��cV����@93+@iyV������<+0�9+ ��Y��fV���@Y3+@kyV������<+��YXW �
-�5��6�gʚYZȳeͬ��
�Y���YY �
-�5��6�gʚYZȳeͬ��
�Y��fV@���@)Ǭ����Y�rfV�����m1+�ϱ�
-�|����|�������gy�uV�0f���ӿ��z�sMƎ�͌�������e����wo>������V��x������/+��e]8^uw�{�k��U��W�
<��w��u�bk�P���C]lm �R��B��C]�:u���x��Yǡ.�6u9�8����.e͡.�.@<���P[����u�bk�P���C]lm �R�q����C]N��be��P�s�C],m �r�q���
�C]ʚC]h]�x��Yǡ.�6u9�8����.g����@<ԥ�9ԅ�����u�bk�P���C]lm �r�q���
�C]ʚE-Z .j�u,j��@\�:�XԲ����u�}Q���ѢV)Ǣ���E�s�E-K��Zg�Z�6��:�lm .j�5�Z�.@\�:�XԲ����uֱ�ekqQ�cQ���VY��E��E���E-[��Zg�Z�6��:�lm .j�u.jɺqQ�cQ����YǢ��
�E���Zv�ʙE-J .j�u,j��@\�:�XԲ����uֱ�ekqQ��YԢu��YǢ��
�E���E-[��Zg�Z�6�ʚE-Z .j�u,j��@\�:�XԲ����uֱ�ekqQ��YԢu��YǢ��
�E���Zv��9�,m .j�5�Z�.@\�:�XԲ����uֱ�ekqQ�cQ���VY��E��E���E-[��Zg�Z�6��:�lm .j�5�Z�.@\�:�XԲ����uֱ�ekqQ�cQ���VY��E��E���Zv��9�,m .j�u,j��@\�*k�h]���uֱ�ekqQ�cQ����YǢ��
�E���E-YW .j�u,j��@\�:�XԲ����uֱ�ekqQ��YԢu��YǢ��
�E���E-[��Zg�Z�6��J:��l-j�r_Բ�p��uα�eiqQKO�����홷���hQ��o;ԕ���������1/���nO��ϟ~���r��������w���?���/�_?�������˷�݀_Cz�k8�� �/����� ���W�
<�>�^n��u���������Z�g�Xxٺ�G���w`��Y�.���5H��'���|�g�����c��ϧ��t��^�6�`�=F����r�
-䕻�f����]Y�rGky宬Y�����r7ֹr'�䕻�f����]Y�rGky宬Y�����r7ֹr'�䕻�f����]Y�rGky宬Y�����r7Ҭ���8\�+�X���p�rWά�Q�@^�+kV�hm �܍u��ɺ�y宬Y�����rW֬���@^�+kV�hm �܍u��ɺ�y宬Y�����rW֬���@^�+kV�hm �܍u��ɺ�y宬Y�����rW֬���@\�+�X���p�r7ʬ�I�8^�+gV�(m �ܕ5+w�6�W�ʚ�;Z�+wc�+w�.@^�+kV�hm �ܕ5+w�6�W�ʚ�;Z�+wc�+w�.@^�+kV�hm �ܕ5+w�6�W�ʚ�;Z�+wa}]��u��]Y�rGky宬Y�����rWұrGg�x�n�s�N��+we���
䕻�f����]Y�rGky�n�s�N��+we���
䕻�f����]Y�rGky�n�s�N��+we���
䕻�f����]Y�rGky�n�s�N��+we���
ĕ����;:�+w����
䕻�Ε;Y �ܕ5+w�6�W�ʚ�;Z�+we���
䕻�Ε;Y �ܕ5+w�6�W�ʚ�;Z�+we���
䕻�Ε;Y �ܕ5+w�6�W�ʚ�;Z�+we���
䕻�Ε;Y �ܕt���Y8^�+gV�(m �ܕ5+w�6�W��:W�d]��rW֬���@^�+kV�hm �ܕ5+w�6�W����r�
-䕻�f����]Y�rGky宬Y�����r7ֹr'�䕻�f����]Y�rGky宬Y�����r7Ҭ���8\�+�X���p�rWά�Q�@^���dϕ;~�}���c����s��+��o=n�x�>�y]�?�uԿ|����˨���}�����~����n��û}������/����-�=Mܷ������~y��/��Nx�[����K��u<��x`�~o��u����և��iݟ�bm��u��u����s��7�&Ⱥ�9�P�hm ʚ`�
�`BYL���L�&Ⱥ�)�P�=�@�[J8�	4��	�L0��r0!���XW ʚ`�
�`BYL���L(k�	�6��	c��Y ʚ`�
�`BYL���L(k�	�6��	c��Y ʚ`�
�`BYL���L(k�	�6�	#M0A��a0��#�@e�8�P�(m ʚ`�
�`�Xg0A�����&�@k9�P�hm ʚ`�
�`�Xg0A�����&�@k9�P�hm ʚ`�
�`�Xg0A�����&�@k9�P�hm J:�	t�	�L0A��q0��	&P�@&�5�Z����&�@k9�0�L�ur0��	&��@&�5�Z����&�@k9�0�L�ur0��	&��@&�5�Z����&�@k9���`�+��	eM0��r0��	&��@&�t�,�9�	�.@&�5�Z����&�@k9�P�hm �:�	�.@&�5�Z����&�@k9�P�hm �:�	�.@&�5�Z����&�@k9�P�hm �:�	�.@&�5�Z�����`���`B9L���L�&Ⱥ�9�P�hm ʚ`�
�`BYL���L�&Ⱥ�9�P�hm ʚ`�
�`BYL���L�&Ⱥ�9�P�hm ʚ`�
�`BYL���L�&Ⱥ�1�P�L��pL(g�	�6��	eM0��r0a�3� ��`BYL���L(k�	�6��	eM0��r0!���XW ʚ`�
�`BYL���L(k�	�6��	c��Y ʚ`�
�`BYL���L(k�	�6�	#M0A��a0��#�@e�8�P�(m ���~�=�x�1 �8���|��럘~���ۋ�l?u�m��_���}����3yd�%�G*�?}���������{���_~]?���|���W�W���nO�Gm������m�6�������t��E�����+�X�OϷֺ?{�������7��I�G�ٸ����ҹ?{E�����X���k�ϧ����?{����֗��x����zwzz����+�X����K���k�����E�u�����[���k�w�<��x`ݾ��Giݟ�bm��u�n��u������k8[���k/[���p���Y�.������EZ�g�Xx`}<���u������ӣ�
���g�.+oϧ����gY����w�h���W�
<�n��í���^�6���}�wҺ?{����ֻ�k����,[��u�n�u������k8�8��+�X����Z�g�Xx�z>ݼ�s�Y�.�����Y���^�6���x�y����+�X�O�����+�^�>l_Ã��3�e�<�n_ý���^�6���}
�/��W��;Pn�����3��"m�e����J�x�����}g�cn<{�����-�X���k�㊄��,Z�g)�u�� ��ʚ�hm ��P֜�@k�,���,Z�g)�u�� ��ʚ�hm ��P֜�@k�,���,Z�g)�u�� ���ʹ��@�[��P�q����ʙ�(m ���׳`]�|�BYs��
�ʚ�hm ��P֜�@k�,��γd]�|�BYs��
�ʚ�hm ��P֜�@k�,��γd]�|�BYs��
�ʚ�hm ��P֜�@k�,���,9�g)�r��@e��,�r�,J�g)�5g)��@>Ka��,Y ��P֜�@k�,���,Z�g)�5g)��@>Ka��,Y ��P֜�@k�,���,Z�g)�5g)��@>Ka��,Y ��P֜�@k�,���,Z�g)�t��@g��,�Q�,)�g)�3g)P�@>K��9K���Y
-e�Y
-�6��R�<KA��g)�5g)��@>K��9K���Y
-e�Y
-�6��R�<KA��g)�5g)��@>K��9K���Y
-e�Y
-�6��R��Y
-��@>K��9K���Y
-e�Y
-�6�R(�8K����Y
-�g)H���,���,Z�g)�5g)��@>K��9K���Y
-c�g)Ⱥ��,���,Z�g)�5g)��@>K��9K���Y
-c�g)Ⱥ��,���,Z�g)�5g)��@>K��9K���Y
-c�g)Ⱥ��,���,Z�g)�t��@g��,�r�,J�g)�u�� ��ʚ�hm ��P֜�@k�,���,Z�g)�u�� ��ʚ�hm ��P֜�@k�,���,Z�g)�u�� ��ʚ�hm ��P֜�@k�,���,Z�g)�u�� �ijJ:�R��p|�B9s��
�ʚ�hm ��0�y�����R(k�R���|�BYs��
�ʚ�hm ���׳`]�|�BYs��
�ʚ�hm ��P֜�@k�,��γd]�|�BYs��
�ʚ�hm ��P֜�@k�,���,9�g)�r��@e��,�r�,J�g)�/+���9��o>��8���??��﮼�������'�{<�=�_.��Cy&�)��4�?����?}��o�^��ӏ_>~�������".|��)���:g4sF�o>�q4���@4��b4��#�Eg�8�5�͒tr4���f��@�f�5�,Z�Ѭ�&�Ek9�5�͒ur4���f��@�f�5�,Z�Ѭ�&�Ek9�5�͒ur4���f��@�f�5�,Z�Ѭ�&�Ek9�5�͒ur4���f��@�f�tD��,G�ʙh�
�h�Xg4K��Ѭ�&�Ek9�U�D�hm G�ʚh�
�h�Xg4K��Ѭ�&�Ek9�U�D�hm G�ʚh�
�h�Xg4K��Ѭ�&�Ek9�U�D�hm G�ʚh�
�h�Xg4K�HѬr��,��0�U�͢�p�*g�Y�6��Ya}�f��9�U�D�hm G�ʚh�
�hVY͢����fɺ�9�U�D�hm G�ʚh�
�hVY͢����fɺ�9�U�D�hm G�ʚh�
�hVY͢���i�Yr6�Y��,*�Ѭr&�Ei9�U�D�hm G��:�Y�.@�f�5�,Z�Ѭ�&�Ek9�U�D�hm G��:�Y�.@�f�5�,Z�Ѭ�&�Ek9�U�D�hm G��:�Y�.@�f�5�,Z�Ѭ�&�Ek1�U�͢�p�e�YR6��Y�L4��r4���f��@�f�5�,Z�Ѭ��h����YeM4��r4���f��@�f�5�,Z�Ѭ��h����YeM4��r4���f��@�f�5�,Z�Ѭ��F�`]��*k�Y�6��YeM4��b4��#�Eg�8�5�͒tr4���f��@�f�5�,Z�Ѭ�&�Ek9�5�͒ur4���f��@�f�5�,Z�Ѭ�&�Ek9�5�͒ur4���f��@�f�5�,Z�Ѭ�&�Ek9�5�͒ur4���f��@�f�tD��,G�ʙh�
�h�Xg4K��Ѭ�&�Ek9�U�D�hm G�ʚh�
�h�Xg4K��Ѭ�&�Ek9�U�D�hm G�ʚh�
�h�Xg4K��Ѭ�&�Ek9�U�D�hm G�ʚh�
�h�Xg4K��Ѭ��h���hV9͢���*k�Y�6��Yc��,Y G�ʚh�
�hVY͢���*k�Y�6��Ya}�f��9�U�D�hm G�ʚh�
�hVY͢����fɺ�9�U�D�hm G�ʚh�
�hVY͢���i�Yr6�Y��,*�Ѭr&�Ei9�=�?U4��c�f�|�f�?���^�fo�N��[�f�3�foG4����󇯯t���?]�{þT�>��}���>[^}�������W_�u򫯕5��Fk���ʚW_�����keͫ���@~�������+�_}��y�5Zȯ�Vּ��
�W_+k^}��򫯍u�����_}������@���5?Z���������8g�O������Gk��W�T�hm W�ʚ��
��Xg�O������Gk��W�T�hm W�ʚ��
��Xg�O������Gk��W�T�hm W�ʚ��
��Xg�O������Gk��W�Q�p\�+g*~�6�+~c�?Y W�ʚ��
�_YS񣵁\�+k*~�6�+~c�?Y W�ʚ��
�_YS񣵁\�+k*~�6�+~c�?Y W�ʚ��
�_YS񣵁\�+k*~�6�+~c�?Y U�ʹW�h|Ê_	Gŏ��qů���Q�@�������
-�_YS񣵁\�+k*~�6�+~eMŏ�r�o���'��_YS񣵁\�+k*~�6�+~eMŏ�r�o���'��_YS񣵁\�+k*~�6�+~eMŏ�b�o�����8���rT��,W�ʙ��
�_YS񣵁\���ɺ���W�T�hm W�ʚ��
�_YS񣵁\���ɺ���W�T�hm W�ʚ��
�_YS񣵁\���ɺ���W�T�hm W�ʚ��
Ċ_IGŏ��a�o���I�8���3?J�����Gk��W�T�hm W��:+~�.@���5?Z�����Gk��W�T�hm W��:+~�.@���5?Z�����Gk��W�T�hm W���Z�urů�����@���5?Z���������8g�O������Gk��W�T�hm W�ʚ��
��Xg�O������Gk��W�T�hm W�ʚ��
��Xg�O������Gk��W�T�hm W�ʚ��
��Xg�O������Gk��W�Q�p\�+g*~�6�+~c�?Y W�ʚ��
�_YS񣵁\�+k*~�6�+~c�?Y W�ʚ��
�_YS񣵁\�+k*~�6�+~c�?Y W�ʚ��
�_YS񣵁\�+k*~�6�+~c�?Y V�J:*~t�+~�Lŏ�rů�����@���uV�d]�\�+k*~�6�+~eMŏ�rů�����@�������
-�_YS񣵁\�+k*~�6�+~eMŏ�r�o���'��_YS񣵁\�+k*~�6�+~eMŏ�b�o�����8���rT��,W�ʙ��
��8LW?~����1�+����7��z�)1V��T�w�������_?|�����������w������|�~��y���}���r��t��yg����v��?�qNJ��q�j��c%��UYӱ���ܱ*k:V�6�;VeMNJ�r�j��c%��UYӱ���ܱ*k:V�6�;VeMNJ�r�j��c%��UYӱ���ܱ*k:V�6�;VeMNJ�r�j��c%��UYӱ���ر*��X�Y8�X�3+J���Ύ���;VeMNJ�rǪ��X��@�X�5+Z���Ύ���;VeMNJ�rǪ��X��@�X�5+Z���Ύ���;VeMNJ�rǪ��X��@�X�5+Z���Ύ���:V��;V4��aǪ��cEc�cU�t�(m w���ڱ�urǪ��X��@�X�5+Z����cEk�c5�ٱ�urǪ��X��@�X�5+Z����cEk�c5�ٱ�urǪ��X��@�X�5+Z����cEk�c5�t��lv�J9:VT�;V�LNJ�rǪ��X��@�X�uv�d]�ܱ*k:V�6�;VeMNJ�rǪ��X��@�X�uv�d]�ܱ*k:V�6�;VeMNJ�rǪ��X��@�X�uv�d]�ܱ*k:V�6�;VeMNJ�bǪ��cEg�c5�t��lw�ʙ��
�UYӱ���ܱ*k:V�6�;Vc�+Y w�ʚ��
�UYӱ���ܱ*k:V�6�;Vc�+Y w�ʚ��
�UYӱ���ܱ*k:V�6�;Va}�X���cU�t�hm w�ʚ��
ĎUIGNJ��q�j��c%��UYӱ���ܱ*k:V�6�;VeMNJ�r�j��c%��UYӱ���ܱ*k:V�6�;VeMNJ�r�j��c%��UYӱ���ܱ*k:V�6�;VeMNJ�r�j��c%��UYӱ���ر*��X�Y8�X�3+J���Ύ���;VeMNJ�rǪ��X��@�X�5+Z���Ύ���;VeMNJ�rǪ��X��@�X�5+Z���Ύ���;VeMNJ�rǪ��X��@�X�5+Z���Ύ��;V%+:��r�cEi�cU�t�hm w��:;V�.@�X�5+Z����cEk�cU�t�hm w���ڱ�urǪ��X��@�X�5+Z����cEk�c5�ٱ�urǪ��X��@�X�5+Z����cEk�c5�t��lv�J9:VT�;V�LNJ�r�z�a��?�ޱ��б�o>p��OL�m��O���o�������Sۥ4��#{��rzӫ~����?���O?������>����|���R��r��������|�����Ϟ��~�����9n.��@l.�u4�lm 6�ʚ���Kg�%[�ͥ��播
���YGs��bs��i.Ѻ���t��\����\:�h.��@l.�u4�lm 6�ʚ���Kg�%[Hͥ���%;�ͥs�撥
��RY�\�ubs鬣�dk��t��\����\:�h.��@l.�5�%Z 6��:�K�6�Kg�%[�ͥ��播
��RY�\�ubs鬣�dk��t��\����\:�h.��@l.�5�%Z 4�����d�[5�N�7�l,6��9�K�6�Kc��%YW 6��:�K�6�Kg�%[�ͥ��播
��RY�\�ubs鬣�dk��t��\����\:�h.��@l.�5�%Z 6��:�K�6�Kg�%[�ͥ��播
��RIGs���Qs�{s���as霣�di��t��\����\*k�K�.@l.�u4�lm 6��:�K�6�Kg�%[�ͥ���D����YGs��bs鬣�dk��t��\����\*k�K�.@l.�u4�lm 6��:�K�6��K'ݛKv��K��%*�ͥs�撥
���YGs��bs鬣�dk��T�4�h]��\:�h.��@l.�u4�lm 6��:�K�6�KeMs���ͥ��播
���YGs��bs鬣�dk��4��\�ubs鬣�dk��t��\����\:��\��p�\*g�K�.@l.�u4�lm 6��:�K�6�Kg�%[�ͥ���D����YGs��bs鬣�dk��t��\����\*k�K�.@l.�u4�lm 6��:�K�6�Kg�%[�ͥ���D����YGs��Rs�{s���as��_e�#Yzfٽ
-��A9�/ᗡĮ�&�&X!f�Y��d����yؿ����e�3�p���0V���m��di��T�4�h@l.�u5�lm 6�κ�K�6�Kg]�%[�ͥ���D��bs鬫�dk��t��\����\:�j.��@l.�5�%Z�Kg]�%[�ͥ��播
���YWs��bs��i.�:��\:鹹dg᰹t��\����\:�j.��@l.�5�%Z�Kg]�%[�ͥ��播
���YWs��bsi���$�bs鬫�dk��t��\����\:�j.��@l.�5�%Z�Kg]�%[�ͥ��播
���YWs��Rs����Dg㨹t�ss���as霫�di���N�4��ߟ�~����c4���\�>�������z��\��_�U������_��߾���~��˟��m����w-��?l�'?l/o?l���w�_n�f�~ϻ�/�z����|b=?{���ϭo�w��g�:��ǻ�k=?{�������������goXx`=}��U��7�
������cxr�<��	<��>��gi=?{�����cx�3�����am����1�[����|���c����Y��������7i=?{��������u}s3[H����onfg�𛛕3�܌��onv֬����"��Y@kyE@Y�"��򊀱�� �(kV��@^P֬����"��Y@kyE�X���Y�W�5+hm �(kV��@^P֬����"`�{E���+ʚ�6W�t���p�"��Y@iyE�X���Y�W�5+hm �(kV��@^P֬����"`�{E���+ʚ�6�W�5+hm �(kV��@^0ֽ"@��e͊�Z�+ʚ�6�W�5+hm ��^ ��Ҋ�r�W�x
�%\+h,�(gVP�@^�ˊ�X'�W�5+hm �(kV��@^P֬����"`�{E���+ʚ�6�W�5+hm �(kV��@^0ֽ"@��e͊�Z�+ʚ�6�W�5+hm �iV��8\Pʵ"����rfE��
�e͊�Z�+ƺW�:��"��Y@kyE@Y�"��򊀲fE��
�c�+d@^P֬����"��Y@kyE@Y�"��򊀱�� �(kV��@^P֬����"��kE�����̊�)�+ʙ�6�W�5+hm �(kV��@^0ֽ"@��e͊�Z�+ʚ�6�W�5+hm ��^ ��򊀲fE��
�e͊�Z�+ʚ�6�W���"��	�e͊�Z�+ʚ�6W�t���p�"`�{E���+ʚ�6�W�5+hm �(kV��@^0ֽ"@��e͊�Z�+ʚ�6�W�5+hm ��^ ��򊀲fE��
�e͊�Z�+ʚ�6�W�u��u�yE@Y�"��⊀��t�W�3+(m ��^ ��򊀲fE��
�e͊�Z�+ʚ�6�W�u��u�yE@Y�"��򊀲fE��
�e͊�Z�+ƺW�:��"��Y@kyE@Y�"��򊀲fE��
�c�+d@\Pҵ"����rfE��
�e͊�Z�+ƺW�:��"��Y@kyE@Y�"��򊀲fE��
�a���uyE@Y�"��򊀲fE��
�e͊�Z�+ƺW�:��"��Y@kyE@Y�"��򊀲fE��
�#͊�9�+J�VPY8^Pά����"�9��|����k����{��������?5|s�����?��F/�wϧ��>-��Cyf�ܯ%��������~sL��������d�����֣�j�5���^�����"P㡵�\�)kj<�6�k<c�5Y�k<eM���r�������@��55Z�5������5����Ck��S�U㡳p\�)gj<�6�k<c�5Y�k<eM���r�������@��55Z�5������5����Ck��S��xhm �xʚ�
��Xw�G��OYS㡵�\�)kj<�6�k<eM���r�g���#��R������0��p�xh,�xʙ�
�OX/5X'�k<eM���r�������@��55Z�5������5����Ck��S��xhm �xʚ�
��Xw�G��OYS㡵�\�)kj<�6�k<eM���b�g�����8��r�x�,�xʙ�
�OYS㡵�\����:�\�)kj<�6�k<eM���r�������@��u�xd@��55Z�5����Ck��S��xhm �xƺk<� �xʚ�
�OYS㡵�X�)���Y8��25)�5�r��Ci��S��xhm �xʚ�
��Xw�G��OYS㡵�\�)kj<�6�k<eM���r�g���#��r�������@��55Z�5����Ck���K��	�OYS㡵�\�)kj<�6k<%]5:�5�q����5����Ck��S��xhm �xʚ�
��Xw�G��OYS㡵�\�)kj<�6�k<eM���r�g���#��r�������@��55Z�5����Ck��3�]�u���S��xhm �xJ�j<t�k<�L���r�g���#��r�������@��55Z�5����Ck��3�]�u���S��xhm �xʚ�
�OYS㡵�\����:�\�)kj<�6�k<eM���r�������@��u�xd@��t�x�,�xʙ�
�OYS㡵�\����:�\�)kj<�6�k<eM���r�������@���R�u��S��xhm �xʚ�
�OYS㡵�\����:�\�)kj<�6�k<eM���r�������@��459�5�R����O9S㡴�\��d����8�xW�5��{���F�������W���3��{X5����o�����5�É������c��p��9���|����^���>�4�hm 7�ʚ�
�PY��������n��:���*k@�6�@eM��r��i���@n��u7�d@n��5
 Z�
������P9��������n��:���*k@�6�@eM��r��i���@n��u7�d@n��5
 Z�
���Dk�T�4�hm 7�ƺ@� 7�ʚ�
�PY�������*k@�6�@c�
 Y�@�<7�h��a���Dc�T�4�(m 7��zi��:���*k@�6�@eM��r��i���@n��u7�d@n��5
 Z�
���Dk�T�4�hm 7�ƺ@� 7�ʚ�
�PY�������*k@�6@#MH��a���De�T�4�(m 7�ʚ�
��XwH��PY�������*k@�6�@eM��rh��$��r��i���@n��5
 Z�
���Dk�4����u��T�4�hm 7�ʚ�
�PIW���ah�i�I�8n��3
 J�
���Dk�T�4�hm 7�ƺ@� 7�ʚ�
�PY�������*k@�6�@c�
 Y�@eM��r��i���@n��5
 Z�
��^@�N 7�ʚ�
�PY�������*�j��Y8n��s7�$@n��5
 Z�
���Dk�T�4�hm 7�ƺ@� 7�ʚ�
�PY�������*k@�6�@c�
 Y�@eM��r��i���@n��5
 Z�
������
���Dk�T�����p��*g@�6�@c�
 Y�@eM��r��i���@n��5
 Z�
������
���Dk�T�4�hm 7�ʚ�
��XwH��PY�������*k@�6�@eM��rh��$��b���Dg�T�4�(m 7�ʚ�
��XwH��PY�������*k@�6�@eM��r(����
���Dk�T�4�hm 7�ʚ�
��XwH��PY�������*k@�6�@eM��bh�i���8l��r5��,7�ʙ�
��bS
 �ǹ�z�����=��p�`���
��j����~����ߣ=��J����=~������=�j�~Տ��w�W�<x���am����Q��
-���goXxP��$�XwcI���RY�X����X*kK�6�KeMc��rci���$��rc��i,��@n,�5�%Zȍ����Dk��4��X�u���T�4�hm 6�J�Kt�K�Lc��rci���$��rc��i,��@n,�5�%Zȍ����Dk��4��X�u���T�4�hm 7�ʚ��
��RY�X����X�n,�:��X*kK�6�KeMc��rc��i,��@n,�u7�d@j,���X�����������R9�X����X
-륱�rc��i,��@n,�5�%Zȍ����Dk��4��X�u���T�4�hm 7�ʚ��
��RY�X����X�n,�:��X*kK�6�KeMc��rc��i,��@l,�4�%9���R������R9�X����X*kK�6�Kcݍ%Y�KeMc��rc��i,��@n,�5�%Zȍ���ƒ�ȍ����Dk��T�4�hm 7�ʚ��
���XwcI���RY�X����X*kK�6K%]�%:���Q��$e㸱T�4�(m 7�ʚ��
��RY�X����X�n,�:��X*kK�6�KeMc��rc��i,��@n,�u7�d@n,�5�%Zȍ����Dk��T�4�hm 7��zi,�:��X*kK�6�KeMc��bc����Dgḱ4��X�t���T�4�hm 7�ʚ��
��RY�X����X�n,�:��X*kK�6�KeMc��rc��i,��@n,�u7�d@n,�5�%Zȍ����Dk��T�4�hm 7�ƺK� 7�ʚ��
��RIWc���qc��i,Q�@n,�u7�d@n,�5�%Zȍ����Dk��T�4�hm 7�ƺK� 7�ʚ��
��RY�X����X*kK�6�Kcݍ%Y�KeMc��rc��i,��@n,�5�%Zȍ���ƒ�����������R9�X����X*kK�6�Kcݍ%Y�KeMc��rc��i,��@n,�5�%Zȍ��^K�N 7�ʚ��
��RY�X����X*kK�6�Kcݍ%Y�KeMc��rc��i,��@n,�5�%Z������$g㰱T��X��p�X*gK�6���NP5������5��<~��X>�h,O�E=?t�X�gvc���������o���_>���o�?����1�|�!��������z���C������������^���z�x`}�{y|���7�
<�>�=��yCY��ް6��z�����
k?�޿5竳�g�:������ߤ���
k�ϧ��[����X_����Go8w�#�~Rx��q�gY:��h+k�o�6��oeM��r�)���@.��u�d@.��5�7Z�ŷ���Fk��V��hm �ƺ�o� �ʚ��
��[YS|���\|+k�o�6��oc��7Y��oeM��b񭤫�Fg��V��(m �ƺ�o� �ʚ��
��[YS|���\|+k�o�6��oc��7Y��oeM��r�)���@.��5�7Z�ŷ��⛬�ŷ���Fk��V��hm �ʚ��
���Xw�M���[9��7�aX|+�*��X8.��3�7J�ŷ�^�o�N �ʚ��
��[YS|���\|+k�o�6��oc��7Y��oeM��r�)���@.��5�7Z�ŷ��⛬�ŷ���Fk��V��hm �ʚ��
���HS|��qX|+�*�QY8.��3�7J�ŷ���Fk��6�]|�u���V��hm �ʚ��
��[YS|���\|�.��:�\|+k�o�6��oeM��r�)���@.��u�d@.��5�7Z�ŷ���Fk��V�U|��pX|e�oR6��o�L��r�)���@.��5�7Z�ŷ��⛬�ŷ���Fk��V��hm �ʚ��
���Xw�M���[YS|���\|+k�o�6��oeM��r�-�����ŷ���Fk��V��hm �J��ot��o���7I��oeM��r�)���@.��5�7Z�ŷ��⛬�ŷ���Fk��V��hm �ʚ��
���Xw�M���[YS|���\|+k�o�6��oeM��r�m���&��r�)���@,��t��,�ʙ��
���Xw�M���[YS|���\|+k�o�6��oeM��r�m���&��r�)���@.��5�7Z�ŷ���Fk��6�]|�u���V��hm �ʚ��
��[YS|���\|�.��:�X|+�*��Y8.��3�7J�ŷ���Fk��6�]|�u���V��hm �ʚ��
��[YS|���\|���r�)���@.��5�7Z�ŷ���Fk��6�]|�u���V��hm �ʚ��
��[YS|���X|i�or6�o�\�7*�ŷr��Fi��>�U��q.��^���a�}���~���oL�[uO��<��;�����Z���{߯�����?~������͏����_������炙�_�.�����-�Q��|�������C�o{��=V"��E�9Gk�9�Ks�	��\YӜ���ܜ+k�s�6��seMs��rsn��9'��rs��i���@nΕ5�9Z�͹��������8wsN���\YӜ���ܜ+k�s�6��seMs��rsn��9'��rs��i���@nΕ5�9Z�͹��9Gk�97�ݜ�u��9W�4�hm 7�ʚ��
��\YӜ���ܜ�n��:�ܜ+k�s�6�s%]�9:�͹r�9Gi�97�ݜ�u��9W�4�hm 7�ʚ��
��\YӜ���ܜ�n��:�ܜ+k�s�6��seMs��rs��i���@n΍u7�d@nΕ5�9Z�͹��9Gk�9W�4�hm 7�ƺ�s� 5��yn��x
��\	Ws���qs��i�Q�@n΅�Ҝ�u�9W�4�hm 7�ʚ��
��\YӜ���ܜ�n��:�ܜ+k�s�6��seMs��rs��i���@n΍u7�d@nΕ5�9Z�͹��9Gk�9W�4�hm 6�F�朜���\)Ws���qs��i�Q�@nΕ5�9Z�͹��本�͹��9Gk�9W�4�hm 7�ʚ��
���XwsN���\YӜ���ܜ+k�s�6��seMs��rsn��9'��rs��i���@nΕ5�9Z�͹��������(Ӝ��qܜ+g�s�6��seMs��rs��i���@n΍u7�d@nΕ5�9Z�͹��9Gk�9W�4�hm 7�ƺ�s� 7�ʚ��
��\YӜ���ܜ+k�s�6��sa�4�`�@nΕ5�9Z�͹��9Gk�9W�՜��pܜ�n�I:�ܜ+k�s�6��seMs��rs��i���@n΍u7�d@nΕ5�9Z�͹��9Gk�9W�4�hm 7�ƺ�s� 7�ʚ��
��\YӜ���ܜ+k�s�6��sc��9Y��seMs��bs���9Gg�9W�4�(m 7�ƺ�s� 7�ʚ��
��\YӜ���ܜ+k�s�6��sc��9Y��seMs��rs��i���@nΕ5�9Z�͹��本�͹��9Gk�9W�4�hm 7�ʚ��
���XwsN���\IWs���qs��i�Q�@nΕ5�9Z�͹��本�͹��9Gk�9W�4�hm 7�ʚ��
��\X/�9X'��seMs��rs��i���@nΕ5�9Z�͹��本�͹��9Gk�9W�4�hm 7�ʚ��
���HӜ��q؜+�j�QY8nΕ3�9J���q6��s|�ss~�М��?�-�_��^���[��3�:���L�O�){z���������7����=�z��3�o��0}�{}�3�����y~�������/�z~�����׻��i=?{�����������Y׳l����ˋ����am��u�(kV��@^IP֬$����� ����N �$(kV��@^IP֬$�������YI@ky%�X�JY�W�5+	hm �$(kV��@\IPҵ�����J�q�� �$(kV��@^IP֬$�������YI@ky%�X�JY�W�5+	hm �$(kV��@^IP֬$�����`�{%���+	ʚ��6�W�5+	hm �$(kV��@^I0ֽ�@��e�JZ�+	J�V�Y8^IPά$�����`�{%���+	ʚ��6�W�5+	hm �$(kV��@^I0ֽ�@��e�JZ�+	ʚ��6�W�5+	hm �$�^I ���J��f%�
�e�JZ�+	ʚ��6�W�u�$�u�i%A9�+	h���J���4�W�3+	(m �$�e%��+	ʚ��6�W�5+	hm �$(kV��@^I0ֽ�@��e�JZ�+	ʚ��6�W�5+	hm �$�^I ���J��f%�
�e�JZ�+	ʚ��6W�4+	�l�$(�ZI@e�x%A9�����J��f%�
�c�+	d@^IP֬$�������YI@ky%AY�����J���� �$(kV��@^IP֬$�������YI@ky%�X�JY�W�5+	hm �$(kV��@\IPҵ�����J�Qf%������JJ�+	ʚ��6�W�5+	hm �$�^I ���J��f%�
�e�JZ�+	ʚ��6�W�u�$�u�y%AY�����J��f%�
�e�JZ�+	�zYI���J��f%�
�e�JZ�+	J�V�Y8^I0ν�@��e�JZ�+	ʚ��6�W�5+	hm �$�^I ���J��f%�
�e�JZ�+	ʚ��6�W�u�$�u�y%AY�����J��f%�
�e�JZ�+	ƺW�:�����YI@kq%AI�J:�+	ʙ��6�W�u�$�u�y%AY�����J��f%�
�e�JZ�+	ƺW�:�����YI@ky%AY�����J��f%�
�c�+	d@^IP֬$�������YI@ky%AY�����J���� �$(�ZI@g�x%A9�����J��f%�
�c�+	d@^IP֬$�������YI@ky%AY�����J��^V�:�����YI@ky%AY�����J��f%�
�c�+	d@^IP֬$�������YI@ky%AY�����J��f%���Õ�\+	�,�$(gVP�@^I��_�$�{�W�^���p%��=�J�=�$��ޛV��^IxX+	����FN��|�����#	/�w�������~����������g/����
k�8(�ڃ@g�p�9�K�{κ� ��@܃pֵ�����f��{κ� ��@܃pֵ������=�6� �u�A�uq�Y�[�{κ� ��@܃pֵ�����f��{κ� ��@܃pֵ������� �Y8܃P��A�t�q�Y�[�{κ� ��@܃pֵ�����f��{κ� ��@܃pֵ������=�6� �5{h@܃pֵ������=�6� �u�A������ك@������=�6�� ��������s�=�6� �5{h@܃pֵ������=�6� �u�A������ك@������=�6� �u�A�����k��
�=e�Z� �u�A�����k��
�=g]{lm �A(k� �:����� �x
�='<�A��p��k��
�=c�{d�@܃pֵ������=�6� �u�A������ك@������=�6� �u�A�����k��
�=e�Z� �u�A�����k��
�=g]{lm �A(�ڃ@g�h�)�{�,�A8�ڃ`iq�Y�[�{ʚ=� �A8�ڃ`kq�Y�[�{κ� ��@܃P��A�u�q�Y�[�{κ� ��@܃pֵ�����f��{κ� ��@܃pֵ������� �Y8ڃPʵ�����s�=�6� �u�A�����k��
�=e�Z� �u�A�����k��
�=g]{lm �A(k� �:���k��
�=g]{lm �A8�ڃ`kq�X�Y'� �u�A�����k��
�='=�A��p���ك@������=�6� �u�A�����k��
�=e�Z� �u�A�����k��
�=g]{lm �A(k� �:���k��
�=g]{lm �A8�ڃ`kqBY����=g]{lm �A8�y����=�\{,m �A(k� �:���k��
�=g]{lm �A8�ڃ`kqBY����=g]{lm �A8�ڃ`kq�Y�[�{ʚ=� �A8�ڃ`kq�Y�[�{κ� ��@܃P��A�u�i�I�{�,�A8�ڃ`iq�Y�[�{ʚ=� �A8�ڃ`kq�Y�[�{κ� ��@܃0ֽA�	�=g]{lm �A8�ڃ`kq�Y�[�{ʚ=� �A8�ڃ`kq�Y�[�{κ� ��@ڃPҵ�����S�� XY8܃pε���n�ރ������k�A�{������]�����������_����E�z(�\�A�g�o?���/�}�����=V����<�==���]�)x�]O]��q=��E��Bk��2�]O�u���R��Shm �SJ��)t��)�L=��r=e���"��r=������@���5�Z������Bk��2�]O�u���R��Shm �Sʚz
-�
�zJYSO���\O뮧�:�\O)k�)�6��)eM=��r=������@���u�Sd@����\O������z
-���zJ9SO���\O	륞�r=������@���5�Z������Bk��2�]O�u���R��Shm �Sʚz
-�
�zJYSO���\O뮧�:�\O)k�)�6��)eM=��r=������@���4�9���R�z
-���zJ9SO���\O)k�)�6��)c��Y��)eM=��r=������@���5�Z�����z��������Bk��R��Shm �Sʚz
-�
�z�Xw=E��zJYSO���\O)k�)�6�)%]�:���Q��"e㸞R��S(m �Sʚz
-�
�zJYSO���\O뮧�:�\O)k�)�6��)eM=��r=������@���u�Sd@���5�Z������Bk��R��Shm �S�z���:�\O)k�)�6��)eM=��b=����BgḞ2�]O�t���R��Shm �Sʚz
-�
�zJYSO���\O뮧�:�\O)k�)�6��)eM=��r=������@���u�Sd@���5�Z������Bk��R��Shm �Sƺ�)� �Sʚz
-�
�zJIW=���q=����P�@���u�Sd@���5�Z������Bk��R��Shm �Sƺ�)� �Sʚz
-�
�zJYSO���\O)k�)�6��)c��Y��)eM=��r=������@���5�Z�����z�������z
-���zJ9SO���\O)k�)�6��)c��Y��)eM=��r=������@���5�Z����^�)�N �Sʚz
-�
�zJYSO���\O)k�)�6��)c��Y��)eM=��r=������@���5�Z������"g㰞R�UO��p\O)g�)�6���H�S��z��5��:~�QO�ߨ�N�{����z檞z����?��������o�ӏ��x�W����?|RU�<�}}��?y��������}Z�����������i=Y�O�5��hm ��+kN���@>�W֣֜��|Zo�����H���y>�G�5O�p�֣�p|Z��9�Gi��^X/��`�@>�W֣֜��|Z��9�Gk��^YsZ���i����z� ��+kN���@>�W֣֜��|Z��9�Gk���X�i=Y�O�5��hm ��+kN���@>�W֣֜��xZo�9�'g��^)�i=*ǧ�ʙ�z�6�O�5��hm ���>�'���i����
��ze�i=Zȧ�ʚ�z�6�O�u�֓u���^YsZ���i����
��ze�i=Zȧ�ƺO��:�|Z��9�Gk��^YsZ���i����ztO�2���l��+gN�Q�@>�W֣֜��|Z��9�Gk���X�i=Y�O�5��hm ��+kN���@>�W֣֜��|Zo�����ȧ�ʚ�z�6�O�5��hm ��+kN���@>���i=X'�O�5��hm ��+kN���@<�W�uZ����i�q��z� ��+kN���@>�W֣֜��|Z��9�Gk���X�i=Y�O�5��hm ��+kN���@>�W֣֜��|Zo�����ȧ�ʚ�z�6�O�5��hm ��+kN���@>�7�}ZO���ze�i=Z���J�N��Y8>�WΜ֣��|Zo�����ȧ�ʚ�z�6�O�5��hm ��+kN���@>�7�}ZO���ze�i=Zȧ�ʚ�z�6�O�5��hm ���>�'���i����
��ze�i=Zȧ�ʚ�z�6�O�u�֓u��^I�i=:ǧ�ʙ�z�6�O�5��hm ���>�'���i����
��ze�i=Zȧ�ʚ�z�6�O��rZ�	��ze�i=Zȧ�ʚ�z�6�O�5��hm ���>�'���i����
��ze�i=Zȧ�ʚ�z�6O�4���l��+�:�Ge���^9sZ���i���:���8��_�����i��{|������1���ӯ:��o�N�������g��:��Q����p-��v��<��
-�ɵ������������~�k�����y�Wo��ǧ����-g���wO_����
i��woO�z~�����[��>���-c]ϲu���O��o�����
k�����Z��ް6��z�������
k?�>��=��ͷ��g�:��ǻ�Wk=?{��������9b={���������|+����~n}9}_�u=��<��>���-e=?{�����cx|���7�
<��>�k=?{���ϭ���A�4|~���;P�>�{��z������g��Z��ް6���z��f|��ް6�s����ë�g=��<�>޽�X����X����/s���XO�W��z�����i_NÓ��Y�N����1<>K����XO�Ë����am����1�[����~n}����_��,[���x���&��goXx`}�����7�
<���=����p�s�������'ϲt������Z��ް6��z��>H����XO��ӣ����am�������(��Y�����1<<I����XOý�g={�����c�b��goXx��w_����Y��������g={�����^e���������ʚ��Ek�k}�u�/Y���WY�hm ~������Eg��k}�3_�������Z_� ����k}��@�Z_e���������ʚ��Ek�k}�u�/Y���WY�hm ����k}��@�Z_e��Z��Cƺ���:��=���Bky{HY�=������f{�
��!c��Cd@�R����a�=��k{����!���J��C�z������f{�
��!e��Z��Cʚ�!�6����uo�u�y{HY�=������f{�
��!e��Z��Cƺ���:��=���Bky{HY�=������f{�
��!#��9��CJ���PY8�R�l����=���Bky{�X��Y����5�Chm o)k����@�R�l����=d�{{����Cʚ�!�6����5�Chm o)k����@�2ֽ=D���!e��Z��Cʚ�!�6���tm��p�=d��"e�x{H9�=������f{�
��!e��Z��Cƺ���:��=���Bky{HY�=������f{�
��!c��Cd@�R�l����=���Bky{HY�=������^���:��=���Bky{HY�=��������!t����so�t�y{HY�=������f{�
��!e��Z��Cƺ���:��=���Bky{HY�=������f{�
��!c��Cd@�R�l����=���Bky{HY�=��������!� o)k����@�Rҵ=������rf{�
��!c��Cd@�R�l����=���Bky{HY�=��������!� o)k����@�R�l����=���Bky{�X��Y����5�Chm o)k����@�R�l����=d�{{����CJ����Y8�R�l����=���Bky{�X��Y����5�Chm o)k����@�R�l����=$���!�N o)k����@�R�l����=���Bky{�X��Y����5�Chm o)k����@�R�l����=d��"g�p{H)��*��Cʙ�!�6����Gu����y{��5`{��=���o�������C둵=������O?���}�6SN��������v�)�`}hO����ɘ�7;����"0���d��f2�
��cݓ1d@��Q�LƠ��<����Aky2FY3���d����� O�(k&c��@��Q�LƠ��<����Akq2�H3C���d�rf2�
��e�dZȓ1ʚ��6�'c�uOƐu�y2FY3���d��f2�
��e�dZȓ1�z����d��f2�
��e�dZȓ1ʚ��6�'c�uOƐu�y2FY3���d��f2�
��%]�1�,O�瞌!���d��f2�
��e�dZȓ1ʚ��6�'c�uOƐu�y2FY3���d��f2�
��e�dZȓ1ƺ'c�:�<����Aky2FY3���d��f2�
��cݓ1d@��Q�LƠ��8��k2������dJȓ1ƺ'c�:�<����Aky2FY3���d��f2�
��cݓ1d@��Q�LƠ��<����Aky2FY3���d����� O�(k&c��@��Q�LƠ��<����Aky2�X�dY�&c��<��kN�(ᚌAc�x2F93���d��^&c�:�<����Aky2FY3���d��f2�
��cݓ1d@��Q�LƠ��<����Aky2FY3���d����� O�(k&c��@��Q�LƠ��<����Akq2�H3C���d�R��T�'c�3�1(m O�(k&c��@��1�=C���e�dZȓ1ʚ��6�'c�5�1hm O�람!���d��f2�
��e�dZȓ1ʚ��6�'c�uOƐu�y2FY3���d��f2�
��%]�1�,N�e&cH�8��Q�LƠ��<����Aky2FY3���d����� O�(k&c��@��Q�LƠ��<����Aky2�X�dY�'c�5�1hm O�(k&c��@��Q�LƠ��<#����N O�(k&c��@��Q�LƠ��8��k2�����ܓ1$@��Q�LƠ��<����Aky2FY3���d����� O�(k&c��@��Q�LƠ��<����Aky2�X�dY�'c�5�1hm O�(k&c��@��Q�LƠ��<c�{2��ȓ1ʚ��6'c�tMƠ�p<����Aiy2�X�dY�'c�5�1hm O�(k&c��@��Q�LƠ��<c�{2��ȓ1ʚ��6�'c�5�1hm O�(k&c��@��1�=C���e�dZȓ1ʚ��6�'c�5�1hm O�람!���d����t�'c�3�1(m O�(k&c��@��1�=C���e�dZȓ1ʚ��6�'c�5�1hm O��e2�ȓ1ʚ��6�'c�5�1hm O�(k&c��@��1�=C���e�dZȓ1ʚ��6�'c�5�1hm N�i&c��8��Q�5����d�rf2�
��ZB�1��ɘ��xy<��9~�z��{z��^��4����P�o��v�����z=�g�h������?};����?����/�����}}���������|��vI��5��_��qZ��E �Gk9�W֤�hm ��ʚ��
�^X/i=X'��zeMZ��rZ��I���@N�5i=Z�i����i��&�Gk9�W֤�hm ��J��zt��z��i=I��zeMZ��rZ��I���@N�5i=Z�i����i��&�Gk9�W֤�hm ��ʚ��
��XwZO��^Y�֣����+k�z�6��zeMZ��rZo�;�'��rZ��I���@L�t���,��ʙ��
��XwZO��^Y�֣����+k�z�6��zeMZ��rZo�;�'��rZ��I���@N�5i=Z�i��&�Gk9�7֝֓u�9�W֤�hm ��ʚ��
�^Y�֣�����N��:���+�9�G�5�z%\i=�i�r&�Gi9��KZ�	�^Y�֣����+k�z�6��zeMZ��rZo�;�'��rZ��I���@N�5i=Z�i��&�Gk9�7֝֓u�9�W֤�hm ��ʚ��
�^Y�֣����i�zr6�z�\i=*�i�r&�Gi9�W֤�hm ��ƺ�z� ��ʚ��
�^Y�֣����+k�z�6��zc�i=Y��zeMZ��rZ��I���@N�5i=Z�i����i��&�Gk9�W֤�hm ��J��zt�z�LZO��qZ��I�Q�@N�5i=Z�i��&�Gk9�7֝֓u�9�W֤�hm ��ʚ��
�^Y�֣�����N��:���+k�z�6��zeMZ��rZ��I���@N���փu9�W֤�hm ��ʚ��
Ĵ^IWZ���qZo�;�'��rZ��I���@N�5i=Z�i��&�Gk9�7֝֓u�9�W֤�hm ��ʚ��
�^Y�֣�����N��:���+k�z�6��zeMZ��rZ��I���@N�u��d@N�5i=Z�i�������^9�֣�����N��:���+k�z�6��zeMZ��rZ��I���@N�u��d@N�5i=Z�i��&�Gk9�W֤�hm ��ƺ�z� ��ʚ��
�^Y�֣����+k�z�6��zc�i=Y�z%]i=:�i�r&�Gi9�W֤�hm ��ƺ�z� ��ʚ��
�^Y�֣����+k�z�6��za���`�@N�5i=Z�i��&�Gk9�W֤�hm ��ƺ�z� ��ʚ��
�^Y�֣����+k�z�6�z#MZO��aZ��+�Ge�8�WΤ�(m ���������_�����1���i�j?1�_���a������������Ϳ���o����~���||�P>��{||;���$��;��z�����@b��rb��I,��@N,�u'�d@N,�5�%Zȉ��&�Dk9�T�$�hm '�ƺK� '�ʚ��
��RY�X����X*kK�6�Kc݉%Y�KeMb��bb��+�Dg�8�T�$�(m '�ƺK� '�ʚ��
��RY�X����X*kK�6�Kc݉%Y�KeMb��rb��I,��@N,�5�%Zȉ���Ē�ȉ��&�Dk9�T�$�hm '�ʚ��
���XwbI���R9ω%�a�X*�J,�X8N,�3�%Jȉ��^K�N '�ʚ��
��RY�X����X*kK�6�Kc݉%Y�KeMb��rb��I,��@N,�5�%Zȉ���Ē�ȉ��&�Dk9�T�$�hm '�ʚ��
���H�X��q�X*�J,QY8N,�3�%Jȉ��&�Dk9�4֝X�u�9�T�$�hm '�ʚ��
��RY�X����X�N,�:��X*kK�6�KeMb��rb��I,��@N,�u'�d@N,�5�%Zȉ��&�Dk1�TҕX��p�XeKR6�K�Lb��rb��I,��@N,�5�%Zȉ���Ē�ȉ��&�Dk9�T�$�hm '�ʚ��
���XwbI���RY�X����X*kK�6�KeMb��rb)����ȉ��&�Dk9�T�$�hm &�J�Kt�K�܉%I�KeMb��rb��I,��@N,�5�%Zȉ���Ē�ȉ��&�Dk9�T�$�hm '�ʚ��
���XwbI���RY�X����X*kK�6�KeMb��rbi�;�$��rb��I,��@L,�t%��,'�ʙ��
���XwbI���RY�X����X*kK�6�KeMb��rbi�;�$��rb��I,��@N,�5�%Zȉ��&�Dk9�4֝X�u�9�T�$�hm '�ʚ��
��RY�X����X�N,�:��X*�J,�Y8N,�3�%Jȉ��&�Dk9�4֝X�u�9�T�$�hm '�ʚ��
��RY�X����X
-�%��rb��I,��@N,�5�%Zȉ��&�Dk9�4֝X�u�9�T�$�hm '�ʚ��
��RY�X����XiKr6K�\�%*lj�r&�Di9��NP$������5 �<~��ۋ�<�~c�ʉ�zf'���&��~���?}���������g‹i�����Ϙ7KxӝX^��qb��E �Dk9�T�$�hm '�ƺK� '�ʚ��
��RY�X����X*kK�6�Kc݉%Y�KeMb��rb��I,��@N,�5�%Zȉ���Ē�ȉ��&�Dk1�TҕX��p�X*gK�6�Kc݉%Y�KeMb��rb��I,��@N,�5�%Zȉ���Ē�ȉ��&�Dk9�T�$�hm '�ʚ��
���XwbI���RY�X����X*kK�6�KeMb��rbi�;�$��Rb������0L,�p%�h,'�ʙ��
��RX/�%X'�KeMb��rb��I,��@N,�5�%Zȉ���Ē�ȉ��&�Dk9�T�$�hm '�ʚ��
���XwbI���RY�X����X*kK�6�KeMb��bbi�I,��8L,�r%��,'�ʙ��
��RY�X����X�N,�:��X*kK�6�KeMb��rb��I,��@N,�u'�d@N,�5�%Zȉ��&�Dk9�T�$�hm '�ƺK� '�ʚ��
��RY�X����X*�J,�Y8L,�2�%)lj�r&�Di9�T�$�hm '�ʚ��
���XwbI���RY�X����X*kK�6�KeMb��rbi�;�$��rb��I,��@N,�5�%Zȉ��&�Dk9��Kb	�	��RY�X����X*kK�6K%]�%:lj�q�Ē�ȉ��&�Dk9�T�$�hm '�ʚ��
���XwbI���RY�X����X*kK�6�KeMb��rbi�;�$��rb��I,��@N,�5�%Zȉ��&�Dk9�4֝X�u�9�T�$�hm &�J�Kt�K�Lb��rbi�;�$��rb��I,��@N,�5�%Zȉ��&�Dk9�4֝X�u�9�T�$�hm '�ʚ��
��RY�X����X�N,�:��X*kK�6�KeMb��rb��I,��@N,�u'�d@L,�t%��,'�ʙ��
��RY�X����X�N,�:��X*kK�6�KeMb��rb��I,��@N,���X�u9�T�$�hm '�ʚ��
��RY�X����X�N,�:��X*kK�6�KeMb��rb��I,��@L,�4�%9���R������R9�X����Xw�*���8'�W���t�X��?�-���_k^�1��3;�|Z����LJ/?���,��?����׿�v�����_��Is�����	w���c����k-S�ѫ��W?��>y��J��
�JNYSɡu���s�Uɱ��X�9����@��uUrlm VrʚJ������J��
�J�Iϕ;���s�J��
�JNYSɡu���s�Uɱ��X�9����@��uUrlm VrʚJ������J��
�J�YW%��b%笫�ck��S�Trh@��uUrlm Vrκ*9�6+9g]�[������C��B%��+96^è�s�s%���a%眫�ci��3�]ɑu��s�Uɱ��X�9����@��uUrlm VrʚJ������J��
�J�YW%��b%笫�ck��S�Trh@��uUrlm Vrκ*9�6+9g]�[H����J���J�)ϕ+���s�J��
�J�YW%��b%�����:�X�9����@��uUrlm Vrκ*9�6+9eM%���J�YW%��b%笫�ck��s�Uɱ��X�)k*9� Vrκ*9�6+9g]�[H����+9v�*9�\�*���s�J��
�J�YW%��b%笫�ck��S�Trh@��uUrlm Vrκ*9�6+9g]�[������C��b%笫�ck��s�Uɱ��X�9����@��uWrd�@��uUrlm Vrκ*9�6�*9'=Wr�,VrʙJ������J��
�J�YW%��b%笫�ck��S�Trh@��uUrlm Vrκ*9�6+9g]�[������C��b%笫�ck��s�Uɱ��X�9����@��5�Z+9g]�[H����+9v+9�\�K������C��b%笫�ck��s�Uɱ��X�9����@��5�Z+9g]�[�����J��
�J�YW%��b%�����:�X�9����@��uUrlm Vrκ*9�6+9eM%���J�Iϕ;���s�J��
�J�YW%��b%�����:�X�9����@��uUrlm Vrκ*9�6+9cݕY'+9g]�[�����J��
�J�YW%��b%�����:�X�9����@��uUrlm Vrκ*9�6�*9%]�:G��S�+9V+9�\�K���]�+9~���\���ףJ����������m�?�?}^ɽ�߽|��yy�{{z�/��py��Ly�����������?v����/���_���|�����@>��/���>�q�y�{�~��_���<�=��}����z~�����׻�k=?{���ϭ��w��TFz~���;P�>��{�<?{C����3�b��goXx`}�{y�?��goX��������κ�e��X�^^����
k�������|e=?{�����cx��e=?{����3�/����Y�,Z'��z������
k������C����
k�����Z��ް6�s���c����Y��������MZ��ް6��z�Zdg=?{�����ݳ����
g��U��������gY:����,;���f�6���Y��6���������
��mV�|o3Z���Y��6������ΚE
-�6�)�5�hm /R�^� ���"��f��
�E
-e�"ZȋʚE
-�6�)�u/R�u�y�BY�H���"���E
-t�)�3�(m /R�^� ���"��f��
�E
-e�"ZȋʚE
-�6�)�u/R�u�y�BY�H���"��f��
�E
-e�"Zȋƺ)�:��H��Y�@ky�BY�H���"��f��
�E
-c݋d@Z�P��"�a�H��k����E
-��"Jȋ�zY����"��f��
�E
-e�"ZȋʚE
-�6�)�u/R�u�y�BY�H���"��f��
�E
-e�"Zȋƺ)�:��H��Y�@ky�BY�H���"��f��
�E
-#�"9��J�)PY8^�P�,R����H��Y�@ky��X�"Y�)�5�hm /R(k)��@^�P�,R����Ha�{���ȋʚE
-�6�)�5�hm /R(k)��@^�0ֽHA��E
-e�"ZȋʚE
-�6)�t-R��p�Ha�Y� e�x�B9�H���"��f��
�E
-e�"Zȋƺ)�:��H��Y�@ky�BY�H���"��f��
�E
-c݋d@^�P�,R����H��Y�@ky�BY�H���"��^)�:��H��Y�@ky�BY�H���"���E
-t�)�s/R�t�y�BY�H���"��f��
�E
-e�"Zȋƺ)�:��H��Y�@ky�BY�H���"��f��
�E
-c݋d@^�P�,R����H��Y�@ky�BY�H���"���E
-� /R(k)��@\�PҵH����"�rf��
�E
-c݋d@^�P�,R����H��Y�@ky�BY�H���"���E
-� /R(k)��@^�P�,R����H��Y�@ky��X�"Y�)�5�hm /R(k)��@^�P�,R����Ha�{�����J�)�Y8^�P�,R����H��Y�@ky��X�"Y�)�5�hm /R(k)��@^�P�,R����H!��E
-�N /R(k)��@^�P�,R����H��Y�@ky��X�"Y�)�5�hm /R(k)��@^�P�,R����Ha�Y� g�p�B)�"*NjʙE
-�6�)���"��y���5^�)�����<>�"��W���@_�<|:����#�E��ڤX_�����÷3�?�l�b��#v�i�`����~���H��y��
?���{���{|2
-q~��x`]+ʚ�
�6�g7�5�hm �n(kf7��@��0��n��q<�����@iyvCY3����솲fv�
��
cݳd@��P��n���<�����@kyvCY3����솰^f7�:�<�����@kyvCY3����솲fv�
��
cݳd@��P��n���<�����@kqvCI��:dzƹg7H:�<�����@kyvCY3����솲fv�
��
cݳd@��P��n���<�����@kyvCY3����솱��
� �n(kf7��@��P��n���<�����@kyv�X��Y�g7�5�hm �n(��@g�xvC93����솱��
� �n(kf7��@��P��n���<�����@kyv�X��Y�g7�5�hm �n(kf7��@��P��n���<�a�{v��ȳʚ�
�6�g7�5�hm �n(kf7��@��0�=�A���
�<�n����J�f7�X8��P��n���<�!���
�N �n(kf7��@��P��n���<�����@kyv�X��Y�g7�5�hm �n(kf7��@��P��n���<�a�{v��ȳʚ�
�6�g7�5�hm �n(kf7��@��0��n��q8���kv����
���Jȳʚ�
�6�g7�u�n�u�yvCY3����솲fv�
��
e��Zȳƺg7�:�<�����@kyvCY3����솲fv�
��
cݳd@��P��n���<�����@kqvCI��:��F��
R6�g7�3�(m �n(kf7��@��P��n���<�a�{v��ȳʚ�
�6�g7�5�hm �n(kf7��@��0�=�A���
e��Zȳʚ�
�6�g7�5�hm �n�ev�ȳʚ�
�6�g7�5�hm �n(��@g�xv�8��I�g7�5�hm �n(kf7��@��P��n���<�a�{v��ȳʚ�
�6�g7�5�hm �n(kf7��@��0�=�A���
e��Zȳʚ�
�6�g7�5�hm �n�� ���솲fv�
��
%]��,�n(gf7P�@��0�=�A���
e��Zȳʚ�
�6�g7�5�hm �n�� ���솲fv�
��
e��Zȳʚ�
�6�g7�u�n�u�yvCY3����솲fv�
��
e��Zȳƺg7�:�8���kv����
���Jȳʚ�
�6�g7�u�n�u�yvCY3����솲fv�
��
e��Zȳ�z�����솲fv�
��
e��Zȳʚ�
�6�g7�u�n�u�yvCY3����솲fv�
��
e��Z��F��
r6g7�r�n��p<�����@iyv�F$����yv��5`v��=�f7��*�������=\�8?q�xX����/_~��o��?���z����������c;��?���b��������������u/o{\�~x�uIY8Nu�2�.)���1�L���0�t�p7�`l�F�@����<�(S璲p��e�\R��\��].(�U�Q&�%e�8�5���,��F�����W(w���q�k�	qIY8�p�2.)�
�Q&�%e�8���߂�q\�e�[R�[c\�-	�a��a�[2��[���-(�ŭQ&�%e�8�5�Զ�,��F�Ԗ����V(wg��qek��lIY8Nl�2�-)�}�Q&�%e�8���ւ�q\�e�ZR��Z�LUK��qSk�IjIY8j�r���lմFx�iIw�”��VIK�kw�F�����������+�Z�L@K��q>k��gIY8ng�2�,)��P�n���j�(͒�p��e�YR�{Y�L.K��q,+���e㸔5ʄ��,g�F�J����F�(�Ȓ�p�
-c�X�X�[q,��a��a�X2��X�LK��q+���e㸈5���,�F������(�’�p�
-��`A�8�`�2,)�	�Q��%e�5�䯤,ǯB��WP6��W�L�J��q�j��^IY8l^�q%�$��a�*|�]�W0�]�0�+ǩ�Q�t%e�s5�d��,G�B�WP6�W�L�J��q�j��[IY8n[�2i+)�a�P�����(���p��e�VR�{V�L�J��q�z[yiY���%�Q&d%e�8c5�T��,6�ƸV^�8`�ݯ��q\�e�UR��U�L�J��q�j��VIY8�V�r7��l�F�`����\�(S���pܪeRUR�CU�ܝ*(Ǖ�Q&R%e�8Q5���,��F�<����8U(w�
-��q�j�	SIY8�R�qU�$��q�j�IR�X8R�r���lרF������(S���pܡe2TR�#T��
*(��Q&@%e�8?5�ԧ�,��F�������T(ww
-��quj��NIY8NN�2�))ǽ�Q&7%e�86�ݚ��qX��
-MIx
���S���pܘeSR�S��})(�u�Q&.%e�8-5ʔ��,w�F���������Ҕ+��R�LPJ��qNj��IIY8nI�2)))�!�P�����(���p��e
-RR��Q�L>J��a<*�iGAX0,G�o��仆q6j��F�X8nF�z�(�Ĺ����/�OO��wO��y����נ߿��+��:�����o�]�4��������o���������������������۷OӉ�?\��K>|��ԃ�t�
���m�z����@݀�rߠ�	��@N�u7d@��5�Zȡ���t@k�uP��hm �ƺ{� ʚ��
��AYS=����=(k��6��c��Y���<�h��a�����@cḁP�D(m g�z� �:�\B(kR�6�ceM
��r��	"��@N"�u7d@�"�5YZ�a����@k��P��hm �ƺ�� ʚD�
�HBYSI����I(kB	�6S	#M+A��a-��+�@e�8�P�(m 7ʚh�
�l�Xw7A��rBY�N���O(k�	�6��	eM@��rBa��� ��rE���(��@)�5%Z�-��&�@k9�0��S�u���P�$hm Gʚ��
ĮBIWX���aZa�i+H�8�+�3yJȁ����@k��P�Dhm gƺ;� �ʚ��
��BYS[����[(k��6��c��Y��eMv��rx��)/��@n/�5�Z����^��N ʚ�
�CYSa����a(�
-1�Y8N1�s�$@�1�59Z�A����@k��P�Dhm gƺ�� �ʚ4�
�8CYSg����g(k
�6�
cݍY�+
eM���r���)5��@n5�5�Zȹ���^���ņ�&�@k1�P�Um��p�m(g�
�6��
c��Y��
eM���r���)8��@n8�5Z�����%��&�@k9�P��hm �ʚ��
��Xw�A��CY�u���v(k��6��eM܁�r�a��� ��bᡤ+�@g�8�P�T(m wʚ��
���Xw�A���CY�{���|(k��6��eM��r�!�����凲&�@k9�P��hm �ʚ��
��XwB��
-DY������(kJ�6�[eM��bb��A��8,B�r%!�,G!ʙ*�
�.�8ePa�ǹ�z
HC��c�!7ڐ�s��nC�3iC�b���_���/9��Ǘ�������+����|���_�������?�\^�c �pz��@d�~�?�>����8>���"p����鷱��o� �~+�����0<�V�u������r���
��oa��~�u��[Ys����鷲���
��oe��7Zȧ�ƺO��:�|���9�Fk��[Ys����鷲���
��ocݧ�d@>�V֜~���|���9�Fk��[Ys����鷑�������o�\�ߨ,�~+gN�Q�@>�V֜~���|�m�����ȧ�ʚ�o�6�O��5��hm �~+kN���@>�6�}�M���oe��7Zȧ�ʚ�o�6�O��5��hm �~�>�&���鷲���
��oe��7Z���J�N��Y8<�6ʜ~��q|���9�Fi��[Ys����鷲���
��ocݧ�d@>�V֜~���|���9�Fk��[Ys����鷱��o� �~+kN���@>�V֜~���|���9�Fk��[X/��`�@>�V֜~���|���9�Fk��[I��7:ǧ�ƹO�I:�|���9�Fk��[Ys����鷲���
��ocݧ�d@>�V֜~���|���9�Fk��[Ys����鷱��o� �~+kN���@>�V֜~���|���9�Fk���X��7Y�O��5��hm �~+�:�Fg���[9s����鷱��o� �~+kN���@>�V֜~���|���9�Fk���X��7Y�O��5��hm �~+kN���@>�V֜~���|�m�����ȧ�ʚ�o�6�O��5��hm �~+kN���@>�6�}�M���o%]���,�~+gN�Q�@>�V֜~���|�m�����ȧ�ʚ�o�6�O��5��hm �~+kN���@>����7X'�O��5��hm �~+kN���@>�V֜~���|�m�����ȧ�ʚ�o�6�O��5��hm �~+kN���@<�6Ҝ~��qx���������o���7Jȧ��G�����|�}�p�}�����~�xy{����LN����������?��_~������_���7��Å�������B�w�x��~�zp��t�������?��S�ǻ��?�}|�O��goXx`}���b��goXx`}���������am��֯����'0c]ϲu������Z��ް6��z������7��;P�>���Ô���
i����<H�z��x`]_������6��=DY��!hm {����C��@��c��B��oQ�|{Z�������6��=DY��!hm {���o!���(k�=�
�oQ�$dhm 'dʚ��
��XwBF���L9�	�a��)�J��X8NȔ3	J�	��^2�N 'dʚ��
�LY�������)k2�6�2c�	Y�2eMB��rB��I���@NȔ5	Z�	����	��&!Ck9!S�$dhm 'dʚ��
Ą�H����q��)�J�PY8NȔ3	J�	��&!Ck9!3֝��u�9!S�$dhm 'dʚ��
�LY��������N��:���)k2�6�2eMB��rB��I���@NȌu'dd@NȔ5	Z�	��&!Ck1!Sҕ���p��e2R6�2�LB��rB��I���@NȔ5	Z�	����	��&!Ck9!S�$dhm 'dʚ��
��XwBF��LY�������)k2�6�2eMB��rB&�����	��&!Ck9!S�$dhm &dJ�2t�2��	I�2eMB��rB��I���@NȔ5	Z�	����	��&!Ck9!S�$dhm 'dʚ��
��XwBF��LY�������)k2�6�2eMB��rBf�;!#��rB��I���@LȔt%d�,'dʙ��
��XwBF��LY�������)k2�6�2eMB��rBf�;!#��rB��I���@NȔ5	Z�	��&!Ck9!3֝��u�9!S�$dhm 'dʚ��
�LY��������N��:���)�J��Y8NȔ3	J�	��&!Ck9!3֝��u�9!S�$dhm 'dʚ��
�LY�������	�%!�rB��I���@NȔ5	Z�	��&!Ck9!3֝��u�9!S�$dhm 'dʚ��
�LY�������i2r62�\	*�	�r&!Ci9!;��TB��qNȮ^���0!;~��oßO��?پ�޽�|�
#/�w/��p�zI�Nz�����������?�����	��endstream
-endobj
-1645 0 obj <<
-/Type /Page
-/Contents 1646 0 R
-/Resources 1644 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 1202 0 R
-/Annots [ 1648 0 R 1649 0 R 1650 0 R 1651 0 R 1652 0 R 1653 0 R 1654 0 R 1655 0 R 1656 0 R 1657 0 R 1658 0 R 1659 0 R 1660 0 R 1661 0 R 1662 0 R 1663 0 R 1664 0 R 1665 0 R 1666 0 R 1667 0 R 1668 0 R 1669 0 R 1670 0 R 1671 0 R 1672 0 R 1673 0 R 1674 0 R 1675 0 R 1676 0 R 1677 0 R 1678 0 R 1679 0 R 1680 0 R 1681 0 R 1682 0 R 1683 0 R 1684 0 R 1685 0 R 1686 0 R 1687 0 R 1688 0 R 1689 0 R 1690 0 R 1691 0 R 1692 0 R 1693 0 R 1694 0 R 1695 0 R 1696 0 R 1697 0 R 1698 0 R 1699 0 R 1700 0 R 1701 0 R 1702 0 R 1703 0 R 1704 0 R 1705 0 R 1706 0 R 1707 0 R 1708 0 R 1709 0 R 1710 0 R 1711 0 R 1712 0 R 1713 0 R 1714 0 R 1715 0 R 1716 0 R 1717 0 R 1718 0 R 1719 0 R 1720 0 R 1721 0 R 1722 0 R 1723 0 R 1724 0 R 1725 0 R 1726 0 R 1727 0 R 1728 0 R 1729 0 R 1730 0 R 1731 0 R 1732 0 R 1733 0 R 1734 0 R 1735 0 R 1736 0 R 1737 0 R 1738 0 R 1739 0 R 1740 0 R 1741 0 R ]
->> endobj
-1648 0 obj <<
+1665 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 706.187 189.997 715.098]
+/Rect [95.641 639.039 189.997 647.95]
 /Subtype /Link
 /A << /S /GoTo /D (query) >>
 >> endobj
-1649 0 obj <<
+1666 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 706.187 537.983 715.098]
+/Rect [528.02 639.039 537.983 647.95]
 /Subtype /Link
 /A << /S /GoTo /D (query) >>
 >> endobj
-1650 0 obj <<
+1667 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [119.552 695.293 206.166 702.147]
+/Rect [119.552 628.145 206.166 634.999]
 /Subtype /Link
 /A << /S /GoTo /D (boolean) >>
 >> endobj
-1651 0 obj <<
+1668 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 695.293 537.983 702.147]
+/Rect [528.02 628.145 537.983 634.999]
 /Subtype /Link
 /A << /S /GoTo /D (boolean) >>
 >> endobj
-1652 0 obj <<
+1669 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [143.462 682.341 260.263 689.195]
+/Rect [143.462 615.193 260.263 622.047]
 /Subtype /Link
 /A << /S /GoTo /D (pronouns) >>
 >> endobj
-1653 0 obj <<
+1670 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 682.341 537.983 689.195]
+/Rect [528.02 615.193 537.983 622.047]
 /Subtype /Link
 /A << /S /GoTo /D (pronouns) >>
 >> endobj
-1654 0 obj <<
+1671 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [143.462 667.333 212.164 676.244]
+/Rect [143.462 600.184 212.164 609.096]
 /Subtype /Link
 /A << /S /GoTo /D (negation) >>
 >> endobj
-1655 0 obj <<
+1672 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 667.333 537.983 676.244]
+/Rect [528.02 600.184 537.983 609.096]
 /Subtype /Link
 /A << /S /GoTo /D (negation) >>
 >> endobj
-1656 0 obj <<
+1673 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [143.462 654.381 238.664 663.293]
+/Rect [143.462 587.233 238.664 596.144]
 /Subtype /Link
 /A << /S /GoTo /D (multiplecharts) >>
 >> endobj
-1657 0 obj <<
+1674 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 654.381 537.983 663.293]
+/Rect [528.02 587.233 537.983 596.144]
 /Subtype /Link
 /A << /S /GoTo /D (multiplecharts) >>
 >> endobj
-1658 0 obj <<
+1675 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [119.552 641.803 194.251 650.341]
+/Rect [119.552 574.655 194.251 583.193]
 /Subtype /Link
 /A << /S /GoTo /D (quicksearch) >>
 >> endobj
-1659 0 obj <<
+1676 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 641.803 537.983 650.341]
+/Rect [528.02 574.655 537.983 583.193]
 /Subtype /Link
 /A << /S /GoTo /D (quicksearch) >>
 >> endobj
-1660 0 obj <<
+1677 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [119.552 561.33 256.835 570.242]
+/Subtype /Link
+/A << /S /GoTo /D (casesensitivity) >>
+>> endobj
+1678 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 561.33 537.983 570.242]
+/Subtype /Link
+/A << /S /GoTo /D (casesensitivity) >>
+>> endobj
+1679 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [119.552 628.478 182.933 637.39]
+/Rect [119.552 548.379 182.933 557.29]
 /Subtype /Link
 /A << /S /GoTo /D (list) >>
 >> endobj
-1661 0 obj <<
+1680 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 628.478 537.983 637.39]
+/Rect [528.02 548.379 537.983 557.29]
 /Subtype /Link
 /A << /S /GoTo /D (list) >>
 >> endobj
-1662 0 obj <<
+1681 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [119.552 615.527 287.182 624.438]
+/Rect [119.552 535.427 287.182 544.339]
 /Subtype /Link
 /A << /S /GoTo /D (individual-buglists) >>
 >> endobj
-1663 0 obj <<
+1682 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 615.527 537.983 624.438]
+/Rect [528.02 535.427 537.983 544.339]
 /Subtype /Link
 /A << /S /GoTo /D (individual-buglists) >>
 >> endobj
-1664 0 obj <<
+1683 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 602.575 159.86 611.487]
+/Rect [95.641 522.476 159.86 531.387]
 /Subtype /Link
 /A << /S /GoTo /D (bugreports) >>
 >> endobj
-1665 0 obj <<
+1684 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 602.575 537.983 611.487]
+/Rect [528.02 522.476 537.983 531.387]
 /Subtype /Link
 /A << /S /GoTo /D (bugreports) >>
 >> endobj
-1666 0 obj <<
+1685 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [119.552 589.624 231.372 598.535]
+/Rect [119.552 509.524 231.372 518.436]
 /Subtype /Link
 /A << /S /GoTo /D (fillingbugs) >>
 >> endobj
-1667 0 obj <<
+1686 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 589.624 537.983 598.535]
+/Rect [528.02 509.524 537.983 518.436]
 /Subtype /Link
 /A << /S /GoTo /D (fillingbugs) >>
 >> endobj
-1668 0 obj <<
+1687 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [119.552 576.673 234.958 585.584]
+/Rect [119.552 496.573 234.958 505.484]
 /Subtype /Link
 /A << /S /GoTo /D (cloningbugs) >>
 >> endobj
-1669 0 obj <<
+1688 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 576.673 537.983 585.584]
+/Rect [528.02 496.573 537.983 505.484]
 /Subtype /Link
 /A << /S /GoTo /D (cloningbugs) >>
 >> endobj
-1670 0 obj <<
+1689 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 565.778 163.436 572.633]
+/Rect [95.641 485.679 163.436 492.533]
 /Subtype /Link
 /A << /S /GoTo /D (attachments) >>
 >> endobj
-1671 0 obj <<
+1690 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 565.778 537.983 572.633]
+/Rect [528.02 485.679 537.983 492.533]
 /Subtype /Link
 /A << /S /GoTo /D (attachments) >>
 >> endobj
-1672 0 obj <<
+1691 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [119.552 552.827 197.409 559.681]
+/Rect [119.552 472.727 197.409 479.581]
 /Subtype /Link
 /A << /S /GoTo /D (patchviewer) >>
 >> endobj
-1673 0 obj <<
+1692 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 552.827 537.983 559.681]
+/Rect [528.02 472.727 537.983 479.581]
 /Subtype /Link
 /A << /S /GoTo /D (patchviewer) >>
 >> endobj
-1674 0 obj <<
+1693 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [143.462 537.818 307.765 546.73]
+/Rect [143.462 457.719 307.765 466.63]
 /Subtype /Link
 /A << /S /GoTo /D (patchviewer_view) >>
 >> endobj
-1675 0 obj <<
+1694 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 537.818 537.983 546.73]
+/Rect [528.02 457.719 537.983 466.63]
 /Subtype /Link
 /A << /S /GoTo /D (patchviewer_view) >>
 >> endobj
-1676 0 obj <<
+1695 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [143.462 524.867 352.437 533.778]
+/Rect [143.462 444.767 352.437 453.679]
 /Subtype /Link
 /A << /S /GoTo /D (patchviewer_diff) >>
 >> endobj
-1677 0 obj <<
+1696 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 524.867 537.983 533.778]
+/Rect [528.02 444.767 537.983 453.679]
 /Subtype /Link
 /A << /S /GoTo /D (patchviewer_diff) >>
 >> endobj
-1678 0 obj <<
+1697 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [143.462 511.915 305.324 520.827]
+/Rect [143.462 431.816 305.324 440.727]
 /Subtype /Link
 /A << /S /GoTo /D (patchviewer_context) >>
 >> endobj
-1679 0 obj <<
+1698 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 511.915 537.983 520.827]
+/Rect [528.02 431.816 537.983 440.727]
 /Subtype /Link
 /A << /S /GoTo /D (patchviewer_context) >>
 >> endobj
-1680 0 obj <<
+1699 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [143.462 498.964 359.988 507.875]
+/Rect [143.462 418.864 359.988 427.776]
 /Subtype /Link
 /A << /S /GoTo /D (patchviewer_collapse) >>
 >> endobj
-1681 0 obj <<
+1700 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 498.964 537.983 507.875]
+/Rect [528.02 418.864 537.983 427.776]
 /Subtype /Link
 /A << /S /GoTo /D (patchviewer_collapse) >>
 >> endobj
-1682 0 obj <<
+1701 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [143.462 486.013 299.107 494.924]
+/Rect [143.462 405.913 299.107 414.824]
 /Subtype /Link
 /A << /S /GoTo /D (patchviewer_link) >>
 >> endobj
-1683 0 obj <<
+1702 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 486.013 537.983 494.924]
+/Rect [528.02 405.913 537.983 414.824]
 /Subtype /Link
 /A << /S /GoTo /D (patchviewer_link) >>
 >> endobj
-1684 0 obj <<
+1703 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [143.462 473.061 280.448 481.973]
+/Rect [143.462 392.961 280.448 401.873]
 /Subtype /Link
 /A << /S /GoTo /D (patchviewer_bonsai_lxr) >>
 >> endobj
-1685 0 obj <<
+1704 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 473.061 537.983 481.973]
+/Rect [528.02 392.961 537.983 401.873]
 /Subtype /Link
 /A << /S /GoTo /D (patchviewer_bonsai_lxr) >>
 >> endobj
-1686 0 obj <<
+1705 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [143.462 460.11 268.283 469.021]
+/Rect [143.462 380.01 268.283 388.921]
 /Subtype /Link
 /A << /S /GoTo /D (patchviewer_unified_diff) >>
 >> endobj
-1687 0 obj <<
+1706 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 460.11 537.983 469.021]
+/Rect [528.02 380.01 537.983 388.921]
 /Subtype /Link
 /A << /S /GoTo /D (patchviewer_unified_diff) >>
 >> endobj
-1688 0 obj <<
+1707 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 447.158 171.397 456.07]
+/Rect [95.641 367.059 171.397 375.97]
 /Subtype /Link
 /A << /S /GoTo /D (hintsandtips) >>
 >> endobj
-1689 0 obj <<
+1708 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 447.158 537.983 456.07]
+/Rect [528.02 367.059 537.983 375.97]
 /Subtype /Link
 /A << /S /GoTo /D (hintsandtips) >>
 >> endobj
-1690 0 obj <<
+1709 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [119.552 436.264 212.542 443.118]
+/Rect [119.552 356.164 212.542 363.019]
 /Subtype /Link
-/A << /S /GoTo /D (2388) >>
+/A << /S /GoTo /D (2454) >>
 >> endobj
-1691 0 obj <<
+1710 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 436.264 537.983 443.118]
+/Rect [528.02 356.164 537.983 363.019]
 /Subtype /Link
-/A << /S /GoTo /D (2388) >>
+/A << /S /GoTo /D (2454) >>
 >> endobj
-1692 0 obj <<
+1711 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [119.552 423.313 187.636 430.167]
+/Rect [119.552 343.213 187.636 350.067]
 /Subtype /Link
 /A << /S /GoTo /D (commenting) >>
 >> endobj
-1693 0 obj <<
+1712 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 423.313 537.983 430.167]
+/Rect [528.02 343.213 537.983 350.067]
 /Subtype /Link
 /A << /S /GoTo /D (commenting) >>
 >> endobj
-1694 0 obj <<
+1713 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [119.552 328.204 275.267 337.116]
+/Subtype /Link
+/A << /S /GoTo /D (comment-wrapping) >>
+>> endobj
+1714 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 328.204 537.983 337.116]
+/Subtype /Link
+/A << /S /GoTo /D (comment-wrapping) >>
+>> endobj
+1715 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [119.552 408.304 214.495 417.215]
+/Rect [119.552 315.253 214.495 324.164]
 /Subtype /Link
 /A << /S /GoTo /D (dependencytree) >>
 >> endobj
-1695 0 obj <<
+1716 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 408.304 537.983 417.215]
+/Rect [528.02 315.253 537.983 324.164]
 /Subtype /Link
 /A << /S /GoTo /D (dependencytree) >>
 >> endobj
-1696 0 obj <<
+1717 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 395.353 221.947 404.264]
+/Rect [95.641 302.301 221.947 311.213]
 /Subtype /Link
 /A << /S /GoTo /D (timetracking) >>
 >> endobj
-1697 0 obj <<
+1718 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 395.353 537.983 404.264]
+/Rect [528.02 302.301 537.983 311.213]
 /Subtype /Link
 /A << /S /GoTo /D (timetracking) >>
 >> endobj
-1698 0 obj <<
+1719 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 384.458 185.822 391.312]
+/Rect [95.641 291.288 185.822 298.261]
 /Subtype /Link
 /A << /S /GoTo /D (userpreferences) >>
 >> endobj
-1699 0 obj <<
+1720 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 384.458 537.983 391.312]
+/Rect [528.02 291.288 537.983 298.261]
 /Subtype /Link
 /A << /S /GoTo /D (userpreferences) >>
 >> endobj
-1700 0 obj <<
+1721 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [119.552 371.507 232.149 378.361]
+/Rect [119.552 278.336 229.927 285.31]
 /Subtype /Link
-/A << /S /GoTo /D (accountpreferences) >>
+/A << /S /GoTo /D (generalpreferences) >>
 >> endobj
-1701 0 obj <<
+1722 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 371.507 537.983 378.361]
+/Rect [528.02 278.336 537.983 285.31]
 /Subtype /Link
-/A << /S /GoTo /D (accountpreferences) >>
+/A << /S /GoTo /D (generalpreferences) >>
 >> endobj
-1702 0 obj <<
+1723 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [119.552 358.436 229.927 365.41]
+/Rect [119.552 265.385 222.196 272.359]
 /Subtype /Link
-/A << /S /GoTo /D (generalpreferences) >>
+/A << /S /GoTo /D (emailpreferences) >>
 >> endobj
-1703 0 obj <<
+1724 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 358.436 537.983 365.41]
+/Rect [528.02 265.385 537.983 272.359]
 /Subtype /Link
-/A << /S /GoTo /D (generalpreferences) >>
+/A << /S /GoTo /D (emailpreferences) >>
 >> endobj
-1704 0 obj <<
+1725 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [119.552 345.484 222.196 352.458]
+/Rect [119.552 252.553 211.337 259.407]
 /Subtype /Link
-/A << /S /GoTo /D (emailpreferences) >>
+/A << /S /GoTo /D (savedsearches) >>
 >> endobj
-1705 0 obj <<
+1726 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 345.484 537.983 352.458]
+/Rect [528.02 252.553 537.983 259.407]
 /Subtype /Link
-/A << /S /GoTo /D (emailpreferences) >>
+/A << /S /GoTo /D (savedsearches) >>
 >> endobj
-1706 0 obj <<
+1727 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [119.552 239.602 230.535 246.456]
+/Subtype /Link
+/A << /S /GoTo /D (accountpreferences) >>
+>> endobj
+1728 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [528.02 239.602 537.983 246.456]
+/Subtype /Link
+/A << /S /GoTo /D (accountpreferences) >>
+>> endobj
+1729 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [119.552 332.653 197.598 339.507]
+/Rect [119.552 226.65 197.598 233.504]
 /Subtype /Link
 /A << /S /GoTo /D (permissionsettings) >>
 >> endobj
-1707 0 obj <<
+1730 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 332.653 537.983 339.507]
+/Rect [528.02 226.65 537.983 233.504]
 /Subtype /Link
 /A << /S /GoTo /D (permissionsettings) >>
 >> endobj
-1708 0 obj <<
+1731 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 317.644 194.43 326.555]
+/Rect [95.641 211.641 194.43 220.553]
 /Subtype /Link
 /A << /S /GoTo /D (reporting) >>
 >> endobj
-1709 0 obj <<
+1732 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 317.644 537.983 326.555]
+/Rect [528.02 211.641 537.983 220.553]
 /Subtype /Link
 /A << /S /GoTo /D (reporting) >>
 >> endobj
-1710 0 obj <<
+1733 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [119.552 304.692 180.433 313.604]
+/Rect [119.552 198.69 180.433 207.601]
 /Subtype /Link
 /A << /S /GoTo /D (reports) >>
 >> endobj
-1711 0 obj <<
+1734 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 304.692 537.983 313.604]
+/Rect [528.02 198.69 537.983 207.601]
 /Subtype /Link
 /A << /S /GoTo /D (reports) >>
 >> endobj
-1712 0 obj <<
+1735 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [119.552 293.798 175.452 300.652]
+/Rect [119.552 187.796 175.452 194.65]
 /Subtype /Link
 /A << /S /GoTo /D (charts) >>
 >> endobj
-1713 0 obj <<
+1736 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 293.798 537.983 300.652]
+/Rect [528.02 187.796 537.983 194.65]
 /Subtype /Link
 /A << /S /GoTo /D (charts) >>
 >> endobj
-1714 0 obj <<
+1737 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [143.462 278.79 243.636 287.701]
+/Rect [143.462 172.787 243.636 181.699]
 /Subtype /Link
-/A << /S /GoTo /D (2516) >>
+/A << /S /GoTo /D (2651) >>
 >> endobj
-1715 0 obj <<
+1738 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 278.79 537.983 287.701]
+/Rect [528.02 172.787 537.983 181.699]
 /Subtype /Link
-/A << /S /GoTo /D (2516) >>
+/A << /S /GoTo /D (2651) >>
 >> endobj
-1716 0 obj <<
+1739 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [143.462 265.838 276.582 274.75]
+/Rect [143.462 159.836 276.582 168.747]
 /Subtype /Link
-/A << /S /GoTo /D (2523) >>
+/A << /S /GoTo /D (charts-new-series) >>
 >> endobj
-1717 0 obj <<
+1740 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 265.838 537.983 274.75]
+/Rect [528.02 159.836 537.983 168.747]
 /Subtype /Link
-/A << /S /GoTo /D (2523) >>
+/A << /S /GoTo /D (charts-new-series) >>
 >> endobj
-1718 0 obj <<
+1741 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 252.887 139.646 261.798]
+/Rect [95.641 146.884 139.646 155.796]
 /Subtype /Link
 /A << /S /GoTo /D (flags) >>
 >> endobj
-1719 0 obj <<
+1742 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 252.887 537.983 261.798]
+/Rect [528.02 146.884 537.983 155.796]
 /Subtype /Link
 /A << /S /GoTo /D (flags) >>
 >> endobj
-1720 0 obj <<
+1743 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 239.935 152.926 248.847]
+/Rect [95.641 133.933 152.926 142.844]
 /Subtype /Link
 /A << /S /GoTo /D (whining) >>
 >> endobj
-1721 0 obj <<
+1744 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 239.935 537.983 248.847]
+/Rect [528.02 133.933 537.983 142.844]
 /Subtype /Link
 /A << /S /GoTo /D (whining) >>
 >> endobj
-1722 0 obj <<
+1745 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [119.552 229.041 190.515 235.895]
+/Rect [119.552 123.039 190.515 129.893]
 /Subtype /Link
 /A << /S /GoTo /D (whining-overview) >>
 >> endobj
-1723 0 obj <<
+1746 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 229.041 537.983 235.895]
+/Rect [528.02 123.039 537.983 129.893]
 /Subtype /Link
 /A << /S /GoTo /D (whining-overview) >>
 >> endobj
-1724 0 obj <<
+1747 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [119.552 214.032 223.322 222.944]
+/Rect [119.552 108.03 223.322 116.941]
 /Subtype /Link
 /A << /S /GoTo /D (whining-schedule) >>
 >> endobj
-1725 0 obj <<
+1748 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 214.032 537.983 222.944]
+/Rect [528.02 108.03 537.983 116.941]
 /Subtype /Link
 /A << /S /GoTo /D (whining-schedule) >>
 >> endobj
-1726 0 obj <<
+1749 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [119.552 201.081 222.206 209.992]
+/Rect [119.552 95.079 222.206 103.99]
 /Subtype /Link
 /A << /S /GoTo /D (whining-query) >>
 >> endobj
-1727 0 obj <<
+1750 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 201.081 537.983 209.992]
+/Rect [528.02 95.079 537.983 103.99]
 /Subtype /Link
 /A << /S /GoTo /D (whining-query) >>
 >> endobj
-1728 0 obj <<
+1654 0 obj <<
+/D [1652 0 R /XYZ 71.731 729.265 null]
+>> endobj
+1651 0 obj <<
+/Font << /F32 1231 0 R /F27 1224 0 R /F33 1322 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1801 0 obj <<
+/Length 56070     
+/Filter /FlateDecode
+>>
+stream
+xڔ�_�]����y�+�@t�N����hƎ`�A���nn�
+�=�̫�)�g=u�S���+��Ҟ�9dIM���>�pu���?<7�����p}�Ï���~>�+��o������������/����x�=�����t}|����pwJ������������������~����t����y(��������xs�=�����ջ�����ݿ|�����������ݗ߾n��?}����_��������0�뛻����g����w�O;������x�=�����x���{냼�n�^P;�m��x�z�w�x��%pG�9��?Hu{��ځ;������۳��Qw��Rݞ��v������p����,�K��z�2�Zu{��ځ;���p+��^0+n�<}
�������h��ޟ��Rϲ����Z�۳��QO_�+�n�^P;pG=�i�t#���j��>��l|��ϲ�?;��={A�������cn<{A����e��̍g/����x�2�Ju<������7����w�ӗ�Z�17���v��z�2��={A���էӗ�J�17�eu	�QO_i>?yA<��������b�퐧�Q�7���v����������Q�gQ]wԛ�ͽU�g/�����
+w7Rݞ��v�����Nݞ��v�����e���x��%pG=}�鷺={A����e8�Ku{��ځ;��_�������V��O��<�����N:Hu{��ځ;������۳��Q��ORݞ��v������ �ʹ=�f�퐧���������v����(���h/����f<{A�����ӗ�Z��YV����U8�?�Ƴ��QO_�m�<{A����p|������V����?7�YV����p���^P;pG�;��[u{��ځ;���p'���^P;�m���e��ڌgY]w�ӗ�ƪ۳��QO_�k�g�x��ځ;��� ���=z����ɇ��@�y�=�d�퐧/��5�g/������o�x��ځ;����Ѫ۳�|[}�:�=�?�Ƴ�.�;����^�i3���v��z�2�Yu{��ځ;���p+���^P;�m���e���x��%pG=}��q��j/�Q�7���v��z�2\Yu{��ځo��WW��'�g\�Eu
�Q�O�{xy��ځ;������۳��Q���fŽMO_�Gk�et	�QO_�;�n�^P;pG=}
n���={A����U��������V�O_�k��gY]w�ӗ�x+���j/�<;ɳ��Q�OVݞ��v���������1�gY]w��ã<;ɳ��Q�7�Vݞ��v��z�2��?�Ƴ�|[�=}��I�eu	�QO_��n�^P;pG=}�ߚ�G/��C����$�^@;�m���58Ju<��������$�^P;pG�;\˳�<{A������h���j���_���I�eu	�Q���$�^P;pG=}={A����e�g'y��ځo��/�<;ɳ�.�;���pm���j/�<;ɳ��QO_yv�g/����xu8>Iu<����^�-���f��w��<>ɳ��Q�Vݞ��v�����k �O�,�K��z�*��<{A����e������w�ӗA���j���]����y�5pG=}�Vݞ��v��z�2��<{A����p'�ϔg/���z�:\��D�eu	�Q�w��$�^P;pG�;\�[u{��ځ;��� y��ځo�ק/����(��C���������v��@�%���w����㓗f����nv�]?.�������x��9nOo�Ϭ���u�~w����鏖��M���?�l��8?�������t?�q����o_����f?�����>��ˇ������K��������v|�9<>����C������nn��� o�۳��Q��Vݞ��v�����p�?R��(��C��ǣ4�g/�����WVݞ��v���xxx���۳�|[}:�O��W�x��%pG�9<<Xu{��ځ;���`��Rݞ��v��z�2��Iu{��ځo��N_�[��YT����e�������w�ӗ��g�S�g/�����G�n�^P;�m�x�2\=:u<�������={A����p|�����w��ý�
������&�����'�2����U�g/�����w�Rݞ��v��z�*��Hu{��ځ;{	�/ÍTdz�.�;���p}+���j�ۀ�S�"���N��v .R(5��.��H�ԱH�j�"�S�"���N��v .R(5��.��H�ԱH�j�"�C�E
+6+)�9)�@\�Pj)P]q�©c����E
+��E
+V;)�:)X�@\�Pj)P]q�©c����E
+��E
+V;)�:)X�@\�Pj)P]q�©c����E
+��E
+V;)�:)X�@\�Pj)P]a�™�)X<�E
+n�,V.R8s,R0ځ�HaԹHA���N��v .R8u,R�ځ�H�ԱH�j�"�R�H����N��v .R8u,R�ځ�H�ԱH�j�"�R�H����N��v .R8u,R�ځ�H�ԱH�j�"�B�"�G���)��8\�p�X�`�q�©c����E
+�f��%)�:)X�@\�p�X�`�q�©c����E
+�f��%)�:)X�@\�p�X�`�q�©c����E
+�f��%)�:)X�@\�p�X�`�i�¡�"�G���Hv.R8s,R0ځ�H�ԱH�j�"�S�"���J�"�K .R8u,R�ځ�H�ԱH�j�"�S�"���J�"�K .R8u,R�ځ�H�ԱH�j�"�S�"���F������H�ԱH�j�"�S�"�H��)ج8\�Pf)]q�©c����E
+��E
+V;)�:)X�@\�Pj)P]q�©c����E
+��E
+V;)�:)X�@\�Pj)P]q�©c����E
+��E
+V;)�:)X�@\�Pj)P]q�©c����E
+�n�lV.R8s,R0ځ�H��,R���"�S�"���N��v .R8u,R�ځ�H��,R���"�S�"���N��v .R8u,R�ځ�H��,R���"�S�"���N��v .R8u,R�ځ�H��,R���"�C�E
+6+)�9)�@\�p�X�`�q�B�Y�@u	�E
+��E
+V;)�:)X�@\�p�X�`�q�¨s���5)�:)X�@\�p�X�`�q�©c����E
+�f��%)�:)X�@\�p�X�`�q�©c����E
+��E
+4;�)�-R0Yq�H�̱H�h�",+�E
+�ߟ9�{��9���6��o>s�S���-�鿵ݟ����D�x&�l��ڤ�o��>�z;��~�v_�׿c��-�LQ����	>`:��o�B7wo~�7F!�gY]wԱ����n�ځ<����n�ځ<����n�ځ8�a��n��q<����n ځ<����n�ځ<����n�ځ<�a�9�A�ȳJ���ȳJ���ȳJ���ȳB}���u
��
�fv���
�fv���
�fv���
���
R�@��Pjf7P�@��Pjf7P�@��P��@��xvØsv��%�g7���
T;�g7���
T;�g7���
T;�g7�:g7H]yvC���@�yvC���@�yvC���@�yvèsv��%�g7���
T;�g7���
T;�g7���
T;�g7�:g7H]yvC���@�qvC�cv͊��
efv���
���
R�@��Pjf7P�@��Pjf7P�@��Pjf7P�@��0�� u	��
�fv���
�fv���
�fv���
���
R�@��Pjf7P�@��Pjf7P�@��Pjf7P�@��0�� u	��
en�(�������dz����ȳB}���u
��
�fv���
�fv���
�fv���
���
R�@��Pjf7P�@��Pjf7P�@��Pjf7P�@��0�� u	��
�fv���
�fv���
�fv���
�fv�̎��
E��
$+�g7���
D;�g7���
T;�g7�:g7H]yvC���@�yvC���@�yvC���@�yvèsv��%�g7���
T;�g7���
T;�g7���
T;�g7�:g7H]yvC���@�yvC���@�qvC�cv͊��
Cfv�Ȏ��
efv���
�fv���
�fv���
���
R�@��Pjf7P�@��Pjf7P�@��Pjf7P�@��0�� u	��
�fv���
�fv���
�fv���
���n����R3��j��R3��j��B���dzƜ��.�<����n�ځ<����n�ځ<����n�ځ<�a�9�A�ȳJ���ȳJ���ȳJ���ȳF���.�<����n�ځ<����n�ځ<����n�ځ<�a�9�A�ȳJ�����
+�hV�n(3��v �nu�n����R3��j��R3��j��R3��j��Q���K �n(5��v �n(5��v �n(5��v �nu�n����R3��j��R3��j��R3��j��Q���K �n(t�n�Yq<����n ځ<����n�ځ<�a�9�A�ȳJ���ȳJ���ȳJ���ȳB}���u
��
�fv���
�fv���
�fv���
���
R�@��Pjf7P�@��Pjf7P�@��Pjf7P�@��0hf7��8��P��@��xvC���@�yv�F$��~�mv��c�����8��x�V�ٍ���k{�ٍ��6�q=f7�������?���>�q|���>}���=���ާμ׿w�O;�/�]����{���+��?TvQ�@��*5�]T;+�
+�]4+�+�Ɯ�]B�@��*5�]T;�+�JMe��ʮRS�E���k�Y�%u	�ʮRS�E�����TvQ�@��*5�]T;�+�F��]R�@��*5�]T;�+�JMe��ʮRS�E���k�Y�%u	�ʮRS�E�����Q�E�⸲��Tv�@��uVvI]����TvQ�@��*5�]T;�+�JMe��ʮQge��%�+�JMe��ʮRS�E�����TvQ�@��uVvI]����TvQ�@��*5�]T;�+�JMe��ʮQge��%�*���*�(��aeW����b�qeW���"ځ\��Ke�5�+�JMe��ʮRS�E�����TvQ�@��uVvI]����TvQ�@��*5�]T;�+�JMe��ʮQge��%�+�JMe��ʮRS�E�����TvQ�@��4�]2;+���]$+�+��Le��ʮRS�E���k�Y�%u	�ʮRS�E�����TvQ�@��*5�]T;�+�F��]R�@��*5�]T;�+�JMe��ʮRS�E���k�Y�%u	�ʮRS�E�����TvQ�@��*tTvѬ8��2�]";�+��Le��ʮRS�E�����TvQ�@��uVvI]����TvQ�@��*5�]T;�+�JMe��ʮQge��%�+�JMe��ʮRS�E�����TvQ�@��
+����ȕ]����jreW���ځX�U��Yq\�5���reW���ځ\�Uj*��v Wv���.�ȕ]���.�K Wv���.�ȕ]����jreW���ځ\�5�쒺reW���ځ\�Uj*��v Wv���.�ȕ]���.�K Wv���.���]���.�Ǖ]e���hreר��K�ȕ]����jreW���ځ\�Uj*��v Wv�:+��.�\�Uj*��v Wv���.�ȕ]����jreר��K�ȕ]����jreW���ځ\�Uj*��v Wv�:+��.�X�U��Yq\�Uf*��v Wv���.�ȕ]���.�K Wv���.�ȕ]����jreW���ځ\��Ke�5�+�JMe��ʮRS�E�����TvQ�@��uVvI]����TvQ�@��*5�]T;�+�JMe��ʮAS�%�㰲��Q�E�⸲��Tv�@��R�TTv�sl�ݳ������������W=����O�C=�������� ���LJ�����?|����o_�������������~���׏o�O~8��y��[�;��
��?�!g�����@7��n�R�
A��b��
!u	�n�R�
A����tCP�@�(5�T;��!F��R�@�(5�T;��!JM7��n�R�
A��b��
!u	�n�2�n��a�
Q�膠Xq�
Qf�!�v wC���
u
�n�R�
A����tCP�@�(5�T;��!F��R�@�(5�T;��!JM7��n�R�
A��b��
!u	�n�R�
A����tCP�@�(5�T;�!M7�̎�n�"G7Ɋ�n�2�
A����tCP�@�uvCH]���tCP�@�(5�T;��!JM7��n�Qg7��%��!JM7��n�R�
A����tCP�@�uvCH]���tCP�@�(5�T;�!
+�4+�!�L7�Ȏ�n�2�
A����tCP�@�(5�T;��!F��R�@�(5�T;��!JM7��n�R�
A��b��
!u	�n�R�
A����tCP�@�(5�T;��!B}醀�r7D�醠ځ�
Qj�!�v vC:�!hVwC�9�!�.��
Qj�!�v wC��n������jr7Ĩ�B������jr7D�醠ځ�
Qj�!�v wC�:�!�.��
Qj�!�v wC��n������jr7Ĩ�B������jb7D���f�q7D�� ځ�
1�손�r7D�醠ځ�
Qj�!�v wC��n�����n�K wC��n������jr7D�醠ځ�
1�손�r7D�醠ځ�
Qj�!�v wC��n�����n�K vC:�!hVwC��n������jr7Ĩ�B������jr7D�醠ځ�
Qj�!�v wC���
u
�n�R�
A����tCP�@�(5�T;��!F��R�@�(5�T;��!JM7��n�R�
A��b�tC��8�(rtC��8�(3�D;��!�U�
�ϱuC�>tC�?�_�
�y<�O�;g�
�+�~��/_~������>,ou{|���n������۟����u�����y��"ק�S��������g������N�Q�@>�6�<�&u	��oen��(������7�ǧ����7�ȧ�B}9�u
��o������o������o������o���oR�@>�VjN�Q�@>�VjN�Q�@>�VjN�Q�@>�6�<�&u	��o������o������o������o����̎��oE��o$+�O����oD;�O����oT;�O��:O�I]��[�9�F���[�9�F���[�9�F���ۨ����%�O����oT;�O����oT;�O����oT;�O��:O�I]��[�9�F���[�9�F���[���͊��oC���Ȏ��oe�����o������o������o���oR�@>�VjN�Q�@>�VjN�Q�@>�VjN�Q�@>�6�<�&u	��o������o������o������o���~����Rs��j��Rs��j��B��7�ǧ�Ɯ�߄.�|��Ԝ~�ځ|��Ԝ~�ځ|��Ԝ~�ځ|�m�y�M�ȧ�J��7�ȧ�J��7�ȧ�J��7�ȧ�F��ߤ.�|��Ԝ~�ځ|��Ԝ~�ځ|��Ԝ~�ځ|�m�y�M�ȧ�J��7����
+��hV�~+3�߈v �~u�~����Rs��j��Rs��j��Rs��j��Q��7�K �~+5�ߨv �~+5�ߨv �~+5�ߨv �~u�~����Rs��j��Rs��j��Rs��j��Q��7�K �~+t�~�Yq|��̜~#ځ|��Ԝ~�ځ|�m�y�M�ȧ�J��7�ȧ�J��7�ȧ�J��7�ȧ�B}9�u
��o������o������o������o���oR�@>�VjN�Q�@>�VjN�Q�@>�VjN�Q�@<�6hN���8<�V�8�F����[�9�F���{�HY�~���N��>�~����������vr���㙜~ߌ�������w�#�x�z�e����ӧo������/���O��������
+u����x�z��_C:�5�>��9�=�
��yCݞ��v��z�z�����w���������={A���ջӗ��o`Fϲ�/íU�g/�����������v������a�ܞ��v�λ-N_�k��gY]w�����!�v �=D�y{��oQj��j��C�:�B��oQj��j��C�����ځ�����!�v �=Ĩ��!�.������!�v �=D����ځ\!Sj*d�v WȌ:+d�.�T!S�V!C�<+d
+2+�+d�L���
+�P_*d���\!Sj*d�v WȔ�
+��2��B�jr�̨�BF��2��B�jr�L����ځ\!Sj*d�v WȌ:+d�.�\!Sj*d�v WȔ�
+��2��B�jb�̠����qX!S䨐!Yq\!Sf*d�v WȔ�
+��2��
+�K WȔ�
+��2��B�jr�L����ځ\!3꬐��r�L����ځ\!Sj*d�v WȔ�
+��2��
+�K WȔ�
+��2��B�jb�L��B�f�a�̐���q\!Sf*d�v WȔ�
+��2��B�jr�̨�BF��2��B�jr�L����ځ\!Sj*d�v WȌ:+d�.�\!Sj*d�v WȔ�
+��2��B�jr�L�/2P�@��)52T;�+dJM���
+�BG�͊�
+�1g���%�+dJM���
+�RS!C��B��T�P�@��uV�H]�B��T�P�@��)52T;�+dJM���
+�Qg���%�+dJM���
+�RS!C��B��T�P�@��uV�H]�B��T�P�@��)tT�Ь8��)32D;�+dF�2R�@��)52T;�+dJM���
+�RS!C��Bf�Y!#u	�
+�RS!C��B��T�P�@��)52T;�+dF�2R�@��)52T;�+dJM���
+�RS!C��Bf�Y!#u	�
+�BG�͊�
+�2S!C��B��T�P�@��uV�H]�B��T�P�@��)52T;�+dJM���
+�P_*d���\!Sj*d�v WȔ�
+��2��B�jr�̨�BF��2��B�jr�L����ځ\!Sj*d�v V��
+��2E�
+��2e�B�hr�l���*d�9�
+���xxܭ������!�]]s�l<�
+���u?l�g����ݻ/_���ۯ�"�:��ۧ�a��y�Gv�t�y����Y?���p����j
+�Bf5���_My�A���jr5E����ځ\MQj�)�v WS�:�)�.�\MQj�)�v WS��j
+�������jr5Ũ��B�������jr5E����ځ\MQj�)�v WS�:�)�.�TMQ�VMA�<�)
+�+��)�L5��j�P_�)���\MQj�)�v WS��j
+�������jr5Ũ��B�������jr5E����ځ\MQj�)�v WS�:�)�.�\MQj�)�v WS��j
+�������jb5Š����qXMQ䨦 Yq\MQf�)�v WS��j
+�����j
+�K WS��j
+�������jr5E����ځ\M1ꬦ��r5E����ځ\MQj�)�v WS��j
+�����j
+�K WS��j
+�������jb5E����f�a5���q\MQf�)�v WS��j
+�������jr5Ũ��B�������jr5E����ځ\MQj�)�v WS�:�)�.�\MQj�)�v WS��j
+�������jr5E�/�P�@��(5�T;��)JM5��j�BG5͊�j�1g5��%��)JM5��j�RSMA�����TSP�@��uVSH]����TSP�@��(5�T;��)JM5��j�Qg5��%��)JM5��j�RSMA�����TSP�@��uVSH]����TSP�@��(tTSЬ8��(3�D;��)F��R�@��(5�T;��)JM5��j�RSMA���b�YM!u	�j�RSMA�����TSP�@��(5�T;��)F��R�@��(5�T;��)JM5��j�RSMA���b�YM!u	�j�BG5͊�j�2SMA�����TSP�@��uVSH]����TSP�@��(5�T;��)JM5��j�P_�)���\MQj�)�v WS��j
+�������jr5Ũ��B�������jr5E����ځ\MQj�)�v VS�j
+���E�j
+���e���hr5e�@��)�9�j���xxڭ������FwO�p�͔�H�)w���O�5�_�}��_>|5/3��?���y�x����^���s���)|�<s��__�Ǜ�7>�kr<�d��7���[Gn�2Yq;���x�3O�ۣLV�y�Ϳ���(�����U�̛���8|�"�k���8|	�"�;���8|�"����8|��!��+";�}����+$+�^|����W���[�8^z�b��+��Z!���BE�N!���BE�B!��uBE�6!��]BC�JHd�a�P��G�d�a�P��D�d�a�P��A�d�aА��qXT��"Yq�T�("YqXT�h
"Yq�4d*�Dv��/��Y�����;ê�GSŊÞ� gM�%K��A$+��A$+끊�@$+���L5�Ȏ�b�"G/Ɋ�V�"G)Ɋ�J�"G#Ɋ�>�!S$�����D��	��QD�����D��h�Q$�¨�������y��8�(VV�9�HV�������?E�����?E����u?E����]?C��Gd�a�O���d�a�O���d�a�O���d�a�ϐ���qX�S���!Yq��S�(�!YqT�S���C�<�:}��>�*}
+}>+�|�e>$+�|�M>$+{|�L��Ȏ��"G�Ɋ��"G�Ɋ���"G{Ɋ��!S�#�㰸����C�ⰵ��Q�C�ⰲ����C�Ⱟ'�Y�r�ò�"GWɊæ�"GQɊ�������a��3`*z$v�9�yHV��9�yHVV�9�yHV���Z���<E�N���<E�B��u<E�6��]<C��Gd�aO����d�aO����d�aO����d�a�ΐ���qX�S���!YqԼS�V�C�<kw
+�;+;w�L�Ȏ�"G�Ɋö�"G�Ɋê�"G�ɊÞ�!S�#��d��ѱC��a��Q�C��^��ѮC��[g�T��8,�)r�ꐬ8l�)r�ꐬ8��)r4ꐬ8��2u:";��tJܺt��a�N��H�b�a�N��E�d�a�ΐ���qX�S���!Yq؞S�(�!YqX�S�h�!Yq؛����aiN��3�d�acN��0�d�a]N��-�d�aWΐ���qX�S���!YqؒS�(�!YqX�S�h�!Yqԏ3��XaT�S�֍C�<�q
+�8+kq��.ӊ�����ϰ߉���ۚ��O������LJq����/������Ͽ}��������~��O���a��o��l��>~����O�i�������������x�������>�������_��g�����{��/�����g���c���P�@�wPjP�@>y0�y u	����������������4+���";�/ ��D;�� ��+T;�� ��CT;�O!�:o!H]�B�9�@�� B���@��&B�9�@��,¨�.��%�/#���T;��#���T;��#��	T;�O$��r#��WJ͙�ȇJͥ���
+�hV�Ks�K��ńRs2�j�фRs5�j�݄Rs8�j��Q���K _O(5��v P(5�v �P(5G�v �Qu�Q���%�RsJ�j�1�RsM�j�=�RsP�j�I�Q�M�K _U(5g�v V(t\V�Yq|[��W ځ|^a�y_A��J͉��GJ͕��wJ͡�ȧF���.�|m�Ԝ[�ځ|p��\\�ځ|s��]�ځ|va�ywA�ȗJ�����J�����J���'F�7�.�x���q��f��!�2s��h�-�Rs��j�9�Q�=�K _d(5'�v e(5W�v �e(5��v �f��6�5��3���T;�4��
T;�o4��#
T;��4�:�4H]�RC�9�@��XC���@��^C�9�@��dà�� ���jC��lɊ��
e�r��ۍ�u���c��8����������7��1�I�ӟ:��NnW�o~��Lٮ7n���r����?�}���/����/������?����=��`��#��q���q<'8�078�~
�#��?�p����R3ĉj��R�ʼnj��R3ljj� �Q�"'�K or*5���v �r*5���v /s*5Ӝ�v �su�s���>�R3Љj�D�R�щj�J�R3Ӊj�P�Q�R'�K mu*s�D�<�:8�:Q�8^�Tf&;�@���j'�k �v*5Ý�v Ow*5۝�v �w*5�v xu.x���R3�j�R��j�R3�j�Q�'�K �y*5���v Oz*5���v �z*5���v {4˞dvn{*r�{"Yq<���{"ځ���L|�ځ<�iԹ�I��;�J��'��S�J��'��k�J��'�ȃ�F����.�����4aP�@n�(5MT;��0JM��&�Qg��%��0JM��&�RӄA��	��фA��	c�4a��8n�(3MD;��0JM��&�RӄA��	c�ل!u	�&�RӄA��	��4aP�@n�(5MT;��0F�MR�@n�(5MT;��0JM��&�RӄA��	#ԗ&�k 7a��&��M��	�jbF��	�f�qƘ�	C��M��	�jrF�i ځ܄Qj�0�v 7a�:�0�.�܄Qj�0�v 7a��&��M��	�jrƨ�	C��M��	�jrF�i ځ܄Qj�0�v 7a�:�0�.�܄Qj�0�v 6a:�0hV7a��&��M��&�K 7a��&��M��	�jrF�i ځ܄1�l�rF�i ځ܄Qj�0�v 7a��&��M��&�K 7a��&��M��	�jrF�i ځ܄1�l�bF��	�f�qF�i� ځ܄Qj�0�v 7a�:�0�.�܄Qj�0�v 7a��&��M��	�jrF�/MP�@n�(5MT;��0JM��&�RӄA��	c�ل!u	�&�RӄA��	��4aP�@n�(5MT;�0M�̎�&�"GɊ�&�2ӄA��	�_�PM�[��c@f�s,M�#7a�KO�؄�lM�۬����/��os������,���Q����N�����y�÷�J(7�?xx���0���^f6D��1"g������
T;�"JMC�䆈QgC��%�"JMC�䆈R�A��!��4DP�@n�u6DH]�!��4DP�@n�(5
T;�"JMC�䆈QgC��%�"��"(��aCD��!�b�qCD�i� ځ��KC�5�"JMC�䆈R�A��!��4DP�@n�u6DH]�!��4DP�@n�(5
T;�"JMC�䆈QgC��%�"JMC�䆈R�A��!��4DP�@l�4
2;"�
$+�"�LC�䆈R�A��!b��!u	䆈R�A��!��4DP�@n�(5
T;�"F�
R�@n�(5
T;�"JMC�䆈R�A��!b��!u	䆈R�A��!��4DP�@l�(t4DЬ8l�2
";�"�LC�䆈R�A��!��4DP�@n�u6DH]�!��4DP�@n�(5
T;�"JMC�䆈QgC��%�"JMC�䆈R�A��!��4DP�@n���!��
��!�jrCD�i��ځ�Q�h��Yq�1�l��rCD�i��ځ�Qj"�v 7D�����
�Ά�K 7D�����
��!�jrCD�i��ځ�1�l���rCD�i��ځ�Qj"�v 7D�����
�Ά�K 7D�����
�����
e�!�hrCĨ�!B��
��!�jrCD�i��ځ�Qj"�v 7D�:"�.��Qj"�v 7D�����
��!�jrCĨ�!B��
��!�jrCD�i��ځ�Qj"�v 7D�:"�.��Q�h��Yq�Qf"�v 7D�����
�Ά�K 7D�����
��!�jrCD�i��ځ��KC�5�"JMC�䆈R�A��!��4DP�@n�u6DH]�!��4DP�@n�(5
T;�"JMC��A�!��!���A��!��4D�@n��WTC?��9��7�
����׽+��B��"㑭!r7"����w�~����l��{S�ǧo/Vy|��O_��?=��|���_��?^����__�bߟ����g�����{T�u6���u�ٯo�:����lR�@��V�v���y^g+p\g�Xq|���\g#ځ|�-ԗ�lP�@��Vj��Q�@��Vj��Q�@��Vj��Q�@��6��&u	��l��:���l��:���l��:���l���lR�@��Vj��Q�@��Vj��Q�@��Vj��Q�@��6h����8��V��F���:[���F��:[���F��:ۨ�:��%������lT;������lT;������lT;����:��I]�:[���F��:[���F��:[���F��:ۨ�:��%������lT;������lT;��:��Ѭ8��6d����8��Vf���@��Vj��Q�@��Vj��Q�@��6��&u	��l��:���l��:���l��:���l���lR�@��Vj��Q�@��Vj��Q�@��Vj��Q�@����u6�k _g+5�٨v _g+5�٨v ^g+t\g�Yq|�m�y�M����J�u6����J�u6����J�u6����F��٤.�|���\g�ځ|���\g�ځ|���\g�ځ|�m�y�M����J�u6����J�u6����J�u6����F��٤.�|���\g�ځx���q��f��u�2s��h�u�Q�u6�K _g+5�٨v _g+5�٨v _g+5�٨v _gu^g���u�Rs��j�u�Rs��j�u�Rs��j�u�Q�u6�K _g+5�٨v _g+5�٨v _g+5�٨v _gu^g���u�B�u6������u6����J�u6����F��٤.�|���\g�ځ|���\g�ځ|���\g�ځ|�-ԗ�lP�@��Vj��Q�@��Vj��Q�@��Vj��Q�@��6��&u	��l��:���l��:���l��:���l��:�̎��lE��l$+������lD;����υ�u6~��:��c<��^g�����Ͽj��?�N��z�D7��O����[�(��gDž�����O�G<��K���ϖ��?v7��7�������C������n�������n�^P;pG}<<^[u{��ځo����͵C�G����5x��2�g/�����WVݞ��v���xxx���۳�|[}:����n��,�K��zsxx�����w������T�g/�������Q�����n&\���Nͳ���;���ps/���j/��@��={A����e8Zu{��ځo��ӗ��ѩ�YV����p��$���j����U�g/���>��o��G/��6y}<�8y��%pG=}
={A����5�������w��W��F�۳�|[�9}n�:�eu	�QO_��[�n�^P;pG=}������w�ӗ�ʪ۳�|[��z�Jϲ��7��G��x��ځ;������۳��Qw�����j��ޝ�w���,�K��z�2�Zu{��ځ;��� �&�=z�����5����g/�������Z��YV��u��O�yE �ȯTj^�j�+��W�ځ��@��W���+��W�ځ��@����v �"P�yE �ȯ4�|E �K �"P�yE �ȯTj^�j�+��
+T;�G(�:G(H]i�B����a8B��1B�b���23B�h��P_F(@]y�B��@�y�B��@�y�B��@�y�¨s���%�G(��
+T;�G(��
+T;�G(��
+T;�G(�:G(H]y�B��@�y�B��@�y�B��@�q� � ��p�B�c�Ɋ�
+ef���
+�f���
+��
+R�@�PjF(P�@�PjF(P�@�PjF(P�@�0�� u	�
+�f���
+�f���
+�f���
+��
+R�@�PjF(P�@�PjF(P�@�P��@��p�� ��x�B��@�y�B��@�y�B��@�y�¨s���%�G(��
+T;�G(��
+T;�G(��
+T;�G(�:G(H]y�B��@�y�B��@�y�B��@�y�B�/#���<B�ԌP�ځ<B�ԌP�ځ8B��1B�f���1��K �P(5#�v �P(5#�v �P(5#�v �Pu�P����R3B�j��R3B�j��R3B�j��Q��K �P(5#�v �P(5#�v �P(5#�v �Pu�P����R3B�j��B���#����#F�#�.�<B�ԌP�ځ<B�ԌP�ځ<B�ԌP�ځ<Ba�9BA��#J���#J���#J���#F�#�.�<B�ԌP�ځ<B�ԌP�ځ<B�ԌP�ځ<Ba�9BA��#
+#hV�P(3#�v �P(5#�v �Pu�P����R3B�j��R3B�j��R3B�j��P_F(@]y�B��@�y�B��@�y�B��@�y�¨s���%�G(��
+T;�G(��
+T;�G(��
+T;G(�
+2;G(9F(��8�PfF(�@��_VP#�9����#����8��_�^��x&#�c�����?�ju���B������瞧���������C��u����p�|���s��n�^P;pG}<<>[K�۳�ܙ�8n�:�eu	�Q��R3,�j�R3,�j�R3,�jⰈA3,Bf��23,�h�R3,�j�R3,�j�Q��K �(5�"�v �(5�"�v �(5�"�v ��eX�5��E��aT;��E��aT;��E��aT;��E�:�EH]yXD�A�yXD�A�qXD�cX͊�ac�aB�@Qj�EP�@Qj�EP�@Qj�EP�@1�!u	�a�fX��a�fX��a�fX��a��aR�@Qj�EP�@Qj�EP�@Qj�EP�@1�!u	�a�fX��a��a4+��E��aD;��E�:�EH]yXD�A�yXD�A�yXD�A�yXĨsX��%��E��aT;��E��aT;��E��aT;��E�:�EH]yXD�A�yXD�A�yXD�A�yXĨsX��%��E��
��x��"
+�"(V�(3�"�v ��eX�5��E��aT;��E��aT;��E��aT;��E�:�EH]yXD�A�yXD�A�yXD�A�yXĨsX��%��E��aT;��E��aT;��E��aT;�E�a2;�E9�E��8Qf�E�@Qj�EP�@1�!u	�a�fX��a�fX��a�fX��a��aR�@Qj�EP�@Qj�EP�@Qj�EP�@1�!u	�a�fX��a�fX��a��a4+�E�a";��E��aD;��E��aT;��E��aT;��E�:�EH]yXD�A�yXD�A�yXD�A�yXĨsX��%��E��aT;��E��aT;��E��aT;��E��2,���"JͰ���"JͰ���"
+�"hV�s���R3,�j�R3,�j�R3,�j�Q��K �(5�"�v �(5�"�v �(5�"�v �u����R3,�j�R3,�j�R3,�j�Q��K �(5�"�v �(t��Yq<,��� ځ<,b�9,B���"JͰ���"JͰ���"JͰ���"F��"�.�<,����ځ<,����ځ<,����ځ<,b�9,B���"JͰ���"JͰ���"JͰ���"F��"�.�8,��1,�f��23,�h�R3,�j�Q��K �(5�"�v �(5�"�v �(5�"�v ��eX�5��E��aT;��E��aT;��E��aT;��E�:�EH]yXD�A�yXD�A�yXD�A�qXĠ!��pXD�cXɊ�aefX��a��"�9�a����"��c��0,r�t�w�+�=�Y��1+�O���/_����?����յ~x�~�$֏q}�����-{�A��Y�~���-�W�J�DVW�
�4���gA��3���gC��Ld�q�ِ)>YqX{6�h=xƝg��3�DžgC��Ld�q�ِ);Yq\u6d��DV��9k�@v��
��3��
gC��Ld�q�ِi7Yq�m�6�q\l6dz�DV��
�R3�ǕfC��Ld�q�Y���d�q�ِ�2Yq�d6�(2x�5f��Lb�q�Y���d�q�ِ�/Yq�^6d��DVW�
��2�ǽeA��2�ǥeC��Ld�qcِ),Yq\W6d��DVw�9��@v�
��2��-eC��Ld�qEِi(Yq�O�'�qTN6��M&�,
+��F�d��ø�l���I�8�$_&_*���DždC��Ld�qِ)#Yq\E6d��DV��9k�@v��
�2��
dC��Ld�q�ؐiYq�=��q\<6dz�DV��
��1�ǕcC�qLd�a�X��XaX66���w�Mc�hLb�q�ؐiYq�1��q\06d��DV��
�r1���bC�YLd�q�X��Vd�q�ؐ�Yq�(6d
+�DV׉
�61��]bA�*1��EbC�GLd�q�ؐ)YqX!6�hx��a�>^�qy؀��Xq�6d��DV׆
��0�ǝaA��0�DžaC�/Ld�q[ؐ)Yq\6d��DV��9k�@v��
��0��
aC� Ld�q=ؐiYq�
�L�T���%����L/�Ȋ�V�!S
+&��l��&�<����u`;����L�Ȋ�&�!S&��lȴ���8��rV���8.�2�_"+�ۿ�L��Ȋ��!��%���+�Y����k�t~��8n�2�_"+�뾆LۗȊ㮯 g�Ȏ㢯!��%���k�Q�%�<�+�L×Ċ�~� g�Ȏ�r�!��%���k�{��8��2�^"+�;����^ ;���L��Ȋ�6�!S�%���k�4y��8��
+r�x��8.�2^"+���L��Ȋ���!��%�⸻+�Y��㰸k���%�<�[�Li�Ċ�ʮ!��%�ⸯ+�Y��㸬k�tu��8n�2E]"+�k��LK�Ȋ��e򥢻O.q\�5d��DV�s
�r.���\C��Kd�q/W���d�q)א��Yq��5d
+�DV�q
�6.��]\!��`�a�x��K�y�p
�.����:�j�҇�
+�/���~���!���뷷O�{ͩ�gR������w�������믟�|~���OO�Δ����߳�bk����O��b�7>����Y�@|��SNj�Y�@|��SNj�Y�@|��Q狭I]���N�nV;+�N�nV;[�N�nV;��JM��%��N�nV;��N�nV;���*�lV�����7�K ���:�ެv V��:�ެv ���:�ެv ����7�K v��:J߬v ־�:z߬v 6��:�߬v �����7�K ���:
+�v V��::�v ���:j�v ���&8�K v��:��v �����٬8l�;sT��@,�+5�pT�@�;u�Y�@��;ut�Y�@l�;u��Y�@,�+5
qT�@�;u��Y�@��;u��Y�@l�;uT�Y�@,�+5mqT�@�;u�Y�@��;ut�Y�@l�;u��Y�@,�+5�qT�@�;�{y���0��;p돳Xq� w樐3ځX"7�l���b�ܩ�H�jb�ܩ�K�jb�ܩ�N�jb�\�i���b�ܩ�T�jb�ܩ�W�jb�ܩ�Z�jb�\�i���b�ܩ�`�jb�ܩ�c�jb�ܩ�f�jR�\��i�f�Q�ܑ[ٜɊú�3Gߜ��ƹSG���ҹR�:Gu	�޹SG����SG������SG�����R�@Gu	��SG	����SG���&�SG���2�R�FGu	�>�SG!���J�SG'���V�C�Z:�G�tE�f:���tg�r:���t��~:��
u���:��%u������=u���:��Uu���:��mu���:���u�������u���:���u���:���u���:���u���:�k �ם:
+�v V؝::�v �����٬8,�+3MvD�@�;u��Y�@��;u��Y�@l�;uT�Y�@,�+5�vT�@�;u�Y�@��;ut�Y�@l�;u��Y�@,�+5
wT�@�;u��Y�@��;u��Y�@l�;uT�Y�@,�+5mwT�@�;u�Y�@��;t뼳Yq�zw樽3ځX|Wj��.��}w�(��ځXw�迳ځ؀w���ځX�WjZ�.�؃w�(³ځX�w��³ځ؆w�óځX�Wj�.�؉w�(ųځX�w��ųځ،w�ƳځX�Wj��.�ԏw�V�g��"��ёg��%��Q�g��(��4�Q]�+��Q�g��.��їg��1��Q�g��4o�ٚ'u
�޼SGq����SGw�����SG}����RӠGu	��SG�����SG����&�SG����2�BG�͎�>�#�B=���zg�N=���z���Z=��Ϝ��b=|����ַ�7���v�Y?�I��n4������ݧ�?}���/��o믮_7�ngQo|����\w{o���8���w�q��q�?4�P�@n�u6�H]���4�P�@n�)5�8T;��qJM3��f�Qg3��%��qJM3��f�BG3͊�f�2ӌC��g�ٌ#u	�f�RӌC����4�P�@n�)5�8T;��qF��8R�@n�)5�8T;��qJM3��f�RӌC��g�ٌ#u	�f�RӌC����4�P�@n�)5�8T;��qF��8R�@j�)skơx��8�f���8e��hr3N�/�8P�@n�)5�8T;��qJM3��f�RӌC��g�ٌ#u	�f�RӌC����4�P�@n�)5�8T;��qF��8R�@n�)5�8T;��qJM3��f�RӌC��g�4���8l�)r4㐬8n�)3�8D;��qJM3��f�Qg3��%��qJM3��f�RӌC����4�P�@n�u6�H]���4�P�@n�)5�8T;��qJM3��f�Qg3��%��qJM3��f�RӌC����ьC��g�4��8n�)3�8D;��qJM3��f�RӌC��g�ٌ#u	�f�RӌC����4�P�@n�)5�8T;��qF��8R�@n�)5�8T;��qJM3��f�RӌC��'ԗf�k 7㔚f���8���jb3N���f�q3Θ�G���8���jr3N�iơځ܌Sj�q�v 7�:�q�.�܌Sj�q�v 7㔚f���8���jr3Ψ�G���8���jr3N�iơځ܌Sj�q�v 7�:�q�.�܌Sj�q�v 6�:�qhV7㔙f���8��f�K 7㔚f���8���jr3N�iơځ܌3�lƑ�r3N�iơځ܌Sj�q�v 7㔚f���8��f�K 7㔚f���8���jr3N�iơځ܌3�lƑ�b3N���f�q3N�i�!ځ܌Sj�q�v 7�:�q�.�܌Sj�q�v 7㔚f���8���jr3N�/�8P�@n�)5�8T;��qJM3��f�RӌC��g�ٌ#u	�f�RӌC����4�P�@n�)5�8T;�qM3�̎�f�"G3Ɋ�f�2ӌC�����R�8�[3��c@3n�s��k���ן�ӿUon�n�=�c#��\�|��Ly�@�~v�n�}}||��?����?}�����_�������o8S^��=��{畳������O���?��װ��n�7o}�7���j���[�n�^P;�m��x�y��Qdz�.�;����Ѫ۳��Q�7�G7Jݞ��v���xx|��R�g/���z���͝Tdz�.�;����|t����j�[�ש۳��QO_�k�n�^P;�m���e�v��(��C��ǣ4�g/�����WVݞ��v���xxx���۳��y��x�Q��I]���J͛�Q�@~��R�fuT;�߬�ԼY��7����꠮��fu����v �Y]�y�:��oVWjެ�j�Ս:߬N��oVWjެ�j�Օ�7��ځ�fu��7��Yq�fuc�7���Օ�7��ځ�fu����v �Y]�y�:��oV7�|�:�K �Y]�y�:��oVWj�cP�@ޏQj�cP�@ޏ1�܏!u	���f?����f?����f?������R�@ޏQj�cP�@܏Q�؏A��x?F�ُA�y?ƨs?��%��c���T;��c���T;��c���T;��c�:�cH]y?F�ُA�y?F�ُA�y?F�ُA�y?ƨs?��%��c���T;��c���T;��c���T;��c�:�cH]i?F��~��a�����b��~�2��h�~�P_�c@]y?F�ُA�y?F�ُA�y?F�ُA�y?ƨs?��%��c���T;��c���T;��c���T;��c�:�cH]y?F�ُA�y?F�ُA�y?F�ُA�q?Ơُ!��p?F�c?Ɋ��ef?����f?������R�@ޏQj�cP�@ޏQj�cP�@ޏQj�cP�@ޏ1�܏!u	���f?����f?����f?������R�@ޏQj�cP�@ޏQj�cP�@܏Q�؏A��p?Ɛُ!��x?F�ُA�y?F�ُA�y?F�ُA�y?ƨs?��%��c���T;��c���T;��c���T;��c�:�cH]y?F�ُA�y?F�ُA�y?F�ُA�y?F�/�1�������Ǡځ����Ǡځ��б�f��~�1�~�K ��(5�1�v ��(5�1�v ��(5�1�v ��u�ǐ��~�R��j�~�R��j�~�R��j�~�Q�~�K ��(5�1�v ��(5�1�v ��(5�1�v ��u�ǐ��~�R��j�~�B�~���1��~���1F��1�.�����Ǡځ����Ǡځ����Ǡځ�cԹC���1J�~���1J�~���1J�~���1F��1�.�����Ǡځ����Ǡځ����Ǡځ�cԹC���1
+�1hV��(3�1�v ��(5�1�v ��u�ǐ��~�R��j�~�R��j�~�R��j�~�P_�c@]y?F�ُA�y?F�ُA�y?F�ُA�y?ƨs?��%��c���T;��c���T;��c���T;�c��2;�c9�c��8ޏQf�c�@ޏ�%���cۏ9����1������wc����7�9��s;�g������6�<���ǂ�������l����O?~|k����_�׿g�{�1s�>�\h8���
�?��B��
��B��
J�B��
J�B��
F�
�.��Р�,4�ځ�Р�,4�ځ�Р�,4�ځ�� ԗ�P�@^hPjP�@^hPjP�@^hPjP�@^h0�\h u	��f����f��ą���4+��9]y�A�Yh@�y�A�Yh@�y�A�Yh@�y���s���%����T;����T;����T;��:H]y�A�Yh@�y�A�Yh@�y�A�Yh@�y���s���%����T;:Ь8^hPf�@^h0�\h u	��f����f����f����΅R�@^hPjP�@^hPjP�@^hPjP�@^h0�\h u	��f����f����f����΅R�@ZhP�Ѐ�y.4(p,4�Xq�Р�,4 ځ�� ԗ�P�@^hPjP�@^hPjP�@^hPjP�@^h0�\h u	��f����f����f����΅R�@^hPjP�@^hPjP�@^hPjP�@\h0h��8\hP�Xh@��x�A�Yh@�y�A�Yh@�y���s���%����T;����T;����T;��:H]y�A�Yh@�y�A�Yh@�y�A�Yh@�y���s���%����T;����T;:Ь8\h0d��8^hPf�@^hPjP�@^hPjP�@^h0�\h u	��f����f����f����΅R�@^hPjP�@^hPjP�@^hPjP�@^h��B�k /4(5
�v /4(5
�v .4(t,4�Yq��`̹�@��
J�B��
J�B��
J�B��
F�
�.��Р�,4�ځ�Р�,4�ځ�Р�,4�ځ��`Թ�@��
J�B��
J�B��
J�B��
F�
�.��Р�,4�ځ�РбЀf��B�2�Ѐh�B�Q�B�K /4(5
�v /4(5
�v /4(5
�v /4u.4���B�R�Ѐj�B�R�Ѐj�B�R�Ѐj�B�Q�B�K /4(5
�v /4(5
�v /4(5
�v /4u.4���B�B�B��
��B��
J�B��
F�
�.��Р�,4�ځ�Р�,4�ځ�Р�,4�ځ�� ԗ�P�@^hPjP�@^hPjP�@^hPjP�@^h0�\h u	��f����f����f��ą�f��̎ÅE��$+����D;�hm@,4����>,4������[���p�tx؞�]h�l
�c���8�����������?����y�{����ן~����_��}{y��矷����~��O���a���|��㯯��W/��_������/�e�K��eg���Ӳןc���̎��2E��2$+�O˔��2D;�O˔��2T;�Oˌ:O�H]��L�9-C���L�9-C���L�9-C���̨��%�O˔��2T;�O˔��2T;�O˔��2T;�Oˌ:O�H]��L�9-C���L�9-C��L��͊��2C洌Ȏ��2e����2�����2�����2���2R�@>-SjN�P�@>-SjN�P�@>-SjN�P�@>-3�<-#u	��2�����2�����2�����2�������i�RsZ�j�i�RsZ�j�i�B�i�ǧeƜ�e�.�|Z�Ԝ��ځ|Z�Ԝ��ځ|Z�Ԝ��ځ|Zf�yZF�ȧeJ�i�ȧeJ�i�ȧeJ�i�ȧeF��e�.�|Z�Ԝ��ځ|Z�Ԝ��ځ|Z�Ԝ��ځ|Zf�yZF�ȧeJ�i���e
+�ehV��)3�e�v ��u�����i�RsZ�j�i�RsZ�j�i�RsZ�j�i�Q�i�K ��)5�e�v ��)5�e�v ��)5�e�v ��u�����i�RsZ�j�i�RsZ�j�i�RsZ�j�i�Q�i�K ��)t���Yq|Z�̜�!ځ|Z�Ԝ��ځ|Zf�yZF�ȧeJ�i�ȧeJ�i�ȧeJ�i�ȧeB}9-u
��2�����2�����2�����2���2R�@>-SjN�P�@>-SjN�P�@>-SjN�P�@<-3hN���8<-S�8-C����L�9-C���l��I�����N��>������������e����n�Y��b����_>����8���_�+�����~����������__������o�����'���AN�����
+�������?��_?~��/����=|��N�}���1����ӟ��ڧo����ݻy��m����[?C����߀����{�x���|����o����������������57~��Y�8�6���U� Cx�1x�a�#������/��]�w�?����Z�{�?�^~\�y��Bx�Ax�a�C
+��G����'.{��^��&��K�w�?�^~ �y�0Bx�Qx�a�c����!ľWa��������7~���Y��Ah��p�a�����aþWa�����������0�w�?\^~���y�X�7���U�@Ax�qx�a����	������!�w�?>����{�?8^~l��y��@x��x�a����G����	.{��^��7~<��Y�h@h���p�a�C��G����.{��^�����w�?^~���y�_x��?x�a�m����7�w��o�/���<���/�|���0�&���-~�����������}�����˷��;�o�/���<���/�|+��0�6�e.����Σ��߾�,��u/�|���0�����xշ��l߰���]��	�o�_�7�7��[�v�xd�������?��?�����_�|������O���������(������������m����Ǘ�7�7O�;��/�Մ?_�y���_�����k5Q�@~��Q�k5I]���J�k5Q�@|��B�k5Ѭ8~��2�ZMD;�_�i��ZMR�@~��R�ZMT;�_��ԼV���j*5��D����F���$u	��j*5��D����J�k5Q�@~��R�ZMT;�_�i��ZMR�@~��R�ZMT;�_��ԼV���j*5��D����F���$u	��j*s{�&��a�ZM��j�Xq�ZMe浚�v �VS�/��u
��j*5��D����J�k5Q�@~��R�ZMT;�_�i��ZMR�@~��R�ZMT;�_��ԼV���j*5��D����F���$u	��j*5��D����J�k5Q�@~��R�}�j���A�}Ff����"�����g������gJ�����gF��g�.��}��l��ځ�}��l��ځ�}��l��ځ�}fԹ}F���gJ�����gJ�����gJ�����gF��g�.��}��l��ځ�}��l��ځ�}�б}�f����!�}Fd����2�}�h���R�}�j���R�}�j���Q���K o�)5�g�v o�)5�g�v o�)5�g�v o�un������R�}�j���R�}�j���R�}�j���P_��@]y�L�)�ځ\Rj*B�v ք:�BhV���9�B�.�\RjJC�v �������!��@�jr�Ȩ�FD��U"��L�jr�H���ځ\+Rj�E�v ���:�E�.�\1RjJF�v ������u#��p�jr�Ȩ�vD���#��|�jbI����f�q
I�)"!ځ\F2�#��r%I�)%�ځ\LRj�I�v ד�����%%�Κ�K W�����ȅ%����jrmI�).�ځ\^2�/��r�I�)1�ځ\dRj�L�v י��B�ȥ&��Z�K V�:�MhV������5'���jr�ɨ��D�ȕ'���jr�I��>�ځ\Rj
+P�v ����R�u
�*�RS�B����T�P�@�E)5�(T;��QF��(R�@�H)5%)T;��RJMU
+�五RS�B��4e�Ԧ��8�N)r����8.P)3*D;�kT�
 U��ϱU��>���n�j�s�u�g�ץ��aP�j<�թ�F������؏�����zuw�������݇���_�|��o���������oO���u���p��͘�O��w���t�S��٩:�%�w�^�T�ځܩ2��T��r�J��T�ځةR��T�YqܩRf:U�v w��:;U�.�ܩRj:U�v w���N�ȝ*��S�jr�ʨ�SE�ȝ*��S�jr�J��T�ځܩRj:U�v w��:;U�.�ܩRj:U�v w���N�ȝ*��S�jr�ʨ�SE�H�*en�*�ðS��ѩB��S��t��@�T	��S�ȝ*��S�jr�J��T�ځܩRj:U�v w��:;U�.�ܩRj:U�v w���N�ȝ*��S�jr�ʨ�SE�ȝ*��S�jr�J��T�ځܩRj:U�v v��N���*E�N�ǝ*e�S�hr�J��T�ځܩ2��T��r�J��T�ځܩRj:U�v w���N�ȝ*��N�K w���N�ȝ*��S�jr�J��T�ځܩ2��T��r�J��T�ځܩRj:U�v v�::UhVv��N�ǝ*e�S�hr�J��T�ځܩRj:U�v w��:;U�.�ܩRj:U�v w���N�ȝ*��S�jr�ʨ�SE�ȝ*��S�jr�J��T�ځܩRj:U�v w���ҩu
�N�RөB��S��t�P�@�T)tt�Ь8�Tsv�]�S��t�P�@�T)5�*T;�;UJM�
+��N�Qg���%�;UJM�
+��N�RөB��S��t�P�@�Tuv�H]�S��t�P�@�T)5�*T;�;UJM�
+��N�Qg���%�;UJM�
+��N�BG�
+͊�N�2өB��Se�٩"u	�N�RөB��S��t�P�@�T)5�*T;�;UF��*R�@�T)5�*T;�;UJM�
+��N�RөB��Se�٩"u	�N�RөB��S��t�P�@�T)5�*T;�;UF��*R�@�T)tt�Ь8�T)3�*D;�;UJM�
+��N�Qg���%�;UJM�
+��N�RөB��S��t�P�@�T	��S�ȝ*��S�jr�J��T�ځܩRj:U�v w��:;U�.�ܩRj:U�v w���N�ȝ*��S�jb�ʠ�T��qةR��T!YqܩRf:U�v w��$:U�9�N��ǀN�����^Qus�����:Uyd�TݏN�?����ݻ�_���_~������X}������2��?~���������U_���������_?�����C�.=oO����>��������yrJ��<t���=9}�쟜�ځxr�Ԝ����ɩS��)��'�N'��v ��:u���ځxr�Ԝ����ɩS��)��'�N'��v ��:u���ځtr��qr�f��ɩ#��S&+ON�9NN�@<9u�89e���T�99Eu	ēS���SV;ON�:NNY�@<9u�89e���T�99Eu	ēS���SV;ON�:NNY�@<9u�89e���T�99Eu	ēS���SV;ON�:NNY�@:9u�vr�f��ɩ"��)��'��'��v ��:u���ځxr��qr�j�ɩRsr���'�N'��v ��:u���ځxr��qr�j�ɩRsr���'�N'��v ��:u���ځxr��qr�j�ɩQ��)�k ��:u���ځxr��qr�j�ɩC��S6+ON���SD�@<9u�89e���ԩ���ēS���SV;ON���ST�@<9u�89e���ԩ���ēS���SV;ON���ST�@<9u�89e���ԩ���ēS���SV;ON���ST�@<9u�89e���ԡ��)��'��'��v ��*5'��.�xr��qr�j�ɩS��)��'�N'��v ��*5'��.�xr��qr�j�ɩS��)��'�N'��v ��*5'��gw�$ٕ_���L膍�+�.�aȡҖMӺ�MМ������g���v�y��h�3�뗨Q��Au	ēS���SV;ON�:NNY�@<9u�89e���T�99Eu	��S�n'�lV��:s��2ځxr��qr�j�ɩRsr���'�N'��v ��:u���ځxr��qr�j�ɩQ��)�k ��:u���ځxr��qr�j�ɩS��)��'�J��)�K ��:u���ځxr��qr�j�ɩS��)�H'�
+'�hv��:r;9e����ԙ���ēS�~�~rʟ��3�c��>��4��txy�Ǔ���vr�4NN���_?m����>�:�M?��靫����W��'����z�p���,�?�-��"�rD^�Q�D�� p�j�A�Rs�j�A�Q�A$�K D*5��v D*5��v D*5��v D4�dvD*rD"Yq|��D"ځ|��D�ځ|i�yI���J�A$���J�A$���J�A$���F���.�|��D�ځ|��D�ځ|��D�ځ|i�yI���J�A$���J�A$���
+�hVD2�DvD*3��v D*5��v D*5��v DuD���A�Rs�j�A�Rs�j�A�Rs�j�A�Q�A$�K D*5��v D*5��v D*5��v D
+�|	���J�A$���J�A$���
+�hVDsD��A�Rs�j�A�Rs�j�A�Rs�j�A�Q�A$�K D*5��v D*5��v D*5��v DuD���A�Rs�j�A�Rs�j�A�Rs�j�A�Q�A$�K D*5��v D*tD�Yq|��D"ځ|i�yI���J�A$���J�A$���J�A$���F���.�|��D�ځ|��D�ځ|��D�ځ|i�yI���J�A$���J�A$���J�A$���F���.�x��q�f��A�2s�h�A�Rs�j�A�Q�A$�K D*5��v D*5��v D*5��v D
+�|	���J�A$���J�A$���J�A$���F���.�|��D�ځ|��D�ځ|��D�ځxi�D��qx��q�d��A�2s�h�A$�扃H��A���x~�=�������<n�o� r<�D>���/����ϧ_<��|:�>���O���Ï��=�u:�ܼ��~���/����÷�*�|����ÿ�3�_ƿ~���o���_>����������M��/��/��_��|���������9��?�w+�
|����Wk�����T;�l�:lH]��F�9�A���F�9�A���F�9�A���ƨ����%�l��T;�l��T;l:lЬ8<�1dl��8>�Qfl�@>�QjlP�@>�QjlP�@>�1�<�!u	������������������R�@>�QjlP�@>�QjlP�@>�QjlP�@>�����5�l��T;�l��T;l:lЬ8>�1�<�!t	������������������R�@>�QjlP�@>�QjlP�@>�QjlP�@>�1�<�!u	������������������R�@>�QjlP�@<�Q�8�A����F�9�A���ƨ����%�l��T;�l��T;�l��T;�l�:lH]��F�9�A���F�9�A���F�9�A���ƨ����%�l��T;�l��T;�l��T;�l�:lH]��F���͊�e�����������R�@>�QjlP�@>�QjlP�@>�QjlP�@>�����5�l��T;�l��T;�l��T;�l�:lH]��F�9�A���F�9�A���F�9�A���Ơ9�!����F���Ɋ�e������
u`��c;���/7�6���o[�9ܼ��f<�ؼ�ű������ۧo��r��������o��?����??|�2�g^�i���k.j~���a�����/��?������h�_�~���������o����3��ӯ�}�?<<|8���oE��v/��c}��{8}���ޝ=������⋵�������ځ��Q�g�.���R���ȿ�)5���ځ��R���ȿ�	����k �z���z�j�gJͯg�v �z���z�j�gF������gJͯg�v �z���z�j�gJͯg�v �zf��zFf��g���!Yq��2���ȿ�яx��~��׳��������|<�>��z�p�5���g�����1��t�<?�����g����O㗳?~�����Z?�������9t����ӏ���H������"����z��:�Oݿ�Aު�YV�����'҃T�g����>���|�����w�ӷ�h���+j��ޝ�
��KFϲ��w����%�n�^Q;pG}<�?[u{��ځ;�����xI�۳W�|_�?��:�eu	�QO��������v�����(���+h���U�g�����p���:u<��������KJݞ��v��z�6��={E����m��?�ƳW�|_}<�^䏹�,�K��zwx~�����w���ݓ�k�x��ځ;����Q���^Q;�}����݃Tdz�.�;���p/̍g������
w��x��ځ;���pk���+j��>��
�/�ۣlv�y������w����ƪ۳W��Q�O/��={E���՗���Y��ϲ���ɪ۳W��QO?�(̍g������
��x��ځ覆7�oýS�,�k��z�/���={E����m�}�����w�ӷ�h���+j��O߆�c.ϲ������+j��U�g����>����W̊{��=�O�N�et	�QO߃G�n�^Q;pG=}n��={E����]��������W�N߆;��gY]w�ӷ��^�۳W��QO߆���3���v��z�6�Xu{��ځ���Í�'>y��%pG�;<<�8��+j��'�n�^Q;pG}><ؿ
+�g�����p�6<�8�YV����m������w�ӷA�Eb{�Yq;��{p'��g�����x��Ju<������G�cn<{E����]������w������17���v�������Y�<�eu	�Q��OVݞ��v���pz^���^Q;pG=}䏹����W�O߆{��gY]w�ӷ�N���^Q;pG=}n叹���w�ӷ�h���+j���l�eJϲ�o�4_��"^��x���ۣWĊ�!�w���x�
+ځ������܏�<��������={E����]x������w�ӷA���+j�=��m���x��%pG�SVj�όj������3�ځ�~f���̨v ��٨��̤.��~f���̨v ��Y�y?3���gVj�όj���
��3��q�~fE��3#Yq�~fe��̈v ��Y�y?3���g6�|?3�K ��Y�y?3���gVj�cQ�@��Uj�cQ�@��5꜏%u	��X�f>���X�f>���X�f>���X���XR�@��Uj�cQ�@��Uj�cQ�@��U蘏E��p>֐��%��x>V���E�y>V���E�y>V���E�y>֨s>��%��c���XT;��c���XT;��c���XT;��c�:�cI]y>V���E�y>V���E�y>V���E�y>V���XP�@��Uj�cQ�@��Uj�cQ�@��U蘏E��x>֘s>��%��c���XT;��c���XT;��c���XT;��c�:�cI]y>V���E�y>V���E�y>V���E�y>֨s>��%��c���XT;��c���XT;��c���XT;��c�:�cI]y>V���E�q>V�c>͊��Xef>���X���XR�@��Uj�cQ�@��Uj�cQ�@��Uj�cQ�@��5꜏%u	��X�f>���X�f>���X�f>���X���XR�@��Uj�cQ�@��Uj�cQ�@��Uj�cQ�@��5꜏%u	��X���X4+��c��}2D;��ɔ�}2T;��Ɍ:��H]y�L��'C�y�L��'C�y�L��'C�y�L��}2P�@�'Sj��P�@�'Sj��P�@�'Sj��P�@�'3��'#u	�}2�f���}2�f���}2�f���}2�f��̎�}2E�}2$+��ɔ�}2D;�������>~�m���c�w���?��|������������)���l�dǹP�׿~��������x1�?��������������Ǜ��^S���������Η�\わ?k\������@����RS�B���e�Y�"u	��RS�B��ƥ�Q�B��ƥ�Ը�@�quָH]�ƥ�ԸP�@�q)55.T;�k\JM����Qg���%�k\JM����RS�B��ƥ�ԸP�@�quָH]�ƥ�ԸP�@�q)55.T;�k\JM����Qg���%�j\��j\(^�a�K��ƅb�q�K��q!ځ\�����5.��ƅjr�K��q�ځ\�Rjj\�v ׸�:k\�.�\�Rjj\�v ׸����5.��ƅjr�˨��E��5.��ƅjr�K��q�ځ\�Rjj\�v ָ���5.E���5.e�ƅhr�K��q�ځ\�2�q��r�K��q�ځ\�Rjj\�v ׸����5.���K ׸����5.��ƅjr�K��q�ځ\�2�q��r�K��q�ځ\�Rjj\�v ָ:j\hVָ���5.e�ƅhr�K��q�ځ\�Rjj\�v ׸�:k\�.�\�Rjj\�v ׸����5.��ƅjr�˨��E��5.��ƅjr�K��q�ځ\�Rjj\�v ׸�z�q��r�K��q�ځ\�Rjj\�v ָ:j\hV׸�9k\�.�\�Rjj\�v ׸����5.��ƅjr�˨��E��5.��ƅjr�K��q�ځ\�Rjj\�v ׸�:k\�.�\�Rjj\�v ׸����5.��ƅjr�˨��E��5.��ƅjb�K��ƅf�q�K��q!ځ\�2�q��r�K��q�ځ\�Rjj\�v ׸����5.���K ׸����5.��ƅjr�K��q�ځ\�2�q��r�K��q�ځ\�Rjj\�v ׸����5.���K ָ:j\hV׸����5.��ƅjr�˨��E��5.��ƅjr�K��q�ځ\�Rjj\�v ׸�z�q��r�K��q�ځ\�Rjj\�v ׸����5.���K ׸����5.��ƅjr�K��q�ځX�2hj\dvָ9j\HV׸����5��ޑ�q���j\j\���Ƶ��X�q������P�k<�ոnwk\�ϟ��������k��˷��O������������߾~��������������e��#e��G�0�G�o?���2��G��̑2��G�B=)���Rs��j�Rs��j�Rs��j�Q�2�K )+5Gʨv )+5Gʨv )+5Gʨv )u)���Rs��j�Rs��j�Rs��j⑲As�Lf�ᑲ"Ǒ2��G��̑2��G�J͑2��G�F�Gʤ.�|���)�ځ|���)�ځ|���)�ځ|�l�y�L��G�J͑2��G�J͑2��G�J͑2��G�F�Gʤ.�|���)�ځ|���)�ځx���q��f�ᑲ!s�Ld��2s��h�Rs��j�Rs��j�Q�2�K )+5Gʨv )+5Gʨv )+5Gʨv )u)���Rs��j�Rs��j�Rs��j�P�Gʠ��|���)�ځ|���)�ځx���q��f��1�2�K )+5Gʨv )+5Gʨv )+5Gʨv )u)���Rs��j�Rs��j�Rs��j�Q�2�K )+5Gʨv )+5Gʨv )+5Gʨv )u)���Rs��j⑲BǑ2��G��̑2��G�F�Gʤ.�|���)�ځ|���)�ځ|���)�ځ|�l�y�L��G�J͑2��G�J͑2��G�J͑2��G�F�Gʤ.�|���)�ځ|���)�ځ|���)�ځ|�l�y�L��G�
+G�hV)+3Gʈv )+5Gʨv )u)���Rs��j�Rs��j�Rs��j�P�Gʠ��|���)�ځ|���)�ځ|���)�ځ|�l�y�L��G�J͑2��G�J͑2��G�J͑2��G�͑2��GʊG�HV)+3Gʈv )��8R�ϱ)_|8R���_�O���]w�>�t<<ݍ�����ݗ_�g�����8Q���_~��s�+�۷�?�����_����m��_������������?��ͥ����x�������i�@������'3����?��{o��yy|�s��
+��YV��u{'�S�K6X�@|ɆS�K6X�@|ɆS�K6X�@|ɆR�
T�@|ɆS�K6X�@zɆC��l�Yq��
g��l0ځ��
��%�.���
���l�ځ��
���l�ځ��
���l�ځ��
��%�.���
���l�ځ��
���l�ځ��
���l�ځ��
��%�.���
���l�ځ��
���l�ځ��
���l�ځ��
��%�.��
g~ﯱxF�5n�5+�k��5F;�kF��5R�@�9u��X�@�9u��X�@�9u��X�@�)5�5T�@�9u��X�@�9u��X�@�9u��X�@�)5�5T�@�9u��X�@�9u��X�@�9u��X�@�)t����8�9r�1Yq�_s��1ځ�_s�诱ځ�_Sj�k�.��_s�诱ځ�_s�诱ځ�_s�诱ځ�_Sj�k�.��_s�诱ځ�_s�诱ځ�_s�诱ځ�_Sj�k�.��_s�诱ځ�_s�诱ځ�_s��_c�⨿���_C�㰿���_c������_c������_c�������P]�����_c������_c������_c�������P]�����_c������_c������_c���f��_#u
���SG�����SG�����C�����5e������5������5������5������5�������5������5������5������5�������5������5������5������5�������5����H�5�n�56+�k��5F;�kJM
�%�kN�5V;�kN�5V;�kN�5V;�kJM
�%�kN�5V;�kN�5V;�kN�5V;�kJM
�%�kN�5V;�kN�5V;�kN�5V;�kJM
�%��k��klV�ל9�k�v �ל:�k�v �ה���K �ל:�k�v �ל:�k�v �ל:�k�v �׌:�k����_s�诱ځ�_s�诱ځ�_s�诱ځ�_Sj�k�.��_s�诱ځ�_s�诱ځ�_s�诱ځ�_S�诡�q�_s��_c�ⰿ���_c�������5�ߟ��/�{�5�/�x������������㉭�v<�;k����ke�M��x���mF���鯌�;_����������'�3���S<�^�1�|�w��Q&+n�|><��C-Cn�2Yq�O��݃#ǣHv�y��^ar{�Ɋ�!O_���e��Q&+n�<}�o%�=�dŽO>����JܞD��v��W�xt��(��C���7��e��v���Ӌ��n�2Yq�/����|K�G������Ir{�Ɋ�!�����e��v������ۣLV��%����^�y��%n�<}���=�d�퐧/��#�G������?Jr{�Ɋ{�<���7�'WE��vȻ��ˋ#�G�����p|���(��C>�����^�����'�c$���q;��+�(��Q&+n�<}�n�=�d�퐧����#�G����ɻ��Α�Q$;n�<}�o��=�d�퐧/����2Yq;�X�0d@��8�������x�Ð�� ��x�Ð� ��x�ÐY� ��x�C�s�Ȏ��Cf�Ȋõ#��/�x�ÀY� ��x�C�s�Ȏ�Cf�Ȋ�Cf��Ȋ�yCf݃Ȋ�mA�i ;��=�]"+�W=�Q"+�'=�E"+��<9�<��8�0d�<��8^�0d�<��8��0dV<��8�������h�À�~qQ��a�1�A�eOw0�$V�v\'ϳ��ǣ��f�Nj��`��s��Z��[��S@vu2;DV�t2#DVOt2DV�sr�s��q<�a�lsYq��a�sYq<�aȬrYq��!�Lr�Xa8�a���A�e�q0c$VOq2KDV�pr�p��q<�a�lpYq��a�pYq<�aȬoYq��!�9�d����!��Ad���!3�Ad���!��Ad��ކ ����c�����K�����3F+^��Ɔ�2�^������Ab��!3�Ad��!��Ad�� ��ǣ�̦�Nj�̠��s�̚��[��S@vi2;DV�h2#DVOh2DV�g\'��������v�����p���F�^��f���d�ǃ��^��k��X��S��R��;��3@v�d2DV/d2DV�c2�DVocrNc��q<�a��bYq��aȌbYq<�a�,bYq��!�9�d���!��Ad������a<�a��`�Xq��!�9�d����!�Ad����!3~Ad���!�|Ad��� ���ǣ����Nj�����s�����[��S@v]2;DV�\2#DVO\2DV�[r�[��q8naımA�e/[0�$V�Z2�DVoZrNZ��q<ha��YYq�faȌYYq<ea�,YYq�cq�<�X�K�X2DV/X2DV�W2�DVoWrNW��q<\a��VYq�ZaȌVYq<Ya�,VYq�W!��U�Xa8Va��UA�e/U0C$V�T�n/��
+��H��3�F���x�ǟW&*���ӯz�Q1�F*n�H�?|����ÿ���ǟ��������͊ӏ��Sg����i���1|�Y7����}�
+Ǡ��\9Vj:Ǩv �����1���c��y�jr�ب�|L���c���jrY�� �ځXBV�h!�Yq�C6�,"�rY��"�ځ�FVj�Ȩv ���F2�ȝd��R2�K ג��^2���d����jr9Y�i'�ځ�O6�,(��rEY��(�ځ�RVjjʨv ����2��]e�β2�K ו���2���e���2�ǥee���hro٨��L���e����jr{Y��/�ځ\`Vj̨v w��:K̤.�\cVjz̨v 7���*3��ef��͌jr�٨��L�ȕf��ӌjr�Y��5�ځ\lVj�ͨv w��:�ͤ.�ToV��oF�2�
+g+�K��L��䞳P�EgP�@�:+5]gT;���JM���³R�xF���l�Yz&u	�ڳR�{F�����T�Q�@.?+5�gT;���F�hR�@�@+5hT;�[�JM
��"�RӄF��mД���8�C+r����8nD+3�hD;�K�JM+��^�Qg1��%���JM7��v�RS�F�� ��4�Q�@�Hu��I]�&����Q�@nJ+5UiT;���JM[�侴Qga��%�+�JMg��ִRS�F��8��ќF��;mȔ���8�O+3�iD;��JM����RӢF��Gm�Y�&u	�*�RӥF��M��ԩQ�@.T+5�jT;�;�F��jR�@�U+5�jT;���JM���r�RӮF��_-�s��5�+�JM��䖵RS�F��h��ѴF��km�Y�&t	亵RӷF��q��T�Q�@.]+5�kT;�{�F��kR�@�^+5�kT;���JM����R��F���m�Y�&u	��R��F�����T�Q�@.c+5mlT;���F��lR�@�d+5�lT;[�
+�l4+����L3��n�Qg9��%���JM?�䆶RS�F����Դ�Q�@�iu�I]����t�Q�@nk+5umT;��JMc��ζQgi��%�k�JMo���RS�F����Դ�Q�@�ou�I]�­���F��ŭ�Ը�@.r+5MnT;���F�enR�@�s+5}nT;��JM���R�R��F���-�s��5���JM���v�RS�F����4�Q�@�xu��I]�����Q�@nz+5UoT;���JM��ľ�AS�&������F�����Ծ�@.~S�Y4��sl����ϱ���\��><?>a�{<����F������������?�����{�����������0n��j����)��/>��+��~xg8�K �5\�ym8��/Wj��j�Õ�:?��u~�������\�Wj���v ����:?��u~��Ώjr�ߨ��O��u~��Ώjr�_���ځX�W��Yq\�7���r�_���ځ\�Wj���v ����:?��u~��:?�K ����:?��u~��Ώjr�_���ځ\�7��r�_���ځ\�Wj���v ����:?��u~��:?�K ����:?��u~��:?��u~e�Ώhr�ߨ��O��u~��Ώjr�_���ځ\�Wj���v ���:���.�\�Wj���v ����:?��u~��Ώjr�ߨ��O��u~��Ώjr�_���ځ\�Wj���v ���:���.�T�W�V�G�2��
+u~+����L���:�P�u~P�@��+5u~T;���JM���:�RS�G���o�Y�'u	�:�RS�G�����Q�@��+5u~T;���F�u~R�@��+5u~T;���JM���:�RS�G���o�����8��+r����8��+3u~D;���JM���:�Qg���%���JM���:�RS�G�����Q�@��u��I]����Q�@��+5u~T;���JM���:�Qg���%���JM���:�RS�G���Q�G���o�����8��+3u~D;���JM���:�RS�G���o�Y�'u	�:�RS�G�����Q�@��+5u~T;���F�u~R�@��+5u~T;���JM���:�RS�G���/�s��5���JM���:�RS�G���Q�G���o�Y�'t	�:�RS�G�����Q�@��+5u~T;���F�u~R�@��+5u~T;���JM���:�RS�G���o�Y�'u	�:�RS�G�����Q�@��+5u~T;���F�u~R�@��+5u~T;��
+u~4+����L���:�Qg���%���JM���:�RS�G��ί���Q�@��u��I]�ί���Q�@��+5u~T;���JM���:�Qg���%���JM���:�RS�G��ί���Q�@��u��I]�ί�Q�G��ί����@��+5u~T;���F�u~R�@��+5u~T;���JM���:�RS�G���/�s��5���JM���:�RS�G��ί���Q�@��u��I]�ί���Q�@��+5u~T;���JM���:�AS�'��ί�Q�G��ί����@����U�?�V��/��u���q�5���{�k�����-�=�t<<ݍ������@w��4��#��F�����e�7�����>}�������|��N��t���?����o���n�f��[����{�����/���[�o?�Q�@n*5�@T;�[�JM+��V�Qg+��%�[�JM+��V�R�
+D���ԴQ�@nu�I]��ԴQ�@l*t�Ѭ8n*3�@D;�[�F��@R�@n*5�@T;�[�JM+��V�R�
+D��h��
+$u	�V�R�
+D���ԴQ�@n*5�@T;�[�F��@R�@n*5�@T;�[�JM+��V�R�
+D��h��
+$u	�V�2�V ��a�
+T�h�Xq�
+TfZ��v ��zn��r+P�i�ځ�
+TjZ��v ���V �ȭ@��V �K ���V �ȭ@���jr+P�i�ځ�
+4�l��r+P�i�ځ�
+TjZ��v ���V ���@��Hf�a+P���d�q+P�i"ځ�
+TjZ��v ��:[��.��
+TjZ��v ���V �ȭ@���jr+Ш�H�ȭ@���jr+P�i�ځ�
+TjZ��v ��:[��.��
+TjZ��v ���V ���@��V ���@C�Hd�q+P�i"ځ�
+TjZ��v ���V �ȭ@��V �K ���V �ȭ@���jr+P�i�ځ�
+4�l��r+P�i�ځ�
+TjZ��v ���V �ȭ@��[�����
+TjZ��v ���V ���@��V �ǭ@c�V �K ���V �ȭ@���jr+P�i�ځ�
+4�l��r+P�i�ځ�
+TjZ��v ���V �ȭ@��V �K ���V �ȭ@���jr+P�i�ځ�
+4�l��r+P�i�ځ�
+T�h�Yq�
+TfZ��v ��:[��.��
+TjZ��v ���V �ȭ@���jr+Ш�H�ȭ@���jr+P�i�ځ�
+TjZ��v ��:[��.��
+TjZ��v ���V �ȭ@���jr+Ш�H���@��V �ǭ@e��hr+P�i�ځ�
+4�l��r+P�i�ځ�
+TjZ��v ���V �ȭ@��[�����
+TjZ��v ���V �ȭ@���jr+Ш�H�ȭ@���jr+P�i�ځ�
+TjZ��v �
�V ���@E�V �ǭ@e��hr+p�ŦZ��9�V���xy�m�����>|�W|�����k�-��w<���nF+�����_���������������t��ez�_��	�O5���To�8{�x�8��1�1�g����>^={E���Շ����/�[u<��������Z�۳W��QO߆�U�g������
��SJݞ��v�����p����:�eu	�Q���Vݞ��v���x�{z�����wԭY����+j��>��
Rϲ�o���R�g������
��Z�۳W��QO߆[�n�^Q;�}���m��e��v����(��g������7Vݞ��v���|xz�_���+j�x�}�?pƳ�.�;����ɪ۳W��Q�����x��ځ;���� ��g������ӷ�ީy�5pG=}���={E����m�}�����w�ӷ�h���+j��m�q?��,�K��zwx|y�����w���i���+j�χG������v^]<���<�������Vݞ��v��z�<�Ju{��ځ;��p'���+j�Ԍ��� R�@�Rjf�P�@�Rjf�P�@�Rjf�P�@�2�"u	� �f�� �f�� �f�� �� R�@�Rjf�P�@�R�B��xH��B�yȨs��%�g��� T;�g��� T;�g��� T;�g��:g�H]yH��B�yH��B�yH��B�yȨs��%�g��� T;�g��� T;�g��� T;�g��:g�H]iH����a8��1�b���23�h��P�3@���<�����ځ<�����ځ<�����ځ<d�9D��3@J���3@J���3@J���3@F�3@�.�<�����ځ<�����ځ<�����ځ8d�����q8��1�d���23�h��R3�j��Q��K ��)53@�v ��)53@�v ��)53@�v ��u������R3�j��R3�j��R3�j��Q��K ��)53@�v ��)53@�v ��)t���Yq8d����q<����!ځ<�����ځ<�����ځ<d�9D��3@J���3@J���3@J���3@F�3@�.�<�����ځ<�����ځ<�����ځ<$���k ��)53@�v ��)53@�v ��)t���Yq<d�9D��3@J���3@J���3@J���3@F�3@�.�<�����ځ<�����ځ<�����ځ<d�9D��3@J���3@J���3@J���3@F�3@�.�<�����ځ8��1�f���23�h��Q��K ��)53@�v ��)53@�v ��)53@�v ��u������R3�j��R3�j��R3�j��Q��K ��)53@�v ��)53@�v ��)53@�v ��u������B���3@����3@J���3@F�3@�.�<�����ځ<�����ځ<�����ځ<$���k ��)53@�v ��)53@�v ��)53@�v ��u������R3�j��R3�j��R3�j��A3Df���"���3@����3@�o#f��sl3@f��?����?��2t������mO�~���������?���ϟ����?������ç��������_�VHO�qF��t|���V��GN�����;�o>TJA�8.�2}R"+�ۤ�L��Ȋ�*�!�$%��G*�Y#��Dj�tH��8n�2R"+�룆L{�Ȋ�� guȎ��!�%��5jȔF��8��2�Q"+�����uQ ;�ˢ�LW�Ȋæ�GQ���0��0-Q+�;���Q ;���L?�Ȋ�v�!S%��j�4C��8�
+r�B��8.�2�P"+���L!�Ȋ�:�!�%��*�Y��j��@��8n�2%P"+�+��L�Ȋ��� g�Ȏ����'qQ��4�(~wƵO��Ib�q��:y�|�K>
��'��mOC��Id�q�ӐizYq���y�q\�4d:�DV7<
��'���NC��Id�q�S���	d�q�Ӑ�uYq��4dJ�DVW:
�F'��}N!��	`�a��x��I�e79
�"'��5NC��Id�q�S���	d�q�Ӑ�oYq��4dʛDVW7
��&�ǽMA��&�ǥMC��Id�qcӐ)lYq\�4dښDVw59��@v5
��&��-MC��Id�aEӈ��I�e�3��z&x��L��Ib�q3Ӑ)fYq\�4dZ�DVw29+�@v2
�>&��mLC��Id�qӐibYq���a�q\�4d:�DV70
�&���KC�}Id�q��:y�^�K/
��%�ǭKC�tId�a�҈�qI�e�-8� v�-
��%��MKC�hId�q�ҐiYYqܱ�X�q\�4d��DV�+
�r%���JC�YId�q�R��V	d�q�Ґ�TYqܨ4d
+�DV�)
�6%��]JA�*%��EJC�GId�a�҈�DI�eW(
�%���IA��$���IC�;Id�qsҐ)NYq\�4dZ�DVw&9+�@v&
��$��mIC�,Id�qUҐiJYqܓ�I�q\�4d:�DV7$
��$���HC�Id�q7R��	d�a1҈�I�e�"
�R$�ǕHC�Id�qR��	d�qҐ�BYq܄4d��DV� 
�$������O.q\�4d��DV�
��#���GC��Hd�q�Q���d�q�ѐ�<Yq�x4d
+�DV�
��#��]G!��`�a��x��H�e�
��#��Gh牆#}���x��o��K����������������������ӯ����_���_��x��|���w_;}��l�@������W./���:�����/�~�c���ėB;u���ėB;u���ėB+5/�Fu	ėB;u���ėB;u���ėB;u���ėBu���5_
+���RhV;_
+���RhV;_
+���RhV;_
+�Լ�%_
+���RhV;_
+���RhV;�^
+�Э��f�a�_�i�#�b�ߩ���jb�ߩ���jb�ߩ���jb�_�i�b�ߩ���jb�ߩ���jb�ߩ���jb�_�i���b�ߩ���jb�ߩ���jb�ߩ���jb�_�i���b�ߩ���jR�ߡ[ן͊ö�3Gݟ��¿R��Gu	�οSG���ڿSG����SG�����R��Gu	���S������N��v ��8u���ځ8��,����S����s�N{��v .8uL�ځ8
+�Ԭ���.�3��xF��ܶX�8\p�`�q ��s!��57�:FX�@�	p��	`�q)��c*��ı��f-��%��:X�@�p��`�q5��c6������f9��%��:�X�@�p��`�qA��cB�����4;�v�
	0Yq8%�̱%�h⚀Sǜ����J͢��K n
+8u�
+�ځ8+�Ա+�jⲀSǴ����Jͺ��K �8u�ځ81�Ա1�j�ʀS�����CJ����K n
8u�
�ځ87�Ա7�j��C��6+�F9V��8�p�`�qz��c{�������V;��T�@� p�!`�q���c����%��)V;���5T�@�#p�$`�q���c����U��YV;�	�:�	H]q���c����y��}V;�
+�M�Yq8R�̬ ��N�S�P��SN[�v �8u��ځ8X��,���f�S�h���N��v .8uL�ځ8^�Ԭ���~�Sǀ��N�v �8u��ځ8d��,��▁Sǘ�Hs��ج8\4p�4`�q�@�Y5@u	�]��aV;�
�:�
X�@\7p�7`�q�@�Y8@u	č���V;g�:vX�@\:p�:`�q�@�Y;@u	Ľ���V;'�:6X�@\=p�=`�q�@�Y>@u	���n�lV�8s�0ځ����1��j��R�����;NC�v N!8ul!�ځ����1��j� �Q�"�k n"8u�"�ځ8��Ա��j�2�S�4���J�:�K �#8u$�ځ8��Ա��j�J�S�L�HC	
+K	hvm%8rK`��p.��c/����(����ߟ��/O{�	�9��Մ�����3�&�G^?����D������_���?~�����7-��������[?��p���;��b?|�Y����������.�\�Wj���v ���b?���~��؏jr�_��b?�k ���b?���~��؏jr�_�)��ځ\�7�,���r�_�)��ځ\�Wj���v �:��hV��9���.�\�Wj���v ���b?���~��؏jr�ߨ��O���~��؏jr�_�)��ځ\�Wj���v ��:���.�\�Wj���v ���b?���~��؏jr�ߨ��O���~��؏jb�_��؏f�q�_�)�#ځ\�7�,���r�_�)��ځ\�Wj���v ���b?���~��b?�K ���b?���~��؏jr�_�)��ځ\�7�,���r�_�)��ځ\�Wj���v ���b?���~��b?�K ����Q��b�G�Ŋ�b�2S�G���/�s��5���JM���b�RS�G��د��Q�@.�u�I]�د��Q�@.�+5�~T;���JM���b�Qg���%���JM���b�RS�G��د��Q�@,�4�~2;����~$+����L���b�RS�G���o�Y�'u	�b�RS�G��د��Q�@.�+5�~T;���F��~R�@.�+5�~T;���JM���b�RS�G���o�Y�'u	�b�RS�G��د��Q�@,�+t�Ѭ8,�2�~";����L���b�RS�G��د��Q�@.�u�I]�د��Q�@.�+5�~T;���JM���b�Qg���%���JM���b�RS�G��د��Q�@.��\�u
�b�RS�G��د��Q�@,�+t�Ѭ8.�s�	]�د��Q�@.�+5�~T;���JM���b�Qg���%���JM���b�RS�G��د��Q�@.�u�I]�د��Q�@.�+5�~T;���JM���b�Qg���%���JM���b�BG�͊�b�2S�G���o�Y�'u	�b�RS�G��د��Q�@.�+5�~T;���F��~R�@.�+5�~T;���JM���b�RS�G���o�Y�'u	�b�RS�G��د��Q�@.�+5�~T;���F��~R�@,�+t�Ѭ8.�+3�~D;���JM���b�Qg���%���JM���b�RS�G��د��Q�@.��\�u
�b�RS�G��د��Q�@.�+5�~T;���F��~R�@.�+5�~T;���JM���b�RS�G���o����8,�+r���8.�+3�~D;�����tU��ϱ�/>��?�R��b����������t?��������zss���o��~��M���wQ/����w�Zw/{5������?��O��.?�ے��������={E��u�/��=sE��������Ԕ�={E���էӷ�A��YV����mx=Q����w�����Ԕ�={E����m�������W�O߆[�n���q;��{p<Js{�
+ځ;�鿼�����w�1B�Ԭ��ځ�jbԹjB�ȫ&Jͪ	�ȫ&Jͪ	�ȫ&Jͪ	�ȫ&B=�����R�j�j�R�j�j�R�j�j�Q�	�K ��(5�&�v ��(5�&�v ��(t���Yq�jb̹jB�ȫ&Jͪ	�ȫ&Jͪ	�ȫ&Jͪ	�ȫ&F��&�.��j�Ԭ��ځ�j�Ԭ��ځ�j�Ԭ��ځ�jbԹjB�ȫ&Jͪ	�ȫ&Jͪ	�ȫ&Jͪ	�ȫ&F��&�.��j�Ԭ��ځ�j�бj�f��2�j�h�Q�	�K ��(5�&�v ��(5�&�v ��(5�&�v ��u�����R�j�j�R�j�j�R�j�j�Q�	�K ��(5�&�v ��(5�&�v ��(5�&�v ��u����Ҫ�2�U/�p�D�c�Ŋ�Uef���U��WM@]y�D�Y5A�y�D�Y5A�y�D�Y5A�y�ĨsՄ�%�WM��UT;�WM��UT;�WM��UT;�WM�:WMH]y�D�Y5A�y�D�Y5A�y�D�Y5A�q�ĠY5!��p�D�c�Ɋ�Uef���U�f���U��UR�@^5QjVMP�@^5QjVMP�@^5QjVMP�@^51�\5!u	�U�f���U�f���U�f���U��UR�@^5QjVMP�@^5QjVMP�@\5Q�X5A��p�ĐY5!��x�D�Y5A�y�D�Y5A�y�D�Y5A�y�ĨsՄ�%�WM��UT;�WM��UT;�WM��UT;�WM�:WMH]y�D�Y5A�y�D�Y5A�y�D�Y5A�y�D��UP�@^5QjVMP�@^5QjVMP�@\5Q�X5A��x�ĘsՄ�%�WM��UT;�WM��UT;�WM��UT;�WM�:WMH]y�D�Y5A�y�D�Y5A�y�D�Y5A�y�ĨsՄ�%�WM��UT;�WM��UT;�WM��UT;�WM�:WMH]y�D�Y5A�q�D�c�͊�Uef���U��UR�@^5QjVMP�@^5QjVMP�@^5QjVMP�@^51�\5!u	�U�f���U�f���U�f���U��UR�@^5QjVMP�@^5QjVMP�@^5QjVMP�@^51�\5!u	�U��U4+�WM��UD;�WM��UT;�WM�:WMH]y�D�Y5A�y�D�Y5A�y�D�Y5A�y�D��UP�@^5QjVMP�@^5QjVMP�@^5QjVMP�@^51�\5!u	�U�f���U�f���U�f���U�fՄ̎�UE�U$+�WM��UD;�WMp����	~�m���c�<ﮚ��e��ȫ&w���_�i�d<���ƪ����O��|�������?���O_���^������g�/��޺ɬ}ç���_�~�9��
�ȵo����jr�[��}�ځ\�Vjjߨv ׾�:kߤ.�\�Vjjߨv ׾���7���o���7�ǵoc��7�K ׾���7�ȵo����jr�[��}�ځ\�6�}��r�[��}�ځ\�Vjjߨv ׾���7�ȵo���7�K ׾���7�ȵo����jr�[��}�ځ\�6�}��r�[��}�ځX�V�}�Yq\�Vfj߈v ׾�:kߤ.�\�Vjjߨv ׾���7�ȵo����jr�ۨ��M�ȵo����jr�[��}�ځ\�Vjjߨv ׾�:kߤ.�\�Vjjߨv ׾���7�ȵo����jr�ۨ��M�H�oen�o/ð���Q�F�����Ծ�@�}�\�u
�ڷRS�F�����ԾQ�@�}+5�oT;�k�F��oR�@�}+5�oT;�k�JM���ڷRS�F���m�Y�&u	�ڷRS�F�����ԾQ�@�}+5�oT;k�M�̎�ڷ"G�Ɋ�ڷ2S�F�����ԾQ�@�}u־I]����ԾQ�@�}+5�oT;�k�JM���ڷQg��%�k�JM���ڷRS�F�����ԾQ�@�}u־I]����ԾQ�@�}+5�oT;k�
+�o4+k߆L�Ȏ�ڷ2S�F�����ԾQ�@�}+5�oT;�k�F��oR�@�}+5�oT;�k�JM���ڷRS�F���m�Y�&u	�ڷRS�F�����ԾQ�@�}+5�oT;�k�B=׾A]����ԾQ�@�}+5�oT;k�
+�o4+�k�Ɯ�oB�@�}+5�oT;�k�JM���ڷRS�F���m�Y�&u	�ڷRS�F�����ԾQ�@�}+5�oT;�k�F��oR�@�}+5�oT;�k�JM���ڷRS�F���m�Y�&u	�ڷRS�F�����Q�F�����Ծ�@�}u־I]����ԾQ�@�}+5�oT;�k�JM���ڷQg��%�k�JM���ڷRS�F�����ԾQ�@�}u־I]����ԾQ�@�}+5�oT;�k�JM���ڷQg��%k�
+�o4+�k��L���ڷRS�F���m�Y�&u	�ڷRS�F�����ԾQ�@�}+5�oT;�k�B=׾A]����ԾQ�@�}+5�oT;�k�JM���ڷQg��%�k�JM���ڷRS�F�����ԾQ�@�}4�o2;kߊ�o$+�k��L����7���׾�sl���[���K���k�����t������z�������_����_��J���e��z�u<�)���<wv�����'���� ��E�����tvQ�@��*ttvѬ8��svv	]����tvQ�@��*5�]T;�;�JMg��ήQgg��%�;�JMg��ήR��E�����tvQ�@��uvvI]����tvQ�@��*5�]T;�;�JMg��ήQgg��%�;�JMg��ήBGg͊�ή2��E���k���%u	�ήR��E�����tvQ�@��*5�]T;�;�F��]R�@��*5�]T;�;�JMg��ήR��E���k���%u	�ήR��E�����tvQ�@��*5�]T;�;�F��]R�@��*s��x��]��.�ǝ]e���hrgW���.�k wv���.�ȝ]����jrgW���ځ��5��쒺rgW���ځ��Uj:��v wv���.�ȝ]���.�K wv���.�ȝ]����jrgW���ځ��5h:�dvvv9:�HVwv���.�ȝ]����jrgר��K�ȝ]����jrgW���ځ��Uj:��v wv�:;��.���Uj:��v wv���.�ȝ]����jrgר��K�ȝ]����jrgW���ځ��U���Yq��5d:�Dvwv���.�ȝ]����jrgW���ځ��5��쒺rgW���ځ��Uj:��v wv���.�ȝ]���.�K wv���.�ȝ]����jrgW���ځ��깳�ȝ]����jrgW���ځ��U���Yq��5����rgW���ځ��Uj:��v wv���.�ȝ]���.�K wv���.�ȝ]����jrgW���ځ��5��쒺rgW���ځ��Uj:��v wv���.�ȝ]���.�K wv���.���]���.�ǝ]e���hrgר��K�ȝ]����jrgW���ځ��Uj:��v wv�:;��.���Uj:��v wv���.�ȝ]����jrgר��K�ȝ]����jrgW���ځ��Uj:��v wv�:;��.���U���Yq��Uf:��v wv���.�ȝ]���.�K wv���.�ȝ]����jrgW���ځ��깳�ȝ]����jrgW���ځ��Uj:��v wv�:;��.���Uj:��v wv���.�ȝ]����jbgנ���q��U���"Yq��Uf:��v wv�+�����c��^|������U�㏋:����4:�������LJ�������������o�����ӧ_>���/�N���ˇ����͇�����mއ��wv���>޽�y�?��p.�H�[8o?�p�@n�u�pH]���ԴpP�@n�(5-T;�[8JM���Qg��%�[8JM���R��A����ԴpP�@n�u�pH]���ԴpP�@n�(5-T;�[8JM���Qg��%�Z8��Z8(^�aG����b�qG�i� ځ��깅��-����jrG�i�ځ��QjZ8�v �p�:[8�.���QjZ8�v �p����-����jrǨ��C��-����jrG�i�ځ��QjZ8�v �p���-E���-e���hrG�i�ځ��1�lᐺrG�i�ځ��QjZ8�v �p����-���K �p����-����jrG�i�ځ��1�lᐺrG�i�ځ��QjZ8�v �p:Z8hV�p���-e���hrG�i�ځ��QjZ8�v �p�:[8�.���QjZ8�v �p����-����jrǨ��C��-����jrG�i�ځ��QjZ8�v �p�zn်rG�i�ځ��QjZ8�v �p:Z8hV�p�9[8�.���QjZ8�v �p����-����jrǨ��C��-����jrG�i�ځ��QjZ8�v �p�:[8�.���QjZ8�v �p����-����jrǨ��C��-����jbG����f�qG�i� ځ��1�lᐺrG�i�ځ��QjZ8�v �p����-���K �p����-����jrG�i�ځ��1�lᐺrG�i�ځ��QjZ8�v �p����-���K �p:Z8hV�p����-����jrǨ��C��-����jrG�i�ځ��QjZ8�v �p�zn်rG�i�ځ��QjZ8�v �p����-���K �p����-����jrG�i�ځ��1hZ8dv�p9Z8HV�p����-���~���s�1����9��7��O�G�%��׏�<:8��w~��巟���������D3����B��/���x��~0������g;��w���L��S�Cn�2Yq;����(��Q&+n�|>����r{�Ɋ{�|<�^9E��vȻ��$�G�����p�z�c��Q&+n�|><��CQCn�2Yq�O�/��#ǣHv�y��^�r{�Ɋ�!O_��j��Q&+n�<}�o%�=�dŽO>����JܞD��v��W�xt��(��C���7��e��v���+�e�e���'_���g�cd<�d��w��'In�2Yq;��������2Yq;����~��G����KH7�/��"�(�K�y���=:r{�Ɋ�!O_��'Gn�2Yq;�����(�����bfA�=�q��gC�-�DV��ِy�3��/x6�x�3��a�vgΗ;��q�jgC���DV��ِy�3��/u6d��Ld���9_�d���
��9Yq�.gC�U�DV��ِy�3��oq�|�3�ǯp6d��Ld����
��7Yq��fC���DV��Y����@v��ِyk3���l6��!�2��b��+�wb9gb��8�1d6b��8^�1db��8��1d�a��8ކ䜆��xƐم!��xƐ�!��xƐY�!��xF�sȎ�1Cf�Ȋ�%Cf�Ȋ�Cf�Ȋ�
A�	 ;�`���w��/F�/�]�����Bb����u�<��O.q<�b�l�Yq��b��Yq<�bȬ�Yq��"�9�d��Ћ!��Bd��ʋ!3�Bd��ċ!��Bd�� ����.�̶���.�̰�dz.�̪���.B̤���.�{.�]��3�Bb��!��Bd�� ���#.�̆��.�̀���-��z���-���-@v�2�-DV��2�-DVO�2�-DV�rε��q<�b�l�Yq��b��Yq8�bı�B�en�/-�U�0�,$V��2�,DVO�2�,DV�rβ��q<�b�l�Yq��b��Yq<�bȬ�Yq��"�9�d���!��Bd��
+�!3�Bd���!��Bd����u�<��O.q<�b�l�Yq��b��Yq8�bı�B�eo�pN���q<�b��Yq��bȌ�Yq<�b�,�Yq��"�9�d��Ȋ!��Bd��Š!3�Bd��!��Bd�� �
+���*�̮
+�ǫ*�̨
+�Ǔ*�̢
+��{*��s*@v��2[*DV.�q�x�3*̊
+��*��*@v�2�)DV��2�)DVO�2�)DV�rΦ��q<�b�l�Yq��b��Yq<�bȬ�Yq��"�9�d��P�!��Bd��J�!3�Bd��D�!��Bd��>� �<
+���(F�(^��2�3�Bb��,�!��Bd��&� �$
+�ǃ(��
+��k(��
+��S(��
+��;(����>����!��Bd���!3�Bd����!�~Bd���� ��	���'���	�ǫ'���	�Ǔ'���	��{'B��	��c'0kq���rw���7�y��Conv'@v?���ޛ��
/82�>I27@�n>|������l�ܟ~`��W����_�owG@2��n�c\|�����2P�@��0�� u	��f'���f*���f-�����R�@��Pj63P�@^�Pjf3P�@�Pj�3P�@��0h�3��8��Pf�3�@^�Pj&4P�@�PjV4P�@��0�� u	�)
�fK��5
�fN��A
�fQ��M
��G5@]yVC���@�yYC���@�y\C�Y�@�y_ès`��%�'6���
T;�W6���
T;�6:�6Ь8��0�� t	�
�fo���
�fr���
�fu���
���
R�@��Pj�7P�@^�Pj�7P�@�Pj8P�@��0�� u	��f���%�f���1�f���=��AR�@��Pj69P�@\�P��@��x�C�Y�@�y�ès���%��9��}T;�:���T;�G:���T;�w:�:�:H]y�C���@�y�C���@�y�C�Y�@�y�ès���%�g;���T;��;���T;��;���T;��;�:<H]i�C�ۆ��a���1�b��2��h�P�c���<���y�ځ���Lz�ځ<�Ԭz�ځ��a�9�A���JͶ���Jͼ��J����F�#�.�<���|�ځ����L}�ځ<��Ԭ}�ځ��a�~��q8��ȱ��d���23��h���R���j���Q���K �(5��v /�(5 �v ��(5+ �v �u�����R��j��R3�j� �R��j�&�Q�(�K ς(5� �v /�(5� �v ��(t���Yq�b���q<��l� ځ���̄�ځ<��,��ځ�b�9B��s!J�^�ȋ!J�d�ȣ!J�j�Ȼ!F��!�.�<��l��ځ���̇�ځ< ��,��ځ�!"���k ψ(5;"�v /�(5S"�v ��(t���Yq�'b�9(B�ȓ"Jͦ�ȫ"Jͬ���"JͲ���"F��"�.�</��신ځ�0��L��ځ<2�Ԭ��ځ�3b�94B��S#J����k#J���ȃ#J���ț#F��#�.�<;��쎠ځ�<��1=�f����2�>�h���Q��	�K O�(5$�v ��(53$�v �(5K$�v o�u������R�G�j�"�R3I�j�(�R�J�j�.�Q�0	�K O�(5�$�v ��(5�$�v �(5%�v o�u�����L�B�N	��K%��T	��c%J�Z	��{%F��%�.�<Y��l��ځ�Z��̖�ځ<\��,��ځ�]"��x	�k ϗ(5�%�v /�(5&�v ��(5+&�v �u����R�e�j�R3g�j�R�h�j⦉A3jBf����R��5��1�M.>-����紐�wC�~�m�{�<Ow�<��穕���^|����{<��y��ϟ�>�9'��<�Fendstream
+endobj
+1800 0 obj <<
+/Type /Page
+/Contents 1801 0 R
+/Resources 1799 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 1895 0 R
+/Annots [ 1803 0 R 1804 0 R 1805 0 R 1806 0 R 1807 0 R 1808 0 R 1809 0 R 1810 0 R 1811 0 R 1812 0 R 1813 0 R 1814 0 R 1815 0 R 1816 0 R 1817 0 R 1818 0 R 1819 0 R 1820 0 R 1821 0 R 1822 0 R 1823 0 R 1824 0 R 1825 0 R 1826 0 R 1827 0 R 1828 0 R 1829 0 R 1830 0 R 1831 0 R 1832 0 R 1833 0 R 1834 0 R 1835 0 R 1836 0 R 1837 0 R 1838 0 R 1839 0 R 1840 0 R 1841 0 R 1842 0 R 1843 0 R 1844 0 R 1845 0 R 1846 0 R 1847 0 R 1848 0 R 1849 0 R 1850 0 R 1851 0 R 1852 0 R 1853 0 R 1854 0 R 1855 0 R 1856 0 R 1857 0 R 1858 0 R 1859 0 R 1860 0 R 1861 0 R 1862 0 R 1863 0 R 1864 0 R 1865 0 R 1866 0 R 1867 0 R 1868 0 R 1869 0 R 1870 0 R 1871 0 R 1872 0 R 1873 0 R 1874 0 R 1875 0 R 1876 0 R 1877 0 R 1878 0 R 1879 0 R 1880 0 R 1881 0 R 1882 0 R 1883 0 R 1884 0 R 1885 0 R 1886 0 R 1887 0 R 1888 0 R 1889 0 R 1890 0 R 1891 0 R 1892 0 R 1893 0 R 1894 0 R ]
+>> endobj
+1803 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [119.552 188.13 235.586 197.041]
+/Rect [119.552 706.187 235.586 715.098]
 /Subtype /Link
-/A << /S /GoTo /D (2576) >>
+/A << /S /GoTo /D (2711) >>
 >> endobj
-1729 0 obj <<
+1804 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 188.13 537.983 197.041]
+/Rect [528.02 706.187 537.983 715.098]
 /Subtype /Link
-/A << /S /GoTo /D (2576) >>
+/A << /S /GoTo /D (2711) >>
 >> endobj
-1730 0 obj <<
+1805 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [71.731 172.922 172.751 181.808]
+/Rect [71.731 690.979 172.751 699.865]
 /Subtype /Link
 /A << /S /GoTo /D (customization) >>
 >> endobj
-1731 0 obj <<
+1806 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 172.922 537.983 181.808]
+/Rect [528.02 690.979 537.983 699.865]
 /Subtype /Link
 /A << /S /GoTo /D (customization) >>
 >> endobj
-1732 0 obj <<
+1807 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 159.502 168.717 166.356]
+/Rect [95.641 677.559 168.717 684.413]
 /Subtype /Link
 /A << /S /GoTo /D (cust-skins) >>
 >> endobj
-1733 0 obj <<
+1808 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 159.502 537.983 166.356]
+/Rect [528.02 677.559 537.983 684.413]
 /Subtype /Link
 /A << /S /GoTo /D (cust-skins) >>
 >> endobj
-1734 0 obj <<
+1809 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 144.493 210.619 153.405]
+/Rect [95.641 662.551 210.619 671.462]
 /Subtype /Link
 /A << /S /GoTo /D (cust-templates) >>
 >> endobj
-1735 0 obj <<
+1810 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 144.493 537.983 153.405]
+/Rect [528.02 662.551 537.983 671.462]
 /Subtype /Link
 /A << /S /GoTo /D (cust-templates) >>
 >> endobj
-1736 0 obj <<
+1811 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [119.552 131.542 261.07 140.453]
+/Rect [119.552 649.599 261.07 658.511]
 /Subtype /Link
 /A << /S /GoTo /D (template-directory) >>
 >> endobj
-1737 0 obj <<
+1812 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 131.542 537.983 140.453]
+/Rect [528.02 649.599 537.983 658.511]
 /Subtype /Link
 /A << /S /GoTo /D (template-directory) >>
 >> endobj
-1738 0 obj <<
+1813 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [119.552 118.59 283.665 127.502]
+/Rect [119.552 636.648 283.665 645.559]
 /Subtype /Link
 /A << /S /GoTo /D (template-method) >>
 >> endobj
-1739 0 obj <<
+1814 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 118.59 537.983 127.502]
+/Rect [528.02 636.648 537.983 645.559]
 /Subtype /Link
 /A << /S /GoTo /D (template-method) >>
 >> endobj
-1740 0 obj <<
+1815 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [119.552 105.639 238.734 114.55]
+/Rect [119.552 623.696 238.734 632.608]
 /Subtype /Link
 /A << /S /GoTo /D (template-edit) >>
 >> endobj
-1741 0 obj <<
+1816 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 105.639 537.983 114.55]
+/Rect [528.02 623.696 537.983 632.608]
 /Subtype /Link
 /A << /S /GoTo /D (template-edit) >>
 >> endobj
-1647 0 obj <<
-/D [1645 0 R /XYZ 71.731 729.265 null]
->> endobj
-1644 0 obj <<
-/Font << /F27 1208 0 R /F32 1215 0 R /F33 1306 0 R >>
-/ProcSet [ /PDF /Text ]
->> endobj
-1791 0 obj <<
-/Length 52406     
-/Filter /FlateDecode
->>
-stream
-xڜ�[�d�u��{�
-L߰�l�sF�N��6���8M��b4E 	�u�]���{g��_����n�ؘ�r�?QY@,��}�����w���a�?����|�����f�ݏ��_�fWO��������������es�~��n�����v��Ӕ���es8_����7����q�x>|��?������L��y���i��o�o�~��û/O��ow�7ϟ~~����o�����/��ӳ����������������Kٟ7���w7/���������ݟw����_����l^���as��p;�����y�ݦ������_��C��Ϯ�x_}��y9fj=�j\P��C��Ϯ������O�:?��z��:�
�s��Ϯ�x_�Lo�1T�YV[��:�
��P��]Q=pA�ކ�%T�gWT\P��a���+��W��a����,�-pA�ކ�|yrE�
[�N�K�����hq��^v�9?��z�]���n.ُ=�j\P��9U�gWT\P�w�t������?�����﫻�m8�j=�j\P��a
-������m؝Cu~vE��u���:?��z�}u����c�Nϲ���f����+�.����C��Ϯ���^���z����難�m��4?ʦ�-��{�ou~t���rz��М�]A=pA�ހC�Ӧ�]Q=�z�ނ}�ֳ���uzv�ϸzvE��uz��O�zvE�����=��������vs�����gYm��a�K�QϮ����6�s��Ϯ���No�)�WϮ�x_=Oo�1�iSϲ���m8�������6�ßq�����6�A�]1-�>�0��ϛ�Q&=n��ހmj�Ϯ����6���On=��z��z�l/�:?��z�}��ݜŸq�,�-pA=l���M=��z��:�
�T��]Q=pA�ކc�3��]Q=��8�
�P�gYm���6�ßq�����6�Ÿq�����6lSu~vE����q����qz����7��?�ӳ+�.����!U�gWT\P6�?�GWL��O�� �Ѫgm����Ru~vE��uz��P��]Q=pA�ޅ�!T�gWT��a��,�-pA�ކ�1T�gWT\P��a{
-����ԇ��1U�gWT�����%�1�gYm��~sy��TϮ����6�s��Ϯ���No�)�1WϮ�x_=No�1��Sϲ���m8�������6�i�]1-n��ރ}���]A=�z�ރ]�ֳ���uz³=��z��z��ó=��z����y���������v��N�,�-pA�o³=��z��:�
�T��]Q=pA�ކ��DϮ�x_}�ކ��Dϲ���mا������6�g'zvE��uz³=��z�}����C��e�.���9E�=�bZ�y����=��z����9?���������=�O�,�-pA�ޅ��DϮ���No�1U�gWT\P��!<>ѳ+��UO��m?�ֳ���uzv�:?��z��:�
��]Q=pA}؜�ΤgWT���%T�YV[���ߜ��=��z��z�lϩ:?��z��:�
��P��]Q=𾺟ކ�8�lz�9�ǐ���
-iq��v�9?��z��:���O������(N��f�o��ۗ�py�:����������r�~��XM�3��������"ʻO_���ûO��*�k(������1��o��Re�t~�yJ�Yݾ�ק���fw8�{!��z����6��1T�gWT\Pϛ���/S�gWT\P��a���+��W������,�-pA=lNӏ�L��]Q=pA=o��:?��z��zٜ��:?��z�}�4�
ӏ�H�gYm���6Su~vE��uz¿H̏���@N���#3�gWP\���}�HU���L�"���L�"���L�"���HU���L�"���L�"���L�"���HU���L�"���L�"���L�"���HU����V@d�6�
-�8Y�8, ff�@, &�( ������U@d�����U@d�����U@d����* ������U@d�����U@d�����U@d����* ������U@d�����U@d�����U@d����U@D�㨀��s�I��bfV�Q�b�V�U�b����j�b�V�U�b�V�U�b�V�U�b����j�b�V�U�b�V�U�b�V�U�b����j�b�V�U�b�V�U�b��D6-�
-�YD$=��YDF=��ZDV=��ZDV=���"�-��ZDV=��ZDV=��ZDV=���"�-��ZDV=��ZDV=��ZDV=��:
-���@, fjY�@, fjY�@* f�\@d�Ⰰ�* "�����U@d�����U@d�����U@d����* ������U@d�����U@d�����U@d����* ������U@d�����U@d�����U@d����* ������U@d�����s�M��bfV�Q�b����j�b�V�U�b�V�U�b�V�U�b����j�b�V�U�b�V�U�b�V�U�b����j�b�V�U�b�V�U�b�V�U�b����j�b��D6-��YDF=��ZDV=���"�-��ZDV=��ZDV=��ZDV=��:
-���@, fjY�@, fjY�@, fjY�@, F�
-���@, fjY�@, fjY�@, fjY�@* Fh��8* f�\@d�Ⰰ��U@d���ݹ��ȯ��3�/c����W��<�f�x�q��Q�\��=���v���O�?�8�[����������G_���<���<}����ꫴ���ӧ_�=���7i��w���ǧ���W}���ž����e����~~��~���|������������
T=��7u�o���~#Ru�����F��~U�����
4-�7R�Dz�oD��7�@�߈T�o��|����@��~#Q���-��7"U��z �oD��7P�@�߈T�o��|����~�������
T=��7"U��z �oD��7P�@������=��7"U��z �oD��7P�@�߈к�@���~#1���-��7"U��z �oD��7P�@�߈T�o��|����~�������
T=��7"U��z �oD��7P�@��H�q�Aj���H��������
T=��7"U��z �o$�� ���F��~U�����
4-��7"S��z �o$�� ���F��~U���H��������
T=��7u�o���~#Ru�����F��~U���H������:�7Hm�|����@��~#Ru�����F��~U���D���@�߈к�@���~#2u�����F��~U���D���@�߈T�o��|����@��~#Ru�����F�^�7@�|����@��~#Ru�����F��~U���D���@�߈T�o��|����@��~#Ru�����F��~�L�������
$-��7"S��z �o,_D��:�����q�.�o,��o�|���OLa@z��s���r~�/�w_P=�G��C�n�Q7~�����������?�秷�7�������?�[J�����%ܙ�~\��K��KK�7���%��/�LIm��d�Z2E�y�4R�d���i�j�U�%�DK���@^2�T-��ꁼd�Z2E�y�4R�d���i��%SR[ /�F��LQ�@^2�T-��ꁼd�Z2E�y�4Qǒ)�-��L#s^2E�6�L#��LQ�8^2�L-�"ꁼd��%SP{ /�F��LQ�@^2�T-��ꁼd�Z2E�y�4Qǒ)�-��L#UK��z /�F��LQ�@^2�T-��ꁼd��cɔ��K���%ST=��L#UK��z /�F��LQ�@\2MP-���q�d��d����idj�Q�%�HՒ)��K��:�LIm��d�Z2E�y�4R�d���i�j�U�%�DK���@^2�T5aP�@n�D��0�z 7a"UMT=��0�:�0��@n�D��0�z 7a"UMT=�0ZM4-�0	�&��M��TQ�&L��	��r&RՄA��	���	Cj�&L��	��r&RՄA��	�j �܄I�ф!�r&RՄA��	�j �܄�T5aP�@n��	j�&L��	��r&RՄA��	�ՄA��	���	Ch�&L��	��r&RՄA��	�j �܄I�ф!�r&RՄA��	�j �܄�T5aP�@n�$�h��	�j �܄�T5aP�@n�D��0�z 7au4aHm�܄�T5aP�@l�Dh5aд8n�D��0�z 7au4aHm�܄�T5aP�@n�D��0�z 7a"UMT=��0�:�0��@n�D��0�z 7a"UMT=��0��&��M�DMR[ 7a"UMT=��0��&��M�HUU�&L��&�-�0ZM4-��0��&��M�HUU�&L��&�-��0��&��M�HUU�&L��	��r&P�MP{ 7a"UMT=��0��&��M�HUU�&L��&�-��0��&��M�HUU�&L��	��b&AՄ!��	�ՄA��	�j� �܄Y�mDM|s��e@f�u�&̎�0���t�`���0G��~�������96L���j��w�󻟦�{��x��^	������e�n��vǥ6�h��/c4Dn~�
��/"�z 7D"U
T=�"�:"��@n�D�"�z 7D"U
T=�"�����
�D
R[ 7D"U
T=�"�����
�HUCU�H����-�"�97DP�
ÆHVCE��Hd�!��rC$P�
P{ 7D"U
T=�"�����
�HUCU�H����-�"�����
�HUCU�H��!��rC$QGC���
�HUCU�H��!��rC$R�A��!��j���q���j� iq��L5D�@n�D�"�z 7Du4DHm���T5DP�@n�D�"�z 7D"U
T=�"�:"��@n�D�"�z 7D"U
T=�"�����
�D
R[ 7D"U
T=�"�����
�����
��TC�H��Hd�!��rC$R�A��!�j����I��!�rC$R�A��!�j�����T5DP�@n�$�h����!�j�����T5DP�@n�D�"�z 7D���rC$R�A��!�j������j��iq�I��!�rC$R�A��!�j�����T5DP�@n�$�h����!�j�����T5DP�@n�D�"�z 7Du4DHm���T5DP�@n�D�"�z 7D"U
T=�"�:"��@n�D�"�z 6D"�"hZ7D"S
D=�"�:"��@n�D�"�z 7D"U
T=�"�����
�D
R[ 7D"U
T=�"�����
�HUCU�H����-�"�����
�HUCU�H��!��rC$QGC���
�����
��TCQ�H��!��rC$QGC���
�HUCU�H��!��rC$R�A��!�׆�=�"�����
�HUCU�H��!��rC$QGC���
�HUCU�H��!��rC$R�A��!��j���q���j� iq��L5D�@n�,W�����!r�2.�ņ�����"���4�O�"���9UC�>~yz�;���ӻ/�%�ߛ�o��T_��v����~���_������?��_�o��?|~}�}�������˻��.~�ʸΆ_޸ξ��-_g�~!p�Mj���Ȝ��Q�
�����l-���#S�وz _g��:���ّ��lT=���#U�٨z _gG���Q�@��N�q�Mj���H�u6���ّ��lT=���#U�٨z _g'��&��uv��:U���H�u6���ّ��lT=��T��dz^gGd]g#iq|����F��:;Ru����uv���lR[ _gG���Q�@�ΎT]g��|����F��:;Q�u6�-���#U�٨z _gG���Q�@�ΎT]g��|����:����ّ��lT=���#U�٨z ^gGh]g�iqx�����&���:;2u����uv��:U���H�u6���ى:��Im�|����F��:;Ru����uv��:U���D�٤�@�ΎT]g��|����F��:;Ru����uv�^��A�|����F��:;Ru����uv��u6���ى9��	m�|����F��:;Ru����uv��:U���D�٤�@�ΎT]g��|����F��:;Ru����uv���lR[ _gG���Q�@�ΎT]g��|����F��:;Q�u6�-���#U�٨z ^gGh]g�iq|����F��:;Q�u6�-���#U�٨z _gG���Q�@�ΎT]g��|����:����ّ��lT=���#U�٨z _gG���Q�@��N�q�Mj���H�u6���ّ��lT=���#U�٨z _g'��&��uv��u6���ّ��lD=���#U�٨z _g'��&��uv��:U���H�u6���ّ��lT=����z�
j���H�u6���ّ��lT=���#U�٨z _g'��&��uv��:U���H�u6���ّ��lT=��T��dz^gGd]g#iq|����F��:{�\8����1_g߼��q�:{�u����l�/��o�(v����q�/��+:l�����H��g��B���?�{�_�n�M���g�5�����&��᰹|;�WVݾ���r�^���rG��]Q=pA�l.�T��]Q=�z�m��e����=x�G �9?��z��:��T��]Q=pA�l�?��+��Ww�������e�.����C��Ϯ����7��1T�gWT\P�����D������	��m8f��E�.���p8�������6��#�H��]Q=pA�ކ]��Ϯ�x_�Mo�����,�-pA=lΏ��:?��z��z��.�:?��z��zٜ�?��]1-�>��mv�=�h\P������+�.��{pڇ������.�:?��z�}�0�
�P�gYm���6쏡:?��z��:�
��N=��z��:�
�T��]Q=�z�m��ᏹz�����?���+�.����!U�gWT\P/�S�W�zvE����izN��z����No�1U�gWT\P��!�����iq���8��
-�_`7��P�gYm�j}�_��+Q�@���H�W�������D��+u|E �-��"0R���z E`��+Q�@���H�W�����:�"���_���@T=��"0R���z E`�j�U��D#��@���y���0����@��x�"25B���E�^G(@�<B��@�y�"R5B���E�j�U��D#��@��T�P��<B��@�y�"R5B���E��
-R[ �PD�F(P�@��T�P��<B��@�q�"A5BA���ED���#��
-D=�G("U#�z �P$�� ��E�j�U��H���#��
-T=�G(u�P��y�"R5B���E�j�U��H���#�:F(Hm�<B��@�y�"R5B���E����#	�
-"=�G("S#�z �PD�F(P�@��T�P��<B��c����#��
-T=�G("U#�z �PD�F(P�@�H�1BAj��H���#��
-T=�G("U#�z �P�u���#��
-T=�G("U#�z �PDh�P�iq<B��c����#��
-T=�G("U#�z �PD�F(P�@�H�1BAj��H���#��
-T=�G("U#�z �P$�� ��E�j�U��H���#��
-T=�G(u�P��y�"R5B���E����#��
-D=�G(u�P��y�"R5B���E�j�U��H���#�:F(Hm�<B��@�y�"R5B���E�j�U��D#��@��T�P��<B��@�y�"R5B���E��
-R[ �PDh�P�iq<B��@�y�"R5B���E��
-R[ �PD�F(P�@��T�P��<B��@�y�"P�#��@��T�P��<B��@�y�"R5B���E��
-R[ �PD�F(P�@��T�P��<B��@�q�"A5BA���ED���#��
-D=�G(���
-|���ˀ����F(v+#��Η#�P�3�������^��χ����k��?O��(^�_;�WUݾ�����ysx��x�:��+�.�����kE����������,�-pA��Hհ���"��aT=��E"U�"�z �$��E��8�L
� �<,�A�yX$R5,���H��aR[ �D��EP�@�T
���<,�A�yX$P��"��@�T
���<,�A�yX$R5,���H��aR[ �D��EP�@�T
���8,�5,����Hb�aB[ �D��EP�@�T
���<,�A�yX$Qǰ�-��E"U�"�z �D��EP�@�T
���<,��cX����"��aT=��E"U�"�z �D��EP�@I�1,Bj�a�Hհ���"Z�"hZ�D��E�@I�1,Bj�a�Hհ���"��aT=��E"U�"�z �$�!��H�jXU�a�Hհ���"��aT=��Eu���yX$R5,���H�jXU�a�Hհ���"�:�EHm�4,����a8,�5,����HdjXQ�a�@����yX$R5,���H�jXU�a�Hհ���"�:�EHm�<,�A�yX$R5,���H�jXU�a�D�"��@�T
���<,�A�yX$R5,���H�jX�L��a���a$-��E"S�"�z �D��EP�@I�1,Bj�a�Hհ���"��aT=��E"U�"�z �$�!��H�jXU�a�Hհ���"��aT=��Eu���yX$R5,���H�jXU�a��a4-�ER�"Dz�D��E�@�T
���<,�A�yX$Qǰ�-��E"U�"�z �D��EP�@�T
���<,��cX����"��aT=��E"U�"�z �D��EP�@	���=��E"U�"�z �D��EP�@��A��xX$1ǰ�-��E"U�"�z �D��EP�@�T
���<,��cX����"��aT=��E"U�"�z �D��EP�@I�1,Bj�a�Hհ���"��aT=��E"U�"�z �$�!��H�jXU�a��a4-��E"S�"�z �$�!��H�jXU�a�Hհ���"��aT=��Eu���yX$R5,���H�jXU�a�Hհ���"�:�EHm�<,�A�yX$R5,���H�jXU�a�D�"��@��A��xX$25,���H�jXU�a�D�"��@�T
���<,�A�yX$R5,���H�^�E@�<,�A�yX$R5,���H�jXU�a�D�"��@�T
���<,�A�yX$R5,���H�jX�L��a���a$-��E"S�"�z ��`F0,��c�y0,��:ڰ�~eXd{�<�<,R�hX�P�"�����O�?��������?�"���7��a��ڵ
-
/rT�o^�r���*4��U�HUU�*t��*4�-��Б�*4��U�HUU�*t�VM��*tb�*4�-��Б�*4��U�HUU�*t��
-��r:QG���U�HUU�*t��
-��r:RU�F��
-���
-Mj�*t��
-��r:RU�F��
-��B��\�N�Q�&�r:RU�F��
-�U�F��
-��B#�\�N�Q�&�r:RU�F��
-��B��\��TU�Q�@�B'�B���
-��B��\��TU�Q�@�BG��Шz W�uT�Im�\��TU�Q�@�BG��Шz W�#UUhT=��Љ:�Ф�@�BG�\�F�6��XUh-��Б�*4��U�@�V�A�\��TU�Q�@�BG��Шz W�#UUhT=��Љ:�Ф�@�BG��Шz W�#UUhT=��Б�*4��U�DUhR[ W�#UUhT=��Б�*4��U�HUU�*t��
-M��a:"�
-���q:2U�F��
-��B��\�N�Q�&�r:RU�F��
-��B��\��TU�Q�@�B'�B���
-��B��\��TU�Q�@�BG��Шz W�uT�Im�\��TU�Q�@�BG��Шz V�#���hZV�RUh"=��Б�*4��U�HUU�*t��
-��r:QG���U�HUU�*t��
-��r:RU�F��
-���
-Mj�*t��
-��r:RU�F��
-��B��\��k��U�HUU�*t��
-��b:B�
-���q:1G���U�HUU�*t��
-��r:RU�F��
-���
-Mj�*t��
-��r:RU�F��
-��B��\�N�Q�&�r:RU�F��
-��B��\��TU�Q�@�B'�B���
-��B��X��ЪB�iq\��LU��@�B'�B���
-��B��\��TU�Q�@�BG��Шz W�uT�Im�\��TU�Q�@�BG��Шz W�#UUhT=��Љ:�Ф�@�BG��Шz W�#UUhT=��Б�*4��U�DUhR[ V�#���hZW�#SUhD=��Б�*4��U�DUhR[ W�#UUhT=��Б�*4��U�HUU�*t�^�Р�@�BG��Шz W�#UUhT=��Б�*4��U�DUhR[ W�#UUhT=��Б�*4��U�HUU�*t��
-M��a:"�
-���q:2U�F��
-�\ꍪ��:�*��ˀ*���hU�W�O���o�vX��3�B�
-���z�;������������}������uz��_��6�d_e=t�*�d��Y��qV=�d<S�K�Y�@���L�/g��K�u|�8�=�d<S�YϪb�>S�YϪb�>S�YϪb�>RլG�b�>S�YϪb�>S�YϪR�>C�f=�����T�����L�f=����L�f=����L�f=����HU�����L�f=����L�f=����L�f=����HU�����L�f=����L�f=����L�f=����HU�����L�f=�H�����lZ6�3����z 6�#U�zT[ 6�3����z 6�3����z 6�3����z 6�#U�zT[ 6�3����z 6�3����z 6�3����z 6�#U�zT[ 6�3����z 6�3����z 6�3����z 6�#U�zT[ 4�3�[����0j�g�ܬg��Y��լg��Y���YOj�f}�V��U�f}�V��U�f}�V��U�f}��Y�j�f}�V��U�f}�V��U�f}�V��U�f}��Y�j�f}�V��U�f}�V��U�f}�V��U�f}�V�M��f}F��z&-���Y�zF=���Z�zV=����f=�-���Z�zV=���Z�zV=���Z�zV=����f=�-���Z�zV=���Z�zV=���Z�zV=����f=�-���Z�zV=���Z�zV=���:7�ٴ8j�Gd5��8l�gf5��@l�gj5�Y�@l�gj5�Y�@l�G�����@l�gj5�Y�@l�gj5�Y�@l�gj5�Y�@l�G�����@l�gj5�Y�@l�gj5�Y�@l�gj5�Y�@l�'�h֓��Y��լg��Y��լg��Y��s��M��f}d�Y�h�f}�V��U�f}�V��U�f}�V��U�f}��Y�j�f}�V��U�f}�V��U�f}�V��U�f}��Y�j�f}�V��U�f}�V��U�f}�V��U�f}��Y�j�f}�V��U�f}���z6-���Y�zF=����f=�-���Z�zV=���Z�zV=���Z�zV=����f=�-���Z�zV=���Z�zV=���Z�zV=����f=�-���Z�zV=���Z�zV=���Z�zV=����f=�-���:7�ٴ8l�gf5��@l�gj5�Y�@l�G�����@l�gj5�Y�@l�gj5�Y�@l�gj5�Y�@l�'�h֓��Y��լg��Y��լg��Y��լg��Y�j֣��Y��լg��Y��լg��Y��լg��Y�լG��Y��s��I��f}fV��Q�f=Tēf=��o�ܾ��i�Y������A��>?r���Q��T��?�=�޼���ӧ?=��o���i��Mԝ״���uZ���ь��;�q7/w����@3U�f\��f�-��q��f��͸HU3U�f\����r3.QG3���͸HU3U�f\�V3M��f\d���r3.QG3���͸HU3U�f\����r3.RՌC�����Gj�f\����r3.RՌC���jơ�܌K�ь#�r3.RՌC���jơ�܌�T5�P�@n�%�hƑ���s3��0l�E`5�P�8n�E��q�z 7��ڌ�r3.RՌC���jơ�܌�T5�P�@n�%�hƑ���jơ�܌�T5�P�@n�E��q�z 7�u4�Hm�܌�T5�P�@n�E��q�z 7�"U�8T=�q	�f��͸��f��͸�T3Q�f\����r3.QG3���͸HU3U�f\����r3.RՌC�����Gj�f\����r3.RՌC���jơ�܌K�ь#�r3.RՌC���jơ�،��jơiq،KH5��8n�E��q�z 7�"U�8T=��q��f��͸D�8R[ 7�"U�8T=��q��f��͸HU3U�f\��f�-��q��f��͸HU3U�f\����r3.P��8P{ 7�"U�8T=��q��f��͸�f��͸��8B[ 7�"U�8T=��q��f��͸HU3U�f\��f�-��q��f��͸HU3U�f\����r3.QG3���͸HU3U�f\����r3.RՌC�����Gj�f\����b3.B����q3.2ՌC�����Gj�f\����r3.RՌC���jơ�܌K�ь#�r3.RՌC���jơ�܌�T5�P�@n�%�hƑ���jơ�܌�T5�P�@n�E��q�z 7�u4�Hm�،��jơiq܌�L5��@n�E��q�z 7�u4�Hm�܌�T5�P�@n�E��q�z 7�"U�8T=��q�zmƁ���jơ�܌�T5�P�@n�E��q�z 7�u4�Hm�܌�T5�P�@n�E��q�z 7�"U�8T=�q	�f��͸��f��͸�T3Q�f�r�+j��똛q7/�q˯c�m�y�}��M�U=�7�v��ob·��C~�������=���N������ۯ?������o�o�������~�E���\�����q��y��g�������C����7�N���r��B��+�.�����:$R�gWT\P�����c�H��]Q=�:��p
-�z����No��uH��Ϯ���No��1T�gWT\P���g��������6�3t~�M�[ ��`�������=ئ�����e������]Q=p����u|8�-��<R��z x��+�Q�@�
-�H�W������z�
-pP{ x��+�Q�@�
-�H�W���������G��+�u|8�-��<R��z x��+�Q�@�
-����G���+�s|8�-��<R��z x��+�Q�@�
-�H�W������:����_��
-pT=��<R5t����I�j�U䡓DC'��@:�T
���<t�:A�y�$R5t����I���R[ �D��NP�@:��:A��x�$25t����I���R[ �D��NP�@:�T
���<t�:A�y�$Q��	�-��N"UC'�z �D��NP�@:�T
���<t��c���C'���T=��N"UC'�z �D��NP�@:I�1tBj���Ȝ�NP�
á���-��N"SC'�z ��u���C'���T=��N"UC'�z �D��NP�@:I�1tBj䡓H��	��C'���T=��N"UC'�z �$�:!���I�j�U䡓H��	��C'���T=�NTC'dz�Dd
� iq<t�:A�y�$R5t����I���R[ �D��NP�@:�T
���<t�:A�y�$Q��	�-��N"UC'�z �D��NP�@:�T
���<t��c���C'���T=��N"UC'�z �Dh
��iq8t��:!��x�$25t����I�j�U䡓H��	��C'�:�NHm�<t�:A�y�$R5t����I�j�U䡓DC'��@:�T
���<t�:A�y�$R5t����I�^�N@�<t�:A�y�$R5t����I���	��C'�9�Nm�<t�:A�y�$R5t����I�j�U䡓DC'��@:�T
���<t�:A�y�$R5t����I���R[ �D��NP�@:�T
���<t�:A�y�$Q��	�-��N"UC'�z �Dh
��iq<t�:A�y�$Q��	�-��N"UC'�z �D��NP�@:�T
���<t��c���C'���T=��N"UC'�z �D��NP�@:I�1tBj䡓H��	��C'���T=��N"UC'�z �$�:!���I���	��C'���D=��N"UC'�z �$�:!���I�j�U䡓H��	��C'���T=��N�:tj䡓H��	��C'���T=��N"UC'�z �$�:!���I�j�U䡓H��	��C'���T=�NTC'dz�Dd
� iq<t�:A�y�dy�#:��1�ܼ��yq�d�u�����\h�8tR����ߎ/�~8���vwy���O�>�������_u���_��{���z�d��nr:l���Px�z��e�.��Λ��p��Q�gWT\P/�Ǘ��H��]Q=paݤ�^u�ǐ�y?&R����~L�j?U���H�~���1�:�cHm���ڏA�y?&R����~L�j?U����~���1���D=��c"U�1�z ��D��cP�@ޏIԱCj���H�~���1���T=��c"U�1�z ���u?���1���T=��c"U�1�z ��D��cP�@ޏIԱCj���H�~���1���T=�c"��cд8ޏI̱Ch���H�~���1���T=��c"U�1�z ��$�؏!��~L�j?U���H�~���1���T=��cu�ǐ�y?&R����~L�j?U���H�~���1�:�cHm���ڏA�q?&Bk?M������~���1�:�cHm���ڏA�y?&R����~L�j?U���D�1��@ޏ�T�Ǡꁼ�ڏA�y?&R����~L���R[ ��D��cP�@ޏ�T�Ǡꁼ�ڏA�y?&Q�~�-��c"sޏA�6�c"��cP�8ޏ�L�� ꁼ���P{ ��D��cP�@ޏ�T�Ǡꁼ�ڏA�y?&Q�~�-��c"U�1�z ��D��cP�@ޏ�T�Ǡꁼ��c?����1���T=��c"U�1�z ��D��cP�@܏IP�ǐ�q�������~Ldj?Q���H�~���1�:�cHm���ڏA�y?&R����~L�j?U���D�1��@ޏ�T�Ǡꁼ�ڏA�y?&R����~L���R[ ��D��cP�@ޏ�T�Ǡꁸ������~LBj?�H������~���1���T=��c"U�1�z ��$�؏!��~L�j?U���H�~���1���T=��cu�ǐ�y?&R����~L�j?U���H�~���1�zݏ��~L�j?U���H�~���1Z�1hZ��$�؏!��~L�j?U���H�~���1���T=��cu�ǐ�y?&R����~L�j?U���H�~���1�:�cHm���ڏA�y?&R����~L�j?U���D�1��@ޏ�T�Ǡꁸ������~Ldj?Q���D�1��@ޏ�T�Ǡꁼ�ڏA�y?&R����~L���R[ ��D��cP�@ޏ�T�Ǡꁼ�ڏA�y?&Q�~�-��c"U�1�z ��D��cP�@ޏ�T�Ǡꁼ��c?����1Z�1hZ��D��c�@ޏ�T�Ǡꁼ��c?����1���T=��c"U�1�z ��D��cP�@ޏ	��~�=��c"U�1�z ��D��cP�@ޏ�T�Ǡꁼ��c?����1���T=��c"U�1�z ��D��cP�@܏IP�ǐ�q������WU�������ױ�n�U�_ʷ�q>5���������#����ZzI����K�g��<���i������ӻ���y���띂��|����x=��<-ͪ��x�c���E.N�~��dzOD���@�.�TM��<]��.@�y� Q�t�-��"U��z OD��P�@�.�TM��<]���P{ OD��P�@�.�TM��<]��.@�y� Q�t�-��"U��z OD��P�@�.�К.@��x� 1�t�-��"U��z OD��P�@�.�TM��<]��c��������T=��"U��z OD��P�@�.H�1]@j��H�t������T=��"U��z O$�. ��tA�j��U����4-��"S��z O$�. ��tA�j��U��H�t������T=��uL��y� R5]���tA�j��U��H�t����:�Hm�<]��.@�y� R5]���tA�j��U��D���@�.��y����0�.���.@��x� 25]���tA�^�@�<]��.@�y� R5]���tA�j��U��D���@�.�TM��<]��.@�y� R5]���tA���R[ OD��P�@�.�TM��<]��.@�q� A5]@���tAD�t������D=��"U��z O$�. ��tA�j��U��H�t������T=��uL��y� R5]���tA�j��U��H�t����:�Hm�<]��.@�y� R5]���tA��t���	��"=��"S��z OD��P�@�.�TM��<]��c��������T=��"U��z OD��P�@�.H�1]@j��H�t������T=��"U��z O�u��������T=��"U��z NDhM�iq<]��c��������T=��"U��z OD��P�@�.H�1]@j��H�t������T=��"U��z O$�. ��tA�j��U��H�t������T=��uL��y� R5]���tA��t������D=��uL��y� R5]���tA�j��U��H�t����:�Hm�<]��.@�y� R5]���tA�j��U��D���@�.�TM��<]��.@�y� R5]���tA���R[ NDhM�iq<]��.@�y� R5]���tA���R[ OD��P�@�.�TM��<]��.@�y� P����@�.�TM��<]��.@�y� R5]���tA���R[ OD��P�@�.�TM��<]��.@�q� A5]@���t�r?�.��Q�7����_��t���(q�`�����,N�#�t������S����{��{���/>?}������ӧ�������緻7_�ϼ��������������G�������������/����o��כ+�%����_�����ױ|sE����UD����7W���+D=�o�"U7W�z �\%긹"���U���
-U䛫H����7W���+T=�o�u�\����*Rus����U���
-U䛫H����7W�:n�Hm�|s���B���*Rus����U�����7W	��+"=�o�"S7W�z �\E�n�P�@���T�\��|s������7W���+T=�o�"U7W�z �\E�n�P�@��J�qsEj䛫H����7W���+T=�o�"U7W�z �\���
-��7W���+T=�o�"U7W�z �\Eh�\�iq|s������7W���+T=�o�"U7W�z �\E�n�P�@��J�qsEj䛫H����7W���+T=�o�"U7W�z �\%긹"���U���
-U䛫H����7W���+T=�o�u�\����*Rus����U�����7W���+D=�o�u�\����*Rus����U���
-U䛫H����7W�:n�Hm�|s���B���*Rus����U���
-U䛫D7W��@���T�\��|s���B���*Rus����U���+R[ �\Eh�\�iq|s���B���*Rus����U���+R[ �\E�n�P�@���T�\��|s���B���*P�7W��@���T�\��|s���B���*Rus����U���+R[ �\E�n�P�@���T�\��|s���B���*AusE������Ovs�/�n�n^�\-��vs��u1���2�r���G曫C�\�SS}���݇O?�X7S��T_$���_?<�������~��뗗_�o��p��2I�o�#q8o��MO/���������/_���a~��eM��<�/z�û�?�A��/�z{:��]_�K�?�}��}�|��'���z�-�����O��������g�_|怪�g���P�@��!B�34-�?sH���-�?s�T}怪�g���P�@��!R���ȟ9$��́�ȟ9D�>s@��3�H�g�z ����U��u|�@j��"U�9����C��3T=�?s�T}怪�g�:>s ��g���P�@��!B�34-�?s�L}怨�g�:>s ��g���P�@��!R���ȟ9D�>s@��3�D�9���3�H�g�z ����U��"U�9����C���Hm���C��3T=�?s�T}怪�g���P�@��!Q�g��@��!B�34-�?s�L}怨�g���P�@��!Q�g��@��!R���ȟ9D�>s@��3�H�g�z ����@���C��3T=�?s�T}怪�g���P�@��!Q�g��@��!R���ȟ9D�>s@��3�H�g�z ~搠�́L����M�9�˨�n^}��R������y<^�3=2�p���������_�?�����Cջ���˻OU������ͻ�/�G�����+��_7��Dž?���$����W��}�w^���I���}����D���Ifj}�$�H�'����I�iq�}��Y�'ɨ��IF��O���'���}��z ~�d���I���}��Z�'ɪ��IF��O���'���}��z ~�d���I���}��Z�'ɪ��IF��O���'���}��z ~�d���I���}��Z�'ɪ��IF��O��'��߾O���0�>���O�E������>IF=�O2Q��I����$3��O�U�����>IV=�O2S��$Y�@�>�H��I����$3��O�U�����>IV=�O2S��$Y�@�>�H��I����$3��O�U�����>IV=�O2SkیU�m��m34=���2r�6c��p�,3kیQ�m�L�m3V=��"U�f��@�6���6c�q�,SkیU�m�L�m3V=��"U�f��@�6���6c�q�,SkیU�m�L�m3V=��"U�f��@�6���6c�q�,SkیU�m����ش8�6���6C��p�,3kیQ�m�L�m3V=��2���X�@�6�Tm���q�,SkیU�m�L�m3V=��2���X�@�6�Tm���q�,SkیU�m�L�m3V=��2���X�@�6K��3"�b�(S�gĪb�(S�gĪR�(C���=��T���=�L����=�L����=�L����=�HU���=�L����=�L����=�L����=�HU���=�L����=�L����=�L����=�HU���=�L���H=��{FlZ��2�zF�z ��"U=#T[ ��2�zF�z ��2�zF�z ��2�zF�z ��"U=#T[ ��2�zF�z ��2�zF�z ��2�zF�z ��"U=#T[ ��2�zF�z ��2�zF�z ��2�zF�z ��"U=#T[ ��2t��iq�3���1��3������3�T��Pm��3������3������3������3J��3"�b�(S�gĪb�(S�gĪb�(S�gĪb�(R�3B�b�(S�gĪb�(S�gĪb�(S�gĪR�(B�g���Q�z1Qψ_������mwK=#x)ն��o,��3�G�ѩzF߿�8�þ�����u{���/o��7�>���/��~���ݛ���������.���]���a�k���5��,w�^�����5J��5"�r�(R�5B��k��5B��k��!��5J��5"�r�(R�5B��k�����5�Tu�P�@�%�����k�����5�Tu�P�@�E��F�z w�ut�Hm��5�Tu�P�@�E��F�z w�"U]#T=��F�:�F��@�E��5B�6�FX]#-��F�����]�@�v�@��5�Tu�P�@�E��F�z w�"U]#T=��F�:�F��@�E��F�z w�"U]#T=��F�����]�D]#R[ w�"U]#T=��F�����]�HU�UĮQ��kD��a�("�k���q�(2�5B��k�����5J��5"�r�(R�5B��k�����5�Tu�P�@�%�����k�����5�Tu�P�@�E��F�z w�ut�Hm��5�Tu�P�@�E��F�z v�"��FhZv�R]#"=��F�����]�HU�U�Q��k��r�(QG׈��]�HU�U�Q��k��r�(R�5B��k���kDj�Q��k��r�(R�5B��k�����5
-�k���]�HU�U�Q��k��b�(B�k���q�(1G׈��]�HU�U�Q��k��r�(R�5B��k���kDj�Q��k��r�(R�5B��k�����5J��5"�r�(R�5B��k�����5�Tu�P�@�%�����k�����5����iq�5�Lu��@�%�����k�����5�Tu�P�@�E��F�z w�ut�Hm��5�Tu�P�@�E��F�z w�"U]#T=��F�:�F��@�E��F�z w�"U]#T=��F�����]�D]#R[ v�"��FhZw�"S]#D=��F�����]�D]#R[ w�"U]#T=��F�����]�HU�U�Q�^�F��@�E��F�z w�"U]#T=��F�����]�D]#R[ w�"U]#T=��F�����]�HU�UĮQ��kD��a�h��u��eT���uP�h���u�it�?`��Q=2w���5����ݝ�<}��?=�����sU��?~�����������ݛ�?�W=����_y��裏�?�����9�|Jp}���H��7����_o1�9n1o~�˷��_�b��|������ȷ���[LT=�o1#U���z �bF�n1Q�@��L�q�Ij�[�H�-&�ȷ���[LT=�o1#U���z �b&�n1��8�ŌȺ�D���32u����-f��U�[�D����@�ŌT�b��|����D��3Ru����-f��[LR[ �bF�n1Q�@�ŌT�b��|����D��3Q�-&�-�o1#U���z �bF�n1Q�@�Ōк�D���3!u�I���-fd�Q�[�H�-&�ȷ���[LT=�o1u�b���3Ru����-f��U�[�H�-&�ȷ��:n1Im�|����D��3Ru����-f��U�[�@��b���3Ru����-f��U�[��[L4-�o1s�b��3Ru����-f��U�[�H�-&�ȷ��:n1Im�|����D��3Ru����-f��U�[�D����@�ŌT�b��|����D��3Ru����-f��[LR[ �bF�n1Q�@�Ōк�D���32u����-f��[LR[ �bF�n1Q�@�ŌT�b��|����D��3Q�-&�-�o1#U���z �bF�n1Q�@�ŌT�b��|������ȷ���[LT=�o1#U���z �bF�n1Q�@��L�q�Ij�[��[L4-�o1#S���z �bF�n1Q�@��L�q�Ij�[�H�-&�ȷ���[LT=�o1#U���z �b���ȷ���[LT=�o1#U���z �bF�n1Q�@��L�q�Ij�[�H�-&�ȷ���[LT=�o1#U���z �b&�n1��8��\�	�n1�e�-���[������Oӳ����n1���n1��������~~�TW��>=�9�<>��c���Ŝ~ۗ��]_��[��vi�z)��q)x�\�|�B�RU�K�Hե �ȗ��:.Im�|)��D��R0Ru)���`��RU�K�ե ����Y��HZ_
-F�.�@��T]
-��|)���R��ȗ���KAT=�/#U���z _
-F�.Q�@�L�q)Hj�K�Hե �ȗ���KAT=�/#U���z _
-&�$��`��RU�K�Hե ����Z��hZ^
-&�.��8��L]
-"�|)��D��R0Ru)���`��KAR[ _
-F�.Q�@��T]
-��|)��D��R0Qǥ �-�/#U���z _
-F�.Q�@��T]
-��|)��KAP{ _
-F�.Q�@��T]
-��x)�u)����`b�KAB[ _
-F�.Q�@��T]
-��|)��D��R0Qǥ �-�/#U���z _
-F�.Q�@��T]
-��|)���R��ȗ���KAT=�/#U���z _
-F�.Q�@�L�q)Hj�K�Hե ����Z��hZ_
-F�.�@�L�q)Hj�K�Hե �ȗ���KAT=�/#U���z _
-&�$��`��RU�K�Hե �ȗ���KAT=�/u\
-���R0Ru)���`��RU�K�Hե �ȗ��:.Im�x)�u)����`d�RQ�K�Hե �ȗ��:.Im�|)��D��R0Ru)���`��RU�K�@�^
-���R0Ru)���`��RU�K�Hե �ȗ��:.Im�|)��D��R0Ru)���`��RU�K�ե �����k٥ ����y��~�Rp���u��ӳ��/��R���O�o��p��2=x~yp�8���_��#�?�����|??�����=��s?<?}�����˛/��矞��Oo����������:D�����owo���v�ױ���ut�S)���o��[v�������~/\�{��5�]n�l-߻�~!p�K���U�{�D�.��@�w�Tݻ��|���wA���%Ru�K��{R[ ߻D��]P�@�w�Tݻ��x��u��KB�ޅH��{��Խ���.��{T=��]"U�.�z ߻$�w!��K���U�{�Hս���.��{T=��]uܻ����%Ru�K���U�{�Hս���.�z�w��K���U�{�Hս���.Z�.hZ߻$�w!��K���U�{�Hս���.��{T=��]uܻ����%Ru�K���U�{�Hս���.�:�]Hm�|���wA���%Ru�K���U�{�D�.��@�w�Tݻ��x��u��Kd��Q�{�D�.��@�w�Tݻ��|���wA���%Ru�K��{R[ ߻D��]P�@�w�Tݻ��|���wA���%Qǽ�-��]"U�.�z ߻D��]P�@�w�Tݻ��|�ޅ���.Z�.hZ߻D��]�@�w�Tݻ��|�ޅ���.��{T=��]"U�.�z ߻D��]P�@�w	���=��]"U�.�z ߻D��]P�@�w�Tݻ��|�ޅ���.��{T=��]"U�.�z ߻D��]P�@�wIPݻ��qx�B�ɽ���w�y��a��e���u�.���7;�w�G�{��Z���������/_���A�V�<�R�)��w^����c]��������\������F��~�iz���ᄐ��_>=y��y����O�����O5����S}a�����f��/��p�l����[ۥw����S5~�r��j��-�_��U�߶$��m�-����m�ȿm�T��U�߶D�~ۂ��o[���P{ ��%R��T=����m�ȿm�T��U�߶$��m�-����m�ȿm�T��U�߶D�~ۂ��o[T�m!���-�?��߶�˨߶ܼ�m��K���|��O/�m9M�}�����<�}ny�\�����K�g���+�]���w��|z����v��w~�o�5���e���w/����g�U�ۗ��
��w�v��B^��,�-pA�~�r���+�.������%R�gWT\P��a���+��W���r�,�-pA=l/�:?��z��z�/�:?��z��z�<���D�������ns<�j=�j\P��!�����iq���v�9?��z��:��T��]Q=�z�ރ�U�D�gYm���.���D������6�Ru~vE��uz�ᏹzvE����y�!����gYm���^Ru~vE����9<���gWT\P/��9�1WϮ�x_�~�w8�j=�j\P��0S�gVT\P������gWT\P��a���+��W/���ex~�M�[ ��p���gWP\P��`���+�.����c��w~vE�����n���?p�YV[��z�<<�������7����\=��z��:�
��N=��z�]u��ކc��YT{��:�
�s��Ϯ���No��!T�gWT\P��a���+��Ww�۰�~��YV[��z؜Cu~vE�����]Ru~vE����9���=�bZ�}r����8z����N��9U�gWT\P���������]8Bu~vE����az�Zϲ���m�Cu~vE��uzv��zvE��uz��:?��z�}����t�c��e�.�������gWT\Pϛ�C��Ϯ���^6�����������6��8�,�-pA�ކc��Ϯ���NoC��������=8�?p������=؇j=�j\P��`���gWT\P�wa���+�.����1�1WϮ�x_}�n/���YV[��z�Ru~vE���4=���gWT\P������gWT��^�����,�-pA�ކC�c��]Q=pA�ކ}�c��]Q=pA�ކ]��Ϯ�x_}�׵"��e�.����/O���a�i��-���hq�es��?�����OPl���C��FϢ����pN������]8Bu~vE��uz��=��z��׿No�!T�YV[��Z߇���]T=��`7R���z �n��vQ�@���D_�Kj�/؍T}�.��_����]T=��`7R���z ~�n��v��8��݈�/�E���v#S_�����F��`U�/�M�����@���H��(�ȃ����QT=�G#U���z �&�%���h�jpU���H��(�ȃ����QT=�Gu���yp4R58����h�jpU�����Q4-GR��Dz�F�G�@�T
���<8�E�yp4Q��(�-�G#U���z �F�GQ�@�T
���<8��cp��ȃ����QT=�G#U���z �F�GQ�@
���(�=�G#U���z �F�GQ�@��E��xp41��(�-�G#U���z �F�GQ�@�T
���<8��cp��ȃ����QT=�G#U���z �F�GQ�@M�18Jj���H��(�ȃ����QT=�G#U���z �&�%���h�jpU�����Q4-�G#S���z �&�%���h�jpU���H��(�ȃ����QT=�Gu���yp4R58����h�jpU���H��(�ȃ��:GIm�<8�E�yp4R58����h�jpU���D����@��E��xp42�܅��rW�j�U��D�]��@^�T-w�ꁼ��Z�B�y�+R�܅��rW�^��@큼��Z�B�y�+R�܅��rW�j�U��D�]��@^�T-w�ꁼ��Z�B�y�+R�܅��rW�j��L����A�l�_F-wݼ�����ܵ�RnGO��/
��������_�#�r�nlw���?������Ͷxz������O�<�ݽ��緻�w�?ݫP=n��w'�΋_��D/_ݾ��~ӝ��ob��ߔ��ob�����7���ߔ��ob��ߔ�s��M��~SfV��Q�~S��߄j�~S�V��U�~S�V��U�~S�V��U�~S��߄j�~S�V��U�~S�V��U�~S�V��U�~S��߄j�~S�V��U�~S�V��U�~S�V��U�~S��߄j�~Sf~�7�xF����M,Z��2��M�z ��u��H��o���7���o���7���o���7���o�T��Pm��o���7���o���7���o���7���o�T��Pm��o���7���o���7���o���7���o���7��q�o�ȹ�Ĥ�a�)3��Ĩb�)S��Īb�)R�oB�b�)S��Īb�)S��Īb�)S��Īb�)R�oB�b�)S��Īb�)S��Īb�)S��Īb�)R�oB�b�)S��Īb�)S��ĪR�)C�~�G����~����̬~����L�~����L�~����HU�	����L�~����L�~����L�~����HU�	����L�~����L�~����L�~����D�&R{ ��2��M�z ��2��M�z ��2t�7�iq�o�L��m��o���7���o���7���o���7���o�T��Pm��o���7���o���7���o���7���o�T��Pm��o���7���o���7���o���7���o�T��Pm��o���7���o�й�Ħ�a�)3��Ĩb�)R�oB�b�)S��Īb�)S��Īb�)S��Īb�)R�oB�b�)S��Īb�)S��Īb�)S��Īb�)R�oB�b�)S��Īb�)S��Īb�)S��Īb�)R�oB�R�)C�~����̬~����L�~����HU�	����L�~����L�~����L�~����D�&R{ ��2��M�z ��2��M�z ��2��M�z ��"U�&T[ ��2��M�z ��2��M�z ��2��M�z ��"��Mhz�������e�ݾ�7�K��7��3ʕ~S}�C��zd�7��M�������/?�ԛ>~���_���������_��?��b�o�/�w}=���|��Bᩮw�WS׻7�����ׯa�zE�������.��׻�z�����n��zU���H��.��׻���]T=��wu\���z7Ru�����n��zU���H��.��׻�:�wIm�|����E��z7Ru�����n��zU�����.��׻Y׻HZ_�F��w�@�ލT]��|����z���׻���]T=��w#U׻�z _�F��wQ�@��M�q�Kj���H��.��׻���]T=��w#U׻�z _�&��%���n��zU���H��.��׻Z׻hZ^�&��w��8�ލL]�"�|����E��z7Ru�����n���]R[ _�F��wQ�@�ލT]��|����E��z7Q��.�-��w#U׻�z _�F��wQ�@�ލT]��|����]P{ _�F��wQ�@�ލT]��x��u������nb��]B[ _�F��wQ�@�ލT]��|����E��z7Q��.�-��w#U׻�z _�F��wQ�@�ލT]��|����z���׻���]T=��w#U׻�z _�F��wQ�@��M�q�Kj���H��.��׻Z׻hZ_�F��w�@��M�q�Kj���H��.��׻���]T=��w#U׻�z _�&��%���n��zU���H��.��׻���]T=��wu\���z7Ru�����n��zU���H��.��׻�:�wIm�x��u������nd�zQ���H��.��׻�:�wIm�|����E��z7Ru�����n��zU���@�^���z7Ru�����n��zU���H��.��׻�:�wIm�|����E��z7Ru�����n��zU�����.��׻tZ�\��˨�ݛ�A׻�/e���y�
/;��n�p�O/����/L�g���+������w����o"���݇ᄐ�8�;�������o�}KA=���?|�����	��ٽ|�r}1w��>,]�N�����e����_���w&l��^ǝ/
��e�.��-
-���e@��k"U_ˀ���2D���U�eH����@�Z�H��2����Z_ˀ����2D���Q�eH����@�Z�H��2�������e@��k"U_ˀ���2$��ZR[ -C��kP�@�Z�H��2�������e@��ku|-�-���!R���z -C��kP�@�Z�H��2�����:����H_��s���0,vE`�P�8.vE��]�z ��Z��r�+RU�B����*v��\�T�P�@.v%�(v�����*v��\�T�P�@.vE��]�z �u�Hm�\�T�P�@.vE��]�z �"U�.T=�]	�b��Ů��b��Ů�T�Q�bW��؅�r�+QG����ŮHU�U�bW��؅�r�+RU�B��ؕ���Ej�bW��؅�r�+RU�B����*v��\�J�Q�"�r�+RU�B����*v��X��*v�iqX�JH���8.vE��]�z �"U�.T=��]��b��ŮD�.R[ �"U�.T=��]��b��ŮHU�U�bW��b�-��]��b��ŮHU�U�bW��؅�r�+P��.P{ �"U�.T=��]��b��Ů�b��Ů��.B[ �"U�.T=��]��b��ŮHU�U�bW��b�-��]��b��ŮHU�U�bW��؅�r�+QG����ŮHU�U�bW��؅�r�+RU�B��ؕ���Ej�bW��؅�b�+B�؅��q�+2U�B��ؕ���Ej�bW��؅�����dI�#����G���=�#=�H�*�\��f�k �J�LK��x��YijL�кt�(��#��	���8�Rք]hm �]ʚ��
��Xg�E��a��&�Bk9�Rք]hm �]ʚ��
��Xg�E��a��&�Bk9�Rք]hm �]ʚ��
��Xg�E��a�������K9v���v)k�.�6��.c�aY �]ʚ��
�KYv���v)k�.�6��.a��]`]�v)k�.�6��.eM؅�rإ�	���@��u�]d]�v)k�.�6��.eM؅�rإ�	���@��4a9�a�G"���a��{�?=�]ǯru-�[�u��2<>�^���t-�xd�ΧK���?��\�B������_�����ˤ��^�������ry���N�_��t�vX���|`ݟ�am���e�/��u����[�ϧ�GiϲuX���������ް6���}o�cQ����X����Z�goX���e��t���;Pn���,���7�
<�n��'kݟ�am������j����7�
���z>ݽ�m�Xdzl]�������ް6���t�{;�����7�
<�n�㣴��ް6�����1<8k�E�
-<�n������ް6���}w�Һ?{�����1��u����[�����}�˳l]�����뫴��ް6���t:�X���
k�/�'����
g�>VޝO�g�
'ϲtX����Z�goXx`�>��;iݟ�am��u��u����[﷏�^Zdzl]���c�{�����X���,��goXx`3ʚ�
�6�w7�u�n�u�fw�
��
e��ZȻʚ�
�6�w7�u�n�u�fw�
��
%��,�n(gv7P�@��0ֹ�A�Ȼʚ�
�6�w7�5�hm �n(kv7��@��0ֹ�A�Ȼʚ�
�6�w7�5�hm �n(kv7��@��0ֹ�A�Ȼʚ�
�6�w7�5�hm �n(kv7��@��0ֹ�A�H�ʹ�n����J8v7�X8��P��n�����!���
��@��P��n���������@kywCY�������
�.@��P��n���������@kywCY�������
�.@��P��n���������@kywCY�����fw�����
���,�n(gv7P�@��P��n�����a�sw���w7�5�hm �n(kv7��@��P��n�����a�sw���w7�5�hm �n(kv7��@��P��n�����a�sw���w7�5�hm �n(kv7��@��Pұ������Qfw�����
���JȻʚ�
�6�w7�5�hm �n��� ���
e��ZȻʚ�
�6�w7�5�hm �n��� ���
e��ZȻʚ�
�6�w7�5�hm �n�ew�+�w7�5�hm �n(kv7��@��Pұ������q��
�.@��P��n���������@kywCY�������
�.@��P��n���������@kywCY�������
�.@��P��n���������@kywCY�������
�.@��P��n�������cw����
���JȻ�:w7Ⱥ�ywCY�����fw�
��
e��ZȻ�:w7Ⱥ�ywCY�����fw�
��
e��ZȻ�:w7Ⱥ�ywCY�����fw�
��
e��ZȻ�:w7Ⱥ�qwCI��:ǻʙ�
�6�w7�5�hm �n��� ���
e��ZȻʚ�
�6�w7�5�hm �n�ew�+�w7�5�hm �n(kv7��@��P��n�����a�sw���w7�5�hm �n(kv7��@��P��n�����a��� g�pw�xG��n�k�ݍ���ݍ�W�����%�n<�O��/�hwc<��n܍ݍ��ǻ����/�~���#����>��x;P��/6.��|wG_�K
�:�諗=��߿T�`]�\E+k�h�6��heM��r������@���uV�d]�\E+k�h�6��heM��b����FgḊ6�YE�tr������@���5U4Z�U����Fk��6�YE�ur������@���5U4Z�U����Fk��6�YE�ur������@���5U4Z�U����Fk��6�YE�ur������@���tT��,W�ʙ*�
�*�XgM��U����Fk��V�T�hm W�ʚ*�
�*�XgM��U����Fk��V�T�hm W�ʚ*�
�*�XgM��U����Fk��V�T�hm W�ʚ*�
�*�XgM�HU�r�U4�aXE+ᨢ�X8���3U4J�U��^�h��@���5U4Z�U����Fk��V�T�hm W��:�h�.@���5U4Z�U����Fk��V�T�hm W��:�h�.@���5U4Z�U����Fk��V�T�hm V�F�*����*Z)G���q����Q�@���5U4Z�U���*����heM��r������@���5U4Z�U���*����heM��r������@���5U4Z�U���*����heM��r������@���tT��,V�F�*����*Z9SE���\E+k�h�6��heM��rm���&��*ZYSE���\E+k�h�6��heM��rm���&��*ZYSE���\E+k�h�6��heM��r-��*�+��heM��r������@���tT��,W��9�h�.@���5U4Z�U����Fk��V�T�hm W��:�h�.@���5U4Z�U����Fk��V�T�hm W��:�h�.@���5U4Z�U����Fk��V�T�hm W��:�h�.@���5U4Z�U���*���*Z9SE���\E묢ɺ���V�T�hm W�ʚ*�
�*ZYSE���\E묢ɺ���V�T�hm W�ʚ*�
�*ZYSE���\E묢ɺ���V�T�hm W�ʚ*�
�*ZYSE���\E묢ɺ���V�QE��p\E+g�h�6��heM��rm���&��*ZYSE���\E+k�h�6��heM��r-��*�+��heM��r������@���5U4Z�U���*����heM��r������@���5U4Z�U����&g㰊ƬWT�����z���_e��︊�{���	����^Eߏ*�?����������?�����=��}���@�Ų��y�}��Q=o�����_������_n�&��ۿ�5����|�����o�6�o�V�t�hm w��z�����sW�t�hm w�ʚ��
��]Yӹ���ܹ���ɺ��sW�t�hm w�ʚ��
��]IG���q�n��s'���]Yӹ���ܹ+k:w�6�;weM��r�n��s'���]Yӹ���ܹ+k:w�6�;weM��r�n��s'���]Yӹ���ܹ+k:w�6�;weM��r�n��s'���]Yӹ���ع+����Y8�ܕ3�;Jȝ���Ν��;weM��r箬����@�ܕ5�;Zȝ���Ν��;weM��r箬����@�ܕ5�;Zȝ���Ν��;weM��r箬����@�ܕ5�;Zȝ���Ν��:w��;w4^ðsW�ѹ��pܹ+g:w�6�;wa�t�`]�ܹ+k:w�6�;weM��r箬����@�܍uv�d]�ܹ+k:w�6�;weM��r箬����@�܍uv�d]�ܹ+k:w�6�;weM��r箬����@�܍4�;9���R������]9ӹ���ܹ+k:w�6�;wc��;Y w�ʚ��
��]Yӹ���ܹ+k:w�6�;wc��;Y w�ʚ��
��]Yӹ���ܹ+k:w�6�;wc��;Y w�ʚ��
��]Yӹ���ع+����Y8�܍2�;)ǝ�r�sGi�sW�t�hm w�ʚ��
���Xg�N�ȝ���sGk�sW�t�hm w�ʚ��
���Xg�N�ȝ���sGk�sW�t�hm w�ʚ��
��]X/�;XW w�ʚ��
��]Yӹ���ع+����Y8�܍sv�$]�ܹ+k:w�6�;weM��r箬����@�܍uv�d]�ܹ+k:w�6�;weM��r箬����@�܍uv�d]�ܹ+k:w�6�;weM��r箬����@�܍uv�d]�ܹ+k:w�6;w%�;:ǝ�r�sGi�s7�ٹ�ur箬����@�ܕ5�;Zȝ���sGk�s7�ٹ�ur箬����@�ܕ5�;Zȝ���sGk�s7�ٹ�ur箬����@�ܕ5�;Zȝ���sGk�s7�ٹ�ub箤�sGg�sW�t�(m w�ʚ��
���Xg�N�ȝ���sGk�sW�t�hm w�ʚ��
��]X/�;XW w�ʚ��
��]Yӹ���ܹ+k:w�6�;wc��;Y w�ʚ��
��]Yӹ���ܹ+k:w�6;w#M�N��a�~�k��_ct�W�q��|ع����ӧ��o�������g�ϧ��q��-��+��]^i<�G���ߌ����������������?�J����篿�|�������ϟ����}���}E_������|y<��^r9x���]��s��/�Zȹ��&�Ck9�S��rhm �r�:s9�.@��5�Zȹ��&�Ck9�S��rhm �r�:s9�.@��5�Z�����\���\N9�ˡ�������Ⱥ�9�S��rhm �rʚ\�
�\NY�ˡ�������Ⱥ�9�S��rhm �rʚ\�
�\NY�ˡ�������Ⱥ�9�S��rhm �rʚ\�
�\NY�ˡ�������Ⱥ�)�S�=�C�5s9%�ǹ�r&�Ci9��K.�ȹ��&�Ck9�S��rhm �rʚ\�
�\�Xg.G�ȹ��&�Ck9�S��rhm �rʚ\�
�\�Xg.G�ȹ��&�Ck9�S��rhm �rʚ\�
�\�H�ˑ�q��)���PY8��3�Jȹ��&�Ck9�3֙ˑur.������@��5�Zȹ��&�Ck9�3֙ˑur.������@��5�Zȹ��&�Ck9�3֙ˑur.������@��5�Z�����\���\�(�ˑ�q��)gr9�6�s9eM.��r.������@��u�rd]���)kr9�6�s9eM.��r.������@��u�rd]���)kr9�6�s9eM.��r.������@����ˁur.������@��5�Z�����\���\�8g.G�ȹ��&�Ck9�S��rhm �rʚ\�
�\�Xg.G�ȹ��&�Ck9�S��rhm �rʚ\�
�\�Xg.G�ȹ��&�Ck9�S��rhm �rʚ\�
�\�Xg.G�ȹ��&�Ck1�Sґˡ�p��)gr9�6�s9c��Y �rʚ\�
�\NY�ˡ����)kr9�6�s9c��Y �rʚ\�
�\NY�ˡ����)kr9�6�s9c��Y �rʚ\�
�\NY�ˡ����)kr9�6�s9c��Y �rJ:r9t�s9�L.��r.������@��u�rd]���)kr9�6�s9eM.��r.������@����ˁur.������@��5�Zȹ��&�Ck9�3֙ˑur.������@��5�Zȹ��&�Ck1�3��r�l�r�m����5F.w��O�����\]{���ZطÞw/wt-�����}�����O��_�Up�S�O+͇_�绗�{`���-�����_�?s�V��(}x:=<�?z����7�
<���^�u����[ϧ������Y�.���)��K���
k���p�����X���Ӄ���ް6�c���t����Y�.������Z�goXx`}:�??I���
k�/���giݟ�am�����cx���,[��u�^�u������cؾ�9���
k���pg���7�
����}�o����l܁r����x������3�d���7�
<�;�N��
���5�ɣu�u��:��gk�:yg�ɳ��x��������@�N�X�u�d]�x��������@�N�Y�u�lm ^'��:y�6��W�\'�����;�N��
���u\'���u�N�_'����u�ʙ��Q���:yg�ɳ��x��������@�N�Y�u�lm ^'����A��}g�8lm ��8���akq�Y�>[��8ʚ}�.@��qֱ����>���}�6�q�u�㰵�������A��}g�8lm ��8龏����>�s�}�6�q�5�8h]����c��
�}g�8lm ��8���akqGY������8�:�q��@��qֱ����>���}�6�q�5�8h]����c��
�}g�8lm ��8���akqGY�����8��}���0��q�}����}��8,m �����!�
-�}g�8lm ��8���akq�Y�>[��8ʚ}�.@��qֱ����>���}�6�q�u�㰵�������A��}g�8lm ��8���akq�Y�>[H�8J:�q��8��q�}����}��8,m ��8���akqGY������8�:�q��@��qֱ����>���}�6�q�5�8h]����c��
�}g�8lm ��8���akqGY������8�:�q��@��qֱ����>����8�,��(���Ae�p�9�>K��8�:�q��@��qֱ����>��f��q�u�㰵����c��
�}g�8lm ��(k�qк�q�Y�>[��8�:�q��@��qֱ����>���}��@��qֱ����>���}�6��q�t��ag�pG9������8�:�q��@��qֱ����>���}�6�q�5�8h]����c��
�}g�8lm ��8���akqGY������8�:�q��@��qֱ����>���}�6�q�5�8h]����c��
�}'��q�Y8��qα����>��f��q�u�㰵����c��
�}g�8lm ��(k�qк�q�Y�>[��8�:�q��@��qֱ����>��f��q�u�㰵����c��
�}g�8lm ��(k�qк�i�I�}v�q�s�㰴����c��
�}e�>Z ��8���akq�Y�>[��8�:�q��@��1ֹ�C���8�:�q��@��qֱ����>���}�6�q�5�8h]����c��
�}g�8lm ��8���akiGI�>:G�8��"�q�5�����q�U��q�F��8/�/K�8���g��������/?��_~�����?���?��?��O��~�~����r{����x<�|�e����+�����ql����c㸴4ʄ��,g�F�ʒ�����(�X��pX
-��+A�8�+�2q%)�i�Q��$eḫ4�d��,G�B9�JP6��J�LPI��qNi��)IY8n)�2)%)�!�PΎ����(Q��p�P�((Ix
�~��O��pO
-�l'A�8.'�2�$)�٤Q��$eḙ4�$��,�B9{IP6�kI�L,I��q*i�)%IY8�$�2�$)Ǒ�P�F���B�(H��p�Ge�HR��H�LI��q)���e㨊4�=�$�
-�HcE$�a�CarH2�c���Ky�\p\BeBHR�3H�LI��qi�I IY8 �r���l׏F��������(S>��p�=e�GR��G���#(�ţQ&x$e�8w4�Ԏ�,��F�ԑ����Q�9��`X9߈�w
���S8��p�7e�FR��F��m#(�e�Q&l$e�8k4�T��,7�F������Q(g���q�h��IY8N�2%#)��Q&c$e�8b��0��q\0eFR��E�L�H��a�h�#]$�5�E�K���q�h���X8N�2�")ǽ�Q&W$e�8V��*��q\*eBER�3E�L�H��q�h�IIY8�r���l׉F�8����4�(S&��p�%e�DR�����K�x�\p\$e�DR�sD�L�H��a�h�#E$�5�CD!�"��Q&B$e�8A4���,��F�������P(g{��qyh�	IY8��2�!)�͡Q&9$e�88����q\ebCR�SC�LiH��qgh��IY8��r6��l�F�����ü�G]H�k��F������P(gW��qUh��
-IY8N
-�2E!)�=�Q&'$e�8&����q\eBBR�3B�LEH��qCh�IIY8�r���l׃F�x����t�(S��p�
e�AR��A��� (�Š1�`���0��0� ǭ�Q&$e�8��	��q\	e"AR�A�L!H��qh��IY8�o+/m�r�qh�	IY8��2U )�M�Q&	$e�8����q\eb@R�S@�L	H��qh���IY8���1
 � �k&��w��Un���{�m�������W���#o/t7������|�������_��������O?�˗���⷟�E�������|�ś�	û�2�w=�L��k�e�(m _&���L�
�˄�5�	���|����˄ɺ��2ae�e�hm _&���L�
�˄�5�	���|���^.�
-�˄�5�	���|����2a�6�/V�\&���e��:/&��˄�5�	���|����2a�6/V�Q���pܷ��I��9qW�4�hm W�ʚ��
��]YS����ܺ��ɺ�9wW���hm �ʚ��
��]YS����ܽ��ɺ�9}Wִ�hm ��ʚ��
��^YS��������ɺ�9�W�t�hm ��J:Rxt�cx�L
��ro�3�'��$^Y�ģ��\�+k�x�6��xeM��ro�3�'��<^Y�ǣ��\�+ky�6�#yeM%��r'o�3�'��T^Y�ʣ��\�+kry�6��yeM1��r3o�3�'��l^9�n��0,�p��h,��ʙz�
�~^X/=XW '�ʚ��
�^Y�ѣ���+kJz�6�[zc�1=Y ��ʚ��
�^Y�ԣ���+k�z�6��zc�a=Y ��ʚ��
�^Y�ף���+k
-{�6{#MdO��af����GeḴWΤ�(m ��ʚ��
���XgpO��ɽ���Gk��W�d�hm ��ʚ��
���Xg|O�������Gk��W�$�hm G�ʚ
-�
��Xg�O��)����Gk��W���hm �J:�|t�|�L�O��q�����Q�@.�5i>Z�q����Gk��7��ur���i���@���5�>Zȡ����Gk��7��ur�������@.��5�>Z�Ѿ���Gk���K���龲��Gk��W���hm �J:
-~t�~�?I g�ʚ��
�_Y�򣵁�+kj~�6�{~c�A?Y '�ʚ��
�_Y������+k�~�6��~c�q?Y ��ʚ��
��_Y������+k*�6�;c��?Y ��ʚ��
��_IG���q�)�Q�@n��uF�d]���+k��6��eM���r�������@���u��u���f��
��e��Z�C�ʚ%��6����u��u���f��
�E�e�$�Zȣ�ʚU��6�w�u�u�4���m�t���3��(m (k��@�0�9@��3ʚ���6���5Shm �(k���@���`�XW O(k6��@^
P�����<��Y@ky;�X�x�Y �(k���@^P�L���<"��Y@kqG�H3$@����q��5Ƙ��{�ϟ��_e���9������4'0y{������?������������v���y�<�ݕo}������pQ �;��,ޯ^��x�"P��ur�)���@.ޕ5�;Z�Ż��xGk�x�K���Ż��xGk�xW��hm �ʚ��
���Xg�N��Ż��xGk�xW��hm �J:�wt��w��;I �ʚ��
��]YS����\�+k�w�6��wc��;Y �ʚ��
��]YS����\�+k�w�6��wc��;Y �ʚ��
��]YS����\�+k�w�6��wc��;Y �ʚ��
��]IG���q�)�Q�@.ލu�d]�\�+k�w�6��weM��r�)���@.ލu�d]�\�+k�w�6��weM��r�)���@.ލu�d]�\�+k�w�6��weM��r�)���@.ލu�d]�T�+�^����Ż������]9S����\��x�
-��]YS����\�+k�w�6��weM��r�n��x'���]YS����\�+k�w�6��weM��r�n��x'���]YS����\�+k�w�6��weM��b�n�)���8,ޕr�,�ʙ��
��]YS����\��,�ɺ��xW��hm �ʚ��
��]YS����\��,�ɺ��xW��hm �ʚ��
��]YS����\��,�ɺ��xW��hm �ʚ��
��]IG���a�n�)�I�8.ޕ3�;J�Ż��xGk�xW��hm ��:�w�.@.ޕ5�;Z�Ż��xGk�xW��hm ��:�w�.@.ޕ5�;Z�Ż��xGk�xW��hm ��z)����xW��hm �ʚ��
��]IG���q�n��x'���]YS����\�+k�w�6��weM��r�n��x'���]YS����\�+k�w�6��weM��r�n��x'���]YS����\�+k�w�6��weM��r�n��x'���]YS����X�+�(��Y8.ޕ3�;J�Ż��❬��weM��r�)���@.ޕ5�;Z�Ż��❬��weM��r�)���@.ޕ5�;Z�Ż��❬��weM��r�)���@.ޕ5�;Z�Ż��❬�w%�;:�Żr�xGi�xW��hm ��:�w�.@.ޕ5�;Z�Ż��xGk�xW��hm ��z)����xW��hm �ʚ��
��]YS����\��,�ɺ��xW��hm �ʚ��
��]YS����X�i�wr6���\����x�z*ޏ_e)��\�?<����x�����(���?}�ߟ>�����_�}��]���������������v~:����+x�<t�z��������G/�u����֧�����ް6���rzy��Mʺ?{���������(��Y�.���1���P����X�����ʺ?{�����1�Y���
k?��lÝ��q��38��s������3�d���7�
<��ue��Z�s�:�>Ⱥ�y�CY3����܇�f��
�e��Z�s�z����
-�e��Z�sʚ��6��>�5shm �}�� ��e��Z�sʚ��6�>�t�}��p<�a�s��>�5shm �}(k�>��@��P��}���<�a�s��>�5shm �}(k�>��@��P��}���<�a�s��>�5shm �}(k�>��@��P��}���<�a�s��>�5shm �}(��@g�x�C93����܇�ι�.@��P��}���<�����@ky�CY3����܇�ι�.@��P��}���<�����@ky�CY3����܇�ι�.@��P��}���<�����@ky�CY3����܇�ι�.@��P�}���0��P�1�����܇rf��
�a��}�u�܇�f��
�e��Z�sʚ��6��>�u�}�u�܇�f��
�e��Z�sʚ��6��>�u�}�u�܇�f��
�e��Z�sʚ��6�>�4s�l�}(��@e�x�C93����܇�f��
�c�sd]�<�����@ky�CY3����܇�f��
�c�sd]�<�����@ky�CY3����܇�f��
�c�sd]�<�����@ky�CY3����܇���t�>�2s�l�}(g�>P�@��P��}���<�����@ky��X��Y �}(k�>��@��P��}���<�����@ky��X��Y �}(k�>��@��P��}���<�����@ky�CX/s`]�<�����@ky�CY3����܇���t��>�s�}�t�܇�f��
�e��Z�sʚ��6��>�u�}�u�܇�f��
�e��Z�sʚ��6��>�u�}�u�܇�f��
�e��Z�sʚ��6��>�u�}�u�܇�f��
Ĺ%s�,�}(g�>P�@��0�9�A��sʚ��6��>�5shm �}(k�>��@��0�9�A��sʚ��6��>�5shm �}(k�>��@��0�9�A��sʚ��6��>�5shm �}(k�>��@��0�9�A��sJ:�>�Y8��P��}���<�����@ky��X��Y �}(k�>��@��P��}���<�����@ky�CX/s`]�<�����@ky�CY3����܇�f��
�c�sd]�<�����@ky�CY3����܇�f��
Ĺ#��9�s�^!�>�5����{���ù��WY�>�x�����x��s㑷7zs��/���뗯���_����|���o���oS�h>��=�~��r��W�y�C������V���hm ��ʚ�
�ZY�C����C��ɺ���V���hm ��ʚ�
�ZIG���qm���&��ZY�C����C+kzh�6�{heM��rm���&��ZY�C����C+kzh�6�{heM��rm���&��ZY�C����C+kzh�6�{heM��rm���&��ZY�C����C+���Y83=4J�=������{heM��r�����@5=4Z�=������{heM��r�����@5=4Z�=������{heM��r�����@5=4Z�=������zh��{h4^ð�V��C��p�C+gzh�6�{ha���`]��C+kzh�6�{heM��r�����@u��d]��C+kzh�6�{heM��r�����@u��d]��C+kzh�6�{heM��r�����@졍4=49�=�R����Z9�C����C+kzh�6�{hc�=4Y ��ʚ�
�ZY�C����C+kzh�6�{hc�=4Y ��ʚ�
�ZY�C����C+kzh�6�{hc�=4Y ��ʚ�
�ZY�C����C+���Y8졍2=4)�=�r��Fi��V���hm ��ʚ�
��XgM��=����Fk��V���hm ��ʚ�
��XgM��=����Fk��V���hm ��ʚ�
�ZX/=4XW ��ʚ�
�ZY�C����C+���Y8s��$]��C+kzh�6�{heM��r�����@u��d]��C+kzh�6�{heM��r�����@u��d]��C+kzh�6�{heM��r�����@u��d]��C+kzh�6{h%=4:�=�r��Fi��6��C�ur�����@5=4Z�=����Fk��6��C�ur�����@5=4Z�=����Fk��6��C�ur�����@5=4Z�=����Fk��6��C�ub����FgḇV���(m ��ʚ�
��XgM��=����Fk��V���hm ��ʚ�
�ZX/=4XW ��ʚ�
�ZY�C����C+kzh�6�{hc�=4Y ��ʚ�
�ZY�C����C+kzh�6{h#MM��a�U���5F}����a}�*K}��n�WX�C�G���i�п����߿|�������F}��u��s�/u�>�ǃ��%f��1��Ǭ�_bV�6�cVeM̊�b̪�#fEg�8f5���tr̪��Y��@�Y�51+Z�1��&fEk9f5���ur̪��Y��@�Y�51+Z�1��&fEk9f5���ur̪��Y��@�Y�51+Z�1��&fEk9f5���ur̪��Y��@�Y�tĬ�,Ǭʙ��
��Xg�J��1��&fEk9fU�Ĭhm Ǭʚ��
��Xg�J��1��&fEk9fU�Ĭhm Ǭʚ��
��Xg�J��1��&fEk9fU�Ĭhm Ǭʚ��
��Xg�J�H1�r�1+�a�*�Y�X8�Y�31+J�1��^bV��@�Y�51+Z�1��&fEk9fU�Ĭhm Ǭ�:cV�.@�Y�51+Z�1��&fEk9fU�Ĭhm Ǭ�:cV�.@�Y�51+Z�1��&fEk9fU�Ĭhm ƬF�����ØU)G̊��q̪��YQ�@�Y�51+Z�1��Θ���cVeM̊�r̪��Y��@�Y�51+Z�1��Θ���cVeM̊�r̪��Y��@�Y�51+Z�1��Θ���cVeM̊�r̪��Y��@�Y�tĬ�,ƬF������U9�����*kbV�6�cVeM̊�r�j�3f%��UY�����*kbV�6�cVeM̊�r�j�3f%��UY�����*kbV�6�cVeM̊�r�*����+�cVeM̊�r̪��Y��@�Y�tĬ�,Ǭ�9cV�.@�Y�51+Z�1��&fEk9fU�Ĭhm Ǭ�:cV�.@�Y�51+Z�1��&fEk9fU�Ĭhm Ǭ�:cV�.@�Y�51+Z�1��&fEk9fU�Ĭhm Ǭ�:cV�.@�Y�51+Z�1�������U9������Yɺ�9fU�Ĭhm Ǭʚ��
�UY������Yɺ�9fU�Ĭhm Ǭʚ��
�UY������Yɺ�9fU�Ĭhm Ǭʚ��
�UY������Yɺ�1fU����p�*gbV�6�cVeM̊�r�j�3f%��UY�����*kbV�6�cVeM̊�r�*����+�cVeM̊�r̪��Y��@�Y�51+Z�1��Θ���cVeM̊�r̪��Y��@�Y�51+Z�1��&f%g�0f=1]̊�1b֫�����U���}��%=ݝ1f�����Y�՟����Ϗ?����~z�Z���/��������?}�����|�}�����׏/�~����}��>��ï��ï����Ww�)�3I�r�39�S޿�)(m �)�:��.@�S�5y
-Z�y��&OAk9OQ��)hm �)�:��.@�S�5y
-Z�y��&OAk9OQ��)hm �)�:��.@�S�5y
-Z�y��&OAk9OQ��)hm �)�:��.@�S�s�S�x
�<E	G����q����SP�@�S�����ur����S��@�S�5y
-Z�y��&OAk9O1֙��ur����S��@�S�5y
-Z�y��&OAk9O1֙��ur����S��@�S�5y
-Z�y��&OAk1O1��)�l�)J9�T���L���r����S��@�S�u�)d]���(k��6��eM���r����S��@�S�u�)d]���(k��6��eM���r����S��@�S�u�)d]���(k��6��eM���b���#OAg�0O1��)�l�)ʙ<�
�<EY�������(k��6��c�y
-Y �)ʚ<�
�<EY�������(k��6��c�y
-Y �)ʚ<�
�<EY�������(k��6��a��)`]���(k��6��eM���b���#OAg�8O1��tr����S��@�S�5y
-Z�y��&OAk9O1֙��ur����S��@�S�5y
-Z�y��&OAk9O1֙��ur����S��@�S�5y
-Z�y��&OAk9O1֙��ur����S��@�S�t�)�,�)ʙ<�
�<�Xg�B��y��&OAk9OQ��)hm �)ʚ<�
�<�Xg�B��y��&OAk9OQ��)hm �)ʚ<�
�<�Xg�B��y��&OAk9OQ��)hm �)ʚ<�
�<�Xg�B��y���<���<E9�������(k��6��c�y
-Y �)ʚ<�
�<EY�������(k��6��a��)`]���(k��6��eM���r����S��@�S�u�)d]���(k��6��eM���r����S��@�S�4y
-9�y
-&O��y��{P�r�*�]k�ׇ�;�)㉷�yq�����_���/{������`����]��ZoG�>�j�ϧ���4�jy���N�����zw��[|��ee��O���T�pʗ����ee�>V>�O���J9Ee�������ee��O���'��ee��/����T��QV�c����t��(*w�ܾ�/N�?���(�/���V��ee����N*�GYY���/��N�'QX����?��p���;Pn_�OR�?���(_�oV�˺?���}�|=��^ܷ��(*w��?=?K��(+w�|:�=��\�QV�@�}�ݷ��(+�q��i��?(e%�;Pn_��'��ee������)�GYY����?K��(+wps�~��Q�j`R6/V�q/0*��+����+��q���0��s0��+���Û��r\����5�J9nFe��`����l^�����_To�U�q�/*�W�*�����{�2����qx�R�;QY8��W)Dž��,^����_T��5�\�K���E�J9��Ee��_e�WTPx
�
%*h,�e�SH�8\OQ�1�����t�R��TwS�r̦��p8�b��L!e�p1E)�`
-*�s)J9�RPY8�JQ�1�����P�Qf'����#)�,N�(�XHAe�pE)�<
-*��(F�mR6�Q���0
-�P4��l�*
-�a����c���A��{(�\p����c���)�K(�,�(�AAe�p�(��B����R�T�O�r����p�}��c��������	)��'J9FOPY8�<Qʱx����މR��T��N�ql���`�t�|��	��a8s��c���Í�'�,�e�MH�8\7Q�1n���ᴉR�eTwM�r̚��p8jb��4!e�p�D)Ǡ	*�s&J9�LPY8�2Q�1e���ᐉQfDŽ����#&�,N�(�X0Ae�h�D��^�h����v	�
-��%J8�K�X8�-QʱZ����f�R��TK�2{%�l��(�+Ae�p�D)�R	*�;%J9fJPY8)1�l���q�P��c����y��$�,n�(�&Ae�p�D(�.	(��(�%Ae�p�D)�"	*G{$ʸϑ���c$F�-26�H�r���p8C��c����
�$�,�e�GH�8\Q�1>�����R��TwG�r̎��p8:b��!e�pqD)��*�s#J9�FPY8�Q�15����ЈQfg���Õ�##�,M�(�0��k�(�Ac�p\�(�-B��ᲈR�aTgE�r����p�)��cR���A�̞)�k"J9�DPY8�Qʱ$���ᎈR�TGD�2"�l.�(�Ae�p>D)�z*��!J9�CPY81�손�q����h
-�a8��c1��ý�s!�,��e�BH�8\
-Q�1����L�R��T7B�rL���p8"�s��A�r����p8
��c���]�� �,��e6AH�8\Q�1�����R�5T�@�rL���p4b�c�����# ��3W/q>�M���߶��r>=�_qd<��B�s�����˗� �7��_���m���;�<���Ǹz�が�/hm od�� ��e�NZ�Kʚ��6��2�5khm �e�� ���e�fZȫʚ��6��3�5�hm ngi�3��8��P��g���������@kyDCY����򎆱�!
�.@��P�li���������@kyPCY����򦆰^F5��yVCY����򲆲fZ�
�q
eͺZ���:6Ⱥ�ybCY�����ʆ�ff�
ġ
%K�,om�� ��
e��Zȋʚ�
�6�G7�5�hm �n�� ���
e��Z��ʚ�
�6�8�5hm op�� ��e�Z�Kʚ)�6��8�5khm �q�� ��Ie�&Z��J:f9�Y8�P�,s�����a�s�����9�5�hm /t(k&:��@�P֬t�����a�s�����:�5[hm �u(k�:��@�P�,v�����a�s����g;�5�hm /w(k�;��@�P֬w�����a�s����&<�s��@�5W<�p�x��p<䡜Y�@iy�CX/c`]�<硬��@ky�CY3��򨇲f��
�]c��d]�<�����@ky�CY3������f��
�c�#d]�<���@ky�CY3����؇�f��
Ľ#��9��J96?PY8^�P��~���<���Y�@ky��X��Y �(k�?��@^�Q�L����<��YAky�X�Y O�(k�@��@^Q�́���<��YAky�X�(Y ς(kvA��@^Q�L����8��c���}��@)�!ʙ��6�WB�53!hm �(k�B��@�
-1�9B��s!ʚ��6�C�5�!hm ��(kVC��@�
1�9B���!ʚ��6��C�5�!hm �(kD��@��ˈXW ψ(kvD��@^Q�L����8&��cM���=㜃"$]�<)���AkyUDY3+��򰈲fY�
�mc��"d]�</���AkyaDY31���Ȉ�fe�
�c�C#d]�<5���AkymDY37������fq�
��c��#d]�<;���AkqyDI��:��#ʙ��6��G�u��u���f��
�e�	Z�C$ʚ%�6��H�u���u���f��
�Ee�$	Zȣ$ʚU�6�wI�u��u�4��f��
�ue�<	Z�%ʚ��6�7J�u���u�L����t��J�3S%(m ��(k�J��@�+1�9XB�ȓ%ʚ��6�WK�5�%hm �(k�K��@�.��x	XW ϗ(k�K��@^0Q�L����<b��Y1Aky��X�	Y O�(k�L��@^3Q�̙���<h��Y4Akq��H3jB�����R��5���&W�A�&ǯ�L�������K�g�6�|�Oc�������~����}�������/߾���з������e��?|����ϟ����}���������u��o����
-~*�����V�_
-+�6�+eMa��ra��)���@.��uVd]�\X)k
-+�6+%�:Dž�r��Bi��2�YX�ura��)���@.��5�Zȅ����Bk��2�YX�ura��)���@.��5�Zȅ����Bk��2�YX�ura��)���@.��5�Zȅ����Bk��2�YX�uRa��{a��kVJ8
-+4�+�La��ra%���
-�+�+eMa��ra��)���@.��5�Zȅ���Š��+eMa��ra��)���@.��5�Zȅ���Š��+eMa��ra��)���@.��5�Z������"g㰰R�QX��p\X)g
-+�6�+eMa��rae���"���JYSX���\X)k
-+�6�+eMa��rae���"���JYSX���\X)k
-+�6�+eMa��rae���"���JYSX���\X)k
-+�6+%�:���Q��"e㸰R�V(m Vʚ�
-�
��JYSX���\X�,�Ⱥ���R�Vhm Vʚ�
-�
��JYSX���\X�,�Ⱥ���R�Vhm Vʚ�
-�
��JYSX���\X	륰�
-��JYSX���\X)k
-+�6+%�:Dž�q�Š��+eMa��ra��)���@.��5�Zȅ���Š��+eMa��ra��)���@.��5�Zȅ���Š��+eMa��ra��)���@.��5�Zȅ���Š��+eMa��ba����BgḰR�V(m V�:+�.@.��5�Zȅ����Bk��R�Vhm V�:+�.@.��5�Zȅ����Bk��R�Vhm V�:+�.@.��5�Zȅ����Bk��R�Vhm V�:+�.@,��tV�,Vʙ�
-�
��JYSX���\X�,�Ⱥ���R�Vhm Vʚ�
-�
��JYSX���\X	륰�
-��JYSX���\X)k
-+�6�+eMa��rae���"���JYSX���\X)k
-+�6�+eMa��bae�)���8,�� WX�k���g����U��ˣ�#kTX�G����{���y�S�������{�=���'��������?��o?���_��������7	�7� ��{8
-��{���S�W?��S��_Nݣ��|�^Ys��
�S��:Oݓu�{eͩ{�6�O�+kNݣ��|�^Ys��
�S��:Oݓuҩ{��Oݣ����p��Gc��Խr��=Jȧ��r��+�O�+kNݣ��|�^Ys��
�S�ʚS�hm ��7�yꞬ�O�+kNݣ��|�^Ys��
�S�ʚS�hm ��7�yꞬ�O�+kNݣ��|�^Ys��
�S�ʚS�hm ��7Ҝ�'g��ԽR�S��,��WΜ�Gi�Խ���=Zȧ�u��'��S�ʚS�hm ��W֜�Gk�Խ���=Zȧ�u��'��S�ʚS�hm ��W֜�Gk�Խ���=Zȧ�u��'��S�ʚS�hm ��W֜�Gk�Խ��S��,��7ʜ�'e��Խr��=Jȧ�5����@>u��9u���{c���ɺ��Խ���=Zȧ�5����@>u��9u���{c���ɺ��Խ���=Zȧ�5����@>u��9u���{a����
-�S�ʚS�hm ��W֜�Gk�Խ��S��,��7�yꞤ�O�+kNݣ��|�^Ys��
�S�ʚS�hm ��7�yꞬ�O�+kNݣ��|�^Ys��
�S�ʚS�hm ��7�yꞬ�O�+kNݣ��|�^Ys��
�S�ʚS�hm ��7�yꞬ�O�+kNݣ��x�^Iǩ{t�O�+gNݣ��|��X�{�.@>u��9u���{eͩ{�6�O�+kNݣ��|��X�{�.@>u��9u���{eͩ{�6�O�+kNݣ��|��X�{�.@>u��9u���{eͩ{�6�O�+kNݣ��|��X�{�.@<u����=:ǧ�3��Q�@>u��9u���{c���ɺ��Խ���=Zȧ�5����@>u��9u���{a����
-�S�ʚS�hm ��W֜�Gk�Խ���=Zȧ�u��'��S�ʚS�hm ��W֜�Gk�Խ���=Z���4����8<u|ܝ�����ރN�����ӧ��߿�l�#���������������+��]^i<�G���������~��_��:z=ݿ�b�[�wߏ�|�:�ϧ����^']�ϻO�|~8}z���E>���ް6���tzܞw����X_���}�����~l��>�iϲuX����_�)���
k�������u������c8[���
k?��o�ۿ�3��,[���������u����֧�Ë���ް6���rz}~�����~l}8���u<��x`�>�����7��;Pn���Y:�goHx`�>�kݟ�am�����3����Ƴl]���S����Ƴ7�
<�n��Z�goXx`�>�O���x����[��W�mn<��x`�?��X���
k�O��g�����
k�/��'�mn<{�����ۯ���u<��x`�>��mn<{�����1��o8���X����Z�goX���e��߆�G�ٸ����7���
i��g��Z�goXx`}9=�گ���
k?���Ow/��x����zz~�����X�NwO���x������cx��pƳ7�
�����}ΚgѺ���p�$���7�
<�n�ݳ���ް6���}gkݟ�am�����1|r���,[�������*���7�
<�>��/ֺ?{�������~��?z�Y���w����}�ɳ,]���3x�����X����NZ�goXx`�>��{iݟ�am�����c����,[��u���u������c8�o8���X��ᓵ��ް6���qs��Ϋ�ɺ��*re�U�hm _E�����
�ȕ5W����|��Ϋ�ɺ��*re�U�hm ^E���*rt��"W�\E���U��:�"'��ȕ5W����|���*r�6��"W�\E���U��:�"'��ȕ5�hhm ��)kF���@ES֌����<�f�s���Gє5�hhm ��)kF���@ES֌����<�f�s���FєsEC�5Gєp����p<���ECiyMX/�h`]�<���ECkyMY3����(��f
�
�Q4c��hd]�<���ECkyMY3����(��f
�
�Q4c��hd]�<���ECkyMY3����(��f
�
�Q4#�(9��hJ9F�PY8ESΌ����<���ECky�X�(Y ��)kF���@ES֌����<���ECky�X�(Y ��)kF���@ES֌����<���ECky�X�(Y ��)kF���@ES֌����8���c
���Q4��()ǣhʙQ4�6�Gє5�hhm ��)kF���@E3�9�F�ȣhʚQ4�6�Gє5�hhm ��)kF���@E3�9�F�ȣhʚQ4�6�Gє5�hhm ��)kF���@E��(XW ��)kF���@ES֌����8���c
���Q4㜣h$]�<���ECkyMY3����(��f
�
�Q4c��hd]�<���ECkyMY3����(��f
�
�Q4c��hd]�<���ECkyMY3����(��f
�
�Q4c��hd]�<���ECkqMI�(:ǣhʙQ4�6�Gьu���u�(��f
�
�Q4e�(ZȣhʚQ4�6�Gьu���u�(��f
�
�Q4e�(ZȣhʚQ4�6�Gьu���u�(��f
�
�Q4e�(ZȣhʚQ4�6�Gьu���u�(���Q4t�Gє3�h(m ��)kF���@E3�9�F�ȣhʚQ4�6�Gє5�hhm ��)kF���@E��(XW ��)kF���@ES֌����<���ECky�X�(Y ��)kF���@ES֌����<���ECkq�H3�F���(���E���hW�q>?����e���N�'E{x9��/��o���z������������/_���‰���y�endstream
-endobj
-1790 0 obj <<
-/Type /Page
-/Contents 1791 0 R
-/Resources 1789 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 1879 0 R
-/Annots [ 1793 0 R 1794 0 R 1795 0 R 1796 0 R 1797 0 R 1798 0 R 1799 0 R 1800 0 R 1801 0 R 1802 0 R 1803 0 R 1804 0 R 1805 0 R 1806 0 R 1807 0 R 1808 0 R 1809 0 R 1810 0 R 1811 0 R 1812 0 R 1813 0 R 1814 0 R 1815 0 R 1816 0 R 1817 0 R 1818 0 R 1819 0 R 1820 0 R 1821 0 R 1822 0 R 1823 0 R 1824 0 R 1825 0 R 1826 0 R 1827 0 R 1828 0 R 1829 0 R 1830 0 R 1831 0 R 1832 0 R 1833 0 R 1834 0 R 1835 0 R 1836 0 R 1837 0 R 1838 0 R 1839 0 R 1840 0 R 1841 0 R 1842 0 R 1843 0 R 1844 0 R 1845 0 R 1846 0 R 1847 0 R 1848 0 R 1849 0 R 1850 0 R 1851 0 R 1852 0 R 1853 0 R 1854 0 R 1855 0 R 1856 0 R 1857 0 R 1858 0 R 1859 0 R 1860 0 R 1861 0 R 1862 0 R 1863 0 R 1864 0 R 1865 0 R 1866 0 R 1867 0 R 1868 0 R 1869 0 R 1870 0 R 1871 0 R 1872 0 R 1873 0 R 1874 0 R 1875 0 R 1876 0 R 1877 0 R 1878 0 R ]
->> endobj
-1793 0 obj <<
+1817 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [119.552 706.187 259.307 715.098]
+/Rect [119.552 610.745 259.307 619.656]
 /Subtype /Link
 /A << /S /GoTo /D (template-formats) >>
 >> endobj
-1794 0 obj <<
+1818 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 706.187 537.983 715.098]
+/Rect [528.02 610.745 537.983 619.656]
 /Subtype /Link
 /A << /S /GoTo /D (template-formats) >>
 >> endobj
-1795 0 obj <<
+1819 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [119.552 693.235 226.34 702.147]
+/Rect [119.552 597.793 226.34 606.705]
 /Subtype /Link
 /A << /S /GoTo /D (template-specific) >>
 >> endobj
-1796 0 obj <<
+1820 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 693.235 537.983 702.147]
+/Rect [528.02 597.793 537.983 606.705]
 /Subtype /Link
 /A << /S /GoTo /D (template-specific) >>
 >> endobj
-1797 0 obj <<
+1821 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [119.552 680.284 351.988 689.195]
+/Rect [119.552 584.842 351.988 593.753]
 /Subtype /Link
 /A << /S /GoTo /D (template-http-accept) >>
 >> endobj
-1798 0 obj <<
+1822 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 680.284 537.983 689.195]
+/Rect [528.02 584.842 537.983 593.753]
 /Subtype /Link
 /A << /S /GoTo /D (template-http-accept) >>
 >> endobj
-1799 0 obj <<
+1823 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 667.333 256.138 676.244]
+/Rect [95.641 571.891 256.138 580.802]
 /Subtype /Link
 /A << /S /GoTo /D (cust-hooks) >>
 >> endobj
-1800 0 obj <<
+1824 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 667.333 537.983 676.244]
+/Rect [528.02 571.891 537.983 580.802]
 /Subtype /Link
 /A << /S /GoTo /D (cust-hooks) >>
 >> endobj
-1801 0 obj <<
+1825 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 654.381 261.398 663.293]
+/Rect [95.641 558.939 261.398 567.85]
 /Subtype /Link
 /A << /S /GoTo /D (cust-change-permissions) >>
 >> endobj
-1802 0 obj <<
+1826 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 654.381 537.983 663.293]
+/Rect [528.02 558.939 537.983 567.85]
 /Subtype /Link
 /A << /S /GoTo /D (cust-change-permissions) >>
 >> endobj
-1803 0 obj <<
+1827 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 641.43 286.315 650.341]
+/Rect [95.641 545.988 286.315 554.899]
 /Subtype /Link
 /A << /S /GoTo /D (integration) >>
 >> endobj
-1804 0 obj <<
+1828 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 641.43 537.983 650.341]
+/Rect [528.02 545.988 537.983 554.899]
 /Subtype /Link
 /A << /S /GoTo /D (integration) >>
 >> endobj
-1805 0 obj <<
+1829 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [119.552 630.536 172.134 637.39]
+/Rect [119.552 535.093 172.134 541.948]
 /Subtype /Link
 /A << /S /GoTo /D (bonsai) >>
 >> endobj
-1806 0 obj <<
+1830 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 630.536 537.983 637.39]
+/Rect [528.02 535.093 537.983 541.948]
 /Subtype /Link
 /A << /S /GoTo /D (bonsai) >>
 >> endobj
-1807 0 obj <<
+1831 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [119.552 617.584 163.835 624.438]
+/Rect [119.552 522.142 163.835 528.996]
 /Subtype /Link
 /A << /S /GoTo /D (cvs) >>
 >> endobj
-1808 0 obj <<
+1832 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 617.584 537.983 624.438]
+/Rect [528.02 522.142 537.983 528.996]
 /Subtype /Link
 /A << /S /GoTo /D (cvs) >>
 >> endobj
-1809 0 obj <<
+1833 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [119.552 604.633 201.733 611.487]
+/Rect [119.552 509.191 201.733 516.045]
 /Subtype /Link
 /A << /S /GoTo /D (scm) >>
 >> endobj
-1810 0 obj <<
+1834 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 604.633 537.983 611.487]
+/Rect [528.02 509.191 537.983 516.045]
 /Subtype /Link
 /A << /S /GoTo /D (scm) >>
 >> endobj
-1811 0 obj <<
+1835 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [119.552 591.681 188.991 598.535]
+/Rect [119.552 496.239 188.991 503.093]
 /Subtype /Link
 /A << /S /GoTo /D (svn) >>
 >> endobj
-1812 0 obj <<
+1836 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 591.681 537.983 598.535]
+/Rect [528.02 496.239 537.983 503.093]
 /Subtype /Link
 /A << /S /GoTo /D (svn) >>
 >> endobj
-1813 0 obj <<
+1837 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [119.552 578.73 234.52 585.584]
+/Rect [119.552 483.288 234.52 490.142]
 /Subtype /Link
 /A << /S /GoTo /D (tinderbox) >>
 >> endobj
-1814 0 obj <<
+1838 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 578.73 537.983 585.584]
+/Rect [528.02 483.288 537.983 490.142]
 /Subtype /Link
 /A << /S /GoTo /D (tinderbox) >>
 >> endobj
-1815 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [71.731 561.465 160.059 570.351]
-/Subtype /Link
-/A << /S /GoTo /D (faq) >>
->> endobj
-1816 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [528.02 561.465 537.983 570.351]
-/Subtype /Link
-/A << /S /GoTo /D (faq) >>
->> endobj
-1817 0 obj <<
+1839 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [71.731 546.122 152.746 555.009]
+/Rect [71.731 466.022 153.294 474.909]
 /Subtype /Link
 /A << /S /GoTo /D (troubleshooting) >>
 >> endobj
-1818 0 obj <<
+1840 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [523.039 546.122 537.983 555.009]
+/Rect [528.02 466.022 537.983 474.909]
 /Subtype /Link
 /A << /S /GoTo /D (troubleshooting) >>
 >> endobj
-1819 0 obj <<
+1841 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 532.702 177.534 539.557]
+/Rect [95.641 452.603 178.082 459.457]
 /Subtype /Link
 /A << /S /GoTo /D (general-advice) >>
 >> endobj
-1820 0 obj <<
+1842 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [523.039 532.702 537.983 539.557]
+/Rect [528.02 452.603 537.983 459.457]
 /Subtype /Link
 /A << /S /GoTo /D (general-advice) >>
 >> endobj
-1821 0 obj <<
+1843 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 517.694 326.523 526.605]
+/Rect [95.641 437.594 327.071 446.506]
 /Subtype /Link
 /A << /S /GoTo /D (trbl-testserver) >>
 >> endobj
-1822 0 obj <<
+1844 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [523.039 517.694 537.983 526.605]
+/Rect [528.02 437.594 537.983 446.506]
 /Subtype /Link
 /A << /S /GoTo /D (trbl-testserver) >>
 >> endobj
-1823 0 obj <<
+1845 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 505.46 400.057 513.654]
+/Rect [95.641 425.36 400.605 433.554]
 /Subtype /Link
 /A << /S /GoTo /D (trbl-perlmodule) >>
 >> endobj
-1824 0 obj <<
+1846 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [523.039 505.46 537.983 513.654]
+/Rect [528.02 425.36 537.983 433.554]
 /Subtype /Link
 /A << /S /GoTo /D (trbl-perlmodule) >>
 >> endobj
-1825 0 obj <<
+1847 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 491.791 244.133 500.702]
+/Rect [95.641 411.691 244.681 420.603]
 /Subtype /Link
 /A << /S /GoTo /D (trbl-dbdSponge) >>
 >> endobj
-1826 0 obj <<
+1848 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [523.039 491.791 537.983 500.702]
+/Rect [528.02 411.691 537.983 420.603]
 /Subtype /Link
 /A << /S /GoTo /D (trbl-dbdSponge) >>
 >> endobj
-1827 0 obj <<
+1849 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 478.839 244.81 487.751]
+/Rect [95.641 398.74 245.358 407.651]
 /Subtype /Link
 /A << /S /GoTo /D (paranoid-security) >>
 >> endobj
-1828 0 obj <<
+1850 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [523.039 478.839 537.983 487.751]
+/Rect [528.02 398.74 537.983 407.651]
 /Subtype /Link
 /A << /S /GoTo /D (paranoid-security) >>
 >> endobj
-1829 0 obj <<
+1851 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 465.888 304.407 474.799]
+/Rect [95.641 385.788 304.955 394.7]
 /Subtype /Link
 /A << /S /GoTo /D (trbl-relogin-everyone) >>
 >> endobj
-1830 0 obj <<
+1852 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [523.039 465.888 537.983 474.799]
+/Rect [528.02 385.788 537.983 394.7]
 /Subtype /Link
 /A << /S /GoTo /D (trbl-relogin-everyone) >>
 >> endobj
-1831 0 obj <<
+1853 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 452.937 312.018 461.848]
+/Rect [95.641 372.837 312.566 381.748]
 /Subtype /Link
 /A << /S /GoTo /D (trbl-relogin-some) >>
 >> endobj
-1832 0 obj <<
+1854 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [523.039 452.937 537.983 461.848]
+/Rect [528.02 372.837 537.983 381.748]
 /Subtype /Link
 /A << /S /GoTo /D (trbl-relogin-some) >>
 >> endobj
-1833 0 obj <<
+1855 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 439.985 343.151 448.897]
+/Rect [95.641 359.886 343.699 368.797]
 /Subtype /Link
 /A << /S /GoTo /D (trbl-index) >>
 >> endobj
-1834 0 obj <<
+1856 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [523.039 439.985 537.983 448.897]
+/Rect [528.02 359.886 537.983 368.797]
 /Subtype /Link
 /A << /S /GoTo /D (trbl-index) >>
 >> endobj
-1835 0 obj <<
+1857 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 427.034 484.091 435.945]
+/Rect [95.641 346.934 484.639 355.846]
 /Subtype /Link
 /A << /S /GoTo /D (trbl-passwd-encryption) >>
 >> endobj
-1836 0 obj <<
+1858 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [523.039 427.034 537.983 435.945]
+/Rect [528.02 346.934 537.983 355.846]
 /Subtype /Link
 /A << /S /GoTo /D (trbl-passwd-encryption) >>
 >> endobj
-1837 0 obj <<
+1859 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [71.731 413.729 117.668 420.712]
+/Rect [71.731 333.629 117.12 340.613]
 /Subtype /Link
 /A << /S /GoTo /D (patches) >>
 >> endobj
-1838 0 obj <<
+1860 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [523.039 413.729 537.983 420.712]
+/Rect [528.02 333.629 537.983 340.613]
 /Subtype /Link
 /A << /S /GoTo /D (patches) >>
 >> endobj
-1839 0 obj <<
+1861 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 398.406 241.901 405.26]
+/Rect [95.641 318.187 241.901 325.161]
 /Subtype /Link
 /A << /S /GoTo /D (cmdline) >>
 >> endobj
-1840 0 obj <<
+1862 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [523.039 398.406 537.983 405.26]
+/Rect [528.02 318.187 537.983 325.161]
 /Subtype /Link
 /A << /S /GoTo /D (cmdline) >>
 >> endobj
-1841 0 obj <<
+1863 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 383.397 292.402 392.309]
+/Rect [95.641 303.298 292.402 312.209]
 /Subtype /Link
 /A << /S /GoTo /D (cmdline-bugmail) >>
 >> endobj
-1842 0 obj <<
+1864 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [523.039 383.397 537.983 392.309]
+/Rect [528.02 303.298 537.983 312.209]
 /Subtype /Link
 /A << /S /GoTo /D (cmdline-bugmail) >>
 >> endobj
-1843 0 obj <<
+1865 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [71.731 370.092 238.135 377.076]
+/Rect [71.731 289.993 238.135 296.976]
 /Subtype /Link
 /A << /S /GoTo /D (install-perlmodules-manual) >>
 >> endobj
-1844 0 obj <<
+1866 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [523.039 370.092 537.983 377.076]
+/Rect [528.02 289.993 537.983 296.976]
 /Subtype /Link
 /A << /S /GoTo /D (install-perlmodules-manual) >>
 >> endobj
-1845 0 obj <<
+1867 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 354.77 162.331 361.624]
+/Rect [95.641 274.551 161.783 281.524]
 /Subtype /Link
 /A << /S /GoTo /D (modules-manual-instructions) >>
 >> endobj
-1846 0 obj <<
+1868 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [523.039 354.77 537.983 361.624]
+/Rect [528.02 274.551 537.983 281.524]
 /Subtype /Link
 /A << /S /GoTo /D (modules-manual-instructions) >>
 >> endobj
-1847 0 obj <<
+1869 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 341.818 198.326 348.672]
+/Rect [95.641 261.599 197.778 268.573]
 /Subtype /Link
 /A << /S /GoTo /D (modules-manual-download) >>
 >> endobj
-1848 0 obj <<
+1870 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [523.039 341.818 537.983 348.672]
+/Rect [528.02 261.599 537.983 268.573]
 /Subtype /Link
 /A << /S /GoTo /D (modules-manual-download) >>
 >> endobj
-1849 0 obj <<
+1871 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 326.81 187.516 335.721]
+/Rect [95.641 246.71 186.968 255.621]
 /Subtype /Link
 /A << /S /GoTo /D (modules-manual-optional) >>
 >> endobj
-1850 0 obj <<
+1872 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [523.039 326.81 537.983 335.721]
+/Rect [528.02 246.71 537.983 255.621]
 /Subtype /Link
 /A << /S /GoTo /D (modules-manual-optional) >>
 >> endobj
-1851 0 obj <<
+1873 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [71.731 313.504 229.548 320.488]
+/Rect [71.731 233.405 230.096 240.389]
 /Subtype /Link
 /A << /S /GoTo /D (gfdl) >>
 >> endobj
-1852 0 obj <<
+1874 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [523.039 313.504 537.983 320.488]
+/Rect [528.02 233.405 537.983 240.389]
 /Subtype /Link
 /A << /S /GoTo /D (gfdl) >>
 >> endobj
-1853 0 obj <<
+1875 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 298.062 143.232 305.036]
+/Rect [95.641 217.963 143.232 224.936]
 /Subtype /Link
 /A << /S /GoTo /D (gfdl-0) >>
 >> endobj
-1854 0 obj <<
+1876 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [523.039 298.062 537.983 305.036]
+/Rect [528.02 217.963 537.983 224.936]
 /Subtype /Link
 /A << /S /GoTo /D (gfdl-0) >>
 >> endobj
-1855 0 obj <<
+1877 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 283.173 217.961 292.085]
+/Rect [95.641 203.074 217.961 211.985]
 /Subtype /Link
 /A << /S /GoTo /D (gfdl-1) >>
 >> endobj
-1856 0 obj <<
+1878 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [523.039 283.173 537.983 292.085]
+/Rect [528.02 203.074 537.983 211.985]
 /Subtype /Link
 /A << /S /GoTo /D (gfdl-1) >>
 >> endobj
-1857 0 obj <<
+1879 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 270.222 178.839 279.133]
+/Rect [95.641 190.122 178.839 199.034]
 /Subtype /Link
 /A << /S /GoTo /D (gfdl-2) >>
 >> endobj
-1858 0 obj <<
+1880 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [523.039 270.222 537.983 279.133]
+/Rect [528.02 190.122 537.983 199.034]
 /Subtype /Link
 /A << /S /GoTo /D (gfdl-2) >>
 >> endobj
-1859 0 obj <<
+1881 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 257.27 187.426 266.182]
+/Rect [95.641 177.171 187.426 186.082]
 /Subtype /Link
 /A << /S /GoTo /D (gfdl-3) >>
 >> endobj
-1860 0 obj <<
+1882 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [523.039 257.27 537.983 266.182]
+/Rect [528.02 177.171 537.983 186.082]
 /Subtype /Link
 /A << /S /GoTo /D (gfdl-3) >>
 >> endobj
-1861 0 obj <<
+1883 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 246.376 160.956 253.23]
+/Rect [95.641 166.157 160.956 173.131]
 /Subtype /Link
 /A << /S /GoTo /D (gfdl-4) >>
 >> endobj
-1862 0 obj <<
+1884 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [523.039 246.376 537.983 253.23]
+/Rect [528.02 166.157 537.983 173.131]
 /Subtype /Link
 /A << /S /GoTo /D (gfdl-4) >>
 >> endobj
-1863 0 obj <<
+1885 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 231.368 198.315 240.279]
+/Rect [95.641 151.268 198.315 160.179]
 /Subtype /Link
 /A << /S /GoTo /D (gfdl-5) >>
 >> endobj
-1864 0 obj <<
+1886 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [523.039 231.368 537.983 240.279]
+/Rect [528.02 151.268 537.983 160.179]
 /Subtype /Link
 /A << /S /GoTo /D (gfdl-5) >>
 >> endobj
-1865 0 obj <<
+1887 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 220.473 209.653 227.327]
+/Rect [95.641 140.254 209.653 147.228]
 /Subtype /Link
 /A << /S /GoTo /D (gfdl-6) >>
 >> endobj
-1866 0 obj <<
+1888 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [523.039 220.473 537.983 227.327]
+/Rect [528.02 140.254 537.983 147.228]
 /Subtype /Link
 /A << /S /GoTo /D (gfdl-6) >>
 >> endobj
-1867 0 obj <<
+1889 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 205.465 255.401 214.376]
+/Rect [95.641 125.365 255.401 134.276]
 /Subtype /Link
 /A << /S /GoTo /D (gfdl-7) >>
 >> endobj
-1868 0 obj <<
+1890 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [523.039 205.465 537.983 214.376]
+/Rect [528.02 125.365 537.983 134.276]
 /Subtype /Link
 /A << /S /GoTo /D (gfdl-7) >>
 >> endobj
-1869 0 obj <<
+1891 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 194.571 150.635 201.425]
+/Rect [95.641 114.471 150.635 121.325]
 /Subtype /Link
 /A << /S /GoTo /D (gfdl-8) >>
 >> endobj
-1870 0 obj <<
+1892 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [523.039 194.571 537.983 201.425]
+/Rect [523.039 114.471 537.983 121.325]
 /Subtype /Link
 /A << /S /GoTo /D (gfdl-8) >>
 >> endobj
-1871 0 obj <<
+1893 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 181.499 154.161 188.473]
+/Rect [95.641 101.4 154.161 108.374]
 /Subtype /Link
 /A << /S /GoTo /D (gfdl-9) >>
 >> endobj
-1872 0 obj <<
+1894 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [523.039 181.499 537.983 188.473]
+/Rect [523.039 101.4 537.983 108.374]
 /Subtype /Link
 /A << /S /GoTo /D (gfdl-9) >>
 >> endobj
-1873 0 obj <<
+1802 0 obj <<
+/D [1800 0 R /XYZ 71.731 729.265 null]
+>> endobj
+1799 0 obj <<
+/Font << /F27 1224 0 R /F32 1231 0 R /F35 1589 0 R /F33 1322 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1944 0 obj <<
+/Length 4450      
+/Filter /FlateDecode
+>>
+stream
+xڍ�ˎ���Ṟ���@��3
;2
+429[�e9�ۧ�k��(�_H�6��f٢.�l�OC�����i��7�-M����Oo������˶�i���/~���Li^���Ӑn�x9s[Ӷ�o��ȳ���?���w��tK�m~���S�ԑ����qH��O������~��c���>��ַ�}�����_������������_?������/����_�����Z�9��W��r�tk㫝�1
����:����o.d��z�Wr��َ��
uK��e��j`C=Һ�Zf;�^�k>���1��)���cX\��vT
l��}�� �̣i�������`2՘e��P�����َ��
5���e��j`C=�r�M��vT
�V���8��c��S`C�Ӳ�j����P�<��j����P�1����َ���ꑏa1՘e��P�1��c.f;�6�|����َ��
5��e��j�z��0����e��P�1���dG|kxk:�/�e�#J\��?x�����x��Ð��{��YTρ
uN��e��j`Cͧ�ΦZf;�6��Zf:�^���P�l�1��)���c�VS-�Uj>�q3�2�Q5���\��vT
�V��������������T�lG�����}w�2�Q5��i�n�Zf;�^�s>�_�2ʦ�5�|��e�CJ\�����Yf;�6�|�����َ���꒏`2՘e��P�)��3.f;�6�|�C�َ��
�H��U�lG��ku�v����,����:���	"f;�6�5m���َ��
5�j>�b��jൺ�cX̧M̲z
+l��fW-�Uj>��|��lG�������	��vL��&�|��2�q
2���e��j`C]�z3on�vT
l�GW-�U��cH�n>�b��S`C�Ӱ�O�����P�1��Zf;�6�|����َ����-�l�1��)���c��g\�vT
l��F��Uj>��U�lG��Ku��ܼg\�E��P�t3���vT
l�kZvW-�U��?�ю)q����|��YFO�
5���e��j`C�g�L�Zf;�6�|
+�l�e��j�:�c�L5fY=6�|�b�e��j`C��0��Zf;�6�=7W-�U��yH��=��,����:�ì��َ��
uM��e��j`C�ǰ������x�.���I�e��P�1̮Zf;�6�|�OMe�cJ\��g`�N�l��ku�g0�j̲z
+l����I����P�4���:�Q5���i?\��vT
�V�!Mf��βz
+l�S���I����P�1��Zf;�6�|f���vT
�V�|f��βz
+l��&W-�Uj>�vRg;�6�|f���vT
�V�!�7S�YVO�
uJ����vL�k�k��I����P����Zf;�^��|f��βz
+l����I����P�1,�Zf;�6�|f���vT
�T�!���u�s`C��0�j����P�1��:�Q5���i5����vT
�V�!
�&�,����:��,��َ��
uM��e��j`C��`~`��vT
�V�|�8e�M�k�����,��Z�9
����!�<��͕���߮���'�^��r�OXm�;�m�OXՑ�+����S�/>>��|����o?OU>L��?~��|���_ߍo������?}���/������zz���\MK�W�uO_Yz�Қ���i��Y�@l�{j��Y�@l�[jmݣz
+�ֽ�F�U
�ֽ�F�U
�ֽ�F�U
�ֽ���=��@h�{�K���0j�{`iݳ(qغ��h�3��غw�{��s ��=5Z��j ��=5Z��j ��=5Z��j ��-���Q=b��S�uϪb��S�uϪb��S�uϪb��Rk��S ��=5Z��j ��=5Z��j ��=5Z��j ��-4Z�hj��=��8l�{f���@l�{j��Y�@l�[jmݣz
+�ֽ�F�U
�ֽ�F�U
�ֽ�F�U
�ֽ���=��@l�{j��Y�@l�{j��Y�@l�{j��Y�@l�[jmݣz
+�ֽ�F�U
�ֽ�F�U
�ֽ���=�G�{���=���{ό�=���{O��=���{O��=���{K��{TO�غ��hݳ��غ��hݳ��غ��hݳ��غ��ںG���{O��=���{O��=���{O��=���{G���I=b��S�uϪb��S�uϪR��CK�M��ֽe��=��@l�{j��Y�@l�{j��Y�@l�{j��Y�@l�[jmݣz
+�ֽ�F�U
�ֽ�F�U
�ֽ�F�U
�ֽ���=��@l�{j��Y�@l�{j��Y�@l�{j��Y�@l�[jmݣz
+�ֽ�F�U
�ֽ���=���{ό�=���{K��{TO�غ��hݳ��غ��hݳ��غ��hݳ��غ��ںG���{O��=���{O��=���{O��=���{K��{TO�غ��hݳ��غ��hݳ��غ��hݳ��غ��ںG�H�{-�{6%[���{F5[���{V5[��Z[����u�ѺgU�u�ѺgU�u�ѺgU�u���=��@l�{j��Y�@l�{j��Y�@l�{j��Y�@l�[jmݣz
+�ֽ�F�U
�ֽ�F�U
�ֽ�F�U
�ֽ�F�M���=���=_Fz�h�å��o=y���}5�Ny�/_}��yz�����������|��/��/jni~���=��M/]���3�cZ_���}-u��b�9�q\ҰOWqA�Q&%�Ani��YF���y�?�xdeR��)���#cI�k���?�
�C�Q&%�A����oYF����o�h�e�I��&�|���� cI�k�s�=���C�Q&%�Ani9L��2)q
�H���e�I��&�1-�G�(�� �����-�>�5�|����(�� �_L��2)q�����=�bI�k���Oޓ+F����o�h�e�I�k���ޓ+F���kr�/̼'W�"�q
rN�a�e�I�k�[�w�'�eR�䑎�{r�(�wM�_ϫG�(�� ��_�'W�2)q
2���{��(�� �͟L��2)q��o��Sl�DP�^����Q%�A�;?�deR����y[�(�wM��4�c$F�Ը9�}7�2ʤ�5��{��{r�(�� ��_��H�2)qן]��_,��y�k���ϛG�Q&%�A�?�YF����o�h�e�I��&�|���UG�Ը9��v��2ʤ�5�-��I�Q&%�Ai3���$��a��4�q�#uE�k���o&YF������:ydeR�d����e�I��&�|�g��Q$5�A�?-YF����o��=Fb�I�k���&YF���ƫ�˻����H��7}[d��I���|[d��I��w|[d��I��|;d}�7��o���x�7�G�����fo�����FQ���Y��M����-2^荤���-2�捤�Ỽ-2^卤�ዼ��ǛH�÷x[d]'F���21���Ĉ�8�$�u���k��EH��bYW�)q�@�!��0"%���9d]F����0��oR�ho���a�=D��0G��a�=���0��H�8^�'_����S�
+sȺ*�H��EaY��)q�%�!�0"%�W��}C������#R�x9�C��`DJosȺ�H��`y�
+���N0��+���8^�u�����.#R�p�!�M`�J�s�XF�c/s���D��
`Y�)q��� �ۿ��8���u��Nj����"R�x�C֥_DJ��2���/ 5��}9d]�E���/������8���u���k���H��_YW|)q���!�~/"%�{9b,�"�1W{^�����^/�k�H�8^��u�����.�"R�x��A޷y�q���!�*/"%�y9d��E���/��K���8^�e��
^@j��rȺ��H���]Yww)q���!��."%��v��׭]m��;����"R�xa�C�}]DJn�r�X�E�c��2���.5��t9d]�E���.��;���8���uA����H���\YWs)q���!�^."%��r9d]�E���J.��o�R�x�C�u\DJ/�rȺ��H��M\Yq)q��� �[���8���u���1�o��۷�.�"Q�x��A�7o�q�w�!��-"%��n9dݹE����-�����8^�e��m[@j��rȺj�H��E[Y�l)q�e�!�-"%�Wl�}��������"R�x��C��ZDJo�rȺX�H��Zyߪ���N-G��Z>��B-���H�8ަ�u��ǫ��IH��=ZY�h)q�D�!�-"%�7h9d]�E�����>��=�M��xw�C��YDJ/�rȺ7�H��YY�f)q�2� ����8ޗ�u]��˲���"R�xS�C�EYDJ��2ĺ%@	�Y�Pފ,��ؐ�z�05d5��u?�6��s3.�Z�t���͏��+���������ӧ��&U����R�endstream
+endobj
+1943 0 obj <<
+/Type /Page
+/Contents 1944 0 R
+/Resources 1942 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 1895 0 R
+/Annots [ 1946 0 R 1947 0 R 1948 0 R 1949 0 R 1950 0 R 1951 0 R ]
+>> endobj
+1946 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 168.668 239.291 175.522]
+/Rect [95.641 708.244 239.291 715.098]
 /Subtype /Link
 /A << /S /GoTo /D (gfdl-10) >>
 >> endobj
-1874 0 obj <<
+1947 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [523.039 168.668 537.983 175.522]
+/Rect [523.039 708.244 537.983 715.098]
 /Subtype /Link
 /A << /S /GoTo /D (gfdl-10) >>
 >> endobj
-1875 0 obj <<
+1948 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [95.641 153.659 271.65 162.57]
+/Rect [95.641 693.235 271.65 702.147]
 /Subtype /Link
 /A << /S /GoTo /D (gfdl-howto) >>
 >> endobj
-1876 0 obj <<
+1949 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [523.039 153.659 537.983 162.57]
+/Rect [523.039 693.235 537.983 702.147]
 /Subtype /Link
 /A << /S /GoTo /D (gfdl-howto) >>
 >> endobj
-1877 0 obj <<
+1950 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [71.731 138.451 109.369 147.337]
+/Rect [71.731 678.027 109.369 686.914]
 /Subtype /Link
 /A << /S /GoTo /D (glossary) >>
 >> endobj
-1878 0 obj <<
+1951 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [523.039 138.451 537.983 147.337]
+/Rect [523.039 678.027 537.983 686.914]
 /Subtype /Link
 /A << /S /GoTo /D (glossary) >>
 >> endobj
-1792 0 obj <<
-/D [1790 0 R /XYZ 71.731 729.265 null]
+1945 0 obj <<
+/D [1943 0 R /XYZ 71.731 729.265 null]
 >> endobj
-1789 0 obj <<
-/Font << /F27 1208 0 R /F32 1215 0 R /F35 1569 0 R /F33 1306 0 R >>
+1942 0 obj <<
+/Font << /F27 1224 0 R /F32 1231 0 R /F33 1322 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-1925 0 obj <<
-/Length 6808      
+1957 0 obj <<
+/Length 6823      
 /Filter /FlateDecode
 >>
 stream
-xڭ�MsGz��>�䁽�2=/G+�u�c�������)�R� �]zP�4&]�ʍp��(��#R���fL��nN�pZ�7�e�����_o>�?�?L��p<�:�������4\��͇����w����y�����O�2.üo~������ӷ�����ç����?�{z�_?��?����=�.�e�}��ɇ���N7�;���K��痰~��D�cz1��>���w���.�˫J���o~����|��{?����~��8�t��:����K9��0V�2����޾�%}�ǽ���ێ��
5�e>�j����P��ir�|�Q5p_��cϞZnY��2/SͷU�q�ή�o;�6��pt���vL��'�i�N�g�[F�������U�mG�����A�Q�S�mG������a1�|�Q5p_]�cXL�ܲZ6��惩�ێ��
5=�i5�|�Q5����0�j������a��os��*��.�z6�p�mG���zƓ��ێ��
�<���嶣jྺ�ǰ�o8��*����pp�|�Q5����`� �O;��5���
��vP
�W��̦ZnY�jz��6Wn;�6��FWͷU�y8\̷�r�Q5p_=��'�����-�U`C]���U�mG�����{�m��vT
l��1���\�������c8�j�e�
-l��1,��\����P�c�ͷ�r�Q5����0�j�����^�cͷ�r�j�P�c0��ˎx�����)k>�� ��r6���m��]u��|��j��:��.�rt�|�Q5�����.��o;�6��SͷU��)=��T�-�U`CM�a^M5�vT
l��1LGSͷUjz���ێ����<�����V�
uһ���ێ��
uN'WͷU�y��SͷU��%=��L��M�k������)q
2=��d����j`CM`1�m�mG��}���/kL�ܲZ6��&�=��vT
l��1���U�y�.��o;���8���7��*��.����Qn;�6�u8]5�vT
l��1��{\������c8��6��*���ǰ�j����P�c����r�Q5����`���O;��퓧����|ʤ�5���F�̷T�:��/n����P��xv�|�Q5p_=��z2���-�U`C]��h�۔ێ��
5=��U�mG������|�+�U��Kz���[V�����l�Ǖێ��
umu}v�|�Q5����0�j������q8\����E�l��p1
/n;�6�u8�\5�vT
l����E�r�1%n���30�Z��*���g��j����P�38̦�o;�6����I�vT
�W��fS-��V�
5=��`����j`CM�����mG���z�WͷU��e���6��V�
u�f�$n;�6�uX���o;�6��V�m��vT
�W�1����e�
-l��1,��o;�6�����iǔ����Y;�����ꚞ�d���*���g`�Nⶣj`C]�٬��mG���zNgWͷU���8�f�$nY��<���I�vT
l��1���o;�6����I�vT
�WO�1����e�
-l��1̮�o;�6����I�vT
l��1����������a2q�j�P���/�S��:Lf�$n;�6��p<�j�����^�30�'q�j�P�S0�'q�Q5����pp�|�Q5����`�Oⶣj஺��1��B;nQ�jz���ێ��
5=�|�U�iX�_g�ێ����4�9��[V���:�Y>�ێ��
uƣ��ێ��
5=s0�U��9=�o�|ʦ�5��&�r�!%�A�`�%ⶃj`CM`�|�:%~�%��*{>��ܕ��q߼�2���6��L����yص?��/��������2x�z�܀����p�6���t�������w��R�������?����y^�O����<������G����������O㻇�?��������_͜���К�o�J���՗ڮ��}!P�'�
-䊿�F�U
䊿�F�U
䊿�F�U
䊿�nR�@��[f���x�,%�+��D5�+���Z��䊿�F�U
䊿�F�U
䊿�F�U
䊿�nR�@��[jT�Q�@��[jT�Q�@��[jT�Q�@��;�V�'�
-䊿�F�U
䊿�F�U
䊿�F�U
Ċ��FşL�Ê�E��?��ˌ�?��K��?��G�*��V�\�Ԩ����\�Ԩ����\�Ԩ����\�wԭ�Oj�K��?��K��?��K��?��G�*��V�\�Ԩ����\�Ԩ����X��R�GS���Q�'R��o�Q�GT��o�Q�GU��o�Q�GU���[ş�*�+��T5�+��T5�+��T5�+���U�I���o�Q�GU��o�Q�GU��o�Q�GU��o��P�@��[jT�Q�@��[jT�Q�@��[h���)q\�w̭�Oh�K��?��K��?��K��?��G�*��V�\�Ԩ����\�Ԩ����\�Ԩ����\�wԭ�Oj�K��?��K��?��K��?��G�*��V�\�Ԩ����X��R�GS��o�Q�GT���[ş�*�+��T5�+��T5�+��T5�+���U�I���o�Q�GU��o�Q�GU��o�Q�GU���[ş�*�+��T5�+��T5�+��T5�+���U�I���o��⏦�q��2�⏨r��R�⏪r��Q��?�U W�-5*��j W�-5*��j W�-5*��j W�
���j�K��?��K��?��K��?��G�*��V�\�Ԩ����\�Ԩ����\�Ԩ����X�wШ���qX��R�GR��o�Q�GT��߮�[|���2ֵY�r}|܇�K�X��a9-X�/'��?����?���K���~z����˧������j��|����\����O��c�l�}�|U��_\}Y�Ͽx�B��/H���/,5>�U
�Ͽ����T5�?��R��/P�@��G�>���*�?��R��/P�@��K�Ͽ@U��/,5�1�j �cuǐZ�8�Rc���8�Rc���8�Rc���8�Q�q�U �c,3�cP��q��q���ˌq���C}ǀZ�8�Rc���8�Rc���8�Rc���8�Q�q�U �c,5�1�j �c,5�1�j �c,5�1�j �cuǐZ�8�Rc���8�Rc���8�Rc���8�AcC���8�"�8I��q�e�8Q
�q���8U
�q��n�R�@�Xj�cP�@�Xj�cP�@�Xj�cP�@�8�6�!�
-�q���8U
�q���8U
�q���8U
�q��n�R�@�Xj�cP�@�Xj�cP�@�XhǠ)q8�q���q<���� ��<���Ǡ��<���Ǡ��<�q�mCj��K�q���K�q���K�q���G��1�V�<���Ǡ��<���Ǡ��<���Ǡ��<�1��q�u �c,5�1�j �c,5�1�j �c,��cД8�8�6�!�
+xڭ�M�\�y��>�,���K�~Yڈ p�aVIcyH
Lq�����a�s�Oͭ���G�ף+�%��t7��Mw�i8-��2����_~�>���?L��p<�:�����w�r.����M����?���<��r��æ��0/ǻ���7z|����|:�y�������o_���������Q����2\��W������ɯ�t�~�ܼ�8yy	�iH�:���᧷���o?}z�?��U�o��7���?}��z;����~��8�t��:����S9��0V�2����^��%}�ǽ���ێ��
5��2�L5�vT
l���4�j�����N�1�gO-��V�
u�����ێ��
�8LgWͷU�y8����vL��'�i�N�g�[F�������U�mG�����A�Y�S�mG������a1�|�Q5p_]�cXL�ܲZ6��惩�ێ��
5=�i5�|�Q5����0�j������a��os��*��.�z6�p�mG���zƓ��ێ��
�<����嶣jྺ�ǰ�o8��*����pp�|�Q5����`�$�O;��5���
��vP
�W��̦ZnY�jz��6Wn;�6��FWͷU�y8\̷�r�Q5p_=��_�Ϳ��-�U`C]���U�mG�����{�m��vT
l��1���\�������c8�j�e�
+l��1,��\����P�c�ͷ�r�Q5����0�j�����^�cͷ�r�j�P�c0͗ˎx�����W�|�%�A���l��������2������-�u`C]������j`CMOa]L5�vT
l��1��o;��Sz���[V����ü�j����P�c����o;�6��FWͷU��yN�
.nY��2�wSͷU�:�N��o;�6��0/��o;��Kz�_L��M�k������)q
2=��d����j`CM`1�m�mG��}���kL�ܲZ6��&�=��vT
l��1���U�y�.��o;���8���7��*��.���Qn;�6�u8]5�vT
l��1��{\������c8��6��*���ǰ�j����P�c����r�Q5����`���O;��퓧����|ʤ�5���F�̷T�:��On����P��xv�|�Q5p_=��z2���-�U`C]��h�۔ێ��
5=��U�mG������|�+�U��Kz���[V�����l�Ǖێ��
umu}v�|�Q5����0�j������q8\����E�l��p1
/n;�6�u8�\5�vT
l����E�r�1%n���30�Z��*���g��j����P�38̦�o;�6����I�vT
�W��fS-��V�
5=��`����j`CM�����mG���z�WͷU��e���6��V�
u�f�$n;�6�uX���o;�6��V�m��vT
�W�1����e�
+l��1,��o;�6��̟��iǔ����Y;�����ꚞ�d���*���g`�Nⶣj`C]�٬��mG���zNgWͷU���8�f�$nY��<���I�vT
l��1���o;�6����I�vT
�WO�1����e�
+l��1̮�o;�6����I�vT
l��1����������a2q�j�P����O;��5�u���I�vP
l���xr�|�Q5p_��g`�O��*����`�Oⶣj`CM������j`CM��,��mG��]u�c0��vܢZ6��&WͷUjzf�$n;�6�Ӱ����U��iFs0��V�
uV�|�U�:�GWͷUjz�`"n;��sz��8��M�k��L��i�����������
5=����uJ��K�U�|z�rWnn_�q|�:ʼ�������3?��a��������S{>�e>��z�܀����p�6�~~��������_.C��ۿ�۟�w�k��/Oo�7O_�w�����L���eH~���?o���ӗ���������_͜���К�o�J���͗ڮ��~!P�'�
+䊿�F�U
䊿�F�U
䊿�F�U
䊿�nR�@��[f���x�,%�+��D5�+��z���Zr��R�⏪r��R�⏪r��R�⏪r��Q��?�U W�-5*��j W�-5*��j W�-5*��j W�u���Zr��R�⏪r��R�⏪r��R�⏪b��A��O��a��"K�I�㊿eF�Q
䊿�F�U
䊿�nR�@��[jT�Q�@��[jT�Q�@��[jT�Q�@��;�V�'�
+䊿�F�U
䊿�F�U
䊿�F�U
䊿�nR�@��[jT�Q�@��[jT�Q�@��[h���)qX�wȨ��q\�̨�#��\�Ԩ����\�Ԩ����\�wԭ�Oj�K��?��K��?��K��?��G�*��V�\�Ԩ����\�Ԩ����\�Ԩ����\�7�k��:�+��T5�+��T5+�Z*�hJW�s��Zr��R�⏪r��R�⏪r��R�⏪r��Q��?�U W�-5*��j W�-5*��j W�-5*��j W�u���Zr��R�⏪r��R�⏪r��R�⏪r��Q��?�U W�-5*��j V�-�T�є8��[fT��@��;�V�'�
+䊿�F�U
䊿�F�U
䊿�F�U
䊿�nR�@��[jT�Q�@��[jT�Q�@��[jT�Q�@��;�V�'�
+䊿�F�U
䊿�F�U
䊿�F�U
䊿�nR�@��[h���)q\�̨�#��\�Ԩ����\�wԭ�Oj�K��?��K��?��K��?��C�V�A���o�Q�GU��o�Q�GU��o�Q�GU���[ş�*�+��T5�+��T5�+��T5+�25+�Y*�HJW�-3*��j W��5p�⏯#W�o^ƺ6+�P��π{W~)��4,���$��R������?����No>?}��im�<}{���;��q9�w7��~�S����*�o�_���7_V��/^���R�@��K�Ͽ@U��/,5>�U
�Ͽ����T5�?��Q�Ͽ �
+�Ͽ����T5�?��R��/P�@��K�q���G��1�V�<���Ǡ��<���Ǡ��<���Ǡ��<�q�mCjH����o�pc�e����8�2c���8�P��P�@�Xj�cP�@�Xj�cP�@�Xj�cP�@�8�6�!�
+�q���8U
�q���8U
�q���8U
�q��n�R�@�Xj�cP�@�Xj�cP�@�Xj�cP�@�8h�c��8�Xd� )q<���� ��<���Ǡ��<�q�mCj��K�q���K�q���K�q���G��1�V�<���Ǡ��<���Ǡ��<���Ǡ��<�q�mCj��K�q���K�q���-�4%�1�"5��1��D5��1��T5��1��T5��1���cH�yc�1�AUyc�1�AUyc�1�AUy��8��*��1��T5��1��T5��1��T5��1�zǀZ�8�Rc���8�Rc���8�B�8M��q�cn�B�@�Xj�cP�@�Xj�cP�@�Xj�cP�@�8�6�!�
 �q���8U
�q���8U
�q���8U
�q��n�R�@�Xj�cP�@�Xj�cP�@�Xj�cP�@�8�6�!�
-�q���8U
�q���8U
�q���8U
�q��n�R�@�Xj�cP�@�XhǠ)q<���� ��<�q�mCj��K�q���K�q���K�q���G��1�V�<���Ǡ��<���Ǡ��<���Ǡ��<�q�mCj��K�q���K�q���K�q���G��1�V�8���2�AS�xc�1�ATyc�1�AUy��8��*��1��T5��1��T5��1��T5��1��:���q���8U
�q���8U
�q���8U
�q��n�R�@�Xj�cP�@�Xj�cP�@�Xj�cP�@�8h�c��8�Xd� )q<���� ��<�i�6�q��<��z0�i���i�>W����8��e��w���K�y������å�e�v�|H?>�o�^����������5�G�_�ۚp��~Lo�;/dGͷU��e��T�-�U`C]��|0�|�Q5���ǐހ=5�vT
l��v��|�Q5p_=L�x9zj�e�
-l�˰�7`OͷU�qO��o;�6��Ϧ�o;��kz�
�R�-�U`CM������j`CM���A"�vL�k�y��eɨ��Rc�j�HO-HV5'��Z&��j N =�L Y�@�@ZjL Q�q�eɪ��S��U
�	���	$��HK�	$�U N =�L Y�@�@zj�@���8���2�dUqi�1�D�
-�	�g�L Y��	��	$��H�,HF5'���M I�q�eɪ��S��U
�	���	$��HK�	$�U N =�L Y�@�@zj�@���8���2�dUqi�1�D�
-�	���	$��HO-HV5'��Z&��j M -�L ��8�@zd�@2)q8���2�dTq�eɪ��Rc�j�HO-HV5'��Z&��j N =�L Y�@�@ZjL Q�q�eɪ��S��U
�	���	$��HK�	$�U N =�L Y�@�@zj�@���4���<�dS�hi�e�����3��Q
�	���	$��HO-HV5'��HT�@�@zj�@���8���2�dUq�eɪ��Rc�j�HO-HV5'��Z&��j N =�L Y�@�@:�6�$��	���	$��HO-HV5�&��'�lJN -3&��V�8���2�dUq�eɪ��S��U
�	����*'��Z&��j N =�L Y�@�@zj�@���8��Ԙ@�Z��S��U
�	���	$��HO-HV5'��HT�@�@zj�@���4���<�dS�p�eɨ��Rc�j�HO-HV5'��Z&��j N =�L Y�@�@ZjL Q�q�eɪ��S��U
�	���	$��HK�	$�U N =�L Y�@�@zj�@���8���2�dUqi�1�D�
-�	���	$��H�,HF5'��Z&��j N -5&��V�8���2�dUq�eɪ��S��U
�	��nHR�@�@zj�@���8���2�dUq�eɪ��Rc�j�HO-HV5'��Z&��j N =�L Y�@�@Zh�@��q4���<�dR�p�eɨ�{��_�����hO �uTș'���_
�d�x~9?~�������ۗ���{���������w�O��|����_������\zx̿����㶗����e2�~3����}�k�<�����}�cz#���՜��5s^��v1�ͫ�^�ǭ��R�Ǖ��9@j�q2�8DJ�q2�8DJ7q2�8DJ�prk���q��qȨ�)q\�q���)qؾq�R�!�:�7���$�{7�%�K7�"%�7�"%��6��m��8��8dTm��8.�8d�l��8n�8d�l��8���ְR�_�Q�!R�\�ѭ!R�Y�Q�!R�V�'_[5m���N�CF��H��B�CF��H��6�#�2
��a\�1��I��q��!�FC��q��!�CC��q��!�@C��q}� ���������������ǭ����Ǖ��3@j�e2�2DJ�e2�2DJ7e2�2DJ�drk���qܑqȨ�)qX�q�ҏ!�:��1�%��1�5c��8��8d�b��8.�8dtb��8n�8db��8���ֆR��Q�!R��у!R��Q�!R�c�[H����CF��H���CF��H���CF�H��ڋAn� 5;/�X*/^�q����B��q��!��B��q�� ����=�����%�����
�������>��ni�Uw[2�-DJ[2z-DJ�Z2J-DJWZrk���q�gqȨ�)q\fq��)q�dq�(�)qXc1�h��(a�a�^�!�ٶ��0v~�7W/b�f���:����u��u�`����j���P�����}�{��x��[��_��������k���~�G�F�c�"�׾u���v���6��}K�B�ȕK�N�ȭG�j	�V�\L��h&����M��('���XO���O@SⰡ��QQ R㸤`��R@T��`�QT@U��`��U@U���[]��*���T5�;��T5�k��T5����UH���`��^@U��`�Q`@U��`��a@U��`��5P�@.2Xj4P�@�2Xj�P�@�3Xh�3�)q�hp̭�@hȥK�V�ȽK�b���K�n���G��
�V�\p��h8����q��(9���\s���9����tpԭ�@j�eK����}K���ȕK���ȭG�j�V�\|��h>����}��R~@S��`��@T��[��*�K�-T5�{�ET5���]T5�����!H��a�ш@U�a�Q�@U�a�ы@U��[5��*����T5���	T5�+�	T5�[���$H��(a��)���qW�2�,��r]�R�/��rc�Q���U �&,5Z�j �&,5��j W',5��j �'��>j�
-K���
-K���5
-K���M
-Gݪ�V�\���hS���ܧ��(T���\����T���تpШU��qX�h��|�Y�/�T+�^u+�/�\�NK�g��f��yzm{����Nd^��n_N�_���߷^�kR`�-�T�endstream
+�q���8U
�q���q���ˌq���G��1�V�<���Ǡ��<���Ǡ��<���Ǡ��<�q�mCj��K�q���K�q���K�q���G��1�V�<���Ǡ��<���Ǡ��<���Ǡ��<�q�mCj��-�4%��1��D5��1��T5��1���cH�yc�1�AUyc�1�AUyc�1�AUyc��q�u �c,5�1�j �c,5�1�j �c,5�1�j �cuǐZ�8�Rc���8�Rc���8�Rc���8�AcC���8�"�8I��q�e�8Q
�qL{�a�c�u�q��ˀqL�u�]������.��I�,��y�Z>^�ۏ=~N�.e/S�s�C���|w�^��xh~��|������8��
+^ׄӟ�cz�y!;j�����.�0-�ZnY��2烩�ێ��
5=������j`C=�`OͷU���4�����[V����kz��|�Q5��������j`C=��l����jྺ�ǐހ-�ܲZ6����o;�6��̟$�iǔ����Y&��j N -5&��V�8���2�dUq�eɪ��S��U
�	����*'��Z&��j N =�L Y�@�@zj�@���8��Ԙ@�Z��S��U
�	���	$��HO-HV5'��HT�@�@z��	$��a4���<�dQ�p�eɨ��Q�	$�u N =�L Y�@�@zj�@���8���2�dUqi�1�D�
+�	���	$��HO-HV5'��Z&��j N -5&��V�8���2�dUq�eɪ��S��U
�	���	$�GH��H&%'��Y&��j N =�L Y�@�@ZjL Q�q�eɪ��S��U
�	���	$��HK�	$�U N =�L Y�@�@zj�@���8���2�dUqi�1�D�
+�	���	$��HO-HV5�&��'�lJM -�L ��8�@zf�@2��8���2�dUq�eɪ��Rc�j�HO-HV5'��Z&��j N =�L Y�@�@ZjL Q�q�eɪ��S��U
�	���	$��HG�&��ց8���2�dUq�eɪ��C��M��	�e��*'��Z&��j N =�L Y�@�@zj�@���8��Ԙ@�Z��S��U
�	���	$��HO-HV5'��HT�@�@zj�@���8���2�dUq�eɪ��Rc�j�HO-HV5�&��'�lJN =�L �@�@ZjL Q�q�eɪ��S��U
�	���	$��HK�	$�U N =�L Y�@�@zj�@���8���2�dUqi�1�D�
+�	���	$��HO-HV5'��Z&��j N -5&��V�4���<�dS�p�eɨ��S��U
�	����*'��Z&��j N =�L Y�@�@zj�@���8�t�mIj�HO-HV5'��Z&��j N =�L Y�@�@ZjL Q�q�eɪ��S��U
�	���	$�HH-H45�&��'�LJN =�L �@�@�bϙ@���~s�2�Hx�r�	���W�q�/^^���Me���o������9��Ӈ���/��|��𻟞��No������ן������K����%����/�^���������?�y��sz����%���˹��aזL�+�J2�/�ݑy�*�"C��qA� �~�����r�����f�ǽ��Z�ǥ��:1@j7b2
+1DJ�a2�0DJva�Ta�
�"��E<	��F	�D��
+�CF�H����CF��H���An� 5��/�"%�k/�"%�;/�"%�/��]��8n�8d�]��8��8d4]��8�8d�\��8.���kǥMVq�pq�(�)q\oq�h�)q�mq�Rm!�6��-��Z@�8n�8d�Z��8��8d4Z��8�8d�Y��8.���eR���Qd!R����b!R���Qa!R��b�[H����CFy�H���CFs�H��ފCFm�H��ҊAn� 5�+�"%�*�X�*ކqW���B��qQ� ��
+��-���
+�����
+�����z
+����ܺ)@j7S2�)DJ�R2Z)DJwR2*)DJRr���q�Fq�(�)q\Eq�h�)q�CqȨ�)q\B1ȭ���a�K���0��8`�OH�8�8dTO��8.���;R�u�Q:!R�r��8!R�o�Q7!R�l�'�]�6Y�q��!�hB��q��!�eB��q��!�bB��q�� �~	�����r	�����f	�ǽ��Z	���C�N	����+��nøN��&!Q�K�,2XUz�Ir}
�K�H�|���v�7�u�`����&����$�����������O_ˏ��Ш��u9./�__��J�i<�*%[����mq�շ��_�-P�@n\XjT.P�@.]Xj�.P�@�]8�V� �
+�ꅥF�U
����F�U
����������5ˌ��MK�*��eK�6��}G�
+�V�\ɰ��d����ʰԨe���\̰�hf�����pԭ�Aj��K�~��

K����%
K����=
C�5@���a���@U��a�Q�@U��a������qg�1���U �6,5z�j 77,5��j �7,5��j �7u+p�Zr��R�Á�r��R�Ɓ�r��R�Ɂ�r��Q�2�U �9,5��j 7:,5*�j �:,5Z�j �:u+v�Zr��R�ہ�b��BK�M�ょeF�Q
䎇�n%R�@�yXj�<P�@nzXjT=P�@.{Xj�=P�@�{8�V� �
+�ʇ�F�U
�և�F�U
�⇥F�U
�n�R�@�Xj�?P�@n�XjT@P�@.�Xj�@P�@�8�V!�
+�*���.��mˌ:�ȅK�F�ȝG�J!�V�\��腠����Ԩ����\��h�����1�kA�:�+"�T5�["�5T5��"�MT5��"���EH��.b��AU�1b�QAU�4b��AU�7�Q!S�:b��;���q{�2�>��r���[�$�:r���e@���:�%�uZ�?�����<��k�%�����`*/�����Ƅ�&�^endstream
 endobj
-1924 0 obj <<
+1956 0 obj <<
 /Type /Page
-/Contents 1925 0 R
-/Resources 1923 0 R
+/Contents 1957 0 R
+/Resources 1955 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 1879 0 R
-/Annots [ 1927 0 R 1928 0 R 1929 0 R 1930 0 R 1931 0 R 1932 0 R 1933 0 R 1934 0 R 1935 0 R 1936 0 R 1937 0 R 1938 0 R ]
+/Parent 1895 0 R
+/Annots [ 1959 0 R 1960 0 R 1961 0 R 1962 0 R 1963 0 R 1964 0 R 1965 0 R 1966 0 R 1967 0 R 1968 0 R 1969 0 R 1970 0 R ]
 >> endobj
-1927 0 obj <<
+1959 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [71.731 677.798 200.517 686.71]
 /Subtype /Link
 /A << /S /GoTo /D (lifecycle-image) >>
 >> endobj
-1928 0 obj <<
+1960 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 677.798 537.983 686.71]
 /Subtype /Link
 /A << /S /GoTo /D (lifecycle-image) >>
 >> endobj
-1929 0 obj <<
+1961 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [71.731 612.168 276.242 621.079]
 /Subtype /Link
 /A << /S /GoTo /D (security-mysql-account-root) >>
 >> endobj
-1930 0 obj <<
+1962 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 612.168 537.983 621.079]
 /Subtype /Link
 /A << /S /GoTo /D (security-mysql-account-root) >>
 >> endobj
-1931 0 obj <<
+1963 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [71.731 599.216 256.975 608.128]
 /Subtype /Link
 /A << /S /GoTo /D (security-mysql-account-anonymous) >>
 >> endobj
-1932 0 obj <<
+1964 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 599.216 537.983 608.128]
 /Subtype /Link
 /A << /S /GoTo /D (security-mysql-account-anonymous) >>
 >> endobj
-1933 0 obj <<
+1965 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [71.731 586.265 224.108 595.176]
 /Subtype /Link
 /A << /S /GoTo /D (security-mysql-network-ex) >>
 >> endobj
-1934 0 obj <<
+1966 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [528.02 586.265 537.983 595.176]
 /Subtype /Link
 /A << /S /GoTo /D (security-mysql-network-ex) >>
 >> endobj
-1935 0 obj <<
+1967 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [71.731 573.313 343.17 582.225]
+/Rect [71.731 573.313 343.718 582.225]
 /Subtype /Link
 /A << /S /GoTo /D (trbl-relogin-everyone-share) >>
 >> endobj
-1936 0 obj <<
+1968 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [523.039 573.313 537.983 582.225]
+/Rect [528.02 573.313 537.983 582.225]
 /Subtype /Link
 /A << /S /GoTo /D (trbl-relogin-everyone-share) >>
 >> endobj
-1937 0 obj <<
+1969 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [71.731 560.362 348.43 569.273]
+/Rect [71.731 560.362 348.978 569.273]
 /Subtype /Link
 /A << /S /GoTo /D (trbl-relogin-everyone-restrict) >>
 >> endobj
-1938 0 obj <<
+1970 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [523.039 560.362 537.983 569.273]
+/Rect [528.02 560.362 537.983 569.273]
 /Subtype /Link
 /A << /S /GoTo /D (trbl-relogin-everyone-restrict) >>
 >> endobj
-1926 0 obj <<
-/D [1924 0 R /XYZ 71.731 729.265 null]
+1958 0 obj <<
+/D [1956 0 R /XYZ 71.731 729.265 null]
 >> endobj
 10 0 obj <<
-/D [1924 0 R /XYZ 214.067 703.236 null]
+/D [1956 0 R /XYZ 214.067 703.236 null]
 >> endobj
 14 0 obj <<
-/D [1924 0 R /XYZ 235.902 637.605 null]
+/D [1956 0 R /XYZ 235.902 637.605 null]
 >> endobj
-1923 0 obj <<
-/Font << /F23 1201 0 R /F27 1208 0 R /F33 1306 0 R >>
+1955 0 obj <<
+/Font << /F23 1217 0 R /F27 1224 0 R /F33 1322 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-1947 0 obj <<
-/Length 2603      
+1979 0 obj <<
+/Length 2604      
 /Filter /FlateDecode
 >>
 stream
-xڕYݏ�6�_��
ز�-�O�m7�E�^��{�%�b#�>��f���|P����=�ə�9�������7y�1�D� �қ�}��9����K$YDi�+�u����o�
��l��&�Y��y<�V�q���c���]-NN��:ʋE����􎇏��x��W�\���R�A��t֣`��/%w��ųU��+{Їe�]�
-�����]��b�+
-�w���t��LٷR;�
�-l����m�-�!��L������y��_WK|]F�BXez��]�C5�lhg���;c��Sm������B�`<P��@|2<T�>J۪�������h�v�b�3�;�p����U�;oH�����X��R�g�u5k�:g���D��A�������ypo�d�O^�x�xw!3e\��J�;	��v���e�i��H��Xྑ 4��'�`L�+�i�r.4O��Q]��B�_Ɨ
-�{�����9�'�����Q�7��d�r5���z��"��$K\֭�Ҡ�V�W|qgМ?��q	ޔH��HOJ��A����0{'�/�j�ݨ&`��<8x�W:�}��3(�˦�d5��,o~~�\<*�I�$Ȳ��L4Ȭ'B��&aq��t{:I]�ol��K�I�@�*�k{����KEh;x���q�6�&!��1�=��d�lz��Z` �0�c`���A�y���D8UJY���C��x�\��D�7����9�5�LW����l���XU2���Z�v5�7
-vPm�ЧF�)�E�.�4I��ۢ
^)[(>�/�/?��DO6B���?)0,�@,��Q�]����1��v���)�M���?@/�f�^2A����X<��4��zS8�r_�
�ZZ��F�M�p,SX�f�Uݗ��p����0��.\���^�WBvv�b-)`p>��p�ފRI�r��TS�V%�.��=wN�+&��'�}�'a��^�&bfq�+V���t����kIr(�ۈ2vR˓х�/��Xq�^���L��[�\?�c���l�#����ul�^4��ٶF�%�2ۗ�e�.�hM)�_��8��S`��`<�9�|-��$c��/:U�}��H�'��Y�:&˂{����]m��ⱆC� B��Rj	/��"QX���[�ek���a@�{�I/�K^{�N��a�����E1��cY`�1tQ����b�3���x�
��­	u$�,��7R�E��ɨ�`�\-�t02�P�lQ��9�'Tj�ڸ��ܕ�4'iA�rH�.Cvn,��I���Ψ�V���"s=�	���rz���kh�m�����w �����}|4t�9���!m�aB$�q��A�k�3���Q��a
-4�H�9�4L��85F�����=v��i� �d�	e�oĩVW��IHs�@�t�^}6�m5�û�F�9�EL�c��I�R2����/�~5��L����ޯ���Ȇ��/0- �'n��ʼnX}ǩy�a9װ+����F���*�6�u ���<ie�g��Dt VƝi4+�0�Hr��������'�
 �zf^4T���:��nKy%�j.�h�Xٝ�*+�,�(�+u<�c
���f����A��uزC�.6�JL���}?� �ē�K�m��Q{�Z{�M��Y�}}6�1��#���U�yt=��xɢ)^�L���9n�?��a�-U? 9O��~Y{Ұp�e����9Lh[����7�������>��}w�u�T�7��&�\�_M^����������9t��Ŕ��W�$�3剏{ѡxH�+����8<{��:�{��	o�v��v�yzz�����u�Z�Kb���Z���3z�:���^^���O�u��D/�v1���a�!�n
-��r\3.Ư:{m�l���kԮm��.�7䨜2��D��#
�@q�8��I���<ɽ3��6{t~j@*����eh���-�A��~��Q��cOL��	K��蝉����[��!*���p0��<�
-�y�h��w���E��w6�=T���߽���w|��"{����<�L�b�
-�@*�LI� �����~�!�9�2>Ѩ�{
-��!�Q��F�c��{��{���ท@�Agt�#��C��n��k(�iPm�p�0ہ�eƸ�I:U?]���ej�������m��\㕾������r��+8[B="��Ċ� ,H����q�zZ�렙���m� �*1�ѡ�ғ� �N�Š�s�4'�#iʼED���sx��K�q��Ǵ'L�,טR4��]!�T�KzP���T���K��̈��E��0������L����Fw
;��G��s*�/������wk��*����^�pP�\�D��$�7��O����f`1Z�����L�+ 4��R'��-����Q�O���q��
-F���>��cOh�Fs����a�c���j�j���W4�*���ew�s*Z�E���~����Q͘s.t������<��WR?U������/���KIa~����X�E��,���\�1~u�PW|ih�c�KK���m�endstream
+xڕYݏ۸�_��'�e}K�=m6�t�E�lSmh��x�D������;�,y��+���p�����Ƈ�MxY?����h��7�|z8�8M�0	a|��N������z���ӻ�}݄��&ۛ��hŏ�0Jo��-�*q��,�a�/�ow��<|�TǣO�*��?O��� �� A�>X=?�H_�
J��q$���S���ЦV��)�n��6���0��-�r�Q�odky6P���-���~�������῜��������e�,�Q�wZ?��U]��Fk���{���9U�
���(�.����p��'�C��4��:<�:��0Q,F�V�L���.�d�b�Ru�
Im�цǍ.���em�ڧ�Yߖ�"N��q�z����w�)���)/�.�c&��_U!�N¦��v�u�B>6R�'8��o$���“Z0&��ɴr�-���V]��B�[Ɨ
+�{��������Qɂ��T�h�?3�lţV�‡v�"��"\֭�Ҡ��V�W|q�ќ;��i	ޔHy��'�[t����u0� �o�j����c��<8x�W:�}��3(�u_�r��Y���iL3p�p��&�c/M�W3� ��q&��ť"����(�R=�񏗶� ����� �Cۗ�ж�:��8�|�R�6�H��Nj�� YT��Yg����*�3tU�%©T큅8J�?D銧�v,1Kt�Iq<
+pY�C�R�t�2���Z��b��*��p-L��z[�6x�c-ŀL���`��LH��m�xo�O�E��G���Z������"��b�je����`��
+n��1������O��B�L�I&���PK���5�ZcB8��3��s!/��p�@����i���0���L6���1�	����&���FP��J��S��"�'@T-�7�Pұl%.Ք��D�K�v/��͊Ʌ�	@$��Q�J'n51��������:�Nw�ڜ��q?�����xt!�a/V��23���U���s`P�ڒ����u��NԼ��4��8�a�+)�$Yx,���BJ��eq4!z���n�����(Jq��_t�*�MŐ�óxuLІw�5���J�u��E�ebJ��H8qH�����
+�$�2.#X�*��M:^"�+w�t�_U�?�.�@������e���_��v�n@`�nM�#!�`��g�HY��'���5ry4p����S@���EAZg�n�P��k�f��WbR�-��!r��Qر�B��%f�;�[J����Hn<$�s���m�n��鶶��\c��΁��s�F2����I���C����*�	��7�9���a��pVPGEb�)�T�#��D]3�/�XkE�f"���
�������ǔ��S�������\9��肽�l�۪�w�4N3������
����d�P7
+]JW
+>)�j��p��[;q�5%�N`Z@�O�P����S�X�2�aW<0iu��EU:�=l��@��nx��fǸ���:(@��;�pV�a�0:��$�A�	|��Ox@��̼h�p?�t���J��\��|/00�;BUV�Y$	Pؗ�x��n����5�!,܃��3�e��]l���"�L?�~� z���%�6H騽x�=J���4�>\�^���殺yt=��xI�)^�L��9v�?��az+�~@��/��r�a�.�p{{s�жk�( o\	�W���}5<|8 ����t�vx��?L�������5[y-c��3��ы)	�3�dqJg�b�4�C�W@9��qxqr;'���.+�Je���fs:�����0{B$�hŒ0d����t�޲����Wq���r��=��0�]�3vDvH����ߴs9��W���6z��M��*�����rTN�Y|
+�����[���Xߊ�$�lnNrg��������
+�y�y�~t�"PE���A'�q�����	p0�a�_���3q0������d*�
3��̩Rv�+D㤸�C�;,�w7��9�j������{|��,�h�f)g�sW�+�R)fJ:������G�Qc�����F��S���`y�x�:�բ=�PY��<�G����W h���|D ��q�m�}
�b3
�
�N�[p���0I��֐r��A��;3�k�e[�w0W;��k�/�(Z9\ݕ�-���vdš��}Qz�o����:h�'$~[u��R�it���$!Ȁ�㼰��A|���ڑ�4e�<$��8<�r���0f�c�#�T��u!j��뮐o��$=�PZ9��D�%^Pfċ�"�onq�nx}	�~&����i��x��#c�9�ɗ��W�{ǻ5�vN��j��e8(�s.aF@��ޛ}��'����f`1Z�����L��!���R'��-��5*�s�R�~׻�\����]�|������
+���Ot����8{��U���^ш�h��/���S�:����#���؟7�jƜs���t��t5�灝��:����+&Ξ~�u]�s/���g���,B_g�\��2�"��G-�_���������m�endstream
 endobj
-1946 0 obj <<
+1978 0 obj <<
 /Type /Page
-/Contents 1947 0 R
-/Resources 1945 0 R
+/Contents 1979 0 R
+/Resources 1977 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 1879 0 R
-/Annots [ 1951 0 R ]
+/Parent 1895 0 R
+/Annots [ 1983 0 R ]
 >> endobj
-1951 0 obj <<
+1983 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [371.655 582.727 414.738 590.748]
+/Rect [371.655 582.727 415.734 590.748]
 /Subtype /Link
 /A << /S /GoTo /D (gfdl) >>
 >> endobj
-1307 0 obj <<
-/D [1946 0 R /XYZ 71.731 718.306 null]
+1323 0 obj <<
+/D [1978 0 R /XYZ 71.731 718.306 null]
 >> endobj
 18 0 obj <<
-/D [1946 0 R /XYZ 350.659 703.236 null]
+/D [1978 0 R /XYZ 350.659 703.236 null]
 >> endobj
-1308 0 obj <<
-/D [1946 0 R /XYZ 71.731 692.504 null]
+1324 0 obj <<
+/D [1978 0 R /XYZ 71.731 692.504 null]
 >> endobj
 22 0 obj <<
-/D [1946 0 R /XYZ 285.389 651.159 null]
+/D [1978 0 R /XYZ 285.389 651.159 null]
 >> endobj
-1948 0 obj <<
-/D [1946 0 R /XYZ 71.731 638.721 null]
+1980 0 obj <<
+/D [1978 0 R /XYZ 71.731 638.721 null]
 >> endobj
-1949 0 obj <<
-/D [1946 0 R /XYZ 71.731 627.443 null]
+1981 0 obj <<
+/D [1978 0 R /XYZ 71.731 627.443 null]
 >> endobj
-1950 0 obj <<
-/D [1946 0 R /XYZ 71.731 617.481 null]
+1982 0 obj <<
+/D [1978 0 R /XYZ 71.731 617.481 null]
 >> endobj
-1952 0 obj <<
-/D [1946 0 R /XYZ 71.731 577.746 null]
+1984 0 obj <<
+/D [1978 0 R /XYZ 71.731 577.746 null]
 >> endobj
-1309 0 obj <<
-/D [1946 0 R /XYZ 71.731 546.646 null]
+1325 0 obj <<
+/D [1978 0 R /XYZ 71.731 546.646 null]
 >> endobj
 26 0 obj <<
-/D [1946 0 R /XYZ 191.962 503.549 null]
+/D [1978 0 R /XYZ 191.962 503.549 null]
 >> endobj
-1953 0 obj <<
-/D [1946 0 R /XYZ 71.731 494.726 null]
+1985 0 obj <<
+/D [1978 0 R /XYZ 71.731 494.726 null]
 >> endobj
-1954 0 obj <<
-/D [1946 0 R /XYZ 71.731 448.949 null]
+1986 0 obj <<
+/D [1978 0 R /XYZ 71.731 448.949 null]
 >> endobj
-1955 0 obj <<
-/D [1946 0 R /XYZ 71.731 405.113 null]
+1987 0 obj <<
+/D [1978 0 R /XYZ 71.731 405.113 null]
 >> endobj
-1310 0 obj <<
-/D [1946 0 R /XYZ 71.731 348.326 null]
+1326 0 obj <<
+/D [1978 0 R /XYZ 71.731 348.326 null]
 >> endobj
 30 0 obj <<
-/D [1946 0 R /XYZ 216.752 305.229 null]
+/D [1978 0 R /XYZ 216.752 305.229 null]
 >> endobj
-1956 0 obj <<
-/D [1946 0 R /XYZ 71.731 296.406 null]
+1988 0 obj <<
+/D [1978 0 R /XYZ 71.731 296.406 null]
 >> endobj
-1957 0 obj <<
-/D [1946 0 R /XYZ 71.731 263.58 null]
+1989 0 obj <<
+/D [1978 0 R /XYZ 71.731 263.58 null]
 >> endobj
-1958 0 obj <<
-/D [1946 0 R /XYZ 345.258 252.785 null]
+1990 0 obj <<
+/D [1978 0 R /XYZ 345.258 252.785 null]
 >> endobj
-1959 0 obj <<
-/D [1946 0 R /XYZ 184.718 239.834 null]
+1991 0 obj <<
+/D [1978 0 R /XYZ 184.718 239.834 null]
 >> endobj
-1960 0 obj <<
-/D [1946 0 R /XYZ 71.731 226.882 null]
+1992 0 obj <<
+/D [1978 0 R /XYZ 71.731 226.882 null]
 >> endobj
-1961 0 obj <<
-/D [1946 0 R /XYZ 71.731 206.793 null]
+1993 0 obj <<
+/D [1978 0 R /XYZ 71.731 206.793 null]
 >> endobj
-1962 0 obj <<
-/D [1946 0 R /XYZ 510.317 195.998 null]
+1994 0 obj <<
+/D [1978 0 R /XYZ 510.317 195.998 null]
 >> endobj
-1963 0 obj <<
-/D [1946 0 R /XYZ 302.6 183.047 null]
+1995 0 obj <<
+/D [1978 0 R /XYZ 302.6 183.047 null]
 >> endobj
-1964 0 obj <<
-/D [1946 0 R /XYZ 71.731 170.095 null]
+1996 0 obj <<
+/D [1978 0 R /XYZ 71.731 170.095 null]
 >> endobj
-1965 0 obj <<
-/D [1946 0 R /XYZ 71.731 162.957 null]
+1997 0 obj <<
+/D [1978 0 R /XYZ 71.731 162.957 null]
 >> endobj
-1966 0 obj <<
-/D [1946 0 R /XYZ 269.484 139.211 null]
+1998 0 obj <<
+/D [1978 0 R /XYZ 269.484 139.211 null]
 >> endobj
-1967 0 obj <<
-/D [1946 0 R /XYZ 495.373 139.211 null]
+1999 0 obj <<
+/D [1978 0 R /XYZ 495.373 139.211 null]
 >> endobj
-1968 0 obj <<
-/D [1946 0 R /XYZ 266.563 126.26 null]
+2000 0 obj <<
+/D [1978 0 R /XYZ 266.563 126.26 null]
 >> endobj
-1969 0 obj <<
-/D [1946 0 R /XYZ 501.46 126.26 null]
+2001 0 obj <<
+/D [1978 0 R /XYZ 501.46 126.26 null]
 >> endobj
-1970 0 obj <<
-/D [1946 0 R /XYZ 315.916 113.308 null]
+2002 0 obj <<
+/D [1978 0 R /XYZ 315.916 113.308 null]
 >> endobj
-1971 0 obj <<
-/D [1946 0 R /XYZ 71.731 100.357 null]
+2003 0 obj <<
+/D [1978 0 R /XYZ 71.731 100.357 null]
 >> endobj
-1972 0 obj <<
-/D [1946 0 R /XYZ 312.349 100.357 null]
+2004 0 obj <<
+/D [1978 0 R /XYZ 312.349 100.357 null]
 >> endobj
-1973 0 obj <<
-/D [1946 0 R /XYZ 512.529 100.357 null]
+2005 0 obj <<
+/D [1978 0 R /XYZ 512.529 100.357 null]
 >> endobj
-1945 0 obj <<
-/Font << /F23 1201 0 R /F27 1208 0 R /F35 1569 0 R /F33 1306 0 R >>
+1977 0 obj <<
+/Font << /F23 1217 0 R /F27 1224 0 R /F35 1589 0 R /F33 1322 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-1976 0 obj <<
+2008 0 obj <<
 /Length 2140      
 /Filter /FlateDecode
 >>
@@ -6055,197 +6283,199 @@ xڭX
 �6�<�Y:w�h�|�im���B�I�L���k!8wA�2 �,����5mX��l�� �tEq-N#�ț��ooh���/��J���D��/�����4l�F6�)��	��]�P'��f6���d��9�n&�`�
��?�|�GA䐇�W���X¿��3��s�B�c��	�1Ćū��N�Y�,{NL����w�҄>��u�m0�5����0Ii�:�=�������N�y�A��ˇ�ɾih�d��F�kDu}��BE�İ���)�y�?^:/�+(*�O��,���%tci�|-tG�Ρ�X�Ѕ�dR1����J���C�$�z"����=7:����[�mԼ���L�q���e*�zk7�v��,~���{Ӕ�hϢ��M�5������Ќ��E�b��2z5�v��"gY��8����z�3�X*���o!�[2!9
OB����un�mC���2
 �Y�F�o=W�.5�q�m�5�ZQWۜ��B�I��?�薯t�Ev��Z�gV�+���2Mw�g7ܒC���G�<�ߝ��^�����H�9�p,��{z\+۠��@M�
�0g�v���3�ޅ��Kі�K̽�fw�t�.0���%p(��TGq�I�j��ĝEDz�ЉG��G��-Z�׾6P�璨mE6��+1�&�O���+��iym�{�hz*��2�����H�Jlk�o��W� (������W��ZF/�kA1��V-Qk������K��ޭ����[s�aI�F`uP���]��z�D`��H�����~�5�#0Ja׵dMÛ���0Tf����L���J$޵A�`�����܎�HQ����t��?�}	�el�$:mG���pG�;n�|����mJ9\T��3gR
�?�v�]�t�Ɨs��žl��@W'оs��J:�y�b�Y�1���x�z�B�@��,�W���/S��k[V�婗��`85\.�*��`��U��2K��k�7+.�$s
��1%���P����t	;�����TCV��#s��xZ�餗�x��X���l19�>\�n[� ���;�Iy���R�Rx'������~ׯj�˻[���V�V@��D�8�R�ӢK#B��}fW;ږ��k[\T��E�]��z�D��IK�>�����A�l�%�ԥ*��0{�e�r���Ʊ�\0:�R����cU endstream
 endobj
-1975 0 obj <<
+2007 0 obj <<
 /Type /Page
-/Contents 1976 0 R
-/Resources 1974 0 R
+/Contents 2008 0 R
+/Resources 2006 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 1879 0 R
+/Parent 1895 0 R
 >> endobj
-1977 0 obj <<
-/D [1975 0 R /XYZ 270.827 708.344 null]
+2009 0 obj <<
+/D [2007 0 R /XYZ 270.827 708.344 null]
 >> endobj
-1978 0 obj <<
-/D [1975 0 R /XYZ 509.011 708.344 null]
+2010 0 obj <<
+/D [2007 0 R /XYZ 509.011 708.344 null]
 >> endobj
-1979 0 obj <<
-/D [1975 0 R /XYZ 258.45 695.392 null]
+2011 0 obj <<
+/D [2007 0 R /XYZ 258.45 695.392 null]
 >> endobj
-1980 0 obj <<
-/D [1975 0 R /XYZ 506.431 695.392 null]
+2012 0 obj <<
+/D [2007 0 R /XYZ 506.431 695.392 null]
 >> endobj
-1981 0 obj <<
-/D [1975 0 R /XYZ 71.731 675.303 null]
+2013 0 obj <<
+/D [2007 0 R /XYZ 71.731 675.303 null]
 >> endobj
-1982 0 obj <<
-/D [1975 0 R /XYZ 487.099 664.508 null]
+2014 0 obj <<
+/D [2007 0 R /XYZ 487.099 664.508 null]
 >> endobj
-1311 0 obj <<
-/D [1975 0 R /XYZ 71.731 644.419 null]
+1327 0 obj <<
+/D [2007 0 R /XYZ 71.731 644.419 null]
 >> endobj
 34 0 obj <<
-/D [1975 0 R /XYZ 164.538 601.321 null]
+/D [2007 0 R /XYZ 164.538 601.321 null]
 >> endobj
-1983 0 obj <<
-/D [1975 0 R /XYZ 71.731 592.498 null]
+2015 0 obj <<
+/D [2007 0 R /XYZ 71.731 592.498 null]
 >> endobj
-1984 0 obj <<
-/D [1975 0 R /XYZ 71.731 551.702 null]
+2016 0 obj <<
+/D [2007 0 R /XYZ 71.731 551.702 null]
 >> endobj
-1985 0 obj <<
-/D [1975 0 R /XYZ 71.731 536.758 null]
+2017 0 obj <<
+/D [2007 0 R /XYZ 71.731 536.758 null]
 >> endobj
-1986 0 obj <<
-/D [1975 0 R /XYZ 154.5 525.964 null]
+2018 0 obj <<
+/D [2007 0 R /XYZ 154.5 525.964 null]
 >> endobj
-1987 0 obj <<
-/D [1975 0 R /XYZ 71.731 525.775 null]
+2019 0 obj <<
+/D [2007 0 R /XYZ 71.731 525.775 null]
 >> endobj
-1988 0 obj <<
-/D [1975 0 R /XYZ 91.656 508.031 null]
+2020 0 obj <<
+/D [2007 0 R /XYZ 91.656 508.031 null]
 >> endobj
-1989 0 obj <<
-/D [1975 0 R /XYZ 71.731 495.911 null]
+2021 0 obj <<
+/D [2007 0 R /XYZ 71.731 495.911 null]
 >> endobj
-1990 0 obj <<
-/D [1975 0 R /XYZ 138.849 485.117 null]
+2022 0 obj <<
+/D [2007 0 R /XYZ 138.849 485.117 null]
 >> endobj
-1991 0 obj <<
-/D [1975 0 R /XYZ 71.731 482.96 null]
+2023 0 obj <<
+/D [2007 0 R /XYZ 71.731 482.96 null]
 >> endobj
-1992 0 obj <<
-/D [1975 0 R /XYZ 91.656 467.184 null]
+2024 0 obj <<
+/D [2007 0 R /XYZ 91.656 467.184 null]
 >> endobj
-1993 0 obj <<
-/D [1975 0 R /XYZ 71.731 442.113 null]
+2025 0 obj <<
+/D [2007 0 R /XYZ 71.731 442.113 null]
 >> endobj
-1994 0 obj <<
-/D [1975 0 R /XYZ 137.315 431.319 null]
+2026 0 obj <<
+/D [2007 0 R /XYZ 137.315 431.319 null]
 >> endobj
-1995 0 obj <<
-/D [1975 0 R /XYZ 71.731 429.911 null]
+2027 0 obj <<
+/D [2007 0 R /XYZ 71.731 429.911 null]
 >> endobj
-1996 0 obj <<
-/D [1975 0 R /XYZ 91.656 413.386 null]
+2028 0 obj <<
+/D [2007 0 R /XYZ 91.656 413.386 null]
 >> endobj
-1997 0 obj <<
-/D [1975 0 R /XYZ 71.731 401.266 null]
+2029 0 obj <<
+/D [2007 0 R /XYZ 71.731 401.266 null]
 >> endobj
-1998 0 obj <<
-/D [1975 0 R /XYZ 136.508 390.472 null]
+2030 0 obj <<
+/D [2007 0 R /XYZ 136.508 390.472 null]
 >> endobj
-1999 0 obj <<
-/D [1975 0 R /XYZ 71.731 390.283 null]
+2031 0 obj <<
+/D [2007 0 R /XYZ 71.731 390.283 null]
 >> endobj
-2000 0 obj <<
-/D [1975 0 R /XYZ 91.656 372.539 null]
+2032 0 obj <<
+/D [2007 0 R /XYZ 91.656 372.539 null]
 >> endobj
-2001 0 obj <<
-/D [1975 0 R /XYZ 71.731 360.419 null]
+2033 0 obj <<
+/D [2007 0 R /XYZ 71.731 360.419 null]
 >> endobj
-2002 0 obj <<
-/D [1975 0 R /XYZ 128.578 349.625 null]
+2034 0 obj <<
+/D [2007 0 R /XYZ 128.578 349.625 null]
 >> endobj
-2003 0 obj <<
-/D [1975 0 R /XYZ 71.731 348.217 null]
+2035 0 obj <<
+/D [2007 0 R /XYZ 71.731 348.217 null]
 >> endobj
-2004 0 obj <<
-/D [1975 0 R /XYZ 91.656 331.692 null]
+2036 0 obj <<
+/D [2007 0 R /XYZ 91.656 331.692 null]
 >> endobj
-2005 0 obj <<
-/D [1975 0 R /XYZ 71.731 306.621 null]
+2037 0 obj <<
+/D [2007 0 R /XYZ 71.731 306.621 null]
 >> endobj
-2006 0 obj <<
-/D [1975 0 R /XYZ 145.324 295.827 null]
+2038 0 obj <<
+/D [2007 0 R /XYZ 145.324 295.827 null]
 >> endobj
-2007 0 obj <<
-/D [1975 0 R /XYZ 71.731 293.67 null]
+2039 0 obj <<
+/D [2007 0 R /XYZ 71.731 293.67 null]
 >> endobj
-2008 0 obj <<
-/D [1975 0 R /XYZ 91.656 277.894 null]
+2040 0 obj <<
+/D [2007 0 R /XYZ 91.656 277.894 null]
 >> endobj
-2009 0 obj <<
-/D [1975 0 R /XYZ 71.731 265.774 null]
+2041 0 obj <<
+/D [2007 0 R /XYZ 71.731 265.774 null]
 >> endobj
-2010 0 obj <<
-/D [1975 0 R /XYZ 122.291 254.98 null]
+2042 0 obj <<
+/D [2007 0 R /XYZ 122.291 254.98 null]
 >> endobj
-2011 0 obj <<
-/D [1975 0 R /XYZ 71.731 253.572 null]
+2043 0 obj <<
+/D [2007 0 R /XYZ 71.731 253.572 null]
 >> endobj
-2012 0 obj <<
-/D [1975 0 R /XYZ 91.656 237.047 null]
+2044 0 obj <<
+/D [2007 0 R /XYZ 91.656 237.047 null]
 >> endobj
-2013 0 obj <<
-/D [1975 0 R /XYZ 71.731 219.015 null]
+2045 0 obj <<
+/D [2007 0 R /XYZ 71.731 219.015 null]
 >> endobj
-2014 0 obj <<
-/D [1975 0 R /XYZ 450.945 206.163 null]
+2046 0 obj <<
+/D [2007 0 R /XYZ 450.945 206.163 null]
 >> endobj
-2015 0 obj <<
-/D [1975 0 R /XYZ 518.615 206.163 null]
+2047 0 obj <<
+/D [2007 0 R /XYZ 518.615 206.163 null]
 >> endobj
-2016 0 obj <<
-/D [1975 0 R /XYZ 108.346 193.211 null]
+2048 0 obj <<
+/D [2007 0 R /XYZ 108.346 193.211 null]
 >> endobj
-2017 0 obj <<
-/D [1975 0 R /XYZ 175.219 193.211 null]
+2049 0 obj <<
+/D [2007 0 R /XYZ 175.219 193.211 null]
 >> endobj
-2018 0 obj <<
-/D [1975 0 R /XYZ 228.813 193.211 null]
+2050 0 obj <<
+/D [2007 0 R /XYZ 228.813 193.211 null]
 >> endobj
-2019 0 obj <<
-/D [1975 0 R /XYZ 281.858 193.211 null]
+2051 0 obj <<
+/D [2007 0 R /XYZ 281.858 193.211 null]
 >> endobj
-2020 0 obj <<
-/D [1975 0 R /XYZ 359.541 193.211 null]
+2052 0 obj <<
+/D [2007 0 R /XYZ 359.541 193.211 null]
 >> endobj
-2021 0 obj <<
-/D [1975 0 R /XYZ 429.483 193.211 null]
+2053 0 obj <<
+/D [2007 0 R /XYZ 429.483 193.211 null]
 >> endobj
-2022 0 obj <<
-/D [1975 0 R /XYZ 477.557 193.211 null]
+2054 0 obj <<
+/D [2007 0 R /XYZ 477.557 193.211 null]
 >> endobj
-2023 0 obj <<
-/D [1975 0 R /XYZ 71.731 180.26 null]
+2055 0 obj <<
+/D [2007 0 R /XYZ 71.731 180.26 null]
 >> endobj
-2024 0 obj <<
-/D [1975 0 R /XYZ 140.493 180.26 null]
+2056 0 obj <<
+/D [2007 0 R /XYZ 140.493 180.26 null]
 >> endobj
-2025 0 obj <<
-/D [1975 0 R /XYZ 197.219 180.26 null]
+2057 0 obj <<
+/D [2007 0 R /XYZ 197.219 180.26 null]
 >> endobj
-2026 0 obj <<
-/D [1975 0 R /XYZ 71.731 173.839 null]
+2058 0 obj <<
+/D [2007 0 R /XYZ 71.731 173.839 null]
 >> endobj
-2027 0 obj <<
-/D [1975 0 R /XYZ 419.446 162.327 null]
+2059 0 obj <<
+/D [2007 0 R /XYZ 419.446 162.327 null]
 >> endobj
-1312 0 obj <<
-/D [1975 0 R /XYZ 71.731 116.335 null]
+1328 0 obj <<
+/D [2007 0 R /XYZ 71.731 116.335 null]
 >> endobj
-1974 0 obj <<
-/Font << /F33 1306 0 R /F27 1208 0 R /F23 1201 0 R /F35 1569 0 R >>
+2006 0 obj <<
+/Font << /F33 1322 0 R /F27 1224 0 R /F23 1217 0 R /F35 1589 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-2030 0 obj <<
-/Length 1360      
+2062 0 obj <<
+/Length 1324      
 /Filter /FlateDecode
 >>
 stream
-x��W[��F~���jՀT����F�����ZM�$���4��I�_��>�ħ�Q*���|3���$��#ABP�`��Ry����<]/{�x"s�\\<a,�P&Y���R$$��T�`�~>ܩv(�(����r����.we�fO�庈�-_,/��%(Kٍ��23�(H�(Ƹ�G,P�SkA����#�����n"�Ï�Q�76����Q�^�Us���Z
��}���]�&]U:�2�T6[��{���������R�0�a!-꣢ϻ�u�$a���m[�N5�,��{)`�6Bo��`
�|���ei�	��,��Q8B���.~������5�(��dJ\\_G)UטP����@H&Q��̟�O�[� )%� BP���+�͑ip�Q��t�w�����Gkb�%sy��1��I!@i )��ıC�����<H!V8&)$� 9�n��BA����T;7���u�3K�!�<��xKo9��,�r��4n�ݐ"��0��J`�ȐC�(H	�-'���<�pM����P﫵��爚�[T�{�,�J�a�j�s
6<�`4G c8�F������|�`* ���<n;�z� ���/	�$=��ltW+�h��tŇ}�*P�y�PUn����s���Y�X'��x�!��s��P��"�P�8�'ϧ��yI�R���P>MW�a��qǧI�<9���e��#����9T��'"����IY�[M��}]vE>��[6��y�Ĺ�߀�k��T���T~��Z5k�j7����X{@:�:��s�����Z���:�֘�=|�<upG���@���tw"!B����۱Qh�c��R��0<�]Q������~g1��+��ۨ7���-B
-��}����C~�Bʥ�u.ij8=vP���{�Q$-ժ2m���0^�z~y�������]=v[�1W���V����i�#��00����5��L<�5ç��yW���eU�(g�H��ef�s�2�)�<c����t�������
-4�Ƚ����ePo�BWŶll	�%�rj"m&�8�3��(�v���P���M����^�w1?�'N��c�����ބC����'��s��Z�}
���(�������#�����^��4t�'�2�E�l�Vu����~8��q�X���.�F�%����V��`��;���L15��7�u�1T��?x
à�ݨ�A�놕i[�[�x�1�FA��+�qHF�����CE�GG�����{q�q�Tk7jx��\������R(ߖ�Z���p��*q����ez�DƏ#/��|������/�k�Gc��$;�:G����endstream
+x��W��D����Dm	o�moՂ�Y8$���
+9��l����gֻN��9ЩP�ó󛙝�ÏxA��*D���r��
|y5#�"t$��r1��2�)�$�k�S�D$��Q�-Vo��mRwY�T`� ;^,�����6o���._e�����f��,B*f��6�Ld��#�D��@�{�F�(��u�+����+]��a#�Ukdf�AQ�ճ9��:��ծ��~���d��BT�y��[����s�82-
�*���Q��6m��J��q�_�u�4I�N�贗F�[��ٛw�[�9�f1{0Lj(�3.%�p�v]�~�������5�(��d
+E֮W��hw�
+c�� �D1&]����K)��b^�y�#��
���g{:9e҄BEsy�|1����8�')���T��-�^��C�sQ`N��u��sO&�]eWy���6��V7�g��ɽ��OԖS�A�����M�O�G\BDf}��|�.�r�"`���}���H�@�H��4��OM
עh�Hn�؂1�Y;�;kwEך�DM�H����!ܷ����Awٿ�dh>"`8�h�!��wz[���a����O�ʤ�3�#�ɖ�ď��ÕBG��GB��r�Ɖq�T�cOc(R(&�(��de��ٔ
��m��I��{�d���;t.�FR�B�C���|Hq�Mn�";�U�di��vY%��d&�y��莝����J�eR�\m�v\:1�u�r�tT���S���AY,r�W�m:����G`����Pnʤؗ��Y ��
+{���}���eҚ�̕�n��F��~���k�=�=�`$~�C����=U�.=U!�ߵ*�;��>&otu��T@��ɲ0��Q��@ξ�������G�"�gM9�L��W�ꤟ��mp��G�Aa�cR
Q5i�pD4iiO�.w���H&���I�QPG3��(P�k���i��:�WR��8*!Mb�E
�����e�oqD��&��J��X�L�a��f$�a�i�z;AU���n�T������O�'t�!���pp���v���ُ�{�@��?��e ���R�?܊#��;���������2���wI��ؤ�ܬ���K�H/b�[�y�d�"?i�X���L;{3�]�dj��LV�ڄº��q�$��L�w��(��.�bL��Т�re6��د�wLia����ռ�o��n����g�JmG
g��@�����Q�t��b�K��에�k]�K�
����8��y��ju���@2�Q��x��(�ν#�H��m���endstream
 endobj
-2029 0 obj <<
+2061 0 obj <<
 /Type /Page
-/Contents 2030 0 R
-/Resources 2028 0 R
+/Contents 2062 0 R
+/Resources 2060 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 1879 0 R
-/Annots [ 2038 0 R ]
+/Parent 1895 0 R
+/Annots [ 2070 0 R ]
 >> endobj
-2038 0 obj <<
+2070 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [310.336 367.004 343.551 381.948]
@@ -6253,34 +6483,34 @@ endobj
 /A << /S /GoTo /D (gloss-bugzilla) >>
 >> endobj
 38 0 obj <<
-/D [2029 0 R /XYZ 297.751 705.748 null]
+/D [2061 0 R /XYZ 297.751 705.748 null]
 >> endobj
-2031 0 obj <<
-/D [2029 0 R /XYZ 71.731 705.533 null]
+2063 0 obj <<
+/D [2061 0 R /XYZ 71.731 705.533 null]
 >> endobj
-2032 0 obj <<
-/D [2029 0 R /XYZ 71.731 696.925 null]
+2064 0 obj <<
+/D [2061 0 R /XYZ 71.731 696.925 null]
 >> endobj
-2033 0 obj <<
-/D [2029 0 R /XYZ 71.731 682.032 null]
+2065 0 obj <<
+/D [2061 0 R /XYZ 71.731 682.032 null]
 >> endobj
-2034 0 obj <<
-/D [2029 0 R /XYZ 71.731 667.088 null]
+2066 0 obj <<
+/D [2061 0 R /XYZ 71.731 667.088 null]
 >> endobj
-2035 0 obj <<
-/D [2029 0 R /XYZ 71.731 667.088 null]
+2067 0 obj <<
+/D [2061 0 R /XYZ 71.731 667.088 null]
 >> endobj
-2039 0 obj <<
-/D [2029 0 R /XYZ 71.731 329.146 null]
+2071 0 obj <<
+/D [2061 0 R /XYZ 71.731 329.146 null]
 >> endobj
-2040 0 obj <<
-/D [2029 0 R /XYZ 433.454 306.232 null]
+2072 0 obj <<
+/D [2061 0 R /XYZ 433.454 306.232 null]
 >> endobj
-2028 0 obj <<
-/Font << /F33 1306 0 R /F23 1201 0 R /F27 1208 0 R /F44 2037 0 R /F35 1569 0 R /F32 1215 0 R >>
+2060 0 obj <<
+/Font << /F33 1322 0 R /F23 1217 0 R /F27 1224 0 R /F44 2069 0 R /F35 1589 0 R /F32 1231 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-2044 0 obj <<
+2076 0 obj <<
 /Length 2387      
 /Filter /FlateDecode
 >>
@@ -6300,162 +6530,162 @@ n
 ]5��܂��<�s���_�e�޴}3���r}�gN�'��j��Ņ��t�S@�c��X�q�5eL"���$XP]z���@�b�2��P��&
 Px�}���{hB)����V2�NZy}+0��2SǮq��"��J[_�UL��s�r��HƸΒ�ҴNW�ˠ��Kc��]S���U9b ��@wW*q_�D�w���5��ѩ�æ�yт-�`�2�Co%V���W	�wl������ංVs�	m�4�X!��jȧa�I4�\���eM�Ԅoߔ劗W�aT)�P�ѷ������w����u�w�)�r'ĕ �ǐ1E7cĀ���oh�CU!eOťCg�?��w~����endstream
 endobj
-2043 0 obj <<
+2075 0 obj <<
 /Type /Page
-/Contents 2044 0 R
-/Resources 2042 0 R
+/Contents 2076 0 R
+/Resources 2074 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 1879 0 R
-/Annots [ 2051 0 R 2052 0 R 2062 0 R 2064 0 R 2066 0 R 2068 0 R 2070 0 R 2072 0 R ]
+/Parent 2110 0 R
+/Annots [ 2083 0 R 2084 0 R 2094 0 R 2096 0 R 2098 0 R 2100 0 R 2102 0 R 2104 0 R ]
 >> endobj
-2051 0 obj <<
+2083 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [508.095 566.273 537.983 575.184]
 /Subtype /Link
 /A << /S /GoTo /D (os-specific) >>
 >> endobj
-2052 0 obj <<
+2084 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [71.731 553.321 84.184 562.233]
 /Subtype /Link
 /A << /S /GoTo /D (os-specific) >>
 >> endobj
-2062 0 obj <<
+2094 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [89.664 319.893 133.11 328.43]
 /Subtype /Link
 /A << /S /GoTo /D (install-perl) >>
 >> endobj
-2064 0 obj <<
+2096 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [89.664 301.586 191.202 310.498]
 /Subtype /Link
 /A << /S /GoTo /D (install-database) >>
 >> endobj
-2066 0 obj <<
+2098 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [89.664 285.711 166.176 292.565]
 /Subtype /Link
 /A << /S /GoTo /D (install-webserver) >>
 >> endobj
-2068 0 obj <<
+2100 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [89.664 265.721 150.823 274.632]
 /Subtype /Link
 /A << /S /GoTo /D (install-bzfiles) >>
 >> endobj
-2070 0 obj <<
+2102 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [89.664 249.845 169.364 256.699]
 /Subtype /Link
 /A << /S /GoTo /D (install-perlmodules) >>
 >> endobj
-2072 0 obj <<
+2104 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [92.371 229.855 209.093 238.767]
 /Subtype /Link
 /A << /S /GoTo /D (install-MTA) >>
 >> endobj
-1313 0 obj <<
-/D [2043 0 R /XYZ 71.731 718.306 null]
+1329 0 obj <<
+/D [2075 0 R /XYZ 71.731 718.306 null]
 >> endobj
 42 0 obj <<
-/D [2043 0 R /XYZ 354.129 703.236 null]
+/D [2075 0 R /XYZ 354.129 703.236 null]
 >> endobj
-1314 0 obj <<
-/D [2043 0 R /XYZ 71.731 692.184 null]
+1330 0 obj <<
+/D [2075 0 R /XYZ 71.731 692.184 null]
 >> endobj
 46 0 obj <<
-/D [2043 0 R /XYZ 196.111 651.159 null]
+/D [2075 0 R /XYZ 196.111 651.159 null]
 >> endobj
-2045 0 obj <<
-/D [2043 0 R /XYZ 71.731 650.944 null]
+2077 0 obj <<
+/D [2075 0 R /XYZ 71.731 650.944 null]
 >> endobj
-2046 0 obj <<
-/D [2043 0 R /XYZ 71.731 632.374 null]
+2078 0 obj <<
+/D [2075 0 R /XYZ 71.731 632.374 null]
 >> endobj
-2047 0 obj <<
-/D [2043 0 R /XYZ 187.629 620.933 null]
+2079 0 obj <<
+/D [2075 0 R /XYZ 187.629 620.933 null]
 >> endobj
-2050 0 obj <<
-/D [2043 0 R /XYZ 71.731 581.381 null]
+2082 0 obj <<
+/D [2075 0 R /XYZ 71.731 581.381 null]
 >> endobj
-2053 0 obj <<
-/D [2043 0 R /XYZ 71.731 548.34 null]
+2085 0 obj <<
+/D [2075 0 R /XYZ 71.731 548.34 null]
 >> endobj
-2054 0 obj <<
-/D [2043 0 R /XYZ 71.731 524.594 null]
+2086 0 obj <<
+/D [2075 0 R /XYZ 71.731 524.594 null]
 >> endobj
-2055 0 obj <<
-/D [2043 0 R /XYZ 71.731 504.504 null]
+2087 0 obj <<
+/D [2075 0 R /XYZ 71.731 504.504 null]
 >> endobj
-2056 0 obj <<
-/D [2043 0 R /XYZ 71.731 467.707 null]
+2088 0 obj <<
+/D [2075 0 R /XYZ 71.731 467.707 null]
 >> endobj
-2057 0 obj <<
-/D [2043 0 R /XYZ 118.555 429.143 null]
+2089 0 obj <<
+/D [2075 0 R /XYZ 118.555 429.143 null]
 >> endobj
-2058 0 obj <<
-/D [2043 0 R /XYZ 71.731 387.21 null]
+2090 0 obj <<
+/D [2075 0 R /XYZ 71.731 387.21 null]
 >> endobj
-2059 0 obj <<
-/D [2043 0 R /XYZ 71.731 360.739 null]
+2091 0 obj <<
+/D [2075 0 R /XYZ 71.731 360.739 null]
 >> endobj
-2060 0 obj <<
-/D [2043 0 R /XYZ 71.731 347.414 null]
+2092 0 obj <<
+/D [2075 0 R /XYZ 71.731 347.414 null]
 >> endobj
-2061 0 obj <<
-/D [2043 0 R /XYZ 71.731 337.452 null]
+2093 0 obj <<
+/D [2075 0 R /XYZ 71.731 337.452 null]
 >> endobj
-2063 0 obj <<
-/D [2043 0 R /XYZ 71.731 319.893 null]
+2095 0 obj <<
+/D [2075 0 R /XYZ 71.731 319.893 null]
 >> endobj
-2065 0 obj <<
-/D [2043 0 R /XYZ 71.731 301.586 null]
+2097 0 obj <<
+/D [2075 0 R /XYZ 71.731 301.586 null]
 >> endobj
-2067 0 obj <<
-/D [2043 0 R /XYZ 71.731 285.711 null]
+2099 0 obj <<
+/D [2075 0 R /XYZ 71.731 285.711 null]
 >> endobj
-2069 0 obj <<
-/D [2043 0 R /XYZ 71.731 265.721 null]
+2101 0 obj <<
+/D [2075 0 R /XYZ 71.731 265.721 null]
 >> endobj
-2071 0 obj <<
-/D [2043 0 R /XYZ 71.731 249.845 null]
+2103 0 obj <<
+/D [2075 0 R /XYZ 71.731 249.845 null]
 >> endobj
-2073 0 obj <<
-/D [2043 0 R /XYZ 71.731 217.277 null]
+2105 0 obj <<
+/D [2075 0 R /XYZ 71.731 217.277 null]
 >> endobj
-1315 0 obj <<
-/D [2043 0 R /XYZ 71.731 198.971 null]
+1331 0 obj <<
+/D [2075 0 R /XYZ 71.731 198.971 null]
 >> endobj
 50 0 obj <<
-/D [2043 0 R /XYZ 138.296 161.756 null]
+/D [2075 0 R /XYZ 138.296 161.756 null]
 >> endobj
-2074 0 obj <<
-/D [2043 0 R /XYZ 71.731 154.403 null]
+2106 0 obj <<
+/D [2075 0 R /XYZ 71.731 154.403 null]
 >> endobj
-2075 0 obj <<
-/D [2043 0 R /XYZ 163.177 141.631 null]
+2107 0 obj <<
+/D [2075 0 R /XYZ 163.177 141.631 null]
 >> endobj
-2076 0 obj <<
-/D [2043 0 R /XYZ 71.731 135.242 null]
+2108 0 obj <<
+/D [2075 0 R /XYZ 71.731 135.242 null]
 >> endobj
-2077 0 obj <<
-/D [2043 0 R /XYZ 164.427 110.747 null]
+2109 0 obj <<
+/D [2075 0 R /XYZ 164.427 110.747 null]
 >> endobj
-2042 0 obj <<
-/Font << /F23 1201 0 R /F44 2037 0 R /F48 2049 0 R /F27 1208 0 R /F35 1569 0 R /F33 1306 0 R >>
+2074 0 obj <<
+/Font << /F23 1217 0 R /F44 2069 0 R /F48 2081 0 R /F27 1224 0 R /F35 1589 0 R /F33 1322 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-2080 0 obj <<
+2113 0 obj <<
 /Length 2178      
 /Filter /FlateDecode
 >>
@@ -6467,7547 +6697,7745 @@ m
 ^I��0��)C:�z��e��cI��MG������TEQ����}@����A8�����F]`�	і{��U�IL���_�f_4L��a���H4��Y򯁀�VTO����$Px���4&=?��&�j�0`ΞE߰T�B��:���Z����yg��y�mXs����\ʚ!�N����CX]�h��Y���@k�p�K���T����4;��v�}
��?��!J��G�+�ޣs����O�Uf0��^��̌��̌VF��33�03��QfƁ�̌��̌�F�E$3�ef�!9�ط������^�쨐[ui��x �'����p��bB���4mc:dnRz���[���5t�j��5���!��:F
=E
����B
�;��ZPC�<���-�����V��1
A��e���]09"Z��v�4O`k&>�j`���wϮ��E8ԭ�C�����o��V���gs(���T�WȰ�Ϳ%��X��wu+�I��\��\���
�
�ȑi�D�-�Ζ"��q�TC�ͅ�#=���3:;�^R(�&pϚ�'��qx�U���
�sx2���j����Y���n�ׁ��O��!T���Ddbm4)f0xF�������sm�!���*���+�(�?)$��;��H�k5�x$l��M��>�q��x4�>pP��إD�?@.؛Nɚ�|zK:=��e�DA�A�y�	+V��Œ5E/1�׈�	d�m���eZ߂ȅ����hX�`���p�}��F1�2D:��8�Ç
�N���]t�z�{/Qy�DE%Yd	5<?�����B&�����"$����<���d?�ښ��'���%�[�/L�K���T!��sy�<$�C�v%x����G0=*<q�x#�{��q�U&�����)U�����a~ՙ�
���U �ۆ�UC�1h�M�y��,G�b�u��.�	1�M?�fԥ���+&�٫���]WL�C�D������lT1��{3���LH�4����4��Rz�`P\Ao��
 �,&��5B�$(�C�'��)C��N����o>�'��L%�N�����􈂭_Ju�m��^�,*�xBQB�{��`\Ӳ��$\�#�aJW.�\;�7	�n=�B�6��rN'��4˻z��82��ֹ
�\YH���a�t�2���z[�?��/���2.���MZ��:Wy����|���4�gw�kA/��}�Z��T+endstream
 endobj
-2079 0 obj <<
+2112 0 obj <<
 /Type /Page
-/Contents 2080 0 R
-/Resources 2078 0 R
+/Contents 2113 0 R
+/Resources 2111 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 2105 0 R
-/Annots [ 2098 0 R ]
+/Parent 2110 0 R
+/Annots [ 2131 0 R ]
 >> endobj
-2098 0 obj <<
+2131 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [487.887 245.191 505.55 254.102]
 /Subtype /Link
 /A << /S /GoTo /D (gloss-cgi) >>
 >> endobj
-1316 0 obj <<
-/D [2079 0 R /XYZ 71.731 718.306 null]
+1332 0 obj <<
+/D [2112 0 R /XYZ 71.731 718.306 null]
 >> endobj
 54 0 obj <<
-/D [2079 0 R /XYZ 227.213 707.841 null]
+/D [2112 0 R /XYZ 227.213 707.841 null]
 >> endobj
-2081 0 obj <<
-/D [2079 0 R /XYZ 71.731 697.476 null]
+2114 0 obj <<
+/D [2112 0 R /XYZ 71.731 697.476 null]
 >> endobj
-1317 0 obj <<
-/D [2079 0 R /XYZ 71.731 672.608 null]
+1333 0 obj <<
+/D [2112 0 R /XYZ 71.731 672.608 null]
 >> endobj
 58 0 obj <<
-/D [2079 0 R /XYZ 156.121 640.294 null]
+/D [2112 0 R /XYZ 156.121 640.294 null]
 >> endobj
-2082 0 obj <<
-/D [2079 0 R /XYZ 71.731 631.842 null]
+2115 0 obj <<
+/D [2112 0 R /XYZ 71.731 631.842 null]
 >> endobj
-2083 0 obj <<
-/D [2079 0 R /XYZ 163.177 621.365 null]
+2116 0 obj <<
+/D [2112 0 R /XYZ 163.177 621.365 null]
 >> endobj
-2084 0 obj <<
-/D [2079 0 R /XYZ 71.731 614.976 null]
+2117 0 obj <<
+/D [2112 0 R /XYZ 71.731 614.976 null]
 >> endobj
-2085 0 obj <<
-/D [2079 0 R /XYZ 367.427 603.432 null]
+2118 0 obj <<
+/D [2112 0 R /XYZ 367.427 603.432 null]
 >> endobj
-2086 0 obj <<
-/D [2079 0 R /XYZ 71.731 588.324 null]
+2119 0 obj <<
+/D [2112 0 R /XYZ 71.731 588.324 null]
 >> endobj
-2087 0 obj <<
-/D [2079 0 R /XYZ 71.731 573.38 null]
+2120 0 obj <<
+/D [2112 0 R /XYZ 71.731 573.38 null]
 >> endobj
-2088 0 obj <<
-/D [2079 0 R /XYZ 363.982 563.881 null]
+2121 0 obj <<
+/D [2112 0 R /XYZ 363.982 563.881 null]
 >> endobj
-2089 0 obj <<
-/D [2079 0 R /XYZ 331.234 540.568 null]
+2122 0 obj <<
+/D [2112 0 R /XYZ 331.234 540.568 null]
 >> endobj
-2090 0 obj <<
-/D [2079 0 R /XYZ 71.731 512.673 null]
+2123 0 obj <<
+/D [2112 0 R /XYZ 71.731 512.673 null]
 >> endobj
-1318 0 obj <<
-/D [2079 0 R /XYZ 71.731 468.738 null]
+1334 0 obj <<
+/D [2112 0 R /XYZ 71.731 468.738 null]
 >> endobj
 62 0 obj <<
-/D [2079 0 R /XYZ 183.546 433.37 null]
+/D [2112 0 R /XYZ 183.546 433.37 null]
 >> endobj
-2091 0 obj <<
-/D [2079 0 R /XYZ 71.731 424.733 null]
+2124 0 obj <<
+/D [2112 0 R /XYZ 71.731 424.733 null]
 >> endobj
-2092 0 obj <<
-/D [2079 0 R /XYZ 163.177 414.441 null]
+2125 0 obj <<
+/D [2112 0 R /XYZ 163.177 414.441 null]
 >> endobj
-2093 0 obj <<
-/D [2079 0 R /XYZ 71.731 408.052 null]
+2126 0 obj <<
+/D [2112 0 R /XYZ 71.731 408.052 null]
 >> endobj
-2094 0 obj <<
-/D [2079 0 R /XYZ 364.877 396.508 null]
+2127 0 obj <<
+/D [2112 0 R /XYZ 364.877 396.508 null]
 >> endobj
-2095 0 obj <<
-/D [2079 0 R /XYZ 71.731 376.419 null]
+2128 0 obj <<
+/D [2112 0 R /XYZ 71.731 376.419 null]
 >> endobj
-1319 0 obj <<
-/D [2079 0 R /XYZ 71.731 324.678 null]
+1335 0 obj <<
+/D [2112 0 R /XYZ 71.731 324.678 null]
 >> endobj
 66 0 obj <<
-/D [2079 0 R /XYZ 190.186 285.405 null]
+/D [2112 0 R /XYZ 190.186 285.405 null]
 >> endobj
-2096 0 obj <<
-/D [2079 0 R /XYZ 71.731 278.053 null]
+2129 0 obj <<
+/D [2112 0 R /XYZ 71.731 278.053 null]
 >> endobj
-2097 0 obj <<
-/D [2079 0 R /XYZ 71.731 258.142 null]
+2130 0 obj <<
+/D [2112 0 R /XYZ 71.731 258.142 null]
 >> endobj
-2099 0 obj <<
-/D [2079 0 R /XYZ 435.94 208.493 null]
+2132 0 obj <<
+/D [2112 0 R /XYZ 435.94 208.493 null]
 >> endobj
-2100 0 obj <<
-/D [2079 0 R /XYZ 71.731 188.404 null]
+2133 0 obj <<
+/D [2112 0 R /XYZ 71.731 188.404 null]
 >> endobj
-2101 0 obj <<
-/D [2079 0 R /XYZ 384.386 177.609 null]
+2134 0 obj <<
+/D [2112 0 R /XYZ 384.386 177.609 null]
 >> endobj
-1320 0 obj <<
-/D [2079 0 R /XYZ 71.731 170.471 null]
+1336 0 obj <<
+/D [2112 0 R /XYZ 71.731 170.471 null]
 >> endobj
 70 0 obj <<
-/D [2079 0 R /XYZ 166.615 133.256 null]
+/D [2112 0 R /XYZ 166.615 133.256 null]
 >> endobj
-2102 0 obj <<
-/D [2079 0 R /XYZ 71.731 122.891 null]
+2135 0 obj <<
+/D [2112 0 R /XYZ 71.731 122.891 null]
 >> endobj
-2103 0 obj <<
-/D [2079 0 R /XYZ 182.613 100.18 null]
+2136 0 obj <<
+/D [2112 0 R /XYZ 182.613 100.18 null]
 >> endobj
-2104 0 obj <<
-/D [2079 0 R /XYZ 234.796 100.18 null]
+2137 0 obj <<
+/D [2112 0 R /XYZ 234.796 100.18 null]
 >> endobj
-2078 0 obj <<
-/Font << /F33 1306 0 R /F23 1201 0 R /F27 1208 0 R /F35 1569 0 R /F44 2037 0 R >>
+2111 0 obj <<
+/Font << /F33 1322 0 R /F23 1217 0 R /F27 1224 0 R /F35 1589 0 R /F44 2069 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-2109 0 obj <<
-/Length 3004      
+2141 0 obj <<
+/Length 3002      
 /Filter /FlateDecode
 >>
 stream
-xڝZm�۶�~�B�~05#�$�ٙNm��8Sۗ�i'�H�$�(��/�_�]삤D��z<6��r�oxv9X��'X$�HBx�L�8ZlO7���o��	�c�,�	ϛ���E&�8\��*HE�,�P�4������ۣ�;�,�2�=)���l;]yy�����(��׻�o�z7,�����I��L1���9��T�JY�vyc�]��]�� ����KT�`M��q"TÂ�勾m^�V�8](�E����wG��i��񴩊|KD����]E��h��`6DiM�yD�i�/��k��[����dʎ	_2F��,rͯ���b`�bH%� Á�8~s0`۪����ot�W��\�"J�"N!S�o7?��/v�������
�*ȕ0��Ȳpј������ �§dз�7�vʬcȐ(N�	X�l�C?>�OC򪈒W�h��fȇu�*��X�aj��?��ۙ�2�=�����y�At���f)}���g����>.���9�m~(͎f6]���Boݻ���I�	�,%�@qnn�z�_1
�p2��+��{����=A��NѼ����,{����i�bD��D�e�z�|{�!J��ahR�����������X�O�&���6�g&F�H������RB���jO�׵��J`�,�#���$��29U�0��E���w�4�;xc?iB�Xn��TH8	��!(0�H�
S1�,������-��囂Y]��q�賓��L�;�n»D4lYr�wz���w��꛳��k@�{ �Te���e3�?üΜ��V���35�����4h���w���mD8�]bBBm�[�����ԏD
-�I��M��w{�P{��w��C9(ŕBq�";��%"^�@
�.)E "A��(f��f�]��0S�GI"���r�Ǡ̠	hU�n*���ύn-���b>M�3�AS(�pΜ-C@��|�(t�$�@��M˫u�?��N+�܀������s�p��&)'Y`<jJY`��:k�I�����8�[�aK�0�i�"��8�[�[����6rH?Q�����O�;�t����6�$|]Ѽ�m�Vv�+Q:��������M�Im��<n�j�F�X(�O_
-�ܫ���'<3лc냳��R9[9��%�O/�<O�}!�r�ڭ����t�!y�u�!�ڴ��K���Z�Abi�ƭ�q|hW�ġH?O}(i�* u�����$�_���V9V}��7�9i� O���!Q �CoMɪ�<�6�����2�%�ͧ�/6/��k ���47F���j�엳�a��_�����+�K�������=Z��e��n{�>��	��ӵ��jA(��n<�v�)왜���Mӣ�[&��3��t
-�O1	���O]�axF�ᬫ�`�N6�.�
-(�����݂�-R@�`㦈��`c��ݝj(j0:A;��F���j�ɞ���!�4�[Ǣ[�zS<���<���j���*l�W�:N�T lǓ�,EJ;�nfM��Gsr�]!�#�p��BI�2>5=N�ӔuUf�Ji�o�rW��/]�^�[+�vbm�IWc�Rq�tt�A	1���z�T�N'�8A�l�;����Z�e�z6��������v46<Åe1�"����FzSa0("�Ǔ�T����4�H���m+E�	@̧w@���$��\���Ih��]f�{���D���_1�!����s��0!�?^�[k�e)SP��,�zK?�Z��z�4+e����((���Y-�఑��
-8�'��
- �Z��rAP�A���魺��i���O��Tf��0�ϛ8t�zESji����mh�VN!˅T.�0���P�0��3��h�^8�e����+���](c���[�	ϗΈ�Ŷ%u
e<��6з�n	�	�ѧVv<O.})h��J�Z�5c���:�V��ooq�ٱ��s,�s=���P�����
-}�������:��*���H�~Jà�Q
GcŨ���>�!���0�B���;A�����֬.���U���W5�4��-�ʸr�\/b#�Y���<(Q(�4���~l/��K�j8���Ɓ���>�B���?�?T�A�/���
t"�zr-�Df�퐿�Owy�r~�(%[��ݙ�ր~�T5N�k���R�M	�n��]"D�Tc�E�2�
L������b�I��}�2{���*��F��P݇���[sЕ:r2pz��=�MH����R��	�^��v���t	Ec_�I��݇��T�H��A/�dGHii
�����$�yl)d�3~@�٥���Y?�K�PSBy'���n��gghş4f�����a����!22S���CN���D?��0�H$Q"�+["8i6p�-*����,�4x#�GO]_a7�jQ��+�(�Mc[$6հ��>�h��z�c�a"N}B��|l�ҥ
-���~����~���D$I-M����*�p�3L���IH[�eoAm
-�+!*LzӾ�ɞD��ўO��
-���1���+V��C��n��L�*;��m�]х��n�p��.��s;(�6|h蛦�?D�/�|_7��0=�����=
 z)`�t����1o��RU��f3�&��hLv�����o+������h�MB�Sc�o��(��}kmU7���[�h[�}$�)�V,�d���cTI��)�[�NO���f�wn�d�T'A��^������J ��q�Kڳx�*�,�}���v8��ݳ+���L���I�ȼ���~�;���uо��ìf8��U�[���3,��os�pN��Ԭ�$t?�AԶ���S��E�ao#��ʝ��%X�kFPD���v�Z�B�A(
��ls,[[b����~����	�=��3���_�s��}�w�v�_^�SˬR{�O���,�j����|6�|e�;S4܎_?j��4H�<i�,��.�R$�tRp��K�`��d�endstream
+xڝZm�۶�~�B�~05#�$�ٙN�k�q�g_Ɨ��$ 	'�G�_|����b$%����	,��}ó��‡?�"	D�CfB��b{��{x��U�kfYOx��]��6���pqw�PA*�d��R��\��~����L�\���������tQ���������_﾿��ݰh&"K�g�r<3�d2*���S*e���vU��v����|J//Q
0,Z�5q��ljPA◯��yUT[]�t�(�2�c�H��%ڧ�*�-���wQ��!£��5��ey�y��"�%�n	�n��);&|�]��5�����!�u ��"�����m��ߗ���]^��<pA�(Q�8
�L1$�]�����A��������Wȫ W�$["��Ec�W��~�`�]>'��e����SfC�Dq2fH��beC���!}��WE���G�(̐7C>��T�e�"S�|g��$���/C��}�aHoz��D|�o���z{v�:o����R�ޝ�����hf��^�.�ֽ�Y��$����2Q"��v��7��`;'s������|�$�����m��� ���'J(�.��)�@�Q|I�Z&��xȷ�T|���!�o	/`��{n^)�����m�{k�~fb�$
+OL�?/%$9�������[X	�%x�B���d�W&�
+}�1���}�N��yb��a�G"M( �-ڝ*��!AR0���a*�%�Ԃ��~�^��|S0����2��}v��Ist�Mx����Kn�N�6��_<U}s�xx	��ud�
+b���68�l��'�יc]5�j`�v��Q_vyACЀM_Ҡ�N�-�ǾKLH��Ck������H��0���I�"�n��j��¼},���B� XdG�>��D��A��~�%�D$(�o�LS�����
+3�}�$I��n(W~���V%릂lq����+���h13�4��[����2�Q��1�B�kAr	�a��ߴ�Zw�Q�=+�t��O
x<�<
M0G}�j�r�v��F������M�q0�S���DAp
+��6+��à1����K|k#��#EN�α��x*�#HJ��hqA���kݶne�κB���)�
+��o.�ܴ��6	,���fm�����������1�z�3�31�>8�-���3h\b�������g�(ר�
+�x`K@�w�v��k�M���D@�$��i�:�LJv5J���ԇR�ƮR�	���:A�����i5��C�;zӘ��2�4����,0�֔��ͳi�ɸ�k�-SX���|:��l��ܸ8M�q3`�y��~=���;�������/��A�xu
+0�ڣ�[����� �>]K�1P��"��cn�{�žɩ�� @�4=��e�:s�N�����P/���6�g�κj�
f�d3Y�������[ж�@
+�l�9l̠���S
E
FGh����Y �Ym?���$�j>M�ֱ���O,�*�ohx��j�_�
+[�ՠ�ӆ?����4K��N��Y�}��]�fW��m�0;�PR��OM���4eD�Y�R�����kW�WD���
+���X�s���T�2�jEPB��`�^8��2N��[�p@c{��pY��
�r�{QGJ;��B��G��E@Ê{#��0�S��IN*�j��4�H���m+E�	@̧w@���$��\���Ih_�.3���K��X濯�������'Lȼ����s^�T�@%�0��ҏ/�2dz�0�Jٹ��:
+
+@���qVK#8ld~����Y���(�����\T�D�$3xiz�.&mA�j���1�$6L��&]���ԂZ{���64n+'���L*l�j�B(o�x��~a4n/��fw�B҅H��.���|��-ބ�KgD�bے��2��N�z�-� ʞ]��<�����[:)�k��S��[�k�\[�o�oq�ٱ��K,�s����P����
+}�������:��*���H�~Jà�Q
GcŨ�����!���0�B���;A�����֬����U���W54��-�ʸr�\.b#�Y���<(Q(�4���~jϑ�K�j8���Ɓ���>�B���?�?T�A�/���
t"�zr-�Df�퐿�Owy�z~�(%[u���`k@�o��
+�ĵ��m)��G�Kԁ."M��t�"�ʊ?�&�~�^�Y��(hxS����G��!���g��C�!p�z��t����^��Ew�.�`F���wĽ���]�=�#]B���iR�y���J�9���)-͠�t�7^8�d4��#�ly��<��v=�gw	jJ(�b�ԍa��������w��]c�4�tRb�4DFf
+��tÉ]���ܺ&g��$JteK'ͦ�E%uQ򁥕od���+�&^-��~��E�il�Ħ�`��gm��<V�}j;LĩO(q����.]�p���W*����ID���D�yio�Q���G?��`����U�~Q����0�r�¤7��ܓ4����b]�!��<&�"`pŊ�vbcH6ҍR��Xe'~���+��ѭn�م|{n�݆��}�T������ᦝ�F��p��^���@/��t�<�
S�C�J��l���z�Ɏ_��x�m�\�?T������I�~��b�`�
•�o-⠭��_�z���mk��D2eՊE�L�^w,�*��8�p���	W8�L�n�m��7ՑFP��:�:5����)n���,��J4˸C�m8ǣN��@���n~A<G�)oR72�����3��N��w%��0���7q��֫1���=��!��/5�0	ݏqP��-+��{�d��H��r'�&C	V���3�����rJ��6��֖f?�����13qBg����+"�#�����;W���/ƩeV����]�
DM�}�zg>�b��2��)n�/5@l$Ϟ4F���B)�L:)�P���0_鿻,d�endstream
 endobj
-2108 0 obj <<
+2140 0 obj <<
 /Type /Page
-/Contents 2109 0 R
-/Resources 2107 0 R
+/Contents 2141 0 R
+/Resources 2139 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 2105 0 R
-/Annots [ 2120 0 R 2129 0 R 2130 0 R ]
+/Parent 2110 0 R
+/Annots [ 2152 0 R 2161 0 R 2162 0 R ]
 >> endobj
-2120 0 obj <<
+2152 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [146.43 500.387 191.262 509.298]
 /Subtype /Link
 /A << /S /GoTo /D (configuration) >>
 >> endobj
-2129 0 obj <<
+2161 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [446.147 350.25 505.908 359.161]
 /Subtype /Link
 /A << /S /GoTo /D (win32-perl-modules) >>
 >> endobj
-2130 0 obj <<
+2162 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [71.731 324.347 120.707 333.258]
+/Rect [71.731 324.347 120.159 333.258]
 /Subtype /Link
 /A << /S /GoTo /D (install-perlmodules-manual) >>
 >> endobj
-2110 0 obj <<
-/D [2108 0 R /XYZ 71.731 741.22 null]
+2142 0 obj <<
+/D [2140 0 R /XYZ 71.731 741.22 null]
 >> endobj
-2111 0 obj <<
-/D [2108 0 R /XYZ 139.147 708.344 null]
+2143 0 obj <<
+/D [2140 0 R /XYZ 139.147 708.344 null]
 >> endobj
-2112 0 obj <<
-/D [2108 0 R /XYZ 71.731 693.235 null]
+2144 0 obj <<
+/D [2140 0 R /XYZ 71.731 693.235 null]
 >> endobj
-2113 0 obj <<
-/D [2108 0 R /XYZ 118.555 657.684 null]
+2145 0 obj <<
+/D [2140 0 R /XYZ 118.555 657.684 null]
 >> endobj
-2114 0 obj <<
-/D [2108 0 R /XYZ 393.169 646.207 null]
+2146 0 obj <<
+/D [2140 0 R /XYZ 393.169 646.207 null]
 >> endobj
-2115 0 obj <<
-/D [2108 0 R /XYZ 273.304 634.551 null]
+2147 0 obj <<
+/D [2140 0 R /XYZ 273.304 634.551 null]
 >> endobj
-2116 0 obj <<
-/D [2108 0 R /XYZ 71.731 612.63 null]
+2148 0 obj <<
+/D [2140 0 R /XYZ 71.731 612.63 null]
 >> endobj
-2117 0 obj <<
-/D [2108 0 R /XYZ 202.34 592.924 null]
+2149 0 obj <<
+/D [2140 0 R /XYZ 202.34 592.924 null]
 >> endobj
-1321 0 obj <<
-/D [2108 0 R /XYZ 71.731 585.786 null]
+1337 0 obj <<
+/D [2140 0 R /XYZ 71.731 585.786 null]
 >> endobj
 74 0 obj <<
-/D [2108 0 R /XYZ 200.472 548.571 null]
+/D [2140 0 R /XYZ 200.472 548.571 null]
 >> endobj
-2118 0 obj <<
-/D [2108 0 R /XYZ 71.731 541.218 null]
+2150 0 obj <<
+/D [2140 0 R /XYZ 71.731 541.218 null]
 >> endobj
-2119 0 obj <<
-/D [2108 0 R /XYZ 303.371 528.446 null]
+2151 0 obj <<
+/D [2140 0 R /XYZ 303.371 528.446 null]
 >> endobj
-2121 0 obj <<
-/D [2108 0 R /XYZ 71.731 495.405 null]
+2153 0 obj <<
+/D [2140 0 R /XYZ 71.731 495.405 null]
 >> endobj
-2122 0 obj <<
-/D [2108 0 R /XYZ 179.188 484.611 null]
+2154 0 obj <<
+/D [2140 0 R /XYZ 179.188 484.611 null]
 >> endobj
-2123 0 obj <<
-/D [2108 0 R /XYZ 71.731 459.54 null]
+2155 0 obj <<
+/D [2140 0 R /XYZ 71.731 459.54 null]
 >> endobj
-2124 0 obj <<
-/D [2108 0 R /XYZ 71.731 459.54 null]
+2156 0 obj <<
+/D [2140 0 R /XYZ 71.731 459.54 null]
 >> endobj
-2125 0 obj <<
-/D [2108 0 R /XYZ 71.731 438.67 null]
+2157 0 obj <<
+/D [2140 0 R /XYZ 71.731 438.67 null]
 >> endobj
-2126 0 obj <<
-/D [2108 0 R /XYZ 71.731 438.67 null]
+2158 0 obj <<
+/D [2140 0 R /XYZ 71.731 438.67 null]
 >> endobj
-2127 0 obj <<
-/D [2108 0 R /XYZ 71.731 396.142 null]
+2159 0 obj <<
+/D [2140 0 R /XYZ 71.731 396.142 null]
 >> endobj
-2128 0 obj <<
-/D [2108 0 R /XYZ 71.731 363.201 null]
+2160 0 obj <<
+/D [2140 0 R /XYZ 71.731 363.201 null]
 >> endobj
-2131 0 obj <<
-/D [2108 0 R /XYZ 71.731 314.384 null]
+2163 0 obj <<
+/D [2140 0 R /XYZ 71.731 314.384 null]
 >> endobj
-2132 0 obj <<
-/D [2108 0 R /XYZ 71.731 314.384 null]
+2164 0 obj <<
+/D [2140 0 R /XYZ 71.731 314.384 null]
 >> endobj
-2133 0 obj <<
-/D [2108 0 R /XYZ 71.731 293.514 null]
+2165 0 obj <<
+/D [2140 0 R /XYZ 71.731 293.514 null]
 >> endobj
-2134 0 obj <<
-/D [2108 0 R /XYZ 125.419 269.019 null]
+2166 0 obj <<
+/D [2140 0 R /XYZ 125.419 269.019 null]
 >> endobj
-2135 0 obj <<
-/D [2108 0 R /XYZ 71.731 266.862 null]
+2167 0 obj <<
+/D [2140 0 R /XYZ 71.731 266.862 null]
 >> endobj
-2136 0 obj <<
-/D [2108 0 R /XYZ 71.731 251.918 null]
+2168 0 obj <<
+/D [2140 0 R /XYZ 71.731 251.918 null]
 >> endobj
-2137 0 obj <<
-/D [2108 0 R /XYZ 204.375 230.763 null]
+2169 0 obj <<
+/D [2140 0 R /XYZ 204.375 230.763 null]
 >> endobj
-2138 0 obj <<
-/D [2108 0 R /XYZ 465.976 207.45 null]
+2170 0 obj <<
+/D [2140 0 R /XYZ 465.976 207.45 null]
 >> endobj
-2139 0 obj <<
-/D [2108 0 R /XYZ 76.712 179.156 null]
+2171 0 obj <<
+/D [2140 0 R /XYZ 76.712 179.156 null]
 >> endobj
-2140 0 obj <<
-/D [2108 0 R /XYZ 71.731 159.231 null]
+2172 0 obj <<
+/D [2140 0 R /XYZ 71.731 159.231 null]
 >> endobj
-2141 0 obj <<
-/D [2108 0 R /XYZ 140.002 112.606 null]
+2173 0 obj <<
+/D [2140 0 R /XYZ 140.002 112.606 null]
 >> endobj
-2107 0 obj <<
-/Font << /F33 1306 0 R /F27 1208 0 R /F35 1569 0 R /F23 1201 0 R /F44 2037 0 R /F48 2049 0 R >>
+2139 0 obj <<
+/Font << /F33 1322 0 R /F27 1224 0 R /F35 1589 0 R /F23 1217 0 R /F44 2069 0 R /F48 2081 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-2144 0 obj <<
-/Length 2025      
+2176 0 obj <<
+/Length 1983      
 /Filter /FlateDecode
 >>
 stream
-xڭ�]o�6���+|iKR߾K�6��Y�b�aPl�fK�,7�~�E*�<G*Z�d��y��P�$1��OL<�<2`�u&��>��/7o�Q\�EMs�z���eM��d�4���o�Y�����6Lޅ�<�f��S��q���p�����|u��������/oޭ^M�c�o��*5��I�j�i��;̶�v}��H�������>���q���}|��Y����ts�G��$}��83�8����u&�i���491��Cz�zB�™�F��9�u�M+5�0�ә�&�Ko��9|�N?��;��w
-#���&
O�~�Τ3}��Δ�*�����G���,���E�^��F�۹��q@*]�����$ݼ4��f�6��v�Q��jl��2n-�͢����R3l_���,~���Ib;P��:*l(�3Ox4�J��2�d���z
�"�[a��u�G��{5\�����pɤ��@88g�O����PJT[,�C�� ʻ��p���.�Mv���"��J�vݫ�W�z�k<�
����|~x9������	$��RC�
-�b&���k�V��������ï�XB�"�RiЄ�j��&��5�»�5w��xtH8w�	��|�E$˅֥!U�����(���0$»Vy���0q=��Zq�̷��V�;6M�Ҡ�D��C	t�Ɠ ��
-�ڰ�y|A�Sy�ʅ��	�륆�P�q�i�+WH
-9�]!��ҠȍD��(��0j»Vy�;��F]�l�%�ۇr��I5
����f��A�w+l
�r�|������@��p��*&^J"��i�H�t��7	��X�ڰG����� ��,R�F�q�
hW
���\�܆��QPF���0ҫ���*�TVŏj�r6�zf�ZV���oK���i�	Y��x
�'�[a�3'����6N��X}XO�mT_�{��d�q�ˡ|�,?a��J�PM��3�f����hC+��7����Ux�?�b{�#{^jH[aL^�W��{Ǵ�����|M�%����|���Pmh��S�d58�)��
+9��RC�����pm/�ߑ�a��k��M���5}����mh�/Ӣ��߼[�yPNXd�K
�
-6u���`vl����4hv���L�x��цVxՆߗ�*=>�>����1dzɾ��Xm�y��R��V u��F��d�*
�##!�;=^ù!�[a���8�T���TފV�fs����hjB0ߢw,5
J�H�K��05»Vy��<{���|��]n��v�o�P������^>n�ܔCӼ����.v�;2������YJ�}O��h�TZ�U���׻�(��(�L�]��}�!��-��
o}������(�_�����V�}�#����Rs���ug3ON��@����&馭��eq4m]��tޭ��|q�*6��6^�=f��df��O^=�Zޕ��� ��p�;�Eu�_���~�A�:>�$�V�Qp�=l��0\»V���쿽��0c܍���^��M����T�0��R��Jƫ�����6;&ìP�FHe{yV�����M|>�u�f���燒�LR2�z$�J��2������hC+�j�ç�����q��K��ɾ��YX>�aMg�O��G}��xm����n�40O�#$g�fҲɜU,gFQ��z�X
��n�-�ůT��W�YP��0\�g�Y�^���̢Y�9��7Yz>꯮��:���uGAC��nN�5	��TH�mc�� Rʻ�B���Ώ�u���\��G3u}���i%��E����X
3%�[a;w�/������HǑ^$��|PE�9���mkC��`􌢠�n�z���ޭ�5z��q�2��z�e(K2�+HP�e(t��c5��n�U��{$�~9.e&�J�/��~��{���hAA�Ju}����͠��s�s���\�Z>E�R $��x���N�>�$�fТ*<��{�ƫ'��s��!;T�Kq6T0�{I板J�y�ρ���FR���^��:��ʶendstream
+xڭ�os�F���S�4S_8���wv�8�X�k+��4�FXb�@�������]�$������������̀|�r�Zp0}f:b���r�kŅ�\�4W�7o�[��g�c�6O3�{�wg�e2O���������XF�����d�J�2H�8ݩ�W��q��?7��y�y5��|�"�Ukz
3ݦa��'�mU���4w�q���:���D��1��R�eO�xȶ�$��&ݪ�rŹ�i|8ԇ�.�Q^�YZ0��Cv�B탅ih���8Fa$��
+YP�ق�S��;O�>D�O���>��^b8�d�N�S�$����#��U�,�>����Ve�.�u�������k�R�a؈Q��F���Y�κF���0�_��_P��A��z���o��L�ן,ƹ:����T�Al��_G�
ex��.M�Ѡ��D6�DY���aޝ���:(����Y~J��!���� |��=bZ�C-�m�0^�(�N؊�ժ�:g6�uW͋d�
�u��^m��}���6t�+������7��m0�d�k
��m�0ɷm%p�F|����ï�X:��|���h4h:�D�I���{�����}M���l4
+�]V��Q��d9��:4�F�B��P����Dxw�J��q����
'�y6u�r�¦	4����V�(���tD:�e6טGP��D޻naY� �^kH_5��3c�FpA!���MN#o4(r-�����5�����A�����m{��S�0ۃb��H-
����f���Q�w'l�z�~�g���a�ն�*'�#He)�Ry-M�%�#T�i�|c�j���g�F��T
+�D�Mlj7�<�l��u+��z��7��>3R���Zb���Q�VNz!	�A^�eI�\��I��-
�-!K��q��w'lw�79��t����wu��4�E�5x��M�qX����e��+�O/@-
�OKȊy�k:F�
����@^.�WA�_`�v
��y�!m��3�g�*-�;�-�܄C��-
��ZB��^��B��^M-0�����f6��T�k
i*��Ιkw���8�9&]ӷ4hZ��������hC'|�5�HH����ͅr�"�_kHoY���m��c���饸�A��%�fb�kzv�6t��6�������s��_8.�M��֐�r�lt��!5�A�1o����X�`��H�Ѡ9�r�3�5�»Vz���N�:ȋ�F��&�m8$5(M'S�y�ciiPjZB�X�Ʃޝ���v������π�r���{�x����Tf�������q�����U��{�)V옾�<����4�ZB�{�&���	/۠`��`��7I��s��ZCZs�d�pμ�=��Rṿ�|Q�6�[u�5�Գ�������l�O��\sf�ڀ�֭-I?mgA�]����o5�.»V��P��F5����S�~���׏{�������~_�AY���U��(3���x��3,���H0�ZQ�E��V�p	�NXi�1����zaÌq7���$oZ�_���,��$V0^��-t��3g�������'����>�Ƨb
+�{9_�>?Ԥ&`2M���H0TZQ�B��Vӱm脗�x����gq9�����{�!���1O�g�t� !��9zT'��~�C�m�Vt��y"���63-��Y#�r�U�Э��x��N��I�F��C���õ|�G�E+N�,�g�SX��ɳ�Q}ua�뎊� �9_�$�ZQ!E��V�H)�N��C���@�q��ُf�xp	�$�F�1Պ�)���gJxw���`_�%\^�),f%�8N#�J�S� �
+�����֚^#��iEE݆
X��#�;a[��c�2��|�e(�d0W��	J+*P��k�j��	+��H��=d��
��$�@i��/����7
+�TdЭT�gn|�����̷�$��_6����7�ݶF�{�M@��BK����j}��n���endstream
 endobj
-2143 0 obj <<
+2175 0 obj <<
 /Type /Page
-/Contents 2144 0 R
-/Resources 2142 0 R
+/Contents 2176 0 R
+/Resources 2174 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 2105 0 R
-/Annots [ 2155 0 R 2162 0 R 2170 0 R 2175 0 R 2178 0 R 2181 0 R 2184 0 R 2191 0 R 2200 0 R ]
+/Parent 2110 0 R
+/Annots [ 2187 0 R 2194 0 R 2202 0 R 2207 0 R 2210 0 R 2213 0 R 2216 0 R 2223 0 R 2232 0 R ]
 >> endobj
-2155 0 obj <<
+2187 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [89.664 570.695 140.592 579.606]
 /Subtype /Link
 /A << /S /GoTo /D (install-modules-dbd-mysql) >>
 >> endobj
-2162 0 obj <<
+2194 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [89.664 516.897 126.595 525.808]
 /Subtype /Link
 /A << /S /GoTo /D (install-modules-template) >>
 >> endobj
-2170 0 obj <<
+2202 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [89.664 435.203 104.05 444.114]
 /Subtype /Link
 /A << /S /GoTo /D (install-modules-gd) >>
 >> endobj
-2175 0 obj <<
+2207 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [89.664 399.338 136.707 408.249]
 /Subtype /Link
 /A << /S /GoTo /D (install-modules-chart-base) >>
 >> endobj
-2178 0 obj <<
+2210 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [89.664 381.405 134.485 390.316]
 /Subtype /Link
 /A << /S /GoTo /D (install-modules-gd-graph) >>
 >> endobj
-2181 0 obj <<
+2213 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [89.664 363.472 127.003 372.383]
 /Subtype /Link
 /A << /S /GoTo /D (install-modules-gd-text) >>
 >> endobj
-2184 0 obj <<
+2216 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [89.664 345.539 137.574 354.451]
 /Subtype /Link
 /A << /S /GoTo /D (install-modules-xml-twig) >>
 >> endobj
-2191 0 obj <<
+2223 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [89.664 291.741 139.865 300.652]
 /Subtype /Link
 /A << /S /GoTo /D (install-modules-patchreader) >>
 >> endobj
-2200 0 obj <<
+2232 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [89.664 220.01 136.368 228.921]
 /Subtype /Link
 /A << /S /GoTo /D (install-modules-soap-lite) >>
 >> endobj
-2145 0 obj <<
-/D [2143 0 R /XYZ 71.731 667.397 null]
->> endobj
-2146 0 obj <<
-/D [2143 0 R /XYZ 170.798 654.545 null]
->> endobj
-2147 0 obj <<
-/D [2143 0 R /XYZ 71.731 647.407 null]
->> endobj
-2148 0 obj <<
-/D [2143 0 R /XYZ 89.664 626.65 null]
->> endobj
-2149 0 obj <<
-/D [2143 0 R /XYZ 71.731 624.493 null]
->> endobj
-2150 0 obj <<
-/D [2143 0 R /XYZ 89.664 608.717 null]
->> endobj
-2151 0 obj <<
-/D [2143 0 R /XYZ 71.731 606.934 null]
->> endobj
-2152 0 obj <<
-/D [2143 0 R /XYZ 89.664 590.785 null]
->> endobj
-2153 0 obj <<
-/D [2143 0 R /XYZ 71.731 589.001 null]
->> endobj
-2154 0 obj <<
-/D [2143 0 R /XYZ 89.664 572.852 null]
->> endobj
-2156 0 obj <<
-/D [2143 0 R /XYZ 71.731 570.695 null]
->> endobj
-2157 0 obj <<
-/D [2143 0 R /XYZ 89.664 554.919 null]
->> endobj
-2158 0 obj <<
-/D [2143 0 R /XYZ 71.731 552.762 null]
->> endobj
-2159 0 obj <<
-/D [2143 0 R /XYZ 89.664 536.986 null]
->> endobj
-2160 0 obj <<
-/D [2143 0 R /XYZ 71.731 534.829 null]
->> endobj
-2161 0 obj <<
-/D [2143 0 R /XYZ 89.664 519.054 null]
->> endobj
-2163 0 obj <<
-/D [2143 0 R /XYZ 71.731 516.897 null]
->> endobj
-2164 0 obj <<
-/D [2143 0 R /XYZ 89.664 501.121 null]
->> endobj
-2165 0 obj <<
-/D [2143 0 R /XYZ 71.731 499.338 null]
->> endobj
-2166 0 obj <<
-/D [2143 0 R /XYZ 89.664 483.188 null]
->> endobj
-2167 0 obj <<
-/D [2143 0 R /XYZ 169.145 465.255 null]
->> endobj
-2168 0 obj <<
-/D [2143 0 R /XYZ 71.731 458.117 null]
->> endobj
-2169 0 obj <<
-/D [2143 0 R /XYZ 89.664 437.36 null]
->> endobj
-2171 0 obj <<
-/D [2143 0 R /XYZ 71.731 435.203 null]
->> endobj
-2172 0 obj <<
-/D [2143 0 R /XYZ 89.664 419.427 null]
->> endobj
-2173 0 obj <<
-/D [2143 0 R /XYZ 71.731 417.27 null]
->> endobj
-2174 0 obj <<
-/D [2143 0 R /XYZ 89.664 401.494 null]
->> endobj
-2176 0 obj <<
-/D [2143 0 R /XYZ 71.731 399.338 null]
->> endobj
 2177 0 obj <<
-/D [2143 0 R /XYZ 89.664 383.562 null]
+/D [2175 0 R /XYZ 71.731 667.397 null]
+>> endobj
+2178 0 obj <<
+/D [2175 0 R /XYZ 170.798 654.545 null]
 >> endobj
 2179 0 obj <<
-/D [2143 0 R /XYZ 71.731 381.405 null]
+/D [2175 0 R /XYZ 71.731 647.407 null]
 >> endobj
 2180 0 obj <<
-/D [2143 0 R /XYZ 89.664 365.629 null]
+/D [2175 0 R /XYZ 89.664 626.65 null]
+>> endobj
+2181 0 obj <<
+/D [2175 0 R /XYZ 71.731 624.493 null]
 >> endobj
 2182 0 obj <<
-/D [2143 0 R /XYZ 71.731 363.472 null]
+/D [2175 0 R /XYZ 89.664 608.717 null]
 >> endobj
 2183 0 obj <<
-/D [2143 0 R /XYZ 89.664 347.696 null]
+/D [2175 0 R /XYZ 71.731 606.934 null]
+>> endobj
+2184 0 obj <<
+/D [2175 0 R /XYZ 89.664 590.785 null]
 >> endobj
 2185 0 obj <<
-/D [2143 0 R /XYZ 71.731 345.539 null]
+/D [2175 0 R /XYZ 71.731 589.001 null]
 >> endobj
 2186 0 obj <<
-/D [2143 0 R /XYZ 89.664 329.763 null]
->> endobj
-2187 0 obj <<
-/D [2143 0 R /XYZ 71.731 327.607 null]
+/D [2175 0 R /XYZ 89.664 572.852 null]
 >> endobj
 2188 0 obj <<
-/D [2143 0 R /XYZ 89.664 311.831 null]
+/D [2175 0 R /XYZ 71.731 570.695 null]
 >> endobj
 2189 0 obj <<
-/D [2143 0 R /XYZ 71.731 309.674 null]
+/D [2175 0 R /XYZ 89.664 554.919 null]
 >> endobj
 2190 0 obj <<
-/D [2143 0 R /XYZ 89.664 293.898 null]
+/D [2175 0 R /XYZ 71.731 552.762 null]
+>> endobj
+2191 0 obj <<
+/D [2175 0 R /XYZ 89.664 536.986 null]
 >> endobj
 2192 0 obj <<
-/D [2143 0 R /XYZ 71.731 291.741 null]
+/D [2175 0 R /XYZ 71.731 534.829 null]
 >> endobj
 2193 0 obj <<
-/D [2143 0 R /XYZ 89.664 275.965 null]
->> endobj
-2194 0 obj <<
-/D [2143 0 R /XYZ 71.731 273.808 null]
+/D [2175 0 R /XYZ 89.664 519.054 null]
 >> endobj
 2195 0 obj <<
-/D [2143 0 R /XYZ 89.664 258.032 null]
+/D [2175 0 R /XYZ 71.731 516.897 null]
 >> endobj
 2196 0 obj <<
-/D [2143 0 R /XYZ 71.731 255.876 null]
+/D [2175 0 R /XYZ 89.664 501.121 null]
 >> endobj
 2197 0 obj <<
-/D [2143 0 R /XYZ 89.664 240.1 null]
+/D [2175 0 R /XYZ 71.731 499.338 null]
 >> endobj
 2198 0 obj <<
-/D [2143 0 R /XYZ 71.731 237.943 null]
+/D [2175 0 R /XYZ 89.664 483.188 null]
 >> endobj
 2199 0 obj <<
-/D [2143 0 R /XYZ 89.664 222.167 null]
+/D [2175 0 R /XYZ 169.145 465.255 null]
 >> endobj
-2201 0 obj <<
-/D [2143 0 R /XYZ 71.731 220.01 null]
+2200 0 obj <<
+/D [2175 0 R /XYZ 71.731 458.117 null]
 >> endobj
-2202 0 obj <<
-/D [2143 0 R /XYZ 89.664 204.234 null]
+2201 0 obj <<
+/D [2175 0 R /XYZ 89.664 437.36 null]
 >> endobj
 2203 0 obj <<
-/D [2143 0 R /XYZ 71.731 202.077 null]
+/D [2175 0 R /XYZ 71.731 435.203 null]
 >> endobj
 2204 0 obj <<
-/D [2143 0 R /XYZ 89.664 186.301 null]
+/D [2175 0 R /XYZ 89.664 419.427 null]
 >> endobj
 2205 0 obj <<
-/D [2143 0 R /XYZ 71.731 184.145 null]
+/D [2175 0 R /XYZ 71.731 417.27 null]
 >> endobj
 2206 0 obj <<
-/D [2143 0 R /XYZ 89.664 168.369 null]
->> endobj
-2207 0 obj <<
-/D [2143 0 R /XYZ 71.731 166.212 null]
+/D [2175 0 R /XYZ 89.664 401.494 null]
 >> endobj
 2208 0 obj <<
-/D [2143 0 R /XYZ 89.664 150.436 null]
+/D [2175 0 R /XYZ 71.731 399.338 null]
 >> endobj
 2209 0 obj <<
-/D [2143 0 R /XYZ 71.731 148.279 null]
->> endobj
-2210 0 obj <<
-/D [2143 0 R /XYZ 89.664 132.503 null]
+/D [2175 0 R /XYZ 89.664 383.562 null]
 >> endobj
 2211 0 obj <<
-/D [2143 0 R /XYZ 71.731 130.346 null]
+/D [2175 0 R /XYZ 71.731 381.405 null]
 >> endobj
 2212 0 obj <<
-/D [2143 0 R /XYZ 89.664 114.57 null]
->> endobj
-2213 0 obj <<
-/D [2143 0 R /XYZ 71.731 112.414 null]
+/D [2175 0 R /XYZ 89.664 365.629 null]
 >> endobj
 2214 0 obj <<
-/D [2143 0 R /XYZ 89.664 96.638 null]
+/D [2175 0 R /XYZ 71.731 363.472 null]
 >> endobj
-2142 0 obj <<
-/Font << /F33 1306 0 R /F27 1208 0 R >>
-/ProcSet [ /PDF /Text ]
+2215 0 obj <<
+/D [2175 0 R /XYZ 89.664 347.696 null]
 >> endobj
 2217 0 obj <<
-/Length 1817      
-/Filter /FlateDecode
->>
-stream
-xڥko�6�{~��Ul����>5Kth�Glú�D�Bd���ޯ�=HII�� ��x<���
-f��Y�i�\�2�g��B�vpr{X��%YNh��?�
-���_%�l��EA��YJ?��l]����W�N�󥌅'}^_צSUU�;�_��˪R��?_ܬ�G�0�WY�E��3�d8�(��>IC?KC�L���?��f������a
-�d>T(pHG��l����]��|�W�&�+��1Ƕɵ1����H��7��3ɩ�P|��s-�>�� 7cI6M�1عGm�V|9oDz�w�שvd�Nۛ�.��[�ޞ�~{�Ԩޯ��6i*�niʪ��B�x��A�5�A�ޡ1��-�, �S�r��m��Dz �S��<�꫎i�\p���T�?�����K���z�kK�F�oiE�
-�h4�tj $�H:�ǰ��L#R�À9�����f�r/f��Uaa]�c���1^���-]Sk�f|޽Q�;S�l!�6��Dwܢ�On��}��B�ms���L��ۀb䜶0��X�xؔUٝ�Pv{�X+��������vB#��[��H���<����Y���_Z1\x��]��+�����������P:B�/�0
-�=��$5b^�	�&W��`� 4���^Yk�7�]��������7�@���X0;kP8R��=�����H������
-S�#f����beA��Rם�s�"�l��L0�\�jXZp�^�y_�Nm���W��e��!����r쏎紈���N�7	?��Iݖ�n��	D��)�0��T�eLj�"pI�|���AEƩ��IǛ�<�>�ρ�����7���
-ۏ�ՖMo1��D��Yn��'���f���k��(�P>vO:-��Wk�8PgRDc�|���b��P5�b�P��j� �A�\��m
���oq�̾��2G�������:e���N�����F��{V��W�
-�.z�a���%5W��܀�`�3�~���i�����ah���z����[�m�r�.�zh����rH���P}�lQ�’ly��*<.ה�۵�i�*w�ش�A��
-@>ϖ2���x�t��)�h��PJPc_Fޯs`���c`o���dl���.���]o�J<ش�z�i�.q@"���Y�޶WxszP7<�oل&+'�B�>a��q���'�����ʫ������`��Q��*K��$Nxl*7GG:5 Lơ��q,{��C����]q�R�,
�fIl'R���.�����*T���aJ����O܉(t'�Ν�~����}���W;�.q2�M�F�����̃�[ط�{�c�rq�F~����F��GY�	�ѹ���3b�Zܡ4�Y�F��@�z���"��%�;������fly<��?"Le�Jpm׭���[�;GE�����J8�p��KDSE[�	�W
�vӕ|#�a_{h2�i"�J�%~��B�D��z�H�3�D>o L�ӡ�����)����YF�,3z���O4����B�:���4;�gP�?={��:к�?�`����t�9u�(��=��b�\�Y��+0X�FrҀ"ۀ��6�g_^^)� ܎��An"��I0f=R�kK�Pf
-{�e�	~�y=Ó�ӶDש-��l=Li�=vn�V%5@s/<�P��rFB�(y�_�2�&�ɜj�#M�ת�w�˅�(&q��vsz2
�|bl�}"�����:V��Xqyy�ݩj���w#���`�G����3�s�'��Y�~��H��S��T2��W��/��F�1endstream
-endobj
-2216 0 obj <<
-/Type /Page
-/Contents 2217 0 R
-/Resources 2215 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 2105 0 R
->> endobj
-1322 0 obj <<
-/D [2216 0 R /XYZ 76.712 708.344 null]
->> endobj
-78 0 obj <<
-/D [2216 0 R /XYZ 182.984 673.873 null]
+/D [2175 0 R /XYZ 71.731 345.539 null]
 >> endobj
 2218 0 obj <<
-/D [2216 0 R /XYZ 71.731 665.421 null]
+/D [2175 0 R /XYZ 89.664 329.763 null]
 >> endobj
 2219 0 obj <<
-/D [2216 0 R /XYZ 71.731 598.057 null]
->> endobj
-1323 0 obj <<
-/D [2216 0 R /XYZ 71.731 565.116 null]
->> endobj
-82 0 obj <<
-/D [2216 0 R /XYZ 242.807 531.806 null]
+/D [2175 0 R /XYZ 71.731 327.607 null]
 >> endobj
 2220 0 obj <<
-/D [2216 0 R /XYZ 71.731 523.353 null]
->> endobj
-1324 0 obj <<
-/D [2216 0 R /XYZ 71.731 479.836 null]
->> endobj
-86 0 obj <<
-/D [2216 0 R /XYZ 167.419 446.526 null]
+/D [2175 0 R /XYZ 89.664 311.831 null]
 >> endobj
 2221 0 obj <<
-/D [2216 0 R /XYZ 71.731 438.073 null]
+/D [2175 0 R /XYZ 71.731 309.674 null]
 >> endobj
 2222 0 obj <<
-/D [2216 0 R /XYZ 71.731 425.44 null]
->> endobj
-2223 0 obj <<
-/D [2216 0 R /XYZ 71.731 410.496 null]
+/D [2175 0 R /XYZ 89.664 293.898 null]
 >> endobj
 2224 0 obj <<
-/D [2216 0 R /XYZ 91.656 389.34 null]
+/D [2175 0 R /XYZ 71.731 291.741 null]
 >> endobj
 2225 0 obj <<
-/D [2216 0 R /XYZ 142.208 389.34 null]
+/D [2175 0 R /XYZ 89.664 275.965 null]
 >> endobj
 2226 0 obj <<
-/D [2216 0 R /XYZ 76.712 361.046 null]
+/D [2175 0 R /XYZ 71.731 273.808 null]
 >> endobj
 2227 0 obj <<
-/D [2216 0 R /XYZ 71.731 341.121 null]
+/D [2175 0 R /XYZ 89.664 258.032 null]
 >> endobj
 2228 0 obj <<
-/D [2216 0 R /XYZ 373.496 329.465 null]
+/D [2175 0 R /XYZ 71.731 255.876 null]
 >> endobj
 2229 0 obj <<
-/D [2216 0 R /XYZ 193.02 317.808 null]
->> endobj
-1325 0 obj <<
-/D [2216 0 R /XYZ 71.731 289.913 null]
->> endobj
-90 0 obj <<
-/D [2216 0 R /XYZ 210.827 254.446 null]
+/D [2175 0 R /XYZ 89.664 240.1 null]
 >> endobj
 2230 0 obj <<
-/D [2216 0 R /XYZ 71.731 245.994 null]
+/D [2175 0 R /XYZ 71.731 237.943 null]
 >> endobj
-1326 0 obj <<
-/D [2216 0 R /XYZ 71.731 215.427 null]
+2231 0 obj <<
+/D [2175 0 R /XYZ 89.664 222.167 null]
 >> endobj
-94 0 obj <<
-/D [2216 0 R /XYZ 207.683 182.117 null]
+2233 0 obj <<
+/D [2175 0 R /XYZ 71.731 220.01 null]
 >> endobj
-2231 0 obj <<
-/D [2216 0 R /XYZ 71.731 173.665 null]
+2234 0 obj <<
+/D [2175 0 R /XYZ 89.664 204.234 null]
 >> endobj
-1327 0 obj <<
-/D [2216 0 R /XYZ 71.731 156.05 null]
+2235 0 obj <<
+/D [2175 0 R /XYZ 71.731 202.077 null]
 >> endobj
-2215 0 obj <<
-/Font << /F33 1306 0 R /F23 1201 0 R /F27 1208 0 R /F44 2037 0 R /F35 1569 0 R >>
-/ProcSet [ /PDF /Text ]
+2236 0 obj <<
+/D [2175 0 R /XYZ 89.664 186.301 null]
 >> endobj
-2234 0 obj <<
-/Length 2233      
-/Filter /FlateDecode
->>
-stream
-xڥX��6�������Z�[��S�K��h|w�CAK�M�^��n���ey�Y=,�R���p�7C�����U�yCT�Q����U�:—�_�±�͂��ݫ����U�Y��VI���|�Ǒ�M�ծ��{{R����&J/�y�����k�y��t��ԵZ�g��W�v�i���6~Q/��L�(^��_�)j��~�$�Y�~�g�R�������n��^���0��oA�v�#�!�����j�6G�ܝ4���4Xm�j���X��~djX���c2������c71q�O�"�8��dJU�v�w�h}�qi<(�~��s������{s�?�.'j�D��l1�d1�b1P�F���r��-ba1��N�4u>��=*<��rp�.ЏL��h�ehB��`�X����������Y�'ۭ��r0������#�7�ӓ`����!m..�l�q��2�_��ԓ����t:��p:���A�q�7O��QO��ݵ�y����NҴ1[�\����m.4�I�F�WV���En%?����o�noߛQ��\�I�MPd�.D�nվ֖'ୁ�zhfXߡ�������^$���֚}�棌<���RCe��;ǕcN�覇O���<���;�
��d�(����5D��绷�����d�jӃ(5�.���|�[Z��OF1��nwG�Qҗ^X!v��A�X�Χ���(��`K�6��A����(X��hJ28���K]V!ˁG� !3
-y9�g��_�F��Ի
������s��L�R�=u��geW���坴a�+w��H��aB;�<�r
6�Z2h�
-��ޕ��fq�	T�L���$��;u��25S߃j-E���7�W8me��n]@�~����#���-*_�{�V��R׺H&�`(��'th���6.����"��a���v��@3��1O�����ˡq"�'{p7*��E���IvG)���Y����nԷ�	���쁟��tEe�������g��ǐǕt������yۏ��������.<E_0����z��Vƪs�i�$~�p;��7��q��y����9$��v��%cH&�G�@���
`�:0Ey���0�-"R
��!���.���7����UOB�pŊXin3�
�٠&!��1@+^9��n�vߠ�"��MQ)�7T�i�����ή�GE��������K�J*K�[��dZ�|di7�O�D�xR#S�Ү�Nc-S��z�q�Kߵ��a�ۉ���/�'�ҕ�)��D_؜��%����e6�`V���m7��s�"�k1����2.e���@��N��OV�
"Z����+]աG��=�����U��0{�*0��0��}�z������*|ȷ��׋��,����D����菺<�-�ç�'AB/��w</�T�?G�MA��	��O����޴��=�"`CV>򇏐\��
�TI#�+������P�t��}�'��JD��rxy��j�^#"H���#oxz���?���f>H�@�{0
Sj�l����SM_s��9�a�� �?@�a���+N��+���hZ%��ٚ�Rnx�IGMN�؋K�A�����\z԰E��̈@6���!��kMis���Iw=]^�o��VXTe��f�f<15�����0����q�g�#��a[�����P?4�(�"�^��O���ήE*�$��S/iOWnw��{�ϝIsƟ�/ ���A�H�`�(�F�+�.B/�w�`�����3�x�9J�I��OI��_t��<�I��ˈ��C���P�kQ�s��w�k��IVj�7!gS�M+�kϭ�S����e�QZJ�!8Q~D�4k˯�ץ����S"�/ �S�Y}!J5����"
-�����2P=n)�a面��ĺ����w��������b�yZ�����qH�L�{���9uE-\�n���2�H�	�����S�lAP޸��,j�`�pì�gE<��@QKVST[L�����7���ʨ���|����1 -�:�d�K��%��p�<�ox��X�פ�h���)H���/l>�K!�c{���#��@p��6V(
-����b�������}f��%W�]���JN���d�8fSs�+�q�k�{R5�����Ul��X�P����z��^�8��
��"�l�m��������i�A0KA7����I�DY�endstream
-endobj
-2233 0 obj <<
-/Type /Page
-/Contents 2234 0 R
-/Resources 2232 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 2105 0 R
-/Annots [ 2246 0 R ]
->> endobj
-2246 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [359.873 317.893 404.731 326.376]
-/Subtype /Link
-/A << /S /GoTo /D (parameters) >>
->> endobj
-2235 0 obj <<
-/D [2233 0 R /XYZ 71.731 729.265 null]
->> endobj
-98 0 obj <<
-/D [2233 0 R /XYZ 196.159 708.344 null]
->> endobj
-2236 0 obj <<
-/D [2233 0 R /XYZ 71.731 699.891 null]
->> endobj
-1328 0 obj <<
-/D [2233 0 R /XYZ 71.731 682.277 null]
->> endobj
-102 0 obj <<
-/D [2233 0 R /XYZ 206.297 648.966 null]
->> endobj
-2237 0 obj <<
-/D [2233 0 R /XYZ 71.731 640.329 null]
+2237 0 obj <<
+/D [2175 0 R /XYZ 71.731 184.145 null]
 >> endobj
 2238 0 obj <<
-/D [2233 0 R /XYZ 415.651 630.037 null]
->> endobj
-1329 0 obj <<
-/D [2233 0 R /XYZ 71.731 609.948 null]
->> endobj
-106 0 obj <<
-/D [2233 0 R /XYZ 209.082 576.638 null]
+/D [2175 0 R /XYZ 89.664 168.369 null]
 >> endobj
 2239 0 obj <<
-/D [2233 0 R /XYZ 71.731 568.185 null]
->> endobj
-1330 0 obj <<
-/D [2233 0 R /XYZ 71.731 537.619 null]
->> endobj
-110 0 obj <<
-/D [2233 0 R /XYZ 225.412 504.309 null]
+/D [2175 0 R /XYZ 71.731 166.212 null]
 >> endobj
 2240 0 obj <<
-/D [2233 0 R /XYZ 71.731 495.857 null]
->> endobj
-1331 0 obj <<
-/D [2233 0 R /XYZ 71.731 455.328 null]
->> endobj
-114 0 obj <<
-/D [2233 0 R /XYZ 287.71 418.112 null]
+/D [2175 0 R /XYZ 89.664 150.436 null]
 >> endobj
 2241 0 obj <<
-/D [2233 0 R /XYZ 71.731 407.747 null]
+/D [2175 0 R /XYZ 71.731 148.279 null]
 >> endobj
 2242 0 obj <<
-/D [2233 0 R /XYZ 71.731 395.831 null]
+/D [2175 0 R /XYZ 89.664 132.503 null]
 >> endobj
 2243 0 obj <<
-/D [2233 0 R /XYZ 71.731 380.887 null]
+/D [2175 0 R /XYZ 71.731 130.346 null]
 >> endobj
 2244 0 obj <<
-/D [2233 0 R /XYZ 71.731 329.55 null]
+/D [2175 0 R /XYZ 89.664 114.57 null]
 >> endobj
-2245 0 obj <<
-/D [2233 0 R /XYZ 211.436 319.781 null]
+1338 0 obj <<
+/D [2175 0 R /XYZ 76.712 96.638 null]
+>> endobj
+2174 0 obj <<
+/Font << /F33 1322 0 R /F27 1224 0 R >>
+/ProcSet [ /PDF /Text ]
 >> endobj
 2247 0 obj <<
-/D [2233 0 R /XYZ 71.731 291.885 null]
+/Length 1849      
+/Filter /FlateDecode
+>>
+stream
+xڭko�6�{~��El����>5Kth�Glú�D�Bd���ޯ�=(�IܤŊ ��x<��N&��I�i�\�2�'��LL6prsX��%�;4�˳^��d�/�p�\O� ��$
���r�,��~ڪ}���\�“>�ojө�*�
�/�ͿeU��?˟Ϯ��q���,|V���`2����c�lPPd~E$��?�!ͼ�˫���4��|�P��U�9*'tw���y^ɚ��lj���&���Fz�S �*�(s�$��g@��ZOe����k�܌%Y5}�`7<ZhS����y�ۗ�3� �N�� �6��Tu1��2��p��[�F�~5G�IS	vc��j`�P$��i{
r��kL��f�+��P�x�
r�T$=`
+���S}�1�=��V��*��^uzf�S)�~����R�q�����"Y���h4��5�;��6��V2�Hy\w#f��;��F�cȽ�m�W��u��a��x�j0��tM����y�Vq�\�B�,Gwܢ�n��}��B�ms���L��[�b�䜶0��X�xX�U�u_v[�X+������F��vB#��[��H����W����|��i�����^p0LO�ȷ���<���O_�az[
+jI
+jĜ�	�&W��3r��� ����ˮCA��T�`�R �}Fd�3fg
+G���'��^Ci�b�X�]aj|��|��k�,(Y^꺳|s.P$`Ôm_�0�e���W�e���Buj�����,�-�1 ���Жc�x�EԷ��-� T$�(Z8u[ں��&��=�Ѐ�@ܦ�+;F|��K1��K��*(2N��M�x����s��9�2�8����^�B��������Qm��N�$r���r�<���6n^���ժ��C��=�[X^�=�@��������=��ˡ"j��P����P@��������=F����m��2d���#��[F�v�lE�$���I�άL5���]�p�(�oKj�CV rr��O����iw�����ah����l�/���r�%��)����1�C-���E�K��Ն��\S��nӪ=���������Q1$IP����d.?!��7��`:�F:�%�����u
+���`a|
+�M��Ѩ�����pb�A=�k��-�U���1-�K��l�hR�����t�c`�'�-��dC�D5���4,�xx�`:��
��/p`%��1XE�h�����$��~U����a.ed
�C�cfRf���l��^�baip0Kb;���f���7$(��P@�*
�S�$C��ȝ�Bw�:��߯_]���ϿY�jg�9���n��/���4���}z<f(�i�I`�r>��J��G9��ҹ���3b�Zܮ4��+`�xS�L=��ӎF����xpI`�ܟ�
+���b!�����L�
+�5��@E��p!�p�UKDS=82�r*�/��+�F�
¾�8�d�h"|!�?K�D!7���$�%���t_aI<H�����a��<�=�P@�g���d�B�����j��3�ퟟ<hƇhi��?�`������rN�1��&�@�=�w�A������t�Od�|f#/p��ť���7�"�M�td�)�hhJ�Xf
+{�f���a�)�۔�:5%�����)m�Ǿ�ڪ�h��G
+�R�H(#o����fv�cǙR�t$�i�Z5�f����{�8�p�:<��q:1��>�;�z���
���x*..n�`Gw�c����ő͗�0ӃA�;MϏO��)��4�v�_a�Gn/OW8X}�ݟ��O�E� }���#ɓ���0����ٗ~+{��s$�endstream
+endobj
+2246 0 obj <<
+/Type /Page
+/Contents 2247 0 R
+/Resources 2245 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 2110 0 R
+>> endobj
+78 0 obj <<
+/D [2246 0 R /XYZ 182.984 708.344 null]
 >> endobj
 2248 0 obj <<
-/D [2233 0 R /XYZ 71.731 234.999 null]
+/D [2246 0 R /XYZ 71.731 699.891 null]
 >> endobj
 2249 0 obj <<
-/D [2233 0 R /XYZ 71.731 202.057 null]
+/D [2246 0 R /XYZ 71.731 632.528 null]
+>> endobj
+1339 0 obj <<
+/D [2246 0 R /XYZ 71.731 599.587 null]
+>> endobj
+82 0 obj <<
+/D [2246 0 R /XYZ 242.807 566.276 null]
 >> endobj
 2250 0 obj <<
-/D [2233 0 R /XYZ 71.731 147.328 null]
+/D [2246 0 R /XYZ 71.731 557.824 null]
 >> endobj
-1332 0 obj <<
-/D [2233 0 R /XYZ 71.731 127.338 null]
+1340 0 obj <<
+/D [2246 0 R /XYZ 71.731 514.306 null]
 >> endobj
-2232 0 obj <<
-/Font << /F33 1306 0 R /F23 1201 0 R /F27 1208 0 R /F35 1569 0 R /F44 2037 0 R >>
-/ProcSet [ /PDF /Text ]
+86 0 obj <<
+/D [2246 0 R /XYZ 167.419 480.996 null]
+>> endobj
+2251 0 obj <<
+/D [2246 0 R /XYZ 71.731 472.544 null]
 >> endobj
-2253 0 obj <<
-/Length 2655      
-/Filter /FlateDecode
->>
-stream
-xڝYm�۶�~�Bs��s�	���d;M�4�&��t:I&C��Ě"e�XU}��uҝ��L`����+���O.)���	G�b�/�X��NZϢx3���w���E&�8X<n�LE�,�@�4R����]~t��T�/�����򺮚-�ߎ��Uu��~y���/�ӥQ��,
^���\���E�D�{���4��2%�#���� �'�̬m��o�_���L����/<��"s���q��z�f˦]�hyd���j]k�
-�t+�;�8����Ǖ��y�qlJls
=A���c�\%!�4]D��t��H��h晸��!/vZ\��B�/<t�����%;/�j��U��}��8V��谅DJDA����,bi�u3��-�g�����
��i.��na�v�╌2�_Ul���x��b��G>K	�Bs�2�J�ã��������;�&엂�*�L�2��j[���r��񦿦<Q"I���#���A��t��|zŚ������*v<+���]y�蒡R�vϓ�0^�zE4��U��z���V�ўx a—r���T���v��RdY�+�3�ě��q�����w *"_����kz1K����\�u��h�3�����,�F��Z��;���v��i�C�8����<0b3k{�+�Z[T{���֭k!�%��o{��1���'�9�Qp�_W��������/͊nxc����<�
�
-��>v-�_������R����|��9Zz������}QH��]��41bFc�R�zec�������v���$I�(	t�O)�|���Q"$}�����xG�!�_�d��`�����ǻ����8�w~��k��1^W)3u;�A�"��E�%—���B� �M��YX`↏`*c���yX��e�O^1�ɰ>��?���w4���lA#'+�؞A�|�|h0|�fȶ�,\ꆧ�0��|����ތum�B�j����]�{w�E��[y?�-*���Z�Q�d9�|'�b��^#��N:�����b���ێU��Zh��k{�K�>X��Ǒ�!��o��_��Òܡ	\vY�&Ȁh?�k�i��t��^�x���[zY��"�;���y���-�}q^ٴ�y����S�Qa(�,BN��ӛ���fHF���������WW��Sl~�j����i3�.�>&�R����u�i��Dk�cա'�7p�bfտ�A��/�c���殆�f�b~"�$2�<���S�E^;��|������4ҦW�v���?'Ҝ�]���R"Cj��ƃ8�ȋ�>�������j\nY�l��ۀs��bSNJ`���,K�.�y���Cr���_�����K�z�P�扷�����PXy�1�EB^���72`��Q��gX�YtO!�r{���<��F��N	��y�cd��DIgk��1:I������n�]/E�u�qOY'3�̹ �<%�c;8V����u~���Gɷ��|
?�t4*����Sz���Ť��I}U۵¦k�z�G(���8��T7�����|[A?N�yq[ې[v��*�RoL�1�Dh��%
���i���q�v���.s?D�|��z{W�đ)��	�wmN�
-2gLM�bl��'�=iԅ�%��+x�Yܶ�O<2�1�G=m����!�:��X�k�.��
-K��:�DtX�˛���R��r�+R���=Ů�tmg_�l��&�;2��j"]�p9hf�"Ei9��dF�/��9,_�|_+�O?t�)��x �*��z:�G�����M�������������H�ck��(qq�� 6�M��q��.w���o�c�X�����E���q={����
-h3e!8��ZWԣ�y��^Cf� ���[�
-#�}�Q�$"���U>�E#*����t�i</[SE�3�ȤHf Us�lyυ�=�m;#x��U"p_��_�u�S$�d=
-L6*��C��.q5ƫ��g�!��-��G�m�{^�����
Ì����bZٶ�cNj�;0��13ū26��iG@7.�Vv�֦p���UR�\i!����ky-=
��-�#�:hf
-��v�h�Ӟ(ȹ���Hr5�����&�-�vlR�ƛ�s�X��Ev8�%nj�+����D�59?�?8�6��i�ե�6m7�ͦ�a{��9P��}#�����| T.�Y�P�7�mG���S̚uD�K�4�\v���Y5�������d"��b�S8��P<��<a����)�6�ssR�Fp��,j���c�ũ�Z6����p����ܨf-�>MwW�E�~�yC,8���X�{�!s$|־X>5����h���편m�/|���Ԣiﲷ��|I���'"�f�{'�c��.�6St���q�gp+m�qLz褄�=E�?�ϒr��<��Au?SF-
-n\di��&���1h���n�!ά��<>t�g����1S׋������?2�^��SP��+�u>�m��kl&�Jt)��ލ��Y���	$Ŏ$��َ�	��k�5��mU���Yr��P7���䢿Ë�����
��?�J�yr7���:�ݬ�P�"�S�����=LWX��J�W�E ����䓶�z�%Y���4R�{R���7�L^���r��Y�P�)wQ&��~����vV,endstream
-endobj
 2252 0 obj <<
-/Type /Page
-/Contents 2253 0 R
-/Resources 2251 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 2105 0 R
-/Annots [ 2267 0 R ]
+/D [2246 0 R /XYZ 71.731 459.91 null]
 >> endobj
-2267 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [244.495 455.18 283.866 463.663]
-/Subtype /Link
-/A << /S /GoTo /D (security) >>
+2253 0 obj <<
+/D [2246 0 R /XYZ 71.731 444.966 null]
 >> endobj
 2254 0 obj <<
-/D [2252 0 R /XYZ 71.731 729.265 null]
->> endobj
-118 0 obj <<
-/D [2252 0 R /XYZ 323.661 707.841 null]
+/D [2246 0 R /XYZ 91.656 423.811 null]
 >> endobj
 2255 0 obj <<
-/D [2252 0 R /XYZ 71.731 697.476 null]
+/D [2246 0 R /XYZ 142.208 423.811 null]
 >> endobj
 2256 0 obj <<
-/D [2252 0 R /XYZ 284.618 687.716 null]
+/D [2246 0 R /XYZ 76.712 395.517 null]
 >> endobj
 2257 0 obj <<
-/D [2252 0 R /XYZ 378.557 687.716 null]
+/D [2246 0 R /XYZ 71.731 375.592 null]
 >> endobj
 2258 0 obj <<
-/D [2252 0 R /XYZ 231.401 674.765 null]
+/D [2246 0 R /XYZ 373.496 363.935 null]
 >> endobj
 2259 0 obj <<
-/D [2252 0 R /XYZ 71.731 667.627 null]
+/D [2246 0 R /XYZ 193.02 352.279 null]
+>> endobj
+1341 0 obj <<
+/D [2246 0 R /XYZ 71.731 324.384 null]
+>> endobj
+90 0 obj <<
+/D [2246 0 R /XYZ 210.827 288.917 null]
 >> endobj
 2260 0 obj <<
-/D [2252 0 R /XYZ 144.509 656.832 null]
+/D [2246 0 R /XYZ 71.731 280.464 null]
+>> endobj
+1342 0 obj <<
+/D [2246 0 R /XYZ 71.731 249.898 null]
+>> endobj
+94 0 obj <<
+/D [2246 0 R /XYZ 207.683 216.588 null]
 >> endobj
 2261 0 obj <<
-/D [2252 0 R /XYZ 373.384 656.832 null]
+/D [2246 0 R /XYZ 71.731 208.136 null]
 >> endobj
-2262 0 obj <<
-/D [2252 0 R /XYZ 71.731 637.116 null]
+1343 0 obj <<
+/D [2246 0 R /XYZ 71.731 190.521 null]
 >> endobj
-2263 0 obj <<
-/D [2252 0 R /XYZ 71.731 607.796 null]
+98 0 obj <<
+/D [2246 0 R /XYZ 196.159 157.21 null]
 >> endobj
-2264 0 obj <<
-/D [2252 0 R /XYZ 193.672 595.064 null]
+2262 0 obj <<
+/D [2246 0 R /XYZ 71.731 148.758 null]
 >> endobj
-1333 0 obj <<
-/D [2252 0 R /XYZ 71.731 577.963 null]
+1344 0 obj <<
+/D [2246 0 R /XYZ 71.731 131.143 null]
 >> endobj
-122 0 obj <<
-/D [2252 0 R /XYZ 218.078 534.865 null]
+2245 0 obj <<
+/Font << /F33 1322 0 R /F23 1217 0 R /F27 1224 0 R /F44 2069 0 R /F35 1589 0 R >>
+/ProcSet [ /PDF /Text ]
 >> endobj
 2265 0 obj <<
-/D [2252 0 R /XYZ 71.731 531.035 null]
+/Length 2387      
+/Filter /FlateDecode
+>>
+stream
+xڝi�ܶ��� _�v݇��1�ƅ�������J���"J{���]�hvǮ[,�|���w�p�_��C?�a�J?��Mվ6G������ɖ�j����Ǜ�/�x�?l����|�Ǒ_��f_��{sRä��.J/�y|��I5��<�a>�a�Fm���ˋ����4�����J���(ބ�_�)R�
+?N�,�C?�s$)/�|x���~�޽9��oA�n�#�!X�3��f�G%�۟4�+��p�`��빑����w�#C��}ކ�u-[<>�3��0�T7�l�e[;��\��-<�ٲ���G,����2d!Nb`�8A�C��C��,�������0��yr<��6�$��'
�% ��"��x�q���^n�Գ��]b�a���?��8�����y����V=2�+w��x�#��kk������0��`�z�xAOj5�[e�/"\�!XL�IR�,����N�����{3����~	���J\ӝ�m��	HkdhqA�F���=.�$0�x+�TUik�m�擌<���Vcm�@�����'��Ц�;Siwƈ�;��*2T��l>(
+���`��_?�!��D��Ɍ�n�Tj��Cc*���3�������1}��JQ��mȧ
+i>��UM� Z`[��a#��8�;���%p�LN�����S�U���#{�+���<�l��;y�7�Fo�Ի
+���������L��=�t�gU_���坴0a��$6GrU4R�����58�Z�Gq�Q+��Vd����J�	D�L��$��f���4Q�Ug�"�b_�_��)���ߖ�_Tu�a�g%>dD��փ�j��R�9K&ɕ�(��
+�S��1ΰ���E<�]��l���'�Lv�y��f���*�\ġ���]��I�۳d�d�Q
+,g~F��O��� 联�De������	�
W&��,v�h�>{'������"	^0V�Coh��`��U�͙�Y��͂n ����[��ʑ{Vq�ۉ̓�!������,e+l!��#�� "���")L��H�%����.
+��zj}^��r'�����	1�ܸ�$6D,w�_�2�Մ�Y��ѐ𰶓��gi
+I�r�6����]�����F��)�����a�hXaN�QR��JU'�i�G��sS��JL'51��/�J��i�e�j &O�t-�n�}��v���ڋ����H����(�Wx� x��AX!��؊
+�0�l��p���xZ̹�G��,Q �-*�[��?Y-{8�`<�����֍qVz�=��s��S_æ��j���.BrX_��qZ�Eo��ô�Zû=��&���Q�)"d����b�����I�P����ݞ�^�^�?����!����������t��=-0\�W>�O�\(�&ȑF�W�a^���<�D#��TA��8"琘�2]5�C���V;P�A*�_^y�ӏ������o��$����2�F}%qS<~P��p~�نa�ZR� �0W��G
+ό���HFs4����̃ b,7<c��'[��|%�(�ZYåU.R�!�G(e!�̈́���൒�=k2������aG74
+S��W|���L'���Ʒp$��+��5����;���u�
+�Ƞ��Ӫ꠻���,!2Ʃ���+ڽ�ӽ�纤=������b$t
X(���҃�څ��ՍVʎ�+���WP/����L��H�<������O�-\[̸�v��^�z���8/����'Yi��\XŎVD)ܞ9G�5����en[���&8�D��j�vЕ!���9�DN^�T�����j4�	h��"
+�-aw^)w�ϰ�VQF�XbZw�aW6��R����->�+���CJPfd����'g��p��%˓{�`�_X���eO�G�YAz��&���Q�"ƅ25-4
+z���*,=̦H���\_	'P�z��+��6*��.�`0Т��Q.��th��h�ox�cl���;4�{��]���/>�K)���bW�-D���xc�@d�,
+������1��
u_3K�gI����\�ɉ�O�1)�`v
W����dx`#TsUi]�8��n�^H]?������V.@;����&��UҽI^<��|ɱJ�\�WF��o��;
+�l�QVB�w�:,b�$�0cK�-�$3w�r�*`f��ď��J8@�c|���ҋ�5~_�;I�<t���&\�z��p\cM
+?��G�'r"��U]��#P�}N4;���4����M���`��(n�����uO�x����&���l�Uu4W��&���"qq!�����Fzݹ3�l׏��@��Y�+hy8!a���[��.�Ʊ$���[�����yendstream
+endobj
+2264 0 obj <<
+/Type /Page
+/Contents 2265 0 R
+/Resources 2263 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 2110 0 R
+/Annots [ 2276 0 R ]
+>> endobj
+2276 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [359.873 377.271 404.731 385.753]
+/Subtype /Link
+/A << /S /GoTo /D (parameters) >>
 >> endobj
 2266 0 obj <<
-/D [2252 0 R /XYZ 118.555 488.845 null]
+/D [2264 0 R /XYZ 71.731 741.22 null]
 >> endobj
-1334 0 obj <<
-/D [2252 0 R /XYZ 71.731 445.218 null]
+102 0 obj <<
+/D [2264 0 R /XYZ 206.297 708.344 null]
 >> endobj
-126 0 obj <<
-/D [2252 0 R /XYZ 187.345 412.714 null]
+2267 0 obj <<
+/D [2264 0 R /XYZ 71.731 699.706 null]
 >> endobj
 2268 0 obj <<
-/D [2252 0 R /XYZ 71.731 402.349 null]
+/D [2264 0 R /XYZ 415.651 689.415 null]
+>> endobj
+1345 0 obj <<
+/D [2264 0 R /XYZ 71.731 669.325 null]
+>> endobj
+106 0 obj <<
+/D [2264 0 R /XYZ 209.082 636.015 null]
 >> endobj
 2269 0 obj <<
-/D [2252 0 R /XYZ 154.51 392.59 null]
+/D [2264 0 R /XYZ 71.731 627.563 null]
+>> endobj
+1346 0 obj <<
+/D [2264 0 R /XYZ 71.731 596.996 null]
+>> endobj
+110 0 obj <<
+/D [2264 0 R /XYZ 225.412 563.686 null]
 >> endobj
 2270 0 obj <<
-/D [2252 0 R /XYZ 338.14 392.59 null]
+/D [2264 0 R /XYZ 71.731 555.234 null]
+>> endobj
+1347 0 obj <<
+/D [2264 0 R /XYZ 71.731 514.705 null]
+>> endobj
+114 0 obj <<
+/D [2264 0 R /XYZ 287.71 477.489 null]
 >> endobj
 2271 0 obj <<
-/D [2252 0 R /XYZ 71.731 380.47 null]
+/D [2264 0 R /XYZ 71.731 467.124 null]
 >> endobj
 2272 0 obj <<
-/D [2252 0 R /XYZ 71.731 380.47 null]
+/D [2264 0 R /XYZ 71.731 455.208 null]
 >> endobj
 2273 0 obj <<
-/D [2252 0 R /XYZ 71.731 359.6 null]
+/D [2264 0 R /XYZ 71.731 440.264 null]
 >> endobj
 2274 0 obj <<
-/D [2252 0 R /XYZ 113.898 348.057 null]
+/D [2264 0 R /XYZ 71.731 388.927 null]
 >> endobj
 2275 0 obj <<
-/D [2252 0 R /XYZ 177.702 335.105 null]
->> endobj
-2276 0 obj <<
-/D [2252 0 R /XYZ 71.731 327.967 null]
+/D [2264 0 R /XYZ 211.436 379.158 null]
 >> endobj
 2277 0 obj <<
-/D [2252 0 R /XYZ 263.826 317.172 null]
+/D [2264 0 R /XYZ 71.731 351.263 null]
 >> endobj
 2278 0 obj <<
-/D [2252 0 R /XYZ 71.731 297.083 null]
+/D [2264 0 R /XYZ 71.731 294.376 null]
 >> endobj
 2279 0 obj <<
-/D [2252 0 R /XYZ 229.324 286.288 null]
+/D [2264 0 R /XYZ 71.731 261.435 null]
 >> endobj
 2280 0 obj <<
-/D [2252 0 R /XYZ 444.938 260.385 null]
+/D [2264 0 R /XYZ 71.731 206.705 null]
+>> endobj
+1348 0 obj <<
+/D [2264 0 R /XYZ 71.731 186.715 null]
+>> endobj
+118 0 obj <<
+/D [2264 0 R /XYZ 323.661 149.499 null]
 >> endobj
 2281 0 obj <<
-/D [2252 0 R /XYZ 178.998 247.434 null]
+/D [2264 0 R /XYZ 71.731 139.134 null]
 >> endobj
 2282 0 obj <<
-/D [2252 0 R /XYZ 71.731 240.296 null]
+/D [2264 0 R /XYZ 284.618 129.375 null]
 >> endobj
 2283 0 obj <<
-/D [2252 0 R /XYZ 169.98 229.501 null]
+/D [2264 0 R /XYZ 378.557 129.375 null]
 >> endobj
 2284 0 obj <<
-/D [2252 0 R /XYZ 71.731 209.412 null]
->> endobj
-2285 0 obj <<
-/D [2252 0 R /XYZ 450.823 185.666 null]
->> endobj
-1335 0 obj <<
-/D [2252 0 R /XYZ 71.731 165.576 null]
+/D [2264 0 R /XYZ 231.401 116.423 null]
 >> endobj
-2251 0 obj <<
-/Font << /F33 1306 0 R /F23 1201 0 R /F27 1208 0 R /F35 1569 0 R /F44 2037 0 R >>
+2263 0 obj <<
+/Font << /F33 1322 0 R /F23 1217 0 R /F27 1224 0 R /F35 1589 0 R /F44 2069 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-2288 0 obj <<
-/Length 2202      
+2287 0 obj <<
+/Length 2690      
 /Filter /FlateDecode
 >>
 stream
-xڥێ۶�}�B�>�ĴH���99�%��ɾ���+Ѷ]\������pHK��(z`�Ù��)���^�Y� r&��+��������XZ�������]z9˓�{\{�X�zi(X������;���Rā/�?���u]���7_����O�?�����4S�g�M�΅`"�x��(A����e7�	�? ��I-��h����F�H��o)�El�<n��?�BW]K�R�ڮ�+�%���߃@lƞ.����[p�iRNBz���}�;��;�c����h�������a���+Z{���/������4bQ�{I���'W5�p�3$��L=�PI�!��KSG,�������
-�7��������0���-�
��
z�+R̯)�G!?��g�
�t8�҅��Ne���"��ʳ�8���:*�p����B@$,D�˪�ϵb6& �8�0FZKrƓ�[���t`܆�1Ư\��p۪F^�7�*"��Gx>Kf6�ΆHA`�M�P/nb�5����s�s�u�i�`����j���1�X�ʊ�Y�z`��F\��RW+�u���T�gķ/�''.h$�+T?�+�]b�f������H��
-2!��-ժ^j� i�����b�j(�jg�
������f�B��^0#q	���lZ�L�n@��,�7��`��R���F�
-�_=t�K�U��3�PVkԉ����^){X�ѯ�y�G�g��vg��ACר���e��}DD����h���F��b���Y�:CY�<���i��p,�"�?�>~
-�"�'����"GPY�4��Yz���w�~;Rֱ`I nѠ����I��2,��z=
���4bq�J��5��]y�IB�!�X�����A&M�$����2��z�e�Z��T3ђ��5�	jD0�5�h�j�������\�a�1����t=}:��ɨ`~�sB'�ň.�\�nA�7�[�����`�9s�����MוN'F�&Vc�EBr��=����u�Ŵ)�t��Ս=�P�W����$&sV��9���K��د�L\Z$�B�'������Fa��,��O�a4��P&dS]�e�ʳ�$�]�����"�4�e���	��,�
�i������Ť�&:8Evu������(-vmmȢP;M�N�����;�0Y�$���v��V��b����C7ZvF�V�iD��Sa�"��f���X�z{t+[Uë��e��W�j�*Osx�A8|��
-��x�p��DZ+��Us`ƅ�p�$��.�?+����'6���',�rb©_���?����6S�|�X&�${�D�<8A���đc��?�C�m#_�$Q�Qx��_�	4��p�O�f
-�<�8�Nca�-�Hv���K)�3�-�S��m�; ����E����̉	�
�Anh��gjC֦�]���ܺXU(��\qT�9��)��'i>�yru�}?�X\0�����x,������9���ٵףHX�:�K��gC#��#+j.䔜-�ja���j��"�NZ�Y�t���m�L�p1�|��f�Ӟ�Fg�'�����c䈿vZ����"f!d�`�^NS�씅H���"���®��6��j8��A��'��U̖y��0�7�B~H��B��+��ŝj�LV1%�ӡ�EG�R=��<�-A$U�:�u�"}4@'��X}u)f�����k�8��>}'������x
�Rwp�
-hw'�MjL�ƁKS�tvK ��I����H�9�چ���JM�b��%��`���J���(sbV�+e��K�6�	2����ZI����w��W�e��
�ۍ��2[&�s5��0���ӕv�VZ(Ġ�Ź��6�m��`��b�Fj`�jb��T�qP�ɓ�v�{�������
-;��>af�UM�M5�|E��-�<~��/�{�s�ֻ{+��hr?��=;�=���&a`� ?�`�z��˔� 7B�8i����`��na�h��ԫ���Z?aa��'w�VV�j'\�皪����b�%U
=���4�7�{��}���7�:�����N30u5GSXާ}� �D���k\���O����Hp��ju��q����G��D���I����<���t� �fp�`0�h�T/j�B
�V�s�s�{�2����=�\|�E��b1�/���~}��/�T�endstream
+xڵY[��~?�����.����j�v�m�4E���"	���ȒW�8��7��|ݓd�bqV�p��n��O-2�g>a�i�(w�b����`x���}zx��(Z~�F���"V�_d�,
+�<	O�7�w[�M���$X�>?o�Q7M�nx�v���n���鋇?=�D�(�<z�/�s�X��s�r?�c��LӋ�lٛSݛ�8���.��vk�gYZ�i�U��M�0�9�8�� ���S����k���~X��.�<+u{��=��nM��u�nǓ�8���5���.��ﰞ/7��c��_n�)9���~!���J%K�u��(�(� y�m�o��ƽa��?ށ���tc���;�طD��3E�������h��p)˻�7<����y�e~�5���Ӛ��V��}�9�ٵ�UScU�?ˎ�ǺG&���v�}7����+�$�Q$J- �P%�5@J_� Y��廮�6�����^مR��d�"�s?	cR��|,*����7�����XЋF��,����O"R?���གws���P�i��,W�ap֎ ?J�E�s┥��U,uߒ#�mΆ�n$�e��fv�W+(W���(��+gA���,Y�����/i�.u+����L�Jv`�V���/���1����G]������i�,� Pk�G��f78ʂ�*{=�'���fc�`M)[��i�,�����X�xd�^����vk9ak�a��������44Ǖ
+��#c�U�$�2dM���g"�������Uo��2!Mۅ�g���⩽���;��=-�>�i�>���Fn�Y���>�/�յلq��E�HB8k�
'�;C��|���]:P�oH瑟c��e�y
+3*.H���n'©w�Ή�e�JkHb�~ ��7�7�@uqf՟� �(�c�O�Vg�A,����F�}����kU�<MW��9��H��CN��R�4��ڰ����qۑqx�O�m�S�PHN�P]�0�q���;�Ҍ8t�z�������m=Ȩ�I�=�#xL���e@���@ɩ�gy�� �
�<@�T�R�ʭvh�Y�Ņ� ��H/Ta������-}ddI�.��x������WW����-��f�X�Fr?��t��n��}iC�zd�vk�z1(��7�Ȉ;��X�v�{���9����vV��o�Q�1l�(�7r�~�?��-��H�
+�jҊ*�z��uB��-Y+%��Փ A�����Ǻ�cI�9�t�i��j]Kn�i�V��Y#�,���q�4�H�o������ٕς��P��;�;�"�4�U\H�YN��4�**�1a43��
�9�`d�z/Ibo	��Vp��9�ȆG�Lf�,�=��T�C�`���T�B�%�s�j:���v��[=��axtW�u�H�]/�d1��L6�;6�@4��!\�����M�����#'dF�á��o|�|U�?0���0��-�'�.��b>z@�j��R��,�z�Eg���v
s�ۍ}M�?L�� ���^�� R��̦��4�S���ozs�n9��@�<G.��Z�}���0[���LYe�Օ$�ku�`��f?��"$n�*N@{�=i�ǁS�z���Cш�M��c:���W���0�B%6)�YH�^\�X����mz0����[Q�0Fྫྷ-�h�kM�,
+�Qd�Yp�ƋYzc�U�00�2���^��+^�����k�Y���Ŵ��l�����4pV�bf��к�Jb�[�C7.�;v�bS$J�\��WZ(.-��;^�OE�d�D=��1lANs�ā�Z���%�
#wS�,��I�o��Y|&JK��p�%J�3Not3�"�ٯ���g�gv{g�V]⨰M�su�7m�ύ�9jX����P���D2�ֿ"�C�D4��M�ۇɴ�����@���ŽEJj��3�Z���P4�c| EL����O������/})���R��>B���(b��'ן�)�c�'R�sn�S���	�����&��0���'�ϔ+$G�wv�����Fϳ�^���d/uώ�d.E	�!�"'�SWK��\�.G��hm���ur:�F p�(�ewo��-|B��Ig��,�m%�QC��E����jvT6��2Oj@�4`�B>���
ϫ�RX�ɗs�����l�zWA�kIE)�W�/pI?������ΐn
+���e ��R��f #hZ�"�E��D�~m|f0�h{���I5��_j��!r�L*,z����1L�e����ܬr`n�#�(|�r���_R;� ����}���PՕ�δ+j�Uz>δ�^��v{���ȱ�%q���q�B��9���:���LCSo�����".�]롞k+�K���1(�H�~$6�]�s1�P��F���S]Ӻ�:��>/y�@�^	�WT���YD�ީ
+.*��FF�g�#��w	�g�˙�,=�,[[�δ�ٵ���^�F�kc�j���ˋ�no��m�����QJ]C(_%'6zD��z�\/` �0�Ҧ,���df�������ـ�ԱD-hiy��``���ˆ<5'G�n�^
+Ե�̕]4�yq�e3i}A���R��h�H���n[	N��(�e9N�Q��Ǚ�$`�AX\ȋ�78�uI��HZ��*����e�W�q���g/��xB��-1	s��!�T��o)�۷J*endstream
 endobj
-2287 0 obj <<
+2286 0 obj <<
 /Type /Page
-/Contents 2288 0 R
-/Resources 2286 0 R
+/Contents 2287 0 R
+/Resources 2285 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 2312 0 R
-/Annots [ 2292 0 R 2293 0 R 2298 0 R ]
+/Parent 2317 0 R
+/Annots [ 2294 0 R 2312 0 R ]
 >> endobj
-2292 0 obj <<
+2294 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [474.449 685.559 534.665 694.471]
+/Rect [244.495 524.625 283.866 533.107]
 /Subtype /Link
-/A << /S /GoTo /D (mysql) >>
+/A << /S /GoTo /D (security) >>
 >> endobj
-2293 0 obj <<
+2312 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [143.123 672.608 202.898 681.519]
+/Rect [363.818 254.149 423.632 262.632]
 /Subtype /Link
-/A << /S /GoTo /D (postgresql) >>
+/A << /S /GoTo /D (suexec) >>
 >> endobj
-2298 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [308.275 502.52 353.582 511.109]
-/Subtype /Link
-/A << /S /GoTo /D (security-mysql) >>
+2288 0 obj <<
+/D [2286 0 R /XYZ 71.731 729.265 null]
 >> endobj
 2289 0 obj <<
-/D [2287 0 R /XYZ 71.731 729.265 null]
+/D [2286 0 R /XYZ 71.731 718.306 null]
 >> endobj
 2290 0 obj <<
-/D [2287 0 R /XYZ 71.731 741.22 null]
->> endobj
-130 0 obj <<
-/D [2287 0 R /XYZ 224.186 707.841 null]
+/D [2286 0 R /XYZ 144.509 708.344 null]
 >> endobj
 2291 0 obj <<
-/D [2287 0 R /XYZ 71.731 700.488 null]
+/D [2286 0 R /XYZ 373.384 708.344 null]
 >> endobj
-1336 0 obj <<
-/D [2287 0 R /XYZ 71.731 672.608 null]
+1349 0 obj <<
+/D [2286 0 R /XYZ 71.731 649.345 null]
 >> endobj
-134 0 obj <<
-/D [2287 0 R /XYZ 266.299 640.294 null]
+122 0 obj <<
+/D [2286 0 R /XYZ 218.078 604.31 null]
 >> endobj
-2294 0 obj <<
-/D [2287 0 R /XYZ 71.731 631.657 null]
+2292 0 obj <<
+/D [2286 0 R /XYZ 71.731 600.48 null]
 >> endobj
-2295 0 obj <<
-/D [2287 0 R /XYZ 247.769 621.365 null]
+2293 0 obj <<
+/D [2286 0 R /XYZ 118.555 558.289 null]
 >> endobj
-1337 0 obj <<
-/D [2287 0 R /XYZ 71.731 588.324 null]
+1350 0 obj <<
+/D [2286 0 R /XYZ 71.731 514.662 null]
 >> endobj
-138 0 obj <<
-/D [2287 0 R /XYZ 156.121 555.014 null]
+126 0 obj <<
+/D [2286 0 R /XYZ 187.345 482.158 null]
+>> endobj
+2295 0 obj <<
+/D [2286 0 R /XYZ 71.731 471.793 null]
 >> endobj
 2296 0 obj <<
-/D [2287 0 R /XYZ 71.731 552.539 null]
+/D [2286 0 R /XYZ 154.51 462.034 null]
 >> endobj
 2297 0 obj <<
-/D [2287 0 R /XYZ 118.555 515.992 null]
+/D [2286 0 R /XYZ 338.14 462.034 null]
 >> endobj
-2299 0 obj <<
-/D [2287 0 R /XYZ 71.731 481.008 null]
+2298 0 obj <<
+/D [2286 0 R /XYZ 71.731 449.914 null]
 >> endobj
-142 0 obj <<
-/D [2287 0 R /XYZ 221.647 453.985 null]
+2299 0 obj <<
+/D [2286 0 R /XYZ 71.731 449.914 null]
 >> endobj
 2300 0 obj <<
-/D [2287 0 R /XYZ 71.731 446.787 null]
+/D [2286 0 R /XYZ 71.731 429.045 null]
 >> endobj
 2301 0 obj <<
-/D [2287 0 R /XYZ 173.289 423.101 null]
+/D [2286 0 R /XYZ 113.898 417.501 null]
 >> endobj
 2302 0 obj <<
-/D [2287 0 R /XYZ 71.731 410.981 null]
+/D [2286 0 R /XYZ 177.702 404.55 null]
 >> endobj
 2303 0 obj <<
-/D [2287 0 R /XYZ 71.731 366.799 null]
+/D [2286 0 R /XYZ 71.731 397.411 null]
 >> endobj
 2304 0 obj <<
-/D [2287 0 R /XYZ 282.227 342.304 null]
+/D [2286 0 R /XYZ 263.826 386.617 null]
 >> endobj
 2305 0 obj <<
-/D [2287 0 R /XYZ 71.731 327.195 null]
+/D [2286 0 R /XYZ 71.731 366.527 null]
 >> endobj
 2306 0 obj <<
-/D [2287 0 R /XYZ 71.731 312.251 null]
+/D [2286 0 R /XYZ 229.324 355.733 null]
 >> endobj
 2307 0 obj <<
-/D [2287 0 R /XYZ 71.731 263.2 null]
->> endobj
-146 0 obj <<
-/D [2287 0 R /XYZ 276.55 230.323 null]
+/D [2286 0 R /XYZ 444.938 329.83 null]
 >> endobj
 2308 0 obj <<
-/D [2287 0 R /XYZ 71.731 225.228 null]
+/D [2286 0 R /XYZ 178.998 316.878 null]
 >> endobj
 2309 0 obj <<
-/D [2287 0 R /XYZ 71.731 192.301 null]
+/D [2286 0 R /XYZ 71.731 314.721 null]
 >> endobj
 2310 0 obj <<
-/D [2287 0 R /XYZ 277.08 168.555 null]
+/D [2286 0 R /XYZ 118.555 279.17 null]
 >> endobj
 2311 0 obj <<
-/D [2287 0 R /XYZ 71.731 156.436 null]
+/D [2286 0 R /XYZ 391.646 267.693 null]
 >> endobj
-2286 0 obj <<
-/Font << /F33 1306 0 R /F23 1201 0 R /F27 1208 0 R /F44 2037 0 R /F48 2049 0 R /F35 1569 0 R >>
-/ProcSet [ /PDF /Text ]
+2313 0 obj <<
+/D [2286 0 R /XYZ 71.731 234.224 null]
+>> endobj
+2314 0 obj <<
+/D [2286 0 R /XYZ 169.98 227.47 null]
 >> endobj
 2315 0 obj <<
-/Length 2379      
+/D [2286 0 R /XYZ 71.731 207.38 null]
+>> endobj
+2316 0 obj <<
+/D [2286 0 R /XYZ 450.823 183.634 null]
+>> endobj
+1351 0 obj <<
+/D [2286 0 R /XYZ 71.731 163.544 null]
+>> endobj
+2285 0 obj <<
+/Font << /F33 1322 0 R /F27 1224 0 R /F35 1589 0 R /F23 1217 0 R /F44 2069 0 R /F48 2081 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+2320 0 obj <<
+/Length 2202      
 /Filter /FlateDecode
 >>
 stream
-x��Y�s�
���?��ڝ�I=o�:Mv�\zy���c���"˱�dɕ�K}}��Ǧ�o�̬@
- �����?9�4<T$��
��;g�o.�I�3˸�s>{wz�� ���������A��=5���9����MZ���s�J�󪨛8ϳ����?�<�G�����d�*�t �P�j��90L�a���Ph�5�Mӧ�r��,�;���2%"+��Hz���iM�I\��\�`�)��9�ea_&�UZ4q�٩E�)�+n�l�����///#��ն�w.�ru
-�O���b��
��<^�$X��q����R������b٬r��O/ܰ�|��]
-���*AO#�g�91=6�9/�PXy�}��5I�o,Z�N��I��
,q�a�� Ք��<[���/8��<[�Ԣd�u���(���x�U�~�yÚ��
u��HwW.c<�?�����y����}Uie�IR��M��@4{23�}>%�K���>&,�P�6	:IM�q]��К�.���lm�ɛ�f��NC{:��ӐQ$���Ԝ�I�'e�Ȟ΋�B���"d�֜ L$˸x6�hl)��d���_��\��l�%��|��D{(<�����*��@(���\WYܤ�����\F/	yN����2_�yݗJ~z����O�k��#;�-�!��xY���]�
�N �By�[����#�$Q}�s]��/���(�Y�q��������4!T"PVB�OR����g����	B��|�U�𔻃 ��B�d�r���B���AH��Vz"���]N�ng�ۭC:62:���q�T)8k$�_�Ҕ%�kP
C�^���9�}��j^��,�J!����
-@�e�@ƺ�oX��*F�eL2�eVX���I�
-w��<nbLE��"�Wyn"�}�'4M��DY�[��(UӘWu�s<[���(��h���U��x?`F����Xp�:�U�_G�� �*� �6k^�h_�ڗ0C��k
�qӃ.mi���a^V�d\�`;��"�҂1�skN���M�K}��Z���&�:-T4:���q�Z��YkG��i_��=�N�����
-%�#�N�_��
-W˝�����z�qvB��ۇ����Q��l�7�>�:�M��,lW��&���r����d����[u}��'�fg�ד��v�;5���&7�wӳ�o�"T�Ɋ��=����d:��8y���-=� @�_v����:������i�zngWW�O4w�F�o3R���>}<#�O���i�����U�^�w��MGzq���G��~z�����r���pG��N�X-B픏.���#t;1Õ	j,%�
-\K����� P��+�gL�U����@���+�M����U}�#���_+��L[�i��;̳blC#.�����d�\�3��oLw�a
-�Dq�
-ĒL=�Sk���֔�Tw��zZ���V��Pƀ�*O�mݤ+�Y�,�(��`���7h`��
-j���ܫaٖ�s��9V���!�-[[0�S[�u��1�<[4�&A�{u7�����1�*�;�c%�z�}�����V8��YYߣg��VA=ѽ$	#�\�\�USc�gs�,79�a�):c�D, �gQ�+w�����]x��o�i�H�n)�tYUp��[Z�nqB�U��y��X����-��CT{�?գ
--aB�);#�]�p�m.��x�6����~�t=!C[����a��smY߃�
-��=؉���8S��
-.�ߜ	�"=@s����F�d_��v�6����$x%l5��k���~�|����x=������t̿^ڽ9�~P���G��ҽ����0~2��F2L�+�ƌ���\$�n����'@�)��ycJ�=9{��[���3�Ʊ�t�.��ڲ(kd�	,��Z(�Ѭ��2���C�����6��)������_-�`!iW",e\d�,Ӣ]c��9�
-�	ї��-{�h��������8ļ��e�r`�ݸsfO��ENj��e�uUe���
Ox|�=q�A��:��:`i:Fo�,7e�2�����\I�;[��%�4�驪��K-I.�ͮ@�D��=�4�^���mm�Bά��*m�|����;k�Wk��5�L��*L���eS{]6�K�~ ���O�e3�����n����3c�rӶ{�D�Q�z�g�mk���:�Ɇ7IҺ��j_"�l����ӽ��~�Lɝ��fچ��' �ffᑆY�d����0C�zR��5̌-�0�sp�JI��ʮa�7��Fw�!��;���>ٱ&�B�}2��z[�L����(!�}	��S1˸�9lS�yc���5�k���Uݻb�Y_���"�����t,?�x
-�HY!�G����r��+c�endstream
+xڥێ۶�}�B�>�ĴH���99�%��ɾ���+Ѷ]\������pHK��(z`�Ù��)���^�Y� r&��+��������XZ�������]z9˓�{\{�X�zi(X������;���Rā/�?���u]���7_����O�?�����4S�g�M�΅`"�x��(A����e7�	�? ��I-��h����F�H��o)�El�<n��?�BW]K�R�ڮ�+�%���߃@lƞ.����[p�iRNBz���}�;��;�c����h�������a���+Z{���/������4bQ�{I���'W5�p�3$��L=�PI�!��KSG,�������
+�7��������0���-�
��
z�+R̯)�G!?��g�
�t8�҅��Ne���"��ʳ�8���:*�p����B@$,D�˪�ϵb6& �8�0FZKrƓ�[���t`܆�1Ư\��p۪F^�7�*"��Gx>Kf6�ΆHA`�M�P/nb�5����s�s�u�i�`����j���1�X�ʊ�Y�z`��F\��RW+�u���T�gķ/�''.h$�+T?�+�]b�f������H��
+2!��-ժ^j� i�����b�j(�jg�
������f�B��^0#q	���lZ�L�n@��,�7��`��R���F�
+�_=t�K�U��3�PVkԉ����^){X�ѯ�y�G�g��vg��ACר���e��}DD����h���F��b���Y�:CY�<���i��p,�"�?�>~
+�"�'����"GPY�4��Yz���w�~;Rֱ`I nѠ����I��2,��z=
���4bq�J��5��]y�IB�!�X�����A&M�$����2��z�e�Z��T3ђ��5�	jD0�5�h�j�������\�a�1����t=}:��ɨ`~�sB'�ň.�\�nA�7�[�����`�9s�����MוN'F�&Vc�EBr��=����u�Ŵ)�t��Ս=�P�W����$&sV��9���K��د�L\Z$�B�'������Fa��,��O�a4��P&dS]�e�ʳ�$�]�����"�4�e���	��,�
�i������Ť�&:8Evu������(-vmmȢP;M�N�����;�0Y�$���v��V��b����C7ZvF�V�iD��Sa�"��f���X�z{t+[Uë��e��W�j�*Osx�A8|��
+��x�p��DZ+��Us`ƅ�p�$��.�?+����'6���',�rb©_���?����6S�|�X&�${�D�<8A���đc��?�C�m#_�$Q�Qx��_�	4��p�O�f
+�<�8�Nca�-�Hv���K)�3�-�S��m�; ����E����̉	�
�Anh��gjC֦�]���ܺXU(��\qT�9��)��'i>�yru�}?�X\0�����x,������9���ٵףHX�:�K��gC#��#+j.䔜-�ja���j��"�NZ�Y�t���m�L�p1�|��f�Ӟ�Fg�'�����c䈿vZ����"f!d�`�^NS�씅H���"���®��6��j8��A��'��U̖y��0�7�B~H��B��+��ŝj�LV1%�ӡ�EG�R=��<�-A$U�:�u�"}4@'��X}u)f�����k�8��>}'������x
�Rwp�
+hw'�MjL�ƁKS�tvK ��I����H�9�چ���JM�b��%��`���J���(sbV�+e��K�6�	2����ZI����w��W�e��
�ۍ��2[&�s5��0���ӕv�VZ(Ġ�Ź��6�m��`��b�Fj`�jb��T�qP�ɓ�v�{�������
+;��>af�UM�M5�|E��-�<~��/�{�s�ֻ{+��hr?��=;�=���&a`� ?�`�z��˔� 7B�8i����`��na�h��ԫ���Z?aa��'w�VV�j'\�皪����b�%U
=���4�7�{��}���7�:�����N30u5GSXާ}� �D���k\���O����Hp��ju��q����G��D���I����<���t� �fp�`0�h�T/j�B
�V�s�s�{�2����=�\|�E��b1�/���~}��/�T�endstream
 endobj
-2314 0 obj <<
+2319 0 obj <<
 /Type /Page
-/Contents 2315 0 R
-/Resources 2313 0 R
+/Contents 2320 0 R
+/Resources 2318 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 2312 0 R
-/Annots [ 2326 0 R 2357 0 R ]
+/Parent 2317 0 R
+/Annots [ 2324 0 R 2325 0 R 2330 0 R ]
 >> endobj
-2326 0 obj <<
+2324 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [446.952 611.542 499.255 620.453]
+/Rect [474.449 685.559 534.665 694.471]
 /Subtype /Link
-/A << /S /GoTo /D (localconfig) >>
+/A << /S /GoTo /D (mysql) >>
 >> endobj
-2357 0 obj <<
+2325 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [405.169 97.37 457.472 106.281]
+/Rect [143.123 672.608 202.898 681.519]
 /Subtype /Link
-/A << /S /GoTo /D (localconfig) >>
+/A << /S /GoTo /D (postgresql) >>
 >> endobj
-2316 0 obj <<
-/D [2314 0 R /XYZ 71.731 729.265 null]
+2330 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [308.275 502.52 353.582 511.109]
+/Subtype /Link
+/A << /S /GoTo /D (security-mysql) >>
 >> endobj
-2317 0 obj <<
-/D [2314 0 R /XYZ 71.731 741.22 null]
+2321 0 obj <<
+/D [2319 0 R /XYZ 71.731 729.265 null]
 >> endobj
-2318 0 obj <<
-/D [2314 0 R /XYZ 71.731 718.306 null]
+2322 0 obj <<
+/D [2319 0 R /XYZ 71.731 741.22 null]
 >> endobj
-2319 0 obj <<
-/D [2314 0 R /XYZ 357.781 708.344 null]
+130 0 obj <<
+/D [2319 0 R /XYZ 224.186 707.841 null]
 >> endobj
-150 0 obj <<
-/D [2314 0 R /XYZ 211.285 657.534 null]
+2323 0 obj <<
+/D [2319 0 R /XYZ 71.731 700.488 null]
 >> endobj
-2320 0 obj <<
-/D [2314 0 R /XYZ 71.731 650.456 null]
+1352 0 obj <<
+/D [2319 0 R /XYZ 71.731 672.608 null]
 >> endobj
-2321 0 obj <<
-/D [2314 0 R /XYZ 271.067 626.65 null]
->> endobj
-2322 0 obj <<
-/D [2314 0 R /XYZ 243.475 613.699 null]
+134 0 obj <<
+/D [2319 0 R /XYZ 266.299 640.294 null]
 >> endobj
-2325 0 obj <<
-/D [2314 0 R /XYZ 375.041 613.699 null]
+2326 0 obj <<
+/D [2319 0 R /XYZ 71.731 631.657 null]
 >> endobj
 2327 0 obj <<
-/D [2314 0 R /XYZ 71.731 606.56 null]
+/D [2319 0 R /XYZ 247.769 621.365 null]
+>> endobj
+1353 0 obj <<
+/D [2319 0 R /XYZ 71.731 588.324 null]
+>> endobj
+138 0 obj <<
+/D [2319 0 R /XYZ 156.121 555.014 null]
 >> endobj
 2328 0 obj <<
-/D [2314 0 R /XYZ 137.593 595.766 null]
+/D [2319 0 R /XYZ 71.731 552.539 null]
 >> endobj
 2329 0 obj <<
-/D [2314 0 R /XYZ 262.973 595.766 null]
->> endobj
-2330 0 obj <<
-/D [2314 0 R /XYZ 403.449 595.766 null]
+/D [2319 0 R /XYZ 118.555 515.992 null]
 >> endobj
 2331 0 obj <<
-/D [2314 0 R /XYZ 134.388 582.814 null]
+/D [2319 0 R /XYZ 71.731 481.008 null]
+>> endobj
+142 0 obj <<
+/D [2319 0 R /XYZ 221.647 453.985 null]
 >> endobj
 2332 0 obj <<
-/D [2314 0 R /XYZ 344.012 582.814 null]
+/D [2319 0 R /XYZ 71.731 446.787 null]
 >> endobj
 2333 0 obj <<
-/D [2314 0 R /XYZ 71.731 562.725 null]
+/D [2319 0 R /XYZ 173.289 423.101 null]
 >> endobj
 2334 0 obj <<
-/D [2314 0 R /XYZ 105.494 551.93 null]
+/D [2319 0 R /XYZ 71.731 410.981 null]
 >> endobj
 2335 0 obj <<
-/D [2314 0 R /XYZ 71.731 540.56 null]
+/D [2319 0 R /XYZ 71.731 366.799 null]
 >> endobj
 2336 0 obj <<
-/D [2314 0 R /XYZ 82.491 530.311 null]
+/D [2319 0 R /XYZ 282.227 342.304 null]
 >> endobj
 2337 0 obj <<
-/D [2314 0 R /XYZ 308.443 495.342 null]
+/D [2319 0 R /XYZ 71.731 327.195 null]
 >> endobj
 2338 0 obj <<
-/D [2314 0 R /XYZ 130.909 483.686 null]
+/D [2319 0 R /XYZ 71.731 312.251 null]
 >> endobj
 2339 0 obj <<
-/D [2314 0 R /XYZ 71.731 472.457 null]
+/D [2319 0 R /XYZ 71.731 263.2 null]
 >> endobj
-154 0 obj <<
-/D [2314 0 R /XYZ 318.721 440.847 null]
+146 0 obj <<
+/D [2319 0 R /XYZ 276.55 230.323 null]
 >> endobj
 2340 0 obj <<
-/D [2314 0 R /XYZ 71.731 433.649 null]
+/D [2319 0 R /XYZ 71.731 225.228 null]
 >> endobj
 2341 0 obj <<
-/D [2314 0 R /XYZ 71.731 402.825 null]
+/D [2319 0 R /XYZ 71.731 192.301 null]
 >> endobj
 2342 0 obj <<
-/D [2314 0 R /XYZ 511.084 392.03 null]
+/D [2319 0 R /XYZ 277.08 168.555 null]
 >> endobj
 2343 0 obj <<
-/D [2314 0 R /XYZ 298.703 379.078 null]
+/D [2319 0 R /XYZ 71.731 156.436 null]
 >> endobj
-2344 0 obj <<
-/D [2314 0 R /XYZ 490.178 379.078 null]
+2318 0 obj <<
+/Font << /F33 1322 0 R /F23 1217 0 R /F27 1224 0 R /F44 2069 0 R /F48 2081 0 R /F35 1589 0 R >>
+/ProcSet [ /PDF /Text ]
 >> endobj
+2346 0 obj <<
+/Length 2379      
+/Filter /FlateDecode
+>>
+stream
+x��Y�s�
���?��ڝ�I=o�:Mv�\zy���c���"˱�dɕ�K}}��Ǧ�o�̬@
+ �����?9�4<T$��
��;g�o.�I�3˸�s>{wz�� ���������A��=5���9����MZ���s�J�󪨛8ϳ����?�<�G�����d�*�t �P�j��90L�a���Ph�5�Mӧ�r��,�;���2%"+��Hz���iM�I\��\�`�)��9�ea_&�UZ4q�٩E�)�+n�l�����///#��ն�w.�ru
+�O���b��
��<^�$X��q����R������b٬r��O/ܰ�|��]
+���*AO#�g�91=6�9/�PXy�}��5I�o,Z�N��I��
,q�a�� Ք��<[���/8��<[�Ԣd�u���(���x�U�~�yÚ��
u��HwW.c<�?�����y����}Uie�IR��M��@4{23�}>%�K���>&,�P�6	:IM�q]��К�.���lm�ɛ�f��NC{:��ӐQ$���Ԝ�I�'e�Ȟ΋�B���"d�֜ L$˸x6�hl)��d���_��\��l�%��|��D{(<�����*��@(���\WYܤ�����\F/	yN����2_�yݗJ~z����O�k��#;�-�!��xY���]�
�N �By�[����#�$Q}�s]��/���(�Y�q��������4!T"PVB�OR����g����	B��|�U�𔻃 ��B�d�r���B���AH��Vz"���]N�ng�ۭC:62:���q�T)8k$�_�Ҕ%�kP
C�^���9�}��j^��,�J!����
+@�e�@ƺ�oX��*F�eL2�eVX���I�
+w��<nbLE��"�Wyn"�}�'4M��DY�[��(UӘWu�s<[���(��h���U��x?`F����Xp�:�U�_G�� �*� �6k^�h_�ڗ0C��k
�qӃ.mi���a^V�d\�`;��"�҂1�skN���M�K}��Z���&�:-T4:���q�Z��YkG��i_��=�N�����
+%�#�N�_��
+W˝�����z�qvB��ۇ����Q��l�7�>�:�M��,lW��&���r����d����[u}��'�fg�ד��v�;5���&7�wӳ�o�"T�Ɋ��=����d:��8y���-=� @�_v����:������i�zngWW�O4w�F�o3R���>}<#�O���i�����U�^�w��MGzq���G��~z�����r���pG��N�X-B픏.���#t;1Õ	j,%�
+\K����� P��+�gL�U����@���+�M����U}�#���_+��L[�i��;̳blC#.�����d�\�3��oLw�a
+�Dq�
+ĒL=�Sk���֔�Tw��zZ���V��Pƀ�*O�mݤ+�Y�,�(��`���7h`��
+j���ܫaٖ�s��9V���!�-[[0�S[�u��1�<[4�&A�{u7�����1�*�;�c%�z�}�����V8��YYߣg��VA=ѽ$	#�\�\�USc�gs�,79�a�):c�D, �gQ�+w�����]x��o�i�H�n)�tYUp��[Z�nqB�U��y��X����-��CT{�?գ
+-aB�);#�]�p�m.��x�6����~�t=!C[����a��smY߃�
+��=؉���8S��
+.�ߜ	�"=@s����F�d_��v�6����$x%l5��k���~�|����x=������t̿^ڽ9�~P���G��ҽ����0~2��F2L�+�ƌ���\$�n����'@�)��ycJ�=9{��[���3�Ʊ�t�.��ڲ(kd�	,��Z(�Ѭ��2���C�����6��)������_-�`!iW",e\d�,Ӣ]c��9�
+�	ї��-{�h��������8ļ��e�r`�ݸsfO��ENj��e�uUe���
Ox|�=q�A��:��:`i:Fo�,7e�2�����\I�;[��%�4�驪��K-I.�ͮ@�D��=�4�^���mm�Bά��*m�|����;k�Wk��5�L��*L���eS{]6�K�~ ���O�e3�����n����3c�rӶ{�D�Q�z�g�mk���:�Ɇ7IҺ��j_"�l����ӽ��~�Lɝ��fچ��' �ffᑆY�d����0C�zR��5̌-�0�sp�JI��ʮa�7��Fw�!��;���>ٱ&�B�}2��z[�L����(!�}	��S1˸�9lS�yc���5�k���Uݻb�Y_���"�����t,?�x
+�HY!�G����r��+c�endstream
+endobj
 2345 0 obj <<
-/D [2314 0 R /XYZ 71.731 354.381 null]
+/Type /Page
+/Contents 2346 0 R
+/Resources 2344 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 2317 0 R
+/Annots [ 2357 0 R 2388 0 R ]
 >> endobj
-2346 0 obj <<
-/D [2314 0 R /XYZ 136.289 344.508 null]
+2357 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [446.952 611.542 499.255 620.453]
+/Subtype /Link
+/A << /S /GoTo /D (localconfig) >>
+>> endobj
+2388 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [405.169 97.37 457.472 106.281]
+/Subtype /Link
+/A << /S /GoTo /D (localconfig) >>
 >> endobj
 2347 0 obj <<
-/D [2314 0 R /XYZ 192.239 344.508 null]
+/D [2345 0 R /XYZ 71.731 729.265 null]
 >> endobj
 2348 0 obj <<
-/D [2314 0 R /XYZ 136.289 332.852 null]
+/D [2345 0 R /XYZ 71.731 741.22 null]
 >> endobj
 2349 0 obj <<
-/D [2314 0 R /XYZ 71.731 299.577 null]
+/D [2345 0 R /XYZ 71.731 718.306 null]
 >> endobj
 2350 0 obj <<
-/D [2314 0 R /XYZ 71.731 271.517 null]
->> endobj
-2351 0 obj <<
-/D [2314 0 R /XYZ 71.731 256.573 null]
+/D [2345 0 R /XYZ 357.781 708.344 null]
 >> endobj
-1338 0 obj <<
-/D [2314 0 R /XYZ 71.731 209.215 null]
+150 0 obj <<
+/D [2345 0 R /XYZ 211.285 657.534 null]
 >> endobj
-158 0 obj <<
-/D [2314 0 R /XYZ 183.546 173.748 null]
+2351 0 obj <<
+/D [2345 0 R /XYZ 71.731 650.456 null]
 >> endobj
 2352 0 obj <<
-/D [2314 0 R /XYZ 71.731 171.089 null]
->> endobj
-162 0 obj <<
-/D [2314 0 R /XYZ 233.392 143.362 null]
+/D [2345 0 R /XYZ 271.067 626.65 null]
 >> endobj
 2353 0 obj <<
-/D [2314 0 R /XYZ 71.731 136.164 null]
->> endobj
-2354 0 obj <<
-/D [2314 0 R /XYZ 250.633 112.478 null]
->> endobj
-2355 0 obj <<
-/D [2314 0 R /XYZ 201.693 99.527 null]
+/D [2345 0 R /XYZ 243.475 613.699 null]
 >> endobj
 2356 0 obj <<
-/D [2314 0 R /XYZ 333.258 99.527 null]
+/D [2345 0 R /XYZ 375.041 613.699 null]
 >> endobj
-2313 0 obj <<
-/Font << /F33 1306 0 R /F27 1208 0 R /F48 2049 0 R /F35 1569 0 R /F55 2324 0 R /F32 1215 0 R /F23 1201 0 R /F44 2037 0 R >>
-/ProcSet [ /PDF /Text ]
+2358 0 obj <<
+/D [2345 0 R /XYZ 71.731 606.56 null]
 >> endobj
-2360 0 obj <<
-/Length 2480      
-/Filter /FlateDecode
->>
-stream
-xڍk�����
-#
p6�护��v9��6E�mES�D�l�pDi��_�����=,G3��P����*�,��q�*���;���֑lg4��>��Y�UƲX�v�U�S�%�D
-�Fb�+���|�Ͻ�6[k���И>�*�i��p����|���_?|��F2aY*�<���:�H��y����0���!�ukz�̋�Um�hշ�,:��
-�0[�'E��x��c�l�����s￴ϠA�R�y�=�ܸ-/�k۞�Zia�v��I48!Z�,HPՈ�t���<���ss�ӌ,�c�kEi6Dg��`��Ǚ�1��ܐ[����2N��ty����V��G���[���2���ۈh�<����T���I9Ԛ�������G��������	���
֨%.m���8��<#Aەwյ��t�a�{IL��.N����ޑ��3Щ�h:������r�2�V.
- ��n���a����-�h��>�`�1�xN�ε�#J|k�
�d<or��+%S�M)u�7"X?���E�{]���"�6|=��2�s�cf�r�u�a?�����z�2�D�N� b(���L0�����$]n�_�@�N�q�Z������\��r�����CKg�#�{R�ܓ��(�{�Yu`O����㘥������i�3���)b�B�D�hC3@�!$�KOG���'��S��Wz>�?�{t����(��8CA
��Ot�FW�il�T�4�1x]��|�NA�����=ԾC[U�'�͵�ޡ�
-?�V�E(G����B\$,��͖�9�D��?!�2z/pv�D�Vy�`��/�	��W��}~�x$�� 
-�|���G��^���#�ܫJ��q�ښ�>zm�GB�����HԳ�ŝ�q���\pW:��`�K���XN��o���>�޵�D��%���"[����}��dDX+��I�"���H�8s�K�xl��7�@���rFiۿ� ��0P�ӷgB�Y���"�"Nu�t��:O�7�g�SX��M��v�3����2��r���� ��m����hD�Ӳ��GG/_�8eI�+���^�vi���1b��`G^�Cqs;�����"�4G�"ʺ��"W��]����0�V��|GU	KcS�|���+I0�0�
e��(�.�L�~>x�0�;��h�'�H��Q�v��-e)4��*�� B߫F����,����[mH,I�wg�0b���ڬ��cM-. �2��1N�g]��]w��<�v0�}���r�D�{�֒��8T���nr�C��2q�D��Èt�H��8�����8�su�}�y�����q���I��n�a�0eQ�}T��7�����܈lzϾ�i��
a\AȶI���
-���r��#�;�(���0���5rU�)$�r$>��F(?VX�s�C���'"��ICm	_���m�)o%W���#��X8�9��r�X�<89E[�u��F�����>W0��+�;�Y
-_�
�V����k4�����������������|��Y*[�Tyٯ��y���ZH&]ƺ5��nnuk��D�h���Pp4��!�P��s]9,6,K��:/kk[mz��J4%��?�ؽ�^
/c�j`4T�>Wj�ݳ6�ږ�Ȱ�.�Q
-��u�ڵuK��� ���c�4`a������ �6���G	�;`�;��Y�'F�w�(�\
-�����'����6�n�
->�z�!�t?@����K�ᇠ&�՝gW:�ƈi�Oƙ���8�1{o��@&�������>����B������
G�.m��ݒ_)�\�,L�/�Ջ���l���vч�oex���L���p�U��/	���-)���i����>O�o�2���@������1�:�pi��5D��j�.6�^�$���=��+/��k������/HT�4B�-5���Ps�N��L-N-466���$�Yx"z��a\�5�a��k�`���sq��mv��6m��|R4�#��-��m��-lh�,"{�k Y1������M��>R~<[|�K`����G���8ꛁġ�uwE.}��!)�����f������"��+�,��6�B]��>Kg��La�B��V;(GN�?��u��d]VN��6�X,Å�m��8�dܩ�-�7(+a��Ib��w�<ѝ��S������C߯2>�d(�1���+D�h���謮�A���ѩ�핽|ڵ5�K��UX ڿ��K�>���s�B���y&ď*���]���Ş�Tt'��8!	�"�JI����	O��]�8q�����
%��+�Q’(|[��y[�#��S����yn6��Cf����pR��
-�xvIB��j�$��r *��s��k�R�9�\����|n���Е�VWԌ�v���%�ɛ?�M$W��E"e��L�X\��{׵��ܿ5�endstream
-endobj
 2359 0 obj <<
-/Type /Page
-/Contents 2360 0 R
-/Resources 2358 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 2312 0 R
-/Annots [ 2390 0 R ]
+/D [2345 0 R /XYZ 137.593 595.766 null]
 >> endobj
-2390 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [203.962 141.465 257.754 150.376]
-/Subtype /Link
-/A << /S /GoTo /D (security-webserver-access) >>
+2360 0 obj <<
+/D [2345 0 R /XYZ 262.973 595.766 null]
 >> endobj
 2361 0 obj <<
-/D [2359 0 R /XYZ 71.731 729.265 null]
+/D [2345 0 R /XYZ 403.449 595.766 null]
 >> endobj
 2362 0 obj <<
-/D [2359 0 R /XYZ 71.731 718.306 null]
+/D [2345 0 R /XYZ 134.388 582.814 null]
 >> endobj
 2363 0 obj <<
-/D [2359 0 R /XYZ 71.731 675.354 null]
+/D [2345 0 R /XYZ 344.012 582.814 null]
 >> endobj
 2364 0 obj <<
-/D [2359 0 R /XYZ 71.731 651.691 null]
+/D [2345 0 R /XYZ 71.731 562.725 null]
 >> endobj
 2365 0 obj <<
-/D [2359 0 R /XYZ 77.111 642.192 null]
+/D [2345 0 R /XYZ 105.494 551.93 null]
 >> endobj
 2366 0 obj <<
-/D [2359 0 R /XYZ 71.731 630.821 null]
+/D [2345 0 R /XYZ 71.731 540.56 null]
 >> endobj
 2367 0 obj <<
-/D [2359 0 R /XYZ 363.851 619.278 null]
+/D [2345 0 R /XYZ 82.491 530.311 null]
 >> endobj
 2368 0 obj <<
-/D [2359 0 R /XYZ 425.741 619.278 null]
+/D [2345 0 R /XYZ 308.443 495.342 null]
 >> endobj
 2369 0 obj <<
-/D [2359 0 R /XYZ 71.731 599.188 null]
->> endobj
-166 0 obj <<
-/D [2359 0 R /XYZ 215.669 568.468 null]
+/D [2345 0 R /XYZ 130.909 483.686 null]
 >> endobj
 2370 0 obj <<
-/D [2359 0 R /XYZ 71.731 561.27 null]
+/D [2345 0 R /XYZ 71.731 472.457 null]
+>> endobj
+154 0 obj <<
+/D [2345 0 R /XYZ 318.721 440.847 null]
 >> endobj
 2371 0 obj <<
-/D [2359 0 R /XYZ 178.553 550.535 null]
+/D [2345 0 R /XYZ 71.731 433.649 null]
 >> endobj
 2372 0 obj <<
-/D [2359 0 R /XYZ 347.94 550.535 null]
+/D [2345 0 R /XYZ 71.731 402.825 null]
 >> endobj
 2373 0 obj <<
-/D [2359 0 R /XYZ 71.731 532.503 null]
+/D [2345 0 R /XYZ 511.084 392.03 null]
 >> endobj
 2374 0 obj <<
-/D [2359 0 R /XYZ 71.731 532.503 null]
+/D [2345 0 R /XYZ 298.703 379.078 null]
 >> endobj
 2375 0 obj <<
-/D [2359 0 R /XYZ 71.731 513.262 null]
+/D [2345 0 R /XYZ 490.178 379.078 null]
 >> endobj
 2376 0 obj <<
-/D [2359 0 R /XYZ 71.731 481.629 null]
+/D [2345 0 R /XYZ 71.731 354.381 null]
 >> endobj
 2377 0 obj <<
-/D [2359 0 R /XYZ 240.44 457.883 null]
+/D [2345 0 R /XYZ 136.289 344.508 null]
 >> endobj
 2378 0 obj <<
-/D [2359 0 R /XYZ 71.731 444.932 null]
+/D [2345 0 R /XYZ 192.239 344.508 null]
 >> endobj
 2379 0 obj <<
-/D [2359 0 R /XYZ 181.256 444.932 null]
+/D [2345 0 R /XYZ 136.289 332.852 null]
 >> endobj
 2380 0 obj <<
-/D [2359 0 R /XYZ 336.036 444.932 null]
+/D [2345 0 R /XYZ 71.731 299.577 null]
 >> endobj
 2381 0 obj <<
-/D [2359 0 R /XYZ 470.054 444.932 null]
+/D [2345 0 R /XYZ 71.731 271.517 null]
 >> endobj
-1339 0 obj <<
-/D [2359 0 R /XYZ 71.731 404.917 null]
+2382 0 obj <<
+/D [2345 0 R /XYZ 71.731 256.573 null]
 >> endobj
-170 0 obj <<
-/D [2359 0 R /XYZ 206.856 367.701 null]
+1354 0 obj <<
+/D [2345 0 R /XYZ 71.731 209.215 null]
 >> endobj
-2382 0 obj <<
-/D [2359 0 R /XYZ 71.731 357.558 null]
+158 0 obj <<
+/D [2345 0 R /XYZ 183.546 173.748 null]
 >> endobj
 2383 0 obj <<
-/D [2359 0 R /XYZ 120.303 347.577 null]
+/D [2345 0 R /XYZ 71.731 171.089 null]
+>> endobj
+162 0 obj <<
+/D [2345 0 R /XYZ 233.392 143.362 null]
 >> endobj
 2384 0 obj <<
-/D [2359 0 R /XYZ 71.731 314.536 null]
+/D [2345 0 R /XYZ 71.731 136.164 null]
 >> endobj
 2385 0 obj <<
-/D [2359 0 R /XYZ 71.731 270.7 null]
+/D [2345 0 R /XYZ 250.633 112.478 null]
 >> endobj
 2386 0 obj <<
-/D [2359 0 R /XYZ 71.731 270.7 null]
+/D [2345 0 R /XYZ 201.693 99.527 null]
 >> endobj
 2387 0 obj <<
-/D [2359 0 R /XYZ 270.634 259.905 null]
->> endobj
-1340 0 obj <<
-/D [2359 0 R /XYZ 71.731 252.767 null]
->> endobj
-174 0 obj <<
-/D [2359 0 R /XYZ 188.593 215.552 null]
->> endobj
-2388 0 obj <<
-/D [2359 0 R /XYZ 71.731 208.199 null]
->> endobj
-2389 0 obj <<
-/D [2359 0 R /XYZ 99.301 169.524 null]
->> endobj
-2391 0 obj <<
-/D [2359 0 R /XYZ 319.328 143.621 null]
->> endobj
-1341 0 obj <<
-/D [2359 0 R /XYZ 71.731 128.513 null]
+/D [2345 0 R /XYZ 333.258 99.527 null]
 >> endobj
-2358 0 obj <<
-/Font << /F33 1306 0 R /F27 1208 0 R /F35 1569 0 R /F55 2324 0 R /F48 2049 0 R /F23 1201 0 R >>
+2344 0 obj <<
+/Font << /F33 1322 0 R /F27 1224 0 R /F48 2081 0 R /F35 1589 0 R /F55 2355 0 R /F32 1231 0 R /F23 1217 0 R /F44 2069 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-2394 0 obj <<
-/Length 2593      
+2391 0 obj <<
+/Length 2480      
 /Filter /FlateDecode
 >>
 stream
-x��k�۸�{~�?8�护��C�����"��E�+
-����ʒ�G����<H��do�~-��G�!g8���Y�r�H�h�Q�Pq4[���-�||#-�Ғ,=�����z��,ֳǧY(S�%�D+�Fj������]~�L�X�(�+��U��eYT[������(�|��?�����4҉�R}S.G3L陔"�"��]0H�C�L	%B!Q�$D���e��|���w��c���l�7V������}2���
-�_2�Ĥ���Լ\���Z^y�r�0��U�́ʓ
-��jcBlg�ny�9�"�,N3�i�9��GĚ�xy^t_o���#�:I"o�4�y�`7����=���]wc�P�y_v������\J��YzS"GsS�˃��)GL�D�4�����ff"��H
�Y�h~dU����}[�f�e�t8t��D�
-��g��b��Y���Y��p~,�#=�#�<�q���C����� P۾1�x�{�N��>�-y:�����QFͳ�b��,��]Q�C]4h%�㯍=�s�)˲&æ��Ƶy$�Z��i�D12���&P��T�8�\.O\�\3%dz\?���
��$�8F2��
-�P$!������Q,T�YBr�3��M���"�槔Ͽ̦n��0b	��¿�����z�T��9�:�Sݻ�@��"pI)����[����o����R�+e���x4ל��p^q�	^�:�-��
-Y���v!���h1�X�Q(�S�,�����/�\�iK�!�ÉC�E�ByA���h��,�M^Tf�t�޶P)��5]a)x��f��eW�	^��t�U[�jN}d*�@&@���F�����;vL=���0�]��\
-~�:�H`���x�E�>�R
-��:!�!��S���m��;���P@>_As�T�Ϡ�_���;��3fY�:�ϼ��5)#�Z���|cé���֋�!�W�?���%a���û�Ү��\�ҥ�ez��C�R�F�_���x<B����ip��L���OBG��؏��ZA{P�"��G/�qx�����ߝ��q�?�rY��
-wC�Y��8t�-���ʋm���|����W�~�j����g;�y��6�AA�&����8���4M]$m�T`��I����`�Hf��Iʭ��δ�0h2nӓ��o������ǵ6|�נ�T��h��}�h���5�jNbc�W�o{]������\��bgk�F���n�~>NOP���0�Џ�J�ٵG~GB�۹��֚�"0�r�[<�m�7��QW�C�ˁ����,�f�f���](*ʁ��+V
���������!��(�����>Q&��H��Y:�._�M�N\6��µ���n�F�X��"v[֫�d��u��ӟ��%��� �ӟ�μ��q�w
-"�.�<`]����=�����,-m=�j�ϟ���wy�5v?���zw�#7�Nb�H��Խ;�����S3"<[@�l��Su��Z3�y��~2�zCy\l�l$�)�Gu�2Kb�|7֧vi���ᄡ39��cQChP|��冿�-���΢XS�����Ψj!,SNݰ_��"aS8
-{Y���F��$~Y��d�E�j�bk`��¡���0C�0�$-���u�$xĮ� CS��"�؆L���d�[�i�c[�;^)�u�oЗ����w�0����N�~��
-�1Ι�͙)	����i�\��g��ƕ�(�J�ڢ
۰��dj�k�x{���tǮu,"}�c�h�u����u��^��/y�Y:�0��xC]?C;�ġ��D�$t�f��:S�Cu�pWlwl�Tz}v˫�_��2��ڐ���g��"����pX����<��S1A��[jX�6u`$We��S�g�(L�*�_�58C�W-Cy�!�����ʘ��~T��ʔS�Gb?R"�
��J�s�79cf4K}�ܬE�9�;>�� +�O�������ǒ4�$�7�"�ch8���P'j�4���.u�B�����)��i枸|�(q����Ļۉ�gB&���㋝v�8>R������+û�xJ���7͵T�H�Ux-L�z5����rΛ爼�n[�s����1`��x����BC���
-V���" �y�t֩
��6�驸���3��Wx���վ�WuY�����97Π���'�Gf���c|���P��q �D��C,�-�s�:0��9Bf�H��qm�sa Tv�&�h���m����q�+����7=�H�����^��n-���U
e!�h�i��1�=E���(��`IV^7���ۉLh�Co���*���e�	��~�H��E�t��:� �]	B�Kc
��h�3�	��������J�9�|ީq���E�t\��SO�f߰t	t*0�n&�I�fz�.K�Vb_��!�s�{�#ɟ��C�}�_��������`�}+_{��\���[��%lx�m̿zP�����S��f�1�ʓ�����k��ش-�D�����\�������W��-������w���zL��|a ��;R0'+wyBx��cN�Bl�Eendstream
+xڍk�����
+#
p6�护��v9��6E�mES�D�l�pDi��_�����=,G3��P����*�,��q�*���;���֑lg4��>��Y�UƲX�v�U�S�%�D
+�Fb�+���|�Ͻ�6[k���И>�*�i��p����|���_?|��F2aY*�<���:�H��y����0���!�ukz�̋�Um�hշ�,:��
+�0[�'E��x��c�l�����s￴ϠA�R�y�=�ܸ-/�k۞�Zia�v��I48!Z�,HPՈ�t���<���ss�ӌ,�c�kEi6Dg��`��Ǚ�1��ܐ[����2N��ty����V��G���[���2���ۈh�<����T���I9Ԛ�������G��������	���
֨%.m���8��<#Aەwյ��t�a�{IL��.N����ޑ��3Щ�h:������r�2�V.
+ ��n���a����-�h��>�`�1�xN�ε�#J|k�
�d<or��+%S�M)u�7"X?���E�{]���"�6|=��2�s�cf�r�u�a?�����z�2�D�N� b(���L0�����$]n�_�@�N�q�Z������\��r�����CKg�#�{R�ܓ��(�{�Yu`O����㘥������i�3���)b�B�D�hC3@�!$�KOG���'��S��Wz>�?�{t����(��8CA
��Ot�FW�il�T�4�1x]��|�NA�����=ԾC[U�'�͵�ޡ�
+?�V�E(G����B\$,��͖�9�D��?!�2z/pv�D�Vy�`��/�	��W��}~�x$�� 
+�|���G��^���#�ܫJ��q�ښ�>zm�GB�����HԳ�ŝ�q���\pW:��`�K���XN��o���>�޵�D��%���"[����}��dDX+��I�"���H�8s�K�xl��7�@���rFiۿ� ��0P�ӷgB�Y���"�"Nu�t��:O�7�g�SX��M��v�3����2��r���� ��m����hD�Ӳ��GG/_�8eI�+���^�vi���1b��`G^�Cqs;�����"�4G�"ʺ��"W��]����0�V��|GU	KcS�|���+I0�0�
e��(�.�L�~>x�0�;��h�'�H��Q�v��-e)4��*�� B߫F����,����[mH,I�wg�0b���ڬ��cM-. �2��1N�g]��]w��<�v0�}���r�D�{�֒��8T���nr�C��2q�D��Èt�H��8�����8�su�}�y�����q���I��n�a�0eQ�}T��7�����܈lzϾ�i��
a\AȶI���
+���r��#�;�(���0���5rU�)$�r$>��F(?VX�s�C���'"��ICm	_���m�)o%W���#��X8�9��r�X�<89E[�u��F�����>W0��+�;�Y
+_�
�V����k4�����������������|��Y*[�Tyٯ��y���ZH&]ƺ5��nnuk��D�h���Pp4��!�P��s]9,6,K��:/kk[mz��J4%��?�ؽ�^
/c�j`4T�>Wj�ݳ6�ږ�Ȱ�.�Q
+��u�ڵuK��� ���c�4`a������ �6���G	�;`�;��Y�'F�w�(�\
+�����'����6�n�
+>�z�!�t?@����K�ᇠ&�՝gW:�ƈi�Oƙ���8�1{o��@&�������>����B������
G�.m��ݒ_)�\�,L�/�Ջ���l���vч�oex���L���p�U��/	���-)���i����>O�o�2���@������1�:�pi��5D��j�.6�^�$���=��+/��k������/HT�4B�-5���Ps�N��L-N-466���$�Yx"z��a\�5�a��k�`���sq��mv��6m��|R4�#��-��m��-lh�,"{�k Y1������M��>R~<[|�K`����G���8ꛁġ�uwE.}��!)�����f������"��+�,��6�B]��>Kg��La�B��V;(GN�?��u��d]VN��6�X,Å�m��8�dܩ�-�7(+a��Ib��w�<ѝ��S������C߯2>�d(�1���+D�h���謮�A���ѩ�핽|ڵ5�K��UX ڿ��K�>���s�B���y&ď*���]���Ş�Tt'��8!	�"�JI����	O��]�8q�����
%��+�Q’(|[��y[�#��S����yn6��Cf����pR��
+�xvIB��j�$��r *��s��k�R�9�\����|n���Е�VWԌ�v���%�ɛ?�M$W��E"e��L�X\��{׵��ܿ5�endstream
 endobj
-2393 0 obj <<
+2390 0 obj <<
 /Type /Page
-/Contents 2394 0 R
-/Resources 2392 0 R
+/Contents 2391 0 R
+/Resources 2389 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 2312 0 R
-/Annots [ 2397 0 R 2398 0 R ]
+/Parent 2317 0 R
+/Annots [ 2421 0 R ]
 >> endobj
-2397 0 obj <<
+2421 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [304.902 687.258 339.771 696.169]
+/Rect [203.962 141.465 257.754 150.376]
 /Subtype /Link
-/A << /S /GoTo /D (http-apache-mod_cgi) >>
+/A << /S /GoTo /D (security-webserver-access) >>
 >> endobj
-2398 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [409.198 687.258 447.385 696.169]
-/Subtype /Link
-/A << /S /GoTo /D (http-apache-mod_perl) >>
+2392 0 obj <<
+/D [2390 0 R /XYZ 71.731 729.265 null]
 >> endobj
-2395 0 obj <<
-/D [2393 0 R /XYZ 71.731 729.265 null]
+2393 0 obj <<
+/D [2390 0 R /XYZ 71.731 718.306 null]
 >> endobj
-178 0 obj <<
-/D [2393 0 R /XYZ 242.365 708.344 null]
+2394 0 obj <<
+/D [2390 0 R /XYZ 71.731 675.354 null]
+>> endobj
+2395 0 obj <<
+/D [2390 0 R /XYZ 71.731 651.691 null]
 >> endobj
 2396 0 obj <<
-/D [2393 0 R /XYZ 71.731 699.706 null]
+/D [2390 0 R /XYZ 77.111 642.192 null]
 >> endobj
-2399 0 obj <<
-/D [2393 0 R /XYZ 71.731 687.258 null]
+2397 0 obj <<
+/D [2390 0 R /XYZ 71.731 630.821 null]
 >> endobj
-182 0 obj <<
-/D [2393 0 R /XYZ 236.615 659.029 null]
+2398 0 obj <<
+/D [2390 0 R /XYZ 363.851 619.278 null]
+>> endobj
+2399 0 obj <<
+/D [2390 0 R /XYZ 425.741 619.278 null]
 >> endobj
 2400 0 obj <<
-/D [2393 0 R /XYZ 71.731 651.831 null]
+/D [2390 0 R /XYZ 71.731 599.188 null]
+>> endobj
+166 0 obj <<
+/D [2390 0 R /XYZ 215.669 568.468 null]
 >> endobj
 2401 0 obj <<
-/D [2393 0 R /XYZ 71.731 638.939 null]
+/D [2390 0 R /XYZ 71.731 561.27 null]
 >> endobj
 2402 0 obj <<
-/D [2393 0 R /XYZ 71.731 628.976 null]
+/D [2390 0 R /XYZ 178.553 550.535 null]
 >> endobj
 2403 0 obj <<
-/D [2393 0 R /XYZ 115.118 613.2 null]
+/D [2390 0 R /XYZ 347.94 550.535 null]
 >> endobj
 2404 0 obj <<
-/D [2393 0 R /XYZ 429.318 613.2 null]
+/D [2390 0 R /XYZ 71.731 532.503 null]
 >> endobj
 2405 0 obj <<
-/D [2393 0 R /XYZ 71.731 611.044 null]
+/D [2390 0 R /XYZ 71.731 532.503 null]
 >> endobj
 2406 0 obj <<
-/D [2393 0 R /XYZ 147.188 595.268 null]
+/D [2390 0 R /XYZ 71.731 513.262 null]
 >> endobj
 2407 0 obj <<
-/D [2393 0 R /XYZ 314.747 569.365 null]
+/D [2390 0 R /XYZ 71.731 481.629 null]
 >> endobj
 2408 0 obj <<
-/D [2393 0 R /XYZ 71.731 562.227 null]
+/D [2390 0 R /XYZ 240.44 457.883 null]
 >> endobj
 2409 0 obj <<
-/D [2393 0 R /XYZ 71.731 477.808 null]
+/D [2390 0 R /XYZ 71.731 444.932 null]
 >> endobj
 2410 0 obj <<
-/D [2393 0 R /XYZ 155.056 451.905 null]
+/D [2390 0 R /XYZ 181.256 444.932 null]
 >> endobj
 2411 0 obj <<
-/D [2393 0 R /XYZ 89.664 438.954 null]
+/D [2390 0 R /XYZ 336.036 444.932 null]
 >> endobj
 2412 0 obj <<
-/D [2393 0 R /XYZ 71.731 436.797 null]
+/D [2390 0 R /XYZ 470.054 444.932 null]
+>> endobj
+1355 0 obj <<
+/D [2390 0 R /XYZ 71.731 404.917 null]
+>> endobj
+170 0 obj <<
+/D [2390 0 R /XYZ 206.856 367.701 null]
 >> endobj
 2413 0 obj <<
-/D [2393 0 R /XYZ 71.731 421.853 null]
+/D [2390 0 R /XYZ 71.731 357.558 null]
 >> endobj
 2414 0 obj <<
-/D [2393 0 R /XYZ 130.903 400.697 null]
+/D [2390 0 R /XYZ 120.303 347.577 null]
 >> endobj
 2415 0 obj <<
-/D [2393 0 R /XYZ 74.222 359.452 null]
+/D [2390 0 R /XYZ 71.731 314.536 null]
 >> endobj
 2416 0 obj <<
-/D [2393 0 R /XYZ 92.469 336.538 null]
+/D [2390 0 R /XYZ 71.731 270.7 null]
 >> endobj
 2417 0 obj <<
-/D [2393 0 R /XYZ 188.676 323.587 null]
+/D [2390 0 R /XYZ 71.731 270.7 null]
 >> endobj
 2418 0 obj <<
-/D [2393 0 R /XYZ 248.13 323.587 null]
+/D [2390 0 R /XYZ 270.634 259.905 null]
+>> endobj
+1356 0 obj <<
+/D [2390 0 R /XYZ 71.731 252.767 null]
+>> endobj
+174 0 obj <<
+/D [2390 0 R /XYZ 188.593 215.552 null]
 >> endobj
 2419 0 obj <<
-/D [2393 0 R /XYZ 448.319 323.587 null]
+/D [2390 0 R /XYZ 71.731 208.199 null]
 >> endobj
 2420 0 obj <<
-/D [2393 0 R /XYZ 134.236 310.635 null]
->> endobj
-2421 0 obj <<
-/D [2393 0 R /XYZ 241.553 310.635 null]
+/D [2390 0 R /XYZ 99.301 169.524 null]
 >> endobj
 2422 0 obj <<
-/D [2393 0 R /XYZ 71.731 309.196 null]
+/D [2390 0 R /XYZ 319.328 143.621 null]
 >> endobj
-2423 0 obj <<
-/D [2393 0 R /XYZ 280.437 279.751 null]
+1357 0 obj <<
+/D [2390 0 R /XYZ 71.731 128.513 null]
 >> endobj
-2424 0 obj <<
-/D [2393 0 R /XYZ 400.465 279.751 null]
+2389 0 obj <<
+/Font << /F33 1322 0 R /F27 1224 0 R /F35 1589 0 R /F55 2355 0 R /F48 2081 0 R /F23 1217 0 R >>
+/ProcSet [ /PDF /Text ]
 >> endobj
 2425 0 obj <<
-/D [2393 0 R /XYZ 71.731 259.661 null]
+/Length 2593      
+/Filter /FlateDecode
+>>
+stream
+x��k�۸�{~�?8�护��C�����"��E�+
+����ʒ�G����<H��do�~-��G�!g8���Y�r�H�h�Q�Pq4[���-�||#-�Ғ,=�����z��,ֳǧY(S�%�D+�Fj������]~�L�X�(�+��U��eYT[������(�|��?�����4҉�R}S.G3L陔"�"��]0H�C�L	%B!Q�$D���e��|���w��c���l�7V������}2���
+�_2�Ĥ���Լ\���Z^y�r�0��U�́ʓ
+��jcBlg�ny�9�"�,N3�i�9��GĚ�xy^t_o���#�:I"o�4�y�`7����=���]wc�P�y_v������\J��YzS"GsS�˃��)GL�D�4�����ff"��H
�Y�h~dU����}[�f�e�t8t��D�
+��g��b��Y���Y��p~,�#=�#�<�q���C����� P۾1�x�{�N��>�-y:�����QFͳ�b��,��]Q�C]4h%�㯍=�s�)˲&æ��Ƶy$�Z��i�D12���&P��T�8�\.O\�\3%dz\?���
��$�8F2��
+�P$!������Q,T�YBr�3��M���"�槔Ͽ̦n��0b	��¿�����z�T��9�:�Sݻ�@��"pI)����[����o����R�+e���x4ל��p^q�	^�:�-��
+Y���v!���h1�X�Q(�S�,�����/�\�iK�!�ÉC�E�ByA���h��,�M^Tf�t�޶P)��5]a)x��f��eW�	^��t�U[�jN}d*�@&@���F�����;vL=���0�]��\
+~�:�H`���x�E�>�R
+��:!�!��S���m��;���P@>_As�T�Ϡ�_���;��3fY�:�ϼ��5)#�Z���|cé���֋�!�W�?���%a���û�Ү��\�ҥ�ez��C�R�F�_���x<B����ip��L���OBG��؏��ZA{P�"��G/�qx�����ߝ��q�?�rY��
+wC�Y��8t�-���ʋm���|����W�~�j����g;�y��6�AA�&����8���4M]$m�T`��I����`�Hf��Iʭ��δ�0h2nӓ��o������ǵ6|�נ�T��h��}�h���5�jNbc�W�o{]������\��bgk�F���n�~>NOP���0�Џ�J�ٵG~GB�۹��֚�"0�r�[<�m�7��QW�C�ˁ����,�f�f���](*ʁ��+V
���������!��(�����>Q&��H��Y:�._�M�N\6��µ���n�F�X��"v[֫�d��u��ӟ��%��� �ӟ�μ��q�w
+"�.�<`]����=�����,-m=�j�ϟ���wy�5v?���zw�#7�Nb�H��Խ;�����S3"<[@�l��Su��Z3�y��~2�zCy\l�l$�)�Gu�2Kb�|7֧vi���ᄡ39��cQChP|��冿�-���΢XS�����Ψj!,SNݰ_��"aS8
+{Y���F��$~Y��d�E�j�bk`��¡���0C�0�$-���u�$xĮ� CS��"�؆L���d�[�i�c[�;^)�u�oЗ����w�0����N�~��
+�1Ι�͙)	����i�\��g��ƕ�(�J�ڢ
۰��dj�k�x{���tǮu,"}�c�h�u����u��^��/y�Y:�0��xC]?C;�ġ��D�$t�f��:S�Cu�pWlwl�Tz}v˫�_��2��ڐ���g��"����pX����<��S1A��[jX�6u`$We��S�g�(L�*�_�58C�W-Cy�!�����ʘ��~T��ʔS�Gb?R"�
��J�s�79cf4K}�ܬE�9�;>�� +�O�������ǒ4�$�7�"�ch8���P'j�4���.u�B�����)��i枸|�(q����Ļۉ�gB&���㋝v�8>R������+û�xJ���7͵T�H�Ux-L�z5����rΛ爼�n[�s����1`��x����BC���
+V���" �y�t֩
��6�驸���3��Wx���վ�WuY�����97Π���'�Gf���c|���P��q �D��C,�-�s�:0��9Bf�H��qm�sa Tv�&�h���m����q�+����7=�H�����^��n-���U
e!�h�i��1�=E���(��`IV^7���ۉLh�Co���*���e�	��~�H��E�t��:� �]	B�Kc
��h�3�	��������J�9�|ީq���E�t\��SO�f߰t	t*0�n&�I�fz�.K�Vb_��!�s�{�#ɟ��C�}�_��������`�}+_{��\���[��%lx�m̿zP�����S��f�1�ʓ�����k��ش-�D�����\�������W��-������w���zL��|a ��;R0'+wyBx��cN�Bl�Eendstream
+endobj
+2424 0 obj <<
+/Type /Page
+/Contents 2425 0 R
+/Resources 2423 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 2317 0 R
+/Annots [ 2428 0 R 2429 0 R ]
 >> endobj
-2426 0 obj <<
-/D [2393 0 R /XYZ 71.731 233.524 null]
+2428 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [304.902 687.258 339.771 696.169]
+/Subtype /Link
+/A << /S /GoTo /D (http-apache-mod_cgi) >>
 >> endobj
-2427 0 obj <<
-/D [2393 0 R /XYZ 71.731 190.521 null]
+2429 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [409.198 687.258 447.385 696.169]
+/Subtype /Link
+/A << /S /GoTo /D (http-apache-mod_perl) >>
 >> endobj
-186 0 obj <<
-/D [2393 0 R /XYZ 240.64 159.801 null]
+2426 0 obj <<
+/D [2424 0 R /XYZ 71.731 729.265 null]
 >> endobj
-2428 0 obj <<
-/D [2393 0 R /XYZ 71.731 152.722 null]
+178 0 obj <<
+/D [2424 0 R /XYZ 242.365 708.344 null]
 >> endobj
-2429 0 obj <<
-/D [2393 0 R /XYZ 71.731 139.711 null]
+2427 0 obj <<
+/D [2424 0 R /XYZ 71.731 699.706 null]
 >> endobj
 2430 0 obj <<
-/D [2393 0 R /XYZ 71.731 129.749 null]
+/D [2424 0 R /XYZ 71.731 687.258 null]
+>> endobj
+182 0 obj <<
+/D [2424 0 R /XYZ 236.615 659.029 null]
 >> endobj
 2431 0 obj <<
-/D [2393 0 R /XYZ 115.118 113.973 null]
+/D [2424 0 R /XYZ 71.731 651.831 null]
 >> endobj
 2432 0 obj <<
-/D [2393 0 R /XYZ 429.318 113.973 null]
+/D [2424 0 R /XYZ 71.731 638.939 null]
 >> endobj
 2433 0 obj <<
-/D [2393 0 R /XYZ 71.731 111.816 null]
+/D [2424 0 R /XYZ 71.731 628.976 null]
 >> endobj
-2392 0 obj <<
-/Font << /F33 1306 0 R /F23 1201 0 R /F27 1208 0 R /F48 2049 0 R /F35 1569 0 R /F44 2037 0 R /F55 2324 0 R >>
-/ProcSet [ /PDF /Text ]
+2434 0 obj <<
+/D [2424 0 R /XYZ 115.118 613.2 null]
 >> endobj
-2436 0 obj <<
-/Length 2968      
-/Filter /FlateDecode
->>
-stream
-xڥko#���>8	��}?����&W����sIP�%m����rOq~}g8�}JV��`,9r�'u��"vE���K������Y�a����kFYp�n���E*��_<����4^ľ'��[<mX~y��V�j����},-�<+�4h��ey.W?=}s��SG4�c�&��|Q$< ���z�ۼ;�����݋{ޭ
-yv'%���`18�Қ~;ڼ�M�I*�(Ѿ�nI7��h�+�\y����-+ve}�:[�˲`����e�Z?h]mŦ,v4��q�\�Ҥi���Vw���f���겪3�pB�>L)[�@^ndN�J�Cc���0�(By]����"9����V_&h��v:��5��ׇ�ͷ4~��(]��bH�$O�-="���j��%���SV�a?/��Kr�����3ʪpA�<W2oJZf�fh��@�+�m����]0�02��tMJ�CP��x���ur,���T��U�p�E��3"�zqv�YAc�ΔN� M����(��y�ˈ��ґǕ���h����Tj��*Fr`e�5�����s��U�,gN�����$R�a����؂7~?�����4��/\����V��ͧ�u'9�uw}��k���k��:L���D�n�0�q�&��E]�Fo߯0��@?�ix�FpX�_����`�`�-�R<����^-UѴ�"�>HM�W4r�� q�[e��Hr���Q��/��^�ߕ����:c~�HÀ񚶪��a���u��˚ �����2��&�
-v��L�
G�,�~�(&ӥ3k�Φ�a�`��g	��������s��q�Z�Tti7�SP�� ;�p�Ԩ�#ĄO��Jp��q��ǻϲ�;��O���>�wϝ�Ɖ�OF��H�x������[�K��U!.�i���4=�Ά&Q����6���$��9{�s)g[dӿ���к�����JO=��tDt�yi�n+y­'��c��H�{��l ��S�Xg�K������ʢ�U��a����U.y�rzC�
-Q7�.S���)c�/eo�{2Q�u�V����z&�C� ���U� ����Y�Ǒl0Uz���9C�8�X���q����3%��z�8PA*:/+�Ǚ�1����g���S�xKV�ܨ�Wþ	�2o�+ہ8u��X�0�)���F�?�:Qk�ޟv
I0d=SEM\@Q��+[΅ ��V��$��=#}*�x =�\��
-����p}[\��F�% 8����#��\.y�?�b��E��`�5�����pK0X���6�ᘍ'1�xb[|V�W=��9��UQ�C����eqT���1W�Q��*�_1{!�fR�dR\bՙH�;�X]���\9��c�M�b�վ�jo{?���w�����;�c����`��Tj�ع�Jܮ+pUf�n���1�e�LF�2G��m�\+����ƿ�����V��`^��FFYpL�e���b<�������@�Ybo9G��3(#7�/�iiz�`���L��e-_�N�1�#�������:��ڂO5}`|{�AdP���\��t<���|��|��|x �&6�)96�,ߚ�'�,�������@Xc �u�$b�L��e�
�I䥦y�#����'j�����b\<s<�p�%��{���Dv�Nnq������G'a�j�5vRr�9��9`�uVj+h|Ϟ���C���o�M�[^�Q>�8���u�a,����SQ#I����]U\pU?+��v��W�W\����z���U��#`�2R�����b����>l�F����a�޿��'s��!И˜`��,�#��M�0���
-M���q
->�N��av�$��Rn��ޕ�`��D3V�F��/@��@�^"��� #Eͳ�8����
�b5o@D�&�?:�c���d/��*5�(�<C}j7��x���,ٕ��
-��
-B�7�΃�/I�A�0ʍ�v�]�)��zo��xT���tkSr��+I���!�/�����A��p��/�S�OL�h �з�v����Pڡ���5�ڼ��D��w�ot�1;*K�ڎ)#�Fi�س�^5��_�
-8�B
c\5sb�C͜�<���.8w�qzX�� ��_��Zu�6�����BGlj���p��Y�����L
-�ߏNFO�'�媿�ԝ���k3�#�C�A@��$-s'�4#c>�R�4�h�
�>��{��v\�66���qC���2c򯖾]������[G��I7m'�.��,������X�~@�n1����[�!v�-���Ő� q%>i���̀L���R�0�/��&��Ӌ�e�����J�eU�P��j0��bW8���G��{��9�*H\y���\�X��s�'gJñ! (��
K�|�C
-ɰF�=��a�yaF�����=A�����3�GMh�R񁺏�0�L��g�0���UH%�@�lü��)u?�tʈ��O&i��MYxC��Sgy~&`M��l�b �����Z��c��]�s����͉]��9��
�C
<�%�;j$��D��/\a2��|������`�U��������և�i��3�6#�.�]�.�&G�P�m��Z�ʾpp>�~m����J!ɘFR� V�Q�e�b�?���4�#!�I�,�Ij��r�@x��>d��۔;����P�lg��o�%��ɨ
��6�����`�s�#F/�w)P�A���A�3C	�槯����x����-�7��jF�@���P:#Y���|f������">j�~TuS�96\%�߻����K��,��Ȅ�����V�LP2V{|�CBz����C[���e�  [�Հ��T����V9������<�FT��:T�.W�>�5���s����7��w�jG���o8A"7~�'�e�?FBh����u�K�dN�F���endstream
-endobj
 2435 0 obj <<
-/Type /Page
-/Contents 2436 0 R
-/Resources 2434 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 2312 0 R
+/D [2424 0 R /XYZ 429.318 613.2 null]
+>> endobj
+2436 0 obj <<
+/D [2424 0 R /XYZ 71.731 611.044 null]
 >> endobj
 2437 0 obj <<
-/D [2435 0 R /XYZ 71.731 729.265 null]
+/D [2424 0 R /XYZ 147.188 595.268 null]
 >> endobj
 2438 0 obj <<
-/D [2435 0 R /XYZ 71.731 706.187 null]
+/D [2424 0 R /XYZ 314.747 569.365 null]
 >> endobj
 2439 0 obj <<
-/D [2435 0 R /XYZ 71.731 691.243 null]
+/D [2424 0 R /XYZ 71.731 562.227 null]
 >> endobj
 2440 0 obj <<
-/D [2435 0 R /XYZ 132.516 670.087 null]
+/D [2424 0 R /XYZ 71.731 477.808 null]
 >> endobj
 2441 0 obj <<
-/D [2435 0 R /XYZ 254.242 670.087 null]
+/D [2424 0 R /XYZ 155.056 451.905 null]
 >> endobj
 2442 0 obj <<
-/D [2435 0 R /XYZ 76.712 653.45 null]
+/D [2424 0 R /XYZ 89.664 438.954 null]
 >> endobj
 2443 0 obj <<
-/D [2435 0 R /XYZ 136.488 609.904 null]
+/D [2424 0 R /XYZ 71.731 436.797 null]
 >> endobj
 2444 0 obj <<
-/D [2435 0 R /XYZ 329.949 601.44 null]
+/D [2424 0 R /XYZ 71.731 421.853 null]
 >> endobj
 2445 0 obj <<
-/D [2435 0 R /XYZ 71.731 567.863 null]
+/D [2424 0 R /XYZ 130.903 400.697 null]
 >> endobj
 2446 0 obj <<
-/D [2435 0 R /XYZ 71.731 538.817 null]
+/D [2424 0 R /XYZ 74.222 359.452 null]
 >> endobj
 2447 0 obj <<
-/D [2435 0 R /XYZ 92.469 520.884 null]
+/D [2424 0 R /XYZ 92.469 336.538 null]
 >> endobj
 2448 0 obj <<
-/D [2435 0 R /XYZ 188.676 507.933 null]
+/D [2424 0 R /XYZ 188.676 323.587 null]
 >> endobj
 2449 0 obj <<
-/D [2435 0 R /XYZ 248.13 507.933 null]
+/D [2424 0 R /XYZ 248.13 323.587 null]
 >> endobj
 2450 0 obj <<
-/D [2435 0 R /XYZ 448.319 507.933 null]
+/D [2424 0 R /XYZ 448.319 323.587 null]
 >> endobj
 2451 0 obj <<
-/D [2435 0 R /XYZ 134.236 494.981 null]
+/D [2424 0 R /XYZ 134.236 310.635 null]
 >> endobj
 2452 0 obj <<
-/D [2435 0 R /XYZ 241.553 494.981 null]
+/D [2424 0 R /XYZ 241.553 310.635 null]
 >> endobj
 2453 0 obj <<
-/D [2435 0 R /XYZ 71.731 483.579 null]
+/D [2424 0 R /XYZ 71.731 309.196 null]
 >> endobj
 2454 0 obj <<
-/D [2435 0 R /XYZ 71.731 456.959 null]
+/D [2424 0 R /XYZ 280.437 279.751 null]
 >> endobj
 2455 0 obj <<
-/D [2435 0 R /XYZ 71.731 442.015 null]
+/D [2424 0 R /XYZ 400.465 279.751 null]
 >> endobj
 2456 0 obj <<
-/D [2435 0 R /XYZ 470.122 432.515 null]
+/D [2424 0 R /XYZ 71.731 259.661 null]
 >> endobj
 2457 0 obj <<
-/D [2435 0 R /XYZ 71.731 425.539 null]
+/D [2424 0 R /XYZ 71.731 233.524 null]
 >> endobj
 2458 0 obj <<
-/D [2435 0 R /XYZ 101.619 405.915 null]
+/D [2424 0 R /XYZ 71.731 190.521 null]
+>> endobj
+186 0 obj <<
+/D [2424 0 R /XYZ 240.64 159.801 null]
 >> endobj
 2459 0 obj <<
-/D [2435 0 R /XYZ 71.731 380.608 null]
+/D [2424 0 R /XYZ 71.731 152.722 null]
 >> endobj
 2460 0 obj <<
-/D [2435 0 R /XYZ 101.619 365.965 null]
+/D [2424 0 R /XYZ 71.731 139.711 null]
 >> endobj
 2461 0 obj <<
-/D [2435 0 R /XYZ 230.398 354.309 null]
+/D [2424 0 R /XYZ 71.731 129.749 null]
 >> endobj
 2462 0 obj <<
-/D [2435 0 R /XYZ 491.421 354.309 null]
+/D [2424 0 R /XYZ 115.118 113.973 null]
 >> endobj
 2463 0 obj <<
-/D [2435 0 R /XYZ 71.731 340.657 null]
+/D [2424 0 R /XYZ 429.318 113.973 null]
 >> endobj
 2464 0 obj <<
-/D [2435 0 R /XYZ 101.619 326.015 null]
->> endobj
-2465 0 obj <<
-/D [2435 0 R /XYZ 398.581 314.358 null]
+/D [2424 0 R /XYZ 71.731 111.816 null]
 >> endobj
-2466 0 obj <<
-/D [2435 0 R /XYZ 71.731 312.364 null]
+2423 0 obj <<
+/Font << /F33 1322 0 R /F23 1217 0 R /F27 1224 0 R /F48 2081 0 R /F35 1589 0 R /F44 2069 0 R /F55 2355 0 R >>
+/ProcSet [ /PDF /Text ]
 >> endobj
 2467 0 obj <<
-/D [2435 0 R /XYZ 101.619 297.721 null]
+/Length 2976      
+/Filter /FlateDecode
+>>
+stream
+xڥko#���>8	��}?����&W����sIPP%m����rOq~}g8�}Jv��`,9r�'u��"vE���K������Y`����kFYp�n���E*��_<����4^ľ'��[<�~X~y��V�j����},-�<+4h�ey.W?=}s��SG4�c�&��|Q$< ���z��;�����݋{ޭ
+yv'%���`18�Қ~;ڼ�U�I*�(Ѿ��H7��h�/�\y����-+�e}�:[�˲`���/e�Z?j]�Ķ,�4��q�\�Ҥi7��t��C�GU3IYUuYՙ�8�L��-f /�2�a%��1Jy�G��.H�pe������R�/4�a�;��t̚�ڏ��c��;o�7?J�m���y)ɓrO�F���_�Zmu	�� �_���gX��sGd�\x���4X~FY.�_�J�MI��k��v?�
+����F(���	##p	Lפ?�8�щڋY'�r��J��\u��Y���9#���'`G��4F�L�$�ҔьR�續(�yZ�\��j�M��Z�b�!fP�;/`(�9��XE�r攮�X�@� 5���?9�x�7��3��o�O#���i�/j���|��Ww��X��q�WΠ�/���ܬ�$I��@4��6
+�W�a��\�ul���*������n����O�
��ݢ)�ۋ����RM[+���4zA#��g�UF`+�$w�;����"��e�]��>�>���4�i�
+f�ڑXNj��	r_��QY,�(h��`W	�4�p�+���7�b`2]J1���l���|�p�	p������i 0'�7ȡ5AN�A�v�A85�	��	�K�:>BL��'�g�~��,�3��|�;�S~��4Ę���<�0֙�O�2��- �/!Hd�o�/m����p���g��&��mpJ!�'I�jf�\�����e�����S�ëI=�tDnd��(�V,�[Oā�~��o�@�A����G*�w	�;eM��EC������Va��5��
!P�(�8ܤ�L1f�'��i>��y���\8�e[�"8��jC~�"0jA�
+)�7������!��-2�#�`B����r��qV�*M��Z�7�gJ�p��q��Tt^V̏3�er%�
�}���r�U=��}Je�2|_�qꞓ��a�Sr!v����u��T}�,�R	8`�z������m�+[,΅ L�V��p�� }*�x =��\��
+����p}[A�a��|K@p��SG��\�"� ���lk.\D��&`��jS��l��13Nb�L�Ķ(�����[�����d�t�9���
+-�c�d�,e_��`�C�ͷ�ɷ�Ī3��w���F�=@��&�Ǣ��?�rz�U��~@[5�"=�ey(��M'���d=���+�sӻ�]���
+݌k�Sf��3��`d���(��l��1�1��)��	��.w�����ʈ���x4>5��3b���Į&�r�xgPJFn:"?.q <��,�(�J�;�����Z>��*c�G(c����_u���j�-����� ȠL��J����!/�r(����@#Ll�Prl�Y�3	<N6Y���	�������@F�N���z��4%���KM�rO�!OԖ����Ÿx�xJ��=(}K m�n��Dv�Nnq���6����0s5��-�뜂�����/�4�gOB�����ݷԦ��-/�N�p���f��V�'�;�ύ��$]`�ݮ*�����G����犫Z�7\��7]���G
+��f����ѩ�&!`�D�}�^������N�c����B�}�9��GYFTG��a������f|❾`��I�ܭ׽+%�D�f2"�ȭn�_�ғ�ҽDı�AF��g5�q<[5r5b�j^��nMtBǼN���^��Uj�Q�x���4ntY�6��fY�+�@���)o&��a�ƃna&�7��	�FS\u�t�����֦�.�W�B͉C�_6yqg7����bO_��t����@d�om����-$���CY+kֵy�ÉZ
�_�xcvR���SF؍�Jq`�j�)���`�s-�0�[�fN��P3'>5��_�l��c6�����W��V]|�
���񃵄��G��3�m�m��u�6������ѓ���'��/�(ugF����L��a���C�@P�*�A��I<�ȘG��$��#�há�*�C@��������b�����̘���o�3}!$��֑ux�
G�I��9�Gx�C��s�-�4�Y�[p����x�-.{�-.��Ő� q%>i���̀L���R[�0�/��&��Ӌ�e����æ�J�eU�P��j0��bW8���G��{��9�*H\y���\�X��s�'gJñ! (��
K�|�C
+ɰF�P��a�y�F�����A�����3�GMh�R񁺏�0�L���j�{��*�b�E�ٖy?�X0�~^�_�L�
+`����Z�y#�����B���/�ْ�@�34�W���PǼ�w=�5�c���nN�m����݀�1��3Y��F�{���&�*8�O\���-�M� l}8�6�=�h3�����orD���ܶ���Q����Q���M<uW
+I�4�R����,� ��i�ah	��M�d�NR���mO��<�!��Fئ�3������f{�n~q.��OFm��U��U�3�%1�x�K�����7�zD�J�5?�eŮ����\�h�=�T3������ɺ�p��3��@6��l$�Q������0ͱ�*q����^`?
^�=?`�}@&<��`d��5�Bd�����ӆ	�!���.m��֖u���l�Vf�STS��Z��^X��U�Q��P)�\)��ּ0;�}N�|z�!ȫ=�����H��՟pz���+	��s<{*�
��_�9�����endstream
+endobj
+2466 0 obj <<
+/Type /Page
+/Contents 2467 0 R
+/Resources 2465 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 2317 0 R
 >> endobj
 2468 0 obj <<
-/D [2435 0 R /XYZ 71.731 272.521 null]
+/D [2466 0 R /XYZ 71.731 729.265 null]
 >> endobj
 2469 0 obj <<
-/D [2435 0 R /XYZ 101.619 257.771 null]
->> endobj
-1342 0 obj <<
-/D [2435 0 R /XYZ 71.731 191.619 null]
->> endobj
-190 0 obj <<
-/D [2435 0 R /XYZ 337.12 156.152 null]
+/D [2466 0 R /XYZ 71.731 706.187 null]
 >> endobj
 2470 0 obj <<
-/D [2435 0 R /XYZ 71.731 150.025 null]
+/D [2466 0 R /XYZ 71.731 691.243 null]
 >> endobj
 2471 0 obj <<
-/D [2435 0 R /XYZ 353.774 137.223 null]
+/D [2466 0 R /XYZ 132.516 670.087 null]
 >> endobj
 2472 0 obj <<
-/D [2435 0 R /XYZ 483.407 137.223 null]
+/D [2466 0 R /XYZ 254.242 670.087 null]
 >> endobj
-2434 0 obj <<
-/Font << /F33 1306 0 R /F27 1208 0 R /F23 1201 0 R /F44 2037 0 R /F35 1569 0 R /F55 2324 0 R /F48 2049 0 R >>
-/ProcSet [ /PDF /Text ]
+2473 0 obj <<
+/D [2466 0 R /XYZ 76.712 653.45 null]
 >> endobj
-2475 0 obj <<
-/Length 2951      
-/Filter /FlateDecode
->>
-stream
-xڝY�۸����p8XsER���"w�Ƕw͢�4(�~�%�V�\=������e�r��b�Ù�p?�r�ß\��Xk��D�(\d�g�b3�I�X1�jD��ݳ�Z/�Dzq�]2�z��JġZ����~٧��4˕
-}O	��Tm��eQ���s��oQ����wy��n�Hb��^�f��Z�s��c���*�� {�����ƶ.�z�B��C�YS�����_+�/M��E?�-�Ҧ+�Ҵ/���P���_���w����u��uӉ��,��p���R�^ڗ�H��ß۬��t�YJ數Vh��J*��Y��%I���$��E)���R��g�[�����:����W��14�V�#[��i;��훿�F��YSy�[���us�����u($h`'�V�mzuC��
-���ӹ�-�I�vE]�tp�{SHk��EfZھ��
�e��Զ�����奵��x5�4����[��>wޓ�`G���O�u �[Ӕ�b3Ck쀖jںJ���2���Pl�u)C�E���%
-|��rR���$��-��@�N��<!T`1h1l	�PӖ���`к�#`7��,�S�S��_���1igh,���E��)�ȋ�dx�u�H#�'�����a�Q%A�}Gt� �,�D.��h0�w��C�1�W)�,�j~�m}0��	̝eJ-b��=�ՠWC4㤥��!Ӏ`TL+�����hM�Cց��z0����U�b�5-��M*	��cf
-�sE$�v`3��
-"��*:Lf����v���h-?�DsA'ơ�U;n�~����П�k^R{�Uz0��{t�+��0����_AEP�3nUws��H�H2�]�і�u�!���!�,��F>�]T��e�b�DM��:���b�4i~E�c���m6z��ߔ>9h�A�5����Ѳά���Mb����ęec�����PTE�5���ץk�ׅ�H�,#�&E�<��:�3?�6�zϝ=�S��Ї��u-���[�,02y�r�]jx>�\�Mh��NH��l
��–�'�=(��t&�+
-���?��c\Z��Т�F��� �0a���y�y8ߔn1&�ϸ~���o>�����,h�<���/�n0���%jMs( s`��I_�'}[�J.i�br��q5��"<��+����A��K3Ŋ?.��c�D�+����-C�O�2�
�N�T��Im��-C/-0X����I�#��B`;����ڲ�N��a�mW�m(N^�qى}FT0ޚƩ��5a;��1���5��Á��p�x0�;x���ڌk��YŪ�8������}�\�S+0QRD2�L~����^�"���lG�	�`�'�W_��C�
�\���S�#N�h����<���:��k�{�Q��`�!=K��^8u�)��/W�{ ��PPF���4�'�tV�b�B�؊�[�9��3P�P�Pj���9$�:늯��c7�0.��	�`�R��S�㴀1[	N��4e~Fx6�����c��Å�82Λ��9�*�C�M�#�wo�}�NW�߼��2W�h��xR����$NY�`�_���_Q�ZK��;#;�˜�æ�G��X��d��j��R>?	���k�R8�k��cdh���Ԗh l��ܴŮ2�!E���~�ҠM_Q�k�2�k��,�Ǎ:)R�AU�<: �õ/J��|%�T�إ�Rfb���!�G�|�!�G�;���]h����I4:	X�a�np��a@D������:������������M�n�qLw,��<�s6U�,�iW����;�3l���4|���jfXf�[le�L�����x4�����r�������!}$��se
-�PS�c�S}p�V�G`{4\��K'�B
��җ)ϜL���Z,E����3t@�!�M[���s�ݻ�6�&��.� .A���a.G�{ep�[Y:��.z%~U@�5Ln��3���,�E|�6e>��%@D�ɿgUGő�EPBA0[fu�-v�Ѝl�R�ی����jX3i�v�j(d��o9e)�{� �&n�hmt �@��.���@EB�B�H���jD4{<g�*}�-�x%cɓ�͓���x1�v0�"ʳA$/V!�IʳJ(�i͸`�/�
-&�*�<��)���)#C��W ��n����f^��y8���b���WܬZ�Φ�j�Wח.��0�V$�2ә��a�(�we�N�����$�mS�$���=Fs�C5�|���k�pwKyM�o *�u�
`�%Ϲ��K"�T� L���z�hV#����1�9�w��x�w.[C���lG��sFS_NN R����`�},
-�Jz��Y+(i�t��b�fW�U1���^�p߬����݅h,��)���58i_+`<�O�o\s`�lO�3�����æ��4
�EuO-p���:a�c���5�S�Ut���9 ��x���;SW��k�p�j���Zjz1��8����Pzz�"�}ݫ{��$9*�07X�,��dF�+Ӷ�P� >e�jG�7�}k����w�����⚾����]v��]�po���'	�&��KS�LG�IBo艻-'��&/��[t�tJ�(����l����w�������NoXl�cI����bhH:�*���������iE9:xn�q�"v��K�x�a�׏���`'�
-vu+R��	����iV#�y�>ctV��R��̥b��pG��sF(�%���ѽ3��iQ��l��s��P�N[�!�B����_� H�%�f���9T�7�����R���3�@�YVz����&��0q�_��:d�q�|g�B�YV����o4�MBf�d}�^b��� �6��j����o�3���pq���0�Z=����d��w��./.(HF��{.�֤+endstream
-endobj
 2474 0 obj <<
-/Type /Page
-/Contents 2475 0 R
-/Resources 2473 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 2312 0 R
-/Annots [ 2501 0 R 2504 0 R 2509 0 R ]
->> endobj
-2501 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [166.345 312.528 218.649 319.382]
-/Subtype /Link
-/A << /S /GoTo /D (security-webserver-access) >>
->> endobj
-2504 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [291.365 223.079 339.793 231.99]
-/Subtype /Link
-/A << /S /GoTo /D (troubleshooting) >>
+/D [2466 0 R /XYZ 136.488 609.904 null]
 >> endobj
-2509 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [194.362 118.072 239.281 127.093]
-/Subtype /Link
-/A << /S /GoTo /D (parameters) >>
+2475 0 obj <<
+/D [2466 0 R /XYZ 329.949 601.44 null]
 >> endobj
 2476 0 obj <<
-/D [2474 0 R /XYZ 71.731 729.265 null]
+/D [2466 0 R /XYZ 71.731 567.863 null]
 >> endobj
 2477 0 obj <<
-/D [2474 0 R /XYZ 285.361 708.344 null]
+/D [2466 0 R /XYZ 71.731 538.817 null]
 >> endobj
 2478 0 obj <<
-/D [2474 0 R /XYZ 119.533 695.392 null]
+/D [2466 0 R /XYZ 92.469 520.884 null]
 >> endobj
 2479 0 obj <<
-/D [2474 0 R /XYZ 437.069 695.392 null]
+/D [2466 0 R /XYZ 188.676 507.933 null]
 >> endobj
 2480 0 obj <<
-/D [2474 0 R /XYZ 117.159 682.441 null]
+/D [2466 0 R /XYZ 248.13 507.933 null]
 >> endobj
 2481 0 obj <<
-/D [2474 0 R /XYZ 419.102 682.441 null]
+/D [2466 0 R /XYZ 448.319 507.933 null]
 >> endobj
 2482 0 obj <<
-/D [2474 0 R /XYZ 355.405 669.489 null]
+/D [2466 0 R /XYZ 134.236 494.981 null]
 >> endobj
 2483 0 obj <<
-/D [2474 0 R /XYZ 71.731 662.725 null]
+/D [2466 0 R /XYZ 241.553 494.981 null]
 >> endobj
 2484 0 obj <<
-/D [2474 0 R /XYZ 115.56 638.605 null]
+/D [2466 0 R /XYZ 71.731 483.579 null]
 >> endobj
 2485 0 obj <<
-/D [2474 0 R /XYZ 153.506 625.654 null]
+/D [2466 0 R /XYZ 71.731 456.959 null]
 >> endobj
 2486 0 obj <<
-/D [2474 0 R /XYZ 343.016 625.654 null]
+/D [2466 0 R /XYZ 71.731 442.015 null]
 >> endobj
 2487 0 obj <<
-/D [2474 0 R /XYZ 71.731 612.702 null]
+/D [2466 0 R /XYZ 470.122 432.515 null]
 >> endobj
 2488 0 obj <<
-/D [2474 0 R /XYZ 163.765 586.8 null]
+/D [2466 0 R /XYZ 71.731 425.539 null]
 >> endobj
 2489 0 obj <<
-/D [2474 0 R /XYZ 71.731 579.661 null]
+/D [2466 0 R /XYZ 101.619 405.915 null]
 >> endobj
 2490 0 obj <<
-/D [2474 0 R /XYZ 71.731 530.844 null]
+/D [2466 0 R /XYZ 71.731 380.608 null]
 >> endobj
 2491 0 obj <<
-/D [2474 0 R /XYZ 71.731 499.726 null]
+/D [2466 0 R /XYZ 101.619 365.965 null]
 >> endobj
 2492 0 obj <<
-/D [2474 0 R /XYZ 71.731 474.655 null]
+/D [2466 0 R /XYZ 230.398 354.309 null]
 >> endobj
 2493 0 obj <<
-/D [2474 0 R /XYZ 71.731 453.499 null]
+/D [2466 0 R /XYZ 491.421 354.309 null]
 >> endobj
 2494 0 obj <<
-/D [2474 0 R /XYZ 71.731 433.574 null]
+/D [2466 0 R /XYZ 71.731 340.657 null]
 >> endobj
 2495 0 obj <<
-/D [2474 0 R /XYZ 458.479 421.918 null]
+/D [2466 0 R /XYZ 101.619 326.015 null]
 >> endobj
 2496 0 obj <<
-/D [2474 0 R /XYZ 207.921 410.262 null]
+/D [2466 0 R /XYZ 398.581 314.358 null]
 >> endobj
 2497 0 obj <<
-/D [2474 0 R /XYZ 71.731 382.366 null]
+/D [2466 0 R /XYZ 71.731 312.364 null]
 >> endobj
 2498 0 obj <<
-/D [2474 0 R /XYZ 71.731 336.374 null]
+/D [2466 0 R /XYZ 101.619 297.721 null]
 >> endobj
 2499 0 obj <<
-/D [2474 0 R /XYZ 358.177 325.579 null]
+/D [2466 0 R /XYZ 71.731 272.521 null]
 >> endobj
 2500 0 obj <<
-/D [2474 0 R /XYZ 461.001 325.579 null]
+/D [2466 0 R /XYZ 101.619 257.771 null]
 >> endobj
-1343 0 obj <<
-/D [2474 0 R /XYZ 71.731 297.584 null]
+1358 0 obj <<
+/D [2466 0 R /XYZ 71.731 191.619 null]
 >> endobj
-194 0 obj <<
-/D [2474 0 R /XYZ 166.615 258.311 null]
+190 0 obj <<
+/D [2466 0 R /XYZ 337.12 156.152 null]
+>> endobj
+2501 0 obj <<
+/D [2466 0 R /XYZ 71.731 150.025 null]
 >> endobj
 2502 0 obj <<
-/D [2474 0 R /XYZ 71.731 247.946 null]
+/D [2466 0 R /XYZ 353.774 137.223 null]
 >> endobj
 2503 0 obj <<
-/D [2474 0 R /XYZ 258.543 238.187 null]
+/D [2466 0 R /XYZ 483.407 137.223 null]
 >> endobj
-2505 0 obj <<
-/D [2474 0 R /XYZ 71.731 223.079 null]
+2465 0 obj <<
+/Font << /F33 1322 0 R /F27 1224 0 R /F23 1217 0 R /F44 2069 0 R /F35 1589 0 R /F55 2355 0 R /F48 2081 0 R >>
+/ProcSet [ /PDF /Text ]
 >> endobj
 2506 0 obj <<
-/D [2474 0 R /XYZ 71.731 208.135 null]
+/Length 2950      
+/Filter /FlateDecode
+>>
+stream
+xڝY�۸����p8XsER���"w�Ƕw͢�4(�~�%�V�\=������e�r�����pf8�Ǐ�\�𓋵k
������_�`��3�+&Y�h~�{v�V�E"�H/@�"Y/�Z�8T���_�/��ؙf�R��)Aߛ��Ҳ,���w�-�2]���/���
BC�I������S�bn~,tXźd��^�7���eY/U�}#�`��"k��v��kE��w����V�tEV��uU*R�����;���n��n:qp�EV�s�]J�K��i{|�s����7K�4�
+��]I%6k߾$	�[��$��(��X���LwK{^P痺���j�7��*wdk�3m����}��ߨ�1k�#O~+�=�nn>R#��¡5����$�
+�M�n�S�_T0`:7��9�Ү�+���|ojiM��LK��Q@B���L��������1������O�&�Ɓ���y{�|���{��ht��I~�Apk��Zlfh�В�BM[W)S~^�pvꀭ�.e�h�6�D��UN��4��װ%:��é�A�'d�
+,-"�-Aj��?�Z�x��V�%u*crj��K��5&���4��h�>�yј��ni��D6ta��?�0ʣ#h���������
�#�N6rH;�c�*E��]͏����c6���L�E��G��j�f����:d��i�}#����q�:p�Q�"0U��[����4��iA%A�w�L�~����l����]Ad0[E���A\۞ӎ3�b�E��h.��8���`�M��������r��CjϹJ�յc�}�f��s�+�*vƭ�nn~	I�8�!3��N>dt>���%��ȇ��*���T�����V�����`A��&ͯ�w,S��m�FԲb��'Gm1跦1x~8Z֙523��Ilxyߞ8�l���x���h�Ɲ�=��t-�����e����Ȟg�_Gq���F@�Sﹳ�s�s�Pu�����}+��F&�RΰK
�g�c���	���	�ڝ�����Pز�$����Q���$E�wua��c�AK5Z��H��&l�76g���-�D��׏�����׷7<t<�m�']����
f�SQ�dA��id,��4���oKX��#-[LA�r?��qT�'��wW8:�}yi�X��ez���v��>Z�e���P�`�A�ɝ�
+W0ɣ��e�����0IdRXl����1@B[V�	;`<���ʸ���k�3.;�ψ
+�[S�8��&#l�8F]��f;�w8�a5���{Y�!cW�qmu�q!�X�Zz~ ]���o���Aaj&J�H&��O�� ���RD>�B���"a������x��Ó띻�b�ow����s����~PPP}�~o1�\��<��ci�pc��.~7EuA��JzD�
+�HS����$Q��*\��P([��;��uJ�J
ճ;��^g]���|���;!�RC*��}�p�0f+�Ir�����fb���@xl�a��G�y6�Yeq(�)v$ ��
�o�����׿�U��m���O�������	#k����@��+��Zk�urg���}�S{cش���+�ՓlۘC�^BV��'7�x��_�Gy��x����q�����
�-�����U�5�h���/X��+�}-RfCqmѝ���QC'E�7���G�}��E	x�/•��j��A��Ll�4d�����}5��(qG��
��P�q:�F'+6L�
N1�hw@3���x^g�<RP�C5��x��<���
5���<��{Φj��c5��jT��b�a��3��/U�X͌���c�����q����FP���X�_Qs;��D� s��@�Bj*�als������l��K�p���C�a�R�2噓I��`R��0Uv�?�i��rβ{wن�;��e��%h� ��(v�.S`+K�E��/�
+����
>t�u��������ئ��t����4����8��J(fˬ���n����
\�q����[
�b&��.�pC
�����-'�,eso ���mZ���C��B(�q�Eu�(�H� \h����s��Y��fρ�P��������<�d,� yR��yR�9#/����ADy6�D"��*�1IyV	%B1���T��c@�� 8�T�9ed���
+�B��=���k‘3�g�T����ʁ�U���4_M���ҥF����Qf:Ӵ5�e������V�$�mj��0���h�~���O x�!y
�n�#���
D微���9W3I�Ѐ
+��җ_��jD4��3F6'�.�|�9���2�@>)��<)����W������q#������ǢP���	_�����A'��'vlvUX��i�U���
+���N�]�ƢX��an�^�����S����e0V���>;>̠}<lj�I�`YT��';�v:Ɯ�^C�;E^E��Z�`�r|ыǁ���3u����n'��[
����#��3�Л���+B�׽���H��	s��ʢ�1Kf��2m�5�S&�vd{�ݷ��yg{Xk���)��+A�OO(�e���N	��8��1]q�Ppk�[޸45��t���$􆞸�r{o����EGM�����Q�!��V��k0?|�0iܿ8���$���=�Thx�+���d�C��xYM�l�V�󠃁�V'(b.�d��&|�OP�
+vr�`'P�"����P*�\��f5"��3Fg;�.�k�/*�O
+w4O
+?g��_�X~��K`0��U���*;����%?k�f�>�\t�� � G�m�`B�P]ߔ�Wr�GK���t	fY�
�K[����������P���a�]"I�fY]�ƾ��7	�a���E{�u�
+G�����/�Q�;r�)���r�Ź�� 8h��_�'��?ޡ����� }�o침�]&*�endstream
+endobj
+2505 0 obj <<
+/Type /Page
+/Contents 2506 0 R
+/Resources 2504 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 2545 0 R
+/Annots [ 2532 0 R 2535 0 R 2540 0 R ]
+>> endobj
+2532 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [166.345 312.528 218.649 319.382]
+/Subtype /Link
+/A << /S /GoTo /D (security-webserver-access) >>
+>> endobj
+2535 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [291.365 223.079 340.341 231.99]
+/Subtype /Link
+/A << /S /GoTo /D (troubleshooting) >>
+>> endobj
+2540 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [194.362 118.072 239.281 127.093]
+/Subtype /Link
+/A << /S /GoTo /D (parameters) >>
 >> endobj
 2507 0 obj <<
-/D [2474 0 R /XYZ 71.731 159.083 null]
+/D [2505 0 R /XYZ 71.731 729.265 null]
 >> endobj
 2508 0 obj <<
-/D [2474 0 R /XYZ 321.927 146.132 null]
+/D [2505 0 R /XYZ 285.361 708.344 null]
+>> endobj
+2509 0 obj <<
+/D [2505 0 R /XYZ 119.533 695.392 null]
 >> endobj
 2510 0 obj <<
-/D [2474 0 R /XYZ 349.018 120.229 null]
+/D [2505 0 R /XYZ 437.069 695.392 null]
 >> endobj
 2511 0 obj <<
-/D [2474 0 R /XYZ 415.603 120.229 null]
+/D [2505 0 R /XYZ 117.159 682.441 null]
 >> endobj
 2512 0 obj <<
-/D [2474 0 R /XYZ 91.925 107.278 null]
+/D [2505 0 R /XYZ 419.102 682.441 null]
 >> endobj
 2513 0 obj <<
-/D [2474 0 R /XYZ 151.7 107.278 null]
+/D [2505 0 R /XYZ 355.405 669.489 null]
 >> endobj
-2473 0 obj <<
-/Font << /F33 1306 0 R /F27 1208 0 R /F35 1569 0 R /F23 1201 0 R /F44 2037 0 R /F48 2049 0 R /F32 1215 0 R >>
-/ProcSet [ /PDF /Text ]
+2514 0 obj <<
+/D [2505 0 R /XYZ 71.731 662.725 null]
 >> endobj
-2516 0 obj <<
-/Length 2012      
-/Filter /FlateDecode
->>
-stream
-xڅXm���~��@���z��kQ���A� -.�A��D[�ʒ"R�����p����{8�qH
9Ùg^�p��p��"�a�
-m�Uyx�����7!s���/x�yz���8^��ī��*	sQd�,�D�F���޷���~�^$h���F�m��i�ʹ�ܴ�\���_o�{���q&�<~U/�s�X��s�r'�U�n�ڏ��;���맶��luO�V�
-
���,�g��:�O�{T�(�>6�1�`j��+��f���E$�"�Q��/e[�ݮ��R�Md7��� j�>�z�Ϩ;/�iTN�\�`��$h|P�f���s�
cӏ�i�~����-�H�b几�R�
�a�)���I�
�4�~<h��~@���nƩ>i�f&�,��5��~"��蚿�4N��X���4"�Q-n�Q�M{-h�AY���G>/�-C{�Q�Sw�(i�7�Z��Z�iC{�|�����V]$�Zv{EtcٻHE���f�(�7�e��&��	���~0Mo]�;0���리��S3�t��|2#�� "��:��8X_�6>�Gv� Y�b��dh��:���j�ID�w�������>
��*Qm�j�l�)�^��,���:%�@��Ea�l~�d"��DX#h�V�r��䱖f�+��Y�}{�[�l�P�������D��`ٝA�c�а�)C����.�f�U���#;��FC�G�I�Nn[吢�%��7|��q�&�hpG"��P��&kG�����ZbB��q��HU�Jl/U�CO��D+�Q#���WS��	�Fd8�4s��O�Ѧ)5Yc׏�r��9]E;���E^
-�36!�`+u��ل��U�4/\�����px��5���~I1\V˨�<]S�Dz;�Հ��&@�bp��
ک��r#�(�>X"M=A�+ �g1kg�C�lW�H�S�bƻY��H�ę���n�wy�M�1w%��ecy�1��
�^D�-����mϡ��f_�w��\�/%�4|}o(+�����gq�W��K0�����W���\���YsC��<��h�Z� ���r�l�m�|��F-��%�95���*T>���v��J���(y�7�-DQ���*�k�����������
-��"'��jbzZ�d�mˡ������=�4$��XH�Q��!v#=q�$|�mp��l?�B��e���:�n��D�����w7�#���^e��n��L�N��|F�;ijq�eTTopK�vO��bs��2�C��}�b�a?�F�
��?'�ʵ��ߚ���8ZPe^�[9<�zC�C��ϽLPo�3a�З��G�v3�3@U��~������J�1���˼�*7��1���;���D-,���_��	V�Q�^�Zai|۝c���R"c�D%�'^��V;7@Q-b˧L�,?����V ��.0�["�do�����"�4FPm�����x<�7��������#F׽��!�E)�dЧm�=Y�
�?Ԡ�Ju%&/�!�`Ѻp�/6�Q� ���&� #��c$�����[�,�\��V0��ʾ��E3�N�u=
.�:
6q6�d)>��$�c�Z�Z�n�H8z8��=��i�e�,1*qRrCC�> v��<���'Y��8�[G�PF�j�����=�{w4<9Nn#�}8�-���h+���Yb#ȞND�v��E=Õ�St��6��\��� �IQ�]�7�BdA�
-�Hl���
f�<��]\��	�KYy!�ArO��8��-�ʾ:�b�fXX xm��Ѓ45Q6�C��hӁ�Lfh���I�s�@>����Q�|v�.��	���g���m�?�qll@�W\6��QȀpzS\a��H�}��A(r�6�����{��2�K�e��"��X�^��/~��
-[� �ij�����ù��&�=%��E�ڜ�6�R׶qް�..���yv�q��~�1�c_�t�j���yf��)3�2(��)6겗~���'��x#endstream
-endobj
 2515 0 obj <<
-/Type /Page
-/Contents 2516 0 R
-/Resources 2514 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 2552 0 R
-/Annots [ 2522 0 R ]
+/D [2505 0 R /XYZ 115.56 638.605 null]
 >> endobj
-2522 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [474.039 662.351 518.87 671.263]
-/Subtype /Link
-/A << /S /GoTo /D (extraconfig) >>
+2516 0 obj <<
+/D [2505 0 R /XYZ 153.506 625.654 null]
 >> endobj
 2517 0 obj <<
-/D [2515 0 R /XYZ 71.731 729.265 null]
+/D [2505 0 R /XYZ 343.016 625.654 null]
 >> endobj
 2518 0 obj <<
-/D [2515 0 R /XYZ 71.731 718.306 null]
+/D [2505 0 R /XYZ 71.731 612.702 null]
 >> endobj
 2519 0 obj <<
-/D [2515 0 R /XYZ 264.224 708.344 null]
+/D [2505 0 R /XYZ 163.765 586.8 null]
 >> endobj
 2520 0 obj <<
-/D [2515 0 R /XYZ 95.243 682.441 null]
+/D [2505 0 R /XYZ 71.731 579.661 null]
 >> endobj
 2521 0 obj <<
-/D [2515 0 R /XYZ 71.731 675.303 null]
->> endobj
-1344 0 obj <<
-/D [2515 0 R /XYZ 71.731 647.407 null]
+/D [2505 0 R /XYZ 71.731 530.844 null]
 >> endobj
-198 0 obj <<
-/D [2515 0 R /XYZ 381.468 604.31 null]
+2522 0 obj <<
+/D [2505 0 R /XYZ 71.731 499.726 null]
 >> endobj
 2523 0 obj <<
-/D [2515 0 R /XYZ 71.731 591.872 null]
->> endobj
-1345 0 obj <<
-/D [2515 0 R /XYZ 71.731 580.594 null]
->> endobj
-202 0 obj <<
-/D [2515 0 R /XYZ 193.715 543.378 null]
+/D [2505 0 R /XYZ 71.731 474.655 null]
 >> endobj
 2524 0 obj <<
-/D [2515 0 R /XYZ 71.731 533.013 null]
+/D [2505 0 R /XYZ 71.731 453.499 null]
 >> endobj
 2525 0 obj <<
-/D [2515 0 R /XYZ 71.731 511.134 null]
+/D [2505 0 R /XYZ 71.731 433.574 null]
 >> endobj
 2526 0 obj <<
-/D [2515 0 R /XYZ 71.731 511.134 null]
+/D [2505 0 R /XYZ 458.479 421.918 null]
 >> endobj
 2527 0 obj <<
-/D [2515 0 R /XYZ 101.32 501.635 null]
+/D [2505 0 R /XYZ 207.921 410.262 null]
+>> endobj
+2528 0 obj <<
+/D [2505 0 R /XYZ 71.731 382.366 null]
+>> endobj
+2529 0 obj <<
+/D [2505 0 R /XYZ 71.731 336.374 null]
 >> endobj
 2530 0 obj <<
-/D [2515 0 R /XYZ 71.731 491.493 null]
+/D [2505 0 R /XYZ 358.177 325.579 null]
 >> endobj
 2531 0 obj <<
-/D [2515 0 R /XYZ 416.305 478.721 null]
+/D [2505 0 R /XYZ 461.001 325.579 null]
 >> endobj
-2532 0 obj <<
-/D [2515 0 R /XYZ 71.731 453.65 null]
+1359 0 obj <<
+/D [2505 0 R /XYZ 71.731 297.584 null]
+>> endobj
+194 0 obj <<
+/D [2505 0 R /XYZ 166.615 258.311 null]
 >> endobj
 2533 0 obj <<
-/D [2515 0 R /XYZ 71.731 432.78 null]
+/D [2505 0 R /XYZ 71.731 247.946 null]
 >> endobj
 2534 0 obj <<
-/D [2515 0 R /XYZ 71.731 414.098 null]
->> endobj
-2535 0 obj <<
-/D [2515 0 R /XYZ 71.731 380.29 null]
+/D [2505 0 R /XYZ 258.543 238.187 null]
 >> endobj
 2536 0 obj <<
-/D [2515 0 R /XYZ 114.77 368.733 null]
+/D [2505 0 R /XYZ 71.731 223.079 null]
 >> endobj
 2537 0 obj <<
-/D [2515 0 R /XYZ 114.77 357.077 null]
+/D [2505 0 R /XYZ 71.731 208.135 null]
 >> endobj
 2538 0 obj <<
-/D [2515 0 R /XYZ 114.77 345.421 null]
+/D [2505 0 R /XYZ 71.731 159.083 null]
 >> endobj
 2539 0 obj <<
-/D [2515 0 R /XYZ 114.77 333.764 null]
->> endobj
-2540 0 obj <<
-/D [2515 0 R /XYZ 71.731 322.108 null]
+/D [2505 0 R /XYZ 321.927 146.132 null]
 >> endobj
 2541 0 obj <<
-/D [2515 0 R /XYZ 71.731 302.183 null]
+/D [2505 0 R /XYZ 349.018 120.229 null]
 >> endobj
 2542 0 obj <<
-/D [2515 0 R /XYZ 369.099 278.87 null]
->> endobj
-1346 0 obj <<
-/D [2515 0 R /XYZ 71.731 250.975 null]
->> endobj
-206 0 obj <<
-/D [2515 0 R /XYZ 246.48 211.603 null]
+/D [2505 0 R /XYZ 415.603 120.229 null]
 >> endobj
 2543 0 obj <<
-/D [2515 0 R /XYZ 71.731 201.46 null]
+/D [2505 0 R /XYZ 91.925 107.278 null]
 >> endobj
 2544 0 obj <<
-/D [2515 0 R /XYZ 71.731 160.494 null]
->> endobj
-2545 0 obj <<
-/D [2515 0 R /XYZ 71.731 160.494 null]
+/D [2505 0 R /XYZ 151.7 107.278 null]
 >> endobj
-2546 0 obj <<
-/D [2515 0 R /XYZ 71.731 155.513 null]
+2504 0 obj <<
+/Font << /F33 1322 0 R /F27 1224 0 R /F35 1589 0 R /F23 1217 0 R /F44 2069 0 R /F48 2081 0 R /F32 1231 0 R >>
+/ProcSet [ /PDF /Text ]
 >> endobj
+2548 0 obj <<
+/Length 2012      
+/Filter /FlateDecode
+>>
+stream
+xڅXm���~��@���z��kQ���A� -.�A��D[�ʒ"R�����p����{8�qH
9Ùg^�p��p��"�a�
+m�Uyx�����7!s���/x�yz���8^��ī��*	sQd�,�D�F���޷���~�^$h���F�m��i�ʹ�ܴ�\���_o�{���q&�<~U/�s�X��s�r'�U�n�ڏ��;���맶��luO�V�
+
���,�g��:�O�{T�(�>6�1�`j��+��f���E$�"�Q��/e[�ݮ��R�Md7��� j�>�z�Ϩ;/�iTN�\�`��$h|P�f���s�
cӏ�i�~����-�H�b几�R�
�a�)���I�
�4�~<h��~@���nƩ>i�f&�,��5��~"��蚿�4N��X���4"�Q-n�Q�M{-h�AY���G>/�-C{�Q�Sw�(i�7�Z��Z�iC{�|�����V]$�Zv{EtcٻHE���f�(�7�e��&��	���~0Mo]�;0���리��S3�t��|2#�� "��:��8X_�6>�Gv� Y�b��dh��:���j�ID�w�������>
��*Qm�j�l�)�^��,���:%�@��Ea�l~�d"��DX#h�V�r��䱖f�+��Y�}{�[�l�P�������D��`ٝA�c�а�)C����.�f�U���#;��FC�G�I�Nn[吢�%��7|��q�&�hpG"��P��&kG�����ZbB��q��HU�Jl/U�CO��D+�Q#���WS��	�Fd8�4s��O�Ѧ)5Yc׏�r��9]E;���E^
+�36!�`+u��ل��U�4/\�����px��5���~I1\V˨�<]S�Dz;�Հ��&@�bp��
ک��r#�(�>X"M=A�+ �g1kg�C�lW�H�S�bƻY��H�ę���n�wy�M�1w%��ecy�1��
�^D�-����mϡ��f_�w��\�/%�4|}o(+�����gq�W��K0�����W���\���YsC��<��h�Z� ���r�l�m�|��F-��%�95���*T>���v��J���(y�7�-DQ���*�k�����������
+��"'��jbzZ�d�mˡ������=�4$��XH�Q��!v#=q�$|�mp��l?�B��e���:�n��D�����w7�#���^e��n��L�N��|F�;ijq�eTTopK�vO��bs��2�C��}�b�a?�F�
��?'�ʵ��ߚ���8ZPe^�[9<�zC�C��ϽLPo�3a�З��G�v3�3@U��~������J�1���˼�*7��1���;���D-,���_��	V�Q�^�Zai|۝c���R"c�D%�'^��V;7@Q-b˧L�,?����V ��.0�["�do�����"�4FPm�����x<�7��������#F׽��!�E)�dЧm�=Y�
�?Ԡ�Ju%&/�!�`Ѻp�/6�Q� ���&� #��c$�����[�,�\��V0��ʾ��E3�N�u=
.�:
6q6�d)>��$�c�Z�Z�n�H8z8��=��i�e�,1*qRrCC�> v��<���'Y��8�[G�PF�j�����=�{w4<9Nn#�}8�-���h+���Yb#ȞND�v��E=Õ�St��6��\��� �IQ�]�7�BdA�
+�Hl���
f�<��]\��	�KYy!�ArO��8��-�ʾ:�b�fXX xm��Ѓ45Q6�C��hӁ�Lfh���I�s�@>����Q�|v�.��	���g���m�?�qll@�W\6��QȀpzS\a��H�}��A(r�6�����{��2�K�e��"��X�^��/~��
+[� �ij�����ù��&�=%��E�ڜ�6�R׶qް�..���yv�q��~�1�c_�t�j���yf��)3�2(��)6겗~���'��x#endstream
+endobj
 2547 0 obj <<
-/D [2515 0 R /XYZ 89.664 132.698 null]
+/Type /Page
+/Contents 2548 0 R
+/Resources 2546 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 2545 0 R
+/Annots [ 2554 0 R ]
 >> endobj
-2548 0 obj <<
-/D [2515 0 R /XYZ 290.096 132.698 null]
+2554 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [474.039 662.351 518.87 671.263]
+/Subtype /Link
+/A << /S /GoTo /D (extraconfig) >>
 >> endobj
 2549 0 obj <<
-/D [2515 0 R /XYZ 71.731 117.59 null]
+/D [2547 0 R /XYZ 71.731 729.265 null]
 >> endobj
 2550 0 obj <<
-/D [2515 0 R /XYZ 89.664 101.814 null]
+/D [2547 0 R /XYZ 71.731 718.306 null]
 >> endobj
 2551 0 obj <<
-/D [2515 0 R /XYZ 71.731 99.657 null]
+/D [2547 0 R /XYZ 264.224 708.344 null]
 >> endobj
-2514 0 obj <<
-/Font << /F33 1306 0 R /F27 1208 0 R /F35 1569 0 R /F23 1201 0 R /F61 2529 0 R /F44 2037 0 R >>
-/ProcSet [ /PDF /Text ]
+2552 0 obj <<
+/D [2547 0 R /XYZ 95.243 682.441 null]
+>> endobj
+2553 0 obj <<
+/D [2547 0 R /XYZ 71.731 675.303 null]
+>> endobj
+1360 0 obj <<
+/D [2547 0 R /XYZ 71.731 647.407 null]
+>> endobj
+198 0 obj <<
+/D [2547 0 R /XYZ 381.468 604.31 null]
 >> endobj
 2555 0 obj <<
-/Length 2137      
-/Filter /FlateDecode
->>
-stream
-x��]��6�=���CW.V\Q�,�w�b�n��!-����D��J����ί�g$����^���"�p8盲\�'�IC��p/��U���ʛW�)|&�g4�7��E&�u���+��,Y$Q(�8\l�߼o��u���8�BA㏦�UU�fO����cYUj���O�6ӡq��,�^�k�"LÅ"��g"	pR�V��ar��iF�=���X�W����q:���x�[<��4���y$��2�=U
��GPAE٩m��U��Ѧ�&_��;��U������%(��G�H�kw����e���J��49.e�Nb����k^�e7�����'"hἧ${��
J���:�ʏ��=��C�7_�����:���C�Q�v)So4R��;Ov ��|�A��WkF��e*m��s
-Cm��Pd�tz�t��ߕ�5��j��ثU���f$:ޠ�Q�AOb6��j[���F����0_C��i!�+���-N�T'T�-��!an�� \�fA��\܋�P�Jo�<��*p�i[�N��_J)�͗�6ö������c�$!7�YB��΅�9?*f���H��V�R5�U5��EK
���o�P>��z�����%d1+�
-t�0�<e�����E�C���5��4if::�P�#�17���>Ҭ���)��њ�D�*�u�•��)��p�+�����,�?(�P��mo��|���}Mb$���{�0�2����9?9Ya6�!���x�=*�7Vw��(�ݣ��e��`��h!W��(5�m�8rB�"�?ؗ���x��4��o]�ZìfI6p%B���: ��ڂ �jȧ���4toL�`��I�e6�w���
�6�D!�����Z="���֌�#ώ�P�G��1c�)�au`~�ǜ����5n�]��6�6���L�;u��ki�m�T��'����f_b�Ժese~ ��
-G�?�J���T�s�Lo�`��ׇ�yx��͠�`���_���m��S/�
-���Q�s�N�ܩ��������FU�`����8#� ʸz�)k�>>B1cUV�1o��Ֆ&����a^���:U3��K"3��
�p���� �v�Ԟ1��^b�tܗ�����.�o��h���+��8V��t����1|C)�2s"���_����sC^��O����I��/�V琵N�"�� ���V���N4ՔE&)$$�{?�"N)�������qM�a,B�p�|_������`�ByxF����>d�O�4��--�+���Ī��n����%�=���Paa��
$S�%^�kw�[��^�gLٱ�Y1�����v�-���Z��c�)7B�U�KO	�Y���x�C�O����F� �r	���`#=�e�҃����xK`7�[&0��_7���,@6�������⏮�N���NEf%.k�'�	w� T��q��ͪ8bC�½[�u:A�ܚ߃ ��b\�܍
-±u1�*�bR��S�aJWKB�#���/�	q��9q�����2�E���{`��o�������7�@�9;׀�QX0T����F�����@GU��:�ެkH��ݣё#�Y
#�S�
-ϫ�����׸����%s>^��l�/��̳im7���z��D�'�̖�C@M�I�^���]ޖ[�NKs���u�9)�V�=ɳ�ڑƟ=y[^3Bi�A-1x��X����i"�U���L���W���[:wJ��W��&z���¹KF���h�	B-6̣:ތY�+-��5�b�3��E�R���/沵��E�W����m�3��i�K��>�m|u'����
,A���7>�i��t�j|�a�p�o�!$_�C�
-����ňu*x�j3G�j(0�\}@�������c�QpKXzy����`#>�^lt^�We͞�\Q�Ac��V�.|�(��M uS����~#�j��=�jץ4�-�:�< ���j��	uf�l��KA�+>YLڂ��@\bK8q�D_Z`J��]�߹On��Ϝ�8�!��qؒA;��t�4�l�^g͒��ڢ�zCoW������ܶ�jڅ.1~�te|y��f������+����+R���#����oq�� ���d����OO�>�T�endstream
-endobj
-2554 0 obj <<
-/Type /Page
-/Contents 2555 0 R
-/Resources 2553 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 2552 0 R
-/Annots [ 2569 0 R ]
+/D [2547 0 R /XYZ 71.731 591.872 null]
 >> endobj
-2569 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [235.966 332.05 287.048 340.961]
-/Subtype /Link
-/A << /S /GoTo /D (whining) >>
+1361 0 obj <<
+/D [2547 0 R /XYZ 71.731 580.594 null]
+>> endobj
+202 0 obj <<
+/D [2547 0 R /XYZ 193.715 543.378 null]
 >> endobj
 2556 0 obj <<
-/D [2554 0 R /XYZ 71.731 729.265 null]
+/D [2547 0 R /XYZ 71.731 533.013 null]
 >> endobj
 2557 0 obj <<
-/D [2554 0 R /XYZ 89.664 708.344 null]
+/D [2547 0 R /XYZ 71.731 511.134 null]
 >> endobj
 2558 0 obj <<
-/D [2554 0 R /XYZ 71.731 685.43 null]
+/D [2547 0 R /XYZ 71.731 511.134 null]
 >> endobj
 2559 0 obj <<
-/D [2554 0 R /XYZ 255.817 672.478 null]
->> endobj
-2560 0 obj <<
-/D [2554 0 R /XYZ 511.98 672.478 null]
->> endobj
-2561 0 obj <<
-/D [2554 0 R /XYZ 482.926 633.624 null]
->> endobj
-1347 0 obj <<
-/D [2554 0 R /XYZ 71.731 613.654 null]
->> endobj
-210 0 obj <<
-/D [2554 0 R /XYZ 234.86 576.319 null]
+/D [2547 0 R /XYZ 101.32 501.635 null]
 >> endobj
 2562 0 obj <<
-/D [2554 0 R /XYZ 71.731 565.954 null]
+/D [2547 0 R /XYZ 71.731 491.493 null]
 >> endobj
 2563 0 obj <<
-/D [2554 0 R /XYZ 71.731 536.105 null]
+/D [2547 0 R /XYZ 416.305 478.721 null]
 >> endobj
 2564 0 obj <<
-/D [2554 0 R /XYZ 71.731 500.239 null]
+/D [2547 0 R /XYZ 71.731 453.65 null]
 >> endobj
 2565 0 obj <<
-/D [2554 0 R /XYZ 71.731 489.332 null]
+/D [2547 0 R /XYZ 71.731 432.78 null]
 >> endobj
 2566 0 obj <<
-/D [2554 0 R /XYZ 71.731 469.407 null]
+/D [2547 0 R /XYZ 71.731 414.098 null]
 >> endobj
 2567 0 obj <<
-/D [2554 0 R /XYZ 369.099 447.502 null]
->> endobj
-1348 0 obj <<
-/D [2554 0 R /XYZ 71.731 419.606 null]
->> endobj
-214 0 obj <<
-/D [2554 0 R /XYZ 168.193 380.234 null]
+/D [2547 0 R /XYZ 71.731 380.29 null]
 >> endobj
 2568 0 obj <<
-/D [2554 0 R /XYZ 71.731 369.869 null]
+/D [2547 0 R /XYZ 114.77 368.733 null]
+>> endobj
+2569 0 obj <<
+/D [2547 0 R /XYZ 114.77 357.077 null]
 >> endobj
 2570 0 obj <<
-/D [2554 0 R /XYZ 71.731 316.174 null]
+/D [2547 0 R /XYZ 114.77 345.421 null]
 >> endobj
 2571 0 obj <<
-/D [2554 0 R /XYZ 71.731 278.252 null]
+/D [2547 0 R /XYZ 114.77 333.764 null]
 >> endobj
 2572 0 obj <<
-/D [2554 0 R /XYZ 71.731 267.345 null]
+/D [2547 0 R /XYZ 71.731 322.108 null]
 >> endobj
 2573 0 obj <<
-/D [2554 0 R /XYZ 71.731 247.419 null]
+/D [2547 0 R /XYZ 71.731 302.183 null]
 >> endobj
 2574 0 obj <<
-/D [2554 0 R /XYZ 76.712 197.22 null]
+/D [2547 0 R /XYZ 369.099 278.87 null]
+>> endobj
+1362 0 obj <<
+/D [2547 0 R /XYZ 71.731 250.975 null]
+>> endobj
+206 0 obj <<
+/D [2547 0 R /XYZ 246.48 211.603 null]
 >> endobj
 2575 0 obj <<
-/D [2554 0 R /XYZ 71.731 177.295 null]
+/D [2547 0 R /XYZ 71.731 201.46 null]
 >> endobj
 2576 0 obj <<
-/D [2554 0 R /XYZ 369.099 153.983 null]
+/D [2547 0 R /XYZ 71.731 160.494 null]
 >> endobj
-1349 0 obj <<
-/D [2554 0 R /XYZ 71.731 126.087 null]
+2577 0 obj <<
+/D [2547 0 R /XYZ 71.731 160.494 null]
 >> endobj
-2553 0 obj <<
-/Font << /F33 1306 0 R /F27 1208 0 R /F23 1201 0 R /F35 1569 0 R /F44 2037 0 R >>
-/ProcSet [ /PDF /Text ]
+2578 0 obj <<
+/D [2547 0 R /XYZ 71.731 155.513 null]
 >> endobj
 2579 0 obj <<
-/Length 2291      
-/Filter /FlateDecode
->>
-stream
-xڭ]��6�}E���3�-�_�6{sw��X����a��N"�c�����__R�;����PE�?=�"��h�E"��GB�ɢ<�	;�����)��~B�����_q�(D�Ƌ��b��Y,E���s�[����l�/�eR��S;X�4�����q��n����o��<^�ę(���ry��d���"^�(�W0�D���dR�"A��<x���@�r���Pt����d��]v�3\��PD2q��#���̂�4త�����������M��mE����$	�ЮW�^���e���Q��0[�-M��:���~]F��92�jY��:퀵��h^�m��k��QPh�:��H�|��u�Tr���~��-3��k8����҄Q*"Opw� q�m7_�<AT�4J�B��.XD�ԩd��i�/�ĉ������f�^���y�WK_�h������+��4�����6�tcJe5�@xs���}ʂ��nNl�D��Rgx )2К^�B����T��(wWl�%"�2��pO}ϸ{0b�7��8ws��f0����@��y%��5��6�\��([�d�<qq�{RH�[�����L���ozO.��10\��)��Si�v�Pl��V7��z��s+V�ɖq�W=X�t���B����Q����L_�O$X{��%��v����U Y��4���@�����ժt"m�n>���+���⣣"����7�c"��7;t1�P=_�K���@
-ܡ���ݕ4�ki��i?���������0s���kQ�cǑO/p��[��򼅈�|g�
-�IX,�׀K�ciI���������?`�9���Քn���O�9u~��\��!�hy0ձ�	ޚ���� ge�]s���6k՗{m�҂���k����r���1S�W��w��|���=,9���0xxO�t.���ĐV$�ј����M#�K1�œ~ZC�0m_�~Խ�
-����O���և٭o�P���8�"��z���l�0�w6܏��Td�W)�“���SoSBҟ��h�WE$�$oDI]'�ǘ^��Q���"���Qʘ���5���/�<��Ƞ����ɳ���.,�ǎ��|������L:���$d�Ƹ*�L�@��a�]<��JC�ץE�1LBg��bˈ6.|p h�7�@�Q6�g���$��w�vKJ��l�6
Cΐx��1�*?��9ɴ�>�<Ӗ�/�X��!��hA�9b�"�|W��p�T,�Ǫ�#���r(�G�Z\agr�y���RV��}�L�i$����;���(�nF��T$Y1s������ù�^��^J�(�i^�0����{��ݭ��$(�3��4-��96��6���l��~����N�u 6�԰�6���Lo9l�lK��ﺬ:I������0{�����h��}���O�n��I��ɯ�����h���V}P��4]o����[����/��f����c�v�X��R�tC+����㪪w�� ���B�)��[�j�z�r�X�p���u�P�]��pk'��MI.�liz��L[񇎜SL��.OO\��	W�|b
�4��s���"n�4�C������o���?�J[Bqg]`g
��n�ZO���{`�+!=o?���騜��9�D"�4`�V�ٿ-!��m��h��G�#̶�:}�@���࡫K(�D�
�YH�u,M)��C��O?�y��%5�a"���9Rcᖕ���)]_� ߚ�ҹ���{�$�R�0�m��x��\i&i0=��.
-��]�g��^}p�+�����X�y:~g��u��	������,T�����.�T��`��3W�3�d��?���o�&>�+�Ā�4z�ҽ����4k����3��.���e�<:}6��Myxe����P�>���4��
-���}�@�������m��]���]θ�~z����f|O��.o�M��`-ОE��0�fI\>�N(�F�NN@��K7؆���+��M,�R�
-�)�r?�V�b��14�����Ŏ���޵���7�����s�:�Wr������ˈ_�'�tD�=[Bӵ�q5
ֆ��t��[��W���ѢW4���}�f&o��vE�g�X<�j����
-�/}�Kre���,Ec#+Z(�A�s��n�=�%ܢ��RNހ��Ȧ�UJk�_yN�I�Ń��P�.Ej��j��3=��H�7�mY���%��n
�9$���l9�\��%���g�v��[�?���O���(endstream
-endobj
-2578 0 obj <<
-/Type /Page
-/Contents 2579 0 R
-/Resources 2577 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 2552 0 R
+/D [2547 0 R /XYZ 89.664 132.698 null]
 >> endobj
 2580 0 obj <<
-/D [2578 0 R /XYZ 71.731 729.265 null]
->> endobj
-218 0 obj <<
-/D [2578 0 R /XYZ 200.128 707.841 null]
+/D [2547 0 R /XYZ 290.096 132.698 null]
 >> endobj
 2581 0 obj <<
-/D [2578 0 R /XYZ 71.731 700.488 null]
+/D [2547 0 R /XYZ 71.731 117.59 null]
 >> endobj
 2582 0 obj <<
-/D [2578 0 R /XYZ 99.155 674.765 null]
+/D [2547 0 R /XYZ 89.664 101.814 null]
 >> endobj
 2583 0 obj <<
-/D [2578 0 R /XYZ 121.261 674.765 null]
->> endobj
-2584 0 obj <<
-/D [2578 0 R /XYZ 158.738 674.765 null]
+/D [2547 0 R /XYZ 71.731 99.657 null]
 >> endobj
-2585 0 obj <<
-/D [2578 0 R /XYZ 71.731 661.813 null]
+2546 0 obj <<
+/Font << /F33 1322 0 R /F27 1224 0 R /F35 1589 0 R /F23 1217 0 R /F61 2561 0 R /F44 2069 0 R >>
+/ProcSet [ /PDF /Text ]
 >> endobj
 2586 0 obj <<
-/D [2578 0 R /XYZ 71.731 655.424 null]
+/Length 2137      
+/Filter /FlateDecode
+>>
+stream
+x��]��6�=���CW.V\Q�,�w�b�n��!-����D��J����ί�g$����^���"�p8盲\�'�IC��p/��U���ʛW�)|&�g4�7��E&�u���+��,Y$Q(�8\l�߼o��u���8�BA㏦�UU�fO����cYUj���O�6ӡq��,�^�k�"LÅ"��g"	pR�V��ar��iF�=���X�W����q:���x�[<��4���y$��2�=U
��GPAE٩m��U��Ѧ�&_��;��U������%(��G�H�kw����e���J��49.e�Nb����k^�e7�����'"hἧ${��
J���:�ʏ��=��C�7_�����:���C�Q�v)So4R��;Ov ��|�A��WkF��e*m��s
+Cm��Pd�tz�t��ߕ�5��j��ثU���f$:ޠ�Q�AOb6��j[���F����0_C��i!�+���-N�T'T�-��!an�� \�fA��\܋�P�Jo�<��*p�i[�N��_J)�͗�6ö������c�$!7�YB��΅�9?*f���H��V�R5�U5��EK
���o�P>��z�����%d1+�
+t�0�<e�����E�C���5��4if::�P�#�17���>Ҭ���)��њ�D�*�u�•��)��p�+�����,�?(�P��mo��|���}Mb$���{�0�2����9?9Ya6�!���x�=*�7Vw��(�ݣ��e��`��h!W��(5�m�8rB�"�?ؗ���x��4��o]�ZìfI6p%B���: ��ڂ �jȧ���4toL�`��I�e6�w���
�6�D!�����Z="���֌�#ώ�P�G��1c�)�au`~�ǜ����5n�]��6�6���L�;u��ki�m�T��'����f_b�Ժese~ ��
+G�?�J���T�s�Lo�`��ׇ�yx��͠�`���_���m��S/�
+���Q�s�N�ܩ��������FU�`����8#� ʸz�)k�>>B1cUV�1o��Ֆ&����a^���:U3��K"3��
�p���� �v�Ԟ1��^b�tܗ�����.�o��h���+��8V��t����1|C)�2s"���_����sC^��O����I��/�V琵N�"�� ���V���N4ՔE&)$$�{?�"N)�������qM�a,B�p�|_������`�ByxF����>d�O�4��--�+���Ī��n����%�=���Paa��
$S�%^�kw�[��^�gLٱ�Y1�����v�-���Z��c�)7B�U�KO	�Y���x�C�O����F� �r	���`#=�e�҃����xK`7�[&0��_7���,@6�������⏮�N���NEf%.k�'�	w� T��q��ͪ8bC�½[�u:A�ܚ߃ ��b\�܍
+±u1�*�bR��S�aJWKB�#���/�	q��9q�����2�E���{`��o�������7�@�9;׀�QX0T����F�����@GU��:�ެkH��ݣё#�Y
#�S�
+ϫ�����׸����%s>^��l�/��̳im7���z��D�'�̖�C@M�I�^���]ޖ[�NKs���u�9)�V�=ɳ�ڑƟ=y[^3Bi�A-1x��X����i"�U���L���W���[:wJ��W��&z���¹KF���h�	B-6̣:ތY�+-��5�b�3��E�R���/沵��E�W����m�3��i�K��>�m|u'����
,A���7>�i��t�j|�a�p�o�!$_�C�
+����ňu*x�j3G�j(0�\}@�������c�QpKXzy����`#>�^lt^�We͞�\Q�Ac��V�.|�(��M uS����~#�j��=�jץ4�-�:�< ���j��	uf�l��KA�+>YLڂ��@\bK8q�D_Z`J��]�߹On��Ϝ�8�!��qؒA;��t�4�l�^g͒��ڢ�zCoW������ܶ�jڅ.1~�te|y��f������+����+R���#����oq�� ���d����OO�>�T�endstream
+endobj
+2585 0 obj <<
+/Type /Page
+/Contents 2586 0 R
+/Resources 2584 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 2545 0 R
+/Annots [ 2600 0 R ]
+>> endobj
+2600 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [235.966 332.05 287.048 340.961]
+/Subtype /Link
+/A << /S /GoTo /D (whining) >>
 >> endobj
 2587 0 obj <<
-/D [2578 0 R /XYZ 245.988 643.881 null]
+/D [2585 0 R /XYZ 71.731 729.265 null]
 >> endobj
 2588 0 obj <<
-/D [2578 0 R /XYZ 268.387 643.881 null]
+/D [2585 0 R /XYZ 89.664 708.344 null]
 >> endobj
 2589 0 obj <<
-/D [2578 0 R /XYZ 311.83 643.881 null]
+/D [2585 0 R /XYZ 71.731 685.43 null]
 >> endobj
 2590 0 obj <<
-/D [2578 0 R /XYZ 225.31 630.929 null]
+/D [2585 0 R /XYZ 255.817 672.478 null]
 >> endobj
 2591 0 obj <<
-/D [2578 0 R /XYZ 215.062 617.978 null]
+/D [2585 0 R /XYZ 511.98 672.478 null]
 >> endobj
-1350 0 obj <<
-/D [2578 0 R /XYZ 71.731 610.84 null]
+2592 0 obj <<
+/D [2585 0 R /XYZ 482.926 633.624 null]
 >> endobj
-222 0 obj <<
-/D [2578 0 R /XYZ 270.581 573.624 null]
+1363 0 obj <<
+/D [2585 0 R /XYZ 71.731 613.654 null]
 >> endobj
-2592 0 obj <<
-/D [2578 0 R /XYZ 71.731 566.272 null]
+210 0 obj <<
+/D [2585 0 R /XYZ 234.86 576.319 null]
 >> endobj
 2593 0 obj <<
-/D [2578 0 R /XYZ 71.731 533.41 null]
+/D [2585 0 R /XYZ 71.731 565.954 null]
 >> endobj
 2594 0 obj <<
-/D [2578 0 R /XYZ 71.731 520.459 null]
+/D [2585 0 R /XYZ 71.731 536.105 null]
 >> endobj
 2595 0 obj <<
-/D [2578 0 R /XYZ 71.731 505.515 null]
+/D [2585 0 R /XYZ 71.731 500.239 null]
 >> endobj
 2596 0 obj <<
-/D [2578 0 R /XYZ 71.731 492.563 null]
+/D [2585 0 R /XYZ 71.731 489.332 null]
 >> endobj
 2597 0 obj <<
-/D [2578 0 R /XYZ 91.656 476.787 null]
+/D [2585 0 R /XYZ 71.731 469.407 null]
 >> endobj
 2598 0 obj <<
-/D [2578 0 R /XYZ 165.001 476.787 null]
+/D [2585 0 R /XYZ 369.099 447.502 null]
 >> endobj
-2599 0 obj <<
-/D [2578 0 R /XYZ 376.695 450.884 null]
+1364 0 obj <<
+/D [2585 0 R /XYZ 71.731 419.606 null]
 >> endobj
-2600 0 obj <<
-/D [2578 0 R /XYZ 101.898 437.933 null]
+214 0 obj <<
+/D [2585 0 R /XYZ 168.193 380.234 null]
+>> endobj
+2599 0 obj <<
+/D [2585 0 R /XYZ 71.731 369.869 null]
 >> endobj
 2601 0 obj <<
-/D [2578 0 R /XYZ 71.731 427.871 null]
+/D [2585 0 R /XYZ 71.731 316.174 null]
 >> endobj
 2602 0 obj <<
-/D [2578 0 R /XYZ 71.731 413.838 null]
+/D [2585 0 R /XYZ 71.731 278.252 null]
 >> endobj
 2603 0 obj <<
-/D [2578 0 R /XYZ 91.656 397.086 null]
+/D [2585 0 R /XYZ 71.731 267.345 null]
 >> endobj
 2604 0 obj <<
-/D [2578 0 R /XYZ 71.731 384.967 null]
+/D [2585 0 R /XYZ 71.731 247.419 null]
 >> endobj
 2605 0 obj <<
-/D [2578 0 R /XYZ 71.731 372.992 null]
+/D [2585 0 R /XYZ 76.712 197.22 null]
 >> endobj
 2606 0 obj <<
-/D [2578 0 R /XYZ 91.656 356.239 null]
+/D [2585 0 R /XYZ 71.731 177.295 null]
 >> endobj
 2607 0 obj <<
-/D [2578 0 R /XYZ 71.731 344.12 null]
+/D [2585 0 R /XYZ 369.099 153.983 null]
 >> endobj
-2608 0 obj <<
-/D [2578 0 R /XYZ 71.731 332.145 null]
+1365 0 obj <<
+/D [2585 0 R /XYZ 71.731 126.087 null]
 >> endobj
-2609 0 obj <<
-/D [2578 0 R /XYZ 91.656 315.393 null]
+2584 0 obj <<
+/Font << /F33 1322 0 R /F27 1224 0 R /F23 1217 0 R /F35 1589 0 R /F44 2069 0 R >>
+/ProcSet [ /PDF /Text ]
 >> endobj
 2610 0 obj <<
-/D [2578 0 R /XYZ 71.731 269.4 null]
+/Length 2291      
+/Filter /FlateDecode
+>>
+stream
+xڭ]��6�}E���3�-�_�6{sw��X����a��N"�c�����__R�;����PE�?=�"��h�E"��GB�ɢ<�	;�����)��~B�����_q�(D�Ƌ��b��Y,E���s�[����l�/�eR��S;X�4�����q��n����o��<^�ę(���ry��d���"^�(�W0�D���dR�"A��<x���@�r���Pt����d��]v�3\��PD2q��#���̂�4త�����������M��mE����$	�ЮW�^���e���Q��0[�-M��:���~]F��92�jY��:퀵��h^�m��k��QPh�:��H�|��u�Tr���~��-3��k8����҄Q*"Opw� q�m7_�<AT�4J�B��.XD�ԩd��i�/�ĉ������f�^���y�WK_�h������+��4�����6�tcJe5�@xs���}ʂ��nNl�D��Rgx )2К^�B����T��(wWl�%"�2��pO}ϸ{0b�7��8ws��f0����@��y%��5��6�\��([�d�<qq�{RH�[�����L���ozO.��10\��)��Si�v�Pl��V7��z��s+V�ɖq�W=X�t���B����Q����L_�O$X{��%��v����U Y��4���@�����ժt"m�n>���+���⣣"����7�c"��7;t1�P=_�K���@
+ܡ���ݕ4�ki��i?���������0s���kQ�cǑO/p��[��򼅈�|g�
+�IX,�׀K�ciI���������?`�9���Քn���O�9u~��\��!�hy0ձ�	ޚ���� ge�]s���6k՗{m�҂���k����r���1S�W��w��|���=,9���0xxO�t.���ĐV$�ј����M#�K1�œ~ZC�0m_�~Խ�
+����O���և٭o�P���8�"��z���l�0�w6܏��Td�W)�“���SoSBҟ��h�WE$�$oDI]'�ǘ^��Q���"���Qʘ���5���/�<��Ƞ����ɳ���.,�ǎ��|������L:���$d�Ƹ*�L�@��a�]<��JC�ץE�1LBg��bˈ6.|p h�7�@�Q6�g���$��w�vKJ��l�6
Cΐx��1�*?��9ɴ�>�<Ӗ�/�X��!��hA�9b�"�|W��p�T,�Ǫ�#���r(�G�Z\agr�y���RV��}�L�i$����;���(�nF��T$Y1s������ù�^��^J�(�i^�0����{��ݭ��$(�3��4-��96��6���l��~����N�u 6�԰�6���Lo9l�lK��ﺬ:I������0{�����h��}���O�n��I��ɯ�����h���V}P��4]o����[����/��f����c�v�X��R�tC+����㪪w�� ���B�)��[�j�z�r�X�p���u�P�]��pk'��MI.�liz��L[񇎜SL��.OO\��	W�|b
�4��s���"n�4�C������o���?�J[Bqg]`g
��n�ZO���{`�+!=o?���騜��9�D"�4`�V�ٿ-!��m��h��G�#̶�:}�@���࡫K(�D�
�YH�u,M)��C��O?�y��%5�a"���9Rcᖕ���)]_� ߚ�ҹ���{�$�R�0�m��x��\i&i0=��.
+��]�g��^}p�+�����X�y:~g��u��	������,T�����.�T��`��3W�3�d��?���o�&>�+�Ā�4z�ҽ����4k����3��.���e�<:}6��Myxe����P�>���4��
+���}�@�������m��]���]θ�~z����f|O��.o�M��`-ОE��0�fI\>�N(�F�NN@��K7؆���+��M,�R�
+�)�r?�V�b��14�����Ŏ���޵���7�����s�:�Wr������ˈ_�'�tD�=[Bӵ�q5
ֆ��t��[��W���ѢW4���}�f&o��vE�g�X<�j����
+�/}�Kre���,Ec#+Z(�A�s��n�=�%ܢ��RNހ��Ȧ�UJk�_yN�I�Ń��P�.Ej��j��3=��H�7�mY���%��n
�9$���l9�\��%���g�v��[�?���O���(endstream
+endobj
+2609 0 obj <<
+/Type /Page
+/Contents 2610 0 R
+/Resources 2608 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 2545 0 R
 >> endobj
 2611 0 obj <<
-/D [2578 0 R /XYZ 91.656 245.654 null]
+/D [2609 0 R /XYZ 71.731 729.265 null]
 >> endobj
-1351 0 obj <<
-/D [2578 0 R /XYZ 71.731 222.74 null]
->> endobj
-226 0 obj <<
-/D [2578 0 R /XYZ 254.069 183.368 null]
+218 0 obj <<
+/D [2609 0 R /XYZ 200.128 707.841 null]
 >> endobj
 2612 0 obj <<
-/D [2578 0 R /XYZ 71.731 176.015 null]
+/D [2609 0 R /XYZ 71.731 700.488 null]
 >> endobj
 2613 0 obj <<
-/D [2578 0 R /XYZ 71.731 156.105 null]
+/D [2609 0 R /XYZ 99.155 674.765 null]
 >> endobj
-2577 0 obj <<
-/Font << /F33 1306 0 R /F23 1201 0 R /F27 1208 0 R /F35 1569 0 R >>
-/ProcSet [ /PDF /Text ]
+2614 0 obj <<
+/D [2609 0 R /XYZ 121.261 674.765 null]
 >> endobj
-2616 0 obj <<
-/Length 2564      
-/Filter /FlateDecode
->>
-stream
-xڭk��8�����@QH4��g���nw�X�v����(4�2�c�~t���G�Tl'�i�W�(��(��x��E�X��O���lw�.na��S��d=�yu}q����T��\\o���4^��I�/����O[���]���u|A߫��UY�-�_
��-�R-?^�z���Ah(c�&�Q�,͉b~<*f��&B�QLU9�}�XzΆ�n�2�u��\!�s�vO3}M��j�-:B�,�����)66�4w�����z���7VNQ^�}[�,}�zM�$�wr��u�
-���ʪ�	���#G�kf�+��֞/R>�c!	���s�k���ShT�6K?tP���nT�v��|�G5��r����	��]�����s�M��#�����sy���	�"���֣���^��	�E�Y�l���4�K/t�]o&C�����2�8��}��݊K�/P}�����*�[&]�>�#�~�z6{�X}z��X����t4��"D]�!D> 2�BoN��4I����1d
�`kE%��
ݫ�))n�"S�fi�0�	���5=��iz�P+�I^tM���+��N?9s��F�y�UO0�S�w��\�+���**;�e�=��2�ဋuE�A��S��/7(i��U_d�/�jE�ʬ�YT#sTh�꒍��Uw��T�jt}a�n1�yN	�۾�S��G ;��FU�0	�5��bb�S��K�s�z���������&s�v<���σn��FAjL��u����yR�q����)�/�t9T�_��?���T)�O��\�z��x{��2�D�������,�V�u�"N��6Ʌ@)��8IW
-
-W�y•)�Mpp���/P���F�x�%��7��!~�3e�"��*cP��)隠F�9}э C�O��&��SS������:���Ao?C�9�ۚH��X�=:��'�02���rk�LB�|���!d��
-�	b���4���;�*q{ lO+3U�0s��}g=�JUv�~���~�|ɼ�W3������m�`5�H0� -�́�U��?0�� ��[B_��!]h�8� �Ζ�
� �1C�	b�F���hjخ	�1�H����j��p!khl����\؍у�b�P|L��\5ݾ�D{s����8�a-��2[4�eS>�Zqӄ�͏��`������4�	�	�p���ꁇ�5�H�t#�ɣ"-͉�鮥�
-�Of2��Yo*=:.�d���=Z���y�tW��R�bљ������M���(5N��R���.z���痗���mWӷno/�-��'��-zI�"A���O�xH��b�5�a�#d��@���`��]�<v��<���ܽ퇹������������j.�Pyg���}xn���$
�L����(�������tlS�.���cy�)}�O����m0�Gv'�H�W,	jJ����2:pJYDQ�r��F�ߗ��0�	�t�"p��v.C���
-��L�d�'
��I�<�Q�s���^xp��ƛ��2
-1��]U��n�X��Δ��(5�i�b���踃$�;��yGc���gܽ.�M@��Y��Los0�N�F���!�S����TTs��M���QW�1��1�̭ sq�/��ښ�#�b��4u`����*�s���4�y�O�g[?	M�E5&W��4���Գ#Ȇ�;p5����i?� ��3��]��+�pa��H�"h=z��]:H`��L1]�?*�'�
-sK�j^o� #��P��n��n��貅�HO�ad���;j0
-��<�7u�1�q�n�9xKK�䚃�fMO=��\�)���W����I�#8ӟ{i�a�9�!�/7&홾���e�anCF��$�H%eӟ���u�Y�kl��i	Ɣ2���Sî�-x.�(1�N%��@y�0#��ٮ&���f�h��ѻ�@�Պ�y&,\���TCl2�����:��ή5ݫ����%�i�&�+AcS�"kg�Pb.�OOrr�dŢ::�w]�<h����^��Zp��Q$#6����_���h�-�t�V|�^y@���bE�^�Y�GAs��c��O-u�
��~X�����*�ڧ>XY7O}ʮ�O]��\���Yb�)�<�y�'��$I?����%�	����%A��֘�dLF���c�RG8~2�*�@��������d�]=���A�Ф	/#B�&x�e-��bo�]��8����V�K�ճg�&垆\�0�n�ֶ2p?��L� �,�%�̞�1L��C~��욐_��a~����&b����~J1�$b�{��|ns�x:��?
��z1)+���l<{�ο��_����?�Bp�8�Q~>a���[j�o�XW�k��v<B�=�W�/����g��>�Ā.���~"���Z[��!��� �,�b*�F˜�O=���RwGo����"go1�d�D��p����p�s[-����&�}3��Ë7�nJ��_�4�k�n�H���_G��C?�o��:���~����vN�endstream
-endobj
 2615 0 obj <<
-/Type /Page
-/Contents 2616 0 R
-/Resources 2614 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 2552 0 R
-/Annots [ 2621 0 R ]
+/D [2609 0 R /XYZ 158.738 674.765 null]
 >> endobj
-2621 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [272.104 557.437 306.198 566.027]
-/Subtype /Link
-/A << /S /GoTo /D (gloss-contrib) >>
+2616 0 obj <<
+/D [2609 0 R /XYZ 71.731 661.813 null]
 >> endobj
 2617 0 obj <<
-/D [2615 0 R /XYZ 71.731 729.265 null]
+/D [2609 0 R /XYZ 71.731 655.424 null]
 >> endobj
 2618 0 obj <<
-/D [2615 0 R /XYZ 71.731 641.43 null]
+/D [2609 0 R /XYZ 245.988 643.881 null]
 >> endobj
 2619 0 obj <<
-/D [2615 0 R /XYZ 118.555 605.878 null]
+/D [2609 0 R /XYZ 268.387 643.881 null]
 >> endobj
 2620 0 obj <<
-/D [2615 0 R /XYZ 118.555 559.432 null]
+/D [2609 0 R /XYZ 311.83 643.881 null]
+>> endobj
+2621 0 obj <<
+/D [2609 0 R /XYZ 225.31 630.929 null]
 >> endobj
 2622 0 obj <<
-/D [2615 0 R /XYZ 492.354 559.432 null]
+/D [2609 0 R /XYZ 215.062 617.978 null]
+>> endobj
+1366 0 obj <<
+/D [2609 0 R /XYZ 71.731 610.84 null]
+>> endobj
+222 0 obj <<
+/D [2609 0 R /XYZ 270.581 573.624 null]
 >> endobj
 2623 0 obj <<
-/D [2615 0 R /XYZ 71.731 525.856 null]
+/D [2609 0 R /XYZ 71.731 566.272 null]
 >> endobj
 2624 0 obj <<
-/D [2615 0 R /XYZ 71.731 516.944 null]
+/D [2609 0 R /XYZ 71.731 533.41 null]
 >> endobj
 2625 0 obj <<
-/D [2615 0 R /XYZ 71.731 502.001 null]
+/D [2609 0 R /XYZ 71.731 520.459 null]
 >> endobj
 2626 0 obj <<
-/D [2615 0 R /XYZ 71.731 489.049 null]
+/D [2609 0 R /XYZ 71.731 505.515 null]
 >> endobj
 2627 0 obj <<
-/D [2615 0 R /XYZ 91.656 473.273 null]
+/D [2609 0 R /XYZ 71.731 492.563 null]
 >> endobj
 2628 0 obj <<
-/D [2615 0 R /XYZ 167.868 473.273 null]
+/D [2609 0 R /XYZ 91.656 476.787 null]
 >> endobj
 2629 0 obj <<
-/D [2615 0 R /XYZ 376.695 447.37 null]
+/D [2609 0 R /XYZ 165.001 476.787 null]
 >> endobj
 2630 0 obj <<
-/D [2615 0 R /XYZ 101.898 434.419 null]
+/D [2609 0 R /XYZ 376.695 450.884 null]
 >> endobj
 2631 0 obj <<
-/D [2615 0 R /XYZ 71.731 424.357 null]
+/D [2609 0 R /XYZ 101.898 437.933 null]
 >> endobj
 2632 0 obj <<
-/D [2615 0 R /XYZ 71.731 411.405 null]
+/D [2609 0 R /XYZ 71.731 427.871 null]
 >> endobj
 2633 0 obj <<
-/D [2615 0 R /XYZ 91.656 393.572 null]
+/D [2609 0 R /XYZ 71.731 413.838 null]
 >> endobj
 2634 0 obj <<
-/D [2615 0 R /XYZ 71.731 373.482 null]
+/D [2609 0 R /XYZ 91.656 397.086 null]
 >> endobj
 2635 0 obj <<
-/D [2615 0 R /XYZ 107.706 362.688 null]
+/D [2609 0 R /XYZ 71.731 384.967 null]
 >> endobj
 2636 0 obj <<
-/D [2615 0 R /XYZ 204.851 362.688 null]
+/D [2609 0 R /XYZ 71.731 372.992 null]
 >> endobj
 2637 0 obj <<
-/D [2615 0 R /XYZ 71.731 355.55 null]
+/D [2609 0 R /XYZ 91.656 356.239 null]
 >> endobj
 2638 0 obj <<
-/D [2615 0 R /XYZ 71.731 324.666 null]
+/D [2609 0 R /XYZ 71.731 344.12 null]
 >> endobj
 2639 0 obj <<
-/D [2615 0 R /XYZ 107.706 313.871 null]
+/D [2609 0 R /XYZ 71.731 332.145 null]
 >> endobj
 2640 0 obj <<
-/D [2615 0 R /XYZ 222.016 313.871 null]
+/D [2609 0 R /XYZ 91.656 315.393 null]
 >> endobj
 2641 0 obj <<
-/D [2615 0 R /XYZ 348.501 313.871 null]
+/D [2609 0 R /XYZ 71.731 269.4 null]
 >> endobj
 2642 0 obj <<
-/D [2615 0 R /XYZ 71.731 285.976 null]
+/D [2609 0 R /XYZ 91.656 245.654 null]
+>> endobj
+1367 0 obj <<
+/D [2609 0 R /XYZ 71.731 222.74 null]
+>> endobj
+226 0 obj <<
+/D [2609 0 R /XYZ 254.069 183.368 null]
 >> endobj
 2643 0 obj <<
-/D [2615 0 R /XYZ 71.731 270.867 null]
+/D [2609 0 R /XYZ 71.731 176.015 null]
 >> endobj
 2644 0 obj <<
-/D [2615 0 R /XYZ 91.656 255.091 null]
+/D [2609 0 R /XYZ 71.731 156.105 null]
 >> endobj
-2645 0 obj <<
-/D [2615 0 R /XYZ 71.731 222.05 null]
+2608 0 obj <<
+/Font << /F33 1322 0 R /F23 1217 0 R /F27 1224 0 R /F35 1589 0 R >>
+/ProcSet [ /PDF /Text ]
 >> endobj
+2647 0 obj <<
+/Length 2564      
+/Filter /FlateDecode
+>>
+stream
+xڭk��8�����@QH4��g���nw�X�v����(4�2�c�~t���G�Tl'�i�W�(��(��x��E�X��O���lw�.na��S��d=�yu}q����T��\\o���4^��I�/����O[���]���u|A߫��UY�-�_
��-�R-?^�z���Ah(c�&�Q�,͉b~<*f��&B�QLU9�}�XzΆ�n�2�u��\!�s�vO3}M��j�-:B�,�����)66�4w�����z���7VNQ^�}[�,}�zM�$�wr��u�
+���ʪ�	���#G�kf�+��֞/R>�c!	���s�k���ShT�6K?tP���nT�v��|�G5��r����	��]�����s�M��#�����sy���	�"���֣���^��	�E�Y�l���4�K/t�]o&C�����2�8��}��݊K�/P}�����*�[&]�>�#�~�z6{�X}z��X����t4��"D]�!D> 2�BoN��4I����1d
�`kE%��
ݫ�))n�"S�fi�0�	���5=��iz�P+�I^tM���+��N?9s��F�y�UO0�S�w��\�+���**;�e�=��2�ဋuE�A��S��/7(i��U_d�/�jE�ʬ�YT#sTh�꒍��Uw��T�jt}a�n1�yN	�۾�S��G ;��FU�0	�5��bb�S��K�s�z���������&s�v<���σn��FAjL��u����yR�q����)�/�t9T�_��?���T)�O��\�z��x{��2�D�������,�V�u�"N��6Ʌ@)��8IW
+
+W�y•)�Mpp���/P���F�x�%��7��!~�3e�"��*cP��)隠F�9}э C�O��&��SS������:���Ao?C�9�ۚH��X�=:��'�02���rk�LB�|���!d��
+�	b���4���;�*q{ lO+3U�0s��}g=�JUv�~���~�|ɼ�W3������m�`5�H0� -�́�U��?0�� ��[B_��!]h�8� �Ζ�
� �1C�	b�F���hjخ	�1�H����j��p!khl����\؍у�b�P|L��\5ݾ�D{s����8�a-��2[4�eS>�Zqӄ�͏��`������4�	�	�p���ꁇ�5�H�t#�ɣ"-͉�鮥�
+�Of2��Yo*=:.�d���=Z���y�tW��R�bљ������M���(5N��R���.z���痗���mWӷno/�-��'��-zI�"A���O�xH��b�5�a�#d��@���`��]�<v��<���ܽ퇹������������j.�Pyg���}xn���$
�L����(�������tlS�.���cy�)}�O����m0�Gv'�H�W,	jJ����2:pJYDQ�r��F�ߗ��0�	�t�"p��v.C���
+��L�d�'
��I�<�Q�s���^xp��ƛ��2
+1��]U��n�X��Δ��(5�i�b���踃$�;��yGc���gܽ.�M@��Y��Los0�N�F���!�S����TTs��M���QW�1��1�̭ sq�/��ښ�#�b��4u`����*�s���4�y�O�g[?	M�E5&W��4���Գ#Ȇ�;p5����i?� ��3��]��+�pa��H�"h=z��]:H`��L1]�?*�'�
+sK�j^o� #��P��n��n��貅�HO�ad���;j0
+��<�7u�1�q�n�9xKK�䚃�fMO=��\�)���W����I�#8ӟ{i�a�9�!�/7&홾���e�anCF��$�H%eӟ���u�Y�kl��i	Ɣ2���Sî�-x.�(1�N%��@y�0#��ٮ&���f�h��ѻ�@�Պ�y&,\���TCl2�����:��ή5ݫ����%�i�&�+AcS�"kg�Pb.�OOrr�dŢ::�w]�<h����^��Zp��Q$#6����_���h�-�t�V|�^y@���bE�^�Y�GAs��c��O-u�
��~X�����*�ڧ>XY7O}ʮ�O]��\���Yb�)�<�y�'��$I?����%�	����%A��֘�dLF���c�RG8~2�*�@��������d�]=���A�Ф	/#B�&x�e-��bo�]��8����V�K�ճg�&垆\�0�n�ֶ2p?��L� �,�%�̞�1L��C~��욐_��a~����&b����~J1�$b�{��|ns�x:��?
��z1)+���l<{�ο��_����?�Bp�8�Q~>a���[j�o�XW�k��v<B�=�W�/����g��>�Ā.���~"���Z[��!��� �,�b*�F˜�O=���RwGo����"go1�d�D��p����p�s[-����&�}3��Ë7�nJ��_�4�k�n�H���_G��C?�o��:���~����vN�endstream
+endobj
 2646 0 obj <<
-/D [2615 0 R /XYZ 107.706 211.256 null]
+/Type /Page
+/Contents 2647 0 R
+/Resources 2645 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 2545 0 R
+/Annots [ 2652 0 R ]
 >> endobj
-2647 0 obj <<
-/D [2615 0 R /XYZ 71.731 183.36 null]
+2652 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [272.104 557.437 306.198 566.027]
+/Subtype /Link
+/A << /S /GoTo /D (gloss-contrib) >>
 >> endobj
 2648 0 obj <<
-/D [2615 0 R /XYZ 71.731 170.309 null]
+/D [2646 0 R /XYZ 71.731 729.265 null]
 >> endobj
 2649 0 obj <<
-/D [2615 0 R /XYZ 91.656 152.476 null]
+/D [2646 0 R /XYZ 71.731 641.43 null]
 >> endobj
 2650 0 obj <<
-/D [2615 0 R /XYZ 71.731 132.387 null]
+/D [2646 0 R /XYZ 118.555 605.878 null]
 >> endobj
 2651 0 obj <<
-/D [2615 0 R /XYZ 107.706 121.592 null]
+/D [2646 0 R /XYZ 118.555 559.432 null]
 >> endobj
-2614 0 obj <<
-/Font << /F33 1306 0 R /F27 1208 0 R /F23 1201 0 R /F44 2037 0 R /F35 1569 0 R /F55 2324 0 R >>
-/ProcSet [ /PDF /Text ]
+2653 0 obj <<
+/D [2646 0 R /XYZ 492.354 559.432 null]
 >> endobj
-2655 0 obj <<
-/Length 2401      
-/Filter /FlateDecode
->>
-stream
-xڭ]���=��o�ѵ2�|�H$�䲇l��M䱼Vo<r�#��__R��c{6i���(IQ���,����R�1j%T���óhv;?>���d�������q<[�U�ֻY"��gy�D���z���{}�L�X�4�+A�m�v��l}O�W��ﶪ��럞�YL�8�"��\�J0���
-'����E�_~��Vw]c7���\���f�H$RN��D���h�r<i1J��rD�JؕY�
Q��ހ���i�a7�u���
����Ֆ�&К��w4�����|���%|��U��Nۺ������{����4w;]�"��iZAs<(��J�R:ꗅJ����4"�}Y�tn��5�@�no[�y�����}�âن! Sy؛z����`�^5���W��߉L3BNV���Q��A2c���a!��k�b84.x��W���J�p�0$m)�,T:[&�(���r�V���F��������=i��2�.8�7���#��e��8I��!��j��-����	�h�{B?���Ge���ƴ-�{��6Qoė�e�!��:��`,��4}����[�����M���e���4@��L&�2��`(�����JĢ���b�3
-��L /+���O`��5ݵ�x�ݞft�4�~������
�>
3�8���iP�����tu
-�~u�����^ㅑ�D�p�3��H�Z9���i��5��շӮ�e���{A��:pn:[��n�"�"K����)�A���צ����{!���8E�ii�y46�"����=M>Gi�B�nGSZ]���n(�*��nh
�`֕s�1������0k���w�ŏ�n����cy>�~{!OF�MX���S�o��/��	��׻��P.����bq�����#���z�2�E1��/V��+�>��!X�=jp[�R惻4���"ZC0�K���i��ˮz\d)�
-�_u�g샷9��Ƨ
-��7��?�'�"�r��d
-o]�i��B���<b����U�����@����0>�-y��b8�9����o�B0U��qI��wz����~�E*�E�0o�\/�n����;�v��9��	㶦D��
�~���B�+�&�Y�*2Oϔ��m��k'D� �e�+���p�Y�Q���	�Lh	d1~�ݮ�A���㱲�W��/�Bη�@.����*B��p�b�I��"�݈@�ݝ�F.�L9P��Rq�H8Y��Ug�G�S�ԝz�[s�)x��_Z��P�iB�4]���lC��-@�%���L�
�ЦO�x�[���X�=`&F�q�j��X��t:���w�]��t�#��A_��D��U��;�@�{�2���Y�E�ֶP���2>�χX��y�O<Iҩw�@3��Y��5\]UQ�ۢoZ�}��Y�xtmk7cc�Ʊo����1��GT��~z��z�~	E����㕢�!�k` �_��.K(����6F��J��`��*�P��Ti��О?�ʸ��d�<4�uܳ;�B15��77ܓo$hc~��z��������0� 
- {�:ڸ���B*F��x;�3h'���Z�J]���/>|�+��p(e*bh��C��Q�֭���4O"A���8OE�W�JBv3;�o �qˎ�Cd������R�+��T7x����j�F�P���������k@��<�0��R�c�lB�O�@R����>��4�Z�.�Ig^�^�	��,Vg�w������[��%+�`2�p	F�<����E��{f�^"�@d~�z���q$C4���"�m�E�]K`��@�Ә� ��:�2
->X���3A���<G��=�o��%eT�zM{���_w��&��S������]B�'"ͧ�w(ȸm��v$��!8�:���̄��	���xĪ�a�Ha�9f�1�#L���#>�\���HD��ɿL�ű���"�J"�+B�	����������~\Ԁs�uG�uj
--EF�T�H�)d�H5�E*�<���������I:�-����]:���M��9�	"�fk�T��uq �X�ִec7�����L��`\�_T��Hf��dq]»?bԡY�E��n%<�5f	�rm$����}+���8�c_���g;~)YC��N�T{��W"�{�.4����
&/؟9O�7l�y�`64�>3ԅg��+`��G�8V��"(Vgu��f�bL�\Ip{�N��q����S�Jۗ\�<�_�|�F@.J%�=C1
"�Ɨap��N��T�`Q�1��;�����@boT{���8�#
�D�5��\|�g!����l�V�ڷ��I�L'�����@�O<�B/d��HN(W����d���K>���5����b�Jendstream
-endobj
 2654 0 obj <<
-/Type /Page
-/Contents 2655 0 R
-/Resources 2653 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 2552 0 R
+/D [2646 0 R /XYZ 71.731 525.856 null]
+>> endobj
+2655 0 obj <<
+/D [2646 0 R /XYZ 71.731 516.944 null]
 >> endobj
 2656 0 obj <<
-/D [2654 0 R /XYZ 71.731 729.265 null]
+/D [2646 0 R /XYZ 71.731 502.001 null]
 >> endobj
 2657 0 obj <<
-/D [2654 0 R /XYZ 71.731 718.306 null]
+/D [2646 0 R /XYZ 71.731 489.049 null]
 >> endobj
 2658 0 obj <<
-/D [2654 0 R /XYZ 71.731 708.244 null]
+/D [2646 0 R /XYZ 91.656 473.273 null]
 >> endobj
 2659 0 obj <<
-/D [2654 0 R /XYZ 91.656 690.411 null]
+/D [2646 0 R /XYZ 167.868 473.273 null]
 >> endobj
 2660 0 obj <<
-/D [2654 0 R /XYZ 71.731 670.321 null]
+/D [2646 0 R /XYZ 376.695 447.37 null]
 >> endobj
 2661 0 obj <<
-/D [2654 0 R /XYZ 107.706 659.527 null]
+/D [2646 0 R /XYZ 101.898 434.419 null]
 >> endobj
 2662 0 obj <<
-/D [2654 0 R /XYZ 71.731 631.631 null]
+/D [2646 0 R /XYZ 71.731 424.357 null]
 >> endobj
 2663 0 obj <<
-/D [2654 0 R /XYZ 71.731 618.58 null]
+/D [2646 0 R /XYZ 71.731 411.405 null]
 >> endobj
 2664 0 obj <<
-/D [2654 0 R /XYZ 91.656 600.747 null]
+/D [2646 0 R /XYZ 91.656 393.572 null]
 >> endobj
 2665 0 obj <<
-/D [2654 0 R /XYZ 71.731 580.658 null]
+/D [2646 0 R /XYZ 71.731 373.482 null]
 >> endobj
 2666 0 obj <<
-/D [2654 0 R /XYZ 107.706 569.863 null]
->> endobj
-1450 0 obj <<
-/D [2654 0 R /XYZ 71.731 546.949 null]
->> endobj
-230 0 obj <<
-/D [2654 0 R /XYZ 460.106 507.577 null]
+/D [2646 0 R /XYZ 107.706 362.688 null]
 >> endobj
 2667 0 obj <<
-/D [2654 0 R /XYZ 71.731 497.212 null]
+/D [2646 0 R /XYZ 204.851 362.688 null]
 >> endobj
 2668 0 obj <<
-/D [2654 0 R /XYZ 344.279 487.452 null]
+/D [2646 0 R /XYZ 71.731 355.55 null]
 >> endobj
 2669 0 obj <<
-/D [2654 0 R /XYZ 197.388 474.501 null]
+/D [2646 0 R /XYZ 71.731 324.666 null]
 >> endobj
 2670 0 obj <<
-/D [2654 0 R /XYZ 438.35 474.501 null]
+/D [2646 0 R /XYZ 107.706 313.871 null]
 >> endobj
 2671 0 obj <<
-/D [2654 0 R /XYZ 474.766 474.501 null]
+/D [2646 0 R /XYZ 222.016 313.871 null]
 >> endobj
 2672 0 obj <<
-/D [2654 0 R /XYZ 114.062 461.549 null]
+/D [2646 0 R /XYZ 348.501 313.871 null]
 >> endobj
 2673 0 obj <<
-/D [2654 0 R /XYZ 71.731 454.411 null]
+/D [2646 0 R /XYZ 71.731 285.976 null]
 >> endobj
 2674 0 obj <<
-/D [2654 0 R /XYZ 428.182 443.616 null]
+/D [2646 0 R /XYZ 71.731 270.867 null]
 >> endobj
 2675 0 obj <<
-/D [2654 0 R /XYZ 325.052 430.665 null]
+/D [2646 0 R /XYZ 91.656 255.091 null]
 >> endobj
 2676 0 obj <<
-/D [2654 0 R /XYZ 71.731 417.714 null]
+/D [2646 0 R /XYZ 71.731 222.05 null]
 >> endobj
 2677 0 obj <<
-/D [2654 0 R /XYZ 71.731 410.575 null]
+/D [2646 0 R /XYZ 107.706 211.256 null]
 >> endobj
 2678 0 obj <<
-/D [2654 0 R /XYZ 71.731 400.613 null]
->> endobj
-1451 0 obj <<
-/D [2654 0 R /XYZ 71.731 341.599 null]
->> endobj
-234 0 obj <<
-/D [2654 0 R /XYZ 533.821 296.345 null]
+/D [2646 0 R /XYZ 71.731 183.36 null]
 >> endobj
 2679 0 obj <<
-/D [2654 0 R /XYZ 71.731 283.907 null]
+/D [2646 0 R /XYZ 71.731 170.309 null]
 >> endobj
 2680 0 obj <<
-/D [2654 0 R /XYZ 332.179 235.931 null]
+/D [2646 0 R /XYZ 91.656 152.476 null]
 >> endobj
 2681 0 obj <<
-/D [2654 0 R /XYZ 135.507 222.98 null]
+/D [2646 0 R /XYZ 71.731 132.387 null]
 >> endobj
 2682 0 obj <<
-/D [2654 0 R /XYZ 442.834 222.98 null]
->> endobj
-2683 0 obj <<
-/D [2654 0 R /XYZ 186.556 210.028 null]
->> endobj
-2684 0 obj <<
-/D [2654 0 R /XYZ 371.798 210.028 null]
+/D [2646 0 R /XYZ 107.706 121.592 null]
 >> endobj
-2685 0 obj <<
-/D [2654 0 R /XYZ 192.546 197.077 null]
+2645 0 obj <<
+/Font << /F33 1322 0 R /F27 1224 0 R /F23 1217 0 R /F44 2069 0 R /F35 1589 0 R /F55 2355 0 R >>
+/ProcSet [ /PDF /Text ]
 >> endobj
 2686 0 obj <<
-/D [2654 0 R /XYZ 71.731 189.939 null]
+/Length 2401      
+/Filter /FlateDecode
+>>
+stream
+xڭ]���=��o�ѵ2�|�H$�䲇l��M䱼Vo<r�#��__R��c{6i���(IQ���,����R�1j%T���óhv;?>���d�������q<[�U�ֻY"��gy�D���z���{}�L�X�4�+A�m�v��l}O�W��ﶪ��럞�YL�8�"��\�J0���
+'����E�_~��Vw]c7���\���f�H$RN��D���h�r<i1J��rD�JؕY�
Q��ހ���i�a7�u���
����Ֆ�&К��w4�����|���%|��U��Nۺ������{����4w;]�"��iZAs<(��J�R:ꗅJ����4"�}Y�tn��5�@�no[�y�����}�âن! Sy؛z����`�^5���W��߉L3BNV���Q��A2c���a!��k�b84.x��W���J�p�0$m)�,T:[&�(���r�V���F��������=i��2�.8�7���#��e��8I��!��j��-����	�h�{B?���Ge���ƴ-�{��6Qoė�e�!��:��`,��4}����[�����M���e���4@��L&�2��`(�����JĢ���b�3
+��L /+���O`��5ݵ�x�ݞft�4�~������
�>
3�8���iP�����tu
+�~u�����^ㅑ�D�p�3��H�Z9���i��5��շӮ�e���{A��:pn:[��n�"�"K����)�A���צ����{!���8E�ii�y46�"����=M>Gi�B�nGSZ]���n(�*��nh
�`֕s�1������0k���w�ŏ�n����cy>�~{!OF�MX���S�o��/��	��׻��P.����bq�����#���z�2�E1��/V��+�>��!X�=jp[�R惻4���"ZC0�K���i��ˮz\d)�
+�_u�g샷9��Ƨ
+��7��?�'�"�r��d
+o]�i��B���<b����U�����@����0>�-y��b8�9����o�B0U��qI��wz����~�E*�E�0o�\/�n����;�v��9��	㶦D��
�~���B�+�&�Y�*2Oϔ��m��k'D� �e�+���p�Y�Q���	�Lh	d1~�ݮ�A���㱲�W��/�Bη�@.����*B��p�b�I��"�݈@�ݝ�F.�L9P��Rq�H8Y��Ug�G�S�ԝz�[s�)x��_Z��P�iB�4]���lC��-@�%���L�
�ЦO�x�[���X�=`&F�q�j��X��t:���w�]��t�#��A_��D��U��;�@�{�2���Y�E�ֶP���2>�χX��y�O<Iҩw�@3��Y��5\]UQ�ۢoZ�}��Y�xtmk7cc�Ʊo����1��GT��~z��z�~	E����㕢�!�k` �_��.K(����6F��J��`��*�P��Ti��О?�ʸ��d�<4�uܳ;�B15��77ܓo$hc~��z��������0� 
+ {�:ڸ���B*F��x;�3h'���Z�J]���/>|�+��p(e*bh��C��Q�֭���4O"A���8OE�W�JBv3;�o �qˎ�Cd������R�+��T7x����j�F�P���������k@��<�0��R�c�lB�O�@R����>��4�Z�.�Ig^�^�	��,Vg�w������[��%+�`2�p	F�<����E��{f�^"�@d~�z���q$C4���"�m�E�]K`��@�Ә� ��:�2
+>X���3A���<G��=�o��%eT�zM{���_w��&��S������]B�'"ͧ�w(ȸm��v$��!8�:���̄��	���xĪ�a�Ha�9f�1�#L���#>�\���HD��ɿL�ű���"�J"�+B�	����������~\Ԁs�uG�uj
+-EF�T�H�)d�H5�E*�<���������I:�-����]:���M��9�	"�fk�T��uq �X�ִec7�����L��`\�_T��Hf��dq]»?bԡY�E��n%<�5f	�rm$����}+���8�c_���g;~)YC��N�T{��W"�{�.4����
&/؟9O�7l�y�`64�>3ԅg��+`��G�8V��"(Vgu��f�bL�\Ip{�N��q����S�Jۗ\�<�_�|�F@.J%�=C1
"�Ɨap��N��T�`Q�1��;�����@boT{���8�#
�D�5��\|�g!����l�V�ڷ��I�L'�����@�O<�B/d��HN(W����d���K>���5����b�Jendstream
+endobj
+2685 0 obj <<
+/Type /Page
+/Contents 2686 0 R
+/Resources 2684 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 2545 0 R
 >> endobj
 2687 0 obj <<
-/D [2654 0 R /XYZ 381.821 179.144 null]
+/D [2685 0 R /XYZ 71.731 729.265 null]
 >> endobj
 2688 0 obj <<
-/D [2654 0 R /XYZ 156.806 166.193 null]
+/D [2685 0 R /XYZ 71.731 718.306 null]
 >> endobj
 2689 0 obj <<
-/D [2654 0 R /XYZ 282.571 166.193 null]
+/D [2685 0 R /XYZ 71.731 708.244 null]
 >> endobj
 2690 0 obj <<
-/D [2654 0 R /XYZ 190.714 153.241 null]
+/D [2685 0 R /XYZ 91.656 690.411 null]
 >> endobj
 2691 0 obj <<
-/D [2654 0 R /XYZ 71.731 146.103 null]
+/D [2685 0 R /XYZ 71.731 670.321 null]
 >> endobj
-2653 0 obj <<
-/Font << /F33 1306 0 R /F27 1208 0 R /F23 1201 0 R /F35 1569 0 R /F32 1215 0 R >>
-/ProcSet [ /PDF /Text ]
+2692 0 obj <<
+/D [2685 0 R /XYZ 107.706 659.527 null]
 >> endobj
-2694 0 obj <<
-/Length 2212      
-/Filter /FlateDecode
->>
-stream
-xڅXY��6~�_᧴�iQ��]t��&��4��
��bAKt�iY�Rwz~�V�J���ģXU,~uY�|��Y*E�'X� �g���?���_I�X0�bB�����c�Vb����v�L��Y"��ٺ��{�S�V7�E�^ ��Se[U�������WS�j���ϯ>��q��U��WOs�X<m����g"�"������T��ڶ�E�v�2�/�� ��d��P�Y E,W���"�Sw�N7���Q{M��u-6�<���c>�H�D��z$�����w������(K�Mo �>��,����-�8R���]Nnꮳ��㣁��YD�z_WWs�y-�̶npv�y���U�呞����P7=�΀�A���A�ƨM�io���U�kk�!@�����]���V�}Mc��s�협�o������w���r-���L�"�1[ �E��#L����nqwй���ANK�\�'Vn�VۋVŷ�W��gU���Vr�����4����`��̑@\�6|@m��[`��y>�Yt,��8�϶�{?���յez|�t���
���pW�uk��d�@�b�.��A���h*T��д��ƽ1LUU�{wK��h>PwY�"]�
-"_�`. �||�'��#�j��V���w�<Њ3.uU�[`�ڀޠ��]��[sb
-�������=N�\�ί옒��L�8c�ZS'���^g���z�ݫ��D�%�`�
-��DZ'�+@P�ȎW�	�fl�p��X�Z��\�]V�L�UEA��[9wq{�~���G��JT>I��Fi$���k"=�p�mZ����u�X;S�wt��}�w{]��='<�9�����kۃ}�\2G�@�k�:����N��S�������E����b��������{�
�A<�Ar�"H[	��p%�4B��`���
ʪm�mi�7S�VO�P��A�ꁌ�l���6u�@3�^��6�0�����1���)��h�,@~K��N1�� >!`~Sꯕ�K�G�����s
࠮^��`[
-n�����5iE�Kq�u���b�-l�q��H�q������7�.?��s��|M�"�2�04[�O��w�P�hy�r2&(��i������\�Iσ	���QF���KQdE��!���Nv�E��4K��'�0Q*'h���
��CؔA�%g@Y�i@nҧ����)!��%���i���p���4��L�)�܁kj��������	DNuD�����$gv�KDuGr����b�K��q;a�'�o*�Rtݨ�/.��`J�$T�R
RQ�����
-�:�xT����f��,V�֪��c[����x��9`��M��eM��H�v�i#�B�/��b�E����Y4���@9�^���{�o ��(ZM��Q|��]j.3��@�`9�g�K�Ax�L�l�;�h�9�BZ�\:8}p���A�m�!Bp�T�]Tbq�͂$���bՓ,F�CM/u†:.�Pp����dg�H�鋲��E��lP� ���F{eXN7[(��g���q��4��k�B@EYv
-��RU7��JB�U�XP�_��,&4g��	�n?�
-���R/J�i��M-(��H�Ց<tN��c�yw;������e�E/�P�~�:�D�wo��0BXrk���@��Hf���L�=��CS����c�@�8�С.�&����r��-�,���r���9*��"gt��C�*�=�F�� �oS	U���nq��D��ב~=O}o��A�`FsL*�I�>Q��X�By[^aZ�bN�C3��5�4Y��*�-T���y�чښ�n��[�1��7��cx�)3�;upP�F�+��ØRl�
���!��~�Jo9D�A��@-�� �`g�jF�H�"\I%�:;�A���B��c�Es����4�AB�]�
�G;ګ�aTm���G~��Uc��x�^i�w�C�@4�R"���\:`��Qg�2�W����N�–.L�iZ�#)���.��p�^*�W�~�#q��*���q�^����M���Րx+\9���	6����h(��!S����GRp;�	�N�NWt�Kv�9l��r˱��izE��� �9��@�HqE`��?���h��0"2o�#����i6�_a�Ǹ�)NS��	�2���$gY)2�S��(�ֿ���L��endstream
-endobj
 2693 0 obj <<
-/Type /Page
-/Contents 2694 0 R
-/Resources 2692 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 2552 0 R
-/Annots [ 2706 0 R 2707 0 R ]
+/D [2685 0 R /XYZ 71.731 631.631 null]
 >> endobj
-2706 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [330.238 266.053 383.277 274.965]
-/Subtype /Link
-/A << /S /GoTo /D (install-perlmodules) >>
->> endobj
-2707 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [91.377 255.159 112.249 262.013]
-/Subtype /Link
-/A << /S /GoTo /D (gloss-ppm) >>
+2694 0 obj <<
+/D [2685 0 R /XYZ 71.731 618.58 null]
 >> endobj
 2695 0 obj <<
-/D [2693 0 R /XYZ 71.731 729.265 null]
+/D [2685 0 R /XYZ 91.656 600.747 null]
 >> endobj
 2696 0 obj <<
-/D [2693 0 R /XYZ 71.731 718.306 null]
+/D [2685 0 R /XYZ 71.731 580.658 null]
 >> endobj
 2697 0 obj <<
-/D [2693 0 R /XYZ 71.731 633.823 null]
+/D [2685 0 R /XYZ 107.706 569.863 null]
 >> endobj
-1452 0 obj <<
-/D [2693 0 R /XYZ 71.731 613.734 null]
+1466 0 obj <<
+/D [2685 0 R /XYZ 71.731 546.949 null]
 >> endobj
-238 0 obj <<
-/D [2693 0 R /XYZ 350.135 570.636 null]
+230 0 obj <<
+/D [2685 0 R /XYZ 460.106 507.577 null]
 >> endobj
 2698 0 obj <<
-/D [2693 0 R /XYZ 71.731 558.465 null]
+/D [2685 0 R /XYZ 71.731 497.212 null]
 >> endobj
 2699 0 obj <<
-/D [2693 0 R /XYZ 71.731 516.036 null]
+/D [2685 0 R /XYZ 344.279 487.452 null]
 >> endobj
 2700 0 obj <<
-/D [2693 0 R /XYZ 440.415 505.241 null]
->> endobj
-1453 0 obj <<
-/D [2693 0 R /XYZ 71.731 490.133 null]
->> endobj
-242 0 obj <<
-/D [2693 0 R /XYZ 242.621 452.918 null]
+/D [2685 0 R /XYZ 197.388 474.501 null]
 >> endobj
 2701 0 obj <<
-/D [2693 0 R /XYZ 71.731 445.565 null]
->> endobj
-1454 0 obj <<
-/D [2693 0 R /XYZ 71.731 404.733 null]
->> endobj
-246 0 obj <<
-/D [2693 0 R /XYZ 175.703 372.419 null]
+/D [2685 0 R /XYZ 438.35 474.501 null]
 >> endobj
 2702 0 obj <<
-/D [2693 0 R /XYZ 71.731 366.292 null]
+/D [2685 0 R /XYZ 474.766 474.501 null]
 >> endobj
 2703 0 obj <<
-/D [2693 0 R /XYZ 231.715 353.49 null]
+/D [2685 0 R /XYZ 114.062 461.549 null]
 >> endobj
 2704 0 obj <<
-/D [2693 0 R /XYZ 131.551 340.539 null]
+/D [2685 0 R /XYZ 71.731 454.411 null]
 >> endobj
-1455 0 obj <<
-/D [2693 0 R /XYZ 71.731 320.449 null]
+2705 0 obj <<
+/D [2685 0 R /XYZ 428.182 443.616 null]
 >> endobj
-250 0 obj <<
-/D [2693 0 R /XYZ 245.449 287.139 null]
+2706 0 obj <<
+/D [2685 0 R /XYZ 325.052 430.665 null]
 >> endobj
-2705 0 obj <<
-/D [2693 0 R /XYZ 71.731 281.012 null]
+2707 0 obj <<
+/D [2685 0 R /XYZ 71.731 417.714 null]
 >> endobj
 2708 0 obj <<
-/D [2693 0 R /XYZ 71.731 245.197 null]
+/D [2685 0 R /XYZ 71.731 410.575 null]
 >> endobj
 2709 0 obj <<
-/D [2693 0 R /XYZ 120.149 233.64 null]
+/D [2685 0 R /XYZ 71.731 400.613 null]
+>> endobj
+1467 0 obj <<
+/D [2685 0 R /XYZ 71.731 341.599 null]
+>> endobj
+234 0 obj <<
+/D [2685 0 R /XYZ 533.821 296.345 null]
 >> endobj
 2710 0 obj <<
-/D [2693 0 R /XYZ 71.731 212.021 null]
+/D [2685 0 R /XYZ 71.731 283.907 null]
 >> endobj
 2711 0 obj <<
-/D [2693 0 R /XYZ 71.731 173.999 null]
+/D [2685 0 R /XYZ 332.179 235.931 null]
 >> endobj
 2712 0 obj <<
-/D [2693 0 R /XYZ 71.731 173.999 null]
+/D [2685 0 R /XYZ 135.507 222.98 null]
 >> endobj
 2713 0 obj <<
-/D [2693 0 R /XYZ 71.731 152.843 null]
+/D [2685 0 R /XYZ 442.834 222.98 null]
 >> endobj
 2714 0 obj <<
-/D [2693 0 R /XYZ 71.731 132.918 null]
+/D [2685 0 R /XYZ 186.556 210.028 null]
 >> endobj
 2715 0 obj <<
-/D [2693 0 R /XYZ 91.656 97.949 null]
+/D [2685 0 R /XYZ 371.798 210.028 null]
 >> endobj
-2692 0 obj <<
-/Font << /F33 1306 0 R /F35 1569 0 R /F27 1208 0 R /F23 1201 0 R /F61 2529 0 R /F44 2037 0 R >>
-/ProcSet [ /PDF /Text ]
+2716 0 obj <<
+/D [2685 0 R /XYZ 192.546 197.077 null]
+>> endobj
+2717 0 obj <<
+/D [2685 0 R /XYZ 71.731 189.939 null]
+>> endobj
+2718 0 obj <<
+/D [2685 0 R /XYZ 381.821 179.144 null]
 >> endobj
 2719 0 obj <<
-/Length 2040      
+/D [2685 0 R /XYZ 156.806 166.193 null]
+>> endobj
+2720 0 obj <<
+/D [2685 0 R /XYZ 282.571 166.193 null]
+>> endobj
+2721 0 obj <<
+/D [2685 0 R /XYZ 190.714 153.241 null]
+>> endobj
+2722 0 obj <<
+/D [2685 0 R /XYZ 71.731 146.103 null]
+>> endobj
+2684 0 obj <<
+/Font << /F33 1322 0 R /F27 1224 0 R /F23 1217 0 R /F35 1589 0 R /F32 1231 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+2725 0 obj <<
+/Length 2174      
 /Filter /FlateDecode
 >>
 stream
-xڍX_��6�O�^`�����i[t�{��L-p=[�ֱr���ܧ?R�'�F4E�IQ?%X��,�@da.�4Y���
f��!`���&2?l?�?E�"y-��ElD�-�(�$\l�x?V�hT�\����mod���}�0���n����o~ڎF�(�&z藓�s,��M��cy �$]�Y*���������S_aY��f�����;/C��}�N�SUݖ̤�а����0�'
����!,-�e{����'Q�R��he�Q�Ώ���.��S�f4���L�`�6g����e��m�UM?H�]�wzx�02�GcP�0&5�Ead�(�B�=��7$:u�}m0`�V<��ݞ��16�W�n_�u�����$ϽQ�U�*�֝n��"���dkҚi�R��'�gsݱ��ݻ	X���-����>�fpY��i���{��&�S�RP�g����N(c�!O,�U�g-L�4�9p+�D$H͏�d��`%�a 0�������.i�-����6
-ف�r�}[y�[��]�q�AYy-��-c߳�g��c��p��a�q\0���=�# v���;} �W��z�%d�"�a��n)��!��e��&`���B�������d�W1B���xD\Q����6�� �-��\�`Y�8�'I�9i�� ,�KyqOjG�Qb>�d�Ij>➒�B�Ĭ�왲Q�����;qv0WI��"�b��4E���8%$�Wzhx����]��M�x����$�	�I��
-鉄�-LC{�e����Lzzc�j��B������(�z�>U���܍'�/vU
-��E���8���1�C��0��m��ҺWO�v����cʰ��<�`���4�S���WCG�ʱ��w����r
�\$a��3X�4w�:��D�.�I��*B?^UA.���Spg��
T�C�,����"4�8�ٶz��^w��#Í�n�v~��A�{H��*j���5�Oj��ZHV�cK{=XT0�8�?�n��<������Co�=��E�d�;���oQ�]���*��A��5LE�S��E9��B�PN�W����ێ��;�H�&q<�#4���T��="$iI�ׂ/������K'�[��|�CW��?�į�9~�^�P
-I� ����.�~E���1���]�,G\R�C��b�n�M�l�c����F�@�[���
w������M3�u�(-�BE�.I�"!�Q��.���y۵p�7$(^̀%��kK!�"�i�gFE��_Cp�Ța�egt��Z��HK3�Y#
-��J�;����(Y`�lم	<	����w�]ݮASs_�)T;|�7�>�gG��%�Uߖ�-��A�͟]���b�$���/T���+c��A��V�%	0e��t����Vʭ�\���h�F��nAx����v̹�꼃�PŎ�h�'�9�%	���봯�ۗ�n�L�iB�ƉSeA:�"�D<˂�__i�}6�/�ܸ�Y~�����Aw_���g@l_ ���3N$��w#�;��r3��!��(迁*�X�Y0�_0)�������iz�h�/��o�x�{bHz�����`�EC���N�I�<�NKX#�Yh���2`�558Th�j�=_�	�~�&��Ƭj��9L�����+|]��׺��G3�L��F�n��q0�w
-���.zW�-�*�`�־�i�v���u���f-���ϕو5pG�V�0b�A&�(�<r�:�����[��?���L�9������XJ�U<���zb&��ՠ��
*H�jS�k0�'�
4��uod[(A�?���!�}���|w�4����Ӱ��k��<��=�d�f����o�ԞV��OzyG�@�<r�"���a�M�	=ahx�^� �5NfHEdK�����@MwN?r���Yu�~J|��Ō�d�����h s�y�%��������Y��dV�;�y����<5b���C�,���LM��Fl�������QĐ�Sb{���F�-��@�endstream
+xڅk�۸�{~�?5Ѣ^��{y\sH�]_��)
+Z���J�+J�����pF�,{�0`���g8�\�𓋕�>�ZI���W��V~y%�co������c.�b����n�T�W�U�4���λ�:tE�zA�;����t�����?��?ʪR�6�������J���E��s��H�$(ؠ���0��`o�^�]���jӹ^�t�2v=�"ҫ��3ʴ���z�I)�xe������QuA�wZ��j�w�v��;��}h����~��û͸��uU*C��` �~W-rY>>>���w"(�y��hj�Y~VG���iDj���kW�NG���g��;M_U���?�0�%HDk�ĎjK��
+Z�@��*�
+c�C��諻�;u��Ʀ�\�왐�o��EP��巃C��
+�r%�b_!�+1��*u~���EV~�� #G��J� 7�+�E��/ⵥ�E5h&�J���v�&zG_ДGK�<a��L�`��
��E�+O3��P�@��S�d������^k����	w�t�
�����\A��u,�҈�V$0�
+F@�� ��ͦ�>��jr°~7�5഼!/���#}�	B�P��:( �����GՁ�Ɇ1,��@k�M�; �Ҁ� ��_���rf*�]��o�1և85��B8{	�1&9�c��)�9�weUZ΄�>g]Y�n��Z=����P`��ǎU��
+�U��*�)[(\;{�]�G7��U �'�<'��C�66]��n�����:���w� �ȍ��E��Ph��M�A6Zޢ�=KW6��@y���.�NYw���C�����;���)Z�����j+�(��Kd��_�����i`��L����O�6{�
��TEpl%\VµW�X�$�/e�"/m��#�ײɭ��)P��A���=���Up��1���a����aM�%o�%k[�q4KWBa�V
MjdL�Ӳ{���M����G�'�^��@7o�Ka:[�~[�ɡk�s���a�;�&c��@V�ŝQl!�x��V _�����Ю_n~_~.��*�
ɍ���@F$0��|#ih��D5��c��ь������K�X�����h�u0+g�4E�ӈ�f2�$E�x���RH���M��eA��C^tP��`���}���zq,gG���e>2ji0��n�`|>o!m�gr�t'��]�2יq��*�0`�b���#�M3)�%�~�(؎X���� �=��~�0mZ��j A��q	#����+�@�[�h��E�[����[�ƃu�y�@:�a`���-x�!�`s�k]�I��V�Ai+h�?�	.��.�D.�ڍ�p%������|*�;���2󃆱m|�8"#��F�؈F��y�0:�f&�Q��ۛ�{�X���V�Y��M�D{c��ϓ'���mCcXc𤰫T�p�Av��jh��c���)�.$������/��8ޫ$D� ^�j���"<�g�xA,B�}��ڃ:II=h&c�c�f�a}��kc&a�mmג�݂�0�jeOl���h<�$v5v�c<�c���L�P����D�t�s�r}r����36܇�
�L1��
6�ұ��ɨ�Mel��dՀK_��C}��ػ=�l�YCWR�@+��ɈM�����&�s�yC<$��pR�1+EԳL9-;��S�&�]����Xl���e[��Zq���#�`���h	D�����/����paL!"��ŗ�Ǜ ٗ��ZsB�P�7����3�i(�>�2{�y�����x3X�V%�����n�J�m�\܃�q��!DH������KS��:[�%�S,\]T�Q�	��+Ԍ�=�n�̙IN��
8g�&�Н���	?L�B�U�ݭ���Μ������S�f�H
+�wW�dap�M"��TD2�z8��04�;N�R4����~<��mD�mGq�n:(cp��x���h��F�ڄ�����u
+B���ax���˂�l�N��?��G����Q^|��c���n�F}������>.��kl8��&=��=�Ϸ���3^���蠲u��mqЦ�t�t�xu<���<R��\��Ջo�G�����T��@�����sN��^� endstream
 endobj
-2718 0 obj <<
+2724 0 obj <<
 /Type /Page
-/Contents 2719 0 R
-/Resources 2717 0 R
+/Contents 2725 0 R
+/Resources 2723 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 2738 0 R
-/Annots [ 2726 0 R 2727 0 R 2737 0 R ]
+/Parent 2745 0 R
+/Annots [ 2740 0 R 2741 0 R ]
 >> endobj
-2726 0 obj <<
+2740 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [139.526 470.77 191.829 479.681]
+/Rect [330.238 191.931 383.277 200.843]
 /Subtype /Link
-/A << /S /GoTo /D (security-webserver-access) >>
+/A << /S /GoTo /D (install-perlmodules) >>
 >> endobj
-2727 0 obj <<
+2741 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [478.054 470.77 530.357 479.681]
+/Rect [91.377 181.037 112.249 187.891]
 /Subtype /Link
-/A << /S /GoTo /D (http) >>
+/A << /S /GoTo /D (gloss-ppm) >>
 >> endobj
-2737 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [356.749 140.986 401.58 149.898]
-/Subtype /Link
-/A << /S /GoTo /D (parameters) >>
+2726 0 obj <<
+/D [2724 0 R /XYZ 71.731 729.265 null]
 >> endobj
-2720 0 obj <<
-/D [2718 0 R /XYZ 71.731 729.265 null]
+2727 0 obj <<
+/D [2724 0 R /XYZ 71.731 718.306 null]
 >> endobj
-2721 0 obj <<
-/D [2718 0 R /XYZ 71.731 741.22 null]
+2728 0 obj <<
+/D [2724 0 R /XYZ 71.731 633.823 null]
 >> endobj
-2722 0 obj <<
-/D [2718 0 R /XYZ 76.712 708.344 null]
+1468 0 obj <<
+/D [2724 0 R /XYZ 71.731 613.734 null]
 >> endobj
-2723 0 obj <<
-/D [2718 0 R /XYZ 71.731 688.418 null]
+238 0 obj <<
+/D [2724 0 R /XYZ 350.135 570.636 null]
 >> endobj
-1456 0 obj <<
-/D [2718 0 R /XYZ 71.731 625.554 null]
+2729 0 obj <<
+/D [2724 0 R /XYZ 71.731 558.465 null]
 >> endobj
-254 0 obj <<
-/D [2718 0 R /XYZ 341.46 590.087 null]
+2730 0 obj <<
+/D [2724 0 R /XYZ 71.731 516.036 null]
 >> endobj
-2724 0 obj <<
-/D [2718 0 R /XYZ 71.731 581.45 null]
->> endobj
-1457 0 obj <<
-/D [2718 0 R /XYZ 71.731 551.069 null]
->> endobj
-258 0 obj <<
-/D [2718 0 R /XYZ 244.612 517.758 null]
+2731 0 obj <<
+/D [2724 0 R /XYZ 440.415 505.241 null]
 >> endobj
-2725 0 obj <<
-/D [2718 0 R /XYZ 71.731 509.121 null]
+1469 0 obj <<
+/D [2724 0 R /XYZ 71.731 490.133 null]
 >> endobj
-2728 0 obj <<
-/D [2718 0 R /XYZ 71.731 470.77 null]
+242 0 obj <<
+/D [2724 0 R /XYZ 242.621 452.918 null]
 >> endobj
-2729 0 obj <<
-/D [2718 0 R /XYZ 71.731 455.826 null]
+2732 0 obj <<
+/D [2724 0 R /XYZ 71.731 445.565 null]
 >> endobj
-2730 0 obj <<
-/D [2718 0 R /XYZ 322.74 446.326 null]
+2733 0 obj <<
+/D [2724 0 R /XYZ 411.415 406.89 null]
 >> endobj
-2731 0 obj <<
-/D [2718 0 R /XYZ 317.417 423.014 null]
+1470 0 obj <<
+/D [2724 0 R /XYZ 71.731 391.782 null]
 >> endobj
-1458 0 obj <<
-/D [2718 0 R /XYZ 71.731 395.118 null]
+246 0 obj <<
+/D [2724 0 R /XYZ 175.703 359.468 null]
 >> endobj
-262 0 obj <<
-/D [2718 0 R /XYZ 197.318 359.651 null]
+2734 0 obj <<
+/D [2724 0 R /XYZ 71.731 353.341 null]
 >> endobj
-2732 0 obj <<
-/D [2718 0 R /XYZ 71.731 351.014 null]
+2735 0 obj <<
+/D [2724 0 R /XYZ 231.715 340.539 null]
 >> endobj
-1459 0 obj <<
-/D [2718 0 R /XYZ 71.731 311.387 null]
+2736 0 obj <<
+/D [2724 0 R /XYZ 131.551 327.588 null]
 >> endobj
-266 0 obj <<
-/D [2718 0 R /XYZ 177.791 273.455 null]
+2737 0 obj <<
+/D [2724 0 R /XYZ 71.731 312.479 null]
 >> endobj
-2733 0 obj <<
-/D [2718 0 R /XYZ 71.731 266.102 null]
+2738 0 obj <<
+/D [2724 0 R /XYZ 71.731 297.535 null]
 >> endobj
-1460 0 obj <<
-/D [2718 0 R /XYZ 71.731 251.173 null]
+1471 0 obj <<
+/D [2724 0 R /XYZ 71.731 248.484 null]
 >> endobj
-270 0 obj <<
-/D [2718 0 R /XYZ 168.088 218.859 null]
+250 0 obj <<
+/D [2724 0 R /XYZ 245.449 213.017 null]
 >> endobj
-2734 0 obj <<
-/D [2718 0 R /XYZ 71.731 212.732 null]
+2739 0 obj <<
+/D [2724 0 R /XYZ 71.731 206.89 null]
 >> endobj
-2735 0 obj <<
-/D [2718 0 R /XYZ 187.795 199.93 null]
+2742 0 obj <<
+/D [2724 0 R /XYZ 71.731 171.075 null]
 >> endobj
-2736 0 obj <<
-/D [2718 0 R /XYZ 71.731 179.841 null]
+2743 0 obj <<
+/D [2724 0 R /XYZ 120.149 159.518 null]
 >> endobj
-1461 0 obj <<
-/D [2718 0 R /XYZ 71.731 136.005 null]
+2744 0 obj <<
+/D [2724 0 R /XYZ 71.731 137.899 null]
 >> endobj
-2717 0 obj <<
-/Font << /F33 1306 0 R /F23 1201 0 R /F44 2037 0 R /F27 1208 0 R /F35 1569 0 R >>
+2723 0 obj <<
+/Font << /F33 1322 0 R /F35 1589 0 R /F27 1224 0 R /F23 1217 0 R /F44 2069 0 R /F61 2561 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-2741 0 obj <<
-/Length 2543      
+2749 0 obj <<
+/Length 2068      
 /Filter /FlateDecode
 >>
 stream
-xڵ]o��}������}�no�)6{��m��"ӖY��e�_��P�%;�^Q�A�!9ߜ��…���=��k!�p�޸�=�||��/Y�ּۼ������XG�b�[^"��"��HB��l����c���J��#}�*ݦeYT{����.�2]�s��7?nz���u�*�]3L���0Dɬ�n"� 0�I
-)�Hq�|*��)������]G5%���mW�u��4#৿��j���.�b���k���x,)�-�TuK@Qee���6g������H�B���	"�02������(�Ֆr�Юf�<.��t�}�s�������kT��K�s��#}��-Q�Wy�ҷ��e�Q�x�����3أ���CQ=]��Yδ��8e�Xn��Ҷk�m�ߜ��k��~>�1pfCZ�$
-,��p�f��
-
-��V�Q�����?����(�B���J�3��)2�m)C'-J �>���5����m�oont�5�B�x��W�R�
X�_*k��Wו���9�|Xz�S�e�\�'჊7]�u5�:*�ڶ?��qP�����,��j����]���&0>q�V��7�@��x$�O(қ��8<Q�'�O|��r�����68i�Ђc�=�`Ec�U�J����@
-_B��!�����r��H�v��Q54�w4�UGUmU�
-��5Ͷ/GE�W/WL����JU�bh*���0;,`y�N��	uXs.t�3m��z ���}t�M�9��)��C�鱣'�\���ܵ���l>�kV�E�B3%d*
�u���i�Q�Δ�̘�K�>~r´��Cچ����lUDp��ClC�pIu��%W}�[���B����P�A�Q�Yz�_0h��Wa�2�F��������%Y]A&�H)4M��(�����}Ɯ�6��y��0D�ޚ&L2}!x�v(Gڕ�5���h@q3/Z�]#�犷
�<sꐤ9���
-�zFd�F�$��A�![��1�I�Tp���f�DЯx�U��̡��`Ճѡ֌7g�d.�&�2Si{�,�ژ2lh��b��e�FP�+�ȋl�s�:�s@�ҭj˩�Gʼn/��Nw�\�+�Ls� ��|��@�*`F&���ؖfF*����B4(��ѼS��'�$�T;ݜ��I�=��1���%�smp����|מ@=,C��gJBL�H06��]:c�
-ө~��1�+d�R<IlT���YY3�Q��3�"���
-���a�z�D�Q/7e"��Ɗ/��`�Y�^I�r�1@iI@�y[j� �N�&.0й�V�4ύ@���
-�;H�j��hC�$�G �z�1��х@۽W�ݲ�C�G���VD0/��V�0܆���pE
<rB��K��z�����V
���—�w�t��~�0H�M� ̆��6)��2�:p�$m����UY<a�E�����-m45��֎f��� "�\\��'
-��V������
Y`�0�=ol�:K�˥b�r���F��A]�;��L��к�ҷ6����K���N;"�X]�r{޻�9�2���I�٠���~ɠ�������%t)�s4=B���x�1��*��	6^�i��j4�	PN1`(�����s^�E��1�>}R�z��O����֬�ͧ�w�����f;{������e`��!�1�0���
D; �O�3�}���Nc��f�W���|h�d���2Zc�O`��	�s�X�<�q��%�-3	��2�.$K�1g<�
-;?��xg���1�#�fK�*kS�N��%6�N�M�D�'L<s�����:蚋c�+ˀف��lܚ����e�ln�r]=ٓuM����ty�[R�l����Lc���=���ްƦ9M!�j���d�M^L7hRZS�*�MFsq)܂��ׯG[��b�ъ�y9a�!\X�.�>e��&�>h]w���M6t� �H����;���YkE f
*i8�d�wvܭ�Ied�B}��?݃)��0�𫚦n�����Z!K�rZT��~�D��*�ľ`o#���+go���o�hz���i��*��ϡ~�Z��ݷ�=��1)����}ܔ��$��:l�C웭���Szd|��C��ۊ���ڧ%������5�`�ܰ�x�j��-a)px�yp�����\�����ʸ��E�
-���"�lڙk��P��D���m�LO�6� ���ɋT<�'z�Z��(�q�?bك��|�����m�Z������'bqo����if�U�$'iT�d�ʞ4佣8�s�D��˃���<�iQ���㉴B5�H�C]��v��/�g��́54��<8��I��AͺL=���;�ڊ��iŚ����T�?po�z̖�>x0p��kuxѿ�s�g�F��Y�6�w�G���~�#}��M]�zުyq,B?8��Z)��������}/W��]t�<Ƚɫ�y��R��K�
-���g�}�DO����c��_
-�:����Ǣ5�оI�ѿ��U��&HD�ů�fX2{%8SZ"����Y�s���]�endstream
+xڝێ���=_a����X�����)���E��Kc[��Qu�����C�,_���;��ې��‡�`�"�����xQ���=|�뛀)VL�����y��(�"y"��"
+2���T�"��Ŧ�����Aw�U�^(h��������q�ߪ���_����c3	�e*�L>����(��&IP1g��	EV��=.W��{�n
A�,	�US�@!��a�w����pĖ5�ۯ��U_�Yf�n	��*�"������;�-&�0��9H�����}ƞ���4=aZ�b{��h?Zc�����2����K�fAN��������4�9�#DՓ��}~���X�U�(�����t�N�������_�2_�0��e�7d\��M�J.W��N��a��o����c�UCDo[U�S�����n8����Z��ҽF�����0�'”�n�'u�fը���7b�Ѫ���h���w"�
+�c���(E|�Y��[�d�?T��EĮ3lj����hB��H�W{�5Z�t�1��n�0�e���L��P�X�m(���3i����*��z��]�ȱ�1�/��K� �4�b���m}AI(�T�q�@+�m�F;h��pD@�����;G���/�Z�ي(n�Y�b�(a@9���;)��7MWE0�`�%lT�	��Ce����-���~�����ey����� ��<��y��z`āy�/����e�Q�0U]
'�|kl4���0���۟�wf�(A���۔��`�U��{���`V)l
+�w[XOC
�T��l����N��(O���Ccu�:�!5TMh��Ҕ��~���7Gӱ���|16!� �'����`���'��k}�\�^ KS���.��ƠC�6��{�H!zDB�@HAl>��=J6e*��l��ƪ�Ξn�����jd�
+���ķ1��32u�0�=+�!��2�=��n+��'�2c����8�O�$�5?�UD}G��cN�P�>��%9P��jX$_ CkaJ8�R
+��c��х�"*͈�qA…�>���@�ܻ:8���K���^���3s+�z�j"��t�����hS,��q���Q��!�E���A�-|+	��럈�Rp��>�FH�;���f������m�YC�xY�W�߈*$ū���3�O&�]y�e
+�+U�;�����nնip�M��=<4�����d�f��}C��R՟��#��LC�偮A`r
��u�O�Ę3��Otv����ch`	�:�
+�.`�N2�7�U�~����������8Laa%��\�hV3";�#���ReGP���y 2�և���+F(�G�϶ԓ�;ӹ
+�����y^� �x��[]T�/h�1��b��Z(f�eI;3ڮ�ϣƁ8zh��yh�5��Cm��(3�tt��;�����oۮHB��0���Ǥp�w��������LEM���/�ez~n;�T����@��
q������v�d{G�g�5�/f�
+�Տ}�_q)�"m������~�#�1o��\��.��0��g�Us)�g��7�~���ޣ�k v��ϝ�a����Sl�[8`=X�*���.��&R�p`�:1��rm3�DQW���*�Q9K<�h��F�Ϭ'�}`�e��,�Y��V
�9q�=/c�2N5}�x�TI�����)<��Vn�]�}��Vͺ���i&��?�����Q�n�E$����OA����k������'�OMQ$E&��I��
j;��R?��l
۝����+~*�i�_m�h�Cz;[���_
+����^�-x���[Rj�q;5�����ձ�]U�P0���r�����@F�4����Ⴗ'����&��쁧"���m�#Z3h��g�Z<5kM9�iUU���,3����:�:�y��r��B\��i-sR˛�κ�N��g���Þ��d��~��RnA@DZ�2欫���J䐬�ay��4%��H�so������{���w����?9�؞AJ=�E�Lr�j�E9tL�ʟ�Hz+��Q�(endstream
 endobj
-2740 0 obj <<
+2748 0 obj <<
 /Type /Page
-/Contents 2741 0 R
-/Resources 2739 0 R
+/Contents 2749 0 R
+/Resources 2747 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 2738 0 R
-/Annots [ 2747 0 R ]
+/Parent 2745 0 R
+/Annots [ 2764 0 R 2765 0 R ]
 >> endobj
-2747 0 obj <<
+2764 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [244.482 609.594 269.647 616.468]
+/Rect [139.526 286.8 191.829 295.711]
 /Subtype /Link
-/A << /S /GoTo /D (gloss-cpan) >>
->> endobj
-2742 0 obj <<
-/D [2740 0 R /XYZ 71.731 729.265 null]
->> endobj
-274 0 obj <<
-/D [2740 0 R /XYZ 331.166 708.344 null]
->> endobj
-2743 0 obj <<
-/D [2740 0 R /XYZ 71.731 702.217 null]
->> endobj
-2744 0 obj <<
-/D [2740 0 R /XYZ 71.731 651.392 null]
->> endobj
-2745 0 obj <<
-/D [2740 0 R /XYZ 455.258 640.598 null]
->> endobj
-2746 0 obj <<
-/D [2740 0 R /XYZ 71.731 633.46 null]
->> endobj
-2748 0 obj <<
-/D [2740 0 R /XYZ 71.731 609.594 null]
+/A << /S /GoTo /D (security-webserver-access) >>
 >> endobj
-2749 0 obj <<
-/D [2740 0 R /XYZ 71.731 594.65 null]
+2765 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [478.054 286.8 530.357 295.711]
+/Subtype /Link
+/A << /S /GoTo /D (http) >>
 >> endobj
 2750 0 obj <<
-/D [2740 0 R /XYZ 121.379 571.457 null]
+/D [2748 0 R /XYZ 71.731 729.265 null]
 >> endobj
 2751 0 obj <<
-/D [2740 0 R /XYZ 101.884 559.801 null]
+/D [2748 0 R /XYZ 71.731 718.306 null]
 >> endobj
 2752 0 obj <<
-/D [2740 0 R /XYZ 156.232 559.801 null]
+/D [2748 0 R /XYZ 71.731 718.306 null]
 >> endobj
 2753 0 obj <<
-/D [2740 0 R /XYZ 254.126 559.801 null]
+/D [2748 0 R /XYZ 71.731 696.687 null]
 >> endobj
 2754 0 obj <<
-/D [2740 0 R /XYZ 313.316 559.801 null]
+/D [2748 0 R /XYZ 71.731 676.762 null]
 >> endobj
 2755 0 obj <<
-/D [2740 0 R /XYZ 138.317 548.144 null]
+/D [2748 0 R /XYZ 71.731 653.256 null]
 >> endobj
 2756 0 obj <<
-/D [2740 0 R /XYZ 239.635 548.144 null]
+/D [2748 0 R /XYZ 71.731 653.256 null]
 >> endobj
 2757 0 obj <<
-/D [2740 0 R /XYZ 71.731 520.249 null]
+/D [2748 0 R /XYZ 76.712 595.905 null]
 >> endobj
 2758 0 obj <<
-/D [2740 0 R /XYZ 175.156 507.298 null]
+/D [2748 0 R /XYZ 71.731 575.98 null]
 >> endobj
 2759 0 obj <<
-/D [2740 0 R /XYZ 71.731 469.275 null]
+/D [2748 0 R /XYZ 91.656 541.011 null]
 >> endobj
-2762 0 obj <<
-/D [2740 0 R /XYZ 71.731 413.151 null]
+2760 0 obj <<
+/D [2748 0 R /XYZ 76.712 524.374 null]
 >> endobj
-2763 0 obj <<
-/D [2740 0 R /XYZ 71.731 403.188 null]
+2761 0 obj <<
+/D [2748 0 R /XYZ 71.731 504.448 null]
 >> endobj
-2764 0 obj <<
-/D [2740 0 R /XYZ 71.731 365.166 null]
+1472 0 obj <<
+/D [2748 0 R /XYZ 71.731 441.584 null]
 >> endobj
-2765 0 obj <<
-/D [2740 0 R /XYZ 390.582 349.39 null]
+254 0 obj <<
+/D [2748 0 R /XYZ 341.46 406.117 null]
 >> endobj
-1462 0 obj <<
-/D [2740 0 R /XYZ 71.731 319.338 null]
+2762 0 obj <<
+/D [2748 0 R /XYZ 71.731 397.48 null]
 >> endobj
-278 0 obj <<
-/D [2740 0 R /XYZ 245.404 282.122 null]
+1473 0 obj <<
+/D [2748 0 R /XYZ 71.731 367.098 null]
+>> endobj
+258 0 obj <<
+/D [2748 0 R /XYZ 244.612 333.788 null]
+>> endobj
+2763 0 obj <<
+/D [2748 0 R /XYZ 71.731 325.151 null]
 >> endobj
 2766 0 obj <<
-/D [2740 0 R /XYZ 71.731 274.77 null]
+/D [2748 0 R /XYZ 71.731 286.8 null]
 >> endobj
 2767 0 obj <<
-/D [2740 0 R /XYZ 125.246 249.046 null]
+/D [2748 0 R /XYZ 71.731 271.856 null]
 >> endobj
 2768 0 obj <<
-/D [2740 0 R /XYZ 71.731 236.095 null]
+/D [2748 0 R /XYZ 322.74 262.356 null]
 >> endobj
 2769 0 obj <<
-/D [2740 0 R /XYZ 71.731 223.975 null]
+/D [2748 0 R /XYZ 301.167 239.044 null]
 >> endobj
 2770 0 obj <<
-/D [2740 0 R /XYZ 71.731 223.975 null]
+/D [2748 0 R /XYZ 424.128 239.044 null]
 >> endobj
 2771 0 obj <<
-/D [2740 0 R /XYZ 101.32 214.476 null]
+/D [2748 0 R /XYZ 199.547 227.387 null]
 >> endobj
 2772 0 obj <<
-/D [2740 0 R /XYZ 71.731 213.261 null]
+/D [2748 0 R /XYZ 382.593 227.387 null]
+>> endobj
+1474 0 obj <<
+/D [2748 0 R /XYZ 71.731 199.492 null]
+>> endobj
+262 0 obj <<
+/D [2748 0 R /XYZ 197.318 164.025 null]
 >> endobj
 2773 0 obj <<
-/D [2740 0 R /XYZ 101.32 202.819 null]
+/D [2748 0 R /XYZ 71.731 155.387 null]
 >> endobj
-2774 0 obj <<
-/D [2740 0 R /XYZ 71.731 201.605 null]
+1475 0 obj <<
+/D [2748 0 R /XYZ 71.731 115.761 null]
 >> endobj
-2775 0 obj <<
-/D [2740 0 R /XYZ 101.32 191.163 null]
+2747 0 obj <<
+/Font << /F33 1322 0 R /F61 2561 0 R /F23 1217 0 R /F44 2069 0 R /F27 1224 0 R /F35 1589 0 R >>
+/ProcSet [ /PDF /Text ]
 >> endobj
 2776 0 obj <<
-/D [2740 0 R /XYZ 71.731 189.948 null]
+/Length 2630      
+/Filter /FlateDecode
+>>
+stream
+xڍYmo�8��_a���ČDI���}H{�nM7@��.��A��XY��n��߼ђ%;]���pfH�<3d���,�T��G'J/�Y�{��a��+O8²�Y��y���D%K���/VI4�|��P�V��8o��5�|�C�ъ�ʦM�"/���{�_^������iuT��Jb�E�,��0�ϼ@��-�t#Y�U�Ƞ(v�Ҍ�_>���2�~q�l�]��fߥOS�u�{�S�OܪJ�ޥs�ɘ&%��Ÿ����i��n
��(����QQ���kڝ)�F���HO%a(��
+���<Y�gS�wi^�]��Nh�4w����̅/���U>w�嚻��8p�k����u]��{����m��뛛��0�9jLġ�z����
0y,0oxZ�Q�Jot<̵�ty�.r���i�1���:`U�z�P!X&V��
+���k�}TS�Ѧh�V�a�L�I^ֵ�Ca�Q�-S�|�gr�
l5�c�ÔU���)�=ܪ8u�k9b�RT�Co�yY��c�Jз�fު�
+ 0 :q�(#o��7Nٜ&'�L02�{�c=0p������D=d�Z��2��0H��W&6�i���!o�U�2,�Eq��ef����a���8!�?W��Yr��z|�u�)zσ��zp��꒩J��*d�k(Y5���:�B9l>�MU?A�k�-+j�Ԥ���9�b�M����!�qdg5,�'��c'�w(j��;2�|�wi�m}֌�g
��4Y����byϐi��9�
V6Fu?\�(Hfa�p��[�ŀ�Q}�]cA���&�
��7V��
+�uˋ�GbP�9D�#����P���m���?�i��A�����ñ����T���r���z����~o�k�^�Uk�)+���
���A�d�d8Q���)M��Ҙ�1�卅@�FrA��:�o�s0��ܣ��2�s9!���]�iH�"J�A:B3�3�C�X����5��m�mE�ly�^�����2�0L�w+o��vn?�����[6�.�iĶj��V�{��Wޫ�͋�בM�E�a��Ap"lxN��6u�cJ�rSuu��E�بҴ7�c@<57��O7�΄ǖ*#����E���q��m��M��!����f�+L�M/��N�@�
+��(XZ��)j	+L���Dbo=E�� x�T@�����qяk=
6�4 �a�fO)�"m?Tbat�o�ulP�ۻ��r���������1(�@!G�fXl�,'ܾ���7<~�|%b0Q#��E�#:(�A@�KX]�O�6#��s�u�d�l{z�d�s�yx�@�`J�#�9(�=B}@]�Y��*�[����Y�&7�� ��@���c��D-�Q��L�KG�>~|����=l���SV���E�4u�m�./]/Ւ��Z�9����!$�P||5��]�e<,�
�,����{���&�G��*G����9���M�i�()UP�$��I��NYu���L���H�r�f^FE2��1�<oe6]�L��X�R̡H�^Y���2��U[c��P�q=V�mR�"m��9L�a��qؚZ�QHr:�˃�oSDQF�l�튎��9a݄�kEI�d���w��� ���SS�BL�(�5S��5�n� ���E��K�8��3��I��~�nP�d�|��@0��]�؂f"
+�F�F�Xw��;�x*�+�k���[�?�.ʹl^�<�:�b�~#��])�u?ǫ%�L�];*��`ӏ<
+y>B�/0�6O�xw�
+83<%qI,S�^1�8���Fؔ�����ܵ�����G�7��*���(PKo�C_�U��;8I�
�{�DT���^r[4hA��M�^�n���<.ePy3-��T��Q��{��'�����Q���L@��5�뽨k���0?��B����)B�A�O�!8��K��}|���Q�1|�\x��|�dw1���+�Vܳ�2��ɪ��lpO�2Dίe��dl��c�'+k�#"ЁY;8.��V�OD���4����X��
+�ӫuQe��dy��]����/�;6�䁴W����Cx��P�^|E�n��;����Ag��Г��0�����拥�{�(�Zܽ���檨�'lX���b� ��H��o��_}OO5/,��&ܥOf�CEs��;~�r�9�v��Û������aGoW>�=���s�j
+�ѓLA����Ol��x��W
�0�-�(5ן����������OPqĪ�{j�4Ƒ
+|}N��{�@�L,�e5�28�`E1{��kpk�1�gc[��Ys��EE�>�D�2a��lB��0����%�9�����XR�����qK���FlB4���ی�d]]���l/]���t�[�>�k:��lسz{�n�)�Ԇ;OƢ�3U�iu����L�����EP����n�K�fY�!s�-Q!�X�h��j2e����
������a��@���6��#�J���v��;��O-H�I7����i[�xo�٦٣�,<y殯Z��s��7�:~M]Wucu�d����/9�8͏��6]�/�X<Z����ɻ�}���$A�b�e�Y&��PC=��zR
.��p����=V�endstream
+endobj
+2775 0 obj <<
+/Type /Page
+/Contents 2776 0 R
+/Resources 2774 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 2745 0 R
+/Annots [ 2782 0 R 2789 0 R ]
+>> endobj
+2782 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [356.749 575.373 401.58 584.284]
+/Subtype /Link
+/A << /S /GoTo /D (parameters) >>
+>> endobj
+2789 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [244.482 438.332 269.647 445.206]
+/Subtype /Link
+/A << /S /GoTo /D (gloss-cpan) >>
 >> endobj
 2777 0 obj <<
-/D [2740 0 R /XYZ 101.32 179.507 null]
+/D [2775 0 R /XYZ 71.731 729.265 null]
+>> endobj
+266 0 obj <<
+/D [2775 0 R /XYZ 177.791 707.841 null]
 >> endobj
 2778 0 obj <<
-/D [2740 0 R /XYZ 71.731 178.292 null]
+/D [2775 0 R /XYZ 71.731 700.488 null]
+>> endobj
+1476 0 obj <<
+/D [2775 0 R /XYZ 71.731 685.559 null]
+>> endobj
+270 0 obj <<
+/D [2775 0 R /XYZ 168.088 653.246 null]
 >> endobj
 2779 0 obj <<
-/D [2740 0 R /XYZ 101.32 167.851 null]
+/D [2775 0 R /XYZ 71.731 647.119 null]
 >> endobj
 2780 0 obj <<
-/D [2740 0 R /XYZ 71.731 156.194 null]
+/D [2775 0 R /XYZ 187.795 634.317 null]
 >> endobj
 2781 0 obj <<
-/D [2740 0 R /XYZ 71.731 146.232 null]
+/D [2775 0 R /XYZ 71.731 614.227 null]
 >> endobj
-1463 0 obj <<
-/D [2740 0 R /XYZ 71.731 106.217 null]
+1477 0 obj <<
+/D [2775 0 R /XYZ 71.731 570.391 null]
 >> endobj
-2739 0 obj <<
-/Font << /F33 1306 0 R /F23 1201 0 R /F27 1208 0 R /F35 1569 0 R /F44 2037 0 R /F64 2761 0 R /F32 1215 0 R /F61 2529 0 R >>
-/ProcSet [ /PDF /Text ]
+274 0 obj <<
+/D [2775 0 R /XYZ 331.166 537.081 null]
+>> endobj
+2783 0 obj <<
+/D [2775 0 R /XYZ 71.731 530.954 null]
 >> endobj
-2785 0 obj <<
-/Length 1797      
-/Filter /FlateDecode
->>
-stream
-xڥX_s�6ϧ���]̈��>���������f����N�hK�,��T���Pv7�m�%���A��(���R)R�0a{��"���y}!Yb�"�#�7W���r�'ʻYy��D�z�
-E��M��Y�Q�e~(�yݙ�hۦ[���i�wӶ������7��X�"�ԓ~9�G��ʓ�e����H��z��I3���׿��S]�-�E�}?»$�\�M��m?j���H�(AS��T�P���H�t����J��6�����02��������.�4Q���(zH%��t
- ���(��w{"8�%�u3��F�UM�q���=Q��/Km�0>;}G��7�a��~`������������`�]NC3��@�0=��@!D!C�s�u�����4�`Vz,���u�cG{ 6tc�2g��+L}3�5Q
-&�q�
-Z_��r�]����*]����Ede��9�Ӻ&2��4��4��^����lj;����Qʜ*�x}Х��2P>•�E*�'�;�'��a(���OAf�׸��@�1_����	�k=Ң���T��U���}�!|0 �Qo
-�yj]q}�4����ݝE�]r��-+=�d�S�`�yQ���	|6���>��8�q2��x�����B*l"%��)����_U�i�Y&��&$�Z���.hiKl��naOMtH��
-�L[�ߑ0 �8u#��`�=��wP.yQ��C5�#�;�+vB��w|�e�u
-�T0`G��}5��9A}�|pن֥˩9�l�ÐNkN	v��8k�9�u8fB����{�A�8Ŝ�J�i��D$��o�콁�?�gw���O��y��A{���fM���&ç��f'�H������X�y��o�I�	)�A��%�[�m@6��ȃ���
K�A���D$*s�Qn+Bn/�	^Ԝߡ�odo��^P�7�d�k.q�MX�P��&J@�8@Ξ�$l8-�����7��UL*�liN�7�1Pe�u6fU1w���N��Y{��PC�d�o�A�nHG��X�b)�T�,ĻI�X�ʺ���$��U�sIB[$�I0; ��m1�Uḋ��]�`'D�;$-6�=۾D����
-T=`ב�\�r����5k�%k����E�)���6�f��U�`��a���"œ/	=�1(��K�!��Ĝc�/s����Pt�Pf��ن�CsذH�i�ƌԞEv�*���s<�q�9>qjO̕��b4,��8عdvW]Y[�&�S��
}Ж���P������Fʙ�XN�$���0��$�[3��EXs�:�p߅» ��%d1�gb��fk��[�' �[;z��r`'v>"B���- �� u�P��p>����'Cv$��Þ��f{�&�<��!b��:�^���{G%����HAA��@0���(��F����(�����8�����I�fLY�>���{�J���ć9����Ԍ���m��5��'������~�c�Wg�-��}��<
-75a�$��/���[�	t�BxB�qFڰ|�g	e`@����U�o�ժ����X����'�e�Զ��#}#�N��,	�(i��ٛ�mu{��b%g��.]m�pV��8#o��^�'ⶐn����?��m?�ϲ ����dx����Z�o�%OSG�T�/z8,Ϭ�&vH�/�p�6w��b���z��0,�~}>�x(�s�j��i�Í�o�6��i�a�F0c��ɿ�D�GT�,aA�O3�-��¨9endstream
-endobj
 2784 0 obj <<
-/Type /Page
-/Contents 2785 0 R
-/Resources 2783 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 2738 0 R
-/Annots [ 2788 0 R ]
+/D [2775 0 R /XYZ 71.731 511.014 null]
 >> endobj
-2788 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [474.611 631.143 519.716 640.054]
-/Subtype /Link
-/A << /S /GoTo /D (installation) >>
+2785 0 obj <<
+/D [2775 0 R /XYZ 220.441 487.268 null]
 >> endobj
 2786 0 obj <<
-/D [2784 0 R /XYZ 71.731 729.265 null]
->> endobj
-282 0 obj <<
-/D [2784 0 R /XYZ 381.295 705.748 null]
->> endobj
-1464 0 obj <<
-/D [2784 0 R /XYZ 71.731 702.184 null]
->> endobj
-286 0 obj <<
-/D [2784 0 R /XYZ 195.006 666.375 null]
+/D [2775 0 R /XYZ 71.731 480.13 null]
 >> endobj
 2787 0 obj <<
-/D [2784 0 R /XYZ 71.731 659.023 null]
->> endobj
-1465 0 obj <<
-/D [2784 0 R /XYZ 71.731 613.21 null]
+/D [2775 0 R /XYZ 455.258 469.335 null]
 >> endobj
-290 0 obj <<
-/D [2784 0 R /XYZ 161.035 575.994 null]
->> endobj
-2789 0 obj <<
-/D [2784 0 R /XYZ 71.731 565.852 null]
+2788 0 obj <<
+/D [2775 0 R /XYZ 71.731 462.197 null]
 >> endobj
 2790 0 obj <<
-/D [2784 0 R /XYZ 71.731 540.761 null]
+/D [2775 0 R /XYZ 71.731 438.332 null]
 >> endobj
 2791 0 obj <<
-/D [2784 0 R /XYZ 118.555 502.197 null]
+/D [2775 0 R /XYZ 71.731 423.388 null]
 >> endobj
 2792 0 obj <<
-/D [2784 0 R /XYZ 281.083 493.733 null]
+/D [2775 0 R /XYZ 121.379 400.194 null]
 >> endobj
 2793 0 obj <<
-/D [2784 0 R /XYZ 252.403 458.764 null]
+/D [2775 0 R /XYZ 101.884 388.538 null]
 >> endobj
 2794 0 obj <<
-/D [2784 0 R /XYZ 118.555 451.788 null]
->> endobj
-1466 0 obj <<
-/D [2784 0 R /XYZ 71.731 418.62 null]
->> endobj
-294 0 obj <<
-/D [2784 0 R /XYZ 282.307 389.974 null]
+/D [2775 0 R /XYZ 156.232 388.538 null]
 >> endobj
 2795 0 obj <<
-/D [2784 0 R /XYZ 71.731 387.314 null]
->> endobj
-298 0 obj <<
-/D [2784 0 R /XYZ 268.211 359.588 null]
+/D [2775 0 R /XYZ 254.126 388.538 null]
 >> endobj
 2796 0 obj <<
-/D [2784 0 R /XYZ 71.731 352.39 null]
+/D [2775 0 R /XYZ 313.316 388.538 null]
 >> endobj
 2797 0 obj <<
-/D [2784 0 R /XYZ 71.731 329.536 null]
+/D [2775 0 R /XYZ 138.317 376.882 null]
 >> endobj
 2798 0 obj <<
-/D [2784 0 R /XYZ 71.731 123.573 null]
+/D [2775 0 R /XYZ 239.635 376.882 null]
 >> endobj
-2783 0 obj <<
-/Font << /F33 1306 0 R /F23 1201 0 R /F27 1208 0 R /F44 2037 0 R /F48 2049 0 R /F35 1569 0 R >>
-/ProcSet [ /PDF /Text ]
+2799 0 obj <<
+/D [2775 0 R /XYZ 71.731 348.987 null]
 >> endobj
-2801 0 obj <<
-/Length 1895      
-/Filter /FlateDecode
->>
-stream
-xڭ�nܶ��_�E�-�\R�5o��)Z�m8�-Y˵�J�V���|}g8�.^�� p8��s��
-��?�%�%� cAyEs��;8y}!,�ڒ�g4/��WRz�b�m�^(R�%^"�F�����_��aP�jD��o�~��j�h��x����|���ۋ����H&,K�G�r4g���$�ӏ�L��,`1�`F�$���"����!��J�Ǫh��J�C!7��d�ν��!���+!����M*�"o	���������w?|G`�ە�V�N���ܯ��>9��۝,�R;�͈�lq�@�C5�����՛�a��)�$#�Ǩ��"��)�:mJݨ�^�Ms���M�rg������c��oʘEi�
-X	C{�ԚLSM��W+�����q�ok�_�aPE�?Q��~(s�"L�}������`	4������������]>������M�>a�(�6��0:���	���~È��Q�Uu�^�[��	g0J�£t	�(�M`���u��m;�ni%m�S?��!�"+��N��VA�?��t�N������N�a���,�5"�	���!࠻�N&1�~�-�ASY� #;ϓh�&�Q��si��ݐ�yB��L���H�ZNr�U���|?V60��L�f����f�R�������a����;ц5�U��h����\Ǚ�P煺\��2�Ȫ����"F�a�����{}�V�f!�SB#&E��b�����"�Ŕh$ �bCd��ަ�����Q׎�Y����[��nxj�\5.�Lm�����zO%ns��)iq:���6��.(B�EH.�zK4T�q��@F����mU�5��ݛ���7>��ֶ*L�i�BiK���_o�5��$���AuM������jW�d�i���)��w���+(��� aI-���ʱ�qe��P���M��Z�Fʱ����*��r�@���4���3s����A��5��ĵ�3[d‰.�������e��a��ʊk?V�GI���is��W�~��zy��,P���m��^kk�!Y���7P��3�r��R�|��k�#�L��"i�L��;�
-�a}�$��V�)3M���-%ڨv�z|�}`���x����������}�k�
-��o�K�9.v1'�#��
-թ���NS�\c�L�W;�x�BB�=�P�RQ�����`���~���$av�I�	�e�딷�xw���	�D�Gxз��	k'
X��]�81C�d�p8�L�2�X��*�g�u�3C�YF�E
-c?�I\@�H�߀B���[�t���{t4�7Hb��zה�B9����G�m$V�3nL�51h�x�iM��tA�.��$�*�=��o���b�`~�M
-D��B
-�1� 	��Mh`�#�*:j����Z���q_�:���|�'�,�ag���Ts�҉)7�~�&�s}���:lL���PVEI���6yg	sZ�]|v��%�7ɿ��3&�#��jS�t�4x:O��2��q��#�7oР����%�4��-:��YT�ľ��N5
-{x�K�aQ�qw/ �����;�~��o�e�anP"C�������,/\S���s�������\��'��y��{��t�u�{��^c�/t�@�؉��G6v��S��i|�ș?3��Dn�8v���F�yM;���+3�Yr;��9��
��\f}}0z��Y���f��4�\�<�"v��bӛw1���>�]�d��{i�5���p�Ǟ��"*v�UZ�(������4Z�<��\��^ٝ�-�ӣYLD���S�#�/&\��i�)3��3��*�+�M�0e)�짲��엲f�T�\LՈ���_�W�	M���endstream
-endobj
 2800 0 obj <<
-/Type /Page
-/Contents 2801 0 R
-/Resources 2799 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 2738 0 R
+/D [2775 0 R /XYZ 175.156 336.035 null]
 >> endobj
-2802 0 obj <<
-/D [2800 0 R /XYZ 71.731 729.265 null]
->> endobj
-302 0 obj <<
-/D [2800 0 R /XYZ 228.441 708.344 null]
->> endobj
-2803 0 obj <<
-/D [2800 0 R /XYZ 71.731 703.158 null]
+2801 0 obj <<
+/D [2775 0 R /XYZ 71.731 298.013 null]
 >> endobj
 2804 0 obj <<
-/D [2800 0 R /XYZ 427.619 690.411 null]
+/D [2775 0 R /XYZ 71.731 241.888 null]
 >> endobj
 2805 0 obj <<
-/D [2800 0 R /XYZ 387.295 677.46 null]
+/D [2775 0 R /XYZ 71.731 231.926 null]
 >> endobj
 2806 0 obj <<
-/D [2800 0 R /XYZ 71.731 646.476 null]
->> endobj
-306 0 obj <<
-/D [2800 0 R /XYZ 199.549 613.699 null]
+/D [2775 0 R /XYZ 71.731 193.903 null]
 >> endobj
 2807 0 obj <<
-/D [2800 0 R /XYZ 71.731 606.501 null]
+/D [2775 0 R /XYZ 390.582 178.127 null]
 >> endobj
-2808 0 obj <<
-/D [2800 0 R /XYZ 71.731 583.646 null]
+1478 0 obj <<
+/D [2775 0 R /XYZ 71.731 148.075 null]
 >> endobj
-2809 0 obj <<
-/D [2800 0 R /XYZ 147.048 574.147 null]
+2774 0 obj <<
+/Font << /F33 1322 0 R /F23 1217 0 R /F27 1224 0 R /F35 1589 0 R /F44 2069 0 R /F66 2803 0 R >>
+/ProcSet [ /PDF /Text ]
 >> endobj
+2811 0 obj <<
+/Length 2245      
+/Filter /FlateDecode
+>>
+stream
+xڝ]�����~��JuN+r����C�6���n�N�q<�'�G�2�����,I���L챵`,�`���o�J�(����q�*�7�j�n��0�fA���f��R�Ld�Z=<�� Y�J�i$W�G�m�ݯ72�=)���5C�4u����q���i����o��0	�T"�T�����PL�U
+ƨ�����4�fRDB�BI��T�����/��[m��~\K�
u�T8&�U��F�"����.��wZoTd�!'e^y��R�mь�&�7�:�����%�
���nK���8f�t��͇z-#�wTE�������{��4'3���k7xM�Y E��fG)�͎�(�{�z��w�@��(�1�Z�M��3�I>�MՍMI�GM��0]�?4/`���l�I10�x�>��ɘvyQ
+ԉTf���p�M]��AHrb�e(�O��A�tCX�����u����D�! �!�"h�g?��ĕP��5�����׼��)�HX�����iat�Ri_�}k��ػ�<�n��~"�C�A,��T��B�����ܠG�ٛ����v!@ˮ��,A�ќ��'�#�.
ںS	ޚ�Q�~,\�1�:���6CGH�9.�-d��;��-��E��+��O*,#�����.�{V�6g�m��56�a�P��j�O�cW�M�������5�~F�(�2q~�#���7���ž�\(H��vQ޾�^�͖�E������֭���dH_�*�A�ݠ��*
u?2��L�P���K~������M+T��ڍ�(c�I�zw�b����R����L�DNR�xĸ$��!��@�A����4tB��m�� �`�[�����{{#��-�5D��i@�#s�pG@AD���sGڇ� ���y���9�Ɨ|���h�r����c_'�ԁ�:��J�ƩL��LE4f���n:%."�M�E��fg$!B��EE��z��w���^c�Ɨ�dAU>�di�	�w�"0?2�n&LB�+�J�63�d3�P/��l�X��pA�@�}T��$�_��H^�I)��L2&fo��M�"�Ί��$�N�r�g�����1�L��j�}�}0�����u��$(�7����5�{�	�_[0���1
3��9k�AGa��jƇ��Ԕ�3����������Y�6��
+��U���x;n�f��[����Y.hi������ޚ���،>�1�:f�h[�Ӄc)臒����CYh�l�G�Z����2��k7��V�e�+�{�ﻹu��-�Aek>lR\L���~M��8$XM�⤍���:	�w�=� �C�L� P"J•�a�H̦�7?��2�G��_�w�A��%�d�@d�Z�z�ts���	
�+x��kL�#�`�q��K�x$0$)?��NW*�DȮ�m@�ۧ�u�`ȋ�M�¤����"���Rl+%!��ʷ��RS|Kj`�
]�uPs����N������R@����4	b�d
+�E~�����KuUci�4��z��n�P:�yBze>�ذ���`�!�d�9��m?��9�`�)d
`S�� K��J􍈣�:�*������ӈ�%	A,��/�ۮ�F���d@�t	�?V5����y��|�Nl�9?����C[���k���<�X��7��$bMqe`�nS��A���0jn;2r�bxR^��a뀅��hx&"�d#�LчdG�ö�R�03τ�,�ͦ����-v�dԎI��T,��\<�͹�1Wb��-а�:H���-��rke������4��PJ���S@Ŏf�A��Zʉc[�8���e�w8=��i�u0#�Æ�]Xaz���4��P�
���5A�W�2��9x����I��@��=�9~�@Wu}Ix���~@FE���
Q�f���
+Hkb���O�N0�M�Zaux�u�
+̾Z��?[�C�C�@X�?��,hZRy���(Z|-�2>̹�qc͇iI�CָA��|@�P��g}_f���}�8#ގf��>��m�#��4���CՕWۭ�7���� w]�/��i����u�S�B�=�^��(��u�{`�����>u�9/h`��yXB��뀚�G��3���T4'1���Af/�q2���ӕ �J�~;��ݟஐXp�Zy�g=� ���s��D��c���M�4p8��
+�B�O/s�#,LE$�~o�I.>7Ã/|��x��������9endstream
+endobj
 2810 0 obj <<
-/D [2800 0 R /XYZ 147.048 562.491 null]
+/Type /Page
+/Contents 2811 0 R
+/Resources 2809 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 2745 0 R
+/Annots [ 2817 0 R ]
 >> endobj
-2811 0 obj <<
-/D [2800 0 R /XYZ 71.731 540.872 null]
+2817 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [474.611 470.223 519.716 479.134]
+/Subtype /Link
+/A << /S /GoTo /D (installation) >>
 >> endobj
 2812 0 obj <<
-/D [2800 0 R /XYZ 71.731 517.858 null]
+/D [2810 0 R /XYZ 71.731 729.265 null]
+>> endobj
+278 0 obj <<
+/D [2810 0 R /XYZ 241.903 707.841 null]
 >> endobj
 2813 0 obj <<
-/D [2800 0 R /XYZ 147.048 506.301 null]
+/D [2810 0 R /XYZ 71.731 700.488 null]
 >> endobj
 2814 0 obj <<
-/D [2800 0 R /XYZ 147.048 494.645 null]
+/D [2810 0 R /XYZ 71.731 641.724 null]
 >> endobj
 2815 0 obj <<
-/D [2800 0 R /XYZ 71.731 473.026 null]
+/D [2810 0 R /XYZ 456.325 617.978 null]
+>> endobj
+1479 0 obj <<
+/D [2810 0 R /XYZ 71.731 587.926 null]
+>> endobj
+282 0 obj <<
+/D [2810 0 R /XYZ 381.295 544.828 null]
+>> endobj
+1480 0 obj <<
+/D [2810 0 R /XYZ 71.731 541.265 null]
+>> endobj
+286 0 obj <<
+/D [2810 0 R /XYZ 195.006 505.456 null]
 >> endobj
 2816 0 obj <<
-/D [2800 0 R /XYZ 361.161 460.075 null]
+/D [2810 0 R /XYZ 71.731 498.103 null]
 >> endobj
-2817 0 obj <<
-/D [2800 0 R /XYZ 71.731 444.966 null]
+1481 0 obj <<
+/D [2810 0 R /XYZ 71.731 452.29 null]
+>> endobj
+290 0 obj <<
+/D [2810 0 R /XYZ 161.035 415.075 null]
 >> endobj
 2818 0 obj <<
-/D [2800 0 R /XYZ 71.731 430.023 null]
+/D [2810 0 R /XYZ 71.731 404.932 null]
 >> endobj
 2819 0 obj <<
-/D [2800 0 R /XYZ 76.712 380.573 null]
+/D [2810 0 R /XYZ 71.731 379.842 null]
 >> endobj
 2820 0 obj <<
-/D [2800 0 R /XYZ 118.555 337.028 null]
->> endobj
-1467 0 obj <<
-/D [2800 0 R /XYZ 71.731 263.513 null]
->> endobj
-310 0 obj <<
-/D [2800 0 R /XYZ 138.296 231.009 null]
+/D [2810 0 R /XYZ 118.555 341.278 null]
 >> endobj
 2821 0 obj <<
-/D [2800 0 R /XYZ 71.731 223.657 null]
+/D [2810 0 R /XYZ 281.083 332.813 null]
 >> endobj
 2822 0 obj <<
-/D [2800 0 R /XYZ 71.731 185.814 null]
+/D [2810 0 R /XYZ 252.403 297.845 null]
 >> endobj
 2823 0 obj <<
-/D [2800 0 R /XYZ 114.77 176.314 null]
+/D [2810 0 R /XYZ 118.555 290.868 null]
 >> endobj
-2824 0 obj <<
-/D [2800 0 R /XYZ 114.77 164.658 null]
+1482 0 obj <<
+/D [2810 0 R /XYZ 71.731 257.701 null]
 >> endobj
-2825 0 obj <<
-/D [2800 0 R /XYZ 114.77 153.002 null]
+294 0 obj <<
+/D [2810 0 R /XYZ 282.307 229.054 null]
 >> endobj
-2826 0 obj <<
-/D [2800 0 R /XYZ 114.77 141.345 null]
+2824 0 obj <<
+/D [2810 0 R /XYZ 71.731 226.394 null]
 >> endobj
-2827 0 obj <<
-/D [2800 0 R /XYZ 114.77 129.689 null]
+298 0 obj <<
+/D [2810 0 R /XYZ 268.211 198.668 null]
 >> endobj
-2828 0 obj <<
-/D [2800 0 R /XYZ 114.77 118.033 null]
+2825 0 obj <<
+/D [2810 0 R /XYZ 71.731 191.47 null]
 >> endobj
-2829 0 obj <<
-/D [2800 0 R /XYZ 114.77 106.376 null]
+2826 0 obj <<
+/D [2810 0 R /XYZ 71.731 168.616 null]
 >> endobj
-2799 0 obj <<
-/Font << /F33 1306 0 R /F48 2049 0 R /F27 1208 0 R /F35 1569 0 R /F61 2529 0 R /F32 1215 0 R /F23 1201 0 R /F44 2037 0 R >>
+2809 0 obj <<
+/Font << /F33 1322 0 R /F23 1217 0 R /F27 1224 0 R /F44 2069 0 R /F48 2081 0 R /F35 1589 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-2832 0 obj <<
-/Length 1578      
+2829 0 obj <<
+/Length 1687      
 /Filter /FlateDecode
 >>
 stream
-xڍWmo�6��_!C+1#R��!I�!C�e��aX����H�,z����߾;eIqR��#y�7>w<q/��R���3���z{x����	wKDz��\�N�ކ���<	��Ƌx���KC��Xx��/���;���Rā/��Mgd]W�=�/��������W?���:(�Ô�Y�U��#��5I��q�2F�5�+�$�+�l���U4]�fתM�Xr���Ro��F볝jk4�A~����[rΒ8���dW~G<S��2m�G���K��:s�������G*D:��,soF��K��S"����(�B���}������s�U1L�&JgQ�jmt���A�Z}'���pb�c&r�1�苍����9u Y�g���Ӄ��<���9;ץl�ǦtD���T��W7�>���$gAq���ݺ�v�;%�>�պ$��h,��E
-f�^��n5�hʁ{'�s��1�TD0�C�T��E�$i��.�����ٍ.�Zu�!"`\�V�4��8��q���N���a���Ͳ���6��w�R���{&��maakyd�(����q��V]�haU���Ɂ0xٚ&E�Y���(8ت��+�]qJ&eJ]t��DX�°��]
g�Q��T5�ک�� �.8��P��1���D�
�����L�4�;��z�C�����Ѥ���	�N��L��{��KB$���*DW�.�����ͅ-HϼE>
-�*
-Ęp�������("%I���\[Qu��vr�N��Ä���B0e/C���Ȩ�i"p��-_}�n�^�a�R����n��C��� �V��>�2.�V���)�C�ܲc��t��\ۏ�M;�X��&i����e-��(哴�.�W�< �gp�"@x���+r+����h�bt��[�N�(���^
-+�@i�a���11`2I`�a��nhD����X�P�k0�Y�/��T�����A��=��������K$�XKW�a+���W��\��G���x�T���躦(z@�V6��Qs��[gP����;�yρ�%�ԮC���Es-�Z�W��WO���`q@��ES�j�n��_�d���fS�q��s�7E��ϩ����o��Eio_j��f�����ܦ�y�O=�<T�1@���P�{��O���w[(��$�z�|�5�ul���n
-D68qz�Y����QFP̰2bvv}���v�\C���em�,8.,Q��(���`�
|�z�\V�VmgЍ<��c�5���`�?��A ��ƅ+�r̰	�Xd`��	�T�sWHaKf){�$�풋�n�K�oi�_,�O���;�w�p��tB9}���tU������
&9���@6\SR�-��v]>v�D��	N�H�C�����a��g[cU�F
-��F���,��񊐅�R�O�&�S֐��K��>��{Z���{�Ә���70T6>X�8m.��8ٌ�?���:1/�]_���_ζ{[�ꎶ>�0rb<������.޽��x��\�fO�+*4��#1��;
-��x���>���e<����r����8H��>�Q|���[!�endstream
+xڥX��6����-��Ί�܇^_h�^`�C����W?R[�[�׏%'�d-�����(����pLJ�I9KC��I���wna��ϰx<���E:9˓�Y���g,O�4Xβ��>]�����b�
���A����[�_lo�Vu-���׳����8LY������+;�M��b�>?caiņ��,��b�5r��E�kv����z���Q���%q��m�^�g~��^����A���
������p���u��NH��,��|q'�E]ݜ�`+�I(�O��}�����Ц��b�{B�MUz���Ӄxng\����{��8bQNR���q�_9���Z�t;��!�b��mU+���j��A:��YC2��9��m�L��B�DT:�@^M�7����)3��v��N���w�-��^B4���%Q�c�
+��J�x_�5Q�><��b��Gɦ��eY��M��6�0uA�$��g$��i�8ү�Ea��,o,7��G���%Q��9���?��b��M-�3�6��V;JF���@+��������*��Ѹ�>��V��!i�J��_���4����1���{ZБ�������0�jTl��4W�c�N�:��s�cm!�Q9�����zZ�m;�V��H��ݠdc��"/�v��\g̃ؽo�h�P��z�h�ۨj��1�F�֖O�� E;{5�a�E�}�TF<(�N�9�lg�<M�_)�@7rMj M�+�\�wh*����'��V��Exg,��^4&E�{3|*1ji	|�M�a��hW�@9u�uæ�<���0f�*U���*I���0L�{E쿽|�F�B�OuQ��S�x�b������ύ)�k|2)���9v�gE�3����mp�W"�������u���/Xs/�}���)�'qY�G{��l�T�J���'�ä�F?�E^���]���rw4Vf�+���n<6k�)U���A��(4��Ó�屉!�Й�F�M5����j�Ba���Y�b���<vEP�A,R����Ʒ�wQw�
+E�m[3Y���͂�E*S�#�K]�N	g���p���A�(&.;%5 ��(��Xߖ��J~$�V��:#���8��c�QS$(���"�QY��G������	Y�S -��S�Z���;��TT�K������,G��qK?��{�5Vx���nh��!��Ѫ�F�)�E���Z�%��V�p��;����_��CA��ưi{P�Z��$�CoC�,�ܻŵF�^N�K�`-��츥��%{�e�y`9�M?�sh���>^�N	_���o���!s_#a�;��y���Yͮf�GIp]���"�2��;!³�xM��� �<�O�p|��PCyC���>G\�uSq���Cʇo�R�}/�^�ţK��_��F���Y���`�rUH���x�aʶ^D4��É�Z�f���5����0�.(�F4����'ɳ1|�Z#�]��A�
!�hK��B
׍O�aí���Ո�����X�q~Wu���KZ��A��̴)n3L�]K;n:s�v$�qވp�|0�R���*�D��i"z�(h�r����9
+!�������
o�B��|���q��^�C~�g�(c4�~e���e�;�E����t��c��F|U�endstream
 endobj
-2831 0 obj <<
+2828 0 obj <<
 /Type /Page
-/Contents 2832 0 R
-/Resources 2830 0 R
+/Contents 2829 0 R
+/Resources 2827 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 2738 0 R
+/Parent 2745 0 R
+>> endobj
+2830 0 obj <<
+/D [2828 0 R /XYZ 71.731 729.265 null]
+>> endobj
+2831 0 obj <<
+/D [2828 0 R /XYZ 71.731 581.818 null]
+>> endobj
+302 0 obj <<
+/D [2828 0 R /XYZ 228.441 548.941 null]
+>> endobj
+2832 0 obj <<
+/D [2828 0 R /XYZ 71.731 543.756 null]
 >> endobj
 2833 0 obj <<
-/D [2831 0 R /XYZ 71.731 729.265 null]
+/D [2828 0 R /XYZ 427.619 531.009 null]
 >> endobj
 2834 0 obj <<
-/D [2831 0 R /XYZ 114.77 708.344 null]
+/D [2828 0 R /XYZ 387.295 518.057 null]
 >> endobj
 2835 0 obj <<
-/D [2831 0 R /XYZ 114.77 696.687 null]
+/D [2828 0 R /XYZ 71.731 487.074 null]
+>> endobj
+306 0 obj <<
+/D [2828 0 R /XYZ 199.549 454.296 null]
 >> endobj
 2836 0 obj <<
-/D [2831 0 R /XYZ 114.77 685.031 null]
+/D [2828 0 R /XYZ 71.731 447.098 null]
 >> endobj
 2837 0 obj <<
-/D [2831 0 R /XYZ 71.731 663.412 null]
+/D [2828 0 R /XYZ 71.731 424.244 null]
 >> endobj
 2838 0 obj <<
-/D [2831 0 R /XYZ 307.022 650.461 null]
->> endobj
-1468 0 obj <<
-/D [2831 0 R /XYZ 71.731 630.371 null]
->> endobj
-314 0 obj <<
-/D [2831 0 R /XYZ 200.472 593.156 null]
+/D [2828 0 R /XYZ 147.048 414.745 null]
 >> endobj
 2839 0 obj <<
-/D [2831 0 R /XYZ 71.731 585.803 null]
->> endobj
-1469 0 obj <<
-/D [2831 0 R /XYZ 71.731 532.02 null]
->> endobj
-318 0 obj <<
-/D [2831 0 R /XYZ 256.412 499.706 null]
+/D [2828 0 R /XYZ 147.048 403.088 null]
 >> endobj
 2840 0 obj <<
-/D [2831 0 R /XYZ 71.731 491.254 null]
+/D [2828 0 R /XYZ 71.731 381.47 null]
 >> endobj
 2841 0 obj <<
-/D [2831 0 R /XYZ 71.731 460.688 null]
+/D [2828 0 R /XYZ 71.731 358.456 null]
 >> endobj
 2842 0 obj <<
-/D [2831 0 R /XYZ 71.731 450.725 null]
+/D [2828 0 R /XYZ 147.048 346.899 null]
 >> endobj
 2843 0 obj <<
-/D [2831 0 R /XYZ 136.289 441.225 null]
+/D [2828 0 R /XYZ 147.048 335.243 null]
 >> endobj
 2844 0 obj <<
-/D [2831 0 R /XYZ 136.289 429.569 null]
+/D [2828 0 R /XYZ 71.731 313.624 null]
 >> endobj
 2845 0 obj <<
-/D [2831 0 R /XYZ 71.731 390.017 null]
+/D [2828 0 R /XYZ 361.161 300.673 null]
 >> endobj
 2846 0 obj <<
-/D [2831 0 R /XYZ 71.731 371.985 null]
+/D [2828 0 R /XYZ 71.731 285.564 null]
 >> endobj
 2847 0 obj <<
-/D [2831 0 R /XYZ 71.731 362.023 null]
+/D [2828 0 R /XYZ 71.731 270.62 null]
 >> endobj
 2848 0 obj <<
-/D [2831 0 R /XYZ 136.289 350.466 null]
+/D [2828 0 R /XYZ 76.712 221.171 null]
 >> endobj
 2849 0 obj <<
-/D [2831 0 R /XYZ 136.289 338.809 null]
->> endobj
-2850 0 obj <<
-/D [2831 0 R /XYZ 71.731 299.258 null]
->> endobj
-1470 0 obj <<
-/D [2831 0 R /XYZ 71.731 268.274 null]
+/D [2828 0 R /XYZ 118.555 177.625 null]
 >> endobj
-322 0 obj <<
-/D [2831 0 R /XYZ 219.101 232.907 null]
+1483 0 obj <<
+/D [2828 0 R /XYZ 71.731 104.11 null]
 >> endobj
-2851 0 obj <<
-/D [2831 0 R /XYZ 71.731 226.78 null]
+2827 0 obj <<
+/Font << /F33 1322 0 R /F35 1589 0 R /F48 2081 0 R /F27 1224 0 R /F61 2561 0 R /F32 1231 0 R /F23 1217 0 R /F44 2069 0 R >>
+/ProcSet [ /PDF /Text ]
 >> endobj
 2852 0 obj <<
-/D [2831 0 R /XYZ 71.731 195.945 null]
->> endobj
-2853 0 obj <<
-/D [2831 0 R /XYZ 71.731 185.983 null]
->> endobj
-2830 0 obj <<
-/Font << /F33 1306 0 R /F61 2529 0 R /F35 1569 0 R /F27 1208 0 R /F23 1201 0 R >>
-/ProcSet [ /PDF /Text ]
->> endobj
-2856 0 obj <<
-/Length 1713      
+/Length 1980      
 /Filter /FlateDecode
 >>
 stream
-xڍko�6�{~�t��Ō��:l@��m�&�Q��@۴%T]JN�
�oߑw�e;m����x<��N�#��(�,
a	r$�h^����9�D1!�ɀ�|zt�:G9˓p4]�"��<�a��8Mz�XwR�'A�{���i;QUe����f�wYUb������i�h�,��/��h�G M����(�3F���DƓ����Ǚh�W����I]Q��I�����{�A�h��G�PW�-B�4��*gk�k�Ȧ�mU�;��NJ��fy�X�'�ʮ8$uP]��1�8���tO��IL��b���wZ?���i��s$]Aw��nnϦoq#��R���5�7�]�Y�4lN���N�G���{���ZiQ�);�P9�8gI�Z�*�>"I�8!{�+s�����l��=�+�j�0�1����d�j�V:O���/.o~����ח��#�=>TΎ��L&C.,J�8rϐ�����
�wW石&Y�)Ǟ5
-X�>��G�𶰦�Td���iO�[:߸��
-�������ݔ\#�169:�r[l_h�C�d�:���Oh"=��
-�YmO_鶨L�b��&�ϲ�N�{N,
�!n�F�1��1�aֹ���\0��(��wJ?�֘(�s
-P�)T-�I��#DK"H'���cH�ϰ�<eI�Km(C����#"89��8s�M�>y?̟��d<?���pA� j؁��8��>��B8��������AKil�eh}X1�,w�܎���d�.H���C��w6�{�b���qo��c�lB�d4�!�	�L�2<�X�{�k%�+ɮ�[W���-��ʪ��J9��fu�������;W@�{w�T�R�tin���Jv�;�6�'��˨F�x`64�
">�~��Г���j�`ߘ��F[�������]����\VJ-*R0P��נ��Tߖ��`�}���M[��P"p1
-�X@2�����L ��JJ �ٷ��/�0�ۘv
'�D�CM�/n�;�*��5��|"��{q�b�k���ab��6�”� ��ul��V]sb��b~�!p���-�*�ky8' �	b�a��Ѭd�=-$�H��8��4$fv�j�*���U�ly���k���5�s�fQ�8�c�i,8Z~�9ת5�HBL�$"��M�����^��
�]�m�صFs`���l�W}񂣷�T�i����8�m��hk ��#b
-1������g�>���E<��?�P�5�����<1p���^����o����YD��H
����D��x���D�#��Je�r�\{� �w���D[ ���U�{�t7�1����1ϼn $Le��H��tR|X�ڵ%�
�@ʬ���(�I��5D�XI�L1C�f�Ĝ k�$ކؠ���y][�;��}��r����L|��|��
8��&��������XZ�έ�#��a�܆��Vtka��JE�~̧�l���[��0�-C�8���"Q����k
Q#�����P�h+Ig�¶�%
�W�
-LG҃�-bעmm���'b��V54Y@����b?����hL�l���{�l�$��Rbx�TU�E��z����b��Rj��caPU�΋Ϫ��a�|۠������Ӝ��~�o�����d �U�C���vH���ʧ�}�͏|wMճ�hA?�D�x�şR�$����8&� �ܯ#�/�n�endstream
+xڭۮ��}�"��)��/�av��n��L�E�([���-�R�L�a�}I�r����Y�Qś(�r�	�n�P�1Q)�,��ë`s��?�
+��gE�����moJQf�f�$a!�|�Ǒ(�h�o���i���y�Gi�E��Fm����Ϳ;��t}_m����?��i����U/Gs�Xo�D�I��9�B�Ii5�D&bT(/���8��ܣ�3��l�(a��=��֏��3�D ��6L��f���/�6W3/�m5����Au��F��߆�D���F��	����%U�ro��ۆ�(n��8�6�34��.���!…�V繖z�8k������#Q���q�Q���F)Hv�Y�a��F�L���ihz����m�@pG�!���3�sr�6�d��Vc�ӌ��5�F1�:҈���N8N7�r���N9YH�q�t�;"�B ,��C!�4�DO֎,�֘����X�{�����w;=�;0��Ka�Y���	�e�Ur�����󑠯�����!�h��
+�3+��#OE�7���b�� ��'�3[�F�[:<D(֞��N�X����1>��
n#�uK�ߨ�؝�3k�7�~��C
?�qתA�J�C���P}dA�|C�c�6wk����M���8l�M8Q�QB@�6
 �<�����)f�*�n��$k��a�Y �.n�}pDq&� ���ɺqwp�k�X�eq
���������i�<C��μ���?�R?��G�D�H]���%���l��RO���R��$M�*�<�"v�Q��*)7�0.ٌ��D
�ɢ+MȊ���Y)Cȳ��6��d�jHIS���+����q$�	]ӻS�* �ĝ";�'m��B@�1�'L�^�� ao1��6�Y�y$��(������k����\5�lx"_P;��y���.��U�9��tN8�|5u��˭5C�S7a�e���/��r��e�O����B�!9XR
+�F�M�@:��T�Z����QI����&�B��K���.Ҡ'Yw����I+g��L�w
�
+-."�5����w"�Ӏ����-��c��AB���
+�W��)s�VA���Q�:�������yK\��;|H`�$/-�O[8��r���#j~Y䳫2t��,�N��~|A-?}�[ޫ�����qam����J-Ե%뗄����NJ5�{~�9U��k�ʈ!�M9F�%�*�C����a�z�jt�=�[S`|9�F�KяO����mC�mm��P�,�H�iy��a���˔���r�M�#6������ő���
+!��L���]P�S�0�kaٲ�G��8��eri-Z=��RA�i
+�Ά�}�����Cj%r6EP�M�@��]~8����E����E$6�C/k\�j��n���Ա#
>(i{|��j�8���1e���т��Q���;�������w��P���<��G��o��cB#�^�~�g����ta_���Ȫ�J}K�{����3ڽ|F�u'�(������jL������?La��8���֡Y0����z�k&��f�	��A��tw�}`��|�e���|�����H�4���m$i;���%\��ohT{;�܈��큂0S�^�~��-����]����O��^U0��kD�w��9�Y���q!�����H{�F
��J�gl*	��Yd������ņ.����'�;e$?g�纶��^�����Pƌ#�J#DI!�I�Fmߕ�	2��p��Jj�4�`����#6��зbl�" ;�k�+���嗿%�7O3t#���T��[-��Y��%j�����ka^�+��a� L�� ��#I*mσC=éW�@D2�`e�R�`'����zV��ƕ���������<�m��~ xu�͙#o�˪�,�K�]��x��?��g��|xT��g�+��W�4�A���6�/}ʻ�3�qU�endstream
 endobj
-2855 0 obj <<
+2851 0 obj <<
 /Type /Page
-/Contents 2856 0 R
-/Resources 2854 0 R
+/Contents 2852 0 R
+/Resources 2850 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 2738 0 R
+/Parent 2745 0 R
+>> endobj
+2853 0 obj <<
+/D [2851 0 R /XYZ 71.731 729.265 null]
+>> endobj
+310 0 obj <<
+/D [2851 0 R /XYZ 138.296 708.149 null]
+>> endobj
+2854 0 obj <<
+/D [2851 0 R /XYZ 71.731 700.797 null]
+>> endobj
+2855 0 obj <<
+/D [2851 0 R /XYZ 71.731 662.954 null]
+>> endobj
+2856 0 obj <<
+/D [2851 0 R /XYZ 114.77 653.454 null]
 >> endobj
 2857 0 obj <<
-/D [2855 0 R /XYZ 71.731 729.265 null]
+/D [2851 0 R /XYZ 114.77 641.798 null]
 >> endobj
 2858 0 obj <<
-/D [2855 0 R /XYZ 71.731 552.229 null]
+/D [2851 0 R /XYZ 114.77 630.142 null]
 >> endobj
 2859 0 obj <<
-/D [2855 0 R /XYZ 389.403 539.278 null]
+/D [2851 0 R /XYZ 114.77 618.486 null]
 >> endobj
 2860 0 obj <<
-/D [2855 0 R /XYZ 410.125 539.278 null]
+/D [2851 0 R /XYZ 114.77 606.829 null]
 >> endobj
 2861 0 obj <<
-/D [2855 0 R /XYZ 430.846 539.278 null]
+/D [2851 0 R /XYZ 114.77 595.173 null]
 >> endobj
 2862 0 obj <<
-/D [2855 0 R /XYZ 494.944 539.278 null]
+/D [2851 0 R /XYZ 114.77 583.517 null]
 >> endobj
 2863 0 obj <<
-/D [2855 0 R /XYZ 71.731 493.285 null]
+/D [2851 0 R /XYZ 114.77 571.86 null]
 >> endobj
 2864 0 obj <<
-/D [2855 0 R /XYZ 71.731 475.353 null]
+/D [2851 0 R /XYZ 114.77 560.204 null]
 >> endobj
 2865 0 obj <<
-/D [2855 0 R /XYZ 71.731 465.39 null]
+/D [2851 0 R /XYZ 114.77 548.548 null]
 >> endobj
 2866 0 obj <<
-/D [2855 0 R /XYZ 136.289 455.89 null]
+/D [2851 0 R /XYZ 71.731 526.929 null]
 >> endobj
 2867 0 obj <<
-/D [2855 0 R /XYZ 136.289 444.234 null]
+/D [2851 0 R /XYZ 307.836 513.977 null]
+>> endobj
+1484 0 obj <<
+/D [2851 0 R /XYZ 71.731 495.945 null]
+>> endobj
+314 0 obj <<
+/D [2851 0 R /XYZ 200.472 456.672 null]
 >> endobj
 2868 0 obj <<
-/D [2855 0 R /XYZ 71.731 404.682 null]
+/D [2851 0 R /XYZ 71.731 449.32 null]
 >> endobj
 2869 0 obj <<
-/D [2855 0 R /XYZ 71.731 373.699 null]
+/D [2851 0 R /XYZ 380.576 436.548 null]
 >> endobj
 2870 0 obj <<
-/D [2855 0 R /XYZ 71.731 363.736 null]
+/D [2851 0 R /XYZ 171.904 423.596 null]
 >> endobj
 2871 0 obj <<
-/D [2855 0 R /XYZ 136.289 352.179 null]
+/D [2851 0 R /XYZ 171.904 423.596 null]
+>> endobj
+1485 0 obj <<
+/D [2851 0 R /XYZ 71.731 416.458 null]
+>> endobj
+318 0 obj <<
+/D [2851 0 R /XYZ 197.861 379.243 null]
 >> endobj
 2872 0 obj <<
-/D [2855 0 R /XYZ 136.289 340.523 null]
+/D [2851 0 R /XYZ 71.731 371.89 null]
+>> endobj
+1486 0 obj <<
+/D [2851 0 R /XYZ 71.731 331.059 null]
+>> endobj
+322 0 obj <<
+/D [2851 0 R /XYZ 284.184 298.745 null]
 >> endobj
 2873 0 obj <<
-/D [2855 0 R /XYZ 71.731 300.971 null]
+/D [2851 0 R /XYZ 71.731 290.107 null]
 >> endobj
 2874 0 obj <<
-/D [2855 0 R /XYZ 71.731 229.076 null]
+/D [2851 0 R /XYZ 481.532 279.816 null]
 >> endobj
 2875 0 obj <<
-/D [2855 0 R /XYZ 71.731 219.113 null]
+/D [2851 0 R /XYZ 71.731 246.775 null]
 >> endobj
 2876 0 obj <<
-/D [2855 0 R /XYZ 136.289 209.614 null]
+/D [2851 0 R /XYZ 71.731 209.978 null]
 >> endobj
 2877 0 obj <<
-/D [2855 0 R /XYZ 136.289 197.958 null]
+/D [2851 0 R /XYZ 71.731 195.034 null]
 >> endobj
 2878 0 obj <<
-/D [2855 0 R /XYZ 71.731 158.406 null]
->> endobj
-2879 0 obj <<
-/D [2855 0 R /XYZ 71.731 133.335 null]
->> endobj
-2880 0 obj <<
-/D [2855 0 R /XYZ 125.529 123.836 null]
->> endobj
-2881 0 obj <<
-/D [2855 0 R /XYZ 125.529 112.179 null]
->> endobj
-2882 0 obj <<
-/D [2855 0 R /XYZ 125.529 100.523 null]
+/D [2851 0 R /XYZ 76.712 143.527 null]
 >> endobj
-2854 0 obj <<
-/Font << /F33 1306 0 R /F35 1569 0 R /F27 1208 0 R /F61 2529 0 R >>
+2850 0 obj <<
+/Font << /F33 1322 0 R /F23 1217 0 R /F27 1224 0 R /F35 1589 0 R /F61 2561 0 R /F32 1231 0 R /F44 2069 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-2885 0 obj <<
-/Length 2170      
+2881 0 obj <<
+/Length 2133      
 /Filter /FlateDecode
 >>
 stream
-xڝk��6���
-����hm��=�hӴw)�$�,�84��ckf�ؖ��d1��G����h>�YQ_�H�r��zY(2	CT�(M�������.d�5��4/��~��+D�J�i��a.���d$�$��_����0�q�������{3�m��;��<��hڶ\�����O��Df����r4W���֤)F�H��˂\�8��5d�j��9N��/K���V�A�́�C�&�e�����h�Qz-���?�����
��2F�c0�r�DV䰁@	��T$�,�������0�?�r�����(aD^�
-�Wi��s�Ӿ1����JՌ��Q4�T�<L6j=1����p�k{иH�TՔ-M�Ն�j��
-&�*}�U���������䎐΂i��<X�ТAx�
-����?)
-���Z���[�����,-�]��0�[_�j��1�V^?L���9qIp�7M�H�Ҽ����+�眵���㬟]��k�a�tB�@�S��7��$�9T{�5N������O�h�?���=!��@���C[lC#.��֌�V�ȱP�H�N��8�zz�Q�8Ar����&�
e����s���~�C�V�c�G��Y��m7��~U����Pʷ�ie��C�p��i6�`�YE�������š����$����FM��w�l4�E2��A_o���v6W��E
-�X!��ij"_���}�;�
-�L��D7�8NEX�EmQ��;�%
mc,"����!i�YW�M���Jk%���� s4`�:�Vz�88��	�-!�c�o{�$��Q����N�,+����C}��?���g�I��!~烋Z�W�rq��L�岜�9�j�	v�y��|6c*�c��?Pt�]�:�b��u�8�2`B��S�@���.�u�Y�N5i�,k$��#��e�ͨ�I��s>ض�|�U�L���Ͽ�Ua&8��d8�m�$k���`	W�X�4ꁽpqD�"{�F�J/�o��W���`��N���۷u��ƕ��O�lV��~u˦mg���<��3�%��~�;K�Iw���2{jv ��ځT�1�ѓz$J�~fJ�r(���1�L�.��2��G<���'���.U�{C�#JثQ�v%��}��F.���&�4��E�ڣ����4������N��xneY׳yݼdk�{ٱ�‹p���@J�i�����a$M�m{p�F8�rC�
-��jX��+��A��:1�����dv?(u�*��'���o��
-3����Ϭuv^���f;G��x���xJ�d1����������[��Д�����|��1<�dVxp������p��Y�Ks��K2���D��5��E�ʹ�?�e
-�䞌!�r�
~��-G�l\e4�v	�9B���r����߸z������z�`\ ���F�Q��J9����
-,
-���Bc����� #���C;ٮ)���庈ƕ�2U��q���IR*�
-�M�d�}�CH��$�PC<��9\��
.u�s�&���#�?7�]��iK�E�Ì_�~gΩ���[n4���[��o=`��5���z�7���{���55����
-��z���[��_�n83h�R0����T[�	�q��4�}$s��so��M�|��~s&������,�M+k�ػ�HN�bD�S#C��Ԑ��m�j�a��7�kNj��qK�ϝ���J{�E�H��/�f� "�,�v)7� �8@;z(�T/�P$���zG�E���P=��H�m&�������u9ִ���
�F�{B����7
-�ݍia?�,{�j_����e�.*��̽�J�i���oyGV�G�W��vDK��qH<.>Ɯ>�`cc�,=~cY
�=i!Y�}���|k�RA%l��c(㿟#���!�ն���{���a������M��Ql^�/	��b`�!���<����/&0Ǿ2�D���\'���1��
-c��
��iRBbKn��m���i����{��F��igtn����7N�_s�jH���8�u�(r�x2���������lX�m����"�/���t����dLϡ�)�jk����2��zW]���U�?��z"����D�"'����Ͼ�^k�?l�endstream
+xڵk�����
+(P�]sEQ��Դ�&��K��"�Z�-���J�y�"�=3��-ۻ��+
+��p8�<8/J�d�I�)�Bĩ��.
+���;�K&Y�h�z�{x�TP�"U��&Hd.�,�T,r���?Wf��X�:
+cA�7��L��ݖ�_������,~z��'�Ze��՛r%q"���2��H��~��5�~��?�!ur���(
+6��}���QQ�Ls'�3h/����R	�%pR��(�'3�*��PI�vR�J�AZ���`h�.�(4C�F3<�K�����
K�e��HE�r��/�b��(��{�������-��m�n�I?I�*;jD�Əui'�����"���P���;��E1r
GF��q�8�8?.b8v�����lK+f��]=�a!a���7�:^��"�)�9�t�G��h�#�tƒ���IL�f<����/�����,��~�����1��;޴!�Y��s��xI57-�l|	�l��t|A�֔U���Y�o�CU��̞&f`BC؇�xF�G
+f.���
w&T������Cm')��'�st��4%��� e�ivf�D�#!cM�UY4c��Go7���K��]��L�f�$�ʖO�u���5�<R-4�$�v=�[�8K0����H�RD`����i \6�����%ɔd����kG��'��Gwf����������O���n=
+�}��ч��2�����s�]uCJ�"yJ�(���y�2�A>�X��z�إ�&!IF�%���&p��27C�^�r\�UTh
�/�+�D���oͬ{}��-'�w�䚽�HJ�7�3ɛ̯�A��'�0��m�����3�����Τ��™�n�
G2��. w֝�V~�Y�H���[��Q���Sӽ�@�4�8��.�:V"������J�{�Ɛuw�����>��Ƕ�|�6�\�0�(g�<�`�V�����]��~���b��3�1�3�H��k�]�䦊#r�C�T�P�g�,��4��X�q_B}7����!�	%�02�j豺F�J"Ύ�UF<MB�#[���>�r[��,�"��<XGM��B2C�;���z������Ab��T���S�G�+��lc�	<W����I�P��%��ݙ鞈�o�f���E��su���OE���!���T���Z+A@0>	�W�� t�x�~������0����{j�jw$O�'��5Y����NpTo�mx�S7vM���b����C�
+5u[;��m��w:*��J`�C|�S���c����j'C�8<�k�uR�����eQc���E6p�����:H�҉�r����C'�@5�iq�Ha�ֳN���ub�{�q���ٻm�F���6uMpՏ�y�Z6|=ƅ?��P�
[V��a����E�̋��r�9��x-�f9�M�~t�K�� �$��Cߵ����s��h�}��t����,�\��غ�gRnT�F9�Y��L�"Ke�vX$�ڀ�-��]P�)U��a�=�/U�e�S��z)�Ol#�"���pdk�Mnd�FQ�����rs\,��&AwC�߄��[Llh�4CV�Õvdi��3F��@k��^��1��}F��Pk����I���&a�SW����TUM�X|��C#��
+��@̦o�����r��}�B�i�l�	�߼Nb�V�?�y�@�����X�,�
���-�{��<��D`|P���e�7�[Z*�F�����X$q>�&Q0i_[�6=>�����DD�{��e�$4[��Ad�0B���x<��y�h\��H�v0��a�X,.[��<�O��㴓�M�
B�峗L���I	��j��W�?���g�*a'N�}�z��҇ݖ5�7�s��C���I*�6
k&~�7�j(X�δ�,���Is_�����l5��|�����C��n?���Q/�<_�]g�����Z��6���H�B�Hz�|��i�m�Գ3�����}cB�l�_�"*$���@�oW�#�1Jb���e��g4�ӧ1��t� �ce�q,��VM�������1���ٻ�D˩e$�0s2�����5�u��*�k}#�-�t��mV
C7Y���ˉ�zmM�\$�U�|ӝMMN.r����Lr�
\�𲉧C|����]���/���endstream
 endobj
-2884 0 obj <<
+2880 0 obj <<
 /Type /Page
-/Contents 2885 0 R
-/Resources 2883 0 R
+/Contents 2881 0 R
+/Resources 2879 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 2903 0 R
-/Annots [ 2899 0 R ]
+/Parent 2900 0 R
+/Annots [ 2887 0 R ]
 >> endobj
-2899 0 obj <<
+2887 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [288.837 216.479 341.583 225.39]
+/Rect [291.637 553.435 343.62 562.346]
 /Subtype /Link
 /A << /S /GoTo /D (install-perlmodules-nonroot) >>
 >> endobj
-2886 0 obj <<
-/D [2884 0 R /XYZ 71.731 729.265 null]
+2882 0 obj <<
+/D [2880 0 R /XYZ 71.731 729.265 null]
 >> endobj
-2887 0 obj <<
-/D [2884 0 R /XYZ 125.529 708.344 null]
+2883 0 obj <<
+/D [2880 0 R /XYZ 118.555 684.724 null]
 >> endobj
-2888 0 obj <<
-/D [2884 0 R /XYZ 125.529 696.687 null]
+1487 0 obj <<
+/D [2880 0 R /XYZ 71.731 621.171 null]
 >> endobj
-2889 0 obj <<
-/D [2884 0 R /XYZ 125.529 685.031 null]
+326 0 obj <<
+/D [2880 0 R /XYZ 166.615 588.668 null]
 >> endobj
-1471 0 obj <<
-/D [2884 0 R /XYZ 71.731 653.45 null]
+2884 0 obj <<
+/D [2880 0 R /XYZ 71.731 578.303 null]
 >> endobj
-326 0 obj <<
-/D [2884 0 R /XYZ 197.861 614.077 null]
+2885 0 obj <<
+/D [2880 0 R /XYZ 131.133 568.543 null]
 >> endobj
-2890 0 obj <<
-/D [2884 0 R /XYZ 71.731 606.725 null]
+2886 0 obj <<
+/D [2880 0 R /XYZ 247.791 568.543 null]
 >> endobj
-1472 0 obj <<
-/D [2884 0 R /XYZ 71.731 565.893 null]
+2888 0 obj <<
+/D [2880 0 R /XYZ 407.915 555.592 null]
 >> endobj
-330 0 obj <<
-/D [2884 0 R /XYZ 284.184 533.579 null]
+2889 0 obj <<
+/D [2880 0 R /XYZ 71.731 553.435 null]
+>> endobj
+2890 0 obj <<
+/D [2880 0 R /XYZ 118.555 514.871 null]
 >> endobj
 2891 0 obj <<
-/D [2884 0 R /XYZ 71.731 524.942 null]
+/D [2880 0 R /XYZ 174.165 506.407 null]
 >> endobj
 2892 0 obj <<
-/D [2884 0 R /XYZ 481.532 514.65 null]
+/D [2880 0 R /XYZ 173.711 494.75 null]
+>> endobj
+1488 0 obj <<
+/D [2880 0 R /XYZ 71.731 459.588 null]
+>> endobj
+330 0 obj <<
+/D [2880 0 R /XYZ 259.473 430.941 null]
 >> endobj
 2893 0 obj <<
-/D [2884 0 R /XYZ 71.731 481.609 null]
+/D [2880 0 R /XYZ 71.731 422.304 null]
 >> endobj
 2894 0 obj <<
-/D [2884 0 R /XYZ 71.731 444.812 null]
+/D [2880 0 R /XYZ 71.731 399.061 null]
 >> endobj
 2895 0 obj <<
-/D [2884 0 R /XYZ 71.731 429.868 null]
+/D [2880 0 R /XYZ 172.595 399.061 null]
 >> endobj
 2896 0 obj <<
-/D [2884 0 R /XYZ 76.712 378.361 null]
+/D [2880 0 R /XYZ 271.727 399.061 null]
 >> endobj
 2897 0 obj <<
-/D [2884 0 R /XYZ 118.555 334.816 null]
->> endobj
-1473 0 obj <<
-/D [2884 0 R /XYZ 71.731 271.264 null]
->> endobj
-334 0 obj <<
-/D [2884 0 R /XYZ 166.615 238.76 null]
+/D [2880 0 R /XYZ 337.883 386.109 null]
 >> endobj
 2898 0 obj <<
-/D [2884 0 R /XYZ 71.731 228.395 null]
->> endobj
-2900 0 obj <<
-/D [2884 0 R /XYZ 71.731 198.546 null]
->> endobj
-2901 0 obj <<
-/D [2884 0 R /XYZ 71.731 188.583 null]
+/D [2880 0 R /XYZ 71.731 373.158 null]
 >> endobj
-2902 0 obj <<
-/D [2884 0 R /XYZ 105.494 132.857 null]
+2899 0 obj <<
+/D [2880 0 R /XYZ 71.731 361.038 null]
 >> endobj
-2883 0 obj <<
-/Font << /F33 1306 0 R /F61 2529 0 R /F35 1569 0 R /F23 1201 0 R /F27 1208 0 R /F32 1215 0 R /F44 2037 0 R >>
+2879 0 obj <<
+/Font << /F33 1322 0 R /F23 1217 0 R /F44 2069 0 R /F27 1224 0 R /F32 1231 0 R /F35 1589 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-2906 0 obj <<
-/Length 1041      
+2903 0 obj <<
+/Length 2388      
 /Filter /FlateDecode
 >>
 stream
-xڝVK��6��W�V	��|��xl�$Mm��!́�h[1-������wȡ_�d�a�3��7�%~,��\^ʤ9,h��'�,J�Q$��y�Z<�"QD�"Ym���DUI%8�%OV����N'3f9�4�������]�E�ռ��Y��ϫ�7��S)*�j�b\'���xu	���(���;Ӄ��J��/��� '~Q����/�D��i��L�-J_;*%�JO�mF�'��ig���Xe|0B��Zvh�m�~�m�c���`Q�J�5K4�Mx>�x���.N����:=m�����I���[G�z��s裁��y蜃�-}�IΡ�b0NT,��L�k����i��Y�0�����	��1�|�]a�zdn���L���L����Q��W�K$�P���X3���]�Z��}����
-hS�n�'����
-4�6���z��DVER�Ч\�V�w��3MZ�����Dž.`�D�Ft�h���şgK� ��/�@�(wg"?E�K%H��e�D�
-�
-Q��Y'e�H
��le�{����`��0笆�@abYIJQ�U�P�c������]U-Z����.~T�kw&��(��Am¸��C��Mx�i�࿌�4�?����98�<v�.�9�)�nj�Ԭ�p~ۉ���[/1�12%���MP���A��i�s96�%�|YH)��l��<���!c2}t�i��M�G�$��:B����J�mw]k~nsIm���F��$;��mq�d=#(�%��=q�^!�}�`��h��z�>"uDLq
��iG?q���t�ߟ���]�f�������*"p�wE�?6x6Y�|��?ƃ�C��휴�s�A�v��'���t��"��%C����-D��pY5��Κ��h�B�>c��� b�C7��Nuh=����'#�x��)
-\���s���5�^�Yb�:'�D:�,��EE���z����:���VN���On�BP���
-r?����ڂ�'NJ�^��*jR��Z��,�$J��	����������Fp�endstream
+xڭ�n�6��|��'H��,k�N�v�v��(mQ�mq�,��RS��wn����S����I'���U�DE
+UFj����xu���J�"�l"�+�oL>�i��t�����맗�U�Rq�����~�%N#�nV����o}L�����:����>��z�����o�ß�}L֭~�����8)"���8	T�L�$Z��%4��u�ı:����O�*�r�
+�D9
+l��tm=~պ����gvg�V��,0������=O�t���䟘BW��>p������&x�������hm���lw�i�(̡z�|�y񈉊�<�#���@�f	HJ�Z{w��3�#��c��c���<3I�xF�Z�vh��&b���F٩qc[�L?v����m�b�/�<���e���G9��ԻSo�`ZS�a1J�T�"���m�jy<�|R�*�m��Q�n�f�����ů��7��QQV&����;�R�EJ)�����S�bj3�⽒��b)'��b%Qaȗ��]ִ��u݃[��]�����&F�N��v�
+���/%`��F�%D$�1�������|,0�,:Cq���	{B$}V�59"[[_�Z�W���%xN@�*�IFr�}����3}�A�I>��3���֑��I��`����GJ�g}A+HtZ;���}�U�����1�M�;����I����{vc�P7n4~��PFҔ�=rF�Jʒ���xj�c잿�CR.�=⿎�?3�	�yN�i�ڂ>7��L�ݖ�;����o//ooo�޹�rǗ�^�����������A�01)C-�,׿(�oJp��ӥE����~���q�2�������7�̡?^~G�������8�C>��j8�n<�;��%Y���G����=�$��_�j��/��ƀˋ��]� ��0��%"�����܁aCuJ��5$DTJJ��_�oL7�gڥ6{Ը�᎞�"������=-�e;�nÑ�t���h���d�y�1��(Y����UX�k�z��8p�������JL8����)��]G5�s;�f<��aq�t]o�-��L�?��j��I&�B�(��bcF��'&
+\���p�Fxuv��e�(����?q���"4��HG�[���[�T�F�sju�[o�2�L,�gn���#*�eɷOM��H����,_{.'��i��H���GSK;��6�����\~�h#���iE��A^?���A�HZ��sq�e���9����BE�v�����n��d�����=��h�a��~��N��ڴ�$����c��;I��6���t��^�$srN�d�#]z��_2��c�B�k��V���t��C�|bs:M��;\�2�÷m#�K��$��C��j�ם�E	g�v���� @
�J��p��~|}���g���
+�pJ�hx��������Lr��j�_)��kj�qԥ��5��B���=^kd�3‹*bX��Y9��6����/Ҿx������ɒ�,CS�A�����P�=@7h|�m!k���C�g�Y�͒-`�s��[��t��C
-�L��`�)�p<*���" }���Z�� �"���pfw7���o�*����r��ܤgk=c�� �0����<z������69�b�5��0�]DT˓t-�)Ȯ�����W�5;L�V�x�Ͽ`
+?�N�n�w.�
+�p@?�֛��0��[j��l]���C%%�y�4�8h���hC��a���~ �K�����@���h&Ќ��"AB��*�$�Mxn!�m����Ѐ<m�uFe��ew\r�r;S;���
������uk��D��
+�G��љ�n�iCh�"z��Cj�n�b�>e�z���:���!uJ�
+�������M�9?��dMy� ����2(%����w�K��d?z�w韅�����d��D��_��tmN߲8��Ҙr~ ��\��Z�������D��m�������0L��Ɗ?�t]������>��N��2��Z�c�!�0���ʷ�V�
�r��Ah���JQK�	J�a�`��6��y�O�C���K�>�RP���X��,^�Y}:�,ao��1����qk�`����S@<Y��<#����_׶�ʓ��l�/W/��'RA�
+�v,�=2����CR:�����Qo#���{ �P�n��$7u���hy�!�O�mE���Z�`ĄI��1XAo&��E��THEΦ)6�;q�!� ��Ō=���`��/B%
S��=���5_�6r���&,����vVt�6��݋�����N��?�xM84�V��6����,�3	u�S7��m�UGY�%����F᧛��K�endstream
 endobj
-2905 0 obj <<
+2902 0 obj <<
 /Type /Page
-/Contents 2906 0 R
-/Resources 2904 0 R
+/Contents 2903 0 R
+/Resources 2901 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 2903 0 R
+/Parent 2900 0 R
+>> endobj
+2904 0 obj <<
+/D [2902 0 R /XYZ 71.731 729.265 null]
+>> endobj
+1489 0 obj <<
+/D [2902 0 R /XYZ 71.731 718.306 null]
+>> endobj
+334 0 obj <<
+/D [2902 0 R /XYZ 402.325 703.236 null]
+>> endobj
+1490 0 obj <<
+/D [2902 0 R /XYZ 71.731 692.184 null]
+>> endobj
+338 0 obj <<
+/D [2902 0 R /XYZ 288.867 651.159 null]
+>> endobj
+2905 0 obj <<
+/D [2902 0 R /XYZ 71.731 638.721 null]
+>> endobj
+2906 0 obj <<
+/D [2902 0 R /XYZ 71.731 601.54 null]
 >> endobj
 2907 0 obj <<
-/D [2905 0 R /XYZ 71.731 729.265 null]
+/D [2902 0 R /XYZ 71.731 601.54 null]
 >> endobj
 2908 0 obj <<
-/D [2905 0 R /XYZ 71.731 718.306 null]
+/D [2902 0 R /XYZ 71.731 586.596 null]
 >> endobj
 2909 0 obj <<
-/D [2905 0 R /XYZ 131.133 708.344 null]
+/D [2902 0 R /XYZ 71.731 575.702 null]
 >> endobj
 2910 0 obj <<
-/D [2905 0 R /XYZ 247.791 708.344 null]
+/D [2902 0 R /XYZ 91.656 557.869 null]
 >> endobj
 2911 0 obj <<
-/D [2905 0 R /XYZ 431.073 695.392 null]
+/D [2902 0 R /XYZ 71.731 532.798 null]
 >> endobj
 2912 0 obj <<
-/D [2905 0 R /XYZ 71.731 680.284 null]
+/D [2902 0 R /XYZ 71.731 521.904 null]
 >> endobj
 2913 0 obj <<
-/D [2905 0 R /XYZ 118.555 641.72 null]
+/D [2902 0 R /XYZ 91.656 504.071 null]
 >> endobj
 2914 0 obj <<
-/D [2905 0 R /XYZ 189.395 633.256 null]
+/D [2902 0 R /XYZ 71.731 496.933 null]
 >> endobj
 2915 0 obj <<
-/D [2905 0 R /XYZ 194.423 621.599 null]
+/D [2902 0 R /XYZ 263.545 486.138 null]
 >> endobj
-2904 0 obj <<
-/Font << /F33 1306 0 R /F27 1208 0 R /F32 1215 0 R /F35 1569 0 R /F23 1201 0 R /F44 2037 0 R >>
-/ProcSet [ /PDF /Text ]
+2916 0 obj <<
+/D [2902 0 R /XYZ 500.364 486.138 null]
 >> endobj
-2918 0 obj <<
-/Length 2388      
-/Filter /FlateDecode
->>
-stream
-xڭ�n�6��|��'H��,k�N�v�v��(mQ�mq�,��RS��wn����S����I'���U�DE
-UFj����xu���J�"�l"�+�oL>�i��t�����맗�U�Rq�����~�%N#�nV����o}L�����:����>��z�����o�ß�}L֭~�����8)"���8	T�L�$Z��%4��u�ı:����O�*�r�
-�D9
-l��tm=~պ����gvg�V��,0������=O�t���䟘BW��>p������&x�������hm���lw�i�(̡z�|�y񈉊�<�#���@�f	HJ�Z{w��3�#��c��c���<3I�xF�Z�vh��&b���F٩qc[�L?v����m�b�/�<���e���G9��ԻSo�`ZS�a1J�T�"���m�jy<�|R�*�m��Q�n�f�����ů��7��QQV&����;�R�EJ)�����S�bj3�⽒��b)'��b%Qaȗ��]ִ��u݃[��]�����&F�N��v�
-���/%`��F�%D$�1�������|,0�,:Cq���	{B$}V�59"[[_�Z�W���%xN@�*�IFr�}����3}�A�I>��3���֑��I��`����GJ�g}A+HtZ;���}�U�����1�M�;����I����{vc�P7n4~��PFҔ�=rF�Jʒ���xj�c잿�CR.�=⿎�?3�	�yN�i�ڂ>7��L�ݖ�;����o//ooo�޹�rǗ�^�����������A�01)C-�,׿(�oJp��ӥE����~���q�2�������7�̡?^~G�������8�C>��j8�n<�;��%Y���G����=�$��_�j��/��ƀˋ��]� ��0��%"�����܁aCuJ��5$DTJJ��_�oL7�gڥ6{Ը�᎞�"������=-�e;�nÑ�t���h���d�y�1��(Y����UX�k�z��8p�������JL8����)��]G5�s;�f<��aq�t]o�-��L�?��j��I&�B�(��bcF��'&
-\���p�Fxuv��e�(����?q���"4��HG�[���[�T�F�sju�[o�2�L,�gn���#*�eɷOM��H����,_{.'��i��H���GSK;��6�����\~�h#���iE��A^?���A�HZ��sq�e���9����BE�v�����n��d�����=��h�a��~��N��ڴ�$����c��;I��6���t��^�$srN�d�#]z��_2��c�B�k��V���t��C�|bs:M��;\�2�÷m#�K��$��C��j�ם�E	g�v���� @
�J��p��~|}���g���
-�pJ�hx��������Lr��j�_)��kj�qԥ��5��B���=^kd�3‹*bX��Y9��6����/Ҿx������ɒ�,CS�A�����P�=@7h|�m!k���C�g�Y�͒-`�s��[��t��C
-�L��`�)�p<*���" }���Z�� �"���pfw7���o�*����r��ܤgk=c�� �0����<z������69�b�5��0�]DT˓t-�)Ȯ�����W�5;L�V�x�Ͽ`
-?�N�n�w.�
-�p@?�֛��0��[j��l]���C%%�y�4�8h���hC��a���~ �K�����@���h&Ќ��"AB��*�$�Mxn!�m����Ѐ<m�uFe��ew\r�r;S;���
������uk��D��
-�G��љ�n�iCh�"z��Cj�n�b�>e�z���:���!uJ�
-�������M�9?��dMy� ����2(%����w�K��d?z�w韅�����d��D��_��tmN߲8��Ҙr~ ��\��Z�������D��m�������0L��Ɗ?�t]������>��N��2��Z�c�!�0���ʷ�V�
�r��Ah���JQK�	J�a�`��6��y�O�C���K�>�RP���X��,^�Y}:�,ao��1����qk�`����S@<Y��<#����_׶�ʓ��l�/W/��'RA�
-�v,�=2����CR:�����Qo#���{ �P�n��$7u���hy�!�O�mE���Z�`ĄI��1XAo&��E��THEΦ)6�;q�!� ��Ō=���`��/B%
S��=���5_�6r���&,����vVt�6��݋�����N��?�xM84�V��6����,�3	u�S7��m�UGY���F����n�w�?�}endstream
-endobj
 2917 0 obj <<
-/Type /Page
-/Contents 2918 0 R
-/Resources 2916 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 2903 0 R
->> endobj
-2919 0 obj <<
-/D [2917 0 R /XYZ 71.731 729.265 null]
->> endobj
-1474 0 obj <<
-/D [2917 0 R /XYZ 71.731 718.306 null]
->> endobj
-338 0 obj <<
-/D [2917 0 R /XYZ 402.325 703.236 null]
+/D [2902 0 R /XYZ 101.898 473.187 null]
 >> endobj
-1475 0 obj <<
-/D [2917 0 R /XYZ 71.731 692.184 null]
+2918 0 obj <<
+/D [2902 0 R /XYZ 71.731 445.291 null]
 >> endobj
-342 0 obj <<
-/D [2917 0 R /XYZ 288.867 651.159 null]
+2919 0 obj <<
+/D [2902 0 R /XYZ 71.731 430.183 null]
 >> endobj
 2920 0 obj <<
-/D [2917 0 R /XYZ 71.731 638.721 null]
+/D [2902 0 R /XYZ 91.656 414.407 null]
 >> endobj
 2921 0 obj <<
-/D [2917 0 R /XYZ 71.731 601.54 null]
+/D [2902 0 R /XYZ 71.731 402.288 null]
 >> endobj
 2922 0 obj <<
-/D [2917 0 R /XYZ 71.731 601.54 null]
+/D [2902 0 R /XYZ 71.731 389.336 null]
 >> endobj
 2923 0 obj <<
-/D [2917 0 R /XYZ 71.731 586.596 null]
+/D [2902 0 R /XYZ 91.656 373.56 null]
 >> endobj
 2924 0 obj <<
-/D [2917 0 R /XYZ 71.731 575.702 null]
+/D [2902 0 R /XYZ 250.874 360.609 null]
 >> endobj
 2925 0 obj <<
-/D [2917 0 R /XYZ 91.656 557.869 null]
+/D [2902 0 R /XYZ 71.731 322.587 null]
 >> endobj
 2926 0 obj <<
-/D [2917 0 R /XYZ 71.731 532.798 null]
+/D [2902 0 R /XYZ 71.731 309.635 null]
 >> endobj
 2927 0 obj <<
-/D [2917 0 R /XYZ 71.731 521.904 null]
+/D [2902 0 R /XYZ 91.656 293.859 null]
 >> endobj
 2928 0 obj <<
-/D [2917 0 R /XYZ 91.656 504.071 null]
+/D [2902 0 R /XYZ 133.648 267.956 null]
 >> endobj
 2929 0 obj <<
-/D [2917 0 R /XYZ 71.731 496.933 null]
+/D [2902 0 R /XYZ 71.731 255.837 null]
 >> endobj
 2930 0 obj <<
-/D [2917 0 R /XYZ 263.545 486.138 null]
+/D [2902 0 R /XYZ 71.731 244.943 null]
 >> endobj
 2931 0 obj <<
-/D [2917 0 R /XYZ 500.364 486.138 null]
+/D [2902 0 R /XYZ 91.656 227.109 null]
 >> endobj
 2932 0 obj <<
-/D [2917 0 R /XYZ 101.898 473.187 null]
+/D [2902 0 R /XYZ 71.731 142.263 null]
 >> endobj
 2933 0 obj <<
-/D [2917 0 R /XYZ 71.731 445.291 null]
+/D [2902 0 R /XYZ 110.407 131.468 null]
 >> endobj
 2934 0 obj <<
-/D [2917 0 R /XYZ 71.731 430.183 null]
->> endobj
-2935 0 obj <<
-/D [2917 0 R /XYZ 91.656 414.407 null]
+/D [2902 0 R /XYZ 71.731 48.817 null]
 >> endobj
-2936 0 obj <<
-/D [2917 0 R /XYZ 71.731 402.288 null]
+2901 0 obj <<
+/Font << /F23 1217 0 R /F27 1224 0 R /F35 1589 0 R /F33 1322 0 R >>
+/ProcSet [ /PDF /Text ]
 >> endobj
 2937 0 obj <<
-/D [2917 0 R /XYZ 71.731 389.336 null]
+/Length 2620      
+/Filter /FlateDecode
+>>
+stream
+xڭYK����P�b�jD�!RTnk{�8�l\��\�8��$&��������Dj$�iK6�F��O(Z��E�ml|�]g�8�G���]�k%Y�h�~~�՟�d�vY�x>,6al��b��A�Ƌ��_�oN�l�Z�i�L��/�US��W�QP_��hy���k������}x��&�`�'�����o'�vQ���b�A�ٰx�n�l�.Y�f0{�[��
+�@$�6�ґ���>��(�ɔn�˗{�
+�x`�8Am��ם������ٝMSX�U�.[���ҥ=�f����mHUP�:���*�5S�R4��ZZ���a�~ԩ:b��z�́N�kƅ���3��eG�;�ߓ�y��ȷ��X��"�ho�u���1{ژ�u)'ӕ/�(\�ί9;�8p�*ʗG�۳��U*�Ycm��C�_�8�I��(�@md���psR9 Wq���߹�)�t>�axO/�Ү�w�p�A��.�Ԫmp���\�ٯb0SW(N�9Zek]P�3ݪ�[�R�y]e���^����D�<�y�8z8)�5�9[�R�KKvа�<�Dw9@�dF�j:�d����`���p��(��k�Ve���፼'�+J��u�pus��k	�$��ΝVY$G����	�����ʂζuU��b��D�_�$M@8tb
+�0��\Xc�U!�"=E��M���sk����))���7���z��
+�^	E#\�+F2(`N�Ϯ�v0U-ֵ�I�t�ބA��D��q�koNù~�5m�Y��^莃͎����6ALj��GAޓ��ߑ�&i����%jdI��9���s���tw���d֑}�2�O!�S�=��۾�v�f!B��,d��i��8���,��}���w�p�M!4�-��|q�/W|�<���R��{��6t$���ڻ���7*a5�r��]eu�g!�
��4�Y���G
�@���Iͱ�:[�+�0�|�?��xY�mm^/���
A�S����`�Y9��`	в���S�:D��θQ=��T��#7> <t+Kiϒñ�X�Ec��X٣��<���'�C�r���`��ppη�pr㑌#ϖ䩨���t���k>��´f_��@	i��:3�k�*���`�MF�C}ỳN��d�G	˵�)]��Z���
+�õi����ؽv�%
+����]F9{��G���M�Z6�߱A��5lR��P���*��4
�J�#�J��5��OP.�'�-��d�A��7�_In|��Q�eC��Zo�tح�d垓�n�� µ�5��$=ű���ml2o�d|!�%|�� �����^���n�2��hj����I��غ����%�
d�[7�A��=� \�V%)����K�����ydѕi(�Pr�D�jMߓ1p��R�|%�S��_S��j#8��Ee�֠\��'
+[�V,�;�2����@�,	���3�����O� &�8؂�gʇ3v��'�°��ε�(�<��ժ�T�j�u�f;�äBC�����:f� ����ËeG��|�BR}�F�j���J�Yr�v�M��p#�	_	`�ڎ��I�"=��[@R����0-��9���gM@��@F?����R�Mή�Dy���g����`�����,b��B�����%߲�$9C��*�	9+v־��c7eA�u*f�/g(!���7F3[5�L��>��q$�54�?
��2�n�6_��=�%��B>�bK��k��O}��7�gȊ*����\�KR�B׺�$㪹���g�i���ۭ<�@Β�g�:�8�}u�2�;�R�-5:R��~O�����N�pm�;Pޝ��^+p�K��c���?�n��7� m������8����e3v������`_��ƛ&�^�����7�����!���ݔ�D׸A8�V�j4�(�w ���Xk7�.3�_L��f a;$)��5w����c�~�d�}�x�r*��R��D
��jQ�ex���J+���s�Հ�w:s6����6�2������V^����������5���&r�i
+��x�a�Q/v�P�>���g�x'n�Y(�1m{����&�qs߀����$�Ы]��F����rǚZ_-�gO�Bo]�@ݎL�ֶ�������rH�ȇ���\ xy��ե�a!����n�Aʗ�(�~�K�/�U�X
+��X��W��K����j���NiK�%����9�!�S~��>Nq),QiukهT�뺷����涻��n�tf��z����0̾6��\+��i�ЙK>o�G�<��@cK���ȍ�<�>[^��=��� �~�X��t&�\÷7j���}�l?��iҰ�k�j<?�R��\�@uZ"q>m���/8����������=RC{��7���/�ֵ��'�F��,{�����Fy��A�|��y�oe�����^ɲ=|#+�������}9�$����x���'~�Ě��WZ�����1(:yq�-���wB�������7ba�c�6�����A��L�Kd�zL�?������E����N6�����N�LM�/��Am?���Dr�[�A{&��$|����N�L�S�endstream
+endobj
+2936 0 obj <<
+/Type /Page
+/Contents 2937 0 R
+/Resources 2935 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 2900 0 R
 >> endobj
 2938 0 obj <<
-/D [2917 0 R /XYZ 91.656 373.56 null]
+/D [2936 0 R /XYZ 71.731 729.265 null]
 >> endobj
 2939 0 obj <<
-/D [2917 0 R /XYZ 250.874 360.609 null]
+/D [2936 0 R /XYZ 71.731 657.37 null]
 >> endobj
 2940 0 obj <<
-/D [2917 0 R /XYZ 71.731 322.587 null]
+/D [2936 0 R /XYZ 71.731 592.777 null]
 >> endobj
 2941 0 obj <<
-/D [2917 0 R /XYZ 71.731 309.635 null]
+/D [2936 0 R /XYZ 71.731 579.726 null]
 >> endobj
 2942 0 obj <<
-/D [2917 0 R /XYZ 91.656 293.859 null]
+/D [2936 0 R /XYZ 91.656 561.893 null]
 >> endobj
 2943 0 obj <<
-/D [2917 0 R /XYZ 133.648 267.956 null]
+/D [2936 0 R /XYZ 71.731 533.833 null]
 >> endobj
 2944 0 obj <<
-/D [2917 0 R /XYZ 71.731 255.837 null]
+/D [2936 0 R /XYZ 71.731 518.889 null]
 >> endobj
 2945 0 obj <<
-/D [2917 0 R /XYZ 71.731 244.943 null]
+/D [2936 0 R /XYZ 126.726 486.077 null]
 >> endobj
 2946 0 obj <<
-/D [2917 0 R /XYZ 91.656 227.109 null]
+/D [2936 0 R /XYZ 71.731 423.611 null]
 >> endobj
 2947 0 obj <<
-/D [2917 0 R /XYZ 71.731 142.263 null]
+/D [2936 0 R /XYZ 71.731 408.503 null]
 >> endobj
 2948 0 obj <<
-/D [2917 0 R /XYZ 110.407 131.468 null]
+/D [2936 0 R /XYZ 91.656 392.727 null]
 >> endobj
 2949 0 obj <<
-/D [2917 0 R /XYZ 71.731 48.817 null]
+/D [2936 0 R /XYZ 409.936 379.776 null]
 >> endobj
-2916 0 obj <<
-/Font << /F23 1201 0 R /F27 1208 0 R /F35 1569 0 R /F33 1306 0 R >>
-/ProcSet [ /PDF /Text ]
+2950 0 obj <<
+/D [2936 0 R /XYZ 71.731 355.422 null]
 >> endobj
-2952 0 obj <<
-/Length 2620      
-/Filter /FlateDecode
->>
-stream
-xڭYK����P�b�jD�!RTnk{�8�l\��\�8��$&��������Dj$�iK6�F��O(Z��E�ml|�]g�8�G���]�k%Y�h�~~�՟�d�vY�x>,6al��b��A�Ƌ��_�oN�l�Z�i�L��/�US��W�QP_��hy���k������}x��&�`�'�����o'�vQ���b�A�ٰx�n�l�.Y�f0{�[��
-�@$�6�ґ���>��(�ɔn�˗{�
-�x`�8Am��ם������ٝMSX�U�.[���ҥ=�f����mHUP�:���*�5S�R4��ZZ���a�~ԩ:b��z�́N�kƅ���3��eG�;�ߓ�y��ȷ��X��"�ho�u���1{ژ�u)'ӕ/�(\�ί9;�8p�*ʗG�۳��U*�Ycm��C�_�8�I��(�@md���psR9 Wq���߹�)�t>�axO/�Ү�w�p�A��.�Ԫmp���\�ٯb0SW(N�9Zek]P�3ݪ�[�R�y]e���^����D�<�y�8z8)�5�9[�R�KKvа�<�Dw9@�dF�j:�d����`���p��(��k�Ve���፼'�+J��u�pus��k	�$��ΝVY$G����	�����ʂζuU��b��D�_�$M@8tb
-�0��\Xc�U!�"=E��M���sk����))���7���z��
-�^	E#\�+F2(`N�Ϯ�v0U-ֵ�I�t�ބA��D��q�koNù~�5m�Y��^莃͎����6ALj��GAޓ��ߑ�&i����%jdI��9���s���tw���d֑}�2�O!�S�=��۾�v�f!B��,d��i��8���,��}���w�p�M!4�-��|q�/W|�<���R��{��6t$���ڻ���7*a5�r��]eu�g!�
��4�Y���G
�@���Iͱ�:[�+�0�|�?��xY�mm^/���
A�S����`�Y9��`	в���S�:D��θQ=��T��#7> <t+Kiϒñ�X�Ec��X٣��<���'�C�r���`��ppη�pr㑌#ϖ䩨���t���k>��´f_��@	i��:3�k�*���`�MF�C}ỳN��d�G	˵�)]��Z���
-�õi����ؽv�%
-����]F9{��G���M�Z6�߱A��5lR��P���*��4
�J�#�J��5��OP.�'�-��d�A��7�_In|��Q�eC��Zo�tح�d垓�n�� µ�5��$=ű���ml2o�d|!�%|�� �����^���n�2��hj����I��غ����%�
d�[7�A��=� \�V%)����K�����ydѕi(�Pr�D�jMߓ1p��R�|%�S��_S��j#8��Ee�֠\��'
-[�V,�;�2����@�,	���3�����O� &�8؂�gʇ3v��'�°��ε�(�<��ժ�T�j�u�f;�äBC�����:f� ����ËeG��|�BR}�F�j���J�Yr�v�M��p#�	_	`�ڎ��I�"=��[@R����0-��9���gM@��@F?����R�Mή�Dy���g����`�����,b��B�����%߲�$9C��*�	9+v־��c7eA�u*f�/g(!���7F3[5�L��>��q$�54�?
��2�n�6_��=�%��B>�bK��k��O}��7�gȊ*����\�KR�B׺�$㪹���g�i���ۭ<�@Β�g�:�8�}u�2�;�R�-5:R��~O�����N�pm�;Pޝ��^+p�K��c���?�n��7� m������8����e3v������`_��ƛ&�^�����7�����!���ݔ�D׸A8�V�j4�(�w ���Xk7�.3�_L��f a;$)��5w����c�~�d�}�x�r*��R��D
��jQ�ex���J+���s�Հ�w:s6����6�2������V^����������5���&r�i
-��x�a�Q/v�P�>���g�x'n�Y(�1m{����&�qs߀����$�Ы]��F����rǚZ_-�gO�Bo]�@ݎL�ֶ�������rH�ȇ���\ xy��ե�a!����n�Aʗ�(�~�K�/�U�X
-��X��W��K����j���NiK�%����9�!�S~��>Nq),QiukهT�뺷����涻��n�tf��z����0̾6��\+��i�ЙK>o�G�<��@cK���ȍ�<�>[^��=��� �~�X��t&�\÷7j���}�l?��iҰ�k�j<?�R��\�@uZ"q>m���/8����������=RC{��7���/�ֵ��'�F��,{�����Fy��A�|��y�oe�����^ɲ=|#+�������}9�$����x���'~�Ě��WZ�����1(:yq�-���wB�������7ba�c�6�����A��L�Kd�zL�?������E����N6�����N�LM�/��Am?���Dr�[�A{&��$~����N�MS�endstream
-endobj
 2951 0 obj <<
-/Type /Page
-/Contents 2952 0 R
-/Resources 2950 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 2903 0 R
+/D [2936 0 R /XYZ 71.731 341.754 null]
+>> endobj
+2952 0 obj <<
+/D [2936 0 R /XYZ 91.656 325.978 null]
 >> endobj
 2953 0 obj <<
-/D [2951 0 R /XYZ 71.731 729.265 null]
+/D [2936 0 R /XYZ 71.731 300.907 null]
 >> endobj
 2954 0 obj <<
-/D [2951 0 R /XYZ 71.731 657.37 null]
+/D [2936 0 R /XYZ 71.731 287.955 null]
 >> endobj
 2955 0 obj <<
-/D [2951 0 R /XYZ 71.731 592.777 null]
+/D [2936 0 R /XYZ 91.656 272.179 null]
 >> endobj
 2956 0 obj <<
-/D [2951 0 R /XYZ 71.731 579.726 null]
+/D [2936 0 R /XYZ 71.731 234.157 null]
 >> endobj
 2957 0 obj <<
-/D [2951 0 R /XYZ 91.656 561.893 null]
+/D [2936 0 R /XYZ 71.731 223.263 null]
 >> endobj
 2958 0 obj <<
-/D [2951 0 R /XYZ 71.731 533.833 null]
+/D [2936 0 R /XYZ 91.656 205.43 null]
 >> endobj
 2959 0 obj <<
-/D [2951 0 R /XYZ 71.731 518.889 null]
+/D [2936 0 R /XYZ 71.731 167.407 null]
 >> endobj
 2960 0 obj <<
-/D [2951 0 R /XYZ 126.726 486.077 null]
+/D [2936 0 R /XYZ 71.731 154.456 null]
 >> endobj
 2961 0 obj <<
-/D [2951 0 R /XYZ 71.731 423.611 null]
->> endobj
-2962 0 obj <<
-/D [2951 0 R /XYZ 71.731 408.503 null]
+/D [2936 0 R /XYZ 91.656 138.68 null]
 >> endobj
-2963 0 obj <<
-/D [2951 0 R /XYZ 91.656 392.727 null]
+2935 0 obj <<
+/Font << /F33 1322 0 R /F27 1224 0 R /F23 1217 0 R /F44 2069 0 R /F35 1589 0 R >>
+/ProcSet [ /PDF /Text ]
 >> endobj
 2964 0 obj <<
-/D [2951 0 R /XYZ 409.936 379.776 null]
+/Length 2385      
+/Filter /FlateDecode
+>>
+stream
+xڭˎ��>_��e偭H�d[�ivv'����^L�ll����DG��8_�z����9
|Y,֛UE:^D���8�&�Qy�6٢h�E����],kAY�p~|z��OI���|�,���4��m�/��
+w�Z<��
+>�i0�r��(HB�~(���z�W�A?��88���k����_����yg�6�w�7�s87��$�S3څI��x�m��}��� o�(L��S�9�gK�����P)�X��݈���&�x�(އ��lw�p4���oQ�L]�<�um�*�<��Q6X��U1�A���`d=�8��`�L�[�t/�s5���N+aږ�`Uy،���RE���8���"����c���l�\'��� N��m�����e.P����Ӯ�%�:=خGl�
��co� <4ب,�4Moj��
+/v����G���tu�]�D���h��Ћ!m�`�˻����q�8�˱@.�luW��gJ�|��������~[�Su�[���� ,��|1�ؙ��Ug�,G�15���j�DY綑���(�k��_O�n�P�6���C�A֟A�u�l�!I<�S��+��ƫHE��Gl�C|�(���t<�Ah�l](�e�ɂ��^�=����0�*��,�y!й�L���Ѵ<‼g��J��4贾:�2��ۓ�h�Y��)�����³�
d`HK�bii�i)��6��ڄ�����̟��TY�@*��"/%�m`x�AAGx
+/�/�v��l�0�0Mg�ؚa��]�c�35�+[f��I��N�G:7
+P�X��!�>!u�hg���{k�ݳm�1�mԹ����P�Z�r� �)`E�3�ԃ~ֽlr�(�E,D�l*tb�5�93V̀K
�<�r�a�7��|%5��t����B�V�Yie
+�IoWl�GW\$wp��*�HS��E.��Ti�vG��lX����1!m���c	�Ym]'9�$P�7I��p���d��L9G9xw��t����wjf��j
+���LA׮�V*���	.��0;2�w�&QE,�t�r
�La*��6�!���8{��@B��j�|��\Z����2��k_�;6�(Ea����DXV{to:f4�O8L�kh*H�\�2N��YC�~�	Ik?���@�-�eN�i�_�gm���mS�ؠza�e0������1h�a��SF�F�w�ҭ7�]�Rv���綕�[�7�VE�HP*�����-�)$%:Oj�x�˭ی��Q5�!8#�v�K�.�D�k�����j��?�a64��RI�lLU*���c����SѴ-����/(�7�z�C^Ͼ�Y�Ƚy���:�D��H'*q�+@O���)�d�����7pϬ�����i�~z���?1>+M~��u/O�Z���A[2�4`�Ҵ䋐A�P,9���-�9�����a*pyM�Y/SJ��ե3��SN���(��:���ZRٔ�|@\%����r�Kd�50��_�ݢz�e���&K�̈���8\7po9��Oc+���A��*���-�g��
+j��2~�V,��/W|����a��B�8�E#�ٺ$�G���܅�Z�p��1�1�D$�A���ޜ:����ѭs���-�|�/���y��靋,�4�n���|_]�$=8�;�#f����=�1��Zs����)L�RM)%�+�
�k��0�$�a	�U������wdl��s,�E��8x��y85�y��i�'�^!A��$�c/1@���������N�,h�đ�^�{|�x��&hC'
q�yN��JT���<��Nr����U�)@��0��\鯴Ĭ�QX�@#q�
+��E*�+{lp�k\�����(T	��I�Bn��
+F��4�'��IJ׸���d�<�X�|�;���|�����f�n�o��"�᫄���{UF-|�/HpYeZ������j�\!�[��p�D��'��`A9�0K6��sy�p�r��/�5,��n���w����Ô%dyr�'�4e���6n��E�X�$q
�����	��!�)K̷����$��[XC���6�q���E¢�������!I���!�W�w��y�^sj�)�p0�`|�Fp���0D}�LM�BR%�{��"�z�x�Nw,�1��������V�'�?���Fv<��]��Y��M�r�r\���gu��B��Sv�W�x �<9 Q�����J�쨚�Q��c^]2��ⲵh=���4��8QS)��a���f��z�����Z�i!f�9��0��\�{^=,s�IS�~�h@����G!^m0�x�7V�7�;�G��g:�G�ٓvտJt�v;�1�ׇ��#�H�0���w�]���,���+�څ�rD(9�o�Yr���k��endstream
+endobj
+2963 0 obj <<
+/Type /Page
+/Contents 2964 0 R
+/Resources 2962 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 2900 0 R
 >> endobj
 2965 0 obj <<
-/D [2951 0 R /XYZ 71.731 355.422 null]
+/D [2963 0 R /XYZ 71.731 729.265 null]
 >> endobj
 2966 0 obj <<
-/D [2951 0 R /XYZ 71.731 341.754 null]
+/D [2963 0 R /XYZ 71.731 718.306 null]
 >> endobj
 2967 0 obj <<
-/D [2951 0 R /XYZ 91.656 325.978 null]
+/D [2963 0 R /XYZ 71.731 708.244 null]
 >> endobj
 2968 0 obj <<
-/D [2951 0 R /XYZ 71.731 300.907 null]
+/D [2963 0 R /XYZ 91.656 690.411 null]
 >> endobj
 2969 0 obj <<
-/D [2951 0 R /XYZ 71.731 287.955 null]
+/D [2963 0 R /XYZ 71.731 644.419 null]
 >> endobj
 2970 0 obj <<
-/D [2951 0 R /XYZ 91.656 272.179 null]
+/D [2963 0 R /XYZ 71.731 618.516 null]
 >> endobj
 2971 0 obj <<
-/D [2951 0 R /XYZ 71.731 234.157 null]
+/D [2963 0 R /XYZ 71.731 603.572 null]
 >> endobj
 2972 0 obj <<
-/D [2951 0 R /XYZ 71.731 223.263 null]
+/D [2963 0 R /XYZ 71.731 519.95 null]
 >> endobj
 2973 0 obj <<
-/D [2951 0 R /XYZ 91.656 205.43 null]
+/D [2963 0 R /XYZ 71.731 504.842 null]
 >> endobj
 2974 0 obj <<
-/D [2951 0 R /XYZ 71.731 167.407 null]
+/D [2963 0 R /XYZ 91.656 489.066 null]
 >> endobj
 2975 0 obj <<
-/D [2951 0 R /XYZ 71.731 154.456 null]
+/D [2963 0 R /XYZ 233.106 463.163 null]
 >> endobj
 2976 0 obj <<
-/D [2951 0 R /XYZ 91.656 138.68 null]
+/D [2963 0 R /XYZ 71.731 440.15 null]
 >> endobj
-2950 0 obj <<
-/Font << /F33 1306 0 R /F27 1208 0 R /F23 1201 0 R /F44 2037 0 R /F35 1569 0 R >>
-/ProcSet [ /PDF /Text ]
+2977 0 obj <<
+/D [2963 0 R /XYZ 71.731 425.141 null]
 >> endobj
-2979 0 obj <<
-/Length 2385      
-/Filter /FlateDecode
->>
-stream
-xڭˎ��>_��e偭H�d[�ivv'����^L�ll������c=�ק^��{ND��fU�����6�>*�&]���hq�����c-(�ΏO���I�Ef�x�/�(
-�Q��j�R�x*�|<��`��Z�Q�C�~(�){��́A?��88���*����_����y�zf;�M�΍|j;��Ԍv�N/o��6Cۼ�U�7Y&q|��
-�dz����|I��Z�g�n���p�n<G�CU�y��`8����(R�*z���j�*
�<���lh�[��`�z>������h��2�ixp2����plG��vZ	Ӧp����z��h�*
-~_�i |��4Xe�0KY�}��˵�(Tqp�]�6<[��c�j2���`���Wg���@����k�����[�36*
-/M�ۊu�‹��*����0]])�G��=�m��3�f<�bȶc0��]����Q���X �}nMW��gJ|��������~[�Sv�[�߷�+AX:�b�9������Y�c0��^F-P�, ʲ@8okو*���-��T��eۄ�5wH=��3��z#�i��O���'4^I*�<�vl0�'�Oǣ��֩����,7i���������s�[��5"T�k�@t�! �|�
�8 ��o%WltZ_����'+�s��$�Sد�;�݅g������bii�i)��6��ڄ����{;�?1&�Q���PC*��"/!��0�㠁 �#<����>ہk�9L�Yd�aXaq���l�ʖY�'bR�����̍!V�i��G���E���r��=�
Ȃ�Y����6�\����PӴH��A*S ���g`a�lz��Q�X�"�T��k�sf4���j4'x��jÌo<`�Jj����9�<�x�����ޮ؜���H��j�UV���<�\���Ҹ�P9��<��#�cB���ijں��$P�7:�n8���tj��L9�G9xw��d����wjf��j
-���L@׮�V*���	.��0;2�w�&QEZ�����ܖ��Wm�B�¥u<�����jSV���͹4.�+��eJ׾,wltQ���I�#*���(�(��v�h�v<�0���.!-r5K9E�da�s���'$1��p�B��ɦ�A�9a&A����3Cs�M�c�v���4��:h8>�Ǣ=�9CO��jS�iH��w�K�)N+��VlD�ߔҬ0�@��D,Q�	�6t����<��p��w�.�n3�G�8�����cU8u�'j\���W�Hf���
��垗J2ec�R)de�so6��f�`Y|���E��Y�2���w;��7Ϻ��Y�#�U⏴Vڵ��=uv:�����r��=����spf����?���p�4�
g׽<1k�2f1l��‚y��/B�B��hކ�0��Ž.����5#g=l!��W��\WO9�R�P09u03ϕ��)����Jf�4��>�Ȕk`4��ܻE����x��M���#ۙq�n��rH���Fn���Z'*���-�g��
-j��2~�V,��/W|����a��B�8�E#��UA�����c����c�b4+�H���'3Ƚ>u-���CD��=��&��\?`��r@�w.������J�=|M>����X����!����<r*í���0�J5��P��7���F��,��l�%�W6B�"�Sߑ�yoϱ�����������dQ�e���B���I��^b��#=* ���#��[1��Yи�#���� �ޱLІN�
-6��ʫ����)Y$U���y��S�p�aH?��_i�Y>�����F���橋T�W���N�4�+<f�);�Q�4��:T!�ȿr_����JB��5.�nYo�'��p��;����{3VÌ�M�
4U1|���{�J����	.ˣ,C���@�3��S� ��+"�sC��Ȕ��!(�F`��4�b.O�C.3#]�Ű��1�u�C����VV�z���,ON|��)ӊ^ڸ-�Xb1�v
������[㇐�%�[z~D�Zsxk��Vv���}��H�����[�[�;$	�<�7D�����3O�kN%#3�fv�/��rp�������QH���to�X�W/O��΃ ���=X`a�Vت��\�G��=����'ڸ�~4�I��V�kܛA𬮶S��s���
-�D��'$���B��U�8�}[`��K��F\�����a�k'j�""��1,�<�,`�\����ݶ�fZ��u�-L�+�ŞW�Lh�-�_2P'���Q�Wk-��M��cűuO�3����I��_%�ܸ�Ԙ��Ca�k�w����	�.�~��	����T��H9"���[��r�?���endstream
-endobj
 2978 0 obj <<
-/Type /Page
-/Contents 2979 0 R
-/Resources 2977 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 2903 0 R
+/D [2963 0 R /XYZ 91.656 409.365 null]
+>> endobj
+2979 0 obj <<
+/D [2963 0 R /XYZ 71.731 371.343 null]
 >> endobj
 2980 0 obj <<
-/D [2978 0 R /XYZ 71.731 729.265 null]
+/D [2963 0 R /XYZ 71.731 360.448 null]
 >> endobj
 2981 0 obj <<
-/D [2978 0 R /XYZ 71.731 718.306 null]
+/D [2963 0 R /XYZ 91.656 342.615 null]
+>> endobj
+1491 0 obj <<
+/D [2963 0 R /XYZ 71.731 296.623 null]
+>> endobj
+342 0 obj <<
+/D [2963 0 R /XYZ 269.758 253.525 null]
+>> endobj
+1492 0 obj <<
+/D [2963 0 R /XYZ 71.731 253.31 null]
+>> endobj
+346 0 obj <<
+/D [2963 0 R /XYZ 283.793 214.153 null]
 >> endobj
 2982 0 obj <<
-/D [2978 0 R /XYZ 71.731 708.244 null]
+/D [2963 0 R /XYZ 71.731 203.788 null]
 >> endobj
 2983 0 obj <<
-/D [2978 0 R /XYZ 91.656 690.411 null]
+/D [2963 0 R /XYZ 71.731 165.969 null]
 >> endobj
 2984 0 obj <<
-/D [2978 0 R /XYZ 71.731 644.419 null]
+/D [2963 0 R /XYZ 71.731 151.025 null]
 >> endobj
-2985 0 obj <<
-/D [2978 0 R /XYZ 71.731 618.516 null]
+2962 0 obj <<
+/Font << /F33 1322 0 R /F27 1224 0 R /F23 1217 0 R /F44 2069 0 R >>
+/ProcSet [ /PDF /Text ]
 >> endobj
+2987 0 obj <<
+/Length 2546      
+/Filter /FlateDecode
+>>
+stream
+xڅ˒�F��P�TՈ������w�Uqojk�CKlI�ɦ‡�گ_���șI�@4
�4�n�~�&��4�O��Ao��os����b/$�ͻ�7?|�M��I�y<m"�sS/ߤa�fq�y,�뼿�k���>�='t����KSv�/͙Q��WV������7e�a��Y��z�f�_n��
����R7�|�/t��i�������sf���k!�����N��1_����z�}�Q:g��OZ���s���2r>!������BZ:Y����9	���ۇ`�[3���E!�o�X�ԗ uQ�ȳ�AĄ׶���H�YwL�J�|��Za�����O�`D�0ŹU�gԳ܁�D쁠kjmW5õ{V��֟g�\U��=A�@��q�x����W48�Ti�K<�qת�l���_�Y�#/$j��H����yA��<莭ֆ�㯒)}�0�B��,Ȝ0��>`����xl�w.���!��!8:*Q��\-ZT�"�D2���v{ ���?=ܙ��q�U��UӲ��0Us&KJ&�ŋ���.�DT��Z��HE�;�����y�f�~��jB���X��J�3�<-xn��N�(��v�{�LZ��B��a���a�x�qD�����$� pЂhL1{:40,
�)JR�[M���0W���:
+{+��p94����N[�/ª9�q��p�i��D��lg�2\��X�V=rav�o��ޗ�Ӧ+{>�����`U8{��S
+9��S�mz�Ȱ@��-珡�Sm���[6�e+Γ�jdP�����ޅ��fV�?z�ZC�
�ܮxQ0�e3zf	��ӥ�aBqe
+J�P ��^rw��d�V�(G?��Y܌e���鏿�"�yd��Cb�]��?Y�,�kD�,�����prZ�'	pT�j������Yݛ�1��u<UM�ul05�t�6}��`�}�d��hԔOX e	�T�u<.f�"�D�UKtܑ�T�D�w7��b-�j�0�� ��q�@]��X�>𯔜|�k�Lqu'y�?��$�cw	 �[3��2�ؖ�s)���9�0��������)�%gcn-��qaH�yV�Q<�S&^���[��-9H7^��6�PN�e/�*���@��+��\=l4�Ԓ ^8L�ሳ ���p��2N��J� Y�cS
�qy�8�k�u-�ևd��ZI�Ϝ�En�`�_T�Т�́Z�jU��@fS}f�������21�"M0$pQg�.����ؒ]�k�Q���9>_v
+t.�?��(%��"���x�oZ7z��%q�8�lwH1�t�
�o�����N��4�����lQP��ҖQ��*+��<�Mm��@rʳ���s�(��#���=�`��������,���e!��0K�8Nw��o�[b�f��k��)Ka"�x�#IA>�9���U�y�,[&��a��٦�G6;ɹ=���	)P�
+!N�Dn�x��w��7}��"}N��
+R�:x9��$�B��n�Y�����#�.�o;��!�)3L�i:��E�1�XW�@��7�e��z��Y�Kh�A�?��>�ԡ�V3jZS����q��E{($��YB�u�r��™� �����=��*�\D�sl9�&}pvt?b��Z������<8���[�8S���[�o;"�8:��{~~����8���پ�����O8�M��6+z��᧩�&L|8�ϾcX��D�����`�J}ҳ�#t��� �c9�ɖ�5�6(�]眽{nL�H�,�Of6���8��Ot�*x|@?��¯��s�jڿ�R�gm\z�1$�=WP�/֓�m:��S�;B�Z��#c]ZOY3m�>�P/(�rۦ��t]����������f����.ee��$�s���Q�,yU��-�|��Qs�����Z����f�!�ne%eu2n� =5�(���|��A�[wV�b�3�J�öo���`�x�a�mݗ\�n���n�y�uB��^t�Z�_����(��Vh�amvz���;mz�4��8{�Vmv=���\)���K�+�o�K
+(���~u�oI���2�=�����2[���}���QW4���@���?�[�
)_?����ښ
+��v!�+$z�wIʉ�
+^�I,�Mӯ�������lW�l�|�iQ�9�@N!N=�	n����M��ky��>zBwN�?���s�~�R}o����ߐ��9�^10�GQ���JIW�|P�$pF�pp[�{�)�7y0��2%�\���<| �]����w��<}!7#��ho]����Ө4]�̑�Qv��k�=�cE��Z�e�[������'������渧Ƞ�~~��T���+��ܐ�BE��9��d�1��P���Jƴ�?���t7�Se[ )�`�ƌ�֦��-l�/f"�f���1��(���ks*Y���q���ϡl�K�7Y]�PA��k/O�9����X������y���aX�v�')���O_��l"Y�_���	uI�K~�%���-endstream
+endobj
 2986 0 obj <<
-/D [2978 0 R /XYZ 71.731 603.572 null]
+/Type /Page
+/Contents 2987 0 R
+/Resources 2985 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 2900 0 R
+/Annots [ 3000 0 R ]
 >> endobj
-2987 0 obj <<
-/D [2978 0 R /XYZ 71.731 519.95 null]
+3000 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [177.424 359.283 222.255 368.194]
+/Subtype /Link
+/A << /S /GoTo /D (parameters) >>
 >> endobj
 2988 0 obj <<
-/D [2978 0 R /XYZ 71.731 504.842 null]
+/D [2986 0 R /XYZ 71.731 729.265 null]
+>> endobj
+1493 0 obj <<
+/D [2986 0 R /XYZ 71.731 718.306 null]
+>> endobj
+350 0 obj <<
+/D [2986 0 R /XYZ 264.312 707.841 null]
+>> endobj
+1494 0 obj <<
+/D [2986 0 R /XYZ 71.731 704.649 null]
+>> endobj
+354 0 obj <<
+/D [2986 0 R /XYZ 274.763 673.37 null]
 >> endobj
 2989 0 obj <<
-/D [2978 0 R /XYZ 91.656 489.066 null]
+/D [2986 0 R /XYZ 71.731 664.733 null]
 >> endobj
 2990 0 obj <<
-/D [2978 0 R /XYZ 233.106 463.163 null]
+/D [2986 0 R /XYZ 122.221 654.441 null]
 >> endobj
 2991 0 obj <<
-/D [2978 0 R /XYZ 71.731 440.15 null]
+/D [2986 0 R /XYZ 468.481 654.441 null]
 >> endobj
 2992 0 obj <<
-/D [2978 0 R /XYZ 71.731 425.141 null]
+/D [2986 0 R /XYZ 71.731 634.351 null]
 >> endobj
 2993 0 obj <<
-/D [2978 0 R /XYZ 91.656 409.365 null]
+/D [2986 0 R /XYZ 354.578 584.703 null]
 >> endobj
 2994 0 obj <<
-/D [2978 0 R /XYZ 71.731 371.343 null]
+/D [2986 0 R /XYZ 71.731 551.662 null]
+>> endobj
+1495 0 obj <<
+/D [2986 0 R /XYZ 71.731 481.923 null]
+>> endobj
+358 0 obj <<
+/D [2986 0 R /XYZ 224.863 448.613 null]
 >> endobj
 2995 0 obj <<
-/D [2978 0 R /XYZ 71.731 360.448 null]
+/D [2986 0 R /XYZ 71.731 445.953 null]
+>> endobj
+362 0 obj <<
+/D [2986 0 R /XYZ 185.702 418.227 null]
 >> endobj
 2996 0 obj <<
-/D [2978 0 R /XYZ 91.656 342.615 null]
+/D [2986 0 R /XYZ 71.731 411.029 null]
 >> endobj
-1476 0 obj <<
-/D [2978 0 R /XYZ 71.731 296.623 null]
->> endobj
-346 0 obj <<
-/D [2978 0 R /XYZ 269.758 253.525 null]
->> endobj
-1477 0 obj <<
-/D [2978 0 R /XYZ 71.731 253.31 null]
->> endobj
-350 0 obj <<
-/D [2978 0 R /XYZ 283.793 214.153 null]
->> endobj
-2997 0 obj <<
-/D [2978 0 R /XYZ 71.731 203.788 null]
+2997 0 obj <<
+/D [2986 0 R /XYZ 359.607 400.294 null]
 >> endobj
 2998 0 obj <<
-/D [2978 0 R /XYZ 71.731 165.969 null]
+/D [2986 0 R /XYZ 388.183 374.391 null]
 >> endobj
 2999 0 obj <<
-/D [2978 0 R /XYZ 71.731 151.025 null]
->> endobj
-2977 0 obj <<
-/Font << /F33 1306 0 R /F27 1208 0 R /F23 1201 0 R /F44 2037 0 R >>
-/ProcSet [ /PDF /Text ]
+/D [2986 0 R /XYZ 71.731 361.44 null]
 >> endobj
-3002 0 obj <<
-/Length 2293      
-/Filter /FlateDecode
->>
-stream
-xڍM��6�>�"x�:@�����7���:s�����l%1ƑS˞��_R�l��K9X�(��7�`��/Xe��"x���dU�������]�[F��p�����K�
-Q��j�_ž/2�XeQ(�$\��{��ܫn�
ߋ=��S�k�Z�~X��u���v����n�D�(��x�F�0Z���t��g"�+_$B��Y��.�\�w ���?Z�a���*H<���@I�t��6�E��IL����:��)G�{��L[!�@!����MZfA.����~�����-�r�w���5#U�=�4��	|��u�x��Ʋ?(�p'T��Kʲc��$�iZ���*��-=���c{���'�n���l�t>	��Z���X��ȂPVEV+!؃LPk�*"� ��0I<1��ǀ�"��"?���~ؙ�6���д�z��A1Bm�),]q��;����>�I�
l��hmO�˲tom�������ī���b�^�A�X65�1b��J_���<�~����^�dC -O|h�gM{�I/��ο��_%h�4cO�dʹdUu���L�Ԣ�R����oOO븂�'�M�]D�V����U�43x� �3Ix�;
���P���:r/��>{�Y�ǝ�dN>�݅����L�ȉ�����{�;��m��Ҧ�)�\L�^L���Q�:�޾�����
�Nq84�#��{�&l��>$��y��D�����:ʈ�wLY>��6gE�xswc.F�'�b�*eC��cM��ՕqWGŠ����y���īZT_��i��nƏn�G��Hֺ� `!6PuۨA��	.HBtW�=mG��&[xR���7M���&�+��B��c��C	M�~Ic�y#�ͼ1M��ē�i	�	BZ�aw����f�8X�(II��@/��e�d9��ݳ*k�cI{H�@z8ھ�гR�o��r&�u��0��i[���R�3��8*}��G��n5�z�
Z��{CX��p�f;p�Sv5�6r��t��.'���ԝ3���,N�T�YX]*���sמU��ʈ��I�8�g��y>@���m��n��=H�(O�(N-O��v��ڳA��w{����Q�,�V;.���@��mY�B�����rՔv/�l�	�(����G!ž��u#�M݈��_��m߷'�gOO%�an��Y�RZ�4.�N$@���B;p��:�����6[�a��cq=1�Z̈́Ucx%0xu�� �$>���I�<l�]Y�64�QN2��d��,8[Εhu��bbm������2S���Y�A���x*�eG�k+���w�����et�-��*�3���m�͠c[�kW#�2p�
-�g�A,��3�;ouH�C�1)�S���\b�Z�GA�8�Wq���ν���lgH4͢qI���\���[�d���f1w8�/	!sq�y�A��&�<�Ni.�=���;����Qc����֑��)�+��r՗��BwM�{���ή�Y��s(��dr�((�C#����=��ߙ^8.x�ª��+\?-��0����:���?�lg87�[�A�b�+/D���x-�#o����,�~ޏ_0CNM�����bB|�X�>�گE���ɫ�`<�s���"l����J0��sU]5Z͚?4ݓx�tP�S��C�M8o��QP}ᛦ�����{�{Ay�R7
+v�U;��P
-�"���OJ;J��u��q9�Nύ�W�u����&��`޺�����T�O���rx	�M)��	!���H}���=~��O�a"��
A`q�3�~���K�j+�^Qj��l�B�WT�ˊ�~.�4aں�o���7���*歉.���R�N��`�!ۆ� ���|�x<x����z����:�v���?��Y�NO���8��DBE�(�-
�Q0ܔc������*��fv�X�*�g�V�n*��9}O�M�*�l���9�Z܋��iC�W���K]ZW���~]ݟގ���ocy�D�%Ms����$@�,/�d�&{8��?Mi���
��d�9VbƲ��a>���3iA!���ۑ�q���}�B2��ڋFeZ>��V��nU�J[���������6���:�=�g���>�ӱk�C����Pw�[0�Y��_[3�&_����eA�#4� G`������7͸�_������m@_4�s"����@�qv���~2��z=W.:`�lW���־�{��u�_Swr��e�Y�v��J��ې��8y�=�#bB��"	sᇎ�U\�֟
-���?�qvendstream
-endobj
 3001 0 obj <<
-/Type /Page
-/Contents 3002 0 R
-/Resources 3000 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 2903 0 R
-/Annots [ 3015 0 R ]
->> endobj
-3015 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [177.424 411.089 222.255 420]
-/Subtype /Link
-/A << /S /GoTo /D (parameters) >>
->> endobj
-3003 0 obj <<
-/D [3001 0 R /XYZ 71.731 729.265 null]
->> endobj
-1478 0 obj <<
-/D [3001 0 R /XYZ 71.731 718.306 null]
+/D [2986 0 R /XYZ 71.731 354.302 null]
 >> endobj
-354 0 obj <<
-/D [3001 0 R /XYZ 264.312 707.841 null]
+366 0 obj <<
+/D [2986 0 R /XYZ 280.196 323.582 null]
 >> endobj
-1479 0 obj <<
-/D [3001 0 R /XYZ 71.731 704.649 null]
+3002 0 obj <<
+/D [2986 0 R /XYZ 71.731 316.503 null]
 >> endobj
-358 0 obj <<
-/D [3001 0 R /XYZ 274.763 673.37 null]
+3003 0 obj <<
+/D [2986 0 R /XYZ 117.11 305.649 null]
 >> endobj
 3004 0 obj <<
-/D [3001 0 R /XYZ 71.731 664.733 null]
+/D [2986 0 R /XYZ 71.731 303.492 null]
 >> endobj
 3005 0 obj <<
-/D [3001 0 R /XYZ 119.865 654.441 null]
+/D [2986 0 R /XYZ 71.731 298.511 null]
 >> endobj
 3006 0 obj <<
-/D [3001 0 R /XYZ 455.128 654.441 null]
+/D [2986 0 R /XYZ 89.664 277.754 null]
 >> endobj
 3007 0 obj <<
-/D [3001 0 R /XYZ 71.731 636.409 null]
+/D [2986 0 R /XYZ 71.731 275.597 null]
 >> endobj
 3008 0 obj <<
-/D [3001 0 R /XYZ 79.19 584.703 null]
+/D [2986 0 R /XYZ 89.664 259.821 null]
 >> endobj
 3009 0 obj <<
-/D [3001 0 R /XYZ 71.731 564.613 null]
->> endobj
-1480 0 obj <<
-/D [3001 0 R /XYZ 71.731 533.729 null]
->> endobj
-362 0 obj <<
-/D [3001 0 R /XYZ 224.863 500.419 null]
+/D [2986 0 R /XYZ 71.731 257.664 null]
 >> endobj
 3010 0 obj <<
-/D [3001 0 R /XYZ 71.731 497.759 null]
->> endobj
-366 0 obj <<
-/D [3001 0 R /XYZ 185.702 470.033 null]
+/D [2986 0 R /XYZ 71.731 242.72 null]
 >> endobj
 3011 0 obj <<
-/D [3001 0 R /XYZ 71.731 462.835 null]
+/D [2986 0 R /XYZ 244.012 233.221 null]
 >> endobj
 3012 0 obj <<
-/D [3001 0 R /XYZ 359.607 452.1 null]
+/D [2986 0 R /XYZ 441.891 209.908 null]
 >> endobj
-3013 0 obj <<
-/D [3001 0 R /XYZ 388.183 426.197 null]
+1496 0 obj <<
+/D [2986 0 R /XYZ 71.731 130.805 null]
+>> endobj
+2985 0 obj <<
+/Font << /F33 1322 0 R /F23 1217 0 R /F27 1224 0 R /F48 2081 0 R /F44 2069 0 R >>
+/ProcSet [ /PDF /Text ]
 >> endobj
+3015 0 obj <<
+/Length 3325      
+/Filter /FlateDecode
+>>
+stream
+xڥَ���}�B�������|lb�ͥEx��[�)��Ǔ�O]�l���Y���]�uW�����E�9I�?s�8ZlO�b#~�c-(k���
+�E�dq�����:��-��w��_l��_�s���ڏ�e�����TVe��3���[��]������6�v$N�7��q&���9Y��9��	�8>���%��}]��W�|~la�^�lqK�Vҟ�]������V�K�U|����/�|��_q���KU,a�I���ɞf�m^1d{ȫ����R�c���a�'��ձhߎ�'��cω��p-f^���&�4���Gb�����Ϟ8O��5+��8��W��ܗ�� 
��J)r�]��17��ŷh��p�W�j�����e��lެ"�?
�.�#��S^�E�ZP��a��,������qf�c,4�zB+6�>Iw�'`z@���)��`��;��=tޣc��x��j������)e�ϗ�cг�H�6�T�c��W�;���u'��Cޙ�0��l�l�ȌbbF�i�*�����Ԫ#3M`����j�+�g��항�W$�K�C�#��[X�s����8q�6��		�=��oB#�s&dQ�������NS�� �F���R�wc�
+��6�� � g/����Z�U���~����Z�8ȗ}"�k?�o��_�k����I�"n��¹";�qGv3���nL|Fv6���R8s۾��*H��TzA�nd�>h�Zy�4��$c�������������ϭ��!ՠ����h���է�+��Z�rU�gh��+%n`L�Am�x�1����l��˱�ެ<8��R�Pk�z�O���T�h�w�Q���U7Z�l����Io�c�nV	��F�ɒ��.�G˫��N'���ǹ���qO{���k����Z����
CͣN|'�������3�� �������7	5C{9��3FY�jN����J��m}:!\�`^���1E�m�k3�ɚ�Tvo�"�#9��1�j�g�"��/*� �Fx�A���AB�&Ѣ�hb},t�-�G[֕�����p�O�T���	�=����p#�s
+gQ7v@n�Ye>��p.g����0=>9k����,�Iz�A�@(%EN4�
���Ƕ�K���؜w�J�hϠOz	�Be� k�+ìH�k��A괷�$+�*�DOi+�)����&i��Ai��@1���~-s~aUN1~�	%l�ّ'�R^���������NW ��L�f)d�~$uG�B�������0�hKU
D��g�yש�y���p��9��
+�����I��F�H����k}9�=c��R����#U���n��:��e	�}گ�/��-���t��������rQ[U�*ƃR�`	ʊ6,�/c��՜��Vd��4e|d"J�i�t�̳�@��'Y�����R ����}M��5�9�V�AS�/�t\�����*�������Jh*C{I��0��A[���[��e,?�`���iU�K�t�P6:�(!���j���Hݰ���p��TL�LVI25n����)����ԇ�̏������[���1H�{}G��B�\R���r���c2��e��*�Pz>������Z��ڑ�!��<��N��N�؉�I���x�c�ᓍ�\���%5|`a�Ϻ�st��p�|��*b.�+�<�Ђ�9Z4 n���Z�w3����j�w/r���gM��9�#�Djj{i������d@�L����3�����"�"t='Ȩ1��Ï?�������3��< r�F�ƒ�3X4j�{�����J`�P�zark
�Kx�t���
����av�0t��X�^�t$�Фıb�$o*4�	o��T�k�?�	��՛�d)&����ϥ%ڐG����n����؟�dI�N#o���?䳎<'ucX�u��v�$�m�<�F�1���B�u�8&>�;����oVaU�;��S'H=�L�b^"�^��1h	�Oi듀�
�����;~${,�WHy��F,�=>1Fw _����qF9��h~>����)2qOR'�亹,�"�æB�	R^}[�tk$Ս.zNV�>7�o�iCB�d��N����?
��Oo���sE�4�U�!vW���gTͦ�
+�1�� ٜ��B'�m=�M�G����D��4 �4�H��`�D&w�#G�87/��~��xd ���o���xi^���7�e5`����B7�X��v�#I}��%���
�,�y����=~��i~<~=����<r�D�?����Y&�r���G�]�i�\�b����Sb��xD|N�-�[jIR�6D�9s�a�M�fӞ;c�!�.��NFJ�@��$�T(�ts�j��a�^s�"'�n��-�k��{��/��9yY�UQv�B�}dȘୗ��cuTm��3�Z��8�2"u;�=s�
1NQ��M�
_l��"PqWU��d��'�A��^i�M���4
fH����WJ�z�Ѩs���Yd2wa��I�E�g7i/[��a�?!2�Ϩ��x��M��t�b��m}:).�,U�\���.������sMa��N��W��9����j`�j-��Dec�|��#��o���{�g"c9�u��{	8��	��87uq�RS׫
+~��$+Ƌ�އ9я�Á�"��3�AP�"�ԍ.[L���0V���m�r����%'���:�����Wj}zd��)������=�W���P,�/0is(�'��@'���+�i�/f9p�F힎��9����i�f����՘�'�]�6jIV�y3�Ş�f�C��s�b5���!v�b��g,֦������r>%H�kK?�b*��TD��!"�����D�+���'����SΏPF���)I�N�	\�V�-�����f3�̫ҧ�N=��E�Im���7��č�_�	������+97�{x�[��Q�Dsqė��F��yY��[k��!n�^���dAr���^`#F�g5����mq�
+��:o����V]�8/q@^�-�ǹfq�q����[܈���Y���H�﹬ҿ��mG����t������{&������<_��?]��Ub�1�Ġ*hPj�C�_��@��&�˖5�$�$���U���SٗN3�3T��1=��74󛁶�'�J�Nx(��I��i��t�jX�bܑ�@=��?@��Jm��ƾ��_2���_��)�l���B9p;C�Q&�����z�]ep�g�SJ�,^}�endstream
+endobj
 3014 0 obj <<
-/D [3001 0 R /XYZ 71.731 413.246 null]
+/Type /Page
+/Contents 3015 0 R
+/Resources 3013 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 2900 0 R
 >> endobj
 3016 0 obj <<
-/D [3001 0 R /XYZ 71.731 406.107 null]
+/D [3014 0 R /XYZ 71.731 729.265 null]
 >> endobj
 370 0 obj <<
-/D [3001 0 R /XYZ 280.196 375.388 null]
+/D [3014 0 R /XYZ 207.755 708.344 null]
 >> endobj
 3017 0 obj <<
-/D [3001 0 R /XYZ 71.731 368.309 null]
+/D [3014 0 R /XYZ 71.731 699.706 null]
 >> endobj
 3018 0 obj <<
-/D [3001 0 R /XYZ 117.11 357.455 null]
+/D [3014 0 R /XYZ 71.731 687.258 null]
 >> endobj
 3019 0 obj <<
-/D [3001 0 R /XYZ 71.731 355.298 null]
+/D [3014 0 R /XYZ 71.731 682.277 null]
 >> endobj
 3020 0 obj <<
-/D [3001 0 R /XYZ 71.731 350.317 null]
+/D [3014 0 R /XYZ 81.694 661.519 null]
 >> endobj
 3021 0 obj <<
-/D [3001 0 R /XYZ 89.664 329.559 null]
+/D [3014 0 R /XYZ 81.694 661.519 null]
 >> endobj
 3022 0 obj <<
-/D [3001 0 R /XYZ 71.731 327.403 null]
+/D [3014 0 R /XYZ 484.554 661.519 null]
 >> endobj
 3023 0 obj <<
-/D [3001 0 R /XYZ 89.664 311.627 null]
+/D [3014 0 R /XYZ 71.731 633.46 null]
 >> endobj
 3024 0 obj <<
-/D [3001 0 R /XYZ 71.731 309.47 null]
+/D [3014 0 R /XYZ 81.694 617.684 null]
 >> endobj
 3025 0 obj <<
-/D [3001 0 R /XYZ 71.731 294.526 null]
+/D [3014 0 R /XYZ 81.694 617.684 null]
 >> endobj
 3026 0 obj <<
-/D [3001 0 R /XYZ 244.012 285.026 null]
+/D [3014 0 R /XYZ 71.731 615.527 null]
 >> endobj
 3027 0 obj <<
-/D [3001 0 R /XYZ 441.891 261.714 null]
->> endobj
-1481 0 obj <<
-/D [3001 0 R /XYZ 71.731 182.61 null]
->> endobj
-374 0 obj <<
-/D [3001 0 R /XYZ 207.755 147.143 null]
+/D [3014 0 R /XYZ 81.694 599.751 null]
 >> endobj
 3028 0 obj <<
-/D [3001 0 R /XYZ 71.731 138.506 null]
+/D [3014 0 R /XYZ 81.694 599.751 null]
 >> endobj
 3029 0 obj <<
-/D [3001 0 R /XYZ 71.731 126.058 null]
+/D [3014 0 R /XYZ 71.731 584.643 null]
 >> endobj
 3030 0 obj <<
-/D [3001 0 R /XYZ 71.731 121.076 null]
+/D [3014 0 R /XYZ 81.694 568.867 null]
 >> endobj
-3000 0 obj <<
-/Font << /F33 1306 0 R /F23 1201 0 R /F27 1208 0 R /F48 2049 0 R /F44 2037 0 R >>
-/ProcSet [ /PDF /Text ]
+3031 0 obj <<
+/D [3014 0 R /XYZ 81.694 568.867 null]
 >> endobj
-3033 0 obj <<
-/Length 3508      
-/Filter /FlateDecode
->>
-stream
-xڝZY���~�_�̋%`D�>#��lb��If�8bK�W"e��x��SW7����X̪Y���㫳�\���I��3Ǐ���������pl�ek�|����߂`�9Y�����u���VI�;i䯞��_�K���֏�u���Ź���eu`җ׍�>��<������>�{6�� q�4�;�0�Dn}��|����	��,�OV  ��\�O��g��N��l���o/��L����zN������]�j�
�p�>?+�M��\LJg�z|Ɯ�Dz�V���p}P�j�����Q1�ڪ�M��=���:�剉yQ4��#j&|]o�h�����6^��3���,���V_�p�7�+�2bc�s�MHz{ݣ��\���!.~��o=��g������,�Ї�p�~����~���^�fRL���O5"w�*���{�ם��yg�ËFz�rݑ7���yu0=U�0�T�ff�V�xӄ���]M����=Z?��7V��Pd~*~�s�&�c�x���8���]�xn���XP�a�*4>�B���\?�=a�d��hr>(�1�<7f0
����� @�I{FOE�d����`�^��t-�=�/��@��Є��]}���g�N�ܷ�ϭ�����
-[>��𹳳���Ia�m�Z7� Y��R't#��%��?�&��$cMD�V>l�����/.(
mn�L9������_���w�NL+��\�z���30�Ĥ�f>��d�da�����z*�O6,@��T1DMQ��T�;@�������l36h&yՍ�)���4�'~j�������I��5�]�|Q'4��q���^/�w��-�
-�z�–�;>�^K:���a��h‰徑�����-��B���}|��Q3�?'xxA/kKͫ��DzR=}W�/'p�x0oL���X��6��<�ɖq*��q�s$w9�;m�:mT���?�@k@�vL��5�`����.����R�X�
-UJ�іue?���������]�Y<7��9�7#lpc�3���=��0�a����s1c�f�݄h�6htoL���j@��y8Є��~�;]<]��q��?���)h�e��XfE(@��܂��`�IF(�@Wi���cP4��DP�vQ���ʜ���P��=Y����Ys}���w�b��#��rO=f)bX$tG؅W;Z�g&�[GS:�j r���}��w�:_F&�+��s���k��P���;md�d�*(�V�����3�/&��<��p�S��?�`�}/w[�j�C��*=���Ӽ%e3N�UWVW��9 �Se1~)y��
�?˻k�j�uc��x(�">R%�4Z:��aO������T ��}N��9���VL��!���g�/����/L*��� 0V�`ԕ��I�:	�$:��L%��X���,���1݈�tL���F�%81�#o�J#�a"ٻ�>T)(���ƭ���8E��#v3X�`7c��XP�2?vb�'���g�	Y���Ctl`�QF�p�N*Zn�kR��h���	�O�Dʋ��y��5�4P8����v:��חs�I�ތ���@o4�Vv�L:|�2������sR
���o]�Ȃ.����[^��Ŵl!�5��='�^�a�MM��w3�o+��d�!�Kb_8^����1 �Q��ݵβj;��N�	 Q8�Nl��̄�8Ba�:�������ǟ�U��[���^�9��Q�� �V�Z����3���^���
-�d����r�M�>|����U��9A��Bc���J�T�p����;i���@������
��Ʉ�$���ϥ�אM��	h��iZ����د�nI�N���?�m��nŸ�N2,�M�� �� ��D��c!z����DZ��і���ل���m�e&fL� ��Dŋ�Yx�8hP�.�!�Kwi볐
����98L~$},�7z�G,�=>1Gw$[���֞޲�ŷ���F&�H�=	��蔤��E^��L��C��(��׈?����-'�)�XaH�dܔ�x+n%*A�"��P�ynAM8��6����9�Y��_A8�9��ӊX#��Yl�Ϙk���N 3B���a
-!���U�C�x\�F���P�4��U��Dp������<��:��0'������R�&޼c�ʺm�JXiϠ��e��ϛ����a�����Մ����E�
-��{.hY������r�N߯,[<�P,K(�
-[F�H��-�;*JR�6D
���XN��ɸ�l
-t6$%bۅ�b��9%�"�.�y*�X�;z��˰��T�S���j��s�4��y�[<���󲥫�쌆L+�1A�?#8��I�-�)f������ܡ��7�8EERzi�nxb-��,`�YiVI�A����f�R�Mj�̔may���0��Q���K��D�
�z'�A�~R`��i`?�3���BU<Mܦ1h:g���>�'C����,�Y�/ [<��+K��
-[�H�`-�
��B��{1�,oQ`_~����
1'w���TcL�]�d]p�j���i����4uq�QYǫ
-n��{����UQ�â��ܿ
��CE��5���0t����ù�2��j��u�r���w%�ŇT<�����&?=Rs|����
����M�WϢ�
-�Q�nH,�.�h�(�&��vg���K���/f9�2�|:�f5v�j�N�3��.o��>���g0Q�d��7��.(���؞��
-ǒ�N�-k�H���Z�Qc��Q1C�[·�}q�G�LE:����0Es��::�JN���Ď{��h���Qx���t
-R��f��s	lc�l��L#�j���G�C�d�ѲR�3�K�x�����/�.=��qqc�)����܏|%���#�p:
-�X��ʼ�76�0b6��Z�G%�	� �B+1����"'p�e-���"���[uK�8t���Yn�0,��TҢ��$�(�%u�Nvz.���4���2sCK;Gl�d�P;���-���?�	��S~����@��u8v��?����5a_����I	�`�b�ʼt����a��H�7`PO/yB3����>)bPxv�EQ�Njwxm�H��DJsP��=��p��������w(��E�}�!_1���/d�S6������w5�-����–�?>�~Kz��򏗼���y�����u���(�mM�A a嚽{7�M�����������L݀?�	Bhgݐ������k�ݡ��L"r �f���n�9~�?���A��AO�-�H��A[�?�pe#���8r���]csԱG�tm�0�*f2�xQ�X4~ۋ�Q�ND.�yV��R��_lČ���q�;-����LN�*��DN�3^��K�>eU��˿G;���Ul����<)��դb�w▽	S'��[ҳLp����z\s��0z*��E�endstream
-endobj
 3032 0 obj <<
-/Type /Page
-/Contents 3033 0 R
-/Resources 3031 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 3085 0 R
+/D [3014 0 R /XYZ 71.731 553.758 null]
+>> endobj
+3033 0 obj <<
+/D [3014 0 R /XYZ 81.694 537.983 null]
 >> endobj
 3034 0 obj <<
-/D [3032 0 R /XYZ 71.731 729.265 null]
+/D [3014 0 R /XYZ 81.694 537.983 null]
 >> endobj
 3035 0 obj <<
-/D [3032 0 R /XYZ 81.694 708.344 null]
+/D [3014 0 R /XYZ 71.731 504.942 null]
 >> endobj
 3036 0 obj <<
-/D [3032 0 R /XYZ 81.694 708.344 null]
+/D [3014 0 R /XYZ 213.707 468.244 null]
 >> endobj
 3037 0 obj <<
-/D [3032 0 R /XYZ 484.554 708.344 null]
+/D [3014 0 R /XYZ 71.731 466.087 null]
 >> endobj
 3038 0 obj <<
-/D [3032 0 R /XYZ 71.731 680.284 null]
+/D [3014 0 R /XYZ 71.731 451.143 null]
 >> endobj
 3039 0 obj <<
-/D [3032 0 R /XYZ 81.694 664.508 null]
+/D [3014 0 R /XYZ 210.667 429.988 null]
 >> endobj
 3040 0 obj <<
-/D [3032 0 R /XYZ 81.694 664.508 null]
+/D [3014 0 R /XYZ 76.712 413.35 null]
 >> endobj
 3041 0 obj <<
-/D [3032 0 R /XYZ 71.731 662.351 null]
+/D [3014 0 R /XYZ 128.518 369.805 null]
 >> endobj
 3042 0 obj <<
-/D [3032 0 R /XYZ 81.694 646.575 null]
+/D [3014 0 R /XYZ 76.712 333.445 null]
 >> endobj
 3043 0 obj <<
-/D [3032 0 R /XYZ 81.694 646.575 null]
+/D [3014 0 R /XYZ 81.694 315.512 null]
 >> endobj
 3044 0 obj <<
-/D [3032 0 R /XYZ 71.731 631.467 null]
+/D [3014 0 R /XYZ 81.694 315.512 null]
 >> endobj
 3045 0 obj <<
-/D [3032 0 R /XYZ 81.694 615.691 null]
+/D [3014 0 R /XYZ 71.731 300.404 null]
 >> endobj
 3046 0 obj <<
-/D [3032 0 R /XYZ 81.694 615.691 null]
+/D [3014 0 R /XYZ 81.694 284.628 null]
 >> endobj
 3047 0 obj <<
-/D [3032 0 R /XYZ 71.731 600.583 null]
+/D [3014 0 R /XYZ 81.694 284.628 null]
 >> endobj
 3048 0 obj <<
-/D [3032 0 R /XYZ 81.694 584.807 null]
+/D [3014 0 R /XYZ 71.731 269.52 null]
 >> endobj
 3049 0 obj <<
-/D [3032 0 R /XYZ 81.694 584.807 null]
+/D [3014 0 R /XYZ 81.694 253.744 null]
 >> endobj
 3050 0 obj <<
-/D [3032 0 R /XYZ 71.731 551.766 null]
+/D [3014 0 R /XYZ 81.694 253.744 null]
 >> endobj
 3051 0 obj <<
-/D [3032 0 R /XYZ 213.707 515.068 null]
+/D [3014 0 R /XYZ 71.731 251.587 null]
 >> endobj
 3052 0 obj <<
-/D [3032 0 R /XYZ 71.731 512.912 null]
+/D [3014 0 R /XYZ 81.694 235.811 null]
 >> endobj
 3053 0 obj <<
-/D [3032 0 R /XYZ 71.731 497.968 null]
+/D [3014 0 R /XYZ 81.694 235.811 null]
 >> endobj
 3054 0 obj <<
-/D [3032 0 R /XYZ 210.667 476.812 null]
+/D [3014 0 R /XYZ 71.731 220.703 null]
 >> endobj
 3055 0 obj <<
-/D [3032 0 R /XYZ 76.712 460.174 null]
+/D [3014 0 R /XYZ 81.694 204.927 null]
 >> endobj
 3056 0 obj <<
-/D [3032 0 R /XYZ 128.518 416.629 null]
+/D [3014 0 R /XYZ 81.694 204.927 null]
 >> endobj
 3057 0 obj <<
-/D [3032 0 R /XYZ 76.712 380.269 null]
+/D [3014 0 R /XYZ 71.731 176.867 null]
 >> endobj
 3058 0 obj <<
-/D [3032 0 R /XYZ 81.694 362.336 null]
+/D [3014 0 R /XYZ 81.694 161.091 null]
 >> endobj
 3059 0 obj <<
-/D [3032 0 R /XYZ 81.694 362.336 null]
+/D [3014 0 R /XYZ 81.694 161.091 null]
 >> endobj
 3060 0 obj <<
-/D [3032 0 R /XYZ 71.731 347.228 null]
+/D [3014 0 R /XYZ 71.731 133.031 null]
 >> endobj
 3061 0 obj <<
-/D [3032 0 R /XYZ 81.694 331.452 null]
+/D [3014 0 R /XYZ 81.694 117.256 null]
 >> endobj
 3062 0 obj <<
-/D [3032 0 R /XYZ 81.694 331.452 null]
+/D [3014 0 R /XYZ 81.694 117.256 null]
 >> endobj
 3063 0 obj <<
-/D [3032 0 R /XYZ 71.731 316.344 null]
+/D [3014 0 R /XYZ 71.731 102.147 null]
 >> endobj
-3064 0 obj <<
-/D [3032 0 R /XYZ 81.694 300.568 null]
+3013 0 obj <<
+/Font << /F33 1322 0 R /F23 1217 0 R /F27 1224 0 R /F44 2069 0 R /F48 2081 0 R >>
+/ProcSet [ /PDF /Text ]
 >> endobj
+3066 0 obj <<
+/Length 2601      
+/Filter /FlateDecode
+>>
+stream
+xڝY������/��5+�zE��k\>$-n���mѶ����=��(ɏ����BCj83�3#�����E���C�J'�b{|{x��C(kaY�x�?=��o�,r�'f�[DA�� _�F�,֋���凃=��]�u,����X�e�e����*\�+�ʮ~y��ủQwlR�g�M�$QT�u�r��� S&��-�t
+R܁?��
|�:��(�T�'����礜��(��_�$�.��/�>�l�
+�=vh<��5�
jA�o�,�e��� 0VN�VU����E�Y~��Nh��l�w�3�?��x)k�N��h�艃�Cg��&^d``��(PA����(�-T�}y��4V&��
+Ć7g�.J�@E�ێ���h��;����w}�������|jWQ�l�a�����r{6I����\����@]�ǵ<宵�oZ��~v'�-wg�<8&N-!bJ�r(���	��^W�D�f�!������?�� ʆV�45n��7�!�c>�(�3�h�Wa�tbݾm�S/"f��r4![
�Q�����'�ڲ?�#�v�+�HG�W�w�#���ׄG����	S;�d �cdܳI���m�̟=�RY��2$��(����y���ɑO��%z�W�.�,��Ȗ+s���n��|�l�"���^�]��q�]�S˾s��"˗?6h��{��E)L���'[�f�33������AO�#�K/"�L7��բmӶ�;5u�	
+��A��3Su����F���R(���q�T�~f�0:X�?���dM��]@�7�_<����eE���H�EL��<�'
��0�_	�E��bġ5#��=�2ڱQ�"�i�-��*����蟸�S�
��A��9	!����^GX�S+HpS˦1H�xEx����]D�+|�i��b�S(-tv7�x���ɧ�q'ׂp?�4h,+7�&���7�{�7�_B�SD���p��9]����D'��n���	�axuY	�ubT
+l��-�^��,�XX`����K�$��ަ�w׍SPȆ�SE���("���X,O�`ʰm-K5������u͗Kˋ�;U��gW<�v:�+}X�koa��;��I2�2J�����F���R��a+�Б�d/ ]�<����<%^�9�:Lu�f���ǟV���g�%���1"�t���@���U���eO�d�~��%���\�꾴���A�'f�M�W(��,lo7��D��	®��\A������O����	ܖ�y�\D`7xy�������trvjd��^F��QA��5x�朏M���̶'T��`��%�$^J��7D^�!����p���{p�c���Ǔ�ySۯ�xH�-�c��ў���AǤ�q#e���ÒⲒE���U�E"/!��l!Ϯ�L�0B�;���0��1�I)gsG�gp�D�d�����ov���r���^�6�,MM��$�/�T"�h|�.gIy�BЬcd��:D�o�ZɩKfv=�BDSp�	�5 hg@�������&�oΞ1���#<�38ڈ�[�ɶd3�3���74����
+�Ⱦ�:���0�Qc����ߟ�Y82�U��3���>h��#�����w퍽��p�`�A�@�'�,�q��{�Q�Sq�y@β�������Si�2_�#%A�x%��	���mϋ�̀4�?`��}� �f:Ā�D	x�E�ov��8�=��R�2�OrD�}�-�o�r�,�ɚ������j�e�xzfz�^HS�	��GU��Lm���O��/�k�$�.���+'r�!lC�Eh��)E���>�Nn�!zVd��N�f=2c��rŽ�#I�F���o�	�R�t��R�N/��gZZ�nۖ'�D#.�H�A'x�Uu�DY�=�����@����v\�� �M�]�t�p`���°+�'n7�*n���.�C�*��;<��!���@���@�B0�xK���p1��l�
+��!�m�#�T!Tu{�c)+���z�8� ��	��O�=�czǠ{�B��!��N��A.,�����K�X�;�7������}0#NER*x�&�������=��|R��'�7��8��v�����/�M!_�1�
+��g+��d2�}.�s{�%�l�X�u�F�i���>��X�{���`Q@?����_�92Z�4_@���E���O�%�Vh�L��%��"_z+a�Y�0VY�O
�hPwD�M*g����&��ū47t��6�T&��6tz����ӱS�؄ً��)A0����p�
A5Pv�����`��Г
+
+�4��Wp��9�7��;����B|J�G[��9�o稟�Y����3�\�ZɈ�}���2�wms�r�btv�>N9�/C�^B�<����FV9�r���;��|�M����sh�*ǤG�t�,������%2F�Y@~]hG&��9C���������⒤
+,�}ㇳTI�K3c���PY��>��Z�q�:�8楷�]}�cn��|�\����i�������#��[WٱY�}�Y��J��S�����^���?�D�5}󗔉�淌Xg*�^r��/x�����O�endstream
+endobj
 3065 0 obj <<
-/D [3032 0 R /XYZ 81.694 300.568 null]
+/Type /Page
+/Contents 3066 0 R
+/Resources 3064 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 3090 0 R
+/Annots [ 3079 0 R ]
 >> endobj
-3066 0 obj <<
-/D [3032 0 R /XYZ 71.731 298.411 null]
+3079 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [290.209 577.071 335.442 585.982]
+/Subtype /Link
+/A << /S /GoTo /D (parameters) >>
 >> endobj
 3067 0 obj <<
-/D [3032 0 R /XYZ 81.694 282.635 null]
+/D [3065 0 R /XYZ 71.731 729.265 null]
 >> endobj
 3068 0 obj <<
-/D [3032 0 R /XYZ 81.694 282.635 null]
+/D [3065 0 R /XYZ 71.731 741.22 null]
 >> endobj
 3069 0 obj <<
-/D [3032 0 R /XYZ 71.731 267.527 null]
+/D [3065 0 R /XYZ 81.694 708.344 null]
 >> endobj
 3070 0 obj <<
-/D [3032 0 R /XYZ 81.694 251.751 null]
+/D [3065 0 R /XYZ 81.694 708.344 null]
 >> endobj
 3071 0 obj <<
-/D [3032 0 R /XYZ 81.694 251.751 null]
+/D [3065 0 R /XYZ 374.742 708.344 null]
 >> endobj
 3072 0 obj <<
-/D [3032 0 R /XYZ 71.731 223.691 null]
+/D [3065 0 R /XYZ 71.731 706.187 null]
 >> endobj
 3073 0 obj <<
-/D [3032 0 R /XYZ 81.694 207.916 null]
+/D [3065 0 R /XYZ 81.694 690.411 null]
 >> endobj
 3074 0 obj <<
-/D [3032 0 R /XYZ 81.694 207.916 null]
+/D [3065 0 R /XYZ 81.694 690.411 null]
 >> endobj
 3075 0 obj <<
-/D [3032 0 R /XYZ 71.731 179.856 null]
+/D [3065 0 R /XYZ 96.37 677.46 null]
 >> endobj
 3076 0 obj <<
-/D [3032 0 R /XYZ 81.694 164.08 null]
+/D [3065 0 R /XYZ 239.331 638.605 null]
+>> endobj
+1497 0 obj <<
+/D [3065 0 R /XYZ 71.731 631.467 null]
+>> endobj
+374 0 obj <<
+/D [3065 0 R /XYZ 198.466 598.157 null]
 >> endobj
 3077 0 obj <<
-/D [3032 0 R /XYZ 81.694 164.08 null]
+/D [3065 0 R /XYZ 71.731 589.519 null]
 >> endobj
 3078 0 obj <<
-/D [3032 0 R /XYZ 71.731 148.972 null]
+/D [3065 0 R /XYZ 96.324 579.228 null]
 >> endobj
-3079 0 obj <<
-/D [3032 0 R /XYZ 81.694 133.196 null]
+1498 0 obj <<
+/D [3065 0 R /XYZ 71.731 520.284 null]
+>> endobj
+378 0 obj <<
+/D [3065 0 R /XYZ 233.494 486.974 null]
 >> endobj
 3080 0 obj <<
-/D [3032 0 R /XYZ 81.694 133.196 null]
+/D [3065 0 R /XYZ 71.731 478.336 null]
 >> endobj
 3081 0 obj <<
-/D [3032 0 R /XYZ 374.742 133.196 null]
+/D [3065 0 R /XYZ 436.119 468.045 null]
 >> endobj
 3082 0 obj <<
-/D [3032 0 R /XYZ 71.731 131.039 null]
+/D [3065 0 R /XYZ 71.731 454.994 null]
 >> endobj
 3083 0 obj <<
-/D [3032 0 R /XYZ 81.694 115.263 null]
+/D [3065 0 R /XYZ 71.731 440.05 null]
 >> endobj
 3084 0 obj <<
-/D [3032 0 R /XYZ 81.694 115.263 null]
+/D [3065 0 R /XYZ 300.596 428.493 null]
 >> endobj
-3031 0 obj <<
-/Font << /F33 1306 0 R /F27 1208 0 R /F23 1201 0 R /F44 2037 0 R /F48 2049 0 R /F35 1569 0 R >>
-/ProcSet [ /PDF /Text ]
+3085 0 obj <<
+/D [3065 0 R /XYZ 71.731 388.941 null]
+>> endobj
+3086 0 obj <<
+/D [3065 0 R /XYZ 71.731 317.046 null]
+>> endobj
+3087 0 obj <<
+/D [3065 0 R /XYZ 71.731 291.143 null]
 >> endobj
 3088 0 obj <<
-/Length 2457      
+/D [3065 0 R /XYZ 118.555 252.579 null]
+>> endobj
+1499 0 obj <<
+/D [3065 0 R /XYZ 71.731 178.957 null]
+>> endobj
+382 0 obj <<
+/D [3065 0 R /XYZ 226.737 140.679 null]
+>> endobj
+3089 0 obj <<
+/D [3065 0 R /XYZ 71.731 131.856 null]
+>> endobj
+3064 0 obj <<
+/Font << /F33 1322 0 R /F27 1224 0 R /F35 1589 0 R /F23 1217 0 R /F32 1231 0 R /F44 2069 0 R /F48 2081 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+3093 0 obj <<
+/Length 1910      
 /Filter /FlateDecode
 >>
 stream
-xڥY[��~?��͓
����ۧ�mRlR{��H���h[]Yruٳί�7��$_r
-�88�p8��s��"ğZd*�4>�&��d�;=��f����b-$�����?~��blR�x�/�0�p��t�I�x)~Z~8�so��:J¥���8�u�_�F�Vjy���*������o_Fى΂M��T�����R�&IHA��0t;�t�/&Ų|�[ٞu��Wɲ#��*��.�*6��1��ǂM�쏖���H��jVQ�|��p��1��MkN�M�a�	���mA�Z6�3#;ko�t��i�	b��(�f=#b��vrˈ����HY�u+\�$���M��M᷌H��hKQ��l������!gW1:�Y�w�f��.���'鏦���6�2=U�`_�t
-:��������z4{�t���dy�n�����F�s("�FM��Ga��ՅI#^W
-�hkY
-������%⚯ךew�UR�,�E��蕖�-ǵd�P���Q:��d�8c7�sҁ>�Q�:��0��x�a-.Ρ1A�d˖�9i��(9u��ԁ��P	�[���Eh�c���3�]E �+H*{�H�Ug�$�i�=!�����W�`i�޶��KSq�*kHD�8�eaԹm��=u���؏D���fk:����c�;2���eeM�(�7|�ډ�z�մ2��G���嗲i�.°<?#:l�j8��9��>���B04�?~Y�b�0��P�rjZ��f�=��jI0��k�{����R��?�I`0�H6E��ߨ+�{a�?HP��w��(�,�'�?��͛����r��c�Ζ'sa`+
-������Yj�]#p�kM�Dt+�c��V�gBX^��B�]�L�a�qn.��'lR�.�HG�p�Ɓ�s������v�h�LH�� !�ֶ!��h��4H��:�������æ)�S�%��ԭ�h�'�C��0?���Rp��8.2����ʖ���Uy*�B�9�������m����“u�g:�Q��Z����/h��^���$Bx Im3�Wڝ��oa��f��g��D��)N��Z�9��u2���+Q6���Di�>������4p��8����d�7�3w��v�y�Ǟ�"'z�a����M��b#p�������y>�!
-|[���=���	qnw���-�s/Or)P���*w�%�Q��/������P����,����2`�S��g����JC��3X����˾����(�Rh�l@��oD����m��9���Axaf�$�	3�,�$]kIƚs�v� +%�Ή_K���<���v��<K%s�D�p
-O��.(kܓ�U��4�7���bT}���=��)H�ͽ
8�(�3���v���7�������r|�
-r>ǎG�3	���V���-������Mq���E��ؗ�j��pA��e*���`y,e��)��$5�+��w��Ӵ=���NN���—ChR�v^��}SO��$IyG�-���dÆ�"	}�ȡ(<�)�������^|A>1S.Iїݛ�o�������f�eU�Yȇ
-�s���sw*�s�3���;]�n�T,�m���,^h�O:s-��~�%\�Ǿ������D�1zr�m��6z��������GN���Hgo��Lv�`�u�f� �;p��ˇ:T�N��B�5WV?R�*}�]]S��Ct�
-��|-F�\4�|єҩQd���|�����`�o��o\�d���=���l&"�D8��w�JW��
-��}G�Fָ"H��(=�ᔹy�'S��9�og];CX�EHO�(��[+q�/��\;��mN�ύ��L�ݔ}��3�$R_�I��G3[Ye���ڷ�d���6�@ف�~��6GgTY}�����Uq'����Q��F��C�>׎u��9�� ���[6�$q*}uI� R�g*D� OS�e��1*����0�v�Sܣ�%R�X���C��o:̭��o1}�ڴ����WGr�9���3nme�V��@J{b��W�{W�9�&��&q��YHc�f���Z���
$���	�
-KP魸���,酹��T���s�]UBߖi�ܣt���WZ�Uō�Ֆ'��@i�I�zZ�}���L���޷�߭�dYڪx�q���w~�����n9
-��t2�QR� G���8�Z�^%n�
-dR
-f����P�'�0k������2����ۦ�7����[)ʠV�/���ߝ,T��������"��?�d�d��{Kk+}�N� D���q�oA�.
-�5z3����	l�©�P(���C_���L����=������U?ʫ�=[�ʐ��E}f��C،c (�p�������rgY:�$�U%�/�?K��$,���D���yt	䗕ݭ���&��b�(���5�7��/��Q��:����_�l����ֹ�r<��]�x�A��7]�H�~\I�s#������^�9g�Xendstream
+x��XK��F��W{����H���ԤIѢI�v������W��f��K9�,[
+,P�0s���!9�V.��U�ȇA&Bn�վxᮎ��/<��0�fB�����o|��d���uE�&�ȗ"��!��yuRu���F����K���Z���#m��מs�'�s�����١�$�o�gi.��Ѩ�5Ӎ�F��������m�?\W�U�UeK۹z2��43[��f����Mic�D�>�=�Q}�}�G:f�J&ei]ߔ:�yU��MuX˭s�E�Bxƪڷz�-�Q�F�\�U(�Ӏ����Ɠ"aW���o�A�d:O[:2�0E'pO�",NUIO����3�`ִ����K�Vf����>)��~�[��|��p��DA��/����F���ˈ�We�Tyn�(�J2� ��f��R�NQ <X3NO��86U_ߓ��S�?�4{4r,uK���n"�\��&[����a�Α?T|��[Ы<��2Հ�0<��}U�����xa9�e��F��'��'�� �2����=�_sB;�pÉ C/��^3��T��T�b2@�棃L��1��[K�鏭�3tS�h���	�+:���\�7���g�D*`���@�h�F!A�V<�k�0�i���ۡ�O�*��y�Z5&ȕ���W���B���+��5��"�����1@8�v�?9�[O�2���'4�=
+��'�R!S\��y�����ki.�No��"������9��o���ѭ.;�T����j���SV�&bpU7����{^��dk�`��������
�(�i���i眑���͙�m,�$�-�inK�1B��4S.L�VE��{�����H�����($� �5�J7
+��G�����pu\õ(t{O��iO.���˜'�ПV��5�]�8�����ѓ���b�1C�Z*VP+���\Aə�F�b:�783�c��f�^�OM)e�lf�G�R�����S�"��Q;X�v0�ˬc��d;�?�U�%��
+@��3�Q	���J��bJ|�ٱ�
�w�w}ij���m������x�h՝v�Ϸ�_�;T��o4M���컞���5��KaX�:��Ɲ��k�Q�Z|�{@}��;۹R�q���<��!ڱ���Fh�L���:�����r�"�Ra�q�oL�Illť��>��f��o���Ω��I�;����&�>����B�x��”�h[@!jV5
��L9nFU{�J-��ᖻ8�h������s�`��g{e��' j�wUN㪁���*f���w�~y���_߾��6�Nu=k`er�8��^�2n��h�&
w�͕6��9����z��\��Cm[,�,�b̝��UJF"NB��>כ���"�:q���	�'�DZ�����N�]T���p;H_g`I	�h�Q����MB?!�/������>6�P����L�-Y��C6�L�^}P���7l����Sn�!N
+x1�]U�K$㋡3�j��5�$<�!�����"ZL�v�8bacܪ���{��{L��cj�԰Y��9?o%"��ΰ�6���M����J�l��/qy�W�}���t�y^vOK ��p�g�h�Q\"d��U�y����I�����Ր��7*#����ucQR���ʶ��`�U���g�ӊ���g5�����Kb�%�vc'� �$_ҟ?f`Oq~���o[��h]3}���j�ϐ�3@�T�pW����<#ƯG�>��#�ϖ &�]�$��+ξ�܆�zʡn�)�X�<NU�.��m�����-��$��
����0/�N�^iTMm����K����Y��b�����Z|x��
0w�K/�E�E7?(�$ߓBWZ&�sV����Rҿ[:�endstream
 endobj
-3087 0 obj <<
+3092 0 obj <<
 /Type /Page
-/Contents 3088 0 R
-/Resources 3086 0 R
+/Contents 3093 0 R
+/Resources 3091 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 3085 0 R
-/Annots [ 3092 0 R ]
+/Parent 3090 0 R
+/Annots [ 3100 0 R 3101 0 R ]
 >> endobj
-3092 0 obj <<
+3100 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [290.209 687.258 335.442 696.169]
+/Rect [71.731 559.672 110.865 568.584]
 /Subtype /Link
-/A << /S /GoTo /D (parameters) >>
->> endobj
-3089 0 obj <<
-/D [3087 0 R /XYZ 71.731 729.265 null]
->> endobj
-1482 0 obj <<
-/D [3087 0 R /XYZ 71.731 718.306 null]
->> endobj
-378 0 obj <<
-/D [3087 0 R /XYZ 198.466 708.344 null]
->> endobj
-3090 0 obj <<
-/D [3087 0 R /XYZ 71.731 699.706 null]
->> endobj
-3091 0 obj <<
-/D [3087 0 R /XYZ 96.324 689.415 null]
->> endobj
-1483 0 obj <<
-/D [3087 0 R /XYZ 71.731 630.471 null]
->> endobj
-382 0 obj <<
-/D [3087 0 R /XYZ 233.494 597.161 null]
+/A << /S /GoTo /D (gloss-product) >>
 >> endobj
-3093 0 obj <<
-/D [3087 0 R /XYZ 71.731 588.523 null]
+3101 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [410.678 559.672 468.799 568.584]
+/Subtype /Link
+/A << /S /GoTo /D (classifications) >>
 >> endobj
 3094 0 obj <<
-/D [3087 0 R /XYZ 436.119 578.232 null]
+/D [3092 0 R /XYZ 71.731 729.265 null]
 >> endobj
 3095 0 obj <<
-/D [3087 0 R /XYZ 71.731 565.181 null]
+/D [3092 0 R /XYZ 71.731 741.22 null]
 >> endobj
 3096 0 obj <<
-/D [3087 0 R /XYZ 71.731 550.237 null]
+/D [3092 0 R /XYZ 71.731 718.306 null]
 >> endobj
 3097 0 obj <<
-/D [3087 0 R /XYZ 300.596 538.68 null]
+/D [3092 0 R /XYZ 71.731 695.392 null]
 >> endobj
 3098 0 obj <<
-/D [3087 0 R /XYZ 71.731 499.128 null]
+/D [3092 0 R /XYZ 71.731 657.37 null]
 >> endobj
-3099 0 obj <<
-/D [3087 0 R /XYZ 71.731 427.233 null]
->> endobj
-3100 0 obj <<
-/D [3087 0 R /XYZ 71.731 401.33 null]
->> endobj
-3101 0 obj <<
-/D [3087 0 R /XYZ 118.555 362.766 null]
->> endobj
-1484 0 obj <<
-/D [3087 0 R /XYZ 71.731 289.144 null]
+1500 0 obj <<
+/D [3092 0 R /XYZ 71.731 626.486 null]
 >> endobj
 386 0 obj <<
-/D [3087 0 R /XYZ 226.737 250.866 null]
+/D [3092 0 R /XYZ 179.498 583.388 null]
+>> endobj
+3099 0 obj <<
+/D [3092 0 R /XYZ 71.731 574.565 null]
 >> endobj
 3102 0 obj <<
-/D [3087 0 R /XYZ 71.731 242.043 null]
+/D [3092 0 R /XYZ 238.588 535.926 null]
 >> endobj
 3103 0 obj <<
-/D [3087 0 R /XYZ 71.731 222.168 null]
+/D [3092 0 R /XYZ 71.731 503.259 null]
 >> endobj
 3104 0 obj <<
-/D [3087 0 R /XYZ 71.731 198.422 null]
+/D [3092 0 R /XYZ 411.961 492.091 null]
 >> endobj
 3105 0 obj <<
-/D [3087 0 R /XYZ 71.731 191.284 null]
+/D [3092 0 R /XYZ 71.731 461.107 null]
 >> endobj
 3106 0 obj <<
-/D [3087 0 R /XYZ 349.696 180.489 null]
+/D [3092 0 R /XYZ 71.731 446.098 null]
 >> endobj
 3107 0 obj <<
-/D [3087 0 R /XYZ 71.731 160.4 null]
->> endobj
-1485 0 obj <<
-/D [3087 0 R /XYZ 71.731 129.516 null]
+/D [3092 0 R /XYZ 71.731 431.154 null]
 >> endobj
-3086 0 obj <<
-/Font << /F33 1306 0 R /F23 1201 0 R /F27 1208 0 R /F32 1215 0 R /F44 2037 0 R /F48 2049 0 R >>
-/ProcSet [ /PDF /Text ]
+3108 0 obj <<
+/D [3092 0 R /XYZ 71.731 420.26 null]
 >> endobj
-3110 0 obj <<
-/Length 2461      
-/Filter /FlateDecode
->>
-stream
-xڭ˒۸��P�b�j��S$ק�=�:��8k��!�$a$��PҶ���F7��HMU*��F����'�/<����w�� s�u�����v���g�{F��ݼ�ˇ0\dn���E�yn�e�$�4��?�wGqjd��b�	]��*��*zۮ|����b����^=n:�q��Y���\��?q?F�=������/t#*I���*�j��})\����M
p��D���#���k�p�}�
��&[�s�7Hz���
-��F�{�x�9M�c���TK-ˆ������:�sF�Gx%u:ѳ�T��.-݃K��3A�U[�lW'Q���9��Z�+2��Gi�Z`uXŎ(��#�@�
-Q� (kq�n��7c�;
-|�o�G~:Ui&���'�&��qd
�iKа|W��EU.���sU�ѶT
��il��XVyu83��{�Q%�E�7ꔳ��+#�����[i.��}}s_A��,WA�|��>ɝ9-���O/��X���Ʒl��>Y�FU�뺀�w�������S���G��mK��zǎFX�h�4`(�0D-i���?=/8�����JF���6�����qo+�B;����˶��C����q�Fꥥj,�#T�3E���f!U/���/�Bŭ#Gh�c�A�`eù1;�hY���66�'+�j�3a�A�O��mc��k'��L������O������_��@7�iY���7&g���[�9��P6hLa� f4��l���.Yq?]���"�u�fY0^	�~�s�.Ƞt�{�+���:��u9v���M�d���K$��K�KvWz&��3Eđ
-Cߌjb���2�UM�3�FA�Y�\�zY57x_��T
)�u��߳zrU~����C5m���������i,]ĸ��gVc�B�œƮy����/�"�Dz��:���*hf��p��
�+�2I�{�w�:�PO��=��߲)�d��qf_��F���y��~��`��0k����+?5�d��eE}���V-��
��n^a�2�֔f�a�T+�yyG���������+?�l��5%|�t�@�֐����OG�Q��(�mt����
-;�������X/�������\~j1�s�H9W��\�XZ���w��9*��ܕ&�.��3��|JYc�2� � VN!�e
-I1�qI��DIb�m	o���ZQ턦j,����l���&���4��Y�	;믴dž���
-�
�X]�cѼf����*��bI���#�L�w���Ӕm���:M�[
��/;����qi��2։G.�p_��տH�F��9��:�T�y'�/�ࠫe���Y�Kp�+ʉ�\>|6�q6Ƈ��a��j�3��z�b�bك����J=�.��H��
h�6b��s���=�`�ϲ�&6�ɡFK-�'���=C��of�G<��AkD�bО��F��B���W���3|d������	*v���ӫ
�����b�6����f��}cU!vl�i�U�jδ�]5pߣ�zMn��=�0�.Y[o�;�5����W����e�	.h��gT�����-UJ^c�s؏�^�d�0�ۗ&��\�yy��h`�l��D
>>��c�I�:���@7�褐��V7�	��$�$��W�$4\�T��NJ&�G3�L�B9�Ti)��f��]Zo,/s-�Z��-ݔ@ߕ��h�%�ڶ�������
-�z�F9sx�P`�_t�˃#c?�!�ђ���`R�
6��U���b"�Xh�Oy@����w��wa�7�H�H���+{™�N�@�]�a�7�Ά�	ޮ�K��eS��0��Q��V������C������F��x��ƏL�����[�=��
�e�6&��>܅�'k�;���0�,�5�j���t��R��&��+KmΦ�)fE��	�����!�Jc���+������+�O�*��R��ۯ�r<K�_�
-�k��倹>7X����7[��\kbQn���^lMn� ;��=�Uӧrp����嶙O��A��4�]?
-o�Ǚ�)��l�'x����/���dwNe�ķ5֡�*�0n��׌^V�<�1Qd����0˨�	3.���qI��w����n����]2SKqs�q�m�n�6�s�@�ȍ#G�N"(��u�%~��ce��>��?}F�R���&���ԀۦE�I��#�ϛ�_�����b��px_@�
�^�jf+Y����Wk���CP�s��(�p_�]9~���
--�����è�[s���
-9�Ȃ*�z�a��"��ObŁI-�5zŸd�8��ưҭ)��X~��ޛOѸ]y7���v�j�����o��o�-�bje�0���2�N��A0�s��n����r��V;ۦs�m8��&E�+�l����ײ2���ls�� ���&f6�����?���i�oA�R?���`�r��`�lwT��&s��^��/k[	endstream
-endobj
 3109 0 obj <<
-/Type /Page
-/Contents 3110 0 R
-/Resources 3108 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 3085 0 R
-/Annots [ 3113 0 R ]
+/D [3092 0 R /XYZ 91.656 402.427 null]
 >> endobj
-3113 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [71.731 682.402 110.234 691.313]
-/Subtype /Link
-/A << /S /GoTo /D (gloss-product) >>
+3110 0 obj <<
+/D [3092 0 R /XYZ 71.731 390.307 null]
 >> endobj
 3111 0 obj <<
-/D [3109 0 R /XYZ 71.731 729.265 null]
->> endobj
-390 0 obj <<
-/D [3109 0 R /XYZ 179.498 706.118 null]
+/D [3092 0 R /XYZ 71.731 377.356 null]
 >> endobj
 3112 0 obj <<
-/D [3109 0 R /XYZ 71.731 697.295 null]
+/D [3092 0 R /XYZ 91.656 361.58 null]
+>> endobj
+3113 0 obj <<
+/D [3092 0 R /XYZ 71.731 349.461 null]
 >> endobj
 3114 0 obj <<
-/D [3109 0 R /XYZ 71.731 651.518 null]
+/D [3092 0 R /XYZ 71.731 336.509 null]
 >> endobj
 3115 0 obj <<
-/D [3109 0 R /XYZ 71.731 609.739 null]
+/D [3092 0 R /XYZ 91.656 320.733 null]
 >> endobj
 3116 0 obj <<
-/D [3109 0 R /XYZ 71.731 594.731 null]
+/D [3092 0 R /XYZ 71.731 308.614 null]
 >> endobj
 3117 0 obj <<
-/D [3109 0 R /XYZ 71.731 589.749 null]
+/D [3092 0 R /XYZ 71.731 297.72 null]
 >> endobj
 3118 0 obj <<
-/D [3109 0 R /XYZ 89.664 568.992 null]
+/D [3092 0 R /XYZ 91.656 279.886 null]
 >> endobj
 3119 0 obj <<
-/D [3109 0 R /XYZ 71.731 566.835 null]
+/D [3092 0 R /XYZ 71.731 267.767 null]
 >> endobj
 3120 0 obj <<
-/D [3109 0 R /XYZ 89.664 551.059 null]
+/D [3092 0 R /XYZ 71.731 254.816 null]
 >> endobj
 3121 0 obj <<
-/D [3109 0 R /XYZ 71.731 548.903 null]
+/D [3092 0 R /XYZ 91.656 239.04 null]
 >> endobj
 3122 0 obj <<
-/D [3109 0 R /XYZ 89.664 533.127 null]
+/D [3092 0 R /XYZ 71.731 226.92 null]
 >> endobj
 3123 0 obj <<
-/D [3109 0 R /XYZ 71.731 525.988 null]
->> endobj
-1486 0 obj <<
-/D [3109 0 R /XYZ 71.731 482.153 null]
->> endobj
-394 0 obj <<
-/D [3109 0 R /XYZ 210.434 439.055 null]
+/D [3092 0 R /XYZ 71.731 213.969 null]
 >> endobj
 3124 0 obj <<
-/D [3109 0 R /XYZ 71.731 426.884 null]
+/D [3092 0 R /XYZ 91.656 198.193 null]
 >> endobj
 3125 0 obj <<
-/D [3109 0 R /XYZ 71.731 371.504 null]
+/D [3092 0 R /XYZ 71.731 186.073 null]
 >> endobj
 3126 0 obj <<
-/D [3109 0 R /XYZ 510.307 321.855 null]
+/D [3092 0 R /XYZ 71.731 173.122 null]
 >> endobj
 3127 0 obj <<
-/D [3109 0 R /XYZ 71.731 301.765 null]
+/D [3092 0 R /XYZ 91.656 157.346 null]
 >> endobj
 3128 0 obj <<
-/D [3109 0 R /XYZ 71.731 288.814 null]
+/D [3092 0 R /XYZ 71.731 145.226 null]
 >> endobj
 3129 0 obj <<
-/D [3109 0 R /XYZ 71.731 283.833 null]
+/D [3092 0 R /XYZ 71.731 134.332 null]
 >> endobj
 3130 0 obj <<
-/D [3109 0 R /XYZ 89.664 263.075 null]
->> endobj
-3131 0 obj <<
-/D [3109 0 R /XYZ 71.731 260.918 null]
->> endobj
-3132 0 obj <<
-/D [3109 0 R /XYZ 89.664 245.143 null]
+/D [3092 0 R /XYZ 91.656 116.499 null]
 >> endobj
-3133 0 obj <<
-/D [3109 0 R /XYZ 71.731 242.986 null]
+3091 0 obj <<
+/Font << /F33 1322 0 R /F27 1224 0 R /F23 1217 0 R >>
+/ProcSet [ /PDF /Text ]
 >> endobj
 3134 0 obj <<
-/D [3109 0 R /XYZ 89.664 227.21 null]
+/Length 2628      
+/Filter /FlateDecode
+>>
+stream
+xڽ]�۸�=�6�fER_�[�˥-.ɡY�(z}`l�-�,��|����gH}k�CQ���hf8�C���'7����:G���M�9Û�o$c�e��y���?j�9�C�7�O�0D6�V"�����������Y�۫(�jAϷ�k^�
���L�w��ܞ�������/o><zޑN�!ի�9��|*��s�R��Њ����r��M^�c��J9�V����ޫ�S`(�R�}��D��q{�(��[v̟^HIϗ�x��o;9�-�z�g{�hq�+P��~li�m�����0)�4�?+�ى6漋�&/�V�Z6{	B�h�WJ$��}���?>^L�|N�5M�2���vr�4y�e��-h<<�(�g��-j�Q�Ƴ"s:k+z^ͯ;	*Z;lx�T�o;��+̷"��`���r%81J��KƆ�Ny�����,^g$�#o��|P���#!ٱ�U��(֠=��{���!M�:&�'�XW����5,���l�hƲ�X�i�eq8���	�,�w�?��X�S�zܥLl螇�"���<0�'~|�<�+�D��|J(��4_
ɠtR�y�����Z�d����80~QJ�,^��@Br§���r�SU�"`ʓ[����&�(�Lzm�&�ҼBz�¦1�L,�%ND���ţ,Z�0P1j�(F��d���$U]��iN�����>.h�[նN�u~���*�y���:�E�1
+
+��6����Vx��"��wG���\��R
+����0'�S������Σ����'TV��se?B4�<zV�~Z��WA�ۢ�Y���>�E[Ly�n��#��JwP�oXt�
6�������v���,�w3�:瘟�;"�\��@N�M�����i���z�J���{ëo�@���x����V���
+4KU���ҀqDXĖ"|󅛮�"$�|�B;��yWEQy��}s���e��o�}� ��`_�l�'a����D���l϶w8���3Ƅl��1�"���[g�pV�F*:�l�_��A�cņ���Jƶ���������f�)�nn�B'�s^($��$ݾm��\���c�B-lm[d!EC۸��g��l{��S���b닭��%|ݯ���m�+��V��I������XMQ�0`�H�v�ك�o�`�=�(��D�6c�1+/��~��E�D�;�4�ꬰ�i.�m!��Q�f����ä̷��8g'�v=�G��%evF��0�[�q(x���	g
+s/�F������2mU������󃅓�嶡-eX��C��,+6
+��	`�Pf
+�3��g�r���v=.,#�t#�p8���S��v\7!���U���������A���:3q}��9��=GK��a�<Q�_�a�.$�E�0q�Q�Lcb 5�4����D�9֮*�ӂ��x&<�X���Y�D�"��r���`��!��
��_��7�a	��.�0M����e?Ȟ��2Ute�ԯ**��PQ<�%���g��={EQ���)�xoJ7�f�P��0c�(��L�</��m�o\"�x輱���/x�m��m�d�P�+&�Y6��"��ĝ�d E'��TާWu�gl,K��� ���V��v��v|<�r{���`��p���@C1U�0��%���D^���]�P����V�ݺ�,�)I�Z�"Q� s�^�T�)������p����X��w�ݵڳDz�~p�g��^y}i�1��c�w-$��0+b��3t�YK�/՝~����<�5p�s���*��f�"���e�����~����3MO��8���fq�Ʊ%IA��]��9����l��!Y;�s4N���;_�ѵR���ҁݛ�ڕ�z\纷�2�B�&�8�>taY����m�}�+�#�)Jx�?�7�y�V�]2{����U�<�+�N�9�z뒙N���:�?�$�O�'��q0��C���0ΓbϪ�W6� �&\��o��I�2�M%�6hn�5B1C!�#bu�����*V��7/����M��
#a�lڌ� z�����B����J!�@��E}�j?L��j�}v����R=�\��+�ε;9f��)��%��V߳��;u��क़V�؎��ݐg’�������Z����TL�����Vm�a1��a�H�3O)b�Z�/XW	F�m�����'���E>���,{����*Nq��[a��b�=YQ�k)��㱪9~W�Aկ�{V+H�hP"|��2���}�lN���4z�����[�j����(�4M����ɍA���s>�Lz�7K�~�H�3\����,]S:��_?fx�zM��{Dy�5��=�������[�jm���խԑH���gQ'�������u��{Dy��C�w�A{[.�\qV�%���;o��J>�׌�]w��t!ѡ���ږ]��;��;,6��P�6�M^z��J��
+j�(_/�%�ZX�f�i�z���N0���nk��<��)>�<�x���B�#lh۹&�l[R6#���1~�b��ϒ�x��P�j~��zs	��L���U�P�O��'�s LE*��`�P&����y*��6^�o�)��ߺ��endstream
+endobj
+3133 0 obj <<
+/Type /Page
+/Contents 3134 0 R
+/Resources 3132 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 3090 0 R
+/Annots [ 3142 0 R 3156 0 R ]
 >> endobj
-1487 0 obj <<
-/D [3109 0 R /XYZ 71.731 194.169 null]
+3142 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [270.683 629.475 363.653 638.386]
+/Subtype /Link
+/A << /S /GoTo /D (product-group-controls) >>
 >> endobj
-398 0 obj <<
-/D [3109 0 R /XYZ 176.83 151.071 null]
+3156 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [472.853 516.897 523.223 525.808]
+/Subtype /Link
+/A << /S /GoTo /D (components) >>
 >> endobj
 3135 0 obj <<
-/D [3109 0 R /XYZ 71.731 142.249 null]
+/D [3133 0 R /XYZ 71.731 729.265 null]
 >> endobj
 3136 0 obj <<
-/D [3109 0 R /XYZ 71.731 109.423 null]
+/D [3133 0 R /XYZ 71.731 718.306 null]
 >> endobj
 3137 0 obj <<
-/D [3109 0 R /XYZ 71.731 98.528 null]
+/D [3133 0 R /XYZ 71.731 708.244 null]
 >> endobj
-3108 0 obj <<
-/Font << /F33 1306 0 R /F23 1201 0 R /F27 1208 0 R >>
-/ProcSet [ /PDF /Text ]
+3138 0 obj <<
+/D [3133 0 R /XYZ 91.656 690.411 null]
+>> endobj
+3139 0 obj <<
+/D [3133 0 R /XYZ 71.731 665.34 null]
 >> endobj
-3141 0 obj <<
-/Length 2341      
-/Filter /FlateDecode
->>
-stream
-xڕYY��6~�_a��ƶْ�s^�I2��b�2N��Nh����%�$���뷊U��C����bY�WE�]8��."WD>^"�0X��w���3�2ņI6#�o��_�\$"	�b�_��#"'YD�q�-��V�U��f��g%}?d���[��
}{^�����P�߶�x�q��d$�X�n�b���b�9"���GH`w�ub!}�?�
G`K�'p����D���񱲮��l^2+��-�~i��;jj,?fyGͺ��s�-�צ
�P�����iw��׵�Y��U�.����G��G4��hI�(�#5ޑ���d_�E���3;������[ު��<�4�Ug[<�������F��B��j'��*��5�Q���X�k���2ӟ�+u�����+��˕��,[�"/y6/��vU��O�[P���DС��p��#�@k�h�IP�|h�[YoxF�[����1��R��U������U%������B�"�U��U�\�Ѫ_9������`ճ�%�R��$t٦�ܭ=gu�Fkp@�p#��p��u8“!�7B!Q��1/t+aG�t�p�A��5#J�
-�hj,;`��k͎|��0y1���P%OV4�̉��C�}5.���nP��z����ҡ:Յ~��!�֞ˡC#��
�p�`9ڰ�a��yOfho�ys'^�p�6
��j5è��׵��;��j���{)uve�U��	A�`����\����B:��U�~O��
zJ/���'fu���&��rR�m]kŁ�_K�$��~���'���O*�����ۀj��s����Uz
�����a�INk��j���:>��uEPL8h�y��� �ۀ�X����}B��:�}s��w1�N�J�!v�|
-ff�|?��{Ԫ��k����?�?�g?�D��8�h��%�-b��z��d_�Eٟ�"�w���B�S��~��|?S'��h��If��;��Vߌ�+�7�2H^^���'R�����USBn��'�ړ�H�p^{�C�1�lepG��ڛ�}�v\Ȑ5%#[����)�6Na��y 	W�ǰ\-�՚�KMB"�f`�
-�0D�0a�VMG���|"��c��Ĕ(�U4SWm��[�1CXv���e#���:��iW�+�dU�O;̈́����H/
-c�c.E�`��aS0`�ִ-ѽu�i�G�,��[��[jժ�2�\��hLR�J[� �-�LVX���#��t� ����P��w�H�fV��<���Ҥ8��L����@Cp]M���4
u
t��Y��!e���^(.�����}gY-�ʃz��qǤ7��
-e9ԛ��ͣ`�$(��wd��s��؎�É�!
NЪ��:T<Q���ăhD���f`3��L
��U��
�l$B�0
-��x�?�Pg�TGw>d���M���Z�4Xs��}���U9�<b'O����!��K�\o^���1͝A�q�o�`u�1
f��)T͈��u�#4�4�v�;3�a����=��Bц�	,�D:-��gϓ��t
opX��� L���k����.���㵗bW���Z��)�#�x-����J8��Ku���ku��	���LZ���ř�������9	
�p�x�J4/��JS]wύ� �V�~�S����9�en� ���F�J.]��UsK�U�pԾ����u~�� 9�!�V��~��{�P;ˉ�E��ɉ%���^sRfKEuhw4�:�_h<�rC�NV�����/����:t�J���1
͢���?�ѭ��l�{xa�
�sx�x-m����E�|!���[&BF���A�}>Y�B�#���(������	�1xMQ����:lf�ܣЗ`�/<pԹ]�J���yO4�f�t$�7�4��֛͞���c��(��U�Ͱؙ���'�o,�HdV:>P�;a1ol���f��J������y�	�k��Uw�zW
-7q��>&�y�+j���,Jz�Ľ���u�	����O{��Hu�
-A��&	 M��iH?���^��N����cT�
S���b�J)�`�b<�yT�X�ً�Yo�3s��ؚw�b�7��u�Q�n��u�[`���-���3=��J�@��p���}`������黎2�H#_�^?-����^����Dt�(��(�]��c޾��h���lLqGmż:��Q>ff�*��w���L�5U��LH�d����R���5a߼��Z��x������04�]v*/{t���ū��{���Tw�e�Z�����t��f��SK_3����=?����8����x�p<����яy������endstream
-endobj
 3140 0 obj <<
-/Type /Page
-/Contents 3141 0 R
-/Resources 3139 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 3085 0 R
+/D [3133 0 R /XYZ 91.656 649.564 null]
 >> endobj
-3142 0 obj <<
-/D [3140 0 R /XYZ 71.731 729.265 null]
+3141 0 obj <<
+/D [3133 0 R /XYZ 71.731 642.426 null]
 >> endobj
 3143 0 obj <<
-/D [3140 0 R /XYZ 71.731 718.306 null]
+/D [3133 0 R /XYZ 71.731 624.493 null]
 >> endobj
 3144 0 obj <<
-/D [3140 0 R /XYZ 89.664 708.344 null]
+/D [3133 0 R /XYZ 71.731 611.542 null]
 >> endobj
 3145 0 obj <<
-/D [3140 0 R /XYZ 71.731 706.187 null]
+/D [3133 0 R /XYZ 71.731 606.56 null]
 >> endobj
 3146 0 obj <<
-/D [3140 0 R /XYZ 89.664 690.411 null]
+/D [3133 0 R /XYZ 89.664 585.803 null]
 >> endobj
 3147 0 obj <<
-/D [3140 0 R /XYZ 71.731 675.303 null]
+/D [3133 0 R /XYZ 116.503 585.803 null]
 >> endobj
 3148 0 obj <<
-/D [3140 0 R /XYZ 89.664 659.527 null]
->> endobj
-1488 0 obj <<
-/D [3140 0 R /XYZ 71.731 652.389 null]
->> endobj
-402 0 obj <<
-/D [3140 0 R /XYZ 194.2 609.291 null]
+/D [3133 0 R /XYZ 317.656 585.803 null]
 >> endobj
 3149 0 obj <<
-/D [3140 0 R /XYZ 71.731 600.468 null]
+/D [3133 0 R /XYZ 71.731 583.646 null]
 >> endobj
 3150 0 obj <<
-/D [3140 0 R /XYZ 71.731 572.624 null]
+/D [3133 0 R /XYZ 89.664 567.87 null]
 >> endobj
 3151 0 obj <<
-/D [3140 0 R /XYZ 71.731 557.68 null]
+/D [3133 0 R /XYZ 131.167 567.87 null]
 >> endobj
 3152 0 obj <<
-/D [3140 0 R /XYZ 71.731 508.629 null]
+/D [3133 0 R /XYZ 71.731 565.714 null]
 >> endobj
 3153 0 obj <<
-/D [3140 0 R /XYZ 71.731 494.238 null]
+/D [3133 0 R /XYZ 89.664 549.938 null]
 >> endobj
 3154 0 obj <<
-/D [3140 0 R /XYZ 71.731 489.256 null]
+/D [3133 0 R /XYZ 71.731 547.781 null]
 >> endobj
 3155 0 obj <<
-/D [3140 0 R /XYZ 89.664 467.782 null]
+/D [3133 0 R /XYZ 89.664 532.005 null]
 >> endobj
-3156 0 obj <<
-/D [3140 0 R /XYZ 71.731 465.625 null]
+1501 0 obj <<
+/D [3133 0 R /XYZ 71.731 506.003 null]
+>> endobj
+390 0 obj <<
+/D [3133 0 R /XYZ 373.787 466.73 null]
 >> endobj
 3157 0 obj <<
-/D [3140 0 R /XYZ 89.664 449.849 null]
+/D [3133 0 R /XYZ 71.731 456.365 null]
 >> endobj
 3158 0 obj <<
-/D [3140 0 R /XYZ 71.731 447.692 null]
+/D [3133 0 R /XYZ 100.924 446.605 null]
 >> endobj
 3159 0 obj <<
-/D [3140 0 R /XYZ 89.664 431.916 null]
+/D [3133 0 R /XYZ 268.324 446.605 null]
 >> endobj
 3160 0 obj <<
-/D [3140 0 R /XYZ 71.731 392.962 null]
+/D [3133 0 R /XYZ 71.731 426.516 null]
 >> endobj
 3161 0 obj <<
-/D [3140 0 R /XYZ 89.664 375.129 null]
->> endobj
-1489 0 obj <<
-/D [3140 0 R /XYZ 71.731 355.04 null]
->> endobj
-406 0 obj <<
-/D [3140 0 R /XYZ 150.026 311.942 null]
+/D [3133 0 R /XYZ 71.731 395.631 null]
 >> endobj
 3162 0 obj <<
-/D [3140 0 R /XYZ 71.731 299.504 null]
+/D [3133 0 R /XYZ 138.352 384.837 null]
 >> endobj
 3163 0 obj <<
-/D [3140 0 R /XYZ 366.767 290.383 null]
+/D [3133 0 R /XYZ 121.544 371.885 null]
 >> endobj
 3164 0 obj <<
-/D [3140 0 R /XYZ 395.819 290.383 null]
+/D [3133 0 R /XYZ 71.731 364.747 null]
 >> endobj
 3165 0 obj <<
-/D [3140 0 R /XYZ 396.191 264.48 null]
->> endobj
-1490 0 obj <<
-/D [3140 0 R /XYZ 71.731 249.372 null]
->> endobj
-410 0 obj <<
-/D [3140 0 R /XYZ 235.992 212.156 null]
+/D [3133 0 R /XYZ 139.319 353.953 null]
 >> endobj
 3166 0 obj <<
-/D [3140 0 R /XYZ 71.731 202.014 null]
+/D [3133 0 R /XYZ 121.552 341.001 null]
 >> endobj
 3167 0 obj <<
-/D [3140 0 R /XYZ 260.965 192.032 null]
+/D [3133 0 R /XYZ 356.23 341.001 null]
 >> endobj
 3168 0 obj <<
-/D [3140 0 R /XYZ 154.091 179.08 null]
+/D [3133 0 R /XYZ 71.731 320.912 null]
 >> endobj
 3169 0 obj <<
-/D [3140 0 R /XYZ 71.731 171.942 null]
+/D [3133 0 R /XYZ 284.018 310.117 null]
 >> endobj
 3170 0 obj <<
-/D [3140 0 R /XYZ 220.591 161.148 null]
+/D [3133 0 R /XYZ 71.731 290.027 null]
 >> endobj
 3171 0 obj <<
-/D [3140 0 R /XYZ 71.731 154.01 null]
+/D [3133 0 R /XYZ 149.977 279.233 null]
 >> endobj
 3172 0 obj <<
-/D [3140 0 R /XYZ 89.664 133.252 null]
+/D [3133 0 R /XYZ 71.731 259.143 null]
 >> endobj
 3173 0 obj <<
-/D [3140 0 R /XYZ 299.943 133.252 null]
+/D [3133 0 R /XYZ 146.371 248.349 null]
 >> endobj
 3174 0 obj <<
-/D [3140 0 R /XYZ 71.731 126.114 null]
+/D [3133 0 R /XYZ 71.731 241.211 null]
 >> endobj
 3175 0 obj <<
-/D [3140 0 R /XYZ 164.608 115.32 null]
+/D [3133 0 R /XYZ 146.371 230.416 null]
 >> endobj
 3176 0 obj <<
-/D [3140 0 R /XYZ 287.74 115.32 null]
+/D [3133 0 R /XYZ 71.731 223.278 null]
 >> endobj
 3177 0 obj <<
-/D [3140 0 R /XYZ 258.748 102.368 null]
+/D [3133 0 R /XYZ 89.465 212.483 null]
 >> endobj
 3178 0 obj <<
-/D [3140 0 R /XYZ 276.999 102.368 null]
+/D [3133 0 R /XYZ 172.096 212.483 null]
 >> endobj
 3179 0 obj <<
-/D [3140 0 R /XYZ 311.022 102.368 null]
+/D [3133 0 R /XYZ 71.731 192.394 null]
 >> endobj
-3139 0 obj <<
-/Font << /F33 1306 0 R /F27 1208 0 R /F23 1201 0 R /F44 2037 0 R >>
-/ProcSet [ /PDF /Text ]
+3180 0 obj <<
+/D [3133 0 R /XYZ 71.731 179.442 null]
 >> endobj
-3182 0 obj <<
-/Length 1898      
-/Filter /FlateDecode
->>
-stream
-xڭXM��6���-�d͈�V/�M�鴇����� [���,������ @��l'���̚A�@ʅr�J����"H�����/����d�����w�p��<	��"�}���"
���b]��}(N�j�� ��P��Sy���y��I�ἔ��ߪ���_�~X��0yޝ^g"Ȃ�*��ut}	9�~������t\�X\A .'��"I��c����|󐻾/̢��AQxJ�b��Rƞ����S}G��j���a�A�!���A���l5v�i �4��Q�f�Xgތ��ח#w����I�ES��x)'^09�p���Nb�d"���������4]���9k�!��������'�Ǣ>���G"����0���V��E7�a����p���Y������Oh��a�U��M42o�
-�����uIJ{M�U��çV��mO��-wЩi�J7$�5��Ec��U�*:U>ҧ5����6�9��c!�H�d �N/n�[:sf����KթG��Oqe��{�sjWwOmB��}��:7��*8��&Z澾��;�/̢�_4��e{�$��k_QC��<aΝ�_�D��T�,z�}�f��yO�
���;D}�}�D�T��{v�a=�H��̼$����H�����)l�[�L.d$�Ȑ�JBz�4���2�B:Dԥ����瞚!h����hF��̀�0�t�K���2�
gus"�9��e:[���E����*uA��ws:���*���#@%IeB���#�� ��� 6�D@ᘛ!6֏��#����(�#��o�?��~(p�����6��Ϭ��@�L�k$H��;�#�|�S w,�`v�A�=�����r�1DP(#��խ������VQ�݌:�L�;q��֬�!��h�o����H)��+��$��Z@�X/��E��t3W7ڐ�ׇ����I"b?�V�u��
-�U�_�=�¸&�D��A}U�$�c �Xd	M�i۟���B��	�Uo�q�u(���|��-i��g�a�;�
�ac�c��Z�:L��@0��Cue�R�-��2�&�<�跘NnSx�̀S��2����]O���XQ�!�y
-i�F���6'��U]g�l�Z��Z��P4�����=x��Q�7U՝�v=sr�Ec��:8=�4��Ϙbq��A���Q5��4+��3�c9}��B�l�I���$}=���A4V�Id��6 ��B�!ݥ���Pڏ<��P�B��՛G�o�>(��V4�m�\���	O-XU�)6O�Gd=�@�,@�;ٙ�kfZq'Ս�284��"�A�Ѱ-ґ6��Ld���	�����/�m�+;��&*
xC[��B<��m��a:�~բ3�Zf��c�����e;�&�33����a�_q���v����ZYo�P
7bM��5{�Ah�&�X��U��8�m��ۢ�Lg�f|�tl{v�?����Y�tREK�f�L�G�;��-�CGs���6��x%����qu�o0�.�T�Mqļ.H�6�1(/�y��Z7�v�d�-�pt��Nj��@L0�Vm�ܪ���Ա�j���ݫ���:R�����3-��6�B\������a<�黑@�Fl�9y��`r/�;^{S�F*r�7�\�0��;͘U�"Lc��B@k.��_G/�17Y���@��G���Ɇ����^��+�6h3��#a;��O�M��)��&�������%�D,��n��U2�T�g�6U*���>3i&�JBg٦ɑ���Z�m���٠)\n��A��6�#��ݔ��A�DҁGIj�!��Z�n���L�s�m�y3���2eÿp;6喋onXޑo#òIܺ��%�{�ڣ��U;�;�X#���o=Q�=��J��endstream
-endobj
 3181 0 obj <<
-/Type /Page
-/Contents 3182 0 R
-/Resources 3180 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 3085 0 R
+/D [3133 0 R /XYZ 71.731 174.461 null]
+>> endobj
+3182 0 obj <<
+/D [3133 0 R /XYZ 89.664 153.704 null]
 >> endobj
 3183 0 obj <<
-/D [3181 0 R /XYZ 71.731 729.265 null]
+/D [3133 0 R /XYZ 71.731 151.547 null]
 >> endobj
 3184 0 obj <<
-/D [3181 0 R /XYZ 76.712 708.344 null]
+/D [3133 0 R /XYZ 89.664 135.771 null]
 >> endobj
 3185 0 obj <<
-/D [3181 0 R /XYZ 89.664 690.411 null]
+/D [3133 0 R /XYZ 71.731 107.711 null]
 >> endobj
-3186 0 obj <<
-/D [3181 0 R /XYZ 208.796 690.411 null]
->> endobj
-3187 0 obj <<
-/D [3181 0 R /XYZ 71.731 688.254 null]
+3132 0 obj <<
+/Font << /F33 1322 0 R /F27 1224 0 R /F23 1217 0 R >>
+/ProcSet [ /PDF /Text ]
 >> endobj
 3188 0 obj <<
-/D [3181 0 R /XYZ 89.664 672.478 null]
+/Length 2491      
+/Filter /FlateDecode
+>>
+stream
+xڅ˒�8p�2rU[#ROϜ���n�&���;U��dK�Y�%�����P[V�"A/ @��?1���+[�lwz����w�1�����߼�����V�*pg���s;tV�Еv���&���x��uZ.��w,צ�:9�\U�W��@��,��������������I�<?�e$gK��+)�UX�t�u"���Vv*0�AA
@�+���ެG�����y�$�+�����K�V|>gjo����^��򔞶iY�B]�B}T9�E�����,\�Z�H<0YF)�J1ma�iU�jW�"'��(	��5S8.͗@�ްeeќV��K!���9�w�*��B62Z!u�nұ�MTN_R�z�|=�[� J�J��$�~!+n���������ɂ�
��X)
+��걲�;z�m �
��<���S'�9(@�'�ߘ>�8O�(/4�4CS L�#��6e(h��r^#Y��k��fM4_�x�� E^†���=ח#GO&F]?5Pӛ0�X`���ɐ���i��x�Bz�כ!=���,�����Q�h����x��I�ڳ|<��)�:̳�	�U�H0�/��g,;
+������wG����o=r�����I�|�5I��w���ue�J���kG�\�9P��cZ�:l���*�ťCP�k�pt�+�V��C�1�]BF|�yUFLS����ǘG%H5�m*��
+t\ز��`��H0��`8�ż%piN�b�Q����‡3M
+�'�Q'&���!P�}�&&=��hA�6�yF^-������d���2hE�]h��C��͇A6����D����D��Ӂ��:&��-��Ӑvݽ�_��[)�P��*5��dtU�N�xŰ및1.OfYW���YM��K���/ސ߲m�ןE���um��`�_��q��͗o4��~yZo����ϋ��f���~y~���PsgWR�L;��\��Xw���X��E�z��Gb�ZQ��a.�')�炒�*�w(�胆����)�l�=�������qn��|X���x�R4L��g����S���vj�_�'Iך���c��x`�|$����_
�}*�3�Z4��a��U����2?g�A���4�iT��J�Ω/qН�#���������kAR;�1��r$�N`gpݕ����ɩ2�LE+U��x��$��(r*a��3\�������]C���1�Z�y��n�8��ث\J����Aq�2U_h�Uar;��T�B|�~6ٞ���~:��$���R认g:�=/�z�p�c��K�W�:�H��a::I�<�}������#l�E�#�:�%��Le��N��״�RQLqЍ�:*$vZ(�m0TG�{�
+G��K����F��cA��#��n\1���\eh���Ngb���K�_V�&�ҍ	���%��%��LG�p]�H)�À��Q�N@_u0�Ml�l�%{͎�@S:"��`5��"j�sQRN�
�iM����W�"�Q�R��Q�����eӽ/��&]�o�˷>L-��;s���),�A�&{�neD��ֽ�:�OC'��b~��u92͒�������A�.ln�Vύl�-�!*43���,��B�4~Sz4!����$�B��2[�6አȯ+o���IU����*��er��dq��r.T^K�x@�'L�\�dj�ڬ3�0(��e����u��;��˝�ͅR�5ղu(�:6�@�Ľ��ћ���!Qd�5���uE�]J��-T�k���<c����eq��`��v�9>��,�v���{8wm�(���k�[^o[w���I���d̖]��R�l��6�-��X�{F�f�o�p=�{�3(�/�#��4��+�����$t�۴--��h�6DɊL	�a��Z�ݶ',���>c��{F�6Mb�m�{|��o��	�/��=�����җC�ˁ�$�B��JzW�*-�oZ{�l�is�=S��%&X�N�.Y�����������o4��Ce���V���'�9JZ�����^<����`�&�^�2����t�p��	g�>��L�Ϸ�=̒X�/l�*�G�Os�,}ǖmp��Y�ȓ*�7z�?���q{��,4��:�!������<�@��х>R�
��hz���
+1]Y�f�j��B�����ę�4E-$kA[S��_{,P˪�&���:��j�
�̕��v���>�UcY7��L�ƇL7�L��#���|H�
_�<��,9]l���;��������o�ν�nP&K�^o&�)�Wdur���7�?�A�œ��ұ��M3��Q������]32�dq1��m3N�"��������/��i�"���C#rۇL�B�/X�`ޥ���W�]^���^���
d[l���3�3��q�{uϜ�r�@�_a��|Fn�;E�}u$��?x;���w}ځ�R�Y=��o�-���_��endstream
+endobj
+3187 0 obj <<
+/Type /Page
+/Contents 3188 0 R
+/Resources 3186 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 3090 0 R
 >> endobj
 3189 0 obj <<
-/D [3181 0 R /XYZ 178.191 672.478 null]
+/D [3187 0 R /XYZ 71.731 729.265 null]
+>> endobj
+1504 0 obj <<
+/D [3187 0 R /XYZ 71.731 741.22 null]
 >> endobj
 3190 0 obj <<
-/D [3181 0 R /XYZ 284.412 672.478 null]
+/D [3187 0 R /XYZ 89.664 708.344 null]
 >> endobj
 3191 0 obj <<
-/D [3181 0 R /XYZ 71.731 670.321 null]
+/D [3187 0 R /XYZ 71.731 667.333 null]
 >> endobj
 3192 0 obj <<
-/D [3181 0 R /XYZ 89.664 654.545 null]
+/D [3187 0 R /XYZ 89.664 651.557 null]
 >> endobj
 3193 0 obj <<
-/D [3181 0 R /XYZ 89.664 641.594 null]
+/D [3187 0 R /XYZ 196.642 651.557 null]
 >> endobj
 3194 0 obj <<
-/D [3181 0 R /XYZ 202.639 641.594 null]
+/D [3187 0 R /XYZ 335.629 651.557 null]
 >> endobj
 3195 0 obj <<
-/D [3181 0 R /XYZ 71.731 640.154 null]
+/D [3187 0 R /XYZ 71.731 644.419 null]
 >> endobj
 3196 0 obj <<
-/D [3181 0 R /XYZ 89.664 623.661 null]
+/D [3187 0 R /XYZ 71.731 595.602 null]
 >> endobj
-1491 0 obj <<
-/D [3181 0 R /XYZ 71.731 587.796 null]
+1502 0 obj <<
+/D [3187 0 R /XYZ 71.731 542.864 null]
 >> endobj
-414 0 obj <<
-/D [3181 0 R /XYZ 194.361 548.423 null]
->> endobj
-1492 0 obj <<
-/D [3181 0 R /XYZ 71.731 545.232 null]
->> endobj
-418 0 obj <<
-/D [3181 0 R /XYZ 152.762 513.953 null]
+394 0 obj <<
+/D [3187 0 R /XYZ 210.434 497.61 null]
 >> endobj
 3197 0 obj <<
-/D [3181 0 R /XYZ 71.731 507.826 null]
+/D [3187 0 R /XYZ 71.731 485.439 null]
 >> endobj
 3198 0 obj <<
-/D [3181 0 R /XYZ 188.442 495.024 null]
+/D [3187 0 R /XYZ 71.731 430.058 null]
 >> endobj
 3199 0 obj <<
-/D [3181 0 R /XYZ 71.731 476.927 null]
+/D [3187 0 R /XYZ 510.307 380.409 null]
 >> endobj
 3200 0 obj <<
-/D [3181 0 R /XYZ 71.731 476.927 null]
+/D [3187 0 R /XYZ 71.731 360.32 null]
 >> endobj
 3201 0 obj <<
-/D [3181 0 R /XYZ 71.731 465.944 null]
+/D [3187 0 R /XYZ 71.731 347.368 null]
 >> endobj
 3202 0 obj <<
-/D [3181 0 R /XYZ 91.656 448.199 null]
+/D [3187 0 R /XYZ 71.731 342.387 null]
 >> endobj
 3203 0 obj <<
-/D [3181 0 R /XYZ 71.731 436.08 null]
+/D [3187 0 R /XYZ 89.664 321.63 null]
 >> endobj
 3204 0 obj <<
-/D [3181 0 R /XYZ 71.731 436.08 null]
+/D [3187 0 R /XYZ 131.167 321.63 null]
 >> endobj
 3205 0 obj <<
-/D [3181 0 R /XYZ 71.731 425.285 null]
+/D [3187 0 R /XYZ 264.267 321.63 null]
 >> endobj
 3206 0 obj <<
-/D [3181 0 R /XYZ 91.656 407.352 null]
+/D [3187 0 R /XYZ 71.731 319.473 null]
 >> endobj
 3207 0 obj <<
-/D [3181 0 R /XYZ 365.427 407.352 null]
+/D [3187 0 R /XYZ 89.664 303.697 null]
 >> endobj
 3208 0 obj <<
-/D [3181 0 R /XYZ 71.731 395.233 null]
+/D [3187 0 R /XYZ 131.167 303.697 null]
 >> endobj
 3209 0 obj <<
-/D [3181 0 R /XYZ 71.731 395.233 null]
+/D [3187 0 R /XYZ 71.731 301.54 null]
 >> endobj
 3210 0 obj <<
-/D [3181 0 R /XYZ 71.731 384.438 null]
+/D [3187 0 R /XYZ 89.664 285.764 null]
 >> endobj
 3211 0 obj <<
-/D [3181 0 R /XYZ 91.656 366.506 null]
+/D [3187 0 R /XYZ 137.624 285.764 null]
 >> endobj
 3212 0 obj <<
-/D [3181 0 R /XYZ 363.424 366.506 null]
+/D [3187 0 R /XYZ 249.794 285.764 null]
 >> endobj
 3213 0 obj <<
-/D [3181 0 R /XYZ 71.731 343.592 null]
+/D [3187 0 R /XYZ 325.929 285.764 null]
 >> endobj
 3214 0 obj <<
-/D [3181 0 R /XYZ 273.602 330.64 null]
->> endobj
-1493 0 obj <<
-/D [3181 0 R /XYZ 71.731 300.588 null]
->> endobj
-422 0 obj <<
-/D [3181 0 R /XYZ 244.6 263.372 null]
+/D [3187 0 R /XYZ 409.704 285.764 null]
 >> endobj
 3215 0 obj <<
-/D [3181 0 R /XYZ 71.731 253.007 null]
+/D [3187 0 R /XYZ 503.781 285.764 null]
 >> endobj
 3216 0 obj <<
-/D [3181 0 R /XYZ 144.965 230.296 null]
+/D [3187 0 R /XYZ 214.493 272.813 null]
 >> endobj
 3217 0 obj <<
-/D [3181 0 R /XYZ 327.322 230.296 null]
+/D [3187 0 R /XYZ 89.664 259.862 null]
+>> endobj
+1503 0 obj <<
+/D [3187 0 R /XYZ 71.731 252.723 null]
+>> endobj
+398 0 obj <<
+/D [3187 0 R /XYZ 176.83 209.626 null]
 >> endobj
 3218 0 obj <<
-/D [3181 0 R /XYZ 107.148 217.345 null]
+/D [3187 0 R /XYZ 71.731 200.803 null]
 >> endobj
 3219 0 obj <<
-/D [3181 0 R /XYZ 134.893 217.345 null]
+/D [3187 0 R /XYZ 71.731 167.977 null]
 >> endobj
 3220 0 obj <<
-/D [3181 0 R /XYZ 71.731 212.264 null]
+/D [3187 0 R /XYZ 71.731 157.083 null]
 >> endobj
 3221 0 obj <<
-/D [3181 0 R /XYZ 311.294 186.461 null]
+/D [3187 0 R /XYZ 71.731 152.102 null]
 >> endobj
 3222 0 obj <<
-/D [3181 0 R /XYZ 71.731 166.371 null]
+/D [3187 0 R /XYZ 89.664 129.287 null]
 >> endobj
 3223 0 obj <<
-/D [3181 0 R /XYZ 120.869 155.577 null]
+/D [3187 0 R /XYZ 71.731 127.13 null]
 >> endobj
 3224 0 obj <<
-/D [3181 0 R /XYZ 319.55 142.625 null]
+/D [3187 0 R /XYZ 89.664 111.354 null]
 >> endobj
 3225 0 obj <<
-/D [3181 0 R /XYZ 448.374 142.625 null]
->> endobj
-1494 0 obj <<
-/D [3181 0 R /XYZ 71.731 122.536 null]
+/D [3187 0 R /XYZ 71.731 96.246 null]
 >> endobj
-3180 0 obj <<
-/Font << /F33 1306 0 R /F27 1208 0 R /F35 1569 0 R /F23 1201 0 R >>
+3186 0 obj <<
+/Font << /F33 1322 0 R /F27 1224 0 R /F35 1589 0 R /F23 1217 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
 3228 0 obj <<
-/Length 2045      
+/Length 2294      
 /Filter /FlateDecode
 >>
 stream
-xڕXK��6��W�]�zZV.i�H��Ҡ���hz�e�RW]Q��E|g8C�,����p83�|� ��?��n�_���:^d���3߿�c�,����o߇�"u�u���繉�.�0p7q����p�sqnd�\��.��ٟ���@/�#�޶K�9�S��X����Żm�;7݄O�gy��…�a�F�>���D��/t7n�f%g�\{�ex��Rӧ:��{�����FKAE���X����GM��DE��������b��ԯ�C��0�],�Fd�IV����*�@;�D{t�@8�M�-#7J��y�oP:Zc4|�^������3�L��ya�{QK�Z�y߸�(u�~��w+uSt�٩����
-d�#y�$�ŀ�,Z�NՏ���*6�@F|��݈�4F�'�&/���@J-��vZ44�*^��� v��BY�3F�?AX�Ta�.@�h��T��ě^�x��cG��L�%��$�9(�j���)�\��M�d��p9EC��ri�q�!��,�OC�VCR$H�';}��jD�U��TDҒ��!�IUV�hz[2<�1\%�4�u�F�"����^[�Q:�%����)��۫�������> ?�װW�ykǮB��BCG��?�؋���1W>]���2�
�6Pra�(�������e�a` V���v�3L��ϵB��8E5�$��6`hv.��#�] ln���)�^F�s7�_Lvs�C��x��'�3����I�HR�IXD|�?[ۈe5��1p�Dn�w��6��^Gs����n^��X����?�H��)��T)����4Ag�5�	�_���(ZpZgp���<���\�B�Z9�!k��0�nD�t�(pD�p��Q��\`��Q@>��F�I3Jkt
��׌�o&�q�}��Kkm;)��B�+\߁�̶\
-�����c���b k���6�:%#|'�.H�Bm�*Q�{�Ђm��i��<7a�,x��M�_�z�O螈Eݿq��	��о�
gu�͌����<�,�Ӽ������]�S�U!J��A�K��3�;�;��Ƽ��b�H�ji���Tڣz�[��=s�����*l�6��H�uɥ��-�M��J��Z�����2O�p�SS����-��7p8��Y>�{"u��3����&�I�&V�H���!!�}�]!~ie+�ew�y�l��bM$�A	Ӆ�"�5�8b���ᑈ�,Ɓ��z`��;�Q��#������ந0Ì�>،�Q���6D�`�Ths)d�^×��wT֙pP��=*��}9U|q�z�c�U-�&\u������ohE�>hQh/6@��M�q�<�
���m.)�-�0��e�(-˃K���f鼲��^6#��Q؋�TzZ�~D�}�7q3��F��"+}7�mw|�nP0�~r�S�X��40��!%Y�J�G����\J���ut)�	%m����`
�t�<�0^H���.}rޅ�^I]�\�p�#B%1>E]XӋ*+�=[@�
1|��[�s'F��QܥW>���
W�ߋ�$�7	�a�Ρ8�]�2\O��A�t�#+?����*��?���`�n�uo!���#Fop.
-����B�q�#�A��]u`��~w���$ ME�]}E���_����S���i�T�4�ԃޥNRpw�p�E�@�2�p�K��\k��\%}��I�m��6�$Е�w
M�hv���#��k�8]������5$~y�1d"�5lY.����%�ɨ��t@!R/C�r�&x�~���ֵ(��m���"�e����9A�h�-���(˕Ғ5wu�	��F39j���.լ�"_�[��ju3~d�zr��2�U/xq��w�G�Ŧ��s��� I�cS'+�쁆��Ƣ.5���\����^����"��+�������(N�C��?�R����Jm^�7(���jwaDp��F����R��Qb{�����������~\��hs�����=�ճyl\/�BP}��z�������endstream
+xڕYK���ϯ0�$#m���沘M��
��b�	dr�%�VF�I��ק�U���	h��b��^��ʅ?����}�x��p��>�����d�
�l&<?n?����*i䯶�U�"v�U�{"	��6�����jzݮ7^�:����TTE��:���Z:��e����������;�c�&���0^�6�+RO>�B
+�ï�?�-x��,�X�͂�TDQ��ȱ�n��n����F,��\
��GM�J��U�o����R:��
+���������u=]�<K}[K��<����=����:
+�A�����E��F�ӧ<��n��ι�Q9��W2�q�h�`1���1�1*����̄��	6.��a��9N��;���x�U���s�}gV�*UO���L��T�D~�Dt�Ɓh��wG�D؍��+��-���Ԕ��Ji��ړ�oFQKu�j��h����}^p�k2��U�-"�`IO�쁾p�lZ]j���\���~C#���*v|��������i�,��Fj�#O��"<7	'�px����K���6>�y��A+�:^���E]���A��V����Z�F+v���w�8�E헶������a'�asg3}�m]�h��N�q���g��e�Z�Q�X����9��g��n�QH�\I����v�#���z�;l,��+��R����^�j��x�װ�7ꌞ�fЁ�:��ެ�\�3ܪ���[����?�
�SC�0MC�g.4[ܲ��t���t߈E�_���M��^{�9C��}[�n���ސi�)5��|A���E�&<s�Y܂7�]�·��F�|c�(��v5$�A��#O�궂�jH_3�%P�@�YDo�E�Y���GoA���i]�G��ۺ�H&$O��I��?��yd�����a
8�V4�w�,8\B/3�� 4�`�Ϊ4�H�Dwu�S��gtyz&ηc���(�U4��]�� _F0m�դA�C�&�@�aBִ3L���ԩΧ�fƯn�n|/��c&E$�0(�l�l�!05�u�i�#^�SB-kIEG�F�}��K��R�Bi�Ŀ噩��[� ��t� !D�$�P����D�f^ӷ�{�2iR�
+fSesT���f�����MU���3�L2\�%4w�<�ﭨ�_��,F<8һ�0
+=_��;�p�uffA���3��zߙt߈Eݯ�!R�.
N�j��:T<S����oD�����09�&.�W�h�6Բ���ĉ:���XA�yRX���]}�iؔ��hm�Ě<To\�S�ǘ��S���ސ����\�^��>
+͍��&�`�T��B4���+�f��5:+04dD�z՟Y�8�t��i&b�j#�'�L��x�������$o�,��5�1s�6�{^�Qw���r�M����y��Un
+�*^Ԑ0�NȰs_�X��.��4�W?��
+3�8sz`9��c`�GbvB��/T�%WY��������L3 ~�5
+#k�_r]P�K��b;z4��A\5�����G��^�ZP�=��
kό��ڔ��[��3���YI��&'VԂ@�򜓺�X*�#���/~����@gw5��_OQ��Z�0ֱ����xo׮Y�5_���;��^�ac��g/ôqw.//��PߵC2 ��@�A�����!$H
+����*�?S
+{%\!=zs����s�VS�
9�os6)fT�#���D�1�;IUk[��=��ˑ����L�{=�7���a:B������ZrۙX�O�?ؐ��A�J��g�c��-��MO(��1�G%~�^Bv�"�x�5��˺��^�B��9�S�w����ӋEUd�B�����M�T�~:X��Lw�T�l�҄�LC��T٧Iz�\~8�n;��Q7����XJn�|1��̕3�e�b�@׻�̒����Blqc��7�V�"��>Ttր�åai�Z�:�޳+���>Plá;<���'q���~�Q�ibk��O��X�R%b�U��*�U�%U�\0��}�
+ �kG1����bY&:��I>fa���T,�>y[7�ܸjf
��;5�+����[�[��Ā�eܧhBwի���E�7T�J�Omn��Ч��,�5*��C���7���Z��i� e(���k`�u/�X|7�W��s�+�z�Z�'�n)ˎqq�w�4~/b6��a���%����lA��+�lf��)�[���$"��s����X$AaʜS��'amZ�M���觶 ���Y�~��D��bN ��a�^�8�endstream
 endobj
 3227 0 obj <<
 /Type /Page
 /Contents 3228 0 R
 /Resources 3226 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 3085 0 R
+/Parent 3090 0 R
 >> endobj
 3229 0 obj <<
 /D [3227 0 R /XYZ 71.731 729.265 null]
 >> endobj
 3230 0 obj <<
-/D [3227 0 R /XYZ 71.731 741.22 null]
+/D [3227 0 R /XYZ 89.664 708.344 null]
 >> endobj
-426 0 obj <<
-/D [3227 0 R /XYZ 242.592 707.841 null]
+402 0 obj <<
+/D [3227 0 R /XYZ 194.2 658.108 null]
 >> endobj
 3231 0 obj <<
-/D [3227 0 R /XYZ 71.731 697.476 null]
->> endobj
-1495 0 obj <<
-/D [3227 0 R /XYZ 71.731 685.559 null]
->> endobj
-430 0 obj <<
-/D [3227 0 R /XYZ 215 653.246 null]
+/D [3227 0 R /XYZ 71.731 649.285 null]
 >> endobj
 3232 0 obj <<
-/D [3227 0 R /XYZ 71.731 644.608 null]
+/D [3227 0 R /XYZ 71.731 621.441 null]
 >> endobj
 3233 0 obj <<
-/D [3227 0 R /XYZ 71.731 627.178 null]
+/D [3227 0 R /XYZ 71.731 606.497 null]
 >> endobj
 3234 0 obj <<
-/D [3227 0 R /XYZ 361.806 616.384 null]
+/D [3227 0 R /XYZ 71.731 557.446 null]
 >> endobj
 3235 0 obj <<
-/D [3227 0 R /XYZ 490.942 603.432 null]
+/D [3227 0 R /XYZ 71.731 543.055 null]
 >> endobj
 3236 0 obj <<
-/D [3227 0 R /XYZ 71.731 590.481 null]
+/D [3227 0 R /XYZ 71.731 538.073 null]
 >> endobj
 3237 0 obj <<
-/D [3227 0 R /XYZ 71.731 570.391 null]
+/D [3227 0 R /XYZ 89.664 516.599 null]
 >> endobj
 3238 0 obj <<
-/D [3227 0 R /XYZ 320.794 559.597 null]
+/D [3227 0 R /XYZ 71.731 514.442 null]
 >> endobj
 3239 0 obj <<
-/D [3227 0 R /XYZ 71.731 552.459 null]
+/D [3227 0 R /XYZ 89.664 498.666 null]
 >> endobj
 3240 0 obj <<
-/D [3227 0 R /XYZ 89.664 531.701 null]
+/D [3227 0 R /XYZ 71.731 496.509 null]
 >> endobj
 3241 0 obj <<
-/D [3227 0 R /XYZ 219.624 531.701 null]
+/D [3227 0 R /XYZ 89.664 480.733 null]
 >> endobj
 3242 0 obj <<
-/D [3227 0 R /XYZ 71.731 516.593 null]
+/D [3227 0 R /XYZ 71.731 441.779 null]
 >> endobj
 3243 0 obj <<
-/D [3227 0 R /XYZ 89.664 500.817 null]
+/D [3227 0 R /XYZ 89.664 423.946 null]
+>> endobj
+1505 0 obj <<
+/D [3227 0 R /XYZ 71.731 403.857 null]
+>> endobj
+406 0 obj <<
+/D [3227 0 R /XYZ 150.026 360.759 null]
 >> endobj
 3244 0 obj <<
-/D [3227 0 R /XYZ 134.39 500.817 null]
+/D [3227 0 R /XYZ 71.731 348.321 null]
 >> endobj
 3245 0 obj <<
-/D [3227 0 R /XYZ 109.868 487.866 null]
+/D [3227 0 R /XYZ 366.767 339.2 null]
 >> endobj
 3246 0 obj <<
-/D [3227 0 R /XYZ 71.731 485.709 null]
+/D [3227 0 R /XYZ 395.819 339.2 null]
 >> endobj
 3247 0 obj <<
-/D [3227 0 R /XYZ 89.664 469.933 null]
+/D [3227 0 R /XYZ 396.191 313.297 null]
+>> endobj
+1506 0 obj <<
+/D [3227 0 R /XYZ 71.731 298.189 null]
+>> endobj
+410 0 obj <<
+/D [3227 0 R /XYZ 235.992 260.973 null]
 >> endobj
 3248 0 obj <<
-/D [3227 0 R /XYZ 192.792 469.933 null]
+/D [3227 0 R /XYZ 71.731 250.831 null]
 >> endobj
 3249 0 obj <<
-/D [3227 0 R /XYZ 384.02 469.933 null]
+/D [3227 0 R /XYZ 260.965 240.849 null]
 >> endobj
 3250 0 obj <<
-/D [3227 0 R /XYZ 114.012 456.982 null]
->> endobj
-1496 0 obj <<
-/D [3227 0 R /XYZ 71.731 434.067 null]
->> endobj
-434 0 obj <<
-/D [3227 0 R /XYZ 172.607 398.6 null]
+/D [3227 0 R /XYZ 154.091 227.897 null]
 >> endobj
 3251 0 obj <<
-/D [3227 0 R /XYZ 71.731 389.963 null]
+/D [3227 0 R /XYZ 71.731 220.759 null]
 >> endobj
 3252 0 obj <<
-/D [3227 0 R /XYZ 389.41 379.671 null]
+/D [3227 0 R /XYZ 220.591 209.965 null]
 >> endobj
 3253 0 obj <<
-/D [3227 0 R /XYZ 458.937 379.671 null]
+/D [3227 0 R /XYZ 71.731 202.826 null]
 >> endobj
 3254 0 obj <<
-/D [3227 0 R /XYZ 71.731 361.639 null]
+/D [3227 0 R /XYZ 89.664 182.069 null]
 >> endobj
 3255 0 obj <<
-/D [3227 0 R /XYZ 176.467 335.836 null]
->> endobj
-1597 0 obj <<
-/D [3227 0 R /XYZ 71.731 318.735 null]
->> endobj
-438 0 obj <<
-/D [3227 0 R /XYZ 249.377 281.52 null]
+/D [3227 0 R /XYZ 299.943 182.069 null]
 >> endobj
 3256 0 obj <<
-/D [3227 0 R /XYZ 71.731 271.155 null]
+/D [3227 0 R /XYZ 71.731 174.931 null]
 >> endobj
 3257 0 obj <<
-/D [3227 0 R /XYZ 133.174 261.395 null]
+/D [3227 0 R /XYZ 164.608 164.136 null]
 >> endobj
 3258 0 obj <<
-/D [3227 0 R /XYZ 311.772 261.395 null]
+/D [3227 0 R /XYZ 287.74 164.136 null]
 >> endobj
 3259 0 obj <<
-/D [3227 0 R /XYZ 175.111 248.444 null]
+/D [3227 0 R /XYZ 258.748 151.185 null]
 >> endobj
 3260 0 obj <<
-/D [3227 0 R /XYZ 71.731 228.354 null]
->> endobj
-1598 0 obj <<
-/D [3227 0 R /XYZ 71.731 215.403 null]
->> endobj
-442 0 obj <<
-/D [3227 0 R /XYZ 201.18 183.089 null]
+/D [3227 0 R /XYZ 276.999 151.185 null]
 >> endobj
 3261 0 obj <<
-/D [3227 0 R /XYZ 71.731 174.451 null]
+/D [3227 0 R /XYZ 311.022 151.185 null]
 >> endobj
 3262 0 obj <<
-/D [3227 0 R /XYZ 165.864 164.16 null]
+/D [3227 0 R /XYZ 76.712 133.252 null]
 >> endobj
 3263 0 obj <<
-/D [3227 0 R /XYZ 71.731 151.109 null]
+/D [3227 0 R /XYZ 89.664 115.32 null]
 >> endobj
-3226 0 obj <<
-/Font << /F33 1306 0 R /F23 1201 0 R /F27 1208 0 R /F35 1569 0 R >>
-/ProcSet [ /PDF /Text ]
+3264 0 obj <<
+/D [3227 0 R /XYZ 208.796 115.32 null]
 >> endobj
-3266 0 obj <<
-/Length 2678      
-/Filter /FlateDecode
->>
-stream
-xڝkoܸ�{~��E�=WR�)v��w�Ը�P�"�W\�I\H����(Q�p�€9
g���^�^d���0D��ҋu�&�x�/}
-ť�\:4Wwo�}���/V����"	?��,��<�.��y�[�t������}?�M�V=���QW�E�=���k����/o>ݍ��8�<~Q=Ks�_�O��m�'	�����!��Y�}Q�F��>Gٴ0���?���m���<;[�@��	2��ӟA��'�G�1C�BXV��VϺކǫ�X�f�^w��ְ(�	�ژ�b��S�(����a?����X��E���N[�vPU��.�ԓ/?Qꩺ*y�G[�M�\��[oU�փl �4�{Z��`�6��-S����Z�>��u*����|��H��Q�k�8�vCeڟ���b�ą�� �u���r�g�1���t#0P�3�f���?�����|����C�c��V��_�^~�?�<��ABu��~���s�"r�}<H�=�\��QD	��HZ�Oe%��0j�mt;L�;`��4���v����k%�ĩ�����2a1�f/���bhy/#�)F!�f1:���Gd�����K�]�A?�Qb�v>�ؒ����k��*^���jA�Tf�!*�6��o��V�_���u�AX�h�b�Ѱ������.�8�:S��C/m�KV"�@�L엌x�V����v��&"��۷l�o��;0�C0�$��T�>�g��@�a��<G��Hቫ��M���=deo�A�4O>C7��V�A�?�����:]���[��4�c�'*�M�<
-V���A���մug��A���zr
-��U8��$5pYiڷ��!�p��4���ĆK��x^��#Z�D�V���טN��4�ix�D`^[[Pʛ��.5�V�X󼛂�z]!�����|c+��:��&�������y�qZ1��1�<�u�׃��p�۽E��-`v���]�\`E�/B�\��=��%1uo�
-� {@aq�U�-.D7���0X�z���K
-X<lA8�:M\��7���e��N�}
v�en� +*B3����d=�1���	�FR
-��'���''fx��Q4��=C�چ���, j����>Nfa�|[ƏLٓZ��&}T�iDic%4����A���LVR�B�Ó��B�w�X�-b��jj�m�
-�f��w<�pL�Suz��Ʈ@'ʢ�z�/�gQL�Y��0~zr򳐎?�M�h!�T2�_{�m�"�M*�����d�ˀ3�8N��Rfy�7&,p��=յ��6<r�ER�1NF��i����(6���i�����b�)0�8�����r��	�Q��-���;�נ�ǻ=��G�T��r�j�7Qh�Vp	��T?�ƀ_�ʅ�v�$\�y!�N�p�e
���j����;mgx�$C��]͞Ӓ�b���4<�`��%wF�K�h�89��um	=��2��"�gU���
-T��(�,8Y;I$_���֞�O��~��!���V�c?��(ig�yH�S�tz��.��Bfߋ��)���h��[��=jd�2)s+.�d���$�,�ݨ?(}��2���F���n����oP_`H���tb'y�N�A��*�����?���qsh�4� �}��
-a��xv��]�\b6�D��#8�ʒ���c[�Vp�mj���V'�	6�4�f�R9[�(6ԏ�15�8��`Ń#�())*
5,�Qd!p��f������)�<�K
-��w�,�P#�&���>��N���!Q��Qw��Nt
p�^�w����Rj�hIǒ���
-�����r7����k����ٖq%4ĉ��_�?=�fW���ћ�~Œ$���-�*�����P�@�<%M����<�a�Ԁ�|��E˷�Z�Z���V�uoQf�C�=��SI����f0��;���e/_q}B-�-��P����.U�w�)�w958����qpD�A-�-%�R=�M�ճ\D�|MݘR�������Qb�z�Z�^����j�-V(
-�+q-lXP^LOR&��M��ʧ.�W{*��^	��Mڭ�YH�r�ܙ�c@����d\c��!�mUTŷ$9��)V��Z��F�#�u�k�@.�X���q�øJ[�z�8�1ɛI����Y�W��?��EK�'��V)�x_�����[�t`k�U�}�}�����Xѽ��F�{�y�K��2(L��������Z=P_��@�ȓ�ܮ8��8��
-u�۪{=Te�16_�>�o6<J��8�:��5�c���'�<�P%�h���Ă�uW��X^LQy
-TZ�^%���O~����	�,�pF�O+�B1����m
���D�eH�;��z�I����Rn!3�A̡�ن���qN�����ٲX����h,��R�n3Эc�����=O6$�W=�&T�©&ݖB<�V)v��ȱ�B_��Ն��W\赾���Vr�s�g�!*���޴덙��p�S�1z'ťG�^�0�wQ��6Z*8��Mb>���w0Rg��=���0�� �7V�|��u!�s�]��edn>�^�\����^��Z�
�W��P���Ԑs�Zgz��d\��_��6��<�^�Yz"9�U:�r�,�F����X��(iendstream
-endobj
 3265 0 obj <<
-/Type /Page
-/Contents 3266 0 R
-/Resources 3264 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 3309 0 R
+/D [3227 0 R /XYZ 71.731 113.163 null]
 >> endobj
-3267 0 obj <<
-/D [3265 0 R /XYZ 71.731 729.265 null]
+3266 0 obj <<
+/D [3227 0 R /XYZ 89.664 97.387 null]
 >> endobj
-446 0 obj <<
-/D [3265 0 R /XYZ 142.614 708.344 null]
+3267 0 obj <<
+/D [3227 0 R /XYZ 178.191 97.387 null]
 >> endobj
 3268 0 obj <<
-/D [3265 0 R /XYZ 71.731 703.158 null]
->> endobj
-450 0 obj <<
-/D [3265 0 R /XYZ 166.016 639.601 null]
+/D [3227 0 R /XYZ 284.412 97.387 null]
 >> endobj
 3269 0 obj <<
-/D [3265 0 R /XYZ 71.731 632.523 null]
->> endobj
-3270 0 obj <<
-/D [3265 0 R /XYZ 511.114 621.669 null]
+/D [3227 0 R /XYZ 71.731 95.23 null]
 >> endobj
-3271 0 obj <<
-/D [3265 0 R /XYZ 106.042 608.717 null]
+3226 0 obj <<
+/Font << /F33 1322 0 R /F27 1224 0 R /F23 1217 0 R /F44 2069 0 R /F35 1589 0 R >>
+/ProcSet [ /PDF /Text ]
 >> endobj
 3272 0 obj <<
-/D [3265 0 R /XYZ 71.731 601.579 null]
->> endobj
-454 0 obj <<
-/D [3265 0 R /XYZ 156.761 570.859 null]
+/Length 1833      
+/Filter /FlateDecode
+>>
+stream
+xڭXK��6���-��fD��Kf�i:�����4=�m�+���l}�Ïm��ٙ	��	~��Z.|���T�4�O�� ��Ӄ�8�ȏ�5֬���|�<����\�I�������i�,�����:w�Y����BA���T�e�>��C���៲������?l�q��<_]^g"Ȃ�:�E��[�au��3FѰ� ��:Nw��e�H�h1��|]~�<�U�f��O{�N�z�QS�ju��Ҳ~jg��ת�P�
�ۣ髂���eݙ�������V�M���2�tӖ�&A |��S�S�o�+�Z]���L��k/�}��P���`�!Rk����)·�/b��
+����+�[[�e��*��s�n�haM.N��9IS%��eT����%���r��?���Qt��Y���Lb��$�F���b�b|��B�Z���hHTc�M��������u�j��:φ�k�Z낧w�~�z����]yA
+a�1Ff7s����\ ��BFp���Z��}������
+��[�y�[�w��A��whG3��h����R91 ������T�k7qr����*���ÁQL�
+�0`��t�Fs�3�5����K�d"�) ��O\���<��@D9���i$���wb�
+��I�qU���!�^����]uCf���R|�;8
��Y;��3�'?�7ȍ�5�	=�����@�Z����>�������:�k	;
b�:�Pu��D=J����VQ���u�����٩!�G5�Y�C0�Qk��a	`�ʑS�����Y����ް���Y7�z3M����ׇ����B��7�h�nxY���l��p\�iP_t;���0YB����zU�_���#c7��2��^<��M�tGj�3�pyۖǰ1�1�^�Y��\&�h(��R��T0.�`�?�W���^x;�vZ�(�����o;j�4Ċ�-�Ls]��lM�rj{��ݶ.ʎ���Y��O�4��GoN��|��j��+'�\��,i��H�ZP��9��t��O��n�A�y9f����o-Q 4���H}&��y
.��
lY��
u�(��`�p�1�ה�#�)������~���E}W��p��G�"��"N�l���y��6Y�O��I׮�"(�)�f���;eph�5�����hA����vY �K���� 'Dck�ƒ�(w��n2%MT���`7J<	Ŷ���޿n��-�I�1�׉X��eOVMgW2�퍂m�~�U$��[b�)����CE܈5Ih���;B�59ǚ����Y�Jީ�2����ૣk۱��>C��z�V
��2�O:��uK�P���DsX��v���z!����q��%>`�,�xku¼.H���9(/�y����Ԟb���pv��Nz��@L0�Nm��U���*+^��������>Q��0�`#g��.�B\'�%����̦�F�����h����W���M-�ș�x�f`��Owͬ2a��M���Zrxd����vl
+dX�C��L���@�[��˝1�&l�6c=�c�[@��~p|�����Njv�c�-P�H�2���)�%3I�~��M[�g6M�_H8ٶDr$�/��Y�-{������4m�آ�P������� $���$���h�޶�۩�۹��$�%�ӹ�2e�_x�rk�on8ޑ#Nò�NYA'��� �`���gtb&����=iFGr��|�H��>~f~պg���s<|)7�e��<���<��Y����7�L_�9tT��54�'�8#6����6�=�d5]�endstream
+endobj
+3271 0 obj <<
+/Type /Page
+/Contents 3272 0 R
+/Resources 3270 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 3090 0 R
 >> endobj
 3273 0 obj <<
-/D [3265 0 R /XYZ 71.731 563.661 null]
+/D [3271 0 R /XYZ 71.731 729.265 null]
 >> endobj
 3274 0 obj <<
-/D [3265 0 R /XYZ 71.731 539.975 null]
+/D [3271 0 R /XYZ 71.731 741.22 null]
 >> endobj
 3275 0 obj <<
-/D [3265 0 R /XYZ 266.731 539.975 null]
+/D [3271 0 R /XYZ 89.664 708.344 null]
 >> endobj
 3276 0 obj <<
-/D [3265 0 R /XYZ 71.731 514.072 null]
+/D [3271 0 R /XYZ 89.664 695.392 null]
 >> endobj
 3277 0 obj <<
-/D [3265 0 R /XYZ 71.731 506.934 null]
+/D [3271 0 R /XYZ 202.639 695.392 null]
 >> endobj
 3278 0 obj <<
-/D [3265 0 R /XYZ 244.236 483.188 null]
+/D [3271 0 R /XYZ 71.731 693.953 null]
 >> endobj
 3279 0 obj <<
-/D [3265 0 R /XYZ 397.391 483.188 null]
+/D [3271 0 R /XYZ 89.664 677.46 null]
+>> endobj
+1507 0 obj <<
+/D [3271 0 R /XYZ 71.731 641.594 null]
+>> endobj
+414 0 obj <<
+/D [3271 0 R /XYZ 194.361 602.222 null]
+>> endobj
+1508 0 obj <<
+/D [3271 0 R /XYZ 71.731 599.03 null]
+>> endobj
+418 0 obj <<
+/D [3271 0 R /XYZ 152.762 567.751 null]
 >> endobj
 3280 0 obj <<
-/D [3265 0 R /XYZ 111.017 470.237 null]
+/D [3271 0 R /XYZ 71.731 561.624 null]
 >> endobj
 3281 0 obj <<
-/D [3265 0 R /XYZ 279.62 470.237 null]
+/D [3271 0 R /XYZ 188.442 548.822 null]
 >> endobj
 3282 0 obj <<
-/D [3265 0 R /XYZ 71.731 457.285 null]
+/D [3271 0 R /XYZ 71.731 530.725 null]
 >> endobj
 3283 0 obj <<
-/D [3265 0 R /XYZ 345.153 457.285 null]
+/D [3271 0 R /XYZ 71.731 530.725 null]
 >> endobj
 3284 0 obj <<
-/D [3265 0 R /XYZ 71.731 450.147 null]
+/D [3271 0 R /XYZ 71.731 519.742 null]
 >> endobj
 3285 0 obj <<
-/D [3265 0 R /XYZ 226.957 426.401 null]
+/D [3271 0 R /XYZ 91.656 501.997 null]
 >> endobj
 3286 0 obj <<
-/D [3265 0 R /XYZ 485.41 426.401 null]
+/D [3271 0 R /XYZ 71.731 489.878 null]
 >> endobj
 3287 0 obj <<
-/D [3265 0 R /XYZ 71.731 406.311 null]
+/D [3271 0 R /XYZ 71.731 489.878 null]
 >> endobj
 3288 0 obj <<
-/D [3265 0 R /XYZ 109.396 395.517 null]
+/D [3271 0 R /XYZ 71.731 479.083 null]
 >> endobj
 3289 0 obj <<
-/D [3265 0 R /XYZ 143.754 395.517 null]
+/D [3271 0 R /XYZ 91.656 461.151 null]
 >> endobj
 3290 0 obj <<
-/D [3265 0 R /XYZ 388.886 395.517 null]
+/D [3271 0 R /XYZ 365.427 461.151 null]
 >> endobj
 3291 0 obj <<
-/D [3265 0 R /XYZ 134.644 382.565 null]
+/D [3271 0 R /XYZ 71.731 449.031 null]
 >> endobj
 3292 0 obj <<
-/D [3265 0 R /XYZ 226.941 382.565 null]
+/D [3271 0 R /XYZ 71.731 449.031 null]
 >> endobj
 3293 0 obj <<
-/D [3265 0 R /XYZ 71.731 369.614 null]
+/D [3271 0 R /XYZ 71.731 438.237 null]
 >> endobj
 3294 0 obj <<
-/D [3265 0 R /XYZ 146.719 369.614 null]
+/D [3271 0 R /XYZ 91.656 420.304 null]
 >> endobj
 3295 0 obj <<
-/D [3265 0 R /XYZ 71.731 364.513 null]
+/D [3271 0 R /XYZ 363.424 420.304 null]
 >> endobj
 3296 0 obj <<
-/D [3265 0 R /XYZ 71.731 318.64 null]
+/D [3271 0 R /XYZ 71.731 397.39 null]
 >> endobj
 3297 0 obj <<
-/D [3265 0 R /XYZ 71.731 318.64 null]
+/D [3271 0 R /XYZ 273.602 384.438 null]
+>> endobj
+1509 0 obj <<
+/D [3271 0 R /XYZ 71.731 354.386 null]
+>> endobj
+422 0 obj <<
+/D [3271 0 R /XYZ 244.6 317.171 null]
 >> endobj
 3298 0 obj <<
-/D [3265 0 R /XYZ 257.935 307.846 null]
+/D [3271 0 R /XYZ 71.731 306.806 null]
 >> endobj
 3299 0 obj <<
-/D [3265 0 R /XYZ 439.391 294.894 null]
+/D [3271 0 R /XYZ 144.965 284.095 null]
 >> endobj
 3300 0 obj <<
-/D [3265 0 R /XYZ 146.138 281.943 null]
+/D [3271 0 R /XYZ 327.322 284.095 null]
 >> endobj
 3301 0 obj <<
-/D [3265 0 R /XYZ 222.467 281.943 null]
+/D [3271 0 R /XYZ 107.148 271.143 null]
 >> endobj
 3302 0 obj <<
-/D [3265 0 R /XYZ 281.244 268.991 null]
+/D [3271 0 R /XYZ 134.893 271.143 null]
 >> endobj
 3303 0 obj <<
-/D [3265 0 R /XYZ 435.614 268.991 null]
+/D [3271 0 R /XYZ 71.731 266.062 null]
 >> endobj
 3304 0 obj <<
-/D [3265 0 R /XYZ 71.731 261.853 null]
->> endobj
-458 0 obj <<
-/D [3265 0 R /XYZ 154.051 231.133 null]
+/D [3271 0 R /XYZ 311.294 240.259 null]
 >> endobj
 3305 0 obj <<
-/D [3265 0 R /XYZ 71.731 224.055 null]
+/D [3271 0 R /XYZ 71.731 220.169 null]
 >> endobj
 3306 0 obj <<
-/D [3265 0 R /XYZ 71.731 167.208 null]
+/D [3271 0 R /XYZ 120.869 209.375 null]
 >> endobj
 3307 0 obj <<
-/D [3265 0 R /XYZ 71.731 167.208 null]
+/D [3271 0 R /XYZ 319.55 196.423 null]
 >> endobj
 3308 0 obj <<
-/D [3265 0 R /XYZ 71.731 136.324 null]
+/D [3271 0 R /XYZ 448.374 196.423 null]
 >> endobj
-3264 0 obj <<
-/Font << /F33 1306 0 R /F48 2049 0 R /F27 1208 0 R >>
+1510 0 obj <<
+/D [3271 0 R /XYZ 71.731 176.334 null]
+>> endobj
+426 0 obj <<
+/D [3271 0 R /XYZ 242.592 139.118 null]
+>> endobj
+3309 0 obj <<
+/D [3271 0 R /XYZ 71.731 128.753 null]
+>> endobj
+1511 0 obj <<
+/D [3271 0 R /XYZ 71.731 116.837 null]
+>> endobj
+3270 0 obj <<
+/Font << /F33 1322 0 R /F27 1224 0 R /F23 1217 0 R /F35 1589 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
 3312 0 obj <<
-/Length 2050      
+/Length 2177      
 /Filter /FlateDecode
 >>
 stream
-xڍ]��6�=�b��*{��ݥM��M�䢪j���B�����w��IN�=��c�x�M��/\lB��v�Z'��z,���I(WBr5���}��u-v�n-n��8�M�[l"�o�����^��M��RI�E>��YU�E��>0����EY��߷�<��v��D���+����oG��5���1��[?�C����w��ŗ�J<�R<�6��`q�1��`+���V�3��{D ������_����z��ψ5�a�-3>A�Q	<-�m+���mE-�䆁����^��ΈDwKxGa���a��3m��}k+Fv������2L�^�
���AP�.	I$��ZG���� U'�����~���e8�-iP�:�M��'���4AQ`b9�'3.�?ݛLv����=h��]?���0ˆII�0g���-��p%��X�
-��/?�+ؖ�+�;�O�11�Pil]���c�����'��$8�`(���t-���k۟��u}p���h�8��Y�V8��N�	u�zԎk�v&/��EȢ�l2w��VMiz���L��n8�������;����{�敩����2p�@��#�M�K��}�i~�� �l��IjXKjxo�=�"��?��
'��8լ��>0��=%�c��"FA�x��R]S���5�7��)�! ��S/N%�y�9��seG�$����{�4���g�F�B�_I��D��hMe���n6��/y qj��`B�AO��h�nĠ�`�꒜���>��|���f75  �e7^��_�|�#��<�b�K��׬x6Z�'��)(��j����1��w�;F`�F�nP��Zg�EvĪTv�;~d�p�X'rg���j�����%Ofv_'.�@���?;�>AS]Sf���)��^@!w�U �&1�$��|�&�H�pf&�V�3s�*�sR�UJ"MA#���%`��ީ��I��@�����ىY�ng�Fu�D�;�W��
-�#�k!�r��cN��"�NN.X�_0F�
ȰɐK��yJg���J2��:
nףH$CM��C.��J��<�ʙT�i���	,���[��A�MY��
��S��C��
���09�sqM��Ip�?I9Ɇ�02�xB�
Om�/�Xv[��Y�|*K��k��y�B��y��N���q)�a6��+��熧��U2jC%�*׺�ӕ@�"2$���W� �д)�%�������,+%��u���r��H]`i�%n�)��=�ł�N����͍� ���D߭��BJ�9h}��'�np�c�x
���8.d�$���R�c�OT���
-�<:Vv+�^��+��~�����䍴F�HM�k����B�ӽ��K��!7��3��}�-]t��j���B�fU
<\C���Wg��b�5�!��TL�S��;���F-7�X;*}u�Q:��V^4��P�'Nb*]HV	��:�6��ɿ�;b�����"x8߼9/Iɠ��E��݉g���ƛv|����K��Q2�C��h8呭Ky�}�r�T\�0y7�y��˹Z�a�Ԋ�o3�$6��9gG5zV48�=&��و��<eo/]*�5�F�͓���>EY�U��-,����2�/���d��ߺl���5�̑�7��9�7y?e�6n��|��gLR84PŠ2��$�[�"�+��ĺHi�w%���gL_|P���8���EI���7�b�&����'�^'�&^bd�`ܻc]x
ߵ��"�Ǡ:���4��14���9��=:U����uG`zl~��]8Ƨy���tk��c8�f�Mb1b1S�D�,�!�@�'�Ǵ<������Ya��lo��/P+�pϹs�LJW
-d�hD��3^
-oH�rh9��0�\���Y5������!�R�8O�:���%��v�ŝ<aJ�]��9v���9'��/w">��B�:}�Lάcq"���4�Ə��A�6���H��`�����߆��~�If��������[_���}cUendstream
+xڝY[��~�_ᷕQ��Ւ���.�M�AE��ylue�圞���pft��E��`j87��\��|�Vi��~�\��dU\������]�[fَx>����s�r����e��J�|�F�ʒp�?���t��δ�m��^�����R֥zY������˪�������}o;�R�g�S���ο0Z�ʓ�u�������L�*@�����u�X�w���#�g�('�~��tX������ܩr�"K���#
b�C��7k�4���sO�/�C?��ەM��Cs�&��j����gv{I�9�C�zR��v
+N
=�^�� ����$��x��+���v���T4:c�
+�sw.���@Jk��2�;�nj�8�u�x��AS5W��	è�����%&Y]7�< ��^��u�x�������KZe�!  pK�Ά�e�W�M���WvD*kE���7�g�D5��Yu��i��m���\��۰��H���&�5l]�A�HM-&u7�R�Й;7�̑Əvԙl�Q���v�b� 
+�ր��7���?����(��=�@~��@�p���'R�tt�
+���ă�uvN���
X���-�n��r֢��	9? �(A���Ɓ�@؊�c<��p�r��
8�����'�����٥���"�%�Ihq
+hױ�m�����:�q���W6�Qޝ[��^+]��y�Ls�ʐF��ʖs;1l{ʜ�Þ��Ejn%��n�[���VY��ՉJ���[sH�&�W��#R�B���-M�>E"���y���EN������[s#j�Y�5f�Cqk[ν ����Q��2��`CF*���ŀ�r��-0�I*�Hu������6S�n���}@�����_V�{��F�xP��YJԨ��z�>7�8��	.��j ؖ�ꍔ���k��z��ԠR��I�� y��!��77|�{[_���3�h�o�%�_����ˎ39L�f�o&2�4���f�h�
+�����TY��<�z-��p�c����p�ܫZ��o4M�ƑŪ>J�CBޟ!�f��uJ���W�Z��Z�g#�֛��Uػ�:��P�ս< ���a�|h0��p�y�Cf����m}�Ol�Ԣ�(�p�R�`��%]�)W�4��ҡ�$� ~����#����&�	["�ʖ-���b߀#V8�߿Q�b8��/lrG�BT:������;.஬1�L�}�;���%#k�4P,`�}4(�2�`��R�;)�Lxi���԰~�ũ�등����F���*ʂ��&���G�G��;
I��(l���Gr�]fB�3��o(�7K��bK�A�#�G�YS�(��,��崳d��D�r�G��Y�'1>G��>|�c5� VLm7�W[���<�
+��C.u�?��8]hiHIG�nn'_ے���]D�ԉ����ȱO�h��- ]4[���LJ��~�Oλ0:6������P�Oݖ�zY����v�@C�j�V�f!��4�|���[�H��h���~Wx�u�����D�M���x)����M��xGa����`��-��q�ȣ�����*����7�:�Y��K��mpEpk�­���s�63���6�F4گ3`�r�Ěc?xdn��d�V��f��	�x�;E_��/�_p3���>t�w�)�J����e3�xS�HK��t�k8��"��_�X�\�T4�����')DHe��}:0�NXSHv���3P��0b2����dH��ep܊�bA����0P�f��W�c.�
J�B;s�X�{�r/n���vS}U��"������(#��_7ˮ��a�
�ٕ�.�R��E���`��<��`�z�_�d%�U��C%uJ�@;+�IH����ԕ�n��k�QQ����!;��ݬOG
+��k����Z�f"�.�@��ڹ��({�1ˆ#h�=����v/F�}iڋ���Z_d��gޕi��U��T��[`�َ���й"t�g��A� �5i�=u@x�:0W�1,�\;��<]mc_�q6¬�\������n�a�K3���KsB_�I��;�9{���S%�$U��;�M)%�t�ນ�d���e��^[c!-�- ��-3�(E���.#j���@��q|	�����=*,�9�^���_��?�T�O��1���'#	3凢����K�[�
!�_�endstream
 endobj
 3311 0 obj <<
 /Type /Page
 /Contents 3312 0 R
 /Resources 3310 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 3309 0 R
+/Parent 3347 0 R
+/Annots [ 3343 0 R ]
+>> endobj
+3343 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [174.953 204.523 234.728 213.061]
+/Subtype /Link
+/A << /S /GoTo /D (flags-create) >>
 >> endobj
 3313 0 obj <<
 /D [3311 0 R /XYZ 71.731 729.265 null]
 >> endobj
-3314 0 obj <<
-/D [3311 0 R /XYZ 71.731 741.22 null]
+430 0 obj <<
+/D [3311 0 R /XYZ 215 708.344 null]
 >> endobj
-462 0 obj <<
-/D [3311 0 R /XYZ 142.923 708.344 null]
+3314 0 obj <<
+/D [3311 0 R /XYZ 71.731 699.706 null]
 >> endobj
 3315 0 obj <<
-/D [3311 0 R /XYZ 71.731 703.158 null]
+/D [3311 0 R /XYZ 490.942 658.531 null]
 >> endobj
 3316 0 obj <<
-/D [3311 0 R /XYZ 224.195 677.46 null]
+/D [3311 0 R /XYZ 71.731 645.579 null]
 >> endobj
 3317 0 obj <<
-/D [3311 0 R /XYZ 71.731 644.419 null]
->> endobj
-466 0 obj <<
-/D [3311 0 R /XYZ 171.774 613.699 null]
+/D [3311 0 R /XYZ 71.731 625.489 null]
 >> endobj
 3318 0 obj <<
-/D [3311 0 R /XYZ 71.731 606.62 null]
+/D [3311 0 R /XYZ 320.794 614.695 null]
 >> endobj
 3319 0 obj <<
-/D [3311 0 R /XYZ 181.465 595.766 null]
+/D [3311 0 R /XYZ 71.731 607.557 null]
 >> endobj
 3320 0 obj <<
-/D [3311 0 R /XYZ 380.939 595.766 null]
+/D [3311 0 R /XYZ 89.664 586.8 null]
 >> endobj
 3321 0 obj <<
-/D [3311 0 R /XYZ 473.597 595.766 null]
+/D [3311 0 R /XYZ 219.624 586.8 null]
 >> endobj
 3322 0 obj <<
-/D [3311 0 R /XYZ 509.52 595.766 null]
+/D [3311 0 R /XYZ 71.731 571.691 null]
 >> endobj
 3323 0 obj <<
-/D [3311 0 R /XYZ 191.511 582.814 null]
+/D [3311 0 R /XYZ 89.664 555.915 null]
 >> endobj
 3324 0 obj <<
-/D [3311 0 R /XYZ 71.731 575.676 null]
->> endobj
-470 0 obj <<
-/D [3311 0 R /XYZ 224.367 544.956 null]
+/D [3311 0 R /XYZ 134.39 555.915 null]
 >> endobj
 3325 0 obj <<
-/D [3311 0 R /XYZ 71.731 537.878 null]
+/D [3311 0 R /XYZ 109.868 542.964 null]
 >> endobj
 3326 0 obj <<
-/D [3311 0 R /XYZ 71.731 501.121 null]
+/D [3311 0 R /XYZ 71.731 540.807 null]
 >> endobj
 3327 0 obj <<
-/D [3311 0 R /XYZ 71.731 481.031 null]
->> endobj
-474 0 obj <<
-/D [3311 0 R /XYZ 170.649 450.311 null]
+/D [3311 0 R /XYZ 89.664 525.031 null]
 >> endobj
 3328 0 obj <<
-/D [3311 0 R /XYZ 71.731 443.233 null]
+/D [3311 0 R /XYZ 192.792 525.031 null]
 >> endobj
 3329 0 obj <<
-/D [3311 0 R /XYZ 129.576 432.379 null]
+/D [3311 0 R /XYZ 384.02 525.031 null]
 >> endobj
 3330 0 obj <<
-/D [3311 0 R /XYZ 279.855 419.427 null]
+/D [3311 0 R /XYZ 114.012 512.08 null]
+>> endobj
+1512 0 obj <<
+/D [3311 0 R /XYZ 71.731 489.166 null]
+>> endobj
+434 0 obj <<
+/D [3311 0 R /XYZ 172.607 453.699 null]
 >> endobj
 3331 0 obj <<
-/D [3311 0 R /XYZ 349.928 419.427 null]
+/D [3311 0 R /XYZ 71.731 445.061 null]
 >> endobj
 3332 0 obj <<
-/D [3311 0 R /XYZ 71.731 399.338 null]
->> endobj
-478 0 obj <<
-/D [3311 0 R /XYZ 148.701 368.618 null]
+/D [3311 0 R /XYZ 389.41 434.77 null]
 >> endobj
 3333 0 obj <<
-/D [3311 0 R /XYZ 71.731 363.432 null]
+/D [3311 0 R /XYZ 458.937 434.77 null]
 >> endobj
 3334 0 obj <<
-/D [3311 0 R /XYZ 71.731 330.595 null]
->> endobj
-482 0 obj <<
-/D [3311 0 R /XYZ 176.855 299.875 null]
+/D [3311 0 R /XYZ 71.731 416.737 null]
 >> endobj
 3335 0 obj <<
-/D [3311 0 R /XYZ 71.731 292.797 null]
+/D [3311 0 R /XYZ 176.467 390.934 null]
+>> endobj
+1607 0 obj <<
+/D [3311 0 R /XYZ 71.731 373.833 null]
+>> endobj
+438 0 obj <<
+/D [3311 0 R /XYZ 249.377 336.618 null]
 >> endobj
 3336 0 obj <<
-/D [3311 0 R /XYZ 412.374 281.943 null]
+/D [3311 0 R /XYZ 71.731 326.253 null]
 >> endobj
 3337 0 obj <<
-/D [3311 0 R /XYZ 446.453 281.943 null]
+/D [3311 0 R /XYZ 135.508 316.493 null]
 >> endobj
 3338 0 obj <<
-/D [3311 0 R /XYZ 306.765 268.991 null]
+/D [3311 0 R /XYZ 86.373 303.542 null]
 >> endobj
 3339 0 obj <<
-/D [3311 0 R /XYZ 71.731 248.902 null]
->> endobj
-486 0 obj <<
-/D [3311 0 R /XYZ 189.139 218.182 null]
+/D [3311 0 R /XYZ 220.988 303.542 null]
 >> endobj
 3340 0 obj <<
-/D [3311 0 R /XYZ 71.731 211.103 null]
+/D [3311 0 R /XYZ 71.731 283.452 null]
+>> endobj
+1608 0 obj <<
+/D [3311 0 R /XYZ 71.731 270.501 null]
+>> endobj
+442 0 obj <<
+/D [3311 0 R /XYZ 193.206 238.187 null]
 >> endobj
 3341 0 obj <<
-/D [3311 0 R /XYZ 148.158 187.298 null]
+/D [3311 0 R /XYZ 71.731 229.549 null]
 >> endobj
-1599 0 obj <<
-/D [3311 0 R /XYZ 71.731 157.245 null]
+3342 0 obj <<
+/D [3311 0 R /XYZ 247.76 219.258 null]
 >> endobj
-3310 0 obj <<
-/Font << /F33 1306 0 R /F48 2049 0 R /F27 1208 0 R >>
-/ProcSet [ /PDF /Text ]
+1609 0 obj <<
+/D [3311 0 R /XYZ 71.731 199.542 null]
 >> endobj
-3344 0 obj <<
-/Length 2593      
-/Filter /FlateDecode
->>
-stream
-xڝَ�6��o�7W"Ey�s���`1�!,d����%G��������|t�b0�Y,V�&-B�-�H�>:W:����!\�a���`<
-������o��Y�*O�b�[�a��0_�F���ź�5�p(N�떏چ�Q�}W���^5{�?/�`�ߪ���o�>�G�֤*�̫�y���YD�ʭE�9�L�8&��ʔUK�࣫��2����g)
-�=������1�T�s"���k�����=� ��1��;�����f�Àמ���Y<�\h1/��ιf����O�3m/�:׻fp�G��,j`ȣv���{�)M��E覼�/�}�:�岩�
C�=�3��ҫd���2R�w<.��2�x����W�
���A�d4�jBp]5��q���<C{��y9@��i��F];`e�x�ı��}돇_%8���;�== r�o�|.��E���/�)���ୌvC����h�H�q~��1�u��i�H�-m),�=�1��kнɓ!�y��~1B�E�JLF;~n��Q:����7�1d2�&�I5ȷ>���ORgA�,t#�6*�bA�u��B��g౔,��b��d\��D���ί�\f�.1Ѝ��T<���Rۀ�����:��e��������B's˃�e���wÊQ*Ae	p����trE��,�D���ɶh�v�]{'�&�\��7
-����b��;�0\�FHR���+�8w�:�pX	D:{�m��0���}L�
N�7m���b��]b�\E��4�Nж���)E�w2?w���� �bȹa&)�C�f�T��nN�ǟ�J����7���\{1�o�؄�d	h�о=͒H����Z��ƪ8If�ҨI�Z,��'�cE�)�k��%�<����亡r������G�B�v��bs!!�+J)�@���^lM��pQ"��X���/(���
-U��{�Sptw�����B���^��9"
-�N����T{�K�9U:�b�4T�7p.���
-��KF�\]�wM�#%��s�R%��
-��ǖl���qv=u&����Ь��	�Fr���Tu5<�`)�� �R����0x녇0�&�i�S�|�'w�M�{�ȉ��Ik�W���TE����-��O"gp��=��6��`�,=�+����Q	�<�en��~��=:A��S<��c�/���
-<8M�w�����I�g�I�I~r�3����x{Pv�\zl��x���vm+ݿ�|O �����M`:ao�DIj���*���e#iO	���9Ct��TG����i{��ӡ�.������;a[�9��B4��-�
&�̬�X�$�ޕ�����}��rB��'r�(yR�k���	������ȑ0�|{���'�Ǭ�1$��R�@X^��x'6"��`bi�:'�ì��-�_<h/�K(|��g�[��{�Y��?��t��BZ�����\�Ĭ
-��ڃ���M�.S����WW3�lh뚅��0@��>�r�0䉗��""kW�~ù™�ǣ~ݝH��6���w�w�N��z��G��7�be�]f�߉9o�a>x��*����(���ۘѹʬ\-����[�<�����%�ڊgg*8��z�q�Nl ��5��9�(��/k�mȗ��1|�[��*���cP���/��J{�K�	�\�?��H��q�f�'�'(�ڄ�d��)���r�1a��L'�Up�
-� g	���5|\��r`96����JV‹�Ua6�"�
-D(�w&��Y�D�\q�(��Nm!<Xw�;A�,[�S���
-����V��>�ミ���Qԫ��(
-U�篇ф�R	�[at���0�b~/�f�?N=�h�pS��y8�<�䱯�y�u�D8*BvH��8V�s[��	Fc:�so�3߈O\�J3�h D'��u�[�[�D��R�-G��t�[��=��1f�C�
��d�K�	n)��/yN��*�^O�3�<�c��9w���9���xΜ�z���~y/	[…����D�3z�����'��VAX�P���@���	p��6ғ+��vG�
-�^�9�;��)�|���h�
ΰ�@�B�v�D�Y3[�S�Ә�a!P�k���k��ń��f	�+=/ȱa�����6�ڶw��4r�R�eZ	I���;nH�j�r�)8"u�	7)��TI��K��+�6��A��-�*�u�$t��`����-^h)EđDQ���ɸ�^�}K�5��C�E<k�:5z�t�H�+������#��{Ń/���u�D�$[D�qD�����8��A;F�<���3s|�V���k�q�=ӯ
-�q^� �Z�,��S/*�فv��7-=󁲜���o�8T6����L��k�XA#m����yp�y)
-�[y���y����<8��*��aGw'׃l��2����G��0(݀W�ƍ�M|�EPە{l�";o��_2�ŗ�S]<s~����	@�l�ÊǮ?�m%# =�]�<�t�A@!�Ǻ�@��E�ar����V�2�r���C���I~ߛu��cřʢ�U��Pn,ku�B��ab������Y\I�endstream
-endobj
-3343 0 obj <<
-/Type /Page
-/Contents 3344 0 R
-/Resources 3342 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 3309 0 R
-/Annots [ 3372 0 R ]
+446 0 obj <<
+/D [3311 0 R /XYZ 201.18 165.858 null]
 >> endobj
-3372 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [362.68 151.955 419.882 160.867]
-/Subtype /Link
-/A << /S /GoTo /D (edit-values-list) >>
+3344 0 obj <<
+/D [3311 0 R /XYZ 71.731 157.221 null]
 >> endobj
 3345 0 obj <<
-/D [3343 0 R /XYZ 71.731 729.265 null]
->> endobj
-490 0 obj <<
-/D [3343 0 R /XYZ 199.853 708.344 null]
+/D [3311 0 R /XYZ 165.864 146.929 null]
 >> endobj
 3346 0 obj <<
-/D [3343 0 R /XYZ 71.731 699.706 null]
->> endobj
-3347 0 obj <<
-/D [3343 0 R /XYZ 159.666 689.415 null]
->> endobj
-3348 0 obj <<
-/D [3343 0 R /XYZ 71.731 656.374 null]
+/D [3311 0 R /XYZ 71.731 133.878 null]
 >> endobj
-3349 0 obj <<
-/D [3343 0 R /XYZ 118.555 617.81 null]
+3310 0 obj <<
+/Font << /F33 1322 0 R /F23 1217 0 R /F27 1224 0 R /F35 1589 0 R >>
+/ProcSet [ /PDF /Text ]
 >> endobj
 3350 0 obj <<
-/D [3343 0 R /XYZ 232.228 609.345 null]
+/Length 2678      
+/Filter /FlateDecode
+>>
+stream
+xڝkoܸ�{~��E�=WR�)v��w�Ը�P�"�W\�I\H����(Q�p�€9
g���^�^d���0D��ҋu�&�x�/}
+ť�\:4Wwo�}���/V����"	?��,��<�.��y�[�t������}?�M�V=���QW�E�=���k����/o>ݍ��8�<~Q=Ks�_�O��m�'	�������fY�}Q�F��>Gٴ0���?���m���<;[�@��	2��ӟA��'�G�1C�BXV��VϺކǫ�X�f�^w��ְ(�	�ژ�b��S�(����a?����X��E���N[�vPU��.�ԓ/?Qꩺ*y�G[�M�\��[oU�փl �4�{Z��`�6��-S����Z�>��u*����|��H��Q�k�8�vCeڟ���b�ą�� �u���r�g�1���t#0P�3�f���?�����|����C�c��V��_�^~�?�<��ABu��~���s�"r�}<H�=�\��QD	��HZ�Oe%��0j�mt;L�;`��4���v����k%�ĩ�����2a1�f/���bhy/#�)F!�f1:���Gd�����K�]�A?�Qb�v>�ؒ����k��*^���jA�Tf�!*�6��o��V�_���u�AX�h�b�Ѱ������.�8�:S��C/m�KV"�@�L엌x�V����v��&"��۷l�o��;0�C0�$��T�>�g��@�a��<G��Hቫ��M���=deo�A�4O>C7��V�A�?�����:]���[��4�c�'*�M�<
+V���A���մug��A���zr
+��U8��$5pYiڷ��!�p��4���ĆK��x^��#Z�D�V���טN��4�ix�D`^[[Pʛ��.5�V�X󼛂�z]!�����|c+��:��&�������y�qZ1��1�<�u�׃��p�۽E��-`v���]�\`E�/B�\��=��%1uo�
+� {@aq�U�-.D7���0X�z���K
+X<lA8�:M\��7���e��N�}
v�en� +*B3����d=�1���	�FR
+��'���''fx��Q4��=C�چ���, j����>Nfa�|[ƏLٓZ��&}T�iDic%4����A���LVR�B�Ó��B�w�X�-b��jj�m�
+�f��w<�pL�Suz��Ʈ@'ʢ�z�/�gQL�Y��0~zr򳐎?�M�h!�T2�_{�m�"�M*�����d�ˀ3�8N��Rfy�7&,p��=յ��6<r�ER�1NF��i����(6���i�����b�)0�8�����r��	�Q��-���;�נ�ǻ=��G�T��r�j�7Qh�Vp	��T?�ƀ_�ʅ�v�$\�y!�N�p�e
���j����;mgx�$C��]͞Ӓ�b���4<�`��%wF�K�h�89��um	=��2��"�gU���
+T��(�,8Y;I$_���֞�O�B���!���V�c?��(ig�yH�S�tz��.��Bfߋ��)���h��[��=jd�2)s+.�d���$�,�ݨ?(}��2���F���n����oP_`H���tb'y�N�A��*�����?���qsh�4� �}��
+a��xv��]�\b6�D��#8�ʒ���c[�Vp�mj���V'�	6�4�f�R9[�(6ԏ�15�8��`Ń#�())*
5,�Qd!p��f������)�<�K
+��w�,�P#�&���>��N���!Q��Qw��Nt
p�^�w����Rj�hIǒ���
+�����r7����k����ٖq%4ĉ��_�?=�fW���ћ�~Œ$���-�*�����P�@�<%M����<�a�Ԁ�|��E˷�Z�Z���V�uoQf�C�=��SI����f0��;���e/_q}B-�-��P����.U�w�)�w958����qpD�A-�-%�R=�M�ճ\D�|MݘR�������Qb�z�Z�^����j�-V(
+�+q-lXP^LOR&��M��ʧ.�W{*��^	��Mڭ�YH�r�ܙ�c@����d\c��!�mUTŷ$9��)V��Z��F�#�u�k�@.�X���q�øJ[�z�8�1ɛI����Y�W��?��EK�'��V)�x_�����[�t`k�U�}�}�����Xѽ��F�{�y�K��2(L��������Z=P_��@�ȓ�ܮ8��8��
+u�۪{=Te�16_�>�o6<J��8�:��5�c���'�<�P%�h���Ă�uW��X^LQy
+TZ�^%���O~����	�,�pF�O+�B1����m
���D�eH�;��z�I����Rn!3�A̡�ن���qN�����ٲX����h,��R�n3Эc�����=O6$�W=�&T�©&ݖB<�V)v��ȱ�B_��Ն��W\赾���Vr�s�g�!*���޴덙��p�S�1z'ťG�^�0�wQ��6Z*8��Mb>���w0Rg��=���0�� �7V�|��u!�s�]��edn>�^�\����^��Z�
�W��P���Ԑs�Zgz��d\��_��6��<�^�Yz"9�U:�r�,�F����X�܌(mendstream
+endobj
+3349 0 obj <<
+/Type /Page
+/Contents 3350 0 R
+/Resources 3348 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 3347 0 R
 >> endobj
 3351 0 obj <<
-/D [3343 0 R /XYZ 378.496 586.033 null]
+/D [3349 0 R /XYZ 71.731 729.265 null]
 >> endobj
-1600 0 obj <<
-/D [3343 0 R /XYZ 71.731 564.112 null]
->> endobj
-494 0 obj <<
-/D [3343 0 R /XYZ 193.206 535.466 null]
+450 0 obj <<
+/D [3349 0 R /XYZ 142.614 708.344 null]
 >> endobj
 3352 0 obj <<
-/D [3343 0 R /XYZ 71.731 526.828 null]
+/D [3349 0 R /XYZ 71.731 703.158 null]
 >> endobj
 3353 0 obj <<
-/D [3343 0 R /XYZ 247.76 516.537 null]
+/D [3349 0 R /XYZ 71.731 670.321 null]
 >> endobj
-3354 0 obj <<
-/D [3343 0 R /XYZ 159.162 503.585 null]
->> endobj
-1601 0 obj <<
-/D [3343 0 R /XYZ 71.731 476.522 null]
+454 0 obj <<
+/D [3349 0 R /XYZ 166.016 639.601 null]
 >> endobj
-498 0 obj <<
-/D [3343 0 R /XYZ 223.845 433.425 null]
+3354 0 obj <<
+/D [3349 0 R /XYZ 71.731 632.523 null]
 >> endobj
 3355 0 obj <<
-/D [3343 0 R /XYZ 71.731 424.602 null]
+/D [3349 0 R /XYZ 511.114 621.669 null]
 >> endobj
 3356 0 obj <<
-/D [3343 0 R /XYZ 502.556 398.914 null]
->> endobj
-1602 0 obj <<
-/D [3343 0 R /XYZ 71.731 371.228 null]
->> endobj
-502 0 obj <<
-/D [3343 0 R /XYZ 263.709 333.639 null]
+/D [3349 0 R /XYZ 106.042 608.717 null]
 >> endobj
 3357 0 obj <<
-/D [3343 0 R /XYZ 71.731 323.274 null]
+/D [3349 0 R /XYZ 71.731 601.579 null]
+>> endobj
+458 0 obj <<
+/D [3349 0 R /XYZ 156.761 570.859 null]
 >> endobj
 3358 0 obj <<
-/D [3343 0 R /XYZ 89.773 313.514 null]
+/D [3349 0 R /XYZ 71.731 563.661 null]
 >> endobj
 3359 0 obj <<
-/D [3343 0 R /XYZ 71.731 293.425 null]
+/D [3349 0 R /XYZ 71.731 539.975 null]
 >> endobj
 3360 0 obj <<
-/D [3343 0 R /XYZ 327.818 282.63 null]
+/D [3349 0 R /XYZ 266.731 539.975 null]
 >> endobj
 3361 0 obj <<
-/D [3343 0 R /XYZ 71.731 275.492 null]
+/D [3349 0 R /XYZ 71.731 514.072 null]
 >> endobj
 3362 0 obj <<
-/D [3343 0 R /XYZ 81.694 254.735 null]
+/D [3349 0 R /XYZ 71.731 506.934 null]
 >> endobj
 3363 0 obj <<
-/D [3343 0 R /XYZ 81.694 254.735 null]
+/D [3349 0 R /XYZ 244.236 483.188 null]
 >> endobj
 3364 0 obj <<
-/D [3343 0 R /XYZ 390.418 254.735 null]
+/D [3349 0 R /XYZ 397.391 483.188 null]
 >> endobj
 3365 0 obj <<
-/D [3343 0 R /XYZ 513.923 241.783 null]
+/D [3349 0 R /XYZ 111.017 470.237 null]
 >> endobj
 3366 0 obj <<
-/D [3343 0 R /XYZ 71.731 226.675 null]
+/D [3349 0 R /XYZ 279.62 470.237 null]
 >> endobj
 3367 0 obj <<
-/D [3343 0 R /XYZ 81.694 210.899 null]
+/D [3349 0 R /XYZ 71.731 457.285 null]
 >> endobj
 3368 0 obj <<
-/D [3343 0 R /XYZ 81.694 210.899 null]
+/D [3349 0 R /XYZ 345.153 457.285 null]
 >> endobj
 3369 0 obj <<
-/D [3343 0 R /XYZ 71.731 195.791 null]
+/D [3349 0 R /XYZ 71.731 450.147 null]
 >> endobj
 3370 0 obj <<
-/D [3343 0 R /XYZ 81.694 180.015 null]
+/D [3349 0 R /XYZ 226.957 426.401 null]
 >> endobj
 3371 0 obj <<
-/D [3343 0 R /XYZ 81.694 180.015 null]
+/D [3349 0 R /XYZ 485.41 426.401 null]
+>> endobj
+3372 0 obj <<
+/D [3349 0 R /XYZ 71.731 406.311 null]
 >> endobj
 3373 0 obj <<
-/D [3343 0 R /XYZ 71.731 139.004 null]
+/D [3349 0 R /XYZ 109.396 395.517 null]
 >> endobj
 3374 0 obj <<
-/D [3343 0 R /XYZ 81.694 123.228 null]
+/D [3349 0 R /XYZ 143.754 395.517 null]
 >> endobj
 3375 0 obj <<
-/D [3343 0 R /XYZ 81.694 123.228 null]
+/D [3349 0 R /XYZ 388.886 395.517 null]
 >> endobj
 3376 0 obj <<
-/D [3343 0 R /XYZ 71.731 108.119 null]
+/D [3349 0 R /XYZ 134.644 382.565 null]
 >> endobj
-3342 0 obj <<
-/Font << /F33 1306 0 R /F23 1201 0 R /F27 1208 0 R /F44 2037 0 R /F48 2049 0 R >>
-/ProcSet [ /PDF /Text ]
+3377 0 obj <<
+/D [3349 0 R /XYZ 226.941 382.565 null]
 >> endobj
-3379 0 obj <<
-/Length 2154      
-/Filter /FlateDecode
->>
-stream
-xڥYI��F����md๢Ү�zKЃ�H�i`���l��B˒������!�,��2���"��G�d���'W�i� A�v�7���;?��L�a�͈���~
-�U.�$\=�W����Wi�,V��o��cq�T����o˓���u]h��e-������������s/;S�g���EI"�	|��
-~&�(�U�HQg�@�A<?Q�8�F���A8��>�_&E�G����V�Ө���X�w9�d׮��SE���G<�ծ ���DȻ;j�<��RNR��/�ś/G��a2����U�,�����$̻n:A�O�~���U5��8629ٵ� Y��}-c�$�:���V�"B�G�ѹb�Sk:�Q��uT��Ŷr�Za]��8�3� �a>�A�`�˱�;~��:�����+E79q���Ч9_�CK�l"iMT�X�'���-�P�Q�J�@D�m 9�͈�!i��#<�g�c���X$�	D~�=�4����Ȓ|"��6��D[+���mb��
���gsʈ�NNq���^�)s�7r�X�m�UqU��P����93�
-]����;�B@�L�̭���Iz��4B�08g�gܴq��#�
-����}*�esl.4μ�|VE۫I��9�Du�L7vD���&�.��:^ɕ��越�k5��1�c�{uCO�G��
-f��	�,L g@B��(�`^�����1]���a(� z�ͽ�f��"{)��Ȟ	��#韬}���N݈�(��O+ �1T@�L* ̇
-���ɮHFLF�J�8��3��ӂ9U%h��f���ӄ7K*Z��Vg\��,�T��M$�����Id�%�T(<ͼ���()�体
㟴����o�-��kϖ{���{�՞|�N>6U�hʸ@�O��1Ú
-2�K��g^@���a�X�E�̨��U秛�s:$䦶9�B� 8_X���/�!���45)��>���w���B����M(��9���<[�A,��%ґl�E���YT�PHp�Bx�Y�P8�<>e���͠��8��2�=[�R��:U޶�[�Rs�x"2�D���I� ����%���}�(�s�'��ӕ]��m�nKg��V@��EC�Rqʀq�1c�#5e
Xطn�ŖF/jK�-���,��%�A͸t=&�k���R3���Z��:�p�O��<���+|o;kX	=�`p��=8w����ƨ����{`���t��:�=�C���v�vn(�������;z�j�ZUw��6;�Z�Y���JE c�>{�q$�(\���������"�s���w����̷e��dt��}/�hT��(=ٕqF·�Ë�_Ϊ-(�q��
-w�y"*(YP�|te�ɹ�
诉eD)߂+O��6&�QY��s@���B�!��0����"�>��۽u�7K�B��v�"G'(��q�ڋ#ힼ��Y�
-{V�"-M[�;�/�����a�E}��
�W��u:rc�2p��+a����yWͮ�vM�ׇ���\��5Ѭ��h�{��P�s9�ˋ��K��A`�"�G~�>��v����Cͺ�J�er�ʁ�K
�����3͘�AQ'5@�wݭ<aB�M�6���E�u��äe�D}�}�(�DZe=p��bpeR�aq�A�3�v��e� �%���{ͼ���E�����)>�|���ZJIRƚe~�X/���l�}��綜ۥ��Vz���"h
-2W�]V�.ռ�Ga��r��1j!�G��͝.���y����})�AQ�<0�<q��٤�+S�
�]k*
TysN]8P��8c�/�yHZ�ʥֿ�ݯ~�7��8�+�Q�	�ma�j�0>2Ӵ�L���LK���h��=�5���y#{C�o��'Qn��mK��D�5d7{���#�O�T���f#r
-�Q�a�c�����\]�ܵ;,f�T5C�g"�ט+�W���~g�:`=�����B��%�n���M�H6#�E�<c����[}��$�nɺ{��Wʞ�E���9̧�E���j{uܻ��Ru�����9�Dę|l΁�9�U
-�s)�us>�=c����<�ƴ���v����>"�V43O���c?���$��-1�~��ࡣ��5KIe���endstream
-endobj
 3378 0 obj <<
-/Type /Page
-/Contents 3379 0 R
-/Resources 3377 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 3309 0 R
-/Annots [ 3383 0 R 3391 0 R ]
+/D [3349 0 R /XYZ 71.731 369.614 null]
 >> endobj
-3383 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [123.546 680.284 168.378 689.195]
-/Subtype /Link
-/A << /S /GoTo /D (bugreports) >>
->> endobj
-3391 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [202.898 525.211 260.182 532.065]
-/Subtype /Link
-/A << /S /GoTo /D (edit-values-list) >>
+3379 0 obj <<
+/D [3349 0 R /XYZ 146.719 369.614 null]
 >> endobj
 3380 0 obj <<
-/D [3378 0 R /XYZ 71.731 729.265 null]
+/D [3349 0 R /XYZ 71.731 364.513 null]
 >> endobj
 3381 0 obj <<
-/D [3378 0 R /XYZ 81.694 708.344 null]
+/D [3349 0 R /XYZ 71.731 318.64 null]
 >> endobj
 3382 0 obj <<
-/D [3378 0 R /XYZ 81.694 708.344 null]
+/D [3349 0 R /XYZ 71.731 318.64 null]
+>> endobj
+3383 0 obj <<
+/D [3349 0 R /XYZ 257.935 307.846 null]
 >> endobj
 3384 0 obj <<
-/D [3378 0 R /XYZ 71.731 680.284 null]
+/D [3349 0 R /XYZ 439.391 294.894 null]
 >> endobj
 3385 0 obj <<
-/D [3378 0 R /XYZ 81.694 664.508 null]
+/D [3349 0 R /XYZ 146.138 281.943 null]
 >> endobj
 3386 0 obj <<
-/D [3378 0 R /XYZ 81.694 664.508 null]
+/D [3349 0 R /XYZ 222.467 281.943 null]
 >> endobj
 3387 0 obj <<
-/D [3378 0 R /XYZ 71.731 649.4 null]
+/D [3349 0 R /XYZ 281.244 268.991 null]
 >> endobj
 3388 0 obj <<
-/D [3378 0 R /XYZ 81.694 633.624 null]
+/D [3349 0 R /XYZ 435.614 268.991 null]
 >> endobj
 3389 0 obj <<
-/D [3378 0 R /XYZ 81.694 633.624 null]
->> endobj
-1603 0 obj <<
-/D [3378 0 R /XYZ 71.731 597.758 null]
+/D [3349 0 R /XYZ 71.731 261.853 null]
 >> endobj
-506 0 obj <<
-/D [3378 0 R /XYZ 263.064 558.386 null]
+462 0 obj <<
+/D [3349 0 R /XYZ 154.051 231.133 null]
 >> endobj
 3390 0 obj <<
-/D [3378 0 R /XYZ 71.731 548.021 null]
->> endobj
-1604 0 obj <<
-/D [3378 0 R /XYZ 71.731 520.229 null]
+/D [3349 0 R /XYZ 71.731 224.055 null]
 >> endobj
-510 0 obj <<
-/D [3378 0 R /XYZ 271.04 480.956 null]
+3391 0 obj <<
+/D [3349 0 R /XYZ 71.731 167.208 null]
 >> endobj
 3392 0 obj <<
-/D [3378 0 R /XYZ 71.731 470.591 null]
->> endobj
-1605 0 obj <<
-/D [3378 0 R /XYZ 71.731 430.78 null]
->> endobj
-514 0 obj <<
-/D [3378 0 R /XYZ 219.024 387.682 null]
+/D [3349 0 R /XYZ 71.731 167.208 null]
 >> endobj
 3393 0 obj <<
-/D [3378 0 R /XYZ 71.731 375.244 null]
->> endobj
-3394 0 obj <<
-/D [3378 0 R /XYZ 441.444 353.172 null]
+/D [3349 0 R /XYZ 71.731 136.324 null]
 >> endobj
-1606 0 obj <<
-/D [3378 0 R /XYZ 71.731 338.063 null]
->> endobj
-518 0 obj <<
-/D [3378 0 R /XYZ 311.237 300.848 null]
->> endobj
-3395 0 obj <<
-/D [3378 0 R /XYZ 71.731 290.483 null]
+3348 0 obj <<
+/Font << /F33 1322 0 R /F48 2081 0 R /F27 1224 0 R >>
+/ProcSet [ /PDF /Text ]
 >> endobj
 3396 0 obj <<
-/D [3378 0 R /XYZ 189.454 280.723 null]
+/Length 2050      
+/Filter /FlateDecode
+>>
+stream
+xڍ]��6�=�b��*{��ݥM��M�䢪j���B�����w��IN�=��c�x�M��/\lB��v�Z'��z,���I(WBr5���}��u-v�n-n��8�M�[l"�o�����^��M��RI�E>��YU�E��>0����EY��߷�<��v��D���+����oG��5���1��[?��@��ֻN���R%�A)��V�q{��
+��w~����t+�Eރ="{Uq�{��/���u��e�g��0֖�� Ҩ��޶��[󶢖cr��Te��t��tgD���
+��0�z�0�ؙ�c侵#;��l@�z&����q�� 
(�����G�#��qD�
+����Cc|^�]n�2�ف���c��&�̓OJE����(0�������M&�Fqb�������]�eä�W��^����b��q���n��劗��l��̝�����`����.	Z{w�1ii�]ƓOAk0��q���T׵��v�>���|��i�U	NJ,�h+��^��:y�j�5V;�݉�"d��H6��Qj��4���c&ȊN7
�S�Q�������\��N����J�Q8e ����&T�%�_�>�4?�\�F���$5�%5�7�M����w���d�M��jV݁Z�̞�ű�e��u<K
+Y���)Xq����L���������Ì^⹲��d��F�����bp�q#{��$VQ"	�y�����E7����<�8��v�0!̀���y�A7b��I��JuI�GF�sig��
�{��ۀ�/�ٯ�r�V��{LH1�%`�kV<�N������I`��|��^a��;�#0o#Q7(CD�3��";bU*;��?�Y�r��3Btg�^C���'3���w ��ڟP�����)3��w{���i/��;q�*�x��Z
�N>Z�M�O83�T�	+L���T�9)�*%����u�0�����$J�
 �{ԃ����,@7
+��\��:e"�����Z��ĵW�D�1�v`l'�,�/#�d�dȥ`�<��[�v%�Sq���Q$�����!r�L��T[K�L�´B�����Gg��d�� x��,�����)m�!��
����˹���&��$8�����dCN�t<!����~�f,�-��S>���e��B׼h������s��[���0@���s�S�*��n�k]��J l�csጫP�rh��LL�U\st��^�:	�ws�
+9�r�.�����������b�~'l
�����Q��q��X��VE!%��>VwΓI7��o��с��ap2��@L}�ͱ�'*G�Yl+;��W�x��q?��RVV�FZ#�v@���5w�jx����^IޥF鐛~���>Ȗ�.�VC5�Fgl!G����W�����^�s����a*&�)m���q���Z�����(�it+/Lx��'1�.$+��u�s���_�1�[��m�<�o����dPt{���x���3�@\�M;�{ij���(��!ex4���֥��i��t*.r���HЈ�\-LJ0nj�E����l������=+�u����l�_M�����	�A���IVKg��,Ъ��s��d�ܗWSS2��o]6�y�u��ћVvƜo����2A7re>V�
&)(aEah��-`�z_b]�4Ȼ{����/>(]�H�FN������1�wu�Z̓L��p/1�?J0�ݱ.���Z�y��cP�˅�i�v�����V�������:�#0=6?J�.��<��T������1
C�X�&���)��k�Y ��cZSrv���Ĭ0yD�7�F��f��ܹrM&�+�i4�{�/�7�X9��
az�D
+��]���E��\��P�x�L�'tN�E~���x;��N��%�����
+�����bx���K��;�xYw!W��P�gֱ���Y}]����t���\��v��?0�w�x�o��w�~�$��߉���r���c��/�sN�ש\endstream
+endobj
+3395 0 obj <<
+/Type /Page
+/Contents 3396 0 R
+/Resources 3394 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 3347 0 R
 >> endobj
 3397 0 obj <<
-/D [3378 0 R /XYZ 328.748 280.723 null]
+/D [3395 0 R /XYZ 71.731 729.265 null]
 >> endobj
 3398 0 obj <<
-/D [3378 0 R /XYZ 71.731 260.634 null]
->> endobj
-1607 0 obj <<
-/D [3378 0 R /XYZ 71.731 229.75 null]
+/D [3395 0 R /XYZ 71.731 741.22 null]
 >> endobj
-522 0 obj <<
-/D [3378 0 R /XYZ 261.227 192.534 null]
+466 0 obj <<
+/D [3395 0 R /XYZ 142.923 708.344 null]
 >> endobj
 3399 0 obj <<
-/D [3378 0 R /XYZ 71.731 182.169 null]
+/D [3395 0 R /XYZ 71.731 703.158 null]
 >> endobj
 3400 0 obj <<
-/D [3378 0 R /XYZ 71.731 170.253 null]
+/D [3395 0 R /XYZ 224.195 677.46 null]
 >> endobj
 3401 0 obj <<
-/D [3378 0 R /XYZ 71.731 165.271 null]
+/D [3395 0 R /XYZ 71.731 644.419 null]
+>> endobj
+470 0 obj <<
+/D [3395 0 R /XYZ 171.774 613.699 null]
 >> endobj
 3402 0 obj <<
-/D [3378 0 R /XYZ 89.664 144.514 null]
+/D [3395 0 R /XYZ 71.731 606.62 null]
 >> endobj
 3403 0 obj <<
-/D [3378 0 R /XYZ 71.731 142.357 null]
+/D [3395 0 R /XYZ 181.465 595.766 null]
 >> endobj
 3404 0 obj <<
-/D [3378 0 R /XYZ 89.664 126.581 null]
+/D [3395 0 R /XYZ 380.939 595.766 null]
 >> endobj
-3377 0 obj <<
-/Font << /F33 1306 0 R /F27 1208 0 R /F23 1201 0 R /F35 1569 0 R >>
-/ProcSet [ /PDF /Text ]
+3405 0 obj <<
+/D [3395 0 R /XYZ 473.597 595.766 null]
 >> endobj
-3407 0 obj <<
-/Length 2688      
-/Filter /FlateDecode
->>
-stream
-xڅɖ���_Qϗ��++Zm�s����Lu2��9dr�-�ʹ�(��_l����@
-�o��7����0D��ӛ]�.�����ޅ�����������7�������$�M��l����������A;�.WQx��㇢2���7��A�e�����T�����ݧ��wo�<�_���mF��1�̏������\�i�z��~�^#�fЮ�ә���d@Z��MǓV�#������@��?.��Se��S�l���
-]j��3�� �.E��ex�E(7�9��3��Nd�p�	
-������L�V֚}���.��������
-D>8SN%9�sd��7v�p(���/e�C#H�8�#"]�v@v�j|n�(LѬp�u��yF'��0D7�d�o�<�}�wM|6E���9m�mF����D)�e}B�e��[�Z^"�gb7��D|D�ѵ�f�#��ɡ22	
-��������Ў��2J�Sd�,棅n�`^�Qy�s��K�6���*��]]p
��3��|3	�7ɗ�5%h�Qesd�%��.����5CQ�<��.xF�'�<Uۙ]_��)��APU�t��an�(�Q?���N�>�_O�;8�S����n;e�rĩW�Ֆ��hX'���/A�G�J�����AU��a
1�m*�-�������Ͽ���'8傡������[��;NE��9���B�\
-�;��x��?���iZӽ\
-d��v�YuYâ\�f����t����e�yr��9�䊇�qɠ3��H���dѵF��?�b?�!<���cUMaD�������i���� �D݀���QV��\3'����)�,������q�-[^�}By�)��!vz�� ��T8�ۦ�wh݅(l�j]_��$t����<y2�0g%6��s���*P�j�1���U��1z[�s�ӲgN���M�W�녡�Ywp⥩��S5�:A)��{��o�Y�zcg�q��E v+��K�mK�_b��!�c?�6�b�s����S\���-Ny_0Ɣ�h�$�[r�b���ͱ��'�2l���R��E�s+��4������'�Q�m[����m*�
9p%��'V|NT��0Y�c|\9!�9}���5�<�u������I��R���.�����0������h�,=g�2\x�VaP7��n��:�J�)m'ҭ�J����륪?�uV�V_��������8W�_P�_r���y���'�/�����s�M���P�8���a������PN�e���yXªM(���I���d����\vZ�@�2
��l����Z��Əa:^+�������N��v�����d�3:��e�R.�:��l�f��n�J�eyW2�����<�\uHAA�W����
-����T�'�듉.U�j�����K��v�D �2k�t���-v��};=�U�K/IWI�����{OF��Wo����$#A���Z�J�̳\�uT?w�PiK�y�/��E7@�j=�l���F���-)��s<j���w�񩉰V[xg[�W>�����n|Ie?J���<��N�6'��C��#�Π�;��j�����'GI�D�-�H���4Րz0{,��^��k�Uu�T.{�z'g�O�`*UHʐ�������)�D��T�b�T�˅�2k�رN��N�*��QB�(ڸk��dC���#�C~7
�a���U�ƨ��eN�L0�I�*�M�4�|f�+}��He�6Q%Kxl�5[�|�i��=�����'�I|$��:h�;�"b~�#*(�<8I��$�
-f��G3Es�I��8�Y���'	� ��9�p�HY-J@�d�d�-�����	H~D(���:�n��Ʀ�<���Ğ���y�����:�x����4
8Q��ڪ��z�DY���!T���w��)�`,	m�A}�ѯX��^���Z>����t'�Ad�Ӕ4�%��ą	��pfj�
�w����<���Y�!��>I�9wEq�u��s�.k�R�èx�������S�C@rD�Z����M�H��S�q�O6~}iyDv8r�&ԏ���3g�i5=ᩃpM�#��qO+�;-T���h��[f��v{ß_�O�����U�pi�MI�����a�B(�;œ3)�6��Ȧ�
-��LBP��\���}g�4;�$cyi�D���^�Jn�����F!����>}Jw���e�?fq��q�x%��ɀ0��Uj���NXӰ"���"�H�3B��BxM�0*Xf�$�"��YM��w�.q[b
--�UV�������>��R��˚@*� ����!d܀�EX%��^���A�m���eH_s�	\}	�Ň���j!���j�7��`_�9)b��I�c�y��+$��
-�3�r�q�v0Y���`�:&�P�gE�TN8r�x=�׳�p��Bᤩ�B��0;9.@�����t(N�u��1 ��b��"7�ыPs�H�Wf���9H�3��M�k_k�k��<k�>E򒀫a�_˯�u�83���/�c�
-vfL��G�J�#�!05N�v)A~(ms;���W�T�4�3�ꦖGO��]z��o&�Ar�.�K���x��!��`�F���G�V��5�I>�J���߻�m��Y�y����}� rD���^�O�����q��endstream
-endobj
 3406 0 obj <<
-/Type /Page
-/Contents 3407 0 R
-/Resources 3405 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 3309 0 R
+/D [3395 0 R /XYZ 509.52 595.766 null]
 >> endobj
-3408 0 obj <<
-/D [3406 0 R /XYZ 71.731 729.265 null]
+3407 0 obj <<
+/D [3395 0 R /XYZ 191.511 582.814 null]
 >> endobj
-3409 0 obj <<
-/D [3406 0 R /XYZ 71.731 718.306 null]
+3408 0 obj <<
+/D [3395 0 R /XYZ 71.731 575.676 null]
 >> endobj
-1608 0 obj <<
-/D [3406 0 R /XYZ 71.731 678.291 null]
+474 0 obj <<
+/D [3395 0 R /XYZ 224.367 544.956 null]
 >> endobj
-526 0 obj <<
-/D [3406 0 R /XYZ 166.811 635.194 null]
+3409 0 obj <<
+/D [3395 0 R /XYZ 71.731 537.878 null]
 >> endobj
 3410 0 obj <<
-/D [3406 0 R /XYZ 71.731 622.756 null]
+/D [3395 0 R /XYZ 71.731 501.121 null]
 >> endobj
 3411 0 obj <<
-/D [3406 0 R /XYZ 71.731 567.642 null]
+/D [3395 0 R /XYZ 71.731 481.031 null]
+>> endobj
+478 0 obj <<
+/D [3395 0 R /XYZ 170.649 450.311 null]
 >> endobj
 3412 0 obj <<
-/D [3406 0 R /XYZ 71.731 554.691 null]
+/D [3395 0 R /XYZ 71.731 443.233 null]
 >> endobj
 3413 0 obj <<
-/D [3406 0 R /XYZ 71.731 549.71 null]
+/D [3395 0 R /XYZ 129.576 432.379 null]
 >> endobj
 3414 0 obj <<
-/D [3406 0 R /XYZ 89.664 528.952 null]
+/D [3395 0 R /XYZ 279.855 419.427 null]
 >> endobj
 3415 0 obj <<
-/D [3406 0 R /XYZ 71.731 526.796 null]
+/D [3395 0 R /XYZ 349.928 419.427 null]
 >> endobj
 3416 0 obj <<
-/D [3406 0 R /XYZ 89.664 511.02 null]
+/D [3395 0 R /XYZ 71.731 399.338 null]
+>> endobj
+482 0 obj <<
+/D [3395 0 R /XYZ 148.701 368.618 null]
 >> endobj
 3417 0 obj <<
-/D [3406 0 R /XYZ 89.664 511.02 null]
+/D [3395 0 R /XYZ 71.731 363.432 null]
 >> endobj
 3418 0 obj <<
-/D [3406 0 R /XYZ 71.731 508.863 null]
+/D [3395 0 R /XYZ 71.731 330.595 null]
+>> endobj
+486 0 obj <<
+/D [3395 0 R /XYZ 176.855 299.875 null]
 >> endobj
 3419 0 obj <<
-/D [3406 0 R /XYZ 89.664 493.087 null]
+/D [3395 0 R /XYZ 71.731 292.797 null]
 >> endobj
 3420 0 obj <<
-/D [3406 0 R /XYZ 89.664 493.087 null]
+/D [3395 0 R /XYZ 412.374 281.943 null]
 >> endobj
 3421 0 obj <<
-/D [3406 0 R /XYZ 71.731 467.085 null]
+/D [3395 0 R /XYZ 446.453 281.943 null]
 >> endobj
 3422 0 obj <<
-/D [3406 0 R /XYZ 89.664 449.251 null]
+/D [3395 0 R /XYZ 306.765 268.991 null]
 >> endobj
 3423 0 obj <<
-/D [3406 0 R /XYZ 89.664 449.251 null]
+/D [3395 0 R /XYZ 71.731 248.902 null]
+>> endobj
+490 0 obj <<
+/D [3395 0 R /XYZ 189.139 218.182 null]
 >> endobj
 3424 0 obj <<
-/D [3406 0 R /XYZ 71.731 434.143 null]
+/D [3395 0 R /XYZ 71.731 211.103 null]
 >> endobj
 3425 0 obj <<
-/D [3406 0 R /XYZ 89.664 418.367 null]
->> endobj
-1609 0 obj <<
-/D [3406 0 R /XYZ 71.731 411.229 null]
+/D [3395 0 R /XYZ 148.158 187.298 null]
 >> endobj
-530 0 obj <<
-/D [3406 0 R /XYZ 163.591 368.131 null]
+1610 0 obj <<
+/D [3395 0 R /XYZ 71.731 157.245 null]
 >> endobj
-3426 0 obj <<
-/D [3406 0 R /XYZ 71.731 355.96 null]
+3394 0 obj <<
+/Font << /F33 1322 0 R /F48 2081 0 R /F27 1224 0 R >>
+/ProcSet [ /PDF /Text ]
 >> endobj
+3428 0 obj <<
+/Length 2476      
+/Filter /FlateDecode
+>>
+stream
+xڝk�����
+�DlV�̷��]�IP��~H���h[=Yr�Ȟ��;/��cm��9��Mn���'X��J5|�\�I�(�O�b+}
+c-(�����_>i��U���f��|_�~�Hu��8\l�_�sl�\���i����X5U��3�������6��6?<}�L�c��<�o��p���"T�(�;��)E$�V��	�f�w���3ßO R�{{�����u��<̉�?�Y�u{�v�A��2��pL��3�E^{޺Yf�w>��"^���f���#�^@g<�Z^:u���`K��\Y���G�ޏ{������"tS>��>P�?岩����#pf��Yz5!��4#��ZF*Q�dž?,Ê'E]_x�6���
+u��,�	�u�Ȏ�.���*���~b����V��ju�A�U�F�$�T��[�?����(������"G��:��r�^tv�{������!р�	��hw�N�u�ʏ�+G���tL�J��"	c
+r�e*�to�d��pބ6�C��@A��ю_�=*̽�2��<q&ӚL���d8����'��A�T�Y�����j�g����x%C�3�XJ��x��8��4��[B۹u3�e��C����!Kų�,�أ ��|9؎�m�D�q�vQI����"L��{/����Io��T���ZY��t��[�[
+E"&C�0M��ko�Ѕ;k���
��~Q�~�����i�$�@� ����3	���@��qn�o�)�/���������m�3�!|{{��p�E�ɔ�p���o��<�foe>v�u�� �b��L�0��b��̒J�^5"��Ω��cY����`��.}đ�^��υ~�}��4Jh>͒H�+�3O"�
+�y��}�!~.�2�J�#*�����\�ÿe��H���c����LC�H���@��j�g^+-�9l,��`�u�dU���r��e�����S��B�v�p]�M�ݷ]�7vd,\��	ם�\N��Tە�<��\��*���]���@�Pi�a5M0Q�7���xl���P<��g���i
+	���aൃA��`�Т�St��t8�l	w��D�����c/<�B��8�� �Y��
+�}��Ab5�T൫�Uϣ��>�H�?B3��xsg�/S9ZG�YR���*8��rhh��.�?R
+���0K�����n�(E��9���Z�U@���d)$֧�-�bP���%�Q��u �����Z1�(�9ɡ���TWV�(�"pʣ0a����.ʂ��+����<���7��]�e�U-c϶��=nrckDz������w8�g�Y��%�G�l��9,Ƿܵ�lx���y���H��w�'s�0��c��N�
��+�L�G��61C��[�s255$����fW&���:5'ם��a�$R�������q@�e�w�	�V�P�5�F�JW%;�B
+[|v�&���w����5i�aT��-�x1W!:al�k��q��	3.�5L~5W�����3$ ��D�D�D����2��X
��w<��n[8�v�����	�pk�k�wQ:�f��(s�!*�,�"~!SB�(���,��3��<Q5eE^U���e�j����j�̽���;T�`��l���VI'1�H@��W�N�	|�F>@�{]�+g����_�AHW�0q�cK9
@��}��('�v�h��g�[���Ͷ���,�V��P8���ZT�K���I�$?�8
+N�+Fښ�	E�
@�t�ז��1�����Z�O�YA�	k#��W8���.�F%�ݑ�ԬAq�)�)V��n����{���K�`�OB)1��[��:���Ȧb�d��w�c�%�.��{��P�Y�����*��b!uƚ�W�T�I�=�t�J�tw���e#�9�c��Meΐ['�OT'��'������������g��_BnA�(�h�`����/�H�=����^����
+at���*�+X�ß���O.����1�ɘ	�[GH�<��1�O"!�
+�S�@\{N��k;��ů��׻��uV��{li���/����)]����6�����v�+'(�U|�8Z����.C����lk{����_�T�7�l��5;u�f�J��vj�)%�[��]��v�w�������Q��m��RD���~����v
Ε�.������k�H��#N��g�q�y�D�*ɣ9���~{-a��%U�3U�<��[\�D_+���W��!�qrN��C�
e�9�����7��E}�����X�{k��F��~�_~�*�^�����r>8�H��e�c���}��>\[Fp��\[��a��|�� �U��9�XX�W������c��7�d%���g�"�R|��΄w:+��+Eq>�(��{��Ճ"��,[����mm��OU1����i�t~?�z%��LeA�f�]P��83凎 ү����F���endstream
+endobj
 3427 0 obj <<
-/D [3406 0 R /XYZ 71.731 313.531 null]
+/Type /Page
+/Contents 3428 0 R
+/Resources 3426 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 3347 0 R
+/Annots [ 3438 0 R ]
 >> endobj
-3428 0 obj <<
-/D [3406 0 R /XYZ 181.725 302.737 null]
+3438 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [253.143 425.406 303.427 434.318]
+/Subtype /Link
+/A << /S /GoTo /D (sanitycheck) >>
 >> endobj
 3429 0 obj <<
-/D [3406 0 R /XYZ 71.731 269.696 null]
+/D [3427 0 R /XYZ 71.731 729.265 null]
+>> endobj
+494 0 obj <<
+/D [3427 0 R /XYZ 199.853 708.344 null]
 >> endobj
 3430 0 obj <<
-/D [3406 0 R /XYZ 71.731 199.957 null]
+/D [3427 0 R /XYZ 71.731 699.706 null]
 >> endobj
 3431 0 obj <<
-/D [3406 0 R /XYZ 71.731 156.122 null]
+/D [3427 0 R /XYZ 159.666 689.415 null]
 >> endobj
-1610 0 obj <<
-/D [3406 0 R /XYZ 71.731 138.189 null]
+3432 0 obj <<
+/D [3427 0 R /XYZ 71.731 656.374 null]
 >> endobj
-3405 0 obj <<
-/Font << /F33 1306 0 R /F27 1208 0 R /F23 1201 0 R >>
-/ProcSet [ /PDF /Text ]
+3433 0 obj <<
+/D [3427 0 R /XYZ 118.555 617.81 null]
 >> endobj
 3434 0 obj <<
-/Length 2709      
-/Filter /FlateDecode
->>
-stream
-xڝ]���}~E�8``�Z��=uw�w�õEo�=����J�c�,{g����H)���n��%�")��HE�|���T�4�O�� �W���_����d�
�l&4o���]�r�'��q��|_�~�J�@dq�z�~���Ӡ��&�}/�}]�����=�ތk���[7M����ǻw�Nv�"��ճ4��J�"�1*h���"�2�_(��*ͼ��u�{�x�4/�j���{U�}=<��  =�_m)�87���W�zE�t� ��h:��}1t=�:�ֺk��鶨��gn���w�X�2-�C76Ӷ�3�`^Z��!�)U?5O�;5J���)�uW��P�����������[5<c��D1��!a���12�aٵC�5�b�]�iDv:3���j��=�me��C����
��Q�@�]@�@�.~��X��ޱ��� �p;��S���H���]�@+����`{V�O�4ڲ�b�#X��`y&T�+�U4����0������gZ>X{	B�0�u<���(_7�3WJc���r+��6lb�mQ~|B�}e=x4��m���0Чz8Шk�wt=(-���oݠ�׋a08���$�Z�]�	V��B��a���i�*
-,IG7��
-��qk��vt��y-� o`�1��]|�!~1��i���c>�(���Z��n?��C0h/��&�#Hf��q���O8
�5+X���<ۃ���{ 
-�W�Gm1���N���k��3�_2��T��j� ��g�Ik��$n�EUͶ�h��RLLdLH۰�i>s�c�����#�_4F g֘$��hϩnL.N
-�1G�Ys�zw�l��|v�uaj�m��o2Yj)�C�������g5�g�Z_z�����'�}��ܑ���o�2�ΔA$2��I�7&�e^�v�L26�A&���I��(��h�0C�r�5�=d<�3\���N�v	��-2�y3�9X=�Ċn	��E˼�v���[������.�d�>5G/�c#�H���R$#H$
-���24e�n������* 7<�P����"�O�…Oh���hC�.S��������!��)-�ih�%��@�OF=�̸�[�.��P5�8��I]U��0��?�;�[f㌁�m�k
�����0�`g���T����
-�f?�~�?X�~�V��QiU�ՄN
-�C��Є��p��Z����G�q���#5�ЪY�ۭj���։�	AEѼ��MyP%n�#�
Pd�Em�}�Ik����4}UM����{�	�Y������q�C��5���!#F�:$���@��Џϕ����-RN�I��������<���ܸ;W���e������UMH
-^m��d3��Fe�Â
*B۞����D�d-�N6/yQ��-�~o�fq9aҝ�Q��n?NR���w]gd�[F�0�_��#�i2�@�����e��<g�b�^����;B�3�1M�ݜ���������N�������U����j��T���uUMx��z�ma�4�^�ۄ��,	����"닮{I��-���ڲ ��&���L4���!���O�*��8�2	�j�lʈ���־H��D5�_�ƽ(h��z��X���ԩ)���J�^�mc@ҭB]�nlPEK�b���cSp�	J��4i6�m��e�N�ֵ�.�RW}��6�/�ZT�@G�l���,��J��6�7fJܛV4TGhsi=*���4Ƀi-Cim�3��=#�O��(��˾@[�D-K3��T��~��4���b�O.	�kv��f�������vT��`8wҌ�o�ζ{������x�'2��<���г߂>���1=
�(2�Ը=�����ɤ/N�.9��44
-X��L�hN�������v���;b
--���p�ʹ�d�j�pG�҅����C�
�q-.9R��8�`��ג�Hd�˒K�fʎLݒ�+v=W�Y�K϶D�ҖS\g�e�����2�4,ȲM�Z'D��n��wd�p�mϺ��Ӛ�K�UD�Q3�4="9KM�����[���@�@(�b�	�&`�MB��GT-��$���ua��	�&�r�mٌ�a��:?�d�G���
u���uy�J!'C)b?��<ҏ��������U������C�0OD,��y�z��ݽ����R�L��|��e��
\�Pb���'�9�����
-o�$�H�e��f�ޜ笍L��F����̽����z�l2���0G� �5���
-�#��J����gbz/i������,�~�i�y߈+N�;6hO���y`NEE!��A1��-uP�/�"�Ƙ.����G��\v&3����#�W����Ⱦ����E�؅�K��E�Xw�Y�	�B?�Q��%>G�IM���5��ZF�5��9�
쨹ٽ�d��
���^4�s�^���*�I���h�H@�!�?~�6�`g~3����Y�K��0{���$��VY?���e�K�l��:Q�ue�`)PK�j���#,���<�l
Ŏ��{h�M)3�񊨑'}�|�%e
-���@��ɦ��ɪWD��7�ς&�E�3�y�~E����~��=О?�I��}�.�Q���:P~�Y<G�˪��ͽ����_�
-=k���_��%�J�H&��>�\�)�ɭ_�/E��J��endstream
-endobj
-3433 0 obj <<
-/Type /Page
-/Contents 3434 0 R
-/Resources 3432 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 3309 0 R
+/D [3427 0 R /XYZ 232.228 609.345 null]
 >> endobj
 3435 0 obj <<
-/D [3433 0 R /XYZ 71.731 729.265 null]
+/D [3427 0 R /XYZ 378.496 586.033 null]
 >> endobj
-1612 0 obj <<
-/D [3433 0 R /XYZ 71.731 741.22 null]
+1611 0 obj <<
+/D [3427 0 R /XYZ 71.731 544.187 null]
 >> endobj
-534 0 obj <<
-/D [3433 0 R /XYZ 339.876 705.748 null]
+498 0 obj <<
+/D [3427 0 R /XYZ 186.299 505.909 null]
 >> endobj
 3436 0 obj <<
-/D [3433 0 R /XYZ 71.731 693.577 null]
+/D [3427 0 R /XYZ 71.731 493.738 null]
 >> endobj
 3437 0 obj <<
-/D [3433 0 R /XYZ 376.087 671.237 null]
->> endobj
-3438 0 obj <<
-/D [3433 0 R /XYZ 71.731 664.099 null]
+/D [3427 0 R /XYZ 71.731 451.309 null]
 >> endobj
 3439 0 obj <<
-/D [3433 0 R /XYZ 71.731 633.215 null]
+/D [3427 0 R /XYZ 71.731 407.473 null]
+>> endobj
+1612 0 obj <<
+/D [3427 0 R /XYZ 71.731 363.638 null]
+>> endobj
+502 0 obj <<
+/D [3427 0 R /XYZ 233.416 320.54 null]
 >> endobj
 3440 0 obj <<
-/D [3433 0 R /XYZ 353.441 622.42 null]
+/D [3427 0 R /XYZ 71.731 311.717 null]
 >> endobj
 3441 0 obj <<
-/D [3433 0 R /XYZ 280.021 609.469 null]
+/D [3427 0 R /XYZ 502.556 286.03 null]
+>> endobj
+1613 0 obj <<
+/D [3427 0 R /XYZ 71.731 258.344 null]
+>> endobj
+506 0 obj <<
+/D [3427 0 R /XYZ 271.686 220.754 null]
 >> endobj
 3442 0 obj <<
-/D [3433 0 R /XYZ 175.77 596.517 null]
+/D [3427 0 R /XYZ 71.731 210.389 null]
 >> endobj
 3443 0 obj <<
-/D [3433 0 R /XYZ 397.028 596.517 null]
+/D [3427 0 R /XYZ 89.773 200.63 null]
 >> endobj
 3444 0 obj <<
-/D [3433 0 R /XYZ 71.731 594.361 null]
+/D [3427 0 R /XYZ 71.731 180.54 null]
 >> endobj
 3445 0 obj <<
-/D [3433 0 R /XYZ 71.731 579.417 null]
+/D [3427 0 R /XYZ 327.818 169.746 null]
 >> endobj
 3446 0 obj <<
-/D [3433 0 R /XYZ 462.474 546.605 null]
->> endobj
-1611 0 obj <<
-/D [3433 0 R /XYZ 76.712 517.015 null]
->> endobj
-538 0 obj <<
-/D [3433 0 R /XYZ 232.492 477.643 null]
+/D [3427 0 R /XYZ 71.731 162.608 null]
 >> endobj
 3447 0 obj <<
-/D [3433 0 R /XYZ 71.731 467.278 null]
+/D [3427 0 R /XYZ 81.694 141.85 null]
 >> endobj
 3448 0 obj <<
-/D [3433 0 R /XYZ 71.731 455.362 null]
+/D [3427 0 R /XYZ 81.694 141.85 null]
 >> endobj
 3449 0 obj <<
-/D [3433 0 R /XYZ 71.731 450.38 null]
+/D [3427 0 R /XYZ 390.418 141.85 null]
 >> endobj
 3450 0 obj <<
-/D [3433 0 R /XYZ 89.664 429.623 null]
+/D [3427 0 R /XYZ 513.923 128.899 null]
 >> endobj
 3451 0 obj <<
-/D [3433 0 R /XYZ 131.167 429.623 null]
+/D [3427 0 R /XYZ 71.731 113.791 null]
 >> endobj
-3452 0 obj <<
-/D [3433 0 R /XYZ 71.731 427.466 null]
+3426 0 obj <<
+/Font << /F33 1322 0 R /F23 1217 0 R /F27 1224 0 R /F44 2069 0 R /F48 2081 0 R >>
+/ProcSet [ /PDF /Text ]
 >> endobj
+3454 0 obj <<
+/Length 2627      
+/Filter /FlateDecode
+>>
+stream
+xڥَ��}��o��6WEy���	&�@�w� �٢��ȒW�����S�*�l#h��*u;X����@$>a&�X�v���f��!`�
�lF4�/~�"�*Y,W/�U��"�U"C��p�R���t�O�n֛P����XMeZ���P��u��i�2_����>����LD�ʛۋ�X� r�"��G�S!��?B��@@�'p�x��a��;J"�l$l��Ӓ���Kg�D��nw�9u��������(	�(I�����2���Z~;�݁@����ꂠ�1�z#}�+�-��.i����n���v�����4z9��T��n��6�0��9�j��;�
+�E[�W>�&Eƚ��sY��l5}�tZ�u��?N�ٙ�'.��<N�7g ��7LpGm.%�՚����~Y'��~�
+*��1+>��w��j�m�7���{ ���w���u�{5@
+\)��M�9�J�\˖���6o�J�3X̗F�ީ�Ѷ���g֥f�{}�&�R��H�xנ��&�჏��h�*��z*��Q��qni��
m�fi���Մ��#�Od��gfi����G�SC�l
+���^`_.	��ҿ��?͐0X�ZBY�Ej2ZD����-݋�7��5:�oF�Oz�0�������+F���`zG�^>N&͋±�j�Z��Q���HύHơ��U��T�h�L��8��-a����wh$\���� i�܀����(E�f�-��ŋ���^ṡ-�a�;�,|��V�e����rO��`���U�3N��.p������v�΄/����g�?������w(��d��Ok2�-9�W�[QhHU e�=~c]U7��vڏ0kK��!��iOe�N���S�'��7x�����w&/���:h&�i�u\6�""g��c�M{�}�����C{B��t�Jr�.Y|�<�Ԇ��h�8�S6mwM�T��$Mo*ֈ�b9�;�� �bͅ/(�X�'���)�o����M�u�`׬e���J��I9�Bˣ�K�$�5Ǡ�,

�5��E���6�s6H¼��}���'4�j�;�X�l�e�rC�b@�A�j)�!���F�RN�xF��tT�K��m�Xׄ�F��D�?�-��7��/��x�(�[y�d��k�;�9����rp�C圽�q8���yA(���N���r�h6#���3g4
{ \��Bx�H���4��'�H�l"��4v"e_�\
V*'��m�2�\�)Lqϧ\
+��Sf—|�H��8"$Rw
�ܔ4A�T6D�M��%�e�W� K0�`��i�K����I������z��y'�]�����?&����8&G���>���-��iG��Q��p�rpSy�-��!繪�zq�g܃U0��L��da�>�
+Ռ��-�n��٫�`�r'Z4�4�)�i�����=���#�_��B!�mAݺ��4J!zd�+��IT�("o��S�#&�׊G=��_+��21�v��� �W�8���f�͒0;����Ã�����.�*��r}���-@r���R�Qz�z�9շ�ON8���]\�o�`AH���\��5�]�R�5uT6�+���W���aEOe�ӒrMn��V��=�W��l2�lB�ݥe�m2�ZC��#���Cӏ]�sY�uPo�W��9����֣�K�����H�t��H�r�t4��E��3���r�*
cxr�8o�g���g�P��ږ�kgx3�z�F�Z���\�0�W���-%HS)�����V$�ʓ;��Ŧu}'�S�[�(�
@���Ӥ䖮mͶĎ���[hv���&�-b����7n
+�Ɔ�7�%��
i~�]�'()\�	���/k����v����:�\ۑm`!��:��)qݶ\�q���8g�Ǽ���13����5�Ǵ��u�<�C�u�S�S���}�@D�O��m�^7��t펾�oLg��4*a���QݳԩR����j�m��/��7���v6/���3��a����}���S�@Ь�D�d����Eޯ'�������v��r�BW�<�N885���bq[ۤ�q@W:&�� ���{Y���J)9=��f��}��o�߻���4��J~
�"M@���u�0#dܗg0E�PP���VԞ�a������jf�Wg��0�N�7�g�j��3���ھ���z����ڛׅ_\2$.��C<wy3t��L�e���#P)�\�{�i{�-���<̟z��R���~Ҹ1�3
��36:�4c&-�:��t��[rĠ2�zOf�盡���I�R�U�E�?&�>pȲyK0�Pc�TA�+s����P`V�
��^����"L�� �n���
4������ݯ^?
F��k8���h_��[��'�]ivp�?�M�̅}�U9[m�j�S��8_{��WL{��#v�������/8>AU�\���(h�{����$'����
��k
+
y3v]�~�dP��^A&��9W�w7��W~�6K�=E4�<a��[���h��C;�����g�|3s<m^�t������F<~
3�r!Q"�f��6����C��>����@rQ�)p_~��i�����el�endstream
+endobj
 3453 0 obj <<
-/D [3433 0 R /XYZ 89.664 411.69 null]
+/Type /Page
+/Contents 3454 0 R
+/Resources 3452 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 3347 0 R
+/Annots [ 3461 0 R 3468 0 R 3476 0 R ]
 >> endobj
-3454 0 obj <<
-/D [3433 0 R /XYZ 300.451 411.69 null]
+3461 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [362.68 649.4 419.882 658.311]
+/Subtype /Link
+/A << /S /GoTo /D (edit-values-list) >>
+>> endobj
+3468 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [123.546 561.729 168.378 570.64]
+/Subtype /Link
+/A << /S /GoTo /D (bugreports) >>
+>> endobj
+3476 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [202.898 406.655 260.182 413.509]
+/Subtype /Link
+/A << /S /GoTo /D (edit-values-list) >>
 >> endobj
 3455 0 obj <<
-/D [3433 0 R /XYZ 450.128 411.69 null]
+/D [3453 0 R /XYZ 71.731 729.265 null]
 >> endobj
 3456 0 obj <<
-/D [3433 0 R /XYZ 71.731 409.534 null]
+/D [3453 0 R /XYZ 81.694 708.344 null]
 >> endobj
 3457 0 obj <<
-/D [3433 0 R /XYZ 89.664 393.758 null]
+/D [3453 0 R /XYZ 81.694 708.344 null]
 >> endobj
 3458 0 obj <<
-/D [3433 0 R /XYZ 135.13 393.758 null]
+/D [3453 0 R /XYZ 71.731 693.235 null]
 >> endobj
 3459 0 obj <<
-/D [3433 0 R /XYZ 174.159 393.758 null]
+/D [3453 0 R /XYZ 81.694 677.46 null]
 >> endobj
 3460 0 obj <<
-/D [3433 0 R /XYZ 250.842 393.758 null]
->> endobj
-3461 0 obj <<
-/D [3433 0 R /XYZ 341.239 393.758 null]
+/D [3453 0 R /XYZ 81.694 677.46 null]
 >> endobj
 3462 0 obj <<
-/D [3433 0 R /XYZ 467.454 380.806 null]
+/D [3453 0 R /XYZ 71.731 636.448 null]
 >> endobj
 3463 0 obj <<
-/D [3433 0 R /XYZ 71.731 373.668 null]
+/D [3453 0 R /XYZ 81.694 620.672 null]
 >> endobj
 3464 0 obj <<
-/D [3433 0 R /XYZ 71.731 347.765 null]
+/D [3453 0 R /XYZ 81.694 620.672 null]
 >> endobj
 3465 0 obj <<
-/D [3433 0 R /XYZ 71.731 332.821 null]
+/D [3453 0 R /XYZ 71.731 605.564 null]
 >> endobj
 3466 0 obj <<
-/D [3433 0 R /XYZ 76.712 260.059 null]
+/D [3453 0 R /XYZ 81.694 589.788 null]
 >> endobj
 3467 0 obj <<
-/D [3433 0 R /XYZ 136.488 216.514 null]
->> endobj
-3468 0 obj <<
-/D [3433 0 R /XYZ 76.712 156.841 null]
+/D [3453 0 R /XYZ 81.694 589.788 null]
 >> endobj
 3469 0 obj <<
-/D [3433 0 R /XYZ 89.664 138.909 null]
+/D [3453 0 R /XYZ 71.731 561.729 null]
 >> endobj
 3470 0 obj <<
-/D [3433 0 R /XYZ 71.731 123.8 null]
+/D [3453 0 R /XYZ 81.694 545.953 null]
 >> endobj
-3432 0 obj <<
-/Font << /F33 1306 0 R /F23 1201 0 R /F27 1208 0 R /F44 2037 0 R >>
-/ProcSet [ /PDF /Text ]
+3471 0 obj <<
+/D [3453 0 R /XYZ 81.694 545.953 null]
 >> endobj
-3473 0 obj <<
-/Length 2043      
-/Filter /FlateDecode
->>
-stream
-xڍYK��6��Wxz�<�V�~��y��3�tR�iz�%��T�\I����P���3{	���A�����^����qb�	�Uzze����+�96̲�x�l_��ຫ،w�ݯ<�2C+^��cF���fo�ɹ�z�����}�Ny�7@����\ֶq��E��k�۫��N��f���y~d:���8�;��b��Vd���m�	�-0�b���AQl����(]��N7/Y�}#u?��w^h\�"#ɲ�R�k�7^�|������"�[bi��HoD�&��T�	Ac�>4��A<�-	�4�%�Y���J�
-T՚)�����X]���;��mlnj9g�2-.��(3��1oh$��0)����ӣ��ܝ:�}Ϣ>�m�T�K˲��(Dˋ.��Y澮@�i�0�.Ywe{��C��!�*H�+w隶k:��02�&?���~Uk�7�J���T�ː[#Z�X2�mǗ¿��R������{I�s�+6���'��*�L��0Q';~mÚk3B	C)�\Ӳ�EDj<s�T,�9{���"rI��XԽ=j�0r0}z�s��y[\9�
-H�$'��{�K|]}lu�?�}�
�W�,�\W�,�)�L0��7�(X��3łq�1��n0�t߈C�^
�"
-�X� �h����cW>�q��0����
P_tu�3�jf��1�걮��^�}#�wu`�Kl�KA �S�4�
-Z�F�U(�zJZ�ڀ��Zb�p)���\�W����@H*n0��X�	/�Y(ьK[��<E��rqR�l�O������~�c~C�ޯ�^_���*ߕs���ʖ(�M�����%m*?)�Ǹ�|7ƚ���:����4�3[��t %4Ń�y��M�7�q�84.�vd�(��J%�L"n�:�
-ϩ�Д�U�?\��G�h#PU�u)�ZI+s&R"~�&`���'�B���it�񎹓3�dWH!{y^��)�E�z%mU���ž��R�\�к�\I�9�b���e	Zޞ���.N�f����C�P�*!-�&�H�MU��,�3�`���<��YU>Q���O�A�?`���d��=����$�+�ā����'Eֽ^�{l��O�q�Ә�\u���x��k<s�]�,v5��V�%�7bQw-���ʜ��?'�|�a�'p���{��e�#ı�Y���Ǽ�PT�\A2���a��[�+���f|�|�y��#��^�,]z�L��5vՒ�[�ǫ9;u[�t��^$u��I^v����r�m�.�%�ƉB���^�>�r��`�"���S�q�R��Q_�C�{�������}RMX��� ��m��l�j��%b�pO����a���i(G��ٮb�6~T�м�j���	G�"�4�9l)��^rB�]t-���˷���y�AzY�.��Lv�V��x~<�,=�|�x@ ��K�}�"I�O�e�|�j����ڈ�6V��ڨ��x
-|`J��x��(���3u���
�:�Ec��C��1�##Ϛ���!2�x�R�
z8�w��@5���O�`�Ii%�֡g9So͢eʧ#�
-�1)[Q+���f"f&�>ua �0��86=7\���3iłxs���u�K�oĎU�:S��Q7*�1��m�f���w/�㋎�Q2GzLʃ���?Vw't;�i�6������%�N'h~sl^NM?�-,\�LO+R�{C3���>��2�,�s���N��E�98[��}�@�"�����'�����x�5C2����]�a�s �TɃ�O����0��(�/4|Y꫅�_����B��$����;�@@�v������0i�=�W�Â�qA���Z�.�Ɨ���cH�����/ �f\��N�%�/��5i�Y�Ϫ���o���#�q�%o�J��i�bI�|����	�H:խJ�w9+�^�L<%u�]�{'o|7����S��NH����_֛�������_h����������m��f�������~ݎ�&��ɋ���Aճ��?�;!T�N������ƪ�0���endstream
-endobj
 3472 0 obj <<
-/Type /Page
-/Contents 3473 0 R
-/Resources 3471 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 3501 0 R
+/D [3453 0 R /XYZ 71.731 530.844 null]
+>> endobj
+3473 0 obj <<
+/D [3453 0 R /XYZ 81.694 515.068 null]
 >> endobj
 3474 0 obj <<
-/D [3472 0 R /XYZ 71.731 729.265 null]
+/D [3453 0 R /XYZ 81.694 515.068 null]
+>> endobj
+1614 0 obj <<
+/D [3453 0 R /XYZ 71.731 479.203 null]
+>> endobj
+510 0 obj <<
+/D [3453 0 R /XYZ 271.04 439.831 null]
 >> endobj
 3475 0 obj <<
-/D [3472 0 R /XYZ 71.731 741.22 null]
+/D [3453 0 R /XYZ 71.731 429.466 null]
 >> endobj
-3476 0 obj <<
-/D [3472 0 R /XYZ 89.664 708.344 null]
+1615 0 obj <<
+/D [3453 0 R /XYZ 71.731 401.674 null]
 >> endobj
-542 0 obj <<
-/D [3472 0 R /XYZ 304.825 651.039 null]
+514 0 obj <<
+/D [3453 0 R /XYZ 279.016 362.401 null]
 >> endobj
 3477 0 obj <<
-/D [3472 0 R /XYZ 71.731 640.674 null]
+/D [3453 0 R /XYZ 71.731 352.036 null]
+>> endobj
+1616 0 obj <<
+/D [3453 0 R /XYZ 71.731 312.224 null]
+>> endobj
+518 0 obj <<
+/D [3453 0 R /XYZ 219.024 269.127 null]
 >> endobj
 3478 0 obj <<
-/D [3472 0 R /XYZ 71.731 628.757 null]
+/D [3453 0 R /XYZ 71.731 256.689 null]
 >> endobj
 3479 0 obj <<
-/D [3472 0 R /XYZ 71.731 623.776 null]
+/D [3453 0 R /XYZ 441.444 234.616 null]
+>> endobj
+1617 0 obj <<
+/D [3453 0 R /XYZ 71.731 219.508 null]
+>> endobj
+522 0 obj <<
+/D [3453 0 R /XYZ 311.237 182.292 null]
 >> endobj
 3480 0 obj <<
-/D [3472 0 R /XYZ 89.664 603.019 null]
+/D [3453 0 R /XYZ 71.731 171.927 null]
 >> endobj
 3481 0 obj <<
-/D [3472 0 R /XYZ 71.731 600.862 null]
+/D [3453 0 R /XYZ 189.454 162.168 null]
 >> endobj
 3482 0 obj <<
-/D [3472 0 R /XYZ 89.664 585.086 null]
+/D [3453 0 R /XYZ 328.748 162.168 null]
 >> endobj
 3483 0 obj <<
-/D [3472 0 R /XYZ 71.731 582.929 null]
->> endobj
-3484 0 obj <<
-/D [3472 0 R /XYZ 89.664 567.153 null]
+/D [3453 0 R /XYZ 71.731 142.078 null]
 >> endobj
-1613 0 obj <<
-/D [3472 0 R /XYZ 71.731 547.064 null]
->> endobj
-546 0 obj <<
-/D [3472 0 R /XYZ 381.763 509.848 null]
+1618 0 obj <<
+/D [3453 0 R /XYZ 71.731 111.194 null]
 >> endobj
-3485 0 obj <<
-/D [3472 0 R /XYZ 71.731 499.483 null]
+3452 0 obj <<
+/Font << /F33 1322 0 R /F27 1224 0 R /F23 1217 0 R /F35 1589 0 R >>
+/ProcSet [ /PDF /Text ]
 >> endobj
 3486 0 obj <<
-/D [3472 0 R /XYZ 275.93 489.724 null]
+/Length 2574      
+/Filter /FlateDecode
+>>
+stream
+xڍ˒��_���T�çDnN��ujS�l����s�D���"d��Y�ק��K�q�����n�P��.6���a�r?Z����M�����ބ�q�(�#���o��C/r?_NjǧE�&��8�4Z<��/ű���>J/�i|WT��U�'��nz�o���꿏����?���9�3��x&~��Q@����ϒ���a�G(�&�>�J�$�*�M�WQ�������᫃�}�a�Zz���0�tG_�5MDe4�
+�!i^�U�z�U�YF�F�@eHsG�-2�ZZ�:�L=�ؖL�}Y!kZ<��H�W�Nׅj��
����F��ܵ���o����`�p�Ns?��˾A(�#��HK32��П��r�N.�=o>r���,�~tJs
+�b�Ԛ��P�����z���j����1~�HV�M�I�gYv[��Uu2
+~RtU��^W�
�3���A�]u?��kY��o;�{d[*�Y�~��>�����Fd�	\>N#�
+�愋���I����s��5,N��1����z
+t~��(�c��e�1��BKSx"��81e�NK����=K'�!8�Dm@�	#?O�{)�Q�z�tVc˦ r���˓��)���+�p�L�Oz?����)��5��<s��%ߟW9d/�~/���O���yF9���fW�u��,ĠmmY�gl7X�">��ȚO�њ�֡����n%Sz)ծ���D�q>���$;a훅�|�����K2*O��<��n�ڦ�J��Jw��)נz���j���f�oZ_JfjJА�.*}$�%��$����%AQ�4�%�D�Y�[�4EӪ]W��(��APQ��2���V��E}�	JN�>��Ֆ��yt�d�
+���^��֟a���qd�(N(b��V��O:hTi� O�>�l�����?|��Ǐ�+�uĖY�ќ�q,E
+L��	s����S��╲:^0t�����Q�Q��R"��kj̢m�50-r��!jɕmt���U�y�F̓\p��,�.C J|��|�Ğ�z0�珫�oX�PO,�$�9?��\�N�$�S�I����Z9u(7���^-��x���r*В�ʚ�5���%�������ۡu���]#e}-=�Ӣ�ٓkV_�)���&Wt��u|�#�\�9��la.�z]�3��ʌ,��Q|U���;`���uQ��C�>/Ra����H�-�7yn��I���{��
+e���Vr荸6^k(d�緭1�\��Pm�f�s^�[c���5F�k$��PA�G��kʘ�a/K	vc��xV��.�[1O���؟��)ug�D!�bk+�c�Fx�W��rFK�����0Y�/�ޗ�'�q������!��7���O��������@��!X����b	�r0B���oμ�(3�u}�M6����`a
+-�H��w���z=���u����k��?����5�w(�/���x���s�����9�&��FhC�`%h�XئF�44��f�@�����wc
+��Hi������	�];��&��L}da�ŊuVq��c�a�CrtB[�w�c㿞0�l��9�2ԙ�8W�&
]J��y��m��]ބ94x�<�:d���vB�\uHFA�W���y���,��=��_(�K�R��L�L���|;9��1WY�$	l��kW���l�/��jy�>ٿ���kw���V��N�kJB�n{Ïbq���Z�mi� ���{�?d.�"��U�w�5V)�����(EC�zB�a��'�i�m|�yG����K-��!�`��� �fj��Z��T�jJ�>�(w
+���T�O����]���ث"=�J�UVe��8�����kD]胫^���7����(�dp�f�N�%I늿�K��,��8]�I����4���K�(�s���6����!��t��~7N�a���u�Ƭ��eN��1�b-�����'��iZ
+�ʌmb�A£6Fmm��_��@�w�>ٌ�
+샆�ٻDL�wD��''I�[�����Q�h�hTp�l�Ǥj��G�"ГƇV����)#Y	㪗��ey8���m�V~D�)�׻u���]��L�'�d��=�m���?-�W����R^x���7�J�j����A����R��Xg_�'c.h[	��KW���k;n�	X���*� �N�&`4V5�kqaBH8S5؆w�I��<�-��CkXZ���6���u�/�l]�ȹ��Q��I	f/��9�>!9�{�ϡx̾:�O:�#.a�A>Jظ��Ј�p��B��WI����P��y��PO�#=N㙆�$S�2�2��2��d��+Z~��4�-H(��C���ژDg:�8�������ѓ=9�j��l\��<�T D���02wn�L�fg�dmM������KR������ ��YA�\C��%�����Q�l��Rc2�Ø��ī f����cw�+�l���4
;���
k�G��fQ�р�c{�6,r���&���YUE�w�.qGb-��W/���^jzݟw��Wk��Y�����rv1J��"G����k��s�?K[�Aendstream
+endobj
+3485 0 obj <<
+/Type /Page
+/Contents 3486 0 R
+/Resources 3484 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 3347 0 R
 >> endobj
 3487 0 obj <<
-/D [3472 0 R /XYZ 71.731 456.683 null]
+/D [3485 0 R /XYZ 71.731 729.265 null]
+>> endobj
+526 0 obj <<
+/D [3485 0 R /XYZ 261.227 707.841 null]
 >> endobj
 3488 0 obj <<
-/D [3472 0 R /XYZ 71.731 443.731 null]
+/D [3485 0 R /XYZ 71.731 697.476 null]
 >> endobj
 3489 0 obj <<
-/D [3472 0 R /XYZ 71.731 438.75 null]
+/D [3485 0 R /XYZ 71.731 685.559 null]
 >> endobj
 3490 0 obj <<
-/D [3472 0 R /XYZ 89.664 417.993 null]
+/D [3485 0 R /XYZ 71.731 680.578 null]
 >> endobj
 3491 0 obj <<
-/D [3472 0 R /XYZ 71.731 415.836 null]
+/D [3485 0 R /XYZ 89.664 659.821 null]
 >> endobj
 3492 0 obj <<
-/D [3472 0 R /XYZ 89.664 400.06 null]
+/D [3485 0 R /XYZ 71.731 657.664 null]
 >> endobj
 3493 0 obj <<
-/D [3472 0 R /XYZ 71.731 372 null]
+/D [3485 0 R /XYZ 89.664 641.888 null]
 >> endobj
 3494 0 obj <<
-/D [3472 0 R /XYZ 89.664 356.224 null]
+/D [3485 0 R /XYZ 71.731 634.75 null]
+>> endobj
+1619 0 obj <<
+/D [3485 0 R /XYZ 71.731 593.903 null]
+>> endobj
+530 0 obj <<
+/D [3485 0 R /XYZ 166.811 550.806 null]
 >> endobj
 3495 0 obj <<
-/D [3472 0 R /XYZ 71.731 315.213 null]
+/D [3485 0 R /XYZ 71.731 538.368 null]
 >> endobj
 3496 0 obj <<
-/D [3472 0 R /XYZ 89.664 299.437 null]
+/D [3485 0 R /XYZ 71.731 483.254 null]
 >> endobj
 3497 0 obj <<
-/D [3472 0 R /XYZ 193.314 299.437 null]
+/D [3485 0 R /XYZ 71.731 470.303 null]
 >> endobj
 3498 0 obj <<
-/D [3472 0 R /XYZ 332.302 299.437 null]
+/D [3485 0 R /XYZ 71.731 465.321 null]
 >> endobj
 3499 0 obj <<
-/D [3472 0 R /XYZ 71.731 292.299 null]
+/D [3485 0 R /XYZ 89.664 444.564 null]
 >> endobj
 3500 0 obj <<
-/D [3472 0 R /XYZ 71.731 243.482 null]
+/D [3485 0 R /XYZ 71.731 442.407 null]
 >> endobj
-1614 0 obj <<
-/D [3472 0 R /XYZ 71.731 200.707 null]
+3501 0 obj <<
+/D [3485 0 R /XYZ 89.664 426.631 null]
 >> endobj
-3471 0 obj <<
-/Font << /F33 1306 0 R /F27 1208 0 R /F23 1201 0 R /F35 1569 0 R >>
-/ProcSet [ /PDF /Text ]
+3502 0 obj <<
+/D [3485 0 R /XYZ 89.664 426.631 null]
 >> endobj
-3504 0 obj <<
-/Length 1289      
-/Filter /FlateDecode
->>
-stream
-xڥXmo�6��_�����}ߒ^�۰��k�ö��6����ݯ)J�c'��C���)>4����
��p80��}�H�+�x�'wW\i,��b��Z_]r#b���'õ,X�86=�X��7�x׊z��=�t�˴�ʬ���|���~����<�g���]w؞�(tκ�u&�َ�]�>:���
-X�r�ø�\�+͛�(����n�gI�fU��J�D�]=�-���������A�	�����2������+�;Q�:�i�qB�$�B���[�E����u�a�9�$YdGr=A6���u��$��{�+M����f�T��,;$oj���,+iq�Uf�*�'���Y�9[�i�1�\#�$�����7�j���j�X풡�A� \2B6��s
a��������s��R�~O��
�g�G:�:�����÷�k�������2L
޼����^�����~}��X��X,}~+�-�'��a@����am��I����1D�(
��mF&��L!v��G�pd�1��P�"��n��a�m�S�z'�U�֫}+Sq���VP�ԇ��~U5�W7�P��}��5:��4����,����EQ��?�h���Տ�5�:K0�^|��������)J����:[p���������×�o%�æԔ�6U.����òqyZ���� #�1�Q@'��;.�dI�d
�����<9D�'8�&����m��#�x�GL��IJ����t��=�⦍�f�gj�U����@�T�v����d��̸V\-�HE:���n�Q�x��kHe1С�app#3�9gc�0b������r{d�!�����~�Y�/����F�N5��g��rfC�t6l��ɰ)t�>�)���v{d��*-��M��L��V���س*nJb��8*���;̱���uNT�P�:�)��z{d���]]P������ч�2��FO��E*�!(�&���roZ�l񱽧Y\����V'��͆�ţ7��=UQ��~����dYͰ�aE;�m����/��5��Q�vX�<���	�[U%��]�j��(2��D��2Q�X�ԄЬ�r8�J*�X����EJ%���3��ʵ�o�������j�����liU:�C�C�NT8Ƥ�b�%��iwi��V�M\�.�B~�3�&q�I�J*+J�&���kp���oN�p�=�k��"�H����dL�RwC���������ek#�놧~\�"�KdS.endstream
-endobj
 3503 0 obj <<
-/Type /Page
-/Contents 3504 0 R
-/Resources 3502 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 3501 0 R
->> endobj
-3505 0 obj <<
-/D [3503 0 R /XYZ 71.731 729.265 null]
->> endobj
-550 0 obj <<
-/D [3503 0 R /XYZ 398.777 707.841 null]
+/D [3485 0 R /XYZ 71.731 424.475 null]
 >> endobj
-1615 0 obj <<
-/D [3503 0 R /XYZ 71.731 704.871 null]
+3504 0 obj <<
+/D [3485 0 R /XYZ 89.664 408.699 null]
 >> endobj
-554 0 obj <<
-/D [3503 0 R /XYZ 359.858 673.37 null]
+3505 0 obj <<
+/D [3485 0 R /XYZ 89.664 408.699 null]
 >> endobj
 3506 0 obj <<
-/D [3503 0 R /XYZ 71.731 664.918 null]
->> endobj
-1616 0 obj <<
-/D [3503 0 R /XYZ 71.731 528.314 null]
->> endobj
-558 0 obj <<
-/D [3503 0 R /XYZ 381.114 492.847 null]
+/D [3485 0 R /XYZ 71.731 382.696 null]
 >> endobj
 3507 0 obj <<
-/D [3503 0 R /XYZ 71.731 484.395 null]
+/D [3485 0 R /XYZ 89.664 364.863 null]
 >> endobj
 3508 0 obj <<
-/D [3503 0 R /XYZ 71.731 448.847 null]
->> endobj
-1617 0 obj <<
-/D [3503 0 R /XYZ 71.731 394.416 null]
->> endobj
-562 0 obj <<
-/D [3503 0 R /XYZ 342.285 358.949 null]
+/D [3485 0 R /XYZ 89.664 364.863 null]
 >> endobj
 3509 0 obj <<
-/D [3503 0 R /XYZ 71.731 350.497 null]
+/D [3485 0 R /XYZ 71.731 349.755 null]
 >> endobj
 3510 0 obj <<
-/D [3503 0 R /XYZ 71.731 324.912 null]
+/D [3485 0 R /XYZ 89.664 333.979 null]
+>> endobj
+1620 0 obj <<
+/D [3485 0 R /XYZ 71.731 326.841 null]
+>> endobj
+534 0 obj <<
+/D [3485 0 R /XYZ 163.591 283.743 null]
 >> endobj
 3511 0 obj <<
-/D [3503 0 R /XYZ 71.731 319.931 null]
+/D [3485 0 R /XYZ 71.731 271.572 null]
 >> endobj
 3512 0 obj <<
-/D [3503 0 R /XYZ 89.664 299.173 null]
+/D [3485 0 R /XYZ 71.731 229.143 null]
 >> endobj
 3513 0 obj <<
-/D [3503 0 R /XYZ 71.731 297.017 null]
+/D [3485 0 R /XYZ 181.725 218.348 null]
 >> endobj
 3514 0 obj <<
-/D [3503 0 R /XYZ 89.664 281.241 null]
+/D [3485 0 R /XYZ 71.731 185.307 null]
 >> endobj
-3515 0 obj <<
-/D [3503 0 R /XYZ 71.731 279.084 null]
->> endobj
-3516 0 obj <<
-/D [3503 0 R /XYZ 89.664 263.308 null]
+3484 0 obj <<
+/Font << /F33 1322 0 R /F23 1217 0 R /F27 1224 0 R >>
+/ProcSet [ /PDF /Text ]
 >> endobj
 3517 0 obj <<
-/D [3503 0 R /XYZ 71.731 256.17 null]
+/Length 2513      
+/Filter /FlateDecode
+>>
+stream
+xڕ˒��_��e�*�!�%�f'�-�W�+'�8��H��C&Hk&_�nt$%͌S:�F���
�E?��E�'��wa��E�!Za���kYO`>�?��$Y���&Y�i�y�[�In�x�/�<��W�rgQ���}(k�h�9�ҧa)��uU�����y�igI�ɛ�9���|�ωm�$M-{?��Ȃ�����o�+%���3N�S��
-I�'U|;����V����1Z���|�Z$��RlU~ǧ�j�����1�3#�����\���pL(���B��GǴ��%
+V��zAik�;6�����dȆ�
+/��Jv4nF��̪�V`��Z�q��P�&��ށ��2�d<W�Š条�K��t�X�Y<1���
~�
�<(e/QsҨ�B�U��zrM	��Ќ���e���
}A|@O�)k�&gyT�C�W���Z��e���/��J'���kYU̓���!`6SZ�%�`��EI*Ӯ����ϔ%}JU���*�|c�ѡ�d>���a!���j!YI�9'�杶+�^ֳ�j٨��R��Wr�g���O f,2�|�9�B�+s�՟o�/����aN>?ݠ�WU��_�$���X�Y����t�\��.�,���9ד��:ٷ��զ�d�p�G��@!Rˡ�CJ����Uɰ���`\F)���륋��jϕ
+i����Z��[s/LT!�h��14H�=:��u��黶��៺��m��}���=ι�����gb�@�G�;�2!��wB��'�1"�%3�%����jY�L�j۬褤9�F�;��X�����C�֠ႃ��N�������<,R������B�����x�tm����Sr�lRW�P���8��,�]P+�+�k��^t�����(o+o�{Lx����u̎��†�/\���Кt9�.��g_ځs�"�>}晢V����>QXOk�x��V9`���I�)Cx����$8��U7�+
_Nh���t���{����.�
+&���1�i�;�!a��k�l��d�� X_qP�b4�7������T�T�{OUNS�c�	AF���Qy���32��Z��LTs��n4=����	iĘ�A�}�:�o�QFɻʈ�L��w�����D��9�'�7nN��^1]�;v�;��؄��A'ٸ��k����1&��E0��[��A��$�C����p�s��	E����pu=����-��O�T�ՊV&܈W�,��a�E_��F�w�.x��s�,�����m�_������j��Λa܁�N�h�ױ�hW�\!|��OP!0�N!�bJ��Ӱ��:�B��l�}))$��N[6�-Vq`	�OK�:�׿�����,�"�?�ƒT��8*��eh�R�t�����n�3F�+uZ�I�Cm��O���̚�c�z�I��X�>��Dc'[�eQ�cI�e�^��M�6�(x��L��쌰9����¯���Ǖ#�M�=�QE�'-H���uah�.T�	jlxC7W��Qf��urA}E��_Y]��(C*���Ь�k@1�Q��;EP��g�4ֽm�0-}�&��Ǚy?�b�6������g-�9Z�	
1��S��)u�Q1�@��I�������)���ҿ[�G��	�~	v�����XU�ﯟ'�]�Gb�$[ ���xB �	����
2BbOimw�f�ޣu����ț���"���i�.'�@���kf��M�Зy𧶵	2�הj��M��0�*�A���U���z_ioоB�=�]������̙ߛ�{�p�Q7U�n�7lv0�G��!�ڝ�Ix�jƮ�?I�I�`���,'���}�x\���m�0��A(~_3�-�����+�H�j�����R����fV��kU�k}FS���)��O������g�_����Q��>��3�]�U��n����J�:W���5w:?��5��B�;��P!����(��=}������c����د�ꖟ�����෯^�*����LQ���̉QK�M�7�D�lF�P����:	d^1�m�{z����1+6˜�����H��"o�{X:0&j$����t\�8�j�M�+��֐pZ�)�`��&����͠���~징{����xg�ީ�ݝ�n5]��5A{����Iྒ>���1=�(ņFz��!U�0�b���	U'�y��b�����F�](~���h�L�UPc5j�"�'i�E(��d�?��
:��B�`�z��	ގvm�19pYO�X�?���ls��Nِ�?���̙*�@����Q��v��)����m���3��@���J�
+�Ɉ��f��%��8��ϼ@�k��{s���^3�}�z�d�]j-`IA�P;��m��
+��J*����G��M�@���YK�}(��&���{�1iU�g�iA7E5���m`��'s;2~J�C��ۦ�����W��?k�6܊���G����8�=�������%�?E[krendstream
+endobj
+3516 0 obj <<
+/Type /Page
+/Contents 3517 0 R
+/Resources 3515 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 3552 0 R
 >> endobj
 3518 0 obj <<
-/D [3503 0 R /XYZ 71.731 233.256 null]
+/D [3516 0 R /XYZ 71.731 729.265 null]
 >> endobj
 3519 0 obj <<
-/D [3503 0 R /XYZ 71.731 167.168 null]
+/D [3516 0 R /XYZ 71.731 718.306 null]
 >> endobj
 3520 0 obj <<
-/D [3503 0 R /XYZ 71.731 116.195 null]
+/D [3516 0 R /XYZ 71.731 675.303 null]
 >> endobj
-3502 0 obj <<
-/Font << /F33 1306 0 R /F23 1201 0 R /F27 1208 0 R /F35 1569 0 R >>
-/ProcSet [ /PDF /Text ]
+1621 0 obj <<
+/D [3516 0 R /XYZ 71.731 657.37 null]
 >> endobj
-3523 0 obj <<
-/Length 2305      
-/Filter /FlateDecode
->>
-stream
-xڝ˒��>_�[�U6G�ÒfO�yd;��I�xvk+��,Ѷ2���cݝ�@��d�{�R>A��,g��,�"�`pcᮃYZ�qfX���+&Y�h�o�~�Y,�7��g��Љg��(pg��_��Ǥ�T�X��3����̫�|^u�/���߼(�ſ��q;��Pđ��z��Z�`�~k��Ӊ���F�M���ݼ[�֎3��������_6�6��J�?��-��B�@�JJ�B��k_׺��ן?����q3!\�6:�ӎ��7hH���S��_U(�V�.K]��j�q�Շ��6���Zm�:������[������d(\�M��h-�86�=!}�0��M��W���4>���'�|Q�JZ�2����֕"��W,��ؽ�,oqt�.��Twd:w~RD���t�I��̨d�������jJ��%�v��w�R�ꠘu�.�������L7D[��w��5�:*Z���L��p��iLѪ�o��b��q�8�V&L��Lb�ı�Ѫ`_gI��T���itEcB�^�8�
�N7������#�\�}5��hLt��C܇��x�?\7����)�r<�-���A���D�ÞMwdcUc�����6�V��f�5��O���X�Lh&k�W��k�%;�����|�y��L�#;_�����_�y$}��eR�aً�&��1���89^��y�$-��k�0;�*�>S�t�C1�eE���Xx�w�i��گ�Y���8��0/�2GH���(ya��m]$�-�`p�+�z�=�a��*nҍ������s��d�:9�ƅՍ|A'�]�*SO"=�ׇ�#�ˈ�8=t���wpv�"��CR���;f��΅(��Ҥ���y…LG��I\!�+ωL��x�	�a��;A�-������T}�S�'�p���i�oQ[\g����X��.��|'�D�'ӖK�;BnJH��g>¾S�O�7� j�.�=�+�c(�R<�'OG��!�PN)�$m���lI���x����*�����V'�A�@�c��b���jf �8��B�$�"88<V��)<�n9Ɋ��ʖ���l�:N�%ct�Fu�jR	��U��qHȈm�n̮rvp�M}�e�tw���i8PoKp���=�r�]��:S�
2�GI�l�X�����m����U`�B���i���;h�u3f{��Yb�%4ؒ���ɼp���l/��1�4�h�m[6�s�|#1��ق0Kǘ�馢��O̘�mb�M�q�P�[��i�E2L��)��3�2��&��Tp�1ꁟ�Z,�O�vɮP��Y��9-FX®]_gxQ�gZ`��ДՎ�4]%kH3�����?UVBgԥ�
-]��"�‹�̇ȇ�F�h�^'m���"�o��o�.��L)d�+7���Pޞt!<JSH�$e��钜'�OLUI'D�1����|�Bu_��a����J��q�JJ����8���*��7|�n����"$� ӠH�\v�A�
o5%>
-/�p֩Q�V��4ߙ��)1�0�r$�4�"�l�Sx�v���qv�I�U�_
-�Ӎ���L�l�]Pe�f��t�N�vn��QD� ��ʙ�͟��c;��[�쇏h�iK�$<��l����3u�}DޠU�Q2��	A\g�Ư��"m��$^cJ)��ak���0���H�'�_�;�t�īQV�PQ�+SHc~�#!� ��m���T��E~��Ȱ� HSD�퍽ed��"/���	4���|B��9������!�iMQ��D�4�U>#���u�Z�i_�E2���
����v�#3��`|����\h�*Q���̛�����|��..(��>�iCh2�%�͗��3��曨Fދ2}��9\-ox¹�)!�Ms�賂���5�>$</���Kk�v����;����;e-� ���oT	�P�L�.�vϡ��фb�j-	��ci�)�?c��=�ZUC���1��(c�g�����6СH�7Tx
����7$�/Ah�7|��Rm||R�Y�Ɵ����.��+Y6�~�>���reQ�2��� �j��!����0���ΰA���!o2�tME�,yD�N�I�2k�������q@�&\	x�U$�#SxS�QΎ�Zۯ���j����
-
-%�H�+��`6I+'�K�ӹ4���ö���,�5qt@n��{r�)���rZ��*���.�����0�\����j���ӑ���Tw�=Տ06g*)���<��}G�jLJ/~F��ђ\����p\����/�q-���s�endstream
-endobj
-3522 0 obj <<
-/Type /Page
-/Contents 3523 0 R
-/Resources 3521 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 3501 0 R
+538 0 obj <<
+/D [3516 0 R /XYZ 339.876 614.272 null]
 >> endobj
-3524 0 obj <<
-/D [3522 0 R /XYZ 71.731 729.265 null]
+3521 0 obj <<
+/D [3516 0 R /XYZ 71.731 602.101 null]
 >> endobj
-1618 0 obj <<
-/D [3522 0 R /XYZ 71.731 596.862 null]
+3522 0 obj <<
+/D [3516 0 R /XYZ 376.087 579.762 null]
 >> endobj
-566 0 obj <<
-/D [3522 0 R /XYZ 341.27 551.607 null]
+3523 0 obj <<
+/D [3516 0 R /XYZ 71.731 572.624 null]
+>> endobj
+3524 0 obj <<
+/D [3516 0 R /XYZ 71.731 541.74 null]
 >> endobj
 3525 0 obj <<
-/D [3522 0 R /XYZ 71.731 539.169 null]
+/D [3516 0 R /XYZ 353.441 530.945 null]
 >> endobj
 3526 0 obj <<
-/D [3522 0 R /XYZ 71.731 514.94 null]
+/D [3516 0 R /XYZ 280.021 517.994 null]
 >> endobj
 3527 0 obj <<
-/D [3522 0 R /XYZ 71.731 509.959 null]
+/D [3516 0 R /XYZ 175.77 505.042 null]
 >> endobj
 3528 0 obj <<
-/D [3522 0 R /XYZ 81.694 489.202 null]
+/D [3516 0 R /XYZ 397.028 505.042 null]
 >> endobj
 3529 0 obj <<
-/D [3522 0 R /XYZ 71.731 487.045 null]
+/D [3516 0 R /XYZ 71.731 502.885 null]
 >> endobj
 3530 0 obj <<
-/D [3522 0 R /XYZ 81.694 471.269 null]
+/D [3516 0 R /XYZ 71.731 487.941 null]
 >> endobj
-1619 0 obj <<
-/D [3522 0 R /XYZ 71.731 469.112 null]
+3531 0 obj <<
+/D [3516 0 R /XYZ 462.474 455.129 null]
 >> endobj
-570 0 obj <<
-/D [3522 0 R /XYZ 249.392 431.896 null]
+1622 0 obj <<
+/D [3516 0 R /XYZ 76.712 425.54 null]
 >> endobj
-3531 0 obj <<
-/D [3522 0 R /XYZ 71.731 424.544 null]
+542 0 obj <<
+/D [3516 0 R /XYZ 232.492 386.168 null]
 >> endobj
 3532 0 obj <<
-/D [3522 0 R /XYZ 356.564 411.772 null]
+/D [3516 0 R /XYZ 71.731 375.803 null]
 >> endobj
 3533 0 obj <<
-/D [3522 0 R /XYZ 71.731 365.779 null]
+/D [3516 0 R /XYZ 71.731 363.887 null]
 >> endobj
 3534 0 obj <<
-/D [3522 0 R /XYZ 71.731 283.09 null]
+/D [3516 0 R /XYZ 71.731 358.905 null]
 >> endobj
 3535 0 obj <<
-/D [3522 0 R /XYZ 71.731 231.284 null]
+/D [3516 0 R /XYZ 89.664 338.148 null]
 >> endobj
 3536 0 obj <<
-/D [3522 0 R /XYZ 71.731 216.34 null]
+/D [3516 0 R /XYZ 131.167 338.148 null]
 >> endobj
 3537 0 obj <<
-/D [3522 0 R /XYZ 108.889 195.184 null]
+/D [3516 0 R /XYZ 71.731 335.991 null]
 >> endobj
-1620 0 obj <<
-/D [3522 0 R /XYZ 71.731 143.976 null]
+3538 0 obj <<
+/D [3516 0 R /XYZ 89.664 320.215 null]
 >> endobj
-3521 0 obj <<
-/Font << /F33 1306 0 R /F35 1569 0 R /F23 1201 0 R /F27 1208 0 R /F44 2037 0 R /F48 2049 0 R >>
-/ProcSet [ /PDF /Text ]
+3539 0 obj <<
+/D [3516 0 R /XYZ 300.451 320.215 null]
 >> endobj
 3540 0 obj <<
-/Length 3211      
-/Filter /FlateDecode
->>
-stream
-xڝk�����
-���"���K/��R��M�"	Y�m�d���|ί�g(ɒW���p83���H�����26����a��O�1v����|����R��MB�y=l|�s#/�DJ�q 7��O�ק���f����(�~���*Z�Ց@_�[��(�2�����ӷ��@En�U�,�B>�6�w�����^�ƾ0�)�%��Ώ�c��$Lw��Ϻ+~�<��]QW-�t����f'=W��P���c�@ߣAQuM���niޝ4
�}Qݍ�5��>�,-K^�@��SV`���4��t�'��&�����҆F���ֲOMh�VzΧ���(�}��	a�9
�j�^���t����
�_��il�0!�P�{q�%mҳF#�=�+��V�H_�
-tF��ag7A"3�p�B>�̈j��M,�DZ��:s�Yg>#��]b�~r�x���%�H��B��jf��夫s+�F�4C��1`�VD�(�=z�/X.(����r��͎��N���x�G�#�%N�j<�;G]��XN��(��yK��`|J��u�줳�4��L�����9ꆖ���P|
-�X��*u��n0t#߿���J��*Z�muG�r��,���4->���K+�8��i@o{}�2�~.M���
|�y�t�����/nXOE����>$|ao
-���7���D��#%)��n�S�FH�Ԧ��lJ��͞���p23l��}�hV%�<0�uG�L��+��3	c��u�w//��ywI��o�m����+�#�ꐷ���K?��6
;%��Y;`�?�<~�ݩ�[���a���t�7�K�����ӝ�ü8�u���{�n���c��vσZc���Q�;w}QA�0xM����B�Mp�oF&���
C���������E�?�C���>��g/���K�K^==��J0#sr(32���;^��I����
-0'��y�[�-7����q޼mFAn���^���m��E���&�Tem_��i�<	J��S3oك����hUAgU�9��LB.$!�����.��ЗL��0�&1�i�B��-�X���I��E��/��6���L���	��Z�zI�����e`!.{MOgU�9��,C-$� *�r]�Y�`Fhjh�d����~e�ߦ�8^���Eb�T�pz��S����o���y��%�g����	�>m!i��m8L�)����L����H=�s}�U�,����T�!5F��	��	�i�ń葱���^��T�L[ܝ(\u�L��1ǀqn�#�r\���z*�>aH�f�^"��o�J,�0u�6w<�,
-@i|󗺙�V�3�B�|$����c�pB`�h��D}�w�%�ȋ�i�DE�V��=5Eݷ�r�z��F0�!�(9��+�@�3d�T��Pt'�)��XB ��fYCMC�����HY�=;�1{���֢Zx,�&����-��co�(�	��CݓY��Е�P x�(\enqV��	��t|�t?�{�x�JI0�f+���ZKQ�i~��ƁI_
RC��h��{N?���Q����a��욢�/;�aM��c� ���y>$�f��9�	�3���iiw��⻑�]Y cc[M}�	\�$,��Y�����/s�Ӕ�4!q)���%-�~E,�\(vE�x4\!/�� `p�tȂH�o�L{\�;Z=��S,����9(�p��"�ɐJf��� �✵y�؄�?'Kb<�d����h�wצ`�����������h���/��8�Z�l&hf���c��n:}��{E�KS�]��T��!���f~ 9E3U5![�4�
���߲|&L]��Cgh��jgz,����!Lۂ��-@N/X�g:�1��j�@�����Y���EL�ǤT�Wo���l����10_�p�Ś�S��i[�>�fwh��]K:m��iR܎��49�PE�FA>�)� ��o��7�����O��+�(ـ�NԦћ�Ӈ��@!d�\�A{oAbg��)(�H>�d+O�*�7ʏ� ������6�җ�|l��D,���~_膶�QC�Q��T����Ƿ�S���U�n�g���S��*E`ڗ���V��Ba�50\٧����B�i~�!&���ʹf9����N&�@�Q4��g���JW7cv"�0�s��Wr*����=M�g�,+M�E{b
-5�;�Qr���#0+�5�6�29�x+�,�4�����Wښt���2�QY�")r� S��F!�_o"A[��C�������e|���韴w_y��!?!�?���/G�P��*�>��s�X���0|�I?��٩��N4�t�P�%�+.��4�%���F���U�>����tG3� ��mwO�`���]<wp6]x&�1^O�_���݃(��G�������{�=r��@��:A�m����7�59��GJ
-�jm�s���#8�j��L�-�fnL�H#qͬ�]j.�
���#����4a[:�˶6AT��V3����t	�r(Gaa�10�/�h�h	V��0 ��&7`��m���Sڼ\�חSw._����t��-� a{�.q�|D�™�bY���t�O�>
6�`��f-c�b���TS���;�c�w~���/���튮������#�[3'�:i�c.si
-�e&�|�A�
v�x�HL���q#�o�!v�5�AωL��o�v�t��V#V	�Vl�,��d>�S��籠�ܵ3�V�<!�]z<�ܪ~h~��j-��:���2�{�l>�;�7��'��4vN�����gR8���5��S���W��os?e�?N$؛����
��XZ���(�%M�}kŻ���	}�A=LT�����fT��.��A�\0���h����=�x�;���Y�S��-�p�/͈k�d�jg��ݹh��M�6���T��>�{���
s��'Xې�����e��ފ�D��DŽ�:��9�-�?�����s[[?�>?\[�l/:+��"�%����QO��T�-���o���dá��,G�1~h���[	��ǙCqy�L�1T�W�<2�摁�8aw�ή���p@ɸi��S������08�mG���[��LKS��K��y��)��5s���wU���������G� x�E���F#��ύ���D��)o�.h���I8endstream
-endobj
-3539 0 obj <<
-/Type /Page
-/Contents 3540 0 R
-/Resources 3538 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 3501 0 R
-/Annots [ 3545 0 R 3554 0 R 3557 0 R 3560 0 R 3562 0 R ]
->> endobj
-3545 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [243.325 672.608 288.784 681.519]
-/Subtype /Link
-/A << /S /GoTo /D (parameters) >>
->> endobj
-3554 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [141.14 541.38 205.897 550.292]
-/Subtype /Link
-/A << /S /GoTo /D (upgrade-cvs) >>
->> endobj
-3557 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [203.157 523.447 267.914 532.359]
-/Subtype /Link
-/A << /S /GoTo /D (upgrade-tarball) >>
->> endobj
-3560 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [214.225 505.515 278.982 514.426]
-/Subtype /Link
-/A << /S /GoTo /D (upgrade-patches) >>
->> endobj
-3562 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [81.972 449.101 134.276 457.639]
-/Subtype /Link
-/A << /S /GoTo /D (template-method) >>
+/D [3516 0 R /XYZ 450.128 320.215 null]
 >> endobj
 3541 0 obj <<
-/D [3539 0 R /XYZ 71.731 729.265 null]
+/D [3516 0 R /XYZ 71.731 318.058 null]
 >> endobj
 3542 0 obj <<
-/D [3539 0 R /XYZ 71.731 741.22 null]
->> endobj
-574 0 obj <<
-/D [3539 0 R /XYZ 290.952 707.841 null]
+/D [3516 0 R /XYZ 89.664 302.282 null]
 >> endobj
 3543 0 obj <<
-/D [3539 0 R /XYZ 71.731 697.476 null]
+/D [3516 0 R /XYZ 135.13 302.282 null]
 >> endobj
 3544 0 obj <<
-/D [3539 0 R /XYZ 71.731 674.765 null]
+/D [3516 0 R /XYZ 174.159 302.282 null]
+>> endobj
+3545 0 obj <<
+/D [3516 0 R /XYZ 250.842 302.282 null]
 >> endobj
 3546 0 obj <<
-/D [3539 0 R /XYZ 86.981 661.813 null]
+/D [3516 0 R /XYZ 341.239 302.282 null]
 >> endobj
 3547 0 obj <<
-/D [3539 0 R /XYZ 146.997 648.862 null]
+/D [3516 0 R /XYZ 467.454 289.331 null]
 >> endobj
 3548 0 obj <<
-/D [3539 0 R /XYZ 395.872 648.862 null]
+/D [3516 0 R /XYZ 71.731 282.193 null]
 >> endobj
 3549 0 obj <<
-/D [3539 0 R /XYZ 247.699 635.911 null]
->> endobj
-1621 0 obj <<
-/D [3539 0 R /XYZ 71.731 628.772 null]
->> endobj
-578 0 obj <<
-/D [3539 0 R /XYZ 367.202 591.557 null]
+/D [3516 0 R /XYZ 71.731 256.29 null]
 >> endobj
 3550 0 obj <<
-/D [3539 0 R /XYZ 71.731 581.192 null]
+/D [3516 0 R /XYZ 71.731 241.346 null]
 >> endobj
 3551 0 obj <<
-/D [3539 0 R /XYZ 71.731 569.276 null]
->> endobj
-3552 0 obj <<
-/D [3539 0 R /XYZ 71.731 564.294 null]
+/D [3516 0 R /XYZ 76.712 168.584 null]
 >> endobj
-3553 0 obj <<
-/D [3539 0 R /XYZ 89.664 543.537 null]
+3515 0 obj <<
+/Font << /F33 1322 0 R /F27 1224 0 R /F23 1217 0 R /F44 2069 0 R >>
+/ProcSet [ /PDF /Text ]
 >> endobj
 3555 0 obj <<
-/D [3539 0 R /XYZ 71.731 541.38 null]
+/Length 1703      
+/Filter /FlateDecode
+>>
+stream
+xڥX�o�6�_!"1+���Ӓ`�և�CSC�Y�mm��I������e�V�.AB�t���>Iq˅_nE�E/a^X��ʵ����k��fYx^��JX
+�ie���"7�"�8�����Iw�l����`4��ۢ*Z�՚H�{�����L��Oo�~z��$���n��(��cI��篫�_]+޷�����[$!��8Ka5�Z]}����Z�0fb^��|.8�$��2����>~��.���&`�$R������6������[1�P<�Y��B����E��v��Y�zV�������mZTD2c��4i�Z:µ��طDܦ:�kKZ������zO��/�RE�hۯn��9�Pi��7���'|�>l$*�{�p�n�_Zu�3x�f�l[�w5��?nQ�sVo��wi��p�3�]k��= Ě�X�5�v0��f��;ٴuu�5���k#&�H���M&mtV��� ����B�TI������&7S ��W7Ē�z�F�9�.�d�2׋�A�~g���g��b���[��.䰈�|��e(�
+c�F���XѱiÂ�'ۏ��5�c��c����b�Ě�|���;(qܮ�A�ޒ�a�m��^��z��D͕�̺򙞲�ꚺ$n��w(w���_��z�Ff I��=��nNW]��������j����^��^�����1u#��}�u'm��� d�����}�4[����k��̳��IQe�>�̴5ê
0
�M]�IT��	��yŸ��ϥ4,���R��z1�Gb�nE؏LB��������� ���ni.�#3ѐ7&^F/�U�S��f}�y-o��5�������ۨ����n�}�u)O⍫]��M|��(�ilT��
+к�6�@��Tl�=`[t��P)���|$6���d䍖�j0W�gc��O�\H�V0x��~r׶ź�3<~(��iWyl�
��c=`B�e�#������Yo�I.m�vI�J�zu�j`d�V��ߨ�lR���+��K�G.�c�lFx.e�a���Ky�Ō���E�� &�Q�����"+��cĕ0i6
�i�[�%�|�)���8��W��Zܮ����W�K� ˢh�G����,h�3�X/;c{$����+i�eI�����M_>�����\�g�g�F"`�?߉<M�Y�b\2��eS�`��Mr2	�����JIS��
�dB�
+�n�N�6$��Q9�ޗiCt�3����2�2B� ��T5�^jMT�D5�\��"ä+U��p���T8@A]�9�bw�NS��*/�U^���}9��<*J9���n��
+�
�6Q[��
Q�0c:����8��N���CmQ
+ܚf0)2�C�$�%����|��ŀicA����q�'�>.�A5�<�H���2xD�&��gƑۭ24�|�}@y@;U՛�ߣ…+�����GC4��e���9:��T���������M�=��8V<f����c����:=��\�Ճ.��%&�u7R��5�T�#j�J�%���{wK���i��1tn��9���j��e��m�����=ի�� U�zӊAe~Ȕ"8~�A�	�E�0������^0�P�j/�@\~~���������c�����=�4D����,���'�#��e�AV��i ���q
+�/�W$kendstream
+endobj
+3554 0 obj <<
+/Type /Page
+/Contents 3555 0 R
+/Resources 3553 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 3552 0 R
+/Annots [ 3571 0 R ]
+>> endobj
+3571 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [315.096 355.457 349.965 364.369]
+/Subtype /Link
+/A << /S /GoTo /D (products) >>
 >> endobj
 3556 0 obj <<
-/D [3539 0 R /XYZ 89.664 525.604 null]
+/D [3554 0 R /XYZ 71.731 729.265 null]
+>> endobj
+3557 0 obj <<
+/D [3554 0 R /XYZ 136.488 684.724 null]
 >> endobj
 3558 0 obj <<
-/D [3539 0 R /XYZ 71.731 523.447 null]
+/D [3554 0 R /XYZ 76.712 625.051 null]
 >> endobj
 3559 0 obj <<
-/D [3539 0 R /XYZ 89.664 507.671 null]
+/D [3554 0 R /XYZ 89.664 607.119 null]
+>> endobj
+3560 0 obj <<
+/D [3554 0 R /XYZ 71.731 592.01 null]
 >> endobj
 3561 0 obj <<
-/D [3539 0 R /XYZ 71.731 500.533 null]
+/D [3554 0 R /XYZ 89.664 576.234 null]
+>> endobj
+1623 0 obj <<
+/D [3554 0 R /XYZ 71.731 556.145 null]
+>> endobj
+546 0 obj <<
+/D [3554 0 R /XYZ 304.825 518.929 null]
+>> endobj
+3562 0 obj <<
+/D [3554 0 R /XYZ 71.731 508.564 null]
 >> endobj
 3563 0 obj <<
-/D [3539 0 R /XYZ 71.731 444.12 null]
+/D [3554 0 R /XYZ 71.731 496.648 null]
 >> endobj
 3564 0 obj <<
-/D [3539 0 R /XYZ 71.731 378.989 null]
+/D [3554 0 R /XYZ 71.731 491.667 null]
 >> endobj
 3565 0 obj <<
-/D [3539 0 R /XYZ 118.555 340.425 null]
+/D [3554 0 R /XYZ 89.664 470.909 null]
 >> endobj
 3566 0 obj <<
-/D [3539 0 R /XYZ 71.731 286.835 null]
+/D [3554 0 R /XYZ 71.731 468.752 null]
 >> endobj
 3567 0 obj <<
-/D [3539 0 R /XYZ 364.919 254.178 null]
->> endobj
-1622 0 obj <<
-/D [3539 0 R /XYZ 71.731 239.07 null]
->> endobj
-582 0 obj <<
-/D [3539 0 R /XYZ 244.469 206.756 null]
+/D [3554 0 R /XYZ 89.664 452.977 null]
 >> endobj
 3568 0 obj <<
-/D [3539 0 R /XYZ 71.731 198.118 null]
+/D [3554 0 R /XYZ 71.731 450.82 null]
 >> endobj
 3569 0 obj <<
-/D [3539 0 R /XYZ 71.731 146.816 null]
+/D [3554 0 R /XYZ 89.664 435.044 null]
+>> endobj
+1624 0 obj <<
+/D [3554 0 R /XYZ 71.731 414.954 null]
+>> endobj
+550 0 obj <<
+/D [3554 0 R /XYZ 381.763 377.739 null]
 >> endobj
 3570 0 obj <<
-/D [3539 0 R /XYZ 71.731 131.872 null]
+/D [3554 0 R /XYZ 71.731 367.374 null]
 >> endobj
-3538 0 obj <<
-/Font << /F33 1306 0 R /F23 1201 0 R /F27 1208 0 R /F35 1569 0 R /F44 2037 0 R >>
-/ProcSet [ /PDF /Text ]
+1625 0 obj <<
+/D [3554 0 R /XYZ 71.731 350.476 null]
+>> endobj
+554 0 obj <<
+/D [3554 0 R /XYZ 398.777 313.26 null]
+>> endobj
+1626 0 obj <<
+/D [3554 0 R /XYZ 71.731 310.291 null]
+>> endobj
+558 0 obj <<
+/D [3554 0 R /XYZ 359.858 278.79 null]
+>> endobj
+3572 0 obj <<
+/D [3554 0 R /XYZ 71.731 270.338 null]
 >> endobj
 3573 0 obj <<
-/Length 1803      
+/D [3554 0 R /XYZ 71.731 234.79 null]
+>> endobj
+1627 0 obj <<
+/D [3554 0 R /XYZ 71.731 133.734 null]
+>> endobj
+3553 0 obj <<
+/Font << /F33 1322 0 R /F23 1217 0 R /F44 2069 0 R /F27 1224 0 R /F35 1589 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+3576 0 obj <<
+/Length 1420      
 /Filter /FlateDecode
 >>
 stream
-xڵko�6�{~�?��!�DR/�_�l�������lѲZYԊT��_3ʖ��6צXdI���y�|�?��8�$,b�D�,���hQ��o���Xy�����*����5[�rq�[�QIJh�Ȥ`y"w����}�Y�/W"��h��<�mm�^��n�%�Ou��_���Iv"3���g�q.��Y?�4OX,�vw{�v�i�R$��4�����*��0�v�	��֭>���ȭR�*=��u���z���ۡ�[ӥ�n�-�dk����^�����匋}��m�x�p�keЊ`�l�}�t[���5Q���"�h!���|��7�����R~F�l
���]�(
-�����c���&����ޝs)+�a�AV�>_ֽ!a����y|��r.E: r+�כΨ���7E�ۇ�̗ gu��^�젝w��G<t:����'������wĹ+�9꾼!-���Y�$����%ѫ��W�D�{ZP���֪�W�"�i��7���0��󇍼�@���������y��J��=������-�o�j��Qv�X��:G��T[�a�1�"�zk�^5�[m�a����L�:t�j*TmX�]9����~��0ff$q��9K���[6�bZ�8�,��E"�1������_�E	u�;����W���$X���Z.z��]�����	d�9��gy�ǻ`��Yʼn�s���~�dT�x
�1�v1���,���<f	�NY*��B��Rb��2��������r�=�n��������6'�<���4>����:I�$��FA�{�cm�$gZ����LF�'z}�4fy,����
Zbg��%X�:(���fr}	��F򨅄*�6n�������è�Z��4�/K�H�1-y�C[l�k�]Ӂ��u��[4:��RH���Ӓ�Pr:a皳�i���G�{�&m�����zk�.���42/r�vK�e͓��������{ڣ!q�Zg�J]��YtHz�N	��P�-9wdy���|��ۨ��d9g���GY�.����.��y
-�<�'j�4�%�e0@�H�g�8�YQ�H�	�����U}Q�l63���-�
xѧ�d�B�`eX��]�q���(/:Gò����SW�R� �;'��TƓ��9B=߻1���^O)Y^-!b�!� ���_�`<1��EoQC������%�-��k��Z`����E�a,W�1�Ob欯i�l]�y�r����"{k��&'4��2�>A`�X�<��r�*�4
-�f�+.HT\$��s�En�y�I��6n�6e���`-�i��k��30�Pp�%��1x��Fh��Otp&�JY�{^]4��^�3J6�Ya_���Ֆ>�*�Ѵ�15��[-��AJ��3I��|�X0����DP�=L%X�N��S�o�
amzo|;���>P��7���(���9s�����q�]��tn0��?^�b�G�i��
�Y�A���ǥ���a�H��.n��X@�Nf����O��@o��A�_#T5`Ci�
-�$ZԿUc�Q���.dO9�ޜ���p��v�h\��X�����7��=��.eP�/;���
-�i�X	�aN/!D�պ1�4�
-��`&���>]θOi�������[|`U��#d>�?�r�
-����~�9g��@�i��6��3>1V<Fa0e��jqhy��?5��v[��Qƀz����;��)>B7�n��������兎�ʩp����������%�s��O�&��7��DyO��6�9ˡ��'�3��/|�����>����KI�4o:�endstream
+x��X�o�6�_�G�}��NҬÚ������H�-�
}������HI�e�6`	`�������Q�Ćg9,�q��$-���f��1�,��ruu���&	KBo�ZO|�f��L"�eq�NV���͖�QM�n`[�v�y��0��Z�S�����v|���׫�U�;�"���E�ω}�7q�h�i���}e�����Eˢغ����:�je8P�4uM����Qj�D�Vy�B��Ե-��i��!{2wb���ҽ���	�l�ڋ���=��S'�^h�%#�j$M�a��N��3*k75��ZN��PCEF���mN"<��Ա-!�t�g+�񞵮d��E*�n��ήΟ�Q�ޓއ,��lŘ	DF���ѐ�4[A�Pk���]�"�&7�l�D���ѱ@�SS��ٸ�\S�jѕ($��
Dm���L�6�*O�\��褽`����=��Q�6��`�vw,z���aa*��F�l{Ckn��.>M��������v�z��E����AV1;����S�T�j�㸇cϾ�EaF�i`��;��&�Nw��5�k�����c��8"���t���CQ��S�Q�g:"r�E�2�ٺ��WV͈�
_O��2�'�s�=�,��L�Á�ᬟX�ҾZ
+���8F	DX�p�a4��c޳Pۡ4�aNJ℅�?�����
+E�O�& ���|#ˆ�e=���ӻL+u������'!��ˈ
x�AfX�t�f#�~�%�GbQ7��(l��1���j�z�����R��ԧ!��-��,��ˀ�<g�,��z��ǀ^�}$�t�O]�P�P�@�D-Ŏ�2��Z���bBD&�(1e�#�ڼ�ܖ��*��)/uT�RdcBי��B�r�Ӵ��g��"������*�aN�\v��:ѩ��%=���9Ig�ϴ��=&F�۽L��Q���]���F�T���H!�C�
+�i�ڂS�A�>�a//)aPIկ�z�S"���@yxA�i�ڷϻ����9���Up��^64��qb��c�X�bˉ���eI���(1��R�:u<�� ?�3�#q�HUDj)��:����+0�U
w�]��i+S��P�K��?��O����������bD�v[������P�Ъ��W��,�n߭�j8b�c���f��j8Е��V���_�
�:t�?�n�7���x�%sو�zT��p�  m��xPO�j�B��blUv��4�G��,��e�_Ū��� ��V=��X*���7$����wM��/e�w���W[2���.��EI"����l7ۑUʪ�׳A�o��x��n/3.x���Ơ����^�s�QI�4L@`R���O��c��`�S1��+b�OZ�jB�
+���>T
Nt�#I�r�$pcf�Fb���>x�j�=N��endstream
 endobj
-3572 0 obj <<
+3575 0 obj <<
 /Type /Page
-/Contents 3573 0 R
-/Resources 3571 0 R
+/Contents 3576 0 R
+/Resources 3574 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 3501 0 R
->> endobj
-3574 0 obj <<
-/D [3572 0 R /XYZ 71.731 729.265 null]
->> endobj
-3575 0 obj <<
-/D [3572 0 R /XYZ 71.731 741.22 null]
->> endobj
-3576 0 obj <<
-/D [3572 0 R /XYZ 71.731 662.416 null]
+/Parent 3552 0 R
 >> endobj
 3577 0 obj <<
-/D [3572 0 R /XYZ 104.01 650.859 null]
+/D [3575 0 R /XYZ 71.731 729.265 null]
 >> endobj
 3578 0 obj <<
-/D [3572 0 R /XYZ 104.01 639.203 null]
+/D [3575 0 R /XYZ 71.731 741.22 null]
+>> endobj
+562 0 obj <<
+/D [3575 0 R /XYZ 381.114 708.344 null]
 >> endobj
 3579 0 obj <<
-/D [3572 0 R /XYZ 147.048 615.89 null]
+/D [3575 0 R /XYZ 71.731 699.891 null]
 >> endobj
 3580 0 obj <<
-/D [3572 0 R /XYZ 104.01 604.234 null]
+/D [3575 0 R /XYZ 71.731 664.344 null]
+>> endobj
+1628 0 obj <<
+/D [3575 0 R /XYZ 71.731 609.913 null]
+>> endobj
+566 0 obj <<
+/D [3575 0 R /XYZ 342.285 574.446 null]
 >> endobj
 3581 0 obj <<
-/D [3572 0 R /XYZ 71.731 556.201 null]
+/D [3575 0 R /XYZ 71.731 565.994 null]
 >> endobj
 3582 0 obj <<
-/D [3572 0 R /XYZ 71.731 534.296 null]
+/D [3575 0 R /XYZ 71.731 540.409 null]
 >> endobj
 3583 0 obj <<
-/D [3572 0 R /XYZ 118.555 493.764 null]
+/D [3575 0 R /XYZ 71.731 535.427 null]
 >> endobj
 3584 0 obj <<
-/D [3572 0 R /XYZ 225.689 482.287 null]
+/D [3575 0 R /XYZ 89.664 514.67 null]
 >> endobj
 3585 0 obj <<
-/D [3572 0 R /XYZ 332.317 482.287 null]
->> endobj
-1623 0 obj <<
-/D [3572 0 R /XYZ 71.731 437.054 null]
->> endobj
-586 0 obj <<
-/D [3572 0 R /XYZ 277.022 408.407 null]
+/D [3575 0 R /XYZ 71.731 512.513 null]
 >> endobj
 3586 0 obj <<
-/D [3572 0 R /XYZ 71.731 399.77 null]
+/D [3575 0 R /XYZ 89.664 496.737 null]
 >> endobj
 3587 0 obj <<
-/D [3572 0 R /XYZ 86.396 376.527 null]
+/D [3575 0 R /XYZ 71.731 494.58 null]
 >> endobj
 3588 0 obj <<
-/D [3572 0 R /XYZ 71.731 369.389 null]
+/D [3575 0 R /XYZ 89.664 478.804 null]
 >> endobj
 3589 0 obj <<
-/D [3572 0 R /XYZ 401.148 345.643 null]
+/D [3575 0 R /XYZ 71.731 471.666 null]
 >> endobj
 3590 0 obj <<
-/D [3572 0 R /XYZ 71.731 320.572 null]
+/D [3575 0 R /XYZ 71.731 448.752 null]
 >> endobj
 3591 0 obj <<
-/D [3572 0 R /XYZ 104.01 311.072 null]
+/D [3575 0 R /XYZ 71.731 382.665 null]
 >> endobj
 3592 0 obj <<
-/D [3572 0 R /XYZ 104.01 299.416 null]
+/D [3575 0 R /XYZ 71.731 331.691 null]
 >> endobj
-3593 0 obj <<
-/D [3572 0 R /XYZ 71.731 298.201 null]
+1629 0 obj <<
+/D [3575 0 R /XYZ 71.731 199.054 null]
 >> endobj
-3594 0 obj <<
-/D [3572 0 R /XYZ 104.01 276.103 null]
+570 0 obj <<
+/D [3575 0 R /XYZ 481.798 153.799 null]
 >> endobj
-3595 0 obj <<
-/D [3572 0 R /XYZ 71.731 251.383 null]
+3593 0 obj <<
+/D [3575 0 R /XYZ 71.731 141.361 null]
+>> endobj
+3574 0 obj <<
+/Font << /F33 1322 0 R /F23 1217 0 R /F27 1224 0 R /F35 1589 0 R >>
+/ProcSet [ /PDF /Text ]
 >> endobj
 3596 0 obj <<
-/D [3572 0 R /XYZ 104.01 229.478 null]
+/Length 3066      
+/Filter /FlateDecode
+>>
+stream
+xڥM��6��~���'��\Q�,�=%ݯtf��I��h���Ȓ*Ju��~�)��ugw2o� �� >��E��"�"���"�&���.0�'�k&Y{4o?>��q��E����M�4�i�,�˟�o��t�\GIĂ�o�S�T�Us ��q)�ÿ��V�_?~������$NE�ů��h��ҫ~n�a&��ƪ76z)��K��A����z%���� �vd��j�z,��#��
|PM5\h��Q��"�}�
G�P�:����Ĵ��^Մ�)S�jP0����k��z݁6��і`���D�'R�~PUCf��vW듡Q���kS�1覨�#�sL�>.3X+�$�dž��	���8\h<�`2NJu{ �b��׎7���j�
+ک������%_h�/����sQ��2��A���)\ѳ[>)@������'���;�,+���b.ߐ69�#j=��0�F��ć��=oµ�B�:Ѡ���a���n ͳ�+f���zv�6��������>[\eh��TC���#V��v��&���t�h��[zÎg�L�z���ƪgړjF�pg�>����T�6s��u����,�I0���������p8p��� �v��ڴ�x��<���D��x��d�`vF�^���RϤ����E�o��b���Z��ن��D=���e�Ă8O;��X�7Q($\�Y�q�I�Ehǖ�H�Stk]eg����e�Rfҝ���4g�O�n�	���ڌ�`n�)Q��,䀠d�}�IU5��Z�R�a:~�%��&�>¾w�#HhǺ|����@��0֊]ÿ�5{�0��v�؛��UU���iU�X$�f�d�؂�!c����ᢄ���}���o ��`i0C/z��?}x���	�EGn_�Ak����ic3yE�/��5�0�D�d�$���$~�cW}�Aκ�����2�Z$��@n�6μ��I�����n�����=����n0�	�i����qg�jM��2�@���>p�;=�x�$%.�r8b�`��0�$�XG���f�m�
��Ҧ:4�6�b��R`�dK��m<"�8s�%�v��^u#��K�6���މ�M�^x��?��&E�mAu���g�=)p�#�"��W
+n2�Z3��6�Cw�UI9�6���{{)�4x�k
V2�A	�q)Ir���K���%��(0�e��#�E�Y���,A,��dI*Y�Ҙ򆝩NzN���v<E	�0(x�̺����j5���sad�#�vTrf�XU&Q�;Ò�J&����"�_��u21�*s��w�����]9���tS���t�=�{k����֏�?H��ͫ�G�:H��UL���%��;a�D��~��i�#�׬	w�|���+� ���TU�6
a��}�]��0�ڪ�Z{A^�3��|��W����d�{al�{�wv���<�5j�nW�G��q 	�=¼�P�&�
+C6����q�K�a�O�k�o��kL��~Ĥ����5�C,ݡ�{� �F�e�/�v�����`w>uiGޤ+�G3u�j�i	����2�c{bl���(��6�j�jJ�E��~S�Lldv-lmk2��j?���A\��2NV�1��>ϑ����+��8Q"g]�DB>c͜QU���X�pA!�a���lP��@�f<�4��l���5l���J3�p���lv>9�?.��|&�D��l�x�rSBN=mae�7�7��Z=���Ў���"�x>Z7N9	�rN9�E�G�+q��3M9��7����z}�4LD�����|�3�y�	���D�Eprx�N̓^9F�V��X��٥���h�a��1�{��5)�q欏
�q~���ݘ]��� ���4�ܵÑo�z�`t)صR?��馼�)�R��%Gq����g�t�m���%uo1�MA
+C_��.o���vn{���F�IS�q)��[�ũ�}��\�v�ʹ���|p�Vb<��0K4|�����=6�j��m��G�kM�O0�$&[�C���xzN��C!8�X��ч�����J�{��,�NJ&��x�O KpOK�?{�������d
i3詘m�*f����{/���D�!s(<8�|�|�З�w�,n�,�������� �ڦ2��@�kq�`��+�6�6� LA�b�[,t�X��1GU@ٟ�t�&�6�×b?��,���Ʊ�Z�����읈el�ִ���`W���-RR.P�����g4�-��ox�M�YzsN�sN����_ű��Y�(��0�'���"�h�C��;ƙ``�k.��Z��	}�{�*]��W7�ǽ�R
+���F=��)!x{�ȿ��m���k�{aS��%�7/�K��@�b�����H�cQ��%�Fy��Ԯ�˳Y7�߄�<��לB
+�wXڎ���g�JA�og��]b�T��k'dʨ�n�ˈ�C˄�0������T��u~��j����M"+����2��{RH���3J���ZG�;�����{>��'\r��t�,lo�����1��PˢOc�&}0’����uj�v��f26}���~���B�������AQ�p�W<C��ʫ�{�1lm��:����/r����Ǭ��&*��{Q�db׫G	{�gN���{V�b#1�_S�=wm�:�
+zv������0&���'�	�'?�I���E��7h/�}�[V�S#�bI\�v�{���N�}!�5˅�(BqB��BwCiײ9��5���X����=n����Vmzϴ}���O�Q��@��<��P
��;�;�b����)(/�NY#̄EuR��p���$�~�z��K֞�͇�#���B��Ys�����pō�2��N�k�2�ZL;˥^Ħ'i~������A����I?����f�4sƵ�8�[3�<i9-�	��2Y7Wȝ��y��?�|�X��jU�̓���ٻ���k>a붫>y�G�<<R�H�iq�U=q<W�%�<�ي~�/=ne"���o[���H�L��c�[��/���{I�����endstream
+endobj
+3595 0 obj <<
+/Type /Page
+/Contents 3596 0 R
+/Resources 3594 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 3552 0 R
 >> endobj
 3597 0 obj <<
-/D [3572 0 R /XYZ 104.01 217.822 null]
+/D [3595 0 R /XYZ 71.731 729.265 null]
+>> endobj
+1632 0 obj <<
+/D [3595 0 R /XYZ 71.731 741.22 null]
 >> endobj
 3598 0 obj <<
-/D [3572 0 R /XYZ 104.01 206.166 null]
+/D [3595 0 R /XYZ 71.731 644.419 null]
 >> endobj
 3599 0 obj <<
-/D [3572 0 R /XYZ 104.01 194.509 null]
+/D [3595 0 R /XYZ 416.566 633.624 null]
 >> endobj
 3600 0 obj <<
-/D [3572 0 R /XYZ 104.01 182.853 null]
+/D [3595 0 R /XYZ 151.959 620.672 null]
 >> endobj
 3601 0 obj <<
-/D [3572 0 R /XYZ 104.01 171.197 null]
+/D [3595 0 R /XYZ 71.731 613.534 null]
 >> endobj
 3602 0 obj <<
-/D [3572 0 R /XYZ 71.731 159.541 null]
+/D [3595 0 R /XYZ 71.731 600.583 null]
 >> endobj
-3571 0 obj <<
-/Font << /F33 1306 0 R /F27 1208 0 R /F35 1569 0 R /F61 2529 0 R /F55 2324 0 R /F23 1201 0 R /F44 2037 0 R >>
-/ProcSet [ /PDF /Text ]
+3603 0 obj <<
+/D [3595 0 R /XYZ 118.555 562.019 null]
+>> endobj
+1630 0 obj <<
+/D [3595 0 R /XYZ 71.731 520.086 null]
+>> endobj
+574 0 obj <<
+/D [3595 0 R /XYZ 341.27 481.7 null]
 >> endobj
-3605 0 obj <<
-/Length 2384      
-/Filter /FlateDecode
->>
-stream
-x��ɮ�����B��������x�q_��K���[=\�9���SIm�0q�!T�����������"�*	��d���b[?��=���I�JHV4�^����"SY,^v���U�g�$0*�����{ȏ�v˕�|/P��mQ�M��l��z7,���\VU���凧߿L�� QY��^hB��6*�4����ǟ�E�?������	�C�.H��VY,:��=}x����_��X�Y��+tw,VZ*J��*�2�l��	:TA��_� Jq��2�?����]�v3���E
-��
+�������v�,S�R'
-�� ��x�
-�Ez$h�:o�n"�M�٦`�T��#^�����O�rK��+a���y���D�	|�̨�>���s��q�+����Y�lU��$�?��%�C�nVۻ��]�6x�HU~�Ⅸ8��E�٭kg���+{�eF�l����|����Z>�GvX���Ѿ�;�
0���~�C�p� �� @g��t�D�&�]3�Y�="�����H��
�}��?j�-zI��K�j��/��?-�`Bwn&��{[ټa�lz��;���(,e�]H�������"K�z�wZ��Z�w���\�eyB�/�7�P��Yc�!�)�=m��R���Q{R���Y	��3T�i*���k��3�(
-Ϣяa��(�8@���u^6&�3�7(wp�FZ_�(Z�|�
cd)�	P��ť���,j{<V�i{ʹ��98�rJ���A4Z�`ҵǮ̝ �ȕ����:Td���6� �
�?��Q�!̶B�/��e�(m��u������������?�:�Ñ��2�<�zh�e튔d<
-�-���:�u#HX{#�W{B��]���B8�����,R6�^L��q{�m�b��0��|�P\�l�B؈��
-�_��c#˽u#W�ݵ¢tj�5�R�(�l���
-CN��
-���C��i6e͡��c�x��Ӌ�ƀbe2���0F ?���%~!�8,��m�0��B���Պٙ*�gf�6Bs��6�A�Vy/;����5��8`,9/��foY�ـ�)��Ap��b/��pc�01J3��5
-u��N���1��L2���
��(~Rp�	aF��߁Am�Co��f�C�xY��Ek� 9BR����Q�|�q���?8w��z}:�0<��-E���D�_���a�V��+sb��8�F\M�x@�o*AC��
d0D�)���s���cM�ҿ,8r^?�Я>�o�t]���B��𤘯B��@C��#n۪����x͈�j�N��5ˡ��{�g���Yh�Jwf49����0��o���Lk�Q�4�[@ܘ�S��p�Ìv\5�u:��*^�����a�b�UްG떗�|��Oe.�t 8("JOvE%1�精����u�F0h���7\�������L��Pg�����@���v(�t'��/\�	��'1�O�+6��r"��L��TK��s�$�!}�䱻g��(�!GW�Vj��?Z)hr���=%N��X��6ٹ����v��̸�l� ��|p�M�\�x
-��RVI�/y}��%h];'�ܢ"�y�f����va3;�媼�x�*�o�����!�&�P�#�eN���yfr�۱������r�t׏X��Ʀ�����zi
�h~e����6y�
�z&����<EA��R�Oy�Ir��n����K�\KY	��W���:���4I�;wTuK����x�>�5���d7�m��u��(�6f���eU����f��UM����Q��lA��Ȣ��)�C�<2��Q_����oa^�I(wu���VTA���� a�sWR��%⩉Ր�ձ��}6��r��q��]/��o�����۪��.��kۤ8�I�_�R���?2���L�Cv��S�w4����D}�� ��6)7�><��+o ྗw�H��x�4�P�(Z�����(.�,���LW#=哆�3j������m(ߌs2|~�O��������H���㇪`d�D�V�U:Sq_9W)3���͝vh��P����[kڻ�?n�o�$Z��€�A�p�*$�r�Kcܰ�|;P-�û8	�b�����UnI�j��57s��������fw�����Mfw�Dtʇ�+�;����&�E�����M~�OrSLv��In|�MD,�JV�/1�x�P��O��‘��M�~��)������3�O�qJ��1@<e2^74�fVФh�1�z�S
�>O6�c��I=�L��Z���wy��0S:�W]�<Z�)[6�}��h,�oW���2ĩ�T�:y�D3��߇"yՌLPjd��Ǟ{I��v�endstream
-endobj
 3604 0 obj <<
-/Type /Page
-/Contents 3605 0 R
-/Resources 3603 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 3501 0 R
-/Annots [ 3624 0 R ]
+/D [3595 0 R /XYZ 71.731 469.262 null]
 >> endobj
-3624 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [271.86 230.641 336.659 239.23]
-/Subtype /Link
-/A << /S /GoTo /D (upgrade-cvs) >>
+3605 0 obj <<
+/D [3595 0 R /XYZ 71.731 445.033 null]
 >> endobj
 3606 0 obj <<
-/D [3604 0 R /XYZ 71.731 729.265 null]
+/D [3595 0 R /XYZ 71.731 440.051 null]
 >> endobj
 3607 0 obj <<
-/D [3604 0 R /XYZ 118.555 684.724 null]
+/D [3595 0 R /XYZ 81.694 419.294 null]
 >> endobj
 3608 0 obj <<
-/D [3604 0 R /XYZ 136.092 676.259 null]
+/D [3595 0 R /XYZ 71.731 417.137 null]
 >> endobj
 3609 0 obj <<
-/D [3604 0 R /XYZ 71.731 602.887 null]
+/D [3595 0 R /XYZ 81.694 401.361 null]
 >> endobj
-1624 0 obj <<
-/D [3604 0 R /XYZ 71.731 572.003 null]
+1631 0 obj <<
+/D [3595 0 R /XYZ 71.731 399.204 null]
 >> endobj
-590 0 obj <<
-/D [3604 0 R /XYZ 264.948 538.693 null]
+578 0 obj <<
+/D [3595 0 R /XYZ 249.392 361.989 null]
 >> endobj
 3610 0 obj <<
-/D [3604 0 R /XYZ 71.731 530.055 null]
+/D [3595 0 R /XYZ 71.731 354.637 null]
 >> endobj
 3611 0 obj <<
-/D [3604 0 R /XYZ 496.728 506.812 null]
+/D [3595 0 R /XYZ 356.564 341.864 null]
 >> endobj
 3612 0 obj <<
-/D [3604 0 R /XYZ 415.635 493.861 null]
+/D [3595 0 R /XYZ 71.731 295.872 null]
 >> endobj
 3613 0 obj <<
-/D [3604 0 R /XYZ 71.731 434.917 null]
+/D [3595 0 R /XYZ 71.731 213.182 null]
 >> endobj
 3614 0 obj <<
-/D [3604 0 R /XYZ 71.731 401.109 null]
+/D [3595 0 R /XYZ 71.731 161.376 null]
 >> endobj
 3615 0 obj <<
-/D [3604 0 R /XYZ 104.01 389.552 null]
+/D [3595 0 R /XYZ 71.731 146.432 null]
 >> endobj
 3616 0 obj <<
-/D [3604 0 R /XYZ 104.01 377.896 null]
+/D [3595 0 R /XYZ 108.889 125.277 null]
 >> endobj
-3617 0 obj <<
-/D [3604 0 R /XYZ 71.731 376.681 null]
+3594 0 obj <<
+/Font << /F33 1322 0 R /F27 1224 0 R /F35 1589 0 R /F32 1231 0 R /F23 1217 0 R /F44 2069 0 R /F48 2081 0 R >>
+/ProcSet [ /PDF /Text ]
 >> endobj
+3619 0 obj <<
+/Length 3105      
+/Filter /FlateDecode
+>>
+stream
+xڝk�����
+���"�g���W��)ZܦE�Y�m�d���|ί�g(ɒW���p83���H�����26����a��O�1v����|����R��MB�y=l|�s#/�DJ�q 7����7����f����(�~���*Z�Ց@_�[��(�2������w��@En�U�,�B>�6�w���|�0H\�D��+BW�\Q��t96iN2�tG?������,튺jQ<����6;�B���=c'���
��k��tK��i��n��w��eiY�Rbx���6�14�s=�DW4��VΕ64�԰���}�hBK��s>me�E��K�L{��iXW����*��p��/����7Կa��RaB����Kڤg�F�{pWB9��s3��r�8�����=2��� �L��	��ufD5��&��؍b�9�3�B�.�}7�T�Q�]��p$�Fn��a5�L�r�Հ��s�Y���	�0H+"��=և,�EWUT���f�by��p�d��#ڑ��p5�ϋ���tC��,'������ri0>%�Ϻ�xv��G�U�i��^Ay�uCK�S@(>|,__��m	��7����Y�h��_-�����y��p>H�r<M��)�����?�y�{���^�@���KS�m��n6��t88�˅�S�2=�O	_؛B>��M��F=7b�HI�,�����%��(���w6eOM�n8�6���h4�|�D��#�~&x������1�y��W//���꒶�߀�v':��W�Gp�!oooU�~vm:vJ*�v>�5�<~�ݩ�[���a���t�7�K�����ӝ�ü8�u���{�n���c��vσZc���Q�;w}QA]l�q�����&8�7#�^q↡����w��[Vy��"��!���?�i����D�R൬��QV%���9�KZ�/p�$Z�oqV�B	��ێ�Fr��G�7o�Q��|󶗼�|�+�gd����	�UY�:z�1O‡�6���[� =�� ZU��Y�rN�-��	BHu��.�K0#�%�b7VɺI�8o����|�$���l+�gd���˥�
�0D'�(�=|���֡^�.3�u�b,$��5=Y�Ua�޲�� ���u	g]���e�yG����Qd7ߥ�8^���Eb�T�pz��S����o���y��%�g����	�>m!i��m8L�)����L����H=�s}�U�,����T�!5F��	��	�i�ń葱���^����L[ܝ(\u�L��1ǀqn�#�r\���z*�>aH�f�^"��o�J,�0u�6w<�,
+@i|󗺙�V�3�B�|$����c�pB`�h��D}�wǥ�8/Z��%![Ad/,���u����Q���v������� YΐyR!BНht�8�cc	���e
u4
��R~N�#e��L�����Z�j᱄����=iR�Go�Qv����'�x�ؤX���SD�*s���}N�T�����݃ŋUJ��7[���Z��N��[��Ș0L�j�r�D���s���ԍj|&8>�
�d��}���
k2���e��!6��8�y��H��)�hhNK㸳�ߍ����j�3M�J%a����
�=�}�ܘ�4�	�Kј��/i��+bq�B�+Zǣ�
+y�P���CD*�x�g���z���}(�b��|��AхO�qL�T2��A���&��9Y�%��L@��6;
Xe�&LJ��VG�'|��D���2f�0A3+M�����u����+�0X^���2��8��7��0����)����	��
�Qn�����3ar�7:C
W;�c���a:���mrz�Ҽ8ӱ�Y�V3���~�Ȓ��,-br=&�2�z��?gcp͍�1�„�/֤�z�L���I4�C��X�i�N���v�찧��9�Pn�%bWz�A����/�&o���
�]��W�UQ�g��M�7���O�(�B���U���$vV��w�q#[y�UA��	$�����=m*~�/����%ىX������
UD5��
+j���6dRƍ>>E��q�t�<�L XJ�7)ӽ����
+{�}��>���?���L�/
1!ڧ�k�5�q��
�3p2�⎢��H�=+�^P�����3��P1'%8����i�ؼZ�`Yir-�S���)�r�����YA�i���Y`�[�d�Ǡ	�lԿ5���dsHn&�i����I���*�L����M �b뾣xH�a8���������6���Ik�������Oo�n�����>�I%\�'c"#�p��)�u��M+�E9�eIފ��i)Ik	��s���#g��B:u<��L05�G�ݓ0�y�ݛM�	k��S�Ƥ+z� Fa���Ce�i㠲�@��7 P(�oN�q�# ��McMN"��������Z�\ +�Ξ��5�n������H\3�}��{�>��!���<MЖλ��MUd���fv2]»�QX�|
+��2Z7Z����6"���
�+b��~��6/����ԝ˗}?~4�d�!F�ζK�(��lf�X֪�(���Q��C{��"�간9�X���~3�Tc?���u��mX�K�q�o���;���`�����̉�N���\�2�I/<Gp{�?�&�x����a�}�G�z�s"ə|�o�v�r��V#V	�Vl�+���=�S��籠��53�V�<!�]z<�ܪ~h}��j-��*���"�;�l>�+�7��'�4vN��ف��g8���5��Sò�W��o3?e�?N$؛v�����XZ���(�%M�}kŻ���	}�A=LT�����fT��.��E�\.���h����=�p�;v���X�S���-�p�/͈+�d�jg��ݹh��M�6���T��>�{���
s��'Xێ������e��ފ�D��DŽ�Va?r�m[����5綶~}*~����^tV�_EK�۷�����#Z"D�Q߶��ɆCZMY.��Q���n,�տ�Q�؅�1P
�&��;�%��T�endstream
+endobj
 3618 0 obj <<
-/D [3604 0 R /XYZ 104.01 354.583 null]
+/Type /Page
+/Contents 3619 0 R
+/Resources 3617 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 3552 0 R
+/Annots [ 3624 0 R 3633 0 R 3636 0 R 3639 0 R 3641 0 R ]
 >> endobj
-3619 0 obj <<
-/D [3604 0 R /XYZ 104.01 342.927 null]
+3624 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [243.325 623.776 288.784 632.687]
+/Subtype /Link
+/A << /S /GoTo /D (parameters) >>
+>> endobj
+3633 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [141.14 492.548 205.897 501.459]
+/Subtype /Link
+/A << /S /GoTo /D (upgrade-cvs) >>
+>> endobj
+3636 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [203.157 474.615 267.914 483.527]
+/Subtype /Link
+/A << /S /GoTo /D (upgrade-tarball) >>
+>> endobj
+3639 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [214.225 456.683 278.982 465.594]
+/Subtype /Link
+/A << /S /GoTo /D (upgrade-patches) >>
+>> endobj
+3641 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [81.972 400.269 134.276 408.807]
+/Subtype /Link
+/A << /S /GoTo /D (template-method) >>
 >> endobj
 3620 0 obj <<
-/D [3604 0 R /XYZ 71.731 318.207 null]
+/D [3618 0 R /XYZ 71.731 729.265 null]
 >> endobj
 3621 0 obj <<
-/D [3604 0 R /XYZ 71.731 296.302 null]
+/D [3618 0 R /XYZ 71.731 741.22 null]
+>> endobj
+582 0 obj <<
+/D [3618 0 R /XYZ 290.952 659.009 null]
 >> endobj
 3622 0 obj <<
-/D [3604 0 R /XYZ 118.555 252.756 null]
+/D [3618 0 R /XYZ 71.731 648.644 null]
 >> endobj
 3623 0 obj <<
-/D [3604 0 R /XYZ 421.576 244.292 null]
->> endobj
-1625 0 obj <<
-/D [3604 0 R /XYZ 71.731 200.753 null]
->> endobj
-594 0 obj <<
-/D [3604 0 R /XYZ 295.902 168.357 null]
+/D [3618 0 R /XYZ 71.731 625.933 null]
 >> endobj
 3625 0 obj <<
-/D [3604 0 R /XYZ 71.731 157.992 null]
+/D [3618 0 R /XYZ 86.981 612.981 null]
 >> endobj
 3626 0 obj <<
-/D [3604 0 R /XYZ 355.306 148.232 null]
+/D [3618 0 R /XYZ 146.997 600.03 null]
 >> endobj
 3627 0 obj <<
-/D [3604 0 R /XYZ 71.731 123.161 null]
+/D [3618 0 R /XYZ 395.872 600.03 null]
 >> endobj
 3628 0 obj <<
-/D [3604 0 R /XYZ 104.01 113.662 null]
+/D [3618 0 R /XYZ 247.699 587.078 null]
+>> endobj
+1633 0 obj <<
+/D [3618 0 R /XYZ 71.731 579.94 null]
+>> endobj
+586 0 obj <<
+/D [3618 0 R /XYZ 367.202 542.725 null]
 >> endobj
 3629 0 obj <<
-/D [3604 0 R /XYZ 104.01 102.006 null]
+/D [3618 0 R /XYZ 71.731 532.36 null]
 >> endobj
-3603 0 obj <<
-/Font << /F33 1306 0 R /F23 1201 0 R /F44 2037 0 R /F27 1208 0 R /F35 1569 0 R /F61 2529 0 R /F55 2324 0 R /F32 1215 0 R >>
-/ProcSet [ /PDF /Text ]
+3630 0 obj <<
+/D [3618 0 R /XYZ 71.731 520.443 null]
 >> endobj
-3632 0 obj <<
-/Length 850       
-/Filter /FlateDecode
->>
-stream
-xڥUM��0��WX�@"m];��슕8 *q���mI�j���3����@Uk���|�'�0�p�8U���I&Iխك�z�c(�G���js%)h�	�ݑ�1�XA�Hh.��?E��rpz�׉d�����;ӛ	p����c���-�/ۛ՛�Cl)-r�dzi��B�}h�y��է/������W�V��E��pZ����VV�\1p&)�S>�����]�9T���3ɩ8���S*�̫%���$S	-��1NYT���T�\�)�A�����P��h���m�A@�G�����������zo���vwb�lו}��!Շ�\�TB���n�����U���ۤ�<С=�7S�1N�	��n��(���>d�be��޺��C��qN��l6R��Q��X*y�/���y���X���|u�)�6e���,��B;D�Ewv�5���G=�h�mv%.���s��������gƒ�t����C�����m�?�9����<��"2�=n�)����R��mHb+��-��i6N�`lP'�c��[���z����� �"��ٌC�"�G��+��o�*�C|)@3��xo1�,��Jf$�s
p.и��uf��n�@;'��t8;�r
-��2�*/m�7�`�G�#cGk���L�w ��o����;;vK��@~,����n���=��m`5e���;v�mm���JyO�� ���0{���a4������|�O|�},��𔚞#�ȳ��Z�Ei�^l6��!���v|APx�@����Vx�ԧ1b	G׵ϼ>�2��S�s�	w1�i�Փ�#���'����މ�A�����#�:��%endstream
-endobj
 3631 0 obj <<
-/Type /Page
-/Contents 3632 0 R
-/Resources 3630 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 3639 0 R
+/D [3618 0 R /XYZ 71.731 515.462 null]
 >> endobj
-3633 0 obj <<
-/D [3631 0 R /XYZ 71.731 729.265 null]
+3632 0 obj <<
+/D [3618 0 R /XYZ 89.664 494.705 null]
 >> endobj
 3634 0 obj <<
-/D [3631 0 R /XYZ 71.731 708.344 null]
+/D [3618 0 R /XYZ 71.731 492.548 null]
 >> endobj
 3635 0 obj <<
-/D [3631 0 R /XYZ 118.555 664.798 null]
->> endobj
-3636 0 obj <<
-/D [3631 0 R /XYZ 297.118 656.334 null]
+/D [3618 0 R /XYZ 89.664 476.772 null]
 >> endobj
 3637 0 obj <<
-/D [3631 0 R /XYZ 71.731 634.414 null]
+/D [3618 0 R /XYZ 71.731 474.615 null]
 >> endobj
 3638 0 obj <<
-/D [3631 0 R /XYZ 462.063 601.756 null]
+/D [3618 0 R /XYZ 89.664 458.839 null]
 >> endobj
-3630 0 obj <<
-/Font << /F33 1306 0 R /F23 1201 0 R /F44 2037 0 R /F27 1208 0 R >>
-/ProcSet [ /PDF /Text ]
+3640 0 obj <<
+/D [3618 0 R /XYZ 71.731 451.701 null]
 >> endobj
 3642 0 obj <<
-/Length 2514      
+/D [3618 0 R /XYZ 71.731 395.288 null]
+>> endobj
+3643 0 obj <<
+/D [3618 0 R /XYZ 71.731 330.157 null]
+>> endobj
+3644 0 obj <<
+/D [3618 0 R /XYZ 118.555 291.593 null]
+>> endobj
+3645 0 obj <<
+/D [3618 0 R /XYZ 71.731 238.003 null]
+>> endobj
+3646 0 obj <<
+/D [3618 0 R /XYZ 364.919 205.346 null]
+>> endobj
+1634 0 obj <<
+/D [3618 0 R /XYZ 71.731 190.238 null]
+>> endobj
+590 0 obj <<
+/D [3618 0 R /XYZ 244.469 157.924 null]
+>> endobj
+3647 0 obj <<
+/D [3618 0 R /XYZ 71.731 149.286 null]
+>> endobj
+3648 0 obj <<
+/D [3618 0 R /XYZ 71.731 97.984 null]
+>> endobj
+3617 0 obj <<
+/Font << /F33 1322 0 R /F23 1217 0 R /F27 1224 0 R /F35 1589 0 R /F44 2069 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+3651 0 obj <<
+/Length 1945      
 /Filter /FlateDecode
 >>
 stream
-x�}Y[��6~ϯ��N�cEw���tڝt�m�9�N��Y�m5���RN��~?�,_��@H�ąV>~�*�,�'�ya������:b�_���������me�.�V��7ϯ^�F����d�z>�R���t�\����T��6�0�ױ��7��u�<���i�����?�a��y�4"~�jq����T7j�
v���M�ne��O��Q��quǨ�T�t�A1ȒA5Ũ*a��"'�WC1�ݑ��l ��.G��E�0u��c��An�H��9������0�2��A��`:�ч�e���0�]�5�m;�x���a�v�{�a��Q@�ߢi3Q�����=���N���������|bf�̴ӣ �Qu���؆��)u��:̘z&�ϛ �R
�U�q�+Z��_c=�����n����}Q��ޝ?��'���-:�s$!��V�H!+Y)���U�X�NU���\��&������q"X�l} '.J����������ڌ��Sab����Q;%Dk�}`�
-h��ǣ���Ot"5+!�����2��Q���Az9N�Y8����`�1��R ���F`}���J�C�O��Qt��q�{I�A��_������[:���>� ���p�x)����-�" ��q(�V
��4�U�8���_���,���҄gՉ��gQ�+]�A�����Ӳ�sw��+��fP	7�^uؖ��ʌ���)`�y���\L��l�4��b|w<�3Q�"x<��8	J��
-Y4�e,���^J�z<9��7� _�����v�����`P��R�-��R��Y��5���;�+��1}%��ÃB�ډĞ���6��7��Vp�0H$��	Rkl�^ I��KR�Y��ʼ>��8���΋�p^�8<�������ĜaB�-�8��^&�{��^X���-��g*����N�l� K`��qi���>c{͊�)�
�3�|>?�az@`�[2�!�CK��~>8q���ܢn�L�T%"m���A�9?pvm�Y��v����O����8 �w#ϔ��M'��Kԅ���-Ό���ة�A�5 p�o�Ϙ��a\LU=2Z�H��,��6�B�8�Ip��v��b����p��]<�h�`�.4My��s�$��z�'ZWT�\q"�0DG�u{J>�x;~�I���-4F3��Ҝ�aeA+��e$�9�j�[�R�{7@�@|u�{�[�h��% r.���q���3�Y!�[���^�G��-�,��b��O3���^�.�q�i���!�`_B�*�X�W��o�RO��bsz�4��W�?Ͻ�.��]��RT�Y��[���6��~Æ$V�j�6�"��k͝���n��'�2�͕�C:0\9��r]��r��J�R/'.*N��W��D�d��ؘ�������qNBϏY՞�_��8H��H�0ؚqUK9�cF��#��$Ł�i��{]�i��I�����.u���dn8��q/�Û��K����B����e���-�����ݶj�Ph�[q�a��9�WQk�N<rG�]���-#.���5j�;�;��|U���	�v�U�PkC:l!j!�|�������:V�\�87���.ƶ��Å�����ж
��Jk��rO��\�I��FȒ�:��C6`j�GE����V<����0X��pF����l`y��<g/�����lS?Ȃ�Ð�G��MA9�.m/�&�F]��>�����]2
-���$�P�K���pގ|�J�n-��-CGe+�p�ݱnk�d��
h�q
-�����zHBC�J�e�M��ylO���)�sk�>��0!���e��_�Uμ�s�-�I����+��gI�`bk7�"&�΃@��Go(\�"�*i�|9�%�Α8�UE��`��Կ���G��]��>v%],%]J�}]��AܕP5g{~���?��[�\~yQ{�Fj8���2$����\����q�z~m��򸼇�x�5I�d
-�۴4{pN��v;vxބt�A�m��=�.��\R	=�%���!ݿd���&ML��`��K6��4��Ѵ��������"�k����=�^�<P_��'X4��:���/�{��d�{f���j�J���"�m�%�F8q走E�:ͽ_-��R�n�j��P={Ro�XI�%�-�4[mS��i>W������(��
-�����o����ߋяE��W#0���A�l1�R<�C�Q�u)
��5����LO@ �0/�91d��/\־VJX�)��.���3�d�����}�E�}<�Dz�J<?w�IB3��).70�oI�l*%>��������������ĦJ�ʻ��PZ����2�Һڝ�eeh��2��}6��-��ۈ��{t�j`/l��T��k�䛹Ic&�4@�#�V?�Ή�A�`{35�["�J���λ�]ޠ%��.�����>ʶ�m�'g�9j��a�'��]m���J�cB�H�[A�ߕ{I��ջOendstream
+xڵ]o��ݿb
+���R"�������	�q
+�ip�J\���)�|��3J���7up��p��=�W�㫌�L�"r&�dU��U
_���c�Q6�ۻ��k)W9�S��ۯ�(bY��2)�6����������D�d�~U��1�o��@����m��Ow�]��n�Ȍ�[�E�&���\mA���9K�t�E[&�؉w��7�/��3"�Y*�p3�|�_od��kz�CYt׸�c_�=ᣙ�o��=mC���w�oi�=(����닦k��$Ge���O���l�v�n.��O�k��V{z?���E��_m��7���������Y�$`�$�����HV�8b�8%u⃄�^��F!���2:ZB�QGՕ��õ��c�U�S�R�'Դ:�{���۱/"'r��3�A��	�s퉻����7%���Vp�ЀPK�Z�����|wPfl��:��ɑ�_�>y��w�9���R~B�hYY�(
+��bƒ=��n��@k��8��7��җ�7Ĭ�uӽ��w���I��܊&���7j��h��M����G�g�96àv��:L���#:@��s���]��}ã*��B�,a�g�I��������5Q�֟G䅡�^��{��A���~�;�3��|~��7i�����`�?|�oQ�w�ڈB|��z�2��'���_��c���L��h����O�%b�K���i�����Ԫc��BՅ����Y���DZ�
Cgf�H��x~%�QْM�X��%K�x�e���?^��S���.|?���"Ǡ)	��,��jP����W�o�)Ԃ����xWl&i6��x����
+
�D$Ye)Ns&��ι��奋��ۘ%xw
+99;U!)]6�1�S�ĕj	l�h���~�G��u�G�2^:(zǼ'��r��)O����Y&�(sD)�Q��^^C�����������lP=dW�Y�x���D�y�BbEô�۩t��sEN�-K��2Lj*���a�|�VtvUV(�Kp���:��VT$���kSA����+�A���T���<�����}�)��
+�C�ҏ��گ%�5Or;�SՃ�h�����y.v�gН ��K%@|/�[2�H�.,����n�&�YsS�p���|`����x��ܦ�����2����0A��:C�̶l˷Ny�A�J&�����jVڙ��rl1�����Z�C�s��4��`Fgi��_�~?�9E�>�<�uR�rHe<��z�F��טX���)E˛5���3�8��W<O<7�E^�/S�]w��w�h:/��K�U��C�q�)_͍_8)tZ��kuQ���G���oB�P!k`˜;���cͷAV��B�1���Aؔ�����@�E�i`9�\��56�s�	@��C���a0���D���W���`�C�5��.�<;k��?���pje=���h�I�p���P���˟�[c��$b�M�^Ӑ������8Hi�1&1��O%:�ƺ��f���M8����)�5Վ�v�7N�*�T%9�
nj=���"�����|�s��"�*M�NjfL�����Y�~�$�y�����q�H��niހ�, U'gcxJ�ϧ�k�8^{'��e
�P���h�$רQ?o�֨g�^�՝��1����Ay8z��T�'4.�*��S��T�z�Ѓd�����~Tq#2�+a?�����7Z�[C�@7Xx�5�3�j��|��>'!�o�is�
+�����1�K��@������sN�2?��Wu��g<|��x� �lj��a����;�]Y��R&�z"�+��=1`l���������}S��c�>�i�\2�޾@(�u����+>�xn���ֹ���M�0�߳�K��0�~0�⏦'���L��.Ay.����KN��<��endstream
 endobj
-3641 0 obj <<
+3650 0 obj <<
 /Type /Page
-/Contents 3642 0 R
-/Resources 3640 0 R
+/Contents 3651 0 R
+/Resources 3649 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 3639 0 R
-/Annots [ 3649 0 R 3654 0 R ]
->> endobj
-3649 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [97.498 367.618 132.915 376.529]
-/Subtype /Link
-/A << /S /GoTo /D (gloss-daemon) >>
->> endobj
-3654 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [258.734 354.666 290.823 363.578]
-/Subtype /Link
-/A << /S /GoTo /D (gloss-service) >>
->> endobj
-3643 0 obj <<
-/D [3641 0 R /XYZ 71.731 729.265 null]
->> endobj
-1626 0 obj <<
-/D [3641 0 R /XYZ 71.731 718.306 null]
->> endobj
-598 0 obj <<
-/D [3641 0 R /XYZ 344.957 703.236 null]
->> endobj
-3644 0 obj <<
-/D [3641 0 R /XYZ 71.731 681.855 null]
->> endobj
-3645 0 obj <<
-/D [3641 0 R /XYZ 522.288 634.645 null]
->> endobj
-3646 0 obj <<
-/D [3641 0 R /XYZ 71.731 616.593 null]
->> endobj
-1627 0 obj <<
-/D [3641 0 R /XYZ 71.731 575.701 null]
->> endobj
-602 0 obj <<
-/D [3641 0 R /XYZ 252.56 532.604 null]
->> endobj
-1628 0 obj <<
-/D [3641 0 R /XYZ 71.731 528.774 null]
->> endobj
-606 0 obj <<
-/D [3641 0 R /XYZ 198.219 493.231 null]
->> endobj
-3647 0 obj <<
-/D [3641 0 R /XYZ 71.731 485.879 null]
->> endobj
-1629 0 obj <<
-/D [3641 0 R /XYZ 71.731 427.115 null]
->> endobj
-610 0 obj <<
-/D [3641 0 R /XYZ 267.87 389.899 null]
->> endobj
-3648 0 obj <<
-/D [3641 0 R /XYZ 71.731 379.756 null]
->> endobj
-3650 0 obj <<
-/D [3641 0 R /XYZ 209.73 369.774 null]
->> endobj
-3651 0 obj <<
-/D [3641 0 R /XYZ 291.334 369.774 null]
+/Parent 3552 0 R
 >> endobj
 3652 0 obj <<
-/D [3641 0 R /XYZ 381.061 369.774 null]
+/D [3650 0 R /XYZ 71.731 729.265 null]
 >> endobj
 3653 0 obj <<
-/D [3641 0 R /XYZ 419.603 369.774 null]
+/D [3650 0 R /XYZ 71.731 741.22 null]
+>> endobj
+3654 0 obj <<
+/D [3650 0 R /XYZ 71.731 668.792 null]
 >> endobj
 3655 0 obj <<
-/D [3641 0 R /XYZ 322.387 356.823 null]
+/D [3650 0 R /XYZ 71.731 632.827 null]
 >> endobj
 3656 0 obj <<
-/D [3641 0 R /XYZ 449.982 356.823 null]
+/D [3650 0 R /XYZ 104.01 621.27 null]
 >> endobj
 3657 0 obj <<
-/D [3641 0 R /XYZ 489.834 356.823 null]
+/D [3650 0 R /XYZ 104.01 609.614 null]
 >> endobj
 3658 0 obj <<
-/D [3641 0 R /XYZ 436.781 343.872 null]
+/D [3650 0 R /XYZ 147.048 586.301 null]
 >> endobj
 3659 0 obj <<
-/D [3641 0 R /XYZ 258.733 330.92 null]
+/D [3650 0 R /XYZ 104.01 574.645 null]
 >> endobj
 3660 0 obj <<
-/D [3641 0 R /XYZ 171.642 317.969 null]
+/D [3650 0 R /XYZ 71.731 526.612 null]
 >> endobj
 3661 0 obj <<
-/D [3641 0 R /XYZ 71.731 304.918 null]
+/D [3650 0 R /XYZ 71.731 504.707 null]
 >> endobj
 3662 0 obj <<
-/D [3641 0 R /XYZ 71.731 289.974 null]
+/D [3650 0 R /XYZ 118.555 464.175 null]
 >> endobj
 3663 0 obj <<
-/D [3641 0 R /XYZ 209.872 278.417 null]
+/D [3650 0 R /XYZ 225.689 452.698 null]
 >> endobj
 3664 0 obj <<
-/D [3641 0 R /XYZ 316.053 278.417 null]
+/D [3650 0 R /XYZ 332.317 452.698 null]
 >> endobj
-3665 0 obj <<
-/D [3641 0 R /XYZ 129.377 266.761 null]
+1635 0 obj <<
+/D [3650 0 R /XYZ 71.731 407.465 null]
 >> endobj
-1630 0 obj <<
-/D [3641 0 R /XYZ 71.731 238.865 null]
+594 0 obj <<
+/D [3650 0 R /XYZ 277.022 378.818 null]
 >> endobj
-614 0 obj <<
-/D [3641 0 R /XYZ 215.507 199.493 null]
+3665 0 obj <<
+/D [3650 0 R /XYZ 71.731 370.181 null]
 >> endobj
 3666 0 obj <<
-/D [3641 0 R /XYZ 71.731 192.062 null]
+/D [3650 0 R /XYZ 86.396 346.938 null]
 >> endobj
 3667 0 obj <<
-/D [3641 0 R /XYZ 401.912 179.368 null]
->> endobj
-1631 0 obj <<
-/D [3641 0 R /XYZ 71.731 136.365 null]
+/D [3650 0 R /XYZ 71.731 339.8 null]
 >> endobj
-3640 0 obj <<
-/Font << /F23 1201 0 R /F27 1208 0 R /F33 1306 0 R /F35 1569 0 R /F44 2037 0 R /F61 2529 0 R >>
-/ProcSet [ /PDF /Text ]
+3668 0 obj <<
+/D [3650 0 R /XYZ 401.148 316.054 null]
 >> endobj
-3672 0 obj <<
-/Length 1624      
-/Filter /FlateDecode
->>
-stream
-xڭXmo�6��_a`"+��^Zl@��m�t�g���l+�Yr�����;�N/�wЉ:�s�{�<�O��ϙ/�!B&<5YnϜ���=�a���ӹ���x#�$d�''�+\�x8�`������&�Uq1��r,���^���i�ow�.�j?�s���l�b*�0�'�jtF~	9�>\iǚ�9��n`�r������~�ۍ��I.���'9[�L����4c���S�x�/�x���r��YE6�.@`R8�ט�,A=�m�UI��+�ZI6w9S��zL(~4���S�@�����}�����F1�!&�?
O:���4�W&���&�0���m�X���TL�Ug(G�_�<�w�{2�����+k�.�{�%����%�R)���9P�)T9>�yV֩I',T�O,$������yW��։�(�0��*p�N��N��*��іԞ�j��>���ʆn ?�4�dee�c2Z��v�Eu�'H�IYL��W �8e��s!��m^��ν.��|��q�j?����U�0�A�/p���RA�q��-E�0>����X3o��H���]T�O2/V���No�魯�p�|��2ƿ$Ġj�8��~��Ba]g���i��4֮�+�U|!&�����4��� &zc������ �5��^gLDz%�![�I�a�]�% �g��΢)���i�"�Jq��!�e�w�ݥ4˵9�(�e���$[7ec��*�̃�a��l':�n

{�F��$`���Ù�Y@Tn��鄞�38�T�����������ġI��m���M�qlY�̕�,�߾����4\Kw�9
-&{@n������'G9爡z<�{�d��_̈́�?��B��Q�r�������3�?��<u,sN���{ ���߽C�������ݽ�ɦYzTR�� J�6��*�����N����k|��Ȯ#�N0��s{Y�}X�K�>I.���a+�̛eU��[J��1G|����)B ����~=��5�~����C6��c��l!X��ou�y~�;%�3��q����>	גt`���4Mqm���q��>!���>�|��ԕ��-���쒵9��s�m�j`�<YhRZ��jߚ�ʫ��pm�C|q2�����
;CF�>�'*<
N:���4����=@�w���Hj�~��'Ӈ��#.��\]?@���
-859A�Ah�)^��5������20������ivC3Ǵ�Z���/7IF�}$ɠG��P
-�([��L�ji-�C7�A?U�}�����S�1���PB/<�m�� ��.jd:����GCj�z �(��	�U���,A�[��q���~��\���#��\kt�҈kCCw;���v#���b
-����s~`��v�	���M����
-���{���}��S�$E�o⑌��_�4��h��I�4�S��.h��c��
��I�uM�c8ǫ������
-m�q��I�^�4�uc���7����\��tT�����-���*d�o4_�-���`���(�����-�������"�K�]>f��/�nt��W����.��c��Ʉ^��#�
X�]��S�Q�4�1�Q�z�ߧ1ҿ��endstream
-endobj
-3671 0 obj <<
-/Type /Page
-/Contents 3672 0 R
-/Resources 3670 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 3639 0 R
-/Annots [ 3675 0 R 3693 0 R 3695 0 R ]
+3669 0 obj <<
+/D [3650 0 R /XYZ 71.731 290.983 null]
 >> endobj
-3675 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [141.531 644.094 194.317 653.005]
-/Subtype /Link
-/A << /S /GoTo /D (security-os-accounts) >>
+3670 0 obj <<
+/D [3650 0 R /XYZ 104.01 281.483 null]
 >> endobj
-3693 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [318.972 337.225 370.159 346.435]
-/Subtype /Link
-/A << /S /GoTo /D (security-mysql-account-root) >>
+3671 0 obj <<
+/D [3650 0 R /XYZ 104.01 269.827 null]
 >> endobj
-3695 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [442.102 236.881 495.555 245.792]
-/Subtype /Link
-/A << /S /GoTo /D (security-os-ports) >>
+3672 0 obj <<
+/D [3650 0 R /XYZ 71.731 268.612 null]
 >> endobj
 3673 0 obj <<
-/D [3671 0 R /XYZ 71.731 729.265 null]
->> endobj
-618 0 obj <<
-/D [3671 0 R /XYZ 164.538 705.748 null]
->> endobj
-1632 0 obj <<
-/D [3671 0 R /XYZ 71.731 702.184 null]
->> endobj
-622 0 obj <<
-/D [3671 0 R /XYZ 306.92 666.375 null]
+/D [3650 0 R /XYZ 104.01 246.514 null]
 >> endobj
 3674 0 obj <<
-/D [3671 0 R /XYZ 71.731 656.233 null]
->> endobj
-1633 0 obj <<
-/D [3671 0 R /XYZ 71.731 626.161 null]
+/D [3650 0 R /XYZ 71.731 221.794 null]
 >> endobj
-626 0 obj <<
-/D [3671 0 R /XYZ 408.16 588.946 null]
+3675 0 obj <<
+/D [3650 0 R /XYZ 104.01 199.889 null]
 >> endobj
 3676 0 obj <<
-/D [3671 0 R /XYZ 71.731 578.803 null]
+/D [3650 0 R /XYZ 104.01 188.233 null]
 >> endobj
 3677 0 obj <<
-/D [3671 0 R /XYZ 213.741 568.821 null]
+/D [3650 0 R /XYZ 104.01 176.577 null]
 >> endobj
 3678 0 obj <<
-/D [3671 0 R /XYZ 387.602 568.821 null]
+/D [3650 0 R /XYZ 104.01 164.92 null]
 >> endobj
 3679 0 obj <<
-/D [3671 0 R /XYZ 249.294 555.87 null]
->> endobj
-1940 0 obj <<
-/D [3671 0 R /XYZ 71.731 542.819 null]
+/D [3650 0 R /XYZ 104.01 153.264 null]
 >> endobj
 3680 0 obj <<
-/D [3671 0 R /XYZ 71.731 503.038 null]
+/D [3650 0 R /XYZ 104.01 141.608 null]
 >> endobj
 3681 0 obj <<
-/D [3671 0 R /XYZ 71.731 503.038 null]
->> endobj
-3682 0 obj <<
-/D [3671 0 R /XYZ 71.731 491.996 null]
+/D [3650 0 R /XYZ 71.731 129.952 null]
 >> endobj
-3683 0 obj <<
-/D [3671 0 R /XYZ 305.215 481.748 null]
+3649 0 obj <<
+/Font << /F33 1322 0 R /F23 1217 0 R /F44 2069 0 R /F27 1224 0 R /F35 1589 0 R /F61 2561 0 R /F55 2355 0 R >>
+/ProcSet [ /PDF /Text ]
 >> endobj
 3684 0 obj <<
-/D [3671 0 R /XYZ 71.731 480.34 null]
+/Length 2385      
+/Filter /FlateDecode
+>>
+stream
+x��ɮ�����B�������k��g�%˼$(���ᢐ͑5_��Hj�����`�buuUuum]O/|���V���*��m��/���'-+!Y]м{yZo�"Uid/�E��*��El�JB�x�����+��ʄ�g�~��eS��/�=��
K��?�U�-z����/����*M��&P�^i��P#Ϳ�~��_�@�������:��l�.�JS�������_&V�bF*J��x�^��c��ڪ0�(LU���Z�.t�l�����
�E���Ҙ���e�{Yנ]���`��}i�J'@�[�@�Mh�ˡ`J�=Q�X��@���Y���P�m]gM��MX�mZw`�hrN�:�U��+ۑ�t(��h�����W?-M���{gF�����e�c\^�����@���*����@�w���j^��l2W�
yR��$x!*
+#:l^v�ֵ�Jq�=�2#��C��|����Z>�GvX���Ѿ�;�
,|q��ҡ8�M"8Й���/]3V��g׌�@�`�l�R3�)��ﲼ���p��$��%t5�ݗxퟖ`0�;�e�����a�lz��;���(,e�]H���賺�E���xﴔ�7�.�6 D1���7�0��_�o�,w���C��S�{�曥O�4�����g���-�T��z���grQ����*	P�q�v-c�l L�gFoP��x���d����P4���h�'@5E�_ʈ��@m���<m��vs�2g�CF)�71G��L��ؕ��*z5������q�
k�1���i�l+�������.8�L�|��ҝP����UWdp����B����kD�"%��ؖH_�:�u#HX{#s�W{B��]���B8������,R6�^L��q{�m�b�� ��|�P\�l�\؈��
+����c#�}�F���k�E��Tk ��a��|�(���d�zH�#ͦ�9�x��o�P���"�1�X���n!���d���u��/`������ƀq�B�>��Z�/;Be����FhN`|���7��*�eg3��&"�ݐL�%�%\�B���~6`�Dʬ\����}nCf#Fi��<�F���	��Ur"�#�I�w���B�O
+n0!�h���;0ȡ�p���֬x�/ߵh�$GH��#��3��>�`�玿]�O�������V������\�"�5lҊ�s�bN�^�ވ��hA�M%h�w����9���w�\��XS���/����.��Ot���]W��t:�Ѓ�+<)�@�=Yh��p���m[UУ�5#��Tm��0�c9tPx/��z��ҝMP�HLsO��z�6��6��7��D�0\�0�WA�k]D_(^�����a�b�UְG떗�|��Oe&�t 8("JOvE%1�精����u�F0h���7\������v
+&Go���b�'��_.���|��%݉��%�:�t�$&��{�FVN��<���j�Y}��Q �Ϟ<v�,��5��ʺ�6q��V
+�\�`1�E�Sh>�,�M��yH߅[f�b��̸�l� ��|p�M�\�x
+��RVI�/Y}��%h];'�ܢ"�y�f����va3;�媼�x�*�o�����!�&�P�#�eN,r&(�����C�c/�����P��ܟ�ME]/)���p~e����6Y�
Ez&����<EA��R�OY�Ir��n����K�\KY	��W���:���4I�;wTuK����x�>�5���Tl\�V=�ؕQHm�ʵ+.�*/w;�����/�OU�O�;���9��#��������Ȭ/tF}Q��:��y%'���Q3�[=Pug��S�P�!�]I�ۗ��&VC�W�j����_��%�ǽ.s�쾾��K��+�V�v9�_�&��O��2�2���y},e"�㯜J����4W'��(O�x��$ܘ��T�׮����^�M�#���1ӜB�"o�r����@����3\���O�Ϩ%>�f��c��U��d��������9�G�%
+�2?���*gd�}DɅ�t��8�r�RfP5�9�;���ۡ�%zyǷ�,��[�x����uTk�DN���UHV4�<�Ƹa�'�0v�(Z�wqb-Z1}U�H���$@�����9�npCGE�K���Py�ٝ}�ٝ1!��a���NG	�q<��y��o�}q�_��ܔ�Ӄ�x�$7��&$�%���9�I�S�'��S��\�&�?����C���3�O�qJ��1@<e2^74�fV�$h�1�z�S
�>O6�#��I=�L��Z���wy�� U:�W]�<Z�)[6w���X@߮Z?0�e4�S�Jt���f���������|�=�����endstream
+endobj
+3683 0 obj <<
+/Type /Page
+/Contents 3684 0 R
+/Resources 3682 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 3709 0 R
+/Annots [ 3703 0 R ]
 >> endobj
-1941 0 obj <<
-/D [3671 0 R /XYZ 71.731 458.435 null]
+3703 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [271.86 230.641 336.659 239.23]
+/Subtype /Link
+/A << /S /GoTo /D (upgrade-cvs) >>
 >> endobj
 3685 0 obj <<
-/D [3671 0 R /XYZ 71.731 413.573 null]
+/D [3683 0 R /XYZ 71.731 729.265 null]
 >> endobj
 3686 0 obj <<
-/D [3671 0 R /XYZ 71.731 413.573 null]
+/D [3683 0 R /XYZ 118.555 684.724 null]
 >> endobj
 3687 0 obj <<
-/D [3671 0 R /XYZ 71.731 402.532 null]
+/D [3683 0 R /XYZ 136.092 676.259 null]
 >> endobj
 3688 0 obj <<
-/D [3671 0 R /XYZ 149.738 392.283 null]
+/D [3683 0 R /XYZ 71.731 602.887 null]
+>> endobj
+1636 0 obj <<
+/D [3683 0 R /XYZ 71.731 572.003 null]
+>> endobj
+598 0 obj <<
+/D [3683 0 R /XYZ 264.948 538.693 null]
 >> endobj
 3689 0 obj <<
-/D [3671 0 R /XYZ 71.731 390.876 null]
+/D [3683 0 R /XYZ 71.731 530.055 null]
 >> endobj
 3690 0 obj <<
-/D [3671 0 R /XYZ 71.731 379.36 null]
+/D [3683 0 R /XYZ 496.728 506.812 null]
 >> endobj
 3691 0 obj <<
-/D [3671 0 R /XYZ 71.731 357.314 null]
+/D [3683 0 R /XYZ 415.635 493.861 null]
 >> endobj
 3692 0 obj <<
-/D [3671 0 R /XYZ 71.731 357.314 null]
->> endobj
-1634 0 obj <<
-/D [3671 0 R /XYZ 71.731 311.486 null]
+/D [3683 0 R /XYZ 71.731 434.917 null]
 >> endobj
-630 0 obj <<
-/D [3671 0 R /XYZ 222.149 272.114 null]
+3693 0 obj <<
+/D [3683 0 R /XYZ 71.731 401.109 null]
 >> endobj
 3694 0 obj <<
-/D [3671 0 R /XYZ 71.731 264.762 null]
+/D [3683 0 R /XYZ 104.01 389.552 null]
 >> endobj
-1942 0 obj <<
-/D [3671 0 R /XYZ 71.731 223.93 null]
+3695 0 obj <<
+/D [3683 0 R /XYZ 104.01 377.896 null]
 >> endobj
 3696 0 obj <<
-/D [3671 0 R /XYZ 71.731 186.206 null]
+/D [3683 0 R /XYZ 71.731 376.681 null]
 >> endobj
 3697 0 obj <<
-/D [3671 0 R /XYZ 191.311 175.277 null]
+/D [3683 0 R /XYZ 104.01 354.583 null]
 >> endobj
 3698 0 obj <<
-/D [3671 0 R /XYZ 71.731 168.139 null]
+/D [3683 0 R /XYZ 104.01 342.927 null]
 >> endobj
-3670 0 obj <<
-/Font << /F33 1306 0 R /F23 1201 0 R /F27 1208 0 R /F32 1215 0 R /F35 1569 0 R /F55 2324 0 R /F64 2761 0 R >>
-/ProcSet [ /PDF /Text ]
+3699 0 obj <<
+/D [3683 0 R /XYZ 71.731 318.207 null]
 >> endobj
-3701 0 obj <<
-/Length 2095      
-/Filter /FlateDecode
->>
-stream
-xڥZM����ϯ����)	��ܺמ��e#v;��EQ]xh(5��_�L�*hv}@�|���Tj�����'!<x��X��������)��92��~������p�|�E<��vI��T�����O��:����E�E>=o/�Wu�Sﷲ�u�����_?��y�a�gi�i������%>g
��b��T��!��������#uz4��Wx�9�d���C��a�GL)�s���=L��慆~-_ۡ��CQ�}O��������6��r��j�\�e��H&?�<�Ҍ�K�I���u�5o�Lx��CŨHv�K>̤�u^�'jW��3�ޛ�Fީ��bh��QK>��_�[�6�<j#�/�c���}�
-��mG$��y_q-��������L0�Dz�o=L
E�gzJ]�x�]�ߩ3�{UOO�_W6C�����!�݆�3}u��Por�����vޜ�A�l����1Y�x]o���[2Q�h_�uU�Cy�!Žz��V_�9.;���|��n
�*�x%��"1��be?��!�km�0�~�ZV�-.�����|oo�2H�*4P�����2w	֮37�\=K���+pqt��Y���!d}�%����o�"j��w�f�-&��m]�{.�5�_p�Ի�x�嵧��SbEV�B&�� n<��{���H0���X�נmp���K���}��0�"�f�ˏU�	�F[, P!͒,�}d�E�|�KIV�!�d�'H�޹4ۿ�sА	?�y[�Z�5���x�ޡ�d!��؄��y^���^�s��n8����OM?���d��)��\e}�O|Qz`̏Y��0�S�"GJu T*�?\���\
���ޚ�8g��1l��v"��^�G%r�d,��Ԡ����t$A��#�Y;�;�Dpfe��~G�V�!��t�';8��,�r�9s�(E�$f�͟8MY��,΢;��F��R���Y�s��cNdz��<�A�i�ei��6%r0d&��Ĵ\���-� ��V���,��~�(L�Ǻ-�|�O!(䂘������d�:�D>�*"�	���0y]�͹z��b	�)�aF�MICf��Z�A�0'%��4џ�w��T���í�<L���<�dVy�D\<���<��-蒇��PW���pQI}�	a���z��xx�Z�=�{���ւ��M9��m"0�����*7Ui�~w:��Cƶ92k�$\d�����@����
-��V��;u�Q����&��5*i�М�Z@���D:��3��Lr���A�7���=]����Y��H)T,\t�92��fj�ܕAm���Vݥ�,���b�Cj5��P�������m{a�Y��qy�Fs{�F��`��	i!1�iGW�1UC8Fg����7\7�ξ��k1�~�l�`��j�*W��hѭ�5���oU_�Z�rŰ,���3:*�^���a�贈˅�x����*e����6���6�MY����Ϧ$���$��%������n{����J"�jy��,rc?;���_�����~Q������xͯ+)��Sl���Z�P��`C9Ӄ
=���ذ�Nm�=K�a�$Ư�RhX�	<N���W�
��Z4hG4,�9�a݊��U�r��)���iȬ�Z�Q4/�9���y�l�;���s�}Qy��˓�ۇ�$�Z$�
--�Z�Z��Ѕ%rP�ICf�.Z�A�0']��t1ѝt��k�>Y]X��g�/��a���1hN�,��9c�;I��B(�4�vli���N������Q#�+9��C�o;����¶���YG����'���o|��N8z��k��ѣ\	�u��
���Lo�y7Tŭ�;5�dA���7�=	������U*
�u���.Uq�f�^q�U����S�����j�5�{y?�vh,=�}���G%��^�5RWj��{ؚnc�W����jѕ����%��r�h���.�q̋/�+��ˎ(��EJw`C��E�I�qw{��l�Vۗ�No���%SKn�4C�L��>
|����.T�
-�k�r��Q�,��l4�X�o x�F-�3���
�?7x��endstream
-endobj
 3700 0 obj <<
-/Type /Page
-/Contents 3701 0 R
-/Resources 3699 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 3639 0 R
-/Annots [ 3707 0 R 3708 0 R ]
->> endobj
-3707 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [272.131 579.171 315.707 587.761]
-/Subtype /Link
-/A << /S /GoTo /D (gloss-htaccess) >>
+/D [3683 0 R /XYZ 71.731 296.302 null]
 >> endobj
-3708 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [262.114 567.623 321.927 576.105]
-/Subtype /Link
-/A << /S /GoTo /D (http-apache) >>
+3701 0 obj <<
+/D [3683 0 R /XYZ 118.555 252.756 null]
 >> endobj
 3702 0 obj <<
-/D [3700 0 R /XYZ 71.731 729.265 null]
->> endobj
-1635 0 obj <<
-/D [3700 0 R /XYZ 71.731 718.306 null]
->> endobj
-634 0 obj <<
-/D [3700 0 R /XYZ 197.608 706.118 null]
->> endobj
-1636 0 obj <<
-/D [3700 0 R /XYZ 71.731 705.903 null]
+/D [3683 0 R /XYZ 421.576 244.292 null]
 >> endobj
-638 0 obj <<
-/D [3700 0 R /XYZ 498.095 666.746 null]
+1637 0 obj <<
+/D [3683 0 R /XYZ 71.731 200.753 null]
 >> endobj
-3703 0 obj <<
-/D [3700 0 R /XYZ 71.731 656.381 null]
+602 0 obj <<
+/D [3683 0 R /XYZ 295.902 168.357 null]
 >> endobj
 3704 0 obj <<
-/D [3700 0 R /XYZ 213.998 620.718 null]
+/D [3683 0 R /XYZ 71.731 157.992 null]
 >> endobj
 3705 0 obj <<
-/D [3700 0 R /XYZ 71.731 605.61 null]
+/D [3683 0 R /XYZ 355.306 148.232 null]
 >> endobj
 3706 0 obj <<
-/D [3700 0 R /XYZ 71.731 590.666 null]
+/D [3683 0 R /XYZ 71.731 123.161 null]
 >> endobj
-3709 0 obj <<
-/D [3700 0 R /XYZ 76.712 551.577 null]
+3707 0 obj <<
+/D [3683 0 R /XYZ 104.01 113.662 null]
 >> endobj
-3710 0 obj <<
-/D [3700 0 R /XYZ 71.731 541.615 null]
+3708 0 obj <<
+/D [3683 0 R /XYZ 104.01 102.006 null]
 >> endobj
-3711 0 obj <<
-/D [3700 0 R /XYZ 81.694 508.738 null]
+3682 0 obj <<
+/Font << /F33 1322 0 R /F23 1217 0 R /F44 2069 0 R /F27 1224 0 R /F35 1589 0 R /F61 2561 0 R /F55 2355 0 R /F32 1231 0 R >>
+/ProcSet [ /PDF /Text ]
 >> endobj
 3712 0 obj <<
-/D [3700 0 R /XYZ 71.731 506.581 null]
+/Length 850       
+/Filter /FlateDecode
+>>
+stream
+xڥUM��0��WX�@"m];��슕8 *q���mI�j���3����@Uk���|�'�0�p�8U���I&Iխك�z�c(�G���js%)h�	�ݑ�1�XA�Hh.��?E��rpz�׉d�����;ӛ	p����c���-�/ۛ՛�Cl)-r�dzi��B�}h�y��է/������W�V��E��pZ����VV�\1p&)�S>�����]�9T���3ɩ8���S*�̫%���$S	-��1NYT���T�\�)�A�����P��h���m�A@�G�����������zo���vwb�lו}��!Շ�\�TB���n�����U���ۤ�<С=�7S�1N�	��n��(���>d�be��޺��C��qN��l6R��Q��X*y�/���y���X���|u�)�6e���,��B;D�Ewv�5���G=�h�mv%.���s��������gƒ�t����C�����m�?�9����<��"2�=n�)����R��mHb+��-��i6N�`lP'�c��[���z����� �"��ٌC�"�G��+��o�*�C|)@3��xo1�,��Jf$�s
p.и��uf��n�@;'��t8;�r
+��2�*/m�7�`�G�#cGk���L�w ��o����;;vK��@~,����n���=��m`5e���;v�mm���JyO�� ���0{���a4������|�O|�},��𔚞#�ȳ��Z�Ei�^l6��!���v|APx�@����Vx�ԧ1b	G׵ϼ>�2��S�s�	w1�i�Փ�#���'����މ�A�����#�:��%endstream
+endobj
+3711 0 obj <<
+/Type /Page
+/Contents 3712 0 R
+/Resources 3710 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 3709 0 R
 >> endobj
 3713 0 obj <<
-/D [3700 0 R /XYZ 71.731 506.581 null]
+/D [3711 0 R /XYZ 71.731 729.265 null]
 >> endobj
 3714 0 obj <<
-/D [3700 0 R /XYZ 91.656 495.787 null]
+/D [3711 0 R /XYZ 71.731 708.344 null]
 >> endobj
 3715 0 obj <<
-/D [3700 0 R /XYZ 120.717 495.787 null]
+/D [3711 0 R /XYZ 118.555 664.798 null]
 >> endobj
 3716 0 obj <<
-/D [3700 0 R /XYZ 120.717 495.787 null]
+/D [3711 0 R /XYZ 297.118 656.334 null]
 >> endobj
 3717 0 obj <<
-/D [3700 0 R /XYZ 147.218 495.787 null]
+/D [3711 0 R /XYZ 71.731 634.414 null]
 >> endobj
 3718 0 obj <<
-/D [3700 0 R /XYZ 147.218 495.787 null]
+/D [3711 0 R /XYZ 462.063 601.756 null]
 >> endobj
-3719 0 obj <<
-/D [3700 0 R /XYZ 76.712 477.854 null]
+3710 0 obj <<
+/Font << /F33 1322 0 R /F23 1217 0 R /F44 2069 0 R /F27 1224 0 R >>
+/ProcSet [ /PDF /Text ]
 >> endobj
+3721 0 obj <<
+/Length 2514      
+/Filter /FlateDecode
+>>
+stream
+x�}Y[��6~ϯ��N�cEw���tڝt�m�9�N��Y�m5���RN��~?�,_��@H�ąV>~�*�,�'�ya������:b�_���������me�.�V��7ϯ^�F����d�z>�R���t�\����T��6�0�ױ��7��u�<���i�����?�a��y�4"~�jq����T7j�
v���M�ne��O��Q��quǨ�T�t�A1ȒA5Ũ*a��"'�WC1�ݑ��l ��.G��E�0u��c��An�H��9������0�2��A��`:�ч�e���0�]�5�m;�x���a�v�{�a��Q@�ߢi3Q�����=���N���������|bf�̴ӣ �Qu���؆��)u��:̘z&�ϛ �R
�U�q�+Z��_c=�����n����}Q��ޝ?��'���-:�s$!��V�H!+Y)���U�X�NU���\��&������q"X�l} '.J����������ڌ��Sab����Q;%Dk�}`�
+h��ǣ���Ot"5+!�����2��Q���Az9N�Y8����`�1��R ���F`}���J�C�O��Qt��q�{I�A��_������[:���>� ���p�x)����-�" ��q(�V
��4�U�8���_���,���҄gՉ��gQ�+]�A�����Ӳ�sw��+��fP	7�^uؖ��ʌ���)`�y���\L��l�4��b|w<�3Q�"x<��8	J��
+Y4�e,���^J�z<9��7� _�����v�����`P��R�-��R��Y��5���;�+��1}%��ÃB�ډĞ���6��7��Vp�0H$��	Rkl�^ I��KR�Y��ʼ>��8���΋�p^�8<�������ĜaB�-�8��^&�{��^X���-��g*����N�l� K`��qi���>c{͊�)�
�3�|>?�az@`�[2�!�CK��~>8q���ܢn�L�T%"m���A�9?pvm�Y��v����O����8 �w#ϔ��M'��Kԅ���-Ό���ة�A�5 p�o�Ϙ��a\LU=2Z�H��,��6�B�8�Ip��v��b����p��]<�h�`�.4My��s�$��z�'ZWT�\q"�0DG�u{J>�x;~�I���-4F3��Ҝ�aeA+��e$�9�j�[�R�{7@�@|u�{�[�h��% r.���q���3�Y!�[���^�G��-�,��b��O3���^�.�q�i���!�`_B�*�X�W��o�RO��bsz�4��W�?Ͻ�.��]��RT�Y��[���6��~Æ$V�j�6�"��k͝���n��'�2�͕�C:0\9��r]��r��J�R/'.*N��W��D�d��ؘ�������qNBϏY՞�_��8H��H�0ؚqUK9�cF��#��$Ł�i��{]�i��I�����.u���dn8��q/�Û��K����B����e���-�����ݶj�Ph�[q�a��9�WQk�N<rG�]���-#.���5j�;�;��|U���	�v�U�PkC:l!j!�|�������:V�\�87���.ƶ��Å�����ж
��Jk��rO��\�I��FȒ�:��C6`j�GE����V<����0X��pF����l`y��<g/�����lS?Ȃ�Ð�G��MA9�.m/�&�F]��>�����]2
+���$�P�K���pގ|�J�n-��-CGe+�p�ݱnk�d��
h�q
+�����zHBC�J�e�M��ylO���)�sk�>��0!���e��_�Uμ�s�-�I����+��gI�`bk7�"&�΃@��Go(\�"�*i�|9�%�Α8�UE��`��Կ���G��]��>v%],%]J�}]��AܕP5g{~���?��[�\~yQ{�Fj8���2$����\����q�z~m��򸼇�x�5I�d
+�۴4{pN��v;vxބt�A�m��=�.��\R	=�%���!ݿd���&ML��`��K6��4��Ѵ��������"�k����=�^�<P_��'X4��:���/�{��d�{f���j�J���"�m�%�F8q走E�:ͽ_-��R�n�j��P={Ro�XI�%�-�4[mS��i>W������(��
+�����o����ߋяE��W#0���A�l1�R<�C�Q�u)
��5����LO@ �0/�91d��/\־VJX�)��.���3�d�����}�E�}<�Dz�J<?w�IB3��).70�oI�l*%>��������������ĦJ�ʻ��PZ����2�Һڝ�eeh��2��}6��-��ۈ��{t�j`/l��T��k�䛹Ic&�4@�#�V?�Ή�A�`{35�["�J���λ�]ޠ%��.�����>ʶ�m�'g�9j��a�'��]m���J�cB�H�[A�ߕ{I��ջOendstream
+endobj
 3720 0 obj <<
-/D [3700 0 R /XYZ 81.694 464.902 null]
+/Type /Page
+/Contents 3721 0 R
+/Resources 3719 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 3709 0 R
+/Annots [ 3728 0 R 3733 0 R ]
 >> endobj
-3721 0 obj <<
-/D [3700 0 R /XYZ 92.483 464.902 null]
+3728 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [97.498 367.618 132.915 376.529]
+/Subtype /Link
+/A << /S /GoTo /D (gloss-daemon) >>
+>> endobj
+3733 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [258.734 354.666 290.823 363.578]
+/Subtype /Link
+/A << /S /GoTo /D (gloss-service) >>
 >> endobj
 3722 0 obj <<
-/D [3700 0 R /XYZ 71.731 464.714 null]
+/D [3720 0 R /XYZ 71.731 729.265 null]
+>> endobj
+1638 0 obj <<
+/D [3720 0 R /XYZ 71.731 718.306 null]
+>> endobj
+606 0 obj <<
+/D [3720 0 R /XYZ 344.957 703.236 null]
 >> endobj
 3723 0 obj <<
-/D [3700 0 R /XYZ 71.731 464.714 null]
+/D [3720 0 R /XYZ 71.731 681.855 null]
 >> endobj
 3724 0 obj <<
-/D [3700 0 R /XYZ 91.656 451.951 null]
+/D [3720 0 R /XYZ 522.288 634.645 null]
 >> endobj
 3725 0 obj <<
-/D [3700 0 R /XYZ 71.731 449.794 null]
+/D [3720 0 R /XYZ 71.731 616.593 null]
+>> endobj
+1639 0 obj <<
+/D [3720 0 R /XYZ 71.731 575.701 null]
+>> endobj
+610 0 obj <<
+/D [3720 0 R /XYZ 252.56 532.604 null]
+>> endobj
+1640 0 obj <<
+/D [3720 0 R /XYZ 71.731 528.774 null]
+>> endobj
+614 0 obj <<
+/D [3720 0 R /XYZ 198.219 493.231 null]
 >> endobj
 3726 0 obj <<
-/D [3700 0 R /XYZ 91.656 439 null]
+/D [3720 0 R /XYZ 71.731 485.879 null]
 >> endobj
-3727 0 obj <<
-/D [3700 0 R /XYZ 135.691 439 null]
+1641 0 obj <<
+/D [3720 0 R /XYZ 71.731 427.115 null]
 >> endobj
-3728 0 obj <<
-/D [3700 0 R /XYZ 135.691 439 null]
+618 0 obj <<
+/D [3720 0 R /XYZ 267.87 389.899 null]
+>> endobj
+3727 0 obj <<
+/D [3720 0 R /XYZ 71.731 379.756 null]
 >> endobj
 3729 0 obj <<
-/D [3700 0 R /XYZ 76.712 421.067 null]
+/D [3720 0 R /XYZ 209.73 369.774 null]
 >> endobj
 3730 0 obj <<
-/D [3700 0 R /XYZ 81.694 408.115 null]
+/D [3720 0 R /XYZ 291.334 369.774 null]
 >> endobj
 3731 0 obj <<
-/D [3700 0 R /XYZ 92.483 408.115 null]
+/D [3720 0 R /XYZ 381.061 369.774 null]
 >> endobj
 3732 0 obj <<
-/D [3700 0 R /XYZ 71.731 407.407 null]
->> endobj
-3733 0 obj <<
-/D [3700 0 R /XYZ 71.731 407.407 null]
+/D [3720 0 R /XYZ 419.603 369.774 null]
 >> endobj
 3734 0 obj <<
-/D [3700 0 R /XYZ 91.656 395.164 null]
+/D [3720 0 R /XYZ 322.387 356.823 null]
 >> endobj
 3735 0 obj <<
-/D [3700 0 R /XYZ 71.731 393.007 null]
+/D [3720 0 R /XYZ 449.982 356.823 null]
 >> endobj
 3736 0 obj <<
-/D [3700 0 R /XYZ 71.731 393.007 null]
+/D [3720 0 R /XYZ 489.834 356.823 null]
 >> endobj
 3737 0 obj <<
-/D [3700 0 R /XYZ 101.619 382.213 null]
+/D [3720 0 R /XYZ 436.781 343.872 null]
 >> endobj
 3738 0 obj <<
-/D [3700 0 R /XYZ 71.731 380.056 null]
+/D [3720 0 R /XYZ 258.733 330.92 null]
 >> endobj
 3739 0 obj <<
-/D [3700 0 R /XYZ 101.619 369.261 null]
+/D [3720 0 R /XYZ 171.642 317.969 null]
 >> endobj
 3740 0 obj <<
-/D [3700 0 R /XYZ 142.884 369.261 null]
+/D [3720 0 R /XYZ 71.731 304.918 null]
 >> endobj
 3741 0 obj <<
-/D [3700 0 R /XYZ 142.884 369.261 null]
+/D [3720 0 R /XYZ 71.731 289.974 null]
 >> endobj
 3742 0 obj <<
-/D [3700 0 R /XYZ 76.712 351.328 null]
+/D [3720 0 R /XYZ 209.872 278.417 null]
 >> endobj
 3743 0 obj <<
-/D [3700 0 R /XYZ 91.656 338.377 null]
+/D [3720 0 R /XYZ 316.053 278.417 null]
 >> endobj
 3744 0 obj <<
-/D [3700 0 R /XYZ 71.731 336.22 null]
+/D [3720 0 R /XYZ 129.377 266.761 null]
+>> endobj
+1642 0 obj <<
+/D [3720 0 R /XYZ 71.731 238.865 null]
+>> endobj
+622 0 obj <<
+/D [3720 0 R /XYZ 215.507 199.493 null]
 >> endobj
 3745 0 obj <<
-/D [3700 0 R /XYZ 71.731 336.22 null]
+/D [3720 0 R /XYZ 71.731 192.062 null]
 >> endobj
 3746 0 obj <<
-/D [3700 0 R /XYZ 101.619 325.426 null]
+/D [3720 0 R /XYZ 401.912 179.368 null]
 >> endobj
-3747 0 obj <<
-/D [3700 0 R /XYZ 71.731 323.269 null]
->> endobj
-3748 0 obj <<
-/D [3700 0 R /XYZ 101.619 312.474 null]
+1643 0 obj <<
+/D [3720 0 R /XYZ 71.731 136.365 null]
 >> endobj
-3749 0 obj <<
-/D [3700 0 R /XYZ 145.653 312.474 null]
->> endobj
-3750 0 obj <<
-/D [3700 0 R /XYZ 145.653 312.474 null]
+3719 0 obj <<
+/Font << /F23 1217 0 R /F27 1224 0 R /F33 1322 0 R /F35 1589 0 R /F44 2069 0 R /F61 2561 0 R >>
+/ProcSet [ /PDF /Text ]
 >> endobj
 3751 0 obj <<
-/D [3700 0 R /XYZ 177.534 312.474 null]
+/Length 1624      
+/Filter /FlateDecode
+>>
+stream
+xڭXmo�6��_a`"+��^Zl@��m�t�g���l+�Yr�����;�N/�w��:�s<>G�'����̗Ј�	OM��3g��/o�8iؤb�t��g/�H9	Y����a�
+�)N|)X��d��h���vU\Lm��e�^���4��w/�"���?�?���-��>yҭFg䗐�3��v�Y�����/�	�X��w��hl��2�zz�3�eȤ/[}N3書?Ոw����(_.�y�Ud��&�øp��������Y��Y����J�a �˙�=�cB�ht���?4����kttŅ5�|1��ix�9
?0��/�2!��7!��Uo��M^��bʭ:C9�F��������T(�K��S��u����u�|�c�R�@K�,��+r��R�rl�yV֩�NX�L�XHG�ɍ� ��e�76���P���
;�#:�&�PZF[R{J�
J���L*�����`���	��ђ'�ՑZ� �'!d1�z^���h�����\k�y]v:�:����$Pƅ��ԖҳV�Ô;V����CJ;��K�`h)������G�ƚy#�Ee�(|Ґy�"��pz�>XHo}-��X�k���3�-`C���C�A��]0,�u�-��CD���vE^A�b����*����$�������Lւ�ט.z�19�A�̇lu�&a$�5vQ:D���
h?�:�&�2Z��8+�!_|�ȗ���v��,��t�\�e�ΒlݤQ����H$3zd�������6�54�R��9~�g�sfQ����z&��6RA�Zg�/?�S�s�&mR�9V^7�DZe�2Wr�|��r>C�p-���(���pK�����X}r�s����Ð9pF H?��L��,�3U�� G�?��>�<#�sM��W��0���������;4~��������ݫ1�l��OA%�1J	��kCɯRJ�ï���J��VǍFv����L���kt��'�ő�;>��y��j�떶��#>�p��!R�fv����v�����!�Z��1��n!X��������WJTgJ]7�d��1u`�$�����&�8�6l;t�2B���A�<�=@�o����|��@�S�63U.p�Wm��Bq�7MJ�8Z�[s�yU��Mr�_�e�sr5CC�����
+O���i��!
~�*�sOP>Û��^(���_����a�c�Ĉ˯W�P��-�NEN�TZz�(@�NчEnj�U�z[�Ԛ���1e���z���$�~	�C2�,G��Ԁ;�%'S�ZZ�ЋmPO�^��t?��)̠�J�������E�LG������c�CM����!�
+�~�%(��:.�������u�]鈉��828ʵF��)��64t����m7��*��X?	O:����m���੏����Q��,�wp��
+��:ENR��&^ɸ���K�fq-�4���pJ���[kLy� 09ɹ��v���xv�z9���@��0��?I���C���.̟:���]U��s���q�|�ݳe�0�@�����˱%�2l��c��GsE��lS��<��;��������T���F�':}u_��n��X,��M&���_�n��:Oݰ���*%� ����s�>����!�
+endstream
+endobj
+3750 0 obj <<
+/Type /Page
+/Contents 3751 0 R
+/Resources 3749 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 3709 0 R
+/Annots [ 3754 0 R 3772 0 R 3774 0 R ]
+>> endobj
+3754 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [141.531 644.094 194.317 653.005]
+/Subtype /Link
+/A << /S /GoTo /D (security-os-accounts) >>
+>> endobj
+3772 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [318.972 337.225 370.159 346.435]
+/Subtype /Link
+/A << /S /GoTo /D (security-mysql-account-root) >>
+>> endobj
+3774 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [442.102 236.881 495.555 245.792]
+/Subtype /Link
+/A << /S /GoTo /D (security-os-ports) >>
 >> endobj
 3752 0 obj <<
-/D [3700 0 R /XYZ 177.534 312.474 null]
+/D [3750 0 R /XYZ 71.731 729.265 null]
+>> endobj
+626 0 obj <<
+/D [3750 0 R /XYZ 164.538 705.748 null]
+>> endobj
+1644 0 obj <<
+/D [3750 0 R /XYZ 71.731 702.184 null]
+>> endobj
+630 0 obj <<
+/D [3750 0 R /XYZ 306.92 666.375 null]
 >> endobj
 3753 0 obj <<
-/D [3700 0 R /XYZ 209.414 312.474 null]
+/D [3750 0 R /XYZ 71.731 656.233 null]
 >> endobj
-3754 0 obj <<
-/D [3700 0 R /XYZ 209.414 312.474 null]
+1645 0 obj <<
+/D [3750 0 R /XYZ 71.731 626.161 null]
+>> endobj
+634 0 obj <<
+/D [3750 0 R /XYZ 408.16 588.946 null]
 >> endobj
 3755 0 obj <<
-/D [3700 0 R /XYZ 241.294 312.474 null]
+/D [3750 0 R /XYZ 71.731 578.803 null]
 >> endobj
 3756 0 obj <<
-/D [3700 0 R /XYZ 241.294 312.474 null]
+/D [3750 0 R /XYZ 213.741 568.821 null]
 >> endobj
 3757 0 obj <<
-/D [3700 0 R /XYZ 76.712 294.541 null]
+/D [3750 0 R /XYZ 387.602 568.821 null]
 >> endobj
 3758 0 obj <<
-/D [3700 0 R /XYZ 91.656 281.59 null]
+/D [3750 0 R /XYZ 249.294 555.87 null]
+>> endobj
+1972 0 obj <<
+/D [3750 0 R /XYZ 71.731 542.819 null]
 >> endobj
 3759 0 obj <<
-/D [3700 0 R /XYZ 71.731 279.433 null]
+/D [3750 0 R /XYZ 71.731 503.038 null]
 >> endobj
 3760 0 obj <<
-/D [3700 0 R /XYZ 71.731 279.433 null]
+/D [3750 0 R /XYZ 71.731 503.038 null]
 >> endobj
 3761 0 obj <<
-/D [3700 0 R /XYZ 101.619 268.638 null]
+/D [3750 0 R /XYZ 71.731 491.996 null]
 >> endobj
 3762 0 obj <<
-/D [3700 0 R /XYZ 76.712 232.773 null]
+/D [3750 0 R /XYZ 305.215 481.748 null]
 >> endobj
 3763 0 obj <<
-/D [3700 0 R /XYZ 81.694 219.822 null]
+/D [3750 0 R /XYZ 71.731 480.34 null]
+>> endobj
+1973 0 obj <<
+/D [3750 0 R /XYZ 71.731 458.435 null]
 >> endobj
 3764 0 obj <<
-/D [3700 0 R /XYZ 92.483 219.822 null]
+/D [3750 0 R /XYZ 71.731 413.573 null]
 >> endobj
 3765 0 obj <<
-/D [3700 0 R /XYZ 71.731 218.414 null]
+/D [3750 0 R /XYZ 71.731 413.573 null]
 >> endobj
 3766 0 obj <<
-/D [3700 0 R /XYZ 71.731 218.414 null]
+/D [3750 0 R /XYZ 71.731 402.532 null]
 >> endobj
 3767 0 obj <<
-/D [3700 0 R /XYZ 91.656 206.87 null]
+/D [3750 0 R /XYZ 149.738 392.283 null]
 >> endobj
 3768 0 obj <<
-/D [3700 0 R /XYZ 76.712 188.937 null]
+/D [3750 0 R /XYZ 71.731 390.876 null]
 >> endobj
 3769 0 obj <<
-/D [3700 0 R /XYZ 81.694 175.986 null]
+/D [3750 0 R /XYZ 71.731 379.36 null]
 >> endobj
 3770 0 obj <<
-/D [3700 0 R /XYZ 92.483 175.986 null]
+/D [3750 0 R /XYZ 71.731 357.314 null]
 >> endobj
 3771 0 obj <<
-/D [3700 0 R /XYZ 71.731 174.578 null]
+/D [3750 0 R /XYZ 71.731 357.314 null]
 >> endobj
-3772 0 obj <<
-/D [3700 0 R /XYZ 71.731 174.578 null]
+1646 0 obj <<
+/D [3750 0 R /XYZ 71.731 311.486 null]
+>> endobj
+638 0 obj <<
+/D [3750 0 R /XYZ 222.149 272.114 null]
 >> endobj
 3773 0 obj <<
-/D [3700 0 R /XYZ 91.656 163.034 null]
+/D [3750 0 R /XYZ 71.731 264.762 null]
 >> endobj
-3774 0 obj <<
-/D [3700 0 R /XYZ 71.731 140.12 null]
+1974 0 obj <<
+/D [3750 0 R /XYZ 71.731 223.93 null]
 >> endobj
-3699 0 obj <<
-/Font << /F33 1306 0 R /F23 1201 0 R /F27 1208 0 R /F35 1569 0 R /F44 2037 0 R /F55 2324 0 R >>
+3775 0 obj <<
+/D [3750 0 R /XYZ 71.731 186.206 null]
+>> endobj
+3776 0 obj <<
+/D [3750 0 R /XYZ 191.311 175.277 null]
+>> endobj
+3777 0 obj <<
+/D [3750 0 R /XYZ 71.731 168.139 null]
+>> endobj
+3749 0 obj <<
+/Font << /F33 1322 0 R /F23 1217 0 R /F27 1224 0 R /F32 1231 0 R /F35 1589 0 R /F55 2355 0 R /F66 2803 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-3778 0 obj <<
-/Length 1340      
+3780 0 obj <<
+/Length 2095      
 /Filter /FlateDecode
 >>
 stream
-xڅVm��6�~���>�.�%���0�]��؀a˷u8(�����l���׏e�w�nQER����^?��3��^�܅�v~��Nc�T6+�׻��ORz9���^$"��K�`Y,�]����z��`#�Џ���㗪�����4T���{�v���e��L�֬s�H�q��3&�ȆU��nh����>�����(��>�?i�g��$��8<ӿ�n���k:��Y7<����"��N��ꇪ��́!N&Aߎ�3�(�w?Ҙ�!ǜ�M7\��etF��U���x�i�0����r�ЙK�.�B�#���ܓ8VM__H�]B]c/��%�?�`i�B�O�zx��kR^';Iκ΃�'U�ne�<��O3gE^]nd>��ۈ�%�֮�_�"�pQ� �̹{
%i���$��X�t����d<�Y�f^�d,��WA6�lVJdOyf�d#�(�����*!�^t?��^H�0y����B�W�h@�|O6�ѥ��E�!E�4a��2x��zﴱ���#���_0��D�i�X�kYy��m]y"X���&��s�3b���B��Z�^�@�L�r9�ݡ���Q�f�?��8��#֡=ҴQuUT��v�+�@�C՛[L�o2.�;��M*s���ER]gT]�V��3B�0Z(��`�/M�@8���$���kHB�ŠLq���K�H�UW,�# 
-�����`g�H�W�j��q�B�+�9_������P�5�9�8�K}@���6W2wBk�רOE#m\����x�{,����QR�0ĕ��6N\�m�P�{Z9tuM�k+�g��y�G� ��b�X�ɱ.Oȕ?'���$��Bf!v��ӃA��]��Pt�~h*S�ط_v2M����,�F��ʍnK
-/��p){kP1�0F{;{o���x�6f�Ѡ�s��Z�N;�m;�ض_�8�G�r�;�|�F�Iu��-�x��8{X��y>c�LC��C:@<�Y�
-�T�Jȥ���}ġ�Z���Jkf�(��Ʈ.��B��&��j�*Cc�.$����j_�١s�
�g
-�2ήlqt�v�Jˊ�5��:w5/r�l~�iGT>D����W�	@e�8nNfBC9�����:���� �pJ]IS]���-�Դ�&H�)��1�\��Aҿ�f9�Q�b�)F��ֶ�����Qb8-�Z;ޓ��T��VQ�`��edN��0����6Ko�mRd��8��(�`J�W�
-UI_[�����<eߪ���>�CKE�Tm��بvC�{�PV���)G�o�9C�A���|5���ý���e<}�U�y��"eI�X����=�o]���=�endstream
+xڥZM����ϯ����)	��ܺמ��e#v;��EQ]xh(5��_�L�*hv}@�|���Tj�����'!<x��X��������)��92��~������p�|�E<��vI��T�����O��:����E�E>=o/�Wu�Sﷲ�u�����_?��y�a�gi�i������%>g
��b��T��!��������#uz4��Wx�9�d���C��a�GL)�s���=L��慆~-_ۡ��CQ�}O��������6��r��j�\�e��H&?�<�Ҍ�K�I���u�5o�Lx��CŨHv�K>̤�u^�'jW��3�ޛ�Fީ��bh��QK>��_�[�6�<j#�/�c���}�
+��mG$��y_q-��������L0�Dz�o=L
E�gzJ]�x�]�ߩ3�{UOO�_W6C�����!�݆�3}u��Por�����vޜ�A�l����1Y�x]o���[2Q�h_�uU�Cy�!Žz��V_�9.;���|��n
�*�x%��"1��be?��!�km�0�~�ZV�-.�����|oo�2H�*4P�����2w	֮37�\=K���+pqt��Y���!d}�%����o�"j��w�f�-&��m]�{.�5�_p�Ի�x�嵧��SbEV�B&�� n<��{���H0���X�נmp���K���}��0�"�f�ˏU�	�F[, P!͒,�}d�E�|�KIV�!�d�'H�޹4ۿ�sА	?�y[�Z�5���x�ޡ�d!��؄��y^���^�s��n8����OM?���d��)��\e}�O|Qz`̏Y��0�S�"GJu T*�?\���\
���ޚ�8g��1l��v"��^�G%r�d,��Ԡ����t$A��#�Y;�;�Dpfe��~G�V�!��t�';8��,�r�9s�(E�$f�͟8MY��,΢;��F��R���Y�s��cNdz��<�A�i�ei��6%r0d&��Ĵ\���-� ��V���,��~�(L�Ǻ-�|�O!(䂘������d�:�D>�*"�	���0y]�͹z��b	�)�aF�MICf��Z�A�0'%��4џ�w��T���í�<L���<�dVy�D\<���<��-蒇��PW���pQI}�	a���z��xx�Z�=�{���ւ��M9��m"0�����*7Ui�~w:��Cƶ92k�$\d�����@����
+��V��;u�Q����&��5*i�М�Z@���D:��3��Lr���A�7���=]����Y��H)T,\t�92��fj�ܕAm���Vݥ�,���b�Cj5��P�������m{a�Y��qy�Fs{�F��`��	i!1�iGW�1UC8Fg����7\7�ξ��k1�~�l�`��j�*W��hѭ�5���oU_�Z�rŰ,���3:*�^���a�贈˅�x����*e����6���6�MY����Ϧ$���$��%������n{����J"�jy��,rc?;���_�����~Q������xͯ+)��Sl���Z�P��`C9Ӄ
=���ذ�Nm�=K�a�$Ư�RhX�	<N���W�
��Z4hG4,�9�a݊��U�r��)���iȬ�Z�Q4/�9���y�l�;���s�}Qy��˓�ۇ�$�Z$�
+-�Z�Z��Ѕ%rP�ICf�.Z�A�0']��t1ѝt��k�>Y]X��g�/��a���1hN�,��9c�;I��B(�4�vli���N������Q#�+9��C�o;����¶���YG����'���o|��N8z��k��ѣ\	�u��
���Lo�y7Tŭ�;5�dA���7�=	������U*
�u���.Uq�f�^q�U����S�����j�5�{y?�vh,=�}���G%��^�5RWj��{ؚnc�W����jѕ����%��r�h���.�q̋/�+��ˎ(��EJw`C��E�I�qw{��l�Vۗ�No���%SKn�4C�L��>
|����.T�
+�k�r��Q�,��l4�X�o x�F-�3���
�?7x��endstream
 endobj
-3777 0 obj <<
+3779 0 obj <<
 /Type /Page
-/Contents 3778 0 R
-/Resources 3776 0 R
+/Contents 3780 0 R
+/Resources 3778 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 3639 0 R
-/Annots [ 3785 0 R ]
+/Parent 3709 0 R
+/Annots [ 3786 0 R 3787 0 R ]
 >> endobj
-3785 0 obj <<
+3786 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [179.678 666.905 232.014 675.387]
+/Rect [272.131 579.171 315.707 587.761]
 /Subtype /Link
-/A << /S /GoTo /D (http) >>
->> endobj
-3779 0 obj <<
-/D [3777 0 R /XYZ 71.731 729.265 null]
+/A << /S /GoTo /D (gloss-htaccess) >>
 >> endobj
-3780 0 obj <<
-/D [3777 0 R /XYZ 152.136 708.344 null]
+3787 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [262.114 567.623 321.927 576.105]
+/Subtype /Link
+/A << /S /GoTo /D (http-apache) >>
 >> endobj
 3781 0 obj <<
-/D [3777 0 R /XYZ 457.305 708.344 null]
->> endobj
-3782 0 obj <<
-/D [3777 0 R /XYZ 322.488 695.392 null]
->> endobj
-3783 0 obj <<
-/D [3777 0 R /XYZ 71.731 693.235 null]
->> endobj
-3784 0 obj <<
-/D [3777 0 R /XYZ 71.731 678.291 null]
+/D [3779 0 R /XYZ 71.731 729.265 null]
 >> endobj
-1637 0 obj <<
-/D [3777 0 R /XYZ 71.731 630.934 null]
+1647 0 obj <<
+/D [3779 0 R /XYZ 71.731 718.306 null]
 >> endobj
 642 0 obj <<
-/D [3777 0 R /XYZ 171.235 585.68 null]
+/D [3779 0 R /XYZ 197.608 706.118 null]
 >> endobj
-1638 0 obj <<
-/D [3777 0 R /XYZ 71.731 581.849 null]
+1648 0 obj <<
+/D [3779 0 R /XYZ 71.731 705.903 null]
 >> endobj
 646 0 obj <<
-/D [3777 0 R /XYZ 413.668 546.307 null]
+/D [3779 0 R /XYZ 498.095 666.746 null]
 >> endobj
-3786 0 obj <<
-/D [3777 0 R /XYZ 71.731 535.942 null]
+3782 0 obj <<
+/D [3779 0 R /XYZ 71.731 656.381 null]
 >> endobj
-3787 0 obj <<
-/D [3777 0 R /XYZ 401.183 526.183 null]
+3783 0 obj <<
+/D [3779 0 R /XYZ 213.998 620.718 null]
+>> endobj
+3784 0 obj <<
+/D [3779 0 R /XYZ 71.731 605.61 null]
+>> endobj
+3785 0 obj <<
+/D [3779 0 R /XYZ 71.731 590.666 null]
 >> endobj
 3788 0 obj <<
-/D [3777 0 R /XYZ 457.301 513.231 null]
+/D [3779 0 R /XYZ 76.712 551.577 null]
 >> endobj
 3789 0 obj <<
-/D [3777 0 R /XYZ 239.311 487.329 null]
+/D [3779 0 R /XYZ 71.731 541.615 null]
 >> endobj
 3790 0 obj <<
-/D [3777 0 R /XYZ 71.731 480.19 null]
+/D [3779 0 R /XYZ 81.694 508.738 null]
 >> endobj
 3791 0 obj <<
-/D [3777 0 R /XYZ 319.244 443.493 null]
+/D [3779 0 R /XYZ 71.731 506.581 null]
 >> endobj
-3776 0 obj <<
-/Font << /F33 1306 0 R /F27 1208 0 R /F35 1569 0 R /F23 1201 0 R /F44 2037 0 R >>
-/ProcSet [ /PDF /Text ]
+3792 0 obj <<
+/D [3779 0 R /XYZ 71.731 506.581 null]
 >> endobj
-3794 0 obj <<
-/Length 2448      
-/Filter /FlateDecode
->>
-stream
-xڍ�n��}��oWdE�[�vg�e�`��fP�>0m��%W�on��=%Y^R��ó�<+-B���(X��Qy��tQ>�����C$I�*U0���J�u�o��j���Ӈ�?�x�� K���v�Ɓ���S�O��^{�.Wj��Ҁ�?:[�x�����*����_�[�T�"�Ī \��QDB���ۥ
-��<�mj!]/� �b�TQ��R@����r�D��&�I���2�e��ۦ=��<0u�:u��f�_5�0�ioZ#�S�AX%��t���x�T_��)y��k +���*�(�-RA�F���a������ҵ��x<N9�D��v��#'�������9�@��8x5U�d�7�=V�M�m/�(�n���Y����������Y����ߖQ�A$���j��"�H�f+����`%4����(�x�����H���E�8�Ma�N��zc�^�a�V�w�������5����n����A	��܂d�.�%����/�kO5/;
-���)uH4�����^T�o
-G�ܪ��/t�8����������}�^��@.��)N�g�+Z�l���������'���q뙫��עhN ������l�	�M�k�
�h��d��3������i�<!�Z��	�g�f%�~��8UŒ��t�;��`k����)r����,�
-0�\�%hqx��3�SkD(�&������G��?��7'�:%O錈�a��|A��&�e;p�V�c�Z��%��=Uʟ� ["�@���8����9ષ�2�x��:�!f0�i|5	�j���kbx36�bt!k�Y�\�5�����[��
D&���۳��w�'N����i��7 �m]�߃bg/,�I��|�]T�x����T�툮R3@�8�������P&�[����54X	���y%.$8꘨�h
-Ҁ�m��L)�(��ٔ&Gèek��m.D`�>�_<�.��W�N�C�s��<�|	�e	�����r*��7�"dk�aS����X�ˌ�T
-�08�~�?2^��x
-B��Kt]���
-��\#�5KQ�Ό��1�B���5i'	I�w��`t�9���.5c ���]�D	��9\�kP���sJ��L����=���N>���F����P��S|:��xLT�9�ӷ<�|�T8�b�n��y�]�!�:2���\>�y�j�j!N]��B�.�l��9nө�qױ��!�r� �����_X�����;V�����
-*�� �[�|��v�t��̔kZ���
jBy�Hj��J����P)B�7��R4z�������43f�4#�e+�g[��顋�"f�xS��.̎q&"S��H��u�&uA$�0�lLW��;�=�$�O��S9�Y%#�ʢ��<=���3�43g@�x��bdgd�
A�^,��|�˚8�f(5���R�ĔV�$�f}��o���9A
�`�s�p(x�V	pEֻ%�=�3�(���g�z8�<�
V�r`�MG�V�_IS9&�֎kQ��	��?�����q(��5'��.� �$g�g��-9�o���k��t�*��5�g�-U͎����b(��6�Q�bZ��7��>0�D�͖�6p���� t����O��.\���5/��Q-Yi�Ws�ڲ�\I�9�u%p_���y~�/{�:ϙ��,7�-������3�|��������&h.
ќ�N����W��co��I��j�W.\����޶����N�'y#�
��`а�UEF��V����F�tt�e��"�J�A�EEi�����E$����a	k�	@,|�r�ڑp�����Y��l*�ŝԏ�PGn��PA���y#�͐'(�p|3�]�z?�ݑ=c��?�%�P�-��>C������
Bb�@�3��*S��}}b���蚡�������g����̶�`�>�{�:|���Uԕ-ŭ�i�'{�4�+�;��
_}�|�,$���ٔO���"��dQ+~2r�<v�>�
�]UF��g��|3uq?�8R�׷\��w�<^q���l�Wq΀���o}�B�o�'8��ޡ�J�-��"�]��'{��5nq������h��h�;�<}
��{�q��҂ŹW1ia$>"o]�+`"+��!��%��ib�kO\G�u��X���p���:�j\[K�MiQ&��^���9����٨u�F�c���
-�x�2�KY���3�ܬ
�J^������z�z�4�<�$�(	%#|x�p������1�K�^.�{�A6��f|b���gذ�������a�O0�zďZg|ݳж��n�����~�1�T����	
-Mls��=f�o��mi�����\P�_����[�B|���I}�m�Ґ�6h�7э6�1V#
-�R����M*D�x3�~��? �P~endstream
-endobj
 3793 0 obj <<
-/Type /Page
-/Contents 3794 0 R
-/Resources 3792 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 3639 0 R
->> endobj
-3795 0 obj <<
-/D [3793 0 R /XYZ 71.731 729.265 null]
+/D [3779 0 R /XYZ 91.656 495.787 null]
 >> endobj
-1639 0 obj <<
-/D [3793 0 R /XYZ 71.731 718.306 null]
->> endobj
-650 0 obj <<
-/D [3793 0 R /XYZ 320.829 703.236 null]
->> endobj
-1640 0 obj <<
-/D [3793 0 R /XYZ 71.731 692.184 null]
+3794 0 obj <<
+/D [3779 0 R /XYZ 120.717 495.787 null]
 >> endobj
-654 0 obj <<
-/D [3793 0 R /XYZ 205.304 651.159 null]
+3795 0 obj <<
+/D [3779 0 R /XYZ 120.717 495.787 null]
 >> endobj
 3796 0 obj <<
-/D [3793 0 R /XYZ 71.731 642.336 null]
+/D [3779 0 R /XYZ 147.218 495.787 null]
 >> endobj
 3797 0 obj <<
-/D [3793 0 R /XYZ 506.431 629.6 null]
->> endobj
-1641 0 obj <<
-/D [3793 0 R /XYZ 71.731 583.608 null]
->> endobj
-658 0 obj <<
-/D [3793 0 R /XYZ 317.599 540.51 null]
+/D [3779 0 R /XYZ 147.218 495.787 null]
 >> endobj
 3798 0 obj <<
-/D [3793 0 R /XYZ 71.731 528.072 null]
+/D [3779 0 R /XYZ 76.712 477.854 null]
 >> endobj
 3799 0 obj <<
-/D [3793 0 R /XYZ 71.731 493.048 null]
+/D [3779 0 R /XYZ 81.694 464.902 null]
 >> endobj
 3800 0 obj <<
-/D [3793 0 R /XYZ 71.731 490.891 null]
+/D [3779 0 R /XYZ 92.483 464.902 null]
 >> endobj
 3801 0 obj <<
-/D [3793 0 R /XYZ 71.731 485.91 null]
+/D [3779 0 R /XYZ 71.731 464.714 null]
 >> endobj
 3802 0 obj <<
-/D [3793 0 R /XYZ 89.664 465.153 null]
+/D [3779 0 R /XYZ 71.731 464.714 null]
 >> endobj
 3803 0 obj <<
-/D [3793 0 R /XYZ 165.462 465.153 null]
+/D [3779 0 R /XYZ 91.656 451.951 null]
 >> endobj
 3804 0 obj <<
-/D [3793 0 R /XYZ 255.79 465.153 null]
+/D [3779 0 R /XYZ 71.731 449.794 null]
 >> endobj
 3805 0 obj <<
-/D [3793 0 R /XYZ 431.207 465.153 null]
+/D [3779 0 R /XYZ 91.656 439 null]
 >> endobj
 3806 0 obj <<
-/D [3793 0 R /XYZ 378.817 452.201 null]
+/D [3779 0 R /XYZ 135.691 439 null]
 >> endobj
 3807 0 obj <<
-/D [3793 0 R /XYZ 71.731 450.045 null]
+/D [3779 0 R /XYZ 135.691 439 null]
 >> endobj
 3808 0 obj <<
-/D [3793 0 R /XYZ 71.731 435.101 null]
+/D [3779 0 R /XYZ 76.712 421.067 null]
 >> endobj
 3809 0 obj <<
-/D [3793 0 R /XYZ 76.712 385.651 null]
+/D [3779 0 R /XYZ 81.694 408.115 null]
 >> endobj
 3810 0 obj <<
-/D [3793 0 R /XYZ 71.731 365.726 null]
+/D [3779 0 R /XYZ 92.483 408.115 null]
 >> endobj
 3811 0 obj <<
-/D [3793 0 R /XYZ 76.712 289.91 null]
+/D [3779 0 R /XYZ 71.731 407.407 null]
 >> endobj
 3812 0 obj <<
-/D [3793 0 R /XYZ 89.664 271.977 null]
+/D [3779 0 R /XYZ 71.731 407.407 null]
 >> endobj
 3813 0 obj <<
-/D [3793 0 R /XYZ 71.731 218.015 null]
+/D [3779 0 R /XYZ 91.656 395.164 null]
 >> endobj
 3814 0 obj <<
-/D [3793 0 R /XYZ 89.664 202.239 null]
+/D [3779 0 R /XYZ 71.731 393.007 null]
 >> endobj
 3815 0 obj <<
-/D [3793 0 R /XYZ 71.731 174.179 null]
+/D [3779 0 R /XYZ 71.731 393.007 null]
 >> endobj
 3816 0 obj <<
-/D [3793 0 R /XYZ 89.664 158.403 null]
+/D [3779 0 R /XYZ 101.619 382.213 null]
 >> endobj
 3817 0 obj <<
-/D [3793 0 R /XYZ 71.731 143.295 null]
+/D [3779 0 R /XYZ 71.731 380.056 null]
 >> endobj
 3818 0 obj <<
-/D [3793 0 R /XYZ 89.664 127.519 null]
+/D [3779 0 R /XYZ 101.619 369.261 null]
 >> endobj
 3819 0 obj <<
-/D [3793 0 R /XYZ 241.22 127.519 null]
+/D [3779 0 R /XYZ 142.884 369.261 null]
 >> endobj
 3820 0 obj <<
-/D [3793 0 R /XYZ 417.182 114.568 null]
+/D [3779 0 R /XYZ 142.884 369.261 null]
 >> endobj
-3792 0 obj <<
-/Font << /F23 1201 0 R /F27 1208 0 R /F35 1569 0 R /F44 2037 0 R /F33 1306 0 R >>
-/ProcSet [ /PDF /Text ]
+3821 0 obj <<
+/D [3779 0 R /XYZ 76.712 351.328 null]
 >> endobj
-3823 0 obj <<
-/Length 3294      
-/Filter /FlateDecode
->>
-stream
-xڝk�۶�ō���x|J�;���M�v�ėv:M��#qk>����뻋]� E�2}.��@�ʃ����}A���*�_xWx����[�Z0_߽��6�R7݅WwWQ��nw�7������Λcv�E�����.��(��@ï�ïeUe������7wa��4	��IÜ�G�4o^�Q�h����=�����:���i�M;�4[���(h\6.Ab�� ��Q޶�Kz�����NԢ�'�#��ŀn�;�q���d{��7��r���m����c�c�;r�Rf��޲�P� ���)+�bm��H�YQt��s�c����'��9�T�CU�c��4���1��Fb�6��~*����HHT�-��5�W��
��\Ğ���"vC��>qn��o�M��D�@����x7�(`��w����{e�#��[
-��R�OG�J�����c�	q��'^��OYח�Pe=ߣ솃KO���6��ɒC����r�N����x��
-���2��w�	���H멗J�W��'	[���k�����iz|�5�O�T����ޱ�O�on*��efJ,pn��m_�n䑜���G��C��������NI�3���	b7�O�p����^л���4Gʁ�*��T�nϙ}�����=����T��	pp�}:��*���4�We�Y�p������儣>���l��\I���A���R����e_�h�/)��:�uAx2��6&C}U���m�99��u�a�̯�Ξf�}�.}�� �la_�a1��=ig�}��˖��+Y�ޝG�}��=���M�d9��ւ9���m�Q�W���]��k�op�3�v�m��?v�(v�b�Q_~耧��M[���y���^��5���$����(�_���
'����ݳ�����쏴>[X�����a%:��1`*c�m33��4�=Wߢ崝�%vn4[��gS�v[L���ڸ^ҳ�B�ә
����2�m�YE�#��IO��c7ڧU@�i���-�)e��.��_��w��+|%��P��{�{N֖l}��!yrP���V4���H�Gn��������^1o�B6_�x�N?�p9v�;KJ��^�{y�VR=T�&*1_��-�ls��ۄ�A@���
�2v�)�=(%b��7������Q����d�a�9Llu�R��&��m>��ڪ�@�;-N�EeX{\%�����p����Pbъ�M�7uV.�
��;��i5��O�F�;nh�2�N9O�bF#%���g9��1��q<��y�:umn*�1q��W��mi}?@>�*��%��/�R�"�r�R�al�[5S��b���[4X��f�qj;�Wj��Y����[��u��3�T죞1�/�����Q�xr���0艄#(���2�o�^W=M6	v�Abfe4��Snd	m`g'#��I�v5�	��,��~S)M��C�̣����#F�I���\�;JP� �|Q�$�e龃�{��cI���}��fL�������pٮ�|G���Rӎ�;j{T6����W��{�T}��8����{	�C�$�MlrYJ��}x��h2�޼��[([�t��x�l�`��V
�
���\��9���	rɀ�����ۃ�˶0�/��4r��JUR����@���V������#�20�8�3�2��E���Xa�����2��j9��T�z��7HQW��YԬ�{�y�5-�ew���k�Zm�mxb�����o��X��3�N��w*������cz��`$�.krH`�NoV����?�)�qey_�!L|A��"��g�0к&:U]|�,��������4��~
}�9,�m��Vt�3���8����)�#V��h�w�ž�Q�Ug��1��g�u�YuVA����z�벳�p/9���4}h�8�6i�K�O�&��JӔ���Pg��-�n�����y	�*�0v=�ϊz�Y5� �Ѫ��q]����-ܯ���}!���RU'����O�?�ãq���~�tP���&}�z��)̪��N\פ���g���o�~���/v|���{#�6/3m�jC��{cħ��o�7��Y�p����vW��`�$�A��ݚ�p]�����mܟ��κ�!G��>�Vۣ���c��֏G��p��}�*�ć�3|^�#̪8iݯ���eq�p/������V`��GHJ�m��&��)4]���������b,kou3"Ė�nJ8}�c;1
4Y1������y��g��ԅ{��bO���Ej�U5*��F���9��*�`]R���ꯛK�TzlIoKmf�{N+��dlN��A)L����.�a��0֘F���U�����&!vI4PW	{�i80jU�+�d
-��+5�xJ�k�4)\��ү�^�ʮ?����Ǯ���� �9/XQ�˪�W!��f�8�������%�
-7�w�[��j_����v�벍�p/Y���#4����L��tB�F�&���Tڞ���i��Q4C��]���*��(:�\�1����M;4Źb"w\~�FɊ�+��r���&���[U�9��j��^R���(������-o�s�(�x~;/�J\����^�T����O���A�k��4��
���H����d�i�A�h�}��ܫ�iu��杚QR�~VT `&�@0�6}�{3��`���ڇ�T������9C����}6�xηb�~����
���b�B���u���&;ǽ`�6�]	��_*�½�(gҗ�S�e�H�+�]�o�Ɗ�tK�'BZ�����Q���@��rD�[�:��r�/�a�,�n�ǫh��>O�SG��ϗMd�ĵm�'ў*a�N�lLz��=k"#Ț�0�2�գ�T�Md�{�D,�T��"��$u�`<%PAa��W��s��H��ũ�9:�H�j�mK���&�6�Ҡ�	,_f�S�X�q.�+�fP�6��2g���_��)����V�f��-�����?���1���9���喛�e�<f��J4[�e&~�,��:	�1sw��A�������x�X�ZPF�z�u���N/����:Ң�頌�_I�i��=�~��mO}r�8��5|(+��"�$���7C?�G����/+�m������j�U���<q!Y��.����<
-���8ͥ6�,����L�f-g�s��?8�.d��w	��[�k����a��ȧ�5�a��ڂ�6�@9Ι�!̎3�7~)y�������=�ǛQ�&����RG�3Ê��_o�βҵ�M�1�Jx�Oendstream
-endobj
 3822 0 obj <<
-/Type /Page
-/Contents 3823 0 R
-/Resources 3821 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 3870 0 R
+/D [3779 0 R /XYZ 91.656 338.377 null]
+>> endobj
+3823 0 obj <<
+/D [3779 0 R /XYZ 71.731 336.22 null]
 >> endobj
 3824 0 obj <<
-/D [3822 0 R /XYZ 71.731 729.265 null]
+/D [3779 0 R /XYZ 71.731 336.22 null]
 >> endobj
 3825 0 obj <<
-/D [3822 0 R /XYZ 71.731 718.306 null]
->> endobj
-1642 0 obj <<
-/D [3822 0 R /XYZ 71.731 688.254 null]
->> endobj
-662 0 obj <<
-/D [3822 0 R /XYZ 252.009 645.157 null]
+/D [3779 0 R /XYZ 101.619 325.426 null]
 >> endobj
 3826 0 obj <<
-/D [3822 0 R /XYZ 71.731 632.719 null]
+/D [3779 0 R /XYZ 71.731 323.269 null]
 >> endobj
 3827 0 obj <<
-/D [3822 0 R /XYZ 71.731 610.646 null]
+/D [3779 0 R /XYZ 101.619 312.474 null]
 >> endobj
 3828 0 obj <<
-/D [3822 0 R /XYZ 71.731 582.586 null]
+/D [3779 0 R /XYZ 145.653 312.474 null]
 >> endobj
 3829 0 obj <<
-/D [3822 0 R /XYZ 71.731 577.605 null]
+/D [3779 0 R /XYZ 145.653 312.474 null]
 >> endobj
 3830 0 obj <<
-/D [3822 0 R /XYZ 89.664 556.848 null]
+/D [3779 0 R /XYZ 177.534 312.474 null]
 >> endobj
 3831 0 obj <<
-/D [3822 0 R /XYZ 89.664 556.848 null]
+/D [3779 0 R /XYZ 177.534 312.474 null]
 >> endobj
 3832 0 obj <<
-/D [3822 0 R /XYZ 89.664 525.964 null]
+/D [3779 0 R /XYZ 209.414 312.474 null]
 >> endobj
 3833 0 obj <<
-/D [3822 0 R /XYZ 71.731 525.964 null]
+/D [3779 0 R /XYZ 209.414 312.474 null]
 >> endobj
 3834 0 obj <<
-/D [3822 0 R /XYZ 71.731 414.732 null]
+/D [3779 0 R /XYZ 241.294 312.474 null]
 >> endobj
 3835 0 obj <<
-/D [3822 0 R /XYZ 89.664 396.799 null]
+/D [3779 0 R /XYZ 241.294 312.474 null]
 >> endobj
 3836 0 obj <<
-/D [3822 0 R /XYZ 89.664 396.799 null]
+/D [3779 0 R /XYZ 76.712 294.541 null]
 >> endobj
 3837 0 obj <<
-/D [3822 0 R /XYZ 71.731 368.739 null]
+/D [3779 0 R /XYZ 91.656 281.59 null]
 >> endobj
 3838 0 obj <<
-/D [3822 0 R /XYZ 89.664 352.964 null]
+/D [3779 0 R /XYZ 71.731 279.433 null]
 >> endobj
 3839 0 obj <<
-/D [3822 0 R /XYZ 89.664 352.964 null]
+/D [3779 0 R /XYZ 71.731 279.433 null]
 >> endobj
 3840 0 obj <<
-/D [3822 0 R /XYZ 71.731 350.807 null]
+/D [3779 0 R /XYZ 101.619 268.638 null]
 >> endobj
 3841 0 obj <<
-/D [3822 0 R /XYZ 89.664 335.031 null]
+/D [3779 0 R /XYZ 76.712 232.773 null]
 >> endobj
 3842 0 obj <<
-/D [3822 0 R /XYZ 89.664 335.031 null]
+/D [3779 0 R /XYZ 81.694 219.822 null]
 >> endobj
 3843 0 obj <<
-/D [3822 0 R /XYZ 71.731 332.874 null]
+/D [3779 0 R /XYZ 92.483 219.822 null]
 >> endobj
 3844 0 obj <<
-/D [3822 0 R /XYZ 89.664 317.098 null]
+/D [3779 0 R /XYZ 71.731 218.414 null]
 >> endobj
 3845 0 obj <<
-/D [3822 0 R /XYZ 89.664 317.098 null]
+/D [3779 0 R /XYZ 71.731 218.414 null]
 >> endobj
 3846 0 obj <<
-/D [3822 0 R /XYZ 71.731 314.941 null]
+/D [3779 0 R /XYZ 91.656 206.87 null]
 >> endobj
 3847 0 obj <<
-/D [3822 0 R /XYZ 89.664 299.165 null]
+/D [3779 0 R /XYZ 76.712 188.937 null]
 >> endobj
 3848 0 obj <<
-/D [3822 0 R /XYZ 89.664 299.165 null]
+/D [3779 0 R /XYZ 81.694 175.986 null]
 >> endobj
 3849 0 obj <<
-/D [3822 0 R /XYZ 71.731 297.008 null]
+/D [3779 0 R /XYZ 92.483 175.986 null]
 >> endobj
 3850 0 obj <<
-/D [3822 0 R /XYZ 89.664 281.233 null]
+/D [3779 0 R /XYZ 71.731 174.578 null]
 >> endobj
 3851 0 obj <<
-/D [3822 0 R /XYZ 89.664 281.233 null]
+/D [3779 0 R /XYZ 71.731 174.578 null]
 >> endobj
 3852 0 obj <<
-/D [3822 0 R /XYZ 71.731 279.076 null]
+/D [3779 0 R /XYZ 91.656 163.034 null]
 >> endobj
 3853 0 obj <<
-/D [3822 0 R /XYZ 89.664 263.3 null]
+/D [3779 0 R /XYZ 71.731 140.12 null]
 >> endobj
-3854 0 obj <<
-/D [3822 0 R /XYZ 89.664 263.3 null]
->> endobj
-3855 0 obj <<
-/D [3822 0 R /XYZ 71.731 248.191 null]
+3778 0 obj <<
+/Font << /F33 1322 0 R /F23 1217 0 R /F27 1224 0 R /F35 1589 0 R /F44 2069 0 R /F55 2355 0 R >>
+/ProcSet [ /PDF /Text ]
 >> endobj
+3857 0 obj <<
+/Length 1340      
+/Filter /FlateDecode
+>>
+stream
+xڅVm��6�~���>�.�%���0�]��؀a˷u8(�����l���׏e�w�nQER����^?��3��^�܅�v~��Nc�T6+�׻��ORz9���^$"��K�`Y,�]����z��`#�Џ���㗪�����4T���{�v���e��L�֬s�H�q��3&�ȆU��nh����>�����(��>�?i�g��$��8<ӿ�n���k:��Y7<����"��N��ꇪ��́!N&Aߎ�3�(�w?Ҙ�!ǜ�M7\��etF��U���x�i�0����r�ЙK�.�B�#���ܓ8VM__H�]B]c/��%�?�`i�B�O�zx��kR^';Iκ΃�'U�ne�<��O3gE^]nd>��ۈ�%�֮�_�"�pQ� �̹{
%i���$��X�t����d<�Y�f^�d,��WA6�lVJdOyf�d#�(�����*!�^t?��^H�0y����B�W�h@�|O6�ѥ��E�!E�4a��2x��zﴱ���#���_0��D�i�X�kYy��m]y"X���&��s�3b���B��Z�^�@�L�r9�ݡ���Q�f�?��8��#֡=ҴQuUT��v�+�@�C՛[L�o2.�;��M*s���ER]gT]�V��3B�0Z(��`�/M�@8���$���kHB�ŠLq���K�H�UW,�# 
+�����`g�H�W�j��q�B�+�9_������P�5�9�8�K}@���6W2wBk�רOE#m\����x�{,����QR�0ĕ��6N\�m�P�{Z9tuM�k+�g��y�G� ��b�X�ɱ.Oȕ?'���$��Bf!v��ӃA��]��Pt�~h*S�ط_v2M����,�F��ʍnK
+/��p){kP1�0F{;{o���x�6f�Ѡ�s��Z�N;�m;�ض_�8�G�r�;�|�F�Iu��-�x��8{X��y>c�LC��C:@<�Y�
+�T�Jȥ���}ġ�Z���Jkf�(��Ʈ.��B��&��j�*Cc�.$����j_�١s�
�g
+�2ήlqt�v�Jˊ�5��:w5/r�l~�iGT>D����W�	@e�8nNfBC9�����:���� �pJ]IS]���-�Դ�&H�)��1�\��Aҿ�f9�Q�b�)F��ֶ�����Qb8-�Z;ޓ��T��VQ�`��edN��0����6Ko�mRd��8��(�`J�W�
+UI_[�����<eߪ���>�CKE�Tm��بvC�{�PV���)G�o�9C�A���|5���ý���e<}�U�y��"eI�X����=�o]���=�endstream
+endobj
 3856 0 obj <<
-/D [3822 0 R /XYZ 89.664 232.416 null]
+/Type /Page
+/Contents 3857 0 R
+/Resources 3855 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 3709 0 R
+/Annots [ 3864 0 R ]
 >> endobj
-3857 0 obj <<
-/D [3822 0 R /XYZ 89.664 232.416 null]
+3864 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [179.678 666.905 232.014 675.387]
+/Subtype /Link
+/A << /S /GoTo /D (http) >>
 >> endobj
 3858 0 obj <<
-/D [3822 0 R /XYZ 71.731 230.259 null]
+/D [3856 0 R /XYZ 71.731 729.265 null]
 >> endobj
 3859 0 obj <<
-/D [3822 0 R /XYZ 89.664 214.483 null]
+/D [3856 0 R /XYZ 152.136 708.344 null]
 >> endobj
 3860 0 obj <<
-/D [3822 0 R /XYZ 89.664 214.483 null]
+/D [3856 0 R /XYZ 457.305 708.344 null]
 >> endobj
 3861 0 obj <<
-/D [3822 0 R /XYZ 71.731 199.375 null]
+/D [3856 0 R /XYZ 322.488 695.392 null]
 >> endobj
 3862 0 obj <<
-/D [3822 0 R /XYZ 89.664 183.599 null]
+/D [3856 0 R /XYZ 71.731 693.235 null]
 >> endobj
 3863 0 obj <<
-/D [3822 0 R /XYZ 89.664 183.599 null]
+/D [3856 0 R /XYZ 71.731 678.291 null]
 >> endobj
-3864 0 obj <<
-/D [3822 0 R /XYZ 71.731 168.49 null]
+1649 0 obj <<
+/D [3856 0 R /XYZ 71.731 630.934 null]
+>> endobj
+650 0 obj <<
+/D [3856 0 R /XYZ 171.235 585.68 null]
+>> endobj
+1650 0 obj <<
+/D [3856 0 R /XYZ 71.731 581.849 null]
+>> endobj
+654 0 obj <<
+/D [3856 0 R /XYZ 413.668 546.307 null]
 >> endobj
 3865 0 obj <<
-/D [3822 0 R /XYZ 89.664 152.714 null]
+/D [3856 0 R /XYZ 71.731 535.942 null]
 >> endobj
 3866 0 obj <<
-/D [3822 0 R /XYZ 89.664 152.714 null]
+/D [3856 0 R /XYZ 401.183 526.183 null]
 >> endobj
 3867 0 obj <<
-/D [3822 0 R /XYZ 71.731 137.606 null]
+/D [3856 0 R /XYZ 457.301 513.231 null]
 >> endobj
 3868 0 obj <<
-/D [3822 0 R /XYZ 89.664 121.83 null]
+/D [3856 0 R /XYZ 239.311 487.329 null]
 >> endobj
 3869 0 obj <<
-/D [3822 0 R /XYZ 89.664 121.83 null]
+/D [3856 0 R /XYZ 71.731 480.19 null]
 >> endobj
-3821 0 obj <<
-/Font << /F33 1306 0 R /F27 1208 0 R /F23 1201 0 R >>
+3870 0 obj <<
+/D [3856 0 R /XYZ 319.244 443.493 null]
+>> endobj
+3855 0 obj <<
+/Font << /F33 1322 0 R /F27 1224 0 R /F35 1589 0 R /F23 1217 0 R /F44 2069 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-3874 0 obj <<
-/Length 2070      
+3873 0 obj <<
+/Length 2429      
 /Filter /FlateDecode
 >>
 stream
-xڭ�r����_��T@G�{�l���S�J)٤�<���@���-�_����A�WJ����r66�9���?22�7i������7C�d7�y������nb����\W�A�	])"_n�Zyr�T��I߶|A��E}�����{Q���_�����8��Pđ{��fƔG��X��	�H��gx���L�4�iq֊p���m:��o�t��z�Xw|pNs~��7K:�ŵD�'B�	b[x���c���̤�D��8ތ��@��w �Of���B����NM��	Y���s��>`G�ǜ{R�nX��yC�/�-K���{��V�E�kz����G�5=2�ѣ���9���xE{I��$sY�nA�W!�K�|7�Ҫ9��mN����Q1T�%߁��^V7GD���u�=�{�Mݏ k�g��`U�sR�������'��>n}�**Ѓ���ňORT�D��IB[H?ܻ�����S����+����l�3G�@�k��	�x�F`Z�2y��0��:��;���M*��<A��"����n��ߗJl�ٶ9�P>�ɴs��}
-�JU{ټ8q�;���x��u�'�P�+}��E�z��H=�ӤM���]�j�6�!,�G8�5\��-�(����K�A$/L�gU2��B�ֳ���(u�	�|QA�����iN�}8���
-Uw7�m���M�ƀ_a1Z��,G��MI��,M��\�mS�6�csn�m䀒����F[&u��Y:�Z����Fz|��b��-�.p��?���L��b+F��%���:�(��{F"��c��0��G�b4�n�l���fn�	&�)����ڂ֍T�WiS�k]+#
m.��‰t��d�Ԭ���uj)�����B�y�
�H�9������]���"��Ytlbg�~N�z�q�C7��r`�P���
2.W��\��$[����$��33� .�z�f�������%�35��{,�{F�.b�V�2Y�[zӷ�k}��W��k�}˔�����b^�������=�?�f6yB�G�PZ	b���pM_l�V���`���Dӥk��)��\i�u��6����:W�b´p'�n��!GF�����ǀ0.Ӻ���֥���z&Xi�vESڽ�ЁA���i��,_�U״�_����A����`�K���;ڞk��$��*�*_0�{hx`Y��k�$�@9m��f��F�V��)qk¥hA�;43vA�d�~Z;�s����C���VdN������ �o?���3U��Z
-� �>��D�C}w�%�4ez/`��n:���`�|3�vF��qݠ�_��6�g��	��]f���^w�io���O��`E��FL���S_ګ�̕P�ai_6�81I�h���pN�rFp���z4�+�煾�ؾ�x���!���k��@�Uǻ���xS�o����n��\GS�o��m�P�Xm�g���R_�Y�����p��ߙ& kedUګ��z]�W��4:!�.�
-L�f@�zµ�Cx����yP{��N^�s7G5�HE���� ���N!��g�������Uq������h�W:f37S��	O]��T�,�4X;�����m0���{AC"�te���+�a�w�K֦G�g���^̗�����߄~��͵�H:�&_���*�W�1yIK�����SM�]M[���;�]f)�%0��
_��P�������`lj^��C�,m(!T�1�_��=skO�����
��_
-�f7��5"�է�xnYI�Ι�|ٯ�f�۴�|��v���S�z���:��)ߑ��q b�]�Q)����*��Rg��&��8w�	������aMD��s�sZ�Y̓3T��������pi�~\P�"�.:t4�)g��H@��6��0V3!�1��EWE!}��!�F	�U%7�����g�V&���k�_W?���+�i�u����k�c
I@�W��:ޟ���в�{�~�W�8��А>�����_m�_�慀�e3u�7��3�̒�/#a�	�'���W3��,j�endstream
+xڍَ�8�=_᷑[-�����d'��b���D�D˒�c{z�~�,�v���Y��źH�E�j�)?���~�&���&X�`��o�`�i�I�+��$��|-�����}�E�i�/� ��(]ܗ��>���7�rf/�����������lU����7���J�[�bC?�2b��J�?�}��)���M-��"��4�P�	*��{�-ױ���0M����Ӷ�U[o���O0偩��ЙV�-~�Qw���{�a%��?��*���Ю����D1���ǟu
d� �
+7�{S��'���#H�}����U�<��㔃M����>��@H����{n��f��F�q�d��9Ȥo�{���,�^HQ��2G���L����|���,�����.U�Cā��պ�E>l��VD�E��Khf���)B2�Ɏ�B���7��'��qT��t�nm�̀�Fc�V��$g[���5����Ni%$uɃ��܂d�.�Ş��ʵC�ˎ�&Db���fu��;8�0	��'��~a�������.~�GD<����iyAw#��ʦ��LW���t��$�("->�����hN�%���{D���4�}�_�}�]��2D����Kh%d��Q�ɑ�Y���S�%��q�=�+)'-�0tI̓}������ wQ�rM�Nq�~��og��l |<������gg��d�R�`���H�s#!�2[9��f#�ҿ�B�1'~()�C�lx�g��f�^I��09�ñ�gi�c�@(�N8!+�c�j�~ƣ6r�8!�Z��1�g�f%}�~�c�0�E:�Uy����V���a
��T����/3hQp��s�
+���T9� ߿}fg[�t�f�ؙqJ6"���;�T"7��Oۑd��k�=�u�ZʰT\�J��"(�I-P���W��/V�*\��xGn��o�c��~@��8�W�AYOp���8ތ
��.dmr?M�k���Q���({�e�����i��9�t�;Á%�
�HI����
�Dj[��O������7~�ފy�-g�~�a����R3@�*��ؓ����Pƌ[��q�k����r����#�v�O������R�Y qǴekWs�m��eI�)��!;ɱ_�:m`%ǡsx��򥨕%Dw�ň@gʩl��?�Ǔ��]���6��:���
+H��ϩ�h������B�ug��K
+�#�5MP�ΜN�c(乁5iWQ�Y9j�y0��P�g���r ����D	��9\�k���rJ��L����=���[�5��L�HE�&��S<����ڴ�s>}�Q�wK��)�ꦜ���2
+�Ց96����)�}��8u�c��d��3&n�o(N�;�l37$Bd��A��S�
K��4!T�+nɃ��]��4א��$���&W*6��@Yj[�\Gե�EgX���2E��H���,���3��^?h<��1���<W�8 �s�N��%�����M�7��;ƙ�L�!(i �M�
+"HVax٘���w\{�O�l�Q#�X��\2�,
+��SK��Gש���z��
��ͼ3�����o/�V�{>�eM"f3��BM)ybJ+DR�G�~��o��a�� �^�&8�z����o��Wd���${�e����L��ޡ�K���0g�¯ԩOk��(g��P�e5����q(�=]��D��2C�\|�p���>�|W�%���]7�5$R�r��&8�m��jvd
+֚������)��xf(��nD��l�m�Xky� Y��2�貅_�S����'�d�^���B˭4�yg�Z�EQ��g�r��E������^�n<�����/R�s��'fa*:	��
�h�]�g��ƅ�y�/d����S��_9p�a�y[�c��h•�'<�Hא��F��n+R�$�R�W��mN��-3-�P��F1���	���	D/A�x�"G1,!���—�+����u��AfO(��S�Iٌ���V�S��$y1�Mpn�<��
+G�R�Y����d�آ���It�fK��C�^���D��z	n��}0W��ccb���蚣�T����gr�ő=�m�d�VD�$�q����b�RW����bN,�����a�d�D�7|��7��\H�G3�����K���E!��E����=ʥ7�v
t-�D������b�H9B�ro������J�_��&��j��7�>��D�|ן��tzAA��N)�u�A�����EQ�ʃs��G��/�h����u ������,����E3�y�j��SLdEs�6
+�� �C>M�|h��Qw�<���Lx�1�/�x�dܽ:�k7�e�T��{���R�/�M��t��.:�]��X�P���tpI���1����\���R���}�endstream
 endobj
-3873 0 obj <<
+3872 0 obj <<
 /Type /Page
-/Contents 3874 0 R
-/Resources 3872 0 R
+/Contents 3873 0 R
+/Resources 3871 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 3870 0 R
-/Annots [ 3901 0 R ]
+/Parent 3899 0 R
 >> endobj
-3901 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [423.666 370.438 465.806 379.349]
-/Subtype /Link
-/A << /S /GoTo /D (lifecycle-image) >>
+3874 0 obj <<
+/D [3872 0 R /XYZ 71.731 729.265 null]
 >> endobj
-3875 0 obj <<
-/D [3873 0 R /XYZ 71.731 729.265 null]
+1751 0 obj <<
+/D [3872 0 R /XYZ 71.731 718.306 null]
 >> endobj
-1742 0 obj <<
-/D [3873 0 R /XYZ 71.731 741.22 null]
+658 0 obj <<
+/D [3872 0 R /XYZ 320.829 703.236 null]
+>> endobj
+1752 0 obj <<
+/D [3872 0 R /XYZ 71.731 692.184 null]
+>> endobj
+662 0 obj <<
+/D [3872 0 R /XYZ 205.304 651.159 null]
+>> endobj
+3875 0 obj <<
+/D [3872 0 R /XYZ 71.731 642.336 null]
 >> endobj
 3876 0 obj <<
-/D [3873 0 R /XYZ 71.731 706.187 null]
+/D [3872 0 R /XYZ 506.431 629.6 null]
 >> endobj
 3877 0 obj <<
-/D [3873 0 R /XYZ 89.664 690.411 null]
+/D [3872 0 R /XYZ 71.731 583.608 null]
 >> endobj
 3878 0 obj <<
-/D [3873 0 R /XYZ 89.664 690.411 null]
+/D [3872 0 R /XYZ 472.3 572.813 null]
+>> endobj
+1753 0 obj <<
+/D [3872 0 R /XYZ 71.731 552.723 null]
+>> endobj
+666 0 obj <<
+/D [3872 0 R /XYZ 317.599 509.626 null]
 >> endobj
 3879 0 obj <<
-/D [3873 0 R /XYZ 71.731 688.254 null]
+/D [3872 0 R /XYZ 71.731 497.188 null]
 >> endobj
 3880 0 obj <<
-/D [3873 0 R /XYZ 89.664 672.478 null]
+/D [3872 0 R /XYZ 71.731 462.164 null]
 >> endobj
 3881 0 obj <<
-/D [3873 0 R /XYZ 89.664 672.478 null]
+/D [3872 0 R /XYZ 71.731 460.007 null]
 >> endobj
 3882 0 obj <<
-/D [3873 0 R /XYZ 71.731 670.321 null]
+/D [3872 0 R /XYZ 71.731 455.026 null]
 >> endobj
 3883 0 obj <<
-/D [3873 0 R /XYZ 89.664 654.545 null]
+/D [3872 0 R /XYZ 89.664 434.269 null]
 >> endobj
 3884 0 obj <<
-/D [3873 0 R /XYZ 89.664 654.545 null]
+/D [3872 0 R /XYZ 165.462 434.269 null]
 >> endobj
 3885 0 obj <<
-/D [3873 0 R /XYZ 206.435 641.594 null]
+/D [3872 0 R /XYZ 255.79 434.269 null]
 >> endobj
 3886 0 obj <<
-/D [3873 0 R /XYZ 335.639 641.594 null]
+/D [3872 0 R /XYZ 431.207 434.269 null]
 >> endobj
 3887 0 obj <<
-/D [3873 0 R /XYZ 71.731 639.437 null]
+/D [3872 0 R /XYZ 378.817 421.317 null]
 >> endobj
 3888 0 obj <<
-/D [3873 0 R /XYZ 71.731 565.769 null]
+/D [3872 0 R /XYZ 71.731 419.16 null]
 >> endobj
 3889 0 obj <<
-/D [3873 0 R /XYZ 89.664 549.993 null]
+/D [3872 0 R /XYZ 71.731 404.216 null]
 >> endobj
 3890 0 obj <<
-/D [3873 0 R /XYZ 89.664 549.993 null]
+/D [3872 0 R /XYZ 76.712 354.767 null]
 >> endobj
 3891 0 obj <<
-/D [3873 0 R /XYZ 71.731 521.934 null]
+/D [3872 0 R /XYZ 71.731 334.841 null]
 >> endobj
 3892 0 obj <<
-/D [3873 0 R /XYZ 89.664 506.158 null]
+/D [3872 0 R /XYZ 76.712 259.026 null]
 >> endobj
 3893 0 obj <<
-/D [3873 0 R /XYZ 89.664 506.158 null]
+/D [3872 0 R /XYZ 89.664 241.093 null]
 >> endobj
 3894 0 obj <<
-/D [3873 0 R /XYZ 71.731 491.049 null]
+/D [3872 0 R /XYZ 71.731 187.13 null]
 >> endobj
 3895 0 obj <<
-/D [3873 0 R /XYZ 89.664 475.273 null]
+/D [3872 0 R /XYZ 89.664 171.355 null]
 >> endobj
 3896 0 obj <<
-/D [3873 0 R /XYZ 89.664 475.273 null]
+/D [3872 0 R /XYZ 71.731 143.295 null]
 >> endobj
 3897 0 obj <<
-/D [3873 0 R /XYZ 71.731 473.117 null]
+/D [3872 0 R /XYZ 89.664 127.519 null]
 >> endobj
 3898 0 obj <<
-/D [3873 0 R /XYZ 89.664 457.341 null]
->> endobj
-3899 0 obj <<
-/D [3873 0 R /XYZ 89.664 457.341 null]
->> endobj
-1643 0 obj <<
-/D [3873 0 R /XYZ 71.731 437.251 null]
->> endobj
-666 0 obj <<
-/D [3873 0 R /XYZ 259.687 394.154 null]
->> endobj
-3900 0 obj <<
-/D [3873 0 R /XYZ 71.731 381.716 null]
->> endobj
-3902 0 obj <<
-/D [3873 0 R /XYZ 459.262 359.643 null]
->> endobj
-3903 0 obj <<
-/D [3873 0 R /XYZ 220.262 346.692 null]
->> endobj
-1939 0 obj <<
-/D [3873 0 R /XYZ 71.731 344.535 null]
+/D [3872 0 R /XYZ 71.731 112.411 null]
 >> endobj
-3872 0 obj <<
-/Font << /F33 1306 0 R /F27 1208 0 R /F23 1201 0 R >>
+3871 0 obj <<
+/Font << /F23 1217 0 R /F27 1224 0 R /F35 1589 0 R /F44 2069 0 R /F33 1322 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-3906 0 obj <<
-/Length 1301      
+3902 0 obj <<
+/Length 3279      
 /Filter /FlateDecode
 >>
 stream
-x�}WY��6~���[d�抒u�i���b����-і]�#��w�3�����"���o.R����K��������@��J�ŖM��O���c8�H����]� ��8�E��>����Pݨ���=7�~��D���_YUj����կ���0�E��b�6���(���`�3���ԯe�j�����sV��=Ҫ,ֵt����<@D��yq<YA�L��nb��j��"M�H�8&N��ᩖ�/�ꯕc�nj�8Ԥ�_��<��Nx25y�)H���Z�k�s���܂��#�ڞv�h�o|I��l})<��\�KY���� M�NlS���U��l�Y��Be,z-t�九�a��|�<�ɉ��31��1���~ܐ&k�Z7���ФS�E�M}��B"�0B���EJ�%Pl��<���f�{-!�����D�a"�Z�Q�H+F���q�>><T��1Ϊ�9Q���OK�v,;���2����BWd�R̸a^``�J�q4�i�
R����f�ۊ�#5C����ȍ�y	��G��c_�0����}G��p���CsI�4�TD���-�E��k4�yg	t�ɄS�!�b������̭9tF�m����ME��zD�����֚(B���aC�z� ��m�&<��@��M����X=���A��h�W���8�
{�`����=�1tE�B$�Os�"�	s��5΁��=;Q�2l�nEr�]o"�i�%<
-O������r��7���ʻM��)�7�%��pzdN�����W� ����ژc'�,r��!��e0ñ�7��@��R\�4�������0'���ע43�;�4��lȘ��P��m��j#N6��l{�P(So*|[�Q�[���¸B�=Q_�ԟ�6c�a��� !��=s��c��l����j���g+
-|�
	j]t?��4�?����k�`����–$�܇>4���;S��|?��zUk�h�S�6����d��e��b�)�#��K�i�^�y�ZZ�B��m!�����ju&�4h��^ �T~����"|*xO7wjNO������5I��u��ЀQ"�(��$	e�/x!6,n(=Ho�m1>�h��xe�I�#<u$R�6�p��{t<�VUۜ��E���T�7�kC���D�� ��j=�6?���lQb�'F����F���Ŷ z4EDD���ֹ�*k������.��燎���2��mm�#�t\|�];��)x�O�(ۡ��E�b��6v�(6?���%"��c.&7?cB?�x�<'�?�yr{����b�endstream
+xڝk�۶�ō���x|J�;���M�N�ėv:M�CQ8�1E(����w��A��2} �b�(�	�ެC�'���*�)�/��=̼}2ĒA�̗/㛍�Y�7�7I��ju��#?K�����7��Ԋf����K}����zO�/��oeU��>���Wa��M_�)I3?ʢ�e��(��{���'��;Z�t3�A���A��_��g�k���y�Eܣm�wr���'���F�=ˎFj!v4�J��T��*�O<t4�S���F���Mh�*�O�M=Z�(%�0�����V�Dy��|̇�)ߋ�p���6tT�'�wK���a$��\���am2KO�f��5B)��;j�r
+��a�Ɇ����s�Zj�5˚8���{";�.4���agI��d[�v^׶�����/�ߋ��T&^��=S��U"A���	����#=�)��UH���Nʊ�x�8��D�����N�!S򖷯+f������>/”��N�]��me������Äh�C^�R�j�U,�Z�`����n%�F��f��ӛޮk�{�I���E&߀Ԣ0E�S���+v1�d�y�u�v�64���9}@f���`�(��t�7{�Z���
��&�u$=m��%53OZ����ӡ,�8U�3/����iˢ�����{�z��/���%{)w����N����+Lh�€�G��z���VH�Ud�f�F���k��⒍'k�S�)"�%a�� 
m{z}wW�)��Q��z�s�.��t�de���h���/���!�F�h�愐��t��x��Os߁ۤ����&��|`�ʷ�R���)��Y,! xG��
+[x��U;E�;`����|
�p�'ӞI�q�Ĉ�H�O%�
+[m�	}#��I�J�@�-�]*Q��-�;ƞ4^Q���� <9S�ꓥ������4'q�����7D�+��瑁o٬O�"0f莄}َEOo�l^�Q�D��C��>'i���&sf.�0 x�p.ǘ�u5��v�Ѷ���ԓ��@y�1�4l��Ǔ���g�i���b��;�&p����:���5����ƺm���������Oe{����2v��Ї��h�{D��
�)w-��R�XP���~��#M�a��Vܺ���(���K�{i��%��)4>ݐ�f�j�r�8眧��5�ɕw�'�
x���m(���e]���]���>�
+�A
+WL�J>0�8?�.���%#X��B�e�N���QWM��N�,��j�{n6J�{��-���@	����v(a�.M�&�36��4KY�F���,�cWA���x��i�f��o�E�T���`:��Aj��a��Dj�򦡵�NB�wmV���*��6��IJ
�Կʢ;��f���x�t=v�Y(
+����
+!������g��ʝ��"�LĒ7�
+��	"�v\�F:�K�fT]h�4�e�<-F�1R���Ø 3��:MǼ<�U�F6�
+y��ۥ�������-,	�?�5%�`@�}�ݛU�����Hߤ�2��~'��ҍ��e���&��mkQ7z9S��P5�rF�?�\�ϥ�Ge��}QȮw�'����e��]k��:��F��>�1B3���J��
F�'��(�l��G�`b��Rڒ�����~Oq���T��JP� �bR�ĥi�y��c�����C+���R�P��pZ�A}{���^�z<U>:����W���6U}���8����k	�]���M\r�K�<|���Pd䭝1��H[c���0���:0si�A�Fsi���i��D�������|3Xq������:����u����	Ux݃�&:iL��m�L�OT�@�p�PZp�]uJE��a`I�F�Њ�CN.ǰ[A	l�5~�5G�5��Qi�q�rNK�rK����n�Z�q%�Y8���j��g�����rpNG?�~�i=��=:#�5y]hGCf�]���}
�g09�*�_4��g��+2K�SԀ��5ѩ���+#�}����{F��2�P��#SF�l��>�.��_���O�1�����_1���Yc�"?������0��� ȟx�X�q]7��)cup߃���a��byr*���l}�Ib�2҂��lTa�b���W7���� �$�ˬ�afY� Hz2��s\�Y=�=�j����M]�v1�ե���c�/h�h@��Bd'��0�wq����/S�9���6��r�{��.�W?���j��/_?��,�E�[o�f�>�=>9SSƸX��,�W�4v�Í��0��	V�>�u��#�Svp�Ǽy�`r���C�>
+tЭ��h}E�8rPZ��gٙ~�d����̲�A���,;�q]g��;ܯll�����Ai+s}7����b[5aZ��������i��)F�XR4E	�OVc,'��&���0�覵W�b\=��)(M��>�GP��.����%� O�YQ��.��)Q:�_�}c���LO�d8Ur���I�q��:~�[>}i
+CE���:q�c��;���~Y�&="�Z�$Ɗ��Ya��{F��w���b/��@�7�fI����(l!�:�S��ҹD��ȟEaYa�ς�%OV�y��7W���5Dn�<N�Y�i|��0�z� x�ͬ��㺮g#�Sz����'���x�S����ɰࢌzWji����k��F	�卬��Y�� 1��1�������ݹ`݄Y짛�$[C,�s�6��8��X&P]���X\��\@R�wApz5]��+?M���'��Ҭ�U/i��訣kZ�v
+�?]��i~���
���I���9�7�g���/�#[�Z��FT"\��S="J	�܊v|H��ͼ������h`�6�G�6���}qIQ�q����)��ͩl��t�U��SY��*;��8��ʎpO����CS��o���x��?6�Q�!�r**y���%tj���_�B�FZ�f
+u�_)��k��@�C	�E���Cj�����0a�,mP��U��I�=<��ҩ݋����J�׶���	�B?�/j���S��1{�w��zOiG������Ŝ�l� ��
+�;Xg��uw�̿�pn�|*h�n���ګޅw[�������%

`�2?�*Ī/�p>�ԝ���KJ�q����8�E�M ��F
�l�L��9�v�,P�e�I����玁����[��a4��b�s��Z�}z}�n�/�PN��J�d~�/�ٴ9S�4ʀ]f}����9��N�Gendstream
 endobj
-3905 0 obj <<
+3901 0 obj <<
 /Type /Page
-/Contents 3906 0 R
-/Resources 3904 0 R
+/Contents 3902 0 R
+/Resources 3900 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 3870 0 R
-/Annots [ 3913 0 R ]
+/Parent 3899 0 R
 >> endobj
-3871 0 obj <<
-/Type /XObject
-/Subtype /Image
-/Width 496
-/Height 579
-/BitsPerComponent 8
-/ColorSpace /DeviceRGB
-/Length 49257     
-/Filter /FlateDecode
->>
-stream
-x��wX���i�b�ް+E,(�**��5�5b#�{0�+b��1Ơ��b!��-��n
�b���y�g߽�۹�{>�g�������w��Μ��`�a�a��?�����_�
8+�aX��a�s�a���a�a=g�a=g�aX��a�s�a���a���ar"�s�4im)RD�H4>Q`���u����`X�Fc������RRR�Wϋ/.ٓ��Υð�3�ZR�|��y��	����ؤI��u�^�xqΜ9��-Z�2d6F��m�6q$�����tԨQ#!!A��}�����6l‹O���˕+~)����#�����}��իth������K�,4h6~��G�� ����H	~��r�2��Y���jժ�_^��g�b�����C�۷o����f͚Af�����kq$�s�>~�86�;������ɓ��/�+��q�ܹs�@<�Mg�<yn߾���leeu��]l�)SFϫW�h�ƍժU��eX���s�Ν;wŊ�]�`A��������W�Re�޽ӦM�޽;ԘT]�����IR�P!���5N�%�e�\&lq
-V��!�ϳu��F�!�H|�|��|�s���<%%�����ٙ���ׯ�Q����ׯ_F��
�1e�I$0�O�8A�	�ҥK�~��!6N�:Eָ���*���!t������x�={��[�n�͛�˗a=g�M�Add$��ݻw���|3	��8������ϟ[XX�>}Z	��#|͚5���T�\���\�?GHzq(�s�S�n]�:�����hD�*����z�0:!=l���תU�3�a=g�����6mZ�^=WWWy°�3�0���0�9�0�9�0�z�0ð�3�^i׮m���ӆ�.�t��QH$ð�3�Z�
�L��.d]5jvk������7oި����h�1*d=bM�6
����_�^�$N3D�
�ܹCg)�HJ�"�;�q��U�Tٸq�����ׯ�+��^ða�����$'^�rE���q��ߚ*N�իW�ʕ�1c���z~��񀀀ɓ'sv19B�a�����HKK�8Q�96P�YQ�,��N���Ç%n!ȇ�M��Q6ɉ��^Tnڄ[S�I#czDFF�/Ru��C��7����W���9y29x�`�v��n�*q�����
-��<+�j��Y���1K::�zA��Ar���J���oM'��I����
-*?�k�����M.�=z4gc��z8|��~���bŊ�:Q�+k�<+*w�%������ѣ��k�^ec������$��1].l�3F���CX�
6�*Ο?_։�\YS�YQܩS�֭[+��k׮A~�:hܸ����3xA��Ar�����*&:����{��aL�D�s�a�0��8g�1��s�a�0��8g�1��s�a�0��8g��ь3����s�Q�Z#��Y�C���_�1a��s�Љ�A%��%�h��S�x��x��iTTT```ٲekժ�?F}<<<����q��Q����F(񠘡�ա�N	���Q�M�"پ}�8�.xzz"���p%S>%.��	-�:�޵ld/��/^��lll]�V���H����m���\����%3�:�)Ǐ��$~����.F����Z���Z:u��k��]��cgg׽{�
6�>}�ѣG��y��9,�C�M�<bN�ާOr�Ę!��e=(f(pu(���(I��B<�>e}-J�UK���w-��s��o�>2�.^�(�%g��\��;qѢE0]��M�6����73D�7B�ʺ:��'N�����/�D?�
-!�\�ǣ\_���j��Q��e��z�[i�_�~��Պt��L�	�ꨴ�䈈�rf�ro�r]�
�!C�4h�@�?"�����AȰ�0!Y�����8u��k�4Ƚ(�1�����l�
-빮��ڵ�����Ғ*6è۱�r𶅘�E������h��`ܸq��6m�p�cX����ͲTK����Ν;h��D��#�atEzzz���-,,��@Y����k׮x��^����0:�mA#N]b4��Y�f!��Տar��Yh���'���|͚5�sZ#�aFW���Ж:u��m۶!�4h�Տa�s�s&'"w�{�ܹ'M�$�]�^=???��������عdɒ�u�b���wTT����������?�����Y�����ig�<yF�A�Ç�_�x6o�,�iԨ��ܹs��Ҕܲrlj�V�����1%=wvv���JIIv._��k׮�k�C�a{ٲe!!!����+W*�!C��F�C�=*]����Y�f��
U�A2z��=c�oYݣ�9�9����y��	;��ܞ<y"9;!��_l���+�AE=�t�RժU���F�JHH��ѣG�x��y�*U�G�M�=�߫W/��DY�������&M������q��E�'���L��sXݵj��/�,Z��*��L6q?�����v�xzz��ڒ�:z���I�&EFF�:uJn�
��HR"Im���in�����������gϞ����
I�z�]zNn��<
-�
תU�B�
-Y[[.\�m۶¡�7"=v�`%�ˍS�uXQ���ի�ܹS��D�����_�b[Ř---���W�^��~�����X��;w��+V(��Qy��T��Qo;t� �LOO��
�sH�`�l׮"ٺu�8�\��t�`���+C�)�������޽{��:`��E��7M6A�!���ə`IW'm/�
-�����...�^�x1�"=ž,c���3fl�Qb=g��B?s�6`	�4-%%������Y�������^�t����s�δ̄�T��L��ׯ_v�D�~�?�9s���w�����+VL���H�>�4�v(m�z���і�;�,N�:�B������oLL�8yJ���_�}����ظ{�.Y����k׆��ol�3�lרQ���Q�ŋ�� ���Q,(^dd��?6::�~��4��o߾4��N��!��+�AE=ߴiS�n�d�+�oƷ�]0g���X�
6D
-�ϟ�!r�(�o$�#�	��0f=����]�&>�=ؖ���7ݹs��B<� �2N�[ �+W���~��G�V=fI"Y��1I=�~B{���z������cCV���Iۛ�����v��ϟ�e^�Bl��jŌa=gr�S�5��\���N�p���~�v�$����(�߲p�BE�-?��3�ņl��8%oE7�j�
-;v���7o6𫨣FQ�+V�P�3���a=g�_��U����el���J�ҥK���bܳg��=t���'N�Z���{h�…�d�
��r�TQϩ{�b��?�P�D��C�w����fY�|9�9�z��\=�u�VϞ=!�VVV��ի�Ћ"��>}�ȎW
-
-�1�*ԦM�xEX�4^���Ʃ���]��W��#�V�^���s&G�9���s�������zΰ���3�9�z�z��S�5���a=gX��s���a=gX�Y�����^ZO�z��9c`hjL�"EX�
��4�i��\��sF����/^�����ŋ���sr��z�j�~�9�[���P��'Of=7��߹s�`������&�������ժU�_~Q�����goe���X��r��in�…�:$g=׭��7�ݦM��J�����:u��>H�'`=g=gr���(�֭[?z��\z�k�.;;;�			Z��˗/�/.�#��C��V�ڭ[7a��ܹs�֮];  ���^�z׮];w�|��YD��G��������Y��'�!!!���ǎ�Cݻwwww_�reF�v���Ç����P�$1��nILL̗/��_�~�+r�s��9d�H�"�䈈m
-��[�T�Ҹq���dY=oҤ�����j.S��\=�Q�-����.>Z�T�;w�`�y��Ϟ=C�-[������-����3��.��h8�e!��:�t������3�f߾}666(e<z�o�����9tlѢE�s�e���MI	�
�m۶�x�����n�=7..�]�v�Y�}.��P���d�������������`�^�ZU�$����hY;;;���aÆӧO���0*���+W`�O�<��͍��Ӓ���r�i�&m�66�$~߽{���-[��sjd)��aBgd��.QW!���@�\���G�>Gs�{``?x���7k�LL�� >�$�YB��B~�X����ŋ!C���NT�V���H�
��{�n(�$���D�������4l�2�832ׂwuu�+����CCC��:u��x�q�\=OHH�Q__�Ν;=z�z��
-"@��]�v��9"&��⣔��;Jlx����7O�>����}{)��@����oDD$Q�.P�����������ϟ׾��Z0������&����H~в�3gΐ��
+3903 0 obj <<
+/D [3901 0 R /XYZ 71.731 729.265 null]
+>> endobj
+3904 0 obj <<
+/D [3901 0 R /XYZ 89.664 708.344 null]
+>> endobj
+3905 0 obj <<
+/D [3901 0 R /XYZ 241.22 708.344 null]
+>> endobj
+3906 0 obj <<
+/D [3901 0 R /XYZ 417.182 695.392 null]
+>> endobj
+3907 0 obj <<
+/D [3901 0 R /XYZ 71.731 688.254 null]
+>> endobj
+1754 0 obj <<
+/D [3901 0 R /XYZ 71.731 657.37 null]
+>> endobj
+670 0 obj <<
+/D [3901 0 R /XYZ 252.009 614.272 null]
+>> endobj
+3908 0 obj <<
+/D [3901 0 R /XYZ 71.731 601.834 null]
+>> endobj
+3909 0 obj <<
+/D [3901 0 R /XYZ 71.731 579.762 null]
+>> endobj
+3910 0 obj <<
+/D [3901 0 R /XYZ 71.731 551.702 null]
+>> endobj
+3911 0 obj <<
+/D [3901 0 R /XYZ 71.731 546.721 null]
+>> endobj
+3912 0 obj <<
+/D [3901 0 R /XYZ 89.664 525.964 null]
+>> endobj
+3913 0 obj <<
+/D [3901 0 R /XYZ 89.664 525.964 null]
+>> endobj
+3914 0 obj <<
+/D [3901 0 R /XYZ 89.664 495.079 null]
+>> endobj
+3915 0 obj <<
+/D [3901 0 R /XYZ 71.731 495.079 null]
+>> endobj
+3916 0 obj <<
+/D [3901 0 R /XYZ 71.731 383.848 null]
+>> endobj
+3917 0 obj <<
+/D [3901 0 R /XYZ 89.664 365.915 null]
+>> endobj
+3918 0 obj <<
+/D [3901 0 R /XYZ 89.664 365.915 null]
+>> endobj
+3919 0 obj <<
+/D [3901 0 R /XYZ 71.731 337.855 null]
+>> endobj
+3920 0 obj <<
+/D [3901 0 R /XYZ 89.664 322.079 null]
+>> endobj
+3921 0 obj <<
+/D [3901 0 R /XYZ 89.664 322.079 null]
+>> endobj
+3922 0 obj <<
+/D [3901 0 R /XYZ 71.731 319.922 null]
+>> endobj
+3923 0 obj <<
+/D [3901 0 R /XYZ 89.664 304.147 null]
+>> endobj
+3924 0 obj <<
+/D [3901 0 R /XYZ 89.664 304.147 null]
+>> endobj
+3925 0 obj <<
+/D [3901 0 R /XYZ 71.731 301.99 null]
+>> endobj
+3926 0 obj <<
+/D [3901 0 R /XYZ 89.664 286.214 null]
+>> endobj
+3927 0 obj <<
+/D [3901 0 R /XYZ 89.664 286.214 null]
+>> endobj
+3928 0 obj <<
+/D [3901 0 R /XYZ 71.731 284.057 null]
+>> endobj
+3929 0 obj <<
+/D [3901 0 R /XYZ 89.664 268.281 null]
+>> endobj
+3930 0 obj <<
+/D [3901 0 R /XYZ 89.664 268.281 null]
+>> endobj
+3931 0 obj <<
+/D [3901 0 R /XYZ 71.731 266.124 null]
+>> endobj
+3932 0 obj <<
+/D [3901 0 R /XYZ 89.664 250.348 null]
+>> endobj
+3933 0 obj <<
+/D [3901 0 R /XYZ 89.664 250.348 null]
+>> endobj
+3934 0 obj <<
+/D [3901 0 R /XYZ 71.731 248.191 null]
+>> endobj
+3935 0 obj <<
+/D [3901 0 R /XYZ 89.664 232.416 null]
+>> endobj
+3936 0 obj <<
+/D [3901 0 R /XYZ 89.664 232.416 null]
+>> endobj
+3937 0 obj <<
+/D [3901 0 R /XYZ 71.731 217.307 null]
+>> endobj
+3938 0 obj <<
+/D [3901 0 R /XYZ 89.664 201.531 null]
+>> endobj
+3939 0 obj <<
+/D [3901 0 R /XYZ 89.664 201.531 null]
+>> endobj
+3940 0 obj <<
+/D [3901 0 R /XYZ 71.731 199.375 null]
+>> endobj
+3941 0 obj <<
+/D [3901 0 R /XYZ 89.664 183.599 null]
+>> endobj
+3942 0 obj <<
+/D [3901 0 R /XYZ 89.664 183.599 null]
+>> endobj
+3943 0 obj <<
+/D [3901 0 R /XYZ 71.731 168.49 null]
+>> endobj
+3944 0 obj <<
+/D [3901 0 R /XYZ 89.664 152.714 null]
+>> endobj
+3945 0 obj <<
+/D [3901 0 R /XYZ 89.664 152.714 null]
+>> endobj
+3946 0 obj <<
+/D [3901 0 R /XYZ 71.731 137.606 null]
+>> endobj
+3947 0 obj <<
+/D [3901 0 R /XYZ 89.664 121.83 null]
+>> endobj
+3948 0 obj <<
+/D [3901 0 R /XYZ 89.664 121.83 null]
+>> endobj
+3949 0 obj <<
+/D [3901 0 R /XYZ 71.731 106.722 null]
+>> endobj
+3900 0 obj <<
+/Font << /F33 1322 0 R /F27 1224 0 R /F23 1217 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+3953 0 obj <<
+/Length 2300      
+/Filter /FlateDecode
+>>
+stream
+xڥ˒۸���%�aH�Ͻ���fSv%��d��s�(Hd�"U$����F�$$���S:h4��>��E�D����E��/v����b�,���y�������e�X<m�L��"��_<m��=�U�\���"F���zG�w��������Oz��i ��e���SX��Yƃi�C�p��S&�p`�'#ۄ�c Ӂ`�����p�ӓ��H�-W�]�]���>-3��v)o�|O韐�s�E̢,B����=3	������'��Sa��\V��M��9 �Z���U��"O�]�Դ�>��KQ��ta��K�{�Aˎ���-����̩F+��z>�$1Z���m��r��ey��XYqWg���}/�q�m�����x<Q�:Z��x���8�
+F��.!g�|F�9�n4AZXo�\�
-�J^�k�n��Es�KX6"�V���"�85G䲦��S4��s��V8��i��띡f^wċ3[:��H��+'7�kd����%eƗz�K�/M�z՗.iO��K���д~&(�u c����OcU�R44@��e��{Tk�sz�b��G�9=Z��hV�פ^���)=:�I��&��`I"�.FT5�^�͡R�5�	{�YV�����mݡ��nކy��P����2�{�at�����뺿�=�{�8����Ce�xf�=�d�*yW����g<��6�vc�@�fb�
+L�Nb.�π�@X�2Gb�L�ih�%�c	��VI��w7q��D�)�-
���|
�u`��6�%+�YP&�������K���]�}��HkM����%�!	���Ne+a��4#պw�0A.p��?��E��͇N����8�gW�GUYv;�y/݅�7@���u���˽�CTq&X]Y�.�������7ٍ�
����́�p>$�����ǃ);Ҹ��ʏոq�6����[���2
@IϦ^ڌw)��$�'�Ո5�3+�*c~�q#�<�m 6�:�K�!�Fչj0�Rx12��D�S�[����S�	!�O~�i��{�����"Vs��_ەY|E��:ZJ�ϱڂڏT�Vy�W��VF����O������\��c����ՔA)��6z)�J�cV��N�g�A�-�����L6����eYO0�#����À1n���ذd���=9Y(���
�îr���
+����z��B΄~L�=�L��ޟr�f��?�U��3U�E0EK2W�\�y�f� <Q�8�����a����#b�諓.�i��$�v:	�UxJA@��;Z�n�zH\�VF粣E���A�P5���{�����.��qI��ll�p�I922�
�\���}!e��Ŋ�6w�魇j	F��Д2�=�t �=O��l���Nv�nZS)�x<Ӣ�-u�-�\���hz���w�g����v���+Mßz�X���p�W*��k�q�V�])qk�lA���f���ٔ��k�)�~7�)e�9z��wL�z�=.iO��K��{uP�F�y���#���c���HQD��2�[����kE8γ�+�q��~v�]����p�sBh�ncѽ�줽����?ttN��dG��X�][Z���B(߰�����81�l�\İC�0F0����Ǡ��^�1��|[tP��b��f
���wA{���o��
+e=iv"`C�k��;�H`Vm����[�WDi�_�B ��/LʜF-���Y�^�z]���4��lJݦ5�����A���IvQ�!�l69a�n@�J~�HI��-����y�E(�����;..����R�%Щ�~ޔ�R������b�]@h�9��uVm�u:yZ�C�UT#<�L=����  
+
+��R�|�z��;�:4{<�7��NM��� �]kXe��^CJ�ڑ�LNyeԑbo�5��\SYW��X7�-��A����0�[���&�V�clOl�^�/!�&o(!V�-�@�6w_�u�X`�a��O�8+�ʋ.B]},w�nLD���v����ŹM;�.
+2�K;o��)��Qc��Zy(V�@���[��ׁ(���U����w��/��
�h�F�_,�q	��]A#���)l_~W���{ӟ��T�8 �E���hh�¢mJ	��iB�-!c:c��n���*�����w�5J�m_�*�m�ȣ�u��*��_^K������ːI�?�߿��f���k�3���>�t���H��N�GBC���?>�6X���L@_��N������*G<e>�A����g�kJ�i�`endstream
+endobj
+3952 0 obj <<
+/Type /Page
+/Contents 3953 0 R
+/Resources 3951 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 3899 0 R
+/Annots [ 3982 0 R ]
+>> endobj
+3982 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [423.666 344.535 465.806 353.446]
+/Subtype /Link
+/A << /S /GoTo /D (lifecycle-image) >>
+>> endobj
+3954 0 obj <<
+/D [3952 0 R /XYZ 71.731 729.265 null]
+>> endobj
+1756 0 obj <<
+/D [3952 0 R /XYZ 71.731 741.22 null]
+>> endobj
+3955 0 obj <<
+/D [3952 0 R /XYZ 89.664 708.344 null]
+>> endobj
+3956 0 obj <<
+/D [3952 0 R /XYZ 89.664 708.344 null]
+>> endobj
+3957 0 obj <<
+/D [3952 0 R /XYZ 71.731 680.284 null]
+>> endobj
+3958 0 obj <<
+/D [3952 0 R /XYZ 89.664 664.508 null]
+>> endobj
+3959 0 obj <<
+/D [3952 0 R /XYZ 89.664 664.508 null]
+>> endobj
+3960 0 obj <<
+/D [3952 0 R /XYZ 71.731 662.351 null]
+>> endobj
+3961 0 obj <<
+/D [3952 0 R /XYZ 89.664 646.575 null]
+>> endobj
+3962 0 obj <<
+/D [3952 0 R /XYZ 89.664 646.575 null]
+>> endobj
+3963 0 obj <<
+/D [3952 0 R /XYZ 71.731 644.419 null]
+>> endobj
+3964 0 obj <<
+/D [3952 0 R /XYZ 89.664 628.643 null]
+>> endobj
+3965 0 obj <<
+/D [3952 0 R /XYZ 89.664 628.643 null]
+>> endobj
+3966 0 obj <<
+/D [3952 0 R /XYZ 206.435 615.691 null]
+>> endobj
+3967 0 obj <<
+/D [3952 0 R /XYZ 335.639 615.691 null]
+>> endobj
+3968 0 obj <<
+/D [3952 0 R /XYZ 71.731 613.534 null]
+>> endobj
+3969 0 obj <<
+/D [3952 0 R /XYZ 71.731 539.866 null]
+>> endobj
+3970 0 obj <<
+/D [3952 0 R /XYZ 89.664 524.09 null]
+>> endobj
+3971 0 obj <<
+/D [3952 0 R /XYZ 89.664 524.09 null]
+>> endobj
+3972 0 obj <<
+/D [3952 0 R /XYZ 71.731 496.031 null]
+>> endobj
+3973 0 obj <<
+/D [3952 0 R /XYZ 89.664 480.255 null]
+>> endobj
+3974 0 obj <<
+/D [3952 0 R /XYZ 89.664 480.255 null]
+>> endobj
+3975 0 obj <<
+/D [3952 0 R /XYZ 71.731 465.146 null]
+>> endobj
+3976 0 obj <<
+/D [3952 0 R /XYZ 89.664 449.371 null]
+>> endobj
+3977 0 obj <<
+/D [3952 0 R /XYZ 89.664 449.371 null]
+>> endobj
+3978 0 obj <<
+/D [3952 0 R /XYZ 71.731 447.214 null]
+>> endobj
+3979 0 obj <<
+/D [3952 0 R /XYZ 89.664 431.438 null]
+>> endobj
+3980 0 obj <<
+/D [3952 0 R /XYZ 89.664 431.438 null]
+>> endobj
+1755 0 obj <<
+/D [3952 0 R /XYZ 71.731 411.348 null]
+>> endobj
+674 0 obj <<
+/D [3952 0 R /XYZ 259.687 368.251 null]
+>> endobj
+3981 0 obj <<
+/D [3952 0 R /XYZ 71.731 355.813 null]
+>> endobj
+3983 0 obj <<
+/D [3952 0 R /XYZ 459.262 333.74 null]
+>> endobj
+3984 0 obj <<
+/D [3952 0 R /XYZ 220.262 320.789 null]
+>> endobj
+1971 0 obj <<
+/D [3952 0 R /XYZ 71.731 318.632 null]
+>> endobj
+3951 0 obj <<
+/Font << /F33 1322 0 R /F27 1224 0 R /F23 1217 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+3987 0 obj <<
+/Length 1070      
+/Filter /FlateDecode
+>>
+stream
+x�}VKo�6��W{��)Q��uۦH�K��h{�%��WHy��w�Cڊ�
bD���ă�x�q�����~'�����b�L��/���)���i�A�,N� �˥��_�M9�J��BF�d��ôÉ�/��mו����~�_/�qƊ<���y%n�|lQ��$�����Y�y*k���ڣ�.U�㑞�Ǻ桃����v�� �SD�����J��r��URHV�����d�W�{�4�~_��P�ť6
"x���<���6�قdy�U�z-��Z�(l�8 >�l��@����-�Q��II�
d.N����E�}Րf*OΦ5��!��\;@�EY9�k��#/�V�@���H5� �2�s@�Pk��4�yC�j�{5x�C���=��5t�,f��c�\�Br�-Pls1��]3���BF�BFbc�0�ym熨v�'F�ّ�<}���r�1ήc.*{#m�vK�vn'�{9+}Y�2dթeW�0/0��J�,��i�
RMi���a�c�#5Cթjv���u�"ã��9_�1��s�����p����Asq�[h�鈶CGf�cWhP��-Ѓ;H&.�<�Z�J������#��7��؛���zB��g�{E����ِ�?w����}�6<��@��O�����znF����y��+�h5���<�`���P���
+��|ڋ�`N ��~�ql���D�e8�mEr�]o#�i�-n�ݑ��5˳��\}w�}��N�\��[B�nO�����Gze����p���Æ�v堈n”��������_�5ih�6ļ6��L_����4�.&��F7	��OP��0ल�'��R�C^NP)=��w�_+�Pn���+0�t��^1
:��N���&@
;�W�+��
�ieї"�{���5Q���C���jDf�����(m67GJݿ��4�}�$aY^����m�#zc.�l��0?w%ETRe>`D̢����|�C��~U-q���mx���|���Q����\��a��HIr����Ͻ���מ9��w���{_q�7��D��endstream
+endobj
+3986 0 obj <<
+/Type /Page
+/Contents 3987 0 R
+/Resources 3985 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 3899 0 R
+/Annots [ 3995 0 R ]
+>> endobj
+3950 0 obj <<
+/Type /XObject
+/Subtype /Image
+/Width 496
+/Height 579
+/BitsPerComponent 8
+/ColorSpace /DeviceRGB
+/Length 49257     
+/Filter /FlateDecode
+>>
+stream
+x��wX���i�b�ް+E,(�**��5�5b#�{0�+b��1Ơ��b!��-��n
�b���y�g߽�۹�{>�g�������w��Μ��`�a�a��?�����_�
8+�aX��a�s�a���a�a=g�a=g�aX��a�s�a���a���ar"�s�4im)RD�H4>Q`���u����`X�Fc������RRR�Wϋ/.ٓ��Υð�3�ZR�|��y��	����ؤI��u�^�xqΜ9��-Z�2d6F��m�6q$�����tԨQ#!!A��}�����6l‹O���˕+~)����#�����}��իth������K�,4h6~��G�� ����H	~��r�2��Y���jժ�_^��g�b�����C�۷o����f͚Af�����kq$�s�>~�86�;������ɓ��/�+��q�ܹs�@<�Mg�<yn߾���leeu��]l�)SFϫW�h�ƍժU��eX���s�Ν;wŊ�]�`A��������W�Re�޽ӦM�޽;ԘT]�����IR�P!���5N�%�e�\&lq
+V��!�ϳu��F�!�H|�|��|�s���<%%�����ٙ���ׯ�Q����ׯ_F��
�1e�I$0�O�8A�	�ҥK�~��!6N�:Eָ���*���!t������x�={��[�n�͛�˗a=g�M�Add$��ݻw���|3	��8������ϟ[XX�>}Z	��#|͚5���T�\���\�?GHzq(�s�S�n]�:�����hD�*����z�0:!=l���תU�3�a=g�����6mZ�^=WWWy°�3�0���0�9�0�9�0�z�0ð�3�^i׮m���ӆ�.�t��QH$ð�3�Z�
�L��.d]5jvk������7oި����h�1*d=bM�6
����_�^�$N3D�
�ܹCg)�HJ�"�;�q��U�Tٸq�����ׯ�+��^ða�����$'^�rE���q��ߚ*N�իW�ʕ�1c���z~��񀀀ɓ'sv19B�a�����HKK�8Q�96P�YQ�,��N���Ç%n!ȇ�M��Q6ɉ��^Tnڄ[S�I#czDFF�/Ru��C��7����W���9y29x�`�v��n�*q�����
+��<+�j��Y���1K::�zA��Ar���J���oM'��I����
+*?�k�����M.�=z4gc��z8|��~���bŊ�:Q�+k�<+*w�%������ѣ��k�^ec������$��1].l�3F���CX�
6�*Ο?_։�\YS�YQܩS�֭[+��k׮A~�:hܸ����3xA��Ar�����*&:����{��aL�D�s�a�0��8g�1��s�a�0��8g�1��s�a�0��8g��ь3����s�Q�Z#��Y�C���_�1a��s�Љ�A%��%�h��S�x��x��iTTT```ٲekժ�?F}<<<����q��Q����F(񠘡�ա�N	���Q�M�"پ}�8�.xzz"���p%S>%.��	-�:�޵ld/��/^��lll]�V���H����m���\����%3�:�)Ǐ��$~����.F����Z���Z:u��k��]��cgg׽{�
6�>}�ѣG��y��9,�C�M�<bN�ާOr�Ę!��e=(f(pu(���(I��B<�>e}-J�UK���w-��s��o�>2�.^�(�%g��\��;qѢE0]��M�6����73D�7B�ʺ:��'N�����/�D?�
+!�\�ǣ\_���j��Q��e��z�[i�_�~��Պt��L�	�ꨴ�䈈�rf�ro�r]�
�!C�4h�@�?"�����AȰ�0!Y�����8u��k�4Ƚ(�1�����l�
+빮��ڵ�����Ғ*6è۱�r𶅘�E������h��`ܸq��6m�p�cX����ͲTK����Ν;h��D��#�atEzzz���-,,��@Y����k׮x��^����0:�mA#N]b4��Y�f!��Տar��Yh���'���|͚5�sZ#�aFW���Ж:u��m۶!�4h�Տa�s�s&'"w�{�ܹ'M�$�]�^=???��������عdɒ�u�b���wTT����������?�����Y�����ig�<yF�A�Ç�_�x6o�,�iԨ��ܹs��Ҕܲrlj�V�����1%=wvv���JIIv._��k׮�k�C�a{ٲe!!!����+W*�!C��F�C�=*]����Y�f��
U�A2z��=c�oYݣ�9�9����y��	;��ܞ<y"9;!��_l���+�AE=�t�RժU���F�JHH��ѣG�x��y�*U�G�M�=�߫W/��DY�������&M������q��E�'���L��sXݵj��/�,Z��*��L6q?�����v�xzz��ڒ�:z���I�&EFF�:uJn�
��HR"Im���in�����������gϞ����
I�z�]zNn��<
+�
תU�B�
+Y[[.\�m۶¡�7"=v�`%�ˍS�uXQ���ի�ܹS��D�����_�b[Ř---���W�^��~�����X��;w��+V(��Qy��T��Qo;t� �LOO��
�sH�`�l׮"ٺu�8�\��t�`���+C�)�������޽{��:`��E��7M6A�!���ə`IW'm/�
+�����...�^�x1�"=ž,c���3fl�Qb=g��B?s�6`	�4-%%������Y�������^�t����s�δ̄�T��L��ׯ_v�D�~�?�9s���w�����+VL���H�>�4�v(m�z���і�;�,N�:�B������oLL�8yJ���_�}����ظ{�.Y����k׆��ol�3�lרQ���Q�ŋ�� ���Q,(^dd��?6::�~��4��o߾4��N��!��+�AE=ߴiS�n�d�+�oƷ�]0g���X�
6D
+�ϟ�!r�(�o$�#�	��0f=����]�&>�=ؖ���7ݹs��B<� �2N�[ �+W���~��G�V=fI"Y��1I=�~B{���z������cCV���Iۛ�����v��ϟ�e^�Bl��jŌa=gr�S�5��\���N�p���~�v�$����(�߲p�BE�-?��3�ņl��8%oE7�j�
+;v���7o6𫨣FQ�+V�P�3���a=g�_��U����el���J�ҥK���bܳg��=t���'N�Z���{h�…�d�
��r�TQϩ{�b��?�P�D��C�w����fY�|9�9�z��\=�u�VϞ=!�VVV��ի�Ћ"��>}�ȎW
+
+�1�*ԦM�xEX�4^���Ʃ���]��W��#�V�^���s&G�9���s�������zΰ���3�9�z�z��S�5���a=gX��s���a=gX�Y�����^ZO�z��9c`hjL�"EX�
��4�i��\��sF����/^�����ŋ���sr��z�j�~�9�[���P��'Of=7��߹s�`������&�������ժU�_~Q�����goe���X��r��in�…�:$g=׭��7�ݦM��J�����:u��>H�'`=g=gr���(�֭[?z��\z�k�.;;;�			Z��˗/�/.�#��C��V�ڭ[7a��ܹs�֮];  ���^�z׮];w�|��YD��G��������Y��'�!!!���ǎ�Cݻwwww_�reF�v���Ç����P�$1��nILL̗/��_�~�+r�s��9d�H�"�䈈m
+��[�T�Ҹq���dY=oҤ�����j.S��\=�Q�-����.>Z�T�;w�`�y��Ϟ=C�-[������-����3��.��h8�e!��:�t������3�f߾}666(e<z�o�����9tlѢE�s�e���MI	�
�m۶�x�����n�=7..�]�v�Y�}.��P���d�������������`�^�ZU�$����hY;;;���aÆӧO���0*���+W`�O�<��͍��Ӓ���r�i�&m�66�$~߽{���-[��sjd)��aBgd��.QW!���@�\���G�>Gs�{``?x���7k�LL�� >�$�YB��B~�X����ŋ!C���NT�V���H�
��{�n(�$���D�������4l�2�832ׂwuu�+����CCC��:u��x�q�\=OHH�Q__�Ν;=z�z��
+"@��]�v��9"&��⣔��;Jlx����7O�>����}{)��@����oDD$Q�.P�����������ϟ׾��Z0������&����H~в�3gΐ��
 �Hصk� �:t�&��ӯ_?�/�����.��^�B�*Uھ}�q�9��\�z�ڌ����y�fR?���m��IONNVż���Շ3x��y��06��-��F�����su�w�r�J��
 *�\��j�*GH����"���B+�ҥK\�����fmmmii���g�
�B߳�ի��n�Cϳ�vʔ)��
 ���Ɔ��߿o�EֱcGY%���z���g�`v j�ݻw9+�P�5�-x�Νƍ�������t�i��~h���q��tB
@@ -14177,1741 +14605,1978 @@ m
 �Z��ͩb�7'�������e˖
<�y���I�������������o�ᐁA�`�5������Ŋcƌ�С�����C�>}��'N�P؟����˫T������������;u��[�j��Jx��͛���?�������{s�(%�̴i�&(((::�ԩS���`�С�螌����			 F}}�gϞ{sggg_�vm�޽����Ǐ���oK�T�O����²X�x1
 ���ƺ��*�����L﵌ϕ���������5�����t߾}111,�������۹sg�������y!^��֭����}Μ9�6mB:/_�d��AX���A���99d|�*>���211�r~�ҥ������Y<�x���ݻW�^E�����w�޼y�ʕ+�!�iCCCG�5h� �� jww��
V�ZUbcIA��;88xyy�1b���[�no?}���q 55�����G����\>_�zu�2e��:y5����F�P�������r}�ڵP�A����S_dR�ABB���18�E���Q���9�Ű�09uf~$+++;;����7i����������oȐ!cƌA����K�.�믿�Z��>|�…��4������CJJ���
)���y�����;v���|�<((�v���������	7��Č��A3������N�x�Ố�+(����gB�P�������endstream
 endobj
-3913 0 obj <<
+3995 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [477.025 103.778 535.492 112.689]
+/Rect [460.349 142.632 523.061 151.543]
 /Subtype /Link
-/A << /S /GoTo /D (groups) >>
+/A << /S /GoTo /D (savedsearches) >>
 >> endobj
-3907 0 obj <<
-/D [3905 0 R /XYZ 71.731 729.265 null]
+3988 0 obj <<
+/D [3986 0 R /XYZ 71.731 729.265 null]
 >> endobj
-3908 0 obj <<
-/D [3905 0 R /XYZ 71.731 696.359 null]
+3989 0 obj <<
+/D [3986 0 R /XYZ 71.731 741.22 null]
 >> endobj
-670 0 obj <<
-/D [3905 0 R /XYZ 263.164 254.019 null]
+3990 0 obj <<
+/D [3986 0 R /XYZ 71.731 696.359 null]
 >> endobj
-3909 0 obj <<
-/D [3905 0 R /XYZ 71.731 241.581 null]
+678 0 obj <<
+/D [3986 0 R /XYZ 263.164 254.019 null]
 >> endobj
-3910 0 obj <<
-/D [3905 0 R /XYZ 245.796 219.509 null]
+3991 0 obj <<
+/D [3986 0 R /XYZ 71.731 241.581 null]
 >> endobj
-3911 0 obj <<
-/D [3905 0 R /XYZ 71.731 212.371 null]
+3992 0 obj <<
+/D [3986 0 R /XYZ 245.796 219.509 null]
 >> endobj
-3912 0 obj <<
-/D [3905 0 R /XYZ 71.731 168.535 null]
+3993 0 obj <<
+/D [3986 0 R /XYZ 71.731 212.371 null]
 >> endobj
-3904 0 obj <<
-/Font << /F33 1306 0 R /F32 1215 0 R /F23 1201 0 R /F27 1208 0 R >>
-/XObject << /Im1 3871 0 R >>
+3994 0 obj <<
+/D [3986 0 R /XYZ 71.731 168.535 null]
+>> endobj
+1757 0 obj <<
+/D [3986 0 R /XYZ 71.731 131.738 null]
+>> endobj
+3985 0 obj <<
+/Font << /F33 1322 0 R /F32 1231 0 R /F23 1217 0 R /F27 1224 0 R >>
+/XObject << /Im1 3950 0 R >>
 /ProcSet [ /PDF /Text /ImageC ]
 >> endobj
-3916 0 obj <<
-/Length 2119      
+3998 0 obj <<
+/Length 2071      
 /Filter /FlateDecode
 >>
 stream
-xڥY_��6�O�fTK���Oݝ^�����n�{�����Ācee{�s��H������0�X�(���")E�B�����>*j��v�w���#'��Y�<6��9�f�H��l���Q$��r���X'j�����s���N%a���VՁ������n���o�N`�D��^���\)�V�R޶p-�8v:5GM��cf�n����P�1�=f_2	x-��g����/f*	�מ�[T�)�8XӞ�[$IP!/�ޱȓ>m��������ٶO$2�����-�����L�`��
gwQ*�U�,MD"$��Z�)uVQ���j^d���B!��Kq8��M�E�j�s�|i�}�v��6��*���v�tP��vF�H	���+�T�����9~lG����d��a�꺱ˆ���_k��}���D��im��8YO����[,�@��_y��'�M]ے�� W�zYMcyqt���s�Y�����_�4��~]f[c��ܙӶ���0���
-p�"{G%eP�s	Q�C�
9�5�F�.QA��0f*^
�5AB��:O��N
]��;ׁ�K��!�Ƒ(I ~$`�G*]��n*S�����aE�X`v�ÝSϻ���E��U"�ṵS�"�2��+�b)�����!���+� *�$�I�*�yֻ�Y�_�Hb��^�׬l5
-��R(�dFL#4������9�v���fU�yr��;�+�-���:�Ή���i�oy�</�/��`�	l�*��ft�۝?�[���lsL.�%���rD�c�#vV�����ز���S�>�������s?y�,�e�KVs�]���Fg.E�9v�!�v+2�t��8)r.K�Z�4}1Ox|J3V���9�S*�ި&����p�r%|��k)�i|!��E���ä�G��{�{�Vw�(5���E�z��Pc��P��:j#�S�
�?��p�}����XԦ�Ŏ�>�M`�J@U�"f�g0��`6!�U���'0J�}!!`d�r5P;NƈQ�����(|<���X}�rg��v�.'ue�� ���;,e�5|c������i1��ʴ\�}n�uS4-F��N�E��}6'�'�����#}tu�Jk���,T��3zC�dEE��<m�mW��ן��G��u�@��G?鳱P|x�qI�GW��U1|�W�녑ߛq���x\���m+�����$��0#��s	�8�9�c<�8��s fP+ 砍���u��H��TU\L�g=����6+�9�x�9�o��0v;QSRM�.:�\JF����7�����BLT����%s>�k:��wa��
�u#�D�x�!����ʖ�[�wwl�jZ�Ɋا&v�GFIE�R�+��r��Nn/����w4CUыjĸC$k���™�xM�< H��h�7P��=���	�7���s���u���%�ٌ<���o[�*
-�6�������B��M�؁�2���ʇ�A�pw:�*���t����� &�X�"�׃@�8�}ԇ�-1�}�ka}�w(�j�vW�L���*+}­��m�gU�����l���Xg�~P�>Kw�&-�&KI����d��i^��Sf����#g=B����3�������;�6pSuՖ�P�7(
�Rr!8�mn4k
-A�q����N�^�����c���
-:��^��Vk���OC~<�D%�z�μic��tW��>]_c���
-ٞh���0c���Ƿ���_2v`��6���2�C��1~�k�E#�߆h��B{�(�zD������ܛZM��lM����K
4|h���!E��3	A��ũ(3[v��!g[s��Q�>��I1z5��U*�F���֤���JN�n��g�5�(�|�vs�lE�P�?��������d�{C�L���xpq�u�C�H���?^�����.��D������w��B��]���/��מsPv��)P>��Sw.*� 3B�^�'�kO0�Ls���U�|4
-�����ыD�Ջ>/�iɜ.���|��d�|��qwS�uX��v�_���G�/��F짮�k����o���}�4B�A��깟5�%�HՈ�endstream
+xڭYY��6~�_ahD�Q�e���t���a:�q���>�m�E���t~}�XE����n
�xYU�"->��E"E�'؊`/��q����Lq�$wͻݛo��Vl��bwXDa(��z������b��ۻ?��Vի� ��X�������|��,�2]�g�ӛ�w=�8L�v>+�����0Z�TV9?�H�b��$�֥J+ꀴ(��
+;%�z�f�b�Ǐ��T>�i�e�^Ze*��ϝ�{%����^I�R��z��2��@��R��!a�;��0����Nf�z��nO��~���.��([��Q<�=]W�&tڮ�P�둾)}�b�u�	Z��w*x�E7M�/�Q���Qi��\'S׼�
+�v�6���z��e[Re��u�2��>�*m]1������WfW��8����^S�/%@D�U3��TC�S��~Y��3KQ@s�0�+�
��5�C��6��M���^U��5�;���ҷd�{�qn�2����2���܊8�2�эYf��&V�7A�Nj8݅I,�Mİ���x)�D�H�x�03
�!Di�;��5�#W�P�Uh��F�|�#�D�[_ҲS�DL9kk&�1&�@���*�]���^E�g�i�[�����J��H/����%Q��-��-���eZ�2�CI�+kFsa�ͬ��ٴ�*+����gI�h;8�-M��A6-��mh�5�(c玗·������h������f��6�S��ɦ�\k���D�����k�R�
��Kb�+8���D�������P�H�F��	Ka|,�	3��`���;0�%殑o�Xo�+�?���+��̚z���=#�x֢����@�S�E�;���
4O��/�6e�2j#�s�9�� 4\���(,�fC�Hf��f��>��@�fL�fSf/c6b>����ו�l��u��@�(#F�b�vM߯��x�:l�2�^L
��I�j7	A2F�wX���F"J��͖o?��t�;.�>u��-���l
'7b����Ϫ-�ʄ�b���ՌTJ���FŠ�jŠ�!�ڴ�H���kT��*�����G����o:�P�<�Q]t
5��G��4��T5�aW���]�f�1�[5Nꪴ"Pq�[{uWY�>C�!I<̈́<�8k	��@�i��<�8���L�X<B�AM�vRՈ�TV\-W�=[��]Z6K���KH�8�a�v����8���p29��<����L�؈��U,#A�~N�
dm?f
+^�uy�h݈%
�,s�[���ʎ����ڦ�صB������PRU����0�k��NjӬ���͘���ƋjD�!�
w��f��+�oRs;Zh��p_��G��C]C9x)TղL�y�Luv#��s���ژ���M�ne/k���2.������`�+��Q��颫��g��N��Ā;� �Em�@p�����kb��v���%߱Ļ)�]k8�0G�/����j�wU�V-_�?�C}ٞ�˱^�S��<ks�&)�(kI����d��i�t�sZ?.i�%G�f��a��%:h��xq;E⎹9f�����2w�~�А)�o[Sis�XR2��Q�E�Wwң����؏T+�OwPת6��k���������ӍШD�w4'󪃁da�?4W돮��WNc���Q!�#�2�z,�������s�:j�J}ec/�σ�����L{�q}
�r�h
�B{�(
�B�g#굌/N���t�N��:��h������TS�Chw%a ��8eZ���֥�n�K"J4�2|3)F�F�T(�6���f�:���hf�}�p������f}��([�����y}�%�op��Qq�J<�9�:�+E�!H���������.T�L������v��B̻���9�X��.9���F>Z_����
+gȌ���7�Ng�f�jf�Wۺ��nظ~π4Վ�$��^�y9��H������`�D&�]����Ѹ_�?��ඪ�����17.���5���'��tu7�s$Np��$Z��wJ��Vq���ؠ�?�m�F&�^����86��&��:x�lj)����SzQendstream
 endobj
-3915 0 obj <<
+3997 0 obj <<
 /Type /Page
-/Contents 3916 0 R
-/Resources 3914 0 R
+/Contents 3998 0 R
+/Resources 3996 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 3870 0 R
+/Parent 3899 0 R
 >> endobj
-3917 0 obj <<
-/D [3915 0 R /XYZ 71.731 729.265 null]
+3999 0 obj <<
+/D [3997 0 R /XYZ 71.731 729.265 null]
 >> endobj
-1746 0 obj <<
-/D [3915 0 R /XYZ 71.731 741.22 null]
+682 0 obj <<
+/D [3997 0 R /XYZ 217.917 707.841 null]
 >> endobj
-1743 0 obj <<
-/D [3915 0 R /XYZ 71.731 706.187 null]
+4000 0 obj <<
+/D [3997 0 R /XYZ 71.731 700.488 null]
 >> endobj
-674 0 obj <<
-/D [3915 0 R /XYZ 217.917 668.971 null]
->> endobj
-3918 0 obj <<
-/D [3915 0 R /XYZ 71.731 661.619 null]
->> endobj
-3919 0 obj <<
-/D [3915 0 R /XYZ 71.731 641.709 null]
+4001 0 obj <<
+/D [3997 0 R /XYZ 71.731 651.751 null]
 >> endobj
-3920 0 obj <<
-/D [3915 0 R /XYZ 71.731 612.882 null]
+4002 0 obj <<
+/D [3997 0 R /XYZ 427.586 638.899 null]
 >> endobj
-3921 0 obj <<
-/D [3915 0 R /XYZ 427.586 600.03 null]
+4003 0 obj <<
+/D [3997 0 R /XYZ 113.318 625.948 null]
 >> endobj
-3922 0 obj <<
-/D [3915 0 R /XYZ 113.318 587.078 null]
+4004 0 obj <<
+/D [3997 0 R /XYZ 205.079 625.948 null]
 >> endobj
-3923 0 obj <<
-/D [3915 0 R /XYZ 205.079 587.078 null]
+4005 0 obj <<
+/D [3997 0 R /XYZ 71.731 605.858 null]
 >> endobj
-3924 0 obj <<
-/D [3915 0 R /XYZ 71.731 566.989 null]
+4006 0 obj <<
+/D [3997 0 R /XYZ 71.731 594.964 null]
 >> endobj
-3925 0 obj <<
-/D [3915 0 R /XYZ 71.731 556.095 null]
+4007 0 obj <<
+/D [3997 0 R /XYZ 71.731 589.983 null]
 >> endobj
-3926 0 obj <<
-/D [3915 0 R /XYZ 71.731 551.113 null]
+4008 0 obj <<
+/D [3997 0 R /XYZ 81.694 567.168 null]
 >> endobj
-3927 0 obj <<
-/D [3915 0 R /XYZ 81.694 528.299 null]
+4009 0 obj <<
+/D [3997 0 R /XYZ 81.694 567.168 null]
 >> endobj
-3928 0 obj <<
-/D [3915 0 R /XYZ 81.694 528.299 null]
+4010 0 obj <<
+/D [3997 0 R /XYZ 71.731 565.012 null]
 >> endobj
-3929 0 obj <<
-/D [3915 0 R /XYZ 71.731 526.142 null]
+4011 0 obj <<
+/D [3997 0 R /XYZ 81.694 549.236 null]
 >> endobj
-3930 0 obj <<
-/D [3915 0 R /XYZ 81.694 510.366 null]
+4012 0 obj <<
+/D [3997 0 R /XYZ 81.694 549.236 null]
 >> endobj
-3931 0 obj <<
-/D [3915 0 R /XYZ 81.694 510.366 null]
+4013 0 obj <<
+/D [3997 0 R /XYZ 71.731 547.079 null]
 >> endobj
-3932 0 obj <<
-/D [3915 0 R /XYZ 71.731 508.209 null]
+4014 0 obj <<
+/D [3997 0 R /XYZ 81.694 531.303 null]
 >> endobj
-3933 0 obj <<
-/D [3915 0 R /XYZ 81.694 492.433 null]
+4015 0 obj <<
+/D [3997 0 R /XYZ 81.694 531.303 null]
 >> endobj
-3934 0 obj <<
-/D [3915 0 R /XYZ 81.694 492.433 null]
+1758 0 obj <<
+/D [3997 0 R /XYZ 71.731 529.146 null]
 >> endobj
-1744 0 obj <<
-/D [3915 0 R /XYZ 71.731 490.277 null]
+686 0 obj <<
+/D [3997 0 R /XYZ 236.902 496.832 null]
 >> endobj
-678 0 obj <<
-/D [3915 0 R /XYZ 236.902 457.963 null]
+4016 0 obj <<
+/D [3997 0 R /XYZ 71.731 490.705 null]
 >> endobj
-3935 0 obj <<
-/D [3915 0 R /XYZ 71.731 451.836 null]
+1759 0 obj <<
+/D [3997 0 R /XYZ 71.731 418.959 null]
 >> endobj
-1745 0 obj <<
-/D [3915 0 R /XYZ 71.731 380.09 null]
+690 0 obj <<
+/D [3997 0 R /XYZ 166.08 385.649 null]
 >> endobj
-682 0 obj <<
-/D [3915 0 R /XYZ 166.08 346.78 null]
+4017 0 obj <<
+/D [3997 0 R /XYZ 71.731 377.012 null]
 >> endobj
-3936 0 obj <<
-/D [3915 0 R /XYZ 71.731 338.142 null]
+4018 0 obj <<
+/D [3997 0 R /XYZ 344.894 366.72 null]
 >> endobj
-3937 0 obj <<
-/D [3915 0 R /XYZ 344.894 327.851 null]
+4019 0 obj <<
+/D [3997 0 R /XYZ 71.731 352.608 null]
 >> endobj
-3938 0 obj <<
-/D [3915 0 R /XYZ 71.731 313.739 null]
+4020 0 obj <<
+/D [3997 0 R /XYZ 155.277 330.157 null]
 >> endobj
-3939 0 obj <<
-/D [3915 0 R /XYZ 155.277 291.288 null]
+4021 0 obj <<
+/D [3997 0 R /XYZ 71.731 320.095 null]
 >> endobj
-3940 0 obj <<
-/D [3915 0 R /XYZ 71.731 281.225 null]
+4022 0 obj <<
+/D [3997 0 R /XYZ 154.779 295.587 null]
 >> endobj
-3941 0 obj <<
-/D [3915 0 R /XYZ 154.779 256.717 null]
+4023 0 obj <<
+/D [3997 0 R /XYZ 71.731 284.185 null]
 >> endobj
-3942 0 obj <<
-/D [3915 0 R /XYZ 71.731 245.315 null]
+4024 0 obj <<
+/D [3997 0 R /XYZ 426.159 261.016 null]
 >> endobj
-3943 0 obj <<
-/D [3915 0 R /XYZ 426.159 222.147 null]
+4025 0 obj <<
+/D [3997 0 R /XYZ 71.731 248.897 null]
 >> endobj
-3944 0 obj <<
-/D [3915 0 R /XYZ 71.731 210.027 null]
+4026 0 obj <<
+/D [3997 0 R /XYZ 103.272 200.543 null]
 >> endobj
-3945 0 obj <<
-/D [3915 0 R /XYZ 103.272 161.674 null]
+4027 0 obj <<
+/D [3997 0 R /XYZ 71.731 190.481 null]
 >> endobj
-3946 0 obj <<
-/D [3915 0 R /XYZ 71.731 151.612 null]
+4028 0 obj <<
+/D [3997 0 R /XYZ 425.163 165.973 null]
 >> endobj
-3947 0 obj <<
-/D [3915 0 R /XYZ 425.163 127.103 null]
+4029 0 obj <<
+/D [3997 0 R /XYZ 71.731 153.853 null]
 >> endobj
-3948 0 obj <<
-/D [3915 0 R /XYZ 71.731 114.984 null]
+1760 0 obj <<
+/D [3997 0 R /XYZ 71.731 124.264 null]
 >> endobj
-3914 0 obj <<
-/Font << /F33 1306 0 R /F27 1208 0 R /F23 1201 0 R >>
+3996 0 obj <<
+/Font << /F33 1322 0 R /F23 1217 0 R /F27 1224 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-3951 0 obj <<
-/Length 2929      
+4032 0 obj <<
+/Length 2946      
 /Filter /FlateDecode
 >>
 stream
-xڭk�����ᾘN���DFc;v���4��h������\�K�|A|gvv��s춰�sfv�3��b���]��"���n���z��8����{bm��g^�<z�:�.R?�F7��8��h���E��O‹����˓8��Y��d�%>}�E}����{Q�b�����q�h���4�Q�'�߶��Q�ZE��l�:�q��u����u+�Bմ|�
-7^w�0�S�W�NEv�a{�4Z�Z��IhW�����
-����
-����G��E�i� ���u���85�&~�~�l���7]��R�8���m�^
`�������M<�D�ixW������J��'�t��D�ޭZ�*��i�<Ѵ4�!ʒ��uۈ�n-n�0�s!39ƚ�V�4��]�W����J�ޓR��F��1����a�)�O���w�`�Yɋ�� �-��:�{K+�,{�ƒ4c
)�+�v�h6*!�iV�N�ܷ�y�h@ڭ���>p�Ϊ��fE�ك!�"�F����d��n��e�]ҥKN��u�;��A�o/�b`���;��V�������x�
�ޑ��4xm)H��ӕȽ�ƃ�l������{
�v�E�u�
-uwL�ߧ�D�%K߲ЭO{F��,K�$	4�E�'�X`��j�iI�J��.�ڝ��>�]$���a��$"�ةi4TFsY��ͮϤ���@��?��h(���E㞉��Ε��������ޠy'D�����[�������'!�c��ƛ�ɮ��;�X��
-�6{}=yIĪk�N�RAskJ�`��Rh���]�!��ZB@�A�*pZ�I��B
-�x�\1�+��^�i(�Cqa�J�������������=�iA�h�A���ZH�l�Sd�4�����D+����_hM_�pX'b1l���H�	40!EE��jd��v����O{%�@�n"��gAk�}+�9!��&�=uI� �"��t�RTZ+v���������B@I��$�����]U	#���A��9u�� �V�*��t����B����è�6���pd"ω]q��.�g�������6*�vα$���~��8q<�w���cr��41������3a�i������L���a�h�}Es�rƔ��R����-�5�	�uWݚ�1��f�j�,���E0�����.�7!;���d>Ɨ�#�����)���,q�� +��;�=	,2I>�+�t
�?մ=�x�FaF��gq�1�6L|��xQ#01%�� ��B�D���O�?���c�"�ad����>�)���,���s�u�'�
/emE��nja���cr��H����9J�s�o�ِ*8
Di]���DA����6;��?���Ҙ��V)�ɽ>���&��2p���0 ]�"G(K܂X�Z��Fܖj̺�x��Rt�t݂1���o-�!q��cp�i�����T�U5�OR���>MBţ�I���N� ��5��,�܆Y&�Lj�!�����$좶q�m'{��mU5�ࢆ�\��N�x���l�}J�ӵb���
2d�t�7B4%#�ՠ��X�%�������R���j������Z�����ƺ��N�Y�z�-[�U\Ί�}��� $U���녧������G9��譨�''������@/�c��y��o+�L�h
-��.�r��`�~�Xc�$ϐ鸔�#�Q���W}�H��Ϊq/c&��?v,gp�>I��8�w��׫(�̗^��n���c{N��`�����K,�7��N�{��?t�q"�7��E�aM�Z*�4Ǘ�G�xeQ��0��@O�w��r���jr�9
-QjK������|���
�UX�+�E�>�ֲ"sp�̭�50�Y�c�;�$���Y�]�W�˫��t]30�q���CQpL��	�ó�}O#*�خ��w�~y{�����C�-^�Rֹh8��a�
-���+0��J���΄@����7{K�>�1jY;��F�ֹ�tDV0�H�l�&i&���9�}4�(�.�U�a
zi��^��.��o�e�q0���VZ��|lO�gɼ�=��4�#<y�6	�GP����vr�Vu&@�\e<E���q��%�;�ZD%�
-,W�ddNH��p��R�V?�n�Ϙ�����$2�j�D��
���n�>����$�l���4U����{?�����^%0���,�I՟�<�֓87�$Ρ_,gN@MI�X�C=z'�H�R����OK6���L�U翔1��$�6�}����X�K)���)�ۢ�����=��j)*��A�����\�-�{8��יIR�tm�b�K�Ko��r�P2�+��;-%ࡿI���`���cL�-8�4Y�Μ�pt�������J�����|����O�]�����{ި�xz8!����?��ɢ���
-
ž~����=�K�o+l�k��_���[8���|
��P�oe%��f,s��.~��Y�&Ґ��Y�6*��5���_�D3��h���P���*��x�����nπ���8a�i�+�0]��EW�s)Z��%�4�t-5��M�[�.�_c�icV��)4��먁��p��`b=%���;न����F!��c�=^X��КN`���	#
-N��HG��;0rM�g#Sd���_�:A��؁�n�@
-l�/���
V:(i���g���(�n&�S�K�q8!�qY7
�xt&G�eV,!z�9�_��0��"q�m&ӿ��BW��En\�6�6u�
w^��rK�I�
-��Q^M�TYR�e���mrYX��k9��L9�S��z���;@xFF�����������#�`pn����&��7�-�iz�Vj0�̚�w��������)�B�s�����O\W����D�O�@��]E���P |�OF�#��I½�	>o=�� sL����endstream
+xڭZ[�۶~��МK3G�x�Dg<M��I:�u��2M �P��L�����.��DZێ=C\��^?@'\l�_�؅�.�O��6]�գ��3�?
+-�ڒ�{4��}�"�Y�m���q��qo��]�4Z��X>?����j��e��%�5����DY��?����{�0�wA��?)���ŋ0�4E���6� N#T�A�(�n�|ٖZ\JN=��,�B�`�]w��b�,��6�g\�M�p�JQ��gQS��[Z�F�" ��<��˃\�KYrVS??C�5�z��[���F.k�&jmyˇ�^���k�4����������R�%[A�(��4c����Ї謵V�g��uf�}X����N!���#oxm	/\^�F`����RϜ�B�:���Ш9���ri��}�N�����u�o��P�~��S;G�ۃ�#�G��8؆�9���ts��7�����4ʋk��
����������H��^�g��M%M  n�_�h߉���=ˑr����,a��붩�+��J-kac�G�qs�
+}w(�[O�$�-K�R(М񿽳%n�"�Z�b���7v3m�0*
)YqY�AY{:��}�%ۡ(�H�>=����j�_
+�1�>/��M�O�����`��P|�?�!x(������UO����딹
��ްy�a����ǩo��_��a/?��I��b?�M���Tc�e���c��nt��uG���;#AqJ�mmAI�n}]�lUz݊��U
+4rt��lM�6A�f\f���&K�P�d������`��^�G����Z�\�F��Q��Y�V1�S�S�5�s�J��Y�u�a]��iJ��B���k�$,/~�R�B�UTngBW_/�>�7��8����H��a
҂������
+Gl��R��fPVQ�m�S):�����¡m�df��nFC !���Y	{�70�`����1�)����VQ���A�� "*�{*�{�_E��Y��F�\ϊ�ԕ$��zY=<y�~���E����,w��ƒ���QЈWK��'��1����	 ̅84��Uh����Yr*�0"�]/���fՖ)�������5�	�u[*M���M�ݡL�� B@�̢`��A��:cҦ�1�I�^�$�Ia�3&�pU�_����Hd�3�C*A���W5MO���c#Q�� d̨-���ݛY��ZȚ�4�//3��w|�q� ?�?���Ahg]��)E���K��T�C�6=�=�CmB?�1��w8�9SÿᵂC��J���D?�r�p6�����&?
+�7;��a4�k(d������(F�<�;GxK��)h��c���ڐ�_^߼��ai�^A*.-K���Z����c��Q[{�$��&�o��I*}j80��k3��߬����"��VOY�SVBʚh �������[�v�q��l��Ɇ]�B�AI1)�;j�C%�xT4r�|�c:2���t�����<1�����h���]'3跏�ւ;����q;� ����3��=�a�	�i����4��-�S��O�9��)�B2��B���:� ʩmءD�ⸯ�H�:�tZn�1�������j��$nx ��c:�'�e[��>s��N�}E�䭹��PM=�ȡ�6��,w(۩�D)!|`��4����ӣ���ZVC��*��T�{�*�W�<f�3B�w�1�nP�`�'3Up
8UiM��N��S#�s��l[�0�;7�uĵ�����z�2s�D�e��Ӝ�a7��bmO�C>{y7s�(
v�;��O�@,�(������٢���lH
+��o��cN�(���ϗ�=����F�/�����=���-W��S����Ɵ�UV��ab���(ԙ��Ñ��ýX��ix1w�$�v�/?���o)0���n0��6Kw#�.�a��x�Í7�12*k��R�#�2B���L�0-���+�͏����'
+V*+���-��Hnb�����X\���*r�G[?���V������^3p�k�~���%��J����t/���g�M�jZQ�����.�4�Œퟑ���V��|7��}��Y��53�l�(t���;0�o6�}��L	��w��fW)���<|t�|C�u!0��J5ֹآI�I�%sNud=H`��NA�� VU5��]�]s\��u抡n�h���A��\.��nr4z/�����W�����}B̗s��
+��s>s��Z��n/S4���GgQ՚Gnt�\�aݻ'�n� pP������|˿55�)}
(Qy��$
+y��D�{�W��]��Xwo+�C����)��#��^�:��*�rd9/���婵չ!��<�yQ4>����S���9����$pg枡m<#a�G"�u�K#��=3��Iwo��5�y{ə��<���s��Q��io窲�<
+�.J ڇ�.N����M0�A�׆.&?7�8����•?���F7�9��4��
���~�0�n�A�u�ܧ/��qF��Du�����l����,^i�/=s:}m߃�@���4�=�d]�Uy[4�x ������]�����
+���9l���3<��ce��ۆi�5*��`������W�C7C�[�:��&p��=g�������x��Y���hr	��C��7�]�.y�ݱ'��h<�m���7�1�;��vZAv�K�y�K�,�����M�E�.r���'f)�w2 4���
+��_��cб�Z���;�����eC�K#O�=�LXra��Gm��`�U_���/G�ڽ�؝k"�74s��(�>QHz����l�p� �i>���=�!�F���w�/
��nO�O
y�a����nj�ݝ8��sq����[!�/#]	k���g&�~EA��K���>�P��ߦt$�?MI�}���&��m�П�L9�<�4?endstream
 endobj
-3950 0 obj <<
+4031 0 obj <<
 /Type /Page
-/Contents 3951 0 R
-/Resources 3949 0 R
+/Contents 4032 0 R
+/Resources 4030 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 3870 0 R
+/Parent 3899 0 R
 >> endobj
-3952 0 obj <<
-/D [3950 0 R /XYZ 71.731 729.265 null]
+4033 0 obj <<
+/D [4031 0 R /XYZ 71.731 729.265 null]
 >> endobj
-686 0 obj <<
-/D [3950 0 R /XYZ 201.526 667.895 null]
+694 0 obj <<
+/D [4031 0 R /XYZ 201.526 708.344 null]
 >> endobj
-3953 0 obj <<
-/D [3950 0 R /XYZ 71.731 659.443 null]
+4034 0 obj <<
+/D [4031 0 R /XYZ 71.731 699.891 null]
 >> endobj
-3954 0 obj <<
-/D [3950 0 R /XYZ 463.469 636.015 null]
+4035 0 obj <<
+/D [4031 0 R /XYZ 463.469 676.463 null]
 >> endobj
-3955 0 obj <<
-/D [3950 0 R /XYZ 71.731 621.903 null]
+4036 0 obj <<
+/D [4031 0 R /XYZ 71.731 662.351 null]
 >> endobj
-3956 0 obj <<
-/D [3950 0 R /XYZ 514.935 586.501 null]
+4037 0 obj <<
+/D [4031 0 R /XYZ 514.935 626.949 null]
 >> endobj
-3957 0 obj <<
-/D [3950 0 R /XYZ 71.731 574.381 null]
+4038 0 obj <<
+/D [4031 0 R /XYZ 71.731 614.829 null]
 >> endobj
-3958 0 obj <<
-/D [3950 0 R /XYZ 71.731 557.959 null]
+4039 0 obj <<
+/D [4031 0 R /XYZ 71.731 598.408 null]
 >> endobj
-1747 0 obj <<
-/D [3950 0 R /XYZ 71.731 518.192 null]
+1761 0 obj <<
+/D [4031 0 R /XYZ 71.731 558.64 null]
 >> endobj
-690 0 obj <<
-/D [3950 0 R /XYZ 197.015 480.976 null]
+698 0 obj <<
+/D [4031 0 R /XYZ 197.015 521.425 null]
 >> endobj
-3959 0 obj <<
-/D [3950 0 R /XYZ 71.731 473.057 null]
+4040 0 obj <<
+/D [4031 0 R /XYZ 71.731 513.506 null]
 >> endobj
-3960 0 obj <<
-/D [3950 0 R /XYZ 103.934 447.9 null]
+4041 0 obj <<
+/D [4031 0 R /XYZ 103.934 488.349 null]
 >> endobj
-3961 0 obj <<
-/D [3950 0 R /XYZ 105.351 434.949 null]
+4042 0 obj <<
+/D [4031 0 R /XYZ 105.351 475.397 null]
 >> endobj
-3962 0 obj <<
-/D [3950 0 R /XYZ 71.731 427.811 null]
+4043 0 obj <<
+/D [4031 0 R /XYZ 71.731 468.259 null]
 >> endobj
-3963 0 obj <<
-/D [3950 0 R /XYZ 518.615 417.016 null]
+4044 0 obj <<
+/D [4031 0 R /XYZ 518.615 457.465 null]
 >> endobj
-1748 0 obj <<
-/D [3950 0 R /XYZ 71.731 396.927 null]
+1762 0 obj <<
+/D [4031 0 R /XYZ 71.731 437.375 null]
 >> endobj
-694 0 obj <<
-/D [3950 0 R /XYZ 176.973 359.711 null]
+702 0 obj <<
+/D [4031 0 R /XYZ 305.743 400.159 null]
 >> endobj
-3964 0 obj <<
-/D [3950 0 R /XYZ 71.731 349.346 null]
+4045 0 obj <<
+/D [4031 0 R /XYZ 71.731 390.017 null]
 >> endobj
-3965 0 obj <<
-/D [3950 0 R /XYZ 71.731 332.448 null]
+1763 0 obj <<
+/D [4031 0 R /XYZ 71.731 346.994 null]
 >> endobj
-3966 0 obj <<
-/D [3950 0 R /XYZ 71.731 290.77 null]
+706 0 obj <<
+/D [4031 0 R /XYZ 176.973 309.778 null]
 >> endobj
-3967 0 obj <<
-/D [3950 0 R /XYZ 71.731 290.77 null]
+4046 0 obj <<
+/D [4031 0 R /XYZ 71.731 299.413 null]
 >> endobj
-3968 0 obj <<
-/D [3950 0 R /XYZ 71.731 174.557 null]
+4047 0 obj <<
+/D [4031 0 R /XYZ 71.731 282.516 null]
 >> endobj
-1749 0 obj <<
-/D [3950 0 R /XYZ 71.731 115.613 null]
+4048 0 obj <<
+/D [4031 0 R /XYZ 71.731 240.837 null]
 >> endobj
-3949 0 obj <<
-/Font << /F33 1306 0 R /F27 1208 0 R /F23 1201 0 R /F35 1569 0 R >>
+4049 0 obj <<
+/D [4031 0 R /XYZ 71.731 240.837 null]
+>> endobj
+4050 0 obj <<
+/D [4031 0 R /XYZ 71.731 124.624 null]
+>> endobj
+4030 0 obj <<
+/Font << /F33 1322 0 R /F23 1217 0 R /F27 1224 0 R /F35 1589 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-3971 0 obj <<
-/Length 3073      
+4053 0 obj <<
+/Length 2764      
 /Filter /FlateDecode
 >>
 stream
-xڍk�۸�{~����Z�%'(�&�K���Ͷ����DۼȒ�G6��(ɲ�9���3���<��R�MC�;7H�U~z�����/[A��p�>�z�!W;w�����*
-C7L�Un����λ�jzݮ�A�9���t�:���p��)K����_^}�8����e�]�,�SA��#7���^�K�,�؍�yI3�O����zh��^�󅹃�^�⡓Y��o�>1�	',�@5�D᭶���AL�����zXo�8rrU�@BGUC�?v���a�B�8ڷH7��0���L1��W-3�>M~�a�{�v�,|�����T����w��$u+`�:S��I�x�jՓ��(�����e]id��û�@
}}���*�<t�[�k��	:E�B")�U����?�Ǻ�<��IFFN�WK�~�4�6h,��t��4>9��h�i������#���Օ�`�,?�E��I�ja��TgF������������|�|x͎���*�Z
e�a�e)�pf�
.u�2�#��Aw�%�t���C|GW���O��7$��7�HqP��	��K&�L���F#������`�F�ɞBwyk�,��\��`д�-�:{Pޛ��紂��h& �냮%����.��ڥ��0EU�/d ZԨ��N	��.��Q������`���>��~�55Y"��e�%v"P���Tj̀��pz�-����U��;�(�����1�/
-���a��s�=��N�3����=Y,#�
-0�,$�-���S�E�R�]*(����q����z"_��7�z�3�N�g��-�|���*!��9�� �ޒ��p�}-��2�C�.ˠ�`h|tZ/l�xn�����\��nX���!q�����Ax��l"6��ޒz� ���-�]�˃��d��z��xb��RQƅH�,P��$ًo�0s�
�xf��Of��)�*�~(y�|$w�(0x&"U�3R�~F��
o�[���<�v�H�Zr�����i���4��<��T!zw`�.�~��^���hTp��ҽ��-�+D�(2޽ïo� thd�
�R��YdE�08��L��O�{�
�X�0`��Um������,(���FQ>BPJ��v.��T��z�kGG��<A�����)�����~��#�3�f��d��:����./�\��2r�*���A�(��5��y������Zؔp�����H$��a�e
I9�Ar{�#t�$�Jt��B���,�<6<��,���M��{O����[ԼCR6�\�����(MR�]r��v~28�-�*��X2��`L���Q7t�Nx,S�RD@钺�K���eR�$R��`ʱDy;����;7L�q�/���z,�!�?4
-�y<�w�5x+Na��YJ:f|��!\!_H_(5$���d���C�ς��Isp�>�������#/�K�·A8�H���:��뜟��)ti0W��
}���ޱ��%�$���ҕ�Q��c~�֣|ۛ�Sp7?�?����y���T���,��q)�����X���)荿�\��H��j&�5:Ǜ �����O�@�`�9HL��^�KD1���Ԩ��#��i�b�Ѵ6��)99w�2��u��������*�S,�4,��,��Jh<m�i��i�B�-4��$$��]}�{Ub�dr؇g(����ڂ]&Už��7�$^0�����
f�\���Bꉷp��$u+�݈���ޜ�V��11����P�W�m�er��UJ\D>��A�+�3*����FB�j ֚15ŷ�Jt����M�A)x �\f�C�L�2�W�V�6��s]��	�)N�� F���[Y���|4ݹ�ii��n7�c;�\増��-|wI(۹I� ����e�=—�Rۭ4�8Fᔎa�1R7DXQU�%��h���)���BI�Ƭ.�Z
0���6k-]�y�%͸M�5����	z���\#��E#��⒡s�z�^{��sPn��ttlB��@�5�
-��)0g o
-�>HB Dw7��?�H^3^MxA�I| Ώ��#�Lā}�3�D	E���R���%�	�$�qGL��£��R�u|@��!��#�N"z!��[��4��_��FY�,�n�ε�d��n�$�����3��tWі��m�H»�=�yɶ-
-��d�7h}Ӻ��^{�Q����ij.��P�_�~����c�~	�d��l���*n9ܗ���b��
-}ByI悁�_�5�oJ���C�N�YM��f�<V�.ݽ�s������J��g�H�srLQ8?A8�2#��c7��5)�2)� ���?�n�x�$��J�E�u�^7��k�.��z)��r9�,�/�f���Z�0�m e
�I%�A�=u&K���`�ø]0�(�X��#R|K@�%��ڦi��p}h�I.�%�p#�p������֜�8��n�?\����OH��v�*9�gz�Q#݋���ό�w��Moz�Z�6��p���	��@�hU��2�n�n%�w����߭���Ƶ'H0�<S�9��8���U����x&7x#S(�IMf4b��?75���B�E��Xn�c���<ܰ���}/���Tu�F\���[z|�J1&���H<��KK�]����
��g'Ps�K�yWSB='�*��#e56n���w�̿�'���������5�o��;��.~j
��Q��tM���ƕ����W/t�=/Bƞ*��G#��4�b+�N'՞y ��f�BϖO2'���:3��p=��nDN1k"�ح�,��P�5�P���8�m�x��V�.j�U�a�C�G]6�4s@e
^��L�S���ǔ���Ü�O�4�
-��t��2&�rjzK��Dq#M����5�_
-�0)��O5������{&�4�_Vr�QU@s.SaPq��yN�:��ɗ�6�5{�H�Ԉ>�g��$�8����-.l��"���O��}DŽr��q�a:$(�$z��6�)��Iٸendstream
+xڍYm�۶��_q��'|�;�N|�]�����M;M?�HHb�"Y������@�ҝ;7s���b�x�o6���$��(�[/�����js�����|�X�z������;�n��6V7���P)O��M�/�����_���nz�.�A�YD��՞�o������������S��ۦ�E�,υQA2e׶I=�d������8X�#�Sci0��Ńɹ��-��?��M��eY/�h��k"R{Խ�ҭ0겫��
MS���_s�����?�¦_���&܏��D���Q/�
�C&�L�^߬�������6���?:h�+���rn�j�zh3ý�Ȗ������GC&,�͢ne��n���'�Z�|�j<4vB��!8>ƭ��B�D��<���I��>G�9x�5ǚV���^�ྒྷ^}�k��>2�;���փ�`��AD������a�VQ��t�
���P���n���kԏ�]��qBQ���K���Qk̊�O�";p�4=O;Y~�l��)?�J�R؋�9�@�
+��(O�8ZxL�k���]��� �i��8l�k����t	�7�iuOQ L��$��%���nqu�^���Pw��
�
+��G�l��͆�mN`aU�E׋$���S�+���w�<�3O�_,)
+�%���%n=͋�)����U�e�#<���:�W�v����r�À�Cٯ���C[�5�l�a��<�g�>�����p�w��t_�ă韌���H|c�4*�b%��F 	������|���_�SV�L�%܄=K�7���I���
+�0CY9�0v=���P�<
�۔wk�P�CCm:��k1��'% ���ׅ^q�4,���|�H��|���E�6�;����{�X
��RL@ﮮ:�]Q��,VWb�rQ�*N�AJ����͋�9�lAK�փ�*$^�������q�BI�2hS*�qJ%�r�=��/S�آ����3[v����.�T�儋���2����Vb\u%$�,Å�U	}�Z�ZЌ5XC�:\�!f����+�3f�r�x�	��Hy��:ʱ<�	�ʙµ|�#b����kW��o����}.�Գ�vc��;�)},X�3$Pэ.Ir_*�@l�>u���x":LL`?0�vC�ݧ�;`�@�A]�ܣ ��#R�ixZ��������tD��R�����=��ꘙ��
+�w���އ������C�����U�0.!��ww����
+	
�mütk��fE��q,���q�?N�V�c�B��
+�
+�e*��s��Ls!;�h�#D% J�����G��� ���q$
+����wqև
+r��z�՝�±���d��RE��{��\I�(D���W=�9�Y[��8�lޯ�L��?����d���}
��kh<����e��z����Y��G]Y��������M��
+ΞX-I-��<C �Bs����G0ATw=�lI�Rl�N��T�?�f6�ט��k�P'lVQM����H�H��6��%���]Q���X�
+��T��T_&�j��X�͟O���?_ׄ���@�Ґ֡
+)�BR����'E8B
+�6�_�Aw2�0!� 7���q[p��1E�11���	nJ>��8TT�7H�I�--��~���~�r�,����������R�Me��������t��]�&��/�[��^�/�\����Z���c��*�;Z�&0.�_s�I��"��"�A.8��ǚv��p%hdv
r��
�4�fP������iL�fhj�Y��@ܴu>dx�V��5�:�;��R��R[v@����L�	����hV�9�.��cX�,�.�6�Ut`1��+	w���U��['C��}؆|>�/��9eR%������'����Ad�1t?��J=���Q�iE��9N��t��Qtջ�ࢵ��}-�,�)k��5&}D��{WѸт�L��=��,�	Vwm�)��WJ�s���+���dJ���2�����+c�l���-�)��8zE�Р�m���{=ǣ��K6�!O���3$��'<�/~�bp!�5Օn�8���n���Xz-���A"�O�&#�C�uU�(k|�+J�AB%��a;5>8@ۢ:zpX	��z/r�7M��(T�
�栶�V�Ju����:[�Z��C��y�a����$�Hu��=��^z�Xʌ�s
+�+��n�oX�'p�k�Ñ3�<�`	�|��.N��8p.�C����H����l�e�t�4��͈��#¡vWy8]Y��R�k`x�mua��R"{.���:�$�K
+�x1�m�ld'�;7�k*�����8��3?����u��o/n]�|�����>�<w��m�;ޗ��y�_P|.��M�fö��:{��d/�����Y�7���L�/ׅ�lh���]=��������t��3��Y��\=��K]����gbg^��Imo�v0��<.�|1>ҙV�Nv6�0hp۝�#%�v�!Ta��t<P�J��ܔ�q;Hڤ@J�@�/�Ư~0��\a:I(1w���n6��Z��	�@=�G%�8 �bPᣮ�憞.���@!��10����{z�,%�CA�2�;��S3a�)�r������	��J`�G*y�P��T!$���>ʂ���\$��xU�C�	D�Ł8�O�hC26D
�v�*�sV�Q��{�<T�'��5N�ƽV�Zq�V��8���f�z�������r�m��&�BСq������A��endstream
 endobj
-3970 0 obj <<
+4052 0 obj <<
 /Type /Page
-/Contents 3971 0 R
-/Resources 3969 0 R
+/Contents 4053 0 R
+/Resources 4051 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 3870 0 R
-/Annots [ 3975 0 R ]
+/Parent 4078 0 R
+/Annots [ 4057 0 R ]
 >> endobj
-3975 0 obj <<
+4057 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [260.471 607.851 310.284 616.762]
+/Rect [260.471 551.049 310.284 559.96]
 /Subtype /Link
 /A << /S /GoTo /D (userpreferences) >>
 >> endobj
-3972 0 obj <<
-/D [3970 0 R /XYZ 71.731 729.265 null]
->> endobj
-698 0 obj <<
-/D [3970 0 R /XYZ 353.573 707.841 null]
->> endobj
-3973 0 obj <<
-/D [3970 0 R /XYZ 71.731 697.476 null]
+4054 0 obj <<
+/D [4052 0 R /XYZ 71.731 729.265 null]
 >> endobj
-3974 0 obj <<
-/D [3970 0 R /XYZ 86.396 610.008 null]
+1764 0 obj <<
+/D [4052 0 R /XYZ 71.731 688.254 null]
 >> endobj
-3976 0 obj <<
-/D [3970 0 R /XYZ 71.731 602.87 null]
+710 0 obj <<
+/D [4052 0 R /XYZ 353.573 651.039 null]
 >> endobj
-3977 0 obj <<
-/D [3970 0 R /XYZ 512.787 579.124 null]
+4055 0 obj <<
+/D [4052 0 R /XYZ 71.731 640.674 null]
 >> endobj
-3978 0 obj <<
-/D [3970 0 R /XYZ 112.803 566.172 null]
+4056 0 obj <<
+/D [4052 0 R /XYZ 86.396 553.205 null]
 >> endobj
-3979 0 obj <<
-/D [3970 0 R /XYZ 202.555 566.172 null]
+4058 0 obj <<
+/D [4052 0 R /XYZ 71.731 546.067 null]
 >> endobj
-1750 0 obj <<
-/D [3970 0 R /XYZ 71.731 523.168 null]
+4059 0 obj <<
+/D [4052 0 R /XYZ 512.787 522.321 null]
 >> endobj
-702 0 obj <<
-/D [3970 0 R /XYZ 198.969 480.071 null]
+4060 0 obj <<
+/D [4052 0 R /XYZ 112.803 509.37 null]
 >> endobj
-1751 0 obj <<
-/D [3970 0 R /XYZ 71.731 476.241 null]
+4061 0 obj <<
+/D [4052 0 R /XYZ 202.555 509.37 null]
 >> endobj
-706 0 obj <<
-/D [3970 0 R /XYZ 256.752 440.699 null]
+1765 0 obj <<
+/D [4052 0 R /XYZ 71.731 466.366 null]
 >> endobj
-3980 0 obj <<
-/D [3970 0 R /XYZ 71.731 430.334 null]
+714 0 obj <<
+/D [4052 0 R /XYZ 198.969 423.269 null]
 >> endobj
-3981 0 obj <<
-/D [3970 0 R /XYZ 434.226 420.574 null]
+1766 0 obj <<
+/D [4052 0 R /XYZ 71.731 419.438 null]
 >> endobj
-3982 0 obj <<
-/D [3970 0 R /XYZ 71.731 361.63 null]
+718 0 obj <<
+/D [4052 0 R /XYZ 256.752 383.896 null]
 >> endobj
-3983 0 obj <<
-/D [3970 0 R /XYZ 71.731 348.679 null]
+4062 0 obj <<
+/D [4052 0 R /XYZ 71.731 373.531 null]
 >> endobj
-3984 0 obj <<
-/D [3970 0 R /XYZ 71.731 343.697 null]
+4063 0 obj <<
+/D [4052 0 R /XYZ 434.226 363.772 null]
 >> endobj
-3985 0 obj <<
-/D [3970 0 R /XYZ 89.664 322.94 null]
+4064 0 obj <<
+/D [4052 0 R /XYZ 71.731 304.828 null]
 >> endobj
-3986 0 obj <<
-/D [3970 0 R /XYZ 128.262 322.94 null]
+4065 0 obj <<
+/D [4052 0 R /XYZ 71.731 291.877 null]
 >> endobj
-3987 0 obj <<
-/D [3970 0 R /XYZ 328.528 322.94 null]
+4066 0 obj <<
+/D [4052 0 R /XYZ 71.731 286.895 null]
 >> endobj
-3988 0 obj <<
-/D [3970 0 R /XYZ 71.731 307.832 null]
+4067 0 obj <<
+/D [4052 0 R /XYZ 89.664 266.138 null]
 >> endobj
-3989 0 obj <<
-/D [3970 0 R /XYZ 71.731 292.888 null]
+4068 0 obj <<
+/D [4052 0 R /XYZ 128.262 266.138 null]
 >> endobj
-3990 0 obj <<
-/D [3970 0 R /XYZ 109.589 271.732 null]
+4069 0 obj <<
+/D [4052 0 R /XYZ 328.528 266.138 null]
 >> endobj
-3991 0 obj <<
-/D [3970 0 R /XYZ 76.712 230.885 null]
+4070 0 obj <<
+/D [4052 0 R /XYZ 71.731 251.03 null]
 >> endobj
-3992 0 obj <<
-/D [3970 0 R /XYZ 89.664 212.953 null]
+4071 0 obj <<
+/D [4052 0 R /XYZ 71.731 236.086 null]
 >> endobj
-3993 0 obj <<
-/D [3970 0 R /XYZ 71.731 210.796 null]
+4072 0 obj <<
+/D [4052 0 R /XYZ 109.589 214.93 null]
 >> endobj
-3994 0 obj <<
-/D [3970 0 R /XYZ 89.664 195.02 null]
+4073 0 obj <<
+/D [4052 0 R /XYZ 76.712 174.083 null]
 >> endobj
-3995 0 obj <<
-/D [3970 0 R /XYZ 259.764 182.068 null]
+4074 0 obj <<
+/D [4052 0 R /XYZ 89.664 156.15 null]
 >> endobj
-3996 0 obj <<
-/D [3970 0 R /XYZ 71.731 141.057 null]
+4075 0 obj <<
+/D [4052 0 R /XYZ 71.731 153.994 null]
 >> endobj
-3997 0 obj <<
-/D [3970 0 R /XYZ 89.664 125.281 null]
+4076 0 obj <<
+/D [4052 0 R /XYZ 89.664 138.218 null]
 >> endobj
-3998 0 obj <<
-/D [3970 0 R /XYZ 407.268 125.281 null]
+4077 0 obj <<
+/D [4052 0 R /XYZ 259.764 125.266 null]
 >> endobj
-3969 0 obj <<
-/Font << /F33 1306 0 R /F23 1201 0 R /F27 1208 0 R /F44 2037 0 R >>
+4051 0 obj <<
+/Font << /F33 1322 0 R /F27 1224 0 R /F23 1217 0 R /F44 2069 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-4001 0 obj <<
-/Length 2779      
+4081 0 obj <<
+/Length 2925      
 /Filter /FlateDecode
 >>
 stream
-xڅ]���}Ep]�x��@����=��6�����Vbul)���M}I�r���CBQIQ����~ɢJ�*����ӲX4û�b3y���^�0[���݇�lQ�u�-��E�eqV��*K�M�.��?��N��i������Z��~��O��X�k�ӻOۉa�Uq��ޔ)��*��Bm�,�E���Y�{�\'�y�G��<�r�A�̑�R7�Ah��4�]fE4�h�B�jP�Q�����Ƀ�\(h8(��#3�����G�M[��dž�^��I�,��q�Z��~�L���k&�^�2;�j�2-�ߖI���hi^
-����u�"����%x����'�+w
-��;��'5F[�z��U�s6��e���lJӴ��2-��LQ
r7���O����c�ԩ}̋"�q'�J�؀��h*	MZ,@�q�)��8�'Z�3���4Ɂ+��.�N���YY�[�ʍ�}�u�X{"��
-��]���a*	T\���&h�De�
�ψ��h�����:��Ac�AjӚ/h�I�i�-)i	/��f��Z~�s?$I\�?���
-筷�=�8�%�� �I�P-t�02�z����J�P3�G�%NͳLM�?1撚�*oF�7��:�Tu\�!�l�8_��h��l�M@�"�Z(nxqԹ�����[��}Eyd?���^��)�?ٽVWk�٩{p&�?pN�alMsD�	,����5�J&y��6�Ӷ%\{g�,ԠT�k8 ����+�8�ҷ/����%����������+���y��%O���Y��ဘ2�G+m���S������%/��N�^P�\�AB�t
-��>9oCE&TϬѼ
"
-�&��HL!)ݔ>�I�@8��j6e?���q���#`��HL��ҵf�/�������R�m�^Du�{���{!��2
-�0��'�h�?G�ww�0��l�-��%�����88�-gE �7�3���hܾ�@��(�S��gk���=�@�2nt��-d+8��(����*�t�4�ˬ|�a�k^uX^���^u�[^��o�"KU@����ܓn|\��ޘ�X���^��<�&�ί�P��ф�/�RT:��/r0xA�$�ҧR������A�P�_��'�s3�"�6�����9�����/}7�j��5�5,}�3�B��ƫ��Q��fl�Q�PE`�c��+��I�M��}KC:,�Si����cu䠌�"�ɏ�`�W��+I�Xr��LV�~�ĠHc< ��)��g��X;��s�5lB-�Z�
xȚt4���d�y=Ǡ�PFS��/چ������,b�މW�^�7˅ɚ����ՁO0���;���j>t>pz�(.D�#�b|��q�q���N꫒���7��ɭf���Ч;���ٛ��Aza�vu�î��[�Qz���4���V�|.�sAq��h���#�p�5�x�YSi�@'�x��s�����ek��DK�~�x�p��؈���a����"܈��$C����_~&��\��G���ݴn�����Ut�(	kM�&� ��r��B��n01��"*ْ=Ͳ�{x�~�'�R"��+6F�vR�a>��v��J�T�X(ݘq���}L��y$'��a!�����@?~���D�O4�}�ƐG���u�9���`*?��!kD��	�50B����ug���6{>#Z�� �{�a����n���.��xS 0�y��
��X��=:��thED���4qC�:�$y��ՇC�0(2�����|썖���O�T(�*_�3�Yy��u��Ի}qb�
Y�9��FGKwSi��W4wnp��J��>`���Q��h((��j�L��
-D��P��eS�����
�jfo�H�b-�
-d�'����mVWq�2����9�5�؍f��o @��ES��ލ���g
����(0����&(</x1B����э��
��2n�t� ����r�v���UʗAu
-���!�+�01I�b@s�I��|�1��/xu&�H�P>{�Y$���"�O�D�����)��+3Sh��2�����!�t�:���x-G��P�P�O���\0���rz�,8m�)�6��9a�'����$xIN憘Y�+�c�f�F��@���lƾ�ʢ�˸ݳ��ۭ�`*�_U�&���M���Uq����)j��G{?N%qQ�ץ�&=���ě�GR�멭hj�Un�0����Gt�a��N#�/_J�J|%:�gKC������ϟ��AL$4�)7��wiɳ���s��F��qX���ҵ?G�S��gQo����F��G;��ò,"���n����!��^0�uz6�Y/��:��DN	k)N<���;Fs��EX�w�9�$��i����HufJ�;�ƭ�x'}���A���x��G��lD����l�;X���s����a�[��h���M�B�>.qg��k��1#�e/��b"�G�,:���Vgr<�4`�S��e�7j�.�?�)l��
-nHL�`�H�@�E�Fc���S�� 	K���w]\?�+��L�>��(D��zz�����nI��
b]�F
��4����w;LF��J��H���
��o(����+�����0��w�qT-S
�,R���q�F���7$˿��p1�AR��q�(1Ih]X/���Yq��tt�0��g'A����P�6>'i'I�ߠn��km��7I�����ϹE���i �͋�>��r�?^�endstream
+xڅ˒��_���T�-�����S�rR)��R�l����2V�>�E=��@���n4�	M2[�_2������.�,f���b���?�K�YP�'8?����K�͖��f��,ϲ8+�Y��q]��U���e��^��XDE������t���t���{��wV#�"��e�=�)�\	�V'��e\���Z�q��$���y���oy��m���j����g�?/�ȍk��;�L�g�~��WƛFu<{�����Q��[Df�DE��{�#gwz���V�)H��C�EZ�dP+(�9I���~��Y�;���G���S.��ڎ7&�[Do�d�C��3_�y���0�}�w���}����H�1U�u���6~YI|i'�2�ɬ��8/o[.c<�P�l�*)�b$vt���;2���E���'���s��Qo�qR�"�h�;O
+T2.��qecm��x�m�����j׀j��[a�a�SÑw�5�#Nd6=9ɑbI��GF���H�F�D�v�����7֛��9�DR�*���(.����F�)���ծ�~�����[��eI��ٽ�9c��Y��l�0��A�H���C�� �LF�*Ӥ���_A��'�c��ѫ�ـ��'�A��u�U��T�Gx���o�3��y����^����<s^;�|nj^��@��W��u��s9���A�I���M+ IK��Ip"�P�7`��i4�!.���dOA`gv�½fh�f��x
+����i�:��k��% D/bmဠ��~3]'aY��4_�l�j\ˈ�K7��r�n��$�*��wy��e:C�8���4��ޙ��8`��d��{^V<@ۃᆄ�^��Xp�zO��
�C����l �a~��!4��BK�	Ӵ��nc���^��� ߏx��&9pE��<���Ϙ�K��eM�OI�u�AF�����=%H	����-#F'n5�BXQ��<�M�iӗ�"��Icw�c����DDn�h�p��k���,�~N��,XC�}�<YoUKl��1�:��.`�{V�����z�Ya�1�dӯQ3\�D$��jdU��iR0C�M��3dFܽ�^$d��	~�s/��Bq/��������Y���]�Rx٣���z��mBy�O"'���^�lms@�	,����7�i!�W���؊O�f�p�[�'����<�h�
+�|YAÐ?��	ν(���ޅ����{���,��Y�u߲�C��F�%��0�16��P/����.KI�R��H����"�2�mk��o�#)
+��Ċ,� ��h���9$�uIiNs�SՕ��r�#�ʩ�U S�@b�l��5��^�S7���gh���lS�L ��hN2-U2��d�(�6%[�(/�~p�k����Gܤ��9K�#��89�-E ��Tu�AL�+��A�%N�\�x��w/"p����K�2n�[=�[�Vp��P�-4g'�P��a�,���c�=��uXAAUVw��׷���\�H+�=iMq�k[`Q�0����dML8�^3��ʣ�
+�f���b�����cdI�w���t��At�o�	���<����p~�=k2G0�k?~�ҷ���P#��g�$0���\a(�6�hjT�½���Q�PE`�c �+����x�fP���҆Kk$L�#e��n�sh���/+Iv`�Xr	�T&�����|@�1S,YO~�ć
+�`������]�e������G��ױw'*�T�h�˳�a��a I��$b��8�W��͇�ra�&��ߧf��Y}�ұ�ƪ��;	
+\��4Ƈ��#�br���f+�{��uƒ����ѭ&�����[ݠT=�tq�N9!#M�`��tx���[���
+m��a����@B��x�����8R��[�⁜��4O�x�e������kݤ�Z����� K߉�S+����T���O�$C���Ͽ���s�q��>�G�A0�r	݋�0RR���(L>A�7���
+�ں�Ħ�^bK�T4����ک�k<�8���_Vb�0Xk����rk�h\��<�������x�c��vB��B�������=�n�>�*��C�r��ae�s�A懬}a�v�ѤY�Z̵6/;���;y�U��������c�Š��z��x�}y��)�߼m���جo=:���Њ���q�FuzH�8˩ՇC�0)r�����|�l�C����P�UT��Iy��E��L�W�l��`�Y��,�q�x�S{�[Rr���V��vV�7��^9�6[&,����i�g���D�XǼ��}��f&FRk�U ��<d.�&9��H���NFX[k�9� `=��Y�k������y7§ǟ4<�R�߁�7q?�"0</�!�Q�c�F��
F�2i���A\
+��Vs|��]�oz��2h�B:�o�7svLBL��lR�=�9&�邟N��	��׉E��K,�H��I>��1�mA`"c
+M�F�甒�0��NU���rtx�J���_�\���:?B�����a�xܔ0=Ʃ��%��<�y���>�I��<�$^���Tx�d��O(�~�7@�vύ?�][
���U�iRH�)!�H#Sĕ��ؙ�ַ���nǩ$..HJ��T��	Y1��%bO�4(i*k�R������!�d��U҂��D����)�����O/?2���H��S���h-�����H��F��x�x���ٚΑ�o�yuv��Y�y��R��<<��"�ݔ�`���E����������
 ��`� G�I��$8���@��,�'���K���`�|o0�k�����F��4�kb�oV@����
�s���^�uR=������i/�@���{��_s�?�h�endstream
 endobj
-4000 0 obj <<
+4080 0 obj <<
 /Type /Page
-/Contents 4001 0 R
-/Resources 3999 0 R
+/Contents 4081 0 R
+/Resources 4079 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 4021 0 R
+/Parent 4078 0 R
 >> endobj
-4002 0 obj <<
-/D [4000 0 R /XYZ 71.731 729.265 null]
+4082 0 obj <<
+/D [4080 0 R /XYZ 71.731 729.265 null]
 >> endobj
-4003 0 obj <<
-/D [4000 0 R /XYZ 71.731 680.284 null]
+4083 0 obj <<
+/D [4080 0 R /XYZ 71.731 741.22 null]
 >> endobj
-4004 0 obj <<
-/D [4000 0 R /XYZ 71.731 665.34 null]
+4084 0 obj <<
+/D [4080 0 R /XYZ 71.731 693.235 null]
 >> endobj
-4005 0 obj <<
-/D [4000 0 R /XYZ 76.712 603.337 null]
+4085 0 obj <<
+/D [4080 0 R /XYZ 89.664 677.46 null]
 >> endobj
-4006 0 obj <<
-/D [4000 0 R /XYZ 89.664 585.405 null]
+4086 0 obj <<
+/D [4080 0 R /XYZ 407.268 677.46 null]
 >> endobj
-4007 0 obj <<
-/D [4000 0 R /XYZ 71.731 583.248 null]
+4087 0 obj <<
+/D [4080 0 R /XYZ 71.731 610.546 null]
 >> endobj
-4008 0 obj <<
-/D [4000 0 R /XYZ 89.664 567.472 null]
+4088 0 obj <<
+/D [4080 0 R /XYZ 71.731 595.602 null]
 >> endobj
-4009 0 obj <<
-/D [4000 0 R /XYZ 71.731 539.412 null]
+4089 0 obj <<
+/D [4080 0 R /XYZ 76.712 533.599 null]
 >> endobj
-4010 0 obj <<
-/D [4000 0 R /XYZ 89.664 523.636 null]
+4090 0 obj <<
+/D [4080 0 R /XYZ 89.664 515.666 null]
 >> endobj
-4011 0 obj <<
-/D [4000 0 R /XYZ 220.282 471.831 null]
+4091 0 obj <<
+/D [4080 0 R /XYZ 71.731 513.509 null]
 >> endobj
-4012 0 obj <<
-/D [4000 0 R /XYZ 71.731 464.692 null]
+4092 0 obj <<
+/D [4080 0 R /XYZ 89.664 497.734 null]
 >> endobj
-4013 0 obj <<
-/D [4000 0 R /XYZ 71.731 435.866 null]
+4093 0 obj <<
+/D [4080 0 R /XYZ 71.731 469.674 null]
 >> endobj
-1752 0 obj <<
-/D [4000 0 R /XYZ 71.731 402.924 null]
+4094 0 obj <<
+/D [4080 0 R /XYZ 89.664 453.898 null]
 >> endobj
-710 0 obj <<
-/D [4000 0 R /XYZ 263.867 365.709 null]
+4095 0 obj <<
+/D [4080 0 R /XYZ 220.282 402.092 null]
 >> endobj
-4014 0 obj <<
-/D [4000 0 R /XYZ 71.731 355.344 null]
+4096 0 obj <<
+/D [4080 0 R /XYZ 71.731 394.954 null]
 >> endobj
-4015 0 obj <<
-/D [4000 0 R /XYZ 300.705 319.681 null]
+4097 0 obj <<
+/D [4080 0 R /XYZ 71.731 366.127 null]
 >> endobj
-4016 0 obj <<
-/D [4000 0 R /XYZ 96.735 306.73 null]
+1767 0 obj <<
+/D [4080 0 R /XYZ 71.731 333.186 null]
 >> endobj
-1753 0 obj <<
-/D [4000 0 R /XYZ 71.731 278.735 null]
+722 0 obj <<
+/D [4080 0 R /XYZ 263.867 295.97 null]
 >> endobj
-714 0 obj <<
-/D [4000 0 R /XYZ 209.315 233.58 null]
+4098 0 obj <<
+/D [4080 0 R /XYZ 71.731 285.605 null]
 >> endobj
-4017 0 obj <<
-/D [4000 0 R /XYZ 71.731 224.757 null]
+4099 0 obj <<
+/D [4080 0 R /XYZ 300.705 249.943 null]
 >> endobj
-4018 0 obj <<
-/D [4000 0 R /XYZ 71.731 181.037 null]
+4100 0 obj <<
+/D [4080 0 R /XYZ 96.735 236.991 null]
 >> endobj
-4019 0 obj <<
-/D [4000 0 R /XYZ 71.731 148.096 null]
+1768 0 obj <<
+/D [4080 0 R /XYZ 71.731 208.996 null]
 >> endobj
-4020 0 obj <<
-/D [4000 0 R /XYZ 71.731 111.398 null]
+726 0 obj <<
+/D [4080 0 R /XYZ 209.315 163.842 null]
 >> endobj
-3999 0 obj <<
-/Font << /F33 1306 0 R /F27 1208 0 R /F23 1201 0 R /F44 2037 0 R /F35 1569 0 R >>
+4101 0 obj <<
+/D [4080 0 R /XYZ 71.731 155.019 null]
+>> endobj
+4079 0 obj <<
+/Font << /F33 1322 0 R /F27 1224 0 R /F23 1217 0 R /F44 2069 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-4024 0 obj <<
-/Length 2557      
+4104 0 obj <<
+/Length 2533      
 /Filter /FlateDecode
 >>
 stream
-xڝk��6�{~���l`�Z�v�mrM�C�(�mpE�D��J�!Qu�_�D�nRX
��p^���
-���&61|�]��YV�Z͎0��P(�B��h^?���m�v�.�gχY�A���M�u4{�?�ߜ���f��֫�:���mQ|��*�R->=���Ͻ�u�	v���:9���͠���j�IB:�tX,��n~5'��V�?�z���7Z��Q�j�v~t֪�T��>2�5��'�.�'ey"7�e�6�������{�$f�����4z�E���W���i�H�E8�Z4'iF�NNB5V��-��4�����h
P�
-�����Z��@��j�Z��O0����J5/�E�e,>FQ���|[�ɣ#m;ܪ��m9�-�UQ�m�E��U:7�����p���f�	A@�j_�Q��B��l��G�b�ڐ��R�#�6Ϸ ���8^�E��۾�h��5-��16�n����6h�/Ef��	��n��8ћq��<Elm����G}4L.S�k(<��	Y�
-���!OV����	�s}��X�h��Sf�['~K&WG7��M+�;2Z��#V{{�%���\�KmuϿpl���ž�����Q��ُd�U�M�Í���UTjb��t��޳☝�l�����	7��A].�����i���������y.�";�ЖyB4�h���p���4����η+-f!FVf/"����Mݺ7fG)'�;��'�j�
-�P�p�SٚGN���ehɹ�9�'�-��~dC1��)�nH1�-Y�E�Tq.�溙����w�������l�w\�K��nH'q��(Adw.�ʙ1�a�gc�/l��C��o�k�60�����sI���P��U�Hi��+E
����B��.#����K{��V�P�i��Uy/ٟ�e�QG�_��d�s���`�Hi��ƅ㕑^��!�`����c�5�!��b��������2Z���H�h��Y���`זq+�_�pBU��q�x �S/��
-��̀��`�X�˔�)����3H�G�SdA��ک,�x����&%����1�g���Q�:��=s�:5`��0Z������y�n1Eo���h:i'ʚ�s"|���2k�q�2�@�I��f��L��_����~�(̫scΔ�R��ȌVj�F�JR�D>��p����j_��E
�$��/��q�QdTF6�AC=��S@���H�C�ʘ�F���`�U�?ӜH��	϶��u[)o��Dd�/��#��u�e�1޺oQg`���:�����_��	M��F2A+4�8����ɾ_t)�I�#�D�����~���qqa}��sKW��Z!AG�������f�;��4���>S�J{p�(��0�m���z��.[��ՒW���� ,ms�RLր#پ�'1t@ki�|
-�z0X����7�'��H�u&���MA
-j)	��9����Y�F߸�؀�j�1���VO��y�����4��!|�\.���\K����w����96�Ȥm�4 K��p�Ⱥ��%rd]��zϺf��˘I6��u����ީ���Kh���5�m���h';�|��7i#O�D�r���	D�Ѷ���
��0��ʹc������U~�|\��&���آ;VУ������u]���Y,.��v�u��v)Y'N���P�]�v��M3��Z�=E���p��pg������C�$^M�  ��X�H9[ĸ��O�8E��2���QFV[��ÿ��x��xę�?vZ`��P��o�E�.��9ԛ$�m)܏���#�X��;���JDwF�1�h�
E����:'�rn\uH��x���W�	�I���'���$O"�3!�y#�����:���&����$`Z��@��׆u�*H���Ցx5��ޡ�P���}�������{A���X���/��4q�0q�+���L�^�[y�/���#�8����;�$���K��.%Rd"���}
��C�U��<�	�����R4d�v�s���
-���@n!�rh��-k�r��`�93���?s�' @�E�C	}�_�'�W�f�#);=�#���eO�2vb.n}zyf9��X{2^���/(|��乖j���")��q��W�zܭ���D�΋�X�
-�.ۇ����f�yy�B�+�4��	\�-^K�L�D��Yt{E5qfL��Ύ��ڳ-��b+���ހ�/��N��'@���+B2
%‘�����w<Eo�	��X�O�wE���O��Cyt�؅	q8�.�P��X���a���%P�в��#_�%5>@���O+
�ԁ���h��V�|*���K۠�{]�k��F�|��n��Ϋ1��+>�(�?��Ʌ^�I_|e!}��LI���y
-�w����T�s��f�/r/E�6�OQ0�#�lF?E0��鉞���/B��|#�[�3����Bt���f&��~�{��l�:��`�[���l�m��ꯋ�͏��hs=�6M��W�[Q�[@��endstream
+xڝk��6�{~���V��}�}HrM�CP���עmb�0$�^��߼(Q����Crf8o��,��h���U�x�y6�U/��f>��d�R�,�5o�/^�O��&���l���I$y>[%q���ٶ�m��NV��e���,��/������T�߷�~��v`�%�`�N�*�[s#T��rg�A��$�QΛ%H�ݱ�˂�J=-`J�L�
+d�����]�u��p��Fn��կY6�Q˾Z�bJ	�-�l~�Q��M�'6{�^���IvjLmE�	��ʼЀ���K�/hm��FLs2ϋ(��-qj��RW�������H�8��mZ�1�ꂁ�P�y��V�v�]�����oZ��e���W��ǟ�,��!���(�}}�U	S���l�p����FN�	m���_�xY�@�څ�{����[U�9�*�%��:�J�S�4��g����,�ϳ��ؑt�4x�?�mk
+�j��[ŠS�v����W;��9^1�ZUi3�[;JB�>�$.�7��!Fr�w؈�7��?�����ġ�~|E{Q�
��޳tHv����NV�G��C9?c~��V���0�T�"Z�n��,��8����ڣ�<Q4�Ս�8
+�(��vwM[�YpR�!�a$[	��Dv���@��$c�������H
��0M����5{��'P��zT�~& C�R���&?�h,>�q���|oJ
���-�z<�'����G��Mg[e)��|����	��;F�ha�A@�
+�P�6Aﵲ����q�"%�a�i1�%4
+��P$J����(�V�TRSO$^�����z˱�:6U_q�u�OA�U�xP3✚y��?�m+�
qк��,�Q���󈙇�r�G�,���˾�}���"�p��Ls�دI����i�pOJ+x�b�o�P;7W���@��*�7��3]d���Q����d�U�I�����0�K*d+v�[C��$�$�+��x��S27�RJ~4�2j��@<������y�GC��vL��˒�=���Njȣ��Ϩ����Y���h��=�ꎵ!;J�L8�����M�5�b��ehɹW@sp$N�k�����E�_��d��Qoi8�RmĹ�����6H!1�S4�\�l�5R^B�7c:I�5E	"�6'L�L0�L�1�7���>���赤p��SI���P��]�p���/E��
+��L��.#����Kg��HWS���m��{�~�z��3���s֏�a�����ʅㅑ^��!�`��G�k$C�$��S5z�0�mtPwf"1��"f��b�]:�Q�d�4R�N���9w��n\��!�i�x��b^�NY�}��$Ѕtlq2�R�ĸ�-�Ɋ�e�*�$���H0��P�#�>2����BqDqF�>-r��r�o�F�|��-��?�#e�|�9�ޝ�2�쭖�v�v���k(������V����/�xw�姜�7R��چ�Q����<�O�n�}��B=��X��Kr���&v�l�H��u��ItRO�#��<���)�e���|{�*��iw5�Y)0���bHĝ9P��9^�^�%"�\���F3����p��JVx;*0����[<1M��F2A'k�q��e�����l�Q`�2���?]�~���iq���TX���թ�VH�����Q�î7��y��ln�_.ŃY�Ne�j�� vDž^>^�_�<�$��!5I�^�����Jv���-�(���_AR�*� �Ye?k}�Ի��;�=j{�0��4�L�1%͏*��U����*P}C�w
8���W~��N�X�M�O>}�.�O_\���|��G���-��5;i�=	HS�w�t����-rdY��zG��T��)�!pܢ�Y��=���>��6]��m�n�j���$�����
�����O9IʦS�����zL�⇲�Ա��`�s��/����������	,��E�ti.d�C5G&ce��"e�KS��;�Ԛa�]J�I� ��^�v�UkV�uE�r�1��[�u��7�5�櫢�#�\�xa4���Sb#Ŷ�q�=���q�zT����'F5��:i^�K,��'J�G���ӆ�[
$����Q���Nݣ��S�nH�����H��8��⋬�[���1�l�
�vX�H]���
+�\��\��Oڑ��#��B������ƞ
+����'W�Q�t��I�����z��6�K� M}��ū��=���tA����[<�eo��·�=�.�.w�~�z��W�B���C�{�g4�܍zC]WK�tR�}��ק�c�L�>���otؕe�' |kw�J���'g��׌F�=�)��F@�N�Gu�r=�,�sbeQ�ď@���<����0,��g���];ˑ��^�3�Ȓ�eO�2vb.n�|�Ij�|&�1�7�~A	�Kt,�T+��I��M���r��~u������t���W����0��+������~q�e�_;���endstream
 endobj
-4023 0 obj <<
+4103 0 obj <<
 /Type /Page
-/Contents 4024 0 R
-/Resources 4022 0 R
+/Contents 4104 0 R
+/Resources 4102 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 4021 0 R
->> endobj
-4025 0 obj <<
-/D [4023 0 R /XYZ 71.731 729.265 null]
+/Parent 4078 0 R
 >> endobj
-4026 0 obj <<
-/D [4023 0 R /XYZ 71.731 718.306 null]
->> endobj
-4027 0 obj <<
-/D [4023 0 R /XYZ 436.472 695.392 null]
+4105 0 obj <<
+/D [4103 0 R /XYZ 71.731 729.265 null]
 >> endobj
-4028 0 obj <<
-/D [4023 0 R /XYZ 169.318 669.489 null]
+4106 0 obj <<
+/D [4103 0 R /XYZ 71.731 718.306 null]
 >> endobj
-4029 0 obj <<
-/D [4023 0 R /XYZ 176.588 643.587 null]
+4107 0 obj <<
+/D [4103 0 R /XYZ 71.731 645.168 null]
 >> endobj
-4030 0 obj <<
-/D [4023 0 R /XYZ 71.731 625.554 null]
+4108 0 obj <<
+/D [4103 0 R /XYZ 436.472 620.672 null]
 >> endobj
-4031 0 obj <<
-/D [4023 0 R /XYZ 238.395 612.702 null]
+4109 0 obj <<
+/D [4103 0 R /XYZ 169.318 594.77 null]
 >> endobj
-1754 0 obj <<
-/D [4023 0 R /XYZ 71.731 571.691 null]
+4110 0 obj <<
+/D [4103 0 R /XYZ 176.588 568.867 null]
 >> endobj
-718 0 obj <<
-/D [4023 0 R /XYZ 200.128 534.476 null]
+4111 0 obj <<
+/D [4103 0 R /XYZ 71.731 550.834 null]
 >> endobj
-4032 0 obj <<
-/D [4023 0 R /XYZ 71.731 527.123 null]
+4112 0 obj <<
+/D [4103 0 R /XYZ 238.395 537.983 null]
 >> endobj
-4033 0 obj <<
-/D [4023 0 R /XYZ 71.731 481.31 null]
+1769 0 obj <<
+/D [4103 0 R /XYZ 71.731 496.971 null]
 >> endobj
-4034 0 obj <<
-/D [4023 0 R /XYZ 71.731 452.583 null]
+730 0 obj <<
+/D [4103 0 R /XYZ 200.128 459.756 null]
 >> endobj
-4035 0 obj <<
-/D [4023 0 R /XYZ 71.731 452.583 null]
+4113 0 obj <<
+/D [4103 0 R /XYZ 71.731 452.404 null]
 >> endobj
-1755 0 obj <<
-/D [4023 0 R /XYZ 71.731 374.721 null]
+4114 0 obj <<
+/D [4103 0 R /XYZ 71.731 406.59 null]
 >> endobj
-722 0 obj <<
-/D [4023 0 R /XYZ 299.665 340.25 null]
+4115 0 obj <<
+/D [4103 0 R /XYZ 71.731 377.863 null]
 >> endobj
-4036 0 obj <<
-/D [4023 0 R /XYZ 71.731 331.612 null]
+4116 0 obj <<
+/D [4103 0 R /XYZ 71.731 377.863 null]
 >> endobj
-1756 0 obj <<
-/D [4023 0 R /XYZ 71.731 290.337 null]
+1770 0 obj <<
+/D [4103 0 R /XYZ 71.731 300.001 null]
 >> endobj
-726 0 obj <<
-/D [4023 0 R /XYZ 364.509 254.97 null]
+734 0 obj <<
+/D [4103 0 R /XYZ 299.665 265.53 null]
 >> endobj
-4037 0 obj <<
-/D [4023 0 R /XYZ 71.731 246.332 null]
+4117 0 obj <<
+/D [4103 0 R /XYZ 71.731 256.893 null]
 >> endobj
-1757 0 obj <<
-/D [4023 0 R /XYZ 71.731 203 null]
+1771 0 obj <<
+/D [4103 0 R /XYZ 71.731 215.617 null]
 >> endobj
-730 0 obj <<
-/D [4023 0 R /XYZ 295.625 169.689 null]
+738 0 obj <<
+/D [4103 0 R /XYZ 364.509 180.25 null]
 >> endobj
-4038 0 obj <<
-/D [4023 0 R /XYZ 71.731 161.052 null]
+4118 0 obj <<
+/D [4103 0 R /XYZ 71.731 171.612 null]
 >> endobj
-1758 0 obj <<
-/D [4023 0 R /XYZ 71.731 104.768 null]
+1772 0 obj <<
+/D [4103 0 R /XYZ 71.731 128.28 null]
 >> endobj
-4022 0 obj <<
-/Font << /F33 1306 0 R /F27 1208 0 R /F23 1201 0 R >>
+4102 0 obj <<
+/Font << /F33 1322 0 R /F27 1224 0 R /F35 1589 0 R /F23 1217 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-4041 0 obj <<
-/Length 1822      
+4121 0 obj <<
+/Length 1945      
 /Filter /FlateDecode
 >>
 stream
-xڥXmo�6��_a���9�ި�`�v��!Æ�Zl�@۴-D�����yG����@ $�ǻ�s/<9��β��b�R6��W�l;?_��qM,�ϛ�ի�q<+�"�g��,�c?N�YG~΢�j�����[%��u���8��e���a�oYU|���׫w�Q!�3���m�<gFE�,��1m��\��q�������hk��{+AK&��7[�����|��)6��M�+�#n�Xā��f�A_��&h��u��ET��Ex�����yG�bS="����e���PH5�a�;�J���\t�k��;��X�����K:�sT���D�u/�A	4n8���`�(�;jxC�*��t��������-P.èiy�0>�M�Қ+\s\��p�p�T4��Ф*7��is��w�؜��K؝kg�PC��U�ؑ)�j@��tR�$䰐����.!)/6��^U@�����f�h��^h�s�oU����kw�4�=9�����o�(]Us<b��Q���X���u�#W��
g��{�Sƹy�$��$���R�4�ym�4e2��7dy�4ɳ��L�R��2zT����1�2%0�O�M��N��u&���bm���ܗ��̣�^�B6�M�w�O���-_�z5ҏ���1�ϣ���x'p�xE^I���s�H�%���c6"
-o~�p�c���u���3�#`q|oc��W���P)z�
-�C����Z�	O���^���C/lE��ږ�f�{�䥐.��N)��g�+^�<j���yb���Q��F{��:�y�`��x-p����L��'��̭�s����+�$���@�'���s�t�j������Os�[���v���ϟ����`cSj��@yb�Y�ȱ:�g3c���{��p2@�c;�$�8io�����M�h�ྫྷH7
-�z*%l,%�T��K\@�����b�Jv�?��P���eGO�L9FE�xZ�8zVq���ң2#��D0X�]�ꋙZ�����D�6>ƚh=�Y04�jh�ii�y�{���<!�����Vjt�XQK���ԙ�h�˰-ǧ��j�z
[��u��?���2���v#�:I���=y��r;�����pߔ&A��r����`��VN��x���W�����q��k��y;�Ԃ����y����Q��eR187����nw��H�u�!.��w\;�+�I�����
-�-�K�G��b�aJN�Ɂ��I1_�m�a�:(���'�<4
-���4E;)��1j����}[����vnlGI�ف/�`j%�!a�:E��-�)��FK�q��Y4��u6(�17^�p[��a�#fD8K3h���a)0�`�V��S5��i�]#�����R��y�߃�p~,M��%ur;lH,��=0]J���ƽ�L�N���Fj�b�#u���@)��c�vY+�/�l�̻Ex���	�ܝZ�a�����qO�#RkNUɬ�(=�`�����=��hb�9_�@���H���EV���A���5���20��$���A���ի��+��րSP� :�.F7��C6��EW����9������)��Ѕ|TC��;�D���h��{���{�l ���`���۟�$��P|.�@	Z󦱿�@�ߘ3���(��ٌ|a'lB6��i܃L�e�!iz.D�H��S�9����R�A=1%q�+�yY)y���щ
-������g�/1�/�_�'ar��7iˢ$���J�>U��p�S�@��~f/��6����Ƣ�O�(E��f���v��?a�0�endstream
+xڭX[�۶~ϯ0�$�^U7J2pP I��E
+9�)�>жl�%���q}��%���h��r8�}�c����,�,���(U���Y0���g�P�	ɝC�������x��Wi<��͒8��4�eq��*��o�^t���]�O��>te�g�Ű���*�����g��G�*��UU'Ks�T���_)EZY�܏��(�������r梨�Yl~mNC/��/��>��(k^5/�q��~��@�Cn69#�݅���VF��"��LN�}�3p\���fs!#+�S��B�aɨs30��Q=����~	������r��&jZ�h��;�G�y��Exe����h���`~A{����ނ��R�?����"čSG�[\H#�P��i�5��R�����c豬���;$�>���1�0p��b���&�3者.:&iv���b��Ѩ��qv����t���}!z>�@T��ы�=/R�-/4�E]@����	�g"+�Z�zsr�0��xl����Ҹ�"��c�;4&�|^�@���w��~�& ��@"�
+�D�q62@�B��I�5uuŨ���G�����u׻̺'�EB����fږ�����05���Sg�L��ܗBv�$��$��;�6	��������-���bӗM��θ�v�<�>I�.�>^�)N�6��ig�N.���z�l,��l��
�
+��|́�Ƕ*�rq�܋���뮩��`�`�`�*�E��g&��M{1s2�TH���Dq��$y`,U!�
+�ٱ���屠ֳd�4�@*��S~�P�#҆��]��z��9'(D(j��i����0�'��.oG1��ț��,����<�?�,s��:�V�����G��`��k�4u��K�}ŷ��ۗŸW�\�>~��9
+	u��
��W�4��I��G[�+)���4ֵ��T�R��b�g�m�Y"�b映�Gi�H�I ��B������`�
+�	�'K�f������6��^��8�c��ŅN��^��<=��A��<��|��|���P+Os�_y��$,�N�-S�/t%l?3<&�ʦ�ʛ�ew��zG8����$���)�
+�u���O����n�d�Ė�Ajh��.�=�M[�պmoc��}���>d�f�:h�9������x�ty�������'���������"l�Ĺ����`����{�8�'��m�i6DŽUt=�$�~yE*NΧ���st
+��������۰�v�Ž;&�*i�����X�L]�k�>S�|�]B��Tap�\���*p��򹘠h_�yS�lfzꤕ����\��/y�ag#u=��=��N�Dg��\GN��~lGE{����M�8MLZ�ڛU!+��K�_өę@2�\ 9���d�j|�	i#�U0�H�~�<O3
��t&�!��DS�!hېw.�86g��?o����։����}���[�)w�'w:;oީ����a��̎�'�Ӑ��C]��
+�
?����kf"Y��	��+@��X�Dͫ�N?��޷��k��
+�uOw��@�(��e18ak=��_��9��ŵj�^S�y'~��s;"������%��F1�0
%��D�
�����}�vOF,´���s?R��ș���/H{Ԙ�����92a����.:1�=i0�ءr��vЋ(��	s��r�6X5-"z�?NR1"^�q�n��i���n�Ѷ��������cX�aJ>M6>�k@[�/.��׃Իcd��ṕi%����V?0,�ˉө�a�Q���d��P��6џ�3s��}���"n<j43� [��j�?������i�擅J�ȘZ�i8�����cpf�QK_2���s]�ל����T2^9?b���x;��y�z;&T D�g�k��B]���~������k�|CLr?��~�Hn>��(�S5r!�ٗ�{ފ�^���endstream
 endobj
-4040 0 obj <<
+4120 0 obj <<
 /Type /Page
-/Contents 4041 0 R
-/Resources 4039 0 R
+/Contents 4121 0 R
+/Resources 4119 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 4021 0 R
+/Parent 4078 0 R
 >> endobj
-4042 0 obj <<
-/D [4040 0 R /XYZ 71.731 729.265 null]
+4122 0 obj <<
+/D [4120 0 R /XYZ 71.731 729.265 null]
 >> endobj
-734 0 obj <<
-/D [4040 0 R /XYZ 378.198 708.344 null]
+742 0 obj <<
+/D [4120 0 R /XYZ 295.625 708.344 null]
 >> endobj
-4043 0 obj <<
-/D [4040 0 R /XYZ 71.731 699.706 null]
+4123 0 obj <<
+/D [4120 0 R /XYZ 71.731 699.706 null]
 >> endobj
-1759 0 obj <<
-/D [4040 0 R /XYZ 71.731 656.374 null]
+1773 0 obj <<
+/D [4120 0 R /XYZ 71.731 643.422 null]
 >> endobj
-738 0 obj <<
-/D [4040 0 R /XYZ 288.511 623.064 null]
+746 0 obj <<
+/D [4120 0 R /XYZ 378.198 610.112 null]
 >> endobj
-4044 0 obj <<
-/D [4040 0 R /XYZ 71.731 614.426 null]
+4124 0 obj <<
+/D [4120 0 R /XYZ 71.731 601.475 null]
 >> endobj
-1760 0 obj <<
-/D [4040 0 R /XYZ 71.731 573.151 null]
+1774 0 obj <<
+/D [4120 0 R /XYZ 71.731 558.142 null]
 >> endobj
-742 0 obj <<
-/D [4040 0 R /XYZ 259.078 537.783 null]
+750 0 obj <<
+/D [4120 0 R /XYZ 288.511 524.832 null]
 >> endobj
-4045 0 obj <<
-/D [4040 0 R /XYZ 71.731 529.146 null]
+4125 0 obj <<
+/D [4120 0 R /XYZ 71.731 516.194 null]
 >> endobj
-4046 0 obj <<
-/D [4040 0 R /XYZ 71.731 487.871 null]
+1775 0 obj <<
+/D [4120 0 R /XYZ 71.731 474.919 null]
 >> endobj
-1761 0 obj <<
-/D [4040 0 R /XYZ 71.731 454.929 null]
+754 0 obj <<
+/D [4120 0 R /XYZ 259.078 439.552 null]
 >> endobj
-746 0 obj <<
-/D [4040 0 R /XYZ 240.476 421.619 null]
+4126 0 obj <<
+/D [4120 0 R /XYZ 71.731 430.914 null]
 >> endobj
-4047 0 obj <<
-/D [4040 0 R /XYZ 71.731 412.981 null]
+4127 0 obj <<
+/D [4120 0 R /XYZ 71.731 389.639 null]
 >> endobj
-1762 0 obj <<
-/D [4040 0 R /XYZ 71.731 362.675 null]
+1776 0 obj <<
+/D [4120 0 R /XYZ 71.731 356.697 null]
 >> endobj
-750 0 obj <<
-/D [4040 0 R /XYZ 223.845 319.578 null]
+758 0 obj <<
+/D [4120 0 R /XYZ 240.476 323.387 null]
 >> endobj
-4048 0 obj <<
-/D [4040 0 R /XYZ 71.731 307.406 null]
+4128 0 obj <<
+/D [4120 0 R /XYZ 71.731 314.75 null]
 >> endobj
-1763 0 obj <<
-/D [4040 0 R /XYZ 71.731 295.862 null]
+1777 0 obj <<
+/D [4120 0 R /XYZ 71.731 264.443 null]
 >> endobj
-754 0 obj <<
-/D [4040 0 R /XYZ 223.569 258.646 null]
+762 0 obj <<
+/D [4120 0 R /XYZ 223.845 221.346 null]
 >> endobj
-4049 0 obj <<
-/D [4040 0 R /XYZ 71.731 251.294 null]
+4129 0 obj <<
+/D [4120 0 R /XYZ 71.731 209.175 null]
 >> endobj
-4050 0 obj <<
-/D [4040 0 R /XYZ 282.496 212.619 null]
+1778 0 obj <<
+/D [4120 0 R /XYZ 71.731 197.63 null]
 >> endobj
-4051 0 obj <<
-/D [4040 0 R /XYZ 71.731 179.543 null]
+766 0 obj <<
+/D [4120 0 R /XYZ 223.569 160.414 null]
 >> endobj
-4052 0 obj <<
-/D [4040 0 R /XYZ 71.731 179.543 null]
+4130 0 obj <<
+/D [4120 0 R /XYZ 71.731 153.062 null]
 >> endobj
-4039 0 obj <<
-/Font << /F33 1306 0 R /F23 1201 0 R /F27 1208 0 R >>
+4119 0 obj <<
+/Font << /F33 1322 0 R /F23 1217 0 R /F27 1224 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-4055 0 obj <<
-/Length 2247      
+4133 0 obj <<
+/Length 1998      
 /Filter /FlateDecode
 >>
 stream
-xڅX[o��~ϯ�R
-�^D�:o��)��X)P�A�&W�6���Q~���R���0`�ggfgg�*�E���q�N�l�d�͊ûhV�����E�VDn'2����%Mg�p�Jg��l��a�Z��i�Y2ۖ����j{��o�,
-�����i*&?�wS�j�e��w���`���M���'/s�T�>9���a�\�Ow`z���,X��N#��cN�W=Sf�ϣ�ձ�L)~�̓(*^4��etl�ݼ-�᠛~q����P�L�CϮ�{1�:���v��F�݈q�����Y��g��
ọ�p#w���֦�j�E�.�b@#��m��(�6��@7F7���wv'O��\�F��Y�������YJ&�0̆u�s<�l���I�0N2��l���#���3#Q�USQJ�F��S��W�=<c�\J�e}]�
/����uf~�P��9�t�iuכfT�[�R��*����B���Z�(��w���4&��4d�	�z5N/x���A�p�:0�j�֚�it��S��E��$���L��t�_!���sp�����<��oT�\��������e`:�X��M��Qv��Z&�.�xw-k���d������f����2Z�������UJH�1��⿃u�,E88]�-��1_����?Y�T�h|'�X�R̢׽)���lu�&򫠶}b1� �/�Bn;Ŝ�L��6�B�d�:8ÎW�=>����_.�{w�`�j�3Mj��5�HgFs�o��r\\����Y��O)Q��p+D*1yy��5M_Ý2�F���A��_pwG�'�Q�YWX?�|[������e8:�'egl�y��;�$H�T�)�xJ�\��gS5,X�!�����(7�J}#��l#��t۫����M�FuL�V^�{\H��^�p�����`���n�k��x��:I����b��G��˫��9 t�Q$�w��?J<�^�I�Uo,%=bG'�
��O��r��t�
�S���=2�0������<��d+��.�$�(�APjJ�®�v�i��]gLiE�
ԩ�e�I�" 
-%n8���)����"7��ۛ�����]����
-����P�C���9���c�`B��4�{5�{K	‹�@�
-N�IHӰâ�mf1�ľ�Mm����h�EZ��x%q@K{#<�y��Πj'~8��=���Ty%�Nj1��(�y		������pA<y@A�"��7�%<�k�!9��ӆϷ_���"b��Ha?Qo��!�M/�n8p�s!s�/r������Z�@��E�,�x@:uw0�$ѥ�&\�N��LDܓ���r�Waz7t<����n2'x��8Xlr��������
-4��a��5��@�u`�0�6���:�,���?���L	3�����2ϵ�'rd�YF�cB���Mt�63L�\�:�#4��ٸ
-�ΉR�	�%��f��?��T�%.��mK�%�Wr���i�U�M�C~#MX;0��(	��Ah�� ��4�*���JFsmgїo�O<i��d�=e���^�5���mS#oH�B���E<�Fp���,[�-�þl�j�U^
��m�[DOx��U)�|�`A����X�ڸ^v��4̢6�d{�S�]�?��v�f�d�|h��)4����
-P�)
�Քĸ�����S@M�Z�~n��g�滰(��I�A��+/Ls��O�%�Q�X�G�p^K��^&�4��P�4��y�H���n�M�Ee.�b�	�c��e�X��ă�:�6��7�J���s7�1�K��-�eJ1�z9�;�:�|���ڗ�][�8��"����P)k��+���6�����3g�}��N����=���bOcƛ���Ǻ�����z���h}�S�Q�J�ݜ�%~jt�H�������Wx�||X���8��D�H����/d��E��2G#� &E���N�26Xf|ם
�u��h���ݕ"- �p���9����"#$�|g�����;l����~>87�s��f���d�� �ƾ�V���H�d���OϏ?��(Lҕ�
-q$��'�%��wzGJ;;��c�SC߫y*E�Y���UENm�ř<%����<�u��
-�^Ԑ�9���{�F nK� [8����sG:�!��Z,�'�˼���B�>\�i8���'|�㇎��q<�O^���O��K�2�x���O"�agIF�W����6}i�28"endstream
+xڍ]����ݿB�K)D��C��{(j���A�����p��G�ĭI.�%-+���E�'�����pvf8߫p�_8ۄ�&�G��4�e՛`v�7?�	�c%,�	ϻ�����x��wi<�f�8��4�m���&�l��
+�t�]��$����;S|��4e������q?*L⍿��ߵi�1*�\��-���zM6͋�kN��"M<�y����vn����l���zϚ)]��:g�ԝ巊	���<2�U�л����� �׵���Sa���G�1
u�A�AR�4S�q�FG�{Va��$�y&�Wc{�N�T]1Q�~�3����V��`�9����(^'�����2[U��i30�H�!(#]2��`���NeŅiGᭂJ����G-.�����TՔ��,x��#�U�{��%��+�"M����:��JTt����� E��_��Jn� fo�c��t�gFA����1�+Tǐ9��l{yun4C��8�R��G��$}.���HWؾ�n��M��#�i·��~.��\l+�f��@��-/M�Q����}����	�Q�bx_1��6���~�u���Q	�x��-��(@���{D�o�H�����Ф���(����#N�
+���P��zbd0�9e���b.���Yd
u����p��P_(��`����ѐF���Ga�̈K��g
�[6;58th�W=����՘�k���5��qz�8'��:3�U1�h�p
*�Ω֔�x�<	=���$�I����bF�N}Y�������:�;���LT���Q]��‡v���05b,Ay{/k���ԻҔ|�Oy�0Ke�n�
+��H��IJ@����O�D��s�*�K���*�OO�j�D3_\J�I0@a�7�v��+m�[����$�1�fH��>.�s���o80F�㳐3d�z-���[2A���$5ꓱ�3�������ܪ|z�/G���)��P���9������jPBL��4F_�!�Z���;s>q�>;�+�F_V4�o&�?kr���1��4yo��¯#�'a�8Ck@���)ns>�ͱfg�1B(���*�' �(�w���%�lD2Ԁn:�\R@U�Q��b��Y�g �stu�zZπ���u%�ɭ�X�s���䁿\E����Ӈ�:$�;k�ꌥ����
+o
i�M�X��G,v�Wx�����s���Pc���1dƅ���u��.�C���J�i	(�J
+m�nl���6�הԙ񵩴χ�69�4�~Tڴ��n�!�
'L��B�"8��ZmοS7�BH�f��*`h��]&@q5���K�.T��n��
+�\_
+�9˦�����}�=4=������=㾖����2s]gX�g��lj�~=�	��
}���wB?��x"��2�0x�f���nK���<���Ҋ�:@�͜�.�� Sb���ʞ��-�.�b �P4�i��g_�Uw�=	W�%p)�3�y�{��_0�gb#؊��Υ.8��z��@����!-��
+3m�$N�pX^�:
+�e�� �a��t��PSa��>�|�T�Įo�{�ݥ��$�SAc`R��'#�qM�OGd"�y“S��}5Z��!�z���Ap9�i����������'���֑j��p)@�����ޙ��'��
6d>l���X��TL<8}����L�d�S�(��Z״�\2�l���zw<��r	��G够l�(L���v[�';�&{S�iQ��½��-mES�~�	�$ّ��a�E�&!,���SW�݌�tH�������
�\���&���3�sH�
+�Gf��t���5Ъ�%�W�������% oE-fP;��{��=%.�-qHIp��CWø����C�ځR�GI����M�6M���4����ar}�'�4�����}��7��&�_��[n���݅��w�$��A4Aߥ��~����_�-W�endstream
 endobj
-4054 0 obj <<
+4132 0 obj <<
 /Type /Page
-/Contents 4055 0 R
-/Resources 4053 0 R
+/Contents 4133 0 R
+/Resources 4131 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 4021 0 R
+/Parent 4078 0 R
 >> endobj
-4056 0 obj <<
-/D [4054 0 R /XYZ 71.731 729.265 null]
->> endobj
-4057 0 obj <<
-/D [4054 0 R /XYZ 71.731 718.306 null]
->> endobj
-1764 0 obj <<
-/D [4054 0 R /XYZ 71.731 690.311 null]
->> endobj
-758 0 obj <<
-/D [4054 0 R /XYZ 185.739 651.039 null]
+4134 0 obj <<
+/D [4132 0 R /XYZ 71.731 729.265 null]
 >> endobj
-4058 0 obj <<
-/D [4054 0 R /XYZ 71.731 643.686 null]
+4135 0 obj <<
+/D [4132 0 R /XYZ 282.496 708.344 null]
 >> endobj
-4059 0 obj <<
-/D [4054 0 R /XYZ 71.731 571.97 null]
+4136 0 obj <<
+/D [4132 0 R /XYZ 71.731 675.268 null]
 >> endobj
-1765 0 obj <<
-/D [4054 0 R /XYZ 71.731 543.143 null]
+4137 0 obj <<
+/D [4132 0 R /XYZ 71.731 675.268 null]
 >> endobj
-762 0 obj <<
-/D [4054 0 R /XYZ 229.91 503.87 null]
+4138 0 obj <<
+/D [4132 0 R /XYZ 71.731 587.473 null]
 >> endobj
-4060 0 obj <<
-/D [4054 0 R /XYZ 71.731 493.728 null]
+1779 0 obj <<
+/D [4132 0 R /XYZ 71.731 556.489 null]
 >> endobj
-4061 0 obj <<
-/D [4054 0 R /XYZ 101.182 483.746 null]
+770 0 obj <<
+/D [4132 0 R /XYZ 185.739 517.216 null]
 >> endobj
-4062 0 obj <<
-/D [4054 0 R /XYZ 71.731 465.714 null]
+4139 0 obj <<
+/D [4132 0 R /XYZ 71.731 509.864 null]
 >> endobj
-1766 0 obj <<
-/D [4054 0 R /XYZ 71.731 409.858 null]
+4140 0 obj <<
+/D [4132 0 R /XYZ 71.731 438.148 null]
 >> endobj
-766 0 obj <<
-/D [4054 0 R /XYZ 319.355 366.761 null]
+1780 0 obj <<
+/D [4132 0 R /XYZ 71.731 409.321 null]
 >> endobj
-4063 0 obj <<
-/D [4054 0 R /XYZ 71.731 354.323 null]
+774 0 obj <<
+/D [4132 0 R /XYZ 331.48 370.048 null]
 >> endobj
-4064 0 obj <<
-/D [4054 0 R /XYZ 270.862 345.201 null]
+4141 0 obj <<
+/D [4132 0 R /XYZ 71.731 359.683 null]
 >> endobj
-4065 0 obj <<
-/D [4054 0 R /XYZ 71.731 325.112 null]
+1781 0 obj <<
+/D [4132 0 R /XYZ 71.731 329.834 null]
 >> endobj
-4066 0 obj <<
-/D [4054 0 R /XYZ 71.731 301.366 null]
+778 0 obj <<
+/D [4132 0 R /XYZ 229.91 292.619 null]
 >> endobj
-4067 0 obj <<
-/D [4054 0 R /XYZ 341.586 301.366 null]
+4142 0 obj <<
+/D [4132 0 R /XYZ 71.731 282.476 null]
 >> endobj
-4068 0 obj <<
-/D [4054 0 R /XYZ 89.916 288.414 null]
+4143 0 obj <<
+/D [4132 0 R /XYZ 101.182 272.494 null]
 >> endobj
-4069 0 obj <<
-/D [4054 0 R /XYZ 71.731 268.325 null]
+4144 0 obj <<
+/D [4132 0 R /XYZ 71.731 254.462 null]
 >> endobj
-1767 0 obj <<
-/D [4054 0 R /XYZ 71.731 237.441 null]
+1782 0 obj <<
+/D [4132 0 R /XYZ 71.731 198.606 null]
 >> endobj
-770 0 obj <<
-/D [4054 0 R /XYZ 256.243 194.343 null]
+782 0 obj <<
+/D [4132 0 R /XYZ 319.355 155.509 null]
 >> endobj
-4070 0 obj <<
-/D [4054 0 R /XYZ 71.731 185.52 null]
+4145 0 obj <<
+/D [4132 0 R /XYZ 71.731 143.071 null]
 >> endobj
-1768 0 obj <<
-/D [4054 0 R /XYZ 71.731 157.676 null]
+4146 0 obj <<
+/D [4132 0 R /XYZ 270.862 133.95 null]
 >> endobj
-4053 0 obj <<
-/Font << /F33 1306 0 R /F27 1208 0 R /F23 1201 0 R /F35 1569 0 R >>
+4131 0 obj <<
+/Font << /F33 1322 0 R /F27 1224 0 R /F23 1217 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-4073 0 obj <<
-/Length 2556      
+4149 0 obj <<
+/Length 2886      
 /Filter /FlateDecode
 >>
 stream
-xڕْ�6��_�7SU#�(Jyg픷6���$��z !�CP�~�v�<�:��q4�э�/"�ŋ<�>�6L�٢��D�G���M�+Y�`�?�y�1M�p�N��H�0]�y���,Y<��~<�c��r�dQ������摆�O���U%��y���=�,���&�z'3�T�.b�b����Ey���T�Q�e�Mp_���h�Q�eʨ�Po���h�J�l�9D�j��&
-���<��;��'�A!�q��� �G����
e��fߚZv�m��JQ�J���QZ��7oMɰ���b�ei��+ʦ��Q��k5x�Z��/�'�6#Y}\� ��6��8ݽ��۶�w4��b���)��qֵ��3c� ���Vچ�,G��vrDT��v�r6
=�X�T��<N���Y�y�@���U���!�B�Ly����$�/������V��a�ݲ�H�=�x0	>GQ���&��/��A{�A��ot G�L�4B����/���ԩ��ѵ�ĝx%���<Eq�3>�6xIV��z���yEn�v�3�Ć�������L2��e��̟5�i�>�n�h���d�t��>/{�$�=�b0:��h���]�>/1)�#��C�/Y<�↬KcW��db�2	{��T��3���2�h�2xJU�N��A�0��W��V;0Ew;^7۩�\&Q�E��gY����E�l���j���7���/���G6#&�,9K��w NG�梁���VL��ʫ�UGidך^�F�@�{��㯿��U�R,��k�]�L[ٛ�I���C�ZO������h�m��o$�B��7`.�C�z�9��o4'>{���=KJ�Vs�;��ӣ��}���'��A�ϥ�`�i�"�F�=��5����N&���e�L��)���.c��ܓZU��{��O��.�Kf>qqP���#ѵbg땲G�P|��q�i[]��8ש����%=d�[z8'v[��gz8�~_�Eo_j�Quyr��FZ3��=9U�$|�*i��b�����h��0{>(��	)`Eq+�{o߾�SAe��@��2�]l�{��G0�C�x�3�n>��}L���jHտhJY��EN��ɻ	j�X7�9��%��+C���7H T0k�9T���� 4����������Wq9G�����N�\�T�0��됞#������p(,��B%m7�
-�v�w���n7IO	]�B�F�n��EY(n�Hr�B����(ݶ��y��h;�O���#9#�U��2�L����Mf1��sWx�׫��B�*ZN��;������!X6mw��X���
-H�* �*�S��i8S\���j����tgy?�r�PB�ږ�LXQ`p����99^4�CK�x������K�߬2�b�+�eW�fi��������6j��Rk��u-W���Q��S�T�!]U���Ξ�s��,:Y����r��k/�4χj�bڥ6n�g���Ϣp�lӮ�zG��ـ%RR\2�Pz��h[�^�b4���6tt�)�ތ��q����5s���Y�˖��XI/�Q�g���t�@Hh�L��
-$�E�W�s�ٟ*Zٟ����z���;*�����vluF6V#</H+Gem�I�`�/}��i�R���g^�
-0�V�؎���m�K��\sM�~6��=kR��a�g۩N�./�l����	�N�D�F�A#Ȝд��_��Vk�L�&�:�"Z�y���p@�S�J,���܁۶lI�v�<;(�t���";̃�m�2e����`�7�;gw�)cA`0^gT�QK(�'��� �';�I��k�a`�J>�vr��L�5���3�c���/:�+��"
-7�����H����08pe�Sj~fl�0�8����e�i�JCj
:h���A�!�|2��΍(is��sE#�`R�p���!��Q�w!p���-��4e�
-���3�-���w����`�� ��,���ѼϨ��O����b+�^]�e���^�%�i��v���޽�aT$qM_�-e�W����x��0��7�Ր ��>��U�>�BW)�,8����-&�[�;E���Np�:��<�+��
Z�*�E^�1|����U�^���AQ�^�ұ�V�+�������0:z�����}�g&u��Kخ�T�-|b�l��A��uRy�w���E�J��i�s���m�y��W��DǑݿiK��½�H�l���h��j�YC-'8����;B�e#�4�ʼnKt@��u�:.�E'��H0����sbho�q�-�x�%��#v
,Kk��������WO�F�Z1�P�]���f�5O��E��`�ǹm쳖m��u����	�v�:��|������@� �.a�brZ���l��B]��\2
���R�t'$�׌�K����D����!Qr�E�7�掐���XVC=r�z$����bn����d�/q���%	^b�������z%�|endstream
+xڽْ�6�}���/#W���e�[�L'5�Iz��$U��ڢe��]�1==_��J��#O[~�i�ƃ���n�'ظA�d����3߿�b� +��ӛ�}�7w��7O��(�0In�0p�qp�����Yԝl�� ��إﯭ*�|���<�?����i ���Y�y203��td���[�ai��:��vD��c�;�S���qi���+�U{{^����l[˲��-/��e;_��̫Z6-�W��d�e�9����D�ɶUۜqK�=���ξ���Z�U���gY�`���3�y
|K1n��G�O�0vh'��<Ҧa"�"�uUI���/�-U�ޫ��"�W�A�������)�@>����CZ�zF3�&A]�g��C7�k�@)��q��Z�O$���f
&����k�_����a�?H����6�ٸq��8 #���R+%��ת��/J[���g�sh�r_5�蔖2J��55��I�pe��2���%Q���Ƕ�U�hJ-���n��;tX����ͭh�`a}�%�h��HA�?����P9����5��"���9�p�<>W'�Ўzw�w� �|���R�xDPw8?8�ZE^� ����/���`�s~��pKs��p���P��i=�7�y�Zˬ3�PR8��_'h|�!��eG��w�ɦri���@�����w'y-�:g�j�Z���e����W쩁-�M�P�0@߂y��RmU�p䬬cr�F��S�����DǞ��4j��#춺4J�����?�|N����*&���;
+&v}#R���D'g����{���%8��a��ƉF��0 zp�yu8h=C[�������F�vU��v��1�jTշ4&Z��`���'i���4�7�`�T���sMN
+[����oı����Q� WY�X܍�2;4��hm�Ojb�A'���G�D�i�q�4��b���ltT�����A��}pQb�<�9y� �lh�,J���c���!���,�>����Ƕ��5�qb��H�$n��s-Ƥ5��R+�1���ȍ��Ď�#qZr�� ��&�hB���-���0�%_�R4h��Ȑ��^��|}Y��p�gP���j�o�{�Gd_�U��/�Q�vC�I�o�מUP��9�`�)�!�)hN캂��g
+����W�5��9	x��ʔ���8YU����䕱E�A0��f�s��O���_�ɾZ+���@
Է�3�QGc��C�����w#�S9�C�yTkR��;6�?A�%p�.�7a��q|�/�
+��w���S���h�9�~��=����Fb�nf���M��!�0��!���uC���E�8؞�d:�&�`	a:�����<B>�e�<���C�b�jj��������b�V�ؚ\�?�B �%�Ys#�9�1�5�͉]�ܜ�Ls���N��8�0I9/�}�6�s�Rq	M�i�<��Z&I�S�T�WJ���e�`:->ÀNO����Bu��\�OT5�>�W̽��q�x�N땓�*�
p,E�S����_BSR�Н@j��f�����0��
+*��p�<���M��E�`Θ���b�'�]5�ď�Ӧ~_�g�&!J��ep-]o3M�=�!V�r����4v����΂9'Y��&�9�뒝�I֢��
+e�N�&
+�K�0��f�}���9�R�#�⩁�^#��U#y��k}�Uw��܊>���m�'�f�� %�=dv�S/���T�S�~?�a��ng^:[e��l��b+��9��e���g-%�{�eKa�Y
+C\��9��2'>���wJ�;pk��;sd�o7"n��c���`���x>Z��Vv/ҨC�	�8��he�VY�Ӆ�E�
���������Գ
+m6œSC\S؜�u�͉�fQ�3�*c�aK,���o�Ґ�J�'
���%E :U���B�#}���W4DCИ�ӈaR��'T]j��~X�w9�}���4����Q~�]�/�o�e��������.;ˊ�
r9���g
��]�r�9��3'�fM3J׍iFyfK#�߹ZL�kn�����[i�Y�2|��TK��u|ϙ����ƪ*S�S����0�25�Z�R���!bl;�Y<�;�r�	�?�d5/�dLf1M�1ą9o�8��K+�܎�_�C�����~�ZH��>�����U�Ykֱ�G�3�=�+y��U�<A��$mꏓL[�k�U[��E	���~Rd���3ab�Fc�m�nw�����9-g��/���9i���7�+�*��8�U�V��R��s�jr84C���r��EM�M�|�b�&MD|wٝ|��WF�*R�3Rz��f~<���7D�Q��S��
+�p�`T��EN��E��^�t8ɡ(ͥ���PX��Գ/4#��ص���I=�qO_x���ӝpY����T���yɼB�*���̊���7���)�+z�����f�z�w]S���]�k��"z����٥��L�o}�j˷Xh��EvÞ�;|Ͱ78�ֻ�������m����<g��۝�Q��ۮ��)�qج���f��_����Y[�KoL?U��W�(���„_���q��|�kH�
+U��h��( z�FK�Z���W0`Q@K��*s��] -��ʘA&����C2�CѼ��i9!p.w,��,	öZ��󕞤y�+�5�8�+��꼝�K��� �V`Hd��K��z��A�I���#����>�k�_	>#wDe�0�Gn+��]�����&<�hw�Lְ��ٟ�O�t�N�'v�v��p0kI�7V;5������4.�ǧ�3w�kw�_y�@f������	2�l���gN���tendstream
 endobj
-4072 0 obj <<
+4148 0 obj <<
 /Type /Page
-/Contents 4073 0 R
-/Resources 4071 0 R
+/Contents 4149 0 R
+/Resources 4147 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 4021 0 R
+/Parent 4078 0 R
 >> endobj
-4074 0 obj <<
-/D [4072 0 R /XYZ 71.731 729.265 null]
+4150 0 obj <<
+/D [4148 0 R /XYZ 71.731 729.265 null]
 >> endobj
-774 0 obj <<
-/D [4072 0 R /XYZ 262.949 707.841 null]
+4151 0 obj <<
+/D [4148 0 R /XYZ 71.731 718.306 null]
 >> endobj
-4075 0 obj <<
-/D [4072 0 R /XYZ 71.731 700.488 null]
+4152 0 obj <<
+/D [4148 0 R /XYZ 71.731 695.392 null]
 >> endobj
-4076 0 obj <<
-/D [4072 0 R /XYZ 406.408 674.765 null]
+4153 0 obj <<
+/D [4148 0 R /XYZ 341.586 695.392 null]
 >> endobj
-4077 0 obj <<
-/D [4072 0 R /XYZ 512.678 674.765 null]
+4154 0 obj <<
+/D [4148 0 R /XYZ 89.916 682.441 null]
 >> endobj
-1769 0 obj <<
-/D [4072 0 R /XYZ 71.731 641.724 null]
+4155 0 obj <<
+/D [4148 0 R /XYZ 71.731 662.351 null]
 >> endobj
-778 0 obj <<
-/D [4072 0 R /XYZ 258.989 604.508 null]
+1783 0 obj <<
+/D [4148 0 R /XYZ 71.731 631.467 null]
 >> endobj
-4078 0 obj <<
-/D [4072 0 R /XYZ 71.731 597.156 null]
+786 0 obj <<
+/D [4148 0 R /XYZ 256.243 588.37 null]
 >> endobj
-4079 0 obj <<
-/D [4072 0 R /XYZ 71.731 582.227 null]
+4156 0 obj <<
+/D [4148 0 R /XYZ 71.731 579.547 null]
 >> endobj
-4080 0 obj <<
-/D [4072 0 R /XYZ 71.731 577.246 null]
+1784 0 obj <<
+/D [4148 0 R /XYZ 71.731 551.702 null]
 >> endobj
-4081 0 obj <<
-/D [4072 0 R /XYZ 81.694 556.488 null]
+790 0 obj <<
+/D [4148 0 R /XYZ 258.989 514.487 null]
 >> endobj
-4082 0 obj <<
-/D [4072 0 R /XYZ 71.731 554.332 null]
+4157 0 obj <<
+/D [4148 0 R /XYZ 71.731 507.134 null]
 >> endobj
-4083 0 obj <<
-/D [4072 0 R /XYZ 81.694 543.537 null]
+4158 0 obj <<
+/D [4148 0 R /XYZ 71.731 492.205 null]
 >> endobj
-4084 0 obj <<
-/D [4072 0 R /XYZ 71.731 528.429 null]
+4159 0 obj <<
+/D [4148 0 R /XYZ 71.731 487.224 null]
 >> endobj
-4085 0 obj <<
-/D [4072 0 R /XYZ 81.694 517.634 null]
+4160 0 obj <<
+/D [4148 0 R /XYZ 81.694 466.467 null]
 >> endobj
-4086 0 obj <<
-/D [4072 0 R /XYZ 71.731 504.583 null]
+4161 0 obj <<
+/D [4148 0 R /XYZ 71.731 464.31 null]
 >> endobj
-4087 0 obj <<
-/D [4072 0 R /XYZ 81.694 491.731 null]
+4162 0 obj <<
+/D [4148 0 R /XYZ 81.694 453.515 null]
 >> endobj
-4088 0 obj <<
-/D [4072 0 R /XYZ 530.108 491.731 null]
+4163 0 obj <<
+/D [4148 0 R /XYZ 71.731 438.407 null]
 >> endobj
-4089 0 obj <<
-/D [4072 0 R /XYZ 71.731 489.574 null]
+4164 0 obj <<
+/D [4148 0 R /XYZ 81.694 427.612 null]
 >> endobj
-4090 0 obj <<
-/D [4072 0 R /XYZ 71.731 456.205 null]
+4165 0 obj <<
+/D [4148 0 R /XYZ 71.731 425.456 null]
 >> endobj
-4091 0 obj <<
-/D [4072 0 R /XYZ 81.694 445.41 null]
+4166 0 obj <<
+/D [4148 0 R /XYZ 81.694 414.661 null]
 >> endobj
-1770 0 obj <<
-/D [4072 0 R /XYZ 71.731 438.272 null]
+4167 0 obj <<
+/D [4148 0 R /XYZ 71.731 399.553 null]
 >> endobj
-782 0 obj <<
-/D [4072 0 R /XYZ 243.84 401.057 null]
+4168 0 obj <<
+/D [4148 0 R /XYZ 81.694 388.758 null]
 >> endobj
-4092 0 obj <<
-/D [4072 0 R /XYZ 71.731 393.704 null]
+4169 0 obj <<
+/D [4148 0 R /XYZ 71.731 386.601 null]
 >> endobj
-4093 0 obj <<
-/D [4072 0 R /XYZ 71.731 373.794 null]
+4170 0 obj <<
+/D [4148 0 R /XYZ 81.694 375.807 null]
 >> endobj
-4094 0 obj <<
-/D [4072 0 R /XYZ 219.242 362.999 null]
+4171 0 obj <<
+/D [4148 0 R /XYZ 71.731 360.698 null]
 >> endobj
-4095 0 obj <<
-/D [4072 0 R /XYZ 71.731 321.988 null]
+4172 0 obj <<
+/D [4148 0 R /XYZ 81.694 349.904 null]
 >> endobj
-4096 0 obj <<
-/D [4072 0 R /XYZ 71.731 307.044 null]
+4173 0 obj <<
+/D [4148 0 R /XYZ 71.731 347.747 null]
 >> endobj
-4097 0 obj <<
-/D [4072 0 R /XYZ 71.731 257.993 null]
+4174 0 obj <<
+/D [4148 0 R /XYZ 81.694 336.952 null]
 >> endobj
-4098 0 obj <<
-/D [4072 0 R /XYZ 164.944 245.042 null]
+4175 0 obj <<
+/D [4148 0 R /XYZ 71.731 321.844 null]
 >> endobj
-4099 0 obj <<
-/D [4072 0 R /XYZ 368.717 245.042 null]
+4176 0 obj <<
+/D [4148 0 R /XYZ 81.694 311.05 null]
 >> endobj
-4100 0 obj <<
-/D [4072 0 R /XYZ 273.801 232.09 null]
+4177 0 obj <<
+/D [4148 0 R /XYZ 71.731 295.941 null]
 >> endobj
-4101 0 obj <<
-/D [4072 0 R /XYZ 71.731 224.952 null]
+4178 0 obj <<
+/D [4148 0 R /XYZ 81.694 285.147 null]
 >> endobj
-4102 0 obj <<
-/D [4072 0 R /XYZ 317.393 201.206 null]
+1785 0 obj <<
+/D [4148 0 R /XYZ 71.731 278.009 null]
 >> endobj
-4103 0 obj <<
-/D [4072 0 R /XYZ 232.347 188.255 null]
+794 0 obj <<
+/D [4148 0 R /XYZ 243.84 240.793 null]
 >> endobj
-4104 0 obj <<
-/D [4072 0 R /XYZ 71.731 186.098 null]
+4179 0 obj <<
+/D [4148 0 R /XYZ 71.731 233.441 null]
 >> endobj
-4105 0 obj <<
-/D [4072 0 R /XYZ 71.731 171.154 null]
+4180 0 obj <<
+/D [4148 0 R /XYZ 71.731 213.53 null]
 >> endobj
-4106 0 obj <<
-/D [4072 0 R /XYZ 91.656 149.998 null]
+4181 0 obj <<
+/D [4148 0 R /XYZ 317.393 189.784 null]
 >> endobj
-4071 0 obj <<
-/Font << /F33 1306 0 R /F23 1201 0 R /F27 1208 0 R /F44 2037 0 R /F35 1569 0 R >>
+4182 0 obj <<
+/D [4148 0 R /XYZ 232.347 176.833 null]
+>> endobj
+4183 0 obj <<
+/D [4148 0 R /XYZ 71.731 174.676 null]
+>> endobj
+4184 0 obj <<
+/D [4148 0 R /XYZ 71.731 159.732 null]
+>> endobj
+4185 0 obj <<
+/D [4148 0 R /XYZ 423.246 150.233 null]
+>> endobj
+4147 0 obj <<
+/Font << /F33 1322 0 R /F27 1224 0 R /F35 1589 0 R /F23 1217 0 R /F44 2069 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-4109 0 obj <<
-/Length 2743      
+4188 0 obj <<
+/Length 2927      
 /Filter /FlateDecode
 >>
 stream
-xڝ˒��_��RU����zʓr*e;��N*���H�J��ǎ'_�~��Di&�ҁ@����n�
-W��U�YU�*MV��]���ʟޅ�������û�Q�*�"�VO�8��(MWY��<Q�����ݾ<
�[oUx��߿������q�_s8��=���w�$��"�^���,�R�,�=[��Q�L�?�Ly/��~
2�<=�/�0�4φ����a��x��V�79����ۣ�|6�ӽ�uϓ�w��tЃ>�0����l�[(���7,ư�>+�}�?t�2'�=��>P�6T~!��O��9T#嵧��M�c��P>4���C�V������:��-��=���������^�t ����"�ó�(\����m_�a���g<�ʆ�M'
\W<��?b�l��
-��M�3��#��I��PV��?��{�⪰\׺��
O��'U{�6��cY�
CY	�;u������j_6;��z�|�Z�=��F2�5�R֨���!ā��;}(���Đgj���
&e�����)w*�C?)�Wㅃc�&\�̹�E�L�b?QW�]~g���).䡟’��g}j;	V���d�o���<��%CR���;�o>�[��n�O;�P�ٚZU�<��:�ce^S�����vl�5(��2�c�C�������S ����&���u��8��+o�w��m�.�/��p���f�h�QX�hްP�o{R���W�N�H��d͋@2/�eϫ�Z�|�R����`!��:ݟ���xj���1p�8b�cT��1�v�$/q.8z��f��:�x�%K ;	O(�_	�\(�?��W]����B�
���M���҅\���I8���R�I��a ����B�ˬ�sO�&Z�=C�),�7ZdgN���%P�����ߥ��?�1f�,����a�����!��<��tpn9�`��Kfo;Ò���ww|�-��L���BKC%��@\x� l�:=�!X��q��e��s�e�G�~�^88��*o�u��m�.�/��p�u��k��l!��7�ȏJ�U����lf�K��qlm���OcJޮų�b��Q K.22�<���I��`*�u=�P�+���,u�~���?sUӟ���c�|���n�nF�V9%E��u�j�R?
����##B7!�ď�"�/p^�fn��c���'M;��QP�H�(�A�O��17�]j��9]*����������Z�>Q�booM�foEl0��`�K�"��Ɖ`~gtLI��(ˤ��#�\���iR7����쎃˾ad��|�c{Y�yF��?���DJd�vT���B�o&��R�Y����C.*���_����pl���9H�H�l��j��/��`�NGM�c'B�q,��D�m��G�7�.��<t��޺J#;.z4��=�?�C�V�;�Km�����Rr��#aa�g%䶷�|��>C�Ql��)��G���ؓ����fS7��!f�lZ���wi��.=��&V%���Y�-_��p�c�L=;@	B�:����� ���a{a������!�1��ˡ�:u���9�2��o|�Ϳ�G\���}~������d�@G�^�/���+z�H��2�꟒�E)8\��� ����\9�=&���|b06���>s��fIP�/j�l�FhS���]���b�|��l��s\��l�?'0����ҧ����+e2x�|[�Z���2󹅈���k��g�:I�i�]ɢ!��p}#�Fi,Itz��,�W�#�b:�߷m��.�-�`y�˚
��B�,�E��1Gk���@{<���U��&�y����������K4�Vε
��K�).ږ��<L�q�\�����5�Zk���)5f���	.��h�H���RjF��� ʎ����.�7>�>���p\a��O��A6�=��D����4��%�T{��->?O��j!P*oQ���Z�a����ۇ}D�",S����+�y2�H��>߉��Q�$��n�
-�e��g�ђ��,s�1�QiKOӣź��`(ES�D���PHzDF�)�����<t�s�MK�&�YN%'^ǩ��&o�ΥmA��:���C���<�`d:F{�M���
p��CW��~����]�
�@�xh�+6�M5��G�y�c��~�Q��+tm �0����N�-�Ʀ��4i×�j?[>�(�ܼa��
-������@�E�J*��"I�FUdnĄu�d4lǁ1��X��摬$b�˻q�����R�?��}��n�ΘF��f�?[��+lcJ�8�����liĝntqcp�lS�=��q���;|�@(��>/�o���
-�v�^ѫ	�j�l*�}C�f!���8�ߴFhs���%[˩ЊP����Dz�������&Ӣj��O���
������ik[
-�vvؓn��� 2g�0����5��$a�L�0�c��ʟ0'��h š+/�:�U�*~��䓥��ί��i��?HZj�3����ݩ�iF�6�{�}+�����f�:��\�O铈�����$P3�ق#�|�����޿O][��Ĕ]׎��"xL�t��y����L��V���h��g�\^��9Qw��Sx�M;
-VYMc0��!�/M�)�Ѡ@t�-��<�^}m�Q��'*�e�������KN�D10�endstream
+xڝ˒�6���m��!�7%��L�[����&�8��0$$1�H-Ay2���/��(�\�9h4Ѝ�F�8�"��hQDA��O��<[��7�b+{	�/(����㛷�d��y�x�,�$	�<_I��x�X��{ةà��g�������-�?n�W7�Z����o><�fI�Wɫ<Y�Sq12e���$M��ǝ���O��S<���y�^��m�=���e���k
�}�q>�q�a�jA�ˁ�;���t{ݵr�2_�-���у����a��-��
+����`��W�	��Q�E@X�Dg��� `��+�n��x�f4/T6�t5X�u�8�y�;2�ĩځ�tY��u�kD���2OxZơw�����v����2EU�=�^������Zv��r���X"�Ыz���q_}dž�[��h;�p�N�_��?�������8o?�q>��_�Q��m,��>]DU���'��!/V��f�V5�lp�3<x�x��� {�슧M���qY$l����h���P;~ڈ�M]��`r����t�€�x�2��(?��3|[|�
+>ֺ�ނ-Շ-�|A�XG;-ac�1?�8�(��5�4lĆ笐Dn�U��?�f���>�����C�"d�ph��	��Q��I�T-���Ix��^�OD1<A?ŧ�>��\p
+�ʳ���A����=i�԰\U�"��g���۟6��M{U�{�����C_w}=�0�ܩv�r�ʀG,V�������4+RV(��� Ā��{�(2�]}��Jg�0#��yl�������V��K�F&x���,�ƙ͈�A_$v�;�-�����*
+�u:���>t����C��
+���3�T9�M��
+�{ӵ|�u<�[pC�^x�3��w��܊:����#1+��Z��opQ�ݑ=j��3P��D�XA��A�п�7?7�p$�5���*�_W�sM��qK�sb��;'>S�C��1��� �h�z�u�}ڑ�4�H���zA#��U/I�8�)ëOZ�8|��H�t�`�A� [���
��|�1�w4�9��Xl%z,2��{s�$+q8Z��D���rR��N�b��\��'��P�3��&4�\3!��eBsb�MhN|fB��� z]���$�Y�0���I�!�Vv��Rp���ᆡd�}��-��Q�:y	d��B����D3̝��@�蟃���_3�8�׋��)0�-K�Q�m3�3;I?<��}�q4��h/���\SI��t���a5_�愆`�j���g���h�IKL�j4,�p}#q��T0n)uN�V��gju������I
+P���o>�2V�Uژ��rƾ���W���n,�)l�/���u%�#IN/
+)Ê���I��%d���l��4Y��)c�y„��fb'��5u���`���(%Y�@)9*�/�88f�d�1Z��hq�al"��ݞ<��(�d��	��<i��O������l4� 6���O>uEO
+�7@Gi�=�+}�
+V�=�l�����LcYl1�na+d<Ί��MbN�?
�UZpӆ�������p��J!�=�����!ԁ����qp^o!�����;,+�ϸ��NK�^�-�)ߝ(�s~�b��+4�hF0�!�t��b�7�{A�fᩱ۔��jЌM���>�������;�siI��؅�L������j�qV��i\�����Vf�2z�z�-�{��L5�Y��]	�3�^2`�Gd�br�Qجx��<��
+�P���n��rzBH��߹6���&%�F��U�����7��j�SI�D�tB	0'aAQ��Al�!���)/.[��ɺ�S���F�Q��u����
����Ҍ�5p�:��{�8
+�u�����A����_�ԝȭ�2�ʟB�E(8�+��LE����*v��'�T��D��6���:Wn��Ē�@=ԉڪ{9�j��‡��H7���*�������c�b���#I�,}���I����!���
+gj�vc�{�!r����x���%T�w!�FF⌃h��I�Ju��E��.�#�R��o�E��
+
+ba
+�wZq˶H�!��N��e����_l��=ϡ(*��ͼ�IB���<!b�!5�zLT�/��#H�l�<�-v!��P��H5����YB��0���SI���=��ל�6RĄ�_)8�
��d��\,cz�Pw���0���q��6;i�l<�"a��F��n��5�	���������])�qC�-
+��^J=��8��ca�M�8�)8�h5)ɅI	*'3�1�/F���	e����]�>���{���%�z^�|Iu���+��S��>~�Vɘ�:��1c;n��|�4~�����(�u�*�f|��N)�``���g�)�z�9^�m>fLH���~N��^�F�����g#Z����#���_�_2Zaea4��#��/~-�g���{_���6#� p��1vG��^�@��'�ns�#��$;zS�����^��������bj��a��lL���p�V}���	��z��N)l����uM]��op�7*T��P�말5<�"���f>��5�TB=b��:�0��&���|�&��jp)Υ����y´<V3�}Ƣ/c驆a�k�r��~��M�ȍ[��`��ND>s���|�)\�X�i-�� ������l�.�Z��s���Wy�ots�<a&NG��+�x��]f���q8儆}B胰�򲱙��8��S�U�ϡT�i�7rhb
?��f��:�+�Z��A�^d�LЇ����ۋ�����h�żG�Ͼr5�%�_5��mM�b�{�|�L��S]kQ��`�v�F��?td�*c{
+����Ɯ�����endstream
 endobj
-4108 0 obj <<
+4187 0 obj <<
 /Type /Page
-/Contents 4109 0 R
-/Resources 4107 0 R
+/Contents 4188 0 R
+/Resources 4186 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 4021 0 R
+/Parent 4228 0 R
 >> endobj
-4110 0 obj <<
-/D [4108 0 R /XYZ 71.731 729.265 null]
+4189 0 obj <<
+/D [4187 0 R /XYZ 71.731 729.265 null]
 >> endobj
-4111 0 obj <<
-/D [4108 0 R /XYZ 71.731 718.306 null]
+4190 0 obj <<
+/D [4187 0 R /XYZ 71.731 718.306 null]
 >> endobj
-4112 0 obj <<
-/D [4108 0 R /XYZ 475.448 708.344 null]
+4191 0 obj <<
+/D [4187 0 R /XYZ 205.058 708.344 null]
 >> endobj
-4113 0 obj <<
-/D [4108 0 R /XYZ 71.731 667.333 null]
+4192 0 obj <<
+/D [4187 0 R /XYZ 429.486 708.344 null]
 >> endobj
-4114 0 obj <<
-/D [4108 0 R /XYZ 71.731 662.351 null]
+4193 0 obj <<
+/D [4187 0 R /XYZ 71.731 675.303 null]
 >> endobj
-4115 0 obj <<
-/D [4108 0 R /XYZ 81.694 641.594 null]
+4194 0 obj <<
+/D [4187 0 R /XYZ 475.448 664.508 null]
 >> endobj
-4116 0 obj <<
-/D [4108 0 R /XYZ 491.507 641.594 null]
+4195 0 obj <<
+/D [4187 0 R /XYZ 71.731 623.497 null]
 >> endobj
-4117 0 obj <<
-/D [4108 0 R /XYZ 71.731 628.543 null]
+4196 0 obj <<
+/D [4187 0 R /XYZ 71.731 618.516 null]
 >> endobj
-4118 0 obj <<
-/D [4108 0 R /XYZ 81.694 615.691 null]
+4197 0 obj <<
+/D [4187 0 R /XYZ 81.694 597.758 null]
 >> endobj
-4119 0 obj <<
-/D [4108 0 R /XYZ 139.516 602.74 null]
+4198 0 obj <<
+/D [4187 0 R /XYZ 491.507 597.758 null]
 >> endobj
-4120 0 obj <<
-/D [4108 0 R /XYZ 71.731 600.583 null]
+4199 0 obj <<
+/D [4187 0 R /XYZ 71.731 584.707 null]
 >> endobj
-4121 0 obj <<
-/D [4108 0 R /XYZ 81.694 589.788 null]
+4200 0 obj <<
+/D [4187 0 R /XYZ 81.694 571.856 null]
 >> endobj
-4122 0 obj <<
-/D [4108 0 R /XYZ 478.291 589.788 null]
+4201 0 obj <<
+/D [4187 0 R /XYZ 139.516 558.904 null]
 >> endobj
-4123 0 obj <<
-/D [4108 0 R /XYZ 71.731 574.68 null]
+4202 0 obj <<
+/D [4187 0 R /XYZ 71.731 556.747 null]
 >> endobj
-4124 0 obj <<
-/D [4108 0 R /XYZ 81.694 563.885 null]
+4203 0 obj <<
+/D [4187 0 R /XYZ 81.694 545.953 null]
 >> endobj
-4125 0 obj <<
-/D [4108 0 R /XYZ 373.716 563.885 null]
+4204 0 obj <<
+/D [4187 0 R /XYZ 478.291 545.953 null]
 >> endobj
-4126 0 obj <<
-/D [4108 0 R /XYZ 71.731 561.729 null]
+4205 0 obj <<
+/D [4187 0 R /XYZ 71.731 530.844 null]
 >> endobj
-4127 0 obj <<
-/D [4108 0 R /XYZ 81.694 550.934 null]
+4206 0 obj <<
+/D [4187 0 R /XYZ 81.694 520.05 null]
 >> endobj
-4128 0 obj <<
-/D [4108 0 R /XYZ 511.114 550.934 null]
+4207 0 obj <<
+/D [4187 0 R /XYZ 373.716 520.05 null]
 >> endobj
-4129 0 obj <<
-/D [4108 0 R /XYZ 71.731 535.826 null]
+4208 0 obj <<
+/D [4187 0 R /XYZ 71.731 517.893 null]
 >> endobj
-4130 0 obj <<
-/D [4108 0 R /XYZ 71.731 520.882 null]
+4209 0 obj <<
+/D [4187 0 R /XYZ 81.694 507.098 null]
 >> endobj
-4131 0 obj <<
-/D [4108 0 R /XYZ 71.731 483.487 null]
+4210 0 obj <<
+/D [4187 0 R /XYZ 511.114 507.098 null]
 >> endobj
-4132 0 obj <<
-/D [4108 0 R /XYZ 339.03 431.681 null]
+4211 0 obj <<
+/D [4187 0 R /XYZ 71.731 491.99 null]
 >> endobj
-4133 0 obj <<
-/D [4108 0 R /XYZ 96.637 405.778 null]
+4212 0 obj <<
+/D [4187 0 R /XYZ 71.731 477.046 null]
 >> endobj
-4134 0 obj <<
-/D [4108 0 R /XYZ 276.322 405.778 null]
+4213 0 obj <<
+/D [4187 0 R /XYZ 71.731 439.651 null]
 >> endobj
-4135 0 obj <<
-/D [4108 0 R /XYZ 71.731 403.622 null]
+4214 0 obj <<
+/D [4187 0 R /XYZ 339.03 387.846 null]
 >> endobj
-4136 0 obj <<
-/D [4108 0 R /XYZ 71.731 388.678 null]
+4215 0 obj <<
+/D [4187 0 R /XYZ 96.637 361.943 null]
 >> endobj
-4137 0 obj <<
-/D [4108 0 R /XYZ 187.678 379.178 null]
+4216 0 obj <<
+/D [4187 0 R /XYZ 276.322 361.943 null]
 >> endobj
-4138 0 obj <<
-/D [4108 0 R /XYZ 71.731 327.97 null]
+4217 0 obj <<
+/D [4187 0 R /XYZ 71.731 359.786 null]
 >> endobj
-4139 0 obj <<
-/D [4108 0 R /XYZ 180.774 315.019 null]
+4218 0 obj <<
+/D [4187 0 R /XYZ 71.731 344.842 null]
 >> endobj
-4140 0 obj <<
-/D [4108 0 R /XYZ 391.53 315.019 null]
+4219 0 obj <<
+/D [4187 0 R /XYZ 187.678 335.342 null]
 >> endobj
-4141 0 obj <<
-/D [4108 0 R /XYZ 71.731 281.978 null]
+4220 0 obj <<
+/D [4187 0 R /XYZ 71.731 284.135 null]
 >> endobj
-4142 0 obj <<
-/D [4108 0 R /XYZ 104 245.28 null]
+4221 0 obj <<
+/D [4187 0 R /XYZ 184.776 271.183 null]
 >> endobj
-1771 0 obj <<
-/D [4108 0 R /XYZ 71.731 238.142 null]
+4222 0 obj <<
+/D [4187 0 R /XYZ 71.731 230.172 null]
 >> endobj
-786 0 obj <<
-/D [4108 0 R /XYZ 204.474 200.927 null]
+4223 0 obj <<
+/D [4187 0 R /XYZ 71.731 215.228 null]
 >> endobj
-4143 0 obj <<
-/D [4108 0 R /XYZ 71.731 193.574 null]
+4224 0 obj <<
+/D [4187 0 R /XYZ 71.731 166.177 null]
 >> endobj
-1772 0 obj <<
-/D [4108 0 R /XYZ 71.731 150.75 null]
+4225 0 obj <<
+/D [4187 0 R /XYZ 164.944 153.225 null]
 >> endobj
-4107 0 obj <<
-/Font << /F33 1306 0 R /F27 1208 0 R /F23 1201 0 R /F44 2037 0 R >>
+4226 0 obj <<
+/D [4187 0 R /XYZ 368.717 153.225 null]
+>> endobj
+4227 0 obj <<
+/D [4187 0 R /XYZ 273.801 140.274 null]
+>> endobj
+1786 0 obj <<
+/D [4187 0 R /XYZ 71.731 133.136 null]
+>> endobj
+4186 0 obj <<
+/Font << /F33 1322 0 R /F27 1224 0 R /F23 1217 0 R /F44 2069 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-4146 0 obj <<
-/Length 2467      
+4231 0 obj <<
+/Length 1686      
 /Filter /FlateDecode
 >>
 stream
-xڝY����ߧ0�fe���|h��ӴE�	�n���lѶYruȿާ��!%�� (|!rf8Ι�����R�MC��$��py�N����/[!��h>�޼�C�r7O����
�d������jW��y9�Au�m{N�����jN~O_��.������w;�a�n���*��y*W~�~�R��y��F�*v}�EI3��ڲt�3�M��n1$�M��z�m�q�k���� r^U]cThH�g@?�+1ۯ��x��~��b�gg��u�{N�턛�7ٶ=���J��CH
-�I��;*�w�b�;�^��0����0��{���p��T�f����Q� ։��X����?�N5�H2+�KRD`�F���MĤ�A}��,�b_�$�A�1����s�iz���ӎ�9)!��#��0��XexY�EB�T����׺��r��p$���
�D<)��0
'�\t�E�\?����'�Ƿ��z���s����V>����F�K�rxL�1\{p
-�����g��2�C��ɭ�U��B`���-��Ֆٖ�Dl��,���W2sQZk�Wﯕz�'��[�s~m�\���Sh�5��^'ޭ�ơ�;|�����%��|��)�I��Q=���p��G�C��B{hGʓ=�[��� ��v|��g��U
-Sє,�I��i#���_�A���W�×��C����Q���
����iX|��E�����C;�l�L�Px߮��Q,���V"���R�*U!�# �Iɢ��)
��y �����<�NU�D⪡�xԉ��6��ɰ��pn�^2�����E��VU�c(�f!HΠ_I�L�b�tn��K�:�b]�눣��A����5H���"�fp&��{��d$�&Νc�]��%��F�m�O�tw���Z��$���lo��z��L��Xյ����D.{�t+:�K^��es%1ˎ�b柋���Ŀ.1ut'�1H��%��"�VV��m���$�+>�ԭ��3>F]���V]���[P*fl\�)�@2��]u�ݫ��w� �/NkbI�j��\���J>F�L
-0��X�iKmI�E�0�������d�l��޴�ڗ��¾�+Y��L�rY�j��:�#ro�<��0�˽ 造n��(
-���j�����Q�-�uՇ�B��ip(�8clS3���Lk�v�—O_�A�l��@ڊ<G�?T����<��JW�M��vP�Ô��"�:Z�0�(�>��9v���/�q-�wl�A�S��P���g��72���F��1����C�g���8f��#�j��q��0;P�Д�_H9(,�� �W�VC�S��-���.���v�o��h2#AЂߦA_}Q@kG��*NU�U����Y��0Ȫ^���W
-_$K"h����Ȓ�A����Ftx�&Tuj��xw��h�z�����0n��y�����M�Ki�u��g��c��K��t�#s��~�+_8oCC�l�f���E����K
^L�&��<����_]�0�Kz���#��0z8�a�Q�1u�œj�|35�L��d��Q*��������z*Ӽ[�ǥR�6��-�N��4'��n&Nf<���k���#�S+��3~b.拝�N����ʭ枒_ڋ���m�M.tDy�2�o���1\\'[��Zu����0�vjZ�v1k��qC�	�5!jc�IL���5�\0�-d��0EG4剌�]�	��b�:7�Q�4]Mte�(�MfWI�m��Ť8?�Ci�H�=`���X�\f@Q^���Nx�k�xJl�rƫ f��b{*�^IK�=���.�'iZn�h�=V�a�/��w����
-ފ��J�85�������Y���X��o���z����*#��i?�9!o��"��h{�����^�Ũ*G]ԉ}�>����M�sIg9$�p��u�����Zx�@�
̓0���;r�GV�l��pn�:����BJ��m6����xM��1����=kQ�����Cͭ7��"��8��B�B�X��E|�'�:@��"�����e��u��5o���������|;S�f�6f_6@&�L5n$fe�s݌כ��זv��4G�*@2΢���\'*�҆�*��Y� �TLJ��@�yz�?]]�
-���j�o����^�{��~V�oX�����G)��N�bNsV���p)v�MWnr�33cm�"�w�}{]��S���7�;<9�o�\�#�K�Ȧ��{��A0#e��jV��C�wW�����~��u��;2�_��pvY��f�|�ҩ�AD��V���@�\»!ذ�Bȣ���)�Nb}�L2�{�,03����Ht1��W	Ki�s�k��֓�>_8^j��yVO)�_��[X&�J����M�8��
-A��J�� N��ù���k�����W���H�������Ä�K����������
�endstream
+xڵXK��6��0r��Y�Ǥh�������lѶIT))��g�3�d{�n�-|�k8��8�qdo���[%�Hh�L�q���w���+��y,�a��L���ݏo�`��,V�U"��U�"���C���1o{��?r�HP�GW6�_˪��=�z���x`$"K��6Y�+��`�"c��:�&"
=cT$<WhL�:��k/r�Ȃ�2�k�uvk�u��C�@c2��6�+<?2��7�/
��Xv�˷�9��:�����r�G�#�򦠎;���h�����g$�q;4�������9�N{�l-�^�G�U��t�w�Z{0����YD�ֲ�Jmv$��c��,M�Z�+�G��	�
+�)b��y�� ��;�Z�Uf�+�is�ג�������UZ�r-9s-���8[ޞ����d��_
+�6?��0s�J�=a�쵪i�cz\�l
ށ�{�W�ܪ�D�Q�Lu9͑��,��٢���e��c�Vy^U����T�IƾH��8�D�O&���̄(	g)s�A˻�<4t��Q����VD�mi�ݴ��ܴ�RZqoo��u��Cz�&�����D���1��E��ʑ;pgp�tm0�ʲ��̅Ak"�k�%<m�hn��u9M��;6i�?l9�
+�GJˇ�Ljs�t�wD�Đ!3�o�e�#��·u��
����2�Y,�e8cKwdK��zLb$"��p��7&�H@So�w厺�n����A�앮�Tͽ��UCAIt������u^V��(���D&M�*�ȬM��x��"&&�2�B�tٟh�;�t�4�\��.�qd�	VGǡ�
�?`F5�2��c���U�C׳ة�5]����P�I��`�^�#֫�����}���h��P�B����P�A� �,;�2��C��;�6Ȫ��yv�e��Q-uLnd�4��4-��SK�e4��n�:E��o�z6"pE�=�x�j�H��=t7>DAsq�Vs_?�cz+�vdc:��q#�90~,�c̋�Te�����e�'F�/ȅ��b�BNVmw����,b=�$�,cJ���|������H]��L@��[6Yi[����N�b�&��bND�XZ�VCJV�A��@zH�^;3�v�4>�t����(���'&��6 &y
iFpKu[A������Q�g&�H���V���#G����@)~sq��W��1T�)��,��`�>qA&ϲ�&�ˊJ6�ǘ��Ɇ�&�t����*#^����c�χ*?��ȋ(���ுЅ��R��Z�a����e;}��2���]U�'�(OD��5E�����R_�.G�kt�4���/�@�����(�_?Ę�x��X@�o��P����_
+���%��Mv�}����N@������}g�%[*�pUv߃�"P�+�jR����@u����
+�<P���&3uK�X��a|�l�	���X:��C� �Z
U��_%t
1�(��EPX�y�4�߭-�FY�����.ſ	f�߅0и�Z�/�C3u�а�w��1~���_���@��Uٟm(��2'����%3����`^�	?z���[̊<0r�L-�*��Za�p�}��,-��"^*B�{1,&u�X���@���G΁
+L��!��GR�z��^'��?^#?�o��ʼn����I���w}�endstream
 endobj
-4145 0 obj <<
+4230 0 obj <<
 /Type /Page
-/Contents 4146 0 R
-/Resources 4144 0 R
+/Contents 4231 0 R
+/Resources 4229 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 4160 0 R
+/Parent 4228 0 R
+/Annots [ 4235 0 R ]
 >> endobj
-4147 0 obj <<
-/D [4145 0 R /XYZ 71.731 729.265 null]
+4235 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [462.752 659.657 520.839 668.568]
+/Subtype /Link
+/A << /S /GoTo /D (groups) >>
 >> endobj
-790 0 obj <<
-/D [4145 0 R /XYZ 275.232 705.748 null]
+4232 0 obj <<
+/D [4230 0 R /XYZ 71.731 729.265 null]
 >> endobj
-4148 0 obj <<
-/D [4145 0 R /XYZ 71.731 693.577 null]
+4233 0 obj <<
+/D [4230 0 R /XYZ 71.731 741.22 null]
 >> endobj
-1773 0 obj <<
-/D [4145 0 R /XYZ 71.731 656.502 null]
+798 0 obj <<
+/D [4230 0 R /XYZ 228.992 707.841 null]
 >> endobj
-794 0 obj <<
-/D [4145 0 R /XYZ 174.075 618.913 null]
+4234 0 obj <<
+/D [4230 0 R /XYZ 71.731 700.488 null]
 >> endobj
-4149 0 obj <<
-/D [4145 0 R /XYZ 71.731 608.771 null]
+1787 0 obj <<
+/D [4230 0 R /XYZ 71.731 641.724 null]
 >> endobj
-4150 0 obj <<
-/D [4145 0 R /XYZ 71.731 591.651 null]
+802 0 obj <<
+/D [4230 0 R /XYZ 258.688 604.508 null]
 >> endobj
-4151 0 obj <<
-/D [4145 0 R /XYZ 71.731 549.872 null]
+4236 0 obj <<
+/D [4230 0 R /XYZ 71.731 597.156 null]
 >> endobj
-4152 0 obj <<
-/D [4145 0 R /XYZ 71.731 503.979 null]
+4237 0 obj <<
+/D [4230 0 R /XYZ 406.408 571.432 null]
 >> endobj
-4153 0 obj <<
-/D [4145 0 R /XYZ 71.731 473.095 null]
+4238 0 obj <<
+/D [4230 0 R /XYZ 512.678 571.432 null]
 >> endobj
-1774 0 obj <<
-/D [4145 0 R /XYZ 71.731 418.365 null]
+1788 0 obj <<
+/D [4230 0 R /XYZ 71.731 538.391 null]
 >> endobj
-798 0 obj <<
-/D [4145 0 R /XYZ 165.31 379.093 null]
+806 0 obj <<
+/D [4230 0 R /XYZ 204.474 501.176 null]
 >> endobj
-4154 0 obj <<
-/D [4145 0 R /XYZ 71.731 371.74 null]
+4239 0 obj <<
+/D [4230 0 R /XYZ 71.731 493.823 null]
 >> endobj
-4155 0 obj <<
-/D [4145 0 R /XYZ 71.731 351.83 null]
+4240 0 obj <<
+/D [4230 0 R /XYZ 71.731 473.913 null]
 >> endobj
-4156 0 obj <<
-/D [4145 0 R /XYZ 71.731 302.082 null]
+4241 0 obj <<
+/D [4230 0 R /XYZ 308.579 463.119 null]
 >> endobj
-4157 0 obj <<
-/D [4145 0 R /XYZ 71.731 287.138 null]
+4242 0 obj <<
+/D [4230 0 R /XYZ 71.731 450.068 null]
 >> endobj
-4158 0 obj <<
-/D [4145 0 R /XYZ 71.731 236.029 null]
+4243 0 obj <<
+/D [4230 0 R /XYZ 71.731 435.124 null]
 >> endobj
-4159 0 obj <<
-/D [4145 0 R /XYZ 71.731 190.037 null]
+4244 0 obj <<
+/D [4230 0 R /XYZ 71.731 422.172 null]
 >> endobj
-1775 0 obj <<
-/D [4145 0 R /XYZ 71.731 140.288 null]
+4245 0 obj <<
+/D [4230 0 R /XYZ 91.656 404.339 null]
 >> endobj
-4144 0 obj <<
-/Font << /F33 1306 0 R /F23 1201 0 R /F27 1208 0 R /F44 2037 0 R >>
-/ProcSet [ /PDF /Text ]
+4246 0 obj <<
+/D [4230 0 R /XYZ 71.731 394.277 null]
 >> endobj
-4163 0 obj <<
-/Length 2669      
-/Filter /FlateDecode
->>
-stream
-xڕˎ�6�>_a��V��$+�Ť�'�`�YL�X$9�m-KZ=��~�֋�,{zw჊�b�Xo��ƒ��H|7	��nG����[`�w�P��d=��������p��i.���M�a/�0p�Q�x�s�u�Z��D.��Ձ��ÿ��T�?�~��l7���M��2�+��p��nE(�9��u�͆��\�\�I��}�U���P\��;
-�%����ߺi���|�s�f�F#�8JP��gpw�N�:w�j8�HK@Q���^f;
��_�N[�x�5e��w¯ʙK�ꮳ�|�s�W[��I>�2a[�h�]�}�f�����G͐2P3[�#���'w��n>���˚��3��LU<���=/�4�yK�J�ӥ��^h�F�^��x�
-R+�ޟ+?r4#�jƗ���*���H~�U."�(�Z���2S�~NBw���c�Fl�pc��/@�{��݃��'@g�P�>
p���6N������O_>�|�s~}�x�T�>|}����)��������
+
'�ӀƊ�J��k�7m�Y�QM:��AB�G���� y��(2��9#c1"��m�3f�V�H�Ⱥ	@"�*����0B�����cp���ā�۶�t=t噉T������#�z>��܀`�a"�9`��� A:]�u����b4[�e��0�>�(0K����*�����`�}m8����ok#l�V!�#��O-˳�%���\�,5��	rj�<�i�j;�����������M�]e�����w+�_��Aa�}щ�]�h@���l/�)�dW��7�v�p$��^�`�
-�g�p���"���y%	c��H�(;�u���p
dT�ꪔaZ�!t�+��
,���}'��b�A6� ڙ4{���8��obg-2q��U>�2����,�c6��6��}L�����V��<�Uv
-�+�w�L�g�Y"��f4�d��ؓ�.�u��q����EJ��y��4H	E���I�}{�9����j�WS*��~X_�1v��0��
!�s��^��p���[���IP�R���T�~+��8htm�IH�7�����Ug�0y�!��Ox�/p�S��ԗ��+�
�:/Dp+(���5
-�Q�T�NzN�>��
-0��V�k�Uf�s����G��d��
���D�힤���\l�Tk<U,��SQ��[��"���Q�$��d
u�9輊#Ge*���r¹���H/����:�g�L=�+-ﴁ�6��٤��9��;�B�}��GۿRC��Ҟd�Ķ_�7i�=������'{�O�xMH}�`hE��hl�a�|M�HF}&F?�,���&ǒ!H2§�f�Hs��8��{��t׉�Qm�f��)��z���A���V�f�uY05��ǞJe&ҼB��SV@��9�l��q�TOٛ�Q	���9��9@X	\&�����&.h�C�d߱"����1M��pjQ16�u;
�nح3����(��ƌq��ŕ�������F�zҲ�^�V��Op���������{*:���]�)\L��I�"��u�_qQ�L��f؁k/:,b[
������r%��{�^� uI7ZJ�(A}Â%\F���-��}�
-�ɱ WF� ֹ���
|����c��'��>������nq������PQ&K�`N��/߫S{;�z���"+�HKȤ�N۫;���-��{��{�N`{ò9���$�L7�����M��qI�h�yQM��b��.���O���y���.X���fCslU\g&��)��qg�=N��n~kˌw��|au��g
-/��V������x;?`��O`���P�e��|`�cc�X�
-ߡ�(�/���ȵ2���B�I�@�7��B�J�J#"�*f��v7=��U�4z��x*.o�����!�V���j3t�ך�F:o~�:� �^b�U��+5�8~?�	]���_�_2�6�� ��`�(I����u�έ������7�"C/B��X*����5	����g��Ą|�D,��"�������Uŝ�&��@*r���W�@-�&;D�w�]����ʴ�md���I�Q@wY[��o+�,�k�B�Q��1��RZ��yr[V��3�K�]ȡ��HA��2���c���d���Ks9䢼d,Y
g��J\J	
�9���L��3ɧ���C�Q]�@�z9A��{=��8R���_��7��{m�H�6�F�)���� ��klQj�r1�͸6&�!��3F&�i�]�rtOcMnx�J�!+�B���
0��]�����<��V����2q��Ԍ8���-�M��~�7,N��.��S��u��<��Ӱ)�6SZK��|�W�M	@��H(��I��7��Y�{C��3��7բ�A��wg�M�����oK$��[4۫�
-(1��K�zz4���U��֔I'�ߠ��B���+F��cd�i�͓_u1e_s�oF�}+���Lc%�"��є�~MsGԭn�
-��i�m�.�̈́欏-��%Y�
-%��Q�|�3�@4�9�<n����#�c=��G���8
-��D}��e�A9���I�:I�痟�y�'�������8P;�f��X���&����7�*�~��{��1��S���lݭ�����Hr��kl]/0LP�I��T�w���ڸendstream
-endobj
-4162 0 obj <<
-/Type /Page
-/Contents 4163 0 R
-/Resources 4161 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 4160 0 R
+4247 0 obj <<
+/D [4230 0 R /XYZ 71.731 380.244 null]
 >> endobj
-4164 0 obj <<
-/D [4162 0 R /XYZ 71.731 729.265 null]
+4248 0 obj <<
+/D [4230 0 R /XYZ 91.656 363.492 null]
 >> endobj
-802 0 obj <<
-/D [4162 0 R /XYZ 211.497 708.344 null]
+4249 0 obj <<
+/D [4230 0 R /XYZ 71.731 351.373 null]
 >> endobj
-4165 0 obj <<
-/D [4162 0 R /XYZ 71.731 699.706 null]
+4250 0 obj <<
+/D [4230 0 R /XYZ 71.731 339.397 null]
 >> endobj
-4166 0 obj <<
-/D [4162 0 R /XYZ 71.731 643.422 null]
+4251 0 obj <<
+/D [4230 0 R /XYZ 91.656 322.645 null]
 >> endobj
-4167 0 obj <<
-/D [4162 0 R /XYZ 71.731 599.587 null]
+4252 0 obj <<
+/D [4230 0 R /XYZ 71.731 310.526 null]
 >> endobj
-4168 0 obj <<
-/D [4162 0 R /XYZ 71.731 568.702 null]
+4253 0 obj <<
+/D [4230 0 R /XYZ 71.731 298.551 null]
 >> endobj
-4169 0 obj <<
-/D [4162 0 R /XYZ 71.731 537.818 null]
+4254 0 obj <<
+/D [4230 0 R /XYZ 91.656 281.798 null]
 >> endobj
-1776 0 obj <<
-/D [4162 0 R /XYZ 71.731 519.886 null]
+4255 0 obj <<
+/D [4230 0 R /XYZ 71.731 269.679 null]
 >> endobj
-806 0 obj <<
-/D [4162 0 R /XYZ 255.599 486.575 null]
+4256 0 obj <<
+/D [4230 0 R /XYZ 71.731 256.728 null]
 >> endobj
-4170 0 obj <<
-/D [4162 0 R /XYZ 71.731 477.938 null]
+4257 0 obj <<
+/D [4230 0 R /XYZ 91.656 240.952 null]
 >> endobj
-4171 0 obj <<
-/D [4162 0 R /XYZ 71.731 434.605 null]
+4258 0 obj <<
+/D [4230 0 R /XYZ 71.731 228.832 null]
 >> endobj
-1777 0 obj <<
-/D [4162 0 R /XYZ 71.731 383.796 null]
+4259 0 obj <<
+/D [4230 0 R /XYZ 71.731 217.938 null]
 >> endobj
-810 0 obj <<
-/D [4162 0 R /XYZ 159.597 340.698 null]
+4260 0 obj <<
+/D [4230 0 R /XYZ 91.656 200.105 null]
 >> endobj
-4172 0 obj <<
-/D [4162 0 R /XYZ 71.731 328.26 null]
+4261 0 obj <<
+/D [4230 0 R /XYZ 71.731 187.985 null]
 >> endobj
-4173 0 obj <<
-/D [4162 0 R /XYZ 71.731 299.05 null]
+4262 0 obj <<
+/D [4230 0 R /XYZ 71.731 175.034 null]
 >> endobj
-4174 0 obj <<
-/D [4162 0 R /XYZ 71.731 268.165 null]
+4263 0 obj <<
+/D [4230 0 R /XYZ 91.656 159.258 null]
 >> endobj
-4175 0 obj <<
-/D [4162 0 R /XYZ 71.731 211.378 null]
+4264 0 obj <<
+/D [4230 0 R /XYZ 71.731 147.139 null]
 >> endobj
-4176 0 obj <<
-/D [4162 0 R /XYZ 71.731 180.494 null]
+4265 0 obj <<
+/D [4230 0 R /XYZ 71.731 134.187 null]
 >> endobj
-4177 0 obj <<
-/D [4162 0 R /XYZ 71.731 149.61 null]
+4266 0 obj <<
+/D [4230 0 R /XYZ 91.656 118.411 null]
 >> endobj
-4161 0 obj <<
-/Font << /F33 1306 0 R /F23 1201 0 R /F27 1208 0 R >>
+4229 0 obj <<
+/Font << /F33 1322 0 R /F23 1217 0 R /F27 1224 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-4180 0 obj <<
-/Length 2631      
+4269 0 obj <<
+/Length 1891      
 /Filter /FlateDecode
 >>
 stream
-xڥko��{~��/��X�DQ��R��E�k{�(��B�i[Y���ܯH��
����p83�3�����_ž+h��
"��O7���#��b#$�͏ۛ?�Wj��i�V��*T�UQ��U�&:Xmw����Yӛv�	��h��_��:0��p��(�l�y���a;
-�*v�D�����P*�'��ڼ�UaH:��Q���`��찛8��<�x(k��w^���$��0j�hI8x�yl�-�H'��Ӵ�1�n���Ѯ}G����dՒmr�A���Ǟ��О`����l�LC�$���@�X�FK���9=(y��5F�VT7Yk*�ޙ�e��������η�Ԕ�1Ş�Y�,jtϝ��[�[�Y��Z�R��#�XV��>Yb�^��LZ����p#�'n���ghB�0��B���(��
-����=�p_<'�*��:OmM�;�����ڔ�5؜!�3�q�v2��3�W˞�ٿ2�Gf�Δ&�����G���R�;����d3��k<�Z;.��Vø�+f.;��um7�g/!\"����T��jR�ՠJ;M@?n�{���0��p��ݐ�������x�ő�8w_Q�m��z�]9PMv0�~�0�q����}���2p��c"f��5��ۮ1y���*�*Q	�U��;�lzrJ�j^�#",B{n�4-B���Eĉ�8��<eCaF�:�	�j���ͰQ��d����C<��>@�f���0�Y[�
-�
-&]�v���![,P4E�ʼn������hu���X��"��A�`O/���ց�|%*�h0t��Gt쑆����'ĸ���%��1:h���� :��S]�1+�T��p�1�ȬvI1�-#�
-N�W?p<gڌ�p�嵯V)+�£ڛ�]j4b��ǡ�e��D�li)*�
%s���R��taE�e툮z���f�%z�k
-4ݲ&���2��(E�3j
���"�#:-�O������^�؜��v�IN��ty[4}1�Y�<{�y*���q���&��@�����go�����~���
��y�8]�n��UkV��Ǜ���P;r��-<W�.Xl�6���\�S��Bȱ"���]��U�j7�R�UY;�XK!�&l��F�9?r#�Ќ-݋�z�U"g9T18�c�q�)d��R�<n��NxJyv���A�����[�w2�'�&䨈$�#��C�'��.�a������Za"b�w#����X4x�*�I~�GV���9KX�;��@N4a
�,"u�
-7�����C���/�
-��pֳg\��$����bص��/1�p��K��`f���pp����+�p���lN����_����%{@{���!�oxɏ�pow��
ݏ����_A���g\Us&�0n��Bp}�YOi�/��e�G�x�A2��b
-ui�h����fEx�V�7vP
V��+)&€"����.����z�ܲ�
-Ơ�o��q�3j�.%2���.��2�)����fe9ED����7x'|*�U�N72�iE���›��k��7�:��}A���C�x�@2�\� m݀]`��b�����PA�\͢���C�*��@����*��Z�b��1��liǮ�8S�d���+ Ю�`�4�G�I�����#ҞI���=�2n(��J��m
��a:D%���_b��g�w��Y���'M����(G�Zc3+���Q��Xv�}a�c�K�8�c8b[IY��v#������<;�y
-�7��_Ev4���bi63"����3BM�]���c��B|�1��o���ş1B�S�3%i�z),%L��I�t�ȍ_�n��E�g�tv�4�h"'�qo����8����.*��M)|���\�<sn.�n�+5����}Y�͌��\����q�Թ�ЇӜ�o��4o���0?�>�?ѡ)�v(��VU,"�,(�_�J1|�t�j�jV��9)�X�BǮ�fկ/���燯Xs\-�=��8%��,:i�f1�3X�q�������������!����[�BPط�e�dFq�U“�Gl�ş��)a���X�p��Ƿ=���ck6Tl� .(;�gZ�u�C��i��%��5��e���*��^��ئ���)�Q�-ڝ	��Hԣg0h�ȟGY�&ޱs�n'b��г��w.�<u@���sg��ryA˸�XBg��Q�����,��?{�C�j;!�GVy��'���sGV:�f�>H�T��o	�w��_�[y���	y
��F��}p��IT1��:r�Eύ26IƊkσ��R3]T�T�&yО?H��-�a�`*��C�I(D���
-�.����l�+��YP�Rq�d��P4Y.ZZ1��ѕPp�Ba�P,��8�F�6W�
-�?$��, =~=KBk�D��<�y9��Db@b�A�f����՚	Vq]���-��є
C���H�
-�r|pìڱ�P��ZS�6�c��lQ�I�K��۪=�G���n�q���G�-����q�a��)h�kF4=�b���ӑ�M����'!k�H����
��8�yzFQ��m|�"��\�;
���o�'�[��t�Ga9Zi~��G1H�?~�{�Dr�O���	ʌ��>�]J�y�N�endstream
+xڵXI��6��W�T�����&�tA�(��$�&"K�$�q~}g8CI��C)|93?�FG�~�"�D�GB�jQ�_��-p�y�ĊEV3�������E!�4^�7�$�E���,�"Wr������a0�r%U(A�_{�li����h�Z/�^������3Q��6y�+�d6���"Ng���Pֺ��_a(K=ض�/
�ui�$�n�/ER�xƺ�N�%BJ�X��]YZD"U�#Z�]SY���ֱ�H���Ag��@�
+�`��e�e�f覢�^ ��*{�Z��E4ë���4�]��B�4�d@M���"�7P�ɟG�=�2�H�ۮ��8ce��I�]�X���ϣ��߃I���?J��{ ���h:tˬ���z�ʹ��'��t��w�/3�OR3uw`���&;�l��?��a�3���&�"�MR�$��"
)����s��<
+I%�P�,�|���,�mghd���P���/���E{N49���0�;�iY8
 �ޫ��X���P�V8����!������D4퍹��$�EɅ
+!�@�j��Ÿ́ܭͱ�T���3�G*���
+.N���,���jp��ƣL�H��*Q���b��cE�(1������0�Z(���:��C�g���	�
+��K\+��d�F�QT0��뮢���������f�q=�1���FH�g޶ݐ�?�,%z]P��O�ƽ{A����d�W?Z�!<^:�ig�M�7���ybAz�ƫ��oL�V��h�K32ȴ�c7	`��#X�A?�ޠ���Z�"�N�'��P�IO;��aq~(,`Xk�h��:�-E�Q (�'XP���g��	t�>)Ņ���k�tΛ.���sAJ�ta4��95}F��/A����S7���K��e�/C���8���c��A��9]�Vdž(ƂΎ��i߮x���Y�ڊ���=�H��t��\���Z;�7�ּz�[W�-�����z�N�)ր�Ӹ��۱�Cc�qnz}�MΔ���z����a����AD��jY�=˖��)=�WDk����񳥚Y\�W�J]L$S^D� ��]Z��(�	��k�[0���,�o��w�(�I`���w��g5/:Aj��_���e�tr|	�}>�k�X����)�h��,��2�Y�0��E	1 C�˥�,��c?.u��>`jtW�Ŷ�6e�y�z]���o�T�ڶ�~�e�v�p�����Ҙ@ń��B�#��/'C�-���Ua��ُm3�xR�"��V'�9n�hC�Gr����W�AA��獷�w�E�i��S��U��q�nڧ:�;w����x�
!`5>���e(e�{�}2��=Gv)���u�Z�.x�l�l����A�A'�(�`�a��fGݩoR5���3���x"�|�]w��'�'�5S��2�c���Ů�E������
䊩���H�!��V-��T�;;0�z�����1�m7��>���`kJ��Ez���wW]�D��9B�{6���#8_J
+��I���e�T���í[��ro�^��X=ɽ$�ý�܋�8�;0v����ߘ�tTm��>]S��2J|�54S3���k�v��7�~[F�p�e���0`�[��nh��%�l]u̩飗�����ȱ��gq�aikM�P�З�c������O2����<����!�}�ƌM�k�h���*?7��
+ր��(����J�B��7/�,
+(�����Ip�z��|p�u��6����
+���nr�t�طa�ۏ��Α�,���x�y�TȊ�
��YݬQ=A�R������^�]X�=U�gޭU�\E���gC����_R�����_�J�KTz%hN&���{�ӿz�endstream
 endobj
-4179 0 obj <<
+4268 0 obj <<
 /Type /Page
-/Contents 4180 0 R
-/Resources 4178 0 R
+/Contents 4269 0 R
+/Resources 4267 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 4160 0 R
-/Annots [ 4190 0 R 4193 0 R ]
+/Parent 4228 0 R
+/Annots [ 4288 0 R ]
 >> endobj
-4190 0 obj <<
+4288 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [138.415 365.19 190.751 371.969]
+/Rect [478.012 498.428 522.87 507.018]
 /Subtype /Link
-/A << /S /GoTo /D (installation-whining) >>
+/A << /S /GoTo /D (cust-change-permissions) >>
 >> endobj
-4193 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [364.929 315.268 418.584 323.75]
-/Subtype /Link
-/A << /S /GoTo /D (installation-whining-cron) >>
+4270 0 obj <<
+/D [4268 0 R /XYZ 71.731 729.265 null]
 >> endobj
-4181 0 obj <<
-/D [4179 0 R /XYZ 71.731 729.265 null]
+4271 0 obj <<
+/D [4268 0 R /XYZ 71.731 741.22 null]
 >> endobj
-4182 0 obj <<
-/D [4179 0 R /XYZ 71.731 718.306 null]
+4272 0 obj <<
+/D [4268 0 R /XYZ 71.731 718.306 null]
 >> endobj
-4183 0 obj <<
-/D [4179 0 R /XYZ 71.731 675.303 null]
+4273 0 obj <<
+/D [4268 0 R /XYZ 71.731 708.244 null]
 >> endobj
-1778 0 obj <<
-/D [4179 0 R /XYZ 71.731 631.467 null]
+4274 0 obj <<
+/D [4268 0 R /XYZ 91.656 690.411 null]
 >> endobj
-814 0 obj <<
-/D [4179 0 R /XYZ 182.7 588.37 null]
+4275 0 obj <<
+/D [4268 0 R /XYZ 71.731 665.34 null]
 >> endobj
-4184 0 obj <<
-/D [4179 0 R /XYZ 71.731 575.932 null]
+4276 0 obj <<
+/D [4268 0 R /XYZ 91.656 649.564 null]
 >> endobj
-4185 0 obj <<
-/D [4179 0 R /XYZ 71.731 525.799 null]
+4277 0 obj <<
+/D [4268 0 R /XYZ 71.731 637.445 null]
 >> endobj
-4186 0 obj <<
-/D [4179 0 R /XYZ 118.555 487.235 null]
+4278 0 obj <<
+/D [4268 0 R /XYZ 71.731 624.493 null]
 >> endobj
-4187 0 obj <<
-/D [4179 0 R /XYZ 118.555 448.482 null]
+4279 0 obj <<
+/D [4268 0 R /XYZ 91.656 608.717 null]
 >> endobj
-4188 0 obj <<
-/D [4179 0 R /XYZ 71.731 403.551 null]
+4280 0 obj <<
+/D [4268 0 R /XYZ 71.731 596.598 null]
 >> endobj
-4189 0 obj <<
-/D [4179 0 R /XYZ 71.731 383.625 null]
+4281 0 obj <<
+/D [4268 0 R /XYZ 71.731 585.704 null]
 >> endobj
-4191 0 obj <<
-/D [4179 0 R /XYZ 76.712 348.737 null]
+4282 0 obj <<
+/D [4268 0 R /XYZ 91.656 567.87 null]
 >> endobj
-4192 0 obj <<
-/D [4179 0 R /XYZ 71.731 328.811 null]
+4283 0 obj <<
+/D [4268 0 R /XYZ 71.731 557.808 null]
 >> endobj
-1779 0 obj <<
-/D [4179 0 R /XYZ 76.712 287.566 null]
+4284 0 obj <<
+/D [4268 0 R /XYZ 71.731 542.8 null]
 >> endobj
-818 0 obj <<
-/D [4179 0 R /XYZ 188.149 248.194 null]
+4285 0 obj <<
+/D [4268 0 R /XYZ 91.656 527.024 null]
 >> endobj
-4194 0 obj <<
-/D [4179 0 R /XYZ 71.731 240.841 null]
+4286 0 obj <<
+/D [4268 0 R /XYZ 71.731 524.867 null]
 >> endobj
-4195 0 obj <<
-/D [4179 0 R /XYZ 71.731 207.98 null]
+4287 0 obj <<
+/D [4268 0 R /XYZ 71.731 509.923 null]
 >> endobj
-4196 0 obj <<
-/D [4179 0 R /XYZ 71.731 151.192 null]
+1789 0 obj <<
+/D [4268 0 R /XYZ 71.731 462.565 null]
 >> endobj
-1780 0 obj <<
-/D [4179 0 R /XYZ 71.731 120.682 null]
+810 0 obj <<
+/D [4268 0 R /XYZ 275.232 417.311 null]
 >> endobj
-4178 0 obj <<
-/Font << /F33 1306 0 R /F27 1208 0 R /F23 1201 0 R /F44 2037 0 R >>
+4289 0 obj <<
+/D [4268 0 R /XYZ 71.731 405.14 null]
+>> endobj
+1790 0 obj <<
+/D [4268 0 R /XYZ 71.731 368.066 null]
+>> endobj
+814 0 obj <<
+/D [4268 0 R /XYZ 174.075 330.477 null]
+>> endobj
+4290 0 obj <<
+/D [4268 0 R /XYZ 71.731 320.334 null]
+>> endobj
+4291 0 obj <<
+/D [4268 0 R /XYZ 71.731 303.214 null]
+>> endobj
+4292 0 obj <<
+/D [4268 0 R /XYZ 71.731 261.436 null]
+>> endobj
+4293 0 obj <<
+/D [4268 0 R /XYZ 71.731 215.543 null]
+>> endobj
+4294 0 obj <<
+/D [4268 0 R /XYZ 71.731 184.659 null]
+>> endobj
+1791 0 obj <<
+/D [4268 0 R /XYZ 71.731 129.929 null]
+>> endobj
+4267 0 obj <<
+/Font << /F33 1322 0 R /F27 1224 0 R /F23 1217 0 R /F44 2069 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-4199 0 obj <<
-/Length 2982      
+4297 0 obj <<
+/Length 2665      
 /Filter /FlateDecode
 >>
 stream
-xڥk�����
-c?ɀW!E=��R$E�^���4(d�^��%�$g����%Z�m-�����p8�˫W
-�ӫL���OT�Q��v��z��?=h�x�'����o�7fU�EjV��UlLh�t��(̓h�\���P�Fۯ��DI�߿u����/uӔ�_�|��y�01YX��M�͍P�Y�84q�R�é,�cMB%�6a��dy�ӡnY|ڭ�
-�:7E^�|@�z�T����|W��J���B�]GI��Z'�mG���*�����h+YW����;��z���2fر<C�3���L�[�y`�y0vBw��zq��V��Q�϶���D�Z�"`:�c�(,V��6��5^����e�	��s2�?-)�KEj�~�Iw�h	�wB�4�C����	�і�L�������I�
�Z.�����x�w��pd_El���#����U�1\V���q�6<<�v�8tE�?~X,��8�x��v��<��މ��D��y�c��vל+�(Ε-���o�(
�f�(P��p����14�D������i�͏(��� �p��M��[!cS���WF���ָ��R�����~,kAV�e��=O�ī��n���i�~kձk��F��{�@�ܪ��JM�[Y|o-YЗ2�D�M�;������	�3�<��k�m�����$�.W�SL�x�*�����~~���������
�^�8o�b�â0�ޮ���6qR�Y�^+t7,��4OI{��}�n�M���<	cC'�i�{r����x��'�'�ClR3t�&�ߒ��`>�ݟ�p�������	�ZgFv�g�=/�k�@��d����<�
-���el�2V^@D�	�0�8@(=�n�X�,���N��%�.<O^
���΂t�&�X��^��E9�tM-�x�D��Q?��Q�dq�`�����'fT܈q��)Ow����*��dA5��D��gU<����y���{L
-a›�jII-��z������߄�r���ylIl�&W�q���$6
-8� �E�ǣ�_�,���y)�dS	�xs����;�r"���V�W̞���YHZA�r;I�~L
�Q �/:���O�t�0�(��l5	G
�r\�-���m'a�&\��m��*e��H�qf)��,�(�j�|�%H8���X�ρ�õ�3}U�ۆ"$+���:b��N�kR��r�!�>�$��w�a��k	0*^<���7����
-�ߏT�ϐ�����2=+�՘�\�ʊ(����2^'=�!a�VJ
-���(�Y�سCT�]�|��;�sw%�-��Y��ޘ�
�/��%Ʉ# ���tM��H��!�JHl�(wn�]o�Y���_'�<���5k3���<�xU!�~�C*H���PO����Q)Y�<�E'4y"� H��n�mdl'T�U!�C7���������M��&f�Po��^xj�����>���g�Zz��8^p��^�S6�h8u��%J/d#��8RBxE�5>'<*'�$ޚL2�"��F�3X�"s����t����S���g(N$W�)r-�}=��]RJ�%B��y��E�YA���
�Rk�9S�r���S�����ns�(�h�Qlz�Y6�8(��F�?G���0��Y�bwl����5�����F�l�/H��	lsZ���3j�� �'n a�&A~���E)���ƺk�ؠ>���<~,kd\�k{r
D��h�0�G���<��<7XZ�z��5�f����;�ۂ����<��:�»�B\�z"-ľ�I{��i���V�I��9h=Ʉ0��)��y}��f{��L�
-d�3�:�'�©��@�4E�ue6.N��K�-xgi$��y����l[M缓��7c}j$'�3K�J���v��
#�����^rj7(j7d؎��_b`�x����.��m�lf��Oh�]TtO��Y��ܯ3w�u���A�v��zvF's���۔RKJ�%�׳�u�����vF�$~�m������B~�-\�@^�Wݮe����)���dQ"H��U�DU��UB~�R4:�n��<Un;��l���V-�;�}g\�S�c�Ť$��ҵ��׭D��MM�?����Cp<P"���e�֤M�\����K�(�������m����:/�v���u9��w�
Iow����"x��z>������5�{,��B��xҊ��Ք֭���\8�/�^es�!��#����9>�����Y�T!~�,���B.���Vd��Lr�:��/���]t}�����^��(OIr���d*���Dzi��z���ΰ8&s�w�t�X���`[�������Ӆ�RN���y�����r}��J�~�"��#�/u�{Y&ɹ����V8��n<S@�=����q!�Ⱥ���c`~h�іr$��n
@ڱT6{`�����<R0�9~� 7���1��+F&.��#_w:����Qf����!���D˨0�dE
-t��>���B��t���;1���5@L���S掘Y6����at*_� C/H������FV�s�V���4r̬(�EQ�yG'Q���Ţm�K
-djP�����(����܂?aĂ]��P�a��Ǐ�����8����J�Ӭ+±�� "��I�'\WuW��ő3���ϯo&-n�X˯(�%�����Lw:��9��x��gs��8^U�9��"
-S��tR�������h�<����J���0
u?AC	��>�㰈��]H��|�F�H�)n��	�<�������rq�����w����q	Y�)�OW�*�7j���G���:0��؊�:i�ׯ.�N�B�(������ �v��f٨���
-B��@�����TR����:��)b꯿�5�|�|���~i9R���ԥ�P�+�rt����Bo|V㒓��\P&?�P)��a�����&
�8s����3��_^$Q��1AUe�����v���B���endstream
+xڕَ�F��_!�� qy��>9�$��������>�ȖD�"�<<Q�~���!M���������:[�ʃ?��n�'عA���ou������b+K��5?>���Oa�ڹ�$\=VQ�a���0p�8X=�v>�ԥ��zĞ���gW�G��U���y�Ǜ�g{`��.��'�憩 \��F	re��R7�|b*v}�
��4C�=��;dv��H�
+f\?�i�{�9�=�e�_ş�^��£������z�#�n��k`a��W{��T��c�;�3��˳v�[d�-��m��mFN>������Ó��_�>R�E(_��k�볬���*@M�4;�^�N��+�]侺�@QY�쵮��f"�w.ҡiPV��݉�U
[UJ��;�)N�򄽺��*?1�e��ꂑ��j�˦�܂�.�^ڦ�~��ܟT�nǎ�ZU.�<O�|�]�K�s��bI�؈��n�'ݝ���g����/.����|�����`T���=2;��"6�Ծd5���28�5|���V���~0H�hrxvU5j�f
+
�6�5�ٟX�չ������cjVm~r���U�N���_�����/M��uQ4� �D)BN���10���'�	~~X��{�PoǸV�w([���8�u��-]pO{`1)�x��3\d�l�`�=*�В��].�K/��Ӂ�^�I�ȵ����	O�Y����!oE[�I����qLE�a�夙1A��W�8p�L��u��so��\Q�A8O9,��;�(����T�F�9UI$a���m��ָ$�#
+R�U�[F��]ƽ���L
+&;�ך�Zt��m��,��ƍZ���M[ja����y�K
+�0�|��nM]X�
+BI*��Ud����pe���'0f�;�p�cl��2�
�|پ�>�d0՜/p���D7��4��l�D:Ε�u �K&��3�&��y���z�W�y�@D��'�F-����^k�4R�'%�pSG�w���6�4������v��_����k�^�}U�89IdD�����2�A
+�+�Q�݄�P)�\��;��QA��3�n���ai)�䭖�6?t�&�pc�5r�#s�l�H�c'����Y���Y�2Z�~A����T��wm��4�R��+�z+Uj�f�epQ�2�]8���Ͻ��T*��iH���� 3��bꘙ'�	��]��+�$�,��`�n��з�VO�g��b��ٲ�2K�J���B�10�Z���尽c!�Z��$y�S�8��>��(�5�i&��us�CI�ο�R$��FR��RhD�d��W��t���4YX�=��T��Zlj- ]mss+�SSD�X�ꮳǼ/
+��*,�ۄl#��\�g?ՋS���y<�Q��+��O�n��i�J��R5�dd�b�+��-��GP����"td�Sd
+��3%h�<Qƛ�T$�kJ���V밢bS�u!,���F *u`�?�$����Y���W{��;�6G����/@�y��ݣ�R�'@��PI��4��g�o)DPi��Cʕ/v�><=~���9�>|��_�~����G��	�����p�?ئA��R���2�
+c�=�
+V�u뢶%~�ر,�r��i�L��i1�Mƭ��\rA����Juq���&���"[�]��Q��E�(�4�8��Y@�܉���a<�)���� N:�eG�m���h�DC��Ƹ��<y"py���E�6f����^hu��J��Y˨��0$��?��O�K,�U���Rx��Eu���Z�N=Yb��M�SXC6�IT���'�c��I��IaE�N��J�����q�v�L�'c�ݢ��L��Hvy��vg�L5��ܛ�{řd�0�2�	>!6�MC�y�����!)��?!
!��^�O'x�Bn�7���@bȇ3x;/M�>��_*�7	������*�PٔGbX��hFp{-��1@P��r�}r=U�
T���F�L�$}s�B�T9t�W��w���4i�i�'OAP���ش��طW���e��/�2a��+a�}>L�ACp����&�ĺ��5O����� )�ʸ
+�oM��B�p�%ƚ����:C���貈�	e��,�:_*=?5�S�m�E)�[FY�$^�Q�D�Z({݊�1�bY(q��]��?��9K�z�rv���l �rO€�5o?eUsų�e'����'t�H�1���ȋd��|�M��|2
�To#㗟�-SY�J�yne��9�[>�+~��G[�RM��Ӟ��V`�7����7�{j�0�l�,.��v=���ˣ�����&a��JSےx��)��x���C�QSz�9��`�;����6^�Q��Jh������B��y�
+>}n�Ҷ�	�J�?S�̅�yU�����(�X��	ȩ��7�Q���9��9@�\^�_����\�n������f�&IΌz��^]�6_<^�ʟ_��<��/?��G�Y
+p_�5CO���m/Nu�)����p��s�Q����a�P1q0�K�9dz�
+z~���ϼ�-���bY��'�I���6K^	#MEM-�~䠹s���7��fQͶu�������l];w�����en��K����8�\/0D��4|��ۓ��`��endstream
 endobj
-4198 0 obj <<
+4296 0 obj <<
 /Type /Page
-/Contents 4199 0 R
-/Resources 4197 0 R
+/Contents 4297 0 R
+/Resources 4295 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 4160 0 R
-/Annots [ 4212 0 R ]
+/Parent 4228 0 R
 >> endobj
-4212 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [192.636 157.251 244.94 166.162]
-/Subtype /Link
-/A << /S /GoTo /D (list) >>
+4298 0 obj <<
+/D [4296 0 R /XYZ 71.731 729.265 null]
 >> endobj
-4200 0 obj <<
-/D [4198 0 R /XYZ 71.731 729.265 null]
+818 0 obj <<
+/D [4296 0 R /XYZ 165.31 707.841 null]
 >> endobj
-822 0 obj <<
-/D [4198 0 R /XYZ 243.797 707.841 null]
+4299 0 obj <<
+/D [4296 0 R /XYZ 71.731 700.488 null]
 >> endobj
-4201 0 obj <<
-/D [4198 0 R /XYZ 71.731 697.476 null]
+4300 0 obj <<
+/D [4296 0 R /XYZ 71.731 630.83 null]
 >> endobj
-4202 0 obj <<
-/D [4198 0 R /XYZ 71.731 654.675 null]
+4301 0 obj <<
+/D [4296 0 R /XYZ 71.731 615.886 null]
 >> endobj
-4203 0 obj <<
-/D [4198 0 R /XYZ 71.731 615.821 null]
+4302 0 obj <<
+/D [4296 0 R /XYZ 71.731 564.777 null]
 >> endobj
-4204 0 obj <<
-/D [4198 0 R /XYZ 118.555 577.257 null]
+4303 0 obj <<
+/D [4296 0 R /XYZ 71.731 518.785 null]
 >> endobj
-4205 0 obj <<
-/D [4198 0 R /XYZ 71.731 525.452 null]
+1792 0 obj <<
+/D [4296 0 R /XYZ 71.731 469.036 null]
 >> endobj
-4206 0 obj <<
-/D [4198 0 R /XYZ 71.731 484.544 null]
+822 0 obj <<
+/D [4296 0 R /XYZ 211.497 434.665 null]
 >> endobj
-4207 0 obj <<
-/D [4198 0 R /XYZ 71.731 432.738 null]
+4304 0 obj <<
+/D [4296 0 R /XYZ 71.731 426.028 null]
 >> endobj
-4208 0 obj <<
-/D [4198 0 R /XYZ 71.731 417.794 null]
+4305 0 obj <<
+/D [4296 0 R /XYZ 71.731 369.744 null]
 >> endobj
-1781 0 obj <<
-/D [4198 0 R /XYZ 71.731 345.43 null]
+4306 0 obj <<
+/D [4296 0 R /XYZ 71.731 325.908 null]
 >> endobj
-826 0 obj <<
-/D [4198 0 R /XYZ 243.524 306.058 null]
+4307 0 obj <<
+/D [4296 0 R /XYZ 71.731 295.024 null]
 >> endobj
-4209 0 obj <<
-/D [4198 0 R /XYZ 71.731 295.693 null]
+4308 0 obj <<
+/D [4296 0 R /XYZ 71.731 264.14 null]
 >> endobj
-4210 0 obj <<
-/D [4198 0 R /XYZ 71.731 252.892 null]
+1793 0 obj <<
+/D [4296 0 R /XYZ 71.731 246.207 null]
 >> endobj
-4211 0 obj <<
-/D [4198 0 R /XYZ 71.731 222.008 null]
+826 0 obj <<
+/D [4296 0 R /XYZ 255.599 212.897 null]
 >> endobj
-4213 0 obj <<
-/D [4198 0 R /XYZ 71.731 157.251 null]
+4309 0 obj <<
+/D [4296 0 R /XYZ 71.731 204.259 null]
 >> endobj
-4214 0 obj <<
-/D [4198 0 R /XYZ 71.731 142.307 null]
+4310 0 obj <<
+/D [4296 0 R /XYZ 71.731 160.927 null]
 >> endobj
-4197 0 obj <<
-/Font << /F33 1306 0 R /F23 1201 0 R /F27 1208 0 R /F44 2037 0 R >>
+1794 0 obj <<
+/D [4296 0 R /XYZ 71.731 110.117 null]
+>> endobj
+4295 0 obj <<
+/Font << /F33 1322 0 R /F23 1217 0 R /F27 1224 0 R /F44 2069 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-4217 0 obj <<
-/Length 1282      
+4313 0 obj <<
+/Length 2806      
 /Filter /FlateDecode
 >>
 stream
-xڝW�o�6�_��IbFE}�E2�+�����D�\dɕ�6�_�;�IV�,� ���x_<�N�A2Ȥ�,q!�T�a;��e!Yc�*��Λ���N��E���6H�*M�L�"�q��>�o��8�n��ujA��5;"ߜv���6�/������P�L�z5�Q�"�8;5��B%���CSZ���c{"bo�q~[J�V�o{�=�Y���*Yӕ{�[ʰ%r�',�>��i��5�wn�'�&_O�{$��Rپ��q�<��
-��{�ϤD~�Ҳ����#��2��C=W2_�=Wc�E�M�'� �P��l����v�l�Iu(��
-Tt ��Pc��>4Llߛ3G�:@l������NH�y	yC��z�CL�gKfxfbh�S�ZH�����B��V�*�f0��3�@��%�`�r?�;$ϏaV��+�3�'�z�S�~2V*�&�4J�gݖV�����]�����Fg������h����I�1Pbx�����A��U	)�(ڞ|�E����A����y���U<�)��Y��:���]|���{����/P94RYHQ*�l�]|\�6Yo B��l�Yֻ0��Y�<Y^��H2�I�T$��y��RD�����*�5����@T���d@��T�*�'��7�X4�(���	�ij�]������%^ƽo>�p���ڐ�^2��yS�ژk�� �ݖ�G����}u�l�Ђ-�����_��Gq{ZM�.E�)��4����V��G(�&�2#���J�aOY���/����@��{f7��͑�H�<��ޏw�ʹ� �ی�V�H4u�p2��G��	�?�2�v����	o����OS��82~2HcŘ_Rت�_Q7~^�kk��Dmê=�Eu��5�@�����0�-�Z>��f<NF�
|:V`��m{8��J�6�јg��l�&��oI��l W~�/��Ĺq��4�\m65kl[6�[9���z�1��F�
�3hH��X�5d��m��%��Zh�"�C�9�=�"o��!��_�����=�[Үlmj��!>7��פ?s�B���T-i�-�~2�3;�~��.�G����+�	/��m���9[�0��	��n?��^qe���%]H�xHK�cW�{�>;��*a|�4
�ƴ����*�}����zp=s��ʇ2��ú�LO���y�䬹(
��|o�<�D��C[9|ɥ��� |1�{�\�2{�w�Y��g��s#�50�L��σKO�c+1yendstream
+xڥko�8�{~��/Q��V%Y�/��Cs�]�m�8�Ł��X=\=�f�͋��n�E����!���6��Q��r?J�ծ�
+V���P0ւ�����p�ݽR���S�z8�b�|������,�V���_��ԛ�v%������+�G�4<�^���������;0Q?�ԫ<Y�3�"�
+7~&ȕ.H�0̈��#de�y�ptx�2�;7�8�j�~���G��-�F�7�Wt��y*�=/4�t��Aꏺ��N׌�5�fd���Q�
���i嘾׻ce�ޒl��z_�to��G3�wz�w*��[�X�qroV�^T�����bV�̈5�=5���}A���e�soo@sQm��As%޳ �z�/+[PE.G[��hF"T܏D�Xz߉^�X����i�4Cˣ�H�9�V�=O5��;G��rjm��U�;�$Ή��j�y���A��������B5�4�ޖ���|L�V��;��B�w<c!�z�mU��5�46��N�u~(���#�ݩ��Y��s�(b��6C�Y�`��T���8wCXgJ��y�|<¯�\3�����mS1��@оmN�sP\�x9L���C/L��ԫu%TP�3�6� ��g�6��}	J�[%�g���Z,$�TFלK�ܙ�u�A_�}]��i����������;k�=���Av���������vm�5�\���B6�݀�F�s�0��^&/���~�����px*����ȍ�*$/ďSn�
���A_
+�<_3����oP!��*s*82i�*t)f�ON�����:f �0��X�M�מ�E)4g"��M���%�9��"0K�.�F�)�[�q��F-����AQ�d�ո�b��p��3F&Lve�{�a��A=��4��Z3T�
I�O��E6��0ؖ�~��w��?7���Z�U�}b-e�N͈s��v
pT��R��o*p����$w�}���d�<���4lK�˔�R#/���5J���hR�N�
+s<d��p���?��B[-��y��0���m�]�p�ɩaf�&;˩�#�`�s�^I-��:%:maM�|�
E�.`,J������[,��jdJ	�z�d��G�4F�/���<V�^ P�NF�O���掰[sj�^08�ÀZX�6{*۸�|�'�hd�3�L���"�vks�!;�<rX��#�c3Ju����>�(46�*���
�!��=����#TD،��4f"1{7kf����D��K��CP���pލ�}1��#����7#�mTږ�1���;&b��^�$�E2���Z>��d��%���R�Ը��f�L:խ1�n)�7�,��KM��O���,8���[�*���p�^��V��b�'s�B:~ٱ��<u+���`	X/����	�ԥ0�ܭ~�nE�� 	�!���RпoCȎ|uq]?���7��)�b�Х����D�:u��;*��M����fd��D�����0�/�y/�_���0��
3f�4���`�B+�jk/�����e�XC��
��8�;�(�\���.��O�>v�q��Y�3�0 �8k�î�Sl@����xY��Aə�
+RraD�^t
+�dJ�����mo��f}��Z'â����r�/Y	��͂ƍ�ƾ<�L�q@�$�#��%/8������k�7ma|u��|)�`t?���j���)�������)�q(uK�u� x�L1�u��wǞ�mQ:E�EE	��]���	���[��GF8��fX���b��O�BXxt���u�;RՇq���}�� 1q`��Ɂp�"
aBv��t�jj�f���}]<{L@���cLtˀ�?���8V8��x�e�Wc������%އ��뗎s"A��Af���J�˭|�L�0�6���D�f���``�ǩ}��햌(e���b&<,��z���i�@�^;�C>::|ih.>�A�5������/F5ϛ`��B�&�x1�g��]u����`��
+V�����|�ȱ�|��W���j՚�����?%�.P��^��{���ru.��ފc_�)���J��
+?SNh*ݎ9&�W�ڰ�����O?/?Pa<6���Lb9V�j��D���L�B�m���z��ݺ�Ń
���[�W�j+Ќ��vD���`ʀ�$��%�!-��k���Va'b#��$��&�,N�x�*�=����hm���M�'O�$*8��kxe���(
��+P�c)߳����30ĺ~B��&߿�Qc8������@Ƿ�l����pq�����{��Ql�&F��Ƿ_O��|�>���?5$�"�ь��
+w7o���X���	�r1Y�t�$X�ث�"c�W������A�y�ϰ���pBO��-a�-4%�Ѡ5�Ħ�Zq|�U�7N���z�r��#N�����v�r�
Rea(��}��% �t)9��_�����QP�h��QF�~� ���Щ�W�t��XӊR��B����QG�]��gtO�>D@���&?	�C��6'�HX���N%ݱ����b�r5ɺ0��*�U���/��dZ
+`��i)p�=g7��$�c���y	�@� ҈s��&&�Ko�cL������C��.y�[|�`<e����^��S���-��.�a�G���y�	��ʱ嶝U���o�k��}a�}��6�	��X.?����q�aע���~���ٖ-�ʠ'�Eۇ�8�	Ysj�%!�䃭�x6x����&	_?^p^?~A�?���:�n)ܼ���r�|e~Y"x�&��O��'�U�P�endstream
 endobj
-4216 0 obj <<
+4312 0 obj <<
 /Type /Page
-/Contents 4217 0 R
-/Resources 4215 0 R
+/Contents 4313 0 R
+/Resources 4311 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 4160 0 R
+/Parent 4228 0 R
+/Annots [ 4329 0 R ]
 >> endobj
-4218 0 obj <<
-/D [4216 0 R /XYZ 71.731 729.265 null]
+4329 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [138.415 130.198 190.751 136.976]
+/Subtype /Link
+/A << /S /GoTo /D (installation-whining) >>
 >> endobj
-4219 0 obj <<
-/D [4216 0 R /XYZ 71.731 718.306 null]
+4314 0 obj <<
+/D [4312 0 R /XYZ 71.731 729.265 null]
 >> endobj
-4220 0 obj <<
-/D [4216 0 R /XYZ 71.731 675.303 null]
+830 0 obj <<
+/D [4312 0 R /XYZ 159.597 706.118 null]
 >> endobj
-4221 0 obj <<
-/D [4216 0 R /XYZ 71.731 651.457 null]
+4315 0 obj <<
+/D [4312 0 R /XYZ 71.731 693.68 null]
 >> endobj
-4222 0 obj <<
-/D [4216 0 R /XYZ 118.555 612.893 null]
+4316 0 obj <<
+/D [4312 0 R /XYZ 71.731 664.469 null]
 >> endobj
-1782 0 obj <<
-/D [4216 0 R /XYZ 71.731 570.852 null]
+4317 0 obj <<
+/D [4312 0 R /XYZ 71.731 633.585 null]
 >> endobj
-830 0 obj <<
-/D [4216 0 R /XYZ 266.363 538.456 null]
+4318 0 obj <<
+/D [4312 0 R /XYZ 71.731 576.798 null]
 >> endobj
-4223 0 obj <<
-/D [4216 0 R /XYZ 71.731 528.091 null]
+4319 0 obj <<
+/D [4312 0 R /XYZ 71.731 545.914 null]
 >> endobj
-4224 0 obj <<
-/D [4216 0 R /XYZ 71.731 503.223 null]
+4320 0 obj <<
+/D [4312 0 R /XYZ 71.731 515.03 null]
 >> endobj
-4225 0 obj <<
-/D [4216 0 R /XYZ 71.731 488.279 null]
+4321 0 obj <<
+/D [4312 0 R /XYZ 71.731 484.145 null]
 >> endobj
-4215 0 obj <<
-/Font << /F33 1306 0 R /F27 1208 0 R /F23 1201 0 R /F44 2037 0 R >>
+4322 0 obj <<
+/D [4312 0 R /XYZ 71.731 440.31 null]
+>> endobj
+1795 0 obj <<
+/D [4312 0 R /XYZ 71.731 396.474 null]
+>> endobj
+834 0 obj <<
+/D [4312 0 R /XYZ 182.7 353.377 null]
+>> endobj
+4323 0 obj <<
+/D [4312 0 R /XYZ 71.731 340.939 null]
+>> endobj
+4324 0 obj <<
+/D [4312 0 R /XYZ 71.731 290.806 null]
+>> endobj
+4325 0 obj <<
+/D [4312 0 R /XYZ 118.555 252.242 null]
+>> endobj
+4326 0 obj <<
+/D [4312 0 R /XYZ 118.555 213.489 null]
+>> endobj
+4327 0 obj <<
+/D [4312 0 R /XYZ 71.731 168.558 null]
+>> endobj
+4328 0 obj <<
+/D [4312 0 R /XYZ 71.731 148.632 null]
+>> endobj
+4330 0 obj <<
+/D [4312 0 R /XYZ 76.712 113.744 null]
+>> endobj
+4311 0 obj <<
+/Font << /F33 1322 0 R /F23 1217 0 R /F27 1224 0 R /F44 2069 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-4228 0 obj <<
-/Length 2203      
+4333 0 obj <<
+/Length 2728      
 /Filter /FlateDecode
 >>
 stream
-xڥXY��6~�_a�%20f�����\L��Y�����L�J˒W�vz~��AJ���4*�d�Ώ����*�"��Q�PI�*Nw���3?�I'%�P�zar�T�^mf;�����S�
-E��~<%�B�d����?�so��F�Y�����9�_����w��kYUf�e��)S�d�{�p�a��v��{0��T֝[��r�'�-URĨ,�ب$LU5k��_��<�f�Z����2,sNC՗�ʲ\��+x�=��ə��W�߃��Ӧޱ����z�*u
HOk˓9X��i���<ܮ�0h�xm�DK�v�ZӣBq�Ԗn΃QI�;��&�Q~m������Ǧ,l��|�q;F��8ME�F�1�D63�t����K�}>+��X-v���%K���I����鿚'���=;��ʱޓ������Κ���>=���ήG�1��U:$��L�P���xtPw_4uߖ���*������}Ӿ��8��O�#��&�o��I|�?��}�?����gv�����3Y�����L�!
���*/��w��(r+�V�k��k�[ש��q3w]�C�vw��(X��߸m�R AA��e�x+��
6:��J�EA���=�Xh����Ym2�&��b�%\��kq�@���
�h-���jr~淘/H�&7¨ZGaq�o;�LG[<u���\9���g�:��ƭj�V���ٶ�J3$mÍ庨6-�^M�E�Z_�G{�J�S�����x�t�S��e�(�|���B����D�3sM�5�s_65˔��aCg��q�E?�ڶ�b��Z���P�O�_\��n ���-��*NJ�H�]%���X��(pΦ��b�L�c�6S��R~"�wox�о�[�K�.��-�ˢ����Q!ݜy��0Up�U�E�J��PS������y��p��+�	��<Q|����bp�8�uf;�+n�3�dț߁;ow��.��5�bx�\q�\c��x?Pb�f��yb��X{k+f5{�C|2���?6���1���$��vGn�o�u;r�u�&hL�O�4r���.��d�ʠ̭�O�2bXN��2nȗ�e�w�x�d0�°�G��К�>��"p��n;ʴ�N�~���K�b�N���{�#$�ӱ"v<Q5��ʯv����N�]�0.�]5bNB&�Ǔ@83g䒖�
-��	3F��S��|''���
-/���6�q�o�Ŀ?��*S�=��=V��:���2�(��y�"�ցzpJ�����6��.�������y��Ұ֔�y�F�k(�V$R���D�����lfB7��z#���Q5����Q6�����^���7�=W�H��A�x2��VB�j,R�e����
�{���P`�/��PH��oKm)��~�Gs���n��
�ytLc)B*�����te��P-n�`n���r	X7vphT�����f�
U9�ő�҄�a���%+�P6����B�/r��M���CW(��،@�T���������5Y�:%����#H��?�BZO6K�N���8*����9V}������q��{3c�׉fH�x���w0��U.�p�"	=��S�"Mf�K�C�@<����;x4/���2T�L�H�Q��6Á���-�b8Y�Xཱི�w�%�&Ur4���Ŀ})\|�*-|p�잰�m
-@G���7��R>���/!;:��{U�����!�&�����GRӏ"WuSJMo1��vE������_����/���?ߡp��|y��UkW�����;A�&^ۂ������FB\��0/�:�B��J���Œ���u�jk�Vd~���~��v!֌D$�K�[��xzj�K��ސ��Q���3����}sNBp��!<®a�?pv�`FĈ�1%%q����v-լmL������{���),�%���a��9{�*�Q��z�^����-����-����oA����d����	M=/J�Yƾ�F�,�$��͇��Mkf
��*���BR��4R��#�FթD�l�]�G��aHunvLA2��1l3g0~� :���Gh
��0ಈԣk�UC�1�����ó˓�؁�����e$ �g�wW;O��?r�Е�����el΀�61�7��&�"�0E�T/�?��e"�z���XjcEAd�Qz��o��>����%�endstream
+xڝَ�6���'�5��3o3A�b��.�E�H��,�m%��蘎��.�=����Y,V�u�j���Z�ʍ5|����p�������A	�VP�3���w�^�n���
+�vu�b��I�v������ܛv��C�	]���+�~^��U�������:v�D�)�Ź�׫��P�T�Q2y����d�Gӛ�ỏ�1�ȍ}$�8�c٭��:�����yR4F�u�� r�f�B��`xN\돆�Dz6Y_���9�"��J��
��ܻy6�Z
:
+��OG����lgH����	���'�]��k��J�0	�doq�d�@?
�k�9���Դ����Y#NJ�;��������+�䘨�*g�����]�i�	�og��h�L(v����U�U.oD4x�l�^(ē�{�����X;�Ŵ��t�9�0�x�_���4�����mX<ʂ 4�Pd5��1�����fdg�ҟD.zS���--�U&�ܒ�6����6�-a�y�Ø����Jx�;�E(�M�ۻ�D�~<��O�_��+���A'�aƃ��]�M�=�!�SVVt ���H�Cn�5�]1�[�D#��/�ͫ2�}�6�;��a�.�a0��7{t�5֋͑n Bi��?�T�:&�0Y�d ?�Xp�k�
X<�@�j;A�b
+)�����"����:�a�D�]��������n��V*̚�ȳ�D1U��W��<��v�$Y+�;v�ri=�E K-`�ߙ��#9���ڴr�0����^c���O5�eEQr��iVA�=�Q2n��"�esn9%��9�l)�
�,��H����Y����-	Pa�ev�d$�NBVw�ΝWsO$�K�93>��&ˏ<:���^��D���Tg]��w�5��0`�Y]��P��z��1(7�C�T�a�Jb�f����s��#�=�#�Ր:�Qu8��|�^~�r6yy����hjY�t�&��}/h� I�v�s~4�P�s�YV���d-�	a�^�b�v��CӞL�du��g!9j�*v��0��/yp�M���>��K�OlQ*��D�܄9%�	���k�R����P�bچq(D�!@:�i���{�X0#1�1
+)�"�g�%���e25�a�U�/���)�wT�7UCQ]r�<�RPNƐ6�������0(b�m��d
�m�9��
+@�\O&�e��v=����]m�G�Zxλ`|8�mxrl�侻u��3J�8����Oo!6I(���i�L��G�J��I�zf�Z�3��Z�p��o��xi�a(�R���0:�B.�ޠ�q46?�.�1(b���
+�;6�Y\��������wr�[ᮻ���2`�b�>+Xd)F(cDJ<������[�Z�]�]'('�R�C���Z�ީ�|m�\0~&K?�����n����8��΄	D�;I檜���ɫNHAP�`�c:���?~��[��������"���8])7M��5����ÿFJ B�� �ߢ�{	/�%���l5�S	�u��w���SՓ�oKb���h���|�oU�����H'���ϐ�Yn�`5���صrP�9�-o6��q�\�C�pL	�M�Pq���S2�iO�1%�N�5������u�(�)C؅�)�!tњ�)�	��Y�WT4$w06�<�e���\}BA���bw��ˊd.��ވ)M.�t'��r��:U�Ɇb<���L��q�򛊊p�?���T�$��mRQ|䲁�5�I%W��TYu�ma��&W3����hp�$��{���"7���r�H^ɠ�u=?��}�����V�Wl���򔺂��vB���ٲ1����t3Ǿ������RC�!CI�"��Sv�.ɣ�0��T��Ihe��J��Ds-��e\5��qӈ_Ik��R�,��L��R��5}/�dž�r����	9��$��'����g��n6�д����eFB�ƞ�:l��~��c�����������haE����&�5I��g	|��$Mc�9v��~�\�|W�NB��_���e���Hu�$��F�N�t����b�T�$�3�|������ӲB��ᮮ�>��N�[ݛ�X��S�H���Ε��A>\ụ�҆3�k�D���გ4�%e�;6��Z�=4�ϰ7��ˮ�W�K#	�l��lo��[7�
��N%��\��� 	�*hT\;OȒ��d#���s���)�Q�xH�x�퉥H�Cjr����?�]�^_qB�%��n�y�\4�Ԃȫ��ם�'ᒟ0Bof�DE�ك����z��R���>�io���:��i����Ty���Gq���AC�1��qd3w���],��M����AN��D��؜�:$�`B���D�{=|,+,u�(���(�_����*��G~DJ���IF�ǧt|��$N�%��=�F(��ɀ�M�A�+3KP�|%��Y��� jC/�mbQ艴��+Y0�������bQ��S4�J�2ᘼG)J��1���N#z�/@��.��}$)���s)R��WX�yp�p�V^��n�!6�;Nwkŝ�2u1��NqJ\�幒��,U*�$|Gv��݆�cZ���a��׆_������,��3+n��欚x7�P��@���$V��N(7?ц~��%�ʈï��z�����endstream
 endobj
-4227 0 obj <<
+4332 0 obj <<
 /Type /Page
-/Contents 4228 0 R
-/Resources 4226 0 R
+/Contents 4333 0 R
+/Resources 4331 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 4160 0 R
-/Annots [ 4243 0 R ]
+/Parent 4228 0 R
+/Annots [ 4336 0 R ]
 >> endobj
-4243 0 obj <<
+4336 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [390.612 336.55 442.915 345.462]
+/Rect [364.929 706.456 418.584 714.938]
 /Subtype /Link
-/A << /S /GoTo /D (template-http-accept) >>
->> endobj
-4229 0 obj <<
-/D [4227 0 R /XYZ 71.731 729.265 null]
+/A << /S /GoTo /D (installation-whining-cron) >>
 >> endobj
-1783 0 obj <<
-/D [4227 0 R /XYZ 71.731 718.306 null]
+4334 0 obj <<
+/D [4332 0 R /XYZ 71.731 729.265 null]
 >> endobj
-834 0 obj <<
-/D [4227 0 R /XYZ 387.39 703.236 null]
+4335 0 obj <<
+/D [4332 0 R /XYZ 71.731 718.306 null]
 >> endobj
-1784 0 obj <<
-/D [4227 0 R /XYZ 71.731 692.184 null]
+1796 0 obj <<
+/D [4332 0 R /XYZ 76.712 678.755 null]
 >> endobj
 838 0 obj <<
-/D [4227 0 R /XYZ 220.023 651.159 null]
+/D [4332 0 R /XYZ 188.149 639.382 null]
 >> endobj
-4230 0 obj <<
-/D [4227 0 R /XYZ 71.731 642.336 null]
+4337 0 obj <<
+/D [4332 0 R /XYZ 71.731 632.03 null]
 >> endobj
-4231 0 obj <<
-/D [4227 0 R /XYZ 269.966 616.649 null]
+4338 0 obj <<
+/D [4332 0 R /XYZ 71.731 599.168 null]
 >> endobj
-4232 0 obj <<
-/D [4227 0 R /XYZ 71.731 605.884 null]
+4339 0 obj <<
+/D [4332 0 R /XYZ 71.731 542.381 null]
 >> endobj
-4233 0 obj <<
-/D [4227 0 R /XYZ 81.694 577.874 null]
+1797 0 obj <<
+/D [4332 0 R /XYZ 71.731 511.871 null]
 >> endobj
-4234 0 obj <<
-/D [4227 0 R /XYZ 242.937 577.874 null]
+842 0 obj <<
+/D [4332 0 R /XYZ 243.797 474.281 null]
 >> endobj
-4235 0 obj <<
-/D [4227 0 R /XYZ 71.731 575.717 null]
+4340 0 obj <<
+/D [4332 0 R /XYZ 71.731 463.916 null]
 >> endobj
-4236 0 obj <<
-/D [4227 0 R /XYZ 81.694 559.941 null]
+4341 0 obj <<
+/D [4332 0 R /XYZ 71.731 421.116 null]
 >> endobj
-4237 0 obj <<
-/D [4227 0 R /XYZ 346.268 559.941 null]
+4342 0 obj <<
+/D [4332 0 R /XYZ 71.731 382.262 null]
 >> endobj
-4238 0 obj <<
-/D [4227 0 R /XYZ 81.694 546.99 null]
+4343 0 obj <<
+/D [4332 0 R /XYZ 118.555 343.698 null]
 >> endobj
-4239 0 obj <<
-/D [4227 0 R /XYZ 71.731 524.076 null]
+4344 0 obj <<
+/D [4332 0 R /XYZ 71.731 291.892 null]
 >> endobj
-4240 0 obj <<
-/D [4227 0 R /XYZ 71.731 491.035 null]
+4345 0 obj <<
+/D [4332 0 R /XYZ 71.731 250.984 null]
 >> endobj
-1785 0 obj <<
-/D [4227 0 R /XYZ 71.731 447.199 null]
+4346 0 obj <<
+/D [4332 0 R /XYZ 71.731 199.178 null]
 >> endobj
-842 0 obj <<
-/D [4227 0 R /XYZ 303.155 404.102 null]
+4347 0 obj <<
+/D [4332 0 R /XYZ 71.731 184.235 null]
 >> endobj
-4241 0 obj <<
-/D [4227 0 R /XYZ 71.731 391.931 null]
+1798 0 obj <<
+/D [4332 0 R /XYZ 71.731 111.871 null]
 >> endobj
-4242 0 obj <<
-/D [4227 0 R /XYZ 71.731 362.453 null]
+4331 0 obj <<
+/Font << /F33 1322 0 R /F23 1217 0 R /F44 2069 0 R /F27 1224 0 R >>
+/ProcSet [ /PDF /Text ]
 >> endobj
-1786 0 obj <<
-/D [4227 0 R /XYZ 71.731 336.55 null]
+4350 0 obj <<
+/Length 2329      
+/Filter /FlateDecode
+>>
+stream
+xڥَ���}���Hm�G���:�����E�$fy�<<��>u5I���p�����꺺���r-��V�؇�K��V^?9�	V���
+�^H��/_������T��o�����EV�{*	=����p�.��{/t�P��]_6'�O��U�mz�����$0�c�&��:��R�o����2�9�J��
+���2qb:�
�ȋκ�����u��Q-��F:��s����c���{�
�7���B��-B��Se�c��m^f�.d�ֵ�A��������n;�P�堒b���;
J�
+A���.�z� �"��'���Z��(��=��p=��������G��XPj��o1V�:�tB�ך��C�*�^��*��~���Q"=�)��[�/�M''�ҍ�e+����R�N�=�ڵ��7��a޿t��3��7n��V���;���87<e�ۦ-�r�B7YMu?V�a֚�a�q-N�n�l/
+x`��Z�7k@�ڛ�&��B/�7��8m�&�����'��!ul��G�.!--'��H�U�fu�Ȯ�a�k;v<�Ny����%�`��5��]����i�aVDW�b—)b�['�rH8Ո���I/rG�[���N\�]a��掐��KO�����p���BW
+�fbZgUe$��AGe�8o0�E�����vӡ�������ۃ��Ё���5��%:����9��x%1�߰P��z6�<����:��3	��m{a>��g��|��i��!��p���z���C�����I��Af,4�,�����D�`�ZC��y
��1H�#
�%�d�g�L�����
��i�][��YvU%�;��#�W�I'-Z`��H]�8I.D�.p(��XND�/��ph!S��60.�ܕ�����Kv����";�5����R� �P|���(��Q�-L'U��W#�p�l�s S����A��E���1�|�w켈�f�����ʴ��~�c��F..@�1.W�,���x'��<���}E{�Ȼ3g����Ja���5����W0���i/H0cS��z�w*9�m�M���{tSOE~d�����}�=������E�w�5|��P��iiC܋��@���҅�]�wl$�\%M�o%@I=��
}�%�ϋTD��n�w�������C4�Κ�&�!��I�����Q�d	��r�����l�X�dԞg�������#��"6�v���S��1B|�����8LR&٬,_!�[�X�����e�(ۋ�{�UQ���0Y�lLbJ&@��J	0w<��1)��&�(�@�ގ�;�wKV�=����@��� �sl��X�����R�4p��Ö~�䤻����ǔ%z
+��3�Yg&�2u�g� ;���8=n�`�T�Y�N���`�C���+/�zO9TZ1l\f4'�a]��h��l�vt��5s��ۄ����M`@��f�
�B
+I������Ԇ������Ä
+�ȅn�e��C!<'vvc��d~��z�DQ�d1��ɂ��G-f7��O3i�����o,�<�k��_Z��Y�g�/~U6P�i��(6�y��D1��(�D:��r/!I'�M��v�
+^?�r��=�����L@�J$�� ����%��xy����RJR&�Ai=#Q�Z�4�WaX�^a���釟����5���ޞ�8�=�ǩ�4��N[ǧ��o'N 
�H����D����h���:���{���w\凉姁J8�>mL��nW�i�&�J��c~"����>�V��DZ�63�qK'�e��s<���h{��O.B�eC�.���&XKH1�|�qJ�$K��3^�s#������q?;V#��=�4��PbY)���a.O��uI]�6��!wCAZq��������p��@�bl���:+����@]DY��0x��7ț?��y�%�\>U���NU��9�lK��c�Q�0�U�%y�Q�ė�������=S��|�1	h�G
+�֟`0�S�pjeϙ��2S���]
+��Ň���a�xYJ�'u��7�[o����O],����燘�L���'��Ye�J(��0,�Z����6�|_��|M��'�� �{�,G�����t�
�x����cU��5S��ҙΌd߂S3�~!*m9K B//��[��~b+�:�7�ѵ�$r�a���a|�Ǜ����8C9���՟�s_��Y��9��P>���Qj^�����
+$9F+Y�f!�C.*��UV��{��ggN3��s	��5T�}�9)r�By؎�/rn��{ۮ�mA���#oS2O�@q����d&Y�jz1�M\P�8���C֢���endstream
+endobj
+4349 0 obj <<
+/Type /Page
+/Contents 4350 0 R
+/Resources 4348 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 4365 0 R
+/Annots [ 4355 0 R ]
+>> endobj
+4355 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [192.636 559.034 244.94 567.945]
+/Subtype /Link
+/A << /S /GoTo /D (list) >>
+>> endobj
+4351 0 obj <<
+/D [4349 0 R /XYZ 71.731 729.265 null]
 >> endobj
 846 0 obj <<
-/D [4227 0 R /XYZ 308.598 299.335 null]
+/D [4349 0 R /XYZ 243.524 707.841 null]
 >> endobj
-4244 0 obj <<
-/D [4227 0 R /XYZ 71.731 289.192 null]
+4352 0 obj <<
+/D [4349 0 R /XYZ 71.731 697.476 null]
 >> endobj
-4245 0 obj <<
-/D [4227 0 R /XYZ 363.706 279.21 null]
+4353 0 obj <<
+/D [4349 0 R /XYZ 71.731 654.675 null]
 >> endobj
-4246 0 obj <<
-/D [4227 0 R /XYZ 219.335 253.307 null]
+4354 0 obj <<
+/D [4349 0 R /XYZ 71.731 623.791 null]
 >> endobj
-4247 0 obj <<
-/D [4227 0 R /XYZ 320.961 253.307 null]
+4356 0 obj <<
+/D [4349 0 R /XYZ 71.731 559.034 null]
 >> endobj
-4248 0 obj <<
-/D [4227 0 R /XYZ 71.731 240.356 null]
+4357 0 obj <<
+/D [4349 0 R /XYZ 71.731 544.09 null]
 >> endobj
-4249 0 obj <<
-/D [4227 0 R /XYZ 157.2 240.356 null]
+4358 0 obj <<
+/D [4349 0 R /XYZ 71.731 495.039 null]
 >> endobj
-4250 0 obj <<
-/D [4227 0 R /XYZ 71.731 238.199 null]
+4359 0 obj <<
+/D [4349 0 R /XYZ 71.731 449.046 null]
 >> endobj
-4251 0 obj <<
-/D [4227 0 R /XYZ 118.555 199.635 null]
+4360 0 obj <<
+/D [4349 0 R /XYZ 71.731 425.201 null]
 >> endobj
-4252 0 obj <<
-/D [4227 0 R /XYZ 165.524 191.171 null]
+4361 0 obj <<
+/D [4349 0 R /XYZ 118.555 386.637 null]
 >> endobj
-4253 0 obj <<
-/D [4227 0 R /XYZ 341.284 179.514 null]
+1896 0 obj <<
+/D [4349 0 R /XYZ 71.731 344.596 null]
 >> endobj
-1787 0 obj <<
-/D [4227 0 R /XYZ 71.731 145.938 null]
+850 0 obj <<
+/D [4349 0 R /XYZ 266.363 312.2 null]
 >> endobj
-4226 0 obj <<
-/Font << /F23 1201 0 R /F27 1208 0 R /F35 1569 0 R /F44 2037 0 R /F48 2049 0 R /F33 1306 0 R >>
+4362 0 obj <<
+/D [4349 0 R /XYZ 71.731 301.835 null]
+>> endobj
+4363 0 obj <<
+/D [4349 0 R /XYZ 71.731 276.967 null]
+>> endobj
+4364 0 obj <<
+/D [4349 0 R /XYZ 71.731 262.023 null]
+>> endobj
+4348 0 obj <<
+/Font << /F33 1322 0 R /F23 1217 0 R /F27 1224 0 R /F44 2069 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-4256 0 obj <<
-/Length 2714      
+4368 0 obj <<
+/Length 2203      
 /Filter /FlateDecode
 >>
 stream
-xڥYK���ϯ��RՈC|����UIU��`�@��D/E�|�x���5�AR���rjk�@���n�
-V>��4�R�O�{a��Ӄ�:`���@0���]�|�����R����zޯ"?�T�RzY�������y��f��:���n�s�����n�u�4�����}�N�U���$s熻P��<%Ğ�\fQ`�K���C��Scz��B��i1Ԧe�?�p4�	��,��چ�������a�~5#
���&��E;0x0��U=�:������6q��<�ӹ)�?�ƣ��/�v�l�tI{{f�96[��^�<��u�Уل1��f�W��e�2�1{������N��H+A��1����4]�Ó�h�%L[1��X�G2c����Y�UϓSQ���W��M��+�Ҝeh��N6��&e��`��IgF&:'��K�p=-s=-Ef`�a�V����CWTz6|�zo�	KV������U����0+>�5�V.-�g��l�Y0��N��Ufb���N����{݌V�A���U��`�ַT�{��B��m��S�������� �-Ӷ�vI�(R�'u��ZD:wfW��x��i֓v놗��g���]�N'�8�I���N��.�ew���Ό�#�x�~z�趗��t���0��ћ ^�A��r�~
-��p֫ʽsVk��wVW�Bno!�� �G���!�<)�E{�B�Y��XlB��2Ð�d�/uC�ȓ�[F
-At%g�0��P�EӼ�}�Q<娗L�>���{"��-p�D^�‰�Xq�i�5#")M�a�Ed
-�J!�<$M���`8��ш��'60���O�yP�N��r|S�_hX���[+��r_	��q�����I�_�؟�8���w$�TiGD���ĩԀx�	�\`A�=�9$N:���\�
#8.`(.��Qk�H�2~`�	��P*�ү�Y9d�N���H�GWޭen�M�*�u:��$�׽�� ��SD$8�}�Qi
���{��0�	u��(;�pY�R��S�����L��h�������a�aDO��&n^��2nr�UK�x�J����y�"�OB i�e����i�E�0�ډK��[TK�gԐ���uu���&�q�n��m[�H'�S�E
-�Ka�[SΎ�Z���;$�7*"��	k��t+
-"���]%��^0	�Ћ�n��|&�D����"!�H鑋��k]RQ�c~��{r��������ԽL���B��"��`t���`I7Ou���2L.K9�J9�f�Þ��摗���*��7T��܆"�ʫ�����Ȗ���l���xepg.������w(����N{d���	��鋭T�U�\[*���I��Jq�@���P�>K���M%S�a�hz�#�Nd�Z��������/�5��y�K0�%.5�N�FH,�K��S�v������e�ag��%�P��ȳE�K�K}�c��ⴽ`�},7�-0�!D6p-�K���" �t�K�@|(S����Q�=!T#�?�v[��E%?�M�U�TZ�(�΂�Q�
-������H��]�O-�4,1uMa�~i��R�Ø1�c�,+*��|�7�py�T�1���ۻ�(9^Po�k&��5��{u�c[]6<ʒ��Xj���+I�W�6��	�J+��W0�u�3��m(���]�2;'&�.�F%#�yq�ѵ#���.���J��d���OaJ�О�b\8���� A�/�,Z��}�:��l�0KOS4D6���d;��ܝl{�YVǘ��P�J.�9�o�Q-ؖ�K��Ut}/�n�Ժ3B��Ұ�$��L�J�Z�x��uR�qX�CH"�䀙VO��^7{!]40e��\*;N�n�������ѝ��pVu�^w��p��y�.ຄ�HpFx����(/���܂
�_k3:|�W���ǣ��G�r�qre�T:��#�s��o}(���=t���+�64��K,,,���6u>�P��_!͘�ζ���B�u���Ta�CW�yO%9�
-���ƳwnnELR/IܛD���J#�.lU�<t^�`q�i��4�	����:�&�xl�΃@��i�^���e�{VYJ��`�B2�}���eubO����ܷ�������u��r���w!��i|��;\{���A��8�P}g^&�����Ͽ����_�������@ȑ
-=�����O�W�����(��c�~���[��6������¢��U�bχm���ݠ/�Vl�J;Az�O/`8Yq�9���+6d_F���ӿ�u��;�F��ơ�g��³0y۳b�Sy�+�Օc�ɱ��Ok�^h,���q��wM.R^��wZ�Ԏ�55{�w�������D#�%�J���J%-Qo��I:[ ԮU*Z��B�H�Q��� Š�4�sB�-6V��@y�d����h��f	D^�����o��O�� ���/1J~����d^x��䇂l�-�T[h�x�x;�e^����޳)���&\���^��6����\��_h�C]��r��\�m�J?���S=�]AwϮĐ=���<-���7�
-����g�Z{��I�ex�h����>���b'�ƾ2�g��@ʔ��Cٔ��6oэ9���1���I��8篟�^^^�6=���4��	�p�DwE���;��^%o|BL+ʼ,H?�K�r�Cf����RZ������Q�:뺌endstream
+xڥXY��6~�_a�%20f�����\L��Y�����L�J˒W�vz~��AJ���4*�d�Ώ����*�"��Q�PI�*Nw���3?�I'%�P�zar�T�^mf;�����S�
+E��~<%�B�d����?�so��F�Y�����9�_����w��kYUf�e��)S�d�{�p�a��v��{0��T֝[��r�'�-URĨ,�ب$LU5k��_��<�f�Z����2,sNC՗�ʲ\��+x�=��ə��W�߃��Ӧޱ����z�*u
HOk˓9X��i���<ܮ�0h�xm�DK�v�ZӣBq�Ԗn΃QI�;��&�Q~m������Ǧ,l��|�q;F��8ME�F�1�D63�t����K�}>+��X-v���%K���I����鿚'���=;��ʱޓ������Κ���>=���ήG�1��U:$��L�P���xtPw_4uߖ���*������}Ӿ��8��O�#��&�o��I|�?��}�?����gv�����3Y�����L�!
���*/��w��(r+�V�k��k�[ש��q3w]�C�vw��(X��߸m�R AA��e�x+��
6:��J�EA���=�Xh����Ym2�&��b�%\��kq�@���
�h-���jr~淘/H�&7¨ZGaq�o;�LG[<u���\9���g�:��ƭj�V���ٶ�J3$mÍ庨6-�^M�E�Z_�G{�J�S�����x�t�S��e�(�|���B����D�3sM�5�s_65˔��aCg��q�E?�ڶ�b��Z���P�O�_\��n ���-��*NJ�H�]%���X��(pΦ��b�L�c�6S��R~"�wox�о�[�K�.��-�ˢ����Q!ݜy��0Up�U�E�J��PS������y��p��+�	��<Q|����bp�8�uf;�+n�3�dț߁;ow��.��5�bx�\q�\c��x?Pb�f��yb��X{k+f5{�C|2���?6���1���$��vGn�o�u;r�u�&hL�O�4r���.��d�ʠ̭�O�2bXN��2nȗ�e�w�x�d0�°�G��К�>��"p��n;ʴ�N�~���K�b�N���{�#$�ӱ"v<Q5��ʯv����N�]�0.�]5bNB&�Ǔ@83g䒖�
+��	3F��S��|''���
+/���6�q�o�Ŀ?��*S�=��=V��:���2�(��y�"�ցzpJ�����6��.�������y��Ұ֔�y�F�k(�V$R���D�����lfB7��z#���Q5����Q6�����^���7�=W�H��A�x2��VB�j,R�e����
�{���P`�/��PH��oKm)��~�Gs���n��
�ytLc)B*�����te��P-n�`n���r	X7vphT�����f�
U9�ő�҄�a���%+�P6����B�/r��M���CW(��،@�T���������5Y�:%����#H��?�BZO6K�N���8*����9V}������q��{3c�׉fH�x���w0��U.�p�"	=��S�"Mf�K�C�@<����;x4/���2T�L�H�Q��6Á���-�b8Y�Xཱི�w�%�&Ur4���Ŀ})\|�*-|p�잰�m
+@G���7��R>���/!;:��{U�����!�&�����GRӏ"WuSJMo1��vE������_����/���?ߡp��|y��UkW�����;A�&^ۂ������FB\��0/�:�B��J���Œ���u�jk�Vd~���~��v!֌D$�K�[��xzj�K��ސ��Q���3����}sNBp��!<®a�?pv�`FĈ�1%%q����v-լmL������{���),�%���a��9{�*�Q��z�^����-����-����oA����d����	M=/J�Yƾ�F�,�$��͇��Mkf
��*���BR��4R��#�FթD�l�]�G��aHunvLA2��1l3g0~� :���Gh
��0ಈԣk�UC�1�����ó˓�؁�����e$ �g�wW;O��?r�Е�����el΀�61�7��&�"�0E�T/�?��e"�z���Xjc-
*�A�����o��>�����%�endstream
 endobj
-4255 0 obj <<
+4367 0 obj <<
 /Type /Page
-/Contents 4256 0 R
-/Resources 4254 0 R
+/Contents 4368 0 R
+/Resources 4366 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 4286 0 R
+/Parent 4365 0 R
+/Annots [ 4383 0 R ]
 >> endobj
-4257 0 obj <<
-/D [4255 0 R /XYZ 71.731 729.265 null]
+4383 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [390.612 336.55 442.915 345.462]
+/Subtype /Link
+/A << /S /GoTo /D (template-http-accept) >>
 >> endobj
-4258 0 obj <<
-/D [4255 0 R /XYZ 71.731 741.22 null]
+4369 0 obj <<
+/D [4367 0 R /XYZ 71.731 729.265 null]
 >> endobj
-850 0 obj <<
-/D [4255 0 R /XYZ 347.534 707.841 null]
+1897 0 obj <<
+/D [4367 0 R /XYZ 71.731 718.306 null]
 >> endobj
-4259 0 obj <<
-/D [4255 0 R /XYZ 71.731 697.476 null]
+854 0 obj <<
+/D [4367 0 R /XYZ 387.39 703.236 null]
 >> endobj
-4260 0 obj <<
-/D [4255 0 R /XYZ 71.731 654.675 null]
+1898 0 obj <<
+/D [4367 0 R /XYZ 71.731 692.184 null]
 >> endobj
-4261 0 obj <<
-/D [4255 0 R /XYZ 412.638 643.881 null]
+858 0 obj <<
+/D [4367 0 R /XYZ 220.023 651.159 null]
 >> endobj
-4262 0 obj <<
-/D [4255 0 R /XYZ 111.263 617.978 null]
+4370 0 obj <<
+/D [4367 0 R /XYZ 71.731 642.336 null]
 >> endobj
-4263 0 obj <<
-/D [4255 0 R /XYZ 71.731 615.821 null]
+4371 0 obj <<
+/D [4367 0 R /XYZ 269.966 616.649 null]
 >> endobj
-4264 0 obj <<
-/D [4255 0 R /XYZ 71.731 600.877 null]
+4372 0 obj <<
+/D [4367 0 R /XYZ 71.731 605.884 null]
 >> endobj
-4265 0 obj <<
-/D [4255 0 R /XYZ 71.731 551.826 null]
+4373 0 obj <<
+/D [4367 0 R /XYZ 81.694 577.874 null]
 >> endobj
-4266 0 obj <<
-/D [4255 0 R /XYZ 71.731 525.923 null]
+4374 0 obj <<
+/D [4367 0 R /XYZ 242.937 577.874 null]
 >> endobj
-4267 0 obj <<
-/D [4255 0 R /XYZ 213.956 512.972 null]
+4375 0 obj <<
+/D [4367 0 R /XYZ 71.731 575.717 null]
 >> endobj
-4268 0 obj <<
-/D [4255 0 R /XYZ 71.731 510.815 null]
+4376 0 obj <<
+/D [4367 0 R /XYZ 81.694 559.941 null]
 >> endobj
-4269 0 obj <<
-/D [4255 0 R /XYZ 71.731 495.871 null]
+4377 0 obj <<
+/D [4367 0 R /XYZ 346.268 559.941 null]
 >> endobj
-4270 0 obj <<
-/D [4255 0 R /XYZ 134.999 486.371 null]
+4378 0 obj <<
+/D [4367 0 R /XYZ 81.694 546.99 null]
 >> endobj
-4271 0 obj <<
-/D [4255 0 R /XYZ 71.731 458.476 null]
+4379 0 obj <<
+/D [4367 0 R /XYZ 71.731 524.076 null]
 >> endobj
-4272 0 obj <<
-/D [4255 0 R /XYZ 71.731 386.581 null]
+4380 0 obj <<
+/D [4367 0 R /XYZ 71.731 491.035 null]
 >> endobj
-4273 0 obj <<
-/D [4255 0 R /XYZ 71.731 334.775 null]
+1899 0 obj <<
+/D [4367 0 R /XYZ 71.731 447.199 null]
 >> endobj
-4274 0 obj <<
-/D [4255 0 R /XYZ 71.731 319.831 null]
+862 0 obj <<
+/D [4367 0 R /XYZ 303.155 404.102 null]
 >> endobj
-4275 0 obj <<
-/D [4255 0 R /XYZ 417.328 310.331 null]
+4381 0 obj <<
+/D [4367 0 R /XYZ 71.731 391.931 null]
 >> endobj
-4276 0 obj <<
-/D [4255 0 R /XYZ 218.704 298.675 null]
+4382 0 obj <<
+/D [4367 0 R /XYZ 71.731 362.453 null]
 >> endobj
-4277 0 obj <<
-/D [4255 0 R /XYZ 508.932 298.675 null]
+1900 0 obj <<
+/D [4367 0 R /XYZ 71.731 336.55 null]
 >> endobj
-4278 0 obj <<
-/D [4255 0 R /XYZ 76.712 270.381 null]
+866 0 obj <<
+/D [4367 0 R /XYZ 308.598 299.335 null]
 >> endobj
-4279 0 obj <<
-/D [4255 0 R /XYZ 118.555 226.836 null]
+4384 0 obj <<
+/D [4367 0 R /XYZ 71.731 289.192 null]
 >> endobj
-4280 0 obj <<
-/D [4255 0 R /XYZ 135.395 218.372 null]
+4385 0 obj <<
+/D [4367 0 R /XYZ 363.706 279.21 null]
 >> endobj
-4281 0 obj <<
-/D [4255 0 R /XYZ 222.231 218.372 null]
+4386 0 obj <<
+/D [4367 0 R /XYZ 219.335 253.307 null]
 >> endobj
-4282 0 obj <<
-/D [4255 0 R /XYZ 433.177 218.372 null]
+4387 0 obj <<
+/D [4367 0 R /XYZ 320.961 253.307 null]
 >> endobj
-1788 0 obj <<
-/D [4255 0 R /XYZ 71.731 184.795 null]
+4388 0 obj <<
+/D [4367 0 R /XYZ 71.731 240.356 null]
 >> endobj
-854 0 obj <<
-/D [4255 0 R /XYZ 267.224 152.399 null]
+4389 0 obj <<
+/D [4367 0 R /XYZ 157.2 240.356 null]
 >> endobj
-4283 0 obj <<
-/D [4255 0 R /XYZ 71.731 149.429 null]
+4390 0 obj <<
+/D [4367 0 R /XYZ 71.731 238.199 null]
 >> endobj
-4284 0 obj <<
-/D [4255 0 R /XYZ 71.731 132.294 null]
+4391 0 obj <<
+/D [4367 0 R /XYZ 118.555 199.635 null]
 >> endobj
-4285 0 obj <<
-/D [4255 0 R /XYZ 266.919 111.951 null]
+4392 0 obj <<
+/D [4367 0 R /XYZ 165.524 191.171 null]
 >> endobj
-4254 0 obj <<
-/Font << /F33 1306 0 R /F23 1201 0 R /F27 1208 0 R /F35 1569 0 R /F32 1215 0 R /F44 2037 0 R /F48 2049 0 R >>
+4393 0 obj <<
+/D [4367 0 R /XYZ 341.284 179.514 null]
+>> endobj
+1901 0 obj <<
+/D [4367 0 R /XYZ 71.731 145.938 null]
+>> endobj
+4366 0 obj <<
+/Font << /F23 1217 0 R /F27 1224 0 R /F35 1589 0 R /F44 2069 0 R /F48 2081 0 R /F33 1322 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-4289 0 obj <<
+4396 0 obj <<
+/Length 2714      
+/Filter /FlateDecode
+>>
+stream
+xڥYK���ϯ��RՈC|����UIU��`�@��D/E�|�x���5�AR���rjk�@���n�
+V>��4�R�O�{a��Ӄ�:`���@0���]�|�����R����zޯ"?�T�RzY�������y��f��:���n�s�����n�u�4�����}�N�U���$s熻P��<%Ğ�\fQ`�K���C��Scz��B��i1Ԧe�?�p4�	��,��چ�������a�~5#
���&��E;0x0��U=�:������6q��<�ӹ)�?�ƣ��/�v�l�tI{{f�96[��^�<��u�Уل1��f�W��e�2�1{������N��H+A��1����4]�Ó�h�%L[1��X�G2c����Y�UϓSQ���W��M��+�Ҝeh��N6��&e��`��IgF&:'��K�p=-s=-Ef`�a�V����CWTz6|�zo�	KV������U����0+>�5�V.-�g��l�Y0��N��Ufb���N����{݌V�A���U��`�ַT�{��B��m��S�������� �-Ӷ�vI�(R�'u��ZD:wfW��x��i֓v놗��g���]�N'�8�I���N��.�ew���Ό�#�x�~z�趗��t���0��ћ ^�A��r�~
+��p֫ʽsVk��wVW�Bno!�� �G���!�<)�E{�B�Y��XlB��2Ð�d�/uC�ȓ�[F
+At%g�0��P�EӼ�}�Q<娗L�>���{"��-p�D^�‰�Xq�i�5#")M�a�Ed
+�J!�<$M���`8��ш��'60���O�yP�N��r|S�_hX���[+��r_	��q�����I�_�؟�8���w$�TiGD���ĩԀx�	�\`A�=�9$N:���\�
#8.`(.��Qk�H�2~`�	��P*�ү�Y9d�N���H�GWޭen�M�*�u:��$�׽�� ��SD$8�}�Qi
���{��0�	u��(;�pY�R��S�����L��h�������a�aDO��&n^��2nr�UK�x�J����y�"�OB i�e����i�E�0�ډK��[TK�gԐ���uu���&�q�n��m[�H'�S�E
+�Ka�[SΎ�Z���;$�7*"��	k��t+
+"���]%��^0	�Ћ�n��|&�D����"!�H鑋��k]RQ�c~��{r��������ԽL���B��"��`t���`I7Ou���2L.K9�J9�f�Þ��摗���*��7T��܆"�ʫ�����Ȗ���l���xepg.������w(����N{d���	��鋭T�U�\[*���I��Jq�@���P�>K���M%S�a�hz�#�Nd�Z��������/�5��y�K0�%.5�N�FH,�K��S�v������e�ag��%�P��ȳE�K�K}�c��ⴽ`�},7�-0�!D6p-�K���" �t�K�@|(S����Q�=!T#�?�v[��E%?�M�U�TZ�(�΂�Q�
+������H��]�O-�4,1uMa�~i��R�Ø1�c�,+*��|�7�py�T�1���ۻ�(9^Po�k&��5��{u�c[]6<ʒ��Xj���+I�W�6��	�J+��W0�u�3��m(���]�2;'&�.�F%#�yq�ѵ#���.���J��d���OaJ�О�b\8���� A�/�,Z��}�:��l�0KOS4D6���d;��ܝl{�YVǘ��P�J.�9�o�Q-ؖ�K��Ut}/�n�Ժ3B��Ұ�$��L�J�Z�x��uR�qX�CH"�䀙VO��^7{!]40e��\*;N�n�������ѝ��pVu�^w��p��y�.ຄ�HpFx����(/���܂
�_k3:|�W���ǣ��G�r�qre�T:��#�s��o}(���=t���+�64��K,,,���6u>�P��_!͘�ζ���B�u���Ta�CW�yO%9�
+���ƳwnnELR/IܛD���J#�.lU�<t^�`q�i��4�	����:�&�xl�΃@��i�^���e�{VYJ��`�B2�}���eubO����ܷ�������u��r���w!��i|��;\{���A��8�P}g^&�����Ͽ����_�������@ȑ
+=�����O�W�����(��c�~���[��6������¢��U�bχm���ݠ/�Vl�J;Az�O/`8Yq�9���+6d_F���ӿ�u��;�F��ơ�g��³0y۳b�Sy�+�Օc�ɱ��Ok�^h,���q��wM.R^��wZ�Ԏ�55{�w�������D#�%�J���J%-Qo��I:[ ԮU*Z��B�H�Q��� Š�4�sB�-6V��@y�d����h��f	D^�����o��O�� ���/1J~����d^x��䇂l�-�T[h�x�x;�e^����޳)���&\���^��6����\��_h�C]��r��\�m�J?���S=�]AwϮĐ=���<-���7�
+����g�Z{��I�ex�h����>���b'�ƾ2�g��@ʔ��Cٔ��6oэ9���1���I��8篟�^^^�6=���4��	�p�DwE���;��^%o|BL+ʼ,H?�K�r�Cf��CG�t�fo�.y{���k�Tendstream
+endobj
+4395 0 obj <<
+/Type /Page
+/Contents 4396 0 R
+/Resources 4394 0 R
+/MediaBox [0 0 609.714 789.041]
+/Parent 4365 0 R
+>> endobj
+4397 0 obj <<
+/D [4395 0 R /XYZ 71.731 729.265 null]
+>> endobj
+4398 0 obj <<
+/D [4395 0 R /XYZ 71.731 741.22 null]
+>> endobj
+870 0 obj <<
+/D [4395 0 R /XYZ 347.534 707.841 null]
+>> endobj
+4399 0 obj <<
+/D [4395 0 R /XYZ 71.731 697.476 null]
+>> endobj
+4400 0 obj <<
+/D [4395 0 R /XYZ 71.731 654.675 null]
+>> endobj
+4401 0 obj <<
+/D [4395 0 R /XYZ 412.638 643.881 null]
+>> endobj
+4402 0 obj <<
+/D [4395 0 R /XYZ 111.263 617.978 null]
+>> endobj
+4403 0 obj <<
+/D [4395 0 R /XYZ 71.731 615.821 null]
+>> endobj
+4404 0 obj <<
+/D [4395 0 R /XYZ 71.731 600.877 null]
+>> endobj
+4405 0 obj <<
+/D [4395 0 R /XYZ 71.731 551.826 null]
+>> endobj
+4406 0 obj <<
+/D [4395 0 R /XYZ 71.731 525.923 null]
+>> endobj
+4407 0 obj <<
+/D [4395 0 R /XYZ 213.956 512.972 null]
+>> endobj
+4408 0 obj <<
+/D [4395 0 R /XYZ 71.731 510.815 null]
+>> endobj
+4409 0 obj <<
+/D [4395 0 R /XYZ 71.731 495.871 null]
+>> endobj
+4410 0 obj <<
+/D [4395 0 R /XYZ 134.999 486.371 null]
+>> endobj
+4411 0 obj <<
+/D [4395 0 R /XYZ 71.731 458.476 null]
+>> endobj
+4412 0 obj <<
+/D [4395 0 R /XYZ 71.731 386.581 null]
+>> endobj
+4413 0 obj <<
+/D [4395 0 R /XYZ 71.731 334.775 null]
+>> endobj
+4414 0 obj <<
+/D [4395 0 R /XYZ 71.731 319.831 null]
+>> endobj
+4415 0 obj <<
+/D [4395 0 R /XYZ 417.328 310.331 null]
+>> endobj
+4416 0 obj <<
+/D [4395 0 R /XYZ 218.704 298.675 null]
+>> endobj
+4417 0 obj <<
+/D [4395 0 R /XYZ 508.932 298.675 null]
+>> endobj
+4418 0 obj <<
+/D [4395 0 R /XYZ 76.712 270.381 null]
+>> endobj
+4419 0 obj <<
+/D [4395 0 R /XYZ 118.555 226.836 null]
+>> endobj
+4420 0 obj <<
+/D [4395 0 R /XYZ 135.395 218.372 null]
+>> endobj
+4421 0 obj <<
+/D [4395 0 R /XYZ 222.231 218.372 null]
+>> endobj
+4422 0 obj <<
+/D [4395 0 R /XYZ 433.177 218.372 null]
+>> endobj
+1902 0 obj <<
+/D [4395 0 R /XYZ 71.731 184.795 null]
+>> endobj
+874 0 obj <<
+/D [4395 0 R /XYZ 267.224 152.399 null]
+>> endobj
+4423 0 obj <<
+/D [4395 0 R /XYZ 71.731 149.429 null]
+>> endobj
+4424 0 obj <<
+/D [4395 0 R /XYZ 71.731 132.294 null]
+>> endobj
+4425 0 obj <<
+/D [4395 0 R /XYZ 266.919 111.951 null]
+>> endobj
+4394 0 obj <<
+/Font << /F33 1322 0 R /F23 1217 0 R /F27 1224 0 R /F35 1589 0 R /F32 1231 0 R /F44 2069 0 R /F48 2081 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+4428 0 obj <<
 /Length 3097      
 /Filter /FlateDecode
 >>
@@ -15928,101 +16593,101 @@ g
 6/��Q����|����^�7J��8t�~x�N/��)s1��e�	O�fb�Ȩ�n���@H(�Y*
 �ѳ��gQ��"���.��X�<v��E*��}U�����k%��PF�=B<̑�0� ��\��&�2������2�#��M�
 �m*�sC>َI���F�k\�=G�_!k�%0�X[��5:C�ד�0e����0&Y���h:Y��t�Y�>�c�n�F�>� �p<�n�~`�;͕&�������s_r�
cс[���������S�)�ԨE猪��#�A&�]���/uȪ�t/�Y��k�j�F���
$�Eb�$�Z!�-�fL������!�U�_q'�;��4��oW옠e��~Y��v�r��#���%�A�j��C�!�<��$��vs=��U�l�Y�f�Y��J[ρ�Ӧ+g��Y���-����沦7�,�� �9��O/��j�&ɬbo�Gr!�7�	�������2�_lD's��p��CR�ך	*�!�)n~�����A uP��t�1�P:��@@JK�ɉ�L�;}.��L{I�N)XC���W��;D�rS�]�8v�ו�.�D^'&�Lt/PN9v���B�Y(4��a�+��e��<4�g����2�X���<B~x�i�v�����,(�!�{�I	�h�	�(|[+b�f���1s��L� �L�����^2)%t����
�����|/"�w�ɸ<��7^�B/w~]���~�k�߾c6�M�����q��-��
-Z�k��I�ƛ�Z�O\Fŏ�]����ɕ5�n߷��߷�2��D���H���`	s�/,J��ᾶuJ��bD�{<D�>b@�ϰmB>U\������}�ǒ�|:!��,�i��e3����2�&��-����W�t�\2�L�"�e�W��Ѿ��S�)���H. <v�����,��0�1���Ł/��ٖ�fZ(���`B�d��$aw2t�[�������\��Ak������0�`�@>۸,E�ι����&Z/޶�\�@Fs�����n���N�5�1_b��]��v��f�M�E#s�4HR7ȓi(����G���p�ӡ�9�<=�C��C.�VE!�x����k�/�o@s�̿�M����5�PH`V�6ッQ�/�/��e6yĤv�c�m�y\�骘Ŀ�s�Iسa�D4�hS�7^�wĠ�&��+��<*����ȳv�z�:c�W��O�������(�����21j.r�IQף����\iս��t|�r~�4/%��ȍ��}Ǭ���^���U�M9�I<�`w�0��zk���U�D��e`0�����ՠG�ȣs~2��� �I{>�Qd�@������G�-DB���(�����`RC���BAQ!�Q��9��,V`,=7�k�J�eѭ��:�V.X���Ogqt|b�y���C��S�y��b̡Nz�d�ꯁ&]/�5����GV��C��|徜�8�+�`�~%c�����"�a�ЛH��rԟ�7�ߜ��o>�2�M\	`�k$��n*zn���_�����lQȥ�

��^�c.tG����w�̟�\�����]�I�o�5�������endstream
+Z�k��I�ƛ�Z�O\Fŏ�]����ɕ5�n߷��߷�2��D���H���`	s�/,J��ᾶuJ��bD�{<D�>b@�ϰmB>U\������}�ǒ�|:!��,�i��e3����2�&��-����W�t�\2�L�"�e�W��Ѿ��S�)���H. <v�����,��0�1���Ł/��ٖ�fZ(���`B�d��$aw2t�[�������\��Ak������0�`�@>۸,E�ι����&Z/޶�\�@Fs�����n���N�5�1_b��]��v��f�M�E#s�4HR7ȓi(����G���p�ӡ�9�<=�C��C.�VE!�x����k�/�o@s�̿�M����5�PH`V�6ッQ�/�/��e6yĤv�c�m�y\�骘Ŀ�s�Iسa�D4�hS�7^�wĠ�&��+��<*����ȳv�z�:c�W��O�������(�����21j.r�IQף����\iս��t|�r~�4/%��ȍ��}Ǭ���^���U�M9�I<�`w�0��zk���U�D��e`0�����ՠG�ȣs~2��� �I{>�Qd�@������G�-DB���(�����`RC���BAQ!�Q��9��,V`,=7�k�J�eѭ��:�V.X���Ogqt|b�y���C��S�y��b̡Nz�d�ꯁ&]/�5����GV��C��|徜�8�+�`�~%c�����"�a�ЛH��rԟ�7�ߜ��o>�2�M\	`�k$��n*zn���_�����lQȥ�

��^�c.tG����w�̟�\�����]�I�o�5�������endstream
 endobj
-4288 0 obj <<
+4427 0 obj <<
 /Type /Page
-/Contents 4289 0 R
-/Resources 4287 0 R
+/Contents 4428 0 R
+/Resources 4426 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 4286 0 R
+/Parent 4365 0 R
 >> endobj
-4290 0 obj <<
-/D [4288 0 R /XYZ 71.731 729.265 null]
+4429 0 obj <<
+/D [4427 0 R /XYZ 71.731 729.265 null]
 >> endobj
-4291 0 obj <<
-/D [4288 0 R /XYZ 71.731 741.22 null]
+4430 0 obj <<
+/D [4427 0 R /XYZ 71.731 741.22 null]
 >> endobj
-4292 0 obj <<
-/D [4288 0 R /XYZ 71.731 652.389 null]
+4431 0 obj <<
+/D [4427 0 R /XYZ 71.731 652.389 null]
 >> endobj
-4293 0 obj <<
-/D [4288 0 R /XYZ 71.731 595.602 null]
+4432 0 obj <<
+/D [4427 0 R /XYZ 71.731 595.602 null]
 >> endobj
-4294 0 obj <<
-/D [4288 0 R /XYZ 71.731 538.815 null]
+4433 0 obj <<
+/D [4427 0 R /XYZ 71.731 538.815 null]
 >> endobj
-4295 0 obj <<
-/D [4288 0 R /XYZ 253.921 528.02 null]
+4434 0 obj <<
+/D [4427 0 R /XYZ 253.921 528.02 null]
 >> endobj
-4296 0 obj <<
-/D [4288 0 R /XYZ 311.687 515.068 null]
+4435 0 obj <<
+/D [4427 0 R /XYZ 311.687 515.068 null]
 >> endobj
-1880 0 obj <<
-/D [4288 0 R /XYZ 71.731 494.979 null]
+1903 0 obj <<
+/D [4427 0 R /XYZ 71.731 494.979 null]
 >> endobj
-858 0 obj <<
-/D [4288 0 R /XYZ 308.397 457.763 null]
+878 0 obj <<
+/D [4427 0 R /XYZ 308.397 457.763 null]
 >> endobj
-4297 0 obj <<
-/D [4288 0 R /XYZ 71.731 447.621 null]
+4436 0 obj <<
+/D [4427 0 R /XYZ 71.731 447.621 null]
 >> endobj
-4298 0 obj <<
-/D [4288 0 R /XYZ 366.772 437.639 null]
+4437 0 obj <<
+/D [4427 0 R /XYZ 366.772 437.639 null]
 >> endobj
-4299 0 obj <<
-/D [4288 0 R /XYZ 71.731 417.549 null]
+4438 0 obj <<
+/D [4427 0 R /XYZ 71.731 417.549 null]
 >> endobj
-4300 0 obj <<
-/D [4288 0 R /XYZ 386.497 393.803 null]
+4439 0 obj <<
+/D [4427 0 R /XYZ 386.497 393.803 null]
 >> endobj
-4301 0 obj <<
-/D [4288 0 R /XYZ 71.731 373.714 null]
+4440 0 obj <<
+/D [4427 0 R /XYZ 71.731 373.714 null]
 >> endobj
-4302 0 obj <<
-/D [4288 0 R /XYZ 380.205 362.919 null]
+4441 0 obj <<
+/D [4427 0 R /XYZ 380.205 362.919 null]
 >> endobj
-4303 0 obj <<
-/D [4288 0 R /XYZ 71.731 342.829 null]
+4442 0 obj <<
+/D [4427 0 R /XYZ 71.731 342.829 null]
 >> endobj
-4304 0 obj <<
-/D [4288 0 R /XYZ 71.731 298.994 null]
+4443 0 obj <<
+/D [4427 0 R /XYZ 71.731 298.994 null]
 >> endobj
-4305 0 obj <<
-/D [4288 0 R /XYZ 71.731 281.061 null]
+4444 0 obj <<
+/D [4427 0 R /XYZ 71.731 281.061 null]
 >> endobj
-4306 0 obj <<
-/D [4288 0 R /XYZ 71.731 257.315 null]
+4445 0 obj <<
+/D [4427 0 R /XYZ 71.731 257.315 null]
 >> endobj
-4307 0 obj <<
-/D [4288 0 R /XYZ 228.316 257.315 null]
+4446 0 obj <<
+/D [4427 0 R /XYZ 228.316 257.315 null]
 >> endobj
-4308 0 obj <<
-/D [4288 0 R /XYZ 71.731 242.207 null]
+4447 0 obj <<
+/D [4427 0 R /XYZ 71.731 242.207 null]
 >> endobj
-4309 0 obj <<
-/D [4288 0 R /XYZ 71.731 227.263 null]
+4448 0 obj <<
+/D [4427 0 R /XYZ 71.731 227.263 null]
 >> endobj
-4310 0 obj <<
-/D [4288 0 R /XYZ 351.57 217.763 null]
+4449 0 obj <<
+/D [4427 0 R /XYZ 351.57 217.763 null]
 >> endobj
-4311 0 obj <<
-/D [4288 0 R /XYZ 71.731 166.555 null]
+4450 0 obj <<
+/D [4427 0 R /XYZ 71.731 166.555 null]
 >> endobj
-4312 0 obj <<
-/D [4288 0 R /XYZ 154.754 153.604 null]
+4451 0 obj <<
+/D [4427 0 R /XYZ 154.754 153.604 null]
 >> endobj
-4313 0 obj <<
-/D [4288 0 R /XYZ 102.167 140.653 null]
+4452 0 obj <<
+/D [4427 0 R /XYZ 102.167 140.653 null]
 >> endobj
-1881 0 obj <<
-/D [4288 0 R /XYZ 71.731 134.264 null]
+1904 0 obj <<
+/D [4427 0 R /XYZ 71.731 134.264 null]
 >> endobj
-4287 0 obj <<
-/Font << /F33 1306 0 R /F27 1208 0 R /F23 1201 0 R /F35 1569 0 R /F44 2037 0 R >>
+4426 0 obj <<
+/Font << /F33 1322 0 R /F27 1224 0 R /F23 1217 0 R /F35 1589 0 R /F44 2069 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-4316 0 obj <<
+4455 0 obj <<
 /Length 3396      
 /Filter /FlateDecode
 >>
@@ -16040,128 +16705,128 @@ B
 ���: ��I���#g'��R��o*�Z�y��)�z"��|Y�c�g���1r�/��CKr����/l#�	\�`���h�gc� �Tb�]�}D�H'��b���sq�U�d�`���bR钿�-���L۠���=͂��R���Gf�PP��lb�:Z�$�	ݴj���/E��Ot�г�bB'$�	g��Hf��ȳ��\G���G�ۦ�+Χ�{�!��uO?��Z~,J���w�L�V�@D��g
~gؠ�|�.�Z�q?�
 �5{pi�B�.)	r���nO#�~�l8�Ի�����v��f��4���e{����A�`�A����LS��~�$L->���\t�����$]~���X,9\@�ˌ�bCc��Ɛo=p�a�p�'��
 �=��c����M�a8}��P�$^q����s#e�[Pѧ����k����L5�û�3T����o���x�bc\(
�`�^�(4��Fr6D�Y�
-[�WHd'^�9���N�����mD��J�/�H$��]�i4X����p�q~Ρ.�q71��I-]$:�q�5�#����Pԋ�q��6/W�l�� �U�-�D�,_��V_����^Z%��x6M�FW���Ys��&�M��iz���=l"�{��~�.x��̈�di��w��6��2Zo�C�(��B\�����١N"� �R���HHr…r�=�x3�@H��w��@c��WJ}
��VB>���6��kZ���,c;7�W��� �7��pci����?�^���#�HH|i�8�X��|XH�V���1Һ���+h�y��_��!W�|����C�EI���t����
�endstream
+[�WHd'^�9���N�����mD��J�/�H$��]�i4X����p�q~Ρ.�q71��I-]$:�q�5�#����Pԋ�q��6/W�l�� �U�-�D�,_��V_����^Z%��x6M�FW���Ys��&�M��iz���=l"�{��~�.x��̈�di��w��6��2Zo�C�(��B\�����١N"� �R���HHr…r�=�x3�@H��w��@c��WJ}
��VB>���6��kZ���,c;7�W��� �7��pci����?�^���#�HH|i�8�X��|XH�V���1Һ���+h�y��_��!W�|����C�E�����t����
�endstream
 endobj
-4315 0 obj <<
+4454 0 obj <<
 /Type /Page
-/Contents 4316 0 R
-/Resources 4314 0 R
+/Contents 4455 0 R
+/Resources 4453 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 4286 0 R
+/Parent 4365 0 R
 >> endobj
-4317 0 obj <<
-/D [4315 0 R /XYZ 71.731 729.265 null]
+4456 0 obj <<
+/D [4454 0 R /XYZ 71.731 729.265 null]
 >> endobj
-4318 0 obj <<
-/D [4315 0 R /XYZ 71.731 741.22 null]
+4457 0 obj <<
+/D [4454 0 R /XYZ 71.731 741.22 null]
 >> endobj
-862 0 obj <<
-/D [4315 0 R /XYZ 251.73 707.841 null]
+882 0 obj <<
+/D [4454 0 R /XYZ 251.73 707.841 null]
 >> endobj
-4319 0 obj <<
-/D [4315 0 R /XYZ 71.731 697.698 null]
+4458 0 obj <<
+/D [4454 0 R /XYZ 71.731 697.698 null]
 >> endobj
-4320 0 obj <<
-/D [4315 0 R /XYZ 71.731 662.645 null]
+4459 0 obj <<
+/D [4454 0 R /XYZ 71.731 662.645 null]
 >> endobj
-4321 0 obj <<
-/D [4315 0 R /XYZ 71.731 662.645 null]
+4460 0 obj <<
+/D [4454 0 R /XYZ 71.731 662.645 null]
 >> endobj
-4322 0 obj <<
-/D [4315 0 R /XYZ 71.731 618.81 null]
+4461 0 obj <<
+/D [4454 0 R /XYZ 71.731 618.81 null]
 >> endobj
-4323 0 obj <<
-/D [4315 0 R /XYZ 71.731 618.81 null]
+4462 0 obj <<
+/D [4454 0 R /XYZ 71.731 618.81 null]
 >> endobj
-4324 0 obj <<
-/D [4315 0 R /XYZ 253.534 608.015 null]
+4463 0 obj <<
+/D [4454 0 R /XYZ 253.534 608.015 null]
 >> endobj
-4325 0 obj <<
-/D [4315 0 R /XYZ 71.731 562.023 null]
+4464 0 obj <<
+/D [4454 0 R /XYZ 71.731 562.023 null]
 >> endobj
-4326 0 obj <<
-/D [4315 0 R /XYZ 71.731 562.023 null]
+4465 0 obj <<
+/D [4454 0 R /XYZ 71.731 562.023 null]
 >> endobj
-4327 0 obj <<
-/D [4315 0 R /XYZ 71.731 531.139 null]
+4466 0 obj <<
+/D [4454 0 R /XYZ 71.731 531.139 null]
 >> endobj
-4328 0 obj <<
-/D [4315 0 R /XYZ 71.731 531.139 null]
+4467 0 obj <<
+/D [4454 0 R /XYZ 71.731 531.139 null]
 >> endobj
-4329 0 obj <<
-/D [4315 0 R /XYZ 439.225 520.344 null]
+4468 0 obj <<
+/D [4454 0 R /XYZ 439.225 520.344 null]
 >> endobj
-4330 0 obj <<
-/D [4315 0 R /XYZ 191.147 507.393 null]
+4469 0 obj <<
+/D [4454 0 R /XYZ 191.147 507.393 null]
 >> endobj
-4331 0 obj <<
-/D [4315 0 R /XYZ 307.056 507.393 null]
+4470 0 obj <<
+/D [4454 0 R /XYZ 307.056 507.393 null]
 >> endobj
-4332 0 obj <<
-/D [4315 0 R /XYZ 71.731 494.441 null]
+4471 0 obj <<
+/D [4454 0 R /XYZ 71.731 494.441 null]
 >> endobj
-4333 0 obj <<
-/D [4315 0 R /XYZ 71.731 487.303 null]
+4472 0 obj <<
+/D [4454 0 R /XYZ 71.731 487.303 null]
 >> endobj
-4334 0 obj <<
-/D [4315 0 R /XYZ 71.731 487.303 null]
+4473 0 obj <<
+/D [4454 0 R /XYZ 71.731 487.303 null]
 >> endobj
-4335 0 obj <<
-/D [4315 0 R /XYZ 71.731 430.516 null]
+4474 0 obj <<
+/D [4454 0 R /XYZ 71.731 430.516 null]
 >> endobj
-4336 0 obj <<
-/D [4315 0 R /XYZ 71.731 430.516 null]
+4475 0 obj <<
+/D [4454 0 R /XYZ 71.731 430.516 null]
 >> endobj
-4337 0 obj <<
-/D [4315 0 R /XYZ 71.731 399.632 null]
+4476 0 obj <<
+/D [4454 0 R /XYZ 71.731 399.632 null]
 >> endobj
-4338 0 obj <<
-/D [4315 0 R /XYZ 71.731 399.632 null]
+4477 0 obj <<
+/D [4454 0 R /XYZ 71.731 399.632 null]
 >> endobj
-4339 0 obj <<
-/D [4315 0 R /XYZ 71.731 329.893 null]
+4478 0 obj <<
+/D [4454 0 R /XYZ 71.731 329.893 null]
 >> endobj
-4340 0 obj <<
-/D [4315 0 R /XYZ 71.731 329.893 null]
+4479 0 obj <<
+/D [4454 0 R /XYZ 71.731 329.893 null]
 >> endobj
-4341 0 obj <<
-/D [4315 0 R /XYZ 210.674 319.099 null]
+4480 0 obj <<
+/D [4454 0 R /XYZ 210.674 319.099 null]
 >> endobj
-4342 0 obj <<
-/D [4315 0 R /XYZ 137.035 241.39 null]
+4481 0 obj <<
+/D [4454 0 R /XYZ 137.035 241.39 null]
 >> endobj
-4343 0 obj <<
-/D [4315 0 R /XYZ 71.731 229.988 null]
+4482 0 obj <<
+/D [4454 0 R /XYZ 71.731 229.988 null]
 >> endobj
-4344 0 obj <<
-/D [4315 0 R /XYZ 71.731 191.776 null]
+4483 0 obj <<
+/D [4454 0 R /XYZ 71.731 191.776 null]
 >> endobj
-4345 0 obj <<
-/D [4315 0 R /XYZ 258.006 178.924 null]
+4484 0 obj <<
+/D [4454 0 R /XYZ 258.006 178.924 null]
 >> endobj
-4346 0 obj <<
-/D [4315 0 R /XYZ 394.451 153.021 null]
+4485 0 obj <<
+/D [4454 0 R /XYZ 394.451 153.021 null]
 >> endobj
-4347 0 obj <<
-/D [4315 0 R /XYZ 71.731 140.07 null]
+4486 0 obj <<
+/D [4454 0 R /XYZ 71.731 140.07 null]
 >> endobj
-4348 0 obj <<
-/D [4315 0 R /XYZ 71.731 133.681 null]
+4487 0 obj <<
+/D [4454 0 R /XYZ 71.731 133.681 null]
 >> endobj
-4349 0 obj <<
-/D [4315 0 R /XYZ 288.129 122.137 null]
+4488 0 obj <<
+/D [4454 0 R /XYZ 288.129 122.137 null]
 >> endobj
-4350 0 obj <<
-/D [4315 0 R /XYZ 111.088 109.186 null]
+4489 0 obj <<
+/D [4454 0 R /XYZ 111.088 109.186 null]
 >> endobj
-4351 0 obj <<
-/D [4315 0 R /XYZ 325.619 109.186 null]
+4490 0 obj <<
+/D [4454 0 R /XYZ 325.619 109.186 null]
 >> endobj
-4314 0 obj <<
-/Font << /F33 1306 0 R /F23 1201 0 R /F27 1208 0 R /F32 1215 0 R /F35 1569 0 R >>
+4453 0 obj <<
+/Font << /F33 1322 0 R /F23 1217 0 R /F27 1224 0 R /F32 1231 0 R /F35 1589 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-4354 0 obj <<
+4493 0 obj <<
 /Length 2391      
 /Filter /FlateDecode
 >>
@@ -16172,205 +16837,197 @@ V[U
 �_�ͿL��e����Ѐ4u�Ri������5+��+����HI����Hl�<hc.��K]��9s�����R�%yp��i\a����J���ݔÈ1u�]Eㄋ��Vz���8\�ͧ���tN��cԲ���Co,EV{���t^�v�mx(�c�5�Y=Js�Q�^3�2jj{y����5\82O�>�h������2E�؀zF(�t��Q�x ���#����Pxu�%s�xiR��B���/
 ��(�� $��r��:�7�i*���@F��@.k�����^oU7m�^u`��j�Apf5a����{�i���r�z5wJ}��%�k�)�G>�G�5j�ʀd*s�Ԫ74$�́�
 Z�8�<�\,@�4�v���*;�O3���}�1��v2�š1��e�����a��;(�B,��47�Q!_["
-���|w�N����d6�L�@�0t8�5���WD���R����M�^̣p[��J �='�6�F�.������;����4�� L�=��`�N�ǖ��؛���p}�t�{��5tO}��I�[����H�0���ƞA�xn0�_2��w���K��}R9|��]\W�v����<����O�0��4ۧK������u��ե��Q2��P���Eĕh<K€>��H�5�R{��my�V�Q��9!ȹ���\���iz�ZU�\�/�'���p�N����B���t���x�;��"��a���/6IN$�w��A�(Z���#���&fC[>��@���"v�H>I�SY\�'�t�O(����v��97+�#�r��ȡV	�s��{]��g�{�^|s��W"^13\�:�o�tB|s�����2v(&�^�Fe;�OG;����/��ُ��ٷ�4*� �����O��;���ziendstream
+���|w�N����d6�L�@�0t8�5���WD���R����M�^̣p[��J �='�6�F�.������;����4�� L�=��`�N�ǖ��؛���p}�t�{��5tO}��I�[����H�0���ƞA�xn0�_2��w���K��}R9|��]\W�v����<����O�0��4ۧK������u��ե��Q2��P���Eĕh<K€>��H�5�R{��my�V�Q��9!ȹ���\���iz�ZU�\�/�'���p�N����B���t���x�;��"��a���/6IN$�w��A�(Z���#���&fC[>��@���"v�H>I�SY\�'�t�O(����v��97+�#�r��ȡV	�s��{]��g�{�^|s��W"^13\�:�o�tB|s�����2v(&�^�Fe;�OG;����/��ُ��ٷ�4*� �����O��;���zjendstream
 endobj
-4353 0 obj <<
+4492 0 obj <<
 /Type /Page
-/Contents 4354 0 R
-/Resources 4352 0 R
+/Contents 4493 0 R
+/Resources 4491 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 4286 0 R
+/Parent 4365 0 R
 >> endobj
-4355 0 obj <<
-/D [4353 0 R /XYZ 71.731 729.265 null]
+4494 0 obj <<
+/D [4492 0 R /XYZ 71.731 729.265 null]
 >> endobj
-4356 0 obj <<
-/D [4353 0 R /XYZ 71.731 677.46 null]
+4495 0 obj <<
+/D [4492 0 R /XYZ 71.731 677.46 null]
 >> endobj
-4357 0 obj <<
-/D [4353 0 R /XYZ 100.413 664.508 null]
+4496 0 obj <<
+/D [4492 0 R /XYZ 100.413 664.508 null]
 >> endobj
-4358 0 obj <<
-/D [4353 0 R /XYZ 71.731 644.419 null]
+4497 0 obj <<
+/D [4492 0 R /XYZ 71.731 644.419 null]
 >> endobj
-4359 0 obj <<
-/D [4353 0 R /XYZ 71.731 621.504 null]
+4498 0 obj <<
+/D [4492 0 R /XYZ 71.731 621.504 null]
 >> endobj
-4360 0 obj <<
-/D [4353 0 R /XYZ 71.731 576.971 null]
+4499 0 obj <<
+/D [4492 0 R /XYZ 71.731 576.971 null]
 >> endobj
-4361 0 obj <<
-/D [4353 0 R /XYZ 71.731 532.438 null]
+4500 0 obj <<
+/D [4492 0 R /XYZ 71.731 532.438 null]
 >> endobj
-1882 0 obj <<
-/D [4353 0 R /XYZ 71.731 492.887 null]
+1905 0 obj <<
+/D [4492 0 R /XYZ 71.731 492.887 null]
 >> endobj
-866 0 obj <<
-/D [4353 0 R /XYZ 461.484 455.671 null]
+886 0 obj <<
+/D [4492 0 R /XYZ 461.484 455.671 null]
 >> endobj
-4362 0 obj <<
-/D [4353 0 R /XYZ 71.731 445.306 null]
+4501 0 obj <<
+/D [4492 0 R /XYZ 71.731 445.306 null]
 >> endobj
-4363 0 obj <<
-/D [4353 0 R /XYZ 71.731 409.644 null]
+4502 0 obj <<
+/D [4492 0 R /XYZ 71.731 409.644 null]
 >> endobj
-1883 0 obj <<
-/D [4353 0 R /XYZ 71.731 381.649 null]
+1906 0 obj <<
+/D [4492 0 R /XYZ 71.731 381.649 null]
 >> endobj
-870 0 obj <<
-/D [4353 0 R /XYZ 392.055 336.494 null]
+890 0 obj <<
+/D [4492 0 R /XYZ 392.055 336.494 null]
 >> endobj
-4364 0 obj <<
-/D [4353 0 R /XYZ 71.731 332.664 null]
+4503 0 obj <<
+/D [4492 0 R /XYZ 71.731 332.664 null]
 >> endobj
-4365 0 obj <<
-/D [4353 0 R /XYZ 118.555 290.473 null]
+4504 0 obj <<
+/D [4492 0 R /XYZ 118.555 290.473 null]
 >> endobj
-4366 0 obj <<
-/D [4353 0 R /XYZ 526.195 282.009 null]
+4505 0 obj <<
+/D [4492 0 R /XYZ 526.195 282.009 null]
 >> endobj
-4367 0 obj <<
-/D [4353 0 R /XYZ 71.731 248.432 null]
+4506 0 obj <<
+/D [4492 0 R /XYZ 71.731 248.432 null]
 >> endobj
-4368 0 obj <<
-/D [4353 0 R /XYZ 71.731 169.783 null]
+4507 0 obj <<
+/D [4492 0 R /XYZ 71.731 169.783 null]
 >> endobj
-4369 0 obj <<
-/D [4353 0 R /XYZ 71.731 128.004 null]
+4508 0 obj <<
+/D [4492 0 R /XYZ 71.731 128.004 null]
 >> endobj
-4352 0 obj <<
-/Font << /F33 1306 0 R /F27 1208 0 R /F35 1569 0 R /F23 1201 0 R /F44 2037 0 R >>
+4491 0 obj <<
+/Font << /F33 1322 0 R /F27 1224 0 R /F35 1589 0 R /F23 1217 0 R /F44 2069 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-4372 0 obj <<
+4511 0 obj <<
 /Length 3215      
 /Filter /FlateDecode
 >>
 stream
-xڍk�������im`���i�.��K�l�J��V�m�d��l�~}g8C���k�"�C�p8/-nB���\y���,���/›#�|�B0ƎQvΫ�w_��M�Y|�p�I�<���&���H������N�E�a���p���jT�?7��H�W���Vl����?=����G9��,�O2gq�E�ĝ�dX&���4Dz������� ,�����_o޾���_����N�G�N5}��;�����,i!�b�A!"^
-�	�f�?���w�T~�܊t�+�,��q�%a��Q��~����K[i��fU�=j5��)d�f�8 0%��j`%X'*D3�˨5t�G}N;Yְ�t���w�4����ý����7��u?<o�t��'i���W P�-����R)�f��(<@E��Cޮ��`�ӂ���V
-B��dU���s�I(�[j6��O��e�\�X@�#6݌Fnh8���B.�{���<+���A�R�@�]Wߣ�o���=5����Աʈm�8�n�&�4��x_��f��Lr����L�W_H����*p생���ö����i��*�fL!Ӫ{��b͹�a�ƀ��ع��ȈR� y�����}��`���P��Аq�H�汧F��g��Й:�A�����^p>�6R�	�Pu�zF��.����`�F�Z"�-���j��.oZ{y����!�almW��5[���G�ɩ�Qp��1�ͥ㴹b�q��"	C��M����4^9?b��LǙ&�w
�����g	���Nm~N�Ĵ��(��V�t%Z��4����#���c����g0���`�қ�8[�I��v��|
-��,g���>_3�"aP�$��kT<4�k:4�ZޮP���)O�d��cP�%�]\f�����+��Ȑ�6	���{k�f�D�-�(�|��HT��53;h
�{y�F�h���"��zn�2`:�Q�r���&�6�2���QCЊ�2/fJ��� ���{�����{��������;4���!�H;
-.�rS	�@�Mq��
&_����s�AcT�g7�φ�o	 ��i�'f�P6D`�ݯ�~����"έ�c��9����k4���N@�(����_��� �]�>��M��F)��U�9���i'i
-�i5��X��e��pR�n�y
-6��o;/|;��2�H�����fAQ��{�qXY6��.�K��b���V	Ʈ�d��f:��+��݃*�A&3���3����k��rb���8�t���3lr��FF�&�8S��ϣ�^~ej�yzԊ'%~b���/8V5m���Q�[B�
��Vt0yL�͋�1�mu��T���R��
f���%(���p4_�݈�
-U^V<c���n;��	PrTv��L�b�_�@/7}]�imFpXjb����6��6˃(��g�_�����:��vq��g3!ϙ$-^0���T����{/��8��
-�� L�P$AZ�Kc�\ފMcvČ���p�e�!�<�����p�c6q�M��(�����x�6bƙӵ�zd��8i60iYbf���v�(�}Dc��� w+9��sн�Ĕ�ϲ0���rwNj�n0P��l,��mh%,�^���ڏ�����u��Ҹ�/�Wr�,
-��4��Z�e�eu�5F����������\����W�od�
-6�t9Q%%[���1Eh���5����g����$��($%�g����t��h���ǖ������u�0��Bjo�F)��F�Mg��x~��ݥW�v7I�u�\��IA�<8��<�����ws�索��˴}]!�e�p�����i^���T����$��
-��U�Q�1]����N7�a�����9�������:�AX�:R	"+|O��t3��|�P���K@��9_�I��
-�CpeCk��3�yKpN�[������`�,@�4��`T� ;�[��]q(\!�D�$�W�չ}x���fS
en�S
�m-
��V+���g.-���T*�6B���
-m�u?+Dx�;Oh���55�3�Au5�5K��D$l�\�L�.{`B�d{�S$�&��R�4<Њ�1<�8)�j�V��
T�Z}&U�޵*bM-�!.��`�S"����'�BC�ǣ�ةOUw��BU�Җ=Jg�ԣ�7lK��R��V簚a%Tp�ϊ*�	���"��Ҕc”��	�1��0�lE8�ԕ-2����3�0n:�7;�%������m`��@R}E��C
w%W��
-�>}�x6hsq��V2{ٌ�K�T��~�kTPz������`���6r��h��P�.k����+/Θ�����x���y�l%)ʼ����)0]���K�٥��te��E-������λ5��o�k�/��cA�ӈ�^���.2v�����U�EBj�V�� �:�K;�������W���#8��O�+;Ǽ���Db��n�.f'�<3/^�X{�+�`�<H���%^V�+w���F�	�N���d�n��oi�1¾��t�u�{���~MX�tX�@�w�j:�S�v%�]� �ef��Y�b����x�jP)%|𥥀��'���u�N����,Y��ΉE��wW�rW+|���l�$�<g�Lp�ih������b1��p[$�bJ����2�?�-����A��@*?˚��YMx����T�Mi0��A�q���
��yN��v��E�������.K,�z����SC�k+Tr��3������4�JPH��Sh�p�ԯ����J�1^EH�a��H�v�3Ľv�!���l�H��)�'3;��!.4���?��������7�W\��n-�����L��uuw�������t�_u(FbEL{.9Ė!xc�ڐ��g�j����+����o� ��+l�0�;�ר��m��k�k!� v/$�D��p��r2�&s��,�4�m�����n�"�� -�6��ыi���Fi�׼<�	���=��O+RB�y���i>�?��3��^�^�������?&`��V^(�x&x��\��A�7��밬�,K�HBFn/i�p�ۖB���b��b�h
m*ؖ�|�_�T�(ƷC^
��]aq�����o�?v�������_N�"(D�ɿ�L(�դp�adAb���?�,)�[͚�endstream
+xڍk�۸�{~�6@Z��z?6��C�"M��^_w�@�i[�,�"����w�3�(K�� r8���������&�,�OXxa��T�g��F�0ƖQ���ó�����4�y8��~�Eq|�E��'�����շ��D�ކ��J=�~;H՝�/u{$��p��VuӔ�_�������D�W��W�383��l��l��5����~�#=�Fr�b���9,��?~��7o߾�����n��heݵr�
Vc�C[�-�R��˃��b�?������;v���J��d�+�,*���a���a������KS*���f��=jՒ�Id�f�����+��d
+�:a#��^�萠�N<�r�Ȱ���E6f��['Ɋ�����U�gȾ�E���i�&+�`?	M,Y݃x@a���}W	)��0����凛�y�s����|�b�'p/��G�OB�n�Y+�>K4�9"pI�|&8��X���a�3����ehd�,E���$���λ*[2���o�ߋ=5���O�1ʈm�8�n�&.���yW��j�tL���TL�W�I����ҳ생G���:���I�$� L�B���	~Ϛ��a�F���ع���=$�^�Z'�3���K����@�,..���&��D�c��:�aO&XS�5u��h���}�����@�G�B�*�i1�w�{4��4RV��mQ�e[�pw`8uy��ڋ�&i�5c+���_��Bd�.JFN
 ��{���m�
�M#���b�7�۴/��u����5G�;�4i�m\p���=P�=w*m�SBZ �u�]��j���3(�,%1��&1�wwC��G?��|
���t?��A{qa��qʥ^�f�����y0R/�T(��t�����-%6 �FI��E���p��c=����Bp<��s	^"�S$��}�k �Θ� c�4J7�/0
��-����8�J�Q��^.�!����>����i�n���ڄ�&Tf�_:jZ�Wd�D)�Sd���������o޿���՟_ߢQ�.��ڑwi曊A��l��X��ؠ���	8�4�Fu2q��l8<R�Ɛ�B8q@����|bz	iB����ά�ˣ�:6��c��Z3�(���M�B��xj��U�)!	R���c����u�p�]$���/�v�$`�Fz��f�+k�v���eC�����y���z��Gz��B�zyQ0��b��l@�;#<Y,�|�a�W%��j��O��Fw��y�O���O!bS8�^@ʉQ�(����TW�c�D��}R�.�T0�L������l��;ԊG)~b�%��g+��5<�xC(��|����y�*�� /��W�x�3f����_Kw�b%�@����T�5E�������C/�7�c�B��XxA�;�ZW�(Y�;V�t1�݀/	r ��������#8�51�
�V�]��s�f^�3T����t�`L��gc�(�A�Ӊ��L�ϘLa^,��;'�/8��
+�� LƐ�^�gscmފMmv!Č���p���!�<T���p�c&q�L�(�����x��bƙ��zd��8i60iXbf��u3_�����#q܋�Bά�t�.0e���ȵ⟔�����"�޹��:��GZ	��?���C��12�m՝/�4����_���Fv[	��
Q�Qa�9<-�,pz����H�%���xE�Ff�`�K�U\�5iO^kS�&I�Z��\�lq��K�'v��������2�����-}���pv��&���Ƽ�\H�mU+���H��nM�;��^:Y+{��[�΅o��!˃30����n���ۿ�0��^Ȫ�/j�L�U%BmV
�8�/���e��E��VOF�F�함���:���:����7��0-���O��{~N�H%�4w=�J�	̌j�yD9k$N/��|Q:yL�+t��	�	O����2�1������=��I��hR����Av���D�Yp(\!�D�$�OW���}8���fc
ej�c
�m)
��:�VdjO\.�ZH9��T(���T-.%ژ�nR�p\)v�k��k�gp��j�	k�T	I.�`�虊(\���F���3�H�MH���)hx��cxBqR�`��\��J�����kUĚ�GC\)���D��.Z_N����G�;�S���(��,�){��G5gؔ<�ծ���4Vk��~!�p�O�*�1��'�"�B�c����1�1��0�LE8YU�)2'+	����0n2�7;�%��4���m`��@RuE��C5wW��
+$�~�x6hs����d�����V���S( UtE{&��X��L���Quѣ�]��=�#�S^�09�Q�C񦁙���{�R�i����c`���3:�V�K��_��jb�����:��w�{��@=�
+p���aA�ӈ�\���.2������U�EB����� �:�K[��࣑���W���#X��K�);G����D"����6f'8?3'^�Xs�-�`��	���&^F�w���Fk�	�N�~��x��n��74ą��������{��a	�a�Uת�n�� 1+�9�1/3{&�b�H��Ƕ�P�_Z
+�@;Xp�JX��n�[��˒�X4Z|g�5�0��r��8�!`#F�g8�'��NC�-�
 �3�A�Er�(�4{Z�/}��l�.�j,	R�(*fy����R���`�-<��㜫�m�7�))�@ҋ���3(��Q�]X�un9է4���T�ľV[f^.ׁ�����)A!]�O�A�-��R�(��x%} 9��~�"��2��rؒ���kس�"���O�|W�C�i�S
+�7�s�s�d��7�W\��n-�d���LZ�uwuw���˵7�񀗴�_t(Z��4��\p�-|���&��O�Uf��70��P��45�����l�^#��:7�:/�� �"�B�!�ky('#9`2�3>��K����nW6��q�{IM�A;'R$���:�jY$�[�B�&4��� O?-H	�f��?������V?g4j�� ��$���1;u��B��3���*J���_�e<eQ�G2rsI�C�4�����[���DkhS����K�ڥ�Z2�rj���
+�kO�U�x���]�w��r�^d_�[͈2�WM��f$����'�9��[���endstream
 endobj
-4371 0 obj <<
+4510 0 obj <<
 /Type /Page
-/Contents 4372 0 R
-/Resources 4370 0 R
+/Contents 4511 0 R
+/Resources 4509 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 4286 0 R
+/Parent 4544 0 R
 >> endobj
-4373 0 obj <<
-/D [4371 0 R /XYZ 71.731 729.265 null]
+4512 0 obj <<
+/D [4510 0 R /XYZ 71.731 729.265 null]
 >> endobj
-4374 0 obj <<
-/D [4371 0 R /XYZ 75.049 708.344 null]
+4513 0 obj <<
+/D [4510 0 R /XYZ 75.049 708.344 null]
 >> endobj
-4375 0 obj <<
-/D [4371 0 R /XYZ 71.731 662.351 null]
+4514 0 obj <<
+/D [4510 0 R /XYZ 71.731 662.351 null]
 >> endobj
-4376 0 obj <<
-/D [4371 0 R /XYZ 71.731 620.573 null]
+4515 0 obj <<
+/D [4510 0 R /XYZ 71.731 620.573 null]
 >> endobj
-4377 0 obj <<
-/D [4371 0 R /XYZ 126.687 594.77 null]
+4516 0 obj <<
+/D [4510 0 R /XYZ 126.687 594.77 null]
 >> endobj
-4378 0 obj <<
-/D [4371 0 R /XYZ 261.183 594.77 null]
+4517 0 obj <<
+/D [4510 0 R /XYZ 261.183 594.77 null]
 >> endobj
-4379 0 obj <<
-/D [4371 0 R /XYZ 468.045 594.77 null]
+4518 0 obj <<
+/D [4510 0 R /XYZ 468.045 594.77 null]
 >> endobj
-4380 0 obj <<
-/D [4371 0 R /XYZ 225.833 581.818 null]
+4519 0 obj <<
+/D [4510 0 R /XYZ 225.833 581.818 null]
 >> endobj
-4381 0 obj <<
-/D [4371 0 R /XYZ 71.731 568.867 null]
+4520 0 obj <<
+/D [4510 0 R /XYZ 71.731 568.867 null]
 >> endobj
-4382 0 obj <<
-/D [4371 0 R /XYZ 71.731 548.777 null]
+4521 0 obj <<
+/D [4510 0 R /XYZ 71.731 548.777 null]
 >> endobj
-4383 0 obj <<
-/D [4371 0 R /XYZ 527.223 537.983 null]
+4522 0 obj <<
+/D [4510 0 R /XYZ 527.223 537.983 null]
 >> endobj
-4384 0 obj <<
-/D [4371 0 R /XYZ 147.048 525.031 null]
+4523 0 obj <<
+/D [4510 0 R /XYZ 147.048 525.031 null]
 >> endobj
-4385 0 obj <<
-/D [4371 0 R /XYZ 225.125 525.031 null]
+4524 0 obj <<
+/D [4510 0 R /XYZ 225.125 525.031 null]
 >> endobj
-4386 0 obj <<
-/D [4371 0 R /XYZ 71.731 517.893 null]
+4525 0 obj <<
+/D [4510 0 R /XYZ 71.731 517.893 null]
 >> endobj
-4387 0 obj <<
-/D [4371 0 R /XYZ 153.849 494.147 null]
+4526 0 obj <<
+/D [4510 0 R /XYZ 153.849 494.147 null]
 >> endobj
-4388 0 obj <<
-/D [4371 0 R /XYZ 385.305 494.147 null]
+4527 0 obj <<
+/D [4510 0 R /XYZ 385.305 494.147 null]
 >> endobj
-4389 0 obj <<
-/D [4371 0 R /XYZ 132.582 481.196 null]
+4528 0 obj <<
+/D [4510 0 R /XYZ 132.582 481.196 null]
 >> endobj
-4390 0 obj <<
-/D [4371 0 R /XYZ 71.731 474.807 null]
+4529 0 obj <<
+/D [4510 0 R /XYZ 71.731 474.807 null]
 >> endobj
-4391 0 obj <<
-/D [4371 0 R /XYZ 488.392 463.263 null]
+4530 0 obj <<
+/D [4510 0 R /XYZ 488.392 463.263 null]
 >> endobj
-4392 0 obj <<
-/D [4371 0 R /XYZ 71.731 419.427 null]
+4531 0 obj <<
+/D [4510 0 R /XYZ 71.731 419.427 null]
 >> endobj
-4393 0 obj <<
-/D [4371 0 R /XYZ 71.731 419.427 null]
+4532 0 obj <<
+/D [4510 0 R /XYZ 71.731 419.427 null]
 >> endobj
-4394 0 obj <<
-/D [4371 0 R /XYZ 71.731 369.953 null]
+4533 0 obj <<
+/D [4510 0 R /XYZ 71.731 369.953 null]
 >> endobj
-4395 0 obj <<
-/D [4371 0 R /XYZ 71.731 336.912 null]
+4534 0 obj <<
+/D [4510 0 R /XYZ 71.731 336.912 null]
 >> endobj
-4396 0 obj <<
-/D [4371 0 R /XYZ 71.731 267.174 null]
+4535 0 obj <<
+/D [4510 0 R /XYZ 71.731 267.174 null]
 >> endobj
-4397 0 obj <<
-/D [4371 0 R /XYZ 71.731 236.289 null]
+4536 0 obj <<
+/D [4510 0 R /XYZ 71.731 236.289 null]
 >> endobj
-4398 0 obj <<
-/D [4371 0 R /XYZ 71.731 205.405 null]
+4537 0 obj <<
+/D [4510 0 R /XYZ 71.731 205.405 null]
 >> endobj
-4399 0 obj <<
-/D [4371 0 R /XYZ 235.228 181.659 null]
+4538 0 obj <<
+/D [4510 0 R /XYZ 235.228 181.659 null]
 >> endobj
-4400 0 obj <<
-/D [4371 0 R /XYZ 71.731 161.57 null]
+4539 0 obj <<
+/D [4510 0 R /XYZ 71.731 161.57 null]
 >> endobj
-4401 0 obj <<
-/D [4371 0 R /XYZ 282.395 150.775 null]
+4540 0 obj <<
+/D [4510 0 R /XYZ 282.395 150.775 null]
 >> endobj
-4402 0 obj <<
-/D [4371 0 R /XYZ 500.324 150.775 null]
+4541 0 obj <<
+/D [4510 0 R /XYZ 500.324 150.775 null]
 >> endobj
-4403 0 obj <<
-/D [4371 0 R /XYZ 300.306 137.824 null]
+4542 0 obj <<
+/D [4510 0 R /XYZ 300.306 137.824 null]
 >> endobj
-4404 0 obj <<
-/D [4371 0 R /XYZ 71.731 124.872 null]
+4543 0 obj <<
+/D [4510 0 R /XYZ 71.731 124.872 null]
 >> endobj
-4370 0 obj <<
-/Font << /F33 1306 0 R /F27 1208 0 R /F35 1569 0 R /F32 1215 0 R >>
+4509 0 obj <<
+/Font << /F33 1322 0 R /F27 1224 0 R /F35 1589 0 R /F32 1231 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-4407 0 obj <<
+4547 0 obj <<
 /Length 2635      
 /Filter /FlateDecode
 >>
@@ -16389,3497 +17046,1851 @@ No
 問/Ѓ3�a�h�3*$c��!��O��TwKu�4A��F�S�F(ܝ��
	�u3������9�}�ָ��Q��"��c��7�a�]�f"0����!�Z�<c��]:�&�Q`PI�C(��x���@nl�q�+8^�D1^:��%ٝXQa�P��,B�X1�-^�J�]��OI�Q��Z�€�Kهߎ����G��8��ezë9���+��l�L��!Xe�D��;0�x�����`ޕ��ύ������]I���g^��7�EB���2]�M'
 �����l�y7�8 a��Yk6���E�񢹚�����=�����n��S��q���)���G��j
��LJ���4�0��� ~�?�fC$����J��O)"���`T��oܜ6wL�,�V�Y\b��17�f���M�
 �b*�<}����X��9�u%��Zkj9�!b�#�q	3n�Ly�1l�I�Nh��cNNxN6��i!�:�=�izs��x�09�zm�Ƒnr�)������~t�c�Ô���)�O�$L�u��z,����
-���#�՟��*h`U�O��y����	�endstream
+���#�՟��*h`U:O��y����4�endstream
 endobj
-4406 0 obj <<
+4546 0 obj <<
 /Type /Page
-/Contents 4407 0 R
-/Resources 4405 0 R
+/Contents 4547 0 R
+/Resources 4545 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 4286 0 R
+/Parent 4544 0 R
 >> endobj
-4408 0 obj <<
-/D [4406 0 R /XYZ 71.731 729.265 null]
+4548 0 obj <<
+/D [4546 0 R /XYZ 71.731 729.265 null]
 >> endobj
-4409 0 obj <<
-/D [4406 0 R /XYZ 71.731 718.306 null]
+4549 0 obj <<
+/D [4546 0 R /XYZ 71.731 718.306 null]
 >> endobj
-4410 0 obj <<
-/D [4406 0 R /XYZ 71.731 651.568 null]
+4550 0 obj <<
+/D [4546 0 R /XYZ 71.731 651.568 null]
 >> endobj
-4411 0 obj <<
-/D [4406 0 R /XYZ 262.713 638.804 null]
+4551 0 obj <<
+/D [4546 0 R /XYZ 262.713 638.804 null]
 >> endobj
-4412 0 obj <<
-/D [4406 0 R /XYZ 71.731 613.734 null]
+4552 0 obj <<
+/D [4546 0 R /XYZ 71.731 613.734 null]
 >> endobj
-4413 0 obj <<
-/D [4406 0 R /XYZ 71.731 592.864 null]
+4553 0 obj <<
+/D [4546 0 R /XYZ 71.731 592.864 null]
 >> endobj
-4414 0 obj <<
-/D [4406 0 R /XYZ 462.665 581.32 null]
+4554 0 obj <<
+/D [4546 0 R /XYZ 462.665 581.32 null]
 >> endobj
-4415 0 obj <<
-/D [4406 0 R /XYZ 71.731 561.23 null]
+4555 0 obj <<
+/D [4546 0 R /XYZ 71.731 561.23 null]
 >> endobj
-4416 0 obj <<
-/D [4406 0 R /XYZ 86.871 524.533 null]
+4556 0 obj <<
+/D [4546 0 R /XYZ 86.871 524.533 null]
 >> endobj
-4417 0 obj <<
-/D [4406 0 R /XYZ 71.731 498.63 null]
+4557 0 obj <<
+/D [4546 0 R /XYZ 71.731 498.63 null]
 >> endobj
-4418 0 obj <<
-/D [4406 0 R /XYZ 71.731 473.559 null]
+4558 0 obj <<
+/D [4546 0 R /XYZ 71.731 473.559 null]
 >> endobj
-4419 0 obj <<
-/D [4406 0 R /XYZ 71.731 452.689 null]
+4559 0 obj <<
+/D [4546 0 R /XYZ 71.731 452.689 null]
 >> endobj
-4420 0 obj <<
-/D [4406 0 R /XYZ 71.731 408.105 null]
+4560 0 obj <<
+/D [4546 0 R /XYZ 71.731 408.105 null]
 >> endobj
-4421 0 obj <<
-/D [4406 0 R /XYZ 71.731 397.211 null]
+4561 0 obj <<
+/D [4546 0 R /XYZ 71.731 397.211 null]
 >> endobj
-4422 0 obj <<
-/D [4406 0 R /XYZ 71.731 392.229 null]
+4562 0 obj <<
+/D [4546 0 R /XYZ 71.731 392.229 null]
 >> endobj
-4423 0 obj <<
-/D [4406 0 R /XYZ 81.694 369.415 null]
+4563 0 obj <<
+/D [4546 0 R /XYZ 81.694 369.415 null]
 >> endobj
-4424 0 obj <<
-/D [4406 0 R /XYZ 186.398 356.463 null]
+4564 0 obj <<
+/D [4546 0 R /XYZ 186.398 356.463 null]
 >> endobj
-4425 0 obj <<
-/D [4406 0 R /XYZ 134.42 343.512 null]
+4565 0 obj <<
+/D [4546 0 R /XYZ 134.42 343.512 null]
 >> endobj
-4426 0 obj <<
-/D [4406 0 R /XYZ 197.733 343.512 null]
+4566 0 obj <<
+/D [4546 0 R /XYZ 197.733 343.512 null]
 >> endobj
-4427 0 obj <<
-/D [4406 0 R /XYZ 71.731 323.422 null]
+4567 0 obj <<
+/D [4546 0 R /XYZ 71.731 323.422 null]
 >> endobj
-4428 0 obj <<
-/D [4406 0 R /XYZ 301.246 312.628 null]
+4568 0 obj <<
+/D [4546 0 R /XYZ 301.246 312.628 null]
 >> endobj
-4429 0 obj <<
-/D [4406 0 R /XYZ 172.784 299.676 null]
+4569 0 obj <<
+/D [4546 0 R /XYZ 172.784 299.676 null]
 >> endobj
-4430 0 obj <<
-/D [4406 0 R /XYZ 494.944 299.676 null]
+4570 0 obj <<
+/D [4546 0 R /XYZ 494.944 299.676 null]
 >> endobj
-4431 0 obj <<
-/D [4406 0 R /XYZ 76.712 255.841 null]
+4571 0 obj <<
+/D [4546 0 R /XYZ 76.712 255.841 null]
 >> endobj
-4432 0 obj <<
-/D [4406 0 R /XYZ 81.694 237.908 null]
+4572 0 obj <<
+/D [4546 0 R /XYZ 81.694 237.908 null]
 >> endobj
-4433 0 obj <<
-/D [4406 0 R /XYZ 187.837 224.956 null]
+4573 0 obj <<
+/D [4546 0 R /XYZ 187.837 224.956 null]
 >> endobj
-4434 0 obj <<
-/D [4406 0 R /XYZ 236.955 199.054 null]
+4574 0 obj <<
+/D [4546 0 R /XYZ 236.955 199.054 null]
 >> endobj
-4435 0 obj <<
-/D [4406 0 R /XYZ 81.694 186.102 null]
+4575 0 obj <<
+/D [4546 0 R /XYZ 81.694 186.102 null]
 >> endobj
-4436 0 obj <<
-/D [4406 0 R /XYZ 71.731 166.013 null]
+4576 0 obj <<
+/D [4546 0 R /XYZ 71.731 166.013 null]
 >> endobj
-1884 0 obj <<
-/D [4406 0 R /XYZ 71.731 106.401 null]
+1907 0 obj <<
+/D [4546 0 R /XYZ 71.731 106.401 null]
 >> endobj
-4405 0 obj <<
-/Font << /F33 1306 0 R /F35 1569 0 R /F27 1208 0 R >>
+4545 0 obj <<
+/Font << /F33 1322 0 R /F35 1589 0 R /F27 1224 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-4439 0 obj <<
-/Length 2582      
+4579 0 obj <<
+/Length 2825      
 /Filter /FlateDecode
 >>
 stream
-xڥ��۶���0���[�[�
-tH��H�k�aA�-�6Yr$j�;�߽(ˏdm�������xo��,��,�<�O��,����`���oB�X
-�rB������8���U�7�$��8Ify�E�����;u���/�4�2��/�޶{�i��x1l����k5���ۇW���i���"��p��F�(����)��N�~�$]�'(R^\����VfT#�N�dxڑ({-n�~�'��@�D(ɇ��~	f��-��
-�$N@Mq����j�:=�<�����)�-������Bw�b�YfQ�d�I�X*&B?N`j$���'����|��Z _��7�u����9�xܙ~������cА�C�z���'ׂ+ۦ7���5.�x@G	S��ucU��ٝ,B/!!t�V�?ͣ�kF��Ѽ��Ȯ�ub6��Z#�Z���[0R5��~��!K>H��T3�v�ݷs�_�(�df��q��ч�\&�^o@����F�0G�P��,:Af���ȴ�z�C�����A���̴�M��֦�r��7Z�e�&9]h!#-�H��VB��ˉ,8��{�HG�= ��e�	�d�e#���ЈaU�B�H6�U�'F^���Q�F�U	8��a��;�OU�Mr����6	�?�I�q��B���I����cl��,9/]A^�S�����C
-M�0KZ�6d��jG���;w��!���z�w�[��I�~�h�6P�����N������:5́�䣩�V:	8�ug���b[����W0Tҁ9+��|�<^���<�όB�<�)��i�=
�y}9OS�g�J�f�(K9
H�{���-$��2r��e�����E���������z[�b es<w$q�Z�؊,�""��Z�b�JUc�UbhC愩��d�3V�s#�8
J��L�i Ҙ��q�	�٥7��=�AΏ�A��m�
��$q�z�<���R���A����eh��f?�y�r��)fmjcO��̕�D�nC'BZ5�
-�u��9�B�?tWC�u>��#����p�Rv�OpNU{Ә�BR����pj�h0ڭ��&ۮ�Wh����#aQZʺ�D��k�����`�j�"e}IX�:
�7�ʩ�ؽ����ܡ�-t�-I��[�L�;]�W���w��l�`�4���L�d�cf�a!�&`�$�(&�EtQB��XU�0��s)�\A��|���a�{�BMH��2�B��7��De:]�M��|ƽ�0)E("ڃ>�< ��F��b�#�תÄ�ǑM���֌�Q)��Q�`AO'хC�0_b�bC��F�^1l�p�N �M�A��XRY2��]�ӛ�[��{,E�7rs#)&�x%9�%g��ך�K�n��2#HC�F۽��$�V�0�ȋ�bO����*�(]nA��60'�.Ϧ�P.�W�a����Xa�JQ�����u���u�8C=1"ך�W�ȥl�ӽL+`����:Ρp�5�7t�pm�r'�/�f���w*�K�L��;�`���.��B0l�5nu��z��?�}cm{9I��Pm�(���(��p5[�7�b���2�9��A:�)am�QH�E�k{��9Q���iʱ}FLqO�c�;S1F��S�א�*J���7qB9�n���[�4�W�S*���6�-�3��„��ر����6EjtM�ƴ�H1'���q@��SF�Z�_�v�Z�pM������-u�ڶ�p]n1�6"��x�{���y:������	�UI�(�2�W�l��m���OwZ���Ԁp[�,��o�岁���/W��DP�(I����>�0��^�qxb���� ûR%��0
-����T<��U$�3�(�.s�jne0�:5���LS�j�O��D֐l{�2@	39_'��I��.W%TO��$
-˱i E|oMF��H�W�}��~��\*0��W��D�0��4��Ag�;J6�S~�������y�-o��Z�H�\:��M�|�9c�u��2Y��t�	��	�����T.�W����kNJ�R�ZAH=>a�N9j�R�K\OV���r��MIҕNl��1�O����aw� �͕�����V���K
-���G�j#��cW2��0���Ψu����=Q(We�~|���|�#*�ֽmHS��0��{u۾�d�S��qa���	p=[Ho6���k��=4݆��a'�e�KY�V=�qp��<݋^™
>��C�lH�-^��-E�.��A.o=B�`�[E�����I�\SE�����b�$1:��v��['�Wh�ݷs0���T�Dl.������A�
�Į�����H������+�h�4m�|P%&�81��O�w�0e�n/˯�t,��vh��;�8��à���ڟ��&���@�G�2�M���fI׽�܃{ܳ	�?�=�-N�N�u��w'�Pu2m\&t�uz`��BũT�˽�M�5>V�O3��ny�]���ڽD�&�o���O;��Ց�6]���Ny�5��v�_|q�x+��I�a��_��$7?n�Q��c�B�~�����~endstream
+xڥi�������k  �\�l�~�8@�5�80V�JbL�2�<+A�{�Z��d�ma<swvvvv�Y����"Qn���\?����[�`��;%kAYOp�
+�E�fq�x�.B/q�0\$�撚�x(~q^���7�r�G���}1t}s(�(���K�U���>|w��a<9
+7K��2gq���J\_EȞ���I�w�"KIz����Yѵ������Kv�
+�(	q�b�w���-
+`�;��
��91I�Pn���,�w?��0R��8���s4x��]�X[nֱ�;�L0!(+F��r�(2 F�˛e�9��Qp�g�@�)���JA��[�n$��a_v�u��v��t?�����P��X��]Y���এG49��Խ���~/��J�D�7��OK�s������`>Qo�W�Z6��z�A�Y��Y1P�^���G|ɜ/�)5<nZ��%0��ҏY٘�q�cІ�D�NW�p��K��G#3���[�hh4*���L���85���|�y~�{:��v|H3�UY����nE��fR�I
+{�p�&8B/�Қ��\؛�HF�=�����D������BE#�E�	Z-�ĩuU�83�Ḍ�WF���|S��nn�?]V�e
+0��č�G��
�
+�Ox����f0};9�d�yQq1�8"7���Kh���$5Z�*V,@ڡ�xz����}��q�9�=��ew2�[1��
�y���|��rC*���
+�@y�d���V4q8��ץp������Y{EE�.����r�〗:ݩ����Wxgd'd5piV���hi�vI�e9c�+w��)������`��<h�D�ɻ�0����/|��gF�<V�&_H��틟�T��"
��H�8��賒����jtw�і�	K'r���Ƕ�͸�2��S�$���(֚&
+����{��6����2���F���Ǿ�al~�t5����T���7A��7�S����-����W�pRG�d#*�"��?��a'r�n�=���S봂R�qL��({QxǸS�b7P�������z%\�N��K�F��ZdS$P��*�$_{抹f��Qv��f8�5]ߖ��$
+��(Us���ŷ^�
5���Ѩ��gpp0�
�	'���{A��?O�oO��q��0�\����J�x��:�2��<FڔUٟ�GX!_�b����|�S�5_a�b�"���G�ܳ�'�t
v�A�e��[^#k�c��0~_Y���T
��%Q�I�����p��Ϋ(��db\"�ѸD�dK�܈j̳-��C�[v*2�Z�3���L���Z���ʮ���c&�7�~,Á'����-E�1��Ϻ���0�at-C��a�Y�A��i+!ŭ�Ç��n�~rY{/X�š��NP�8��j�C�+������m������[�H�{*��P�s&�9���@7����t������Ak�h|)�5i�6Z�O��S��F�$�������߿�{�>�n[�����k[V�)*���G��uBg�3��AA�hz�RRn�9���L��7<)�"�zy=��t�m<ㅢlM:%�s�z˨������nGkH�<�̷�tF�X��u�з�tÆ�W"��H�eM`�3�f��4I�%�Xgݴ��nb�!C�c��Y �K8�.!�Bk���8�`�W�{�f��'V�S.Z³q°3�s�~���%pC�EӾ���{`����i���m�r5�(�Ώl��;椺�~�i��>�+��a��Pt��u&�� ���8�P���o�g\ˑ{��2=��<@�9V����&��O�R�F�l/7ҥ��ư=����!�I��m��\��M'��V<���vuy<����_8s�U�z���r#�A!Ͳ◔�,ױ�9��&yHw��g��P��F}��ƽхc��8�6Xm�C��>�x
Q��H�?���Ϩ��ښq��R�M����_בl=���BB{ݏI
UG�sْ��D7�i�f��Ia���X1��|J	Ec�y<a���A
����Ҁ��P��]���֦�w"D^�nm�o<}�LA�U�b���FqB�ť7`ld��9����^�O��y?Y8���Zx�h}�.�Տ=~M�%= �\FK����~l�9�Q&���K�j��2�GPiI���DEй$���<�JO8�;�(��6r�n.e��j�5��HKj�O���WE����S���Ih��\�Bʧ����_j)?T���x&�+t~��A�
�xHI‰Da�M^�'m��S��1�7�?���a��״)˛b�3�3Pi�qf*�k�,��l������NHdXLX��v�GaD�v�o8wd\���
+@
+���`�bK��Zz�|���b�{p��2�A��&�̤EH�2�4�nx�i3��X<<V:7�@�AA�*]���ފm$��N�y��߶ԛ��œ}��6����ĥ�[Q���c�	23�ĩ��p$[���ea�n���j*����bz���,_���� �S>x���Fw�����R�	?���J�f�)�(d��c��6�~��fW<�����:�(�`�KEΐ��I�lQE��.���d��#�v0rbcy�a
+5��KP��mJl�6�Cy]��l����.����u�x���/�JfŃtK�����c��Cm��?�S��{Y��c�
�� �c��O>��wP���sC�o�LA�2�M���b�T��/�{���꟪��?��{���J>�����'��O]ϷD�4��/��'��ᾠendstream
 endobj
-4438 0 obj <<
+4578 0 obj <<
 /Type /Page
-/Contents 4439 0 R
-/Resources 4437 0 R
+/Contents 4579 0 R
+/Resources 4577 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 4457 0 R
+/Parent 4544 0 R
 >> endobj
-4440 0 obj <<
-/D [4438 0 R /XYZ 71.731 729.265 null]
+4580 0 obj <<
+/D [4578 0 R /XYZ 71.731 729.265 null]
 >> endobj
-874 0 obj <<
-/D [4438 0 R /XYZ 402.85 705.748 null]
+4581 0 obj <<
+/D [4578 0 R /XYZ 71.731 741.22 null]
 >> endobj
-4441 0 obj <<
-/D [4438 0 R /XYZ 71.731 701.917 null]
+894 0 obj <<
+/D [4578 0 R /XYZ 402.85 705.748 null]
 >> endobj
-4442 0 obj <<
-/D [4438 0 R /XYZ 118.555 659.727 null]
+4582 0 obj <<
+/D [4578 0 R /XYZ 71.731 701.917 null]
 >> endobj
-4443 0 obj <<
-/D [4438 0 R /XYZ 71.731 606.03 null]
+4583 0 obj <<
+/D [4578 0 R /XYZ 118.555 659.727 null]
 >> endobj
-4444 0 obj <<
-/D [4438 0 R /XYZ 71.731 555.34 null]
+4584 0 obj <<
+/D [4578 0 R /XYZ 71.731 606.03 null]
 >> endobj
-4445 0 obj <<
-/D [4438 0 R /XYZ 389.061 529.537 null]
+4585 0 obj <<
+/D [4578 0 R /XYZ 71.731 555.34 null]
 >> endobj
-4446 0 obj <<
-/D [4438 0 R /XYZ 118.688 516.585 null]
+4586 0 obj <<
+/D [4578 0 R /XYZ 271 542.488 null]
 >> endobj
-4447 0 obj <<
-/D [4438 0 R /XYZ 411.769 516.585 null]
+4587 0 obj <<
+/D [4578 0 R /XYZ 344.479 516.585 null]
 >> endobj
-4448 0 obj <<
-/D [4438 0 R /XYZ 71.731 496.496 null]
+4588 0 obj <<
+/D [4578 0 R /XYZ 71.731 498.553 null]
 >> endobj
-4449 0 obj <<
-/D [4438 0 R /XYZ 403.654 472.75 null]
+4589 0 obj <<
+/D [4578 0 R /XYZ 389.061 472.75 null]
 >> endobj
-4450 0 obj <<
-/D [4438 0 R /XYZ 71.731 447.679 null]
+4590 0 obj <<
+/D [4578 0 R /XYZ 118.688 459.798 null]
 >> endobj
-4451 0 obj <<
-/D [4438 0 R /XYZ 71.731 373.158 null]
+4591 0 obj <<
+/D [4578 0 R /XYZ 411.769 459.798 null]
 >> endobj
-4452 0 obj <<
-/D [4438 0 R /XYZ 477.684 349.412 null]
+4592 0 obj <<
+/D [4578 0 R /XYZ 71.731 439.709 null]
 >> endobj
-4453 0 obj <<
-/D [4438 0 R /XYZ 71.731 316.371 null]
+4593 0 obj <<
+/D [4578 0 R /XYZ 403.654 415.963 null]
 >> endobj
-4454 0 obj <<
-/D [4438 0 R /XYZ 71.731 254.603 null]
+4594 0 obj <<
+/D [4578 0 R /XYZ 71.731 390.892 null]
 >> endobj
-4455 0 obj <<
-/D [4438 0 R /XYZ 71.731 133.457 null]
+4595 0 obj <<
+/D [4578 0 R /XYZ 71.731 316.371 null]
 >> endobj
-4456 0 obj <<
-/D [4438 0 R /XYZ 71.731 110.543 null]
+4596 0 obj <<
+/D [4578 0 R /XYZ 477.684 292.625 null]
 >> endobj
-4437 0 obj <<
-/Font << /F33 1306 0 R /F23 1201 0 R /F44 2037 0 R /F27 1208 0 R /F35 1569 0 R >>
+4597 0 obj <<
+/D [4578 0 R /XYZ 71.731 259.584 null]
+>> endobj
+4598 0 obj <<
+/D [4578 0 R /XYZ 71.731 197.816 null]
+>> endobj
+4577 0 obj <<
+/Font << /F33 1322 0 R /F23 1217 0 R /F44 2069 0 R /F27 1224 0 R /F35 1589 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-4460 0 obj <<
-/Length 2304      
+4601 0 obj <<
+/Length 2282      
 /Filter /FlateDecode
 >>
 stream
-xڝX{���
��>��n���h�L� �c�'��iQ�0��ܮb=�z��.��^��}��6wX�á8��GR���_;�V����*?
-����-�<��"ኈ{"���f��'Uid��;'�be�������wn�W�ǻl?�n�����?�����Dz�2�Ѹ��ԋ�����n���+�&Vib>k�$sm]�$`]��i�8vb/!#Ѹ�^��Ҹ���������YY-���Z�z�o�����	���e���H����\��?��q}�`��*
-cZ�4qʏ�_ޱb��˶*>d�h�e������FGE:=���a��<�q!�/��Ό�Uo�������ib�ԏ�~2���*�|���_0ޢ�B
�l`
-�9�	�+������-?�]�l�ū��l�r8�����*V<ʚb�.eq�.�������ڥ�*/nkҦv4{`�f
�-�Mu�/�"�tE�A�˓6N;����K?\���R�6�L��K
��y��%���&�`��<�C��6K8"!�eC��[�2r�6*�'�B�u�A�����) ��߯�A���ĩ�U������˛�̚�|"��N�+rW*��7�4�S0c�o@H�4a�A�����o���kлȕ<fPquX��hx���?��61�:Y;� 
��u[�w�YA���Ԩ�Tx�dߵ9���͸U���^:F�"]6����
��G:[����Ŋeп���#Aa�X'���D[̬l`����ٴcS�B�S�eWc���3����/~�s�}���߽x��(������GkO|�r,IQ�ϼɍ���t���Dl>B���ֲS�h1����6��,L�ұP��C	`(ۆ9�,	Ij�N�k�������6C�ي׿��00poΉ��N7��L��$��c�A��$�ǀ8�jI�8�Fl�)�������Q���a�1�}8	}SYfвT�ն_ɻm�N���j_0g�;e>�;*�%��@ �E�b��;�>`Ҳ֊;[홺�\ ��_�T�0ݍ������kN�����b��hkʏ�I��Y�N�����"t��[0�kǽ�<	h+_�x����"p�H���y3�-�/I���ݗÎ)Ȫ�a���0��6����.���K�@K����KkY�Q��Yy���
�S��|.R�	S�|f���.
-��X�3u�d[	��(��ʋ�1a�p�j�I�=�r�KET���r%�!�m�Y:m���ܫ���������45�pq^�YS'�Ϛ@��I|f�����F�q��YQ�MI���zFe����B#�ZĀC�m3tt>&{۬���Y��a�e�yCg)��~?Rŀ�s���	�H!�U<+�jy���w�m
-�e��m��M�5�N��&YH5F;��uH�
���P4�/�yf���c6/���0�mn�������������a�\e!�R��hN��
EJ�f�T���
-�K�J!:M�hr�8zإD�=�v�ET/
���v����L��y�g>3�׏�8s#�&X_�֊P5�p(�mM�D��A�G��@S�ý�$�]���"�k�suRztL�`��(|��	7&�?�#��t	x$���gy��?�e��Ŕ(�)?Lo�VS%>����`>��H��3�����Q�{��F��'y��Z	?֢<��(�����%�x68�Ʋ�Lr��Y�@������̹b#i;;+��'��cg'k�T�:H���`/����܋L��NS���\�N�\�q��,֌��X�'c�u�!��Ap���^�T�����W��%���k�7�`�;��V��Y�&��%���]���s��H�,�Ӹ�"!��R�}�'�E���4�8'���SեxDEK3��O�<+/��ؗ��d �h��
-��y����v5/�.YU�t�P�q���.�����P��(���`�Yo�0ފ���[>=����@Ǡ#�t�?*i�(��Y���,;7�Q~�J@N���k9htЛV<��	��=�+	tH5;��K�v;���[�� ��e�#�m�2�%�z��9�����H۔g	�L(_S�π���������!�fb7������{²�CO�()������w�����	�)��g{�#Lpx�v���#S�<8
���6��ǰAϺ\n����٭mlW�\�l�����$���@�۬�x��~Đ:Ͼ� p�21Ǟ��R����,�[��f�j�o���|�^x�)������"Wߚ�zW�?)�#I�O}:�^�?�Qޙendstream
+xڝX{��F�?��}�f5�wW�I�m
+\�"{��%�b,�mu�p��z���!%��f��.�q(��!�H�\���H�ȃA%B��,-���Vn�$s8��Lx��^]�y�D$�7�]�|7���"O�8P������V�:�,��P���o���?�Ն��ͧ���E��o�zy;j�H$���qυu*:Z7lҍ��h��6oɀVx�muG��*4�[��r^1��54�4u����.��p�۶ot��'��j~1��jc]<��vL]u:E�~2����QӰZ(0k#�[�G��(pS7��Fǖu�*�&o�g���bpK�nQR2�90�0��t��.���sk���욼^8r��n���$�_X�P��@hZ�(����
+=�|eJ����P�i~-��Nz���7]�
+�s����kTcU�
+g�#�:����
=���.zs����dGA蚉��t}S���ю3���s9g�����?������F���R"�'a�a�a3tQM�xi`na8�i�z�*	=q@/�IW�ȝ���e�i�S�_���"��K+M����VjX�LN�H뇬���1_��e=d�Dž
+�4�d��@���_H�C������9�˺/���f>���Fw9Z@o�s���A��7F��p���;��*�߯��_!���E�L�$�f�����\�<J�� �zL��|"���\������{-�x�^��$~D����T[6��G�rdU����=
+�W��^g>�{|�A�!jYg��0J���F(,�"\+d��)D��
+�4�䗪#������p/
+6T�ǹ^@������x0�p���qb���-�d�l$鎄b�#eU�Uf2~��R0�CI����ǻ�?�o�^|��뛗GQ@�u��}��
+Z���L��MӺ�ql�%x���,�I{HUx��w�5&p��Sܜ��Υ!��j;
���uE��UB;���͜�t��э@J�g�.oLA�/�!�!	��$��d��+�8Ֆ��'�$#�v�=֞�*|
+�F��s����-�0y��̂���w5�$�N����7�W�K�.�ݺ�ga,��Z
�D�d���; t�w`�i`Ш���Z�sЪ5�
ؚbG�=T.j����M_ּ�{����lX��|��l��O6�6u{֡
�\��}���S\%�"�d��-0ʣE`�#���:�A��$��CCO����jj�>̜�4nl8��"������zDBP�%?jT-Y��ju~Y��
�
+�(J����B����Y9pPx�؁4�n�I�+��4�f��}h.b�i_�H>�u<΄�"���;�/o�l�N��di ������^Ml}��7��3幩���s�GMx5Շ4����TA��юF���~��y��]7-���+��I��fă�H��o�)(�Lv��N��V����5Ѻ�����޶�����F�#"��M	]�*'����N�Se�K!���mI��Y��N�PJ�v8�iJ*.� �R�s��z�9��IQK�Ƃ�L�����hm	Iyy��!��f!�)heL
+4��ʆ,9d3b*f�`�M��J ;V�0~8��Ǚ0]�ԙ �}/<,��iV�oK����
Nbfį��� ����`}6m�g�s�،6��$��>�4*�D�|�������<΄�2��Q�\��#����E?;�`��GH�,��s�^"�;�Ĵ�u�����e!o�&
+E7ԇ��@�rh�ǻ�x�̇��|G��
�B���E�Oo�jRNj��d�pa�k���Oq--����3CS*��j*(�\��IY�5�m��N|%��/Emߘ����[C\0�d���i�ūN����Ź$.r�KD$�d���uk,ޝ�����q��j_�R�3�:dm�կ�� ��%���ނb������U�&��8����\�+Ql�YpXh�qٓ :B��Y%`�ng1綽M���@��S���'�D7h�6�Ga������Q?�*Z�5@�T#��A��*��aM�
��Wx�z К��L�a���|u�bg�q���yO�K,�����/B14P�$�n�����Q*J� E����^.:MKz�	��]Wb�!���.1V؁��3�ݒ:�zR}��G�ِ9�/1����o�8^��!m���%�2K>�r�3R8���{F�m��]_��{�e���#�����m
��Xğ�"Ç�#��wc���!��8��g�KM��>�Zendstream
 endobj
-4459 0 obj <<
+4600 0 obj <<
 /Type /Page
-/Contents 4460 0 R
-/Resources 4458 0 R
+/Contents 4601 0 R
+/Resources 4599 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 4457 0 R
-/Annots [ 4467 0 R 4468 0 R 4469 0 R ]
+/Parent 4544 0 R
+/Annots [ 4608 0 R 4609 0 R 4610 0 R ]
 >> endobj
-4467 0 obj <<
+4608 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [244.528 353.322 410.209 362.234]
+/Rect [244.528 302.114 410.209 311.026]
 /Subtype /Link
 /A << /S /GoTo /D (cvs) >>
 >> endobj
-4468 0 obj <<
+4609 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [494.336 327.419 537.983 336.331]
+/Rect [494.336 276.211 537.983 285.123]
 /Subtype /Link
 /A << /S /GoTo /D (tinderbox) >>
 >> endobj
-4469 0 obj <<
+4610 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [71.731 314.468 267.724 323.379]
+/Rect [71.731 263.26 267.724 272.171]
 /Subtype /Link
 /A << /S /GoTo /D (tinderbox) >>
 >> endobj
-4461 0 obj <<
-/D [4459 0 R /XYZ 71.731 729.265 null]
+4602 0 obj <<
+/D [4600 0 R /XYZ 71.731 729.265 null]
 >> endobj
-4462 0 obj <<
-/D [4459 0 R /XYZ 71.731 577.071 null]
+4603 0 obj <<
+/D [4600 0 R /XYZ 71.731 525.863 null]
 >> endobj
-4463 0 obj <<
-/D [4459 0 R /XYZ 118.555 538.507 null]
+4604 0 obj <<
+/D [4600 0 R /XYZ 118.555 487.299 null]
 >> endobj
-4464 0 obj <<
-/D [4459 0 R /XYZ 211.992 530.043 null]
+4605 0 obj <<
+/D [4600 0 R /XYZ 211.992 478.835 null]
 >> endobj
-4465 0 obj <<
-/D [4459 0 R /XYZ 71.731 484.917 null]
+4606 0 obj <<
+/D [4600 0 R /XYZ 71.731 433.71 null]
 >> endobj
-1885 0 obj <<
-/D [4459 0 R /XYZ 71.731 458.073 null]
+1908 0 obj <<
+/D [4600 0 R /XYZ 71.731 406.865 null]
 >> endobj
-878 0 obj <<
-/D [4459 0 R /XYZ 449.605 414.976 null]
+898 0 obj <<
+/D [4600 0 R /XYZ 449.605 363.768 null]
 >> endobj
-1886 0 obj <<
-/D [4459 0 R /XYZ 71.731 411.146 null]
+1909 0 obj <<
+/D [4600 0 R /XYZ 71.731 359.938 null]
 >> endobj
-882 0 obj <<
-/D [4459 0 R /XYZ 159.442 375.603 null]
+902 0 obj <<
+/D [4600 0 R /XYZ 159.442 324.396 null]
 >> endobj
-4466 0 obj <<
-/D [4459 0 R /XYZ 71.731 368.251 null]
+4607 0 obj <<
+/D [4600 0 R /XYZ 71.731 317.043 null]
 >> endobj
-1887 0 obj <<
-/D [4459 0 R /XYZ 71.731 309.487 null]
+1910 0 obj <<
+/D [4600 0 R /XYZ 71.731 258.279 null]
 >> endobj
-886 0 obj <<
-/D [4459 0 R /XYZ 141.108 272.271 null]
+906 0 obj <<
+/D [4600 0 R /XYZ 141.108 221.063 null]
 >> endobj
-4470 0 obj <<
-/D [4459 0 R /XYZ 71.731 264.919 null]
->> endobj
-4471 0 obj <<
-/D [4459 0 R /XYZ 71.731 245.008 null]
->> endobj
-4472 0 obj <<
-/D [4459 0 R /XYZ 331.48 221.262 null]
->> endobj
-4473 0 obj <<
-/D [4459 0 R /XYZ 86.396 195.359 null]
->> endobj
-4474 0 obj <<
-/D [4459 0 R /XYZ 71.731 188.221 null]
->> endobj
-4475 0 obj <<
-/D [4459 0 R /XYZ 225.881 164.475 null]
->> endobj
-4476 0 obj <<
-/D [4459 0 R /XYZ 71.731 157.337 null]
->> endobj
-4477 0 obj <<
-/D [4459 0 R /XYZ 373.626 133.591 null]
->> endobj
-1888 0 obj <<
-/D [4459 0 R /XYZ 71.731 126.453 null]
->> endobj
-4458 0 obj <<
-/Font << /F33 1306 0 R /F35 1569 0 R /F27 1208 0 R /F23 1201 0 R /F44 2037 0 R >>
-/ProcSet [ /PDF /Text ]
->> endobj
-4480 0 obj <<
-/Length 1277      
-/Filter /FlateDecode
->>
-stream
-xڍV�o�6~�_ܓ
$�-�qr��~`(�`���Au�D;�2$���_?R���ͮC�J�(����V>��/�U9�|������M6;�ʯ7y�XD�Ņ���f���
۬�lw�Y�DQ�*�ٺ����d{��W6]�2KV����i�w�Iq;��y��F��~��y7�\��m����6��b��
-�o	Q��<D�b%T�N�R�%�R�%���Z����F��e�قg,�ep�g��mHy.DR�.�x�e��G�?����G�>�{yTqz���1	�Ђ�^x�K+T����k\�����G���*���h�צ�FY����k���R��x7�N�٦$\N����˧��tU&�J��zTݣ5�+�M��-�,�c�.Ӆ(�	áJ8t���#�Τ�L�H�P��P�x�Z��y�7���^����
-kZ���^��$��Dː dޘ������N��F�0/6�O�7�����4dg��!��^�G��[�-{�dTG�t�i{f'�6�M��E����G�`��j��?�l�Ӝ�L7����'�H�VѺ��F����:.;�]��c�β
-��!�V�I! �ȯ$�S�DU$��	«2��]�:�H��Ⲓ5x=���D��Lnike��`Ց���bӒ��1���S�V���
-�d_z.]�ȽuT��$�\@���s^6�� �pЍT�eG#R%q��aa��c���%��x�7j�s]'���]�X7'm�������>K��?S�H1���%@0Tÿk��ԵR4�� ߔ ��) Aq�2����UI'��a��"
-�c��_~ ��RL��"~
-���o�������)�1��%
�����[83P��k�t����!��8��9	{5%��t/ �P'�gH���1�F��D�"0����fSsAZ����z�+�90^����T��p�
-�:
-��qN?"AQ\(��nc5�I!�
�7[���Oێ�S�u8�]��:���[���ͭ��q��H�/�r"�I�._2�� ���9�#�2�:�L�nd@����Nm��:_Zz9����.�����~f,�����?��.ew<�b%�Ba�O����n��-(B��ɘ� <�t}��ZR{&�iS�q�8L/^F(.�N���2�	[4��1���aDԟ/&Vkj*bUA�A#li�3[�FbNk���x���ݱ�D}t��1����F���A~�o�2���._��[��:�~��?��{ӗ|�2>:�p��=�ߟ�/:�W�endstream
-endobj
-4479 0 obj <<
-/Type /Page
-/Contents 4480 0 R
-/Resources 4478 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 4457 0 R
->> endobj
-4481 0 obj <<
-/D [4479 0 R /XYZ 71.731 729.265 null]
->> endobj
-890 0 obj <<
-/D [4479 0 R /XYZ 204.675 707.841 null]
->> endobj
-4482 0 obj <<
-/D [4479 0 R /XYZ 71.731 700.488 null]
->> endobj
-4483 0 obj <<
-/D [4479 0 R /XYZ 71.731 674.765 null]
->> endobj
-4484 0 obj <<
-/D [4479 0 R /XYZ 249.701 674.765 null]
->> endobj
-4485 0 obj <<
-/D [4479 0 R /XYZ 273.821 661.813 null]
->> endobj
-4486 0 obj <<
-/D [4479 0 R /XYZ 71.731 654.675 null]
->> endobj
-1889 0 obj <<
-/D [4479 0 R /XYZ 71.731 597.888 null]
->> endobj
-894 0 obj <<
-/D [4479 0 R /XYZ 189.239 560.673 null]
->> endobj
-4487 0 obj <<
-/D [4479 0 R /XYZ 71.731 553.32 null]
->> endobj
-4488 0 obj <<
-/D [4479 0 R /XYZ 350.294 514.645 null]
->> endobj
-1890 0 obj <<
-/D [4479 0 R /XYZ 71.731 507.507 null]
->> endobj
-898 0 obj <<
-/D [4479 0 R /XYZ 261.414 470.292 null]
->> endobj
-4489 0 obj <<
-/D [4479 0 R /XYZ 71.731 462.939 null]
->> endobj
-4490 0 obj <<
-/D [4479 0 R /XYZ 71.731 437.216 null]
->> endobj
-4491 0 obj <<
-/D [4479 0 R /XYZ 365.641 437.216 null]
->> endobj
-4478 0 obj <<
-/Font << /F33 1306 0 R /F23 1201 0 R /F27 1208 0 R >>
-/ProcSet [ /PDF /Text ]
->> endobj
-4494 0 obj <<
-/Length 2248      
-/Filter /FlateDecode
->>
-stream
-xڕێ����_�<�V\�I�(R�m㸈�]�MF�H�"�Њ��=��(��u�����̹_F�l	�,��<�O\�q�ζ�W��V޽�d�*��8��X\�I�d�ax�����8���0K���n�e��q�͞��o�Gݔ���"������O�f�m��b�Z����z��������>���",��/g�;�O��p(]¡|��фi�u_jY���֙���������Gi���N�<�k��q�*�����*�xכR�L__��E�}Q(�u�;U��ׁ8=��=[$q��39���G����-WB�{!�;3����H�0��a��FW/�"�&	a~���upn{N�h�uQ�xµ�U��摒I���=ȼ�w2��^�h��5��o��;���VM��r�u����@��n����\�iU���y��Y81�b�4�޺�LR��E��4"�w��d��t-I��
�+Z_����R���luc���;큵�ƺ�0��iߔ�{^����x'�}s����ZN��o�J�frŮ���H��2���YݝN�yb;�LQj���Ϗ� ��%q��
-Z�+������m��C���xl;Yߵݵ����
g�&iw<n���ڙfV��'+�I�����6�
��;��G�
-a0�"�<΂Ϧ�U-XNU��*�İ��eG-y�>r8I�;X�8����P��Sc�	Ti=��'���+���I��?��3��"�8)���'*�e�:�m�_2``� l �
�>������$�+�Np�p̵�sr�aq%��X��f^���N Emj}#�=&���ep�i)�s=�A;>�[̟Hc��A[���ڵ7^<��Y��av G~F�ۺo��Z�[-����շ�����/�6����;v�'��^�>�n���
l}v��:�
��C.\����do�yD�1�Ʌ�U�E"����i���y~�}�p���[r"B�(��+8����d�y3<%��,Nhc����,{d�ÏXR	���g��I�-�+��Q�7J>I��Z;<��bT8?a�8M�	)���Io�19�x�)�?���8:.��!��R�S��7��B��D�#��ӱ
-`D*�ھ�am���#�|72Ve����J�ҚC��4�D<0�{�6+�3�n`�y��)(b�5��3�z����;�}�`��b��l
���ab�{8�Z�5hao��,\�l�a"H,�(̊�N_��((�rBfC}�ÊN+I_�-��s�Zr�7�r����}G��S[J݀,z��z[?��:�b!D��BƧ���r������-�Pe�gY��do�(�P`�{�st��J�n�Z����WNm����X;D!�ȭj�G^%������f#
�����]ȇ1�v�R�@FB�ȁш
-G�q�T��8i۝�v��!O�Ę8������D��
v=A�TX�'P���sS��1@��*d����`�7Ő��1���>�N<�Vu�m�ڀ����4Taax�]E�c@�7b)�Ш�CG�p��W�d$����e�*����``H�ż�2QX���qgV�+�x�F;�=��0fs�r�Γ��ݹ3�b�-��?�\�Q�M��Hɬu-uN�ѣv���^*���I������ᜒ�i(����K�/$�i�
-N �\:69j�
-r,w 2�f�w�/J��.��6&su�ܼ� vQ����.@��x��M!c5��mh}�y�^M����a'8�.�D� 20	|>b�����-~X@MI�x�+���=U0;��A�d��8�������~s0�$)�j�!Ur��m���ɓCQ���u`���w����C*@�gjb #��^�N��@a��ҡ������x_oG��}�$��"\���|��ן48�#xD�#��G��y��2G���,��<��t8�4p�H7<�`���v&����\��)9��:����:Dnn��X���
��D��e��y�e'�7,:;`��f�j`�w�ʣ��ز� 
�"O A2e�'�U$�	�?��I�ԕ�Q�Ē��Ƃ!������W�E��`��dY�2�2���EC/��SZ9�}l>���&NЁB�?�/�+��g%�"2�
� t�7T[�S����NS� x����V@���`#3���(s�lB�1��'���n�n{�ϧ��_�Wk�p��d�ⲅ~7�i��ڀ�^g�7�����Lendstream
-endobj
-4493 0 obj <<
-/Type /Page
-/Contents 4494 0 R
-/Resources 4492 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 4457 0 R
->> endobj
-4495 0 obj <<
-/D [4493 0 R /XYZ 71.731 729.265 null]
->> endobj
-1891 0 obj <<
-/D [4493 0 R /XYZ 71.731 718.306 null]
->> endobj
-902 0 obj <<
-/D [4493 0 R /XYZ 366.546 703.236 null]
->> endobj
-4496 0 obj <<
-/D [4493 0 R /XYZ 71.731 681.855 null]
->> endobj
-4497 0 obj <<
-/D [4493 0 R /XYZ 71.731 671.343 null]
->> endobj
-4498 0 obj <<
-/D [4493 0 R /XYZ 71.731 666.361 null]
->> endobj
-4499 0 obj <<
-/D [4493 0 R /XYZ 71.731 661.38 null]
->> endobj
-4500 0 obj <<
-/D [4493 0 R /XYZ 71.731 638.889 null]
->> endobj
-4501 0 obj <<
-/D [4493 0 R /XYZ 71.731 615.552 null]
->> endobj
-4502 0 obj <<
-/D [4493 0 R /XYZ 325.163 599.776 null]
->> endobj
-4503 0 obj <<
-/D [4493 0 R /XYZ 71.731 584.668 null]
->> endobj
-4504 0 obj <<
-/D [4493 0 R /XYZ 71.731 561.754 null]
->> endobj
-4505 0 obj <<
-/D [4493 0 R /XYZ 354.338 545.978 null]
->> endobj
-4506 0 obj <<
-/D [4493 0 R /XYZ 71.731 543.821 null]
->> endobj
-4507 0 obj <<
-/D [4493 0 R /XYZ 71.731 520.907 null]
->> endobj
-4508 0 obj <<
-/D [4493 0 R /XYZ 71.731 515.925 null]
->> endobj
-4509 0 obj <<
-/D [4493 0 R /XYZ 71.731 485.041 null]
->> endobj
-4510 0 obj <<
-/D [4493 0 R /XYZ 74.222 443.363 null]
->> endobj
-4511 0 obj <<
-/D [4493 0 R /XYZ 71.731 418.292 null]
->> endobj
-4512 0 obj <<
-/D [4493 0 R /XYZ 138.434 402.516 null]
->> endobj
-4513 0 obj <<
-/D [4493 0 R /XYZ 288.63 389.564 null]
->> endobj
-4514 0 obj <<
-/D [4493 0 R /XYZ 95.641 363.661 null]
->> endobj
-4515 0 obj <<
-/D [4493 0 R /XYZ 71.731 362.254 null]
->> endobj
-4516 0 obj <<
-/D [4493 0 R /XYZ 71.731 338.59 null]
->> endobj
-4517 0 obj <<
-/D [4493 0 R /XYZ 105.325 322.815 null]
->> endobj
-4518 0 obj <<
-/D [4493 0 R /XYZ 71.731 320.658 null]
->> endobj
-4519 0 obj <<
-/D [4493 0 R /XYZ 71.731 297.744 null]
->> endobj
-4520 0 obj <<
-/D [4493 0 R /XYZ 71.731 223.024 null]
->> endobj
-4521 0 obj <<
-/D [4493 0 R /XYZ 296.767 199.278 null]
->> endobj
-4522 0 obj <<
-/D [4493 0 R /XYZ 74.222 168.394 null]
->> endobj
-4523 0 obj <<
-/D [4493 0 R /XYZ 71.731 143.323 null]
->> endobj
-4492 0 obj <<
-/Font << /F23 1201 0 R /F27 1208 0 R /F32 1215 0 R /F33 1306 0 R /F35 1569 0 R >>
-/ProcSet [ /PDF /Text ]
->> endobj
-4526 0 obj <<
-/Length 2753      
-/Filter /FlateDecode
->>
-stream
-xڥY�۶���8*#A|�"�L�q��:~$��n��t S��G/����E�d73��9���b���Tp��_p�*��	3.��������1�و���G��(��T��.n7� V)ʉB����m�O��~o��}2c�{���-w~��U�yt=	��{>Y��/��������A%*K��*�xN����Y��P�OU�X���N���2mG]߻��?}/���N�	#\���]����N@c>�N\����$����a�6�N�I�{��I��d+����f��-�������/�n�>�Ͽ�t>A�;��[��z[>�76�����r@Z0�fpڜ;��Ӂ��ߛI{��������r{9�Хb�?��}����:��$�0\d����XRR:��+�Y�@qnD���S��v�C������7�7�^_�d���3S��S��D4"�����۝��9s5weWLfQ��Q����+Vd1�ŐAT:�AֆM^Rs�2G�)��l�Z��M�ښ�c�a�0Zf[�^��������yNrDh�g鬧7�p7{�$LR�"j:��ļl̺+m=�1_W·��J��dv
�ؚ\�Xn�\}�D����
���F�a���B�VzU	�x~�W����DN�.�����|�c7�����wW�߾���{�z9��a���뛿+���~."�J��-��t.$���jz'tt%���΢�N�Xٕp4� �x!8�)��э)��bI�$��t�!4��+Pn|������s�
�w{5e.vB�p��%.�%c����9�%��.�W��v���s���T�F �ᩮ�hh�
�|V�X�l
�?�w�fpΧ� ��ܚ����,���n��9Ʉ3ne��!��V�h�m!]��u�ԌZ�k*�[�����n��b��N����A��&�+�
��(�WC͔'����b�#��;m�R̈H?��+�u!�X�������Aif��a��$����+��b�7��2�:���3�ℊ����67�B�?х�pC�Ŭ�����S�l��ꑭ0՞Itq����A�䁮 p��_�sx�ԲJcRF+�FMk���E\����b{Ɠi��M_S�՜��Dzc�³���h����A����z\ 0im�)9��&A'�
-:R���E�`D�=��Mp��g1��]��y@�N����Ɨ��S_���
-,�����&��SGu���r�n��6m��U��*��(������>����ޟ��q,��&ѮܗDA�0��$�\xp'Pg�t��:�Jթ����r�(2ם^��I���xxp��x��5wl���PDr�fS����+`[r�.á@�~n6T��U�Ln{q}	�2��n��_-,��<�*�%��m1M���Y#��V�-��N�Qc���)����L5T7U5��=`t��޿�@L��*rq|�qR,t��w�o0i��z/̩u�2�K��������\��ʿ�cu����
-�)w9�v�G�x
i�ԟ�,�6��ǥ/�u�S�&��и��
-ƱI��A�r�Qt���*O���}�s������c@�~�ɖ�%P*�c���� %���hDF�*Q`�Y���������1�Tw媤X
A`���Ӊ>W�uR]�ukq�ԃB��'�#S���SqCp
-�[.>�YƐ\fPoW�n���C�\�0�L|��u%��)���p�p�H�T�B�3��r�$mٹ�`�V6��7f��LGJ�f�"�?_ۀ#z�=���{�!��P���{�RAvp�dB�����k��c9���t�s7N��5:��ߛ�vc���H\R�����ȱu��	�Q�[���k��)y�x�f�4v��:`�1P��A�@>,9j�,_�M�U��Z����(�ɣᠣ{��K����$]���*�?�×���\:N8m�	�|y�coxE���Ed�+�o�ᖋZH�<�JyO������wC�>�
-��=��V�e)%L-e~�D�?Qfdgʌ�W��U�����o�4]��)�:֚���^�E
-r�(']B��Eμo�9.�櫲����Ǐ��,d	�m^�3���(�l$��r�Ћ܉�i�8����V�T��L�5Dh�_�*�}�^�����P9�J�-88�90�5��g�2ʟ���	O~P���Yv��3t�#��M����|�_ ��kp�N�k����$����3�;uN)���4OOq�<1]-[ռ`&J�1���P��2�.je*�_UiJ71|D�фC����i�R��S�^p��Uű�=�VT���F��ޜ[��D���� ›P�¬4�ƘS�R�n+xJ%Х��W�3��荊8Ca��j;���$����bh�׭�Oŭ+�:�|����7(|B�rH�W'��W�?���S�>^W�yz�xa��AF�cc/W�R:�����'�h�xU��1�O��%��2�������B�`�����p�7��;0�LL�o%v��uT��!����ȭ�^��}]q.	]-�uJ�Z&=,#2�����x�+�K��'~\�"9�4cd����=�8��Ӯ��YA�8��@.�SF7PR��|n�"fέ��ݳ��~��3�e���(/������v@olQ����'��r�7� �b��֎Xf3����g�Ӝ�6�HU$_����r��a&��)x�4�ҏ��[��n�Jendstream
-endobj
-4525 0 obj <<
-/Type /Page
-/Contents 4526 0 R
-/Resources 4524 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 4457 0 R
->> endobj
-4527 0 obj <<
-/D [4525 0 R /XYZ 71.731 729.265 null]
->> endobj
-4528 0 obj <<
-/D [4525 0 R /XYZ 71.731 718.306 null]
->> endobj
-4529 0 obj <<
-/D [4525 0 R /XYZ 378.741 708.344 null]
->> endobj
-4530 0 obj <<
-/D [4525 0 R /XYZ 71.731 623.497 null]
->> endobj
-4531 0 obj <<
-/D [4525 0 R /XYZ 429.028 599.751 null]
->> endobj
-4532 0 obj <<
-/D [4525 0 R /XYZ 153.769 560.897 null]
->> endobj
-4533 0 obj <<
-/D [4525 0 R /XYZ 453.126 560.897 null]
->> endobj
-4534 0 obj <<
-/D [4525 0 R /XYZ 74.222 530.012 null]
->> endobj
-4535 0 obj <<
-/D [4525 0 R /XYZ 71.731 504.942 null]
->> endobj
-4536 0 obj <<
-/D [4525 0 R /XYZ 71.731 469.076 null]
->> endobj
-4537 0 obj <<
-/D [4525 0 R /XYZ 71.731 425.24 null]
->> endobj
-4538 0 obj <<
-/D [4525 0 R /XYZ 477.566 414.446 null]
->> endobj
-4539 0 obj <<
-/D [4525 0 R /XYZ 71.731 394.356 null]
->> endobj
-4540 0 obj <<
-/D [4525 0 R /XYZ 71.731 363.472 null]
->> endobj
-4541 0 obj <<
-/D [4525 0 R /XYZ 71.731 363.472 null]
->> endobj
-4542 0 obj <<
-/D [4525 0 R /XYZ 74.222 321.793 null]
->> endobj
-4543 0 obj <<
-/D [4525 0 R /XYZ 202.524 298.879 null]
->> endobj
-4544 0 obj <<
-/D [4525 0 R /XYZ 340.43 298.879 null]
->> endobj
-4545 0 obj <<
-/D [4525 0 R /XYZ 71.731 285.828 null]
->> endobj
-4546 0 obj <<
-/D [4525 0 R /XYZ 385.027 267.995 null]
->> endobj
-4547 0 obj <<
-/D [4525 0 R /XYZ 71.731 229.973 null]
->> endobj
-4548 0 obj <<
-/D [4525 0 R /XYZ 71.731 198.854 null]
->> endobj
-4549 0 obj <<
-/D [4525 0 R /XYZ 156.781 172.951 null]
->> endobj
-4550 0 obj <<
-/D [4525 0 R /XYZ 71.731 160.832 null]
->> endobj
-4551 0 obj <<
-/D [4525 0 R /XYZ 71.731 139.676 null]
->> endobj
-4524 0 obj <<
-/Font << /F33 1306 0 R /F27 1208 0 R /F32 1215 0 R /F35 1569 0 R >>
-/ProcSet [ /PDF /Text ]
->> endobj
-4554 0 obj <<
-/Length 2268      
-/Filter /FlateDecode
->>
-stream
-xڅk��������a`��gQt17��;��۽�8t��b+�nm+gٓ����"�8��"��(��K�f!���2
-�	�*��lV�o��V>����gB����]��V�*Of��YeA�|�8(�x�X�ۻ��dW��g�w��XK~��UM#hv7��̻����e��ǿ���x� K���H�+��9�2NfH���pD����2,�$M���Ѓ|�'.��s .y�o�����eZx/�8����l'�����&H���[9Ԫ�J6�3�fb+TwM�~�@�f��)M���|O�����E?���c�D�g��i������$���������Q���*�M�ht)��ZuЮ97�*
�b�f�+�8^N
�3����Jv
-V
-�o�<��#��4�4��?w ��d+�E�Ws�'�lq���J}
�XVD#��@�	.�Q�'L��st�1��:��Fd�ya\=5��"V�-1,भ�Z-��+� ^ƎZ��e�$P�K�+,����Y���Q�8�H۰�L-��'����|�������iA�3E�8
-��`Ѭ�^�T������k��wx/�'D��Ѫ�G�F�����F�����V�Q
���l�0LTֲ�������'ZE�9�'"��v���J�n���$!�UGH+"��y��{5�7W��qTs@E�aؽ],���<ϼ`�~�y,�����.*]�l��)�y�5h5�͟�5���3
-��N�$����,<��Jw�:!��S#؏�ùEkO��`d�y{~�ydYY��?ZY����<��x��1
����I�km�vL)�`0��3c]�t�cqӘ�98nd3�T�^6l\���X��z�ʥ�.p46��j�(���)p��U����H	b�r)����f<U��x�k�0��ndK�B9,{�*K���W�����z	���(m|��z�8T�������тp�\��A�.g��x��g��Eiz��1F�~�x�F\�,�Uf�_����H`�sesC�=�;�st'Da���V��#��kB��P<��&�D�a�U9\q���C	�G[��hK��C2-
I"�ȓ0�C����8�����z����Ç�_F�����F���V���bԲi��l�Y�~���n[���*Ř�)J`��R�FNY���b禉+�W:�Q�"d��#�A����H#�R�0��B�#�:=J4��a�����%�
��o �#���`�c�������h�?oF*i9wR�`�1b@���Dӱ2�D�,nߢ��	�8B��V�Q.8*��$��9-�v��YD��v�B�ݛC�rOp��b�B���'.I�5Tqܒ����G.���x��|G���ǭ7'E�t�̵�ӗu��Q�t�����(A�LN�SQ�.��JN�ݬ��Fر��?D���O�����6�йp��59��㦴]�5!Q��D�0
-��zL8S�F�G�R�dϼ�S?���]�lL`�!�X�cnV@ɫL|t�y~4̹�b+nl=&=�,s6h�V� S뱩���#���4���m�2T򟢆�0��W��d#'���Ls��@
-G�A����R
�x
-TF,jC�5�2�(;����Z���%>gv�:qZ���#n�nn��p�֍����I���Ә{����.���`Iq�8|�hڤ�h>��yK.z6��s��0i��0<e}7_��~�qgZ�
-���t/��~�>4�!b���r�����d��d��	�
-��~��]�wkeh��]�2Bi�m�����2�}M��|�L�i2q�A��kxTX�=;�_imÆ�i�"�/���c'K�y�<כ��t/O��7`�
-j�R=<�l���� [����zJ=���]�`]GϞB��v�B��u�����ŗ. �½��ۦ .�W�3�'8`:Z"2/�+���������-���]B^I�N��a3};�w�|�����U.����O �ozx��&N�I����43�n#�p2�ؤ�ؕMe^�r�6G
-|��Wt�e�U)Oy���;۬���'�K��8&ܸ��KcW�'F�!��U��a�F�� ��a�ysM5��Z���z�5����	d�-�SC)�`�cMZ��-�����A2��?-��h�Z�V���&�tx_Rόׁ�����x헞�7�.���I�����=���?H���?)�J�n'�����U���N�����%6-�"Z~�[���SmA;&h����/��'�����endstream
-endobj
-4553 0 obj <<
-/Type /Page
-/Contents 4554 0 R
-/Resources 4552 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 4457 0 R
->> endobj
-4555 0 obj <<
-/D [4553 0 R /XYZ 71.731 729.265 null]
->> endobj
-4556 0 obj <<
-/D [4553 0 R /XYZ 71.731 718.306 null]
->> endobj
-4557 0 obj <<
-/D [4553 0 R /XYZ 115.567 696.687 null]
->> endobj
-4558 0 obj <<
-/D [4553 0 R /XYZ 71.731 668.792 null]
->> endobj
-4559 0 obj <<
-/D [4553 0 R /XYZ 376.59 655.841 null]
->> endobj
-4560 0 obj <<
-/D [4553 0 R /XYZ 216.969 642.889 null]
->> endobj
-4561 0 obj <<
-/D [4553 0 R /XYZ 200.218 629.938 null]
->> endobj
-4562 0 obj <<
-/D [4553 0 R /XYZ 71.731 605.584 null]
->> endobj
-4563 0 obj <<
-/D [4553 0 R /XYZ 71.731 553.659 null]
->> endobj
-4564 0 obj <<
-/D [4553 0 R /XYZ 439.725 542.864 null]
->> endobj
-4565 0 obj <<
-/D [4553 0 R /XYZ 95.641 504.01 null]
->> endobj
-4566 0 obj <<
-/D [4553 0 R /XYZ 336.678 491.059 null]
->> endobj
-4567 0 obj <<
-/D [4553 0 R /XYZ 455.543 491.059 null]
->> endobj
-4568 0 obj <<
-/D [4553 0 R /XYZ 74.222 460.174 null]
->> endobj
-4569 0 obj <<
-/D [4553 0 R /XYZ 71.731 435.103 null]
->> endobj
-4570 0 obj <<
-/D [4553 0 R /XYZ 71.731 417.171 null]
->> endobj
-4571 0 obj <<
-/D [4553 0 R /XYZ 71.731 394.257 null]
->> endobj
-4572 0 obj <<
-/D [4553 0 R /XYZ 262.624 339.626 null]
->> endobj
-4573 0 obj <<
-/D [4553 0 R /XYZ 71.731 327.507 null]
->> endobj
-4574 0 obj <<
-/D [4553 0 R /XYZ 71.731 327.507 null]
->> endobj
-4575 0 obj <<
-/D [4553 0 R /XYZ 71.731 304.727 null]
->> endobj
-4576 0 obj <<
-/D [4553 0 R /XYZ 71.731 270.785 null]
->> endobj
-4577 0 obj <<
-/D [4553 0 R /XYZ 71.731 252.852 null]
->> endobj
-4578 0 obj <<
-/D [4553 0 R /XYZ 71.731 214.929 null]
->> endobj
-4579 0 obj <<
-/D [4553 0 R /XYZ 71.731 179.064 null]
->> endobj
-4580 0 obj <<
-/D [4553 0 R /XYZ 74.222 150.336 null]
->> endobj
-4552 0 obj <<
-/Font << /F33 1306 0 R /F23 1201 0 R /F44 2037 0 R /F35 1569 0 R /F27 1208 0 R /F32 1215 0 R >>
-/ProcSet [ /PDF /Text ]
->> endobj
-4583 0 obj <<
-/Length 2875      
-/Filter /FlateDecode
->>
-stream
-xڍi�۸�{~��
-kt[PrM7E�E�酦X�2m	�UQ�d���.ʔ��� ��|�A�7�›M�ob�D[?�қ�y�a�/B�X���y����!�o��6�o7I��9�G~�F7��{��^����j������c�y�z:~��Z��a���j��_W�y�Ӌw�3i��y�C"-�%�щ�m�g	�~�$Dd��>�w�mN�Q�Áp2����"�I^�S
�~�V@��j��Z�?�$��w�X�G^;h5N�6����q�
-���qP}i��X�3�_ ���&�}i�U�zO�,�u,�����1�t@t����fծ�盵�#+ZSG��vd��՗�O��t��k�m���!��)���O�܇h����u_xD4���޼��ۭ��K𛎿ݰ
-s�x��cś�@���&�`B������;���B�}�ߪe���Q@P}ޞǤ����IB�-�?Lu��bB������J���E����@ę�Gi�'��&�?
�fnq����z�B�?��DX����1:E��v�������}17�b��b)1-����{F#��.���ȃ�yi,Qc<f�0��9�F�Z���5'7�A��DJ��㡈o
-8���PP�=}gL���t��d�8�z�*F��pа�kU�0��X_�{=\��/��<7SQ�H����fx6#E��'D�d�c������,�؊'�
- ���L}D^A�b�co�9̠,Q"v9��!#�f�Ψ�/!�(��+~C�#�$d%��W��)���0��7�8���t��]LC5>��
-�@U��q�ɼw_�ʹl�3<$�@H'4��ܯ��~f����v|�P�y�dy��R���'E<�=���Xj� �$c���0x�œ�7%m��
�O?O6�ڒ+�-�Q�Ij{"ƒ�U	����� �HĨ�{��JLw+r�(�_7�
-��۳5�k	����9V�n�x'�m6K�Z�Q���d &��`G�s�>���k��&���@�=�#�v�@V
-`�"��=U�g435
:� g�j���vvs�DK+���O�@�O�4�_SE+bWug�S�����f\��lpE�ڣ��F��uK����I�oY�[Q<
-_�.Ja�4�~�\9��P'U1�J��T7;�pT?ǁs���,��,7��6K����A_���l�H���L�Mg%Mz9?�l�P�4�El��kZ=Z�798s������ݨ_2��3^���f���1�2��1�!J�JT\@% l2Pj����/"!D��Q�Y�k
-θxX� N��T]S���`V��D%�Sp����	N�!�;gq��,����R�H7ʬ�G6����lWTj�j+��Wg��Q��3OZ�;$�÷P��8F6�dm��6Ҙ�j�T\%:x��(FQ0�gW6�|z�
	'���6����Oeq�a��6,X̧��2�n��U[*q؇5�~ *�y�0Kk����K��2�&^w\/>�'-�����r�:���f�6r�Ka]�9�U<�C��0����x���h��,�H�0BIL�����lf�xRC}'��٢[DZ��:��0�Wb��R���V"jv=��I�l;��p�q+*��D*��vR�@yy���Zp�{��"�=J%��4�`�B�T_r<ֺt�,�%��<����A�����]�F��
-XQ�u΄ɨ�����i�M5�嶳upd�|A���F���D�(�Yd�ޛ{��x���c��q��fYf�زO:9J]I�����lӡt�'e٤1WZ�w'��X�x�����MI,%�ږ�t�����<�D�w����4[�`�axU�W�F��4��9��ڶ���'�[^x���r��ߏo�|�=��� �Ŝ�
-���=�Ll둼6D�LɮG�	/����C�ā�$0l�a<7�&N0�c%��%��N����~�8��Ya�A7ɍ'3��(=���_�+Qx]��;�L1yoJ
��rJ$�_y�y$�C�L�	���b�1)� s)@�fk!4\���,��;+.�qc�`EO�SAS�����&������?��eM3?�,�=]�K��}����c	k4��D����&~���lF
2*J�{�U�l|�&i�H
-	?#��B�SS��^��|  �!mċ�i	���z��&���#�2�������B�6<��L�����G|�̩�t��X�™-¿K�L��Y�i�oz�ӆ�������fp�v4�""���Xþ��0�͈!rziKy��I(&���5��ח֔e 
kM��J�e �G0[K1���d7���2�M����}ؒN9�	@��� G�/�aU��h�6�"��
-�I�os��m����t���K���2�z%QK�j�;��c=9�Ii��Jŋ��IÅ��r�>�e�D.{�Z�S�9{2�I��PT6r�U��Yd�i�]����������d��v���:�"�r!�0��al;3|���ݥ���Oc�⧴�V3��B�ק�Һ���D���!��h֗nm�����RX�s���@B��D��Ti���i�B�����rk���g�~����~��h�<tm~�y�'�n���>����q"V�U�U]9�ֱSh܏�׺(������
-3�m웚�.��� �W�1������/87���r)���#%�piA%�I�\^d���Ӓd��qP��m#��)����a灏|�	��yyw��D�W��z�?<{neZ|)���/Ǧ���}~�
���ď�8T��$�c����K<{_B�N��ڛ4sS}��4�•l�fP�=�0��j�—�4���chK3�e�k$��'�R72#"3rK��+Z 8�K�޵X\����_�I�����P.��M��"{J'���_��7��h�endstream
-endobj
-4582 0 obj <<
-/Type /Page
-/Contents 4583 0 R
-/Resources 4581 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 4609 0 R
-/Annots [ 4587 0 R ]
->> endobj
-4587 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [258.489 662.351 308.302 671.263]
-/Subtype /Link
-/A << /S /GoTo /D (reporting) >>
->> endobj
-4584 0 obj <<
-/D [4582 0 R /XYZ 71.731 729.265 null]
->> endobj
-4585 0 obj <<
-/D [4582 0 R /XYZ 71.731 693.235 null]
->> endobj
-4586 0 obj <<
-/D [4582 0 R /XYZ 148.299 677.46 null]
->> endobj
-4588 0 obj <<
-/D [4582 0 R /XYZ 71.731 657.37 null]
->> endobj
-4589 0 obj <<
-/D [4582 0 R /XYZ 74.222 589.788 null]
->> endobj
-4590 0 obj <<
-/D [4582 0 R /XYZ 71.731 564.717 null]
->> endobj
-4591 0 obj <<
-/D [4582 0 R /XYZ 71.731 533.833 null]
->> endobj
-4592 0 obj <<
-/D [4582 0 R /XYZ 71.731 510.919 null]
->> endobj
-4593 0 obj <<
-/D [4582 0 R /XYZ 428.12 496.438 null]
->> endobj
-4594 0 obj <<
-/D [4582 0 R /XYZ 71.731 479.338 null]
->> endobj
-4595 0 obj <<
-/D [4582 0 R /XYZ 450.21 458.182 null]
->> endobj
-4596 0 obj <<
-/D [4582 0 R /XYZ 71.731 406.974 null]
->> endobj
-4597 0 obj <<
-/D [4582 0 R /XYZ 325.465 371.108 null]
->> endobj
-4598 0 obj <<
-/D [4582 0 R /XYZ 71.731 356 null]
->> endobj
-4599 0 obj <<
-/D [4582 0 R /XYZ 71.731 307.183 null]
->> endobj
-4600 0 obj <<
-/D [4582 0 R /XYZ 353.315 296.389 null]
->> endobj
-4601 0 obj <<
-/D [4582 0 R /XYZ 71.731 265.405 null]
->> endobj
-4602 0 obj <<
-/D [4582 0 R /XYZ 378.982 252.553 null]
->> endobj
-4603 0 obj <<
-/D [4582 0 R /XYZ 340.628 239.602 null]
->> endobj
-4604 0 obj <<
-/D [4582 0 R /XYZ 71.731 219.512 null]
->> endobj
-4605 0 obj <<
-/D [4582 0 R /XYZ 244.777 208.717 null]
->> endobj
-4606 0 obj <<
-/D [4582 0 R /XYZ 74.222 177.833 null]
->> endobj
-4607 0 obj <<
-/D [4582 0 R /XYZ 71.731 152.762 null]
->> endobj
-4608 0 obj <<
-/D [4582 0 R /XYZ 95.641 124.035 null]
->> endobj
-4581 0 obj <<
-/Font << /F33 1306 0 R /F32 1215 0 R /F27 1208 0 R /F23 1201 0 R /F44 2037 0 R /F35 1569 0 R >>
-/ProcSet [ /PDF /Text ]
->> endobj
-4612 0 obj <<
-/Length 2594      
-/Filter /FlateDecode
->>
-stream
-xڍk�۸�{~�(�e=�W�b�	���]ܡh�B�h�]I�T6�_��P����A�p8����.�_x��~�'*�(M��Mpw����	c�(�λ�7������4�{:����ϑN�y�=����g����j%������$h�n8�.���ُ�0L���.�>����ӛ�F�8�<�&���(��,?��A�ǻ�eRu�e�&pp�h��9�^�-/<�;��z�'/Ҝ�m<�Ne���Y��HBvGעj�^Ԏ�G�v�WQ�
/��(JQ5 �&�����)H��1g��햷X������Wa�����'�Bf�ˈ~u����+OS��5��Zճ�d��4Ru>r��&�K��R�g��FQ
-����.�Ђ��zQ>��j����%�g�}O��"��.4���J�$�ﯫ<�T_�"�tL�/�h�pT��E؄�l��(ȿVaxB�{�S���i�F���c��~�e�x^f�ߡ�����^L�)f_V�ÙO��B�s����E}K����
-�'�\C�ڌS4'IR����:��a�����F��1/�������4�t$�Mi�*>M&����,�jU
���U"ppk�Y&���FT�����廓��	�4�Yj��~j /B�p0!_^^lji/��ƯT�ֶ����U�2m�Ӗ��6�^��N�I�@���es��^8�\�g��(��;��ȡKp���~��H�������g��
׌R?�sv�_O�N������⧡E1L�TB8-{F턨�W,E�������K4�i��MCs�_�-%8��ݮ4����,*�)�
-6�j���`��~�r"U�,[�dV6��g �	V+J
���w�&[fVF^V9A9��a8܌qSy���gə^�&�P�� ���a��K0���"n�w�'ٿ��\u��ՉF�����V�4O䁱�����S���T��{��.9Sջ�i�̧(�AOu����m���w\|T3�u�J;����bqb�Q�7��H���2ͅ��ji���znoִ\���n`~�KEWv#�)4�=�Z�ɶlh�&�]r(89���D�%0tm�[�E�]5�?��J���{ն��$��jh��׻�@�ƺE7@�9%�LCP�6����4
g�\kB�i�� h���-���փ�&�_��&V�����Jt���8L�w@k49�Vzh\>���:�p����)�� 0�m^���z�h��hŊr�@@G��^AF��Gٞ^�
:R����a���1��m��J���|������;?��E��Zk$ZApY�˖��P�_�(5Uj�����024�С0eE0�?1&Tec�����o���ҿ��z�Y@��z0-�r�S�R@�Ę�@^Ó���V4�B�d
���./�hK��#��h�/�����%ճ`�/B<3Y��j�DhڨV�.�L�i��˨����e���
�Gi���u�Tt�f@3,������?�u+�[
-L&9ڜa�T���DL�{X�Q��Z�MU��6�4�G��;���	��_��Zi���	𨬋���s�ˆJ��r�3{_��HaS{X���q�(��

��X��d8臮����K�=���(D�dXI�p9jihC�}¬�s����� (۞�,�7a���d"�O^��M�@P��B����^,4�!��\'7*�P�H�(�~��y�:<�\��4�ཪ/4����bĒ��=܏:�}�0�c��9)�����F� х�r��G�����zDd/ڈ���m�ن
���fZ��h_\��^�&(��FsvՆ%�'��ܧn�[����iWFĚ��ڰ1c��=�nf}�~cj�C�M���nT��O�+����n,0�n�y�e�x���`$���ō�
-kL��V�i编���t�����*�����\���K,���U
-W�H��w���M��
���;͸��?_0��&�l�S���-��kZa�
-�i��-��a=���<K�&�J&|J(�-죀�
O}"b�T@�+8��"�
-	��GA�)��)}��xU5刮Q%3Y.��>��S@Y���:���f	=*�UT��$N^w�}ɓy��$�t�F+A��6tc�o���2���gM#�re1uV��E�2C��'0z=T�&��6���b읁L���e�eA�ɬYd/8���
Y�D��7J�	�*�O���'+ķ��"�\���*�b��E�:�����RD�O�$56:h�F�zwo9���WKw��uG1݈��Nٻ���'��=X?�+=�玓������/o(i�����4�� �F�rW��ք�{�tn/�=�:�~�y{>�����U�/�5����\z$`_�V}ce�+�)}q{�/i�����}�ϫ�W�kMs�:X={B�_^�y�Kbz��0}p�[�]8�̈́s���+2��GQM��~�'W�P
�u2!|��	<�F|mvq�gi�����Pツ��$���,z>�mվ;���u��~f��_jB��[*�r?�d������I��7�endstream
-endobj
-4611 0 obj <<
-/Type /Page
-/Contents 4612 0 R
-/Resources 4610 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 4609 0 R
-/Annots [ 4631 0 R ]
->> endobj
-4631 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [453.197 179.163 505.5 188.075]
-/Subtype /Link
-/A << /S /GoTo /D (template-specific) >>
->> endobj
-4613 0 obj <<
-/D [4611 0 R /XYZ 71.731 729.265 null]
->> endobj
-4614 0 obj <<
-/D [4611 0 R /XYZ 483.137 708.344 null]
->> endobj
-4615 0 obj <<
-/D [4611 0 R /XYZ 71.731 693.235 null]
->> endobj
-4616 0 obj <<
-/D [4611 0 R /XYZ 71.731 670.321 null]
->> endobj
-4617 0 obj <<
-/D [4611 0 R /XYZ 71.731 652.389 null]
->> endobj
-4618 0 obj <<
-/D [4611 0 R /XYZ 71.731 629.475 null]
->> endobj
-4619 0 obj <<
-/D [4611 0 R /XYZ 231.56 600.747 null]
->> endobj
-4620 0 obj <<
-/D [4611 0 R /XYZ 184.458 587.796 null]
->> endobj
-4621 0 obj <<
-/D [4611 0 R /XYZ 71.731 585.639 null]
->> endobj
-4622 0 obj <<
-/D [4611 0 R /XYZ 417.183 538.979 null]
->> endobj
-4623 0 obj <<
-/D [4611 0 R /XYZ 71.731 536.822 null]
->> endobj
-4624 0 obj <<
-/D [4611 0 R /XYZ 71.731 500.956 null]
->> endobj
-4625 0 obj <<
-/D [4611 0 R /XYZ 74.222 446.326 null]
->> endobj
-4626 0 obj <<
-/D [4611 0 R /XYZ 71.731 395.353 null]
->> endobj
-4627 0 obj <<
-/D [4611 0 R /XYZ 71.731 327.671 null]
->> endobj
-4628 0 obj <<
-/D [4611 0 R /XYZ 71.731 291.806 null]
->> endobj
-4629 0 obj <<
-/D [4611 0 R /XYZ 71.731 235.019 null]
->> endobj
-4630 0 obj <<
-/D [4611 0 R /XYZ 71.731 210.047 null]
->> endobj
-4632 0 obj <<
-/D [4611 0 R /XYZ 71.731 169.201 null]
->> endobj
-4633 0 obj <<
-/D [4611 0 R /XYZ 71.731 169.201 null]
->> endobj
-4634 0 obj <<
-/D [4611 0 R /XYZ 71.731 146.71 null]
->> endobj
-4610 0 obj <<
-/Font << /F33 1306 0 R /F27 1208 0 R /F32 1215 0 R >>
-/ProcSet [ /PDF /Text ]
->> endobj
-4637 0 obj <<
-/Length 2974      
-/Filter /FlateDecode
->>
-stream
-xڝZ[s��~��Л����y�$iӓN�6��3紝E�%6��bU������%;9���X�b��Q�l�?{�V���Ė��tw��m��ݕ-KAY�p^�]ݾr�YlŁ;���y�oED�u��wfw�/����*������W��?ﶊ/��_yQ$<{��m�|�����}��]/��V�O
-ipΥt)c�
-<��,�󴐮e[�����vl��ʄ�M���c�]g���d~ȳ�=W�UZ�cU�)/7<9lU�(�VՊ���m�]W�I���a�$M�+�Nň�V�4�Nh��j�m�����T��HeF{�-e_K۱b9������Cب�r(e��W�MZ3���ċy/��B�k������??�Z
Ġ�������Q�3-�
-��\]ul1�<��["��ϡ�x�ZևS�[�wy�L�'iUy��B�C�*ms�����m�n�m��Bh�P.���jDph�6t`f�Ñ^A��NS
-C�.`ɺ�Zj��h%T�橠�v;& oB#�l�##�L1|}���V�IG��	n�Y�xP��1��jDm
 )v&�Jf/ۊ,i�W[���J��f9P�5<3�<�M��O�
A�u����>���;��y�r�_&���"��q9���V���a�:�8�$����&F��U�<�$��v�jA~R��>�q�&�y�:�dI���\��������U�c@V�݂̲l6\�����`�6ɋ��1�;\�1Ӭ2�-���"۰�3�6��*#���M�^#ڬ!�iB�rm}Ah������v�YJ'D�k��4��:�:Z��G�m���u{{8�?�v��sa�2�B������k��@���ЏU��`������t�l��t��@*����g��<l�I:�Ŏ�������mC��[�k��-����/Y���n����X�
-Wg-3�]B�l�<�y���ói(�W���]+������,GH:���iB��Ƒ����Z~�]b7}�坧�O���'�����ǣ7������bm˵��(�a��p�mU��U�A"Kp�w�!�(�U�	�ȶ[+�������9^
-L:��@�|f���;K����I)2���O�F��Eb���sFv�ę��ov�5��5��n����Ez�\v�����ɸ�(D��Qj�C�������m9���c���>�yId�%@U�D{�(���c/�U�/�+y=��u���<��t����μ��2�pLmȹ�<�����֑��:��a727�(�y���������]�#L�@'�NC����A1��$�l��K�����4����2/Ր��\ĩ��*��S��xah9��l�yԁ	
-��y������z��)ى����H��x/
-]]#"N�(�=�>uZ��0Bz\�����Q
���
->�~B��lԹWDbE��tQ�V/?��".��g?�;�%j����=��M�L��U{�8�3�A��8�si]ϊW_'.��A}��Qᓏ�����o����������v��WuC��WΉKi�*�UbJ�8gQK��y�\�r�1J�u`��Ĭ(x>�9�V��Z�$ 6�r��t}�I� �	F	?���dÃR��`�t�An���d����^�y�|y!�t~������E1�u�yS�x���0*+~�B�.�t�����Lr7�#��"c�Z^��E���{L�9��	����
-Z֑^��6� ��}�B.-��H����-�̴��	��p�Jj���"�W7������2���rr�/9�����&��z�
%��c�ڃ�*`���(��-+�$咑 m��
-���~�/*6�9�@
���hI��O*��K��hj�|(�ۼ�Au���'�����78��Q��ݗ���'�u�����푹U���;�*���7�bX4�	��=�r�e1���6�&�nTIs��ۮ,/'��r���̷�V��բ����9�-����oH�<����e����@M+GK��R�ԉ��-x�ք���X�A�L���컄�Q5�	���!��&z	�r��i�@6cL���
��C(r��fH&����V���=�����p]/��l��;����������5\yh�O��w����jͳ�8,֝ٞ�zۀ���gd١�O�?��z0ϛE�����V8O*c�I���Jc�w�w�څ��gd^��&F�fv�k|�1u�����@�O.��S�s#O�͚�tl�\�l��i-���7���!��V�z[����j2��/z�7jW&嵴Yu7�m�4����Y�4,x'-�hh
-	
-��n����4DwU#�ӼN�"K�{�rew��)����
-�}���Mwlw���˞R>��>�V!G�ʴ����\˼lںKG�߼�j�Y!-�{��b��,G8g�MȰd�?Rm\�>c�V���I����B��8s�H�<k�;��}��P���j��	��
-/�b�9+��W��}��67+߽��ݫ�?���!�&mw��ͱ�n�QT	�c��(�`B+L�7<�D�;nu�4���p~M������Z�\3�>���KG����v4�������n�ɟ��%��!o�(g�>�4�SY���*��7V��/������O6ڵ9C/c;6�b[�͠w��K�^N:|��D'�q�#���N����1
-�}2�tm����d�X��#Iצ �9��gyz����wI�Jqq?/����q_���J��s_||�����E+��ge�a�5
-�
-)2�@*�uJ�)GcrKo�״ͅ|��
�|(5�绢�즿P.���"��u=��������4m)Y�#F6��\N/�Z�'�y���Y46�3I�z�i�z@��s0P�,���_��D�~���!p>�$�~���S���L&7X33�!��a<St�������,��O#;|�G��o"|'�*�vۏ�����Kn�endstream
-endobj
-4636 0 obj <<
-/Type /Page
-/Contents 4637 0 R
-/Resources 4635 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 4609 0 R
-/Annots [ 4664 0 R ]
->> endobj
-4664 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [204.95 228.972 269.707 235.826]
-/Subtype /Link
-/A << /S /GoTo /D (upgrade-cvs) >>
->> endobj
-4638 0 obj <<
-/D [4636 0 R /XYZ 71.731 729.265 null]
->> endobj
-4639 0 obj <<
-/D [4636 0 R /XYZ 71.731 693.235 null]
->> endobj
-4640 0 obj <<
-/D [4636 0 R /XYZ 71.731 649.4 null]
->> endobj
-4641 0 obj <<
-/D [4636 0 R /XYZ 71.731 626.486 null]
->> endobj
-4642 0 obj <<
-/D [4636 0 R /XYZ 304.727 597.758 null]
->> endobj
-4643 0 obj <<
-/D [4636 0 R /XYZ 252.243 584.807 null]
->> endobj
-4644 0 obj <<
-/D [4636 0 R /XYZ 71.731 582.65 null]
->> endobj
-4645 0 obj <<
-/D [4636 0 R /XYZ 71.731 559.736 null]
->> endobj
-4646 0 obj <<
-/D [4636 0 R /XYZ 71.731 554.755 null]
->> endobj
-4647 0 obj <<
-/D [4636 0 R /XYZ 71.731 552.264 null]
->> endobj
-4648 0 obj <<
-/D [4636 0 R /XYZ 113.574 533.998 null]
->> endobj
-4649 0 obj <<
-/D [4636 0 R /XYZ 149.15 521.046 null]
->> endobj
-4650 0 obj <<
-/D [4636 0 R /XYZ 71.731 492.986 null]
->> endobj
-4651 0 obj <<
-/D [4636 0 R /XYZ 113.574 477.21 null]
->> endobj
-4652 0 obj <<
-/D [4636 0 R /XYZ 71.731 475.054 null]
->> endobj
-4653 0 obj <<
-/D [4636 0 R /XYZ 113.574 459.278 null]
->> endobj
-4654 0 obj <<
-/D [4636 0 R /XYZ 131.461 459.278 null]
->> endobj
-4655 0 obj <<
-/D [4636 0 R /XYZ 349.56 459.278 null]
->> endobj
-4656 0 obj <<
-/D [4636 0 R /XYZ 71.731 426.61 null]
->> endobj
-4657 0 obj <<
-/D [4636 0 R /XYZ 100.623 371.606 null]
->> endobj
-4658 0 obj <<
-/D [4636 0 R /XYZ 113.574 353.674 null]
->> endobj
-4659 0 obj <<
-/D [4636 0 R /XYZ 419.902 353.674 null]
->> endobj
-4660 0 obj <<
-/D [4636 0 R /XYZ 71.731 338.565 null]
->> endobj
-4661 0 obj <<
-/D [4636 0 R /XYZ 164.384 300.001 null]
->> endobj
-4662 0 obj <<
-/D [4636 0 R /XYZ 222.306 279.881 null]
->> endobj
-4663 0 obj <<
-/D [4636 0 R /XYZ 71.731 242.023 null]
->> endobj
-4665 0 obj <<
-/D [4636 0 R /XYZ 74.222 211.139 null]
->> endobj
-4666 0 obj <<
-/D [4636 0 R /XYZ 71.731 186.068 null]
->> endobj
-4667 0 obj <<
-/D [4636 0 R /XYZ 421.753 170.292 null]
->> endobj
-4668 0 obj <<
-/D [4636 0 R /XYZ 95.641 157.34 null]
->> endobj
-4669 0 obj <<
-/D [4636 0 R /XYZ 252.683 157.34 null]
->> endobj
-4670 0 obj <<
-/D [4636 0 R /XYZ 185.773 118.486 null]
->> endobj
-4635 0 obj <<
-/Font << /F33 1306 0 R /F32 1215 0 R /F27 1208 0 R /F23 1201 0 R /F44 2037 0 R /F35 1569 0 R >>
-/ProcSet [ /PDF /Text ]
->> endobj
-4673 0 obj <<
-/Length 2625      
-/Filter /FlateDecode
->>
-stream
-xڥk�ܸ�{~�~�����pHsir�E/�%�E�(4�fƈ_�G6�__R�<���=���(��D�����'o)��>~&�8���g��f~z&��ewA�����wAp��,n�7��D�|_��s_��y�u�)�o;׏<絠��I��t�OYU�F�vRF��]�9���u��go�g
� Y<���Yi�'g-�H�!(�"C�$�ӃB��2��:;�9m���{]6G�*�ƒ���鼝�jƟ,���;�����ݧ_�����Q���з5�ϫ�O�����u�����6]鋌�S��������sh-0�n(
`�G���l��f�}���C¶�Z�@8�E	��i@>�RMA@׷�^�]��ݣ�ӑ2��ػ؁4;�͋��8v���[^A:�-}aK2u��(�D���	E~,_���8I��'���A\�4L��@DL��	�)��l��Y����O��щFm�q	'-�Qb4DžH�2B�y;��J;Y�jZ8���9,�Us%86\5T�>��69��<�SOP�F�W�I˦h��(r�i���Ȋ!�xMJP�f@y��_�٫���L}� ��۞��&�:���g�C�Q!�NJ>Ey@��=�D1螽w&���;$m�^n�ܼ�vp�����׿2P�r�1W
3`ġ���7oA�E�6�v�w9Fu�S?�W"o�[P�֌nuC@1՝8�u%�C�|l����	9����0wmM�6�j��Ѐ������ÃѮ#q���z ��6�-ƭ2�%%XM������M�˜F�[%g�AS�E��Ysp���O�H��x/4y� �T��7Q�4	7��qD�q�w��:gQ��
�'�E3�Ӣ#�PW���<�#�*X���82"�-.N�;�"�q(sUьn0�~-����uB*�&��X0
-.��X�,�-�<�㉠N���x���-�/��n��������YaL�J[�6�"4���L��g��0(1V������i�}����5�lF#����`}ج��9� H!9���o�[�*�����ᥘ� �����Ph�%�/�պ��{�4�7�����ۂՠ`�ʵE������
-���M����5U��j���ia`7b���:���p�,He0]����	h���;u�^�iGB��b�b�Qe�)������h��V�o�̞��,5p�J�f��xx�Zqʼb��"NقgC�Ȱ��2����g"�#�M
-�;6�F5g�q�Q�p/�9��uMK(Z,%����CWD��$����_+�~(d&-���'W)̝�V��E�F5��
-��UԀ�x���8�������/j#�<��8���m��Bs������y�Ij\��N����n�k��m�,,����ب�j�D��L�G"JC>�;t@[��P�� i6伀�"���6<��Tn���C��@d��Ÿ{��pn@���9�]H�j�� 
-��٩a�9��Υ+�A�Ņ����QIM���sV0;w�qDg4u��^�Ğ���t�0/�i#PY�)�!�Ӝq	��{`��P{
E,+EQ�v!ͷ�F�!3��j��s��>P�qA�D9�����m��9����������]@��t���Y���@�^��S٬y!'�(� ���<��f��U1[7D�u��f�A��$6�'��RJ��Z��i�3���c�l.���[D�h����/�#�9s���ZG�?r��K^i"��Q�p�#U06�jsn�XW�_��~���E�w.��vi�@U�eSB
��ʯ�>��Z����
r��<u�:B����?mZ8A�1Ǟ���M=��+�'�9i�.�v���Vp�aHG�I2�n�?
�	Wka	��(����O��0tQ]��I�H�2��'��ǂ :z��eE:T��������-ϡ��,ROC{6b]�	k~������<���tI�~(��>�|����h͋�-Ix���n0Z˕w�	y7|���(��9j�^�� �jpO��`1#,G���Gǒ��Dm��	sx���
1���s���x��ltt�(e�R��M.돕Ip��sl�<0�2�l9߸�,��aT�hp���X|`D�	��P�`�5>/�����w���R�@\w�Rv.�ftG�Ȱ��2���W����aو����ϑFCKk���������c�9ۂ
 �J/�0�9C�/��^qX�#V���D�\"b�������LDq�����~�4�h�g_3B}?/=jڕ�$A�=-�i��������:����ʝ�uW�\�Ѧ�������&si���L��fWa��_��u�g��Y�E忈\�c~��o+�r��u���蝆˰#��2���F>Itv|��g�2=�C�pa��&��h�BGMEi�R~�F�'.=���B��Ow��(@�`Yh,�����8B��pl����*��Z��L��e��\[�/���PQ�@^��	�m����2���.����U�����߈^�խ�sv݋G��+_(M>s0�P���e5Y�6��蘭L�CI7�L�okUV�q��	S�������$���"?�o������֒���Gendstream
-endobj
-4672 0 obj <<
-/Type /Page
-/Contents 4673 0 R
-/Resources 4671 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 4609 0 R
-/Annots [ 4682 0 R 4699 0 R ]
->> endobj
-4682 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [312.894 564.717 351.505 573.629]
-/Subtype /Link
-/A << /S /GoTo /D (installing-bugzilla) >>
->> endobj
-4699 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [229.567 236.548 274.399 245.459]
-/Subtype /Link
-/A << /S /GoTo /D (security-mysql) >>
->> endobj
-4674 0 obj <<
-/D [4672 0 R /XYZ 71.731 729.265 null]
->> endobj
-4675 0 obj <<
-/D [4672 0 R /XYZ 71.731 718.306 null]
->> endobj
-4676 0 obj <<
-/D [4672 0 R /XYZ 485.041 695.392 null]
->> endobj
-4677 0 obj <<
-/D [4672 0 R /XYZ 74.222 664.508 null]
->> endobj
-4678 0 obj <<
-/D [4672 0 R /XYZ 71.731 639.437 null]
->> endobj
-4679 0 obj <<
-/D [4672 0 R /XYZ 106.766 597.758 null]
->> endobj
-4680 0 obj <<
-/D [4672 0 R /XYZ 95.641 584.807 null]
->> endobj
-4681 0 obj <<
-/D [4672 0 R /XYZ 71.731 577.669 null]
->> endobj
-4683 0 obj <<
-/D [4672 0 R /XYZ 264.01 515.068 null]
->> endobj
-4684 0 obj <<
-/D [4672 0 R /XYZ 375.655 515.068 null]
->> endobj
-4685 0 obj <<
-/D [4672 0 R /XYZ 71.731 499.96 null]
->> endobj
-4686 0 obj <<
-/D [4672 0 R /XYZ 71.731 485.016 null]
->> endobj
-4687 0 obj <<
-/D [4672 0 R /XYZ 71.731 435.965 null]
->> endobj
-4688 0 obj <<
-/D [4672 0 R /XYZ 111.412 410.062 null]
->> endobj
-4689 0 obj <<
-/D [4672 0 R /XYZ 74.222 392.13 null]
->> endobj
-4690 0 obj <<
-/D [4672 0 R /XYZ 71.731 367.059 null]
->> endobj
-4691 0 obj <<
-/D [4672 0 R /XYZ 115.027 351.283 null]
->> endobj
-4692 0 obj <<
-/D [4672 0 R /XYZ 196.138 351.283 null]
->> endobj
-4693 0 obj <<
-/D [4672 0 R /XYZ 341.832 351.283 null]
->> endobj
-4694 0 obj <<
-/D [4672 0 R /XYZ 71.731 326.212 null]
->> endobj
-4695 0 obj <<
-/D [4672 0 R /XYZ 71.731 326.212 null]
->> endobj
-4696 0 obj <<
-/D [4672 0 R /XYZ 71.731 303.432 null]
->> endobj
-4697 0 obj <<
-/D [4672 0 R /XYZ 71.731 267.432 null]
->> endobj
-4698 0 obj <<
-/D [4672 0 R /XYZ 222.444 251.656 null]
->> endobj
-4700 0 obj <<
-/D [4672 0 R /XYZ 71.731 236.548 null]
->> endobj
-4701 0 obj <<
-/D [4672 0 R /XYZ 71.731 213.634 null]
->> endobj
-4702 0 obj <<
-/D [4672 0 R /XYZ 71.731 159.836 null]
->> endobj
-4703 0 obj <<
-/D [4672 0 R /XYZ 71.731 159.836 null]
->> endobj
-4704 0 obj <<
-/D [4672 0 R /XYZ 71.731 137.056 null]
->> endobj
-4671 0 obj <<
-/Font << /F33 1306 0 R /F27 1208 0 R /F32 1215 0 R /F35 1569 0 R /F23 1201 0 R /F44 2037 0 R >>
-/ProcSet [ /PDF /Text ]
->> endobj
-4707 0 obj <<
-/Length 2215      
-/Filter /FlateDecode
->>
-stream
-xڥXm���~��ZXl�H�X�Cs�\o�4H��[�@S,�m�'K�DǷ����-ٲw���3������l-�u?2�e����`�����	�X1�j���㻻�0�e~�����,���>���X��{�m����X�8��}�}�i|{����*E����w�����<����Ǔq���4|UI�3�RZf��D�d��aY%c_�(��A�F�BD�3���f�N-d����5т$�-z��k�T4����z�Dž����a�N�\�x�����q�z�ʊ����Ӳ�Ч�����t V�7MK��uҵ);]��
ave���V��JH?c����j�t�<$:yld0����Kb�@��l�{<'��ȃ�0�/�Gv�䙉�:���}���14_-�=�V�8��#������ӛ~N��7�����$��ƀ`q�8�j��,�~
��%f��l�&}�.-�vZ��^�(Z��
-��,X%5��
-б�ڏ�T�3�k٫�J��5�?��s�������A7�
�^��<��%-�4���f���v%(�8��#�p����0���F"�b�*�g)DU�Q% �!8�
-e�]�؍&�@I��� �h/�`0���ԓ*0o_ԩ*k�@�D�n��cY�

-®+�I֘�dجojUQ`H��Z��8M��u��%�4U4@0�HÌ���C��Y�2#D���{�o��!j�W������p9M^�iF�a��|O��
-�OU������Pl�,
�R�^�U4��S\쒌Ku� �L�E��f��3��+���ɐ�Jp1'�aZ���%2��THij�����GN��S�~��,�S�2���S���7ݽ<������
-�"���}תN��:�0�K?N$��ʹJE~ NAҗ���*�?�I~"i%��s
-�����kD�ඟ�F����d����R3�%��]K
�q��
-���Tn��2�ά�-�o���ȡ�v
Dm#&�Xޡ=��'�WJ0�u8��!b����������	=ȉS�N��'�X�$~Iƒ&�N�[���`M�h,�Q���Xnp�vJNQ,�xbg�P7�E��
�Ptn�D�Ffh(����>��
-�r�)��x���Z�Z����CU�����xmiR�[l^�u4�ĺ������1y�b;�I��L$]vF$A7Ĭ�������O#,���![ő�e+���,P�y�
-D�%�pg+��G#R6#C���Z^쫞�ZI�2����Tߦ7�Tř#JϜn�X[<���(mRƣ<G����}�Ѩ�C:�o�I��L�VS(�Mo�"��������Q2I�M��Vl���1z�t�����TCr�t]pn��8��/���Un��+2�[5Z�cبlK�����Jc�'�(�Ү��0|8ӓ�U1FʐZ�cZ� (7X���"�+6r�TU������TaU��݌YV#{5������͵p�&�R?
-�
-����'ׄ�9��At&��V*AG�����jٰ���/�]x�1�
�Bh�{���X��XSao�5>k$~֧�u�0W�>�
-d �:D��@v�-x.ż
Υ�)4'��g59HD�se>@��l�{.1�8h�;��(?����l�����\������EW~�$Q��\�W}�m��~��~������EW��յK���{��O:{�
�����+V�P$x��B�/X=ܨ��|Zq�kId��W/D�t��+���qaQ�m�B�+�x�z\��/���i�U&���T��A`@sTnt�����bz	�;z�=~7�����-�4I�uF#,�;c�������Ѿ�_�.sۻ~G�xb.?ߖ��/���7i�F��x!3�&���`��i��t�{��א��
-]�'� XҰo�J��W����&���{�/��;��p�W6
�n~b9�,0ᾭ�Uy�t)=z�@�(�)�Ȱ�K�t݅d�����+wE�UbN#�Q�pGo�B��W9
-�{�;�C[PS.C9�`e�w+ی}m�1��(l��ZJ�ߵ��9�9>T��4/Dr~�aq�4��‡�<gPYkZ���Μ�⛚>а�װ~z"��,��j���O���1��Rp{%���=µ�N|#^���Y�f�^����]����G�{��P�ٙ>��tƕ��#|�X���?�L^�c	�L�6A5���C�T���'&�endstream
-endobj
-4706 0 obj <<
-/Type /Page
-/Contents 4707 0 R
-/Resources 4705 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 4609 0 R
->> endobj
-4708 0 obj <<
-/D [4706 0 R /XYZ 71.731 729.265 null]
->> endobj
-4709 0 obj <<
-/D [4706 0 R /XYZ 71.731 695.293 null]
->> endobj
-4710 0 obj <<
-/D [4706 0 R /XYZ 204.252 651.557 null]
->> endobj
-4711 0 obj <<
-/D [4706 0 R /XYZ 71.731 636.448 null]
->> endobj
-4712 0 obj <<
-/D [4706 0 R /XYZ 71.731 613.534 null]
->> endobj
-4713 0 obj <<
-/D [4706 0 R /XYZ 194.459 597.758 null]
->> endobj
-4714 0 obj <<
-/D [4706 0 R /XYZ 357.109 597.758 null]
->> endobj
-4715 0 obj <<
-/D [4706 0 R /XYZ 71.731 585.639 null]
->> endobj
-4716 0 obj <<
-/D [4706 0 R /XYZ 197.727 553.225 null]
->> endobj
-4717 0 obj <<
-/D [4706 0 R /XYZ 328.437 553.225 null]
->> endobj
-4718 0 obj <<
-/D [4706 0 R /XYZ 71.731 551.069 null]
->> endobj
-4719 0 obj <<
-/D [4706 0 R /XYZ 71.731 536.125 null]
->> endobj
-4720 0 obj <<
-/D [4706 0 R /XYZ 71.731 514.668 null]
->> endobj
-4721 0 obj <<
-/D [4706 0 R /XYZ 115.567 461.24 null]
->> endobj
-4722 0 obj <<
-/D [4706 0 R /XYZ 71.731 433.345 null]
->> endobj
-4723 0 obj <<
-/D [4706 0 R /XYZ 71.731 408.274 null]
->> endobj
-4724 0 obj <<
-/D [4706 0 R /XYZ 187.785 375.861 null]
->> endobj
-4725 0 obj <<
-/D [4706 0 R /XYZ 71.731 373.704 null]
->> endobj
-4726 0 obj <<
-/D [4706 0 R /XYZ 71.731 368.722 null]
->> endobj
-4727 0 obj <<
-/D [4706 0 R /XYZ 105.604 347.965 null]
->> endobj
-4728 0 obj <<
-/D [4706 0 R /XYZ 140.184 347.965 null]
->> endobj
-4729 0 obj <<
-/D [4706 0 R /XYZ 184.766 347.965 null]
->> endobj
-4730 0 obj <<
-/D [4706 0 R /XYZ 71.731 345.808 null]
->> endobj
-4731 0 obj <<
-/D [4706 0 R /XYZ 105.604 330.032 null]
->> endobj
-4732 0 obj <<
-/D [4706 0 R /XYZ 140.184 330.032 null]
->> endobj
-4733 0 obj <<
-/D [4706 0 R /XYZ 185.563 330.032 null]
->> endobj
-4734 0 obj <<
-/D [4706 0 R /XYZ 71.731 327.876 null]
->> endobj
-4735 0 obj <<
-/D [4706 0 R /XYZ 105.604 312.1 null]
->> endobj
-4736 0 obj <<
-/D [4706 0 R /XYZ 132.164 312.1 null]
->> endobj
-4737 0 obj <<
-/D [4706 0 R /XYZ 74.222 294.167 null]
->> endobj
-4738 0 obj <<
-/D [4706 0 R /XYZ 71.731 269.096 null]
->> endobj
-4739 0 obj <<
-/D [4706 0 R /XYZ 433.301 253.32 null]
->> endobj
-4740 0 obj <<
-/D [4706 0 R /XYZ 161.15 240.369 null]
->> endobj
-4741 0 obj <<
-/D [4706 0 R /XYZ 71.731 207.328 null]
->> endobj
-4742 0 obj <<
-/D [4706 0 R /XYZ 95.641 183.582 null]
->> endobj
-4743 0 obj <<
-/D [4706 0 R /XYZ 74.222 152.697 null]
->> endobj
-4705 0 obj <<
-/Font << /F33 1306 0 R /F32 1215 0 R /F27 1208 0 R /F35 1569 0 R /F23 1201 0 R /F44 2037 0 R /F48 2049 0 R >>
-/ProcSet [ /PDF /Text ]
->> endobj
-4746 0 obj <<
-/Length 2865      
-/Filter /FlateDecode
->>
-stream
-xڕYY���~ׯ��E`�r��KJ�%gm�K��!J�@`H���Z3�>}
����V-fzzz���w>�wi��>z�t���n#?��c-,�ϷO/ބ��Fm���iw��PN�U뻧�_ޫ�Ѵe��j�c�{���t0��v�����{oVA{�V������ӏ/^?M;��Tm��t<����]nb�D�I?Sa�&c)\��Nό�t����J��3����ȟ�Xn�G�Zw<��U��jx�5�n�^^�Iøm*����-y���J������U>�����Z���@+����Fa���F��mɔ:�
1����v�x��@�۪�쉩n�4�g��&�����&�i��L���3נ[�n=�[�D%�T��f��jձ�UP��τs(��h�*"�+��pZm�Ɵ+{��؈�'��:ˤ��Ma���]�bι�b�j�C�V]���m�7�����DX{%L�J�"�ѭ���$�/�Ǘ��G�]1<lS?���a� �����}�c�z�b f>���Az�\!�=Wx}6j�Bs6b�o޽����g�m���ŁI�X��%�_��W��U{"լ (�f{Ә�$�R�;&�'!埇\�g_��g�S�����Z�Y蝺�9�b�� ~��bע�`ô��F���SS���	j�q&�꾒�8
�7��=�}���S�HKc�uo�
���s�ו��P?��L�v�G���De�ԵxOi��X��L!�*3�y�}[}�}
fn��:�0�.�RZ������0s�WB_�����G&���D��B����4u~bUΥ�'*��}d�綨�$�Hoy^��\
�"���4�-�1c�t�݂�%*73偤�5��/�	��fZdB��-�#�|��C�?����B�9h�&Ǹ=�͝��:��>�]8���؝�E�I�|rǩk��M�txi_mg]j��QR&C�xa?�Mk��,ؖ��w��a"�
vth8GGZ+�4�Bj��  C��wq��F���gL7@�Zn���
-�͚:Sb�W���5窹�4n$�so�ݰ�@�;Z	Й�W�����������x���͒�D*N\0$�"j��N`O=7�5�(6�$VDɋ|����0�\$���M)�E�����G i�!10i��6!�إ4�*�RI����(������iL��)t�I�Yؕ}R�u��r
-����Ys�	���Nq5J�[�q����
-Cv�[��(u�9�9�NA<J�5e����١��fPL��kћ�F֐%s��r�B6���5~ƃ3��;�8�ǐ����G���G�ß;�>�Ѝx�2�'�Rڈ��8�0^`Dg������Oˋ~�
-��{o~�`ϋ3��v�Üs��"n�3��˲7�p,�,C?f��~tm_8Nb�0��X:��"���=w�n�K�"�C��SaE+�y!���2����кp�7��?������7�9^��n��20Գ��T��eM��pjj��8r��
-��^����G�ť%��L���a�C8fǁ�bulB�e�?MÍ��pXn3Ȃ��ƭ+�%��A��n��@��t� ��X��8��m�B ^����(�x���D-���6������l�8i*���⏮�����V0J�d3����5.���x���2��kmN!�C>�a�u%f��+���ճD�}9��k\M�
>C�R��}�z���</��匯'M�,��\�d���g`��%t@����͖۞��@5����/@�?q����m��m5P>$q���QAD�5��M^$����^!%ė+ʮr������a�c�����Bf:ݞ<��ca}��b��Tv����о\�'���昬���'�r9T)#�&Ȅ��6j(^�P����X�H4�5
-ӳ�1���ۓ��Me�#̝ESz�5��)f�\�tQ�N8"鼚NΫi���P��t�%��xz���֐�.����u莆[3���u�[�{��ǚ��k���ի[	(�wD����J_@T@:	H$��3-~��u�I���2Y<Z.�(�~p������E|���?��V���?���඼�; �*R��I�q��v��p�<��Jo�㞒�A�\�M���ɩ�HxG���3�[�p[�ъP��Ѐ�>B�M�tD*�l�W��'u���*�j��Á���k���)�j��
-��/Uk(/V�2�S�3ׄY݃@B@�X���Pb��T�z��4T)T�E@����
�����:@���0��\�H���+O���K��%����o�`�#���O|����9�G���츘s%3J���٨�$��|�8C�b��%=-8S�Q>Q�`����-勏(���ӋfH�|��iMχFٌ{��?C��v����N%�3���YP��O����Yj^X�v��	�"��H���p��{
-ƶ��bٶa��/?����+~�H)j����Lo�.�R���0��X�3����*��8.���H3��*��7��!?:đ�7��uȔ�SN��Hs�ܡ��•�BL��j'�T��ŏ	�)b�4yj������i�+{Q�!�zD�ԡ�O�Ȑ��W��
캥
-s�Yy�{]�7:��г�
��=�C��~6Ip�qOx���8�oO�(�N?i�=��������<?���Zc��8�J���1���P�2a&�'H��`�T<�Z�ĉ�q�9��A]�8�r/2	�����Ua��3|z2N�)@��ӌ�1
-Cz� ��T�j��w�1=�GJu��(?�F�K���?��Yn5c|��Nna}�G�ە�����endstream
-endobj
-4745 0 obj <<
-/Type /Page
-/Contents 4746 0 R
-/Resources 4744 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 4609 0 R
-/Annots [ 4761 0 R ]
->> endobj
-4761 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [208.787 564.717 228.214 573.629]
-/Subtype /Link
-/A << /S /GoTo /D (gloss-mta) >>
->> endobj
-4747 0 obj <<
-/D [4745 0 R /XYZ 71.731 729.265 null]
->> endobj
-4748 0 obj <<
-/D [4745 0 R /XYZ 71.731 706.187 null]
->> endobj
-4749 0 obj <<
-/D [4745 0 R /XYZ 452.338 690.411 null]
->> endobj
-4750 0 obj <<
-/D [4745 0 R /XYZ 95.641 664.508 null]
->> endobj
-4751 0 obj <<
-/D [4745 0 R /XYZ 71.731 662.351 null]
->> endobj
-4752 0 obj <<
-/D [4745 0 R /XYZ 71.731 639.437 null]
->> endobj
-4753 0 obj <<
-/D [4745 0 R /XYZ 162.252 623.661 null]
->> endobj
-4754 0 obj <<
-/D [4745 0 R /XYZ 254.556 623.661 null]
->> endobj
-4755 0 obj <<
-/D [4745 0 R /XYZ 327.124 623.661 null]
->> endobj
-4756 0 obj <<
-/D [4745 0 R /XYZ 499.517 623.661 null]
->> endobj
-4757 0 obj <<
-/D [4745 0 R /XYZ 207.161 597.758 null]
->> endobj
-4758 0 obj <<
-/D [4745 0 R /XYZ 270.687 597.758 null]
->> endobj
-4759 0 obj <<
-/D [4745 0 R /XYZ 476.12 597.758 null]
->> endobj
-4760 0 obj <<
-/D [4745 0 R /XYZ 71.731 577.669 null]
->> endobj
-4762 0 obj <<
-/D [4745 0 R /XYZ 356.244 566.874 null]
->> endobj
-4763 0 obj <<
-/D [4745 0 R /XYZ 122.471 553.923 null]
->> endobj
-4764 0 obj <<
-/D [4745 0 R /XYZ 74.222 535.99 null]
->> endobj
-4765 0 obj <<
-/D [4745 0 R /XYZ 71.731 510.919 null]
->> endobj
-4766 0 obj <<
-/D [4745 0 R /XYZ 179.919 482.192 null]
->> endobj
-4767 0 obj <<
-/D [4745 0 R /XYZ 417.149 482.192 null]
->> endobj
-4768 0 obj <<
-/D [4745 0 R /XYZ 71.731 462.102 null]
->> endobj
-4769 0 obj <<
-/D [4745 0 R /XYZ 71.731 431.218 null]
->> endobj
-4770 0 obj <<
-/D [4745 0 R /XYZ 236.948 420.423 null]
->> endobj
-4771 0 obj <<
-/D [4745 0 R /XYZ 289.53 420.423 null]
->> endobj
-4772 0 obj <<
-/D [4745 0 R /XYZ 434.503 420.423 null]
->> endobj
-4773 0 obj <<
-/D [4745 0 R /XYZ 71.731 392.528 null]
->> endobj
-4774 0 obj <<
-/D [4745 0 R /XYZ 71.731 392.528 null]
->> endobj
-4775 0 obj <<
-/D [4745 0 R /XYZ 71.731 367.592 null]
->> endobj
-4776 0 obj <<
-/D [4745 0 R /XYZ 71.731 344.543 null]
->> endobj
-4777 0 obj <<
-/D [4745 0 R /XYZ 131.018 328.767 null]
->> endobj
-4778 0 obj <<
-/D [4745 0 R /XYZ 223.917 328.767 null]
->> endobj
-4779 0 obj <<
-/D [4745 0 R /XYZ 145.843 315.816 null]
->> endobj
-4780 0 obj <<
-/D [4745 0 R /XYZ 71.731 248.902 null]
->> endobj
-4781 0 obj <<
-/D [4745 0 R /XYZ 71.731 225.988 null]
->> endobj
-4782 0 obj <<
-/D [4745 0 R /XYZ 392.073 197.26 null]
->> endobj
-4783 0 obj <<
-/D [4745 0 R /XYZ 429.952 197.26 null]
->> endobj
-4784 0 obj <<
-/D [4745 0 R /XYZ 339.007 171.357 null]
->> endobj
-4785 0 obj <<
-/D [4745 0 R /XYZ 71.731 164.219 null]
->> endobj
-4786 0 obj <<
-/D [4745 0 R /XYZ 74.222 122.54 null]
->> endobj
-4744 0 obj <<
-/Font << /F33 1306 0 R /F32 1215 0 R /F27 1208 0 R /F35 1569 0 R >>
-/ProcSet [ /PDF /Text ]
->> endobj
-4790 0 obj <<
-/Length 2390      
-/Filter /FlateDecode
->>
-stream
-xڥk�����
-;X)z?.H�K�k7Hq���P䂃֢mv%Q'J�8��3��,[�]��aO��p8�7�`�ÿ`�^�',�0MV���_�`�WS�L��h�����m�
-�H���v��#�(��$\�U�:o�N���c톉���{�|?���u]���:��:�����~���n� �2�ȣg��4K)ã�E�1��^�F�ԋ<�av$�
-S��$7$ᰗ��7�����k����@����_��?؉u���Z�Vn��^l���N�p�������yeپZ�3XFm��V.���0J���?�uQ8�ض������W
Ar�	#��m�^�n�J��Kr�Ms�_늖��~�����vp����f���A�=Zy����GsNܿ�յZ���H���hP�ݨ��� ��t� H��B����@#�W$���,�3Ki��|c�� Ħ5�jK_�'hۏz�A�r��z��a�����q$yܕ)�EfdI�S6��)9���$������y)7{�y�>\�ߐ2ؗ�vs_6�A��y{E�k}�:23T�1/�Y�R��u�;����6�L_�Ͼ�vٲ�%�<%EO��"�a�6e
Z���ҩ���|��@j��x�&�)f��W���*H#?�����
-��<�p��+�hՋ�������	��^[=Ã�2݂�k�q���S�
-�U�'���~�E H�Ԝ��Ʋ7�k4�lR�$��!���F�Y�q��,��=K!Ȇ=!���iʶ"t-[Ah�
dk�Z��1&��Q�%[-6c/�����ޫ�f�������*ewyD���xiB'n�|���0^�4qƑ
-�XG���@��eM�V�k�80��͘X�/3��h�/$��R�Q��a���}-J�{V�H&!i�����Q��D�{r@2P5n�zs�*!�8���ʝFU�t��I�{~������Q�=��t��'s'OME��<[T�$�=��F!��.��FY�)���qo���E/܊�P\���ᢹ��h9�Q~돉�XS����,ǒiC%�����8�Ht�N�w��<�M�F~PU�Z4oE��d��d	�}��t6XX�;�C�64�i �2��!l��e^��Q�G~�K�,���ʄ5��;����5�R����JX�@�g=�/(�rD�Q�q�?�R��(:����j��:[Tj)�y��7/X[e��ɓ�wB�r'^��t�>��'�u��K�ˋ�`�!	#�t>��wv�ڛJ�C!dR
-z�:J^�8w1�]G��:
-��r�n�Ά-�I�������Q(�F���hQ
�vR�i$�)�[C����ɼ&ZU=o08�Qw�\��$�n���� �
-ۗ�Xv����G�>Ϙ�y0�yv�>�$��&0H�,Y
-<��0L���.lv�=nNK.m~l�}�ޏO��ņ%%�z�A%@�hJ��{�̙��=�4ws�yԮm��<ky��Uo2�S�N3(Q��>�<�i�xI���^��r�g��.<�l��&%����cNh@R��k�aNJ�	c�k���HB��|75ml�:�GwE���I"�)�;�z8��	ʚ�*��)����-9�<eH"xɎ��^6�b��{tm��Za�,
-1ܩ )����)Ѭޚ(��|C(��z.ֱ��iF���%�Ov���L_�h�/̀�P��Pg_�U/M;�)1NI���;ޯ��ys{�	������\oE3E:5As�~������~��'��ؚ&wYJ?�"=���j�RI5rc=z��yq�����В{>8����3��eR5�����6�c���W��2�|G�
����x�+^�
-�v���bO�rs����D��D�O�Nb�֜���J�;W��S�ߙv��U�y�6�h�FM��X��ye%m�=���;����>��	�蛰��|�ȑ8�&�2�i�0�N�`�lظ��v�e���7&Ù�����ϰ�i\�)�7��8�����+�73� �=<���.�	��
g폖��>��;��e��6�ƺ�c����$$�K>@���N5Iה�=��{�
-UdT���1��,��b�]c/��l)���LB|�@��S`"�s;7���
�ɲ��Ly�MF���##g�p嬑>�4�m9�=#	��Z��Z������ѐ���q3��O/:�]�Yx�<�͗��
-��8�Z���F�|��0�ċ�9�'O��c���I`<�����V�W��Kv�1Ό7E`:�eӑ��T�X�=Sg��Vo��̦��9v�_��;�������P����f���X�=ɉS�:�y��P1M�M/;^A��ڕ�e�WTR��W|�(|���)q��OtP���#�◖$��Z&�o�<���r��P��endstream
-endobj
-4789 0 obj <<
-/Type /Page
-/Contents 4790 0 R
-/Resources 4788 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 4821 0 R
->> endobj
-4791 0 obj <<
-/D [4789 0 R /XYZ 71.731 729.265 null]
->> endobj
-4792 0 obj <<
-/D [4789 0 R /XYZ 71.731 741.22 null]
->> endobj
-4793 0 obj <<
-/D [4789 0 R /XYZ 71.731 706.187 null]
->> endobj
-4794 0 obj <<
-/D [4789 0 R /XYZ 248.221 690.411 null]
->> endobj
-4795 0 obj <<
-/D [4789 0 R /XYZ 439.947 664.508 null]
->> endobj
-4796 0 obj <<
-/D [4789 0 R /XYZ 71.731 662.351 null]
->> endobj
-4797 0 obj <<
-/D [4789 0 R /XYZ 142.466 623.787 null]
->> endobj
-4798 0 obj <<
-/D [4789 0 R /XYZ 71.731 571.982 null]
->> endobj
-4799 0 obj <<
-/D [4789 0 R /XYZ 71.731 556.977 null]
->> endobj
-4800 0 obj <<
-/D [4789 0 R /XYZ 71.731 513.141 null]
->> endobj
-4801 0 obj <<
-/D [4789 0 R /XYZ 71.731 503.178 null]
->> endobj
-4802 0 obj <<
-/D [4789 0 R /XYZ 71.731 503.178 null]
->> endobj
-4803 0 obj <<
-/D [4789 0 R /XYZ 71.731 430.815 null]
->> endobj
-4804 0 obj <<
-/D [4789 0 R /XYZ 71.731 410.725 null]
->> endobj
-4805 0 obj <<
-/D [4789 0 R /XYZ 71.731 410.725 null]
->> endobj
-4806 0 obj <<
-/D [4789 0 R /XYZ 71.731 405.744 null]
->> endobj
-4807 0 obj <<
-/D [4789 0 R /XYZ 105.604 384.987 null]
->> endobj
-4808 0 obj <<
-/D [4789 0 R /XYZ 71.731 382.83 null]
->> endobj
-4809 0 obj <<
-/D [4789 0 R /XYZ 105.604 367.054 null]
->> endobj
-4810 0 obj <<
-/D [4789 0 R /XYZ 71.731 351.946 null]
->> endobj
-4811 0 obj <<
-/D [4789 0 R /XYZ 105.604 336.17 null]
->> endobj
-4812 0 obj <<
-/D [4789 0 R /XYZ 71.731 316.08 null]
->> endobj
-4813 0 obj <<
-/D [4789 0 R /XYZ 213.2 306.581 null]
->> endobj
-4814 0 obj <<
-/D [4789 0 R /XYZ 213.2 294.924 null]
->> endobj
-4815 0 obj <<
-/D [4789 0 R /XYZ 71.731 255.373 null]
->> endobj
-4816 0 obj <<
-/D [4789 0 R /XYZ 74.222 237.44 null]
->> endobj
-4817 0 obj <<
-/D [4789 0 R /XYZ 71.731 212.369 null]
->> endobj
-4818 0 obj <<
-/D [4789 0 R /XYZ 71.731 176.504 null]
->> endobj
-4819 0 obj <<
-/D [4789 0 R /XYZ 71.731 134.725 null]
->> endobj
-4820 0 obj <<
-/D [4789 0 R /XYZ 411.009 121.873 null]
->> endobj
-4788 0 obj <<
-/Font << /F33 1306 0 R /F32 1215 0 R /F27 1208 0 R /F35 1569 0 R /F23 1201 0 R /F44 2037 0 R >>
-/ProcSet [ /PDF /Text ]
->> endobj
-4824 0 obj <<
-/Length 2405      
-/Filter /FlateDecode
->>
-stream
-xڕko��{~�{@�U+��Ԯ��
-�iR]� �}H���-m��r7���;��K��€I��⼸�.\��.bO��J���"-޸[����c��,8���\}���X-���NjЋD�t_$�q���s�߫r�}�-��un��;E�w���Y�KZ}�y^���B����������}'A�b�/
-iq���{)Y�e�002�,՟eyJ��ep�#ÿ̼��ʙ�l���:Ϛ�Zո���T�'T���
-D��13�n]}��^8f��A�/;�ɌI7�nJ�Li�}FN��( O5|��U��9+��_��e�*��է�+�o��H�K������V>e�N/�!X����VJ�L:���5;�1;0����Yɋ�T<y��,��B���i���A��`��K�L��р���z�Z�Ti-���m}��<�mZ{8Z6�ǍY+�dhO7q��L��ܫ:�3*!<��@�\�R��s�2�����U���9դ��p@��rԍc7Y��4��k���'i����|����Um��NQ��z��SV4�Q>��M��������yC������GX���X�LM+0[�XՅ�卦���-��C�����
-n���C�5@�q�Z��pm�m��\�3W��F�S�U���&aȢ���.X�)��L����D�G�*�ry2�Y����d�a˜B��T�K�HxS�A��������~J�Jp���Q������r&���jna�%&Ն����*^7��N�O4�Z���K`�^Z)\}OU�C�h�f��c�Y�Mv2
	ٔ4�fi]���L��ؓ0�f}u���<�#f��0u�^m�T_�Ϙ�٫Į)r��u�4�o��=�ݡ��$'��WY>���s~G�fXA��IhK��ZIZ���V�j�ӻ������X�q.�b�[�����?��`ª�T���S��b������&�`#�ti�U%d���6� �A`g����G�G&�5曇��O�0��nT���)!�
-E�
-e��	_��_�m�(Ŋ7\��Z�flO�f�|0���ϟo������lȷ�
������C�̀�F���B���5������,30u����gW(��^ϯ�h��B5;@�67=eՌN�e��⃒�O���y���F!�c]#�����A}9�~�ic�IL^�3�$)�?��Жx�F�'�=LZ
��],yPJh'�A�����"���R�Z���x��F�߳���T��D��D��;[��tZg��W���ݜfF��}�.U�s�rC��9a��&�t��-�"�`2�A#�?�e������t	��l<��ǣ�=��8O[���4��R�����Gf��|�R5�!��)$d������Ju݅[��p��[��Xz+�-9w�6�#G'@!�|���Z���n��h�c+@��I�5C�
4''‚�l��[9�
O�4}oD?��YC�B����w�����4
� d.�0V�՜�l0)���8)0�����'����ȝ��C��ʡ��OR��
-�k`��!Z�Y�~���~�P���ZŏM�	r=!a�审z,��2S�ш+�h/���@�s)��%�4J�+�1$�`\��x�x}'69�7=
��(���c�,�|y��H��r��r�FF�{#Qb�(	"z7��N��`�&�9�Sz��R�B��ݠ��a���r��պ�����V�-v
-4a��}\Ae�T�O\;��R�eg�����7f�eJ�Rk����}l�641/�~g�`�-e�x��09a0����ii�sI଴T3��Wh了��~d^׋��H�m���!+�����z�|���T깞}�eڂ�h��Vɤ?_�/[L������۴�MY
-Þ�C�i��;��t�Ѓ�hˎ��'��}�@�u#!I츸���*���y�k�O�T�/M���7�FR|�
-?p�g�L�]�=�,�A�և��s�s����8JDx'��g1@:z�N	�.��m��D���MǞ=�y���0��+�ں��<�('��|GP"���q�69����C#�ԗ��#�7���y������~Bشۜ,�J�[���������=�y{0
-���1���K�'����j͇.4�uU@�>g71��˶��ۂqP��-����-^b?!���g	`���r�/.ϩ�%K�J`t(gU'��U����j�Ѡ<��"cx��|\��J"��!��������_��?�?�^���0=m���Ǐ�O��(im�wV���:��
-0�3�40g7S�i�V&"����7�q�k�
���H��e�$�V�<��s��mvP��\����25����L�A�����3����S����%u�C�_��D$^��/s=��s��^GEX-���v��f��endstream
-endobj
-4823 0 obj <<
-/Type /Page
-/Contents 4824 0 R
-/Resources 4822 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 4821 0 R
-/Annots [ 4829 0 R ]
->> endobj
-4829 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [291.325 593.609 343.628 602.52]
-/Subtype /Link
-/A << /S /GoTo /D (os-win32) >>
->> endobj
-4825 0 obj <<
-/D [4823 0 R /XYZ 71.731 729.265 null]
->> endobj
-4826 0 obj <<
-/D [4823 0 R /XYZ 71.731 698.381 null]
->> endobj
-4827 0 obj <<
-/D [4823 0 R /XYZ 71.731 673.445 null]
->> endobj
-4828 0 obj <<
-/D [4823 0 R /XYZ 71.731 650.396 null]
->> endobj
-4830 0 obj <<
-/D [4823 0 R /XYZ 71.731 588.628 null]
->> endobj
-4831 0 obj <<
-/D [4823 0 R /XYZ 368.08 577.833 null]
->> endobj
-4832 0 obj <<
-/D [4823 0 R /XYZ 74.222 546.949 null]
->> endobj
-4833 0 obj <<
-/D [4823 0 R /XYZ 71.731 521.878 null]
->> endobj
-4834 0 obj <<
-/D [4823 0 R /XYZ 71.731 490.994 null]
->> endobj
-4835 0 obj <<
-/D [4823 0 R /XYZ 212.034 470.237 null]
->> endobj
-4836 0 obj <<
-/D [4823 0 R /XYZ 71.731 468.08 null]
->> endobj
-4837 0 obj <<
-/D [4823 0 R /XYZ 71.731 421.32 null]
->> endobj
-4838 0 obj <<
-/D [4823 0 R /XYZ 297.791 408.468 null]
->> endobj
-4839 0 obj <<
-/D [4823 0 R /XYZ 71.731 397.066 null]
->> endobj
-4840 0 obj <<
-/D [4823 0 R /XYZ 71.731 397.066 null]
->> endobj
-4841 0 obj <<
-/D [4823 0 R /XYZ 422.619 340.224 null]
->> endobj
-4842 0 obj <<
-/D [4823 0 R /XYZ 74.222 322.291 null]
->> endobj
-4843 0 obj <<
-/D [4823 0 R /XYZ 71.731 297.221 null]
->> endobj
-4844 0 obj <<
-/D [4823 0 R /XYZ 300.601 281.445 null]
->> endobj
-4845 0 obj <<
-/D [4823 0 R /XYZ 71.731 276.797 null]
->> endobj
-4846 0 obj <<
-/D [4823 0 R /XYZ 113.574 258.531 null]
->> endobj
-4847 0 obj <<
-/D [4823 0 R /XYZ 144.298 258.531 null]
->> endobj
-4848 0 obj <<
-/D [4823 0 R /XYZ 71.731 256.374 null]
->> endobj
-4849 0 obj <<
-/D [4823 0 R /XYZ 113.574 240.598 null]
->> endobj
-4850 0 obj <<
-/D [4823 0 R /XYZ 71.731 240.498 null]
->> endobj
-4851 0 obj <<
-/D [4823 0 R /XYZ 113.574 222.665 null]
->> endobj
-4852 0 obj <<
-/D [4823 0 R /XYZ 71.731 220.508 null]
->> endobj
-4853 0 obj <<
-/D [4823 0 R /XYZ 113.574 204.732 null]
->> endobj
-4854 0 obj <<
-/D [4823 0 R /XYZ 71.731 202.575 null]
->> endobj
-4855 0 obj <<
-/D [4823 0 R /XYZ 113.574 186.8 null]
->> endobj
-4856 0 obj <<
-/D [4823 0 R /XYZ 113.574 186.8 null]
->> endobj
-4857 0 obj <<
-/D [4823 0 R /XYZ 137.584 186.8 null]
->> endobj
-4858 0 obj <<
-/D [4823 0 R /XYZ 154.042 155.915 null]
->> endobj
-4859 0 obj <<
-/D [4823 0 R /XYZ 71.731 143.796 null]
->> endobj
-4860 0 obj <<
-/D [4823 0 R /XYZ 71.731 143.796 null]
->> endobj
-4861 0 obj <<
-/D [4823 0 R /XYZ 71.731 121.016 null]
->> endobj
-4822 0 obj <<
-/Font << /F33 1306 0 R /F32 1215 0 R /F27 1208 0 R /F35 1569 0 R >>
-/ProcSet [ /PDF /Text ]
->> endobj
-4864 0 obj <<
-/Length 2924      
-/Filter /FlateDecode
->>
-stream
-xڭk�۸�{~�~�
�Z�%'8�k�����=��8p%�MD������������8�!9/Γ��ʇ�UxYC���4�*�W��V��*�;޲��yw���}]��}]�?^�A��'
-�<	����oN'ٔ��f&��ƣ��(i�?���J���M$�M������O��z?p�D��ϣo2��\r�\�/��I?��8�L�^�!���a6n`�����݄����,[oi(��9�@�3����f��7���?��/k�*�e��1�
���^�"[W;fe�|�qd�_�+���?߯4�;v�|������*��*�u[�����E��ES��.F�A�@K�E�چ�+�ࣖ�R˦�ƣ�9�O ��;YZi}�3��I`����C�q0��j�� �&@�n)�+
mzl5��������r�puS֪Q���E$_Pb&���T��Y��7��QlB���y�UEfcţ{Y�d$'9	
*���Ѥc;��ч���L���B@8S�gʃ�������$�+C#	��Ag���Ts`�5�j��0�G�q�jCէ��d
G<���l��h�DA7�C� �g��RRx��$�R�B�
-|�rKc)�:4���YLB/H=���5J�x��A�sv�5Dj�e�т�J��O�um-�x@S���3�Qh+X�{NlP�Vb��
�Nh���&M��@hT�
�����η�B�0�_�7�
-��V�$�I�"��BGB�N|�Ջ�Jz�禣u���h{"1���l�.g۴��;�q�B+�|6oh=�$�~�ʝE��G��:��"�0�����G�L�kU)��WՎ����-nT��o�n$�9J�����dQ��
-�
w'Y��7��Q��!��\~jc�(�H4^ii*h�{`.X��.�+|
>�H�>��@jx�*>�1���}�1�al�]o�I��2a[T���v�e�*~L��[hnU6>
��A���"0�ޏ�6a.��1r�A�p�`�0���~ؔ�6p�p��Jt-(O������yż�,���#
-��%T��.\2��ײ�u3���2Eнpd�8›Vw����S cH_:��l&�n�[G�:s
��8J�.\Zh@1.nuSz�e��K]�U�+���]�z��經�i�oþ0�,�����,�K�b&�R;���� |O0[u���ק�/q%�����@tp`�-��jffBv7����X�l����K��T���[Z>p��+s�L�>_?�v;�&�,��z�Q�Pٔf�]�&����Y9��\P����5Ӟ���٠5�ť�B�2���qf�;�������"������$�m��%
y�~���OGe�.L��1�pŝ6���8q�.t)�:
-�����2
�4G�!-;L�� O������1�y��*]�ۨRRN�+<�'��P!��1�'flI��8���I:hQ�I�b�����V�I�8�ϥrur�Ѓ-��Y�|�v��Iq
��K�"F�s���@��]!�E!O�P{����v2�mM7G�wǡ��w�`�[{���I��Q�J��c)�(y�.
-j�3�ί\)��O㼫�kW*e3�A��o�{;+��i5
�|�5ի�U6�W��+��7�[��j�ѫ[�0Hz��	a+�����#��#���0I��NF]5����S��ٌ��_/��������1x�Y�FK�5�rE�˗'�y
-�M8W���c/�s�hg��d��cם���멮�ӹ��
[�o��+�*��F�3R~6��	�۹��U{�G���3�8O�l�VjY|~h�Α��u͞K����*p��$�w��@9Ǫ���X�	�s?�[wNq��s�Y�0Z
��o�HD=�ql�:�Zt@�\-�P
�s�F=S�uN�*�,�>��p.�yI��G&?X��!y���(�,�}[�t�����L<K��O4qD7����3&n�U)_�5�ɑq�`�ٸ"��Ɛ[_�ȗ\����&�dž�rjkOP�`h�:��g>�����Bߵ��T��=�z}��8e�0[a�ݭ���Q 
-/��.��U�g�';�PA�$궦B�{�x�l�
�_JUm�ZX��i;>8�'��l�.����z�Ó��@ʐSƨp �l0j���`sXz$
z\�)�8}��D�����(���<�י/�5���H#ei���\����ہ��KP�Z1�|�$����ލ��� �,����/J�Y�m����!�_8	�:t���$s�jԁ�'�6��<�E{W�R�i��],���>C�(h�$�˾���A/���.��I�eX��|BC5�ZNj�P�3���݃eH1����7оy&�"݌�7�ͻ�u��n�O,�j|~\��t�����Z*Q�KRĺq/�z��?`�ɟ�	!�W�c
-ﺜ�r;��:�vՙ�`��CCoF��^��[$���H)J�7�3��͙)VD[�@H����X�*��~8�=?�*� �S��l���~�x��k臛tx�II����]�ʐ�vR
O<U�Po�\���[Ћ[`M���_�\�\�a�flOF4�{�*��֗�0�y��S	��Ww�f
x�EQrf����{��.#��q|�\�K��-ޟމO���''-�!i
%5���Ȍ=��uӵ޹�j�y���Y7b,�H@!8�ڃ*h
--=Iüs�@��b�P#ah>���?��g��ʂZK�5�o$@��Ы�O�uԥ�җ��ʤڦbN\=j\��z|Mj:�V�����5�}䇞�i���6#�+3��g�'��y����-���5ua��i&����
-[�D�-'�B����5��h�~f�YW"�G=t��Bg�����7�t`�r�I�yi2`Aq��KpI���Fendstream
-endobj
-4863 0 obj <<
-/Type /Page
-/Contents 4864 0 R
-/Resources 4862 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 4821 0 R
->> endobj
-4865 0 obj <<
-/D [4863 0 R /XYZ 71.731 729.265 null]
->> endobj
-4866 0 obj <<
-/D [4863 0 R /XYZ 71.731 741.22 null]
->> endobj
-4867 0 obj <<
-/D [4863 0 R /XYZ 71.731 706.187 null]
->> endobj
-4868 0 obj <<
-/D [4863 0 R /XYZ 161.762 664.508 null]
->> endobj
-4869 0 obj <<
-/D [4863 0 R /XYZ 71.731 662.351 null]
->> endobj
-4870 0 obj <<
-/D [4863 0 R /XYZ 71.731 639.437 null]
->> endobj
-4871 0 obj <<
-/D [4863 0 R /XYZ 71.731 603.572 null]
->> endobj
-4872 0 obj <<
-/D [4863 0 R /XYZ 493.42 592.777 null]
->> endobj
-4873 0 obj <<
-/D [4863 0 R /XYZ 429.405 579.826 null]
->> endobj
-4874 0 obj <<
-/D [4863 0 R /XYZ 71.731 538.815 null]
->> endobj
-4875 0 obj <<
-/D [4863 0 R /XYZ 71.731 523.871 null]
->> endobj
-4876 0 obj <<
-/D [4863 0 R /XYZ 71.731 474.819 null]
->> endobj
-4877 0 obj <<
-/D [4863 0 R /XYZ 74.222 430.984 null]
->> endobj
-4878 0 obj <<
-/D [4863 0 R /XYZ 259.97 408.07 null]
->> endobj
-4879 0 obj <<
-/D [4863 0 R /XYZ 71.731 392.961 null]
->> endobj
-4880 0 obj <<
-/D [4863 0 R /XYZ 95.641 348.792 null]
->> endobj
-4881 0 obj <<
-/D [4863 0 R /XYZ 71.731 348.792 null]
->> endobj
-4882 0 obj <<
-/D [4863 0 R /XYZ 71.731 298.486 null]
->> endobj
-4883 0 obj <<
-/D [4863 0 R /XYZ 309.199 277.729 null]
->> endobj
-4884 0 obj <<
-/D [4863 0 R /XYZ 71.731 275.572 null]
->> endobj
-4885 0 obj <<
-/D [4863 0 R /XYZ 71.731 244.688 null]
->> endobj
-4886 0 obj <<
-/D [4863 0 R /XYZ 71.731 221.774 null]
->> endobj
-4887 0 obj <<
-/D [4863 0 R /XYZ 336.008 193.046 null]
->> endobj
-4888 0 obj <<
-/D [4863 0 R /XYZ 71.731 190.889 null]
->> endobj
-4889 0 obj <<
-/D [4863 0 R /XYZ 246.006 170.132 null]
->> endobj
-4890 0 obj <<
-/D [4863 0 R /XYZ 71.731 167.975 null]
->> endobj
-4891 0 obj <<
-/D [4863 0 R /XYZ 71.731 145.061 null]
->> endobj
-4892 0 obj <<
-/D [4863 0 R /XYZ 279.615 121.315 null]
->> endobj
-4862 0 obj <<
-/Font << /F33 1306 0 R /F32 1215 0 R /F27 1208 0 R /F23 1201 0 R /F44 2037 0 R >>
-/ProcSet [ /PDF /Text ]
->> endobj
-4895 0 obj <<
-/Length 1883      
-/Filter /FlateDecode
->>
-stream
-xڍks�6�{~��CSjj1|Kj7��$����s��d`�XQ���+;����E=��.��ž�p�/�C�'��Q����`�����B�1ɨG��ݳq<���,��I���G�$�w����f#�|��4��}��-%���oeU	Z]�0�·I��k���?���:
�x�O'�J:�#-��N�i�g	(L�8I��Z��Y���O<PHA��0�DE8��;�-�Qോ3޴�`�T�$�M����K�i��D�hʺ�s�ש��a�‘w,_�z!�S#��F6���χa����|X�N1�=pX��W0ZATZM�\#G4
-#�^ur؝�e��C�R�J]�8Ꮄd/�*R�A����Q��
-%���a�z�sd�čԲ��G��-��ژR�>�.<
-!Tb��%���e"7en]��H٬�m��ZKQk&�%sPMa}��k�^4+��ʔYA���~����;s�%��]�y$�'JU;5%_�L�aL���;Z��������fv{�x_f�h[�֗����%a14)�ǗDS�	���	S+�X\.��z�]2q��<�H�Ň*�������1�����C�p(F��p�OD�~t��ת�k�%�Әnh�	Y�v8
-oS�+�(aO��)�ڻl#��i�1s2�=�Udc�E;6�X[Kv��^����	��<D�Ks �d޺Բ�x�0�	��,[M�0�:��Yc�2ݮt���
-P�V��Jm\�`�d�vYZ��P�=۝�U+� 9�UH�Z�H�8��	l��,��Du��|�ʜ�k�+�Q�O�)%�?I����?��>�|�7Ci|�8�3�\�C����o]�]Qg���W�NJ5�K�V�}Ii�jޛ+N#כ
-��
�_�R#��ϊ���y�I�}z\F��!� \4�a��@K(�g�å�r}/�Z��sUHf)s�G���uB�0
-ݶe<�!�����Q�q�l�|܈��Od��r�9�5�R�̞NpF�΀#Q�g��y5od��)y�������}�J���:�q�w�սh��tqu3;���yM8Y�G��S�)_f�[�t_�)�|G-'�aO��	�/��I	͛��"f��}_�Ӥ��*�[�3	��i�1c�,�H�Q�0�jZ���i�!j�����}}����5-KF�ZaJ.�KS��S�)X(L5��dy_) ��+�p������j7�u-q�+��F�t<��+)�,�Q���Bn�Cܺ+��Z
-��\/-emT�ˆT"����쵫ڱ,���?!��he
-�v�6�qt��Di-
�]a���Fa�;6νڍ���]�M�IW�\��=���%;��<��Q�<h�^�������`(��
$8�����C�o�����@h�Œ��TF�_��q�a�g�pj�� 	��l��/^�$*������Z���c���E���j#L�_�����\�oo/���;ܺ�]]�����k�$v"8��� zK�l[n�-��>iH�$����]�5��\w��g�S��ox�b/"��]�)�����o
-lK��b?"��.ʉ�k�V�����w�A�7�xnK�u
s�60�v�?=��6:�SkJg��L�,�Y�&@<f0��y����gS���0	�����G�g-@�XKJb�!�$��R0U=X��T���)���(kz���/�|.��q�C)�� Rq�H����u��$����΃p;��v��0ϗ·<
-g.(���^ӂލ�%�j��K�$��	Xh�6�tZ�B;:�)��:x��8G��T7�X�{�=w��9#�9W=���"��*���p���Y;����h��cbK��{JK�8��endstream
-endobj
-4894 0 obj <<
-/Type /Page
-/Contents 4895 0 R
-/Resources 4893 0 R
-/MediaBox [0 0 609.714 789.041]
-/Parent 4821 0 R
->> endobj
-4896 0 obj <<
-/D [4894 0 R /XYZ 71.731 729.265 null]
->> endobj
-4897 0 obj <<
-/D [4894 0 R /XYZ 521.375 708.344 null]
->> endobj
-4898 0 obj <<
-/D [4894 0 R /XYZ 71.731 644.419 null]
->> endobj
-4899 0 obj <<
-/D [4894 0 R /XYZ 71.731 579.826 null]
->> endobj
-4900 0 obj <<
-/D [4894 0 R /XYZ 71.731 579.826 null]
->> endobj
-4901 0 obj <<
-/D [4894 0 R /XYZ 71.731 554.889 null]
->> endobj
-4902 0 obj <<
-/D [4894 0 R /XYZ 71.731 531.841 null]
->> endobj
-4903 0 obj <<
-/D [4894 0 R /XYZ 71.731 493.051 null]
->> endobj
-4904 0 obj <<
-/D [4894 0 R /XYZ 71.731 342.604 null]
->> endobj
-4905 0 obj <<
-/D [4894 0 R /XYZ 71.731 310.272 null]
->> endobj
-4906 0 obj <<
-/D [4894 0 R /XYZ 74.222 268.593 null]
->> endobj
-4907 0 obj <<
-/D [4894 0 R /XYZ 71.731 243.522 null]
+4611 0 obj <<
+/D [4600 0 R /XYZ 71.731 213.711 null]
 >> endobj
-4908 0 obj <<
-/D [4894 0 R /XYZ 111.572 227.746 null]
+4612 0 obj <<
+/D [4600 0 R /XYZ 71.731 193.8 null]
 >> endobj
-4909 0 obj <<
-/D [4894 0 R /XYZ 71.731 207.656 null]
+4613 0 obj <<
+/D [4600 0 R /XYZ 331.48 170.054 null]
 >> endobj
-4910 0 obj <<
-/D [4894 0 R /XYZ 259.914 196.862 null]
+4614 0 obj <<
+/D [4600 0 R /XYZ 86.396 144.151 null]
 >> endobj
-4911 0 obj <<
-/D [4894 0 R /XYZ 141.778 170.959 null]
+4615 0 obj <<
+/D [4600 0 R /XYZ 71.731 137.013 null]
 >> endobj
-4912 0 obj <<
-/D [4894 0 R /XYZ 74.222 140.075 null]
+4616 0 obj <<
+/D [4600 0 R /XYZ 225.881 113.267 null]
 >> endobj
-4893 0 obj <<
-/Font << /F33 1306 0 R /F27 1208 0 R /F32 1215 0 R /F35 1569 0 R >>
+4599 0 obj <<
+/Font << /F33 1322 0 R /F27 1224 0 R /F35 1589 0 R /F23 1217 0 R /F44 2069 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-4915 0 obj <<
-/Length 1830      
+4619 0 obj <<
+/Length 1398      
 /Filter /FlateDecode
 >>
 stream
-xڝXm��6��_�a��g�-ۉ]�8�]�ݰ{���0(��hUlòw����";�-�*��I�"R�f!�E�e,cD�E:+v���v�y1��,����ó۷q<˃|�ֳ$J���"�R1{(��^6��J�q�4�^4>lM^���1�Vo�Q�z/�I��8���go���2ȳ���ϩ�b�2O�EF�Y'�32���ݾˑ1�2���m=��v
-���I���z+���y��I���(�do:bnZ]�������8%
Uom�������_R�u]�NV����V�E_��b�,d�ފ�����Ð��,�#3���G"��N�5]~�����o\p1q=l��(�hL�Ge�_�E�SU�Jެhs����=Z'y���>L�m�5���-�Q���Ftk�mn�n�/�
-�����$� E�g:���2O�E�ݰ-�W�4��\i��Ϯ�E�-��
c�ɲ� ��В���n�����B��?���T�-�L]HS��m�/���׀��&���A�	��7��*���
-Co��ت�U]���98g��)��.4T4sQN�N��(B�|8*4���l��EYńޢ`���\��$�T���ʝŋ=M��N3sp*͏��)�A�y4�~r>�s�`Q�n�ӣ���3?:�y�m�h����;�Ev�v{G+J�M�Ket�X<Dqo���4�kc�cwǸ�q����"�e�<���?ar�xp�#Ax�(8Q�A�LΩ;G���u�G�Q��	�(#q�Ħ�������#0ӺfY��p�):V G�\��=�H��/��L�����Ŭ���Ly��g�^���u<�T\��3�>}�W�	F��SK�8���{�p�AS��q�j",�J;�,�Z�5f��6�eQ�#X��*ր�;��<�g0F=�9�X�t��1A�1ih�2�Xd(����Ko�}b�~ ʞ��8Xfb��b�������4����؏�,H�8���8�FAq/���P8���'���=�B�����1��$ʮ��k4�i�OhVW4�$�o�)��FnX2�=`�ؙ �����r6�7$��i��Ua��vŸB9�P�Ke�V7��+K�Ή�#;���]��@�s�MD�9��Nҽ��7ぴ?R�>��;jf��*�;��K�p��:��o���뭻��:�-<?�	ǰ+�
-NZ|X������N`* �c��Ƭz��b�>�w��HN���
-�=\.>�V#�e�btN|�N�}Z]S$ؽ\���+�ZqĽ���XХ!��&�ں�&�7���=�����mcs�$΄��n"A��Eo��Dŵ���&��v��}C$�n���MS�]05qh���wx��&7��č�h"i��6S,ɽ
�]���+�uK�`�nm�*}X�g����@�e��)6�-�Y���gH�"�R�}י����q�]��v���4�EC{	>ڿ�`�g���k��$Q���a�o�Vj"�<07���|�i�3W�Rۃ$]"˯'܄�b�
<�/��pg�}:᮪?�����b�9�ql ��q��ʁ� �u�e���gx��̵7D��Dy���z	BJ'k[���z&qS��rY-�A���;Ny�u&�m��WF
};��:}S

$̀Ç=D:t�8���r��4H���22]������T�g�5�G�Q�+i�Bf��A6Tk�l����V��ѧ��{��j!���4��@|��:��-l����k��7��Q�?�c�͡�w���}Y�;z/��L���q0Y).����:��K2x�.��z7���x��,� Ľ��K���j�D��endstream
+xڝَ�6�}��ȓزD]vޚ�����\���H� R�$_���ص�E��\��q���_�*�H��P�٪l��8���,�e��B���n�k���!OV��*��0I�U��p�����wp_�Ω~�Y�!���u��_u{!»��u������w�������ƍ2W։b�nt2�{#Ѹ�Z�*4.I��~�N5���O�B$
̙��>�[��q\z�i���]E:�=!aK�#�W6Ok�%$ڱ��˻ޠ�O���{Q��uy�v����:�6���h��T�Ҝ�7�(�at���%�ը��|��^�!cc+U~$P����-�s����܃'qP5J��Un.��Jgwv
+�.D�!e�*N!C9��I��Lfa����a�D��������&p�߳�E�A���Xd^�_�8Fs��8N�v�!`T���4���2��1x��IdN�gH�"���Ce����0���x��z�B�,�ғ���,��]&9��p�����y���p|B��}������C
+�;�ve��,Ŭ>��mB�D�	�Y�o"b���D�W��p��1��u�w�D��Ӏ�C�ܛ���lF�,��r]�>AXOc~��A��ND��{E���g�����;}�R_j�
;VHq�]N2��ۓO��rMMz��z�H	���W�"4T�e) ��H>�ӆ�L;�tҕ���^_v]��iCd�luW+k�[w�
+>)&���DH �~$ߨ8�NI�E<�z,Qd��C�p�X��_d+Y�$ d��(�N�T����X^�Z6�$1�	=&�Y�Kw�s��-��йu#������%��ȋ�Z'�Z�`��hc�!�҉�X}i�1����/�DA3�Nw��9���������zz�!��	C�,�ю��̴�ϔ�R����4ձ�5^"��Պ��`�Ć�B$�NnS�D�٘5�J�x硧�׿"s���)H�� ��q�u�	�>qߝ��5~1�4��@}����-�3�j�v|F�:}5�hכ�z�7��>&0�t8!�O&͐,�k3��n��a��h8a		�����ިT�縠��-��xO�� �-&����X�i3l�����!�A��i����b3}6o6x�ՠ\�)@�7�����Z�j������~pUrY����v��.:��`���Eg����LMm�y��U��u�����3�yBy�W�\|��v��ے��>�Ș<�<W��.%�gҸH��}�=�،��V�J�U�1����Ň�a���K�=
�$/��`֖���/#�!-��K'�W�ڊ���+vѷ��PE�/�c�)�i�-��ϓt���?�f��_`�(�7iA{���~Q]_�
���_endstream
 endobj
-4914 0 obj <<
+4618 0 obj <<
 /Type /Page
-/Contents 4915 0 R
-/Resources 4913 0 R
+/Contents 4619 0 R
+/Resources 4617 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 4821 0 R
->> endobj
-4916 0 obj <<
-/D [4914 0 R /XYZ 71.731 729.265 null]
->> endobj
-4917 0 obj <<
-/D [4914 0 R /XYZ 488.744 708.344 null]
->> endobj
-4918 0 obj <<
-/D [4914 0 R /XYZ 106.431 695.392 null]
->> endobj
-4919 0 obj <<
-/D [4914 0 R /XYZ 71.731 695.293 null]
+/Parent 4544 0 R
 >> endobj
-4920 0 obj <<
-/D [4914 0 R /XYZ 205.428 677.46 null]
->> endobj
-4921 0 obj <<
-/D [4914 0 R /XYZ 171.988 664.508 null]
->> endobj
-4922 0 obj <<
-/D [4914 0 R /XYZ 337.682 651.557 null]
->> endobj
-4923 0 obj <<
-/D [4914 0 R /XYZ 71.731 649.4 null]
+4620 0 obj <<
+/D [4618 0 R /XYZ 71.731 729.265 null]
 >> endobj
-4924 0 obj <<
-/D [4914 0 R /XYZ 71.731 626.486 null]
+4621 0 obj <<
+/D [4618 0 R /XYZ 71.731 718.306 null]
 >> endobj
-4925 0 obj <<
-/D [4914 0 R /XYZ 71.731 621.504 null]
+4622 0 obj <<
+/D [4618 0 R /XYZ 373.626 695.392 null]
 >> endobj
-4926 0 obj <<
-/D [4914 0 R /XYZ 71.731 619.014 null]
+1911 0 obj <<
+/D [4618 0 R /XYZ 71.731 688.254 null]
 >> endobj
-4927 0 obj <<
-/D [4914 0 R /XYZ 113.574 600.747 null]
+910 0 obj <<
+/D [4618 0 R /XYZ 204.675 651.039 null]
 >> endobj
-4928 0 obj <<
-/D [4914 0 R /XYZ 286.733 600.747 null]
+4623 0 obj <<
+/D [4618 0 R /XYZ 71.731 643.686 null]
 >> endobj
-4929 0 obj <<
-/D [4914 0 R /XYZ 291.157 600.747 null]
+4624 0 obj <<
+/D [4618 0 R /XYZ 71.731 617.963 null]
 >> endobj
-4930 0 obj <<
-/D [4914 0 R /XYZ 71.731 585.639 null]
+4625 0 obj <<
+/D [4618 0 R /XYZ 249.701 617.963 null]
 >> endobj
-4931 0 obj <<
-/D [4914 0 R /XYZ 113.574 569.863 null]
+4626 0 obj <<
+/D [4618 0 R /XYZ 273.821 605.011 null]
 >> endobj
-4932 0 obj <<
-/D [4914 0 R /XYZ 307.174 569.863 null]
+4627 0 obj <<
+/D [4618 0 R /XYZ 71.731 597.873 null]
 >> endobj
-4933 0 obj <<
-/D [4914 0 R /XYZ 388.314 569.863 null]
+1912 0 obj <<
+/D [4618 0 R /XYZ 71.731 541.086 null]
 >> endobj
-4934 0 obj <<
-/D [4914 0 R /XYZ 239.479 556.912 null]
+914 0 obj <<
+/D [4618 0 R /XYZ 189.239 503.87 null]
 >> endobj
-4935 0 obj <<
-/D [4914 0 R /XYZ 186.062 531.009 null]
+4628 0 obj <<
+/D [4618 0 R /XYZ 71.731 496.518 null]
 >> endobj
-4936 0 obj <<
-/D [4914 0 R /XYZ 71.731 528.852 null]
+4629 0 obj <<
+/D [4618 0 R /XYZ 350.294 457.843 null]
 >> endobj
-4937 0 obj <<
-/D [4914 0 R /XYZ 113.574 513.076 null]
+1913 0 obj <<
+/D [4618 0 R /XYZ 71.731 450.705 null]
 >> endobj
-4938 0 obj <<
-/D [4914 0 R /XYZ 71.731 474.122 null]
+918 0 obj <<
+/D [4618 0 R /XYZ 261.414 413.489 null]
 >> endobj
-4939 0 obj <<
-/D [4914 0 R /XYZ 113.574 456.289 null]
+4630 0 obj <<
+/D [4618 0 R /XYZ 71.731 406.137 null]
 >> endobj
-4940 0 obj <<
-/D [4914 0 R /XYZ 71.731 441.181 null]
+4631 0 obj <<
+/D [4618 0 R /XYZ 71.731 380.413 null]
 >> endobj
-4941 0 obj <<
-/D [4914 0 R /XYZ 113.574 425.405 null]
+4632 0 obj <<
+/D [4618 0 R /XYZ 365.641 380.413 null]
 >> endobj
-4913 0 obj <<
-/Font << /F33 1306 0 R /F32 1215 0 R /F27 1208 0 R >>
+4617 0 obj <<
+/Font << /F33 1322 0 R /F27 1224 0 R /F23 1217 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-4944 0 obj <<
-/Length 2480      
+4635 0 obj <<
+/Length 2477      
 /Filter /FlateDecode
 >>
 stream
-xڍk�۸�{~�p2��%�e��� �W���E�+
-Y��B$Q�#���H�eg�����p8Om���_�I���3��xS4���	v>�
-�"J�c
���]�*;��݂���W�_t�ѾJ�ls�0K�C��ds_��{�u�-��۝N�[ſ�ۃ��[�{v:n߫�p�v����?���&SY"W���0�?W0	�`���-.R�Tmu�}��gܾ�'$��h���M�N��N���:睪�V����z{�M3(&����ֶ�!+��lJm�q8���[�*�Ku ����ƫZe�x�';�@�N�;^���!�ɴ��kXD���_��(�d�	R��XL�����y��qX�)ъ���[*��h�8<��y��/�˓�Eo�"!'�T�3����)>f�:����RP6;-Z��SˀC��v��W�cD%�[�7p����a�f_�:��+�x�ǟ�q�uo�	�ے��E�z������h� ����oW�`���l#?bi#X>����3�Hs���x��ˎ����T�.�S��=�U�w|���$�A�����ڮ6K�����l?�#+D�f���?�!,�R���ށ�q����O{t�o0G$�	ا�So�=f����pv�Й6��92�{�V����в���g���ȟ��(_����cG�Me�e7s���-�8G.<z���Kd��V������e�B��C{�p|������'K���4	�X��=^��Ѽ�ɚ�
3���������E����Wfx����i�W�`��]�
-xE^(AC� �
-��",�%F{������s@�����My��h<�P-���\^sfeP�?�#��s����\�`mO��A
-W��o���ͪ����hZ��mAe͔7�Z~�(���T�ތ����q��=(��A�����"����D���M�����טa�O��g
@CQfLCI�0G�vꇝ�x�6m/D��DA0���9�i�	z.T>?�����O�𭓐+\\����'=���"��Z,��k p4�+X�|����6B�-P��3P3�v4��\.d�/�#���Z�:���\a���xvWn�o����\��a�#��Đ��(t
AՌ���1pw�|����Y	�ǐg��F᝟��-��H�Iij��آ���|�w��l'��l�-h{r��9�R�z��߰�6p�	��x�ğ��C����	�|���Q@9�)!G�s�ܫ�+�l{�����ls�p�_Fx���^����Q���L�V�Sɬ4��JG�\FY>�גtCE,�ʪ����ĘC4���Y sV�V����=�? pơ�΋B����=\�����z���3�/fO��h���>��7>~9e��	o%���)Xb���aT`�Fp��)��F��iR	I������dz���Qn�#3�R{Ӗ+f,���YF9�ܿ!�Y|��aoL;.�U~Į�f���Rb#�R�'"���t��ӱ�F�gw��E�E9�r�Jg�yo�$et4�$z�)/��F�� �
��r0�D����cx�s��g�U��,Q���y^�qk��E4?LA8
ɰ�Vi7�Up��&��֜���l|���W�8ō+
-Ψ�=a�h6$��Qȉ���A�
�.d7)�\:�4x��bDMUzl�M|&ڍ��0a߱���ў�y�5�HՂTB_��}Ű��)���0�� ;+�(m3�7�7��~�,�md\pS�~<��t����F�E�g߻�4�٥(�f۔�G���!N�@r�=�Zx1t��3&?:T��Oמ�3����������z;4_
�����j���-vc�I�d�����)�z�����2��#�%^���ږ\S[:j~���ߖzt�VJO����A o�b�H����o�n��WSHK��w>��~����H�3����Ą?������뷁���k���`0y� ��Jz�()�a�HX���ib���Ɩf䀫/`�xH�`�0�D�y)�/e��r��U2�>r��$�2�0X&9���:Oη����|L�p���,�4��<JH�Ϙ_���s��3����zpO3��]?�ܚۅd����WlP�@�e2�$�-Y��Y�yQ��-���6��C���lU-"�P�,�ے���h@��D�E��1<�#��y�j!^	���F�kS�!���m��q�b�8j�x�vn�ZNM�}cwca!�����߰��/�d�>m3����p�-^a�)_p	;~�®rm'"��Z���&r
E<˦�_�.R��Ym���-���e����P�>��6n���ޯ�?S��8�I���J7	��������7�Nh�ϣT�:��\�#��&:@��ގF��=�P@���7�5�i��B���kQ��Fײ���endstream
+xڍk����{~�p2�K3z��6A.H�h��-��W�4��HA��l}�!G+��&s8���Sl|�l�@$
+~d&dm�捿9���7S�q,d$����T"�Tmv����j#}G���8K�*�<����N�e�u��I���}ئ��o���
|���٘�jO��<��&�Ld�B��fBf�p�`�ޠ��2-.�Tme�=n���n���r4�[��q��M��Uu��N�c+�5���j���?	ݚVd3��B�m�9g��p�Ye`v�N��X���x�@����l��"��qG�xDb8�V�y
�0���*�`K�M�Dl�0�g�mD���q>��T�����D��
��JQQ���y����I��BE�X��IB��8!�⬋/��Nt�����R�E�!�~j	pxѮ��jw��X~k�nx�3!4��kW�zb�����6�<��
���$�lз�.�����}�]�B��˷�F0m�K�������,���M��VVs�6�xG���^��AWV]��={j��%��Xgh}����k��l�
1L]g�Q0X!Z��6`�����G>�Zjx��;P8Np��i��
�6���p�
��,�R��)gZJ�sdD���&/5��eN���r/�?;,H;�h|��aN�RE"
+�Mf"Ͳ�9���D�#�f����%2T@��Jx��|]8Ӽ.<U�]�g��H|dk)���&*�D��5Mͫ���0�\�@���o�h^��|ye��x{_��~e	�ϑ�%/
+�0�7��S46(%�J���X���㷿P=�y�.`��+(��~`��l�Z�aihMU��%eV����>j�=�IOk���I�/Ha�|��ˁ�ݬ�p)�G�em
+[�ty���7�B���O8���X�A�aǮ܃r�$�����.�
+E��|tWRA���-�!����=�
����L��&��۩�;W3�Bm>���tk����VX�C�&�/Be"����(��Ԛ�:VTq��`Ȏ�8��l+ۭ�B�{
�v�G��@:��)���wj�Ԏ��,�j…��|$�^[g]w,�*����ʍ�[̪y%��u�k(d��
+]�Q5a&pr��!��d���cȓ�a������ߔ��X�Ǹ45[vLQ@p��wG;O�x6ov���=�S����A
.X=��oXM��ȶ�x�؟��C����	�|���Q@9�)&G�s�ܫ�+�d{����
�ls�P�_F��`pP���z݌�P	&c�U�T�+���@�ґėQ����$�`��XRY�P~0��s����0;dΊ�J�䀿hO�܁p���"��$�t�@��)�\QO�r{���%��c��2���Y_���>���Dς����A��
,6���0*��T!��v
+����Ÿ$�Ҫ�$�E`��BOg�{}&���̤K����\1#������	��
���ⱂ�����<�W��~=���/�?����~,�hAW��0�j�zv�J\ֵ,d�t�u�����7@���:hw=@���sd#�j�І�f�)�O�M�a��4�9�^�g�U��,i�	
�<�Q��5Z����� ����/����Up��&��֔����l<ڞ��Hp�W�Q��v6R+��Q�����{��=�.�n\��&d$��If��5I�~l��}�b���'���H�M�h�t~�0�jaUB_��}Ő��)���1�� ;�(M3�7�7��~�,�md\PSL~<�w�����H��"�г��]t����s����#Gg�!N�@|�=�Xx1t��3�=:T��Oמ.3�΃ŞM	~f���z;4_
�����	5�i����8u�]�⣄>M}��a��_��?�����������ֺ0"��t4��a�[���ɱ[uH(=���c��e���q���wOCw����[D���i�d���]�!y���?�Y��6���Ɔ"�������`�A��Iqz��)�a둰����Va���Ɣf䀪/`�xh���&�`	��%8p����2���ȵΫf�(���T�Lr�-��u��o���=��j�q��˲T���b��!I>#z,7#ͭ���η��=�D��z������$���ؾb��b-+�D��d�g�|�U�+�(�_��o�"T٪Z����Y�9�9�р���:�Ŵ��q1
��U�j�K����&4��
!{����6G�c�A�m�x�vn�-5�������$BB��	@=.�ֿae��^����ͤw�7Z��	Z�Ž��2�v&�̈́]��NDLõ
+ǩ����x�MC�l]��M�:8����[\����{� ��|��m�[/�_��śK��3�M�O���$����^4���l;��>�\Q��p��W�0��/��D�{!��?�8�	$���;M֒�_��E��endstream
 endobj
-4943 0 obj <<
+4634 0 obj <<
 /Type /Page
-/Contents 4944 0 R
-/Resources 4942 0 R
+/Contents 4635 0 R
+/Resources 4633 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 4821 0 R
-/Annots [ 4951 0 R 4952 0 R ]
+/Parent 4544 0 R
+/Annots [ 4642 0 R 4643 0 R ]
 >> endobj
-4951 0 obj <<
+4642 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [235.548 547.742 280.892 556.654]
 /Subtype /Link
 /A << /S /GoTo /D (installation) >>
 >> endobj
-4952 0 obj <<
+4643 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [355.754 547.742 401.098 556.654]
 /Subtype /Link
 /A << /S /GoTo /D (configuration) >>
 >> endobj
-4945 0 obj <<
-/D [4943 0 R /XYZ 71.731 729.265 null]
+4636 0 obj <<
+/D [4634 0 R /XYZ 71.731 729.265 null]
 >> endobj
-1892 0 obj <<
-/D [4943 0 R /XYZ 71.731 718.306 null]
+1914 0 obj <<
+/D [4634 0 R /XYZ 71.731 718.306 null]
 >> endobj
-906 0 obj <<
-/D [4943 0 R /XYZ 358.696 703.236 null]
+922 0 obj <<
+/D [4634 0 R /XYZ 358.696 703.236 null]
 >> endobj
-4946 0 obj <<
-/D [4943 0 R /XYZ 71.731 681.855 null]
+4637 0 obj <<
+/D [4634 0 R /XYZ 71.731 681.855 null]
 >> endobj
-1893 0 obj <<
-/D [4943 0 R /XYZ 71.731 658.391 null]
+1915 0 obj <<
+/D [4634 0 R /XYZ 71.731 658.391 null]
 >> endobj
-910 0 obj <<
-/D [4943 0 R /XYZ 233.175 615.294 null]
+926 0 obj <<
+/D [4634 0 R /XYZ 233.175 615.294 null]
 >> endobj
-4947 0 obj <<
-/D [4943 0 R /XYZ 71.731 606.471 null]
+4638 0 obj <<
+/D [4634 0 R /XYZ 71.731 606.471 null]
 >> endobj
-4948 0 obj <<
-/D [4943 0 R /XYZ 146.66 593.735 null]
+4639 0 obj <<
+/D [4634 0 R /XYZ 146.66 593.735 null]
 >> endobj
-4949 0 obj <<
-/D [4943 0 R /XYZ 441.326 580.783 null]
+4640 0 obj <<
+/D [4634 0 R /XYZ 441.326 580.783 null]
 >> endobj
-4950 0 obj <<
-/D [4943 0 R /XYZ 71.731 560.694 null]
+4641 0 obj <<
+/D [4634 0 R /XYZ 71.731 560.694 null]
 >> endobj
-4953 0 obj <<
-/D [4943 0 R /XYZ 82.138 523.996 null]
+4644 0 obj <<
+/D [4634 0 R /XYZ 82.138 523.996 null]
 >> endobj
-4954 0 obj <<
-/D [4943 0 R /XYZ 71.731 490.955 null]
+4645 0 obj <<
+/D [4634 0 R /XYZ 71.731 490.955 null]
 >> endobj
-4955 0 obj <<
-/D [4943 0 R /XYZ 430.969 467.209 null]
+4646 0 obj <<
+/D [4634 0 R /XYZ 430.969 467.209 null]
 >> endobj
-4956 0 obj <<
-/D [4943 0 R /XYZ 71.731 454.258 null]
+4647 0 obj <<
+/D [4634 0 R /XYZ 71.731 454.258 null]
 >> endobj
-4957 0 obj <<
-/D [4943 0 R /XYZ 468.549 428.355 null]
+4648 0 obj <<
+/D [4634 0 R /XYZ 468.549 428.355 null]
 >> endobj
-1894 0 obj <<
-/D [4943 0 R /XYZ 71.731 421.217 null]
+1916 0 obj <<
+/D [4634 0 R /XYZ 71.731 421.217 null]
 >> endobj
-914 0 obj <<
-/D [4943 0 R /XYZ 121.483 355.739 null]
+930 0 obj <<
+/D [4634 0 R /XYZ 121.483 355.739 null]
 >> endobj
-4958 0 obj <<
-/D [4943 0 R /XYZ 71.731 343.301 null]
+4649 0 obj <<
+/D [4634 0 R /XYZ 71.731 343.301 null]
 >> endobj
-4959 0 obj <<
-/D [4943 0 R /XYZ 149.514 334.18 null]
+4650 0 obj <<
+/D [4634 0 R /XYZ 149.514 334.18 null]
 >> endobj
-4960 0 obj <<
-/D [4943 0 R /XYZ 252.264 334.18 null]
+4651 0 obj <<
+/D [4634 0 R /XYZ 252.264 334.18 null]
 >> endobj
-4961 0 obj <<
-/D [4943 0 R /XYZ 71.731 309.109 null]
+4652 0 obj <<
+/D [4634 0 R /XYZ 71.731 309.109 null]
 >> endobj
-4962 0 obj <<
-/D [4943 0 R /XYZ 71.731 309.109 null]
+4653 0 obj <<
+/D [4634 0 R /XYZ 71.731 309.109 null]
 >> endobj
-1895 0 obj <<
-/D [4943 0 R /XYZ 71.731 241.614 null]
+1917 0 obj <<
+/D [4634 0 R /XYZ 71.731 241.614 null]
 >> endobj
-918 0 obj <<
-/D [4943 0 R /XYZ 207.49 175.387 null]
+934 0 obj <<
+/D [4634 0 R /XYZ 207.49 175.387 null]
 >> endobj
-4963 0 obj <<
-/D [4943 0 R /XYZ 71.731 166.565 null]
+4654 0 obj <<
+/D [4634 0 R /XYZ 71.731 166.565 null]
 >> endobj
-4964 0 obj <<
-/D [4943 0 R /XYZ 71.731 151.671 null]
+4655 0 obj <<
+/D [4634 0 R /XYZ 71.731 151.671 null]
 >> endobj
-4965 0 obj <<
-/D [4943 0 R /XYZ 71.731 146.69 null]
+4656 0 obj <<
+/D [4634 0 R /XYZ 71.731 146.69 null]
 >> endobj
-4966 0 obj <<
-/D [4943 0 R /XYZ 89.664 125.933 null]
+4657 0 obj <<
+/D [4634 0 R /XYZ 89.664 125.933 null]
 >> endobj
-4967 0 obj <<
-/D [4943 0 R /XYZ 89.664 100.03 null]
+4658 0 obj <<
+/D [4634 0 R /XYZ 89.664 100.03 null]
 >> endobj
-4968 0 obj <<
-/D [4943 0 R /XYZ 71.731 97.873 null]
+4659 0 obj <<
+/D [4634 0 R /XYZ 71.731 97.873 null]
 >> endobj
-4942 0 obj <<
-/Font << /F23 1201 0 R /F27 1208 0 R /F35 1569 0 R /F32 1215 0 R /F61 2529 0 R /F33 1306 0 R >>
+4633 0 obj <<
+/Font << /F23 1217 0 R /F27 1224 0 R /F35 1589 0 R /F32 1231 0 R /F61 2561 0 R /F33 1322 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-4971 0 obj <<
-/Length 1761      
+4662 0 obj <<
+/Length 1757      
 /Filter /FlateDecode
 >>
 stream
-x��XYo�F~ϯ�C�H@��}��v��I�J-4E����"$��[
��;�3�a)i�>6�����s�M\��&�'��?~M��;����O<�p��9��\>���$YL�w���D�e�$�E�������Q�Z?�?r�����,���,��fX��+��u��������r'5
+x��XYo�F~ϯ�C�H@��}���v��I�J-4E����"$��[
��;�3�a)i�>6�����s�M\��&�'��?~M��;����O<�p��9�y�|2�	�I&�8�,�&����&I��4�'����˦Q�Z?�?r�����,���,��fX��+��u��������r'5
 ���g�T��?q|Wd�w^�L$.�n*�0�)�'{�f$A�}�X�4qN����;�|峲�E��B͜�M��j+�u3o�M�ў�iܚ��Y��`��vK�nUޛV+�"[�/�v��]�E�r;����]��E�-WC�?c|�/��{�S��R��)Z%��˻Lك������ʽZ�wt�e��qfxܴfhؗ^�4j�R?�@jn�
-�N��/d?�Ə������C�%��Z[ポ���ߋ�PL3py'r�DV�K�&I:�����X4����b����U���.�.A7�~��P������Δ���������@�i��Nn��d���N2�z`��I���p7��5�ُ���%��u#� j{���}��.������O]�̼W�ME�B�(�@;��17u��)A�wA���)�#*�RL��=�p�0���q�@���w��MO��1�j�{�����������Ղ�$�a꫋�kՖ�N�j^����-:���������:
���Qbu^�B_�BooW��ůf�,�}��;T!�p&ȋ<���^-��yg�nn��8�B���_]��x�Ɨo��7�I�Cdz��f)D��[���p��3H>;�`��4�@=d�U#���y���!ů��w֦��N^�x�ú*��3�g���%8a�
S�z=&����:U���x{YfeT[�z�n�*�ݗG �]���/d߷z�9�|xJ^��Ş�����,#u�uh���#����ݞ��1���������������޷�#��\_Ï��#��c�fّk���l����w�%���l�	���WL;Yp0��e�C��,�Piq�Nk���ZF\-sN�v�%������c��-&SΫ?5��KfDN�`
��NBnz`��������
-���V�a;*�����zxxƧ-������7׺C�Z�s�ֱ-�[��P�dm��!�R�Т���4�6��=����SjL�i�X��7v�*��Ѐ��pn��V7LZI��z(��Y��x�n�Lav�4?(��ޒdEt�#Kr]~M��M�T�k���(t��$�a����Fl8s	M"mڪp������dTl�ԩ���	ӏ���D�KZWf������S#������NeF�H��	q��wیe��SC�r�Qü�%�FED{5.�"�b]�~��c��Qui;�t��0�9�Ʊ)��blě֬J�?U	�X�Q
-nV�4�cw��zl�C�M�-�:`����;�4��ۈ��$J|�R�[Z�ړ�W�C�x�K;�)<N�GfAHx�řfƒN%������0=�3�";���0�Ԙsj�9��=f%��
-���L(Pl�5��<8[)�_&�� ����M�	��V�f����`~�bLt�S�w�^T�o?S<����h�/EL��1��f�S&`��}?�`���-~���%�����K��k����ڮQ����aT�>���B��o��9r��s��tf�\?�w���Cu�$XH$X�j�Mέ����-��7��9j�^�Czp�ݫZ׀e�\�������&�����'9�(����!�\�S����/�1endstream
+�N��/d?�Ə������C�%��Z[ポ���ߋ�PL3py'r�D��"DM�tz����b�pdX�����N�V5�����݈���@Q�����;S�f�G�{�
+������:�a�
+��[�K�;�D�	zC$-W3���B�tf?��v���֍\���M�����Џ�>6�d�Bm*ZEک
����(M	��B�M�Q�D�Z`b/���Qf�c�e�v��-��umz��U�U3ݫ�_�����7/�o��%�
S_]�_���w�W�R�� }n�ME$厗��iXgt������zz{���.~5�e���ޡ
+y��0A^�?]�|�jy��;Cvs{���
+%���z����3_���O�\W$1@��q2��!o]��Iw�8 �<�Ăq"�0���W���7�����j�Y�"�':yI(�� ����F�ꮗ���6L%����R��TALJ:�y�e��Qm	�/꡺Ѫ\w_�Lv�w{h��}��U�|��)y~{�ӏ{C��0�A֡�����62Fv{�;Ƥ�s��G����z"�˗��E�o?Gde���I�G���"Ͳ#׺�}�٠�?����K��=�� �$K���v��`Z��*���Y��� ��L�Q���Z朔�KpMJ���b![L��WjP�s�̈���d������g[AqmKT[�p�vT0.��5ݽ�����O[;S):5�o�u�����
(�c[��P%�8���5�C��E�-i�m�{b]�i�Ԙ�Ӷ�:�o�$/T�:�������n�����!�P,��Z��ƙ��h~Pb�%Ɋ�G����z[���6���Q�BI�5�V/	�)��p��DڴU�D[�
�>�+Ȩ�N�S�\u���-�($���̚���3�� 
+FV���c��ʌ�d)
+�hk�˖�����ƣ�yJЍ$��8�j\�E�źn����0�l���v��56nafs��cS�[�؈7�Y������ܬ,i&��ؠ��5��[:�5u�sM#w�h��#I��*ҥ޵'�V�>��v$Sx��������3̈́�J�?�az�g�Ev��Oaʩ1�Ԙs��{�J��x#�P��<k0�}yp�R+�L0�A���s��61��*�:�����nŘ�z���0����~�x�;){ь_��0sc�i��"�L �$Za�~�����O[���aK��#��
+Q�进��]���73��èx}&煬7j��r�b�����>*�~�pT��“��S��ɹ5��t�ֽ��F�^#G-�kyH.�{U���l���_6��x��^��_��$'?�E~*\d���~�9���K��endstream
 endobj
-4970 0 obj <<
+4661 0 obj <<
 /Type /Page
-/Contents 4971 0 R
-/Resources 4969 0 R
+/Contents 4662 0 R
+/Resources 4660 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 4994 0 R
+/Parent 4685 0 R
 >> endobj
-4972 0 obj <<
-/D [4970 0 R /XYZ 71.731 729.265 null]
+4663 0 obj <<
+/D [4661 0 R /XYZ 71.731 729.265 null]
 >> endobj
-4973 0 obj <<
-/D [4970 0 R /XYZ 89.664 708.344 null]
+4664 0 obj <<
+/D [4661 0 R /XYZ 89.664 708.344 null]
 >> endobj
-1896 0 obj <<
-/D [4970 0 R /XYZ 71.731 688.254 null]
+1918 0 obj <<
+/D [4661 0 R /XYZ 71.731 688.254 null]
 >> endobj
-922 0 obj <<
-/D [4970 0 R /XYZ 370.33 645.157 null]
+938 0 obj <<
+/D [4661 0 R /XYZ 370.33 645.157 null]
 >> endobj
-4974 0 obj <<
-/D [4970 0 R /XYZ 71.731 632.719 null]
+4665 0 obj <<
+/D [4661 0 R /XYZ 71.731 632.719 null]
 >> endobj
-4975 0 obj <<
-/D [4970 0 R /XYZ 71.731 611.478 null]
+4666 0 obj <<
+/D [4661 0 R /XYZ 71.731 611.478 null]
 >> endobj
-4976 0 obj <<
-/D [4970 0 R /XYZ 71.731 555.998 null]
+4667 0 obj <<
+/D [4661 0 R /XYZ 71.731 555.998 null]
 >> endobj
-4977 0 obj <<
-/D [4970 0 R /XYZ 139.576 544.096 null]
+4668 0 obj <<
+/D [4661 0 R /XYZ 139.576 544.096 null]
 >> endobj
-4978 0 obj <<
-/D [4970 0 R /XYZ 71.731 531.976 null]
+4669 0 obj <<
+/D [4661 0 R /XYZ 71.731 531.976 null]
 >> endobj
-4979 0 obj <<
-/D [4970 0 R /XYZ 71.731 464.84 null]
+4670 0 obj <<
+/D [4661 0 R /XYZ 71.731 464.84 null]
 >> endobj
-4980 0 obj <<
-/D [4970 0 R /XYZ 71.731 442.875 null]
+4671 0 obj <<
+/D [4661 0 R /XYZ 71.731 442.875 null]
 >> endobj
-4981 0 obj <<
-/D [4970 0 R /XYZ 71.731 373.682 null]
+4672 0 obj <<
+/D [4661 0 R /XYZ 71.731 373.682 null]
 >> endobj
-1897 0 obj <<
-/D [4970 0 R /XYZ 71.731 355.015 null]
+1919 0 obj <<
+/D [4661 0 R /XYZ 71.731 355.015 null]
 >> endobj
-926 0 obj <<
-/D [4970 0 R /XYZ 374.461 311.544 null]
+942 0 obj <<
+/D [4661 0 R /XYZ 374.461 311.544 null]
 >> endobj
-4982 0 obj <<
-/D [4970 0 R /XYZ 71.731 299.373 null]
+4673 0 obj <<
+/D [4661 0 R /XYZ 71.731 299.373 null]
 >> endobj
-4983 0 obj <<
-/D [4970 0 R /XYZ 402.991 289.985 null]
+4674 0 obj <<
+/D [4661 0 R /XYZ 402.991 289.985 null]
 >> endobj
-4984 0 obj <<
-/D [4970 0 R /XYZ 71.731 264.914 null]
+4675 0 obj <<
+/D [4661 0 R /XYZ 71.731 264.914 null]
 >> endobj
-4985 0 obj <<
-/D [4970 0 R /XYZ 71.731 227.519 null]
+4676 0 obj <<
+/D [4661 0 R /XYZ 71.731 227.519 null]
 >> endobj
-4986 0 obj <<
-/D [4970 0 R /XYZ 175.682 214.567 null]
+4677 0 obj <<
+/D [4661 0 R /XYZ 175.682 214.567 null]
 >> endobj
-4987 0 obj <<
-/D [4970 0 R /XYZ 395.942 214.567 null]
+4678 0 obj <<
+/D [4661 0 R /XYZ 395.942 214.567 null]
 >> endobj
-4988 0 obj <<
-/D [4970 0 R /XYZ 486.807 214.567 null]
+4679 0 obj <<
+/D [4661 0 R /XYZ 486.807 214.567 null]
 >> endobj
-4989 0 obj <<
-/D [4970 0 R /XYZ 71.731 201.616 null]
+4680 0 obj <<
+/D [4661 0 R /XYZ 71.731 201.616 null]
 >> endobj
-4990 0 obj <<
-/D [4970 0 R /XYZ 71.731 188.665 null]
+4681 0 obj <<
+/D [4661 0 R /XYZ 71.731 188.665 null]
 >> endobj
-4991 0 obj <<
-/D [4970 0 R /XYZ 107.048 188.665 null]
+4682 0 obj <<
+/D [4661 0 R /XYZ 107.048 188.665 null]
 >> endobj
-1898 0 obj <<
-/D [4970 0 R /XYZ 71.731 181.526 null]
+1920 0 obj <<
+/D [4661 0 R /XYZ 71.731 181.526 null]
 >> endobj
-930 0 obj <<
-/D [4970 0 R /XYZ 496.414 138.429 null]
+946 0 obj <<
+/D [4661 0 R /XYZ 496.414 138.429 null]
 >> endobj
-4992 0 obj <<
-/D [4970 0 R /XYZ 71.731 125.991 null]
+4683 0 obj <<
+/D [4661 0 R /XYZ 71.731 125.991 null]
 >> endobj
-4993 0 obj <<
-/D [4970 0 R /XYZ 206.804 116.87 null]
+4684 0 obj <<
+/D [4661 0 R /XYZ 206.804 116.87 null]
 >> endobj
-4969 0 obj <<
-/Font << /F33 1306 0 R /F27 1208 0 R /F23 1201 0 R /F35 1569 0 R /F32 1215 0 R /F61 2529 0 R >>
+4660 0 obj <<
+/Font << /F33 1322 0 R /F27 1224 0 R /F23 1217 0 R /F35 1589 0 R /F32 1231 0 R /F61 2561 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-4997 0 obj <<
-/Length 2160      
+4688 0 obj <<
+/Length 2159      
 /Filter /FlateDecode
 >>
 stream
-xڭX[��
~�_��q���r�K��i�(���E��b+�0���vg�__���NfhDE�E~�-6���(�%�ć0�f����Y�a揟"�X	�j����i�K�,�a�,^O�4��CtX�8�g���G����ua�-Wq�	^Bn_�Y�e��?���Xۙ�����?��:h͒]x�'�5���Y�n��
n�a��d��E/WI��^�Y��^���m��Y�[�f�Q��]��(�*$u�1vЗ�<ꉄ4Py׫���q:כּ�0�u�L�{�����{/��?�,�L�v
-F���3�i��df[�	nM���պF���ϯ�8<���l��Q8�U�j��L7A˴w}�ΑO��Y�ؽQ���n+�C^��
-���.D�S��m�ڋ]ʉ!p+��6������
D����eM�Z���~��F��Yo����o:{&�
��(�����/<2-�x0i����I:в09:C O�F��M�i{/V�ا��3ϋ�8p�#	`
-��Q��^��X�yZF�@�ghmn���$��8$���x��]��.��R�V����)��oW��-a�:�%Bޗx�#�{!�����;����C��Q
-�W��go+�N��39	:<8pn@Ypts�b��B������"~�H��;\-�*㞭���@��+hOл�?�������������3��[=�6��4�R�ݍ�m�s�u��sA�!,�f��l��[J�5����?�1vWJ{�_�2���"�0�♱{p �\2��׌�q��d"[����t�R�<K肳�
��8ze�c0��$;��4��	bۏ��J�n5�כr5�`g�����������Q�&m��B�Hg0 Vprà2�� �[L��`dZ����5�N�li�s�u�V�'�v������!�@�?Ȟ�z���� ����Lc7a�%��3���{�%�L����,���K��3�pL�J�kZ�$Z)FR3��	ӏ���Iy]]�,x㡶=�qu�b7HP�!̺�,���R�lȖ �wUȲ�䡋�RS��J�߮k0.ޅ�CF���MU���U$%��۩}�*�Q�z=q)L5�8�&Oy ��gSO�W{0o��m���,�Y�8Ft\����z}DI脕�TC���QD�6ۑ���^��'a�?��Y[�au������ �ڙ��A�,n���oK'��Q��M��6;u�8;�.�p��nञ\\������u�3�=�lǀ�W�|j"#x'苺xf��e?���h��/$Q�l�\�3���v����n��/�J45�r��3��Юx�]
-�d3�x�%lA�,٘�w\?�K��Ҡ֔� P�j*b�?9K1��"J�"x�~kE8CQ��;_(��'�ਸ਼E��d+L��5�g̩o� �8O�U�%ڀ��s�wU�͓Iu����@+�
@�l�RJ� ���O��F8�1�_c�3
���An��sS�K~[c4/����Su~��
�gB~*X�Fy�E,F
-��5�궎�x��~��d
)�U2�߉4h���xC���=�hi-j9}oJ"�8�`�����AFd�3�94U�4��>��d�'�p���a!m���`&����Xި����aI��R�-H]K�H8����C|U	U�(@��JC�؈��##+�R8��SD���L"/�6�>א�N��hd%���L��K՗"��o����K��%]��6��	���uG�@U�	�c�%�!:���KW	��gx�-�D��(	��D��݀����sBu�l�����t�/��Q�e�����wQ�7����w�޶l<hu�ϖb(O��8y[�xtX���.�����|���w��@��7ϥ��8vT�<2�Y�+�z.UV�F���L }����{�������NIȰ�oW^8�h{4�J���\���N?����Z.�Y�����WnUQ�����_J���Pf���Igӂƍv�i&APw���s[I��VR�d�\���YҌ-��į6��_�Sj�����u� �O���0������|���3���b*=s���>a�_ޫ�:H�[��wÏ�쮾�Y)�N6��Au^�RS�����9;݇�h����7��������ॠ�h�	�^��|�endstream
+xڭXݏ�
߿"��q���I_�]�ݢ@����%Val˕������K��dv�� �(��(�'��b�h�Ga�@��x�-�Շ��3�	�JXV#�O/ֿ$�b����H�(�G�E���.�/�?��M���|[��l|�}YfY��i��P��bmg���_/���ˠ5K�p�K�k�繳,�o��
nva��d��E/WI��Y�Y��^���m��Yp���,�@7��0�QNUH�c
+�/^y�	i��]�J���cgݕ�G[w�Ըw_m���?�f�R���m�`�[?��f�O�a�E���TˋZ�k�]���*�ý���ʦ�sZ��vO�t�L{�����`�Տ��i�[Q�jUȾ��u!ڜ2�@nK�^��RN��[�������em Z�LT-k�֊(���C7:��z[��e�x��3m`|Fi�]����#�r��F
+��D�-[���3�Dl|�d���b��}Z?=�H��1��ƠX�L������k�?O�h�����MQp�d��DwQ�ow��A@��O.�j���i@�r����q�:�v�Y"�m�'8���{
y�wџ�N�����R����08{[�u��9��Ã���g1�)�I+D��)
-��{�P�����ࠎ�ܳ5٘�)�x�	z������ �Qӟ���t��y����4�&W�������m��|�l�#�oa95�w�f;}��R���������ZP�s�������)ό݃�~�%�=@p}�x��O&�5�KڱL�(�̳�.8���J1�3�W�9�n
+@�)MS�#Al��vU�٭F�zS����lr
+l�a���a�f�P-��t���b'7*s�2�ń8{F��(��]c[�ĸ�v�6='Z�.a�y".�W�0�1��A�\�� ��u'.f�	{>(מ����#8��.e�d��g���\"H���]�c�-P�_���'�J	0�����O�~�Fp�N���g����ax����A��
a֝fY���^`C�Ѽ�B�5� ]���Z?F�P���v]�qq����7U5>�?�")ф�N�#T)���Ka�Q�	7y�	F����=�z����؁y[4OlD�da��1���u���zHB'�,��r���"
+�YN��V{qo��I�Pogmن�s ��bb�kg�nݳ�����-�0D��C4�'����a��Ļ��uƻ��zr9py4�����օ>̠����o�;���DF� N�u��t�A�~�9�5�)�n	_H��|�@gt���f!����,�M�^h�hj��<f���]�ԛ�f���K��FY"�1�~��r��A�)�SA(��/�T�pr*0�b�E�B	D�D�֊p��4�w�P(}Ot�Qm�T��V���k�ϘS��A�q��$�K���~��'���1hm�V�;��/�;���A�z���u��p�c���UgL����~7%��(����h^mW����74�	�1�`����)�2ֈc��:��c�5��5���Vɴ'Ҡ�
+��yZN8�s�(�������)���@��f�&��ϰ��Ty�`F��'��L����.���!.�ށ��~Hcy�Nks�#�%I�KI�� u-="a���{�W:�U%lT͢�]j*
Ib#�<��\JE���O}xHRr2����d�\C:�f������0m�/U_��.��{�o'e�t�;<�0�'8h��}eU�&����a���/�����4[r��Q0*K�<�ɻ�'*�	ՁF������._0ۣ0��d�/�w�3�R�XG��]��m�6x���-�P�N�q��'�谲��]z5&;%��ף�ɞ��o�Ks�q쨞yd��RW&�\��ܣ���@���W���F�]�cō����a�߮�pT-��h���{G��;��
+^�}|j�xg���_�UE7{��)=�CM��C�&A�M7��H3	���T<��$�l%�L���	P��� ���M�j����?��G���4�n��i�4FS�~?��w>{�V�[L�gҷ���!L��{�R	}���f�q����7�!e���Q1��KPj�p�]\>g��p���\c��Z�Żp{!�o�������|�endstream
 endobj
-4996 0 obj <<
+4687 0 obj <<
 /Type /Page
-/Contents 4997 0 R
-/Resources 4995 0 R
+/Contents 4688 0 R
+/Resources 4686 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 4994 0 R
+/Parent 4685 0 R
 >> endobj
-4998 0 obj <<
-/D [4996 0 R /XYZ 71.731 729.265 null]
+4689 0 obj <<
+/D [4687 0 R /XYZ 71.731 729.265 null]
 >> endobj
-4999 0 obj <<
-/D [4996 0 R /XYZ 71.731 718.306 null]
+4690 0 obj <<
+/D [4687 0 R /XYZ 71.731 718.306 null]
 >> endobj
-5000 0 obj <<
-/D [4996 0 R /XYZ 508.292 708.344 null]
+4691 0 obj <<
+/D [4687 0 R /XYZ 508.292 708.344 null]
 >> endobj
-5001 0 obj <<
-/D [4996 0 R /XYZ 71.731 649.4 null]
+4692 0 obj <<
+/D [4687 0 R /XYZ 71.731 649.4 null]
 >> endobj
-5002 0 obj <<
-/D [4996 0 R /XYZ 71.731 631.467 null]
+4693 0 obj <<
+/D [4687 0 R /XYZ 71.731 631.467 null]
 >> endobj
-1943 0 obj <<
-/D [4996 0 R /XYZ 71.731 579.661 null]
+1975 0 obj <<
+/D [4687 0 R /XYZ 71.731 579.661 null]
 >> endobj
-5003 0 obj <<
-/D [4996 0 R /XYZ 71.731 546.919 null]
+4694 0 obj <<
+/D [4687 0 R /XYZ 71.731 546.919 null]
 >> endobj
-5004 0 obj <<
-/D [4996 0 R /XYZ 71.731 536.956 null]
+4695 0 obj <<
+/D [4687 0 R /XYZ 71.731 536.956 null]
 >> endobj
-5005 0 obj <<
-/D [4996 0 R /XYZ 135.985 527.323 null]
+4696 0 obj <<
+/D [4687 0 R /XYZ 135.985 527.323 null]
 >> endobj
-5006 0 obj <<
-/D [4996 0 R /XYZ 135.985 492.354 null]
+4697 0 obj <<
+/D [4687 0 R /XYZ 135.985 492.354 null]
 >> endobj
-5007 0 obj <<
-/D [4996 0 R /XYZ 71.731 435.766 null]
+4698 0 obj <<
+/D [4687 0 R /XYZ 71.731 435.766 null]
 >> endobj
-1944 0 obj <<
-/D [4996 0 R /XYZ 71.731 396.812 null]
+1976 0 obj <<
+/D [4687 0 R /XYZ 71.731 396.812 null]
 >> endobj
-5008 0 obj <<
-/D [4996 0 R /XYZ 71.731 362.013 null]
+4699 0 obj <<
+/D [4687 0 R /XYZ 71.731 362.013 null]
 >> endobj
-5009 0 obj <<
-/D [4996 0 R /XYZ 71.731 352.05 null]
+4700 0 obj <<
+/D [4687 0 R /XYZ 71.731 352.05 null]
 >> endobj
-5010 0 obj <<
-/D [4996 0 R /XYZ 135.985 342.416 null]
+4701 0 obj <<
+/D [4687 0 R /XYZ 135.985 342.416 null]
 >> endobj
-5011 0 obj <<
-/D [4996 0 R /XYZ 135.985 307.447 null]
+4702 0 obj <<
+/D [4687 0 R /XYZ 135.985 307.447 null]
 >> endobj
-5012 0 obj <<
-/D [4996 0 R /XYZ 71.731 274.172 null]
+4703 0 obj <<
+/D [4687 0 R /XYZ 71.731 274.172 null]
 >> endobj
-5013 0 obj <<
-/D [4996 0 R /XYZ 181.691 261.22 null]
+4704 0 obj <<
+/D [4687 0 R /XYZ 181.691 261.22 null]
 >> endobj
-5014 0 obj <<
-/D [4996 0 R /XYZ 485.889 261.22 null]
+4705 0 obj <<
+/D [4687 0 R /XYZ 485.889 261.22 null]
 >> endobj
-1899 0 obj <<
-/D [4996 0 R /XYZ 71.731 228.179 null]
+1921 0 obj <<
+/D [4687 0 R /XYZ 71.731 228.179 null]
 >> endobj
-934 0 obj <<
-/D [4996 0 R /XYZ 517.296 185.082 null]
+950 0 obj <<
+/D [4687 0 R /XYZ 517.296 185.082 null]
 >> endobj
-5015 0 obj <<
-/D [4996 0 R /XYZ 71.731 172.644 null]
+4706 0 obj <<
+/D [4687 0 R /XYZ 71.731 172.644 null]
 >> endobj
-5016 0 obj <<
-/D [4996 0 R /XYZ 71.731 157.102 null]
+4707 0 obj <<
+/D [4687 0 R /XYZ 71.731 157.102 null]
 >> endobj
-4995 0 obj <<
-/Font << /F33 1306 0 R /F27 1208 0 R /F32 1215 0 R /F23 1201 0 R >>
+4686 0 obj <<
+/Font << /F33 1322 0 R /F27 1224 0 R /F32 1231 0 R /F23 1217 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-5019 0 obj <<
-/Length 1812      
+4710 0 obj <<
+/Length 1811      
 /Filter /FlateDecode
 >>
 stream
-xڍko�6�{��/����w�5�6tX���0�0�ms�EW�&ޯ���v�
� �x�����~r�I�E�Q�Pi��v���N�%�Q.g87������E!�4Zܮ�����"���������������R%ap#�{�L��[�I`�U�����i7�?ox����5�2Q�ы�y�3�T�(�W0�E�N��k�(��iQv�c��\Fa(!s~��v�n�Aw������5=�Ͼ�ʝl�Ve��	*5vc�V����}��ڒ���P@\We�dn��o��IZ��n��5��u)�(�/+3��Q���Kwa�7� Fx�3}˺�t�@�:�A�����s`�x�+�j����V�Lh^�`��9��{e�ѽ`�,y	���`ND����ဈʠ�=H<W_:���3f��B�g�v"Y`����{��ڬ�xc�*	�.e��%a�����>p���:S
���=m\8����9 }�l;IO����nY�{����<j�^JtK�b"��}Lz����8� �����r�B6�#�;c3Dsb�7���)	l�|�����!�T�1�kS��`r}A��x�%���R�/�ą.`�	�� ��h�ܑ��� ���ӻ��5p�����M+��z����ǖl4��b�^��p�����zS�U�~F�d�Ͱ��6��K���b*,	W�r-I|�¢��
-�b>��r��dNk��XK	�-��g��0Mƅ�d\�/�J@�2J&X�A�$*J�J7"g�T.d"�"F�(Q�.☶���?���"N"F����7��֢3�x���6dg���<��fVr��`�X���R"��_?��b�:��6I
-���RB^y��;�*W.@�c���j(,���6(崹�+��Qv���Go��q��-���/����I ��]::����>�AQ�'�>�6ZL���%S�W���	�x�p�G��}	Iwq�)^�
ֵ�/w��:r����E�I�9*T"��3�4�"�e*3�&>����D�h*�Qr�,MD��L���j���=2=g�e"�0&�ƴl���a[�-�ƨH!Ď
-�ɐ��З�E"s�����Q.g8g#�	��	T1�}������e�]��������
-�T1��B�ώKJ!(�+L��ؽ� �ƽ�7t�齛��\
^�08m���������Dz0��,��}���`+;q�2�����
-�L��
-�4������R
-dX:�j���lU��o�)4�\JVaO�x����Y��.�H�%4����ڻ�b��������v�k\��N�8�f������/?�"肏��a� Yw�W�3һ�w�׻C��y"�S�)�I����F�$�Q����Ɛ�,a�~�}KX����j1����)��J��a�Z	��c&�z*�E��x�Z"�|��ߪ��<5���ȏ���6�w�6l����h��ӳ*.��Ǟ��j�:|默�ߋ�
3�E�H����8Z��4�;>��������|]+��#ҳ
&�>���g1�(�a�����iB�����I���y1v/��z��yL����)GS:�I��F0a����QLvl���o��5W�lݳ�b�
-�^����훥�^��-ﰧ��_SV�6��Ý�zF3��=��v���\��:�]���H���#�`v���]�ٱ�B���(��&*�ݹܚ>�E|m�����a�__]՚ލU�w@�K#��W�z��J�W?5�_�kb;����i�9��ً�<���c��H�Q᩠�2����׿[��endstream
+xڍ]o�6���Ke aD�;o��
Vlk3�:�D�\d��G���wTd;�?�x<��~r�I�E�Q�Pi��v���v�%��I.g4�n^]}E�Bi��Y/b%E!�E)�'jqS����u[���J�ୠ��2I�n'�W�����,����շ7��$�D�G/*�i�4S٣f��a.�8v�}X�*E�H@�i�U���0PB��&��n�Aw����ڟ5=3�Ͼ�ʝjZVe��*5vc�V����u��ڒ��PA����
+���ҷ�ä	��[y�v�vk]J%
+����j���Y��}��~�oYם��DG2���h:=G���׻r���°���� �LU:�K���5�,��#/@Wủ*�݁�4lS4���ח����3˃H��3g;F�.��%h�� ��+�ޘ�J��K��hIp��ve�v�������T�j�oO�����@[�ȟ|��B�N�bƤ�:�[��=�qqu�^/%��q1�E,>�{����8� ȃ{����R�l�G��f���.�n��c��$B�qC���>ϯ��"T����M�σ���R�RLࡖ�N�0J	�8�@�&db���#й#M��AX;��~�w��c�����M+��z����ǖl4m9�x1�Z�Ss8"K��P����]?�z2�fX`u�O剥�MR��
+K•�\K����{]�Y̗0T��s��#�RBmK��{?�P�q��K�e �P���̄�	V�R
+�ԑD�D�\�D�E�DQ*�$Z�1m�D	~�-�E�DLX[ݷoη�Eg�s���m��Hfy�	 ̬������%�5�D�;�~��՘u4�t�$)��K	y卿��\��A�io o@���8�mP�iq�W�����׏�#%�p���[2w�_��9Ǔ@@s�tt&�;`fnx�Eٞ��8�h1/�0�L-^I�J�'���-qo�%$���0x�4�kK_�8pfu �O-0%����sT�D�g�i�E�TfL7Lr4����0.�T��XX��,K��{���`��z.0�DaLči�%_l�mٶ0.�"�;*'CZC_���E��'g4&��ќ�h'lP�g����s%���<�.c���E��E���P����e�|v\R
+Ay\a*@
��uy6�ž��N���n�j���ƀ�i������z2�#>���|��\F�
+����$�n���כ��=&6���i!^�W���Ȱ(t4�$�G٪;�hSh�U��<�šr�(�Y��.�D���Bbck�]}�]MH�V�˃�v�k��N�:�f������	�����iX&h֝���������ݡ�k���TdJrR�l=:�Eą�=	bTmox��1d�K��x��m���Z+��=��\%����0�[	Z�c&�z*�E��x~�(,D�f���v��Դb��"?�
+ې��ذͪ+;���OϪ��{���a���b..|/:6�l�"���s��h��Ӽ�� �;߿6��u��:�H�6�X���C�ŀ�,������D��ѻB�0-1;�b�^|�(��5B��S
+��t“P��`��5	o;���ض��ߖ�k��ٺg�ŮB���#bm�7K	#�R�Z^aO�/���4-o>*�+w���c&�x�{Z�g�r1��䷥#u"�V�����!..�egǖ�b��0���X�u�rkb�ēj��k�n�a}uUkz7bTA���F�w����%�n�~j�*� �v�5����҈s���y$9����g���sœK��ȷ�endstream
 endobj
-5018 0 obj <<
+4709 0 obj <<
 /Type /Page
-/Contents 5019 0 R
-/Resources 5017 0 R
+/Contents 4710 0 R
+/Resources 4708 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 4994 0 R
-/Annots [ 5028 0 R ]
+/Parent 4685 0 R
+/Annots [ 4719 0 R ]
 >> endobj
-5028 0 obj <<
+4719 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [81.972 518.428 141.748 525.282]
 /Subtype /Link
 /A << /S /GoTo /D (http-apache) >>
 >> endobj
-5020 0 obj <<
-/D [5018 0 R /XYZ 71.731 729.265 null]
+4711 0 obj <<
+/D [4709 0 R /XYZ 71.731 729.265 null]
 >> endobj
-5021 0 obj <<
-/D [5018 0 R /XYZ 71.731 718.306 null]
+4712 0 obj <<
+/D [4709 0 R /XYZ 71.731 718.306 null]
 >> endobj
-5022 0 obj <<
-/D [5018 0 R /XYZ 310.001 708.344 null]
+4713 0 obj <<
+/D [4709 0 R /XYZ 310.001 708.344 null]
 >> endobj
-5023 0 obj <<
-/D [5018 0 R /XYZ 278.636 682.441 null]
+4714 0 obj <<
+/D [4709 0 R /XYZ 278.636 682.441 null]
 >> endobj
-1900 0 obj <<
-/D [5018 0 R /XYZ 71.731 636.448 null]
+1922 0 obj <<
+/D [4709 0 R /XYZ 71.731 636.448 null]
 >> endobj
-938 0 obj <<
-/D [5018 0 R /XYZ 107.109 570.971 null]
+954 0 obj <<
+/D [4709 0 R /XYZ 107.109 570.971 null]
 >> endobj
-5024 0 obj <<
-/D [5018 0 R /XYZ 71.731 562.148 null]
+4715 0 obj <<
+/D [4709 0 R /XYZ 71.731 562.148 null]
 >> endobj
-5025 0 obj <<
-/D [5018 0 R /XYZ 71.731 542.274 null]
+4716 0 obj <<
+/D [4709 0 R /XYZ 71.731 542.274 null]
 >> endobj
-5026 0 obj <<
-/D [5018 0 R /XYZ 274.373 531.479 null]
+4717 0 obj <<
+/D [4709 0 R /XYZ 274.373 531.479 null]
 >> endobj
-5027 0 obj <<
-/D [5018 0 R /XYZ 390.766 531.479 null]
+4718 0 obj <<
+/D [4709 0 R /XYZ 390.766 531.479 null]
 >> endobj
-1901 0 obj <<
-/D [5018 0 R /XYZ 71.731 513.447 null]
+1923 0 obj <<
+/D [4709 0 R /XYZ 71.731 513.447 null]
 >> endobj
-942 0 obj <<
-/D [5018 0 R /XYZ 452.394 445.912 null]
+958 0 obj <<
+/D [4709 0 R /XYZ 452.394 445.912 null]
 >> endobj
-5029 0 obj <<
-/D [5018 0 R /XYZ 71.731 433.741 null]
+4720 0 obj <<
+/D [4709 0 R /XYZ 71.731 433.741 null]
 >> endobj
-5030 0 obj <<
-/D [5018 0 R /XYZ 71.731 411.401 null]
+4721 0 obj <<
+/D [4709 0 R /XYZ 71.731 411.401 null]
 >> endobj
-5031 0 obj <<
-/D [5018 0 R /XYZ 437.99 411.401 null]
+4722 0 obj <<
+/D [4709 0 R /XYZ 437.99 411.401 null]
 >> endobj
-5032 0 obj <<
-/D [5018 0 R /XYZ 71.731 391.312 null]
+4723 0 obj <<
+/D [4709 0 R /XYZ 71.731 391.312 null]
 >> endobj
-5033 0 obj <<
-/D [5018 0 R /XYZ 130.401 354.614 null]
+4724 0 obj <<
+/D [4709 0 R /XYZ 130.401 354.614 null]
 >> endobj
-5017 0 obj <<
-/Font << /F33 1306 0 R /F27 1208 0 R /F23 1201 0 R /F61 2529 0 R /F35 1569 0 R >>
+4708 0 obj <<
+/Font << /F33 1322 0 R /F27 1224 0 R /F23 1217 0 R /F61 2561 0 R /F35 1589 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-5036 0 obj <<
+4727 0 obj <<
 /Length 3012      
 /Filter /FlateDecode
 >>
 stream
-xڝY{�����>����x|SL`��&8M�Q�I�+�9��GΗ�߽�ٙ�����q�������sG���?o�xN�㧎G���rW�|q�	Eǎ��/Ln� q�]��.8|~wu�7?X��G��n?���ī�������M^~�l�d�~�ȷmƾ���x�X$��I�8��-6Hd�]�{�a�V$k��f��u�p�穩�x4����g��x����kYU�T���m�
��XZh(�V;�@��k�F}���/�u��ͫ���曻���l�5�rs~K�ԓ�y��ll��M����(E�se+��m6m��jD�F�����!N�nFZ��е#;+/q|/�k#�34^;�|�u��|[��f�[���﮳����6���*ӗ��9�{�� ���a*G����]c���i,�r,���}��"�es��BmDշ5C85�t&�Aȵ���� ���0��(��4�"0�el�7Y��K;����_��L�Е�,��c�k�b+���n�%�|r�T${?��Ɂ|�s���Iҝ^�s
-����t��a<g������剝]��<�X|�0�z�׻9�x^�DI��z�ģ������U����~������I��4
V�^���^};s�Y�3L���3[+�6��&��q^�![��92
-ws���&$�6d����xI[o�;;��;�8�8 �}�A��m�F�b;'@�]���W%A��M�&��U?0&o�S+����l#�#.���3��J��x͵�0~�P~!�eM+�i�����T�.b���?��0p�`�
�7���C��z^��d�������[�D^���$_6��:�h�����#�Z▾�1
-]�lT�e�(��D>(���§N��N-T��~Χל_D�e�����C���s�!�75!�tͣ��o9ʸh�*g�^�����(�:/�d�ȩ;��JP���T���y<��(��Ʋ6I���#�ډ�zd�Z=P�����k+��bjR�D`���ܑ+��V����,Z����|��{��q��s���9��{�v8�k��n.��l�P��*�Y_v#�#n�o�&���O�-2,���e�x?({�������x�9U����o��A�R�w�x��itxp;��S׵��)x���+�u��*�Yg!3��<�)+x�=��ʷ��m+�K����w��]�4+��>/H��	��1	��*��v�o���<4:ۗ�u��1t��~��g����y�T$�щK�E��^�z������u6A����ez4Z#
-�~-ゐ�^��v� ��)��\� ]�h�Gʪ�r,�ms�&�NM8l5��͝��d��͈�ʃ_US-�G0X�,N,R҄]���7����۷wLR�_ʾm(�0��f���#Pw�渍�����D_��is��:��B5+����ùJg5Ŕ"��o���rUY���~,��A��
(�"@����03*�P�D�d���Y6����V��-�O<��^@&b�*+u��q@t�2R�y�a��6���8��|�rӃ��Id��d�����L�)@���{�rEɗ��p�ۙ��C�(Q�iF��Khz�~,J-��TU
������*<
-�En؛J��H�`�]�1%g,?�Ez�%1sDZ�WyN>���nn"����e��f(Ʊ���F�7iũ[��0�����7��/2���_J��8�&�z�H�-���=�ecL��΀G�1D�?�9m� �{�������#T��ZvܷS�;�nMwa���A/x,��)�����>	.%RdQ��x�ӡK���0u����i����&H����
o/����d�dٿ��<�%����O?xA���/.<v�(K�y��%gԙ�ԓ\�`O[،rhۜ�|��J'e7?�N</�����x����ذ�W�勍='����r�>F�a�)ƺt>�݅V<$�k�G-��EI���h���[m�V�`�m�h�B�hm[}���xv"�R4
܏t3��tkN��.�N�aˡ7No׸�����8N�V��P�9"��_h��)�EZ`^2�ȥM�3�����~\L�?�B�O�at{NG��7�x�ɲ�Ge8I인2"q�k�*+������\�Ɯ���Ħ�I��5fB�ɳ�8������`@ҙ��JVͯ-���vl��DǶE8��%h�q!o*d��q�F_r�[Y���:Q��Rt�o Ok<w�VB�A�V)�\�/�@jx�в�\<�]�㊿�t�uR���P��-������uuS����<%��x����OY��G	�\�]�Gjc6�1�r;|'LN��C�L
-��A�����ը�� ���)n�����.sFR��L�:oe���e^��B�Ł�a(pe�l�ѲQ��z�+�D�z4M���q���y�&���Ѩ�s�����eȬ�`0�Z9�c�����<_�4��i��"0^���L���^�?������ݲe���4R5GO����M�-�m	�k<�j�#����� H�k똹���|8}�����{�2\�S
-��B��h�M^f�u�\v�i�c���K��*���1$4�6��T�Y&�Bg���
�T�…�?����@"��%�����P�_x�e��̥ɯ�C͠^4~"#���}#S65D+�ɥ�-?.l"��Y5�ڔ�Qd��-�ɜ��'�k𰵞!���,#�D�VZ��΍0/��RO�Q:%0����v��hsz�ez��ɡ��K��ך�܂r�5Ms��\.�mz!G�l��98)��nP���}��'�Df�ç܀�[��cB���8Y��p�wٱ�n8���ɑɎ��0t��5/Ѝ�%1_
-��v���d�4�P��a(��Z�`�����Í��T��,�y�M�4`���ȵIOo$�P
-���������Z�� ��N��JD����i��;g�%��푄;��|j٧���só�%������+&dendstream
+xڝk�ܶ����E����N�[1��6��'n�3
+4��])��%��K����P�=�]#0���!��Y�r�X�‰}�x��E�*����f��LD���&w�;i�v3/n�����+�u�0]��]\���hu���~�u��ˏ��'�}_���������E�J�4򑃻��1/�-T�`E�%�ZҸ��	n456�/\�s]/+eE/��eU�R�绶hP6D�ai�H ?\% P�y\K�`(��/�~���W������׷�c�k8���,��T�Ҽ�U���a�k�6�-Jc���eY�6w�o��C�	�d����v�S���Bw�U;����㉐�1A��Y��ӽ׵l�]U6�0o��7���6�]��i��2S��#��=ӏ�~��0��1F=~�~�3�̨˪ԥhxh{^�dE�i8SR�mM�����C<�C ȵ���N�E|@�3J��%��IXmY�uV���7���s-�
������.z� Zlb�Y���d�C'LY������*��8M�p���k���X��^2	\�����DNG'6Ò���P��v;E!|'��U�'�Ɣ�W���r@�����w�ā�9~�������W��՛��&N`�>����Ak�n�bg�م෱��C�? �p��C�A2Ÿn�i��kn N����$.�N���O��쀤��]�v��<Ev����J���Ap��t�~V}G���N--;��Ȧihq��sDDP�*%�5[�a�
+�Bb|��>�˚��bi���*.b5��?���w?��
ݟ7���*��<7m�d!d2����b'�,d���t�Բ�Lh�3��uj�[��(T�����y� �r���,|�����؂*�ܗ|zE���Ǯw��{y;0@��&D�!mi4��-5��v�r����`Ni�Vy	ፗhJ}��84����L��_�?ACk���X�&� �>%�C;P��X�;�q�r{e%a_LM
+���5w�����C|f-s@ol���{���2I�.��Y�Q����>�k$SL7��Q��P��*�Y_v�`
7F7��.���Y���p�7��=����S��Ҕ�������Q�R�w�X����h�x캶���[]p�C��_9XW����:�aD�1�YAs&�!�|��жl����M���e��lZ0C�Ҫ5G�䘈�o��V	���a(���u��ӻ��������-Lq�47Z��dt��"�`
���̴)~ah�:� �����2=�w�2��b=�+9ٮddy8'���HW(�G㑼���l�]�	n'G8l�����tD4{�fD\%����f��#,	��N�\�]�����?�����-��)�e�6Y��d3��rO�P��洍���#�H_M�iS�M<��B6G+�6����J'5E�"��o���)�ʲB!	}_��!�7@���5X��QɄ�E2';�͒�����8���B�@�q0��DTe%���\A�����հ�6l�������N�0�0��`�d^\�l�{V�����4�/���*W(��`n�Ą��G	��"�
������Ei��3YUÅ�9�Jҋ��
+�`V���R��1��"L��	K�d���eN������y�>�Mnn"��F�e��f(����MZqꖾ`"Y���#��+�+�g:�R����"f)��\�e�t��XC�h�;:��m����S�>�h�X�vlr�����.h����,������G٩���b"�,�Q��x,�R�Y#!H��w�`#펙<���z��^�������p@�Ά�������ѓ���k��_�~�|��'�V���<�����3����a��-lF9�mNg>]������Pg�/lj�/x���Ȱ�W�勍�X׺�k�VZ}�ׅ�+F�c�]h���D����v�Er���d���e�Vo������㮆h���hm[}��2{vB��h껟�f��֜53.^],�E�ʰ�P7�o׸����@8J�V��P�("��_p�)�E\`^2��R'�BS��B?.�ћ|��Gs�`x{N���7'\x�����w�H��2"Q��ƾk�*+���)�\REQb0>��"pO�
�1c�M�=�!p�B���x&���U�k��y;�or�#�Bo�%���L>ڔ�8�iu!�A=0�ʲ�m�	��-E'��y�G��v��JЭ�e��G.hLk 9�]hY	�����/)]�N��1vc��dk��
+��joF���h��,�Y��R�$p��1��Ľ�l����y�wȤI��)1�@�g/{�s��^<����&jj���<G���t�2S�N[+Ce��2�Pkq@��<W6��l���wE���M���d\���^�oۘ���h��9���Skjz2�70м��Щ|��
?_c�4����d�
+�h��#r4ݲ�{I�`R��	��ݲ%�c櫓�çh~���ʖö�<�j�#����� P�u��V�M>�?��k|��
��`
+q��гІ
~���$�|��tӰ���� �3��V���B�m��eb.t�a.԰�Tp�B�$=�2K+i	���TAP�_x�eP��K�_1�[p5�z��	������Q��X4`�|�K�Zz\�؄���j̕)I��d��'s�2ͯ]�[�	���2�^@�n�X P���r�*��;r����𨆝��4��g��2�drP�m�R���� 7�mM�Ӕ�B��z�^�2�m���H3�~;H\w����?����
5`�/��Pm�<��9�,��Cv��N+�mrb�����~#���p_�KfV�n���,5�aH��m����,�؉=��s���L����L��~�
+]���F����z[���O�r�Y�v���H6,~,�{�8��/���	u�gz	�[���ů�k�r��.F&endstream
 endobj
-5035 0 obj <<
+4726 0 obj <<
 /Type /Page
-/Contents 5036 0 R
-/Resources 5034 0 R
+/Contents 4727 0 R
+/Resources 4725 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 4994 0 R
+/Parent 4685 0 R
 >> endobj
-5037 0 obj <<
-/D [5035 0 R /XYZ 71.731 729.265 null]
+4728 0 obj <<
+/D [4726 0 R /XYZ 71.731 729.265 null]
 >> endobj
-1902 0 obj <<
-/D [5035 0 R /XYZ 71.731 718.306 null]
+1924 0 obj <<
+/D [4726 0 R /XYZ 71.731 718.306 null]
 >> endobj
-946 0 obj <<
-/D [5035 0 R /XYZ 271.435 703.236 null]
+962 0 obj <<
+/D [4726 0 R /XYZ 271.435 703.236 null]
 >> endobj
-5038 0 obj <<
-/D [5035 0 R /XYZ 71.731 682.175 null]
+4729 0 obj <<
+/D [4726 0 R /XYZ 71.731 682.175 null]
 >> endobj
-5039 0 obj <<
-/D [5035 0 R /XYZ 297.998 673.5 null]
+4730 0 obj <<
+/D [4726 0 R /XYZ 297.998 673.5 null]
 >> endobj
-1903 0 obj <<
-/D [5035 0 R /XYZ 71.731 660.449 null]
+1925 0 obj <<
+/D [4726 0 R /XYZ 71.731 660.449 null]
 >> endobj
-950 0 obj <<
-/D [5035 0 R /XYZ 365.87 615.294 null]
+966 0 obj <<
+/D [4726 0 R /XYZ 365.87 615.294 null]
 >> endobj
-5040 0 obj <<
-/D [5035 0 R /XYZ 71.731 606.471 null]
+4731 0 obj <<
+/D [4726 0 R /XYZ 71.731 606.471 null]
 >> endobj
-5041 0 obj <<
-/D [5035 0 R /XYZ 457.285 593.735 null]
+4732 0 obj <<
+/D [4726 0 R /XYZ 457.285 593.735 null]
 >> endobj
-5042 0 obj <<
-/D [5035 0 R /XYZ 199.72 580.783 null]
+4733 0 obj <<
+/D [4726 0 R /XYZ 199.72 580.783 null]
 >> endobj
-5043 0 obj <<
-/D [5035 0 R /XYZ 258.499 580.783 null]
+4734 0 obj <<
+/D [4726 0 R /XYZ 258.499 580.783 null]
 >> endobj
-5044 0 obj <<
-/D [5035 0 R /XYZ 315.525 580.783 null]
+4735 0 obj <<
+/D [4726 0 R /XYZ 315.525 580.783 null]
 >> endobj
-5045 0 obj <<
-/D [5035 0 R /XYZ 71.731 578.626 null]
+4736 0 obj <<
+/D [4726 0 R /XYZ 71.731 578.626 null]
 >> endobj
-5046 0 obj <<
-/D [5035 0 R /XYZ 118.555 540.062 null]
+4737 0 obj <<
+/D [4726 0 R /XYZ 118.555 540.062 null]
 >> endobj
-5047 0 obj <<
-/D [5035 0 R /XYZ 71.731 509.785 null]
+4738 0 obj <<
+/D [4726 0 R /XYZ 71.731 509.785 null]
 >> endobj
-5048 0 obj <<
-/D [5035 0 R /XYZ 71.731 509.785 null]
+4739 0 obj <<
+/D [4726 0 R /XYZ 71.731 509.785 null]
 >> endobj
-5049 0 obj <<
-/D [5035 0 R /XYZ 71.731 490.079 null]
+4740 0 obj <<
+/D [4726 0 R /XYZ 71.731 490.079 null]
 >> endobj
-5050 0 obj <<
-/D [5035 0 R /XYZ 165.11 477.128 null]
+4741 0 obj <<
+/D [4726 0 R /XYZ 165.11 477.128 null]
 >> endobj
-5051 0 obj <<
-/D [5035 0 R /XYZ 71.731 469.99 null]
+4742 0 obj <<
+/D [4726 0 R /XYZ 71.731 469.99 null]
 >> endobj
-5052 0 obj <<
-/D [5035 0 R /XYZ 71.731 469.99 null]
+4743 0 obj <<
+/D [4726 0 R /XYZ 71.731 469.99 null]
 >> endobj
-5053 0 obj <<
-/D [5035 0 R /XYZ 164.065 446.244 null]
+4744 0 obj <<
+/D [4726 0 R /XYZ 164.065 446.244 null]
 >> endobj
-5054 0 obj <<
-/D [5035 0 R /XYZ 210.352 446.244 null]
+4745 0 obj <<
+/D [4726 0 R /XYZ 210.352 446.244 null]
 >> endobj
-5055 0 obj <<
-/D [5035 0 R /XYZ 352.569 446.244 null]
+4746 0 obj <<
+/D [4726 0 R /XYZ 352.569 446.244 null]
 >> endobj
-5056 0 obj <<
-/D [5035 0 R /XYZ 442.661 446.244 null]
+4747 0 obj <<
+/D [4726 0 R /XYZ 442.661 446.244 null]
 >> endobj
-5057 0 obj <<
-/D [5035 0 R /XYZ 203.715 433.292 null]
+4748 0 obj <<
+/D [4726 0 R /XYZ 203.715 433.292 null]
 >> endobj
-5058 0 obj <<
-/D [5035 0 R /XYZ 372.061 433.292 null]
+4749 0 obj <<
+/D [4726 0 R /XYZ 372.061 433.292 null]
 >> endobj
-5059 0 obj <<
-/D [5035 0 R /XYZ 71.731 426.154 null]
+4750 0 obj <<
+/D [4726 0 R /XYZ 71.731 426.154 null]
 >> endobj
-5060 0 obj <<
-/D [5035 0 R /XYZ 460.217 415.36 null]
+4751 0 obj <<
+/D [4726 0 R /XYZ 460.217 415.36 null]
 >> endobj
-5061 0 obj <<
-/D [5035 0 R /XYZ 71.731 382.318 null]
+4752 0 obj <<
+/D [4726 0 R /XYZ 71.731 382.318 null]
 >> endobj
-5062 0 obj <<
-/D [5035 0 R /XYZ 71.731 382.318 null]
+4753 0 obj <<
+/D [4726 0 R /XYZ 71.731 382.318 null]
 >> endobj
-5063 0 obj <<
-/D [5035 0 R /XYZ 237.451 371.524 null]
+4754 0 obj <<
+/D [4726 0 R /XYZ 237.451 371.524 null]
 >> endobj
-5064 0 obj <<
-/D [5035 0 R /XYZ 71.731 358.572 null]
+4755 0 obj <<
+/D [4726 0 R /XYZ 71.731 358.572 null]
 >> endobj
-5065 0 obj <<
-/D [5035 0 R /XYZ 220.87 345.621 null]
+4756 0 obj <<
+/D [4726 0 R /XYZ 220.87 345.621 null]
 >> endobj
-5066 0 obj <<
-/D [5035 0 R /XYZ 71.731 338.483 null]
+4757 0 obj <<
+/D [4726 0 R /XYZ 71.731 338.483 null]
 >> endobj
-5067 0 obj <<
-/D [5035 0 R /XYZ 257.124 327.688 null]
+4758 0 obj <<
+/D [4726 0 R /XYZ 257.124 327.688 null]
 >> endobj
-5068 0 obj <<
-/D [5035 0 R /XYZ 358.713 327.688 null]
+4759 0 obj <<
+/D [4726 0 R /XYZ 358.713 327.688 null]
 >> endobj
-1904 0 obj <<
-/D [5035 0 R /XYZ 71.731 320.55 null]
+1926 0 obj <<
+/D [4726 0 R /XYZ 71.731 320.55 null]
 >> endobj
-954 0 obj <<
-/D [5035 0 R /XYZ 462 277.453 null]
+970 0 obj <<
+/D [4726 0 R /XYZ 462 277.453 null]
 >> endobj
-5069 0 obj <<
-/D [5035 0 R /XYZ 71.731 265.015 null]
+4760 0 obj <<
+/D [4726 0 R /XYZ 71.731 265.015 null]
 >> endobj
-5070 0 obj <<
-/D [5035 0 R /XYZ 117.29 255.893 null]
+4761 0 obj <<
+/D [4726 0 R /XYZ 117.29 255.893 null]
 >> endobj
-5071 0 obj <<
-/D [5035 0 R /XYZ 427.895 255.893 null]
+4762 0 obj <<
+/D [4726 0 R /XYZ 427.895 255.893 null]
 >> endobj
-5072 0 obj <<
-/D [5035 0 R /XYZ 71.731 224.91 null]
+4763 0 obj <<
+/D [4726 0 R /XYZ 71.731 224.91 null]
 >> endobj
-5073 0 obj <<
-/D [5035 0 R /XYZ 173.632 212.058 null]
+4764 0 obj <<
+/D [4726 0 R /XYZ 173.632 212.058 null]
 >> endobj
-5074 0 obj <<
-/D [5035 0 R /XYZ 420.183 212.058 null]
+4765 0 obj <<
+/D [4726 0 R /XYZ 420.183 212.058 null]
 >> endobj
-5075 0 obj <<
-/D [5035 0 R /XYZ 71.731 166.065 null]
+4766 0 obj <<
+/D [4726 0 R /XYZ 71.731 166.065 null]
 >> endobj
-5076 0 obj <<
-/D [5035 0 R /XYZ 71.731 122.23 null]
+4767 0 obj <<
+/D [4726 0 R /XYZ 71.731 122.23 null]
 >> endobj
-5077 0 obj <<
-/D [5035 0 R /XYZ 71.731 122.23 null]
+4768 0 obj <<
+/D [4726 0 R /XYZ 71.731 122.23 null]
 >> endobj
-5034 0 obj <<
-/Font << /F23 1201 0 R /F27 1208 0 R /F35 1569 0 R /F44 2037 0 R /F32 1215 0 R /F33 1306 0 R >>
+4725 0 obj <<
+/Font << /F23 1217 0 R /F27 1224 0 R /F35 1589 0 R /F44 2069 0 R /F32 1231 0 R /F33 1322 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-5080 0 obj <<
-/Length 1499      
+4771 0 obj <<
+/Length 1496      
 /Filter /FlateDecode
 >>
 stream
-xڵWK��6�����H������d�`�l0h-��Ack�nl��c��%EyƓ�"9���)�")����+~|�p��q�ʛ�����J�q�D$�~bӋ��ei��^o..�J�,���fw��L�jS���:�����D�:�n�;��[�]�;��i}��Qֵ�V#'q�����k���;p�1K#R�S��1���	�/ 	�'��#ÜM�S����*cYؓ���'oЉ�;��D�V� jl�+��<'�5Tc}���p��э#��Jիgn9V�l]9�����V�jň�&)]�� �c�����Jﭛ�~]�OD�+Tr���Q��Gig.X�Q�
-eF��|gP&v/h%uAՖ�upU�tA�@�F�J�R�r��
-�m;^ѳ�*�7�_%f��[9�?,$�8FH�(�@eFٻ^������nG���l��ǝ��?����sH�o���6����$����Ԯ�[����䛵7��j�WG5���ڹ��r?�{��p�)�?�vT6��p�9biZ�7������/TO$u 'o���jB��N}n�-,5i� �h�[����~ ƣ+|a�"R�9�����;�>���P¸4�U]����DQdS��`q
-8��;��/�p�9³f,|/�e>?I��77��
-��}����m�����F�����֛�ω�H�G�n}����`�|5�Wj:#��JL�!bzAb#�'IV�IZη1��|>R��$��T�g�8���ķ0nȪ�[\�ց]�6� �Y��'9�f�r~�/#����K"	����U�H*��ǪW����k7�Nh�kF���w �w;��L����ksoCjUoUM��ƾ�P�+-ڴrEF���AB�V����z���)�c
s�5��t1�r�s¶Nzm�ڠ!�c� �5'�� �[�}R��*�۴&s����0L�c.|I�fm[���ႍ�zd.��S�����1e��թ��w���h�hB/�C����?}_�j�#NX�
-[#�9����'��ub��Z�����R;��ǖ3MB��!�)<#3���1�zUל5�DlZZ6�u]��Y�K�0]r?�!4[�lŽl׋X�}�����m����}&D�n��z�ˤ�ycč���3@��U��{�����?�p�����;n�aa豛'�L,�N�ۣ=}�j_R�Y��ؚ<6J�I�
-ֽ��s{�e�)�C5��93�����
-��bje�g��0��݋��{!k0^��9�o���):3���N���rޝ�u�q�f�^���7�0��}oΓ0;�<y��Ƥ�!��<�q<��/q����-�q�./�G�>/Y�I��U9��c{	�X�\>1pSl�4��u���۱��އ��>����؉1N���S��4~�=N���Nΐ<����ccF���6���/  G
-i��_I+�E�� 8>L$��
-�%S�" �������L��endstream
+xڵWK��6�����H���������`�Z����֌�ز��>��K��'�ErH1Q4ER���W>��*�,	`q�ʛ��/?]p+�1�����^$,K�����vsq��V�gq��6��?`"�W���M�)]T��'�Թf��I�rߙdM�[=����X�9������
|G�����gp�1K#R}�S��b��	<B?@.�O#w�8;����ǒUƲ8��g^Nݢ)w�ډ�TA���*���&��4Tc����p��ɍ#��Jիn9V�l]9���姢ՊyCR�neA��R-
=
��[7��u�?��Pɽ�#GikP�m��`dFA+�}A&�A�ؽ���pT[V��U-��m��r"+�K=ʥ+Է�xE�D��o~��ыo�P~����E %�4I�e�z��;�����S�^�Q�wz��tfdzZ<�!���^^���f�;�P��N~T��Vl��ړ��ހ�o�Qf\�0�j�J�K� �e,�Õ�P�T���Q�4
+Å戥Ah5�B�"vھP=�XԁH��m�
+�	�C;����Ԥ��<��o�.Z,���O���
�<T�Hi<c@�h\؎���HZ^��Q��qi����1}��ȦT����7�w��'^�!�,s�g�X�^!�|~�J]onv_�o?��@e%��*�ۡݍ���j0x���_�$f#����U�N�	_�h�f�Uj:#��JL�#bzEb#�'IV�I�η1��|>R��$��T�g�8���ķ0nȪ�[��ց]�6� �Y��'9~�v9�y���CY�%�����{�ͪq$��c�+QA��ڍ��oc��F���z�9�=��E��-���ېZ�[US�o:�Jˁ�\����|t���Ulz!�]�<[:q�an�����.�~B."�`N��I��\4$sL$��D:�Dvk?��#2���6�ɜ�'�t5��_Rg�Y��62��p��t=2�[ϩ���D��2���TT�;��M�`4��g}Cğ�/j5ӑ?�lU����ɜN�h����:�TM-i��v��z�����D��ih
+��B�L����e�g�^�5�@M-����b]W�~fN�E!L�܏`���&�v��q޵�\No���0lj
+�gB$_�1O��LZ��E�x;�?\Kڵ��S|F����H�-`��Y`�g�����xR�Ă�ĸ=��ZV��
+΂���Q�Oj���,,��.�Ma�<V�Hq���uy�[��!�&�N�y&O3�ٽhP?���%Ѻ����;��3�`bǤߔ��y��s~S'0_���<�z�s�|���<	�C��[�&�0��p��LX�?�F[PrW�-DZ���%��dy'5�W�p�K��%Xc]s�̰M�y��;����boGrBzL(���c'Ƹ1v��S��$~�=N���Nΐ<����ccư�6���o�F
+i���G+�E̟� 8>L$�X�
+�%S�a&>74�=��/�.�cendstream
 endobj
-5079 0 obj <<
+4770 0 obj <<
 /Type /Page
-/Contents 5080 0 R
-/Resources 5078 0 R
+/Contents 4771 0 R
+/Resources 4769 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 4994 0 R
+/Parent 4685 0 R
 >> endobj
-5081 0 obj <<
-/D [5079 0 R /XYZ 71.731 729.265 null]
+4772 0 obj <<
+/D [4770 0 R /XYZ 71.731 729.265 null]
 >> endobj
-1905 0 obj <<
-/D [5079 0 R /XYZ 71.731 718.306 null]
+1927 0 obj <<
+/D [4770 0 R /XYZ 71.731 718.306 null]
 >> endobj
-958 0 obj <<
-/D [5079 0 R /XYZ 155.521 676.38 null]
+974 0 obj <<
+/D [4770 0 R /XYZ 155.521 676.38 null]
 >> endobj
-1906 0 obj <<
-/D [5079 0 R /XYZ 71.731 669.666 null]
+1928 0 obj <<
+/D [4770 0 R /XYZ 71.731 669.666 null]
 >> endobj
-962 0 obj <<
-/D [5079 0 R /XYZ 206.096 624.303 null]
+978 0 obj <<
+/D [4770 0 R /XYZ 206.612 624.303 null]
 >> endobj
-5082 0 obj <<
-/D [5079 0 R /XYZ 71.731 615.48 null]
+4773 0 obj <<
+/D [4770 0 R /XYZ 71.731 615.48 null]
 >> endobj
-5083 0 obj <<
-/D [5079 0 R /XYZ 71.731 582.654 null]
+4774 0 obj <<
+/D [4770 0 R /XYZ 71.731 582.654 null]
 >> endobj
-5084 0 obj <<
-/D [5079 0 R /XYZ 71.731 572.692 null]
+4775 0 obj <<
+/D [4770 0 R /XYZ 71.731 572.692 null]
 >> endobj
-5085 0 obj <<
-/D [5079 0 R /XYZ 71.731 572.692 null]
+4776 0 obj <<
+/D [4770 0 R /XYZ 71.731 572.692 null]
 >> endobj
-5086 0 obj <<
-/D [5079 0 R /XYZ 71.731 561.784 null]
+4777 0 obj <<
+/D [4770 0 R /XYZ 71.731 561.784 null]
 >> endobj
-5087 0 obj <<
-/D [5079 0 R /XYZ 71.731 551.348 null]
+4778 0 obj <<
+/D [4770 0 R /XYZ 71.731 551.348 null]
 >> endobj
-5088 0 obj <<
-/D [5079 0 R /XYZ 71.731 538.472 null]
+4779 0 obj <<
+/D [4770 0 R /XYZ 71.731 538.472 null]
 >> endobj
-5089 0 obj <<
-/D [5079 0 R /XYZ 71.731 528.035 null]
+4780 0 obj <<
+/D [4770 0 R /XYZ 71.731 528.035 null]
 >> endobj
-5090 0 obj <<
-/D [5079 0 R /XYZ 71.731 516.379 null]
+4781 0 obj <<
+/D [4770 0 R /XYZ 71.731 516.379 null]
 >> endobj
-5091 0 obj <<
-/D [5079 0 R /XYZ 76.712 483.292 null]
+4782 0 obj <<
+/D [4770 0 R /XYZ 76.712 483.292 null]
 >> endobj
-5092 0 obj <<
-/D [5079 0 R /XYZ 71.731 468.348 null]
+4783 0 obj <<
+/D [4770 0 R /XYZ 71.731 468.348 null]
 >> endobj
-5093 0 obj <<
-/D [5079 0 R /XYZ 486.228 456.692 null]
+4784 0 obj <<
+/D [4770 0 R /XYZ 486.228 456.692 null]
 >> endobj
-5094 0 obj <<
-/D [5079 0 R /XYZ 451.424 445.035 null]
+4785 0 obj <<
+/D [4770 0 R /XYZ 451.424 445.035 null]
 >> endobj
-5095 0 obj <<
-/D [5079 0 R /XYZ 71.731 403.09 null]
+4786 0 obj <<
+/D [4770 0 R /XYZ 71.731 403.09 null]
 >> endobj
-5096 0 obj <<
-/D [5079 0 R /XYZ 71.731 393.127 null]
+4787 0 obj <<
+/D [4770 0 R /XYZ 71.731 393.127 null]
 >> endobj
-5097 0 obj <<
-/D [5079 0 R /XYZ 140.075 384.632 null]
+4788 0 obj <<
+/D [4770 0 R /XYZ 140.075 384.632 null]
 >> endobj
-1907 0 obj <<
-/D [5079 0 R /XYZ 71.731 324.627 null]
+1929 0 obj <<
+/D [4770 0 R /XYZ 71.731 324.627 null]
 >> endobj
-966 0 obj <<
-/D [5079 0 R /XYZ 275.663 279.373 null]
+982 0 obj <<
+/D [4770 0 R /XYZ 276.18 279.373 null]
 >> endobj
-5098 0 obj <<
-/D [5079 0 R /XYZ 71.731 279.157 null]
+4789 0 obj <<
+/D [4770 0 R /XYZ 71.731 279.157 null]
 >> endobj
-5099 0 obj <<
-/D [5079 0 R /XYZ 71.731 260.587 null]
+4790 0 obj <<
+/D [4770 0 R /XYZ 71.731 260.587 null]
 >> endobj
-5100 0 obj <<
-/D [5079 0 R /XYZ 71.731 209.594 null]
+4791 0 obj <<
+/D [4770 0 R /XYZ 71.731 209.594 null]
 >> endobj
-5101 0 obj <<
-/D [5079 0 R /XYZ 71.731 186.581 null]
+4792 0 obj <<
+/D [4770 0 R /XYZ 71.731 186.581 null]
 >> endobj
-5102 0 obj <<
-/D [5079 0 R /XYZ 188.024 173.729 null]
+4793 0 obj <<
+/D [4770 0 R /XYZ 188.024 173.729 null]
 >> endobj
-5103 0 obj <<
-/D [5079 0 R /XYZ 158.345 147.826 null]
+4794 0 obj <<
+/D [4770 0 R /XYZ 158.345 147.826 null]
 >> endobj
-5104 0 obj <<
-/D [5079 0 R /XYZ 71.731 48.817 null]
+4795 0 obj <<
+/D [4770 0 R /XYZ 71.731 48.817 null]
 >> endobj
-5078 0 obj <<
-/Font << /F23 1201 0 R /F27 1208 0 R /F35 1569 0 R /F44 2037 0 R /F33 1306 0 R >>
+4769 0 obj <<
+/Font << /F23 1217 0 R /F27 1224 0 R /F35 1589 0 R /F44 2069 0 R /F33 1322 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-5107 0 obj <<
-/Length 627       
+4798 0 obj <<
+/Length 625       
 /Filter /FlateDecode
 >>
 stream
-x�͖Mo�0����c�8�ܚ�L��)Rs[wp�4/j�O?C�4i�J�r�?�����1��?l���l�ɌQ>AF*g�Lpa�!ֳ��fb/��?s�ͽ�Lt���Qbl��F�����i�@u�bE˸�/��a��&+���彞Y�I�ǭʸ�Im��|�|�2��}Ϲ��s�=q��& :�i�|�f�m.�*P\�hB
��c�im��|��&���%���&��F�]�$��v0��eeb�v�Ս��jwTdXX{G���_���j�hp5R0��V��$������e��I�tz!Ci���%C7&����CX��ԁ��
v'A�PY�U����E�L��t(��$�t���JD�Q�t��/Xv�F߲��)�3I*�;��P�"}��+q�
-��0���U�D
϶v�9��r�|��/�|5�˱얨3��[.���D�_�c�eTۯ��y�c���jchu�������s����yh������td���;O�s���b�����!+�Lm4
-R1�qm�Y�
Ӈm����!W�b�"���I4��
-j)������@�r���A�`+p����
���L=�a����rv7���UT��^�L����}ƽ<endstream
+x�͖�r�0��<���²._v!.:��L�5]�1�ʶ�˄��+!!�̤�Ip�w�����RlyzT
$�d¬�!+S�|�>��C�g1��ȝQj0�Pkuo�1���G	��V�p#eZ&��vC��q�ˎ3��M˅�m^�����ތK�G ���E�t"m쟫/�O�Cr�z0�����1g�w�����ǻ�#�r'�
+�֡�ZXEf9�(�&�vi�|3IF�Mx(Eœ������,7m+C�m�ڔ��ƒ���m��M�u�Q�YV����r�,���SWc
�Yh`��m�@�jP� 6.TqW�e��T���5��ޒa�1�e�C8{+�^���N�p�����y�!�䙊�Mȋ4Rt�7�/�����
+�^��J����S����'w!��E��������8aB)���ԉ�����X��5r:�ј·�[��\&o���s(S�-��Wq�~�Q��o1����cgf|��W����ݩ�Fn)����6{���&?w��hFU?n����Ac �1�7�֟�0�rs�fOx�j�+��r����2�tXC���_��(���PO*��W���/;��1�������r֞1�CD���<�Z+uN�聽Nendstream
 endobj
-5106 0 obj <<
+4797 0 obj <<
 /Type /Page
-/Contents 5107 0 R
-/Resources 5105 0 R
+/Contents 4798 0 R
+/Resources 4796 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 4994 0 R
+/Parent 4685 0 R
 >> endobj
-5108 0 obj <<
-/D [5106 0 R /XYZ 71.731 729.265 null]
+4799 0 obj <<
+/D [4797 0 R /XYZ 71.731 729.265 null]
 >> endobj
-5109 0 obj <<
-/D [5106 0 R /XYZ 71.731 741.22 null]
+4800 0 obj <<
+/D [4797 0 R /XYZ 71.731 741.22 null]
 >> endobj
-5110 0 obj <<
-/D [5106 0 R /XYZ 71.731 718.306 null]
+4801 0 obj <<
+/D [4797 0 R /XYZ 71.731 718.306 null]
 >> endobj
-5111 0 obj <<
-/D [5106 0 R /XYZ 158.345 659.527 null]
+4802 0 obj <<
+/D [4797 0 R /XYZ 158.345 659.527 null]
 >> endobj
-5112 0 obj <<
-/D [5106 0 R /XYZ 71.731 618.68 null]
+4803 0 obj <<
+/D [4797 0 R /XYZ 71.731 618.68 null]
 >> endobj
-5113 0 obj <<
-/D [5106 0 R /XYZ 71.731 593.609 null]
+4804 0 obj <<
+/D [4797 0 R /XYZ 71.731 593.609 null]
 >> endobj
-5114 0 obj <<
-/D [5106 0 R /XYZ 188.024 582.814 null]
+4805 0 obj <<
+/D [4797 0 R /XYZ 188.024 582.814 null]
 >> endobj
-5115 0 obj <<
-/D [5106 0 R /XYZ 181.907 569.863 null]
+4806 0 obj <<
+/D [4797 0 R /XYZ 181.907 569.863 null]
 >> endobj
-5116 0 obj <<
-/D [5106 0 R /XYZ 158.345 556.912 null]
+4807 0 obj <<
+/D [4797 0 R /XYZ 158.345 556.912 null]
 >> endobj
-5117 0 obj <<
-/D [5106 0 R /XYZ 71.731 516.065 null]
+4808 0 obj <<
+/D [4797 0 R /XYZ 71.731 516.065 null]
 >> endobj
-5118 0 obj <<
-/D [5106 0 R /XYZ 71.731 493.051 null]
+4809 0 obj <<
+/D [4797 0 R /XYZ 71.731 493.051 null]
 >> endobj
-5119 0 obj <<
-/D [5106 0 R /XYZ 188.024 480.199 null]
+4810 0 obj <<
+/D [4797 0 R /XYZ 188.024 480.199 null]
 >> endobj
-5120 0 obj <<
-/D [5106 0 R /XYZ 181.907 467.248 null]
+4811 0 obj <<
+/D [4797 0 R /XYZ 181.907 467.248 null]
 >> endobj
-5121 0 obj <<
-/D [5106 0 R /XYZ 158.345 454.296 null]
+4812 0 obj <<
+/D [4797 0 R /XYZ 158.345 454.296 null]
 >> endobj
-5122 0 obj <<
-/D [5106 0 R /XYZ 71.731 413.45 null]
+4813 0 obj <<
+/D [4797 0 R /XYZ 71.731 413.45 null]
 >> endobj
-5123 0 obj <<
-/D [5106 0 R /XYZ 71.731 388.379 null]
+4814 0 obj <<
+/D [4797 0 R /XYZ 71.731 388.379 null]
 >> endobj
-5124 0 obj <<
-/D [5106 0 R /XYZ 188.024 377.584 null]
+4815 0 obj <<
+/D [4797 0 R /XYZ 188.024 377.584 null]
 >> endobj
-5125 0 obj <<
-/D [5106 0 R /XYZ 181.907 364.633 null]
+4816 0 obj <<
+/D [4797 0 R /XYZ 181.907 364.633 null]
 >> endobj
-5126 0 obj <<
-/D [5106 0 R /XYZ 158.345 351.681 null]
+4817 0 obj <<
+/D [4797 0 R /XYZ 158.345 351.681 null]
 >> endobj
-5127 0 obj <<
-/D [5106 0 R /XYZ 71.731 310.834 null]
+4818 0 obj <<
+/D [4797 0 R /XYZ 71.731 310.834 null]
 >> endobj
-5128 0 obj <<
-/D [5106 0 R /XYZ 71.731 285.763 null]
+4819 0 obj <<
+/D [4797 0 R /XYZ 71.731 285.763 null]
 >> endobj
-5129 0 obj <<
-/D [5106 0 R /XYZ 188.024 274.969 null]
+4820 0 obj <<
+/D [4797 0 R /XYZ 188.024 274.969 null]
 >> endobj
-5130 0 obj <<
-/D [5106 0 R /XYZ 181.907 262.017 null]
+4821 0 obj <<
+/D [4797 0 R /XYZ 181.907 262.017 null]
 >> endobj
-5131 0 obj <<
-/D [5106 0 R /XYZ 158.345 249.066 null]
+4822 0 obj <<
+/D [4797 0 R /XYZ 158.345 249.066 null]
 >> endobj
-5132 0 obj <<
-/D [5106 0 R /XYZ 71.731 208.219 null]
+4823 0 obj <<
+/D [4797 0 R /XYZ 71.731 208.219 null]
 >> endobj
-5133 0 obj <<
-/D [5106 0 R /XYZ 71.731 183.148 null]
+4824 0 obj <<
+/D [4797 0 R /XYZ 71.731 183.148 null]
 >> endobj
-5134 0 obj <<
-/D [5106 0 R /XYZ 188.024 172.354 null]
+4825 0 obj <<
+/D [4797 0 R /XYZ 188.024 172.354 null]
 >> endobj
-5135 0 obj <<
-/D [5106 0 R /XYZ 158.345 146.451 null]
+4826 0 obj <<
+/D [4797 0 R /XYZ 158.345 146.451 null]
 >> endobj
-5105 0 obj <<
-/Font << /F33 1306 0 R /F27 1208 0 R >>
+4796 0 obj <<
+/Font << /F33 1322 0 R /F27 1224 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-5138 0 obj <<
-/Length 783       
+4829 0 obj <<
+/Length 781       
 /Filter /FlateDecode
 >>
 stream
-xڽV�r�0��+X�!	d�$N=�ԭ���Bb3�@�n��WH�q�h�4/��s�}H���#�O���
2#^�1���h[��=������F�¡k̞��ȅ5ߥ(`Ԙ%_ͫ�J�$[[6e�!�?�E�s�|W���9o���/^h�Ojej�Lkm7)�6O��mv?��m�1�Ga��%��9`O���8@��u�g���K�dS��s�D��A`+e�M)
-��p3�Bj^}�іe��K�l""���4R����"�1S^�W�@em���;I&����
����z:�������9�"y���9z�(6��K�����I|TU��Q�q�L����>�j����D��V;l��m�e,ТY�k{�0s��xtD|�N�GΑ�C�����
-I��`.].���vM�v�Q�U�G����r��K�_�f����V4jzdj�(�S�V[�s��,R� ��m,���c�+t�ȑ�;[��MW���w���;z�9Y��R�u�tRz�0���B�:�k��
-Y�Q�Z���`Ln;p!���<�ʲ�!?���&��x�N�|�X�2��8�I���RH{���\:�Kq����p^�J8�zm����D�e��t�X��'
-R�x�y�p[;�}��-�ٓ"��W��@u��N'W6"���i�������b��P��s%�t�*�����s*�Ę�7(�(��"�`=t��<Ž���|����U1h�er�Ċ�5��w<�/uI�p}��3}�����rgrp�d ���8�Q쟺B����endstream
+xڽV�r�0��+X�!	d��N=�ԭ���Bb3�@�n��WHvp�h�4���9�܇D1|�|n4DtȌx5���LD[�����\���5B]c�h�F!q
ߥ(`Ԙ'_ͫ�J�$�X6e�!u���z�-D��7Yi�P�Gu�Y6�Z�Nˤ�Sa}��
n�;r��Q�g�om��K�[p�\����-�*���sɦ,󧬉$	��R��R\-ͬ��W��qiQf�����6"�L�H#��l�*r�����(�x���"��p�L4�)
+NG6t-�l6=�1+��As.O�1�y�,��v�A.v�juUU�G�t�eܮҢ�	-���5d&jd��a���B.c���*�\�[����0��&�#�w2v���2OƯTH���s�ruD�𠴣h��������>�ܷ�6��4�X��*5�ؼ�ߵ��^hfj�(�S���"+�Y��A.��X�-ԗ�4W�@�#�w��a���se���-w��s�"I���~7���az;���u��"��ԣ�u�?M���t�B�q�)&y*`�e�C~@SM�����j����e�
qH�4�!	���&Eq�r���?M�<g�p���V��剰�"��|�<O������v����[:�'E�=t�N/��D�-�N�lD*���KCD��l�\�������,�]�z[��UK	bL̀��$���H/X�+���(9[;��;^U�q��ۭ�Iͫ����;�K4�V���L�����?{�|198W2 L�Nd�w�x��g��endstream
 endobj
-5137 0 obj <<
+4828 0 obj <<
 /Type /Page
-/Contents 5138 0 R
-/Resources 5136 0 R
+/Contents 4829 0 R
+/Resources 4827 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 5166 0 R
+/Parent 4857 0 R
 >> endobj
-5139 0 obj <<
-/D [5137 0 R /XYZ 71.731 729.265 null]
+4830 0 obj <<
+/D [4828 0 R /XYZ 71.731 729.265 null]
 >> endobj
-5140 0 obj <<
-/D [5137 0 R /XYZ 71.731 718.306 null]
+4831 0 obj <<
+/D [4828 0 R /XYZ 71.731 718.306 null]
 >> endobj
-5141 0 obj <<
-/D [5137 0 R /XYZ 181.907 672.478 null]
+4832 0 obj <<
+/D [4828 0 R /XYZ 181.907 672.478 null]
 >> endobj
-5142 0 obj <<
-/D [5137 0 R /XYZ 158.345 659.527 null]
+4833 0 obj <<
+/D [4828 0 R /XYZ 158.345 659.527 null]
 >> endobj
-5143 0 obj <<
-/D [5137 0 R /XYZ 71.731 618.68 null]
+4834 0 obj <<
+/D [4828 0 R /XYZ 71.731 618.68 null]
 >> endobj
-5144 0 obj <<
-/D [5137 0 R /XYZ 71.731 595.666 null]
+4835 0 obj <<
+/D [4828 0 R /XYZ 71.731 595.666 null]
 >> endobj
-5145 0 obj <<
-/D [5137 0 R /XYZ 188.024 582.814 null]
+4836 0 obj <<
+/D [4828 0 R /XYZ 188.024 582.814 null]
 >> endobj
-5146 0 obj <<
-/D [5137 0 R /XYZ 181.907 569.863 null]
+4837 0 obj <<
+/D [4828 0 R /XYZ 181.907 569.863 null]
 >> endobj
-5147 0 obj <<
-/D [5137 0 R /XYZ 158.345 556.912 null]
+4838 0 obj <<
+/D [4828 0 R /XYZ 158.345 556.912 null]
 >> endobj
-5148 0 obj <<
-/D [5137 0 R /XYZ 71.731 516.065 null]
+4839 0 obj <<
+/D [4828 0 R /XYZ 71.731 516.065 null]
 >> endobj
-5149 0 obj <<
-/D [5137 0 R /XYZ 71.731 490.994 null]
+4840 0 obj <<
+/D [4828 0 R /XYZ 71.731 490.994 null]
 >> endobj
-5150 0 obj <<
-/D [5137 0 R /XYZ 185.534 480.199 null]
+4841 0 obj <<
+/D [4828 0 R /XYZ 185.534 480.199 null]
 >> endobj
-5151 0 obj <<
-/D [5137 0 R /XYZ 155.855 454.296 null]
+4842 0 obj <<
+/D [4828 0 R /XYZ 155.855 454.296 null]
 >> endobj
-5152 0 obj <<
-/D [5137 0 R /XYZ 71.731 413.45 null]
+4843 0 obj <<
+/D [4828 0 R /XYZ 71.731 413.45 null]
 >> endobj
-5153 0 obj <<
-/D [5137 0 R /XYZ 71.731 388.379 null]
+4844 0 obj <<
+/D [4828 0 R /XYZ 71.731 388.379 null]
 >> endobj
-5154 0 obj <<
-/D [5137 0 R /XYZ 188.024 377.584 null]
+4845 0 obj <<
+/D [4828 0 R /XYZ 188.024 377.584 null]
 >> endobj
-5155 0 obj <<
-/D [5137 0 R /XYZ 175.332 364.633 null]
+4846 0 obj <<
+/D [4828 0 R /XYZ 175.332 364.633 null]
 >> endobj
-5156 0 obj <<
-/D [5137 0 R /XYZ 158.345 351.681 null]
+4847 0 obj <<
+/D [4828 0 R /XYZ 158.345 351.681 null]
 >> endobj
-1908 0 obj <<
-/D [5137 0 R /XYZ 71.731 310.834 null]
+1930 0 obj <<
+/D [4828 0 R /XYZ 71.731 310.834 null]
 >> endobj
-970 0 obj <<
-/D [5137 0 R /XYZ 252.009 265.58 null]
+986 0 obj <<
+/D [4828 0 R /XYZ 252.525 265.58 null]
 >> endobj
-5157 0 obj <<
-/D [5137 0 R /XYZ 71.731 253.409 null]
+4848 0 obj <<
+/D [4828 0 R /XYZ 71.731 253.409 null]
 >> endobj
-5158 0 obj <<
-/D [5137 0 R /XYZ 71.731 233.959 null]
+4849 0 obj <<
+/D [4828 0 R /XYZ 71.731 233.959 null]
 >> endobj
-5159 0 obj <<
-/D [5137 0 R /XYZ 188.024 221.107 null]
+4850 0 obj <<
+/D [4828 0 R /XYZ 188.024 221.107 null]
 >> endobj
-5160 0 obj <<
-/D [5137 0 R /XYZ 182.306 208.155 null]
+4851 0 obj <<
+/D [4828 0 R /XYZ 182.306 208.155 null]
 >> endobj
-5161 0 obj <<
-/D [5137 0 R /XYZ 158.345 195.204 null]
+4852 0 obj <<
+/D [4828 0 R /XYZ 158.345 195.204 null]
 >> endobj
-5162 0 obj <<
-/D [5137 0 R /XYZ 71.731 154.357 null]
+4853 0 obj <<
+/D [4828 0 R /XYZ 71.731 154.357 null]
 >> endobj
-5163 0 obj <<
-/D [5137 0 R /XYZ 71.731 129.286 null]
+4854 0 obj <<
+/D [4828 0 R /XYZ 71.731 129.286 null]
 >> endobj
-5164 0 obj <<
-/D [5137 0 R /XYZ 188.024 118.492 null]
+4855 0 obj <<
+/D [4828 0 R /XYZ 188.024 118.492 null]
 >> endobj
-5165 0 obj <<
-/D [5137 0 R /XYZ 181.907 105.54 null]
+4856 0 obj <<
+/D [4828 0 R /XYZ 181.907 105.54 null]
 >> endobj
-5136 0 obj <<
-/Font << /F33 1306 0 R /F27 1208 0 R /F23 1201 0 R >>
+4827 0 obj <<
+/Font << /F33 1322 0 R /F27 1224 0 R /F23 1217 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-5169 0 obj <<
-/Length 747       
+4860 0 obj <<
+/Length 744       
 /Filter /FlateDecode
 >>
 stream
-xڽ�[o�0���yLb�!��nt�nL�ci�*7q�G.Vb���I.F�*�`�c����sH����>A�_4Dt�q�s�9��z����{/�ͬ�߹��p��G��;ȅ5ߥ(�1K��WR�"k˦�c����b�2=�bYƔ(��f��W�V�����&e��xm�����g[e��0pϊ�����N}H��� ��o��x��B��"-#UJFלU�E�Œ��,�s��Z��pT1����d�H6l$�5b�����a�,���g�U]eb^hН�9�UJ������`�g%2'QKڀ(E!щ��Z!5�>v.���U��,�TNbs~�#��4O�/��[���#-w:�\��0���qh���:�r�,�����OБ��	���Qv���霳�&k��]��+�\{�Ն�}������XDz�Ѡ��C,V�	��H�б����1��U�Z�g!k�׶�NdIm�E���Z}b�"�������*��U�/���bEY��Hpη��x].�4Ւ�O��9VMY��=�{�8Ja�ʳ>�Tmn*No9Kx�:N��J�
-߼����.����{��ky�y�d/ڳZ��l�	�2-�&uw\s�e����X��M�L�y4Λ�F6��{m
-�&
�'��o���8[&�[�1z��쵋�|���X�C���m�hHM��V�6�:��T��A2����M����g�v!G�
-u�㆛S��	��l?f�_V^/endstream
+xڽV[o�0~��c�'v��u�CtcB�H�T��K<r�3h���p)0:�P!%�s|��;�66\�a#�(��E"D����1�/��E�]���nz��<#BQ�3����sQ�=#�
+}bL���L�ʲ��WH�Ǵ\�\�Ge#i�S�+�����{b����.t\���5������tC����I��$�
+�0��}#pC��z-�A�,
+VJE��5�LJ;N�h���%����-�3'�t��aME�O$
+Eٰ1 _�AA����8�Z���o�d_�|�U���]Ak��&�P�V}�<�p�Hk B�-�jbEļ��s*����+��+
���i$%��]
+��ӂ� p}��N&�� s��Az�$�уE\s1{�C6�BGБ�������	��锳������|�������Ն�=����#������zءA��Dr�[Qbд���*ȥY&s �8�\4N�Z��;���]������a����l^0�=U��-�]��U%-S H�A�1��G͚jQ'���yj$+�ʢ���!g(���ȏ��R��d��2���m���U�s��z������pf�u���c{���M��=������_�Ye����D��ҩ
TT-�����wM�Z!]`vʣQ�
+��'�7�	M�9R��dT&�"e��=�]ܝvѓ�����q�?��
+I��h�ot5Iܶͅ��?p��@/D!N^�!����%�$�t���d?D�ܒ^Gendstream
 endobj
-5168 0 obj <<
+4859 0 obj <<
 /Type /Page
-/Contents 5169 0 R
-/Resources 5167 0 R
+/Contents 4860 0 R
+/Resources 4858 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 5166 0 R
+/Parent 4857 0 R
 >> endobj
-5170 0 obj <<
-/D [5168 0 R /XYZ 71.731 729.265 null]
+4861 0 obj <<
+/D [4859 0 R /XYZ 71.731 729.265 null]
 >> endobj
-5171 0 obj <<
-/D [5168 0 R /XYZ 158.345 708.344 null]
+4862 0 obj <<
+/D [4859 0 R /XYZ 158.345 708.344 null]
 >> endobj
-5172 0 obj <<
-/D [5168 0 R /XYZ 71.731 667.497 null]
+4863 0 obj <<
+/D [4859 0 R /XYZ 71.731 667.497 null]
 >> endobj
-5173 0 obj <<
-/D [5168 0 R /XYZ 71.731 642.426 null]
+4864 0 obj <<
+/D [4859 0 R /XYZ 71.731 642.426 null]
 >> endobj
-5174 0 obj <<
-/D [5168 0 R /XYZ 188.024 631.631 null]
+4865 0 obj <<
+/D [4859 0 R /XYZ 188.024 631.631 null]
 >> endobj
-5175 0 obj <<
-/D [5168 0 R /XYZ 182.306 618.68 null]
+4866 0 obj <<
+/D [4859 0 R /XYZ 182.306 618.68 null]
 >> endobj
-5176 0 obj <<
-/D [5168 0 R /XYZ 158.345 605.729 null]
+4867 0 obj <<
+/D [4859 0 R /XYZ 158.345 605.729 null]
 >> endobj
-5177 0 obj <<
-/D [5168 0 R /XYZ 71.731 564.882 null]
+4868 0 obj <<
+/D [4859 0 R /XYZ 71.731 564.882 null]
 >> endobj
-5178 0 obj <<
-/D [5168 0 R /XYZ 71.731 539.811 null]
+4869 0 obj <<
+/D [4859 0 R /XYZ 71.731 539.811 null]
 >> endobj
-5179 0 obj <<
-/D [5168 0 R /XYZ 188.024 529.016 null]
+4870 0 obj <<
+/D [4859 0 R /XYZ 188.024 529.016 null]
 >> endobj
-5180 0 obj <<
-/D [5168 0 R /XYZ 175.332 516.065 null]
+4871 0 obj <<
+/D [4859 0 R /XYZ 175.332 516.065 null]
 >> endobj
-5181 0 obj <<
-/D [5168 0 R /XYZ 158.345 503.113 null]
+4872 0 obj <<
+/D [4859 0 R /XYZ 158.345 503.113 null]
 >> endobj
-5182 0 obj <<
-/D [5168 0 R /XYZ 71.731 462.267 null]
+4873 0 obj <<
+/D [4859 0 R /XYZ 71.731 462.267 null]
 >> endobj
-5183 0 obj <<
-/D [5168 0 R /XYZ 71.731 439.253 null]
+4874 0 obj <<
+/D [4859 0 R /XYZ 71.731 439.253 null]
 >> endobj
-5184 0 obj <<
-/D [5168 0 R /XYZ 188.024 426.401 null]
+4875 0 obj <<
+/D [4859 0 R /XYZ 188.024 426.401 null]
 >> endobj
-5185 0 obj <<
-/D [5168 0 R /XYZ 181.907 413.45 null]
+4876 0 obj <<
+/D [4859 0 R /XYZ 181.907 413.45 null]
 >> endobj
-5186 0 obj <<
-/D [5168 0 R /XYZ 158.345 400.498 null]
+4877 0 obj <<
+/D [4859 0 R /XYZ 158.345 400.498 null]
 >> endobj
-5187 0 obj <<
-/D [5168 0 R /XYZ 71.731 359.651 null]
+4878 0 obj <<
+/D [4859 0 R /XYZ 71.731 359.651 null]
 >> endobj
-5188 0 obj <<
-/D [5168 0 R /XYZ 71.731 334.58 null]
+4879 0 obj <<
+/D [4859 0 R /XYZ 71.731 334.58 null]
 >> endobj
-5189 0 obj <<
-/D [5168 0 R /XYZ 188.024 323.786 null]
+4880 0 obj <<
+/D [4859 0 R /XYZ 188.024 323.786 null]
 >> endobj
-5190 0 obj <<
-/D [5168 0 R /XYZ 158.345 297.883 null]
+4881 0 obj <<
+/D [4859 0 R /XYZ 158.345 297.883 null]
 >> endobj
-5167 0 obj <<
-/Font << /F33 1306 0 R /F27 1208 0 R >>
+4858 0 obj <<
+/Font << /F33 1322 0 R /F27 1224 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-5193 0 obj <<
-/Length 2688      
+4884 0 obj <<
+/Length 2692      
 /Filter /FlateDecode
 >>
 stream
-xڭˎ�8�0|�5zZ��S�MYL�g���Z����a�rz��^��D�\
�Ȫb�X�'���KWUW9|�C���UݽJV����U*�~ge��̫�p��v3o^��>�WY�����vI�8���������E���k�˪��]��_��;�[�y����v�7i�F3���Ժwz��^���9n��v I%���I�4����2��8��裲���Y�$����#+���x�����I��ٚ��K�E�gR&o�_�S�D#9��������MZFõo�D[~�k��>��C6U���ʲO���P�_�(�<O�fpc���5�t�K������x����y腓q��a
-�.+:�E�Ό�nXW���Zt�3��1n��ɒ�JL�9�i����2�χ�0?��r��Tl@nN����M��3#PϦ��v�de���X�:_�U��%��N.�(��:w"6��j������e��p&���r�����ʜX����	쁬�"��g�P����ꯪ�
-#�J�k<��-�+{�g-�'k�qF���+�g�������&��H�����%�I 8��I����sW2tkT�����@�	�']�f"d�5�����zfs�������j�\`�d�3�HCȀ`�
�9=�M���6(gY��C�i[�Cm�|�����sPS?���(�e3�^�8�5�2�mG�&pr��i�:��oAā��IH����ckA��A��`��yP�Ǜm�Ђ�]8,q�gqɧ�i�W.w��-���4 ��@�� ��ם�~��?�$�):�#w����2s� �x!)�Hg
-�	3�L?��о�����Ӹ�2N�i��V�0�j�Ep*1�l�jnȈ��r�R�A\O.	��awuc��n'��Q�������9z�sv��"���ad�)d�ί㘅cJ�4н��奟иjF�z����v�1s�2"�wD7ڙ�
Ql},�������ksG�3���0$����l/���U�p��b��!'�82��hF������
-��Dk������[�=�Z���#��r@tQ��(�U���<���rJ �;;`l��� �
�� 4�$jq�!O�&�Q�_L��}�%�#/��K��5dW�2<�Է�@�A���o @/d��l~cY�|p�(Z���py�*������fQ�ze�$a(���GU<�6����+U6�8���@�M���L!A�����˨�wr��Y�!�s��#�N|����,�p��=�IR�`l5e2N,�˙����P�#��������*�tx)�AN��c(�}~�����k�T��2�.�$��p�m@�QGӚ�A\=`��1��6�a}G�ZZ�ʷx{�+�ϩ^�`v�S:
��j
�^[„R�!{�����b4X:���6
���~���o������:%��1~C�|b��cn�-ܶ(#hf�c!�a`�����A��"䎘�\8x��=̿�9j)ܥbB"��
w�����
�ܕ�;�S`�VD1���(f��i=��xa�e���$I���C�42z롐雯(��!�+#%���p]/e8�����?J�ę3��v�LC�%I�i��S$�d���#3y��e��s,��8��P���T`˚RJ=a���y���
���*1�����gO=Z8m�B+�o�T�i������ϊ<Z�J�������R�ts�]����@���J>���HOT��E}"pX� XH/V����=�Y�4�s6Pqf�۫���H/Z��:��-��gs����.�+�PM-��_�O@ hQ��&Tq�^B���v��ꃍr]Ȝ0�G/�gI� O�	i+3GO7���R�<��Pߣ����j�DT@!ʼnj/Uc ���3��`�g�.o�/�h�OOG�g#9ߨ��}���t+59@��e�0_@�(Q���CP�&`��2D���-��n�ϯ�􈅜��)��3H�'�7���Yn�Qr�<�d$2=�����"$��B��7P`w��Z|��'8��͛r�9��
�dwE5Iᶷ�^�v*[!�
-�='��������$����.�?LCIkpf��n��и���n�˦Z��M�]V�k��XT�1�a���2��ڎ|�U~c4�l«P5"�hƖ�,�BZ:T�V0B� *���EP��$5��-��d�S�W@(���	�+
-��,,�E�Y1���U�|Yu�6J��.e_E���0~Of��+��IW�+�	��v��E9���_dƇ���l �PY���ۏ$���F՟�D���/���^�
l~Eؔ��n)U�
-��
�^BQ�K^��_9���Ad�ϋ.�I��@T
)F�V��׵�ab*U4���'Fn����A�)��� �E�\j��d�7�)<�����V�
-׌��+�����+B���2�opL��ZE3%�%�1�~1Z��y1�y><����LBz�ktI����L�x2)�`��b��%�˙�>�]���	W{	%󓟘NܫH�=n`�*�W�^�Z�z�I,D[�r 8��'/;/o�F
�N
-9>A|��t������)onK�V�
-y����W���_qߥ�⯇B��H�C�e��.�<N��BM}r�z+�3�{����endstream
+xڭˎ��>_a���z��9���,&�tor��@Kt�i=Q�^�}�EJ�V�\�ZdU�X,֓�W�ū2�>�>L�|U���#`~{EVa�'0^@���w�j7�����O��t�Da��WG�K��IZ����g�����.)�_6i�<�����Ӡ������nT�8M�1��ҝ՛�<�
�+W�p_��]�ځ4����Mǁ,/̣ �-����:�0��ȳ�V�b��$�xO�>��M��<�FXZd�Q}�1O���0���3�S�@>m�<�/]��D[~�*�B���!�2
+t{nd��FUZ��/fp�F�������Q:��iT���{A��
��õ���a��K:�Y�G]��ƞ���g�tm�8��&��	0����m�b�8�<���d��3S��9�.�N�{4�#ό@���j�~�����C��t�a�x�;��,���ܑ���A���gmް�8�s6��I���p�-������?`�-����͂V=ᆂU�lUwQ�ViT�����k<i>�����)�g�#����	�`'��H^�����I�!@��I�4��2tkT�����@��G]�f"d�գ���g=�9܈l�~eu�5d.0x6�G�!��d@0i���lAӲ"�匃��U߶z�@���7
+�I�=5u}爉��1�!�^W=8�`�e(���M��<h�։��n� �N"@���c�R6�p�
+����z�A�Jo���B6��a�[?<�K>�L�_��A{��c[S�@�N��Ѓ[wd���B������(�ܪZ�r��m�e�d��Ⅴ�,�)&LH0}2�/�}#b����q�e$��[�:a<��ȋ�Tb�I�[CF�S����
�zrIPL'ۋ=Mku3���r�'D7N�c�=��U�f9t���#��N!�`D�n�,S2�����^���b��w��)@a�3�+#|xGt��y��0��'!`���,�.���6w9�2
N
+C��������^9�8!-�Qkr��#3~/�f�/�[��lo��KA��	����I�eڃ��g{��1��+Dw��z\�'��\e�R�;��cK�8���baS�B�H�&���l�������T":�Rn�pYCv�.�G}[��
y��B��K�7�H������9񗷨��x��lT���A6�K�r�K:T�U���|!_)�y���@��
���n��)$�t��!:�Bc��\�|ң������$-(;�)\��F��2B����2'���Le�ʜ)���S��G��~
H��� �_�ї�.?���Uz��y�FN<b��〈��1�A\=`��1�t�6�a}G�Z\�ʷx{�+�-ϩ^"o�v�S:
иj
�N[„R�!{��t��b4X:���365�W�\�շM�N}S�M�����!Z>1[�1��n��43�1�܃00]��Q	� V`�sG�p.��v��_���R1!Y����L�C�N�u�B��)0u#���^�1u��y?��U/��}�]���,Iq�z��FFo2}�������2R^_��z)�A��&�`�E
+%Μ�M��f�-�H��_|�`W��b�d��,Qbd&o1ýF+���{r_�;Q��Fz*�eM)%���^���}�ކIR/�F��n7��Q���Q�����;*�4��ACyQ��
�'Y�]%����8��T&�\�i>�Ě1(������1z����޵��>X,
]̤�\ƅ�t���,Lj�9�83U���
+�F�-
+��?�K�9�Օ|��K(���
+��_�O@ hQ��&Tr�^B�e��A��Z�9a��2NǒA��0Vf��n^��R�<��Pߣ����jtDT@!őj'Um �����`�'�.o�/��p'
+�#񳑜�oTa����{����n���0_@��Q���CP�&`��2D���-��n�ϭ�􈙜��)��3��'�7�<�Yn�Qr�<�d$2=���=�EHl��u�@��Q�i�=ij��H�7gvș�t;7���e�$����;��Dl�+0�� �3�۽��Sy����R�:�P�0
%�ޚ���)N}�Nޫ��.�^h!~�6vY	�5�bQI� o�v�.�aI�����Lo����Bx�F$��P�ca�IK�J�
+F(�D�q��
+߷�F]W�%���l]�xQ�r��J�@���������Y�`/Z�Z��U7o��tz�R�2X���{2�5]	��M��]	L�%F����-�Hy�u�Af|�9;�r!�՟(��H2�IPT���%��9�}��n`�+¦��wK��"
+(�6�z	E	�b,y|7�,����T̋.�I��@T)F��jůk�~b*U4�MO��"V��1�.�U���Aڳ��ԢRC����ʔ���_��L�X�k�P��CXT��	�\Po�68�c~����ܒ��~�-�������A��S^&!	�5
+�$�Zpxy&���I0BQ�z����̉~ѮT���������ML+�E�׳Ye�|�P-R�f%	f�-j9��W�����7��['��!>�xZ~��GO���7��%L#f��P
̋B�_����_v����/�B��H��C�e��Γp�*x_�����z��i��rendstream
 endobj
-5192 0 obj <<
+4883 0 obj <<
 /Type /Page
-/Contents 5193 0 R
-/Resources 5191 0 R
+/Contents 4884 0 R
+/Resources 4882 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 5166 0 R
+/Parent 4857 0 R
 >> endobj
-5194 0 obj <<
-/D [5192 0 R /XYZ 71.731 729.265 null]
+4885 0 obj <<
+/D [4883 0 R /XYZ 71.731 729.265 null]
 >> endobj
-1909 0 obj <<
-/D [5192 0 R /XYZ 71.731 718.306 null]
+1931 0 obj <<
+/D [4883 0 R /XYZ 71.731 718.306 null]
 >> endobj
-974 0 obj <<
-/D [5192 0 R /XYZ 530.903 703.236 null]
+990 0 obj <<
+/D [4883 0 R /XYZ 531.42 703.236 null]
 >> endobj
-5195 0 obj <<
-/D [5192 0 R /XYZ 71.731 682.175 null]
+4886 0 obj <<
+/D [4883 0 R /XYZ 71.731 682.175 null]
 >> endobj
-5196 0 obj <<
-/D [5192 0 R /XYZ 71.731 672.06 null]
+4887 0 obj <<
+/D [4883 0 R /XYZ 71.731 672.06 null]
 >> endobj
-5197 0 obj <<
-/D [5192 0 R /XYZ 71.731 662.097 null]
+4888 0 obj <<
+/D [4883 0 R /XYZ 71.731 662.097 null]
 >> endobj
-1910 0 obj <<
-/D [5192 0 R /XYZ 71.731 638.283 null]
+1932 0 obj <<
+/D [4883 0 R /XYZ 71.731 638.283 null]
 >> endobj
-978 0 obj <<
-/D [5192 0 R /XYZ 168.205 594.97 null]
+994 0 obj <<
+/D [4883 0 R /XYZ 168.205 594.97 null]
 >> endobj
-5198 0 obj <<
-/D [5192 0 R /XYZ 71.731 586.147 null]
+4889 0 obj <<
+/D [4883 0 R /XYZ 71.731 586.147 null]
 >> endobj
-5199 0 obj <<
-/D [5192 0 R /XYZ 71.731 527.418 null]
+4890 0 obj <<
+/D [4883 0 R /XYZ 71.731 527.418 null]
 >> endobj
-5200 0 obj <<
-/D [5192 0 R /XYZ 71.731 485.64 null]
+4891 0 obj <<
+/D [4883 0 R /XYZ 71.731 485.64 null]
 >> endobj
-1911 0 obj <<
-/D [5192 0 R /XYZ 71.731 415.902 null]
+1933 0 obj <<
+/D [4883 0 R /XYZ 71.731 415.902 null]
 >> endobj
-982 0 obj <<
-/D [5192 0 R /XYZ 312.796 370.747 null]
+998 0 obj <<
+/D [4883 0 R /XYZ 312.796 370.747 null]
 >> endobj
-5201 0 obj <<
-/D [5192 0 R /XYZ 71.731 358.576 null]
+4892 0 obj <<
+/D [4883 0 R /XYZ 71.731 358.576 null]
 >> endobj
-5202 0 obj <<
-/D [5192 0 R /XYZ 71.731 316.147 null]
+4893 0 obj <<
+/D [4883 0 R /XYZ 71.731 316.147 null]
 >> endobj
-5203 0 obj <<
-/D [5192 0 R /XYZ 71.731 285.262 null]
+4894 0 obj <<
+/D [4883 0 R /XYZ 71.731 285.262 null]
 >> endobj
-5204 0 obj <<
-/D [5192 0 R /XYZ 71.731 202.573 null]
+4895 0 obj <<
+/D [4883 0 R /XYZ 71.731 202.573 null]
 >> endobj
-5205 0 obj <<
-/D [5192 0 R /XYZ 71.731 171.688 null]
+4896 0 obj <<
+/D [4883 0 R /XYZ 71.731 171.688 null]
 >> endobj
-5206 0 obj <<
-/D [5192 0 R /XYZ 71.731 140.804 null]
+4897 0 obj <<
+/D [4883 0 R /XYZ 71.731 140.804 null]
 >> endobj
-5191 0 obj <<
-/Font << /F23 1201 0 R /F27 1208 0 R /F33 1306 0 R >>
+4882 0 obj <<
+/Font << /F23 1217 0 R /F27 1224 0 R /F33 1322 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-5209 0 obj <<
-/Length 3082      
+4900 0 obj <<
+/Length 3083      
 /Filter /FlateDecode
 >>
 stream
-xڅ˒۸��%T���S�r���Ny���$�T�DB#�$�%H����HH�����h��[=��=��>�O|�ƻ�h^�O���E$;6�e������O���=쒇��C���,��I�ͳ���W��r�mY}[m�,�n�������U��*�Z3�)�U4��U_����B�V�����oG��d�=��)w{f����tǁ0�&iJ�W�ܽ���zӭ�0X3@�%���q�*�;T�:֚g'8F�����1�ի(����F����O���Qr�S���<��?_Wq����U�!��<G�D4s�e�(�Dz|}:= ��қ���xş�\VQ\y�(���'�|M��see�q��j�3/�e`��0��%���ƝkT�e����,�Z�-���P��r|����ޟ��l�!�$gy$���la�N=i���h���Ɣ�X8�����:�J0�+ A����w/���+^�	���B���-��������+��@)�50`.�]���v\�Ix��7�\j�Xv�(�z*�Ө\<A-�ː�8�BFJ�VmQ�`�Ԋ4��>������U6��0aQ�y���U{2tz;R&�?�����gԋdR��iZD������GlI���~�h�i\�c]���P����m�~��Fp�s����z�����EFԶBA���Gw7�6����;�F�-'hC�&��[u�2�5�ǣ82XN~7��Tt�YJ�7�V9�H�]:sA����&v�8*)G��V�#�D���#/�մ��$J�����Ͱ@�l�r\.�O�tv�0�'�%�0�˹*μ~�a 5���?��|��{cj+�:9H���'���� ����9����H�A��s��
�6��k�"�#��
-'�_k�11Jv�;y,��1����!��}Cw�+�H�,��	��-��?U}-���j����i��s���T7C��H�����h���;����B�GUou}�� �z��I���k��~f��i٧ܷ|�֥#C"�=��\/��&��T�7D��.IЍAܬT����'=(P�wi�N�*_
-�����U�cǁp.��l�)2rF���6��3�p��r3k1΢��Rn���u�`��8�D88�0��$�5�|���#8e�Cly�g$9xd	�yC���"(7xS�Cx?�PA�,�6��П0_���[;|����8W���A��F4�ӝMy�������2���+�2La�,��Ɏ�1{���?VpRwGp�
C^c"�A���8�fف��s�8x��)������r�����
-C�y���EL��7�)�ԩ	�͚Wt�� /�itW���B���ִ�����پpd�ؿVd�x���R�G�Q�2c�3&>��az:����V6K��N�R�x�yl�U"9�v��t� �\�J�
-'�r����p���F��s�#ӎ!��sx�I=#�3	���tE�Ceɐ�0���
-�I�DX^z���h���d_ozJ���� r|�>l>i!��"��@F�Iqn��<o.fpv �!1��Z;��:^������L(�&,9o�i�DU�ܑ]�8��6/gب/xL�1��֠���Ǩ�Ji
-G&����*
-}��x��չ��SsV�eoS�UK^z�Q:�o@�v��É�|5f~�`������<puk��3�ۡ9j�ϥ��+}3X!_��8�H��5�.>�WS�W�_����
�R���BJ��K
0��K�F���Т9��Ι[�|�$�O��:�#9��~�1^�3���PF]}�~:2zi��
-����A����
�H1���1y���1��	�M������­8x�]�����E�(vr����aQ�y�Q&(�Q
-�1�g���+�dž1f^H z��v���D���hO��s����**n\�$Ł_Ô
��5֝Q��P]7F?�אѐ*�ī�`���r]�$8j�ߣ�̰wx��k���Τ��x6���+��1����\^�?���fFd��{�<8�٥k2�[;�6>T�=MZN���r���>˹'Qb�tZ��m3Ή�LB~2�EҌsTY��c��8yt焫��_�~�n�v���TI!C���n��vFb<�.ZflOj�����$N]J���.rZ�.�锤��I�X��2�I�熅��(e��r�����{B�"q�8RJS�7��cړ�
-��-T�Rq�ո�F"�g$�n,�d���0�To-�H�L\$�1����ʉ)P���nb���fH��2��g��E�\޷I��E�8�G^ Fۥ��2�Ѿ'w-6���Kd�*����/�1I4�bVc����-�nl�If��f�ƞ�Piҟ����yJ̴820��+�P�Lu�EK1�G�Tִ
-h�k���'��4�8=,�b?�l�j}�d�;��dI���*$���`��H������.w@(�-�&�~[acA��1��c�Tl`wc{?��i���;º����6q��O8�閪�w-;�*�U��g�C|_q�K���jU���oq}<8�Ův�<�/Ǔqi�5����
$!,���f��YPWT~(���."��iu�,��6�(;V1U��Ɂ
-�R�^p�y�|bw�U�9%݅�pw �N�����B��z��B�0k��K�̫�ci��<�^��j��j�~.��|	�ȭ��p�ڨҵ ��|���Dx�t LM5�gWo@1(�n��p+'n���05Ճ0'o_�vy���ׇ�,�~)�V����9�:4��yD�2r_�~�2���x����L���h�Oo���\��6B�]eϞ%���$�a��H���D~X��b o������������幢d+�I�w"2�e�71\�.�+-���w�f����@U�SV�<���X&)�_3�*=V�u�&N�)���پj&�H�]D����k��/�`�+!�=����[;i&�-��'N���;�7�(t����9�)�V����h�ֳ���ς4������Z1m��gE'�098,H$���o��]��4'endstream
-endobj
-5208 0 obj <<
+xڅZK���ﯘ�K�*I�C�#����vj;�Iʩ$��F�R�L��ߧ��	�Z��@�4���$O1�%O�d�����:*�o�Z��M�;�e�����W��i�ܭ����S��,W��i���m�>=���\l}(�-�<�>,�������,ϣv�m"kuKS��Yٺ3]�Ԁ~*[;;���_�|�<��g��n��!�~τ�t3��9o��j%���ݽYG�PvM;[���S0�N���&* �/;��,fG:&������i�kgI��
;Ϧ�l�xpp3b0}�Ў��ӭ�]��5��6K�ȴ�������r�Ü	&��L�%�-�t�S�������޴�y�*|��w��e�������������N�}-�.?�2R
z�Ŵ���;��ʆWb�zj���i?��O�a��Vo9XW��=�	��û�+�mZƟm!�lJW4}k^,��;�k�h~n%�Xx�Й�k�5��%��ú��w/^b�F�;��:��E���w��b���BU�����{�.�5��k��nΗ�2��E�@�iv�ֲؿ��>����(f���iYUPL�ʈ��������ײ;5��4���<�t���
�^o�t�'�x�x����"U>󚖈������	#�G����ߠ!��*�.��*���i��YV�6x����\h�辎f�=,��fԮdA`�ݳ��T�Δ/��d�і36���&��[u]
�xg&����O��~.���,������H�]����Ǵ���8yTxR����#��v�̋������,Y��e$�ۛiA,�i�r!|rM��A��WxD�_<�\c,��8a��`$5@�ԯ�F\�5�y�4��m�Keȋ�ms�>��D[��P)<8��T�v�"��pvV��~Ј(;􅇋[��kΊcd���w4�hc��ߥg�达����]"�u����%|[��ʮ��Ol��S�bz��`m<U��٠�Cҭ�u<�7�g��y�݈�"��Ge�lu��$��w��^�*�TUì~�����3��*��ڃ'�C"�=5�a�@�����r�*�,c7Fq�4��#$=,P�[�4eku��.P����Ŵ�C�<Pn�E��%���FϨ�?;l�(���� �7C�ipR=%�zY5M�V�I��
+�G���HcP�#<t���9�&aF����,86���.�r�7E������e��$���=�����S�L���dX��z�T
��u��l.�;;�7�����%�.�`�'2�4�9����x�fk�+��a���1���ݓ�?�	�
��,ALH�d��;A��Y�������g��]�"�/"0�F][�Y��b�Ӣ���7�%�ԫ	���+��lEs>۶ ���FW��E|���E�1c��;�cv%{��_f�1���-ǡ�S(�?mw�Y�vp�Қ%،�3W���g�����r�J�+H��?yo��ֲ�'����'��Rl�8�`�I�<#Ks
���	te�C� u@1�2*�(�pXz�㮱�O�t_�x���3� q|Q>,���D�C���")N5����M�L.���>S%$�7�Ik���Y�UzN�6�`:A97�䂭ǾUUM�rGw�q�m,
+gx6���^�(�[�Zb�;Ĩ�jiJGF��_S�")�
��s���������)N�/��Ũ��70A�u��@\M�� ��ފ\r��<B[7��	�?��Gi�*Do*�x�D�����>4TS���_p��
٣�%���n��VhTY��
œ�fs��3w���\7�nf&r����b�R�f|o騌��d�Q����r( ̢��zSS�~1| �b䩧3y����D�&��i��I�V}�����m�0ʁ]`..�,��9Fe��=J�7D�<��|���4�̋	d�1ծ���D���D���i�5��SE���Z�W�U1Ma��q��QT�i�!�񼢌FTa�^��LT��j �S���g�>��)�Y>��)�n��m$�F_}8�����zGp}�6���"�_�g���F{:�蚜�`�ІC��Ӵ��e���6dy@h�r�$����gD�9q�k��F�H�#G�u�;�̓gN��
7�b"�I���9�z�Y9��
��T�U_<�	u<H�4�h�����7Hγt�S��qi��qZ���!9Y�/Ԁ��tjX��D)gt���}�3)���H�L�|.Q�i�jR@�Hy�jřRTC9�F���g"�v(�t]�0\j��	�\�.�ǜ��u������@���T{7��$��G��Y{i�Q2��m�De!����Qh��`ߣ�V�B�$2C�!I�ė �f̍&�qV�T=�g�;����H��䑛
Rwj�JI���@�F�޻HbfՑ��#dʮ<6J�y��8-z�<q�J��m�#�m����]���v�}q��p�\ֽ��A2�<�N�$s��)4��h�|I����7�~�����4�d؏3n,hs3��rL��
�ol`�<=3�[�@�7�V�Ц.t5��o������W�	��u���.�����]��:��[^�e���%���lX�b��r�A$��Wu]<je��
+b�=��H�"�-j��&6T��#�*fJ�8١����v�sʻ|�֮��+�:u��}�[ko7S��Ũ�:��a���k�,��Sm�V��]p��5�?`�?_%�<��
+H���s�-�~�L�	?8����o����#���)�D�>� ��	���)�J�A��7�/��6F}��(�_
+��va!�o���D���6��	��/?Y�o��8E�z���B�C�����7�����a�ó�cq��H�������k�%*,z�&����=�8��ޡ��[^KI�b���lp'#�^6AC���Ғ�l^l~�o��{z��v�f�d�"�[���c�]G�h�ż"1;=ەg��(�i����X|
���z��E����j3�x�^�l�p��Hބ�t�:���Ŏpf4ZY�?
+n��gy�/
+����r�l��_+�-������r�X����K�1��̢4	endstream
+endobj
+4899 0 obj <<
 /Type /Page
-/Contents 5209 0 R
-/Resources 5207 0 R
+/Contents 4900 0 R
+/Resources 4898 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 5166 0 R
+/Parent 4857 0 R
 >> endobj
-5210 0 obj <<
-/D [5208 0 R /XYZ 71.731 729.265 null]
+4901 0 obj <<
+/D [4899 0 R /XYZ 71.731 729.265 null]
 >> endobj
-5211 0 obj <<
-/D [5208 0 R /XYZ 71.731 662.351 null]
+4902 0 obj <<
+/D [4899 0 R /XYZ 71.731 662.351 null]
 >> endobj
-5212 0 obj <<
-/D [5208 0 R /XYZ 71.731 592.613 null]
+4903 0 obj <<
+/D [4899 0 R /XYZ 71.731 592.613 null]
 >> endobj
-1912 0 obj <<
-/D [5208 0 R /XYZ 71.731 535.826 null]
+1934 0 obj <<
+/D [4899 0 R /XYZ 71.731 535.826 null]
 >> endobj
-986 0 obj <<
-/D [5208 0 R /XYZ 237.066 492.728 null]
+1002 0 obj <<
+/D [4899 0 R /XYZ 237.066 492.728 null]
 >> endobj
-5213 0 obj <<
-/D [5208 0 R /XYZ 71.731 480.29 null]
+4904 0 obj <<
+/D [4899 0 R /XYZ 71.731 480.29 null]
 >> endobj
-5214 0 obj <<
-/D [5208 0 R /XYZ 71.731 401.331 null]
+4905 0 obj <<
+/D [4899 0 R /XYZ 71.731 401.331 null]
 >> endobj
-1913 0 obj <<
-/D [5208 0 R /XYZ 71.731 381.341 null]
+1935 0 obj <<
+/D [4899 0 R /XYZ 71.731 381.341 null]
 >> endobj
-990 0 obj <<
-/D [5208 0 R /XYZ 254.178 338.244 null]
+1006 0 obj <<
+/D [4899 0 R /XYZ 254.178 338.244 null]
 >> endobj
-5215 0 obj <<
-/D [5208 0 R /XYZ 71.731 325.806 null]
+4906 0 obj <<
+/D [4899 0 R /XYZ 71.731 325.806 null]
 >> endobj
-5216 0 obj <<
-/D [5208 0 R /XYZ 71.731 231.838 null]
+4907 0 obj <<
+/D [4899 0 R /XYZ 71.731 231.838 null]
 >> endobj
-5217 0 obj <<
-/D [5208 0 R /XYZ 71.731 200.953 null]
+4908 0 obj <<
+/D [4899 0 R /XYZ 71.731 200.953 null]
 >> endobj
-5207 0 obj <<
-/Font << /F33 1306 0 R /F27 1208 0 R /F23 1201 0 R >>
+4898 0 obj <<
+/Font << /F33 1322 0 R /F27 1224 0 R /F23 1217 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-5220 0 obj <<
-/Length 3186      
+4911 0 obj <<
+/Length 3183      
 /Filter /FlateDecode
 >>
 stream
-xڍ]��6�}E�/u�ĵ,;���n��k�;=�p�O�L|u��v���Hْ���"K)�K$%�	�Ol�'~����t}l^`���{�[0�>���{)7����鼑�яe�Id��p�����vSU^��݇q�����/�Q��m{�V&�R��>ݷ»��˺�����⤪Vm�����O��b���Q����L�&��
��/�H��c��K)����F�yWm��~���6�;Uu7@
I��d<�Zߩq��6��:���ݻK�0��<E� S��gU�����u��h����c��"�^�D��V��O��^�~����g��q�{�o�jw�����Rl���1��`�WhE���KV��;���8�"��l|.��2����g�p� JM��Y�f�Hu|��XnD�"F�>��AAq��br�~���� OZ�Z�g�L���o���(J��5C��2h��ԝU95i(�hȐU�/@,��`�C��J�����J����q�r�t���� jթp�\��0����Y�s�Dh>XRD���MAIU��Uf����{ع,��`

}�u*ZU�<h��b���/����_NG�R���LX|]���k���]�L���W��1��Յ���=6�����V��lH2�R��B��m����Ϡ�4�n���ud��rҰ�Ȋ����V^�)��w����E5�`gw�m��c�$~tL7q|���q��"��3u�.}h�cZ��?�9Z�ߞ6OY�=B��k�3'�H)�	xO[�J��嚽���A�!K�2��,sn�Ag��0�`�-Tޢ�+��M}5�x|^Y$-��q^�;�6{�U90|��E�M*��#@���?_�Ӆ��K}/���1�v’��Į�܊�#�{��#e�ҙ�(�u���u���ț�H}����U
-�z����k_g��}0n���t�\��!e�l�z�����Ь�⥨��1ܟa��q���}��t��Ts-Z��Qr��lb!�@��6K {fj�.�ط�6;���fWh��"�
-�y�����=�F���hw�I�;��og�0t�Őxx�� ?���N�����C֮���`=�]<�<�\��
-m"���ƸΣ�_��H�*+Y�ѩT�n<u���a�Ց��}�S��AF�DLN��
-���$�>������RM8=?��8��gYҐ�-:�̸1n.g��-���
-6������ޚ*�wk�&�-&:��H�U��`�,ƀ຿[��Z-f��-��ɝq@� �1��>�`[���I���� �عN��	�'�����H�!{\�D,��HĀ ��-�hJ뱌Vh��"�_����N��Dl֘��+|�.���]I��m��qo")})Ē�#�ނ�Su
n��"���q���&���j�dO�Sz35�F��n��[�Q������4+������ �����T,�;ؒ�}�,��bo�L�� A�|�=ޢ\���e�����T���X��z��FRѩ&�e�Ns��Ehh։AV��|cD���Z�YY@�搉RC�ȵ�:q���������2.
����<J��BUG=`�ױ�b"]�Nn�����^9P�Ը���$؃��;C?���1_r���Q��X-�%�j@�)�4o��C�[�=B;�X�#1)HL��z�ý�F��8c���ou�M-=��D=�x+:�l*F�I��&�T���)]��wv�H]O�$�C�߈���	@eo�Z�q�_m!��!����hQb�ĺ.� ��@H��EM�z�˄]���<!S4�U�1�	�C7����/�F��?,D���`��v��U/�kJ�1��h�h�'2f��ЫS��49��r��vG���1���w�ɣ��G{^����0�1ٺ2}���=�
-*�<&0���W�5h���J�3$4��o�KMݐ�O_Đ�ecԓq���k�)�"����ӡ���!�jBkk�CC
bN[X���g���;M��28�S�tX%���h��e��T�B��R��%�2:i$v[���h5F�7cۺ���-��\��\ѐ�A���P݃���7/|��P�u=�%���jOM�Lj�_��9��@MN�Q��a�
-�|�Ld�� ل����H�@�N�A���q�M	=tGk��Sg$��R{�������)k��w��+���!qd�)\0c��A�������N']m��j��gMV����X�WG��j�R�h�mt��!�S�DC>�h�l=@kP�38�8��V
-z�,8P�Ac����0�*$�c��#X���;��V��R�O�tQ���Æ�ǡw+3���I�b\04l���ϧ/�$s�$�����H�
-��evŢ/�C�š"���ƫ�L�����H��wI�4[�4�С����Ubhpt�<�hH��� p��cU��pN6�cp��b4�����Y���}����6lȱ�b���/�pZ0K�Av�s�gMi=vZ+�Gh)�=���& 
-�G���~s���
�^J�}Kc�����E`��(o����{�����������RWG!{�H��h�9
��lŪ�?á�?K@k�rS2�FeE��.U,|����
-M6�+s:�_��w<�{�M�Q�s�QE�T&��C����,��2���Kz9C�^�����6�Fv�m�(�E��˧�a��79�~�}I�n�ŷ|^�eJGin�+�V Qm[���:٫߁Ӵ4	�dz�����7�����xY3dŽ��W"��&�Y�-�cf�c���cx؈C�C�5�Q��`�������QSZ�5j����RT��!�&o7a��~@���}�C��^��<|�/�� �`�г2�N���y�� _:�D�Q��G��yd@�S�,JiJ뱔Vh��R,9�^��n[nd��)�±�!mq�h.���8��^�n$����"��J2WYC51QZ�^$~*e���^��.��$q�����a�]�bG_ ��s����u�N��^0��g������A(~�#޳�8�2�F�*���d�L�/��xf�bE�4_�,��w�EVR�~G��y�?q��'#֋Izf��[ʆ�I�8n�6���KE�?�����E�����qe�0���=� ����d�@6���`AƁ���Ni�����endstream
-endobj
-5219 0 obj <<
+xڍَ�6�}�˜�Ȁ��:,kߒ̑�&A��,���,�m�Ȓ#����o�(��<�L��*�X7)6��M,�8�?q�C�ɮo��3�||#b� {���7�~�M�&�`�t�a�~���=F��)�����&���{��#�y����_�Ƈm9�6�)���׭pdե]QW��s�ɪ���>����S��(�����\�L�����5����Z��n���)Z�m�w�v2���������h(p�K����Y]u��4�4��Fz�.u����hT��B�_dYR�I��Fj�y�vM�K+�g�\mE��G�ě�8:ϊ�����݄��_O�!��"�7�o�lw�����\l���1���Z��
+'�y��ʤ=���8�"��l�݅Z)������p� JM�˄^�b��r�ŝ������a����A���(�G�:/��<?S���<C4`�/��f�{+Pƣ��_S�"����J�i�S�:
I�)
i��A������w��J�����rPǽ��,�La�ڏ���Y�:�h����b�Β��`�"O/龖t����L[�ǹa������������[#����ƃ
+�-�	;�b�A����p�,��˄�ץ�ٸ:N��N��yy�Z#�mY�+�c�j�!K��f`�{�̆��!C.�4�!�[ݶ��<��0@sj��M�'־4'	ۍ��zo;j�����i{#,i�]T#
�v����16�1x�c����{��^�@�����h��rǴ��{8�s�ƿ=m��J{�i��*cN�	�=��<m�Ρ����\�g��Ë<R��G�
S3C��vGPř�;��Lx���[T�<���WM�ܛ`e�4��ym��Z�uV�@���R�$2]��9�m�\��B������{q����$t���­�w���a���EK>QT=
+���敩�5���<���U
+�z�_W���3f�>�7�����\��"�ڷ�=��f1v�uS<UZ2��	��l���a@K��&�k�"�D����&��	^g	do�Lu�F��~Qg����
+�Z��sA6�@v~��Si�S+�>��:��i$]�c�t�*���.�SR�&��`�����F�7X|��'�kv��&�8~)n��<Z�Պ���h�J�m�ی��~��Y҇~0U��`��M�d���`m�I��}*nJ�
,U�ӳ�C8���z�%
iآ�Ɍ��r�N��7(X�
+s�:Z�����"M��Ffb^c�C�8^�fIc4���%����Pc�h��"�ϐ�i4,���U>n���U�-�����+"��mT-�p���Uw!	��|��"f)� ȧw�g4����Vh��"������L�HEL����ȅ�B�A�ۮ�i}�6�(�6a��K�� {fN�M4����l��z���#�*��s;�Mo�=�M�5`�D��9H���cln]GI+G��K32iF�=8��׊� �qp�Ԧ���-��
�0[A�
��XH�/�G�Y<�)���B~�V�w�������S\�`@��TT�	}�S�&q�ub8+�b�1��~Jd-լ js�D�����xe��(����1���Iú@>�G)"�U�j`�l�:�XL��֪��27�+����R-@�>�*�3�I�����a
��&�ՀY2���qI�fh=��5�#�3��;��X��ޑ�<����gq�AV୊V��N~!Q1^NJ������d6��J�ХK���L��i{�b��Q�|3���k�&��-Ĕs!���-
+C��.=Ȣ(��qQ&��2a�a�F%OH�@uxbTf�b�w��Z9݂p�C�	��=,D��7`���ѨU/�kJ�1��h�h�'�f��ЫR��$9r�r��vG�,����w�ɣ!��GY^�P����1ٺ2}��Pݣ
+*�<�ӕ��W�6����J�1$4��g�KM쐷O_Đ�ecԓr�����k�f�d��P�r	�Ӑj5��5Q��1
+'�yX����5pMw�|�e&04Y#UXx	���ٟ
�R�
+����S@�!����n��Z�����6nipfK�#�&W4�d0P�u��A_ݛ?|��P��-�%��\�YS�H,��� ;B�i��'��.��G�Dv�{���9�Y�D�dj,$ȉ���є�Cs�F�B:5F�QWj�>hq��f�n��HYS���OUy8��#cIA����0e�Uv��:x�v�e�ڠ���G?JΚ�joi�#1\�U1���>S�V�C^��!V�j������B�Pu+=c�k�1X�_���슱���ZFʝ�����w��<]$(�����jƑ���T��9}��h
ӪE��s��(	�\.	�v}�*����هZ��3E_�۰��+��ㇶj9S���3�bҸ�]͖:�%���+�a����,�;R��+����@X���,h���:}�x�zmt&&�j�
r,��|���
+/X
8
���S� ;��h�����#�u����x��CƑ�!����/�h��,�D۷4��a�ɼ�ZFY����ͽ��
{
��i-u��8�٢���(��+�i.f+V��N����V�dR�ʊ2�.U,|�����
+M:�+��o��;��a�k���6����d"�/��2��T&� �cI.gh=��5�#�s��H��q1Ji�����s��Aݛ�	C?Ѽ��";��[>/�2��4��T+�(����@������iZ�B2�*�<a�M"��+�:^�Yq/y�H>���˻9��A/v,Q�{�q�\H��%�@��T�l4��_%jJ�D���UQ�,e7��d�&,1��߾�r������wm�t�:`V	�8|��S�K�H��z��?2`���AN��xJSZ�Oi��-Œ#�5Ҽ�6ύtR=Ex惰�mH[�c��va�XY7:����"��B2WYC1�Qj�^�n��r�W�\��~v�=,Bt��}��?�
8��5�T�1�`\�g�M����A(~�#�Ӳ8�2�F�*O��l���-�:]�)�X	T�!hF�����0' ����OF��������
?��q�mHw����n�+?��8-y��ʖa�!d;Q>z B�'�����l�]{�@�%ǥ'�SJ���endstream
+endobj
+4910 0 obj <<
 /Type /Page
-/Contents 5220 0 R
-/Resources 5218 0 R
+/Contents 4911 0 R
+/Resources 4909 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 5166 0 R
+/Parent 4857 0 R
 >> endobj
-5221 0 obj <<
-/D [5219 0 R /XYZ 71.731 729.265 null]
+4912 0 obj <<
+/D [4910 0 R /XYZ 71.731 729.265 null]
 >> endobj
-5222 0 obj <<
-/D [5219 0 R /XYZ 71.731 741.22 null]
+4913 0 obj <<
+/D [4910 0 R /XYZ 71.731 741.22 null]
 >> endobj
-5223 0 obj <<
-/D [5219 0 R /XYZ 71.731 718.306 null]
+4914 0 obj <<
+/D [4910 0 R /XYZ 71.731 718.306 null]
 >> endobj
-1914 0 obj <<
-/D [5219 0 R /XYZ 71.731 688.254 null]
+1936 0 obj <<
+/D [4910 0 R /XYZ 71.731 688.254 null]
 >> endobj
-994 0 obj <<
-/D [5219 0 R /XYZ 201.827 645.157 null]
+1010 0 obj <<
+/D [4910 0 R /XYZ 201.827 645.157 null]
 >> endobj
-5224 0 obj <<
-/D [5219 0 R /XYZ 71.731 636.334 null]
+4915 0 obj <<
+/D [4910 0 R /XYZ 71.731 636.334 null]
 >> endobj
-5225 0 obj <<
-/D [5219 0 R /XYZ 71.731 582.586 null]
+4916 0 obj <<
+/D [4910 0 R /XYZ 71.731 582.586 null]
 >> endobj
-5226 0 obj <<
-/D [5219 0 R /XYZ 71.731 577.605 null]
+4917 0 obj <<
+/D [4910 0 R /XYZ 71.731 577.605 null]
 >> endobj
-5227 0 obj <<
-/D [5219 0 R /XYZ 89.664 556.848 null]
+4918 0 obj <<
+/D [4910 0 R /XYZ 89.664 556.848 null]
 >> endobj
-5228 0 obj <<
-/D [5219 0 R /XYZ 71.731 528.788 null]
+4919 0 obj <<
+/D [4910 0 R /XYZ 71.731 528.788 null]
 >> endobj
-5229 0 obj <<
-/D [5219 0 R /XYZ 89.664 513.012 null]
+4920 0 obj <<
+/D [4910 0 R /XYZ 89.664 513.012 null]
 >> endobj
-5230 0 obj <<
-/D [5219 0 R /XYZ 71.731 485.326 null]
+4921 0 obj <<
+/D [4910 0 R /XYZ 71.731 485.326 null]
 >> endobj
-5231 0 obj <<
-/D [5219 0 R /XYZ 89.664 469.177 null]
+4922 0 obj <<
+/D [4910 0 R /XYZ 89.664 469.177 null]
 >> endobj
-5232 0 obj <<
-/D [5219 0 R /XYZ 71.731 467.02 null]
+4923 0 obj <<
+/D [4910 0 R /XYZ 71.731 467.02 null]
 >> endobj
-5233 0 obj <<
-/D [5219 0 R /XYZ 89.664 451.244 null]
+4924 0 obj <<
+/D [4910 0 R /XYZ 89.664 451.244 null]
 >> endobj
-5234 0 obj <<
-/D [5219 0 R /XYZ 71.731 449.087 null]
+4925 0 obj <<
+/D [4910 0 R /XYZ 71.731 449.087 null]
 >> endobj
-5235 0 obj <<
-/D [5219 0 R /XYZ 89.664 433.311 null]
+4926 0 obj <<
+/D [4910 0 R /XYZ 89.664 433.311 null]
 >> endobj
-5236 0 obj <<
-/D [5219 0 R /XYZ 71.731 431.154 null]
+4927 0 obj <<
+/D [4910 0 R /XYZ 71.731 431.154 null]
 >> endobj
-5237 0 obj <<
-/D [5219 0 R /XYZ 89.664 415.378 null]
+4928 0 obj <<
+/D [4910 0 R /XYZ 89.664 415.378 null]
 >> endobj
-5238 0 obj <<
-/D [5219 0 R /XYZ 71.731 400.987 null]
+4929 0 obj <<
+/D [4910 0 R /XYZ 71.731 400.987 null]
 >> endobj
-5239 0 obj <<
-/D [5219 0 R /XYZ 89.664 384.494 null]
+4930 0 obj <<
+/D [4910 0 R /XYZ 89.664 384.494 null]
 >> endobj
-5240 0 obj <<
-/D [5219 0 R /XYZ 71.731 371.443 null]
+4931 0 obj <<
+/D [4910 0 R /XYZ 71.731 371.443 null]
 >> endobj
-5241 0 obj <<
-/D [5219 0 R /XYZ 89.664 353.61 null]
+4932 0 obj <<
+/D [4910 0 R /XYZ 89.664 353.61 null]
 >> endobj
-5242 0 obj <<
-/D [5219 0 R /XYZ 71.731 351.453 null]
+4933 0 obj <<
+/D [4910 0 R /XYZ 71.731 351.453 null]
 >> endobj
-5243 0 obj <<
-/D [5219 0 R /XYZ 89.664 335.677 null]
+4934 0 obj <<
+/D [4910 0 R /XYZ 89.664 335.677 null]
 >> endobj
-5244 0 obj <<
-/D [5219 0 R /XYZ 71.731 294.666 null]
+4935 0 obj <<
+/D [4910 0 R /XYZ 71.731 294.666 null]
 >> endobj
-5245 0 obj <<
-/D [5219 0 R /XYZ 89.664 278.89 null]
+4936 0 obj <<
+/D [4910 0 R /XYZ 89.664 278.89 null]
 >> endobj
-5246 0 obj <<
-/D [5219 0 R /XYZ 71.731 237.879 null]
+4937 0 obj <<
+/D [4910 0 R /XYZ 71.731 237.879 null]
 >> endobj
-5247 0 obj <<
-/D [5219 0 R /XYZ 89.664 222.103 null]
+4938 0 obj <<
+/D [4910 0 R /XYZ 89.664 222.103 null]
 >> endobj
-5248 0 obj <<
-/D [5219 0 R /XYZ 71.731 206.995 null]
+4939 0 obj <<
+/D [4910 0 R /XYZ 71.731 206.995 null]
 >> endobj
-5249 0 obj <<
-/D [5219 0 R /XYZ 89.664 191.219 null]
+4940 0 obj <<
+/D [4910 0 R /XYZ 89.664 191.219 null]
 >> endobj
-5250 0 obj <<
-/D [5219 0 R /XYZ 71.731 176.111 null]
+4941 0 obj <<
+/D [4910 0 R /XYZ 71.731 176.111 null]
 >> endobj
-5251 0 obj <<
-/D [5219 0 R /XYZ 89.664 160.335 null]
+4942 0 obj <<
+/D [4910 0 R /XYZ 89.664 160.335 null]
 >> endobj
-5252 0 obj <<
-/D [5219 0 R /XYZ 71.731 158.178 null]
+4943 0 obj <<
+/D [4910 0 R /XYZ 71.731 158.178 null]
 >> endobj
-5253 0 obj <<
-/D [5219 0 R /XYZ 89.664 142.402 null]
+4944 0 obj <<
+/D [4910 0 R /XYZ 89.664 142.402 null]
 >> endobj
-5254 0 obj <<
-/D [5219 0 R /XYZ 71.731 135.264 null]
+4945 0 obj <<
+/D [4910 0 R /XYZ 71.731 135.264 null]
 >> endobj
-5218 0 obj <<
-/Font << /F33 1306 0 R /F27 1208 0 R /F23 1201 0 R >>
+4909 0 obj <<
+/Font << /F33 1322 0 R /F27 1224 0 R /F23 1217 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-5257 0 obj <<
-/Length 2664      
+4948 0 obj <<
+/Length 2661      
 /Filter /FlateDecode
 >>
 stream
-xڝYݏ۸�_�ؗʀ׵�e�S�\Sܵٶ(z}�-�f#K�(%���;�%;�E�������̏t�����!7yM��DY�p���>�`��7�p<	˓��������f���LJ8)6i�>�q�)����G��z5Me]=E�6x����?��;Vit�8�aʻ�0���b���m�0�'{0�3�>�����Q�4�7�"�M͕�F�(�TWl�M�$��mV�6���Ҡ�l���{��ϫb�ܯ���֭�[Vt�m��W���dd�����p\h�S[�s�=r�q�?�?�����������/�md*�u�a`:k~��v��M��pê=��lk��Smv�L����0���
->�6����,Ҭ�4xar�v�u�%<`ћqS�Y̛����
�'��+_�O��6�'h?xA�0=�o��s#�=�yɵkQ�/�R6��̡���hg���ζ9��~m���}D*l���>���:^�����t�Ԏ?$K���	���p-����tl;���_�˵6�}Y88D�4�H7\n�,���b���4ٟ�^{�����ϥ��7F4.�jV�G_�}Gو�*,��
-)�?%�
-��7EH�(%�X�Cn;����]$
�� 
-�!1w�uw}�TeW̓-^[��4�p�a��k�\y2< �yW���5����+�UNĹ������:�x^�[�n��%M��~[��F�(}]�"��<|~����хVqs^Ö�t�G|$f3��S�G���c�<������ų��aҟ��E�kD��d�w}�T�)eSMo�%fl��ٍ���-�RJ�H���O���`��6ݶ"�?w�p:oו�IO:�����zX
-�fd�92ʘ��
-��	���p`mF�"��P|Y���x(�P*w��Fw^2A�d��-��ʋa��b(�k�j���H.���n���5��-t³�l����hS��Fѷ����0��TAU�ұCc3mo�e}�~{\�$���;Ё��S��PXC�;&O����3H�׺<��>q��Re�L I�bg\X��j��uR��C�������78�^�=���KA�t�NB�0�v�
;������1L��ap�D���q��Eh{3E4��a�f��,ⷎ{
-Dip����7.��.�F��)	�:qW�0��uk`�C�A[1�s���s���/�)@%�g��Gh3��y.��9����3��n7Q��z�k��eo�{����7���M��Lˑ��@�S�{�|�䯶?3]A&�qc���U����ah*e'Q��f�Ȓ���~f�,0��d��� 
�D��^sZF�i@����D6�>t�#|�,���Y��������DL�w-Ԫ�yF���z�J���ꭄ���E�D��3�˝@�Z �zl�㡹HD�蝹���'�����k=��S��]�?
ڡG�A�gAp�g9]�/m�TM0�K�7�X�Ds�H���1L!Re�%t-Q�(�+���Ls@#e
-h�3n�e�{�&CAQ;�p������'J ���=�J�!����Cƙ�q�Sm�?~�$}<r�����N�'͉�{��i<�n�A$!�:PE�^S^-�`*�0��EA
�n��.�g������tɔ�3��0���A㡱�D�h�rRfEYe/�uF��.��y©	[�8��x�w��z��a���" ����JZP	���{X����\J�b�P�wa�����MK��f-�:����J�S� �.{�*���ɟ�)4�$�Ie����R@2�%e��.�?��6��&�[�kV��R�f�՘n��<_��R$��ޛ�G��T=��~X��e��$�E��fܔҘ�1������0����G���
��
�����P#���coF	���S	�H%��;�V"�P�:*|̑{	f�,�܊{� ��{q���k<��g@�oW���� M��<�z�i�6Wѩ1�YF7;O}��6��B�l�|u=��>��?�/��C|����,�O?U=ݐɐ����}+�[=�|F`���#Yc2F��1��#�*$�VX~"Į�q�����t
�u�\,3����(�CļW;>��R��l�����x�@� +<4�C���+�ъ,�+�V�FN7$TY}c{v��������I��z/��n�e�we7p>���P�{I�*z��1�_)3���<Q���;)iCˇkL�qWF���ƴ���,ҕ���/�'�$/R� �s�1��%���:肞�;+������O�zz�Bm��kSZ�p@.��~�r��#W�<el�G�8��W�܋}^��zU�3�~�?��_�F��!Ʀ�˳q�t�	��f�U7����;����
�U�B�_��E��~,�*����7P��_��璘ߞP�3'��Q�p`�2�#���"��*#��j�~�����Uv!�BOt��#:�E"�& @,�K
-�,�U_DY-F/����e/[�;Q*ޞe�dvbG�"�/�n��߽�c��s���˱��8�i���g����Qc��(��e-,-�������I�z��hxth��Ź�e�7{����3W�s6t�Mѵ^��*��&Ŧ����xb���8���6ީ4gF��U�v����B�endstream
-endobj
-5256 0 obj <<
+xڝYK���ϯh�%2�v���=�>f3�nr�N� ��l�63����:�>��(ٳ
4�b�X�*V}�ç-��Oy��ch��&�ҧ�����3?�	��EX^<�o_���]?�6�,~z=>�I�I��SG�"��^�o�W�T���K�n��7�����p��*M�n�1����*Lӗ�m��d�qf���?���uT+��ͮ�Ss�S=�'���b'	in�U�
>��4(;[6=�ow���-�+i��uk�U�p��gc;پ6@q2�����k�ܾ_����fq<%�r~n+��v���]�!�s��whl���Aiд=7��+�Ͷ���f'Τ�p�ˀ
+co/���ls�k/�K�"�*L��[д��/��ތ���b�����n��8	04������&�
��/H����휹��{^�kעr�l�l��Ch��H�ms��*�C���T�3}���:^�������Ԏ?$K���[��vpL��]o�{y9�S~˯��Z��,"<L��L"�p�1��3(����3�Td.{���6B>����Ѹ��Y�}��e#zt��N+�����+�f�!����c�S���,�R�v�4h�Ƃ(���Q�I��eS�]5�xly\(ҠÑ�n��s������E0\y�g[�d��>�P|W9�fb�ut/�y��x�u�oŻ�Z�4o�e��;����j������o��}�.���������cP�8�#1���=�Z|8��-�(�@ίܟe�(�e�
����7ٮ
F��J<��R��M5I��[���9�fw3��8J)�"�?)���/�tۊ��ܵ��,�]W6'=�,�³��ae(���q ��(c���
�u��lѶ�;_V���*C�b�����K&�@�;�%t\y1�9_�q�WM_��Ÿ��
�{!��P��B'<�1�&[*˝6�k}:��NT%*;46���\�G��5O��H�(;<�	�5TA�a�T�`j�<��~�˃�����+U���D-v��������X'�8���8*���{���u��Q��L��$�cjgݰӘG����Dj��qMDʉ��\0P^��W1SD���lv�P�"~븧@��y���}s�B�8蒞!aK�y�S0�"��`
+����̇R��bN�L���,@^�S�J��
+���fH��\
+
+r���'�5BgP/�n�8#��
א����6�0T;;�AoX��4�-0��#ŕ����f�ɟmf��L V��4C�6�����T�*N�8y���%ӝ��,�9X`J�	��FA�
�@��洌(�0����l�}�G�.Y�W�%��Ts1Sm3�s��V�Z�U]�"ő����? ��[	��#󋤉�8g��;��@8�ؚ�Cs��D�Uk
Y	O��/2Y�z&�}�8�����C�L�8Rςএr�_�ީ.�`���/$�8���0��Qc�B6��FK�Z��Q�W
+��F��Hg���P�.L���v@?���'py�O�@���G���C@5�󙇌3#��4��p��Hz������O�����x�\�HBu������0Z��TXaP�#�>�*ݠ1
+z]ʏ���;3;;���
+�)g�a�My��Cc�=��#�B�̊��^��>���],��S�pq���`��b}�'IE@2MM���,{u���W�3��dŘ�r��+�����Z�uL75U/�<��AR3\��U���?�Sh$IL1���_�륀drK�
+e]�7>~��mBQ7LD��׬�?� �(#�1=�%�y���H.rգ7��	�z6��"��)��0�=H�0��;̸))�1cczw���?�a Yu�g���
��
�����P#��x`oF	���S	�H%���V"�P�:*|̑{	f�,�܋{� ��{q���k<��g@�oW����{SA�&�gyP�`��m��Scz�(�nv��0�=�m��
+�����$�0������M��Y��~�z�!�!);����V·zl���2&r�G�"�d�6��cJ7!F`U8HR���D�]A�$Ca�v�J�Xf��%l5P؇�y�v|2�w;l����ta	:-��P��AVxh�\�Wr�Y�WL*����nH������9&�u]�H�n��n�e�we7p>���P�{I�*z��1�_)3���<Q���;)iCˇkL�qWF��+ύi1<��Y�+�=�+^�O�	H^�2A.��c<�J&Lge-t�=�wV���I+a	������Vyצ��7��\|����G��y��Џ>q&�h����8���g��N�����C�M�g�&�rn��0�n�3v�w:���e>������~�T��X�Ux}3��_Ǿ~�%1�=��SgNz��b��@e�G:�E�UF����-���Vم\=1��.��4�ܛ���$/)���W}aeQ����{�Ȗ�l��D��9x{��ى�G�D0����7��2�QW|�,ǒ��\�_��r��#gG�>�^�������f��Ηn&��r��ѡ�f�—)��M��;�\e����~{]/j�_H�bS��o�D<���B�F�f���n���t�w�/z]B1endstream
+endobj
+4947 0 obj <<
 /Type /Page
-/Contents 5257 0 R
-/Resources 5255 0 R
+/Contents 4948 0 R
+/Resources 4946 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 5166 0 R
+/Parent 4857 0 R
 >> endobj
-5258 0 obj <<
-/D [5256 0 R /XYZ 71.731 729.265 null]
+4949 0 obj <<
+/D [4947 0 R /XYZ 71.731 729.265 null]
 >> endobj
-5259 0 obj <<
-/D [5256 0 R /XYZ 71.731 646.476 null]
+4950 0 obj <<
+/D [4947 0 R /XYZ 71.731 646.476 null]
 >> endobj
-5260 0 obj <<
-/D [5256 0 R /XYZ 71.731 561.729 null]
+4951 0 obj <<
+/D [4947 0 R /XYZ 71.731 561.729 null]
 >> endobj
-1915 0 obj <<
-/D [5256 0 R /XYZ 71.731 530.844 null]
+1937 0 obj <<
+/D [4947 0 R /XYZ 71.731 530.844 null]
 >> endobj
-998 0 obj <<
-/D [5256 0 R /XYZ 279.296 487.747 null]
+1014 0 obj <<
+/D [4947 0 R /XYZ 279.296 487.747 null]
 >> endobj
-5261 0 obj <<
-/D [5256 0 R /XYZ 71.731 475.309 null]
+4952 0 obj <<
+/D [4947 0 R /XYZ 71.731 475.309 null]
 >> endobj
-5262 0 obj <<
-/D [5256 0 R /XYZ 71.731 433.147 null]
+4953 0 obj <<
+/D [4947 0 R /XYZ 71.731 433.147 null]
 >> endobj
-5263 0 obj <<
-/D [5256 0 R /XYZ 71.731 365.466 null]
+4954 0 obj <<
+/D [4947 0 R /XYZ 71.731 365.466 null]
 >> endobj
-1916 0 obj <<
-/D [5256 0 R /XYZ 71.731 321.63 null]
+1938 0 obj <<
+/D [4947 0 R /XYZ 71.731 321.63 null]
 >> endobj
-1002 0 obj <<
-/D [5256 0 R /XYZ 303.224 276.475 null]
+1018 0 obj <<
+/D [4947 0 R /XYZ 303.224 276.475 null]
 >> endobj
-5264 0 obj <<
-/D [5256 0 R /XYZ 71.731 267.652 null]
+4955 0 obj <<
+/D [4947 0 R /XYZ 71.731 267.652 null]
 >> endobj
-5265 0 obj <<
-/D [5256 0 R /XYZ 71.731 221.875 null]
+4956 0 obj <<
+/D [4947 0 R /XYZ 71.731 221.875 null]
 >> endobj
-1917 0 obj <<
-/D [5256 0 R /XYZ 71.731 178.039 null]
+1939 0 obj <<
+/D [4947 0 R /XYZ 71.731 178.039 null]
 >> endobj
-1006 0 obj <<
-/D [5256 0 R /XYZ 394.793 134.942 null]
+1022 0 obj <<
+/D [4947 0 R /XYZ 394.793 134.942 null]
 >> endobj
-5266 0 obj <<
-/D [5256 0 R /XYZ 71.731 122.504 null]
+4957 0 obj <<
+/D [4947 0 R /XYZ 71.731 122.504 null]
 >> endobj
-5255 0 obj <<
-/Font << /F33 1306 0 R /F27 1208 0 R /F23 1201 0 R >>
+4946 0 obj <<
+/Font << /F33 1322 0 R /F27 1224 0 R /F23 1217 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-5269 0 obj <<
-/Length 2503      
+4960 0 obj <<
+/Length 2497      
 /Filter /FlateDecode
 >>
 stream
-xڍY[�۶~����%Ԍ/�H�Onj'�I�>�L��D��Tx��߽�)��X,w��o8�*��*
�4��h�G�d����#�|�&�'ayrx�����C���~�^�U���$NVi�Y�^�{�.]��S��{����'|X'�׮��Ӛ)k�azg]��7M���\ם^����o޿�f%q�����[�;ӣt2�z ��x�%�/m��wS�b��W7�xys��J�Å��������x�d:᭔9[e��?�;Q>/}���+�X4hU৪�•,�U�c����:�T��nX���x�)���PByQ���A ���E�e�nz���\����I�$40j���|�8AS�y�|E5����l�?fK���O����S�-y�u/��~�[0�l�!m��M}�h�I0*��Ԕ��x�����dW0���;�i�V�֬#��N�����`�8���ǝ�����ah�Gd���px���I/�4���?z�������L+�F$u:��I�?��mru�D�6k�Ao@��ͥ�����tQe^㜛P��]��$��"X�B,���A�=��%ů[ܺi�s�fބ�aw}���1y�m����p�Ս�"�R��B��eZ��z��j7�-�5XP0����d�};����1�"�{��	��I{5�~���Z���M��6�M/گ���S&-�O�`� أ0A4�
&�A)�
fhk�����kU�	�w��gQ�';��e'.�S��rl���p����b򯆌���+yxn
-�KD9���]Ë�f.:yX)L׷氎o�5/�-nܚ"6P��l��� �~�@�%F8��G9A���Ij�l�s[��)�"# P>��m 8�����,�c	�0�'_ʚ`�̺�΍�xr���t�hH�6gsBt��j�r��mm��#g�k����T<S��Ph�`��-�J�oל5�)��x0s�0���cHPEa�����.�o��V"�&���Y\]Z`�X��io��~^�X[�%���~���k��gF�4J��b$��Cs�����(1��B/��q�����t'^r|3��#���'���<�h;1�i��v�W����ќ`H9���u=k�"7������2m�7�K�M�V�ٽ��ޟ���uS�t>�.����|��ρu?�
-dl����ial�/��(��z
��&���%tá�����=��&S�$̸���"sչtpF�Ub�"v�RZ�fI�xF����j��q��]/U��3Z�D�]xI3o a���Kg�ܓ&g�����qz�)6<���u��r�3�s����n����㖡"?�2$8:)�z������];y����ƫ�:��mëhڌi�&��p�cߌJu��f�`*6��#��ff�����A��.֡)����������i��4�)r}+��$06�J������&��Zxe�:�[U5�b*�T���a ��a��a�Is���J�L3�4s��_j�(a�=����$��M��H��(�e(	p�C.�X�`R�����Z�e�:�\fY��H̏�=��v�Q٘E�S��\"aX��e�v������30�U&�~��-E�d�6�{R:s�;�<p"^Lkzf5��<���
-�Ɇ�c���3��жRϔ%�1���%���Uf�{���-\����� ��l�a	���9��������+�����^��l��e���^�^���EiD�Tn"8�<N�$��ã.���`h��D�ꩇ��M�τ�K�XÌZe�R����Qr��k̀A���H#�~�-z�1q��&o�H`]�J�Thz��2���՗�� �ۧ���*��F�.��}eSU\ �b��#j��ˇ+�2�'n��i�i3=@�sPj[�l��\��N�f���X��y��U����u�@�%.
-�Y��I �i;�r+�)ZU�����6{`KG4�w�Z�%�bʅ{~B�n'���^�� O~�}�9��+�b����@�����fN׋t��e�{�{��i�hr��
-��[�E*�Z.���a:��)�J��C}�-�.�P \�]LO�s�^u�*~G=�U�[Rh��k5�&%�S#iyír'���,cJ�j5N��������^H�䀢��2�F<�c��<͑�
-���TiH�\�p��cl����l�,?��Y-�G9����x�3c�0T���	��O�օ�(3�������*���+�E���dp*;<><�]�'���$�h�%"���~�z�>�l�?}b�����?�o*0�q���[7��r�	D����|�m���+���#0�Wu��t��3Pl��F�#t{D���8�ܦ�@�F�6-u�����/���N
���y`mw�]4�hY=�~��p[�7���\#P@_X`�/�C��W�G�m�ga�ſ�M,wtK��⽕B�}����{]�ر� endstream
-endobj
-5268 0 obj <<
+xڍY[�۶~����%Ԍ/�H�Onj'�I�>�L��D��Tx��߽�)��X,w��o8�*��*
�4��h�G�d����#�|�&�'ayrx�����C���~�^�U�M�m�_�q�gI�z)����\t]�?�OQx��������u�x�:N=���ɇ�:�tݫ�45S�ar]wz�����y�2��ĩ���/Zny�L���t� ���,���:L��M���S�^��o����b*����֚�g�鄷R�l�M˃���D���y�O<R�hcѠU����
+W��V��Fӏ��S�~�aA�.����0��r@�	�EY�>&�w��E�e�nz���\����I�$40j���|�8AS�y�|E5����l�?fK���O����S�-y�u/��~�[0�l�!m��M}�h�I0*��Ԕ��x�����dW0���;�i�V�֬#��N�����`�8ڦ؇������ah�Gd���px���I/�4���?z������Z�i�H�t.	��(����P�2:m��		�ހ.��K�s���ʼ�97�B����I�'E���X �%�o�j{rRK&�_��u�
+�2;6�"���?_!8uL^z>q�-\gu㵃H�T*��&c����:�^���
mq
Lh��6�x����0� L���Şqw�?`�^M���y�D*��V�DmmSg�
�CӋ��멩��I�S��+�(L�a�I�GqB���4g�ת�0���Ϣ�Ov���:N\�h�������zKGt��_
#؛W���� �r�����o� \t�R��o�a��k^�[ܸ5El�(����%�A�H��K&���;?�	���NR�dK��z�0O1��^o��֐u=�|fK8�Q?�R�[d�]tnTœ�nϦ�FCʶ9���3
U�C�hk�m!8;X�L<��y��:��B��|nq(U~���c,�HQU�c@�Q�(tC�X�*
+#�(��v�|s4��6Y��t���������?H{k�����:��2�p(a� �X�d]�'/83��P�M#٬�c��TE�az��;���>V�;���A?w?�5���Gۉ�N3���� -���C�A�W��YC�a.�ׅ�X�i��	\�mµ���ͤ��l]7������)t�`^�W���T��XwP� c��X�Hc�}�4F��k���0��.���$p����6�b aƕ7���Υ�3������*�0Kz���3"����|WK��í�zq��^��� ���H�y	�7D�\:��d09g]T���kL��)/�s���Cߜ�s�
Vuc������!��I��#��xl}o�����K��`4^��	��n^�@�f�H�6�'�;�fT�s�4�S��Q�53�(�FR��v�MA���g���/��~�H�$�)M��[�%���W%�]�p49&��+����r���SA�����I�C?P_�O�S��T�e�Y/��{
�R�E	��v�'�|nʞ.@�TF.CI��p1�����P�5��",�A�Z0ˢ�Fb~d�@�W�K���,r,����A(���(?(۷;��e�������0���dn)R$;�	��ҙ3��[����bZ�3��$_ �1�T�N6L�'���q�X���z�,��n�(e�� �2��ӽ7�n��x����)�g+
K����ͩG�^�~~�^��c=���B�g���.��G������.J#���r����q
+'�wWp�o� C�<@$R��PO=��>hb|&|\*v�f�*�Bw�O��ڐs_c�0D)��l������4yKG��V2�B�C�8��)����<����>��8�,P1��0�t���+���!�QS�_>\q�A<q�M�H;O�����Rۢf;����4wp4�o'���uΣ���/�[j,qQ`�j�%HyM�y�[�OѪ���W��[:��+�.�S.���t;�/��y����q�\���.@n��Z�W�p��0s�^���-�����OMc/@��U�ܚ.Ra�Zp�t\���N�U�`�:��m�t!��j�bz�������U�;�A�ݒBC�_��4)1�I�n�;��gS�W�q����d ��X_���B$�Ӕqh7���i��W(L��JCR���c#LD�f[�`���j1=ʉ}�ئ�_��{�K��:4vH�e|jܰ.L��@�����V�6��P�Mo_�.꨿O%�S�������B>�o�/ Ek.	������{�If�8�~���~�/\�����鏳7��ߺ�����O r�Ew�4�so���_)>?������������d���b[�4��	��#'H����a�6
�}0Z�i�{�Ʒ���4tj`�~�k�S좩�E�������¾ɬ(�����_x����?:m3?�/��mb���[�~�����Pv���ޏendstream
+endobj
+4959 0 obj <<
 /Type /Page
-/Contents 5269 0 R
-/Resources 5267 0 R
+/Contents 4960 0 R
+/Resources 4958 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 5280 0 R
+/Parent 4971 0 R
 >> endobj
-5270 0 obj <<
-/D [5268 0 R /XYZ 71.731 729.265 null]
+4961 0 obj <<
+/D [4959 0 R /XYZ 71.731 729.265 null]
 >> endobj
-5271 0 obj <<
-/D [5268 0 R /XYZ 71.731 675.303 null]
+4962 0 obj <<
+/D [4959 0 R /XYZ 71.731 675.303 null]
 >> endobj
-1918 0 obj <<
-/D [5268 0 R /XYZ 71.731 631.467 null]
+1940 0 obj <<
+/D [4959 0 R /XYZ 71.731 631.467 null]
 >> endobj
-1010 0 obj <<
-/D [5268 0 R /XYZ 182.287 588.37 null]
+1026 0 obj <<
+/D [4959 0 R /XYZ 182.287 588.37 null]
 >> endobj
-5272 0 obj <<
-/D [5268 0 R /XYZ 71.731 579.547 null]
+4963 0 obj <<
+/D [4959 0 R /XYZ 71.731 579.547 null]
 >> endobj
-1919 0 obj <<
-/D [5268 0 R /XYZ 71.731 494.915 null]
+1941 0 obj <<
+/D [4959 0 R /XYZ 71.731 494.915 null]
 >> endobj
-1014 0 obj <<
-/D [5268 0 R /XYZ 188.364 451.818 null]
+1030 0 obj <<
+/D [4959 0 R /XYZ 188.364 451.818 null]
 >> endobj
-5273 0 obj <<
-/D [5268 0 R /XYZ 71.731 442.995 null]
+4964 0 obj <<
+/D [4959 0 R /XYZ 71.731 442.995 null]
 >> endobj
-1920 0 obj <<
-/D [5268 0 R /XYZ 71.731 384.266 null]
+1952 0 obj <<
+/D [4959 0 R /XYZ 71.731 384.266 null]
 >> endobj
-1018 0 obj <<
-/D [5268 0 R /XYZ 365.182 341.169 null]
+1034 0 obj <<
+/D [4959 0 R /XYZ 365.182 341.169 null]
 >> endobj
-5274 0 obj <<
-/D [5268 0 R /XYZ 71.731 332.346 null]
+4965 0 obj <<
+/D [4959 0 R /XYZ 71.731 332.346 null]
 >> endobj
-5275 0 obj <<
-/D [5268 0 R /XYZ 179.356 293.707 null]
+4966 0 obj <<
+/D [4959 0 R /XYZ 179.356 293.707 null]
 >> endobj
-5276 0 obj <<
-/D [5268 0 R /XYZ 71.731 286.568 null]
+4967 0 obj <<
+/D [4959 0 R /XYZ 71.731 286.568 null]
 >> endobj
-1921 0 obj <<
-/D [5268 0 R /XYZ 71.731 216.83 null]
+1953 0 obj <<
+/D [4959 0 R /XYZ 71.731 216.83 null]
 >> endobj
-1022 0 obj <<
-/D [5268 0 R /XYZ 433.251 173.732 null]
+1038 0 obj <<
+/D [4959 0 R /XYZ 433.251 173.732 null]
 >> endobj
-5277 0 obj <<
-/D [5268 0 R /XYZ 71.731 161.561 null]
+4968 0 obj <<
+/D [4959 0 R /XYZ 71.731 161.561 null]
 >> endobj
-5278 0 obj <<
-/D [5268 0 R /XYZ 71.731 137.065 null]
+4969 0 obj <<
+/D [4959 0 R /XYZ 71.731 137.065 null]
 >> endobj
-5279 0 obj <<
-/D [5268 0 R /XYZ 71.731 127.102 null]
+4970 0 obj <<
+/D [4959 0 R /XYZ 71.731 127.102 null]
 >> endobj
-5267 0 obj <<
-/Font << /F33 1306 0 R /F27 1208 0 R /F23 1201 0 R >>
+4958 0 obj <<
+/Font << /F33 1322 0 R /F27 1224 0 R /F23 1217 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-5283 0 obj <<
-/Length 789       
+4974 0 obj <<
+/Length 788       
 /Filter /FlateDecode
 >>
 stream
-xڕUQo�0~ϯ@y2R��C�����.S4M+{�����X%82di���|m���)��l�>>Ƒ�/�(�8qijԫ6�л���Q�VLݒ�5�����^3�+�'y����x�i��/v��ʶV�4NC6h�����+?M��yƤ$䳮v~�6��E�tK�RU������:����gA��7�֜P�3/�3��G��H�,��$�y�FF9g������)F��'�FVȯ�,a�R�w4�\ܔ�_���r9���W��`�$aWF������Z��4����L"��w���+�^Y�&4#�������wd�F�G�Y�p\7��4Tz�G!{�L�h��4n�l�:7�U��%�M#�^<ӑ���T��ڐ���c�{�a�������S�����K@��	{�;
-�C�!��ܐ��n@���	�{�z�����?j�)Um�KQS��N<���M֪��b��L�����D�%���m���j��8(�y�
-�XD�=��
-GN���p<�n�1&l�/��><!zx���Fݣs%n�^�z��J�#m"���^;j���`�x�Q\CQ�KYo"���@�Bfr��D�X��g�Al���Ѯ���;#6�B��P��4Y�
��i#EGj��סs��Zp:��j+��q�F6gTٵ5
-��½�ᛰ�p�	��le�+"�^�{T^Is�#1q�jM���_��G�Z�Ҡ<�|��BZ�<*�kB��lT?S��su�]�$O��s���[�ݍp��Q��������Lc��8T��Q��v������endstream
+xڕUMo�0��W9�@�ٖ?�S��]�bV�4��J#ԑ�Y�?QTܦI�"�&��')"���"��CR�$ςf=��;;s5�}�܇̟Ŝד���r�ˀ�M�*(XB�,	��9�l�j�C8O��|�8^}���e�eĄ� B��l�aL�� �B�Z6B�"�]�\�#���*ٛ��1Gԓ"(-���1ͫ4(���4u̇0*Y��U�O�d��Հ��h�_^Jn�Tw8q�����\,~ X/�닛�;9��ERri��tg�������@�?k�X�H�g�j_�pΛ��
�m�ǶY�������]<áћ0��#zz�#ֵF��9���j�m+�m[��7=��9t��v́fN
+fJaEn�G��њ�VU���Y��G�Ec��$�}BDi���P
���0Cwg��?��^�G�)�R���-:�3����Wd%{R\�he7���pGm����jԳX����ʟWׁĆv�`�i�ډ%���s:&��ޕc���p�� ��h �װ5A�ӏhw��+`#v��.�9�M�zs�Y��� /6�+�4נ�zŢ�ؕp��)�	��H��B��<���="���}g�z��34wG#���ڽ�	�c7rw;�>�T�ᱴ�6�pۜ�݉�lU�`E���J{'��=��:�Zl��+ �^;�<7��%1���f�8�q7���r%�0�p�oom��>H5hD7¬�0&����ya��8����9c���ocZ�2.�|=�B��,a4b�>������_*��endstream
 endobj
-5282 0 obj <<
+4973 0 obj <<
 /Type /Page
-/Contents 5283 0 R
-/Resources 5281 0 R
+/Contents 4974 0 R
+/Resources 4972 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 5280 0 R
+/Parent 4971 0 R
 >> endobj
-5284 0 obj <<
-/D [5282 0 R /XYZ 71.731 729.265 null]
+4975 0 obj <<
+/D [4973 0 R /XYZ 71.731 729.265 null]
 >> endobj
-5285 0 obj <<
-/D [5282 0 R /XYZ 71.731 689.765 null]
+4976 0 obj <<
+/D [4973 0 R /XYZ 71.731 689.765 null]
 >> endobj
-5286 0 obj <<
-/D [5282 0 R /XYZ 71.731 647.771 null]
+4977 0 obj <<
+/D [4973 0 R /XYZ 71.731 647.771 null]
 >> endobj
-5281 0 obj <<
-/Font << /F33 1306 0 R /F27 1208 0 R >>
+4972 0 obj <<
+/Font << /F33 1322 0 R /F27 1224 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-5289 0 obj <<
+4980 0 obj <<
 /Length 1875      
 /Filter /FlateDecode
 >>
@@ -19890,191 +18901,191 @@ gkx
 ���
��n��Xwi�)�ǧ�^��V�؁�A�l>�r�YpN�y����}Ae2������<��,�DGAz8I��oB�h"+�o�%�G�/����B�wp��렯��r�4]�W�rG�v
\�*�ip�:�I��Hcb�I��:҈��w���TZ�ap�W���P;�=����	��9xM��K�4�uӵ����~������3
 W��t�
 zĵߩr{��*m/I05�bOj ��]X}�!cz?VT��V�.	T�����8*�(n��c�zky�/����+,��S|�p9��r�cH��b��:���Y�O
Y�c��O1@;h�,ɓg7�u�����1O���_� ��_\�i,*v�x�A
-\ƥ��q��.�j<_�X�W|endstream
+\ƥ���0:]���x���XNWxendstream
 endobj
-5288 0 obj <<
+4979 0 obj <<
 /Type /Page
-/Contents 5289 0 R
-/Resources 5287 0 R
+/Contents 4980 0 R
+/Resources 4978 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 5280 0 R
-/Annots [ 5335 0 R ]
+/Parent 4971 0 R
+/Annots [ 5026 0 R ]
 >> endobj
-5335 0 obj <<
+5026 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [375.699 134.004 435.474 142.915]
 /Subtype /Link
 /A << /S /GoTo /D (http-apache) >>
 >> endobj
-5290 0 obj <<
-/D [5288 0 R /XYZ 71.731 729.265 null]
+4981 0 obj <<
+/D [4979 0 R /XYZ 71.731 729.265 null]
 >> endobj
-1922 0 obj <<
-/D [5288 0 R /XYZ 71.731 718.306 null]
+1954 0 obj <<
+/D [4979 0 R /XYZ 71.731 718.306 null]
 >> endobj
-1026 0 obj <<
-/D [5288 0 R /XYZ 160.355 703.236 null]
+1042 0 obj <<
+/D [4979 0 R /XYZ 160.355 703.236 null]
 >> endobj
-5291 0 obj <<
-/D [5288 0 R /XYZ 71.731 692.504 null]
+4982 0 obj <<
+/D [4979 0 R /XYZ 71.731 692.504 null]
 >> endobj
-1030 0 obj <<
-/D [5288 0 R /XYZ 208.364 644.101 null]
+1046 0 obj <<
+/D [4979 0 R /XYZ 208.364 644.101 null]
 >> endobj
-3775 0 obj <<
-/D [5288 0 R /XYZ 71.731 629.175 null]
+3854 0 obj <<
+/D [4979 0 R /XYZ 71.731 629.175 null]
 >> endobj
-1034 0 obj <<
-/D [5288 0 R /XYZ 117.14 620.82 null]
+1050 0 obj <<
+/D [4979 0 R /XYZ 117.14 620.82 null]
 >> endobj
-5292 0 obj <<
-/D [5288 0 R /XYZ 71.731 615.714 null]
+4983 0 obj <<
+/D [4979 0 R /XYZ 71.731 615.714 null]
 >> endobj
-5293 0 obj <<
-/D [5288 0 R /XYZ 71.731 610.733 null]
+4984 0 obj <<
+/D [4979 0 R /XYZ 71.731 610.733 null]
 >> endobj
-5294 0 obj <<
-/D [5288 0 R /XYZ 118.328 584.955 null]
+4985 0 obj <<
+/D [4979 0 R /XYZ 118.328 584.955 null]
 >> endobj
-5295 0 obj <<
-/D [5288 0 R /XYZ 296.214 572.003 null]
+4986 0 obj <<
+/D [4979 0 R /XYZ 296.214 572.003 null]
 >> endobj
-5296 0 obj <<
-/D [5288 0 R /XYZ 71.731 536.138 null]
+4987 0 obj <<
+/D [4979 0 R /XYZ 71.731 536.138 null]
 >> endobj
-1038 0 obj <<
-/D [5288 0 R /XYZ 86.646 483.825 null]
+1054 0 obj <<
+/D [4979 0 R /XYZ 86.646 483.825 null]
 >> endobj
-5297 0 obj <<
-/D [5288 0 R /XYZ 71.731 473.496 null]
+4988 0 obj <<
+/D [4979 0 R /XYZ 71.731 473.496 null]
 >> endobj
-1042 0 obj <<
-/D [5288 0 R /XYZ 107.616 460.544 null]
+1058 0 obj <<
+/D [4979 0 R /XYZ 107.616 460.544 null]
 >> endobj
-5298 0 obj <<
-/D [5288 0 R /XYZ 71.731 453.501 null]
+4989 0 obj <<
+/D [4979 0 R /XYZ 71.731 453.501 null]
 >> endobj
-5299 0 obj <<
-/D [5288 0 R /XYZ 71.731 448.519 null]
+4990 0 obj <<
+/D [4979 0 R /XYZ 71.731 448.519 null]
 >> endobj
-5300 0 obj <<
-/D [5288 0 R /XYZ 256.795 411.727 null]
+4991 0 obj <<
+/D [4979 0 R /XYZ 256.795 411.727 null]
 >> endobj
-5301 0 obj <<
-/D [5288 0 R /XYZ 392.166 411.727 null]
+4992 0 obj <<
+/D [4979 0 R /XYZ 392.166 411.727 null]
 >> endobj
-5302 0 obj <<
-/D [5288 0 R /XYZ 71.731 409.57 null]
+4993 0 obj <<
+/D [4979 0 R /XYZ 71.731 409.57 null]
 >> endobj
-5303 0 obj <<
-/D [5288 0 R /XYZ 71.731 395.623 null]
+4994 0 obj <<
+/D [4979 0 R /XYZ 71.731 395.623 null]
 >> endobj
-1046 0 obj <<
-/D [5288 0 R /XYZ 320.85 382.238 null]
+1062 0 obj <<
+/D [4979 0 R /XYZ 320.85 382.238 null]
 >> endobj
-5304 0 obj <<
-/D [5288 0 R /XYZ 71.731 369.615 null]
+4995 0 obj <<
+/D [4979 0 R /XYZ 71.731 369.615 null]
 >> endobj
-5305 0 obj <<
-/D [5288 0 R /XYZ 71.731 369.615 null]
+4996 0 obj <<
+/D [4979 0 R /XYZ 71.731 369.615 null]
 >> endobj
-5306 0 obj <<
-/D [5288 0 R /XYZ 71.731 369.615 null]
+4997 0 obj <<
+/D [4979 0 R /XYZ 71.731 369.615 null]
 >> endobj
-5307 0 obj <<
-/D [5288 0 R /XYZ 71.731 357.916 null]
+4998 0 obj <<
+/D [4979 0 R /XYZ 71.731 357.916 null]
 >> endobj
-5308 0 obj <<
-/D [5288 0 R /XYZ 111.582 341.391 null]
+4999 0 obj <<
+/D [4979 0 R /XYZ 111.582 341.391 null]
 >> endobj
-5309 0 obj <<
-/D [5288 0 R /XYZ 71.731 329.271 null]
+5000 0 obj <<
+/D [4979 0 R /XYZ 71.731 329.271 null]
 >> endobj
-5310 0 obj <<
-/D [5288 0 R /XYZ 71.731 329.271 null]
+5001 0 obj <<
+/D [4979 0 R /XYZ 71.731 329.271 null]
 >> endobj
-5311 0 obj <<
-/D [5288 0 R /XYZ 71.731 329.271 null]
+5002 0 obj <<
+/D [4979 0 R /XYZ 71.731 329.271 null]
 >> endobj
-5312 0 obj <<
-/D [5288 0 R /XYZ 71.731 317.069 null]
+5003 0 obj <<
+/D [4979 0 R /XYZ 71.731 317.069 null]
 >> endobj
-5313 0 obj <<
-/D [5288 0 R /XYZ 71.731 317.069 null]
+5004 0 obj <<
+/D [4979 0 R /XYZ 71.731 317.069 null]
 >> endobj
-5314 0 obj <<
-/D [5288 0 R /XYZ 71.731 317.069 null]
+5005 0 obj <<
+/D [4979 0 R /XYZ 71.731 317.069 null]
 >> endobj
-5315 0 obj <<
-/D [5288 0 R /XYZ 71.731 304.118 null]
+5006 0 obj <<
+/D [4979 0 R /XYZ 71.731 304.118 null]
 >> endobj
-5316 0 obj <<
-/D [5288 0 R /XYZ 111.582 287.593 null]
+5007 0 obj <<
+/D [4979 0 R /XYZ 111.582 287.593 null]
 >> endobj
-5317 0 obj <<
-/D [5288 0 R /XYZ 326.852 274.641 null]
+5008 0 obj <<
+/D [4979 0 R /XYZ 326.852 274.641 null]
 >> endobj
-5318 0 obj <<
-/D [5288 0 R /XYZ 71.731 262.522 null]
+5009 0 obj <<
+/D [4979 0 R /XYZ 71.731 262.522 null]
 >> endobj
-5319 0 obj <<
-/D [5288 0 R /XYZ 71.731 262.522 null]
+5010 0 obj <<
+/D [4979 0 R /XYZ 71.731 262.522 null]
 >> endobj
-5320 0 obj <<
-/D [5288 0 R /XYZ 71.731 262.522 null]
+5011 0 obj <<
+/D [4979 0 R /XYZ 71.731 262.522 null]
 >> endobj
-5321 0 obj <<
-/D [5288 0 R /XYZ 71.731 250.319 null]
+5012 0 obj <<
+/D [4979 0 R /XYZ 71.731 250.319 null]
 >> endobj
-5322 0 obj <<
-/D [5288 0 R /XYZ 111.582 233.794 null]
+5013 0 obj <<
+/D [4979 0 R /XYZ 111.582 233.794 null]
 >> endobj
-5323 0 obj <<
-/D [5288 0 R /XYZ 352.018 233.794 null]
+5014 0 obj <<
+/D [4979 0 R /XYZ 352.018 233.794 null]
 >> endobj
-5324 0 obj <<
-/D [5288 0 R /XYZ 135.374 220.843 null]
+5015 0 obj <<
+/D [4979 0 R /XYZ 135.374 220.843 null]
 >> endobj
-5325 0 obj <<
-/D [5288 0 R /XYZ 224.983 220.843 null]
+5016 0 obj <<
+/D [4979 0 R /XYZ 224.983 220.843 null]
 >> endobj
-5326 0 obj <<
-/D [5288 0 R /XYZ 297.992 220.843 null]
+5017 0 obj <<
+/D [4979 0 R /XYZ 297.992 220.843 null]
 >> endobj
-5327 0 obj <<
-/D [5288 0 R /XYZ 419.728 220.843 null]
+5018 0 obj <<
+/D [4979 0 R /XYZ 419.728 220.843 null]
 >> endobj
-5328 0 obj <<
-/D [5288 0 R /XYZ 111.582 207.892 null]
+5019 0 obj <<
+/D [4979 0 R /XYZ 111.582 207.892 null]
 >> endobj
-5329 0 obj <<
-/D [5288 0 R /XYZ 71.731 196.521 null]
+5020 0 obj <<
+/D [4979 0 R /XYZ 71.731 196.521 null]
 >> endobj
-5330 0 obj <<
-/D [5288 0 R /XYZ 71.731 196.521 null]
+5021 0 obj <<
+/D [4979 0 R /XYZ 71.731 196.521 null]
 >> endobj
-5331 0 obj <<
-/D [5288 0 R /XYZ 71.731 196.521 null]
+5022 0 obj <<
+/D [4979 0 R /XYZ 71.731 196.521 null]
 >> endobj
-5332 0 obj <<
-/D [5288 0 R /XYZ 71.731 183.57 null]
+5023 0 obj <<
+/D [4979 0 R /XYZ 71.731 183.57 null]
 >> endobj
-5333 0 obj <<
-/D [5288 0 R /XYZ 111.582 167.045 null]
+5024 0 obj <<
+/D [4979 0 R /XYZ 111.582 167.045 null]
 >> endobj
-5334 0 obj <<
-/D [5288 0 R /XYZ 71.731 146.955 null]
+5025 0 obj <<
+/D [4979 0 R /XYZ 71.731 146.955 null]
 >> endobj
-5336 0 obj <<
-/D [5288 0 R /XYZ 71.731 113.246 null]
+5027 0 obj <<
+/D [4979 0 R /XYZ 71.731 113.246 null]
 >> endobj
-5287 0 obj <<
-/Font << /F23 1201 0 R /F27 1208 0 R /F35 1569 0 R /F32 1215 0 R /F33 1306 0 R >>
+4978 0 obj <<
+/Font << /F23 1217 0 R /F27 1224 0 R /F35 1589 0 R /F32 1231 0 R /F33 1322 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-5339 0 obj <<
-/Length 1472      
+5030 0 obj <<
+/Length 1473      
 /Filter /FlateDecode
 >>
 stream
@@ -20083,948 +19094,971 @@ xڕWM
 :M/�*�I�<�2�㢈�g� �9��xP�S��{!/!PQ���F&�'�Cgy��F̳�"	aT+ݰs�"hP�ɢ^��`�~�|B�Ϟ��6C�'v���^Yk��A]1�f�)h�U��Os�zA{6��4l,��1Ʋ6?�`s׶�4:��Q���4‹I�VR�H���8��ܽ	5c�P�--R`�-*v�h�Sއ����0˜����R���TI��ތ�p��>���E�����gݓ�
 ��
 �#�Ϭ�u��z�C�a���;�m������䋆�'�=>�����FFw_��p����܄�,�,\����e���IBfhxg��ٴ��B�~�WLB���w@��#Q�M���b5�Qh��X���%;�CK�d3�e���

-�kB�%v�d]�f����v�\��R'7��{JS����i�?��3a#MN�F���I�׵�Gရ�[K�G�N)kȫ�)��.ͩ��6�_@$��[|�&�ũ��!y���-O�t5B�o,�0�yF=�:��x������O����ls��i0���9�5;��f7cnx��3߳["�F�Vx��$�E�i*r	�������,�1�`,�&�CS(�wI�Z�,r��i��l~�@��
���z����')PB�{�v��w�a'�������56cGῒmBÏ���,�[����>1��1�� V�~����b�@�G������")D�<��1�2�?�O�iendstream
+�kB�%v�d]�f����v�\��R'7��{JS����i�?��3a#MN�F���I�׵�Gရ�[K�G�N)kȫ�)��.ͩ��6�_@$��[|�&�ũ��!y���-O�t5B�o,�0�yF=�:��x������O����ls��i0���9�5;��f7cnx��3߳["�F�Vx��$�E�i*r	�������,�1�`,�&�CS(�wI�Z�,r��i��l~�@��
���z����')PB�{�v��w�a'�������56cGῒmBÏ���,�[����>1��1�� V�~����b�@�G���R
+g�MI�f�C��/c��;�_endstream
 endobj
-5338 0 obj <<
+5029 0 obj <<
 /Type /Page
-/Contents 5339 0 R
-/Resources 5337 0 R
+/Contents 5030 0 R
+/Resources 5028 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 5280 0 R
+/Parent 4971 0 R
 >> endobj
-5340 0 obj <<
-/D [5338 0 R /XYZ 71.731 729.265 null]
+5031 0 obj <<
+/D [5029 0 R /XYZ 71.731 729.265 null]
 >> endobj
-1050 0 obj <<
-/D [5338 0 R /XYZ 86.646 703.68 null]
+1066 0 obj <<
+/D [5029 0 R /XYZ 86.646 703.68 null]
 >> endobj
-5341 0 obj <<
-/D [5338 0 R /XYZ 71.731 693.351 null]
+5032 0 obj <<
+/D [5029 0 R /XYZ 71.731 693.351 null]
 >> endobj
-1054 0 obj <<
-/D [5338 0 R /XYZ 91.098 680.4 null]
+1070 0 obj <<
+/D [5029 0 R /XYZ 91.098 680.4 null]
 >> endobj
-5342 0 obj <<
-/D [5338 0 R /XYZ 71.731 673.202 null]
+5033 0 obj <<
+/D [5029 0 R /XYZ 71.731 673.202 null]
 >> endobj
-5343 0 obj <<
-/D [5338 0 R /XYZ 71.731 668.22 null]
+5034 0 obj <<
+/D [5029 0 R /XYZ 71.731 668.22 null]
 >> endobj
-5344 0 obj <<
-/D [5338 0 R /XYZ 101.865 657.485 null]
+5035 0 obj <<
+/D [5029 0 R /XYZ 101.865 657.485 null]
 >> endobj
-5345 0 obj <<
-/D [5338 0 R /XYZ 236.362 644.534 null]
+5036 0 obj <<
+/D [5029 0 R /XYZ 236.362 644.534 null]
 >> endobj
-5346 0 obj <<
-/D [5338 0 R /XYZ 284.401 644.534 null]
+5037 0 obj <<
+/D [5029 0 R /XYZ 284.401 644.534 null]
 >> endobj
-5347 0 obj <<
-/D [5338 0 R /XYZ 71.731 619.129 null]
+5038 0 obj <<
+/D [5029 0 R /XYZ 71.731 619.129 null]
 >> endobj
-1058 0 obj <<
-/D [5338 0 R /XYZ 131.506 606.178 null]
+1074 0 obj <<
+/D [5029 0 R /XYZ 131.506 606.178 null]
 >> endobj
-5348 0 obj <<
-/D [5338 0 R /XYZ 71.731 598.98 null]
+5039 0 obj <<
+/D [5029 0 R /XYZ 71.731 598.98 null]
 >> endobj
-5349 0 obj <<
-/D [5338 0 R /XYZ 71.731 593.999 null]
+5040 0 obj <<
+/D [5029 0 R /XYZ 71.731 593.999 null]
 >> endobj
-2041 0 obj <<
-/D [5338 0 R /XYZ 71.731 544.908 null]
+2073 0 obj <<
+/D [5029 0 R /XYZ 71.731 544.908 null]
 >> endobj
-1062 0 obj <<
-/D [5338 0 R /XYZ 109.927 531.956 null]
+1078 0 obj <<
+/D [5029 0 R /XYZ 109.927 531.956 null]
 >> endobj
-5350 0 obj <<
-/D [5338 0 R /XYZ 71.731 524.758 null]
+5041 0 obj <<
+/D [5029 0 R /XYZ 71.731 524.758 null]
 >> endobj
-5351 0 obj <<
-/D [5338 0 R /XYZ 71.731 519.777 null]
+5042 0 obj <<
+/D [5029 0 R /XYZ 71.731 519.777 null]
 >> endobj
-5352 0 obj <<
-/D [5338 0 R /XYZ 71.731 486.128 null]
+5043 0 obj <<
+/D [5029 0 R /XYZ 71.731 486.128 null]
 >> endobj
-1066 0 obj <<
-/D [5338 0 R /XYZ 86.646 433.815 null]
+1082 0 obj <<
+/D [5029 0 R /XYZ 86.646 433.815 null]
 >> endobj
-2106 0 obj <<
-/D [5338 0 R /XYZ 71.731 423.228 null]
+2138 0 obj <<
+/D [5029 0 R /XYZ 71.731 423.228 null]
 >> endobj
-1070 0 obj <<
-/D [5338 0 R /XYZ 202.589 410.535 null]
+1086 0 obj <<
+/D [5029 0 R /XYZ 202.589 410.535 null]
 >> endobj
-5353 0 obj <<
-/D [5338 0 R /XYZ 71.731 403.491 null]
+5044 0 obj <<
+/D [5029 0 R /XYZ 71.731 403.491 null]
 >> endobj
-5354 0 obj <<
-/D [5338 0 R /XYZ 71.731 398.51 null]
+5045 0 obj <<
+/D [5029 0 R /XYZ 71.731 398.51 null]
 >> endobj
-5355 0 obj <<
-/D [5338 0 R /XYZ 71.731 398.51 null]
+5046 0 obj <<
+/D [5029 0 R /XYZ 71.731 398.51 null]
 >> endobj
-5356 0 obj <<
-/D [5338 0 R /XYZ 257.363 374.669 null]
+5047 0 obj <<
+/D [5029 0 R /XYZ 257.363 374.669 null]
 >> endobj
-5357 0 obj <<
-/D [5338 0 R /XYZ 71.731 349.264 null]
+5048 0 obj <<
+/D [5029 0 R /XYZ 71.731 349.264 null]
 >> endobj
-1074 0 obj <<
-/D [5338 0 R /XYZ 127.073 336.313 null]
+1090 0 obj <<
+/D [5029 0 R /XYZ 127.073 336.313 null]
 >> endobj
-5358 0 obj <<
-/D [5338 0 R /XYZ 71.731 329.269 null]
+5049 0 obj <<
+/D [5029 0 R /XYZ 71.731 329.269 null]
 >> endobj
-5359 0 obj <<
-/D [5338 0 R /XYZ 71.731 324.288 null]
+5050 0 obj <<
+/D [5029 0 R /XYZ 71.731 324.288 null]
 >> endobj
-2782 0 obj <<
-/D [5338 0 R /XYZ 71.731 262.091 null]
+2808 0 obj <<
+/D [5029 0 R /XYZ 71.731 262.091 null]
 >> endobj
-1078 0 obj <<
-/D [5338 0 R /XYZ 248.655 249.14 null]
+1094 0 obj <<
+/D [5029 0 R /XYZ 248.655 249.14 null]
 >> endobj
-5360 0 obj <<
-/D [5338 0 R /XYZ 71.731 242.096 null]
+5051 0 obj <<
+/D [5029 0 R /XYZ 71.731 242.096 null]
 >> endobj
-5361 0 obj <<
-/D [5338 0 R /XYZ 71.731 237.115 null]
+5052 0 obj <<
+/D [5029 0 R /XYZ 71.731 237.115 null]
 >> endobj
-5362 0 obj <<
-/D [5338 0 R /XYZ 71.731 237.115 null]
+5053 0 obj <<
+/D [5029 0 R /XYZ 71.731 237.115 null]
 >> endobj
-5363 0 obj <<
-/D [5338 0 R /XYZ 180.012 226.226 null]
+5054 0 obj <<
+/D [5029 0 R /XYZ 180.012 226.226 null]
 >> endobj
-5364 0 obj <<
-/D [5338 0 R /XYZ 118.495 213.274 null]
+5055 0 obj <<
+/D [5029 0 R /XYZ 118.495 213.274 null]
 >> endobj
-2652 0 obj <<
-/D [5338 0 R /XYZ 71.731 187.87 null]
+2683 0 obj <<
+/D [5029 0 R /XYZ 71.731 187.87 null]
 >> endobj
-5365 0 obj <<
-/D [5338 0 R /XYZ 71.731 187.87 null]
+5056 0 obj <<
+/D [5029 0 R /XYZ 71.731 187.87 null]
 >> endobj
-1082 0 obj <<
-/D [5338 0 R /XYZ 109.39 174.918 null]
+1098 0 obj <<
+/D [5029 0 R /XYZ 109.39 174.918 null]
 >> endobj
-5366 0 obj <<
-/D [5338 0 R /XYZ 71.731 169.757 null]
+5057 0 obj <<
+/D [5029 0 R /XYZ 71.731 169.757 null]
 >> endobj
-5367 0 obj <<
-/D [5338 0 R /XYZ 71.731 164.776 null]
+5058 0 obj <<
+/D [5029 0 R /XYZ 71.731 164.776 null]
 >> endobj
-5368 0 obj <<
-/D [5338 0 R /XYZ 109.568 153.299 null]
+5059 0 obj <<
+/D [5029 0 R /XYZ 109.568 153.299 null]
 >> endobj
-5337 0 obj <<
-/Font << /F23 1201 0 R /F27 1208 0 R /F33 1306 0 R /F61 2529 0 R /F35 1569 0 R >>
+5028 0 obj <<
+/Font << /F23 1217 0 R /F27 1224 0 R /F33 1322 0 R /F61 2561 0 R /F35 1589 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-5371 0 obj <<
-/Length 1390      
+5062 0 obj <<
+/Length 1391      
 /Filter /FlateDecode
 >>
 stream
-xڍWKs�6��W�Vy&V��^���m�;};���-16'��%�d�__��mg�Nw| �E�AgQ
-�,���.`��$�ʨ��h_�2�XUU��9�7>.ˢNڦ���?�}�}^Gm�VE���YR�UT�MR�V�c�W���-�y���H"�D�A��H����(�Dl�!Y���)=��et?��F^��F~������
�(mٲ~
-,pq��e�1M�Nw��Ψ�"O��H?~��Q'���� ��e^%U��������$!'I��A3�2�"��X0Т��U�!ݢݴFղJڬf�NO>�+P�<mX��4tST��\�B��I;��p��e�|8��
-�#{����y��y��A;'��N��$G�8��)�O�Уe����F���u����X���_�(�XH�]@�����l��ˢM�2CC$��>	�@�B��$o(?B�zb�$�z� �C���;�bb
��Xn,���vz<�q����;�3p�x��=��<Y��RN)|ڊ�yg��S����I�m��Q[G�1*��S��D��*��[
��짘�������F�U�/ʟ��7G��H�?iQ�rD�\��=1<�`u{����ߒ)��9JN��߬�[a)@���,����C�0�ǣ�4��U˛dՆ޺��~�`���~�إyA$A���,����,VeRg���[D��K?���/��K�/�rKĕ�77$Wy���x(�_hC�\�{�j���[�j�ˆ�s8���c�iQ��(_�6��C�7$n�&��8��$m�zfEei}�cO�� �l}���	!�s���!QǠ��]'��mb[>�H\��﷬n�A
-h��5��7��Ȗ��	�A��<��+��$5��I���8y��g�
���wX�ט翣e��<_�Z_���d-9�@���2y,�j(C��|p�20�`-�G"���q�����#��yp�0��ճ�$��I¾��W12�WKB�$���a��\Te|����W����7�֫�Ȇ�x�kn�$q���-�j�����K�hjo���ǃ����`����U��Q�@�����"����.�=��al�����Q����a,'�ۯu����N����r�`��ǒm#q����8�At>���}?["�C�.�?�=1����k���e@�<�v�8A�r��
-K���~���dG�ڰ�(��_I�&��:ـy��(��2M��V-_ݿ��
�ϝ�Q_�]�"���WۛS5͛�<���
ôI��~N�|��زL*x�_"��#��~��ĭ����E�5��ϰ�FoyG���-��C���<p�9@����z�Ԋw�=��i�b
�uo�a��Y���Ly	�Wu0�Ȳ�sO�/͵���l�endstream
-endobj
-5370 0 obj <<
+xڍWKs�6��W�Vy&V��^���m�;};���-16'��%�d�__��mg�Nw| H} @�AgQ
+�,���.`��$�ʨ��h_�2F��*����eQ'mSDˋ�?�}�}^Gm�VE���YR�UT�MR�V�c�W���-�y���H�D�A��D����(�$lyA,���Szct?��Dq��4+#G99�)H����),���Z^��4�T0�+��.�4�эd���8y5p�
+O�A�*Z�UR��?����o	�8!��f�1�<��X�Ѣ��U�!ݢݴFղJڬf�NOީ+��<m�C:�!*��H&|"�Ƥ��p��1v>Pkё=����������5�fN���L=!G�8��)�Oףe��@�"z���u��������_0)�X�]@�����l��ˢM�2Í*�o}�H�B��$o(>B�zb��}>K@�r���
>��Y��7�DA_;=f�<������(ޫnO33O�@>�Y�!�O[�=?�	�������X68�u�����;>���N� L��2��O1�IU�kU�^��_�?Oo��ɑ��AMʑd;0i�����y�ۃ��=M~�����a�#r���f��
+Kƛ����"k���aV�G�i诳�7ɪ
�u|�3��7��ȾK�L�T������,VeRg���[D��J?��/��K��rK•�77$gy���x*0�/4��M���\5I�U�-���eC���9p����9ߴ�~O��p��k�.��x���
Ku�&m=���4�QG��l}�^���9Mcx�1(eq�Iki@��/
+���-�y��"{M�7V��e���� vx�rEg�+�������	S�<��3��w��w�X�ט_G�z�q����l=��Zr�A���1D��XLՐ�|U�4�i`N�JķD���n3�^�OF��6΃S���VϦ�������W1��WKB����a��\Te|�Ղ��W����7�֫s�߸�k.�$����- j��f���K�hj����t������~Q5=�������-=��#��Ҋ{a�Us&
��dǵ�ţ�1,����r�~����'W���l�;��:x,��6�
+Ҁ���
+�0��{�׹�gK���E�󇻧E�0���n:�w��'�N'h����T�(��c'ِ�6�/J��WR����y����~��(��h2M��V-_ݿ���ϝ��_�]�"@���WۛS5͛�<���7�n�V��&���x��e�T�d��f,�� 0r/�[�����j��aA���܎:��[������y��s�&1<sn�ԩ�{<���?*��x���+ˆ����\�������	�t������ֿLmmendstream
+endobj
+5061 0 obj <<
 /Type /Page
-/Contents 5371 0 R
-/Resources 5369 0 R
+/Contents 5062 0 R
+/Resources 5060 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 5280 0 R
+/Parent 4971 0 R
 >> endobj
-5372 0 obj <<
-/D [5370 0 R /XYZ 71.731 729.265 null]
+5063 0 obj <<
+/D [5061 0 R /XYZ 71.731 729.265 null]
 >> endobj
-5373 0 obj <<
-/D [5370 0 R /XYZ 71.731 741.22 null]
+5064 0 obj <<
+/D [5061 0 R /XYZ 71.731 741.22 null]
 >> endobj
-5374 0 obj <<
-/D [5370 0 R /XYZ 527.567 708.344 null]
+5065 0 obj <<
+/D [5061 0 R /XYZ 527.567 708.344 null]
 >> endobj
-5375 0 obj <<
-/D [5370 0 R /XYZ 71.731 691.243 null]
+5066 0 obj <<
+/D [5061 0 R /XYZ 71.731 691.243 null]
 >> endobj
-5376 0 obj <<
-/D [5370 0 R /XYZ 194.722 681.743 null]
+5067 0 obj <<
+/D [5061 0 R /XYZ 194.722 681.743 null]
 >> endobj
-5377 0 obj <<
-/D [5370 0 R /XYZ 71.731 606.326 null]
+5068 0 obj <<
+/D [5061 0 R /XYZ 71.731 606.326 null]
 >> endobj
-1086 0 obj <<
-/D [5370 0 R /XYZ 86.646 554.013 null]
+1102 0 obj <<
+/D [5061 0 R /XYZ 86.646 554.013 null]
 >> endobj
-3668 0 obj <<
-/D [5370 0 R /XYZ 71.731 543.684 null]
+3747 0 obj <<
+/D [5061 0 R /XYZ 71.731 543.684 null]
 >> endobj
-1090 0 obj <<
-/D [5370 0 R /XYZ 109.927 530.733 null]
+1106 0 obj <<
+/D [5061 0 R /XYZ 109.927 530.733 null]
 >> endobj
-5378 0 obj <<
-/D [5370 0 R /XYZ 71.731 525.627 null]
+5069 0 obj <<
+/D [5061 0 R /XYZ 71.731 525.627 null]
 >> endobj
-5379 0 obj <<
-/D [5370 0 R /XYZ 71.731 520.646 null]
+5070 0 obj <<
+/D [5061 0 R /XYZ 71.731 520.646 null]
 >> endobj
-5380 0 obj <<
-/D [5370 0 R /XYZ 408.876 494.867 null]
+5071 0 obj <<
+/D [5061 0 R /XYZ 408.876 494.867 null]
 >> endobj
-5381 0 obj <<
-/D [5370 0 R /XYZ 91.656 481.916 null]
+5072 0 obj <<
+/D [5061 0 R /XYZ 91.656 481.916 null]
 >> endobj
-5382 0 obj <<
-/D [5370 0 R /XYZ 71.731 456.511 null]
+5073 0 obj <<
+/D [5061 0 R /XYZ 71.731 456.511 null]
 >> endobj
-1094 0 obj <<
-/D [5370 0 R /XYZ 126.336 443.56 null]
+1110 0 obj <<
+/D [5061 0 R /XYZ 126.336 443.56 null]
 >> endobj
-5383 0 obj <<
-/D [5370 0 R /XYZ 71.731 438.454 null]
+5074 0 obj <<
+/D [5061 0 R /XYZ 71.731 438.454 null]
 >> endobj
-5384 0 obj <<
-/D [5370 0 R /XYZ 71.731 433.473 null]
+5075 0 obj <<
+/D [5061 0 R /XYZ 71.731 433.473 null]
 >> endobj
-5385 0 obj <<
-/D [5370 0 R /XYZ 71.731 358.877 null]
+5076 0 obj <<
+/D [5061 0 R /XYZ 71.731 358.877 null]
 >> endobj
-1098 0 obj <<
-/D [5370 0 R /XYZ 87.803 306.564 null]
+1114 0 obj <<
+/D [5061 0 R /XYZ 87.803 306.564 null]
 >> endobj
-5386 0 obj <<
-/D [5370 0 R /XYZ 71.731 295.977 null]
+5077 0 obj <<
+/D [5061 0 R /XYZ 71.731 295.977 null]
 >> endobj
-1102 0 obj <<
-/D [5370 0 R /XYZ 106.959 283.284 null]
+1118 0 obj <<
+/D [5061 0 R /XYZ 106.959 283.284 null]
 >> endobj
-5387 0 obj <<
-/D [5370 0 R /XYZ 71.731 276.24 null]
+5078 0 obj <<
+/D [5061 0 R /XYZ 71.731 276.24 null]
 >> endobj
-5388 0 obj <<
-/D [5370 0 R /XYZ 71.731 271.259 null]
+5079 0 obj <<
+/D [5061 0 R /XYZ 71.731 271.259 null]
 >> endobj
-5389 0 obj <<
-/D [5370 0 R /XYZ 135.305 260.37 null]
+5080 0 obj <<
+/D [5061 0 R /XYZ 135.305 260.37 null]
 >> endobj
-5390 0 obj <<
-/D [5370 0 R /XYZ 477.105 247.418 null]
+5081 0 obj <<
+/D [5061 0 R /XYZ 477.105 247.418 null]
 >> endobj
-5391 0 obj <<
-/D [5370 0 R /XYZ 91.656 234.467 null]
+5082 0 obj <<
+/D [5061 0 R /XYZ 91.656 234.467 null]
 >> endobj
-5392 0 obj <<
-/D [5370 0 R /XYZ 71.731 211.553 null]
+5083 0 obj <<
+/D [5061 0 R /XYZ 71.731 211.553 null]
 >> endobj
-1106 0 obj <<
-/D [5370 0 R /XYZ 83.217 159.24 null]
+1122 0 obj <<
+/D [5061 0 R /XYZ 83.217 159.24 null]
 >> endobj
-5393 0 obj <<
-/D [5370 0 R /XYZ 71.731 148.652 null]
+5084 0 obj <<
+/D [5061 0 R /XYZ 71.731 148.652 null]
 >> endobj
-1110 0 obj <<
-/D [5370 0 R /XYZ 121.773 135.959 null]
+1126 0 obj <<
+/D [5061 0 R /XYZ 121.773 135.959 null]
 >> endobj
-5394 0 obj <<
-/D [5370 0 R /XYZ 71.731 128.916 null]
+5085 0 obj <<
+/D [5061 0 R /XYZ 71.731 128.916 null]
 >> endobj
-5395 0 obj <<
-/D [5370 0 R /XYZ 71.731 123.934 null]
+5086 0 obj <<
+/D [5061 0 R /XYZ 71.731 123.934 null]
 >> endobj
-5369 0 obj <<
-/Font << /F27 1208 0 R /F23 1201 0 R /F44 2037 0 R /F35 1569 0 R /F33 1306 0 R >>
+5060 0 obj <<
+/Font << /F27 1224 0 R /F23 1217 0 R /F44 2069 0 R /F35 1589 0 R /F33 1322 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-5398 0 obj <<
+5089 0 obj <<
 /Length 1556      
 /Filter /FlateDecode
 >>
 stream
-xڭX�o�6�_�G�(��gޒ�:�����:�D�B��RR
�����e�M�P�����;�|��_Ĝ�>"e"
-y}�/6���
�A1
-_YtC�4�w"����{'�B�,
-���z�������������7Õ�4���/\!�H81��˖�w6K���+��yZ&����۵(����r5K$�Ds�����ȿ_�Q���
�R8OA�QPPGO\���a���ᦂ&}K�y������ҷ�>��l�"t�4o��UuVV���7�Ow�zU3�<�r�"��ݣj
-�c��'H����m���<�S�η,�e
�P���xE���[���(ë����p�v5��K7��Y)]Ѩn��R�8��~[�[�?��eUe4:������4����gS�s��+��yQ�B��f�[F��|Ԙ��9Ь(�׵�&E��)�v��fC���U���/ۦ#�kY�YUH!�}�h2HZ1Qd�٪)6.(�����C��\������V��-�(�,���=�Lg���2(�$���@l��M�~a���#Β�[���c�?�X�ǖM��C��Qn?��8����B~���*@F�x��U���p�
-�o�z@���$�mH]�\	����6�7����1L�!����3��\<p�Ac�a� ٔ�mM�o�>S�8�� H�ӫ�:�&��r�ɥ ���7g�`8y]��i�D�1���L�9B����ܟD�q���  l�6+���Z�5�Z�������>t�+���I&��g5�϶�l���Ѷ���k�"Y]Ve�˯��ȩ;U��e_�[Р�K�Qm>�߭U��vu[n��][6}GZ2��F�1KRj~Y�i���g>�y��S�G[ض�+�I��DP΀�,M��X0��y���!
��w"nV
�Xa"�*�g#�u6�4�`��1q2�������r�g/Y��t�!���;L�q���w��"H��H��������S��q(��ω�o�s�AW�7�:;�����E��x��Pi�9�=�
�h�Q����5U�K��E����f=�Cȳ�S?�V�?��J�h�<�Ц7֌Gs����hR�c�fb���{)�;��������o���#0��v�@�zh���Qi�
-y���#�t�f�:��i��2LF�k>�#ϫ�\
-BOU~20`b��9�ګ�-���/����#•<�K��L�Sm�{G���x��w��e�^�毋Y3%���Bκ]��"IU�%��zej�}����{3i}�wƍ�mo���]���j'���F'�f���{G��f�i���%F���8}�`
s���V�����a��s��Rpg�t�4m��6�o)��
-.�=]��b�!a�Fv��չЮ]�{ӹ���鋲��Ax"�o����ŦtVa�1�*sa��xO��D���wm������
����&uv�A��u��[�a� o��f�-�Up���!v�Dw�`�!�WT`��'�C�[9��.�}�	Kx|�8[��2���p�|��R�$ΓKU�s]��a6xendstream
-endobj
-5397 0 obj <<
+xڭX�o�6�_�G���3o����[�aF�m���RR
�����e�M�P�����;��‡�`�,��	s&�hn��V~�	,G�$,�C_Ytc��<�w"����{�E�$�O�QK̏O�·�O����	G&ᆜ�Y@���2��҅�r�i�<-3�Ѣ�vJ�wz��[�v��D�'����,"#�~�&yFj6�K�<<F@A=q�odk�UG�C��J����Z�Bm�[I}��e;{��5}e#�ڒZ�
+�t���
���(�-���=ʶD/1f��A�>�����ݝ�uR�bˊ�h�*Ȝ�WV]��P��2��z�L�l׀�`�F<tVR�4jT9��'��o�bK�a�kA����0���J�ɸy{f1e��H�<��I_� �*�c���H��O��;���㺖ڤ�p�%�8����jv�l�C��j;"���p �~u} �h�q�� i�D�!g���x�Ƞ�[�q�s)��ԇ�F�[U^)� `����	-�S�e;P<˜�3����M�~a��$ˢ��Eό3�Q�r?�lZ~*-�r�qt�Y���'�[����)���b��p�c�T�~;���?WǙhC�T{%�>KGs�cܜ�z��0'�4�ǿ~�!� N7���0��b�XxX;H6�tC�꛷OG�Q@a�$��ULy�	��T>��R������3�q0������4N�)K��L�9B����ܟD�q���$ lk%J<丶֪�U�_��~�@�7��s�
+՘dB�@������V����lm�P�4^cMUWBW_�3ʑSw�^˾�4���K�Q�����֪Q�]�V+a����H���nD�0eYN��A���O0{�3@�j=�z��m��6}�dHI�����j�Cy;o��c9��t�N�ͪ+�£J�وn�
�)
<�`�AL��nc�)F�.b�,z�":9�arv��a��d�{-�A
+�G���=�~/�<Y�e���9��x�<����؈���E
��u�B��x�86P��G�o:�TC��$�,j6V��9B�C8�h%�� ����t��}�C	mzc�x4���J&5?&j&��ވ��2�cr?�i);��v�,�9Caq�QcJ�CS��*�T�����6��fO/]�Q�x��;��ɥ ��Q'#Δc;@{U��y]�����}zD�<����1A����#VK����;��D���ç���h�D�C�[Ȣ۵.�T�X��<�KSӐ����ޛI���3n�o{���ʭeT;���4:7���;�6+M[�/1�G�����hX����)} 
+�C������I/�0p�MwK�1�n����;-�b�ӥ(Vb�m4`W�B��Ժߛέ�M_����}{�-/6�E��:L�T��C1�=q>p���T+���Few�dž�����H�FhPJ��V���he: �MSҌ���
+���=�Ζ�n�L=�ʃ
+,��5cc�z"'��偶��(cY�^=Ζ�=�̮�1=��4)��KU�s]��6tendstream
+endobj
+5088 0 obj <<
 /Type /Page
-/Contents 5398 0 R
-/Resources 5396 0 R
+/Contents 5089 0 R
+/Resources 5087 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 5280 0 R
-/Annots [ 5410 0 R 5426 0 R ]
+/Parent 4971 0 R
+/Annots [ 5102 0 R 5118 0 R ]
 >> endobj
-5410 0 obj <<
+5102 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [222.931 489.622 255.658 498.533]
 /Subtype /Link
 /A << /S /GoTo /D (gloss-rdbms) >>
 >> endobj
-5426 0 obj <<
+5118 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [342.364 349.149 387.195 358.06]
 /Subtype /Link
 /A << /S /GoTo /D (security-mysql) >>
 >> endobj
-5399 0 obj <<
-/D [5397 0 R /XYZ 71.731 729.265 null]
+5090 0 obj <<
+/D [5088 0 R /XYZ 71.731 729.265 null]
 >> endobj
-1114 0 obj <<
-/D [5397 0 R /XYZ 88.939 651.05 null]
+1130 0 obj <<
+/D [5088 0 R /XYZ 88.939 651.05 null]
 >> endobj
-4787 0 obj <<
-/D [5397 0 R /XYZ 71.731 640.72 null]
+5091 0 obj <<
+/D [5088 0 R /XYZ 71.731 640.72 null]
 >> endobj
-1118 0 obj <<
-/D [5397 0 R /XYZ 193.573 627.769 null]
+1134 0 obj <<
+/D [5088 0 R /XYZ 193.573 627.769 null]
 >> endobj
-5400 0 obj <<
-/D [5397 0 R /XYZ 71.731 620.571 null]
+5092 0 obj <<
+/D [5088 0 R /XYZ 71.731 620.571 null]
 >> endobj
-5401 0 obj <<
-/D [5397 0 R /XYZ 71.731 615.59 null]
+5093 0 obj <<
+/D [5088 0 R /XYZ 71.731 615.59 null]
 >> endobj
-5402 0 obj <<
-/D [5397 0 R /XYZ 488.718 604.855 null]
+5094 0 obj <<
+/D [5088 0 R /XYZ 488.718 604.855 null]
 >> endobj
-5403 0 obj <<
-/D [5397 0 R /XYZ 91.656 566 null]
+5095 0 obj <<
+/D [5088 0 R /XYZ 91.656 566 null]
 >> endobj
-5404 0 obj <<
-/D [5397 0 R /XYZ 364.962 566 null]
+5096 0 obj <<
+/D [5088 0 R /XYZ 364.962 566 null]
 >> endobj
-5405 0 obj <<
-/D [5397 0 R /XYZ 478.805 566 null]
+5097 0 obj <<
+/D [5088 0 R /XYZ 478.805 566 null]
 >> endobj
-5406 0 obj <<
-/D [5397 0 R /XYZ 154.739 553.049 null]
+5098 0 obj <<
+/D [5088 0 R /XYZ 154.739 553.049 null]
 >> endobj
-5407 0 obj <<
-/D [5397 0 R /XYZ 71.731 527.644 null]
+5099 0 obj <<
+/D [5088 0 R /XYZ 71.731 527.644 null]
 >> endobj
-1122 0 obj <<
-/D [5397 0 R /XYZ 106.052 514.693 null]
+1138 0 obj <<
+/D [5088 0 R /XYZ 106.052 514.693 null]
 >> endobj
-5408 0 obj <<
-/D [5397 0 R /XYZ 71.731 507.649 null]
+5100 0 obj <<
+/D [5088 0 R /XYZ 71.731 507.649 null]
 >> endobj
-5409 0 obj <<
-/D [5397 0 R /XYZ 71.731 502.668 null]
+5101 0 obj <<
+/D [5088 0 R /XYZ 71.731 502.668 null]
 >> endobj
-5411 0 obj <<
-/D [5397 0 R /XYZ 444.255 491.779 null]
+5103 0 obj <<
+/D [5088 0 R /XYZ 444.255 491.779 null]
 >> endobj
-5412 0 obj <<
-/D [5397 0 R /XYZ 71.731 476.671 null]
+5104 0 obj <<
+/D [5088 0 R /XYZ 71.731 476.671 null]
 >> endobj
-5413 0 obj <<
-/D [5397 0 R /XYZ 71.731 461.727 null]
+5105 0 obj <<
+/D [5088 0 R /XYZ 71.731 461.727 null]
 >> endobj
-5414 0 obj <<
-/D [5397 0 R /XYZ 71.731 461.727 null]
+5106 0 obj <<
+/D [5088 0 R /XYZ 71.731 461.727 null]
 >> endobj
-5415 0 obj <<
-/D [5397 0 R /XYZ 71.731 448.775 null]
+5107 0 obj <<
+/D [5088 0 R /XYZ 71.731 448.775 null]
 >> endobj
-5416 0 obj <<
-/D [5397 0 R /XYZ 111.582 432.999 null]
+5108 0 obj <<
+/D [5088 0 R /XYZ 111.582 432.999 null]
 >> endobj
-5417 0 obj <<
-/D [5397 0 R /XYZ 71.731 420.88 null]
+5109 0 obj <<
+/D [5088 0 R /XYZ 71.731 420.88 null]
 >> endobj
-5418 0 obj <<
-/D [5397 0 R /XYZ 71.731 420.88 null]
+5110 0 obj <<
+/D [5088 0 R /XYZ 71.731 420.88 null]
 >> endobj
-5419 0 obj <<
-/D [5397 0 R /XYZ 71.731 407.928 null]
+5111 0 obj <<
+/D [5088 0 R /XYZ 71.731 407.928 null]
 >> endobj
-5420 0 obj <<
-/D [5397 0 R /XYZ 111.582 392.152 null]
+5112 0 obj <<
+/D [5088 0 R /XYZ 111.582 392.152 null]
 >> endobj
-5421 0 obj <<
-/D [5397 0 R /XYZ 315.276 392.152 null]
+5113 0 obj <<
+/D [5088 0 R /XYZ 315.276 392.152 null]
 >> endobj
-5422 0 obj <<
-/D [5397 0 R /XYZ 71.731 380.033 null]
+5114 0 obj <<
+/D [5088 0 R /XYZ 71.731 380.033 null]
 >> endobj
-5423 0 obj <<
-/D [5397 0 R /XYZ 71.731 380.033 null]
+5115 0 obj <<
+/D [5088 0 R /XYZ 71.731 380.033 null]
 >> endobj
-5424 0 obj <<
-/D [5397 0 R /XYZ 71.731 367.082 null]
+5116 0 obj <<
+/D [5088 0 R /XYZ 71.731 367.082 null]
 >> endobj
-5425 0 obj <<
-/D [5397 0 R /XYZ 111.582 351.306 null]
+5117 0 obj <<
+/D [5088 0 R /XYZ 111.582 351.306 null]
 >> endobj
-5427 0 obj <<
-/D [5397 0 R /XYZ 71.731 328.392 null]
+5119 0 obj <<
+/D [5088 0 R /XYZ 71.731 328.392 null]
 >> endobj
-1126 0 obj <<
-/D [5397 0 R /XYZ 85.51 276.079 null]
+1142 0 obj <<
+/D [5088 0 R /XYZ 85.51 276.079 null]
 >> endobj
-2716 0 obj <<
-/D [5397 0 R /XYZ 71.731 265.749 null]
+2746 0 obj <<
+/D [5088 0 R /XYZ 71.731 265.749 null]
 >> endobj
-1130 0 obj <<
-/D [5397 0 R /XYZ 176.696 252.798 null]
+1146 0 obj <<
+/D [5088 0 R /XYZ 176.696 252.798 null]
 >> endobj
-5428 0 obj <<
-/D [5397 0 R /XYZ 71.731 245.6 null]
+5120 0 obj <<
+/D [5088 0 R /XYZ 71.731 245.6 null]
 >> endobj
-5429 0 obj <<
-/D [5397 0 R /XYZ 71.731 240.619 null]
+5121 0 obj <<
+/D [5088 0 R /XYZ 71.731 240.619 null]
 >> endobj
-5430 0 obj <<
-/D [5397 0 R /XYZ 71.731 240.619 null]
+5122 0 obj <<
+/D [5088 0 R /XYZ 71.731 240.619 null]
 >> endobj
-3138 0 obj <<
-/D [5397 0 R /XYZ 71.731 204.479 null]
+3131 0 obj <<
+/D [5088 0 R /XYZ 71.731 204.479 null]
 >> endobj
-1134 0 obj <<
-/D [5397 0 R /XYZ 109.17 191.528 null]
+1150 0 obj <<
+/D [5088 0 R /XYZ 109.17 191.528 null]
 >> endobj
-5431 0 obj <<
-/D [5397 0 R /XYZ 71.731 186.422 null]
+5123 0 obj <<
+/D [5088 0 R /XYZ 71.731 186.422 null]
 >> endobj
-5432 0 obj <<
-/D [5397 0 R /XYZ 71.731 181.441 null]
+5124 0 obj <<
+/D [5088 0 R /XYZ 71.731 181.441 null]
 >> endobj
-5396 0 obj <<
-/Font << /F23 1201 0 R /F27 1208 0 R /F35 1569 0 R /F33 1306 0 R >>
+5087 0 obj <<
+/Font << /F23 1217 0 R /F27 1224 0 R /F35 1589 0 R /F33 1322 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-5436 0 obj <<
-/Length 1296      
+5128 0 obj <<
+/Length 1297      
 /Filter /FlateDecode
 >>
 stream
-xڍWKo�8��W؋،�-�-i�Ew��&1��f�LKD%R �����(��̙�p^�f�$����&a���d�:�U�E<�a珋$h��k��)�g6�y�ae�͖�ۋ˛4���\g����$.X�ZͶ����,��i��m��͓rT�ϖi�ʄ�o��n�̲Ut4�9���=��77&�_�E�]�]xJZZ9-F̓���+ߵ�D�ѵ�1-W��k����7<�qM8�J<�q�†>�P�����w���t�����@1�	$uƄ�r��F8��C!��VF�N���1:��<�C���#�h!��l!Wo�4��*��@,�w��t��ݛ���W���<ͣ�0�b~�d��-����.�e��,C�yL1����	xVK��#�C�C�-
�,g�x�d��q�$9/���
-p��l��hdYlS��朥`mݞ�N� �4ciAi�^�	�i��^��
-��jC�˩��<n�+�{a�"l��#��D}�.\Y;�*��>*Z;m����yRD�hY�q��O����7�hu�	Nj:8�!d��;��=��I�V��')}�!�vR��4�4����M� �=��,}��ʑ���@J%��#%렞����N@�B0��}fini_�u��{0���3=ZC��4X�:�W��9ë���_a-�}����(ŚSᡙ�ɂd+��
-��V,��f���cY	1�=B%�����~�\���h��>��3�:����n�t�ݯ��N�W�¦��sǯ��}���Xs����Nػ�Nto�IL���2��~�v���+`�>��{��V~��T�5|<����T�E:�{u����Иc��Q�t��	'�8[56�<�#���/��͜�C��'����=B�{c=�p`���$��<#!V�/���
��I`O��FPê��%����Հ������l������:�����霭/{l��g�`�����&YA�˧�X�X߈��_!��V��7Y�7U�O�����
-��=�Ж��@["�ٴB�F+,̂�����n�d��6��Vm��o$���VV#RA���F�1"�y���}f �`B��F�.A�����ԃ�$K��X݌� ��х�R���\�@��V�';�l��7�#_U�8�����Y�b�W{�b,�u�b����������������gң�ɿPNaA���#�Q��/�|l��Q�b���V�@|����π���><�W+���~�X>�����z��`FIR�t5������1�Sendstream
+xڍWKo�8��W؋،�-�-i�Ew��&1��f�LKD)Q �����(��̙�p^�f�$����&a���d�:�U�E<�a珋$h��k��)�g6�y�ae�͖�ۋ˛4���\g����$.X�ZͶ����,��Q������I9*�g�4eeB�7�X7_f�*:���=��77&�_�Eq��~F���VN��$j���wJ��7�6�%F�x-����3�	�v�q����/`3gy�]���P�e	C�1a�9az#��ϡed+#{'���1:��<�C���#�P�{
+u���7��ɂd�nw ��w��t��ݛ������y�GGa��4���j/����.�e��,C�yL1����	xVK��#�C�C*�_�&��&^5�*�C��ˎV�Ep8Mc��K4�,�)K@s�R���nOz'_�F����4n���4�n��w�_`�!��TBE��ý�e���y�f�>p
+���*��>v��چ�yRD�hY�q��O����7�P�oENj:8�!d��;�;{����2�OR��C�	�4�F'ii�;h9M���D�x�����*G�Vg);�-)Y��f�v�����{0�Hs�H�2���݃+���h
�o`�`�K�_9_�S�y���r|m��$�
�0ԣkN��f2'2�JQ*=VJ,��f���Q'Ʋb�{�J�߁+
�R��;܇�&Ԟ�>��3�:����n�t�ݯ��N(�+�_aSD����
+�>q���Xs����Nػ�N�o�IL���2��~�v���w0��}�-����
������k�x��1��i��Q��Z�Ϗ�Bc��G=�q�&���l�؄�<��뒟�L7s��������U���Lr���^��$��d��X= R��6Xį'=�=�sx�.�V
/����轮�hT�����f�\���e��^Wn/O�l}�c3�=kk\�~��dI.��c�b}#����{�[��d%�Tu?ٳ�>+���tC[�yl��g�
+��aa$��vK'[DX��v0�j�#�V�+Y�H�G>(qƈ������q|��	1l�UL ��kXS��,]CC@`u32��
+F�J���y'yl�
+ZJ�';�l��7�#_U�8�����Y�b�W{�b,�u�b����������������gң�ɿPNaA�����g>��t�b���V�@|����π���><�W+���~�X>������Ɗ��`FI�~�j�Wᵯ�2�S
+endstream
 endobj
-5435 0 obj <<
+5127 0 obj <<
 /Type /Page
-/Contents 5436 0 R
-/Resources 5434 0 R
+/Contents 5128 0 R
+/Resources 5126 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 5462 0 R
+/Parent 5154 0 R
 >> endobj
-5437 0 obj <<
-/D [5435 0 R /XYZ 71.731 729.265 null]
+5129 0 obj <<
+/D [5127 0 R /XYZ 71.731 729.265 null]
 >> endobj
-5438 0 obj <<
-/D [5435 0 R /XYZ 71.731 718.306 null]
+5130 0 obj <<
+/D [5127 0 R /XYZ 71.731 718.306 null]
 >> endobj
-1138 0 obj <<
-/D [5435 0 R /XYZ 90.261 708.344 null]
+1154 0 obj <<
+/D [5127 0 R /XYZ 90.261 708.344 null]
 >> endobj
-5439 0 obj <<
-/D [5435 0 R /XYZ 71.731 703.238 null]
+5131 0 obj <<
+/D [5127 0 R /XYZ 71.731 703.238 null]
 >> endobj
-5440 0 obj <<
-/D [5435 0 R /XYZ 71.731 698.257 null]
+5132 0 obj <<
+/D [5127 0 R /XYZ 71.731 698.257 null]
 >> endobj
-5441 0 obj <<
-/D [5435 0 R /XYZ 134.824 659.527 null]
+5133 0 obj <<
+/D [5127 0 R /XYZ 134.824 659.527 null]
 >> endobj
-5442 0 obj <<
-/D [5435 0 R /XYZ 71.731 636.613 null]
+5134 0 obj <<
+/D [5127 0 R /XYZ 71.731 636.613 null]
 >> endobj
-1142 0 obj <<
-/D [5435 0 R /XYZ 87.803 584.3 null]
+1158 0 obj <<
+/D [5127 0 R /XYZ 87.803 584.3 null]
 >> endobj
-5443 0 obj <<
-/D [5435 0 R /XYZ 71.731 572.897 null]
+5135 0 obj <<
+/D [5127 0 R /XYZ 71.731 572.897 null]
 >> endobj
-1146 0 obj <<
-/D [5435 0 R /XYZ 86.675 561.019 null]
+1162 0 obj <<
+/D [5127 0 R /XYZ 86.675 561.019 null]
 >> endobj
-5444 0 obj <<
-/D [5435 0 R /XYZ 71.731 555.52 null]
+5136 0 obj <<
+/D [5127 0 R /XYZ 71.731 555.52 null]
 >> endobj
-5445 0 obj <<
-/D [5435 0 R /XYZ 71.731 550.539 null]
+5137 0 obj <<
+/D [5127 0 R /XYZ 71.731 550.539 null]
 >> endobj
-5446 0 obj <<
-/D [5435 0 R /XYZ 71.731 550.539 null]
+5138 0 obj <<
+/D [5127 0 R /XYZ 71.731 550.539 null]
 >> endobj
-5447 0 obj <<
-/D [5435 0 R /XYZ 119.841 538.105 null]
+5139 0 obj <<
+/D [5127 0 R /XYZ 119.841 538.105 null]
 >> endobj
-5448 0 obj <<
-/D [5435 0 R /XYZ 167.644 538.105 null]
+5140 0 obj <<
+/D [5127 0 R /XYZ 167.644 538.105 null]
 >> endobj
-5449 0 obj <<
-/D [5435 0 R /XYZ 249.411 538.105 null]
+5141 0 obj <<
+/D [5127 0 R /XYZ 249.411 538.105 null]
 >> endobj
-5450 0 obj <<
-/D [5435 0 R /XYZ 442.122 512.202 null]
+5142 0 obj <<
+/D [5127 0 R /XYZ 442.122 512.202 null]
 >> endobj
-5451 0 obj <<
-/D [5435 0 R /XYZ 71.731 476.337 null]
+5143 0 obj <<
+/D [5127 0 R /XYZ 71.731 476.337 null]
 >> endobj
-1150 0 obj <<
-/D [5435 0 R /XYZ 86.646 424.024 null]
+1166 0 obj <<
+/D [5127 0 R /XYZ 86.646 424.024 null]
 >> endobj
-5433 0 obj <<
-/D [5435 0 R /XYZ 71.731 413.695 null]
+5125 0 obj <<
+/D [5127 0 R /XYZ 71.731 413.695 null]
 >> endobj
-1154 0 obj <<
-/D [5435 0 R /XYZ 269.378 400.743 null]
+1170 0 obj <<
+/D [5127 0 R /XYZ 269.378 400.743 null]
 >> endobj
-5452 0 obj <<
-/D [5435 0 R /XYZ 71.731 393.545 null]
+5144 0 obj <<
+/D [5127 0 R /XYZ 71.731 393.545 null]
 >> endobj
-5453 0 obj <<
-/D [5435 0 R /XYZ 71.731 388.564 null]
+5145 0 obj <<
+/D [5127 0 R /XYZ 71.731 388.564 null]
 >> endobj
-5454 0 obj <<
-/D [5435 0 R /XYZ 71.731 339.473 null]
+5146 0 obj <<
+/D [5127 0 R /XYZ 71.731 339.473 null]
 >> endobj
-1158 0 obj <<
-/D [5435 0 R /XYZ 165.299 326.522 null]
+1174 0 obj <<
+/D [5127 0 R /XYZ 165.299 326.522 null]
 >> endobj
-5455 0 obj <<
-/D [5435 0 R /XYZ 71.731 319.324 null]
+5147 0 obj <<
+/D [5127 0 R /XYZ 71.731 319.324 null]
 >> endobj
-5456 0 obj <<
-/D [5435 0 R /XYZ 71.731 314.342 null]
+5148 0 obj <<
+/D [5127 0 R /XYZ 71.731 314.342 null]
 >> endobj
-5457 0 obj <<
-/D [5435 0 R /XYZ 476.554 303.607 null]
+5149 0 obj <<
+/D [5127 0 R /XYZ 476.554 303.607 null]
 >> endobj
-5458 0 obj <<
-/D [5435 0 R /XYZ 71.731 267.742 null]
+5150 0 obj <<
+/D [5127 0 R /XYZ 71.731 267.742 null]
 >> endobj
-1162 0 obj <<
-/D [5435 0 R /XYZ 85.51 215.429 null]
+1178 0 obj <<
+/D [5127 0 R /XYZ 85.51 215.429 null]
 >> endobj
-3669 0 obj <<
-/D [5435 0 R /XYZ 71.731 204.842 null]
+3748 0 obj <<
+/D [5127 0 R /XYZ 71.731 204.842 null]
 >> endobj
-1166 0 obj <<
-/D [5435 0 R /XYZ 107.277 192.148 null]
+1182 0 obj <<
+/D [5127 0 R /XYZ 107.277 192.148 null]
 >> endobj
-5459 0 obj <<
-/D [5435 0 R /XYZ 71.731 187.043 null]
+5151 0 obj <<
+/D [5127 0 R /XYZ 71.731 187.043 null]
 >> endobj
-5460 0 obj <<
-/D [5435 0 R /XYZ 71.731 182.061 null]
+5152 0 obj <<
+/D [5127 0 R /XYZ 71.731 182.061 null]
 >> endobj
-5461 0 obj <<
-/D [5435 0 R /XYZ 382.967 156.283 null]
+5153 0 obj <<
+/D [5127 0 R /XYZ 382.967 156.283 null]
 >> endobj
-5434 0 obj <<
-/Font << /F23 1201 0 R /F27 1208 0 R /F33 1306 0 R >>
+5126 0 obj <<
+/Font << /F23 1217 0 R /F27 1224 0 R /F33 1322 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-5465 0 obj <<
-/Length 1983      
+5157 0 obj <<
+/Length 1982      
 /Filter /FlateDecode
 >>
 stream
-xڍ]��6�=���K���I�eI��%w
�����m�@˴Ŭ,�D���w�3��]
X�C����.�KE,���6_��W��'�^�L��nc����󬈫2[�g/�ٽ��w"[Tq�����$)�l�Y��E?�{�a���{ ,��)@"_����tF�ζEd���2:�����~�9�Nuj����� �DZ�{?��4ʓ�k����J�@�;�s�"DZ���e�G�����Y�y�>0��
-џ��޷
-UC�SPl�
-����$��`=K�9��i��`����a�^Z/$�c��逓[�EU���)�4�Hk?(Z�,�7ɂ<i�Xg_&�P�M��UI�*N��0�#�P��$m�_
-Ժ�{�y�����I˞�)
-�Y��y���!�_����[!�B[z��n{��z?8��t�mh�oY����@Y!���� �Z݀�f��������!ID����h"Qfs&�e����D�C��x�]�H�r�s��N�A���Ӡ���RSw̏C�S��L�rA�6��^�^��W�ɍ&���B@i%Q8��>^F��f����v����lf@�,"��y���%��c���&�)^@v�ŢL��X�]�J�H!to:�E�iz��N��2��`i��I��
�0�Lu2`��`t0��
=�6j~�u��L�D�^
�ek�4س�؀R����2Ok��i�&WP�F;pW��^:�1���l�c�
�P4o����m0�p�4<O���C�d#_�)��^��e�8v����~T53��O�Z
����"�]X��	t/��Z�7Y&�7��n[I��7Y��D2Ÿ�r$d�հ������.^<io��%F����k���Vp�ؒ��E>jt�<c���X�Ow|��Q~�9�0�>y�V���+66\U�Hp2'ꦺ�>��@�98�jc@����1-��[s>S�)B�F�s�~YN��է�
-�L�Pac�8Ԋl=�]	�З�6�;8�r"�HƩ���
�����a ^:gl�
-2��ӟH��^���3�|b������	��#Ӓ�|���sX�pJ�����~ ԠZ���DN=��u7DD�s��dy.����9Ro)��@�ݡ�̀�ٝу����K�¯�~�����xc̉u��@M���l4U����1Q�'c�
���+{!|�٬��pD������N�!y��lg�G/0O��n�Aߍ"�����r�G1�����iQ�0oҘ:���y	e�4�r�PY�
-������#yNp��!���R
-q&����L�/��[4<y`-�x�V��`J���"��D�u��(����x��P�L‹{Y?2l���������\
-1��q�Y?�#bCi��V�,s��@vBu	lX+�_A�����!`������M�(m�q8�n6SD���B����D�~�
A>$pE�"�/q��F��y���#�:~�;����(��_����Mt�qs7֠䗵�M�ύ�{�N�C�';v~��3<���d!�qq�;��f9;�~˘�I�<�'(I{+Ws�#�
�C��`�p�2n�"K���#Ƃ�c�@
-[p�?�S(>輙a%ߤ����)ژz��D��x��0��e+�o����f��L���_{�Y���Ք˴���܂ٿ!K��c_ӿ���|�+3B�WoJ��ԫggAAPQEF�,�������ܬ���'�6+�'���PZ��Ͻ���������4�ss.ˉ���]I���_-� /2���c��*pE�%˂�x�eąe�̋e���%�~�Y	�.�E	Q�����/Y���q��h����7�����&��S���.�D܉>NއgC�9�{�����4�6	7˫X72��N���QWika��k����~F��6e\����٘b}%��6�a�I�*��gE�<g~�{��O�KG�endstream
-endobj
-5464 0 obj <<
+xڍ]��6�=���K����ӒڧK�\��P)��h�YYԉT7ί�g(˻.,����9^E���8,RX�*Lv��>��V'8y�*f�l��<���6O��*��v�›��|���*�v�j��De�f�j������������%�j�$a/���}c.��	�!Iҟ�@�
a��^��S�%#��8
t�џ&q�p-���(����':�JB�U�^�y���&�0�u���	ߔ��deoԡ��"j�B`CT�,E��E=�Y��
+���������U�Qa���N�GֺNv�M�
+d7V
+��GZ�Q�ІPdQ��
+�I��X��2i��4v~o�J�T�ꌄi���,��a����n?�u�Or<N�t쉐� ]�K��a�����r/P�]�K�P��$���A.�>�NFt9;���[��G��?PV�������"�B+��A�l��|W�8���(��?)4QR�K&�e��乄D�G��x�]�D�b�s�F�'ڠI��iT�B\ɞ�{��!�K�+&@9��D��c/}/:ћ�э&�u�B@i%Q8�F/�PN3��u�v�u	w�0 �
+T�$
+wy����%���"E��ts���I&e��B��r�Wye�:�x��/*M�3epr/���C{vO�o��T3�I��B���{7��ڨ�i���=��9b�m��`ϚcJ��?h�<�>ڧu]Y@�J0ځ����\��ѭ���&�	dH7Cќ9ik9X�`~�ix��A���'�F��Rq��C��q�9�3���~�53�;��Z�����"�^X���t/�r-��,M�7���:A��3Y��D2Ÿ��$d��0������.^<)g��%F���8(���Vp�ؑ��E>jU�>c��x�X�Ow|��Q~8�0�>9�6�`����o8�5��<���C$�M�2�TMa�w�Һ��{��g�:�o�h}��/�ɷ��TTau����� l���Z��G5�+a��ߦx��:ND@�8U�~���}C��l����[mڍ��!��^}"	0,��;y.кπr1�9_�jFh ���LC�r�ީWTT�a%c�)E�%l�H��P��$J9��cT�����q@.��HIm͑zK�6����ŠG����|�v_�~����]Eդ��O��wjҗ`�x��5>N~��8i�m�
^N����f�Ņ#�,�\��7�p�����C$g;3=:�y��u��n<��'9^ֻ<��s��r�y��Թ�v�K({�����Ƞ���<5���[�s�����ŕR��0���f6|	�ߡ���$wq�����Ek*b�JZ7�$��V�`�
+Ð��Ax� �GF��6W���5�p�K��9Eg�n����(��[ª�a.#W�N�.�
kE�+�1���;,µu���������0�u��k����a�n	":��ɴ���݊4��!���u�B�Ǟt��e�P��*C�<P�z��
+;kп�i��X��_�vr7]>�b�;��Q���e��^�X8�
+��`��a�쒚����-cZ&1�쟠l$9̭@\��{��g6t�r������͊4������1l���O!�lh�sf��|/n�hc���J�-������X.[1~{��+0��i~�31�}~%ثϒ-���\��WW7���
AX������UH��{W���zS����<;�
+�r7��*2"��$.����v�Nm8�_�iI?yh�V���U\����-��Q��sY�7t�?�Jj���j19�a��:k6�+zo�M-Xt��-#.�(�a^,�d�t��f%���%D��_����d��w\�5�͢�6;�p��ߛ<��n�8�}�����Asl��מ�i�EZl(n�WaR��;ų��G]�������~�� �ʰ�����1��J�~e[�l���+�#nT�����u/Y�	G`G�endstream
+endobj
+5156 0 obj <<
 /Type /Page
-/Contents 5465 0 R
-/Resources 5463 0 R
+/Contents 5157 0 R
+/Resources 5155 0 R
 /MediaBox [0 0 609.714 789.041]
-/Parent 5462 0 R
+/Parent 5154 0 R
 >> endobj
-5466 0 obj <<
-/D [5464 0 R /XYZ 71.731 729.265 null]
+5158 0 obj <<
+/D [5156 0 R /XYZ 71.731 729.265 null]
 >> endobj
-5467 0 obj <<
-/D [5464 0 R /XYZ 71.731 718.306 null]
+5159 0 obj <<
+/D [5156 0 R /XYZ 71.731 718.306 null]
 >> endobj
-5468 0 obj <<
-/D [5464 0 R /XYZ 71.731 718.306 null]
+5160 0 obj <<
+/D [5156 0 R /XYZ 71.731 718.306 null]
 >> endobj
-1170 0 obj <<
-/D [5464 0 R /XYZ 103.282 708.344 null]
+1186 0 obj <<
+/D [5156 0 R /XYZ 103.282 708.344 null]
 >> endobj
-5469 0 obj <<
-/D [5464 0 R /XYZ 71.731 703.238 null]
+5161 0 obj <<
+/D [5156 0 R /XYZ 71.731 703.238 null]
 >> endobj
-5470 0 obj <<
-/D [5464 0 R /XYZ 71.731 698.257 null]
+5162 0 obj <<
+/D [5156 0 R /XYZ 71.731 698.257 null]
 >> endobj
-5471 0 obj <<
-/D [5464 0 R /XYZ 71.731 698.257 null]
+5163 0 obj <<
+/D [5156 0 R /XYZ 71.731 698.257 null]
 >> endobj
-5472 0 obj <<
-/D [5464 0 R /XYZ 166.836 685.43 null]
+5164 0 obj <<
+/D [5156 0 R /XYZ 166.836 685.43 null]
 >> endobj
-5473 0 obj <<
-/D [5464 0 R /XYZ 408.475 672.478 null]
+5165 0 obj <<
+/D [5156 0 R /XYZ 408.475 672.478 null]
 >> endobj
-5474 0 obj <<
-/D [5464 0 R /XYZ 243.467 659.527 null]
+5166 0 obj <<
+/D [5156 0 R /XYZ 243.467 659.527 null]
 >> endobj
-5475 0 obj <<
-/D [5464 0 R /XYZ 246.801 659.527 null]
+5167 0 obj <<
+/D [5156 0 R /XYZ 246.801 659.527 null]
 >> endobj
-5476 0 obj <<
-/D [5464 0 R /XYZ 298.91 659.527 null]
+5168 0 obj <<
+/D [5156 0 R /XYZ 298.91 659.527 null]
 >> endobj
-5477 0 obj <<
-/D [5464 0 R /XYZ 448.559 659.527 null]
+5169 0 obj <<
+/D [5156 0 R /XYZ 448.559 659.527 null]
 >> endobj
-5478 0 obj <<
-/D [5464 0 R /XYZ 164.884 646.575 null]
+5170 0 obj <<
+/D [5156 0 R /XYZ 164.884 646.575 null]
 >> endobj
-5479 0 obj <<
-/D [5464 0 R /XYZ 481.157 646.575 null]
+5171 0 obj <<
+/D [5156 0 R /XYZ 481.157 646.575 null]
 >> endobj
-5480 0 obj <<
-/D [5464 0 R /XYZ 132.363 633.624 null]
+5172 0 obj <<
+/D [5156 0 R /XYZ 132.363 633.624 null]
 >> endobj
-5481 0 obj <<
-/D [5464 0 R /XYZ 71.731 610.71 null]
+5173 0 obj <<
+/D [5156 0 R /XYZ 71.731 610.71 null]
 >> endobj
-1174 0 obj <<
-/D [5464 0 R /XYZ 84.353 558.397 null]
+1190 0 obj <<
+/D [5156 0 R /XYZ 84.353 558.397 null]
 >> endobj
-5482 0 obj <<
-/D [5464 0 R /XYZ 71.731 548.068 null]
+5174 0 obj <<
+/D [5156 0 R /XYZ 71.731 548.068 null]
 >> endobj
-1178 0 obj <<
-/D [5464 0 R /XYZ 150.047 535.116 null]
+1194 0 obj <<
+/D [5156 0 R /XYZ 150.047 535.116 null]
 >> endobj
-5483 0 obj <<
-/D [5464 0 R /XYZ 71.731 527.918 null]
+5175 0 obj <<
+/D [5156 0 R /XYZ 71.731 527.918 null]
 >> endobj
-5484 0 obj <<
-/D [5464 0 R /XYZ 71.731 522.937 null]
+5176 0 obj <<
+/D [5156 0 R /XYZ 71.731 522.937 null]
 >> endobj
-5485 0 obj <<
-/D [5464 0 R /XYZ 192.963 499.251 null]
+5177 0 obj <<
+/D [5156 0 R /XYZ 192.963 499.251 null]
 >> endobj
-5486 0 obj <<
-/D [5464 0 R /XYZ 71.731 447.943 null]
+5178 0 obj <<
+/D [5156 0 R /XYZ 71.731 447.943 null]
 >> endobj
-1182 0 obj <<
-/D [5464 0 R /XYZ 193.264 434.992 null]
+1198 0 obj <<
+/D [5156 0 R /XYZ 193.264 434.992 null]
 >> endobj
-5487 0 obj <<
-/D [5464 0 R /XYZ 71.731 427.794 null]
+5179 0 obj <<
+/D [5156 0 R /XYZ 71.731 427.794 null]
 >> endobj
-5488 0 obj <<
-/D [5464 0 R /XYZ 71.731 422.813 null]
+5180 0 obj <<
+/D [5156 0 R /XYZ 71.731 422.813 null]
 >> endobj
-5489 0 obj <<
-/D [5464 0 R /XYZ 71.731 363.261 null]
+5181 0 obj <<
+/D [5156 0 R /XYZ 71.731 363.261 null]
 >> endobj
-1186 0 obj <<
-/D [5464 0 R /XYZ 84.353 310.948 null]
+1202 0 obj <<
+/D [5156 0 R /XYZ 84.353 310.948 null]
 >> endobj
-5490 0 obj <<
-/D [5464 0 R /XYZ 71.731 300.619 null]
+5182 0 obj <<
+/D [5156 0 R /XYZ 71.731 300.619 null]
 >> endobj
-1190 0 obj <<
-/D [5464 0 R /XYZ 163.964 287.667 null]
+1206 0 obj <<
+/D [5156 0 R /XYZ 163.964 287.667 null]
 >> endobj
-5491 0 obj <<
-/D [5464 0 R /XYZ 71.731 280.469 null]
+5183 0 obj <<
+/D [5156 0 R /XYZ 71.731 280.469 null]
 >> endobj
-5492 0 obj <<
-/D [5464 0 R /XYZ 71.731 275.488 null]
+5184 0 obj <<
+/D [5156 0 R /XYZ 71.731 275.488 null]
 >> endobj
-5493 0 obj <<
-/D [5464 0 R /XYZ 71.731 249.645 null]
+5185 0 obj <<
+/D [5156 0 R /XYZ 71.731 249.645 null]
 >> endobj
-5494 0 obj <<
-/D [5464 0 R /XYZ 71.731 239.682 null]
+5186 0 obj <<
+/D [5156 0 R /XYZ 71.731 239.682 null]
 >> endobj
-5495 0 obj <<
-/D [5464 0 R /XYZ 71.731 176.635 null]
+5187 0 obj <<
+/D [5156 0 R /XYZ 71.731 176.635 null]
 >> endobj
-5496 0 obj <<
-/D [5464 0 R /XYZ 469.856 143.607 null]
+5188 0 obj <<
+/D [5156 0 R /XYZ 469.856 143.607 null]
 >> endobj
-5463 0 obj <<
-/Font << /F23 1201 0 R /F27 1208 0 R /F33 1306 0 R >>
+5155 0 obj <<
+/Font << /F23 1217 0 R /F27 1224 0 R /F33 1322 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-2761 0 obj <<
+2803 0 obj <<
 /Type /Font
 /Subtype /Type1
 /BaseFont /ZapfDingbats
 >> endobj
-5497 0 obj <<
+5189 0 obj <<
 /Type /Encoding
 /Differences [ 0 /.notdef 1/dotaccent/fi/fl/fraction/hungarumlaut/Lslash/lslash/ogonek/ring 10/.notdef 11/breve/minus 13/.notdef 14/Zcaron/zcaron/caron/dotlessi/dotlessj/ff/ffi/ffl 22/.notdef 30/grave/quotesingle/space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde 127/.notdef 128/Euro 129/.notdef 130/quotesinglbase/florin/quotedblbase/ellipsis/dagger/daggerdbl/circumflex/perthousand/Scaron/guilsinglleft/OE 141/.notdef 147/quotedblleft/quotedblright/bullet/endash/emdash/tilde/trademark/scaron/guilsinglright/oe 157/.notdef 159/Ydieresis 160/.notdef 161/exclamdown/cent/sterling/currency/yen/brokenbar/section/dieresis/copyright/ordfeminine/guillemotleft/logicalnot/hyphen/registered/macron/degree/plusminus/twosuperior/threesuperior/acute/mu/paragraph/periodcentered/cedilla/onesuperior/ordmasculine/guillemotright/onequarter/onehalf/threequarters/questiondown/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls/agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla/egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis/eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide/oslash/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis]
 >> endobj
-2529 0 obj <<
+2561 0 obj <<
 /Type /Font
 /Subtype /Type1
-/Encoding 5497 0 R
+/Encoding 5189 0 R
 /BaseFont /Courier-Bold
 >> endobj
-2324 0 obj <<
+2355 0 obj <<
 /Type /Font
 /Subtype /Type1
-/Encoding 5497 0 R
+/Encoding 5189 0 R
 /BaseFont /Courier-Oblique
 >> endobj
-2049 0 obj <<
+2081 0 obj <<
 /Type /Font
 /Subtype /Type1
-/Encoding 5497 0 R
+/Encoding 5189 0 R
 /BaseFont /Helvetica-Oblique
 >> endobj
-2037 0 obj <<
+2069 0 obj <<
 /Type /Font
 /Subtype /Type1
-/Encoding 5497 0 R
+/Encoding 5189 0 R
 /BaseFont /Helvetica
 >> endobj
-1569 0 obj <<
+1589 0 obj <<
 /Type /Font
 /Subtype /Type1
-/Encoding 5497 0 R
+/Encoding 5189 0 R
 /BaseFont /Courier
 >> endobj
-1306 0 obj <<
+1322 0 obj <<
 /Type /Font
 /Subtype /Type1
-/Encoding 5497 0 R
+/Encoding 5189 0 R
 /BaseFont /Times-Italic
 >> endobj
-1215 0 obj <<
+1231 0 obj <<
 /Type /Font
 /Subtype /Type1
-/Encoding 5497 0 R
+/Encoding 5189 0 R
 /BaseFont /Times-Bold
 >> endobj
-1208 0 obj <<
+1224 0 obj <<
 /Type /Font
 /Subtype /Type1
-/Encoding 5497 0 R
+/Encoding 5189 0 R
 /BaseFont /Times-Roman
 >> endobj
-1201 0 obj <<
+1217 0 obj <<
 /Type /Font
 /Subtype /Type1
-/Encoding 5497 0 R
+/Encoding 5189 0 R
 /BaseFont /Helvetica-Bold
 >> endobj
-1202 0 obj <<
-/Type /Pages
-/Count 6
-/Parent 5498 0 R
-/Kids [1194 0 R 1204 0 R 1210 0 R 1353 0 R 1498 0 R 1645 0 R]
->> endobj
-1879 0 obj <<
-/Type /Pages
-/Count 6
-/Parent 5498 0 R
-/Kids [1790 0 R 1924 0 R 1946 0 R 1975 0 R 2029 0 R 2043 0 R]
->> endobj
-2105 0 obj <<
+1218 0 obj <<
 /Type /Pages
 /Count 6
-/Parent 5498 0 R
-/Kids [2079 0 R 2108 0 R 2143 0 R 2216 0 R 2233 0 R 2252 0 R]
+/Parent 5190 0 R
+/Kids [1210 0 R 1220 0 R 1226 0 R 1369 0 R 1514 0 R 1652 0 R]
 >> endobj
-2312 0 obj <<
+1895 0 obj <<
 /Type /Pages
 /Count 6
-/Parent 5498 0 R
-/Kids [2287 0 R 2314 0 R 2359 0 R 2393 0 R 2435 0 R 2474 0 R]
+/Parent 5190 0 R
+/Kids [1800 0 R 1943 0 R 1956 0 R 1978 0 R 2007 0 R 2061 0 R]
 >> endobj
-2552 0 obj <<
+2110 0 obj <<
 /Type /Pages
 /Count 6
-/Parent 5498 0 R
-/Kids [2515 0 R 2554 0 R 2578 0 R 2615 0 R 2654 0 R 2693 0 R]
+/Parent 5190 0 R
+/Kids [2075 0 R 2112 0 R 2140 0 R 2175 0 R 2246 0 R 2264 0 R]
 >> endobj
-2738 0 obj <<
+2317 0 obj <<
 /Type /Pages
 /Count 6
-/Parent 5498 0 R
-/Kids [2718 0 R 2740 0 R 2784 0 R 2800 0 R 2831 0 R 2855 0 R]
+/Parent 5190 0 R
+/Kids [2286 0 R 2319 0 R 2345 0 R 2390 0 R 2424 0 R 2466 0 R]
 >> endobj
-2903 0 obj <<
+2545 0 obj <<
 /Type /Pages
 /Count 6
-/Parent 5499 0 R
-/Kids [2884 0 R 2905 0 R 2917 0 R 2951 0 R 2978 0 R 3001 0 R]
+/Parent 5190 0 R
+/Kids [2505 0 R 2547 0 R 2585 0 R 2609 0 R 2646 0 R 2685 0 R]
 >> endobj
-3085 0 obj <<
+2745 0 obj <<
 /Type /Pages
 /Count 6
-/Parent 5499 0 R
-/Kids [3032 0 R 3087 0 R 3109 0 R 3140 0 R 3181 0 R 3227 0 R]
+/Parent 5190 0 R
+/Kids [2724 0 R 2748 0 R 2775 0 R 2810 0 R 2828 0 R 2851 0 R]
 >> endobj
-3309 0 obj <<
+2900 0 obj <<
 /Type /Pages
 /Count 6
-/Parent 5499 0 R
-/Kids [3265 0 R 3311 0 R 3343 0 R 3378 0 R 3406 0 R 3433 0 R]
+/Parent 5191 0 R
+/Kids [2880 0 R 2902 0 R 2936 0 R 2963 0 R 2986 0 R 3014 0 R]
 >> endobj
-3501 0 obj <<
+3090 0 obj <<
 /Type /Pages
 /Count 6
-/Parent 5499 0 R
-/Kids [3472 0 R 3503 0 R 3522 0 R 3539 0 R 3572 0 R 3604 0 R]
+/Parent 5191 0 R
+/Kids [3065 0 R 3092 0 R 3133 0 R 3187 0 R 3227 0 R 3271 0 R]
 >> endobj
-3639 0 obj <<
+3347 0 obj <<
 /Type /Pages
 /Count 6
-/Parent 5499 0 R
-/Kids [3631 0 R 3641 0 R 3671 0 R 3700 0 R 3777 0 R 3793 0 R]
+/Parent 5191 0 R
+/Kids [3311 0 R 3349 0 R 3395 0 R 3427 0 R 3453 0 R 3485 0 R]
 >> endobj
-3870 0 obj <<
+3552 0 obj <<
 /Type /Pages
 /Count 6
-/Parent 5499 0 R
-/Kids [3822 0 R 3873 0 R 3905 0 R 3915 0 R 3950 0 R 3970 0 R]
+/Parent 5191 0 R
+/Kids [3516 0 R 3554 0 R 3575 0 R 3595 0 R 3618 0 R 3650 0 R]
 >> endobj
-4021 0 obj <<
+3709 0 obj <<
 /Type /Pages
 /Count 6
-/Parent 5500 0 R
-/Kids [4000 0 R 4023 0 R 4040 0 R 4054 0 R 4072 0 R 4108 0 R]
+/Parent 5191 0 R
+/Kids [3683 0 R 3711 0 R 3720 0 R 3750 0 R 3779 0 R 3856 0 R]
 >> endobj
-4160 0 obj <<
+3899 0 obj <<
 /Type /Pages
 /Count 6
-/Parent 5500 0 R
-/Kids [4145 0 R 4162 0 R 4179 0 R 4198 0 R 4216 0 R 4227 0 R]
+/Parent 5191 0 R
+/Kids [3872 0 R 3901 0 R 3952 0 R 3986 0 R 3997 0 R 4031 0 R]
 >> endobj
-4286 0 obj <<
+4078 0 obj <<
 /Type /Pages
 /Count 6
-/Parent 5500 0 R
-/Kids [4255 0 R 4288 0 R 4315 0 R 4353 0 R 4371 0 R 4406 0 R]
+/Parent 5192 0 R
+/Kids [4052 0 R 4080 0 R 4103 0 R 4120 0 R 4132 0 R 4148 0 R]
 >> endobj
-4457 0 obj <<
+4228 0 obj <<
 /Type /Pages
 /Count 6
-/Parent 5500 0 R
-/Kids [4438 0 R 4459 0 R 4479 0 R 4493 0 R 4525 0 R 4553 0 R]
+/Parent 5192 0 R
+/Kids [4187 0 R 4230 0 R 4268 0 R 4296 0 R 4312 0 R 4332 0 R]
 >> endobj
-4609 0 obj <<
+4365 0 obj <<
 /Type /Pages
 /Count 6
-/Parent 5500 0 R
-/Kids [4582 0 R 4611 0 R 4636 0 R 4672 0 R 4706 0 R 4745 0 R]
+/Parent 5192 0 R
+/Kids [4349 0 R 4367 0 R 4395 0 R 4427 0 R 4454 0 R 4492 0 R]
 >> endobj
-4821 0 obj <<
+4544 0 obj <<
 /Type /Pages
 /Count 6
-/Parent 5500 0 R
-/Kids [4789 0 R 4823 0 R 4863 0 R 4894 0 R 4914 0 R 4943 0 R]
+/Parent 5192 0 R
+/Kids [4510 0 R 4546 0 R 4578 0 R 4600 0 R 4618 0 R 4634 0 R]
 >> endobj
-4994 0 obj <<
+4685 0 obj <<
 /Type /Pages
 /Count 6
-/Parent 5501 0 R
-/Kids [4970 0 R 4996 0 R 5018 0 R 5035 0 R 5079 0 R 5106 0 R]
+/Parent 5192 0 R
+/Kids [4661 0 R 4687 0 R 4709 0 R 4726 0 R 4770 0 R 4797 0 R]
 >> endobj
-5166 0 obj <<
+4857 0 obj <<
 /Type /Pages
 /Count 6
-/Parent 5501 0 R
-/Kids [5137 0 R 5168 0 R 5192 0 R 5208 0 R 5219 0 R 5256 0 R]
+/Parent 5192 0 R
+/Kids [4828 0 R 4859 0 R 4883 0 R 4899 0 R 4910 0 R 4947 0 R]
 >> endobj
-5280 0 obj <<
+4971 0 obj <<
 /Type /Pages
 /Count 6
-/Parent 5501 0 R
-/Kids [5268 0 R 5282 0 R 5288 0 R 5338 0 R 5370 0 R 5397 0 R]
+/Parent 5193 0 R
+/Kids [4959 0 R 4973 0 R 4979 0 R 5029 0 R 5061 0 R 5088 0 R]
 >> endobj
-5462 0 obj <<
+5154 0 obj <<
 /Type /Pages
 /Count 2
-/Parent 5501 0 R
-/Kids [5435 0 R 5464 0 R]
+/Parent 5193 0 R
+/Kids [5127 0 R 5156 0 R]
 >> endobj
-5498 0 obj <<
+5190 0 obj <<
 /Type /Pages
 /Count 36
-/Parent 5502 0 R
-/Kids [1202 0 R 1879 0 R 2105 0 R 2312 0 R 2552 0 R 2738 0 R]
+/Parent 5194 0 R
+/Kids [1218 0 R 1895 0 R 2110 0 R 2317 0 R 2545 0 R 2745 0 R]
 >> endobj
-5499 0 obj <<
+5191 0 obj <<
 /Type /Pages
 /Count 36
-/Parent 5502 0 R
-/Kids [2903 0 R 3085 0 R 3309 0 R 3501 0 R 3639 0 R 3870 0 R]
+/Parent 5194 0 R
+/Kids [2900 0 R 3090 0 R 3347 0 R 3552 0 R 3709 0 R 3899 0 R]
 >> endobj
-5500 0 obj <<
+5192 0 obj <<
 /Type /Pages
 /Count 36
-/Parent 5502 0 R
-/Kids [4021 0 R 4160 0 R 4286 0 R 4457 0 R 4609 0 R 4821 0 R]
+/Parent 5194 0 R
+/Kids [4078 0 R 4228 0 R 4365 0 R 4544 0 R 4685 0 R 4857 0 R]
 >> endobj
-5501 0 obj <<
+5193 0 obj <<
 /Type /Pages
-/Count 20
-/Parent 5502 0 R
-/Kids [4994 0 R 5166 0 R 5280 0 R 5462 0 R]
+/Count 8
+/Parent 5194 0 R
+/Kids [4971 0 R 5154 0 R]
 >> endobj
-5502 0 obj <<
+5194 0 obj <<
 /Type /Pages
-/Count 128
-/Kids [5498 0 R 5499 0 R 5500 0 R 5501 0 R]
+/Count 116
+/Kids [5190 0 R 5191 0 R 5192 0 R 5193 0 R]
 >> endobj
-5503 0 obj <<
+5195 0 obj <<
 /Type /Outlines
 /First 3 0 R
-/Last 1187 0 R
-/Count 30
+/Last 1203 0 R
+/Count 29
+>> endobj
+1207 0 obj <<
+/Title 1208 0 R
+/A 1205 0 R
+/Parent 1203 0 R
+>> endobj
+1203 0 obj <<
+/Title 1204 0 R
+/A 1201 0 R
+/Parent 5195 0 R
+/Prev 1191 0 R
+/First 1207 0 R
+/Last 1207 0 R
+/Count -1
+>> endobj
+1199 0 obj <<
+/Title 1200 0 R
+/A 1197 0 R
+/Parent 1195 0 R
+>> endobj
+1195 0 obj <<
+/Title 1196 0 R
+/A 1193 0 R
+/Parent 1191 0 R
+/First 1199 0 R
+/Last 1199 0 R
+/Count -1
 >> endobj
 1191 0 obj <<
 /Title 1192 0 R
 /A 1189 0 R
-/Parent 1187 0 R
+/Parent 5195 0 R
+/Prev 1179 0 R
+/Next 1203 0 R
+/First 1195 0 R
+/Last 1195 0 R
+/Count -1
 >> endobj
 1187 0 obj <<
 /Title 1188 0 R
 /A 1185 0 R
-/Parent 5503 0 R
-/Prev 1175 0 R
-/First 1191 0 R
-/Last 1191 0 R
-/Count -1
+/Parent 1183 0 R
 >> endobj
 1183 0 obj <<
 /Title 1184 0 R
 /A 1181 0 R
 /Parent 1179 0 R
+/First 1187 0 R
+/Last 1187 0 R
+/Count -1
 >> endobj
 1179 0 obj <<
 /Title 1180 0 R
 /A 1177 0 R
-/Parent 1175 0 R
+/Parent 5195 0 R
+/Prev 1167 0 R
+/Next 1191 0 R
 /First 1183 0 R
 /Last 1183 0 R
 /Count -1
@@ -21032,22 +20066,22 @@ endobj
 1175 0 obj <<
 /Title 1176 0 R
 /A 1173 0 R
-/Parent 5503 0 R
-/Prev 1163 0 R
-/Next 1187 0 R
-/First 1179 0 R
-/Last 1179 0 R
-/Count -1
+/Parent 1171 0 R
 >> endobj
 1171 0 obj <<
 /Title 1172 0 R
 /A 1169 0 R
 /Parent 1167 0 R
+/First 1175 0 R
+/Last 1175 0 R
+/Count -1
 >> endobj
 1167 0 obj <<
 /Title 1168 0 R
 /A 1165 0 R
-/Parent 1163 0 R
+/Parent 5195 0 R
+/Prev 1159 0 R
+/Next 1179 0 R
 /First 1171 0 R
 /Last 1171 0 R
 /Count -1
@@ -21055,47 +20089,44 @@ endobj
 1163 0 obj <<
 /Title 1164 0 R
 /A 1161 0 R
-/Parent 5503 0 R
-/Prev 1151 0 R
-/Next 1175 0 R
-/First 1167 0 R
-/Last 1167 0 R
-/Count -1
+/Parent 1159 0 R
 >> endobj
 1159 0 obj <<
 /Title 1160 0 R
 /A 1157 0 R
-/Parent 1155 0 R
+/Parent 5195 0 R
+/Prev 1143 0 R
+/Next 1167 0 R
+/First 1163 0 R
+/Last 1163 0 R
+/Count -1
 >> endobj
 1155 0 obj <<
 /Title 1156 0 R
 /A 1153 0 R
-/Parent 1151 0 R
-/First 1159 0 R
-/Last 1159 0 R
-/Count -1
+/Parent 1147 0 R
+/Prev 1151 0 R
 >> endobj
 1151 0 obj <<
 /Title 1152 0 R
 /A 1149 0 R
-/Parent 5503 0 R
-/Prev 1143 0 R
-/Next 1163 0 R
-/First 1155 0 R
-/Last 1155 0 R
-/Count -1
+/Parent 1147 0 R
+/Next 1155 0 R
 >> endobj
 1147 0 obj <<
 /Title 1148 0 R
 /A 1145 0 R
 /Parent 1143 0 R
+/First 1151 0 R
+/Last 1155 0 R
+/Count -2
 >> endobj
 1143 0 obj <<
 /Title 1144 0 R
 /A 1141 0 R
-/Parent 5503 0 R
-/Prev 1127 0 R
-/Next 1151 0 R
+/Parent 5195 0 R
+/Prev 1131 0 R
+/Next 1159 0 R
 /First 1147 0 R
 /Last 1147 0 R
 /Count -1
@@ -21103,52 +20134,52 @@ endobj
 1139 0 obj <<
 /Title 1140 0 R
 /A 1137 0 R
-/Parent 1131 0 R
-/Prev 1135 0 R
+/Parent 1135 0 R
 >> endobj
 1135 0 obj <<
 /Title 1136 0 R
 /A 1133 0 R
 /Parent 1131 0 R
-/Next 1139 0 R
+/First 1139 0 R
+/Last 1139 0 R
+/Count -1
 >> endobj
 1131 0 obj <<
 /Title 1132 0 R
 /A 1129 0 R
-/Parent 1127 0 R
+/Parent 5195 0 R
+/Prev 1123 0 R
+/Next 1143 0 R
 /First 1135 0 R
-/Last 1139 0 R
-/Count -2
+/Last 1135 0 R
+/Count -1
 >> endobj
 1127 0 obj <<
 /Title 1128 0 R
 /A 1125 0 R
-/Parent 5503 0 R
-/Prev 1115 0 R
-/Next 1143 0 R
-/First 1131 0 R
-/Last 1131 0 R
-/Count -1
+/Parent 1123 0 R
 >> endobj
 1123 0 obj <<
 /Title 1124 0 R
 /A 1121 0 R
-/Parent 1119 0 R
+/Parent 5195 0 R
+/Prev 1115 0 R
+/Next 1131 0 R
+/First 1127 0 R
+/Last 1127 0 R
+/Count -1
 >> endobj
 1119 0 obj <<
 /Title 1120 0 R
 /A 1117 0 R
 /Parent 1115 0 R
-/First 1123 0 R
-/Last 1123 0 R
-/Count -1
 >> endobj
 1115 0 obj <<
 /Title 1116 0 R
 /A 1113 0 R
-/Parent 5503 0 R
-/Prev 1107 0 R
-/Next 1127 0 R
+/Parent 5195 0 R
+/Prev 1103 0 R
+/Next 1123 0 R
 /First 1119 0 R
 /Last 1119 0 R
 /Count -1
@@ -21161,9 +20192,7 @@ endobj
 1107 0 obj <<
 /Title 1108 0 R
 /A 1105 0 R
-/Parent 5503 0 R
-/Prev 1099 0 R
-/Next 1115 0 R
+/Parent 1103 0 R
 /First 1111 0 R
 /Last 1111 0 R
 /Count -1
@@ -21171,53 +20200,55 @@ endobj
 1103 0 obj <<
 /Title 1104 0 R
 /A 1101 0 R
-/Parent 1099 0 R
+/Parent 5195 0 R
+/Prev 1083 0 R
+/Next 1115 0 R
+/First 1107 0 R
+/Last 1107 0 R
+/Count -1
 >> endobj
 1099 0 obj <<
 /Title 1100 0 R
 /A 1097 0 R
-/Parent 5503 0 R
-/Prev 1087 0 R
-/Next 1107 0 R
-/First 1103 0 R
-/Last 1103 0 R
-/Count -1
+/Parent 1087 0 R
+/Prev 1095 0 R
 >> endobj
 1095 0 obj <<
 /Title 1096 0 R
 /A 1093 0 R
-/Parent 1091 0 R
+/Parent 1087 0 R
+/Prev 1091 0 R
+/Next 1099 0 R
 >> endobj
 1091 0 obj <<
 /Title 1092 0 R
 /A 1089 0 R
 /Parent 1087 0 R
-/First 1095 0 R
-/Last 1095 0 R
-/Count -1
+/Next 1095 0 R
 >> endobj
 1087 0 obj <<
 /Title 1088 0 R
 /A 1085 0 R
-/Parent 5503 0 R
-/Prev 1067 0 R
-/Next 1099 0 R
+/Parent 1083 0 R
 /First 1091 0 R
-/Last 1091 0 R
-/Count -1
+/Last 1099 0 R
+/Count -3
 >> endobj
 1083 0 obj <<
 /Title 1084 0 R
 /A 1081 0 R
-/Parent 1071 0 R
-/Prev 1079 0 R
+/Parent 5195 0 R
+/Prev 1067 0 R
+/Next 1103 0 R
+/First 1087 0 R
+/Last 1087 0 R
+/Count -1
 >> endobj
 1079 0 obj <<
 /Title 1080 0 R
 /A 1077 0 R
 /Parent 1071 0 R
 /Prev 1075 0 R
-/Next 1083 0 R
 >> endobj
 1075 0 obj <<
 /Title 1076 0 R
@@ -21230,15 +20261,15 @@ endobj
 /A 1069 0 R
 /Parent 1067 0 R
 /First 1075 0 R
-/Last 1083 0 R
-/Count -3
+/Last 1079 0 R
+/Count -2
 >> endobj
 1067 0 obj <<
 /Title 1068 0 R
 /A 1065 0 R
-/Parent 5503 0 R
-/Prev 1051 0 R
-/Next 1087 0 R
+/Parent 5195 0 R
+/Prev 1055 0 R
+/Next 1083 0 R
 /First 1071 0 R
 /Last 1071 0 R
 /Count -1
@@ -21246,146 +20277,145 @@ endobj
 1063 0 obj <<
 /Title 1064 0 R
 /A 1061 0 R
-/Parent 1055 0 R
-/Prev 1059 0 R
+/Parent 1059 0 R
 >> endobj
 1059 0 obj <<
 /Title 1060 0 R
 /A 1057 0 R
 /Parent 1055 0 R
-/Next 1063 0 R
+/First 1063 0 R
+/Last 1063 0 R
+/Count -1
 >> endobj
 1055 0 obj <<
 /Title 1056 0 R
 /A 1053 0 R
-/Parent 1051 0 R
+/Parent 5195 0 R
+/Prev 1047 0 R
+/Next 1067 0 R
 /First 1059 0 R
-/Last 1063 0 R
-/Count -2
+/Last 1059 0 R
+/Count -1
 >> endobj
 1051 0 obj <<
 /Title 1052 0 R
 /A 1049 0 R
-/Parent 5503 0 R
-/Prev 1039 0 R
-/Next 1067 0 R
-/First 1055 0 R
-/Last 1055 0 R
-/Count -1
+/Parent 1047 0 R
 >> endobj
 1047 0 obj <<
 /Title 1048 0 R
 /A 1045 0 R
-/Parent 1043 0 R
+/Parent 5195 0 R
+/Prev 1043 0 R
+/Next 1055 0 R
+/First 1051 0 R
+/Last 1051 0 R
+/Count -1
 >> endobj
 1043 0 obj <<
 /Title 1044 0 R
 /A 1041 0 R
-/Parent 1039 0 R
-/First 1047 0 R
-/Last 1047 0 R
-/Count -1
+/Parent 5195 0 R
+/Prev 991 0 R
+/Next 1047 0 R
 >> endobj
 1039 0 obj <<
 /Title 1040 0 R
 /A 1037 0 R
-/Parent 5503 0 R
-/Prev 1031 0 R
-/Next 1051 0 R
-/First 1043 0 R
-/Last 1043 0 R
-/Count -1
+/Parent 991 0 R
+/Prev 1035 0 R
 >> endobj
 1035 0 obj <<
 /Title 1036 0 R
 /A 1033 0 R
-/Parent 1031 0 R
+/Parent 991 0 R
+/Prev 1031 0 R
+/Next 1039 0 R
 >> endobj
 1031 0 obj <<
 /Title 1032 0 R
 /A 1029 0 R
-/Parent 5503 0 R
+/Parent 991 0 R
 /Prev 1027 0 R
-/Next 1039 0 R
-/First 1035 0 R
-/Last 1035 0 R
-/Count -1
+/Next 1035 0 R
 >> endobj
 1027 0 obj <<
 /Title 1028 0 R
 /A 1025 0 R
-/Parent 5503 0 R
-/Prev 975 0 R
+/Parent 991 0 R
+/Prev 1023 0 R
 /Next 1031 0 R
 >> endobj
 1023 0 obj <<
 /Title 1024 0 R
 /A 1021 0 R
-/Parent 975 0 R
+/Parent 991 0 R
 /Prev 1019 0 R
+/Next 1027 0 R
 >> endobj
 1019 0 obj <<
 /Title 1020 0 R
 /A 1017 0 R
-/Parent 975 0 R
+/Parent 991 0 R
 /Prev 1015 0 R
 /Next 1023 0 R
 >> endobj
 1015 0 obj <<
 /Title 1016 0 R
 /A 1013 0 R
-/Parent 975 0 R
+/Parent 991 0 R
 /Prev 1011 0 R
 /Next 1019 0 R
 >> endobj
 1011 0 obj <<
 /Title 1012 0 R
 /A 1009 0 R
-/Parent 975 0 R
+/Parent 991 0 R
 /Prev 1007 0 R
 /Next 1015 0 R
 >> endobj
 1007 0 obj <<
 /Title 1008 0 R
 /A 1005 0 R
-/Parent 975 0 R
+/Parent 991 0 R
 /Prev 1003 0 R
 /Next 1011 0 R
 >> endobj
 1003 0 obj <<
 /Title 1004 0 R
 /A 1001 0 R
-/Parent 975 0 R
+/Parent 991 0 R
 /Prev 999 0 R
 /Next 1007 0 R
 >> endobj
 999 0 obj <<
 /Title 1000 0 R
 /A 997 0 R
-/Parent 975 0 R
+/Parent 991 0 R
 /Prev 995 0 R
 /Next 1003 0 R
 >> endobj
 995 0 obj <<
 /Title 996 0 R
 /A 993 0 R
-/Parent 975 0 R
-/Prev 991 0 R
+/Parent 991 0 R
 /Next 999 0 R
 >> endobj
 991 0 obj <<
 /Title 992 0 R
 /A 989 0 R
-/Parent 975 0 R
-/Prev 987 0 R
-/Next 995 0 R
+/Parent 5195 0 R
+/Prev 975 0 R
+/Next 1043 0 R
+/First 995 0 R
+/Last 1039 0 R
+/Count -12
 >> endobj
 987 0 obj <<
 /Title 988 0 R
 /A 985 0 R
 /Parent 975 0 R
 /Prev 983 0 R
-/Next 991 0 R
 >> endobj
 983 0 obj <<
 /Title 984 0 R
@@ -21403,236 +20433,239 @@ endobj
 975 0 obj <<
 /Title 976 0 R
 /A 973 0 R
-/Parent 5503 0 R
-/Prev 959 0 R
-/Next 1027 0 R
+/Parent 5195 0 R
+/Prev 963 0 R
+/Next 991 0 R
 /First 979 0 R
-/Last 1023 0 R
-/Count -12
+/Last 987 0 R
+/Count -3
 >> endobj
 971 0 obj <<
 /Title 972 0 R
 /A 969 0 R
-/Parent 959 0 R
+/Parent 963 0 R
 /Prev 967 0 R
 >> endobj
 967 0 obj <<
 /Title 968 0 R
 /A 965 0 R
-/Parent 959 0 R
-/Prev 963 0 R
+/Parent 963 0 R
 /Next 971 0 R
 >> endobj
 963 0 obj <<
 /Title 964 0 R
 /A 961 0 R
-/Parent 959 0 R
-/Next 967 0 R
+/Parent 5195 0 R
+/Prev 923 0 R
+/Next 975 0 R
+/First 967 0 R
+/Last 971 0 R
+/Count -2
 >> endobj
 959 0 obj <<
 /Title 960 0 R
 /A 957 0 R
-/Parent 5503 0 R
-/Prev 947 0 R
-/Next 975 0 R
-/First 963 0 R
-/Last 971 0 R
-/Count -3
+/Parent 923 0 R
+/Prev 955 0 R
 >> endobj
 955 0 obj <<
 /Title 956 0 R
 /A 953 0 R
-/Parent 947 0 R
+/Parent 923 0 R
 /Prev 951 0 R
+/Next 959 0 R
 >> endobj
 951 0 obj <<
 /Title 952 0 R
 /A 949 0 R
-/Parent 947 0 R
+/Parent 923 0 R
+/Prev 947 0 R
 /Next 955 0 R
 >> endobj
 947 0 obj <<
 /Title 948 0 R
 /A 945 0 R
-/Parent 5503 0 R
-/Prev 907 0 R
-/Next 959 0 R
-/First 951 0 R
-/Last 955 0 R
-/Count -2
+/Parent 923 0 R
+/Prev 943 0 R
+/Next 951 0 R
 >> endobj
 943 0 obj <<
 /Title 944 0 R
 /A 941 0 R
-/Parent 907 0 R
+/Parent 923 0 R
 /Prev 939 0 R
+/Next 947 0 R
 >> endobj
 939 0 obj <<
 /Title 940 0 R
 /A 937 0 R
-/Parent 907 0 R
+/Parent 923 0 R
 /Prev 935 0 R
 /Next 943 0 R
 >> endobj
 935 0 obj <<
 /Title 936 0 R
 /A 933 0 R
-/Parent 907 0 R
+/Parent 923 0 R
 /Prev 931 0 R
 /Next 939 0 R
 >> endobj
 931 0 obj <<
 /Title 932 0 R
 /A 929 0 R
-/Parent 907 0 R
+/Parent 923 0 R
 /Prev 927 0 R
 /Next 935 0 R
 >> endobj
 927 0 obj <<
 /Title 928 0 R
 /A 925 0 R
-/Parent 907 0 R
-/Prev 923 0 R
+/Parent 923 0 R
 /Next 931 0 R
 >> endobj
 923 0 obj <<
 /Title 924 0 R
 /A 921 0 R
-/Parent 907 0 R
-/Prev 919 0 R
-/Next 927 0 R
+/Parent 5195 0 R
+/Prev 855 0 R
+/Next 963 0 R
+/First 927 0 R
+/Last 959 0 R
+/Count -9
 >> endobj
 919 0 obj <<
 /Title 920 0 R
 /A 917 0 R
-/Parent 907 0 R
+/Parent 899 0 R
 /Prev 915 0 R
-/Next 923 0 R
 >> endobj
 915 0 obj <<
 /Title 916 0 R
 /A 913 0 R
-/Parent 907 0 R
+/Parent 899 0 R
 /Prev 911 0 R
 /Next 919 0 R
 >> endobj
 911 0 obj <<
 /Title 912 0 R
 /A 909 0 R
-/Parent 907 0 R
+/Parent 899 0 R
+/Prev 907 0 R
 /Next 915 0 R
 >> endobj
 907 0 obj <<
 /Title 908 0 R
 /A 905 0 R
-/Parent 5503 0 R
+/Parent 899 0 R
 /Prev 903 0 R
-/Next 947 0 R
-/First 911 0 R
-/Last 943 0 R
-/Count -9
+/Next 911 0 R
 >> endobj
 903 0 obj <<
 /Title 904 0 R
 /A 901 0 R
-/Parent 5503 0 R
-/Prev 835 0 R
+/Parent 899 0 R
 /Next 907 0 R
 >> endobj
 899 0 obj <<
 /Title 900 0 R
 /A 897 0 R
-/Parent 879 0 R
+/Parent 855 0 R
 /Prev 895 0 R
+/First 903 0 R
+/Last 919 0 R
+/Count -5
 >> endobj
 895 0 obj <<
 /Title 896 0 R
 /A 893 0 R
-/Parent 879 0 R
+/Parent 855 0 R
 /Prev 891 0 R
 /Next 899 0 R
 >> endobj
 891 0 obj <<
 /Title 892 0 R
 /A 889 0 R
-/Parent 879 0 R
-/Prev 887 0 R
+/Parent 855 0 R
+/Prev 863 0 R
 /Next 895 0 R
 >> endobj
 887 0 obj <<
 /Title 888 0 R
 /A 885 0 R
-/Parent 879 0 R
+/Parent 863 0 R
 /Prev 883 0 R
-/Next 891 0 R
 >> endobj
 883 0 obj <<
 /Title 884 0 R
 /A 881 0 R
-/Parent 879 0 R
+/Parent 863 0 R
+/Prev 879 0 R
 /Next 887 0 R
 >> endobj
 879 0 obj <<
 /Title 880 0 R
 /A 877 0 R
-/Parent 835 0 R
+/Parent 863 0 R
 /Prev 875 0 R
-/First 883 0 R
-/Last 899 0 R
-/Count -5
+/Next 883 0 R
 >> endobj
 875 0 obj <<
 /Title 876 0 R
 /A 873 0 R
-/Parent 835 0 R
+/Parent 863 0 R
 /Prev 871 0 R
 /Next 879 0 R
 >> endobj
 871 0 obj <<
 /Title 872 0 R
 /A 869 0 R
-/Parent 835 0 R
-/Prev 843 0 R
+/Parent 863 0 R
+/Prev 867 0 R
 /Next 875 0 R
 >> endobj
 867 0 obj <<
 /Title 868 0 R
 /A 865 0 R
-/Parent 843 0 R
-/Prev 863 0 R
+/Parent 863 0 R
+/Next 871 0 R
 >> endobj
 863 0 obj <<
 /Title 864 0 R
 /A 861 0 R
-/Parent 843 0 R
+/Parent 855 0 R
 /Prev 859 0 R
-/Next 867 0 R
+/Next 891 0 R
+/First 867 0 R
+/Last 887 0 R
+/Count -6
 >> endobj
 859 0 obj <<
 /Title 860 0 R
 /A 857 0 R
-/Parent 843 0 R
-/Prev 855 0 R
+/Parent 855 0 R
 /Next 863 0 R
 >> endobj
 855 0 obj <<
 /Title 856 0 R
 /A 853 0 R
-/Parent 843 0 R
-/Prev 851 0 R
-/Next 859 0 R
+/Parent 5195 0 R
+/Prev 659 0 R
+/Next 923 0 R
+/First 859 0 R
+/Last 899 0 R
+/Count -5
 >> endobj
 851 0 obj <<
 /Title 852 0 R
 /A 849 0 R
-/Parent 843 0 R
+/Parent 835 0 R
 /Prev 847 0 R
-/Next 855 0 R
 >> endobj
 847 0 obj <<
 /Title 848 0 R
 /A 845 0 R
-/Parent 843 0 R
+/Parent 835 0 R
+/Prev 843 0 R
 /Next 851 0 R
 >> endobj
 843 0 obj <<
@@ -21640,10 +20673,7 @@ endobj
 /A 841 0 R
 /Parent 835 0 R
 /Prev 839 0 R
-/Next 871 0 R
-/First 847 0 R
-/Last 867 0 R
-/Count -6
+/Next 847 0 R
 >> endobj
 839 0 obj <<
 /Title 840 0 R
@@ -21654,345 +20684,344 @@ endobj
 835 0 obj <<
 /Title 836 0 R
 /A 833 0 R
-/Parent 5503 0 R
-/Prev 651 0 R
-/Next 903 0 R
+/Parent 659 0 R
+/Prev 831 0 R
 /First 839 0 R
-/Last 879 0 R
-/Count -5
+/Last 851 0 R
+/Count -4
 >> endobj
 831 0 obj <<
 /Title 832 0 R
 /A 829 0 R
-/Parent 815 0 R
-/Prev 827 0 R
+/Parent 659 0 R
+/Prev 811 0 R
+/Next 835 0 R
 >> endobj
 827 0 obj <<
 /Title 828 0 R
 /A 825 0 R
-/Parent 815 0 R
+/Parent 819 0 R
 /Prev 823 0 R
-/Next 831 0 R
 >> endobj
 823 0 obj <<
 /Title 824 0 R
 /A 821 0 R
-/Parent 815 0 R
-/Prev 819 0 R
+/Parent 819 0 R
 /Next 827 0 R
 >> endobj
 819 0 obj <<
 /Title 820 0 R
 /A 817 0 R
-/Parent 815 0 R
-/Next 823 0 R
+/Parent 811 0 R
+/Prev 815 0 R
+/First 823 0 R
+/Last 827 0 R
+/Count -2
 >> endobj
 815 0 obj <<
 /Title 816 0 R
 /A 813 0 R
-/Parent 651 0 R
-/Prev 811 0 R
-/First 819 0 R
-/Last 831 0 R
-/Count -4
+/Parent 811 0 R
+/Next 819 0 R
 >> endobj
 811 0 obj <<
 /Title 812 0 R
 /A 809 0 R
-/Parent 651 0 R
-/Prev 791 0 R
-/Next 815 0 R
+/Parent 659 0 R
+/Prev 787 0 R
+/Next 831 0 R
+/First 815 0 R
+/Last 819 0 R
+/Count -2
 >> endobj
 807 0 obj <<
 /Title 808 0 R
 /A 805 0 R
-/Parent 799 0 R
+/Parent 787 0 R
 /Prev 803 0 R
 >> endobj
 803 0 obj <<
 /Title 804 0 R
 /A 801 0 R
-/Parent 799 0 R
+/Parent 787 0 R
+/Prev 799 0 R
 /Next 807 0 R
 >> endobj
 799 0 obj <<
 /Title 800 0 R
 /A 797 0 R
-/Parent 791 0 R
+/Parent 787 0 R
 /Prev 795 0 R
-/First 803 0 R
-/Last 807 0 R
-/Count -2
+/Next 803 0 R
 >> endobj
 795 0 obj <<
 /Title 796 0 R
 /A 793 0 R
-/Parent 791 0 R
+/Parent 787 0 R
+/Prev 791 0 R
 /Next 799 0 R
 >> endobj
 791 0 obj <<
 /Title 792 0 R
 /A 789 0 R
-/Parent 651 0 R
-/Prev 771 0 R
-/Next 811 0 R
-/First 795 0 R
-/Last 799 0 R
-/Count -2
+/Parent 787 0 R
+/Next 795 0 R
 >> endobj
 787 0 obj <<
 /Title 788 0 R
 /A 785 0 R
-/Parent 771 0 R
+/Parent 659 0 R
 /Prev 783 0 R
+/Next 811 0 R
+/First 791 0 R
+/Last 807 0 R
+/Count -5
 >> endobj
 783 0 obj <<
 /Title 784 0 R
 /A 781 0 R
-/Parent 771 0 R
-/Prev 779 0 R
+/Parent 659 0 R
+/Prev 763 0 R
 /Next 787 0 R
 >> endobj
 779 0 obj <<
 /Title 780 0 R
 /A 777 0 R
-/Parent 771 0 R
+/Parent 763 0 R
 /Prev 775 0 R
-/Next 783 0 R
 >> endobj
 775 0 obj <<
 /Title 776 0 R
 /A 773 0 R
-/Parent 771 0 R
+/Parent 763 0 R
+/Prev 771 0 R
 /Next 779 0 R
 >> endobj
 771 0 obj <<
 /Title 772 0 R
 /A 769 0 R
-/Parent 651 0 R
+/Parent 763 0 R
 /Prev 767 0 R
-/Next 791 0 R
-/First 775 0 R
-/Last 787 0 R
-/Count -4
+/Next 775 0 R
 >> endobj
 767 0 obj <<
 /Title 768 0 R
 /A 765 0 R
-/Parent 651 0 R
-/Prev 751 0 R
+/Parent 763 0 R
 /Next 771 0 R
 >> endobj
 763 0 obj <<
 /Title 764 0 R
 /A 761 0 R
-/Parent 751 0 R
-/Prev 759 0 R
+/Parent 659 0 R
+/Prev 727 0 R
+/Next 783 0 R
+/First 767 0 R
+/Last 779 0 R
+/Count -4
 >> endobj
 759 0 obj <<
 /Title 760 0 R
 /A 757 0 R
-/Parent 751 0 R
+/Parent 731 0 R
 /Prev 755 0 R
-/Next 763 0 R
 >> endobj
 755 0 obj <<
 /Title 756 0 R
 /A 753 0 R
-/Parent 751 0 R
+/Parent 731 0 R
+/Prev 751 0 R
 /Next 759 0 R
 >> endobj
 751 0 obj <<
 /Title 752 0 R
 /A 749 0 R
-/Parent 651 0 R
-/Prev 715 0 R
-/Next 767 0 R
-/First 755 0 R
-/Last 763 0 R
-/Count -3
+/Parent 731 0 R
+/Prev 747 0 R
+/Next 755 0 R
 >> endobj
 747 0 obj <<
 /Title 748 0 R
 /A 745 0 R
-/Parent 719 0 R
+/Parent 731 0 R
 /Prev 743 0 R
+/Next 751 0 R
 >> endobj
 743 0 obj <<
 /Title 744 0 R
 /A 741 0 R
-/Parent 719 0 R
+/Parent 731 0 R
 /Prev 739 0 R
 /Next 747 0 R
 >> endobj
 739 0 obj <<
 /Title 740 0 R
 /A 737 0 R
-/Parent 719 0 R
+/Parent 731 0 R
 /Prev 735 0 R
 /Next 743 0 R
 >> endobj
 735 0 obj <<
 /Title 736 0 R
 /A 733 0 R
-/Parent 719 0 R
-/Prev 731 0 R
+/Parent 731 0 R
 /Next 739 0 R
 >> endobj
 731 0 obj <<
 /Title 732 0 R
 /A 729 0 R
-/Parent 719 0 R
-/Prev 727 0 R
-/Next 735 0 R
+/Parent 727 0 R
+/First 735 0 R
+/Last 759 0 R
+/Count -7
 >> endobj
 727 0 obj <<
 /Title 728 0 R
 /A 725 0 R
-/Parent 719 0 R
-/Prev 723 0 R
-/Next 731 0 R
+/Parent 659 0 R
+/Prev 715 0 R
+/Next 763 0 R
+/First 731 0 R
+/Last 731 0 R
+/Count -1
 >> endobj
 723 0 obj <<
 /Title 724 0 R
 /A 721 0 R
-/Parent 719 0 R
-/Next 727 0 R
+/Parent 715 0 R
+/Prev 719 0 R
 >> endobj
 719 0 obj <<
 /Title 720 0 R
 /A 717 0 R
 /Parent 715 0 R
-/First 723 0 R
-/Last 747 0 R
-/Count -7
+/Next 723 0 R
 >> endobj
 715 0 obj <<
 /Title 716 0 R
 /A 713 0 R
-/Parent 651 0 R
-/Prev 703 0 R
-/Next 751 0 R
+/Parent 659 0 R
+/Prev 679 0 R
+/Next 727 0 R
 /First 719 0 R
-/Last 719 0 R
-/Count -1
+/Last 723 0 R
+/Count -2
 >> endobj
 711 0 obj <<
 /Title 712 0 R
 /A 709 0 R
-/Parent 703 0 R
+/Parent 679 0 R
 /Prev 707 0 R
 >> endobj
 707 0 obj <<
 /Title 708 0 R
 /A 705 0 R
-/Parent 703 0 R
+/Parent 679 0 R
+/Prev 703 0 R
 /Next 711 0 R
 >> endobj
 703 0 obj <<
 /Title 704 0 R
 /A 701 0 R
-/Parent 651 0 R
-/Prev 671 0 R
-/Next 715 0 R
-/First 707 0 R
-/Last 711 0 R
-/Count -2
+/Parent 679 0 R
+/Prev 699 0 R
+/Next 707 0 R
 >> endobj
 699 0 obj <<
 /Title 700 0 R
 /A 697 0 R
-/Parent 671 0 R
-/Prev 695 0 R
+/Parent 679 0 R
+/Prev 683 0 R
+/Next 703 0 R
 >> endobj
 695 0 obj <<
 /Title 696 0 R
 /A 693 0 R
-/Parent 671 0 R
+/Parent 683 0 R
 /Prev 691 0 R
-/Next 699 0 R
 >> endobj
 691 0 obj <<
 /Title 692 0 R
 /A 689 0 R
-/Parent 671 0 R
-/Prev 675 0 R
+/Parent 683 0 R
+/Prev 687 0 R
 /Next 695 0 R
 >> endobj
 687 0 obj <<
 /Title 688 0 R
 /A 685 0 R
-/Parent 675 0 R
-/Prev 683 0 R
+/Parent 683 0 R
+/Next 691 0 R
 >> endobj
 683 0 obj <<
 /Title 684 0 R
 /A 681 0 R
-/Parent 675 0 R
-/Prev 679 0 R
-/Next 687 0 R
+/Parent 679 0 R
+/Next 699 0 R
+/First 687 0 R
+/Last 695 0 R
+/Count -3
 >> endobj
 679 0 obj <<
 /Title 680 0 R
 /A 677 0 R
-/Parent 675 0 R
-/Next 683 0 R
+/Parent 659 0 R
+/Prev 675 0 R
+/Next 715 0 R
+/First 683 0 R
+/Last 711 0 R
+/Count -5
 >> endobj
 675 0 obj <<
 /Title 676 0 R
 /A 673 0 R
-/Parent 671 0 R
-/Next 691 0 R
-/First 679 0 R
-/Last 687 0 R
-/Count -3
+/Parent 659 0 R
+/Prev 671 0 R
+/Next 679 0 R
 >> endobj
 671 0 obj <<
 /Title 672 0 R
 /A 669 0 R
-/Parent 651 0 R
+/Parent 659 0 R
 /Prev 667 0 R
-/Next 703 0 R
-/First 675 0 R
-/Last 699 0 R
-/Count -4
+/Next 675 0 R
 >> endobj
 667 0 obj <<
 /Title 668 0 R
 /A 665 0 R
-/Parent 651 0 R
+/Parent 659 0 R
 /Prev 663 0 R
 /Next 671 0 R
 >> endobj
 663 0 obj <<
 /Title 664 0 R
 /A 661 0 R
-/Parent 651 0 R
-/Prev 659 0 R
+/Parent 659 0 R
 /Next 667 0 R
 >> endobj
 659 0 obj <<
 /Title 660 0 R
 /A 657 0 R
-/Parent 651 0 R
-/Prev 655 0 R
-/Next 663 0 R
+/Parent 5195 0 R
+/Prev 607 0 R
+/Next 855 0 R
+/First 663 0 R
+/Last 835 0 R
+/Count -13
 >> endobj
 655 0 obj <<
 /Title 656 0 R
 /A 653 0 R
 /Parent 651 0 R
-/Next 659 0 R
 >> endobj
 651 0 obj <<
 /Title 652 0 R
 /A 649 0 R
-/Parent 5503 0 R
-/Prev 599 0 R
-/Next 835 0 R
+/Parent 607 0 R
+/Prev 643 0 R
 /First 655 0 R
-/Last 815 0 R
-/Count -13
+/Last 655 0 R
+/Count -1
 >> endobj
 647 0 obj <<
 /Title 648 0 R
@@ -22002,8 +21031,9 @@ endobj
 643 0 obj <<
 /Title 644 0 R
 /A 641 0 R
-/Parent 599 0 R
-/Prev 635 0 R
+/Parent 607 0 R
+/Prev 627 0 R
+/Next 651 0 R
 /First 647 0 R
 /Last 647 0 R
 /Count -1
@@ -22011,361 +21041,360 @@ endobj
 639 0 obj <<
 /Title 640 0 R
 /A 637 0 R
-/Parent 635 0 R
+/Parent 627 0 R
+/Prev 635 0 R
 >> endobj
 635 0 obj <<
 /Title 636 0 R
 /A 633 0 R
-/Parent 599 0 R
-/Prev 619 0 R
-/Next 643 0 R
-/First 639 0 R
-/Last 639 0 R
-/Count -1
+/Parent 627 0 R
+/Prev 631 0 R
+/Next 639 0 R
 >> endobj
 631 0 obj <<
 /Title 632 0 R
 /A 629 0 R
-/Parent 619 0 R
-/Prev 627 0 R
+/Parent 627 0 R
+/Next 635 0 R
 >> endobj
 627 0 obj <<
 /Title 628 0 R
 /A 625 0 R
-/Parent 619 0 R
-/Prev 623 0 R
-/Next 631 0 R
+/Parent 607 0 R
+/Prev 611 0 R
+/Next 643 0 R
+/First 631 0 R
+/Last 639 0 R
+/Count -3
 >> endobj
 623 0 obj <<
 /Title 624 0 R
 /A 621 0 R
-/Parent 619 0 R
-/Next 627 0 R
+/Parent 611 0 R
+/Prev 619 0 R
 >> endobj
 619 0 obj <<
 /Title 620 0 R
 /A 617 0 R
-/Parent 599 0 R
-/Prev 603 0 R
-/Next 635 0 R
-/First 623 0 R
-/Last 631 0 R
-/Count -3
+/Parent 611 0 R
+/Prev 615 0 R
+/Next 623 0 R
 >> endobj
 615 0 obj <<
 /Title 616 0 R
 /A 613 0 R
-/Parent 603 0 R
-/Prev 611 0 R
+/Parent 611 0 R
+/Next 619 0 R
 >> endobj
 611 0 obj <<
 /Title 612 0 R
 /A 609 0 R
-/Parent 603 0 R
-/Prev 607 0 R
-/Next 615 0 R
+/Parent 607 0 R
+/Next 627 0 R
+/First 615 0 R
+/Last 623 0 R
+/Count -3
 >> endobj
 607 0 obj <<
 /Title 608 0 R
 /A 605 0 R
-/Parent 603 0 R
-/Next 611 0 R
+/Parent 5195 0 R
+/Prev 335 0 R
+/Next 659 0 R
+/First 611 0 R
+/Last 651 0 R
+/Count -4
 >> endobj
 603 0 obj <<
 /Title 604 0 R
 /A 601 0 R
-/Parent 599 0 R
-/Next 619 0 R
-/First 607 0 R
-/Last 615 0 R
-/Count -3
+/Parent 575 0 R
+/Prev 587 0 R
 >> endobj
 599 0 obj <<
 /Title 600 0 R
 /A 597 0 R
-/Parent 5503 0 R
-/Prev 339 0 R
-/Next 651 0 R
-/First 603 0 R
-/Last 643 0 R
-/Count -4
+/Parent 587 0 R
+/Prev 595 0 R
 >> endobj
 595 0 obj <<
 /Title 596 0 R
 /A 593 0 R
-/Parent 567 0 R
-/Prev 579 0 R
+/Parent 587 0 R
+/Prev 591 0 R
+/Next 599 0 R
 >> endobj
 591 0 obj <<
 /Title 592 0 R
 /A 589 0 R
-/Parent 579 0 R
-/Prev 587 0 R
+/Parent 587 0 R
+/Next 595 0 R
 >> endobj
 587 0 obj <<
 /Title 588 0 R
 /A 585 0 R
-/Parent 579 0 R
+/Parent 575 0 R
 /Prev 583 0 R
-/Next 591 0 R
+/Next 603 0 R
+/First 591 0 R
+/Last 599 0 R
+/Count -3
 >> endobj
 583 0 obj <<
 /Title 584 0 R
 /A 581 0 R
-/Parent 579 0 R
+/Parent 575 0 R
+/Prev 579 0 R
 /Next 587 0 R
 >> endobj
 579 0 obj <<
 /Title 580 0 R
 /A 577 0 R
-/Parent 567 0 R
-/Prev 575 0 R
-/Next 595 0 R
-/First 583 0 R
-/Last 591 0 R
-/Count -3
+/Parent 575 0 R
+/Next 583 0 R
 >> endobj
 575 0 obj <<
 /Title 576 0 R
 /A 573 0 R
-/Parent 567 0 R
+/Parent 335 0 R
 /Prev 571 0 R
-/Next 579 0 R
+/First 579 0 R
+/Last 603 0 R
+/Count -4
 >> endobj
 571 0 obj <<
 /Title 572 0 R
 /A 569 0 R
-/Parent 567 0 R
+/Parent 335 0 R
+/Prev 539 0 R
 /Next 575 0 R
 >> endobj
 567 0 obj <<
 /Title 568 0 R
 /A 565 0 R
-/Parent 339 0 R
-/Prev 535 0 R
-/First 571 0 R
-/Last 595 0 R
-/Count -4
+/Parent 555 0 R
+/Prev 563 0 R
 >> endobj
 563 0 obj <<
 /Title 564 0 R
 /A 561 0 R
-/Parent 551 0 R
+/Parent 555 0 R
 /Prev 559 0 R
+/Next 567 0 R
 >> endobj
 559 0 obj <<
 /Title 560 0 R
 /A 557 0 R
-/Parent 551 0 R
-/Prev 555 0 R
+/Parent 555 0 R
 /Next 563 0 R
 >> endobj
 555 0 obj <<
 /Title 556 0 R
 /A 553 0 R
-/Parent 551 0 R
-/Next 559 0 R
+/Parent 539 0 R
+/Prev 551 0 R
+/First 559 0 R
+/Last 567 0 R
+/Count -3
 >> endobj
 551 0 obj <<
 /Title 552 0 R
 /A 549 0 R
-/Parent 535 0 R
+/Parent 539 0 R
 /Prev 547 0 R
-/First 555 0 R
-/Last 563 0 R
-/Count -3
+/Next 555 0 R
 >> endobj
 547 0 obj <<
 /Title 548 0 R
 /A 545 0 R
-/Parent 535 0 R
+/Parent 539 0 R
 /Prev 543 0 R
 /Next 551 0 R
 >> endobj
 543 0 obj <<
 /Title 544 0 R
 /A 541 0 R
-/Parent 535 0 R
-/Prev 539 0 R
+/Parent 539 0 R
 /Next 547 0 R
 >> endobj
 539 0 obj <<
 /Title 540 0 R
 /A 537 0 R
-/Parent 535 0 R
-/Next 543 0 R
+/Parent 335 0 R
+/Prev 535 0 R
+/Next 571 0 R
+/First 543 0 R
+/Last 555 0 R
+/Count -4
 >> endobj
 535 0 obj <<
 /Title 536 0 R
 /A 533 0 R
-/Parent 339 0 R
+/Parent 335 0 R
 /Prev 531 0 R
-/Next 567 0 R
-/First 539 0 R
-/Last 551 0 R
-/Count -4
+/Next 539 0 R
 >> endobj
 531 0 obj <<
 /Title 532 0 R
 /A 529 0 R
-/Parent 339 0 R
-/Prev 527 0 R
+/Parent 335 0 R
+/Prev 519 0 R
 /Next 535 0 R
 >> endobj
 527 0 obj <<
 /Title 528 0 R
 /A 525 0 R
-/Parent 339 0 R
-/Prev 515 0 R
-/Next 531 0 R
+/Parent 519 0 R
+/Prev 523 0 R
 >> endobj
 523 0 obj <<
 /Title 524 0 R
 /A 521 0 R
-/Parent 515 0 R
-/Prev 519 0 R
+/Parent 519 0 R
+/Next 527 0 R
 >> endobj
 519 0 obj <<
 /Title 520 0 R
 /A 517 0 R
-/Parent 515 0 R
-/Next 523 0 R
+/Parent 335 0 R
+/Prev 503 0 R
+/Next 531 0 R
+/First 523 0 R
+/Last 527 0 R
+/Count -2
 >> endobj
 515 0 obj <<
 /Title 516 0 R
 /A 513 0 R
-/Parent 339 0 R
-/Prev 499 0 R
-/Next 527 0 R
-/First 519 0 R
-/Last 523 0 R
-/Count -2
+/Parent 503 0 R
+/Prev 511 0 R
 >> endobj
 511 0 obj <<
 /Title 512 0 R
 /A 509 0 R
-/Parent 499 0 R
+/Parent 503 0 R
 /Prev 507 0 R
+/Next 515 0 R
 >> endobj
 507 0 obj <<
 /Title 508 0 R
 /A 505 0 R
-/Parent 499 0 R
-/Prev 503 0 R
+/Parent 503 0 R
 /Next 511 0 R
 >> endobj
 503 0 obj <<
 /Title 504 0 R
 /A 501 0 R
-/Parent 499 0 R
-/Next 507 0 R
+/Parent 335 0 R
+/Prev 499 0 R
+/Next 519 0 R
+/First 507 0 R
+/Last 515 0 R
+/Count -3
 >> endobj
 499 0 obj <<
 /Title 500 0 R
 /A 497 0 R
-/Parent 339 0 R
+/Parent 335 0 R
 /Prev 407 0 R
-/Next 515 0 R
-/First 503 0 R
-/Last 511 0 R
-/Count -3
+/Next 503 0 R
 >> endobj
 495 0 obj <<
 /Title 496 0 R
 /A 493 0 R
 /Parent 439 0 R
-/Prev 491 0 R
+/Prev 447 0 R
 >> endobj
 491 0 obj <<
 /Title 492 0 R
 /A 489 0 R
-/Parent 439 0 R
-/Prev 443 0 R
-/Next 495 0 R
+/Parent 447 0 R
+/Prev 487 0 R
 >> endobj
 487 0 obj <<
 /Title 488 0 R
 /A 485 0 R
-/Parent 443 0 R
+/Parent 447 0 R
 /Prev 483 0 R
+/Next 491 0 R
 >> endobj
 483 0 obj <<
 /Title 484 0 R
 /A 481 0 R
-/Parent 443 0 R
+/Parent 447 0 R
 /Prev 479 0 R
 /Next 487 0 R
 >> endobj
 479 0 obj <<
 /Title 480 0 R
 /A 477 0 R
-/Parent 443 0 R
+/Parent 447 0 R
 /Prev 475 0 R
 /Next 483 0 R
 >> endobj
 475 0 obj <<
 /Title 476 0 R
 /A 473 0 R
-/Parent 443 0 R
+/Parent 447 0 R
 /Prev 471 0 R
 /Next 479 0 R
 >> endobj
 471 0 obj <<
 /Title 472 0 R
 /A 469 0 R
-/Parent 443 0 R
+/Parent 447 0 R
 /Prev 467 0 R
 /Next 475 0 R
 >> endobj
 467 0 obj <<
 /Title 468 0 R
 /A 465 0 R
-/Parent 443 0 R
+/Parent 447 0 R
 /Prev 463 0 R
 /Next 471 0 R
 >> endobj
 463 0 obj <<
 /Title 464 0 R
 /A 461 0 R
-/Parent 443 0 R
+/Parent 447 0 R
 /Prev 459 0 R
 /Next 467 0 R
 >> endobj
 459 0 obj <<
 /Title 460 0 R
 /A 457 0 R
-/Parent 443 0 R
+/Parent 447 0 R
 /Prev 455 0 R
 /Next 463 0 R
 >> endobj
 455 0 obj <<
 /Title 456 0 R
 /A 453 0 R
-/Parent 443 0 R
+/Parent 447 0 R
 /Prev 451 0 R
 /Next 459 0 R
 >> endobj
 451 0 obj <<
 /Title 452 0 R
 /A 449 0 R
-/Parent 443 0 R
-/Prev 447 0 R
+/Parent 447 0 R
 /Next 455 0 R
 >> endobj
 447 0 obj <<
 /Title 448 0 R
 /A 445 0 R
-/Parent 443 0 R
-/Next 451 0 R
+/Parent 439 0 R
+/Prev 443 0 R
+/Next 495 0 R
+/First 451 0 R
+/Last 491 0 R
+/Count -11
 >> endobj
 443 0 obj <<
 /Title 444 0 R
 /A 441 0 R
 /Parent 439 0 R
-/Next 491 0 R
-/First 447 0 R
-/Last 487 0 R
-/Count -11
+/Next 447 0 R
 >> endobj
 439 0 obj <<
 /Title 440 0 R
@@ -22429,7 +21458,7 @@ endobj
 407 0 obj <<
 /Title 408 0 R
 /A 405 0 R
-/Parent 339 0 R
+/Parent 335 0 R
 /Prev 403 0 R
 /Next 499 0 R
 /First 411 0 R
@@ -22439,132 +21468,134 @@ endobj
 403 0 obj <<
 /Title 404 0 R
 /A 401 0 R
-/Parent 339 0 R
+/Parent 335 0 R
 /Prev 399 0 R
 /Next 407 0 R
 >> endobj
 399 0 obj <<
 /Title 400 0 R
 /A 397 0 R
-/Parent 339 0 R
+/Parent 335 0 R
 /Prev 395 0 R
 /Next 403 0 R
 >> endobj
 395 0 obj <<
 /Title 396 0 R
 /A 393 0 R
-/Parent 339 0 R
-/Prev 391 0 R
+/Parent 335 0 R
+/Prev 387 0 R
 /Next 399 0 R
 >> endobj
 391 0 obj <<
 /Title 392 0 R
 /A 389 0 R
-/Parent 339 0 R
-/Prev 387 0 R
-/Next 395 0 R
+/Parent 387 0 R
 >> endobj
 387 0 obj <<
 /Title 388 0 R
 /A 385 0 R
-/Parent 339 0 R
-/Prev 347 0 R
-/Next 391 0 R
+/Parent 335 0 R
+/Prev 383 0 R
+/Next 395 0 R
+/First 391 0 R
+/Last 391 0 R
+/Count -1
 >> endobj
 383 0 obj <<
 /Title 384 0 R
 /A 381 0 R
-/Parent 355 0 R
-/Prev 379 0 R
+/Parent 335 0 R
+/Prev 343 0 R
+/Next 387 0 R
 >> endobj
 379 0 obj <<
 /Title 380 0 R
 /A 377 0 R
-/Parent 355 0 R
+/Parent 351 0 R
 /Prev 375 0 R
-/Next 383 0 R
 >> endobj
 375 0 obj <<
 /Title 376 0 R
 /A 373 0 R
-/Parent 355 0 R
-/Prev 363 0 R
+/Parent 351 0 R
+/Prev 371 0 R
 /Next 379 0 R
 >> endobj
 371 0 obj <<
 /Title 372 0 R
 /A 369 0 R
-/Parent 363 0 R
-/Prev 367 0 R
+/Parent 351 0 R
+/Prev 359 0 R
+/Next 375 0 R
 >> endobj
 367 0 obj <<
 /Title 368 0 R
 /A 365 0 R
-/Parent 363 0 R
-/Next 371 0 R
+/Parent 359 0 R
+/Prev 363 0 R
 >> endobj
 363 0 obj <<
 /Title 364 0 R
 /A 361 0 R
-/Parent 355 0 R
-/Prev 359 0 R
-/Next 375 0 R
-/First 367 0 R
-/Last 371 0 R
-/Count -2
+/Parent 359 0 R
+/Next 367 0 R
 >> endobj
 359 0 obj <<
 /Title 360 0 R
 /A 357 0 R
-/Parent 355 0 R
-/Next 363 0 R
+/Parent 351 0 R
+/Prev 355 0 R
+/Next 371 0 R
+/First 363 0 R
+/Last 367 0 R
+/Count -2
 >> endobj
 355 0 obj <<
 /Title 356 0 R
 /A 353 0 R
-/Parent 347 0 R
-/Prev 351 0 R
-/First 359 0 R
-/Last 383 0 R
-/Count -5
+/Parent 351 0 R
+/Next 359 0 R
 >> endobj
 351 0 obj <<
 /Title 352 0 R
 /A 349 0 R
-/Parent 347 0 R
-/Next 355 0 R
+/Parent 343 0 R
+/Prev 347 0 R
+/First 355 0 R
+/Last 379 0 R
+/Count -5
 >> endobj
 347 0 obj <<
 /Title 348 0 R
 /A 345 0 R
-/Parent 339 0 R
-/Prev 343 0 R
-/Next 387 0 R
-/First 351 0 R
-/Last 355 0 R
-/Count -2
+/Parent 343 0 R
+/Next 351 0 R
 >> endobj
 343 0 obj <<
 /Title 344 0 R
 /A 341 0 R
-/Parent 339 0 R
-/Next 347 0 R
+/Parent 335 0 R
+/Prev 339 0 R
+/Next 383 0 R
+/First 347 0 R
+/Last 351 0 R
+/Count -2
 >> endobj
 339 0 obj <<
 /Title 340 0 R
 /A 337 0 R
-/Parent 5503 0 R
-/Prev 43 0 R
-/Next 599 0 R
-/First 343 0 R
-/Last 567 0 R
-/Count -14
+/Parent 335 0 R
+/Next 343 0 R
 >> endobj
 335 0 obj <<
 /Title 336 0 R
 /A 333 0 R
-/Parent 283 0 R
-/Prev 327 0 R
+/Parent 5195 0 R
+/Prev 43 0 R
+/Next 607 0 R
+/First 339 0 R
+/Last 575 0 R
+/Count -16
 >> endobj
 331 0 obj <<
 /Title 332 0 R
@@ -22575,8 +21606,7 @@ endobj
 /Title 328 0 R
 /A 325 0 R
 /Parent 283 0 R
-/Prev 315 0 R
-/Next 335 0 R
+/Prev 319 0 R
 /First 331 0 R
 /Last 331 0 R
 /Count -1
@@ -22584,24 +21614,24 @@ endobj
 323 0 obj <<
 /Title 324 0 R
 /A 321 0 R
-/Parent 315 0 R
-/Prev 319 0 R
+/Parent 319 0 R
 >> endobj
 319 0 obj <<
 /Title 320 0 R
 /A 317 0 R
-/Parent 315 0 R
-/Next 323 0 R
+/Parent 283 0 R
+/Prev 315 0 R
+/Next 327 0 R
+/First 323 0 R
+/Last 323 0 R
+/Count -1
 >> endobj
 315 0 obj <<
 /Title 316 0 R
 /A 313 0 R
 /Parent 283 0 R
 /Prev 311 0 R
-/Next 327 0 R
-/First 319 0 R
-/Last 323 0 R
-/Count -2
+/Next 319 0 R
 >> endobj
 311 0 obj <<
 /Title 312 0 R
@@ -22659,7 +21689,7 @@ endobj
 /Parent 43 0 R
 /Prev 239 0 R
 /First 287 0 R
-/Last 335 0 R
+/Last 327 0 R
 /Count -6
 >> endobj
 279 0 obj <<
@@ -23090,9 +22120,9 @@ endobj
 43 0 obj <<
 /Title 44 0 R
 /A 41 0 R
-/Parent 5503 0 R
+/Parent 5195 0 R
 /Prev 19 0 R
-/Next 339 0 R
+/Next 335 0 R
 /First 47 0 R
 /Last 283 0 R
 /Count -6
@@ -23133,7 +22163,7 @@ endobj
 19 0 obj <<
 /Title 20 0 R
 /A 17 0 R
-/Parent 5503 0 R
+/Parent 5195 0 R
 /Prev 15 0 R
 /Next 43 0 R
 /First 23 0 R
@@ -23143,5570 +22173,5262 @@ endobj
 15 0 obj <<
 /Title 16 0 R
 /A 13 0 R
-/Parent 5503 0 R
+/Parent 5195 0 R
 /Prev 11 0 R
 /Next 19 0 R
 >> endobj
 11 0 obj <<
 /Title 12 0 R
 /A 9 0 R
-/Parent 5503 0 R
+/Parent 5195 0 R
 /Prev 7 0 R
 /Next 15 0 R
 >> endobj
 7 0 obj <<
 /Title 8 0 R
 /A 5 0 R
-/Parent 5503 0 R
+/Parent 5195 0 R
 /Prev 3 0 R
 /Next 11 0 R
 >> endobj
 3 0 obj <<
 /Title 4 0 R
 /A 1 0 R
-/Parent 5503 0 R
+/Parent 5195 0 R
 /Next 7 0 R
 >> endobj
-5504 0 obj <<
-/Names [(1.0) 2 0 R (10.0) 834 0 R (10.43.1) 838 0 R (10.44.1) 842 0 R (10.44.78.2) 846 0 R (10.44.79.2) 850 0 R (10.44.80.2) 854 0 R (10.44.81.2) 858 0 R (10.44.82.2) 862 0 R (10.44.83.2) 866 0 R (10.45.1) 870 0 R (10.46.1) 874 0 R (10.47.1) 878 0 R (10.47.84.2) 882 0 R (10.47.85.2) 886 0 R (10.47.86.2) 890 0 R (10.47.87.2) 894 0 R (10.47.88.2) 898 0 R (1001) 2803 0 R (1002) 2804 0 R (1003) 2805 0 R (1004) 2806 0 R (1006) 2807 0 R (1007) 2808 0 R (1008) 2809 0 R (1009) 2810 0 R (101) 2014 0 R (1010) 2811 0 R (1011) 2812 0 R (1012) 2813 0 R (1013) 2814 0 R (1014) 2815 0 R (1015) 2816 0 R (1016) 2817 0 R (1017) 2818 0 R (1018) 2819 0 R (1019) 2820 0 R (102) 2015 0 R (1020) 1467 0 R (1022) 2821 0 R (1023) 2822 0 R (1024) 2823 0 R (1025) 2824 0 R (1026) 2825 0 R (1027) 2826 0 R (1028) 2827 0 R (1029) 2828 0 R (103) 2016 0 R (1030) 2829 0 R (1031) 2834 0 R (1032) 2835 0 R (1033) 2836 0 R (1034) 2837 0 R (1035) 2838 0 R (1038) 2839 0 R (1039) 1469 0 R (104) 2017 0 R (1041) 2840 0 R (1042) 2841 0 R (1043) 2842 0 R (1044) 2843 0 R (1045) 2844 0 R (1046) 2845 0 R (1047) 2846 0 R (1048) 2847 0 R (1049) 2848 0 R (105) 2018 0 R (1050) 2849 0 R (1051) 2850 0 R (1052) 1470 0 R (1054) 2851 0 R (1055) 2852 0 R (1056) 2853 0 R (1057) 2858 0 R (1058) 2859 0 R (1059) 2860 0 R (106) 2019 0 R (1060) 2861 0 R (1061) 2862 0 R (1062) 2863 0 R (1063) 2864 0 R (1064) 2865 0 R (1065) 2866 0 R (1066) 2867 0 R (1067) 2868 0 R (1068) 2869 0 R (1069) 2870 0 R (107) 2020 0 R (1070) 2871 0 R (1071) 2872 0 R (1072) 2873 0 R (1073) 2874 0 R (1074) 2875 0 R (1075) 2876 0 R (1076) 2877 0 R (1077) 2878 0 R (1078) 2879 0 R (1079) 2880 0 R (108) 2021 0 R (1080) 2881 0 R (1081) 2882 0 R (1082) 2887 0 R (1083) 2888 0 R (1084) 2889 0 R (1085) 1471 0 R (1087) 2890 0 R (1088) 1472 0 R (109) 2022 0 R (1090) 2891 0 R (1091) 2892 0 R (1092) 2893 0 R (1093) 2894 0 R (1094) 2895 0 R (1095) 2896 0 R (1096) 2897 0 R (1097) 1473 0 R (1099) 2898 0 R (11.0) 902 0 R (110) 2023 0 R (1101) 2900 0 R (1102) 2901 0 R (1103) 2902 0 R (1104) 2908 0 R (1105) 2909 0 R (1106) 2910 0 R (1107) 2911 0 R (1108) 2912 0 R (1109) 2913 0 R (111) 2024 0 R (1110) 2914 0 R (1111) 2915 0 R (1116) 2920 0 R (1117) 2921 0 R (1119) 2922 0 R (112) 2025 0 R (1121) 2923 0 R (1122) 2924 0 R (1123) 2925 0 R (1125) 2926 0 R (1126) 2927 0 R (1127) 2928 0 R (1128) 2929 0 R (1129) 2930 0 R (113) 2026 0 R (1130) 2931 0 R (1131) 2932 0 R (1133) 2933 0 R (1134) 2934 0 R (1135) 2935 0 R (1137) 2936 0 R (1138) 2937 0 R (1139) 2938 0 R (114) 2027 0 R (1140) 2939 0 R (1142) 2940 0 R (1143) 2941 0 R (1144) 2942 0 R (1145) 2943 0 R (1147) 2944 0 R (1148) 2945 0 R (1149) 2946 0 R (1150) 2947 0 R (1151) 2948 0 R (1152) 2949 0 R (1154) 2954 0 R (1156) 2955 0 R (1157) 2956 0 R (1158) 2957 0 R (1159) 2958 0 R (1160) 2959 0 R (1161) 2960 0 R (1163) 2961 0 R (1164) 2962 0 R (1165) 2963 0 R (1166) 2964 0 R (1168) 2965 0 R (1169) 2966 0 R (117) 2031 0 R (1170) 2967 0 R (1172) 2968 0 R (1173) 2969 0 R (1174) 2970 0 R (1176) 2971 0 R (1177) 2972 0 R (1178) 2973 0 R (1180) 2974 0 R (1181) 2975 0 R (1182) 2976 0 R (1184) 2981 0 R (1185) 2982 0 R (1186) 2983 0 R (1187) 2984 0 R (1188) 2985 0 R (1189) 2986 0 R (119) 2032 0 R (1191) 2987 0 R (1192) 2988 0 R (1193) 2989 0 R (1194) 2990 0 R (1196) 2991 0 R (1197) 2992 0 R (1198) 2993 0 R (12.0) 906 0 R (12.48.1) 910 0 R (12.49.1) 914 0 R (12.50.1) 918 0 R (12.51.1) 922 0 R (12.52.1) 926 0 R (12.53.1) 930 0 R (12.54.1) 934 0 R (12.55.1) 938 0 R (12.56.1) 942 0 R (120) 2033 0 R (1200) 2994 0 R (1201) 2995 0 R (1202) 2996 0 R (1207) 2997 0 R (1208) 2998 0 R (1209) 2999 0 R (121) 2034 0 R (1214) 3004 0 R (1215) 3005 0 R (1216) 3006 0 R (1217) 3007 0 R (1218) 3008 0 R (1219) 3009 0 R (1224) 3011 0 R (1225) 3012 0 R (1226) 3013 0 R (1227) 3014 0 R (1231) 3017 0 R (1232) 3018 0 R (1233) 3019 0 R (1234) 3020 0 R (1235) 3021 0 R (1236) 3022 0 R (1237) 3023 0 R (1238) 3024 0 R (1239) 3025 0 R (1240) 3026 0 R (1241) 3027 0 R (1244) 3028 0 R (1245) 3029 0 R (1246) 3030 0 R (1247) 3035 0 R (1248) 3036 0 R (1249) 3037 0 R (1250) 3038 0 R (1251) 3039 0 R (1252) 3040 0 R (1253) 3041 0 R (1254) 3042 0 R (1255) 3043 0 R (1256) 3044 0 R (1257) 3045 0 R (1258) 3046 0 R (1259) 3047 0 R (1260) 3048 0 R (1261) 3049 0 R (1262) 3050 0 R (1263) 3051 0 R (1264) 3052 0 R (1265) 3053 0 R (1266) 3054 0 R (1267) 3055 0 R (1268) 3056 0 R (1269) 3057 0 R (1270) 3058 0 R (1271) 3059 0 R (1272) 3060 0 R (1273) 3061 0 R (1274) 3062 0 R (1275) 3063 0 R (1276) 3064 0 R (1277) 3065 0 R (1278) 3066 0 R (1279) 3067 0 R (1280) 3068 0 R (1281) 3069 0 R (1282) 3070 0 R (1283) 3071 0 R (1284) 3072 0 R (1285) 3073 0 R (1286) 3074 0 R (1287) 3075 0 R (1288) 3076 0 R (1289) 3077 0 R (1290) 3078 0 R (1291) 3079 0 R (1292) 3080 0 R (1293) 3081 0 R (1294) 3082 0 R (1295) 3083 0 R (1296) 3084 0 R (1299) 3090 0 R (13.0) 946 0 R (13.57.1) 950 0 R (13.58.1) 954 0 R (1300) 3091 0 R (1304) 3093 0 R (1305) 3094 0 R (1306) 3095 0 R (1307) 3096 0 R (1308) 3097 0 R (1309) 3098 0 R (1310) 3099 0 R (1311) 3100 0 R (1312) 3101 0 R (1315) 3102 0 R (1316) 3103 0 R (1317) 3104 0 R (1318) 3105 0 R (1319) 3106 0 R (1320) 3107 0 R (1323) 3112 0 R (1325) 3114 0 R (1326) 3115 0 R (1327) 3116 0 R (1328) 3117 0 R (1329) 3118 0 R (1330) 3119 0 R (1331) 3120 0 R (1332) 3121 0 R (1333) 3122 0 R (1334) 3123 0 R (1337) 3124 0 R (1338) 3125 0 R (1339) 3126 0 R (1340) 3127 0 R (1341) 3128 0 R (1342) 3129 0 R (1343) 3130 0 R (1344) 3131 0 R (1345) 3132 0 R (1346) 3133 0 R (1347) 3134 0 R (1350) 3135 0 R (1351) 3136 0 R (1352) 3137 0 R (1353) 3143 0 R (1354) 3144 0 R (1355) 3145 0 R (1356) 3146 0 R (1357) 3147 0 R (1358) 3148 0 R (1361) 3149 0 R (1362) 3150 0 R (1363) 3151 0 R (1364) 3152 0 R (1365) 3153 0 R (1366) 3154 0 R (1367) 3155 0 R (1368) 3156 0 R (1369) 3157 0 R (1370) 3158 0 R (1371) 3159 0 R (1372) 3160 0 R (1373) 3161 0 R (1376) 3162 0 R (1377) 3163 0 R (1378) 3164 0 R (1379) 3165 0 R (1382) 3166 0 R (1383) 3167 0 R (1384) 3168 0 R (1385) 3169 0 R (1386) 3170 0 R (1387) 3171 0 R (1388) 3172 0 R (1389) 3173 0 R (1390) 3174 0 R (1391) 3175 0 R (1392) 3176 0 R (1393) 3177 0 R (1394) 3178 0 R (1395) 3179 0 R (1396) 3184 0 R (1397) 3185 0 R (1398) 3186 0 R (1399) 3187 0 R (14.0) 958 0 R (14.59.1) 962 0 R (14.60.1) 966 0 R (14.61.1) 970 0 R (1400) 3188 0 R (1401) 3189 0 R (1402) 3190 0 R (1403) 3191 0 R (1404) 3192 0 R (1405) 3193 0 R (1406) 3194 0 R (1407) 3195 0 R (1408) 3196 0 R (1413) 3197 0 R (1414) 3198 0 R (1416) 3199 0 R (1417) 3200 0 R (1418) 3201 0 R (1419) 3202 0 R (1421) 3203 0 R (1422) 3204 0 R (1423) 3205 0 R (1424) 3206 0 R (1425) 3207 0 R (1427) 3208 0 R (1428) 3209 0 R (1429) 3210 0 R (1430) 3211 0 R (1431) 3212 0 R (1432) 3213 0 R (1433) 3214 0 R (1436) 3215 0 R (1437) 3216 0 R (1438) 3217 0 R (1439) 3218 0 R (1440) 3219 0 R (1441) 3220 0 R (1442) 3221 0 R (1443) 3222 0 R (1444) 3223 0 R (1445) 3224 0 R (1446) 3225 0 R (1449) 3231 0 R (1452) 3232 0 R (1453) 3233 0 R (1454) 3234 0 R (1455) 3235 0 R (1456) 3236 0 R (1457) 3237 0 R (1458) 3238 0 R (1459) 3239 0 R (1460) 3240 0 R (1461) 3241 0 R (1462) 3242 0 R (1463) 3243 0 R (1464) 3244 0 R (1465) 3245 0 R (1466) 3246 0 R (1467) 3247 0 R (1468) 3248 0 R (1469) 3249 0 R (1470) 3250 0 R (1473) 3251 0 R (1474) 3252 0 R (1475) 3253 0 R (1476) 3254 0 R (1477) 3255 0 R (1480) 3256 0 R (1481) 3257 0 R (1482) 3258 0 R (1483) 3259 0 R (1484) 3260 0 R (1487) 3261 0 R (1488) 3262 0 R (1491) 3268 0 R (1494) 3269 0 R (1495) 3270 0 R (1496) 3271 0 R (1499) 3273 0 R (15.0) 974 0 R (15.62.1) 978 0 R (15.63.1) 982 0 R (15.64.1) 986 0 R (15.65.1) 990 0 R (15.66.1) 994 0 R (15.67.1) 998 0 R (15.68.1) 1002 0 R (15.69.1) 1006 0 R (15.70.1) 1010 0 R (15.71.1) 1014 0 R (15.72.1) 1018 0 R (15.73.1) 1022 0 R (1500) 3274 0 R (1501) 3275 0 R (1502) 3276 0 R (1503) 3277 0 R (1504) 3278 0 R (1505) 3279 0 R (1506) 3280 0 R (1507) 3281 0 R (1508) 3282 0 R (1509) 3283 0 R (1510) 3284 0 R (1511) 3285 0 R (1512) 3286 0 R (1513) 3287 0 R (1514) 3288 0 R (1515) 3289 0 R (1516) 3290 0 R (1517) 3291 0 R (1518) 3292 0 R (1519) 3293 0 R (1520) 3294 0 R (1521) 3295 0 R (1522) 3296 0 R (1523) 3297 0 R (1524) 3298 0 R (1525) 3299 0 R (1526) 3300 0 R (1527) 3301 0 R (1528) 3302 0 R (1529) 3303 0 R (1532) 3305 0 R (1533) 3306 0 R (1534) 3307 0 R (1537) 3315 0 R (1538) 3316 0 R (1541) 3318 0 R (1542) 3319 0 R (1543) 3320 0 R (1544) 3321 0 R (1545) 3322 0 R (1546) 3323 0 R (1549) 3325 0 R (1550) 3326 0 R (1553) 3328 0 R (1554) 3329 0 R (1555) 3330 0 R (1556) 3331 0 R (1559) 3333 0 R (1562) 3335 0 R (1563) 3336 0 R (1564) 3337 0 R (1565) 3338 0 R (1568) 3340 0 R (1569) 3341 0 R (1572) 3346 0 R (1573) 3347 0 R (1574) 3314 0 R (1576) 3348 0 R (1577) 3349 0 R (1578) 3350 0 R (1579) 3351 0 R (1582) 3352 0 R (1583) 3353 0 R (1584) 3354 0 R (1587) 3355 0 R (1588) 3356 0 R (1591) 3357 0 R (1592) 3358 0 R (1593) 3359 0 R (1594) 3360 0 R (1595) 3361 0 R (1596) 3362 0 R (1597) 3363 0 R (1598) 3364 0 R (1599) 3365 0 R (16.0) 1026 0 R (1600) 3366 0 R (1601) 3367 0 R (1602) 3368 0 R (1603) 3369 0 R (1604) 3370 0 R (1605) 3371 0 R (1607) 3373 0 R (1608) 3374 0 R (1609) 3375 0 R (1610) 3376 0 R (1611) 3381 0 R (1612) 3382 0 R (1614) 3384 0 R (1615) 3385 0 R (1616) 3386 0 R (1617) 3387 0 R (1618) 3388 0 R (1619) 3389 0 R (1622) 3390 0 R (1626) 3392 0 R (1629) 3393 0 R (1630) 3394 0 R (1633) 3395 0 R (1634) 3396 0 R (1635) 3397 0 R (1636) 3398 0 R (1639) 3399 0 R (1640) 3400 0 R (1641) 3401 0 R (1642) 3402 0 R (1643) 3403 0 R (1644) 3404 0 R (1645) 3409 0 R (1648) 3410 0 R (1649) 3411 0 R (1650) 3412 0 R (1651) 3413 0 R (1652) 3414 0 R (1653) 3415 0 R (1654) 3416 0 R (1655) 3417 0 R (1656) 3418 0 R (1657) 3419 0 R (1658) 3420 0 R (1659) 3421 0 R (1660) 3422 0 R (1661) 3423 0 R (1662) 3424 0 R (1663) 3425 0 R (1666) 3426 0 R (1667) 3427 0 R (1668) 3428 0 R (1669) 3429 0 R (1670) 3430 0 R (1671) 3431 0 R (1674) 3436 0 R (1675) 3437 0 R (1676) 3438 0 R (1677) 3439 0 R (1678) 3440 0 R (1679) 3441 0 R (1680) 3442 0 R (1681) 3443 0 R (1682) 3444 0 R (1683) 3445 0 R (1684) 3446 0 R (1685) 1611 0 R (1687) 3447 0 R (1688) 3448 0 R (1689) 3449 0 R (1690) 3450 0 R (1691) 3451 0 R (1692) 3452 0 R (1693) 3453 0 R (1694) 3454 0 R (1695) 3455 0 R (1696) 3456 0 R (1697) 3457 0 R (1698) 3458 0 R (1699) 3459 0 R (17.0) 1030 0 R (17.73.89.2) 1034 0 R (1700) 3460 0 R (1701) 3461 0 R (1702) 3462 0 R (1703) 3463 0 R (1704) 3464 0 R (1705) 3465 0 R (1706) 3466 0 R (1707) 3467 0 R (1708) 3468 0 R (1709) 3469 0 R (1710) 3470 0 R (1711) 3476 0 R (1712) 1612 0 R (1714) 3477 0 R (1715) 3478 0 R (1716) 3479 0 R (1717) 3480 0 R (1718) 3481 0 R (1719) 3482 0 R (1720) 3483 0 R (1721) 3484 0 R (1722) 1613 0 R (1724) 3485 0 R (1725) 3486 0 R (1726) 3487 0 R (1727) 3488 0 R (1728) 3489 0 R (1729) 3490 0 R (1730) 3491 0 R (1731) 3492 0 R (1732) 3493 0 R (1733) 3494 0 R (1734) 3495 0 R (1735) 3496 0 R (1736) 3497 0 R (1737) 3498 0 R (1738) 3499 0 R (1739) 3500 0 R (1740) 1614 0 R (1742) 1615 0 R (1744) 3506 0 R (1745) 3475 0 R (1746) 1616 0 R (1748) 3507 0 R (1749) 3508 0 R (1750) 1617 0 R (1752) 3509 0 R (1753) 3510 0 R (1754) 3511 0 R (1755) 3512 0 R (1756) 3513 0 R (1757) 3514 0 R (1758) 3515 0 R (1759) 3516 0 R (1760) 3517 0 R (1761) 3518 0 R (1762) 3519 0 R (1763) 3520 0 R (1766) 3525 0 R (1767) 3526 0 R (1768) 3527 0 R (1769) 3528 0 R (1770) 3529 0 R (1771) 3530 0 R (1774) 3531 0 R (1775) 3532 0 R (1776) 3533 0 R (1777) 3534 0 R (1778) 3535 0 R (1779) 3536 0 R (1780) 3537 0 R (1783) 3543 0 R (1784) 3544 0 R (1786) 3546 0 R (1787) 3547 0 R (1788) 3548 0 R (1789) 3549 0 R (1792) 3550 0 R (1793) 3551 0 R (1794) 3552 0 R (1795) 3553 0 R (1797) 3555 0 R (1798) 3556 0 R (18.0) 1038 0 R (18.73.90.2) 1042 0 R (18.73.90.57.3) 1046 0 R (1800) 3558 0 R (1801) 3559 0 R (1803) 3561 0 R (1805) 3563 0 R (1806) 3564 0 R (1807) 3565 0 R (1808) 3566 0 R (1809) 3567 0 R (1812) 3568 0 R (1813) 3569 0 R (1814) 3570 0 R (1815) 3542 0 R (1816) 3576 0 R (1817) 3577 0 R (1818) 3578 0 R (1819) 3579 0 R (182) 2039 0 R (1820) 3580 0 R (1821) 3581 0 R (1822) 3582 0 R (1823) 3583 0 R (1824) 3584 0 R (1825) 3585 0 R (1828) 3586 0 R (1829) 3587 0 R (183) 2040 0 R (1830) 3588 0 R (1831) 3589 0 R (1832) 3590 0 R (1833) 3591 0 R (1834) 3592 0 R (1835) 3593 0 R (1836) 3594 0 R (1837) 3595 0 R (1838) 3596 0 R (1839) 3597 0 R (1840) 3598 0 R (1841) 3599 0 R (1842) 3600 0 R (1843) 3601 0 R (1844) 3602 0 R (1845) 3607 0 R (1846) 3608 0 R (1847) 3575 0 R (1848) 3609 0 R (1851) 3610 0 R (1852) 3611 0 R (1853) 3612 0 R (1854) 3613 0 R (1855) 3614 0 R (1856) 3615 0 R (1857) 3616 0 R (1858) 3617 0 R (1859) 3618 0 R (1860) 3619 0 R (1861) 3620 0 R (1862) 3621 0 R (1863) 3622 0 R (1864) 3623 0 R (1868) 3625 0 R (1869) 3626 0 R (1870) 3627 0 R (1871) 3628 0 R (1872) 3629 0 R (1873) 3634 0 R (1874) 3635 0 R (1875) 3636 0 R (1876) 3637 0 R (1877) 3638 0 R (188) 2045 0 R (1880) 3644 0 R (1881) 3645 0 R (1882) 3646 0 R (1887) 3647 0 R (189) 2046 0 R (1890) 3648 0 R (1892) 3650 0 R (1893) 3651 0 R (1894) 3652 0 R (1895) 3653 0 R (1897) 3655 0 R (1898) 3656 0 R (1899) 3657 0 R (19.0) 1050 0 R (19.73.91.2) 1054 0 R (19.73.92.2) 1058 0 R (19.73.93.2) 1062 0 R (190) 2047 0 R (1900) 3658 0 R (1901) 3659 0 R (1902) 3660 0 R (1903) 3661 0 R (1904) 3662 0 R (1905) 3663 0 R (1906) 3664 0 R (1907) 3665 0 R (191) 2050 0 R (1911) 3666 0 R (1912) 3667 0 R (1917) 3674 0 R (1923) 3676 0 R (1924) 3677 0 R (1925) 3678 0 R (1926) 3679 0 R (193) 2053 0 R (1930) 3680 0 R (1931) 3681 0 R (1932) 3682 0 R (1933) 3683 0 R (1934) 3684 0 R (1938) 3685 0 R (1939) 3686 0 R (194) 2054 0 R (1941) 3687 0 R (1942) 3688 0 R (1943) 3689 0 R (1944) 3690 0 R (1945) 3691 0 R (1946) 3692 0 R (195) 2055 0 R (1951) 3694 0 R (1955) 3696 0 R (1956) 3697 0 R (1957) 3698 0 R (196) 2056 0 R (1962) 3703 0 R (1963) 3704 0 R (1964) 3705 0 R (1965) 3706 0 R (1969) 3709 0 R (197) 2057 0 R (1970) 3710 0 R (1971) 3711 0 R (1972) 3712 0 R (1973) 3713 0 R (1974) 3714 0 R (1976) 3715 0 R (1977) 3716 0 R (1978) 3717 0 R (1979) 3718 0 R (198) 2058 0 R (1980) 3719 0 R (1981) 3720 0 R (1982) 3721 0 R (1983) 3722 0 R (1984) 3723 0 R (1985) 3724 0 R (1986) 3725 0 R (1987) 3726 0 R (1989) 3727 0 R (199) 2059 0 R (1990) 3728 0 R (1991) 3729 0 R (1992) 3730 0 R (1993) 3731 0 R (1994) 3732 0 R (1995) 3733 0 R (1996) 3734 0 R (1997) 3735 0 R (1998) 3736 0 R (1999) 3737 0 R (2.0) 6 0 R (20.0) 1066 0 R (20.73.94.2) 1070 0 R (20.73.95.2) 1074 0 R (20.73.96.2) 1078 0 R (20.73.97.2) 1082 0 R (200) 2060 0 R (2000) 3738 0 R (2001) 3739 0 R (2003) 3740 0 R (2004) 3741 0 R (2005) 3742 0 R (2006) 3743 0 R (2007) 3744 0 R (2008) 3745 0 R (2009) 3746 0 R (201) 2061 0 R (2010) 3747 0 R (2011) 3748 0 R (2013) 3749 0 R (2014) 3750 0 R (2015) 3751 0 R (2016) 3752 0 R (2017) 3753 0 R (2018) 3754 0 R (2019) 3755 0 R (2020) 3756 0 R (2021) 3757 0 R (2022) 3758 0 R (2023) 3759 0 R (2024) 3760 0 R (2025) 3761 0 R (2026) 3762 0 R (2027) 3763 0 R (2028) 3764 0 R (2029) 3765 0 R (2030) 3766 0 R (2031) 3767 0 R (2032) 3768 0 R (2033) 3769 0 R (2034) 3770 0 R (2035) 3771 0 R (2036) 3772 0 R (2037) 3773 0 R (2038) 3774 0 R (2039) 3780 0 R (204) 2063 0 R (2040) 3781 0 R (2041) 3782 0 R (2042) 3783 0 R (2043) 3784 0 R (2049) 3786 0 R (2050) 3787 0 R (2051) 3788 0 R (2052) 3789 0 R (2053) 3790 0 R (2054) 3791 0 R (2059) 3796 0 R (2060) 3797 0 R (2063) 3798 0 R (2064) 3799 0 R (2065) 3800 0 R (2066) 3801 0 R (2067) 3802 0 R (2068) 3803 0 R (2069) 3804 0 R (207) 2065 0 R (2070) 3805 0 R (2071) 3806 0 R (2072) 3807 0 R (2073) 3808 0 R (2074) 3809 0 R (2075) 3810 0 R (2076) 3811 0 R (2077) 3812 0 R (2078) 3813 0 R (2079) 3814 0 R (2080) 3815 0 R (2081) 3816 0 R (2082) 3817 0 R (2083) 3818 0 R (2084) 3819 0 R (2085) 3820 0 R (2086) 3825 0 R (2089) 3826 0 R (2090) 3827 0 R (2091) 3828 0 R (2092) 3829 0 R (2093) 3830 0 R (2094) 3831 0 R (2095) 3832 0 R (21.0) 1086 0 R (21.73.98.2) 1090 0 R (21.73.99.2) 1094 0 R (210) 2067 0 R (2116) 3834 0 R (2117) 3835 0 R (2118) 3836 0 R (2119) 3837 0 R (2120) 3838 0 R (2121) 3839 0 R (2122) 3840 0 R (2123) 3841 0 R (2124) 3842 0 R (2125) 3843 0 R (2126) 3844 0 R (2127) 3845 0 R (2128) 3846 0 R (2129) 3847 0 R (213) 2069 0 R (2130) 3848 0 R (2131) 3849 0 R (2132) 3850 0 R (2133) 3851 0 R (2134) 3852 0 R (2135) 3853 0 R (2136) 3854 0 R (2137) 3855 0 R (2138) 3856 0 R (2139) 3857 0 R (2140) 3858 0 R (2141) 3859 0 R (2142) 3860 0 R (2143) 3861 0 R (2144) 3862 0 R (2145) 3863 0 R (2146) 3864 0 R (2147) 3865 0 R (2148) 3866 0 R (2149) 3867 0 R (2150) 3868 0 R (2151) 3869 0 R (2152) 3876 0 R (2153) 3877 0 R (2154) 3878 0 R (2155) 3879 0 R (2156) 3880 0 R (2157) 3881 0 R (2158) 3882 0 R (2159) 3883 0 R (216) 2071 0 R (2160) 3884 0 R (2161) 3885 0 R (2162) 3886 0 R (2183) 3888 0 R (2184) 3889 0 R (2185) 3890 0 R (2186) 3891 0 R (2187) 3892 0 R (2188) 3893 0 R (2189) 3894 0 R (219) 2073 0 R (2190) 3895 0 R (2191) 3896 0 R (2192) 3897 0 R (2193) 3898 0 R (2194) 3899 0 R (2197) 3900 0 R (2199) 3902 0 R (22.0) 1098 0 R (22.73.100.2) 1102 0 R (2200) 3903 0 R (2203) 3908 0 R (2208) 3909 0 R (2209) 3910 0 R (2210) 3911 0 R (2211) 3912 0 R (2215) 3918 0 R (2216) 3919 0 R (2217) 3920 0 R (2218) 3921 0 R (2219) 3922 0 R (2220) 3923 0 R (2221) 3924 0 R (2222) 3925 0 R (2223) 3926 0 R (2224) 3927 0 R (2225) 3928 0 R (2226) 3929 0 R (2227) 3930 0 R (2228) 3931 0 R (2229) 3932 0 R (223) 2074 0 R (2230) 3933 0 R (2231) 3934 0 R (2234) 3935 0 R (2237) 3936 0 R (2238) 3937 0 R (2239) 3938 0 R (224) 2075 0 R (2240) 3939 0 R (2241) 3940 0 R (2242) 3941 0 R (2243) 3942 0 R (2244) 3943 0 R (2245) 3944 0 R (2246) 3945 0 R (2247) 3946 0 R (2248) 3947 0 R (2249) 3948 0 R (225) 2076 0 R (2252) 3953 0 R (2253) 3954 0 R (2254) 3955 0 R (2255) 3956 0 R (2256) 3957 0 R (2257) 3958 0 R (226) 2077 0 R (2260) 3959 0 R (2261) 3960 0 R (2262) 3961 0 R (2263) 3962 0 R (2264) 3963 0 R (2267) 3964 0 R (2268) 3965 0 R (2269) 3966 0 R (229) 2081 0 R (2290) 3968 0 R (2293) 3973 0 R (2294) 3974 0 R (2296) 3976 0 R (2297) 3977 0 R (2298) 3978 0 R (2299) 3979 0 R (23.0) 1106 0 R (23.73.101.2) 1110 0 R (2304) 3980 0 R (2305) 3981 0 R (2306) 3982 0 R (2307) 3983 0 R (2308) 3984 0 R (2309) 3985 0 R (2310) 3986 0 R (2311) 3987 0 R (2312) 3988 0 R (2313) 3989 0 R (2314) 3990 0 R (2315) 3991 0 R (2316) 3992 0 R (2317) 3993 0 R (2318) 3994 0 R (2319) 3995 0 R (232) 2082 0 R (2320) 3996 0 R (2321) 3997 0 R (2322) 3998 0 R (2323) 4003 0 R (2324) 4004 0 R (2325) 4005 0 R (2326) 4006 0 R (2327) 4007 0 R (2328) 4008 0 R (2329) 4009 0 R (233) 2083 0 R (2330) 4010 0 R (2331) 4011 0 R (2332) 4012 0 R (2333) 4013 0 R (2336) 4014 0 R (2337) 4015 0 R (2338) 4016 0 R (234) 2084 0 R (2341) 4017 0 R (2342) 4018 0 R (2343) 4019 0 R (2344) 4020 0 R (2345) 4026 0 R (2346) 4027 0 R (2347) 4028 0 R (2348) 4029 0 R (2349) 4030 0 R (235) 2085 0 R (2350) 4031 0 R (2353) 4032 0 R (2354) 4033 0 R (2355) 4034 0 R (236) 2086 0 R (2365) 4036 0 R (2368) 4037 0 R (237) 2087 0 R (2371) 4038 0 R (2374) 4043 0 R (2377) 4044 0 R (238) 2088 0 R (2380) 4045 0 R (2381) 4046 0 R (2384) 4047 0 R (2387) 4048 0 R (2388) 1763 0 R (239) 2089 0 R (2390) 4049 0 R (2391) 4050 0 R (2392) 4051 0 R (24) 1948 0 R (24.0) 1114 0 R (24.73.102.2) 1118 0 R (24.73.103.2) 1122 0 R (240) 2090 0 R (2401) 4057 0 R (2404) 4058 0 R (2405) 4059 0 R (2408) 4060 0 R (2409) 4061 0 R (2410) 4062 0 R (2413) 4063 0 R (2414) 4064 0 R (2415) 4065 0 R (2416) 4066 0 R (2417) 4067 0 R (2418) 4068 0 R (2419) 4069 0 R (2422) 4070 0 R (2425) 4075 0 R (2426) 4076 0 R (2427) 4077 0 R (243) 2091 0 R (2430) 4078 0 R (2431) 4079 0 R (2432) 4080 0 R (2433) 4081 0 R (2434) 4082 0 R (2435) 4083 0 R (2436) 4084 0 R (2437) 4085 0 R (2438) 4086 0 R (2439) 4087 0 R (244) 2092 0 R (2440) 4088 0 R (2444) 4090 0 R (2445) 4091 0 R (2448) 4092 0 R (2449) 4093 0 R (245) 2093 0 R (2450) 4094 0 R (2451) 4095 0 R (2452) 4096 0 R (2453) 4097 0 R (2454) 4098 0 R (2455) 4099 0 R (2456) 4100 0 R (2457) 4101 0 R (2458) 4102 0 R (2459) 4103 0 R (246) 2094 0 R (2460) 4104 0 R (2461) 4105 0 R (2462) 4106 0 R (2463) 4111 0 R (2464) 4112 0 R (2465) 4113 0 R (2466) 4114 0 R (2467) 4115 0 R (2468) 4116 0 R (2469) 4117 0 R (247) 2095 0 R (2470) 4118 0 R (2471) 4119 0 R (2472) 4120 0 R (2473) 4121 0 R (2474) 4122 0 R (2475) 4123 0 R (2476) 4124 0 R (2477) 4125 0 R (2478) 4126 0 R (2479) 4127 0 R (2480) 4128 0 R (2481) 4129 0 R (2482) 4130 0 R (2483) 4131 0 R (2484) 4132 0 R (2485) 4133 0 R (2486) 4134 0 R (2487) 4135 0 R (2488) 4136 0 R (2489) 4137 0 R (2490) 4138 0 R (2491) 4139 0 R (2492) 4140 0 R (2493) 4141 0 R (2494) 4142 0 R (2497) 4143 0 R (25) 1949 0 R (25.0) 1126 0 R (25.73.104.2) 1130 0 R (25.73.105.2) 1134 0 R (25.73.106.2) 1138 0 R (250) 2096 0 R (2500) 4148 0 R (2503) 4149 0 R (2504) 4150 0 R (2505) 4151 0 R (2506) 4152 0 R (2507) 4153 0 R (251) 2097 0 R (2510) 4154 0 R (2511) 4155 0 R (2512) 4156 0 R (2513) 4157 0 R (2514) 4158 0 R (2515) 4159 0 R (2516) 1775 0 R (2518) 4165 0 R (2519) 4166 0 R (2520) 4167 0 R (2521) 4168 0 R (2522) 4169 0 R (2523) 1776 0 R (2525) 4170 0 R (2526) 4171 0 R (2529) 4172 0 R (253) 2099 0 R (2530) 4173 0 R (2531) 4174 0 R (2532) 4175 0 R (2533) 4176 0 R (2534) 4177 0 R (2535) 4182 0 R (2536) 4183 0 R (2539) 4184 0 R (254) 2100 0 R (2540) 4185 0 R (2541) 4186 0 R (2542) 4187 0 R (2543) 4188 0 R (2544) 4189 0 R (2546) 4191 0 R (2547) 4192 0 R (255) 2101 0 R (2551) 4194 0 R (2552) 4195 0 R (2553) 4196 0 R (2556) 4201 0 R (2557) 4202 0 R (2558) 4203 0 R (2559) 4204 0 R (2560) 4205 0 R (2561) 4206 0 R (2562) 4207 0 R (2563) 4208 0 R (2566) 4209 0 R (2567) 4210 0 R (2568) 4211 0 R (2570) 4213 0 R (2571) 4214 0 R (2572) 4219 0 R (2573) 4220 0 R (2574) 4221 0 R (2575) 4222 0 R (2576) 1782 0 R (2578) 4223 0 R (2579) 4224 0 R (258) 2102 0 R (2580) 4225 0 R (2585) 4230 0 R (2586) 4231 0 R (2587) 4232 0 R (2588) 4233 0 R (2589) 4234 0 R (259) 2103 0 R (2590) 4235 0 R (2591) 4236 0 R (2592) 4237 0 R (2593) 4238 0 R (2594) 4239 0 R (2595) 4240 0 R (2598) 4241 0 R (2599) 4242 0 R (26) 1950 0 R (26.0) 1142 0 R (26.73.107.2) 1146 0 R (260) 2104 0 R (2603) 4244 0 R (2604) 4245 0 R (2605) 4246 0 R (2606) 4247 0 R (2607) 4248 0 R (2608) 4249 0 R (2609) 4250 0 R (261) 2111 0 R (2610) 4251 0 R (2611) 4252 0 R (2612) 4253 0 R (2615) 4259 0 R (2616) 4260 0 R (2617) 4261 0 R (2618) 4262 0 R (2619) 4263 0 R (262) 2112 0 R (2620) 4264 0 R (2621) 4265 0 R (2622) 4266 0 R (2623) 4267 0 R (2624) 4268 0 R (2625) 4269 0 R (2626) 4270 0 R (2627) 4271 0 R (2628) 4272 0 R (2629) 4273 0 R (263) 2113 0 R (2630) 4274 0 R (2631) 4275 0 R (2632) 4276 0 R (2633) 4277 0 R (2634) 4278 0 R (2635) 4279 0 R (2636) 4280 0 R (2637) 4281 0 R (2638) 4282 0 R (264) 2114 0 R (2641) 4283 0 R (2642) 4284 0 R (2643) 4285 0 R (2644) 4258 0 R (2646) 4292 0 R (2647) 4293 0 R (2648) 4294 0 R (2649) 4295 0 R (265) 2115 0 R (2650) 4296 0 R (2653) 4297 0 R (2654) 4298 0 R (2655) 4299 0 R (2656) 4300 0 R (2657) 4301 0 R (2658) 4302 0 R (2659) 4303 0 R (266) 2116 0 R (2660) 4304 0 R (2661) 4305 0 R (2662) 4306 0 R (2663) 4307 0 R (2664) 4308 0 R (2665) 4309 0 R (2666) 4310 0 R (2667) 4311 0 R (2668) 4312 0 R (2669) 4313 0 R (267) 2117 0 R (2672) 4319 0 R (2673) 4291 0 R (2675) 4320 0 R (2676) 4321 0 R (2677) 4322 0 R (2678) 4323 0 R (2679) 4324 0 R (2680) 4325 0 R (2681) 4326 0 R (2682) 4327 0 R (2683) 4328 0 R (2684) 4329 0 R (2685) 4330 0 R (2686) 4331 0 R (2687) 4332 0 R (2688) 4333 0 R (2689) 4334 0 R (2690) 4335 0 R (2691) 4336 0 R (2692) 4337 0 R (2693) 4338 0 R (2694) 4339 0 R (2695) 4340 0 R (2696) 4341 0 R (2697) 4342 0 R (2698) 4343 0 R (2699) 4344 0 R (27.0) 1150 0 R (27.73.108.2) 1154 0 R (27.73.109.2) 1158 0 R (270) 2118 0 R (2700) 4345 0 R (2701) 4346 0 R (2702) 4347 0 R (2703) 4348 0 R (2704) 4349 0 R (2705) 4350 0 R (2706) 4351 0 R (2707) 4318 0 R (2709) 4356 0 R (271) 2119 0 R (2710) 4357 0 R (2711) 4358 0 R (2712) 4359 0 R (2713) 4360 0 R (2714) 4361 0 R (2717) 4362 0 R (2718) 4363 0 R (2721) 4364 0 R (2722) 4365 0 R (2723) 4366 0 R (2724) 4367 0 R (2725) 4368 0 R (2726) 4369 0 R (2727) 4374 0 R (2728) 4375 0 R (2729) 4376 0 R (273) 2121 0 R (2730) 4377 0 R (2731) 4378 0 R (2732) 4379 0 R (2733) 4380 0 R (2734) 4381 0 R (2735) 4382 0 R (2736) 4383 0 R (2737) 4384 0 R (2738) 4385 0 R (2739) 4386 0 R (274) 2122 0 R (2740) 4387 0 R (2741) 4388 0 R (2742) 4389 0 R (2743) 4390 0 R (2744) 4391 0 R (2745) 4392 0 R (275) 2123 0 R (2750) 4394 0 R (2751) 4395 0 R (2752) 4396 0 R (2753) 4397 0 R (2754) 4398 0 R (2755) 4399 0 R (2756) 4400 0 R (2757) 4401 0 R (2758) 4402 0 R (2759) 4403 0 R (276) 2124 0 R (2760) 4404 0 R (2761) 4409 0 R (2762) 4410 0 R (2763) 4411 0 R (2764) 4412 0 R (2765) 4413 0 R (2766) 4414 0 R (2767) 4415 0 R (2768) 4416 0 R (2769) 4417 0 R (277) 2125 0 R (2770) 4418 0 R (2771) 4419 0 R (2772) 4420 0 R (2773) 4421 0 R (2774) 4422 0 R (2775) 4423 0 R (2776) 4424 0 R (2777) 4425 0 R (2778) 4426 0 R (2779) 4427 0 R (278) 2126 0 R (2780) 4428 0 R (2781) 4429 0 R (2782) 4430 0 R (2783) 4431 0 R (2784) 4432 0 R (2785) 4433 0 R (2786) 4434 0 R (2787) 4435 0 R (2788) 4436 0 R (279) 2127 0 R (2791) 4441 0 R (2792) 4442 0 R (2793) 4443 0 R (2794) 4444 0 R (2795) 4445 0 R (2796) 4446 0 R (2797) 4447 0 R (2798) 4448 0 R (2799) 4449 0 R (28) 1952 0 R (28.0) 1162 0 R (28.73.110.2) 1166 0 R (28.73.111.2) 1170 0 R (280) 2128 0 R (2800) 4450 0 R (2801) 4451 0 R (2802) 4452 0 R (2803) 4453 0 R (2804) 4454 0 R (2805) 4455 0 R (2806) 4456 0 R (2807) 4462 0 R (2808) 4463 0 R (2809) 4464 0 R (2810) 4465 0 R (2815) 4466 0 R (2820) 4470 0 R (2821) 4471 0 R (2822) 4472 0 R (2823) 4473 0 R (2824) 4474 0 R (2825) 4475 0 R (2826) 4476 0 R (2827) 4477 0 R (283) 2131 0 R (2830) 4482 0 R (2831) 4483 0 R (2832) 4484 0 R (2833) 4485 0 R (2834) 4486 0 R (2837) 4487 0 R (2838) 4488 0 R (284) 2132 0 R (2841) 4489 0 R (2842) 4490 0 R (2843) 4491 0 R (2846) 4496 0 R (2847) 4497 0 R (2849) 4499 0 R (285) 2133 0 R (2853) 4501 0 R (2855) 4502 0 R (2859) 4504 0 R (286) 2134 0 R (2861) 4505 0 R (2865) 4507 0 R (2867) 4508 0 R (2868) 4509 0 R (287) 2135 0 R (2872) 4511 0 R (2874) 4512 0 R (2875) 4513 0 R (2876) 4514 0 R (288) 2136 0 R (2880) 4516 0 R (2882) 4517 0 R (2886) 4519 0 R (2888) 4520 0 R (2889) 4521 0 R (289) 2137 0 R (2893) 4523 0 R (2895) 4528 0 R (2896) 4529 0 R (2897) 4530 0 R (2898) 4531 0 R (2899) 4532 0 R (29.0) 1174 0 R (29.73.112.2) 1178 0 R (29.73.113.2) 1182 0 R (290) 2138 0 R (2900) 4533 0 R (2904) 4535 0 R (2906) 4536 0 R (2907) 4537 0 R (2908) 4538 0 R (2909) 4539 0 R (291) 2139 0 R (2910) 4540 0 R (2911) 4541 0 R (2915) 4543 0 R (2916) 4544 0 R (2917) 4545 0 R (2919) 4546 0 R (292) 2140 0 R (2920) 4547 0 R (2921) 4548 0 R (2922) 4549 0 R (2923) 4550 0 R (2924) 4551 0 R (2925) 4556 0 R (2926) 4557 0 R (2927) 4558 0 R (2928) 4559 0 R (2929) 4560 0 R (293) 2141 0 R (2930) 4561 0 R (2931) 4562 0 R (2932) 4563 0 R (2933) 4564 0 R (2934) 4565 0 R (2935) 4566 0 R (2936) 4567 0 R (294) 2110 0 R (2940) 4569 0 R (2945) 4571 0 R (2947) 4572 0 R (2949) 4574 0 R (295) 2145 0 R (2953) 4576 0 R (2958) 4578 0 R (296) 2146 0 R (2960) 4579 0 R (2964) 4585 0 R (2966) 4586 0 R (2968) 4588 0 R (297) 2147 0 R (2972) 4590 0 R (2977) 4592 0 R (2979) 4593 0 R (298) 2148 0 R (2980) 4594 0 R (2981) 4595 0 R (2985) 4597 0 R (2986) 4598 0 R (2988) 4599 0 R (2989) 4600 0 R (299) 2149 0 R (2990) 4601 0 R (2991) 4602 0 R (2992) 4603 0 R (2993) 4604 0 R (2994) 4605 0 R (2998) 4607 0 R (3.0) 10 0 R (30.0) 1186 0 R (30.73.114.2) 1190 0 R (300) 2150 0 R (3000) 4608 0 R (3001) 4614 0 R (3005) 4616 0 R (301) 2151 0 R (3010) 4618 0 R (3012) 4619 0 R (3013) 4620 0 R (3017) 4622 0 R (3018) 4623 0 R (302) 2152 0 R (3020) 4624 0 R (3024) 4626 0 R (3029) 4628 0 R (303) 2153 0 R (3034) 4630 0 R (3038) 4633 0 R (304) 2154 0 R (3042) 4639 0 R (3047) 4641 0 R (3049) 4642 0 R (3050) 4643 0 R (3054) 4645 0 R (3056) 4646 0 R (3057) 4647 0 R (3058) 4648 0 R (3059) 4649 0 R (306) 2156 0 R (3060) 4650 0 R (3061) 4651 0 R (3062) 4652 0 R (3063) 4653 0 R (3064) 4654 0 R (3065) 4655 0 R (3066) 4656 0 R (3067) 4657 0 R (3068) 4658 0 R (3069) 4659 0 R (307) 2157 0 R (3070) 4660 0 R (3071) 4661 0 R (3072) 4662 0 R (3073) 4663 0 R (3078) 4666 0 R (308) 2158 0 R (3080) 4667 0 R (3081) 4668 0 R (3082) 4669 0 R (3083) 4670 0 R (3084) 4675 0 R (3085) 4676 0 R (3089) 4678 0 R (309) 2159 0 R (3091) 4679 0 R (3092) 4680 0 R (3093) 4681 0 R (3095) 4683 0 R (3096) 4684 0 R (3097) 4685 0 R (3098) 4686 0 R (3099) 4687 0 R (31) 1953 0 R (310) 2160 0 R (3100) 4688 0 R (3104) 4690 0 R (3106) 4691 0 R (3107) 4692 0 R (3108) 4693 0 R (311) 2161 0 R (3110) 4695 0 R (3114) 4697 0 R (3116) 4698 0 R (3121) 4701 0 R (3124) 4703 0 R (3128) 4709 0 R (313) 2163 0 R (3130) 4710 0 R (3134) 4712 0 R (3136) 4713 0 R (3137) 4714 0 R (3138) 4715 0 R (3139) 4716 0 R (314) 2164 0 R (3140) 4717 0 R (3141) 4718 0 R (3142) 4719 0 R (3143) 4720 0 R (3144) 4721 0 R (3145) 4722 0 R (3146) 4723 0 R (3147) 4724 0 R (3148) 4725 0 R (3149) 4726 0 R (315) 2165 0 R (3150) 4727 0 R (3151) 4728 0 R (3152) 4729 0 R (3153) 4730 0 R (3154) 4731 0 R (3155) 4732 0 R (3156) 4733 0 R (3157) 4734 0 R (3158) 4735 0 R (3159) 4736 0 R (316) 2166 0 R (3163) 4738 0 R (3165) 4739 0 R (3166) 4740 0 R (3167) 4741 0 R (3168) 4742 0 R (317) 2167 0 R (3172) 4748 0 R (3174) 4749 0 R (3175) 4750 0 R (3179) 4752 0 R (318) 2168 0 R (3181) 4753 0 R (3182) 4754 0 R (3183) 4755 0 R (3184) 4756 0 R (3185) 4757 0 R (3186) 4758 0 R (3187) 4759 0 R (3188) 4760 0 R (319) 2169 0 R (3190) 4762 0 R (3191) 4763 0 R (3195) 4765 0 R (3197) 4766 0 R (3198) 4767 0 R (3199) 4768 0 R (32) 1954 0 R (3200) 4769 0 R (3201) 4770 0 R (3202) 4771 0 R (3203) 4772 0 R (3205) 4774 0 R (3209) 4776 0 R (321) 2171 0 R (3211) 4777 0 R (3212) 4778 0 R (3213) 4779 0 R (3217) 4781 0 R (3219) 4782 0 R (322) 2172 0 R (3220) 4783 0 R (3221) 4784 0 R (3222) 4785 0 R (3226) 4793 0 R (3228) 4794 0 R (3229) 4795 0 R (323) 2173 0 R (3230) 4796 0 R (3231) 4797 0 R (3232) 4798 0 R (3233) 4799 0 R (3234) 4800 0 R (3235) 4801 0 R (3236) 4802 0 R (3237) 4803 0 R (3238) 4804 0 R (3239) 4805 0 R (324) 2174 0 R (3240) 4806 0 R (3241) 4807 0 R (3242) 4808 0 R (3243) 4809 0 R (3244) 4810 0 R (3245) 4811 0 R (3246) 4812 0 R (3247) 4813 0 R (3248) 4814 0 R (3249) 4815 0 R (3253) 4817 0 R (3255) 4818 0 R (3256) 4819 0 R (3257) 4820 0 R (3259) 4826 0 R (326) 2176 0 R (3263) 4828 0 R (3266) 4830 0 R (3267) 4831 0 R (327) 2177 0 R (3271) 4833 0 R (3276) 4835 0 R (3277) 4836 0 R (3279) 4837 0 R (3280) 4838 0 R (3281) 4839 0 R (3282) 4840 0 R (3283) 4841 0 R (3287) 4843 0 R (3289) 4844 0 R (329) 2179 0 R (3290) 4845 0 R (3291) 4846 0 R (3292) 4847 0 R (3293) 4848 0 R (3294) 4849 0 R (3295) 4850 0 R (3296) 4851 0 R (3297) 4852 0 R (3298) 4853 0 R (3299) 4854 0 R (33) 1955 0 R (330) 2180 0 R (3300) 4855 0 R (3301) 4856 0 R (3302) 4857 0 R (3303) 4858 0 R (3305) 4860 0 R (3309) 4867 0 R (3311) 4868 0 R (3315) 4870 0 R (3317) 4871 0 R (3318) 4872 0 R (3319) 4873 0 R (332) 2182 0 R (3320) 4874 0 R (3321) 4875 0 R (3322) 4876 0 R (3326) 4878 0 R (3327) 4879 0 R (3329) 4880 0 R (333) 2183 0 R (3340) 4883 0 R (3341) 4884 0 R (3346) 4886 0 R (3348) 4887 0 R (335) 2185 0 R (3352) 4889 0 R (3353) 4890 0 R (3355) 4891 0 R (3356) 4892 0 R (3357) 4897 0 R (3358) 4866 0 R (3359) 4898 0 R (336) 2186 0 R (3361) 4900 0 R (3365) 4902 0 R (3367) 4903 0 R (3368) 4904 0 R (3369) 4905 0 R (337) 2187 0 R (3373) 4907 0 R (3375) 4908 0 R (3376) 4909 0 R (3377) 4910 0 R (3378) 4911 0 R (338) 2188 0 R (3382) 4917 0 R (3383) 4918 0 R (3384) 4919 0 R (3386) 4920 0 R (3387) 4921 0 R (3388) 4922 0 R (339) 2189 0 R (3392) 4924 0 R (3394) 4925 0 R (3395) 4926 0 R (3396) 4927 0 R (3397) 4928 0 R (3398) 4929 0 R (3399) 4930 0 R (340) 2190 0 R (3400) 4931 0 R (3401) 4932 0 R (3402) 4933 0 R (3403) 4934 0 R (3404) 4935 0 R (3405) 4936 0 R (3406) 4937 0 R (3407) 4938 0 R (3408) 4939 0 R (3409) 4940 0 R (3410) 4941 0 R (3413) 4946 0 R (3416) 4947 0 R (3417) 4948 0 R (3418) 4949 0 R (3419) 4950 0 R (342) 2192 0 R (3422) 4953 0 R (3423) 4954 0 R (3424) 4955 0 R (3425) 4956 0 R (3426) 4957 0 R (3429) 4958 0 R (343) 2193 0 R (3430) 4959 0 R (3431) 4960 0 R (3432) 4961 0 R (3433) 4962 0 R (3437) 4963 0 R (3438) 4964 0 R (3439) 4965 0 R (344) 2194 0 R (3440) 4966 0 R (3441) 4967 0 R (3442) 4968 0 R (3443) 4973 0 R (3446) 4974 0 R (3447) 4975 0 R (3448) 4976 0 R (3449) 4977 0 R (345) 2195 0 R (3450) 4978 0 R (3451) 4979 0 R (3452) 4980 0 R (3453) 4981 0 R (3456) 4982 0 R (3457) 4983 0 R (3458) 4984 0 R (3459) 4985 0 R (346) 2196 0 R (3460) 4986 0 R (3461) 4987 0 R (3462) 4988 0 R (3463) 4989 0 R (3464) 4990 0 R (3465) 4991 0 R (3468) 4992 0 R (3469) 4993 0 R (347) 2197 0 R (3470) 4999 0 R (3471) 5000 0 R (3472) 5001 0 R (3473) 5002 0 R (3476) 5003 0 R (3477) 5004 0 R (3478) 5005 0 R (3479) 5006 0 R (348) 2198 0 R (3480) 5007 0 R (3483) 5008 0 R (3484) 5009 0 R (3485) 5010 0 R (3486) 5011 0 R (3487) 5012 0 R (3488) 5013 0 R (3489) 5014 0 R (349) 2199 0 R (3492) 5015 0 R (3493) 5016 0 R (3494) 5021 0 R (3495) 5022 0 R (3496) 5023 0 R (3500) 5024 0 R (3501) 5025 0 R (3502) 5026 0 R (3503) 5027 0 R (3507) 5029 0 R (3508) 5030 0 R (3509) 5031 0 R (351) 2201 0 R (3510) 5032 0 R (3511) 5033 0 R (3514) 5038 0 R (3515) 5039 0 R (3518) 5040 0 R (3519) 5041 0 R (352) 2202 0 R (3520) 5042 0 R (3521) 5043 0 R (3522) 5044 0 R (3523) 5045 0 R (3524) 5046 0 R (3525) 5047 0 R (3526) 5048 0 R (3527) 5049 0 R (3528) 5050 0 R (3529) 5051 0 R (353) 2203 0 R (3530) 5052 0 R (3531) 5053 0 R (3532) 5054 0 R (3533) 5055 0 R (3534) 5056 0 R (3535) 5057 0 R (3536) 5058 0 R (3537) 5059 0 R (3538) 5060 0 R (3539) 5061 0 R (354) 2204 0 R (3540) 5062 0 R (3541) 5063 0 R (3542) 5064 0 R (3543) 5065 0 R (3544) 5066 0 R (3545) 5067 0 R (3546) 5068 0 R (3549) 5069 0 R (355) 2205 0 R (3550) 5070 0 R (3551) 5071 0 R (3552) 5072 0 R (3553) 5073 0 R (3554) 5074 0 R (3555) 5075 0 R (3556) 5076 0 R (3557) 5077 0 R (356) 2206 0 R (3562) 5082 0 R (3563) 5083 0 R (3564) 5084 0 R (3565) 5085 0 R (3566) 5086 0 R (3567) 5087 0 R (3568) 5088 0 R (3569) 5089 0 R (357) 2207 0 R (3570) 5090 0 R (3571) 5091 0 R (3572) 5092 0 R (3573) 5093 0 R (3574) 5094 0 R (3575) 5095 0 R (3576) 5096 0 R (3577) 5097 0 R (358) 2208 0 R (3580) 5098 0 R (3581) 5099 0 R (3582) 5100 0 R (3583) 5101 0 R (3584) 5102 0 R (3585) 5103 0 R (3586) 5110 0 R (3587) 5104 0 R (3589) 5111 0 R (359) 2209 0 R (3590) 5112 0 R (3591) 5113 0 R (3592) 5114 0 R (3593) 5115 0 R (3594) 5116 0 R (3595) 5117 0 R (3596) 5118 0 R (3597) 5119 0 R (3598) 5120 0 R (3599) 5121 0 R (36) 1956 0 R (360) 2210 0 R (3600) 5122 0 R (3601) 5123 0 R (3602) 5124 0 R (3603) 5125 0 R (3604) 5126 0 R (3605) 5127 0 R (3606) 5128 0 R (3607) 5129 0 R (3608) 5130 0 R (3609) 5131 0 R (361) 2211 0 R (3610) 5132 0 R (3611) 5133 0 R (3612) 5134 0 R (3613) 5135 0 R (3614) 5140 0 R (3615) 5109 0 R (3617) 5141 0 R (3618) 5142 0 R (3619) 5143 0 R (362) 2212 0 R (3620) 5144 0 R (3621) 5145 0 R (3622) 5146 0 R (3623) 5147 0 R (3624) 5148 0 R (3625) 5149 0 R (3626) 5150 0 R (3627) 5151 0 R (3628) 5152 0 R (3629) 5153 0 R (363) 2213 0 R (3630) 5154 0 R (3631) 5155 0 R (3632) 5156 0 R (3635) 5157 0 R (3636) 5158 0 R (3637) 5159 0 R (3638) 5160 0 R (3639) 5161 0 R (364) 2214 0 R (3640) 5162 0 R (3641) 5163 0 R (3642) 5164 0 R (3643) 5165 0 R (3644) 5171 0 R (3645) 5172 0 R (3646) 5173 0 R (3647) 5174 0 R (3648) 5175 0 R (3649) 5176 0 R (3650) 5177 0 R (3651) 5178 0 R (3652) 5179 0 R (3653) 5180 0 R (3654) 5181 0 R (3655) 5182 0 R (3656) 5183 0 R (3657) 5184 0 R (3658) 5185 0 R (3659) 5186 0 R (3660) 5187 0 R (3661) 5188 0 R (3662) 5189 0 R (3663) 5190 0 R (3666) 5195 0 R (3667) 5196 0 R (3668) 5197 0 R (367) 2218 0 R (3671) 5198 0 R (3672) 5199 0 R (3673) 5200 0 R (3676) 5201 0 R (3677) 5202 0 R (3678) 5203 0 R (3679) 5204 0 R (368) 2219 0 R (3680) 5205 0 R (3681) 5206 0 R (3682) 5211 0 R (3683) 5212 0 R (3686) 5213 0 R (3687) 5214 0 R (3690) 5215 0 R (3691) 5216 0 R (3692) 5217 0 R (3693) 5223 0 R (3696) 5224 0 R (3697) 5225 0 R (3698) 5226 0 R (3699) 5227 0 R (37) 1957 0 R (3700) 5228 0 R (3701) 5229 0 R (3702) 5230 0 R (3703) 5231 0 R (3704) 5232 0 R (3705) 5233 0 R (3706) 5234 0 R (3707) 5235 0 R (3708) 5236 0 R (3709) 5237 0 R (371) 2220 0 R (3710) 5238 0 R (3711) 5239 0 R (3712) 5240 0 R (3713) 5241 0 R (3714) 5242 0 R (3715) 5243 0 R (3716) 5244 0 R (3717) 5245 0 R (3718) 5246 0 R (3719) 5247 0 R (3720) 5248 0 R (3721) 5249 0 R (3722) 5250 0 R (3723) 5251 0 R (3724) 5252 0 R (3725) 5253 0 R (3726) 5254 0 R (3727) 5222 0 R (3728) 5259 0 R (3729) 5260 0 R (3732) 5261 0 R (3733) 5262 0 R (3734) 5263 0 R (3737) 5264 0 R (3738) 5265 0 R (374) 2221 0 R (3741) 5266 0 R (3742) 5271 0 R (3745) 5272 0 R (3748) 5273 0 R (375) 2222 0 R (3751) 5274 0 R (3752) 5275 0 R (3753) 5276 0 R (3756) 5277 0 R (3757) 5278 0 R (3758) 5279 0 R (3759) 5285 0 R (376) 2223 0 R (3760) 5286 0 R (3762) 5291 0 R (3766) 5292 0 R (3767) 5293 0 R (3768) 5294 0 R (3769) 5295 0 R (377) 2224 0 R (3774) 5298 0 R (3775) 5299 0 R (3776) 5300 0 R (3777) 5301 0 R (3778) 5302 0 R (3779) 5303 0 R (378) 2225 0 R (3781) 5304 0 R (3782) 5305 0 R (3783) 5306 0 R (3784) 5307 0 R (3785) 5308 0 R (3787) 5309 0 R (3788) 5310 0 R (3789) 5311 0 R (379) 2226 0 R (3790) 5312 0 R (3791) 5313 0 R (3792) 5314 0 R (3793) 5315 0 R (3794) 5316 0 R (3795) 5317 0 R (3797) 5318 0 R (3798) 5319 0 R (3799) 5320 0 R (38) 1958 0 R (380) 2227 0 R (3800) 5321 0 R (3801) 5322 0 R (3802) 5323 0 R (3803) 5324 0 R (3804) 5325 0 R (3805) 5326 0 R (3806) 5327 0 R (3807) 5328 0 R (3809) 5329 0 R (381) 2228 0 R (3810) 5330 0 R (3811) 5331 0 R (3812) 5332 0 R (3813) 5333 0 R (3814) 5334 0 R (3819) 5341 0 R (382) 2229 0 R (3820) 5342 0 R (3821) 5343 0 R (3822) 5344 0 R (3823) 5345 0 R (3824) 5346 0 R (3826) 5347 0 R (3827) 5348 0 R (3828) 5349 0 R (3831) 5350 0 R (3832) 5351 0 R (3838) 5353 0 R (3839) 5354 0 R (3840) 5355 0 R (3841) 5356 0 R (3844) 5358 0 R (3845) 5359 0 R (3849) 5360 0 R (385) 2230 0 R (3850) 5361 0 R (3851) 5362 0 R (3852) 5363 0 R (3853) 5364 0 R (3856) 5365 0 R (3857) 5366 0 R (3858) 5367 0 R (3859) 5368 0 R (3860) 5374 0 R (3861) 5375 0 R (3862) 5376 0 R (3867) 5378 0 R (3868) 5379 0 R (3869) 5380 0 R (3870) 5381 0 R (3873) 5383 0 R (3874) 5384 0 R (3879) 5387 0 R (388) 2231 0 R (3880) 5388 0 R (3881) 5389 0 R (3882) 5390 0 R (3883) 5391 0 R (3888) 5394 0 R (3889) 5395 0 R (3895) 5400 0 R (3896) 5401 0 R (3897) 5402 0 R (3898) 5403 0 R (3899) 5404 0 R (39) 1959 0 R (3900) 5405 0 R (3901) 5406 0 R (3904) 5408 0 R (3905) 5409 0 R (3907) 5411 0 R (3908) 5412 0 R (391) 2236 0 R (3910) 5413 0 R (3911) 5414 0 R (3912) 5415 0 R (3913) 5416 0 R (3915) 5417 0 R (3916) 5418 0 R (3917) 5419 0 R (3918) 5420 0 R (3919) 5421 0 R (3921) 5422 0 R (3922) 5423 0 R (3923) 5424 0 R (3924) 5425 0 R (3931) 5428 0 R (3932) 5429 0 R (3933) 5430 0 R (3936) 5431 0 R (3937) 5432 0 R (3939) 5438 0 R (394) 2237 0 R (3940) 5439 0 R (3941) 5440 0 R (3942) 5441 0 R (3946) 5443 0 R (3947) 5444 0 R (3948) 5445 0 R (3949) 5446 0 R (395) 2238 0 R (3950) 5447 0 R (3951) 5448 0 R (3952) 5449 0 R (3953) 5450 0 R (3959) 5452 0 R (3960) 5453 0 R (3964) 5455 0 R (3965) 5456 0 R (3966) 5457 0 R (3971) 5459 0 R (3972) 5460 0 R (3973) 5461 0 R (3975) 5467 0 R (3976) 5468 0 R (3977) 5469 0 R (3978) 5470 0 R (3979) 5471 0 R (398) 2239 0 R (3980) 5472 0 R (3981) 5473 0 R (3982) 5474 0 R (3983) 5475 0 R (3984) 5476 0 R (3985) 5477 0 R (3986) 5478 0 R (3987) 5479 0 R (3988) 5480 0 R (3993) 5483 0 R (3994) 5484 0 R (3995) 5485 0 R (3999) 5487 0 R (4.0) 14 0 R (40) 1960 0 R (4000) 5488 0 R (4005) 5491 0 R (4006) 5492 0 R (4007) 5493 0 R (4008) 5496 0 R (4009) 5494 0 R (401) 2240 0 R (4010) 5495 0 R (404) 2241 0 R (405) 2242 0 R (406) 2243 0 R (407) 2244 0 R (408) 2245 0 R (41) 1961 0 R (410) 2247 0 R (411) 2248 0 R (412) 2249 0 R (413) 2250 0 R (416) 2255 0 R (417) 2256 0 R (418) 2257 0 R (419) 2258 0 R (42) 1962 0 R (420) 2259 0 R (421) 2260 0 R (422) 2261 0 R (423) 2262 0 R (424) 2263 0 R (425) 2264 0 R (428) 2265 0 R (429) 2266 0 R (43) 1963 0 R (433) 2268 0 R (434) 2269 0 R (435) 2270 0 R (436) 2271 0 R (437) 2272 0 R (438) 2273 0 R (439) 2274 0 R (44) 1964 0 R (440) 2275 0 R (441) 2276 0 R (442) 2277 0 R (443) 2278 0 R (444) 2279 0 R (445) 2280 0 R (446) 2281 0 R (447) 2282 0 R (448) 2283 0 R (449) 2284 0 R (45) 1965 0 R (450) 2285 0 R (453) 2291 0 R (458) 2294 0 R (459) 2295 0 R (46) 1966 0 R (462) 2296 0 R (463) 2297 0 R (467) 2300 0 R (468) 2301 0 R (469) 2302 0 R (47) 1967 0 R (470) 2303 0 R (471) 2304 0 R (472) 2305 0 R (473) 2306 0 R (474) 2307 0 R (476) 2308 0 R (477) 2309 0 R (478) 2310 0 R (479) 2311 0 R (48) 1968 0 R (480) 2318 0 R (481) 2319 0 R (484) 2320 0 R (485) 2321 0 R (486) 2322 0 R (487) 2325 0 R (489) 2327 0 R (49) 1969 0 R (490) 2328 0 R (491) 2329 0 R (492) 2330 0 R (493) 2331 0 R (494) 2332 0 R (495) 2333 0 R (496) 2334 0 R (497) 2335 0 R (498) 2336 0 R (499) 2337 0 R (5.0) 18 0 R (5.1.1) 22 0 R (5.2.1) 26 0 R (5.3.1) 30 0 R (5.4.1) 34 0 R (5.5.1) 38 0 R (50) 1970 0 R (500) 2338 0 R (501) 2339 0 R (503) 2340 0 R (504) 2341 0 R (505) 2342 0 R (506) 2343 0 R (507) 2344 0 R (508) 2345 0 R (509) 2346 0 R (51) 1971 0 R (510) 2347 0 R (511) 2348 0 R (512) 2349 0 R (513) 2350 0 R (514) 2351 0 R (517) 2352 0 R (519) 2353 0 R (52) 1972 0 R (520) 2354 0 R (521) 2355 0 R (522) 2356 0 R (524) 2362 0 R (525) 2317 0 R (527) 2363 0 R (528) 2364 0 R (529) 2365 0 R (53) 1973 0 R (530) 2366 0 R (531) 2367 0 R (532) 2368 0 R (533) 2369 0 R (535) 2370 0 R (536) 2371 0 R (537) 2372 0 R (538) 2373 0 R (539) 2374 0 R (54) 1977 0 R (540) 2375 0 R (541) 2376 0 R (542) 2377 0 R (543) 2378 0 R (544) 2379 0 R (545) 2380 0 R (546) 2381 0 R (547) 1339 0 R (549) 2382 0 R (55) 1978 0 R (550) 2383 0 R (551) 2384 0 R (552) 2385 0 R (553) 2386 0 R (554) 2387 0 R (557) 2388 0 R (558) 2389 0 R (56) 1979 0 R (560) 2391 0 R (563) 2396 0 R (569) 2400 0 R (57) 1980 0 R (570) 2401 0 R (571) 2402 0 R (573) 2403 0 R (574) 2404 0 R (575) 2405 0 R (577) 2406 0 R (578) 2407 0 R (579) 2408 0 R (58) 1981 0 R (580) 2409 0 R (581) 2410 0 R (582) 2411 0 R (583) 2412 0 R (584) 2413 0 R (585) 2414 0 R (586) 2415 0 R (588) 2416 0 R (589) 2417 0 R (59) 1982 0 R (590) 2418 0 R (591) 2419 0 R (592) 2420 0 R (593) 2421 0 R (594) 2422 0 R (596) 2423 0 R (597) 2424 0 R (598) 2425 0 R (599) 2426 0 R (6.0) 42 0 R (6.10.1) 238 0 R (6.10.21.17.3) 246 0 R (6.10.21.18.3) 250 0 R (6.10.21.19.3) 254 0 R (6.10.21.2) 242 0 R (6.10.21.20.3) 258 0 R (6.10.21.21.3) 262 0 R (6.10.22.2) 266 0 R (6.10.22.22.3) 270 0 R (6.10.22.23.3) 274 0 R (6.10.23.2) 278 0 R (6.11.1) 282 0 R (6.11.24.2) 286 0 R (6.11.25.2) 290 0 R (6.11.25.24.10.4) 302 0 R (6.11.25.24.11.4) 306 0 R (6.11.25.24.3) 294 0 R (6.11.25.24.9.4) 298 0 R (6.11.26.2) 310 0 R (6.11.27.2) 314 0 R (6.11.27.25.3) 318 0 R (6.11.27.26.3) 322 0 R (6.11.28.2) 326 0 R (6.11.28.27.3) 330 0 R (6.11.29.2) 334 0 R (6.6.1) 46 0 R (6.6.1.2) 50 0 R (6.6.2.1.3) 58 0 R (6.6.2.2) 54 0 R (6.6.2.2.3) 62 0 R (6.6.3.2) 66 0 R (6.6.4.2) 70 0 R (6.6.5.10.3) 106 0 R (6.6.5.11.3) 110 0 R (6.6.5.2) 74 0 R (6.6.5.3.3) 78 0 R (6.6.5.4.3) 82 0 R (6.6.5.5.3) 86 0 R (6.6.5.6.3) 90 0 R (6.6.5.7.3) 94 0 R (6.6.5.8.3) 98 0 R (6.6.5.9.3) 102 0 R (6.6.6.2) 114 0 R (6.6.7.2) 118 0 R (6.7.1) 122 0 R (6.7.10.2) 170 0 R (6.7.11.15.3) 178 0 R (6.7.11.15.7.4) 182 0 R (6.7.11.15.8.4) 186 0 R (6.7.11.16.3) 190 0 R (6.7.11.2) 174 0 R (6.7.12.2) 194 0 R (6.7.8.2) 126 0 R (6.7.9.12.3) 134 0 R (6.7.9.13.1.4) 142 0 R (6.7.9.13.2.4) 146 0 R (6.7.9.13.3) 138 0 R (6.7.9.13.3.4) 150 0 R (6.7.9.13.4.4) 154 0 R (6.7.9.14.3) 158 0 R (6.7.9.14.5.4) 162 0 R (6.7.9.14.6.4) 166 0 R (6.7.9.2) 130 0 R (6.8.1) 198 0 R (6.8.13.2) 202 0 R (6.8.14.2) 206 0 R (6.8.15.2) 210 0 R (6.8.16.2) 214 0 R (6.8.17.2) 218 0 R (6.8.18.2) 222 0 R (6.8.19.2) 226 0 R (6.8.20.2) 230 0 R (6.9.1) 234 0 R (603) 2428 0 R (604) 2429 0 R (605) 2430 0 R (607) 2431 0 R (608) 2432 0 R (609) 2433 0 R (611) 2438 0 R (612) 2439 0 R (613) 2440 0 R (614) 2441 0 R (615) 2442 0 R (616) 2443 0 R (617) 2444 0 R (618) 2445 0 R (619) 2446 0 R (62) 1983 0 R (621) 2447 0 R (622) 2448 0 R (623) 2449 0 R (624) 2450 0 R (625) 2451 0 R (626) 2452 0 R (627) 2453 0 R (628) 2454 0 R (629) 2455 0 R (63) 1984 0 R (630) 2456 0 R (631) 2457 0 R (632) 2458 0 R (633) 2459 0 R (634) 2460 0 R (635) 2461 0 R (636) 2462 0 R (637) 2463 0 R (638) 2464 0 R (639) 2465 0 R (640) 2466 0 R (641) 2467 0 R (642) 2468 0 R (643) 2469 0 R (647) 2470 0 R (648) 2471 0 R (649) 2472 0 R (65) 1985 0 R (650) 2477 0 R (651) 2478 0 R (652) 2479 0 R (653) 2480 0 R (654) 2481 0 R (655) 2482 0 R (656) 2483 0 R (657) 2484 0 R (658) 2485 0 R (659) 2486 0 R (66) 1986 0 R (660) 2487 0 R (661) 2488 0 R (662) 2489 0 R (663) 2490 0 R (664) 2491 0 R (665) 2492 0 R (666) 2493 0 R (667) 2494 0 R (668) 2495 0 R (669) 2496 0 R (67) 1987 0 R (670) 2497 0 R (671) 2498 0 R (672) 2499 0 R (673) 2500 0 R (677) 2502 0 R (678) 2503 0 R (68) 1988 0 R (680) 2505 0 R (681) 2506 0 R (682) 2507 0 R (683) 2508 0 R (685) 2510 0 R (686) 2511 0 R (687) 2512 0 R (688) 2513 0 R (689) 2518 0 R (690) 2519 0 R (691) 2520 0 R (692) 2521 0 R (696) 2523 0 R (697) 1345 0 R (699) 2524 0 R (7.0) 338 0 R (7.12.1) 342 0 R (7.13.1) 346 0 R (7.13.30.2) 350 0 R (7.13.31.2) 354 0 R (7.13.31.28.3) 358 0 R (7.13.31.29.12.4) 366 0 R (7.13.31.29.13.4) 370 0 R (7.13.31.29.3) 362 0 R (7.13.31.30.3) 374 0 R (7.13.31.31.3) 378 0 R (7.13.31.32.3) 382 0 R (7.14.1) 386 0 R (7.15.1) 390 0 R (7.16.1) 394 0 R (7.17.1) 398 0 R (7.18.1) 402 0 R (7.19.1) 406 0 R (7.19.32.2) 410 0 R (7.19.33.2) 414 0 R (7.19.33.33.3) 418 0 R (7.19.34.2) 422 0 R (7.19.35.2) 426 0 R (7.19.35.34.3) 430 0 R (7.19.35.35.3) 434 0 R (7.19.36.2) 438 0 R (7.19.36.36.14.4) 446 0 R (7.19.36.36.15.4) 450 0 R (7.19.36.36.16.4) 454 0 R (7.19.36.36.17.4) 458 0 R (7.19.36.36.18.4) 462 0 R (7.19.36.36.19.4) 466 0 R (7.19.36.36.20.4) 470 0 R (7.19.36.36.21.4) 474 0 R (7.19.36.36.22.4) 478 0 R (7.19.36.36.23.4) 482 0 R (7.19.36.36.24.4) 486 0 R (7.19.36.36.3) 442 0 R (7.19.36.37.3) 490 0 R (7.19.36.38.3) 494 0 R (7.20.1) 498 0 R (7.20.37.2) 502 0 R (7.20.38.2) 506 0 R (7.20.39.2) 510 0 R (7.21.1) 514 0 R (7.21.40.2) 518 0 R (7.21.41.2) 522 0 R (7.22.1) 526 0 R (7.23.1) 530 0 R (7.24.1) 534 0 R (7.24.42.2) 538 0 R (7.24.43.2) 542 0 R (7.24.44.2) 546 0 R (7.24.45.2) 550 0 R (7.24.45.39.3) 554 0 R (7.24.45.40.3) 558 0 R (7.24.45.41.3) 562 0 R (7.25.1) 566 0 R (7.25.46.2) 570 0 R (7.25.47.2) 574 0 R (7.25.48.2) 578 0 R (7.25.48.42.3) 582 0 R (7.25.48.43.3) 586 0 R (7.25.48.44.3) 590 0 R (7.25.49.2) 594 0 R (70) 1989 0 R (700) 2525 0 R (701) 2526 0 R (702) 2527 0 R (703) 2530 0 R (704) 2531 0 R (705) 2532 0 R (706) 2533 0 R (707) 2534 0 R (708) 2535 0 R (709) 2536 0 R (71) 1990 0 R (710) 2537 0 R (711) 2538 0 R (712) 2539 0 R (713) 2540 0 R (714) 2541 0 R (715) 2542 0 R (716) 1346 0 R (718) 2543 0 R (719) 2544 0 R (72) 1991 0 R (720) 2545 0 R (721) 2546 0 R (722) 2547 0 R (723) 2548 0 R (724) 2549 0 R (725) 2550 0 R (726) 2551 0 R (727) 2557 0 R (728) 2558 0 R (729) 2559 0 R (73) 1992 0 R (730) 2560 0 R (731) 2561 0 R (734) 2562 0 R (735) 2563 0 R (736) 2564 0 R (737) 2565 0 R (738) 2566 0 R (739) 2567 0 R (742) 2568 0 R (744) 2570 0 R (745) 2571 0 R (746) 2572 0 R (747) 2573 0 R (748) 2574 0 R (749) 2575 0 R (75) 1993 0 R (750) 2576 0 R (753) 2581 0 R (754) 2582 0 R (755) 2583 0 R (756) 2584 0 R (757) 2585 0 R (758) 2586 0 R (759) 2587 0 R (76) 1994 0 R (760) 2588 0 R (761) 2589 0 R (762) 2590 0 R (763) 2591 0 R (766) 2592 0 R (767) 2593 0 R (768) 2594 0 R (77) 1995 0 R (771) 2596 0 R (772) 2597 0 R (773) 2598 0 R (774) 2599 0 R (775) 2600 0 R (778) 2602 0 R (779) 2603 0 R (78) 1996 0 R (782) 2605 0 R (783) 2606 0 R (786) 2608 0 R (787) 2609 0 R (788) 2610 0 R (789) 2611 0 R (792) 2612 0 R (793) 2613 0 R (794) 2618 0 R (795) 2619 0 R (796) 2620 0 R (799) 2622 0 R (8.0) 598 0 R (8.26.1) 602 0 R (8.26.50.2) 606 0 R (8.26.51.2) 610 0 R (8.26.52.2) 614 0 R (8.27.1) 618 0 R (8.27.53.2) 622 0 R (8.27.54.2) 626 0 R (8.27.55.2) 630 0 R (8.28.1) 634 0 R (8.28.56.2) 638 0 R (8.29.1) 642 0 R (8.29.57.2) 646 0 R (80) 1997 0 R (800) 2623 0 R (801) 2624 0 R (804) 2626 0 R (805) 2627 0 R (806) 2628 0 R (807) 2629 0 R (808) 2630 0 R (81) 1998 0 R (811) 2632 0 R (812) 2633 0 R (813) 2634 0 R (814) 2635 0 R (815) 2636 0 R (816) 2637 0 R (817) 2638 0 R (818) 2639 0 R (819) 2640 0 R (82) 1999 0 R (820) 2641 0 R (823) 2643 0 R (824) 2644 0 R (825) 2645 0 R (826) 2646 0 R (829) 2648 0 R (83) 2000 0 R (830) 2649 0 R (831) 2650 0 R (832) 2651 0 R (835) 2658 0 R (836) 2659 0 R (837) 2660 0 R (838) 2661 0 R (841) 2663 0 R (842) 2664 0 R (843) 2665 0 R (844) 2666 0 R (847) 2667 0 R (848) 2668 0 R (849) 2669 0 R (85) 2001 0 R (850) 2670 0 R (851) 2671 0 R (852) 2672 0 R (853) 2673 0 R (854) 2674 0 R (855) 2675 0 R (856) 2676 0 R (857) 2677 0 R (858) 2678 0 R (859) 1451 0 R (86) 2002 0 R (861) 2679 0 R (862) 2680 0 R (863) 2681 0 R (864) 2682 0 R (865) 2683 0 R (866) 2684 0 R (867) 2685 0 R (868) 2686 0 R (869) 2687 0 R (87) 2003 0 R (870) 2688 0 R (871) 2689 0 R (872) 2690 0 R (873) 2691 0 R (874) 2696 0 R (875) 2697 0 R (878) 2698 0 R (879) 2699 0 R (88) 2004 0 R (880) 2700 0 R (883) 2701 0 R (886) 2702 0 R (887) 2703 0 R (888) 2704 0 R (891) 2705 0 R (894) 2708 0 R (895) 2709 0 R (896) 2710 0 R (897) 2711 0 R (898) 2712 0 R (899) 2713 0 R (9.0) 650 0 R (9.30.1) 654 0 R (9.31.1) 658 0 R (9.32.1) 662 0 R (9.33.1) 666 0 R (9.34.1) 670 0 R (9.34.58.2) 674 0 R (9.34.58.45.3) 678 0 R (9.34.58.46.3) 682 0 R (9.34.58.47.3) 686 0 R (9.34.59.2) 690 0 R (9.34.60.2) 694 0 R (9.34.61.2) 698 0 R (9.35.1) 702 0 R (9.35.62.2) 706 0 R (9.35.63.2) 710 0 R (9.36.1) 714 0 R (9.36.64.2) 718 0 R (9.36.64.48.3) 722 0 R (9.36.64.49.3) 726 0 R (9.36.64.50.3) 730 0 R (9.36.64.51.3) 734 0 R (9.36.64.52.3) 738 0 R (9.36.64.53.3) 742 0 R (9.36.64.54.3) 746 0 R (9.37.1) 750 0 R (9.37.65.2) 754 0 R (9.37.66.2) 758 0 R (9.37.67.2) 762 0 R (9.38.1) 766 0 R (9.39.1) 770 0 R (9.39.68.2) 774 0 R (9.39.69.2) 778 0 R (9.39.70.2) 782 0 R (9.39.71.2) 786 0 R (9.40.1) 790 0 R (9.40.72.2) 794 0 R (9.40.73.2) 798 0 R (9.40.73.55.3) 802 0 R (9.40.73.56.3) 806 0 R (9.41.1) 810 0 R (9.42.1) 814 0 R (9.42.74.2) 818 0 R (9.42.75.2) 822 0 R (9.42.76.2) 826 0 R (9.42.77.2) 830 0 R (90) 2005 0 R (900) 2714 0 R (901) 2715 0 R (902) 2722 0 R (903) 2723 0 R (906) 2724 0 R (909) 2725 0 R (91) 2006 0 R (912) 2728 0 R (913) 2729 0 R (914) 2730 0 R (915) 2731 0 R (918) 2732 0 R (92) 2007 0 R (922) 2733 0 R (925) 2734 0 R (926) 2735 0 R (927) 2736 0 R (93) 2008 0 R (931) 2743 0 R (932) 2721 0 R (934) 2744 0 R (935) 2745 0 R (936) 2746 0 R (938) 2748 0 R (939) 2749 0 R (940) 2750 0 R (941) 2751 0 R (942) 2752 0 R (943) 2753 0 R (944) 2754 0 R (945) 2755 0 R (946) 2756 0 R (947) 2757 0 R (948) 2758 0 R (949) 2759 0 R (95) 2009 0 R (953) 2762 0 R (954) 2763 0 R (956) 2764 0 R (958) 2765 0 R (96) 2010 0 R (961) 2766 0 R (962) 2767 0 R (963) 2768 0 R (964) 2769 0 R (965) 2770 0 R (966) 2771 0 R (967) 2772 0 R (968) 2773 0 R (969) 2774 0 R (97) 2011 0 R (970) 2775 0 R (971) 2776 0 R (972) 2777 0 R (974) 2778 0 R (975) 2779 0 R (976) 2780 0 R (977) 2781 0 R (98) 2012 0 R (981) 1464 0 R (983) 2787 0 R (985) 1465 0 R (987) 2789 0 R (988) 2790 0 R (989) 2791 0 R (99) 2013 0 R (990) 2792 0 R (991) 2793 0 R (992) 2794 0 R (993) 1466 0 R (995) 2795 0 R (997) 2796 0 R (998) 2797 0 R (999) 2798 0 R (Doc-Start) 1198 0 R (about) 1307 0 R (accountpreferences) 1768 0 R (add-custom-fields) 1602 0 R (administration) 1474 0 R (apache-addtype) 1450 0 R (attachments) 1753 0 R (bonsai) 1886 0 R (boolean) 1743 0 R (bug_page) 1642 0 R (bugreports) 1750 0 R (bzldap) 1351 0 R (bzradius) 1350 0 R (charts) 1774 0 R (classifications) 1484 0 R (cloningbugs) 1752 0 R (cmdline) 1903 0 R (cmdline-bugmail) 1904 0 R (commenting) 1764 0 R (components) 1486 0 R (configuration) 1333 0 R (conventions) 1312 0 R (copyright) 1308 0 R (createnewusers) 1480 0 R (credits) 1311 0 R (cust-change-permissions) 1884 0 R (cust-hooks) 1883 0 R (cust-skins) 1784 0 R (cust-templates) 1785 0 R (custom-fields) 1601 0 R (customization) 1783 0 R (cvs) 1887 0 R (database-engine) 1335 0 R (database-schema) 1336 0 R (defaultuser) 1477 0 R (delete-custom-fields) 1604 0 R (dependencytree) 1765 0 R (disclaimer) 1309 0 R (edit-custom-fields) 1603 0 R (edit-values) 1605 0 R (edit-values-delete) 1607 0 R (edit-values-list) 1606 0 R (emailpreferences) 1770 0 R (extraconfig) 1344 0 R (faq) 1891 0 R (faq-admin) 4632 0 R (faq-admin-cvsupdate) 4644 0 R (faq-admin-enable-unconfirmed) 4665 0 R (faq-admin-livebackup) 4640 0 R (faq-admin-makeadmin) 4689 0 R (faq-admin-midair) 4634 0 R (faq-admin-moving) 4677 0 R (faq-db) 4773 0 R (faq-db-corrupted) 4775 0 R (faq-db-manualedit) 4780 0 R (faq-db-permissions) 4786 0 R (faq-db-synchronize) 4816 0 R (faq-email) 4702 0 R (faq-email-in) 4743 0 R (faq-email-nomail) 4704 0 R (faq-email-nonreceived) 4764 0 R (faq-email-sendmailnow) 4751 0 R (faq-email-testing) 4711 0 R (faq-email-whine) 4737 0 R (faq-general) 4498 0 R (faq-general-bzmissing) 4522 0 R (faq-general-companies) 4510 0 R (faq-general-compare) 4518 0 R (faq-general-cookie) 4568 0 R (faq-general-db) 4534 0 R (faq-general-license) 4503 0 R (faq-general-maintainers) 4515 0 R (faq-general-perlpath) 4542 0 R (faq-general-selinux) 4570 0 R (faq-general-support) 4506 0 R (faq-general-tryout) 4500 0 R (faq-hacking) 4899 0 R (faq-hacking-bugzillabugs) 4906 0 R (faq-hacking-patches) 4923 0 R (faq-hacking-priority) 4912 0 R (faq-hacking-templatestyle) 4901 0 R (faq-nt) 4792 0 R (faq-nt-bundle) 4832 0 R (faq-nt-dbi) 4842 0 R (faq-nt-easiest) 4827 0 R (faq-nt-mappings) 4834 0 R (faq-phb) 4573 0 R (faq-phb-backup) 4617 0 R (faq-phb-client) 4575 0 R (faq-phb-cost) 4627 0 R (faq-phb-data) 4596 0 R (faq-phb-email) 4589 0 R (faq-phb-emailapp) 4591 0 R (faq-phb-installtime) 4625 0 R (faq-phb-l10n) 4606 0 R (faq-phb-maintenance) 4621 0 R (faq-phb-priorities) 4577 0 R (faq-phb-renameBugs) 4629 0 R (faq-phb-reporting) 4580 0 R (faq-phb-reports) 4615 0 R (faq-security) 4694 0 R (faq-security-knownproblems) 4700 0 R (faq-security-mysql) 4696 0 R (faq-use) 4859 0 R (faq-use-accept) 4877 0 R (faq-use-attachment) 4882 0 R (faq-use-changeaddress) 4861 0 R (faq-use-close) 4888 0 R (faq-use-keyword) 4885 0 R (faq-use-query) 4869 0 R (fillingbugs) 1751 0 R (flag-askto) 1493 0 R (flag-type-attachment) 1495 0 R (flag-type-bug) 1496 0 R (flag-types) 1494 0 R (flag-values) 1492 0 R (flags) 1777 0 R (flags-about) 1491 0 R (flags-admin) 1597 0 R (flags-create) 1598 0 R (flags-create-field-active) 3308 0 R (flags-create-field-category) 3272 0 R (flags-create-field-cclist) 3332 0 R (flags-create-field-description) 3230 0 R (flags-create-field-multiplicable) 3327 0 R (flags-create-field-name) 3263 0 R (flags-create-field-requestable) 3317 0 R (flags-create-field-sortkey) 3304 0 R (flags-create-field-specific) 3324 0 R (flags-create-grant-group) 3334 0 R (flags-create-request-group) 3339 0 R (flags-delete) 1599 0 R (flags-edit) 1600 0 R (flags-overview) 1489 0 R (flags-simpleexample) 1490 0 R (general-advice) 1893 0 R (generalpreferences) 1769 0 R (gfdl) 1909 0 R (gfdl-0) 1910 0 R (gfdl-1) 1911 0 R (gfdl-10) 1920 0 R (gfdl-2) 1912 0 R (gfdl-3) 1913 0 R (gfdl-4) 1914 0 R (gfdl-5) 1915 0 R (gfdl-6) 1916 0 R (gfdl-7) 1917 0 R (gfdl-8) 1918 0 R (gfdl-9) 1919 0 R (gfdl-howto) 1921 0 R (gloss-a) 5296 0 R (gloss-apache) 5297 0 R (gloss-b) 5336 0 R (gloss-bugzilla) 2041 0 R (gloss-c) 5352 0 R (gloss-cgi) 2106 0 R (gloss-component) 5357 0 R (gloss-contrib) 2652 0 R (gloss-cpan) 2782 0 R (gloss-d) 5377 0 R (gloss-daemon) 3668 0 R (gloss-dos) 5382 0 R (gloss-g) 5385 0 R (gloss-groups) 5386 0 R (gloss-htaccess) 3775 0 R (gloss-j) 5392 0 R (gloss-javascript) 5393 0 R (gloss-m) 5373 0 R (gloss-mta) 4787 0 R (gloss-mysql) 5407 0 R (gloss-p) 5427 0 R (gloss-ppm) 2716 0 R (gloss-product) 3138 0 R (gloss-q) 5442 0 R (gloss-r) 5451 0 R (gloss-rdbms) 5433 0 R (gloss-regexp) 5454 0 R (gloss-s) 5458 0 R (gloss-service) 3669 0 R (gloss-t) 5481 0 R (gloss-target-milestone) 5482 0 R (gloss-tcl) 5486 0 R (gloss-z) 5489 0 R (gloss-zarro) 5490 0 R (glossary) 1922 0 R (groups) 1610 0 R (hintsandtips) 1762 0 R (http) 1340 0 R (http-apache) 1341 0 R (http-apache-mod_cgi) 2399 0 R (http-apache-mod_perl) 2427 0 R (http-iis) 1342 0 R (impersonatingusers) 1483 0 R (index) 1199 0 R (individual-buglists) 1749 0 R (install-MTA) 1331 0 R (install-bzfiles) 1320 0 R (install-config-bugzilla) 1343 0 R (install-database) 1316 0 R (install-modules-chart-base) 1325 0 R (install-modules-dbd-mysql) 1322 0 R (install-modules-gd) 1324 0 R (install-modules-gd-graph) 1326 0 R (install-modules-gd-text) 1327 0 R (install-modules-patchreader) 1330 0 R (install-modules-soap-lite) 1329 0 R (install-modules-template) 1323 0 R (install-modules-xml-twig) 1328 0 R (install-mysql) 1317 0 R (install-perl) 1315 0 R (install-perlmodules) 1321 0 R (install-perlmodules-manual) 1905 0 R (install-perlmodules-nonroot) 1468 0 R (install-pg) 1318 0 R (install-setupdatabase) 2299 0 R (install-setupdatabase-adduser) 2290 0 R (install-webserver) 1319 0 R (installation) 1314 0 R (installation-whining) 1348 0 R (installation-whining-cron) 1347 0 R (installing-bugzilla) 1313 0 R (integration) 1885 0 R (lifecycle) 1643 0 R (lifecycle-image) 1939 0 R (list) 1748 0 R (localconfig) 1334 0 R (macosx-libraries) 1461 0 R (macosx-sendmail) 1460 0 R (manageusers) 1478 0 R (milestones) 1488 0 R (modifyusers) 1481 0 R (modules-manual-download) 1907 0 R (modules-manual-instructions) 1906 0 R (modules-manual-optional) 1908 0 R (multiplecharts) 1746 0 R (myaccount) 1641 0 R (mysql) 1337 0 R (negation) 1745 0 R (newversions) 1310 0 R (nonroot) 1463 0 R (os-macosx) 1459 0 R (os-mandrake) 1462 0 R (os-specific) 1452 0 R (os-win32) 1453 0 R (page.1) 1197 0 R (page.10) 2254 0 R (page.100) 4945 0 R (page.101) 4972 0 R (page.102) 4998 0 R (page.103) 5020 0 R (page.104) 5037 0 R (page.105) 5081 0 R (page.106) 5108 0 R (page.107) 5139 0 R (page.108) 5170 0 R (page.109) 5194 0 R (page.11) 2289 0 R (page.110) 5210 0 R (page.111) 5221 0 R (page.112) 5258 0 R (page.113) 5270 0 R (page.114) 5284 0 R (page.115) 5290 0 R (page.116) 5340 0 R (page.117) 5372 0 R (page.118) 5399 0 R (page.119) 5437 0 R (page.12) 2316 0 R (page.120) 5466 0 R (page.13) 2361 0 R (page.14) 2395 0 R (page.15) 2437 0 R (page.16) 2476 0 R (page.17) 2517 0 R (page.18) 2556 0 R (page.19) 2580 0 R (page.2) 1206 0 R (page.20) 2617 0 R (page.21) 2656 0 R (page.22) 2695 0 R (page.23) 2720 0 R (page.24) 2742 0 R (page.25) 2786 0 R (page.26) 2802 0 R (page.27) 2833 0 R (page.28) 2857 0 R (page.29) 2886 0 R (page.3) 1212 0 R (page.30) 2907 0 R (page.31) 2919 0 R (page.32) 2953 0 R (page.33) 2980 0 R (page.34) 3003 0 R (page.35) 3034 0 R (page.36) 3089 0 R (page.37) 3111 0 R (page.38) 3142 0 R (page.39) 3183 0 R (page.4) 1355 0 R (page.40) 3229 0 R (page.41) 3267 0 R (page.42) 3313 0 R (page.43) 3345 0 R (page.44) 3380 0 R (page.45) 3408 0 R (page.46) 3435 0 R (page.47) 3474 0 R (page.48) 3505 0 R (page.49) 3524 0 R (page.5) 1500 0 R (page.50) 3541 0 R (page.51) 3574 0 R (page.52) 3606 0 R (page.53) 3633 0 R (page.54) 3643 0 R (page.55) 3673 0 R (page.56) 3702 0 R (page.57) 3779 0 R (page.58) 3795 0 R (page.59) 3824 0 R (page.6) 1647 0 R (page.60) 3875 0 R (page.61) 3907 0 R (page.62) 3917 0 R (page.63) 3952 0 R (page.64) 3972 0 R (page.65) 4002 0 R (page.66) 4025 0 R (page.67) 4042 0 R (page.68) 4056 0 R (page.69) 4074 0 R (page.7) 1792 0 R (page.70) 4110 0 R (page.71) 4147 0 R (page.72) 4164 0 R (page.73) 4181 0 R (page.74) 4200 0 R (page.75) 4218 0 R (page.76) 4229 0 R (page.77) 4257 0 R (page.78) 4290 0 R (page.79) 4317 0 R (page.8) 1926 0 R (page.80) 4355 0 R (page.81) 4373 0 R (page.82) 4408 0 R (page.83) 4440 0 R (page.84) 4461 0 R (page.85) 4481 0 R (page.86) 4495 0 R (page.87) 4527 0 R (page.88) 4555 0 R (page.89) 4584 0 R (page.9) 2235 0 R (page.90) 4613 0 R (page.91) 4638 0 R (page.92) 4674 0 R (page.93) 4708 0 R (page.94) 4747 0 R (page.95) 4791 0 R (page.96) 4825 0 R (page.97) 4865 0 R (page.98) 4896 0 R (page.99) 4916 0 R (param-LDAPBaseDN) 2647 0 R (param-LDAPbinddn) 2642 0 R (param-LDAPmailattribute) 2662 0 R (param-LDAPserver) 2631 0 R (param-LDAPuidattribute) 2657 0 R (param-RADIUS_email_suffix) 2607 0 R (param-RADIUS_secret) 2604 0 R (param-RADIUS_server) 2601 0 R (param-user_verify_class_for_ldap) 2625 0 R (param-user_verify_class_for_radius) 2595 0 R (parameters) 1475 0 R (paranoid-security) 1897 0 R (patch-viewer) 1349 0 R (patches) 1902 0 R (patchviewer) 1754 0 R (patchviewer_bonsai_lxr) 1760 0 R (patchviewer_collapse) 1758 0 R (patchviewer_context) 1757 0 R (patchviewer_diff) 1756 0 R (patchviewer_link) 1759 0 R (patchviewer_unified_diff) 1761 0 R (patchviewer_view) 1755 0 R (permissionsettings) 1771 0 R (postgresql) 1338 0 R (products) 1485 0 R (pronouns) 1744 0 R (query) 1742 0 R (quicksearch) 1747 0 R (quips) 1609 0 R (reporting) 1772 0 R (reports) 1773 0 R (scm) 1888 0 R (security) 1626 0 R (security-bugzilla) 1637 0 R (security-bugzilla-charset) 1638 0 R (security-mysql) 1631 0 R (security-mysql-account) 1632 0 R (security-mysql-account-anonymous) 1941 0 R (security-mysql-account-root) 1940 0 R (security-mysql-network) 1634 0 R (security-mysql-network-ex) 1942 0 R (security-mysql-root) 1633 0 R (security-os) 1627 0 R (security-os-accounts) 1629 0 R (security-os-chroot) 1630 0 R (security-os-ports) 1628 0 R (security-webserver) 1635 0 R (security-webserver-access) 1636 0 R (self-registration) 3010 0 R (svn) 1889 0 R (table.1) 2035 0 R (table.2) 3833 0 R (table.3) 3887 0 R (table.4) 3967 0 R (table.5) 4035 0 R (table.6) 4052 0 R (table.7) 4089 0 R (table.8) 4393 0 R (table.9) 4881 0 R (template-directory) 1786 0 R (template-edit) 1788 0 R (template-formats) 1880 0 R (template-http-accept) 1882 0 R (template-method) 1787 0 R (template-specific) 1881 0 R (timetracking) 1766 0 R (tinderbox) 1890 0 R (trbl-dbdSponge) 1896 0 R (trbl-index) 1900 0 R (trbl-passwd-encryption) 1901 0 R (trbl-perlmodule) 1895 0 R (trbl-relogin-everyone) 1898 0 R (trbl-relogin-everyone-restrict) 1944 0 R (trbl-relogin-everyone-share) 1943 0 R (trbl-relogin-some) 1899 0 R (trbl-testserver) 1894 0 R (troubleshooting) 1892 0 R (upgrade-cvs) 1622 0 R (upgrade-patches) 1624 0 R (upgrade-tarball) 1623 0 R (upgrading) 1618 0 R (upgrading-completion) 1625 0 R (upgrading-methods) 1621 0 R (upgrading-notifications) 1620 0 R (upgrading-version-defns) 1619 0 R (user-account-creation) 3016 0 R (user-account-deletion) 1482 0 R (user-account-search) 1479 0 R (useradmin) 1476 0 R (userpreferences) 1767 0 R (using) 1639 0 R (using-intro) 1640 0 R (using-mod_perl-with-bugzilla) 1332 0 R (versions) 1487 0 R (voting) 1608 0 R (whining) 1778 0 R (whining-overview) 1779 0 R (whining-query) 1781 0 R (whining-schedule) 1780 0 R (win32-code-changes) 1456 0 R (win32-email) 1458 0 R (win32-http) 1457 0 R (win32-perl) 1454 0 R (win32-perl-modules) 1455 0 R]
+5196 0 obj <<
+/Names [(1.0) 2 0 R (10.0) 854 0 R (10.45.1) 858 0 R (10.46.1) 862 0 R (10.46.82.2) 866 0 R (10.46.83.2) 870 0 R (10.46.84.2) 874 0 R (10.46.85.2) 878 0 R (10.46.86.2) 882 0 R (10.46.87.2) 886 0 R (10.47.1) 890 0 R (10.48.1) 894 0 R (10.49.1) 898 0 R (10.49.88.2) 902 0 R (10.49.89.2) 906 0 R (10.49.90.2) 910 0 R (10.49.91.2) 914 0 R (10.49.92.2) 918 0 R (1001) 2836 0 R (1002) 2837 0 R (1003) 2838 0 R (1004) 2839 0 R (1005) 2840 0 R (1006) 2841 0 R (1007) 2842 0 R (1008) 2843 0 R (1009) 2844 0 R (101) 2046 0 R (1010) 2845 0 R (1011) 2846 0 R (1012) 2847 0 R (1013) 2848 0 R (1014) 2849 0 R (1015) 1483 0 R (1017) 2854 0 R (1018) 2855 0 R (1019) 2856 0 R (102) 2047 0 R (1020) 2857 0 R (1021) 2858 0 R (1022) 2859 0 R (1023) 2860 0 R (1024) 2861 0 R (1025) 2862 0 R (1026) 2863 0 R (1027) 2864 0 R (1028) 2865 0 R (1029) 2866 0 R (103) 2048 0 R (1030) 2867 0 R (1033) 2868 0 R (1034) 2869 0 R (1035) 2870 0 R (1036) 2871 0 R (1037) 1485 0 R (1039) 2872 0 R (104) 2049 0 R (1040) 1486 0 R (1042) 2873 0 R (1043) 2874 0 R (1044) 2875 0 R (1045) 2876 0 R (1046) 2877 0 R (1047) 2878 0 R (1048) 2883 0 R (1049) 1487 0 R (105) 2050 0 R (1051) 2884 0 R (1052) 2885 0 R (1053) 2886 0 R (1055) 2888 0 R (1056) 2889 0 R (1057) 2890 0 R (1058) 2891 0 R (1059) 2892 0 R (106) 2051 0 R (1062) 2893 0 R (1063) 2894 0 R (1064) 2895 0 R (1065) 2896 0 R (1066) 2897 0 R (1067) 2898 0 R (1068) 2899 0 R (107) 2052 0 R (1073) 2905 0 R (1074) 2906 0 R (1076) 2907 0 R (1078) 2908 0 R (1079) 2909 0 R (108) 2053 0 R (1080) 2910 0 R (1082) 2911 0 R (1083) 2912 0 R (1084) 2913 0 R (1085) 2914 0 R (1086) 2915 0 R (1087) 2916 0 R (1088) 2917 0 R (109) 2054 0 R (1090) 2918 0 R (1091) 2919 0 R (1092) 2920 0 R (1094) 2921 0 R (1095) 2922 0 R (1096) 2923 0 R (1097) 2924 0 R (1099) 2925 0 R (11.0) 922 0 R (11.50.1) 926 0 R (11.51.1) 930 0 R (11.52.1) 934 0 R (11.53.1) 938 0 R (11.54.1) 942 0 R (11.55.1) 946 0 R (11.56.1) 950 0 R (11.57.1) 954 0 R (11.58.1) 958 0 R (110) 2055 0 R (1100) 2926 0 R (1101) 2927 0 R (1102) 2928 0 R (1104) 2929 0 R (1105) 2930 0 R (1106) 2931 0 R (1107) 2932 0 R (1108) 2933 0 R (1109) 2934 0 R (111) 2056 0 R (1111) 2939 0 R (1113) 2940 0 R (1114) 2941 0 R (1115) 2942 0 R (1116) 2943 0 R (1117) 2944 0 R (1118) 2945 0 R (112) 2057 0 R (1120) 2946 0 R (1121) 2947 0 R (1122) 2948 0 R (1123) 2949 0 R (1125) 2950 0 R (1126) 2951 0 R (1127) 2952 0 R (1129) 2953 0 R (113) 2058 0 R (1130) 2954 0 R (1131) 2955 0 R (1133) 2956 0 R (1134) 2957 0 R (1135) 2958 0 R (1137) 2959 0 R (1138) 2960 0 R (1139) 2961 0 R (114) 2059 0 R (1141) 2966 0 R (1142) 2967 0 R (1143) 2968 0 R (1144) 2969 0 R (1145) 2970 0 R (1146) 2971 0 R (1148) 2972 0 R (1149) 2973 0 R (1150) 2974 0 R (1151) 2975 0 R (1153) 2976 0 R (1154) 2977 0 R (1155) 2978 0 R (1157) 2979 0 R (1158) 2980 0 R (1159) 2981 0 R (1164) 2982 0 R (1165) 2983 0 R (1166) 2984 0 R (117) 2063 0 R (1171) 2989 0 R (1172) 2990 0 R (1173) 2991 0 R (1174) 2992 0 R (1175) 2993 0 R (1176) 2994 0 R (1181) 2996 0 R (1182) 2997 0 R (1183) 2998 0 R (1184) 2999 0 R (1188) 3002 0 R (1189) 3003 0 R (119) 2064 0 R (1190) 3004 0 R (1191) 3005 0 R (1192) 3006 0 R (1193) 3007 0 R (1194) 3008 0 R (1195) 3009 0 R (1196) 3010 0 R (1197) 3011 0 R (1198) 3012 0 R (12.0) 962 0 R (12.59.1) 966 0 R (12.60.1) 970 0 R (120) 2065 0 R (1201) 3017 0 R (1202) 3018 0 R (1203) 3019 0 R (1204) 3020 0 R (1205) 3021 0 R (1206) 3022 0 R (1207) 3023 0 R (1208) 3024 0 R (1209) 3025 0 R (121) 2066 0 R (1210) 3026 0 R (1211) 3027 0 R (1212) 3028 0 R (1213) 3029 0 R (1214) 3030 0 R (1215) 3031 0 R (1216) 3032 0 R (1217) 3033 0 R (1218) 3034 0 R (1219) 3035 0 R (1220) 3036 0 R (1221) 3037 0 R (1222) 3038 0 R (1223) 3039 0 R (1224) 3040 0 R (1225) 3041 0 R (1226) 3042 0 R (1227) 3043 0 R (1228) 3044 0 R (1229) 3045 0 R (1230) 3046 0 R (1231) 3047 0 R (1232) 3048 0 R (1233) 3049 0 R (1234) 3050 0 R (1235) 3051 0 R (1236) 3052 0 R (1237) 3053 0 R (1238) 3054 0 R (1239) 3055 0 R (1240) 3056 0 R (1241) 3057 0 R (1242) 3058 0 R (1243) 3059 0 R (1244) 3060 0 R (1245) 3061 0 R (1246) 3062 0 R (1247) 3063 0 R (1248) 3069 0 R (1249) 3070 0 R (1250) 3071 0 R (1251) 3072 0 R (1252) 3073 0 R (1253) 3074 0 R (1254) 3075 0 R (1255) 3076 0 R (1258) 3077 0 R (1259) 3078 0 R (1263) 3080 0 R (1264) 3081 0 R (1265) 3082 0 R (1266) 3083 0 R (1267) 3084 0 R (1268) 3085 0 R (1269) 3086 0 R (1270) 3087 0 R (1271) 3088 0 R (1274) 3089 0 R (1275) 3096 0 R (1276) 3097 0 R (1277) 3068 0 R (1279) 3098 0 R (1282) 3099 0 R (1285) 3102 0 R (1286) 3103 0 R (1287) 3104 0 R (1288) 3105 0 R (1289) 3106 0 R (1291) 3107 0 R (1292) 3108 0 R (1293) 3109 0 R (1295) 3110 0 R (1296) 3111 0 R (1297) 3112 0 R (1299) 3113 0 R (13.0) 974 0 R (13.61.1) 978 0 R (13.62.1) 982 0 R (13.63.1) 986 0 R (1300) 3114 0 R (1301) 3115 0 R (1303) 3116 0 R (1304) 3117 0 R (1305) 3118 0 R (1307) 3119 0 R (1308) 3120 0 R (1309) 3121 0 R (1311) 3122 0 R (1312) 3123 0 R (1313) 3124 0 R (1315) 3125 0 R (1316) 3126 0 R (1317) 3127 0 R (1319) 3128 0 R (1320) 3129 0 R (1321) 3130 0 R (1323) 3136 0 R (1324) 3137 0 R (1325) 3138 0 R (1327) 3095 0 R (1328) 3139 0 R (1329) 3140 0 R (1330) 3141 0 R (1332) 3143 0 R (1333) 3144 0 R (1334) 3145 0 R (1335) 3146 0 R (1336) 3147 0 R (1337) 3148 0 R (1338) 3149 0 R (1339) 3150 0 R (1340) 3151 0 R (1341) 3152 0 R (1342) 3153 0 R (1343) 3154 0 R (1344) 3155 0 R (1348) 3157 0 R (1349) 3158 0 R (1350) 3159 0 R (1351) 3160 0 R (1352) 3161 0 R (1353) 3162 0 R (1354) 3163 0 R (1355) 3164 0 R (1356) 3165 0 R (1357) 3166 0 R (1358) 3167 0 R (1359) 3168 0 R (1360) 3169 0 R (1361) 3170 0 R (1362) 3171 0 R (1363) 3172 0 R (1364) 3173 0 R (1365) 3174 0 R (1366) 3175 0 R (1367) 3176 0 R (1368) 3177 0 R (1369) 3178 0 R (1370) 3179 0 R (1371) 3180 0 R (1372) 3181 0 R (1373) 3182 0 R (1374) 3183 0 R (1375) 3184 0 R (1376) 3185 0 R (1377) 3190 0 R (1378) 3191 0 R (1379) 3192 0 R (1380) 3193 0 R (1381) 3194 0 R (1382) 3195 0 R (1383) 3196 0 R (1386) 3197 0 R (1387) 3198 0 R (1388) 3199 0 R (1389) 3200 0 R (1390) 3201 0 R (1391) 3202 0 R (1392) 3203 0 R (1393) 3204 0 R (1394) 3205 0 R (1395) 3206 0 R (1396) 3207 0 R (1397) 3208 0 R (1398) 3209 0 R (1399) 3210 0 R (14.0) 990 0 R (14.64.1) 994 0 R (14.65.1) 998 0 R (14.66.1) 1002 0 R (14.67.1) 1006 0 R (14.68.1) 1010 0 R (14.69.1) 1014 0 R (14.70.1) 1018 0 R (14.71.1) 1022 0 R (14.72.1) 1026 0 R (14.73.1) 1030 0 R (14.74.1) 1034 0 R (14.75.1) 1038 0 R (1400) 3211 0 R (1401) 3212 0 R (1402) 3213 0 R (1403) 3214 0 R (1404) 3215 0 R (1405) 3216 0 R (1406) 3217 0 R (1409) 3218 0 R (1410) 3219 0 R (1411) 3220 0 R (1412) 3221 0 R (1413) 3222 0 R (1414) 3223 0 R (1415) 3224 0 R (1416) 3225 0 R (1417) 3230 0 R (1420) 3231 0 R (1421) 3232 0 R (1422) 3233 0 R (1423) 3234 0 R (1424) 3235 0 R (1425) 3236 0 R (1426) 3237 0 R (1427) 3238 0 R (1428) 3239 0 R (1429) 3240 0 R (1430) 3241 0 R (1431) 3242 0 R (1432) 3243 0 R (1435) 3244 0 R (1436) 3245 0 R (1437) 3246 0 R (1438) 3247 0 R (1441) 3248 0 R (1442) 3249 0 R (1443) 3250 0 R (1444) 3251 0 R (1445) 3252 0 R (1446) 3253 0 R (1447) 3254 0 R (1448) 3255 0 R (1449) 3256 0 R (1450) 3257 0 R (1451) 3258 0 R (1452) 3259 0 R (1453) 3260 0 R (1454) 3261 0 R (1455) 3262 0 R (1456) 3263 0 R (1457) 3264 0 R (1458) 3265 0 R (1459) 3266 0 R (1460) 3267 0 R (1461) 3268 0 R (1462) 3269 0 R (1463) 3275 0 R (1464) 3276 0 R (1465) 3277 0 R (1466) 3278 0 R (1467) 3279 0 R (1472) 3280 0 R (1473) 3281 0 R (1475) 3282 0 R (1476) 3283 0 R (1477) 3284 0 R (1478) 3285 0 R (1480) 3286 0 R (1481) 3287 0 R (1482) 3288 0 R (1483) 3289 0 R (1484) 3290 0 R (1486) 3291 0 R (1487) 3292 0 R (1488) 3293 0 R (1489) 3294 0 R (1490) 3295 0 R (1491) 3296 0 R (1492) 3297 0 R (1495) 3298 0 R (1496) 3299 0 R (1497) 3300 0 R (1498) 3301 0 R (1499) 3302 0 R (15.0) 1042 0 R (1500) 3303 0 R (1501) 3304 0 R (1502) 3305 0 R (1503) 3306 0 R (1504) 3307 0 R (1505) 3308 0 R (1508) 3309 0 R (1511) 3314 0 R (1512) 3274 0 R (1514) 3315 0 R (1515) 3316 0 R (1516) 3317 0 R (1517) 3318 0 R (1518) 3319 0 R (1519) 3320 0 R (1520) 3321 0 R (1521) 3322 0 R (1522) 3323 0 R (1523) 3324 0 R (1524) 3325 0 R (1525) 3326 0 R (1526) 3327 0 R (1527) 3328 0 R (1528) 3329 0 R (1529) 3330 0 R (1532) 3331 0 R (1533) 3332 0 R (1534) 3333 0 R (1535) 3334 0 R (1536) 3335 0 R (1539) 3336 0 R (1540) 3337 0 R (1541) 3338 0 R (1542) 3339 0 R (1543) 3340 0 R (1546) 3341 0 R (1547) 3342 0 R (1551) 3344 0 R (1552) 3345 0 R (1555) 3352 0 R (1558) 3354 0 R (1559) 3355 0 R (1560) 3356 0 R (1563) 3358 0 R (1564) 3359 0 R (1565) 3360 0 R (1566) 3361 0 R (1567) 3362 0 R (1568) 3363 0 R (1569) 3364 0 R (1570) 3365 0 R (1571) 3366 0 R (1572) 3367 0 R (1573) 3368 0 R (1574) 3369 0 R (1575) 3370 0 R (1576) 3371 0 R (1577) 3372 0 R (1578) 3373 0 R (1579) 3374 0 R (1580) 3375 0 R (1581) 3376 0 R (1582) 3377 0 R (1583) 3378 0 R (1584) 3379 0 R (1585) 3380 0 R (1586) 3381 0 R (1587) 3382 0 R (1588) 3383 0 R (1589) 3384 0 R (1590) 3385 0 R (1591) 3386 0 R (1592) 3387 0 R (1593) 3388 0 R (1596) 3390 0 R (1597) 3391 0 R (1598) 3392 0 R (16.0) 1046 0 R (16.75.93.2) 1050 0 R (1601) 3399 0 R (1602) 3400 0 R (1605) 3402 0 R (1606) 3403 0 R (1607) 3404 0 R (1608) 3405 0 R (1609) 3406 0 R (1610) 3407 0 R (1613) 3409 0 R (1614) 3410 0 R (1617) 3412 0 R (1618) 3413 0 R (1619) 3414 0 R (1620) 3415 0 R (1623) 3417 0 R (1626) 3419 0 R (1627) 3420 0 R (1628) 3421 0 R (1629) 3422 0 R (1632) 3424 0 R (1633) 3425 0 R (1636) 3430 0 R (1637) 3431 0 R (1638) 3398 0 R (1640) 3432 0 R (1641) 3433 0 R (1642) 3434 0 R (1643) 3435 0 R (1646) 3436 0 R (1647) 3437 0 R (1649) 3439 0 R (1652) 3440 0 R (1653) 3441 0 R (1656) 3442 0 R (1657) 3443 0 R (1658) 3444 0 R (1659) 3445 0 R (1660) 3446 0 R (1661) 3447 0 R (1662) 3448 0 R (1663) 3449 0 R (1664) 3450 0 R (1665) 3451 0 R (1666) 3456 0 R (1667) 3457 0 R (1668) 3458 0 R (1669) 3459 0 R (1670) 3460 0 R (1672) 3462 0 R (1673) 3463 0 R (1674) 3464 0 R (1675) 3465 0 R (1676) 3466 0 R (1677) 3467 0 R (1679) 3469 0 R (1680) 3470 0 R (1681) 3471 0 R (1682) 3472 0 R (1683) 3473 0 R (1684) 3474 0 R (1687) 3475 0 R (1691) 3477 0 R (1694) 3478 0 R (1695) 3479 0 R (1698) 3480 0 R (1699) 3481 0 R (17.0) 1054 0 R (17.75.94.2) 1058 0 R (17.75.94.56.3) 1062 0 R (1700) 3482 0 R (1701) 3483 0 R (1704) 3488 0 R (1705) 3489 0 R (1706) 3490 0 R (1707) 3491 0 R (1708) 3492 0 R (1709) 3493 0 R (1710) 3494 0 R (1713) 3495 0 R (1714) 3496 0 R (1715) 3497 0 R (1716) 3498 0 R (1717) 3499 0 R (1718) 3500 0 R (1719) 3501 0 R (1720) 3502 0 R (1721) 3503 0 R (1722) 3504 0 R (1723) 3505 0 R (1724) 3506 0 R (1725) 3507 0 R (1726) 3508 0 R (1727) 3509 0 R (1728) 3510 0 R (1731) 3511 0 R (1732) 3512 0 R (1733) 3513 0 R (1734) 3514 0 R (1735) 3519 0 R (1736) 3520 0 R (1739) 3521 0 R (1740) 3522 0 R (1741) 3523 0 R (1742) 3524 0 R (1743) 3525 0 R (1744) 3526 0 R (1745) 3527 0 R (1746) 3528 0 R (1747) 3529 0 R (1748) 3530 0 R (1749) 3531 0 R (1752) 3532 0 R (1753) 3533 0 R (1754) 3534 0 R (1755) 3535 0 R (1756) 3536 0 R (1757) 3537 0 R (1758) 3538 0 R (1759) 3539 0 R (1760) 3540 0 R (1761) 3541 0 R (1762) 3542 0 R (1763) 3543 0 R (1764) 3544 0 R (1765) 3545 0 R (1766) 3546 0 R (1767) 3547 0 R (1768) 3548 0 R (1769) 3549 0 R (1770) 3550 0 R (1771) 3551 0 R (1772) 3557 0 R (1773) 3558 0 R (1774) 3559 0 R (1775) 3560 0 R (1776) 3561 0 R (1779) 3562 0 R (1780) 3563 0 R (1781) 3564 0 R (1782) 3565 0 R (1783) 3566 0 R (1784) 3567 0 R (1785) 3568 0 R (1786) 3569 0 R (1787) 1624 0 R (1789) 3570 0 R (1791) 1625 0 R (1793) 1626 0 R (1795) 3572 0 R (1796) 3573 0 R (1797) 1627 0 R (1799) 3579 0 R (18.0) 1066 0 R (18.75.95.2) 1070 0 R (18.75.96.2) 1074 0 R (18.75.97.2) 1078 0 R (1800) 3580 0 R (1801) 1628 0 R (1803) 3581 0 R (1804) 3582 0 R (1805) 3583 0 R (1806) 3584 0 R (1807) 3585 0 R (1808) 3586 0 R (1809) 3587 0 R (1810) 3588 0 R (1811) 3589 0 R (1812) 3590 0 R (1813) 3591 0 R (1814) 3592 0 R (1817) 3593 0 R (1818) 3578 0 R (1819) 3598 0 R (182) 2071 0 R (1820) 3599 0 R (1821) 3600 0 R (1822) 3601 0 R (1823) 3602 0 R (1824) 3603 0 R (1827) 3604 0 R (1828) 3605 0 R (1829) 3606 0 R (183) 2072 0 R (1830) 3607 0 R (1831) 3608 0 R (1832) 3609 0 R (1835) 3610 0 R (1836) 3611 0 R (1837) 3612 0 R (1838) 3613 0 R (1839) 3614 0 R (1840) 3615 0 R (1841) 3616 0 R (1844) 3622 0 R (1845) 3623 0 R (1847) 3625 0 R (1848) 3626 0 R (1849) 3627 0 R (1850) 3628 0 R (1853) 3629 0 R (1854) 3630 0 R (1855) 3631 0 R (1856) 3632 0 R (1858) 3634 0 R (1859) 3635 0 R (1861) 3637 0 R (1862) 3638 0 R (1864) 3640 0 R (1866) 3642 0 R (1867) 3643 0 R (1868) 3644 0 R (1869) 3645 0 R (1870) 3646 0 R (1873) 3647 0 R (1874) 3648 0 R (1875) 3621 0 R (1876) 3654 0 R (1877) 3655 0 R (1878) 3656 0 R (1879) 3657 0 R (188) 2077 0 R (1880) 3658 0 R (1881) 3659 0 R (1882) 3660 0 R (1883) 3661 0 R (1884) 3662 0 R (1885) 3663 0 R (1886) 3664 0 R (1889) 3665 0 R (189) 2078 0 R (1890) 3666 0 R (1891) 3667 0 R (1892) 3668 0 R (1893) 3669 0 R (1894) 3670 0 R (1895) 3671 0 R (1896) 3672 0 R (1897) 3673 0 R (1898) 3674 0 R (1899) 3675 0 R (19.0) 1082 0 R (19.75.100.2) 1094 0 R (19.75.101.2) 1098 0 R (19.75.98.2) 1086 0 R (19.75.99.2) 1090 0 R (190) 2079 0 R (1900) 3676 0 R (1901) 3677 0 R (1902) 3678 0 R (1903) 3679 0 R (1904) 3680 0 R (1905) 3681 0 R (1906) 3686 0 R (1907) 3687 0 R (1908) 3653 0 R (1909) 3688 0 R (191) 2082 0 R (1912) 3689 0 R (1913) 3690 0 R (1914) 3691 0 R (1915) 3692 0 R (1916) 3693 0 R (1917) 3694 0 R (1918) 3695 0 R (1919) 3696 0 R (1920) 3697 0 R (1921) 3698 0 R (1922) 3699 0 R (1923) 3700 0 R (1924) 3701 0 R (1925) 3702 0 R (1929) 3704 0 R (193) 2085 0 R (1930) 3705 0 R (1931) 3706 0 R (1932) 3707 0 R (1933) 3708 0 R (1934) 3714 0 R (1935) 3715 0 R (1936) 3716 0 R (1937) 3717 0 R (1938) 3718 0 R (194) 2086 0 R (1941) 3723 0 R (1942) 3724 0 R (1943) 3725 0 R (1948) 3726 0 R (195) 2087 0 R (1951) 3727 0 R (1953) 3729 0 R (1954) 3730 0 R (1955) 3731 0 R (1956) 3732 0 R (1958) 3734 0 R (1959) 3735 0 R (196) 2088 0 R (1960) 3736 0 R (1961) 3737 0 R (1962) 3738 0 R (1963) 3739 0 R (1964) 3740 0 R (1965) 3741 0 R (1966) 3742 0 R (1967) 3743 0 R (1968) 3744 0 R (197) 2089 0 R (1972) 3745 0 R (1973) 3746 0 R (1978) 3753 0 R (198) 2090 0 R (1984) 3755 0 R (1985) 3756 0 R (1986) 3757 0 R (1987) 3758 0 R (199) 2091 0 R (1991) 3759 0 R (1992) 3760 0 R (1993) 3761 0 R (1994) 3762 0 R (1995) 3763 0 R (1999) 3764 0 R (2.0) 6 0 R (20.0) 1102 0 R (20.75.102.2) 1106 0 R (20.75.103.2) 1110 0 R (200) 2092 0 R (2000) 3765 0 R (2002) 3766 0 R (2003) 3767 0 R (2004) 3768 0 R (2005) 3769 0 R (2006) 3770 0 R (2007) 3771 0 R (201) 2093 0 R (2012) 3773 0 R (2016) 3775 0 R (2017) 3776 0 R (2018) 3777 0 R (2023) 3782 0 R (2024) 3783 0 R (2025) 3784 0 R (2026) 3785 0 R (2030) 3788 0 R (2031) 3789 0 R (2032) 3790 0 R (2033) 3791 0 R (2034) 3792 0 R (2035) 3793 0 R (2037) 3794 0 R (2038) 3795 0 R (2039) 3796 0 R (204) 2095 0 R (2040) 3797 0 R (2041) 3798 0 R (2042) 3799 0 R (2043) 3800 0 R (2044) 3801 0 R (2045) 3802 0 R (2046) 3803 0 R (2047) 3804 0 R (2048) 3805 0 R (2050) 3806 0 R (2051) 3807 0 R (2052) 3808 0 R (2053) 3809 0 R (2054) 3810 0 R (2055) 3811 0 R (2056) 3812 0 R (2057) 3813 0 R (2058) 3814 0 R (2059) 3815 0 R (2060) 3816 0 R (2061) 3817 0 R (2062) 3818 0 R (2064) 3819 0 R (2065) 3820 0 R (2066) 3821 0 R (2067) 3822 0 R (2068) 3823 0 R (2069) 3824 0 R (207) 2097 0 R (2070) 3825 0 R (2071) 3826 0 R (2072) 3827 0 R (2074) 3828 0 R (2075) 3829 0 R (2076) 3830 0 R (2077) 3831 0 R (2078) 3832 0 R (2079) 3833 0 R (2080) 3834 0 R (2081) 3835 0 R (2082) 3836 0 R (2083) 3837 0 R (2084) 3838 0 R (2085) 3839 0 R (2086) 3840 0 R (2087) 3841 0 R (2088) 3842 0 R (2089) 3843 0 R (2090) 3844 0 R (2091) 3845 0 R (2092) 3846 0 R (2093) 3847 0 R (2094) 3848 0 R (2095) 3849 0 R (2096) 3850 0 R (2097) 3851 0 R (2098) 3852 0 R (2099) 3853 0 R (21.0) 1114 0 R (21.75.104.2) 1118 0 R (210) 2099 0 R (2100) 3859 0 R (2101) 3860 0 R (2102) 3861 0 R (2103) 3862 0 R (2104) 3863 0 R (2110) 3865 0 R (2111) 3866 0 R (2112) 3867 0 R (2113) 3868 0 R (2114) 3869 0 R (2115) 3870 0 R (2120) 3875 0 R (2121) 3876 0 R (2122) 3877 0 R (2123) 3878 0 R (2126) 3879 0 R (2127) 3880 0 R (2128) 3881 0 R (2129) 3882 0 R (213) 2101 0 R (2130) 3883 0 R (2131) 3884 0 R (2132) 3885 0 R (2133) 3886 0 R (2134) 3887 0 R (2135) 3888 0 R (2136) 3889 0 R (2137) 3890 0 R (2138) 3891 0 R (2139) 3892 0 R (2140) 3893 0 R (2141) 3894 0 R (2142) 3895 0 R (2143) 3896 0 R (2144) 3897 0 R (2145) 3898 0 R (2146) 3904 0 R (2147) 3905 0 R (2148) 3906 0 R (2149) 3907 0 R (2152) 3908 0 R (2153) 3909 0 R (2154) 3910 0 R (2155) 3911 0 R (2156) 3912 0 R (2157) 3913 0 R (2158) 3914 0 R (216) 2103 0 R (2179) 3916 0 R (2180) 3917 0 R (2181) 3918 0 R (2182) 3919 0 R (2183) 3920 0 R (2184) 3921 0 R (2185) 3922 0 R (2186) 3923 0 R (2187) 3924 0 R (2188) 3925 0 R (2189) 3926 0 R (219) 2105 0 R (2190) 3927 0 R (2191) 3928 0 R (2192) 3929 0 R (2193) 3930 0 R (2194) 3931 0 R (2195) 3932 0 R (2196) 3933 0 R (2197) 3934 0 R (2198) 3935 0 R (2199) 3936 0 R (22.0) 1122 0 R (22.75.105.2) 1126 0 R (2200) 3937 0 R (2201) 3938 0 R (2202) 3939 0 R (2203) 3940 0 R (2204) 3941 0 R (2205) 3942 0 R (2206) 3943 0 R (2207) 3944 0 R (2208) 3945 0 R (2209) 3946 0 R (2210) 3947 0 R (2211) 3948 0 R (2212) 3949 0 R (2213) 3955 0 R (2214) 3956 0 R (2215) 3957 0 R (2216) 3958 0 R (2217) 3959 0 R (2218) 3960 0 R (2219) 3961 0 R (2220) 3962 0 R (2221) 3963 0 R (2222) 3964 0 R (2223) 3965 0 R (2224) 3966 0 R (2225) 3967 0 R (223) 2106 0 R (224) 2107 0 R (2246) 3969 0 R (2247) 3970 0 R (2248) 3971 0 R (2249) 3972 0 R (225) 2108 0 R (2250) 3973 0 R (2251) 3974 0 R (2252) 3975 0 R (2253) 3976 0 R (2254) 3977 0 R (2255) 3978 0 R (2256) 3979 0 R (2257) 3980 0 R (226) 2109 0 R (2260) 3981 0 R (2262) 3983 0 R (2263) 3984 0 R (2266) 3990 0 R (2271) 3991 0 R (2272) 3992 0 R (2273) 3993 0 R (2274) 3994 0 R (2278) 4000 0 R (2279) 3989 0 R (2280) 4001 0 R (2281) 4002 0 R (2282) 4003 0 R (2283) 4004 0 R (2284) 4005 0 R (2285) 4006 0 R (2286) 4007 0 R (2287) 4008 0 R (2288) 4009 0 R (2289) 4010 0 R (229) 2114 0 R (2290) 4011 0 R (2291) 4012 0 R (2292) 4013 0 R (2293) 4014 0 R (2294) 4015 0 R (2297) 4016 0 R (23.0) 1130 0 R (23.75.106.2) 1134 0 R (23.75.107.2) 1138 0 R (2300) 4017 0 R (2301) 4018 0 R (2302) 4019 0 R (2303) 4020 0 R (2304) 4021 0 R (2305) 4022 0 R (2306) 4023 0 R (2307) 4024 0 R (2308) 4025 0 R (2309) 4026 0 R (2310) 4027 0 R (2311) 4028 0 R (2312) 4029 0 R (2315) 4034 0 R (2316) 4035 0 R (2317) 4036 0 R (2318) 4037 0 R (2319) 4038 0 R (232) 2115 0 R (2320) 4039 0 R (2323) 4040 0 R (2324) 4041 0 R (2325) 4042 0 R (2326) 4043 0 R (2327) 4044 0 R (233) 2116 0 R (2330) 4045 0 R (2333) 4046 0 R (2334) 4047 0 R (2335) 4048 0 R (234) 2117 0 R (235) 2118 0 R (2356) 4050 0 R (2359) 4055 0 R (236) 2119 0 R (2360) 4056 0 R (2362) 4058 0 R (2363) 4059 0 R (2364) 4060 0 R (2365) 4061 0 R (237) 2120 0 R (2370) 4062 0 R (2371) 4063 0 R (2372) 4064 0 R (2373) 4065 0 R (2374) 4066 0 R (2375) 4067 0 R (2376) 4068 0 R (2377) 4069 0 R (2378) 4070 0 R (2379) 4071 0 R (238) 2121 0 R (2380) 4072 0 R (2381) 4073 0 R (2382) 4074 0 R (2383) 4075 0 R (2384) 4076 0 R (2385) 4077 0 R (2386) 4084 0 R (2387) 4085 0 R (2388) 4086 0 R (2389) 4087 0 R (239) 2122 0 R (2390) 4088 0 R (2391) 4089 0 R (2392) 4090 0 R (2393) 4091 0 R (2394) 4092 0 R (2395) 4093 0 R (2396) 4094 0 R (2397) 4095 0 R (2398) 4096 0 R (2399) 4097 0 R (24) 1980 0 R (24.0) 1142 0 R (24.75.108.2) 1146 0 R (24.75.109.2) 1150 0 R (24.75.110.2) 1154 0 R (240) 2123 0 R (2402) 4098 0 R (2403) 4099 0 R (2404) 4100 0 R (2407) 4101 0 R (2408) 4106 0 R (2409) 4083 0 R (2411) 4107 0 R (2412) 4108 0 R (2413) 4109 0 R (2414) 4110 0 R (2415) 4111 0 R (2416) 4112 0 R (2419) 4113 0 R (2420) 4114 0 R (2421) 4115 0 R (243) 2124 0 R (2431) 4117 0 R (2434) 4118 0 R (2437) 4123 0 R (244) 2125 0 R (2440) 4124 0 R (2443) 4125 0 R (2446) 4126 0 R (2447) 4127 0 R (245) 2126 0 R (2450) 4128 0 R (2453) 4129 0 R (2454) 1778 0 R (2456) 4130 0 R (2457) 4135 0 R (2458) 4136 0 R (246) 2127 0 R (2467) 4138 0 R (247) 2128 0 R (2470) 4139 0 R (2471) 4140 0 R (2474) 4141 0 R (2477) 4142 0 R (2478) 4143 0 R (2479) 4144 0 R (2482) 4145 0 R (2483) 4146 0 R (2484) 4151 0 R (2485) 4152 0 R (2486) 4153 0 R (2487) 4154 0 R (2488) 4155 0 R (2491) 4156 0 R (2494) 4157 0 R (2495) 4158 0 R (2496) 4159 0 R (2497) 4160 0 R (2498) 4161 0 R (2499) 4162 0 R (25) 1981 0 R (25.0) 1158 0 R (25.75.111.2) 1162 0 R (250) 2129 0 R (2500) 4163 0 R (2501) 4164 0 R (2502) 4165 0 R (2503) 4166 0 R (2504) 4167 0 R (2505) 4168 0 R (2506) 4169 0 R (2507) 4170 0 R (2508) 4171 0 R (2509) 4172 0 R (251) 2130 0 R (2510) 4173 0 R (2511) 4174 0 R (2512) 4175 0 R (2513) 4176 0 R (2514) 4177 0 R (2515) 4178 0 R (2518) 4179 0 R (2519) 4180 0 R (2520) 4181 0 R (2521) 4182 0 R (2522) 4183 0 R (2523) 4184 0 R (2524) 4185 0 R (2525) 4190 0 R (2526) 4191 0 R (2527) 4192 0 R (2528) 4193 0 R (2529) 4194 0 R (253) 2132 0 R (2530) 4195 0 R (2531) 4196 0 R (2532) 4197 0 R (2533) 4198 0 R (2534) 4199 0 R (2535) 4200 0 R (2536) 4201 0 R (2537) 4202 0 R (2538) 4203 0 R (2539) 4204 0 R (254) 2133 0 R (2540) 4205 0 R (2541) 4206 0 R (2542) 4207 0 R (2543) 4208 0 R (2544) 4209 0 R (2545) 4210 0 R (2546) 4211 0 R (2547) 4212 0 R (2548) 4213 0 R (2549) 4214 0 R (255) 2134 0 R (2550) 4215 0 R (2551) 4216 0 R (2552) 4217 0 R (2553) 4218 0 R (2554) 4219 0 R (2555) 4220 0 R (2556) 4221 0 R (2557) 4222 0 R (2558) 4223 0 R (2559) 4224 0 R (2560) 4225 0 R (2561) 4226 0 R (2562) 4227 0 R (2565) 4234 0 R (2569) 4236 0 R (2570) 4237 0 R (2571) 4238 0 R (2574) 4239 0 R (2575) 4240 0 R (2576) 4241 0 R (2577) 4242 0 R (2579) 4243 0 R (258) 2135 0 R (2580) 4244 0 R (2581) 4245 0 R (2583) 4246 0 R (2584) 4247 0 R (2585) 4248 0 R (2587) 4249 0 R (2588) 4250 0 R (2589) 4251 0 R (259) 2136 0 R (2591) 4252 0 R (2592) 4253 0 R (2593) 4254 0 R (2595) 4255 0 R (2596) 4256 0 R (2597) 4257 0 R (2599) 4258 0 R (26) 1982 0 R (26.0) 1166 0 R (26.75.112.2) 1170 0 R (26.75.113.2) 1174 0 R (260) 2137 0 R (2600) 4259 0 R (2601) 4260 0 R (2603) 4261 0 R (2604) 4262 0 R (2605) 4263 0 R (2607) 4264 0 R (2608) 4265 0 R (2609) 4266 0 R (261) 2143 0 R (2611) 4272 0 R (2612) 4273 0 R (2613) 4274 0 R (2615) 4233 0 R (2616) 4275 0 R (2617) 4276 0 R (2619) 4277 0 R (262) 2144 0 R (2620) 4278 0 R (2621) 4279 0 R (2623) 4280 0 R (2624) 4281 0 R (2625) 4282 0 R (2627) 4283 0 R (2628) 4284 0 R (2629) 4285 0 R (263) 2145 0 R (2630) 4286 0 R (2631) 4287 0 R (2635) 4289 0 R (2638) 4290 0 R (2639) 4291 0 R (264) 2146 0 R (2640) 4292 0 R (2641) 4293 0 R (2642) 4294 0 R (2645) 4299 0 R (2646) 4271 0 R (2647) 4300 0 R (2648) 4301 0 R (2649) 4302 0 R (265) 2147 0 R (2650) 4303 0 R (2651) 1792 0 R (2653) 4304 0 R (2654) 4305 0 R (2655) 4306 0 R (2656) 4307 0 R (2657) 4308 0 R (266) 2148 0 R (2660) 4309 0 R (2661) 4310 0 R (2664) 4315 0 R (2665) 4316 0 R (2666) 4317 0 R (2667) 4318 0 R (2668) 4319 0 R (2669) 4320 0 R (267) 2149 0 R (2670) 4321 0 R (2671) 4322 0 R (2674) 4323 0 R (2675) 4324 0 R (2676) 4325 0 R (2677) 4326 0 R (2678) 4327 0 R (2679) 4328 0 R (2681) 4330 0 R (2682) 4335 0 R (2686) 4337 0 R (2687) 4338 0 R (2688) 4339 0 R (2691) 4340 0 R (2692) 4341 0 R (2693) 4342 0 R (2694) 4343 0 R (2695) 4344 0 R (2696) 4345 0 R (2697) 4346 0 R (2698) 4347 0 R (27.0) 1178 0 R (27.75.114.2) 1182 0 R (27.75.115.2) 1186 0 R (270) 2150 0 R (2701) 4352 0 R (2702) 4353 0 R (2703) 4354 0 R (2705) 4356 0 R (2706) 4357 0 R (2707) 4358 0 R (2708) 4359 0 R (2709) 4360 0 R (271) 2151 0 R (2710) 4361 0 R (2711) 1896 0 R (2713) 4362 0 R (2714) 4363 0 R (2715) 4364 0 R (2720) 4370 0 R (2721) 4371 0 R (2722) 4372 0 R (2723) 4373 0 R (2724) 4374 0 R (2725) 4375 0 R (2726) 4376 0 R (2727) 4377 0 R (2728) 4378 0 R (2729) 4379 0 R (273) 2153 0 R (2730) 4380 0 R (2733) 4381 0 R (2734) 4382 0 R (2738) 4384 0 R (2739) 4385 0 R (274) 2154 0 R (2740) 4386 0 R (2741) 4387 0 R (2742) 4388 0 R (2743) 4389 0 R (2744) 4390 0 R (2745) 4391 0 R (2746) 4392 0 R (2747) 4393 0 R (275) 2155 0 R (2750) 4399 0 R (2751) 4400 0 R (2752) 4401 0 R (2753) 4402 0 R (2754) 4403 0 R (2755) 4404 0 R (2756) 4405 0 R (2757) 4406 0 R (2758) 4407 0 R (2759) 4408 0 R (276) 2156 0 R (2760) 4409 0 R (2761) 4410 0 R (2762) 4411 0 R (2763) 4412 0 R (2764) 4413 0 R (2765) 4414 0 R (2766) 4415 0 R (2767) 4416 0 R (2768) 4417 0 R (2769) 4418 0 R (277) 2157 0 R (2770) 4419 0 R (2771) 4420 0 R (2772) 4421 0 R (2773) 4422 0 R (2776) 4423 0 R (2777) 4424 0 R (2778) 4425 0 R (2779) 4398 0 R (278) 2158 0 R (2781) 4431 0 R (2782) 4432 0 R (2783) 4433 0 R (2784) 4434 0 R (2785) 4435 0 R (2788) 4436 0 R (2789) 4437 0 R (279) 2159 0 R (2790) 4438 0 R (2791) 4439 0 R (2792) 4440 0 R (2793) 4441 0 R (2794) 4442 0 R (2795) 4443 0 R (2796) 4444 0 R (2797) 4445 0 R (2798) 4446 0 R (2799) 4447 0 R (28) 1984 0 R (28.0) 1190 0 R (28.75.116.2) 1194 0 R (28.75.117.2) 1198 0 R (280) 2160 0 R (2800) 4448 0 R (2801) 4449 0 R (2802) 4450 0 R (2803) 4451 0 R (2804) 4452 0 R (2807) 4458 0 R (2808) 4430 0 R (2810) 4459 0 R (2811) 4460 0 R (2812) 4461 0 R (2813) 4462 0 R (2814) 4463 0 R (2815) 4464 0 R (2816) 4465 0 R (2817) 4466 0 R (2818) 4467 0 R (2819) 4468 0 R (2820) 4469 0 R (2821) 4470 0 R (2822) 4471 0 R (2823) 4472 0 R (2824) 4473 0 R (2825) 4474 0 R (2826) 4475 0 R (2827) 4476 0 R (2828) 4477 0 R (2829) 4478 0 R (283) 2163 0 R (2830) 4479 0 R (2831) 4480 0 R (2832) 4481 0 R (2833) 4482 0 R (2834) 4483 0 R (2835) 4484 0 R (2836) 4485 0 R (2837) 4486 0 R (2838) 4487 0 R (2839) 4488 0 R (284) 2164 0 R (2840) 4489 0 R (2841) 4490 0 R (2842) 4457 0 R (2844) 4495 0 R (2845) 4496 0 R (2846) 4497 0 R (2847) 4498 0 R (2848) 4499 0 R (2849) 4500 0 R (285) 2165 0 R (2852) 4501 0 R (2853) 4502 0 R (2856) 4503 0 R (2857) 4504 0 R (2858) 4505 0 R (2859) 4506 0 R (286) 2166 0 R (2860) 4507 0 R (2861) 4508 0 R (2862) 4513 0 R (2863) 4514 0 R (2864) 4515 0 R (2865) 4516 0 R (2866) 4517 0 R (2867) 4518 0 R (2868) 4519 0 R (2869) 4520 0 R (287) 2167 0 R (2870) 4521 0 R (2871) 4522 0 R (2872) 4523 0 R (2873) 4524 0 R (2874) 4525 0 R (2875) 4526 0 R (2876) 4527 0 R (2877) 4528 0 R (2878) 4529 0 R (2879) 4530 0 R (288) 2168 0 R (2880) 4531 0 R (2885) 4533 0 R (2886) 4534 0 R (2887) 4535 0 R (2888) 4536 0 R (2889) 4537 0 R (289) 2169 0 R (2890) 4538 0 R (2891) 4539 0 R (2892) 4540 0 R (2893) 4541 0 R (2894) 4542 0 R (2895) 4543 0 R (2896) 4549 0 R (2897) 4550 0 R (2898) 4551 0 R (2899) 4552 0 R (29.0) 1202 0 R (29.75.118.2) 1206 0 R (290) 2170 0 R (2900) 4553 0 R (2901) 4554 0 R (2902) 4555 0 R (2903) 4556 0 R (2904) 4557 0 R (2905) 4558 0 R (2906) 4559 0 R (2907) 4560 0 R (2908) 4561 0 R (2909) 4562 0 R (291) 2171 0 R (2910) 4563 0 R (2911) 4564 0 R (2912) 4565 0 R (2913) 4566 0 R (2914) 4567 0 R (2915) 4568 0 R (2916) 4569 0 R (2917) 4570 0 R (2918) 4571 0 R (2919) 4572 0 R (292) 2172 0 R (2920) 4573 0 R (2921) 4574 0 R (2922) 4575 0 R (2923) 4576 0 R (2926) 4582 0 R (2927) 4583 0 R (2928) 4584 0 R (2929) 4585 0 R (293) 2173 0 R (2930) 4586 0 R (2931) 4587 0 R (2932) 4588 0 R (2933) 4589 0 R (2934) 4590 0 R (2935) 4591 0 R (2936) 4592 0 R (2937) 4593 0 R (2938) 4594 0 R (2939) 4595 0 R (294) 2142 0 R (2940) 4596 0 R (2941) 4597 0 R (2942) 4598 0 R (2943) 4581 0 R (2945) 4603 0 R (2946) 4604 0 R (2947) 4605 0 R (2948) 4606 0 R (295) 2177 0 R (2953) 4607 0 R (2958) 4611 0 R (2959) 4612 0 R (296) 2178 0 R (2960) 4613 0 R (2961) 4614 0 R (2962) 4615 0 R (2963) 4616 0 R (2964) 4621 0 R (2965) 4622 0 R (2968) 4623 0 R (2969) 4624 0 R (297) 2179 0 R (2970) 4625 0 R (2971) 4626 0 R (2972) 4627 0 R (2975) 4628 0 R (2976) 4629 0 R (2979) 4630 0 R (298) 2180 0 R (2980) 4631 0 R (2981) 4632 0 R (2984) 4637 0 R (2987) 4638 0 R (2988) 4639 0 R (2989) 4640 0 R (299) 2181 0 R (2990) 4641 0 R (2993) 4644 0 R (2994) 4645 0 R (2995) 4646 0 R (2996) 4647 0 R (2997) 4648 0 R (3.0) 10 0 R (300) 2182 0 R (3000) 4649 0 R (3001) 4650 0 R (3002) 4651 0 R (3003) 4652 0 R (3004) 4653 0 R (3008) 4654 0 R (3009) 4655 0 R (301) 2183 0 R (3010) 4656 0 R (3011) 4657 0 R (3012) 4658 0 R (3013) 4659 0 R (3014) 4664 0 R (3017) 4665 0 R (3018) 4666 0 R (3019) 4667 0 R (302) 2184 0 R (3020) 4668 0 R (3021) 4669 0 R (3022) 4670 0 R (3023) 4671 0 R (3024) 4672 0 R (3027) 4673 0 R (3028) 4674 0 R (3029) 4675 0 R (303) 2185 0 R (3030) 4676 0 R (3031) 4677 0 R (3032) 4678 0 R (3033) 4679 0 R (3034) 4680 0 R (3035) 4681 0 R (3036) 4682 0 R (3039) 4683 0 R (304) 2186 0 R (3040) 4684 0 R (3041) 4690 0 R (3042) 4691 0 R (3043) 4692 0 R (3044) 4693 0 R (3047) 4694 0 R (3048) 4695 0 R (3049) 4696 0 R (3050) 4697 0 R (3051) 4698 0 R (3054) 4699 0 R (3055) 4700 0 R (3056) 4701 0 R (3057) 4702 0 R (3058) 4703 0 R (3059) 4704 0 R (306) 2188 0 R (3060) 4705 0 R (3063) 4706 0 R (3064) 4707 0 R (3065) 4712 0 R (3066) 4713 0 R (3067) 4714 0 R (307) 2189 0 R (3071) 4715 0 R (3072) 4716 0 R (3073) 4717 0 R (3074) 4718 0 R (3078) 4720 0 R (3079) 4721 0 R (308) 2190 0 R (3080) 4722 0 R (3081) 4723 0 R (3082) 4724 0 R (3085) 4729 0 R (3086) 4730 0 R (3089) 4731 0 R (309) 2191 0 R (3090) 4732 0 R (3091) 4733 0 R (3092) 4734 0 R (3093) 4735 0 R (3094) 4736 0 R (3095) 4737 0 R (3096) 4738 0 R (3097) 4739 0 R (3098) 4740 0 R (3099) 4741 0 R (31) 1985 0 R (310) 2192 0 R (3100) 4742 0 R (3101) 4743 0 R (3102) 4744 0 R (3103) 4745 0 R (3104) 4746 0 R (3105) 4747 0 R (3106) 4748 0 R (3107) 4749 0 R (3108) 4750 0 R (3109) 4751 0 R (311) 2193 0 R (3110) 4752 0 R (3111) 4753 0 R (3112) 4754 0 R (3113) 4755 0 R (3114) 4756 0 R (3115) 4757 0 R (3116) 4758 0 R (3117) 4759 0 R (3120) 4760 0 R (3121) 4761 0 R (3122) 4762 0 R (3123) 4763 0 R (3124) 4764 0 R (3125) 4765 0 R (3126) 4766 0 R (3127) 4767 0 R (3128) 4768 0 R (313) 2195 0 R (3133) 4773 0 R (3134) 4774 0 R (3135) 4775 0 R (3136) 4776 0 R (3137) 4777 0 R (3138) 4778 0 R (3139) 4779 0 R (314) 2196 0 R (3140) 4780 0 R (3141) 4781 0 R (3142) 4782 0 R (3143) 4783 0 R (3144) 4784 0 R (3145) 4785 0 R (3146) 4786 0 R (3147) 4787 0 R (3148) 4788 0 R (315) 2197 0 R (3151) 4789 0 R (3152) 4790 0 R (3153) 4791 0 R (3154) 4792 0 R (3155) 4793 0 R (3156) 4794 0 R (3157) 4801 0 R (3158) 4795 0 R (316) 2198 0 R (3160) 4802 0 R (3161) 4803 0 R (3162) 4804 0 R (3163) 4805 0 R (3164) 4806 0 R (3165) 4807 0 R (3166) 4808 0 R (3167) 4809 0 R (3168) 4810 0 R (3169) 4811 0 R (317) 2199 0 R (3170) 4812 0 R (3171) 4813 0 R (3172) 4814 0 R (3173) 4815 0 R (3174) 4816 0 R (3175) 4817 0 R (3176) 4818 0 R (3177) 4819 0 R (3178) 4820 0 R (3179) 4821 0 R (318) 2200 0 R (3180) 4822 0 R (3181) 4823 0 R (3182) 4824 0 R (3183) 4825 0 R (3184) 4826 0 R (3185) 4831 0 R (3186) 4800 0 R (3188) 4832 0 R (3189) 4833 0 R (319) 2201 0 R (3190) 4834 0 R (3191) 4835 0 R (3192) 4836 0 R (3193) 4837 0 R (3194) 4838 0 R (3195) 4839 0 R (3196) 4840 0 R (3197) 4841 0 R (3198) 4842 0 R (3199) 4843 0 R (32) 1986 0 R (3200) 4844 0 R (3201) 4845 0 R (3202) 4846 0 R (3203) 4847 0 R (3206) 4848 0 R (3207) 4849 0 R (3208) 4850 0 R (3209) 4851 0 R (321) 2203 0 R (3210) 4852 0 R (3211) 4853 0 R (3212) 4854 0 R (3213) 4855 0 R (3214) 4856 0 R (3215) 4862 0 R (3216) 4863 0 R (3217) 4864 0 R (3218) 4865 0 R (3219) 4866 0 R (322) 2204 0 R (3220) 4867 0 R (3221) 4868 0 R (3222) 4869 0 R (3223) 4870 0 R (3224) 4871 0 R (3225) 4872 0 R (3226) 4873 0 R (3227) 4874 0 R (3228) 4875 0 R (3229) 4876 0 R (323) 2205 0 R (3230) 4877 0 R (3231) 4878 0 R (3232) 4879 0 R (3233) 4880 0 R (3234) 4881 0 R (3237) 4886 0 R (3238) 4887 0 R (3239) 4888 0 R (324) 2206 0 R (3242) 4889 0 R (3243) 4890 0 R (3244) 4891 0 R (3247) 4892 0 R (3248) 4893 0 R (3249) 4894 0 R (3250) 4895 0 R (3251) 4896 0 R (3252) 4897 0 R (3253) 4902 0 R (3254) 4903 0 R (3257) 4904 0 R (3258) 4905 0 R (326) 2208 0 R (3261) 4906 0 R (3262) 4907 0 R (3263) 4908 0 R (3264) 4914 0 R (3267) 4915 0 R (3268) 4916 0 R (3269) 4917 0 R (327) 2209 0 R (3270) 4918 0 R (3271) 4919 0 R (3272) 4920 0 R (3273) 4921 0 R (3274) 4922 0 R (3275) 4923 0 R (3276) 4924 0 R (3277) 4925 0 R (3278) 4926 0 R (3279) 4927 0 R (3280) 4928 0 R (3281) 4929 0 R (3282) 4930 0 R (3283) 4931 0 R (3284) 4932 0 R (3285) 4933 0 R (3286) 4934 0 R (3287) 4935 0 R (3288) 4936 0 R (3289) 4937 0 R (329) 2211 0 R (3290) 4938 0 R (3291) 4939 0 R (3292) 4940 0 R (3293) 4941 0 R (3294) 4942 0 R (3295) 4943 0 R (3296) 4944 0 R (3297) 4945 0 R (3298) 4913 0 R (3299) 4950 0 R (33) 1987 0 R (330) 2212 0 R (3300) 4951 0 R (3303) 4952 0 R (3304) 4953 0 R (3305) 4954 0 R (3308) 4955 0 R (3309) 4956 0 R (3312) 4957 0 R (3313) 4962 0 R (3316) 4963 0 R (3319) 4964 0 R (332) 2214 0 R (3322) 4965 0 R (3323) 4966 0 R (3324) 4967 0 R (3327) 4968 0 R (3328) 4969 0 R (3329) 4970 0 R (333) 2215 0 R (3330) 4976 0 R (3331) 4977 0 R (3333) 4982 0 R (3337) 4983 0 R (3338) 4984 0 R (3339) 4985 0 R (3340) 4986 0 R (3345) 4989 0 R (3346) 4990 0 R (3347) 4991 0 R (3348) 4992 0 R (3349) 4993 0 R (335) 2217 0 R (3350) 4994 0 R (3352) 4995 0 R (3353) 4996 0 R (3354) 4997 0 R (3355) 4998 0 R (3356) 4999 0 R (3358) 5000 0 R (3359) 5001 0 R (336) 2218 0 R (3360) 5002 0 R (3361) 5003 0 R (3362) 5004 0 R (3363) 5005 0 R (3364) 5006 0 R (3365) 5007 0 R (3366) 5008 0 R (3368) 5009 0 R (3369) 5010 0 R (337) 2219 0 R (3370) 5011 0 R (3371) 5012 0 R (3372) 5013 0 R (3373) 5014 0 R (3374) 5015 0 R (3375) 5016 0 R (3376) 5017 0 R (3377) 5018 0 R (3378) 5019 0 R (338) 2220 0 R (3380) 5020 0 R (3381) 5021 0 R (3382) 5022 0 R (3383) 5023 0 R (3384) 5024 0 R (3385) 5025 0 R (339) 2221 0 R (3390) 5032 0 R (3391) 5033 0 R (3392) 5034 0 R (3393) 5035 0 R (3394) 5036 0 R (3395) 5037 0 R (3397) 5038 0 R (3398) 5039 0 R (3399) 5040 0 R (340) 2222 0 R (3402) 5041 0 R (3403) 5042 0 R (3409) 5044 0 R (3410) 5045 0 R (3411) 5046 0 R (3412) 5047 0 R (3415) 5049 0 R (3416) 5050 0 R (342) 2224 0 R (3420) 5051 0 R (3421) 5052 0 R (3422) 5053 0 R (3423) 5054 0 R (3424) 5055 0 R (3427) 5056 0 R (3428) 5057 0 R (3429) 5058 0 R (343) 2225 0 R (3430) 5059 0 R (3431) 5065 0 R (3432) 5066 0 R (3433) 5067 0 R (3438) 5069 0 R (3439) 5070 0 R (344) 2226 0 R (3440) 5071 0 R (3441) 5072 0 R (3444) 5074 0 R (3445) 5075 0 R (345) 2227 0 R (3450) 5078 0 R (3451) 5079 0 R (3452) 5080 0 R (3453) 5081 0 R (3454) 5082 0 R (3459) 5085 0 R (346) 2228 0 R (3460) 5086 0 R (3466) 5092 0 R (3467) 5093 0 R (3468) 5094 0 R (3469) 5095 0 R (347) 2229 0 R (3470) 5096 0 R (3471) 5097 0 R (3472) 5098 0 R (3475) 5100 0 R (3476) 5101 0 R (3478) 5103 0 R (3479) 5104 0 R (348) 2230 0 R (3481) 5105 0 R (3482) 5106 0 R (3483) 5107 0 R (3484) 5108 0 R (3486) 5109 0 R (3487) 5110 0 R (3488) 5111 0 R (3489) 5112 0 R (349) 2231 0 R (3490) 5113 0 R (3492) 5114 0 R (3493) 5115 0 R (3494) 5116 0 R (3495) 5117 0 R (3502) 5120 0 R (3503) 5121 0 R (3504) 5122 0 R (3507) 5123 0 R (3508) 5124 0 R (351) 2233 0 R (3510) 5130 0 R (3511) 5131 0 R (3512) 5132 0 R (3513) 5133 0 R (3517) 5135 0 R (3518) 5136 0 R (3519) 5137 0 R (352) 2234 0 R (3520) 5138 0 R (3521) 5139 0 R (3522) 5140 0 R (3523) 5141 0 R (3524) 5142 0 R (353) 2235 0 R (3530) 5144 0 R (3531) 5145 0 R (3535) 5147 0 R (3536) 5148 0 R (3537) 5149 0 R (354) 2236 0 R (3542) 5151 0 R (3543) 5152 0 R (3544) 5153 0 R (3546) 5159 0 R (3547) 5160 0 R (3548) 5161 0 R (3549) 5162 0 R (355) 2237 0 R (3550) 5163 0 R (3551) 5164 0 R (3552) 5165 0 R (3553) 5166 0 R (3554) 5167 0 R (3555) 5168 0 R (3556) 5169 0 R (3557) 5170 0 R (3558) 5171 0 R (3559) 5172 0 R (356) 2238 0 R (3564) 5175 0 R (3565) 5176 0 R (3566) 5177 0 R (357) 2239 0 R (3570) 5179 0 R (3571) 5180 0 R (3576) 5183 0 R (3577) 5184 0 R (3578) 5185 0 R (3579) 5188 0 R (358) 2240 0 R (3580) 5186 0 R (3581) 5187 0 R (359) 2241 0 R (36) 1988 0 R (360) 2242 0 R (361) 2243 0 R (362) 2244 0 R (365) 2248 0 R (366) 2249 0 R (369) 2250 0 R (37) 1989 0 R (372) 2251 0 R (373) 2252 0 R (374) 2253 0 R (375) 2254 0 R (376) 2255 0 R (377) 2256 0 R (378) 2257 0 R (379) 2258 0 R (38) 1990 0 R (380) 2259 0 R (383) 2260 0 R (386) 2261 0 R (389) 2262 0 R (39) 1991 0 R (392) 2267 0 R (393) 2268 0 R (396) 2269 0 R (399) 2270 0 R (4.0) 14 0 R (40) 1992 0 R (402) 2271 0 R (403) 2272 0 R (404) 2273 0 R (405) 2274 0 R (406) 2275 0 R (408) 2277 0 R (409) 2278 0 R (41) 1993 0 R (410) 2279 0 R (411) 2280 0 R (414) 2281 0 R (415) 2282 0 R (416) 2283 0 R (417) 2284 0 R (418) 2289 0 R (419) 2290 0 R (42) 1994 0 R (420) 2291 0 R (421) 2266 0 R (424) 2292 0 R (425) 2293 0 R (429) 2295 0 R (43) 1995 0 R (430) 2296 0 R (431) 2297 0 R (432) 2298 0 R (433) 2299 0 R (434) 2300 0 R (435) 2301 0 R (436) 2302 0 R (437) 2303 0 R (438) 2304 0 R (439) 2305 0 R (44) 1996 0 R (440) 2306 0 R (441) 2307 0 R (442) 2308 0 R (443) 2309 0 R (444) 2310 0 R (445) 2311 0 R (447) 2313 0 R (448) 2314 0 R (449) 2315 0 R (45) 1997 0 R (450) 2316 0 R (453) 2323 0 R (458) 2326 0 R (459) 2327 0 R (46) 1998 0 R (462) 2328 0 R (463) 2329 0 R (467) 2332 0 R (468) 2333 0 R (469) 2334 0 R (47) 1999 0 R (470) 2335 0 R (471) 2336 0 R (472) 2337 0 R (473) 2338 0 R (474) 2339 0 R (476) 2340 0 R (477) 2341 0 R (478) 2342 0 R (479) 2343 0 R (48) 2000 0 R (480) 2349 0 R (481) 2350 0 R (484) 2351 0 R (485) 2352 0 R (486) 2353 0 R (487) 2356 0 R (489) 2358 0 R (49) 2001 0 R (490) 2359 0 R (491) 2360 0 R (492) 2361 0 R (493) 2362 0 R (494) 2363 0 R (495) 2364 0 R (496) 2365 0 R (497) 2366 0 R (498) 2367 0 R (499) 2368 0 R (5.0) 18 0 R (5.1.1) 22 0 R (5.2.1) 26 0 R (5.3.1) 30 0 R (5.4.1) 34 0 R (5.5.1) 38 0 R (50) 2002 0 R (500) 2369 0 R (501) 2370 0 R (503) 2371 0 R (504) 2372 0 R (505) 2373 0 R (506) 2374 0 R (507) 2375 0 R (508) 2376 0 R (509) 2377 0 R (51) 2003 0 R (510) 2378 0 R (511) 2379 0 R (512) 2380 0 R (513) 2381 0 R (514) 2382 0 R (517) 2383 0 R (519) 2384 0 R (52) 2004 0 R (520) 2385 0 R (521) 2386 0 R (522) 2387 0 R (524) 2393 0 R (525) 2348 0 R (527) 2394 0 R (528) 2395 0 R (529) 2396 0 R (53) 2005 0 R (530) 2397 0 R (531) 2398 0 R (532) 2399 0 R (533) 2400 0 R (535) 2401 0 R (536) 2402 0 R (537) 2403 0 R (538) 2404 0 R (539) 2405 0 R (54) 2009 0 R (540) 2406 0 R (541) 2407 0 R (542) 2408 0 R (543) 2409 0 R (544) 2410 0 R (545) 2411 0 R (546) 2412 0 R (547) 1355 0 R (549) 2413 0 R (55) 2010 0 R (550) 2414 0 R (551) 2415 0 R (552) 2416 0 R (553) 2417 0 R (554) 2418 0 R (557) 2419 0 R (558) 2420 0 R (56) 2011 0 R (560) 2422 0 R (563) 2427 0 R (569) 2431 0 R (57) 2012 0 R (570) 2432 0 R (571) 2433 0 R (573) 2434 0 R (574) 2435 0 R (575) 2436 0 R (577) 2437 0 R (578) 2438 0 R (579) 2439 0 R (58) 2013 0 R (580) 2440 0 R (581) 2441 0 R (582) 2442 0 R (583) 2443 0 R (584) 2444 0 R (585) 2445 0 R (586) 2446 0 R (588) 2447 0 R (589) 2448 0 R (59) 2014 0 R (590) 2449 0 R (591) 2450 0 R (592) 2451 0 R (593) 2452 0 R (594) 2453 0 R (596) 2454 0 R (597) 2455 0 R (598) 2456 0 R (599) 2457 0 R (6.0) 42 0 R (6.10.1) 238 0 R (6.10.21.17.3) 246 0 R (6.10.21.18.3) 250 0 R (6.10.21.19.3) 254 0 R (6.10.21.2) 242 0 R (6.10.21.20.3) 258 0 R (6.10.21.21.3) 262 0 R (6.10.22.2) 266 0 R (6.10.22.22.3) 270 0 R (6.10.22.23.3) 274 0 R (6.10.23.2) 278 0 R (6.11.1) 282 0 R (6.11.24.2) 286 0 R (6.11.25.2) 290 0 R (6.11.25.24.10.4) 302 0 R (6.11.25.24.11.4) 306 0 R (6.11.25.24.3) 294 0 R (6.11.25.24.9.4) 298 0 R (6.11.26.2) 310 0 R (6.11.27.2) 314 0 R (6.11.28.2) 318 0 R (6.11.28.25.3) 322 0 R (6.11.29.2) 326 0 R (6.11.29.26.3) 330 0 R (6.6.1) 46 0 R (6.6.1.2) 50 0 R (6.6.2.1.3) 58 0 R (6.6.2.2) 54 0 R (6.6.2.2.3) 62 0 R (6.6.3.2) 66 0 R (6.6.4.2) 70 0 R (6.6.5.10.3) 106 0 R (6.6.5.11.3) 110 0 R (6.6.5.2) 74 0 R (6.6.5.3.3) 78 0 R (6.6.5.4.3) 82 0 R (6.6.5.5.3) 86 0 R (6.6.5.6.3) 90 0 R (6.6.5.7.3) 94 0 R (6.6.5.8.3) 98 0 R (6.6.5.9.3) 102 0 R (6.6.6.2) 114 0 R (6.6.7.2) 118 0 R (6.7.1) 122 0 R (6.7.10.2) 170 0 R (6.7.11.15.3) 178 0 R (6.7.11.15.7.4) 182 0 R (6.7.11.15.8.4) 186 0 R (6.7.11.16.3) 190 0 R (6.7.11.2) 174 0 R (6.7.12.2) 194 0 R (6.7.8.2) 126 0 R (6.7.9.12.3) 134 0 R (6.7.9.13.1.4) 142 0 R (6.7.9.13.2.4) 146 0 R (6.7.9.13.3) 138 0 R (6.7.9.13.3.4) 150 0 R (6.7.9.13.4.4) 154 0 R (6.7.9.14.3) 158 0 R (6.7.9.14.5.4) 162 0 R (6.7.9.14.6.4) 166 0 R (6.7.9.2) 130 0 R (6.8.1) 198 0 R (6.8.13.2) 202 0 R (6.8.14.2) 206 0 R (6.8.15.2) 210 0 R (6.8.16.2) 214 0 R (6.8.17.2) 218 0 R (6.8.18.2) 222 0 R (6.8.19.2) 226 0 R (6.8.20.2) 230 0 R (6.9.1) 234 0 R (603) 2459 0 R (604) 2460 0 R (605) 2461 0 R (607) 2462 0 R (608) 2463 0 R (609) 2464 0 R (611) 2469 0 R (612) 2470 0 R (613) 2471 0 R (614) 2472 0 R (615) 2473 0 R (616) 2474 0 R (617) 2475 0 R (618) 2476 0 R (619) 2477 0 R (62) 2015 0 R (621) 2478 0 R (622) 2479 0 R (623) 2480 0 R (624) 2481 0 R (625) 2482 0 R (626) 2483 0 R (627) 2484 0 R (628) 2485 0 R (629) 2486 0 R (63) 2016 0 R (630) 2487 0 R (631) 2488 0 R (632) 2489 0 R (633) 2490 0 R (634) 2491 0 R (635) 2492 0 R (636) 2493 0 R (637) 2494 0 R (638) 2495 0 R (639) 2496 0 R (640) 2497 0 R (641) 2498 0 R (642) 2499 0 R (643) 2500 0 R (647) 2501 0 R (648) 2502 0 R (649) 2503 0 R (65) 2017 0 R (650) 2508 0 R (651) 2509 0 R (652) 2510 0 R (653) 2511 0 R (654) 2512 0 R (655) 2513 0 R (656) 2514 0 R (657) 2515 0 R (658) 2516 0 R (659) 2517 0 R (66) 2018 0 R (660) 2518 0 R (661) 2519 0 R (662) 2520 0 R (663) 2521 0 R (664) 2522 0 R (665) 2523 0 R (666) 2524 0 R (667) 2525 0 R (668) 2526 0 R (669) 2527 0 R (67) 2019 0 R (670) 2528 0 R (671) 2529 0 R (672) 2530 0 R (673) 2531 0 R (677) 2533 0 R (678) 2534 0 R (68) 2020 0 R (680) 2536 0 R (681) 2537 0 R (682) 2538 0 R (683) 2539 0 R (685) 2541 0 R (686) 2542 0 R (687) 2543 0 R (688) 2544 0 R (689) 2550 0 R (690) 2551 0 R (691) 2552 0 R (692) 2553 0 R (696) 2555 0 R (697) 1361 0 R (699) 2556 0 R (7.0) 334 0 R (7.12.1) 338 0 R (7.13.1) 342 0 R (7.13.30.2) 346 0 R (7.13.31.2) 350 0 R (7.13.31.27.3) 354 0 R (7.13.31.28.12.4) 362 0 R (7.13.31.28.13.4) 366 0 R (7.13.31.28.3) 358 0 R (7.13.31.29.3) 370 0 R (7.13.31.30.3) 374 0 R (7.13.31.31.3) 378 0 R (7.14.1) 382 0 R (7.15.1) 386 0 R (7.15.32.2) 390 0 R (7.16.1) 394 0 R (7.17.1) 398 0 R (7.18.1) 402 0 R (7.19.1) 406 0 R (7.19.33.2) 410 0 R (7.19.34.2) 414 0 R (7.19.34.32.3) 418 0 R (7.19.35.2) 422 0 R (7.19.36.2) 426 0 R (7.19.36.33.3) 430 0 R (7.19.36.34.3) 434 0 R (7.19.37.2) 438 0 R (7.19.37.35.3) 442 0 R (7.19.37.36.14.4) 450 0 R (7.19.37.36.15.4) 454 0 R (7.19.37.36.16.4) 458 0 R (7.19.37.36.17.4) 462 0 R (7.19.37.36.18.4) 466 0 R (7.19.37.36.19.4) 470 0 R (7.19.37.36.20.4) 474 0 R (7.19.37.36.21.4) 478 0 R (7.19.37.36.22.4) 482 0 R (7.19.37.36.23.4) 486 0 R (7.19.37.36.24.4) 490 0 R (7.19.37.36.3) 446 0 R (7.19.37.37.3) 494 0 R (7.20.1) 498 0 R (7.21.1) 502 0 R (7.21.38.2) 506 0 R (7.21.39.2) 510 0 R (7.21.40.2) 514 0 R (7.22.1) 518 0 R (7.22.41.2) 522 0 R (7.22.42.2) 526 0 R (7.23.1) 530 0 R (7.24.1) 534 0 R (7.25.1) 538 0 R (7.25.43.2) 542 0 R (7.25.44.2) 546 0 R (7.25.45.2) 550 0 R (7.25.46.2) 554 0 R (7.25.46.38.3) 558 0 R (7.25.46.39.3) 562 0 R (7.25.46.40.3) 566 0 R (7.26.1) 570 0 R (7.27.1) 574 0 R (7.27.47.2) 578 0 R (7.27.48.2) 582 0 R (7.27.49.2) 586 0 R (7.27.49.41.3) 590 0 R (7.27.49.42.3) 594 0 R (7.27.49.43.3) 598 0 R (7.27.50.2) 602 0 R (70) 2021 0 R (700) 2557 0 R (701) 2558 0 R (702) 2559 0 R (703) 2562 0 R (704) 2563 0 R (705) 2564 0 R (706) 2565 0 R (707) 2566 0 R (708) 2567 0 R (709) 2568 0 R (71) 2022 0 R (710) 2569 0 R (711) 2570 0 R (712) 2571 0 R (713) 2572 0 R (714) 2573 0 R (715) 2574 0 R (716) 1362 0 R (718) 2575 0 R (719) 2576 0 R (72) 2023 0 R (720) 2577 0 R (721) 2578 0 R (722) 2579 0 R (723) 2580 0 R (724) 2581 0 R (725) 2582 0 R (726) 2583 0 R (727) 2588 0 R (728) 2589 0 R (729) 2590 0 R (73) 2024 0 R (730) 2591 0 R (731) 2592 0 R (734) 2593 0 R (735) 2594 0 R (736) 2595 0 R (737) 2596 0 R (738) 2597 0 R (739) 2598 0 R (742) 2599 0 R (744) 2601 0 R (745) 2602 0 R (746) 2603 0 R (747) 2604 0 R (748) 2605 0 R (749) 2606 0 R (75) 2025 0 R (750) 2607 0 R (753) 2612 0 R (754) 2613 0 R (755) 2614 0 R (756) 2615 0 R (757) 2616 0 R (758) 2617 0 R (759) 2618 0 R (76) 2026 0 R (760) 2619 0 R (761) 2620 0 R (762) 2621 0 R (763) 2622 0 R (766) 2623 0 R (767) 2624 0 R (768) 2625 0 R (77) 2027 0 R (771) 2627 0 R (772) 2628 0 R (773) 2629 0 R (774) 2630 0 R (775) 2631 0 R (778) 2633 0 R (779) 2634 0 R (78) 2028 0 R (782) 2636 0 R (783) 2637 0 R (786) 2639 0 R (787) 2640 0 R (788) 2641 0 R (789) 2642 0 R (792) 2643 0 R (793) 2644 0 R (794) 2649 0 R (795) 2650 0 R (796) 2651 0 R (799) 2653 0 R (8.0) 606 0 R (8.28.1) 610 0 R (8.28.51.2) 614 0 R (8.28.52.2) 618 0 R (8.28.53.2) 622 0 R (8.29.1) 626 0 R (8.29.54.2) 630 0 R (8.29.55.2) 634 0 R (8.29.56.2) 638 0 R (8.30.1) 642 0 R (8.30.57.2) 646 0 R (8.31.1) 650 0 R (8.31.58.2) 654 0 R (80) 2029 0 R (800) 2654 0 R (801) 2655 0 R (804) 2657 0 R (805) 2658 0 R (806) 2659 0 R (807) 2660 0 R (808) 2661 0 R (81) 2030 0 R (811) 2663 0 R (812) 2664 0 R (813) 2665 0 R (814) 2666 0 R (815) 2667 0 R (816) 2668 0 R (817) 2669 0 R (818) 2670 0 R (819) 2671 0 R (82) 2031 0 R (820) 2672 0 R (823) 2674 0 R (824) 2675 0 R (825) 2676 0 R (826) 2677 0 R (829) 2679 0 R (83) 2032 0 R (830) 2680 0 R (831) 2681 0 R (832) 2682 0 R (835) 2689 0 R (836) 2690 0 R (837) 2691 0 R (838) 2692 0 R (841) 2694 0 R (842) 2695 0 R (843) 2696 0 R (844) 2697 0 R (847) 2698 0 R (848) 2699 0 R (849) 2700 0 R (85) 2033 0 R (850) 2701 0 R (851) 2702 0 R (852) 2703 0 R (853) 2704 0 R (854) 2705 0 R (855) 2706 0 R (856) 2707 0 R (857) 2708 0 R (858) 2709 0 R (86) 2034 0 R (861) 2710 0 R (862) 2711 0 R (863) 2712 0 R (864) 2713 0 R (865) 2714 0 R (866) 2715 0 R (867) 2716 0 R (868) 2717 0 R (869) 2718 0 R (87) 2035 0 R (870) 2719 0 R (871) 2720 0 R (872) 2721 0 R (873) 2722 0 R (874) 2727 0 R (875) 2728 0 R (878) 2729 0 R (879) 2730 0 R (88) 2036 0 R (880) 2731 0 R (883) 2732 0 R (884) 2733 0 R (887) 2734 0 R (888) 2735 0 R (889) 2736 0 R (890) 2737 0 R (891) 2738 0 R (894) 2739 0 R (897) 2742 0 R (898) 2743 0 R (899) 2744 0 R (9.0) 658 0 R (9.32.1) 662 0 R (9.33.1) 666 0 R (9.34.1) 670 0 R (9.35.1) 674 0 R (9.36.1) 678 0 R (9.36.59.2) 682 0 R (9.36.59.44.3) 686 0 R (9.36.59.45.3) 690 0 R (9.36.59.46.3) 694 0 R (9.36.60.2) 698 0 R (9.36.61.2) 702 0 R (9.36.62.2) 706 0 R (9.36.63.2) 710 0 R (9.37.1) 714 0 R (9.37.64.2) 718 0 R (9.37.65.2) 722 0 R (9.38.1) 726 0 R (9.38.66.2) 730 0 R (9.38.66.47.3) 734 0 R (9.38.66.48.3) 738 0 R (9.38.66.49.3) 742 0 R (9.38.66.50.3) 746 0 R (9.38.66.51.3) 750 0 R (9.38.66.52.3) 754 0 R (9.38.66.53.3) 758 0 R (9.39.1) 762 0 R (9.39.67.2) 766 0 R (9.39.68.2) 770 0 R (9.39.69.2) 774 0 R (9.39.70.2) 778 0 R (9.40.1) 782 0 R (9.41.1) 786 0 R (9.41.71.2) 790 0 R (9.41.72.2) 794 0 R (9.41.73.2) 798 0 R (9.41.74.2) 802 0 R (9.41.75.2) 806 0 R (9.42.1) 810 0 R (9.42.76.2) 814 0 R (9.42.77.2) 818 0 R (9.42.77.54.3) 822 0 R (9.42.77.55.3) 826 0 R (9.43.1) 830 0 R (9.44.1) 834 0 R (9.44.78.2) 838 0 R (9.44.79.2) 842 0 R (9.44.80.2) 846 0 R (9.44.81.2) 850 0 R (90) 2037 0 R (900) 2751 0 R (901) 2752 0 R (902) 2753 0 R (903) 2754 0 R (904) 2755 0 R (905) 2756 0 R (906) 2757 0 R (907) 2758 0 R (908) 2759 0 R (909) 2760 0 R (91) 2038 0 R (910) 2761 0 R (913) 2762 0 R (916) 2763 0 R (919) 2766 0 R (92) 2039 0 R (920) 2767 0 R (921) 2768 0 R (922) 2769 0 R (923) 2770 0 R (924) 2771 0 R (925) 2772 0 R (928) 2773 0 R (93) 2040 0 R (932) 2778 0 R (935) 2779 0 R (936) 2780 0 R (937) 2781 0 R (941) 2783 0 R (942) 2784 0 R (943) 2785 0 R (944) 2786 0 R (945) 2787 0 R (946) 2788 0 R (948) 2790 0 R (949) 2791 0 R (95) 2041 0 R (950) 2792 0 R (951) 2793 0 R (952) 2794 0 R (953) 2795 0 R (954) 2796 0 R (955) 2797 0 R (956) 2798 0 R (957) 2799 0 R (958) 2800 0 R (959) 2801 0 R (96) 2042 0 R (963) 2804 0 R (964) 2805 0 R (966) 2806 0 R (968) 2807 0 R (97) 2043 0 R (971) 2813 0 R (972) 2814 0 R (973) 2815 0 R (976) 1480 0 R (978) 2816 0 R (98) 2044 0 R (980) 1481 0 R (982) 2818 0 R (983) 2819 0 R (984) 2820 0 R (985) 2821 0 R (986) 2822 0 R (987) 2823 0 R (988) 1482 0 R (99) 2045 0 R (990) 2824 0 R (992) 2825 0 R (993) 2826 0 R (994) 2831 0 R (996) 2832 0 R (997) 2833 0 R (998) 2834 0 R (999) 2835 0 R (Doc-Start) 1214 0 R (about) 1323 0 R (accountpreferences) 1787 0 R (add-custom-fields) 1613 0 R (administration) 1489 0 R (apache-addtype) 1466 0 R (attachments) 1768 0 R (bonsai) 1909 0 R (boolean) 1757 0 R (bug_page) 1754 0 R (bugreports) 1765 0 R (bzldap) 1367 0 R (bzradius) 1366 0 R (casesensitivity) 1762 0 R (charts) 1791 0 R (charts-new-series) 1793 0 R (classifications) 1499 0 R (cloningbugs) 1767 0 R (cmdline) 1925 0 R (cmdline-bugmail) 1926 0 R (comment-wrapping) 1780 0 R (commenting) 1779 0 R (components) 1502 0 R (configuration) 1349 0 R (conventions) 1328 0 R (copyright) 1324 0 R (create-groups) 1622 0 R (createnewusers) 1495 0 R (credits) 1327 0 R (cust-change-permissions) 1907 0 R (cust-hooks) 1906 0 R (cust-skins) 1898 0 R (cust-templates) 1899 0 R (custom-fields) 1612 0 R (customization) 1897 0 R (cvs) 1910 0 R (database-engine) 1351 0 R (database-schema) 1352 0 R (defaultuser) 1492 0 R (delete-custom-fields) 1615 0 R (dependencytree) 1781 0 R (disclaimer) 1325 0 R (edit-custom-fields) 1614 0 R (edit-groups) 1623 0 R (edit-values) 1616 0 R (edit-values-delete) 1618 0 R (edit-values-list) 1617 0 R (emailpreferences) 1785 0 R (extraconfig) 1360 0 R (fillingbugs) 1766 0 R (flag-askto) 1509 0 R (flag-type-attachment) 1511 0 R (flag-type-bug) 1512 0 R (flag-types) 1510 0 R (flag-values) 1508 0 R (flags) 1794 0 R (flags-about) 1507 0 R (flags-admin) 1607 0 R (flags-create) 1609 0 R (flags-create-field-active) 3393 0 R (flags-create-field-category) 3357 0 R (flags-create-field-cclist) 3416 0 R (flags-create-field-description) 3353 0 R (flags-create-field-multiplicable) 3411 0 R (flags-create-field-name) 3346 0 R (flags-create-field-requestable) 3401 0 R (flags-create-field-sortkey) 3389 0 R (flags-create-field-specific) 3408 0 R (flags-create-grant-group) 3418 0 R (flags-create-request-group) 3423 0 R (flags-delete) 1610 0 R (flags-edit) 1608 0 R (flags-overview) 1505 0 R (flags-simpleexample) 1506 0 R (general-advice) 1915 0 R (generalpreferences) 1784 0 R (gfdl) 1931 0 R (gfdl-0) 1932 0 R (gfdl-1) 1933 0 R (gfdl-10) 1952 0 R (gfdl-2) 1934 0 R (gfdl-3) 1935 0 R (gfdl-4) 1936 0 R (gfdl-5) 1937 0 R (gfdl-6) 1938 0 R (gfdl-7) 1939 0 R (gfdl-8) 1940 0 R (gfdl-9) 1941 0 R (gfdl-howto) 1953 0 R (gloss-a) 4987 0 R (gloss-apache) 4988 0 R (gloss-b) 5027 0 R (gloss-bugzilla) 2073 0 R (gloss-c) 5043 0 R (gloss-cgi) 2138 0 R (gloss-component) 5048 0 R (gloss-contrib) 2683 0 R (gloss-cpan) 2808 0 R (gloss-d) 5068 0 R (gloss-daemon) 3747 0 R (gloss-dos) 5073 0 R (gloss-g) 5076 0 R (gloss-groups) 5077 0 R (gloss-htaccess) 3854 0 R (gloss-j) 5083 0 R (gloss-javascript) 5084 0 R (gloss-m) 5064 0 R (gloss-mta) 5091 0 R (gloss-mysql) 5099 0 R (gloss-p) 5119 0 R (gloss-ppm) 2746 0 R (gloss-product) 3131 0 R (gloss-q) 5134 0 R (gloss-r) 5143 0 R (gloss-rdbms) 5125 0 R (gloss-regexp) 5146 0 R (gloss-s) 5150 0 R (gloss-service) 3748 0 R (gloss-t) 5173 0 R (gloss-target-milestone) 5174 0 R (gloss-tcl) 5178 0 R (gloss-z) 5181 0 R (gloss-zarro) 5182 0 R (glossary) 1954 0 R (groups) 1621 0 R (hintsandtips) 1777 0 R (http) 1356 0 R (http-apache) 1357 0 R (http-apache-mod_cgi) 2430 0 R (http-apache-mod_perl) 2458 0 R (http-iis) 1358 0 R (impersonatingusers) 1498 0 R (index) 1215 0 R (individual-buglists) 1764 0 R (install-MTA) 1347 0 R (install-bzfiles) 1336 0 R (install-config-bugzilla) 1359 0 R (install-database) 1332 0 R (install-modules-chart-base) 1341 0 R (install-modules-dbd-mysql) 1338 0 R (install-modules-gd) 1340 0 R (install-modules-gd-graph) 1342 0 R (install-modules-gd-text) 1343 0 R (install-modules-patchreader) 1346 0 R (install-modules-soap-lite) 1345 0 R (install-modules-template) 1339 0 R (install-modules-xml-twig) 1344 0 R (install-mysql) 1333 0 R (install-perl) 1331 0 R (install-perlmodules) 1337 0 R (install-perlmodules-manual) 1927 0 R (install-perlmodules-nonroot) 1484 0 R (install-pg) 1334 0 R (install-setupdatabase) 2331 0 R (install-setupdatabase-adduser) 2322 0 R (install-webserver) 1335 0 R (installation) 1330 0 R (installation-whining) 1364 0 R (installation-whining-cron) 1363 0 R (installing-bugzilla) 1329 0 R (integration) 1908 0 R (keywords) 1611 0 R (lifecycle) 1755 0 R (lifecycle-image) 1971 0 R (list) 1763 0 R (localconfig) 1350 0 R (macosx-libraries) 1477 0 R (macosx-sendmail) 1476 0 R (manageusers) 1493 0 R (milestones) 1504 0 R (modifyusers) 1496 0 R (modules-manual-download) 1929 0 R (modules-manual-instructions) 1928 0 R (modules-manual-optional) 1930 0 R (multiple-bz-dbs) 1467 0 R (multiplecharts) 1760 0 R (myaccount) 1753 0 R (mysql) 1353 0 R (negation) 1759 0 R (newversions) 1326 0 R (nonroot) 1479 0 R (os-linux) 1478 0 R (os-macosx) 1475 0 R (os-specific) 1468 0 R (os-win32) 1469 0 R (page.1) 1213 0 R (page.10) 2288 0 R (page.100) 4961 0 R (page.101) 4975 0 R (page.102) 4981 0 R (page.103) 5031 0 R (page.104) 5063 0 R (page.105) 5090 0 R (page.106) 5129 0 R (page.107) 5158 0 R (page.11) 2321 0 R (page.12) 2347 0 R (page.13) 2392 0 R (page.14) 2426 0 R (page.15) 2468 0 R (page.16) 2507 0 R (page.17) 2549 0 R (page.18) 2587 0 R (page.19) 2611 0 R (page.2) 1222 0 R (page.20) 2648 0 R (page.21) 2687 0 R (page.22) 2726 0 R (page.23) 2750 0 R (page.24) 2777 0 R (page.25) 2812 0 R (page.26) 2830 0 R (page.27) 2853 0 R (page.28) 2882 0 R (page.29) 2904 0 R (page.3) 1228 0 R (page.30) 2938 0 R (page.31) 2965 0 R (page.32) 2988 0 R (page.33) 3016 0 R (page.34) 3067 0 R (page.35) 3094 0 R (page.36) 3135 0 R (page.37) 3189 0 R (page.38) 3229 0 R (page.39) 3273 0 R (page.4) 1371 0 R (page.40) 3313 0 R (page.41) 3351 0 R (page.42) 3397 0 R (page.43) 3429 0 R (page.44) 3455 0 R (page.45) 3487 0 R (page.46) 3518 0 R (page.47) 3556 0 R (page.48) 3577 0 R (page.49) 3597 0 R (page.5) 1516 0 R (page.50) 3620 0 R (page.51) 3652 0 R (page.52) 3685 0 R (page.53) 3713 0 R (page.54) 3722 0 R (page.55) 3752 0 R (page.56) 3781 0 R (page.57) 3858 0 R (page.58) 3874 0 R (page.59) 3903 0 R (page.6) 1654 0 R (page.60) 3954 0 R (page.61) 3988 0 R (page.62) 3999 0 R (page.63) 4033 0 R (page.64) 4054 0 R (page.65) 4082 0 R (page.66) 4105 0 R (page.67) 4122 0 R (page.68) 4134 0 R (page.69) 4150 0 R (page.7) 1802 0 R (page.70) 4189 0 R (page.71) 4232 0 R (page.72) 4270 0 R (page.73) 4298 0 R (page.74) 4314 0 R (page.75) 4334 0 R (page.76) 4351 0 R (page.77) 4369 0 R (page.78) 4397 0 R (page.79) 4429 0 R (page.8) 1945 0 R (page.80) 4456 0 R (page.81) 4494 0 R (page.82) 4512 0 R (page.83) 4548 0 R (page.84) 4580 0 R (page.85) 4602 0 R (page.86) 4620 0 R (page.87) 4636 0 R (page.88) 4663 0 R (page.89) 4689 0 R (page.9) 1958 0 R (page.90) 4711 0 R (page.91) 4728 0 R (page.92) 4772 0 R (page.93) 4799 0 R (page.94) 4830 0 R (page.95) 4861 0 R (page.96) 4885 0 R (page.97) 4901 0 R (page.98) 4912 0 R (page.99) 4949 0 R (param-LDAPBaseDN) 2678 0 R (param-LDAPbinddn) 2673 0 R (param-LDAPmailattribute) 2693 0 R (param-LDAPserver) 2662 0 R (param-LDAPuidattribute) 2688 0 R (param-RADIUS_email_suffix) 2638 0 R (param-RADIUS_secret) 2635 0 R (param-RADIUS_server) 2632 0 R (param-user_verify_class_for_ldap) 2656 0 R (param-user_verify_class_for_radius) 2626 0 R (parameters) 1490 0 R (paranoid-security) 1919 0 R (patch-viewer) 1365 0 R (patches) 1924 0 R (patchviewer) 1769 0 R (patchviewer_bonsai_lxr) 1775 0 R (patchviewer_collapse) 1773 0 R (patchviewer_context) 1772 0 R (patchviewer_diff) 1771 0 R (patchviewer_link) 1774 0 R (patchviewer_unified_diff) 1776 0 R (patchviewer_view) 1770 0 R (permissionsettings) 1788 0 R (postgresql) 1354 0 R (product-group-controls) 1501 0 R (products) 1500 0 R (pronouns) 1758 0 R (query) 1756 0 R (quicksearch) 1761 0 R (quips) 1620 0 R (reporting) 1789 0 R (reports) 1790 0 R (sanitycheck) 1629 0 R (savedsearches) 1786 0 R (scm) 1911 0 R (security) 1638 0 R (security-bugzilla) 1649 0 R (security-bugzilla-charset) 1650 0 R (security-mysql) 1643 0 R (security-mysql-account) 1644 0 R (security-mysql-account-anonymous) 1973 0 R (security-mysql-account-root) 1972 0 R (security-mysql-network) 1646 0 R (security-mysql-network-ex) 1974 0 R (security-mysql-root) 1645 0 R (security-os) 1639 0 R (security-os-accounts) 1641 0 R (security-os-chroot) 1642 0 R (security-os-ports) 1640 0 R (security-webserver) 1647 0 R (security-webserver-access) 1648 0 R (self-registration) 2995 0 R (suexec) 1488 0 R (svn) 1912 0 R (table.1) 2067 0 R (table.2) 3915 0 R (table.3) 3968 0 R (table.4) 4049 0 R (table.5) 4116 0 R (table.6) 4137 0 R (table.7) 4532 0 R (template-directory) 1900 0 R (template-edit) 1902 0 R (template-formats) 1903 0 R (template-http-accept) 1905 0 R (template-method) 1901 0 R (template-specific) 1904 0 R (timetracking) 1782 0 R (tinderbox) 1913 0 R (trbl-dbdSponge) 1918 0 R (trbl-index) 1922 0 R (trbl-passwd-encryption) 1923 0 R (trbl-perlmodule) 1917 0 R (trbl-relogin-everyone) 1920 0 R (trbl-relogin-everyone-restrict) 1976 0 R (trbl-relogin-everyone-share) 1975 0 R (trbl-relogin-some) 1921 0 R (trbl-testserver) 1916 0 R (troubleshooting) 1914 0 R (upgrade-cvs) 1634 0 R (upgrade-patches) 1636 0 R (upgrade-tarball) 1635 0 R (upgrading) 1630 0 R (upgrading-completion) 1637 0 R (upgrading-methods) 1633 0 R (upgrading-notifications) 1632 0 R (upgrading-version-defns) 1631 0 R (user-account-creation) 3001 0 R (user-account-deletion) 1497 0 R (user-account-search) 1494 0 R (useradmin) 1491 0 R (userpreferences) 1783 0 R (using) 1751 0 R (using-intro) 1752 0 R (using-mod_perl-with-bugzilla) 1348 0 R (versions) 1503 0 R (voting) 1619 0 R (whining) 1795 0 R (whining-overview) 1796 0 R (whining-query) 1798 0 R (whining-schedule) 1797 0 R (win32-code-changes) 1472 0 R (win32-email) 1474 0 R (win32-http) 1473 0 R (win32-perl) 1470 0 R (win32-perl-modules) 1471 0 R]
 /Limits [(1.0) (win32-perl-modules)]
 >> endobj
-5505 0 obj <<
-/Kids [5504 0 R]
+5197 0 obj <<
+/Kids [5196 0 R]
 >> endobj
-5506 0 obj <<
-/Dests 5505 0 R
+5198 0 obj <<
+/Dests 5197 0 R
 >> endobj
-5507 0 obj <<
+5199 0 obj <<
 /Type /Catalog
-/Pages 5502 0 R
-/Outlines 5503 0 R
-/Names 5506 0 R
+/Pages 5194 0 R
+/Outlines 5195 0 R
+/Names 5198 0 R
 /PageMode /UseOutlines /URI<</Base()>>  /ViewerPreferences<<>> 
-/OpenAction 1193 0 R
+/OpenAction 1209 0 R
 /PTEX.Fullbanner (This is pdfTeX, Version 3.14159-1.10b)
 >> endobj
-5508 0 obj <<
+5200 0 obj <<
 /Author()/Title()/Subject()/Creator(LaTeX with hyperref package)/Producer(pdfTeX-1.10b)/Keywords()
-/CreationDate (D:20070918180100)
+/CreationDate (D:20080201164100)
 >> endobj
 xref
-0 5509
-0000001200 65535 f 
+0 5201
+0000001216 65535 f 
 0000000009 00000 n 
-0000028027 00000 n 
-0001033009 00000 n 
+0000028452 00000 n 
+0000989276 00000 n 
 0000000048 00000 n 
 0000000110 00000 n 
-0000100943 00000 n 
-0001032924 00000 n 
+0000101369 00000 n 
+0000989191 00000 n 
 0000000149 00000 n 
 0000000184 00000 n 
-0000394938 00000 n 
-0001032837 00000 n 
+0000402435 00000 n 
+0000989104 00000 n 
 0000000223 00000 n 
 0000000257 00000 n 
-0000395000 00000 n 
-0001032748 00000 n 
+0000402497 00000 n 
+0000989015 00000 n 
 0000000297 00000 n 
 0000000332 00000 n 
-0000398204 00000 n 
-0001032622 00000 n 
+0000405702 00000 n 
+0000988889 00000 n 
 0000000372 00000 n 
 0000000418 00000 n 
-0000398329 00000 n 
-0001032548 00000 n 
+0000405827 00000 n 
+0000988815 00000 n 
 0000000460 00000 n 
 0000000505 00000 n 
-0000398706 00000 n 
-0001032461 00000 n 
+0000406204 00000 n 
+0000988728 00000 n 
 0000000547 00000 n 
 0000000581 00000 n 
-0000399020 00000 n 
-0001032374 00000 n 
+0000406518 00000 n 
+0000988641 00000 n 
 0000000623 00000 n 
 0000000659 00000 n 
-0000403127 00000 n 
-0001032287 00000 n 
+0000410625 00000 n 
+0000988554 00000 n 
 0000000701 00000 n 
 0000000732 00000 n 
-0000407958 00000 n 
-0001032213 00000 n 
+0000415420 00000 n 
+0000988480 00000 n 
 0000000774 00000 n 
 0000000818 00000 n 
-0000412599 00000 n 
-0001032085 00000 n 
+0000420061 00000 n 
+0000988352 00000 n 
 0000000858 00000 n 
 0000000907 00000 n 
-0000412724 00000 n 
-0001031972 00000 n 
+0000420186 00000 n 
+0000988239 00000 n 
 0000000949 00000 n 
 0000000985 00000 n 
-0000414046 00000 n 
-0001031898 00000 n 
+0000421508 00000 n 
+0000988165 00000 n 
 0000001029 00000 n 
 0000001059 00000 n 
-0000417125 00000 n 
-0001031774 00000 n 
+0000424587 00000 n 
+0000988041 00000 n 
 0000001103 00000 n 
 0000001144 00000 n 
-0000417313 00000 n 
-0001031700 00000 n 
+0000424775 00000 n 
+0000987967 00000 n 
 0000001190 00000 n 
 0000001223 00000 n 
-0000418008 00000 n 
-0001031626 00000 n 
+0000425470 00000 n 
+0000987893 00000 n 
 0000001269 00000 n 
 0000001307 00000 n 
-0000418449 00000 n 
-0001031539 00000 n 
+0000425911 00000 n 
+0000987806 00000 n 
 0000001351 00000 n 
 0000001387 00000 n 
-0000418890 00000 n 
-0001031452 00000 n 
+0000426352 00000 n 
+0000987719 00000 n 
 0000001431 00000 n 
 0000001465 00000 n 
-0000423574 00000 n 
-0001031326 00000 n 
+0000431034 00000 n 
+0000987593 00000 n 
 0000001509 00000 n 
 0000001547 00000 n 
-0000434938 00000 n 
-0001031252 00000 n 
+0000442262 00000 n 
+0000987519 00000 n 
 0000001593 00000 n 
 0000001631 00000 n 
-0000435189 00000 n 
-0001031165 00000 n 
+0000442513 00000 n 
+0000987432 00000 n 
 0000001677 00000 n 
 0000001730 00000 n 
-0000435377 00000 n 
-0001031078 00000 n 
+0000442701 00000 n 
+0000987345 00000 n 
 0000001776 00000 n 
 0000001815 00000 n 
-0000436068 00000 n 
-0001030991 00000 n 
+0000443394 00000 n 
+0000987258 00000 n 
 0000001861 00000 n 
 0000001908 00000 n 
-0000436256 00000 n 
-0001030904 00000 n 
+0000443582 00000 n 
+0000987171 00000 n 
 0000001954 00000 n 
 0000001999 00000 n 
-0000439249 00000 n 
-0001030815 00000 n 
+0000443770 00000 n 
+0000987082 00000 n 
 0000002045 00000 n 
 0000002090 00000 n 
-0000439437 00000 n 
-0001030724 00000 n 
+0000446916 00000 n 
+0000986991 00000 n 
 0000002137 00000 n 
 0000002183 00000 n 
-0000439690 00000 n 
-0001030632 00000 n 
+0000447169 00000 n 
+0000986899 00000 n 
 0000002231 00000 n 
 0000002278 00000 n 
-0000439879 00000 n 
-0001030554 00000 n 
+0000447358 00000 n 
+0000986821 00000 n 
 0000002326 00000 n 
 0000002376 00000 n 
-0000440068 00000 n 
-0001030463 00000 n 
+0000447547 00000 n 
+0000986730 00000 n 
 0000002421 00000 n 
 0000002475 00000 n 
-0000443985 00000 n 
-0001030385 00000 n 
+0000448240 00000 n 
+0000986652 00000 n 
 0000002520 00000 n 
 0000002577 00000 n 
-0000444747 00000 n 
-0001030255 00000 n 
+0000452232 00000 n 
+0000986522 00000 n 
 0000002620 00000 n 
 0000002658 00000 n 
-0000445000 00000 n 
-0001030176 00000 n 
+0000452483 00000 n 
+0000986443 00000 n 
 0000002703 00000 n 
 0000002741 00000 n 
-0000449422 00000 n 
-0001030044 00000 n 
+0000457111 00000 n 
+0000986311 00000 n 
 0000002786 00000 n 
 0000002828 00000 n 
-0000449611 00000 n 
-0001029965 00000 n 
+0000457300 00000 n 
+0000986232 00000 n 
 0000002876 00000 n 
 0000002929 00000 n 
-0000449864 00000 n 
-0001029833 00000 n 
+0000457553 00000 n 
+0000986100 00000 n 
 0000002977 00000 n 
 0000003011 00000 n 
-0000450117 00000 n 
-0001029754 00000 n 
+0000457806 00000 n 
+0000986021 00000 n 
 0000003061 00000 n 
 0000003115 00000 n 
-0000450684 00000 n 
-0001029661 00000 n 
+0000458373 00000 n 
+0000985928 00000 n 
 0000003165 00000 n 
 0000003233 00000 n 
-0000454316 00000 n 
-0001029568 00000 n 
+0000462005 00000 n 
+0000985835 00000 n 
 0000003283 00000 n 
 0000003333 00000 n 
-0000455457 00000 n 
-0001029489 00000 n 
+0000463146 00000 n 
+0000985756 00000 n 
 0000003383 00000 n 
 0000003457 00000 n 
-0000456344 00000 n 
-0001029371 00000 n 
+0000464033 00000 n 
+0000985638 00000 n 
 0000003505 00000 n 
 0000003544 00000 n 
-0000456470 00000 n 
-0001029292 00000 n 
+0000464159 00000 n 
+0000985559 00000 n 
 0000003594 00000 n 
 0000003649 00000 n 
-0000460402 00000 n 
-0001029213 00000 n 
+0000468091 00000 n 
+0000985480 00000 n 
 0000003699 00000 n 
 0000003750 00000 n 
-0000461287 00000 n 
-0001029120 00000 n 
+0000468976 00000 n 
+0000985387 00000 n 
 0000003796 00000 n 
 0000003836 00000 n 
-0000461789 00000 n 
-0001028988 00000 n 
+0000469478 00000 n 
+0000985255 00000 n 
 0000003882 00000 n 
 0000003919 00000 n 
-0000465467 00000 n 
-0001028870 00000 n 
+0000473156 00000 n 
+0000985137 00000 n 
 0000003968 00000 n 
 0000004018 00000 n 
-0000465656 00000 n 
-0001028791 00000 n 
+0000473345 00000 n 
+0000985058 00000 n 
 0000004069 00000 n 
 0000004124 00000 n 
-0000467491 00000 n 
-0001028712 00000 n 
+0000475180 00000 n 
+0000984979 00000 n 
 0000004175 00000 n 
 0000004231 00000 n 
-0000473421 00000 n 
-0001028633 00000 n 
+0000481118 00000 n 
+0000984900 00000 n 
 0000004280 00000 n 
 0000004348 00000 n 
-0000479157 00000 n 
-0001028554 00000 n 
+0000486853 00000 n 
+0000984821 00000 n 
 0000004394 00000 n 
 0000004429 00000 n 
-0000482782 00000 n 
-0001028423 00000 n 
+0000490478 00000 n 
+0000984690 00000 n 
 0000004472 00000 n 
 0000004530 00000 n 
-0000482970 00000 n 
-0001028344 00000 n 
+0000490666 00000 n 
+0000984611 00000 n 
 0000004576 00000 n 
 0000004613 00000 n 
-0000484165 00000 n 
-0001028251 00000 n 
+0000491861 00000 n 
+0000984518 00000 n 
 0000004659 00000 n 
 0000004703 00000 n 
-0000487891 00000 n 
-0001028158 00000 n 
+0000495587 00000 n 
+0000984425 00000 n 
 0000004749 00000 n 
 0000004792 00000 n 
-0000488395 00000 n 
-0001028065 00000 n 
+0000496091 00000 n 
+0000984332 00000 n 
 0000004838 00000 n 
 0000004872 00000 n 
-0000491714 00000 n 
-0001027972 00000 n 
+0000499410 00000 n 
+0000984239 00000 n 
 0000004918 00000 n 
 0000004957 00000 n 
-0000492537 00000 n 
-0001027879 00000 n 
+0000500233 00000 n 
+0000984146 00000 n 
 0000005003 00000 n 
 0000005051 00000 n 
-0000493921 00000 n 
-0001027786 00000 n 
+0000501617 00000 n 
+0000984053 00000 n 
 0000005097 00000 n 
 0000005143 00000 n 
-0000502830 00000 n 
-0001027707 00000 n 
+0000510526 00000 n 
+0000983974 00000 n 
 0000005189 00000 n 
 0000005266 00000 n 
-0000503718 00000 n 
-0001027615 00000 n 
+0000511414 00000 n 
+0000983882 00000 n 
 0000005309 00000 n 
 0000005388 00000 n 
-0000507752 00000 n 
-0001027484 00000 n 
+0000515410 00000 n 
+0000983751 00000 n 
 0000005432 00000 n 
 0000005486 00000 n 
-0000508068 00000 n 
-0001027366 00000 n 
+0000515726 00000 n 
+0000983633 00000 n 
 0000005533 00000 n 
 0000005577 00000 n 
-0000508257 00000 n 
-0001027287 00000 n 
+0000515978 00000 n 
+0000983554 00000 n 
 0000005627 00000 n 
 0000005666 00000 n 
-0000508573 00000 n 
-0001027194 00000 n 
+0000516421 00000 n 
+0000983461 00000 n 
 0000005716 00000 n 
 0000005766 00000 n 
-0000512412 00000 n 
-0001027101 00000 n 
+0000520314 00000 n 
+0000983368 00000 n 
 0000005816 00000 n 
 0000005882 00000 n 
-0000512599 00000 n 
-0001027008 00000 n 
+0000520501 00000 n 
+0000983275 00000 n 
 0000005932 00000 n 
 0000005982 00000 n 
-0000513040 00000 n 
-0001026929 00000 n 
+0000521133 00000 n 
+0000983196 00000 n 
 0000006032 00000 n 
 0000006074 00000 n 
-0000513229 00000 n 
-0001026797 00000 n 
+0000524701 00000 n 
+0000983064 00000 n 
 0000006121 00000 n 
 0000006156 00000 n 
-0000513418 00000 n 
-0001026718 00000 n 
+0000524890 00000 n 
+0000982985 00000 n 
 0000006206 00000 n 
 0000006243 00000 n 
-0000516849 00000 n 
-0001026639 00000 n 
+0000525206 00000 n 
+0000982906 00000 n 
 0000006293 00000 n 
 0000006361 00000 n 
-0000518242 00000 n 
-0001026560 00000 n 
+0000529562 00000 n 
+0000982827 00000 n 
 0000006408 00000 n 
-0000006452 00000 n 
-0000521790 00000 n 
-0001026443 00000 n 
-0000006496 00000 n 
-0000006556 00000 n 
-0000521916 00000 n 
-0001026364 00000 n 
-0000006603 00000 n 
-0000006642 00000 n 
-0000522104 00000 n 
-0001026232 00000 n 
-0000006689 00000 n 
-0000006721 00000 n 
-0000522611 00000 n 
-0001026128 00000 n 
-0000006771 00000 n 
-0000006824 00000 n 
-0000522737 00000 n 
-0001026049 00000 n 
-0000006876 00000 n 
-0000006938 00000 n 
-0000525295 00000 n 
-0001025956 00000 n 
-0000006991 00000 n 
-0000007045 00000 n 
-0000525611 00000 n 
-0001025877 00000 n 
-0000007098 00000 n 
-0000007148 00000 n 
-0000526625 00000 n 
-0001025784 00000 n 
-0000007195 00000 n 
-0000007226 00000 n 
-0000529652 00000 n 
-0001025652 00000 n 
-0000007273 00000 n 
-0000007312 00000 n 
-0000529840 00000 n 
-0001025573 00000 n 
-0000007362 00000 n 
-0000007413 00000 n 
-0000530663 00000 n 
-0001025494 00000 n 
-0000007463 00000 n 
-0000007508 00000 n 
-0000537610 00000 n 
-0001025362 00000 n 
-0000007555 00000 n 
-0000007593 00000 n 
-0000537799 00000 n 
-0001025297 00000 n 
-0000007643 00000 n 
-0000007697 00000 n 
-0000538367 00000 n 
-0001025218 00000 n 
-0000007744 00000 n 
-0000007779 00000 n 
-0000543521 00000 n 
-0001025085 00000 n 
-0000007820 00000 n 
+0000006454 00000 n 
+0000529878 00000 n 
+0000982710 00000 n 
+0000006498 00000 n 
+0000006558 00000 n 
+0000530004 00000 n 
+0000982631 00000 n 
+0000006605 00000 n 
+0000006644 00000 n 
+0000530192 00000 n 
+0000982499 00000 n 
+0000006691 00000 n 
+0000006723 00000 n 
+0000530700 00000 n 
+0000982395 00000 n 
+0000006773 00000 n 
+0000006826 00000 n 
+0000530826 00000 n 
+0000982316 00000 n 
+0000006878 00000 n 
+0000006940 00000 n 
+0000533176 00000 n 
+0000982223 00000 n 
+0000006993 00000 n 
+0000007047 00000 n 
+0000533493 00000 n 
+0000982144 00000 n 
+0000007100 00000 n 
+0000007150 00000 n 
+0000536924 00000 n 
+0000982051 00000 n 
+0000007197 00000 n 
+0000007228 00000 n 
+0000537932 00000 n 
+0000981958 00000 n 
+0000007275 00000 n 
+0000007314 00000 n 
+0000538312 00000 n 
+0000981826 00000 n 
+0000007361 00000 n 
+0000007399 00000 n 
+0000538500 00000 n 
+0000981761 00000 n 
+0000007449 00000 n 
+0000007503 00000 n 
+0000541819 00000 n 
+0000981643 00000 n 
+0000007550 00000 n 
+0000007585 00000 n 
+0000542454 00000 n 
+0000981578 00000 n 
+0000007635 00000 n 
+0000007688 00000 n 
+0000545824 00000 n 
+0000981445 00000 n 
+0000007729 00000 n 
+0000007782 00000 n 
+0000545950 00000 n 
+0000981366 00000 n 
+0000007826 00000 n 
 0000007873 00000 n 
-0000543647 00000 n 
-0001025006 00000 n 
+0000556210 00000 n 
+0000981234 00000 n 
 0000007917 00000 n 
-0000007964 00000 n 
-0000553907 00000 n 
-0001024874 00000 n 
+0000007961 00000 n 
+0000556335 00000 n 
+0000981155 00000 n 
 0000008008 00000 n 
-0000008052 00000 n 
-0000554032 00000 n 
-0001024795 00000 n 
-0000008099 00000 n 
-0000008151 00000 n 
-0000557195 00000 n 
-0001024677 00000 n 
-0000008198 00000 n 
-0000008245 00000 n 
-0000557321 00000 n 
-0001024598 00000 n 
-0000008295 00000 n 
-0000008352 00000 n 
-0000557825 00000 n 
-0001024466 00000 n 
-0000008402 00000 n 
-0000008449 00000 n 
-0000557951 00000 n 
-0001024387 00000 n 
-0000008502 00000 n 
-0000008549 00000 n 
-0000558329 00000 n 
-0001024308 00000 n 
-0000008602 00000 n 
-0000008669 00000 n 
-0000559148 00000 n 
-0001024215 00000 n 
-0000008719 00000 n 
-0000008763 00000 n 
-0000569566 00000 n 
-0001024122 00000 n 
-0000008813 00000 n 
-0000008856 00000 n 
-0000569818 00000 n 
-0001024043 00000 n 
-0000008906 00000 n 
-0000008954 00000 n 
-0000570512 00000 n 
-0001023950 00000 n 
-0000008998 00000 n 
-0000009038 00000 n 
-0000574065 00000 n 
-0001023857 00000 n 
-0000009082 00000 n 
-0000009115 00000 n 
-0000574884 00000 n 
-0001023764 00000 n 
-0000009159 00000 n 
-0000009194 00000 n 
-0000575703 00000 n 
-0001023671 00000 n 
-0000009238 00000 n 
-0000009271 00000 n 
-0000579105 00000 n 
-0001023578 00000 n 
-0000009315 00000 n 
-0000009350 00000 n 
-0000580046 00000 n 
-0001023446 00000 n 
-0000009394 00000 n 
-0000009424 00000 n 
-0000580426 00000 n 
-0001023367 00000 n 
-0000009471 00000 n 
-0000009514 00000 n 
-0000584543 00000 n 
-0001023235 00000 n 
-0000009561 00000 n 
-0000009599 00000 n 
-0000584669 00000 n 
-0001023170 00000 n 
-0000009649 00000 n 
-0000009684 00000 n 
-0000585930 00000 n 
-0001023077 00000 n 
-0000009731 00000 n 
-0000009777 00000 n 
-0000589245 00000 n 
-0001022945 00000 n 
-0000009824 00000 n 
-0000009869 00000 n 
-0000589434 00000 n 
-0001022866 00000 n 
-0000009919 00000 n 
-0000009964 00000 n 
-0000590760 00000 n 
-0001022787 00000 n 
-0000010014 00000 n 
-0000010052 00000 n 
-0000591201 00000 n 
-0001022669 00000 n 
-0000010099 00000 n 
-0000010145 00000 n 
-0000591644 00000 n 
-0001022550 00000 n 
-0000010195 00000 n 
-0000010239 00000 n 
-0000594957 00000 n 
-0001022471 00000 n 
-0000010292 00000 n 
-0000010327 00000 n 
-0000595083 00000 n 
-0001022378 00000 n 
-0000010380 00000 n 
-0000010422 00000 n 
-0000595400 00000 n 
-0001022285 00000 n 
-0000010475 00000 n 
-0000010514 00000 n 
-0000597495 00000 n 
-0001022192 00000 n 
-0000010567 00000 n 
-0000010606 00000 n 
-0000600292 00000 n 
-0001022099 00000 n 
-0000010659 00000 n 
-0000010696 00000 n 
-0000600544 00000 n 
-0001022006 00000 n 
-0000010749 00000 n 
-0000010791 00000 n 
-0000601051 00000 n 
-0001021913 00000 n 
-0000010844 00000 n 
-0000010899 00000 n 
-0000601303 00000 n 
-0001021820 00000 n 
-0000010952 00000 n 
-0000010996 00000 n 
-0000601684 00000 n 
-0001021727 00000 n 
-0000011049 00000 n 
-0000011087 00000 n 
-0000601873 00000 n 
-0001021634 00000 n 
-0000011140 00000 n 
-0000011183 00000 n 
-0000602254 00000 n 
-0001021555 00000 n 
-0000011236 00000 n 
-0000011281 00000 n 
-0000605650 00000 n 
-0001021462 00000 n 
-0000011331 00000 n 
-0000011375 00000 n 
-0000606157 00000 n 
-0001021383 00000 n 
-0000011425 00000 n 
-0000011468 00000 n 
-0000606473 00000 n 
-0001021251 00000 n 
-0000011512 00000 n 
-0000011550 00000 n 
-0000606726 00000 n 
-0001021172 00000 n 
-0000011597 00000 n 
-0000011644 00000 n 
-0000611449 00000 n 
-0001021079 00000 n 
-0000011691 00000 n 
-0000011739 00000 n 
-0000611638 00000 n 
-0001021000 00000 n 
-0000011786 00000 n 
-0000011835 00000 n 
-0000611825 00000 n 
-0001020868 00000 n 
-0000011879 00000 n 
-0000011917 00000 n 
-0000612078 00000 n 
-0001020789 00000 n 
-0000011964 00000 n 
-0000012020 00000 n 
-0000612457 00000 n 
-0001020710 00000 n 
-0000012067 00000 n 
-0000012116 00000 n 
-0000616096 00000 n 
-0001020617 00000 n 
-0000012160 00000 n 
-0000012192 00000 n 
-0000617227 00000 n 
-0001020524 00000 n 
-0000012236 00000 n 
-0000012267 00000 n 
-0000620872 00000 n 
-0001020392 00000 n 
-0000012311 00000 n 
-0000012362 00000 n 
-0000621695 00000 n 
-0001020313 00000 n 
-0000012409 00000 n 
-0000012452 00000 n 
-0000625824 00000 n 
-0001020220 00000 n 
-0000012499 00000 n 
-0000012552 00000 n 
+0000008060 00000 n 
+0000559755 00000 n 
+0000981037 00000 n 
+0000008107 00000 n 
+0000008154 00000 n 
+0000559881 00000 n 
+0000980958 00000 n 
+0000008204 00000 n 
+0000008261 00000 n 
+0000560387 00000 n 
+0000980826 00000 n 
+0000008311 00000 n 
+0000008358 00000 n 
+0000560513 00000 n 
+0000980747 00000 n 
+0000008411 00000 n 
+0000008458 00000 n 
+0000560892 00000 n 
+0000980668 00000 n 
+0000008511 00000 n 
+0000008578 00000 n 
+0000565435 00000 n 
+0000980575 00000 n 
+0000008628 00000 n 
+0000008672 00000 n 
+0000572263 00000 n 
+0000980482 00000 n 
+0000008722 00000 n 
+0000008765 00000 n 
+0000572515 00000 n 
+0000980403 00000 n 
+0000008815 00000 n 
+0000008863 00000 n 
+0000573210 00000 n 
+0000980310 00000 n 
+0000008907 00000 n 
+0000008947 00000 n 
+0000576330 00000 n 
+0000980178 00000 n 
+0000008991 00000 n 
+0000009024 00000 n 
+0000582887 00000 n 
+0000980113 00000 n 
+0000009071 00000 n 
+0000009134 00000 n 
+0000588216 00000 n 
+0000980020 00000 n 
+0000009178 00000 n 
+0000009213 00000 n 
+0000589669 00000 n 
+0000979927 00000 n 
+0000009257 00000 n 
+0000009290 00000 n 
+0000592974 00000 n 
+0000979834 00000 n 
+0000009334 00000 n 
+0000009369 00000 n 
+0000593917 00000 n 
+0000979702 00000 n 
+0000009413 00000 n 
+0000009443 00000 n 
+0000594294 00000 n 
+0000979623 00000 n 
+0000009490 00000 n 
+0000009533 00000 n 
+0000598418 00000 n 
+0000979491 00000 n 
+0000009580 00000 n 
+0000009618 00000 n 
+0000598543 00000 n 
+0000979426 00000 n 
+0000009668 00000 n 
+0000009703 00000 n 
+0000599806 00000 n 
+0000979333 00000 n 
+0000009750 00000 n 
+0000009796 00000 n 
+0000600630 00000 n 
+0000979201 00000 n 
+0000009843 00000 n 
+0000009888 00000 n 
+0000603557 00000 n 
+0000979122 00000 n 
+0000009938 00000 n 
+0000009983 00000 n 
+0000604751 00000 n 
+0000979043 00000 n 
+0000010033 00000 n 
+0000010071 00000 n 
+0000605192 00000 n 
+0000978925 00000 n 
+0000010118 00000 n 
+0000010164 00000 n 
+0000605635 00000 n 
+0000978846 00000 n 
+0000010214 00000 n 
+0000010257 00000 n 
+0000605887 00000 n 
+0000978713 00000 n 
+0000010307 00000 n 
+0000010351 00000 n 
+0000609201 00000 n 
+0000978634 00000 n 
+0000010404 00000 n 
+0000010439 00000 n 
+0000609390 00000 n 
+0000978541 00000 n 
+0000010492 00000 n 
+0000010534 00000 n 
+0000609707 00000 n 
+0000978448 00000 n 
+0000010587 00000 n 
+0000010626 00000 n 
+0000611802 00000 n 
+0000978355 00000 n 
+0000010679 00000 n 
+0000010718 00000 n 
+0000614599 00000 n 
+0000978262 00000 n 
+0000010771 00000 n 
+0000010808 00000 n 
+0000614851 00000 n 
+0000978169 00000 n 
+0000010861 00000 n 
+0000010903 00000 n 
+0000615358 00000 n 
+0000978076 00000 n 
+0000010956 00000 n 
+0000011011 00000 n 
+0000615610 00000 n 
+0000977983 00000 n 
+0000011064 00000 n 
+0000011108 00000 n 
+0000615991 00000 n 
+0000977890 00000 n 
+0000011161 00000 n 
+0000011199 00000 n 
+0000616180 00000 n 
+0000977797 00000 n 
+0000011252 00000 n 
+0000011295 00000 n 
+0000616561 00000 n 
+0000977718 00000 n 
+0000011348 00000 n 
+0000011393 00000 n 
+0000619836 00000 n 
+0000977639 00000 n 
+0000011443 00000 n 
+0000011487 00000 n 
+0000620343 00000 n 
+0000977546 00000 n 
+0000011531 00000 n 
+0000011564 00000 n 
+0000620658 00000 n 
+0000977414 00000 n 
+0000011608 00000 n 
+0000011647 00000 n 
+0000620909 00000 n 
+0000977335 00000 n 
+0000011694 00000 n 
+0000011742 00000 n 
+0000626266 00000 n 
+0000977242 00000 n 
+0000011789 00000 n 
+0000011838 00000 n 
 0000626454 00000 n 
-0001020127 00000 n 
+0000977163 00000 n 
+0000011885 00000 n 
+0000011935 00000 n 
+0000626643 00000 n 
+0000977031 00000 n 
+0000011979 00000 n 
+0000012017 00000 n 
+0000626896 00000 n 
+0000976952 00000 n 
+0000012064 00000 n 
+0000012120 00000 n 
+0000630234 00000 n 
+0000976873 00000 n 
+0000012167 00000 n 
+0000012216 00000 n 
+0000630800 00000 n 
+0000976780 00000 n 
+0000012260 00000 n 
+0000012292 00000 n 
+0000631934 00000 n 
+0000976687 00000 n 
+0000012336 00000 n 
+0000012367 00000 n 
+0000635321 00000 n 
+0000976555 00000 n 
+0000012411 00000 n 
+0000012462 00000 n 
+0000636143 00000 n 
+0000976476 00000 n 
+0000012509 00000 n 
+0000012552 00000 n 
+0000640110 00000 n 
+0000976383 00000 n 
 0000012599 00000 n 
-0000012663 00000 n 
-0000629257 00000 n 
-0001020009 00000 n 
-0000012710 00000 n 
-0000012775 00000 n 
-0000629383 00000 n 
-0001019930 00000 n 
-0000012825 00000 n 
-0000012894 00000 n 
-0000629571 00000 n 
-0001019837 00000 n 
-0000012944 00000 n 
-0000013017 00000 n 
-0000629823 00000 n 
-0001019758 00000 n 
-0000013067 00000 n 
-0000013132 00000 n 
-0000633393 00000 n 
-0001019640 00000 n 
-0000013176 00000 n 
-0000013227 00000 n 
-0000633895 00000 n 
-0001019561 00000 n 
-0000013274 00000 n 
-0000013321 00000 n 
-0000638987 00000 n 
-0001019468 00000 n 
-0000013368 00000 n 
-0000013419 00000 n 
-0000639494 00000 n 
-0001019336 00000 n 
-0000013466 00000 n 
-0000013525 00000 n 
-0000640501 00000 n 
-0001019257 00000 n 
-0000013575 00000 n 
-0000013624 00000 n 
-0000643712 00000 n 
-0001019164 00000 n 
-0000013674 00000 n 
-0000013731 00000 n 
-0000648084 00000 n 
-0001019085 00000 n 
-0000013781 00000 n 
-0000013834 00000 n 
-0000649096 00000 n 
-0001019006 00000 n 
-0000013881 00000 n 
-0000013932 00000 n 
-0000654386 00000 n 
-0001018873 00000 n 
-0000013973 00000 n 
-0000014021 00000 n 
-0000654702 00000 n 
-0001018755 00000 n 
-0000014065 00000 n 
-0000014106 00000 n 
-0000654827 00000 n 
-0001018676 00000 n 
-0000014153 00000 n 
-0000014192 00000 n 
-0000655016 00000 n 
-0001018583 00000 n 
-0000014239 00000 n 
-0000014286 00000 n 
-0000656160 00000 n 
-0001018504 00000 n 
-0000014333 00000 n 
-0000014375 00000 n 
-0000658984 00000 n 
-0001018372 00000 n 
-0000014419 00000 n 
-0000014449 00000 n 
-0000659110 00000 n 
-0001018293 00000 n 
-0000014496 00000 n 
-0000014547 00000 n 
-0000659298 00000 n 
-0001018200 00000 n 
-0000014594 00000 n 
-0000014655 00000 n 
-0000660622 00000 n 
-0001018121 00000 n 
-0000014702 00000 n 
-0000014743 00000 n 
-0000663927 00000 n 
-0001017989 00000 n 
-0000014787 00000 n 
-0000014822 00000 n 
-0000664053 00000 n 
-0001017924 00000 n 
-0000014869 00000 n 
-0000014951 00000 n 
-0000670832 00000 n 
-0001017806 00000 n 
-0000014995 00000 n 
-0000015028 00000 n 
-0000670957 00000 n 
-0001017741 00000 n 
-0000015075 00000 n 
-0000015146 00000 n 
-0000674310 00000 n 
-0001017607 00000 n 
-0000015187 00000 n 
-0000015232 00000 n 
-0000674436 00000 n 
-0001017528 00000 n 
-0000015276 00000 n 
-0000015313 00000 n 
-0000674687 00000 n 
-0001017435 00000 n 
-0000015357 00000 n 
-0000015407 00000 n 
-0000680018 00000 n 
-0001017342 00000 n 
-0000015451 00000 n 
-0000015492 00000 n 
-0000687105 00000 n 
-0001017249 00000 n 
-0000015536 00000 n 
-0000015580 00000 n 
-0000738762 00000 n 
-0001017117 00000 n 
-0000015624 00000 n 
-0000015667 00000 n 
-0000741743 00000 n 
-0001016999 00000 n 
-0000015714 00000 n 
-0000015755 00000 n 
-0000742942 00000 n 
-0001016920 00000 n 
-0000015805 00000 n 
-0000015854 00000 n 
-0000743130 00000 n 
-0001016827 00000 n 
-0000015904 00000 n 
-0000015941 00000 n 
-0000747315 00000 n 
-0001016748 00000 n 
-0000015991 00000 n 
-0000016035 00000 n 
-0000747821 00000 n 
-0001016655 00000 n 
-0000016082 00000 n 
-0000016120 00000 n 
-0000748263 00000 n 
-0001016562 00000 n 
-0000016167 00000 n 
-0000016203 00000 n 
-0000752339 00000 n 
-0001016483 00000 n 
-0000016250 00000 n 
-0000016310 00000 n 
-0000752845 00000 n 
-0001016351 00000 n 
-0000016354 00000 n 
-0000016390 00000 n 
-0000752971 00000 n 
-0001016272 00000 n 
-0000016437 00000 n 
-0000016483 00000 n 
-0000758151 00000 n 
-0001016193 00000 n 
-0000016530 00000 n 
-0000016578 00000 n 
-0000758466 00000 n 
-0001016061 00000 n 
-0000016622 00000 n 
-0000016658 00000 n 
-0000762180 00000 n 
-0001015957 00000 n 
+0000012652 00000 n 
+0000640739 00000 n 
+0000976290 00000 n 
+0000012699 00000 n 
+0000012763 00000 n 
+0000640928 00000 n 
+0000976172 00000 n 
+0000012810 00000 n 
+0000012875 00000 n 
+0000641053 00000 n 
+0000976093 00000 n 
+0000012925 00000 n 
+0000012994 00000 n 
+0000643183 00000 n 
+0000976000 00000 n 
+0000013044 00000 n 
+0000013117 00000 n 
+0000643435 00000 n 
+0000975921 00000 n 
+0000013167 00000 n 
+0000013232 00000 n 
+0000644315 00000 n 
+0000975828 00000 n 
+0000013276 00000 n 
+0000013345 00000 n 
+0000648397 00000 n 
+0000975710 00000 n 
+0000013389 00000 n 
+0000013440 00000 n 
+0000648898 00000 n 
+0000975631 00000 n 
+0000013487 00000 n 
+0000013534 00000 n 
+0000653838 00000 n 
+0000975538 00000 n 
+0000013581 00000 n 
+0000013632 00000 n 
+0000654342 00000 n 
+0000975406 00000 n 
+0000013679 00000 n 
+0000013738 00000 n 
+0000655351 00000 n 
+0000975327 00000 n 
+0000013788 00000 n 
+0000013837 00000 n 
+0000658703 00000 n 
+0000975234 00000 n 
+0000013887 00000 n 
+0000013944 00000 n 
+0000663074 00000 n 
+0000975155 00000 n 
+0000013994 00000 n 
+0000014047 00000 n 
+0000664086 00000 n 
+0000975076 00000 n 
+0000014094 00000 n 
+0000014145 00000 n 
+0000669376 00000 n 
+0000974943 00000 n 
+0000014186 00000 n 
+0000014234 00000 n 
+0000669692 00000 n 
+0000974825 00000 n 
+0000014278 00000 n 
+0000014319 00000 n 
+0000669817 00000 n 
+0000974746 00000 n 
+0000014366 00000 n 
+0000014405 00000 n 
+0000670006 00000 n 
+0000974653 00000 n 
+0000014452 00000 n 
+0000014499 00000 n 
+0000671150 00000 n 
+0000974574 00000 n 
+0000014546 00000 n 
+0000014588 00000 n 
+0000673974 00000 n 
+0000974442 00000 n 
+0000014632 00000 n 
+0000014662 00000 n 
+0000674100 00000 n 
+0000974363 00000 n 
+0000014709 00000 n 
+0000014760 00000 n 
+0000674288 00000 n 
+0000974270 00000 n 
+0000014807 00000 n 
+0000014868 00000 n 
+0000675612 00000 n 
+0000974191 00000 n 
+0000014915 00000 n 
+0000014956 00000 n 
+0000678917 00000 n 
+0000974059 00000 n 
+0000015000 00000 n 
+0000015035 00000 n 
+0000679043 00000 n 
+0000973994 00000 n 
+0000015082 00000 n 
+0000015164 00000 n 
+0000685822 00000 n 
+0000973876 00000 n 
+0000015208 00000 n 
+0000015241 00000 n 
+0000685947 00000 n 
+0000973811 00000 n 
+0000015288 00000 n 
+0000015359 00000 n 
+0000689281 00000 n 
+0000973677 00000 n 
+0000015400 00000 n 
+0000015445 00000 n 
+0000689407 00000 n 
+0000973598 00000 n 
+0000015489 00000 n 
+0000015526 00000 n 
+0000689783 00000 n 
+0000973505 00000 n 
+0000015570 00000 n 
+0000015620 00000 n 
+0000695099 00000 n 
+0000973412 00000 n 
+0000015664 00000 n 
+0000015705 00000 n 
+0000702417 00000 n 
+0000973319 00000 n 
+0000015749 00000 n 
+0000015793 00000 n 
+0000753911 00000 n 
+0000973187 00000 n 
+0000015837 00000 n 
+0000015880 00000 n 
+0000756782 00000 n 
+0000973069 00000 n 
+0000015927 00000 n 
+0000015968 00000 n 
+0000757919 00000 n 
+0000972990 00000 n 
+0000016018 00000 n 
+0000016067 00000 n 
+0000758108 00000 n 
+0000972897 00000 n 
+0000016117 00000 n 
+0000016154 00000 n 
+0000762373 00000 n 
+0000972818 00000 n 
+0000016204 00000 n 
+0000016248 00000 n 
+0000762878 00000 n 
+0000972725 00000 n 
+0000016295 00000 n 
+0000016333 00000 n 
+0000763322 00000 n 
+0000972632 00000 n 
+0000016380 00000 n 
+0000016435 00000 n 
+0000763511 00000 n 
+0000972539 00000 n 
+0000016482 00000 n 
+0000016518 00000 n 
+0000767279 00000 n 
+0000972460 00000 n 
+0000016565 00000 n 
+0000016625 00000 n 
+0000767784 00000 n 
+0000972328 00000 n 
+0000016669 00000 n 
 0000016705 00000 n 
-0000016744 00000 n 
-0000762557 00000 n 
-0001015878 00000 n 
-0000016794 00000 n 
-0000016854 00000 n 
-0000762745 00000 n 
-0001015785 00000 n 
-0000016904 00000 n 
-0000016974 00000 n 
-0000762929 00000 n 
-0001015692 00000 n 
-0000017024 00000 n 
-0000017084 00000 n 
-0000765310 00000 n 
-0001015599 00000 n 
-0000017134 00000 n 
-0000017207 00000 n 
-0000765499 00000 n 
-0001015506 00000 n 
-0000017257 00000 n 
-0000017317 00000 n 
-0000765688 00000 n 
-0001015413 00000 n 
-0000017367 00000 n 
-0000017419 00000 n 
-0000765940 00000 n 
-0001015334 00000 n 
-0000017469 00000 n 
-0000017521 00000 n 
-0000766129 00000 n 
-0001015202 00000 n 
-0000017565 00000 n 
-0000017604 00000 n 
-0000766318 00000 n 
-0001015123 00000 n 
-0000017651 00000 n 
-0000017695 00000 n 
-0000769377 00000 n 
-0001015030 00000 n 
-0000017742 00000 n 
-0000017777 00000 n 
-0000769628 00000 n 
-0001014951 00000 n 
-0000017824 00000 n 
-0000017866 00000 n 
-0000769942 00000 n 
-0001014858 00000 n 
-0000017910 00000 n 
-0000017960 00000 n 
-0000770511 00000 n 
-0001014726 00000 n 
-0000018004 00000 n 
-0000018046 00000 n 
-0000773639 00000 n 
-0001014647 00000 n 
-0000018093 00000 n 
-0000018140 00000 n 
-0000773956 00000 n 
-0001014554 00000 n 
-0000018187 00000 n 
-0000018234 00000 n 
-0000774964 00000 n 
-0001014461 00000 n 
-0000018281 00000 n 
+0000767910 00000 n 
+0000972249 00000 n 
+0000016752 00000 n 
+0000016798 00000 n 
+0000773299 00000 n 
+0000972170 00000 n 
+0000016845 00000 n 
+0000016893 00000 n 
+0000773614 00000 n 
+0000972038 00000 n 
+0000016937 00000 n 
+0000016973 00000 n 
+0000777164 00000 n 
+0000971934 00000 n 
+0000017020 00000 n 
+0000017059 00000 n 
+0000777541 00000 n 
+0000971855 00000 n 
+0000017109 00000 n 
+0000017169 00000 n 
+0000777729 00000 n 
+0000971762 00000 n 
+0000017219 00000 n 
+0000017289 00000 n 
+0000780245 00000 n 
+0000971669 00000 n 
+0000017339 00000 n 
+0000017399 00000 n 
+0000780434 00000 n 
+0000971576 00000 n 
+0000017449 00000 n 
+0000017522 00000 n 
+0000780623 00000 n 
+0000971483 00000 n 
+0000017572 00000 n 
+0000017632 00000 n 
+0000780812 00000 n 
+0000971390 00000 n 
+0000017682 00000 n 
+0000017734 00000 n 
+0000781064 00000 n 
+0000971311 00000 n 
+0000017784 00000 n 
+0000017836 00000 n 
+0000781252 00000 n 
+0000971179 00000 n 
+0000017880 00000 n 
+0000017919 00000 n 
+0000781440 00000 n 
+0000971100 00000 n 
+0000017966 00000 n 
+0000018010 00000 n 
+0000784250 00000 n 
+0000971007 00000 n 
+0000018057 00000 n 
+0000018092 00000 n 
+0000784502 00000 n 
+0000970914 00000 n 
+0000018139 00000 n 
+0000018193 00000 n 
+0000784690 00000 n 
+0000970835 00000 n 
+0000018240 00000 n 
+0000018282 00000 n 
+0000785005 00000 n 
+0000970742 00000 n 
 0000018326 00000 n 
-0000781198 00000 n 
-0001014382 00000 n 
-0000018373 00000 n 
-0000018412 00000 n 
-0000784237 00000 n 
-0001014250 00000 n 
-0000018456 00000 n 
-0000018500 00000 n 
-0000784426 00000 n 
-0001014171 00000 n 
-0000018547 00000 n 
-0000018582 00000 n 
-0000784867 00000 n 
-0001014053 00000 n 
-0000018629 00000 n 
-0000018663 00000 n 
-0000788421 00000 n 
-0001013974 00000 n 
-0000018713 00000 n 
-0000018758 00000 n 
-0000788862 00000 n 
-0001013895 00000 n 
-0000018808 00000 n 
-0000018860 00000 n 
-0000789114 00000 n 
-0001013802 00000 n 
-0000018904 00000 n 
-0000018935 00000 n 
-0000793103 00000 n 
-0001013684 00000 n 
-0000018979 00000 n 
-0000019012 00000 n 
-0000793732 00000 n 
-0001013605 00000 n 
-0000019059 00000 n 
-0000019096 00000 n 
-0000797580 00000 n 
-0001013512 00000 n 
-0000019143 00000 n 
-0000019187 00000 n 
-0000798210 00000 n 
-0001013419 00000 n 
-0000019234 00000 n 
-0000019278 00000 n 
-0000800570 00000 n 
-0001013340 00000 n 
-0000019325 00000 n 
-0000019372 00000 n 
-0000803656 00000 n 
-0001013207 00000 n 
-0000019414 00000 n 
-0000019465 00000 n 
-0000803781 00000 n 
-0001013128 00000 n 
-0000019510 00000 n 
-0000019547 00000 n 
-0000804602 00000 n 
-0001012996 00000 n 
-0000019592 00000 n 
-0000019639 00000 n 
-0000804853 00000 n 
-0001012917 00000 n 
-0000019687 00000 n 
-0000019742 00000 n 
-0000808801 00000 n 
-0001012824 00000 n 
-0000019790 00000 n 
-0000019848 00000 n 
-0000810450 00000 n 
-0001012731 00000 n 
-0000019896 00000 n 
-0000019944 00000 n 
-0000814667 00000 n 
-0001012638 00000 n 
-0000019992 00000 n 
-0000020045 00000 n 
-0000819726 00000 n 
-0001012545 00000 n 
-0000020093 00000 n 
-0000020140 00000 n 
-0000825104 00000 n 
-0001012466 00000 n 
-0000020188 00000 n 
-0000020265 00000 n 
-0000825356 00000 n 
-0001012373 00000 n 
-0000020310 00000 n 
-0000020367 00000 n 
-0000839180 00000 n 
-0001012280 00000 n 
-0000020412 00000 n 
-0000020468 00000 n 
-0000843763 00000 n 
-0001012162 00000 n 
-0000020513 00000 n 
-0000020580 00000 n 
-0000843889 00000 n 
-0001012083 00000 n 
-0000020628 00000 n 
-0000020661 00000 n 
-0000844078 00000 n 
-0001011990 00000 n 
-0000020709 00000 n 
-0000020739 00000 n 
-0000846385 00000 n 
-0001011897 00000 n 
-0000020787 00000 n 
-0000020826 00000 n 
-0000846828 00000 n 
-0001011804 00000 n 
-0000020874 00000 n 
-0000020911 00000 n 
-0000847080 00000 n 
-0001011725 00000 n 
-0000020959 00000 n 
-0000021006 00000 n 
-0000850014 00000 n 
-0001011631 00000 n 
-0000021048 00000 n 
-0000021096 00000 n 
-0000916622 00000 n 
-0001011498 00000 n 
-0000021138 00000 n 
-0000021185 00000 n 
-0000916811 00000 n 
-0001011419 00000 n 
-0000021230 00000 n 
-0000021269 00000 n 
-0000917507 00000 n 
-0001011326 00000 n 
-0000021314 00000 n 
-0000021390 00000 n 
-0000917948 00000 n 
-0001011233 00000 n 
-0000021435 00000 n 
-0000021531 00000 n 
-0000920684 00000 n 
-0001011140 00000 n 
-0000021576 00000 n 
-0000021631 00000 n 
-0000921313 00000 n 
-0001011047 00000 n 
-0000021676 00000 n 
-0000021734 00000 n 
-0000922074 00000 n 
-0001010954 00000 n 
-0000021779 00000 n 
-0000021851 00000 n 
-0000926034 00000 n 
-0001010861 00000 n 
-0000021896 00000 n 
-0000021970 00000 n 
-0000928848 00000 n 
-0001010768 00000 n 
-0000022015 00000 n 
-0000022093 00000 n 
-0000929228 00000 n 
-0001010689 00000 n 
-0000022138 00000 n 
-0000022257 00000 n 
-0000933080 00000 n 
-0001010556 00000 n 
-0000022299 00000 n 
-0000022338 00000 n 
-0000933331 00000 n 
-0001010477 00000 n 
+0000018376 00000 n 
+0000788829 00000 n 
+0000970610 00000 n 
+0000018420 00000 n 
+0000018462 00000 n 
+0000789017 00000 n 
+0000970531 00000 n 
+0000018509 00000 n 
+0000018556 00000 n 
+0000790527 00000 n 
+0000970438 00000 n 
+0000018603 00000 n 
+0000018648 00000 n 
+0000799128 00000 n 
+0000970345 00000 n 
+0000018695 00000 n 
+0000018737 00000 n 
+0000799317 00000 n 
+0000970252 00000 n 
+0000018784 00000 n 
+0000018829 00000 n 
+0000799634 00000 n 
+0000970173 00000 n 
+0000018876 00000 n 
+0000018915 00000 n 
+0000805039 00000 n 
+0000970041 00000 n 
+0000018959 00000 n 
+0000019003 00000 n 
+0000805227 00000 n 
+0000969962 00000 n 
+0000019050 00000 n 
+0000019085 00000 n 
+0000808717 00000 n 
+0000969844 00000 n 
+0000019132 00000 n 
+0000019166 00000 n 
+0000809156 00000 n 
+0000969765 00000 n 
+0000019216 00000 n 
+0000019261 00000 n 
+0000809596 00000 n 
+0000969686 00000 n 
+0000019311 00000 n 
+0000019363 00000 n 
+0000813223 00000 n 
+0000969593 00000 n 
+0000019407 00000 n 
+0000019438 00000 n 
+0000813850 00000 n 
+0000969475 00000 n 
+0000019482 00000 n 
+0000019515 00000 n 
+0000817782 00000 n 
+0000969396 00000 n 
+0000019562 00000 n 
+0000019599 00000 n 
+0000818096 00000 n 
+0000969303 00000 n 
+0000019646 00000 n 
+0000019690 00000 n 
+0000821608 00000 n 
+0000969210 00000 n 
+0000019737 00000 n 
+0000019781 00000 n 
+0000822301 00000 n 
+0000969131 00000 n 
+0000019828 00000 n 
+0000019875 00000 n 
+0000825385 00000 n 
+0000968998 00000 n 
+0000019917 00000 n 
+0000019968 00000 n 
+0000825510 00000 n 
+0000968919 00000 n 
+0000020013 00000 n 
+0000020050 00000 n 
+0000826331 00000 n 
+0000968787 00000 n 
+0000020095 00000 n 
+0000020142 00000 n 
+0000826582 00000 n 
+0000968708 00000 n 
+0000020190 00000 n 
+0000020245 00000 n 
+0000830530 00000 n 
+0000968615 00000 n 
+0000020293 00000 n 
+0000020351 00000 n 
+0000832179 00000 n 
+0000968522 00000 n 
+0000020399 00000 n 
+0000020447 00000 n 
+0000836396 00000 n 
+0000968429 00000 n 
+0000020495 00000 n 
+0000020548 00000 n 
+0000841455 00000 n 
+0000968336 00000 n 
+0000020596 00000 n 
+0000020643 00000 n 
+0000846833 00000 n 
+0000968257 00000 n 
+0000020691 00000 n 
+0000020768 00000 n 
+0000847085 00000 n 
+0000968164 00000 n 
+0000020813 00000 n 
+0000020870 00000 n 
+0000861214 00000 n 
+0000968071 00000 n 
+0000020915 00000 n 
+0000020971 00000 n 
+0000865834 00000 n 
+0000967953 00000 n 
+0000021016 00000 n 
+0000021083 00000 n 
+0000865960 00000 n 
+0000967874 00000 n 
+0000021131 00000 n 
+0000021164 00000 n 
+0000866149 00000 n 
+0000967781 00000 n 
+0000021212 00000 n 
+0000021242 00000 n 
+0000868575 00000 n 
+0000967688 00000 n 
+0000021290 00000 n 
+0000021329 00000 n 
+0000869018 00000 n 
+0000967595 00000 n 
+0000021377 00000 n 
+0000021414 00000 n 
+0000869270 00000 n 
+0000967516 00000 n 
+0000021462 00000 n 
+0000021509 00000 n 
+0000872776 00000 n 
+0000967383 00000 n 
+0000021551 00000 n 
+0000021598 00000 n 
+0000872965 00000 n 
+0000967304 00000 n 
+0000021643 00000 n 
+0000021682 00000 n 
+0000873661 00000 n 
+0000967211 00000 n 
+0000021727 00000 n 
+0000021803 00000 n 
+0000874102 00000 n 
+0000967118 00000 n 
+0000021848 00000 n 
+0000021944 00000 n 
+0000876834 00000 n 
+0000967025 00000 n 
+0000021989 00000 n 
+0000022044 00000 n 
+0000877463 00000 n 
+0000966932 00000 n 
+0000022089 00000 n 
+0000022147 00000 n 
+0000878224 00000 n 
+0000966839 00000 n 
+0000022192 00000 n 
+0000022264 00000 n 
+0000882183 00000 n 
+0000966746 00000 n 
+0000022309 00000 n 
 0000022383 00000 n 
-0000022436 00000 n 
-0000935293 00000 n 
-0001010398 00000 n 
-0000022481 00000 n 
-0000022544 00000 n 
-0000937893 00000 n 
-0001010265 00000 n 
-0000022586 00000 n 
-0000022653 00000 n 
-0000938018 00000 n 
-0001010186 00000 n 
-0000022698 00000 n 
-0000022735 00000 n 
-0000939153 00000 n 
-0001010093 00000 n 
-0000022780 00000 n 
-0000022823 00000 n 
-0000944677 00000 n 
-0001010014 00000 n 
-0000022868 00000 n 
-0000022909 00000 n 
-0000950803 00000 n 
-0001009878 00000 n 
-0000022951 00000 n 
-0000023013 00000 n 
-0000951117 00000 n 
-0001009799 00000 n 
-0000023058 00000 n 
-0000023089 00000 n 
-0000951430 00000 n 
-0001009706 00000 n 
-0000023134 00000 n 
-0000023185 00000 n 
-0000955512 00000 n 
-0001009613 00000 n 
-0000023230 00000 n 
-0000023269 00000 n 
-0000955763 00000 n 
-0001009520 00000 n 
-0000023314 00000 n 
-0000023356 00000 n 
-0000959759 00000 n 
-0001009427 00000 n 
-0000023401 00000 n 
-0000023437 00000 n 
-0000964995 00000 n 
-0001009332 00000 n 
-0000023482 00000 n 
-0000023525 00000 n 
-0000965309 00000 n 
-0001009235 00000 n 
-0000023571 00000 n 
-0000023619 00000 n 
-0000965562 00000 n 
-0001009137 00000 n 
-0000023665 00000 n 
-0000023723 00000 n 
-0000968688 00000 n 
-0001009039 00000 n 
-0000023769 00000 n 
-0000023804 00000 n 
-0000968877 00000 n 
-0001008941 00000 n 
-0000023850 00000 n 
-0000023885 00000 n 
-0000969067 00000 n 
-0001008843 00000 n 
-0000023931 00000 n 
-0000023988 00000 n 
-0000969383 00000 n 
-0001008760 00000 n 
-0000024034 00000 n 
-0000024097 00000 n 
-0000973391 00000 n 
-0001008662 00000 n 
-0000024140 00000 n 
-0000024169 00000 n 
-0000973518 00000 n 
-0001008522 00000 n 
-0000024212 00000 n 
-0000024247 00000 n 
-0000973645 00000 n 
-0001008453 00000 n 
-0000024296 00000 n 
-0000024326 00000 n 
-0000974024 00000 n 
-0001008313 00000 n 
-0000024369 00000 n 
-0000024391 00000 n 
-0000974150 00000 n 
-0001008203 00000 n 
-0000024440 00000 n 
-0000024467 00000 n 
-0000974593 00000 n 
-0001008134 00000 n 
-0000024519 00000 n 
-0000024583 00000 n 
-0000978552 00000 n 
-0001007994 00000 n 
-0000024626 00000 n 
-0000024648 00000 n 
-0000978677 00000 n 
-0001007884 00000 n 
-0000024697 00000 n 
-0000024721 00000 n 
-0000979118 00000 n 
-0001007800 00000 n 
-0000024770 00000 n 
-0000024801 00000 n 
-0000979370 00000 n 
-0001007716 00000 n 
-0000024850 00000 n 
-0000024879 00000 n 
-0000979623 00000 n 
-0001007576 00000 n 
-0000024922 00000 n 
-0000024944 00000 n 
-0000979749 00000 n 
-0001007466 00000 n 
-0000024993 00000 n 
-0000025038 00000 n 
-0000980127 00000 n 
-0001007382 00000 n 
-0000025087 00000 n 
-0000025117 00000 n 
-0000980380 00000 n 
-0001007283 00000 n 
-0000025166 00000 n 
-0000025221 00000 n 
-0000980884 00000 n 
-0001007199 00000 n 
-0000025270 00000 n 
-0000025298 00000 n 
-0000983241 00000 n 
-0001007059 00000 n 
-0000025341 00000 n 
-0000025363 00000 n 
-0000983367 00000 n 
-0001006949 00000 n 
-0000025412 00000 n 
-0000025439 00000 n 
-0000983747 00000 n 
-0001006880 00000 n 
-0000025488 00000 n 
-0000025519 00000 n 
-0000983999 00000 n 
-0001006740 00000 n 
-0000025562 00000 n 
-0000025584 00000 n 
-0000984125 00000 n 
-0001006671 00000 n 
-0000025634 00000 n 
-0000025661 00000 n 
-0000984567 00000 n 
-0001006531 00000 n 
-0000025704 00000 n 
-0000025726 00000 n 
-0000984692 00000 n 
-0001006462 00000 n 
-0000025776 00000 n 
-0000025807 00000 n 
-0000987178 00000 n 
-0001006322 00000 n 
-0000025850 00000 n 
-0000025872 00000 n 
-0000987302 00000 n 
-0001006212 00000 n 
-0000025922 00000 n 
-0000025966 00000 n 
-0000987861 00000 n 
-0001006143 00000 n 
-0000026016 00000 n 
-0000026042 00000 n 
-0000989062 00000 n 
-0001006003 00000 n 
-0000026085 00000 n 
-0000026107 00000 n 
-0000989187 00000 n 
-0001005893 00000 n 
-0000026157 00000 n 
-0000026198 00000 n 
-0000989501 00000 n 
-0001005809 00000 n 
-0000026248 00000 n 
-0000026276 00000 n 
-0000991433 00000 n 
-0001005725 00000 n 
-0000026326 00000 n 
-0000026351 00000 n 
-0000991749 00000 n 
-0001005585 00000 n 
-0000026394 00000 n 
-0000026416 00000 n 
-0000991873 00000 n 
-0001005516 00000 n 
-0000026466 00000 n 
-0000026489 00000 n 
-0000992443 00000 n 
-0001005376 00000 n 
+0000884996 00000 n 
+0000966653 00000 n 
+0000022428 00000 n 
+0000022506 00000 n 
+0000885376 00000 n 
+0000966574 00000 n 
+0000022551 00000 n 
+0000022670 00000 n 
+0000889228 00000 n 
+0000966441 00000 n 
+0000022712 00000 n 
+0000022751 00000 n 
+0000889479 00000 n 
+0000966362 00000 n 
+0000022796 00000 n 
+0000022849 00000 n 
+0000891441 00000 n 
+0000966283 00000 n 
+0000022894 00000 n 
+0000022957 00000 n 
+0000894038 00000 n 
+0000966150 00000 n 
+0000022999 00000 n 
+0000023066 00000 n 
+0000894163 00000 n 
+0000966071 00000 n 
+0000023111 00000 n 
+0000023148 00000 n 
+0000895298 00000 n 
+0000965978 00000 n 
+0000023193 00000 n 
+0000023236 00000 n 
+0000900817 00000 n 
+0000965899 00000 n 
+0000023281 00000 n 
+0000023322 00000 n 
+0000906944 00000 n 
+0000965763 00000 n 
+0000023364 00000 n 
+0000023426 00000 n 
+0000907257 00000 n 
+0000965684 00000 n 
+0000023471 00000 n 
+0000023502 00000 n 
+0000907570 00000 n 
+0000965589 00000 n 
+0000023547 00000 n 
+0000023599 00000 n 
+0000911653 00000 n 
+0000965492 00000 n 
+0000023645 00000 n 
+0000023685 00000 n 
+0000911905 00000 n 
+0000965394 00000 n 
+0000023731 00000 n 
+0000023774 00000 n 
+0000915899 00000 n 
+0000965296 00000 n 
+0000023820 00000 n 
+0000023857 00000 n 
+0000921133 00000 n 
+0000965198 00000 n 
+0000023903 00000 n 
+0000023946 00000 n 
+0000921448 00000 n 
+0000965100 00000 n 
+0000023992 00000 n 
+0000024040 00000 n 
+0000921701 00000 n 
+0000965002 00000 n 
+0000024086 00000 n 
+0000024144 00000 n 
+0000924821 00000 n 
+0000964904 00000 n 
+0000024190 00000 n 
+0000024225 00000 n 
+0000925010 00000 n 
+0000964806 00000 n 
+0000024271 00000 n 
+0000024306 00000 n 
+0000925200 00000 n 
+0000964708 00000 n 
+0000024352 00000 n 
+0000024409 00000 n 
+0000925516 00000 n 
+0000964625 00000 n 
+0000024455 00000 n 
+0000024518 00000 n 
+0000929523 00000 n 
+0000964527 00000 n 
+0000024561 00000 n 
+0000024590 00000 n 
+0000929650 00000 n 
+0000964387 00000 n 
+0000024633 00000 n 
+0000024668 00000 n 
+0000929777 00000 n 
+0000964318 00000 n 
+0000024717 00000 n 
+0000024747 00000 n 
+0000930156 00000 n 
+0000964178 00000 n 
+0000024790 00000 n 
+0000024812 00000 n 
+0000930282 00000 n 
+0000964068 00000 n 
+0000024861 00000 n 
+0000024888 00000 n 
+0000930725 00000 n 
+0000963999 00000 n 
+0000024940 00000 n 
+0000025004 00000 n 
+0000934685 00000 n 
+0000963859 00000 n 
+0000025047 00000 n 
+0000025069 00000 n 
+0000934810 00000 n 
+0000963749 00000 n 
+0000025118 00000 n 
+0000025142 00000 n 
+0000935251 00000 n 
+0000963665 00000 n 
+0000025191 00000 n 
+0000025222 00000 n 
+0000935503 00000 n 
+0000963581 00000 n 
+0000025271 00000 n 
+0000025300 00000 n 
+0000935756 00000 n 
+0000963441 00000 n 
+0000025343 00000 n 
+0000025365 00000 n 
+0000935882 00000 n 
+0000963331 00000 n 
+0000025414 00000 n 
+0000025459 00000 n 
+0000936260 00000 n 
+0000963247 00000 n 
+0000025508 00000 n 
+0000025538 00000 n 
+0000936513 00000 n 
+0000963148 00000 n 
+0000025588 00000 n 
+0000025643 00000 n 
+0000937017 00000 n 
+0000963064 00000 n 
+0000025693 00000 n 
+0000025721 00000 n 
+0000939375 00000 n 
+0000962924 00000 n 
+0000025764 00000 n 
+0000025786 00000 n 
+0000939501 00000 n 
+0000962814 00000 n 
+0000025836 00000 n 
+0000025863 00000 n 
+0000939881 00000 n 
+0000962745 00000 n 
+0000025913 00000 n 
+0000025944 00000 n 
+0000940133 00000 n 
+0000962605 00000 n 
+0000025987 00000 n 
+0000026009 00000 n 
+0000940259 00000 n 
+0000962536 00000 n 
+0000026059 00000 n 
+0000026086 00000 n 
+0000940701 00000 n 
+0000962396 00000 n 
+0000026129 00000 n 
+0000026151 00000 n 
+0000940826 00000 n 
+0000962327 00000 n 
+0000026201 00000 n 
+0000026232 00000 n 
+0000943312 00000 n 
+0000962187 00000 n 
+0000026275 00000 n 
+0000026297 00000 n 
+0000943436 00000 n 
+0000962077 00000 n 
+0000026347 00000 n 
+0000026391 00000 n 
+0000943995 00000 n 
+0000962008 00000 n 
+0000026441 00000 n 
+0000026467 00000 n 
+0000945196 00000 n 
+0000961868 00000 n 
+0000026510 00000 n 
 0000026532 00000 n 
-0000026554 00000 n 
-0000992569 00000 n 
-0001005266 00000 n 
-0000026604 00000 n 
-0000026662 00000 n 
-0000992822 00000 n 
-0001005197 00000 n 
-0000026712 00000 n 
+0000945321 00000 n 
+0000961758 00000 n 
+0000026582 00000 n 
+0000026623 00000 n 
+0000945635 00000 n 
+0000961674 00000 n 
+0000026673 00000 n 
+0000026701 00000 n 
+0000947568 00000 n 
+0000961590 00000 n 
 0000026751 00000 n 
-0000993139 00000 n 
-0001005057 00000 n 
-0000026794 00000 n 
-0000026816 00000 n 
-0000993264 00000 n 
-0001004947 00000 n 
-0000026866 00000 n 
-0000026894 00000 n 
-0000995997 00000 n 
-0001004878 00000 n 
-0000026944 00000 n 
-0000026970 00000 n 
-0000996886 00000 n 
-0001004738 00000 n 
-0000027013 00000 n 
-0000027035 00000 n 
-0000997012 00000 n 
-0001004628 00000 n 
-0000027085 00000 n 
-0000027122 00000 n 
-0000997329 00000 n 
-0001004559 00000 n 
-0000027172 00000 n 
-0000027214 00000 n 
-0000997582 00000 n 
-0001004434 00000 n 
-0000027257 00000 n 
-0000027279 00000 n 
-0000997708 00000 n 
-0001004365 00000 n 
-0000027329 00000 n 
-0000027367 00000 n 
-0000027714 00000 n 
-0000028088 00000 n 
-0000027421 00000 n 
-0000027838 00000 n 
-0000027901 00000 n 
-0000027964 00000 n 
-0000001207 00000 f 
-0001000898 00000 n 
-0001000995 00000 n 
-0000028964 00000 n 
-0000028777 00000 n 
-0000028162 00000 n 
-0000028901 00000 n 
-0000001214 00000 f 
-0001000804 00000 n 
-0000101004 00000 n 
-0000085740 00000 n 
-0000029052 00000 n 
-0000100880 00000 n 
-0000086686 00000 n 
-0000001305 00000 f 
-0001000711 00000 n 
-0000086833 00000 n 
-0000086981 00000 n 
-0000087133 00000 n 
-0000087286 00000 n 
-0000087439 00000 n 
-0000087593 00000 n 
-0000087746 00000 n 
-0000087900 00000 n 
-0000088050 00000 n 
-0000088201 00000 n 
-0000088355 00000 n 
-0000088510 00000 n 
-0000088672 00000 n 
-0000088835 00000 n 
-0000088990 00000 n 
-0000089146 00000 n 
-0000089302 00000 n 
-0000089458 00000 n 
-0000089618 00000 n 
-0000089778 00000 n 
-0000089935 00000 n 
-0000090092 00000 n 
-0000090245 00000 n 
-0000090398 00000 n 
-0000090558 00000 n 
-0000090718 00000 n 
-0000090877 00000 n 
-0000091036 00000 n 
-0000091199 00000 n 
-0000091362 00000 n 
-0000091531 00000 n 
-0000091700 00000 n 
-0000091868 00000 n 
-0000092036 00000 n 
-0000092198 00000 n 
-0000092360 00000 n 
-0000092530 00000 n 
-0000092700 00000 n 
-0000092867 00000 n 
-0000093034 00000 n 
-0000093201 00000 n 
-0000093368 00000 n 
-0000093536 00000 n 
-0000093704 00000 n 
-0000093873 00000 n 
-0000094042 00000 n 
-0000094213 00000 n 
-0000094384 00000 n 
-0000094539 00000 n 
-0000094694 00000 n 
-0000094864 00000 n 
-0000095035 00000 n 
-0000095189 00000 n 
-0000095343 00000 n 
-0000095498 00000 n 
-0000095652 00000 n 
-0000095811 00000 n 
-0000095969 00000 n 
-0000096128 00000 n 
-0000096286 00000 n 
-0000096435 00000 n 
-0000096583 00000 n 
-0000096737 00000 n 
-0000096890 00000 n 
-0000097036 00000 n 
-0000097181 00000 n 
-0000097327 00000 n 
-0000097473 00000 n 
-0000097628 00000 n 
-0000097782 00000 n 
-0000097934 00000 n 
-0000098085 00000 n 
-0000098252 00000 n 
-0000098418 00000 n 
-0000098572 00000 n 
-0000098726 00000 n 
-0000098873 00000 n 
-0000099019 00000 n 
-0000099165 00000 n 
-0000099310 00000 n 
-0000099478 00000 n 
-0000099645 00000 n 
-0000099809 00000 n 
-0000099972 00000 n 
-0000100128 00000 n 
-0000100283 00000 n 
-0000100435 00000 n 
-0000100586 00000 n 
-0000100733 00000 n 
-0000001568 00000 f 
-0001000616 00000 n 
-0000398141 00000 n 
-0000398266 00000 n 
-0000398643 00000 n 
-0000398957 00000 n 
-0000403064 00000 n 
-0000406035 00000 n 
-0000412536 00000 n 
-0000412661 00000 n 
-0000413983 00000 n 
-0000417062 00000 n 
-0000417250 00000 n 
-0000417945 00000 n 
-0000418386 00000 n 
-0000418827 00000 n 
-0000423511 00000 n 
-0000434875 00000 n 
-0000435126 00000 n 
-0000435314 00000 n 
-0000436005 00000 n 
-0000436193 00000 n 
-0000436381 00000 n 
-0000439374 00000 n 
-0000439627 00000 n 
-0000439816 00000 n 
-0000440005 00000 n 
-0000440697 00000 n 
-0000444684 00000 n 
-0000444937 00000 n 
-0000446198 00000 n 
-0000449548 00000 n 
-0000449801 00000 n 
-0000456281 00000 n 
-0000461224 00000 n 
-0000461726 00000 n 
-0000462042 00000 n 
-0000473358 00000 n 
-0000479094 00000 n 
-0000482719 00000 n 
-0000482907 00000 n 
-0000484102 00000 n 
-0000487828 00000 n 
-0000488332 00000 n 
-0000488962 00000 n 
-0000492475 00000 n 
-0000493859 00000 n 
-0000173398 00000 n 
-0000157874 00000 n 
-0000101120 00000 n 
-0000173335 00000 n 
-0000158856 00000 n 
-0000159014 00000 n 
-0000159171 00000 n 
-0000159315 00000 n 
-0000159461 00000 n 
-0000159614 00000 n 
-0000159768 00000 n 
-0000159918 00000 n 
-0000160068 00000 n 
-0000160222 00000 n 
-0000160375 00000 n 
-0000160537 00000 n 
-0000160698 00000 n 
-0000160859 00000 n 
-0000161019 00000 n 
-0000161173 00000 n 
-0000161326 00000 n 
-0000161481 00000 n 
-0000161635 00000 n 
-0000161788 00000 n 
-0000161940 00000 n 
-0000162098 00000 n 
-0000162255 00000 n 
-0000162413 00000 n 
-0000162572 00000 n 
-0000162727 00000 n 
-0000162881 00000 n 
-0000163030 00000 n 
-0000163179 00000 n 
-0000163326 00000 n 
-0000163472 00000 n 
-0000163619 00000 n 
-0000163765 00000 n 
-0000163911 00000 n 
-0000164057 00000 n 
-0000164204 00000 n 
-0000164350 00000 n 
-0000164521 00000 n 
-0000164691 00000 n 
-0000164838 00000 n 
-0000164984 00000 n 
-0000165130 00000 n 
-0000165276 00000 n 
-0000165424 00000 n 
-0000165571 00000 n 
-0000165719 00000 n 
-0000165866 00000 n 
-0000166014 00000 n 
-0000166161 00000 n 
-0000166318 00000 n 
-0000166475 00000 n 
-0000166627 00000 n 
-0000166779 00000 n 
-0000166931 00000 n 
-0000167083 00000 n 
-0000167238 00000 n 
-0000167392 00000 n 
-0000167547 00000 n 
-0000167701 00000 n 
-0000167864 00000 n 
-0000168026 00000 n 
-0000168184 00000 n 
-0000168341 00000 n 
-0000168495 00000 n 
-0000168648 00000 n 
-0000168812 00000 n 
-0000168975 00000 n 
-0000169137 00000 n 
-0000169298 00000 n 
-0000169456 00000 n 
-0000169614 00000 n 
-0000169765 00000 n 
-0000169916 00000 n 
-0000170069 00000 n 
-0000170222 00000 n 
-0000170373 00000 n 
-0000170524 00000 n 
-0000170677 00000 n 
-0000170830 00000 n 
-0000170986 00000 n 
-0000171142 00000 n 
-0000171305 00000 n 
-0000171467 00000 n 
-0000171622 00000 n 
-0000171776 00000 n 
-0000171931 00000 n 
-0000172085 00000 n 
-0000172239 00000 n 
-0000172392 00000 n 
-0000172546 00000 n 
-0000172699 00000 n 
-0000172862 00000 n 
-0000173024 00000 n 
-0000173180 00000 n 
-0000502767 00000 n 
-0000503655 00000 n 
-0000507689 00000 n 
-0000508005 00000 n 
-0000508194 00000 n 
-0000508510 00000 n 
-0000512349 00000 n 
-0000512536 00000 n 
-0000512977 00000 n 
-0000513166 00000 n 
-0000513355 00000 n 
-0000513670 00000 n 
-0000518179 00000 n 
-0000519313 00000 n 
-0000521853 00000 n 
-0000522042 00000 n 
-0000522549 00000 n 
-0000526562 00000 n 
-0000529589 00000 n 
-0000529778 00000 n 
-0000530600 00000 n 
-0000537548 00000 n 
-0000537736 00000 n 
-0000538304 00000 n 
-0000543458 00000 n 
-0000543584 00000 n 
-0000553844 00000 n 
-0000553970 00000 n 
-0000557132 00000 n 
-0000557258 00000 n 
-0000557762 00000 n 
-0000559086 00000 n 
-0000569503 00000 n 
-0000569755 00000 n 
-0000570449 00000 n 
-0000570952 00000 n 
-0000574821 00000 n 
-0000575640 00000 n 
-0000579042 00000 n 
-0000579984 00000 n 
-0000580363 00000 n 
-0000584480 00000 n 
-0000584606 00000 n 
-0000585867 00000 n 
-0000586691 00000 n 
-0000589371 00000 n 
-0000590697 00000 n 
-0000245504 00000 n 
-0000229784 00000 n 
-0000173500 00000 n 
-0000245441 00000 n 
-0000230766 00000 n 
-0000230921 00000 n 
-0000231075 00000 n 
-0000231231 00000 n 
-0000231386 00000 n 
-0000231542 00000 n 
-0000231697 00000 n 
-0000231851 00000 n 
-0000232004 00000 n 
-0000232160 00000 n 
-0000232316 00000 n 
-0000232476 00000 n 
-0000232635 00000 n 
+0000026776 00000 n 
+0000947884 00000 n 
+0000961450 00000 n 
+0000026819 00000 n 
+0000026841 00000 n 
+0000948008 00000 n 
+0000961381 00000 n 
+0000026891 00000 n 
+0000026914 00000 n 
+0000948578 00000 n 
+0000961241 00000 n 
+0000026957 00000 n 
+0000026979 00000 n 
+0000948704 00000 n 
+0000961131 00000 n 
+0000027029 00000 n 
+0000027087 00000 n 
+0000948957 00000 n 
+0000961062 00000 n 
+0000027137 00000 n 
+0000027176 00000 n 
+0000949274 00000 n 
+0000960922 00000 n 
+0000027219 00000 n 
+0000027241 00000 n 
+0000949399 00000 n 
+0000960812 00000 n 
+0000027291 00000 n 
+0000027319 00000 n 
+0000952131 00000 n 
+0000960743 00000 n 
+0000027369 00000 n 
+0000027395 00000 n 
+0000953020 00000 n 
+0000960603 00000 n 
+0000027438 00000 n 
+0000027460 00000 n 
+0000953146 00000 n 
+0000960493 00000 n 
+0000027510 00000 n 
+0000027547 00000 n 
+0000953463 00000 n 
+0000960424 00000 n 
+0000027597 00000 n 
+0000027639 00000 n 
+0000953716 00000 n 
+0000960299 00000 n 
+0000027682 00000 n 
+0000027704 00000 n 
+0000953842 00000 n 
+0000960230 00000 n 
+0000027754 00000 n 
+0000027792 00000 n 
+0000028139 00000 n 
+0000028513 00000 n 
+0000027846 00000 n 
+0000028263 00000 n 
+0000028326 00000 n 
+0000028389 00000 n 
+0000001223 00000 f 
+0000957032 00000 n 
+0000957129 00000 n 
+0000029389 00000 n 
+0000029202 00000 n 
+0000028587 00000 n 
+0000029326 00000 n 
+0000001230 00000 f 
+0000956938 00000 n 
+0000101430 00000 n 
+0000086166 00000 n 
+0000029477 00000 n 
+0000101306 00000 n 
+0000087112 00000 n 
+0000001321 00000 f 
+0000956845 00000 n 
+0000087259 00000 n 
+0000087407 00000 n 
+0000087559 00000 n 
+0000087712 00000 n 
+0000087865 00000 n 
+0000088019 00000 n 
+0000088172 00000 n 
+0000088326 00000 n 
+0000088476 00000 n 
+0000088627 00000 n 
+0000088781 00000 n 
+0000088936 00000 n 
+0000089098 00000 n 
+0000089261 00000 n 
+0000089416 00000 n 
+0000089572 00000 n 
+0000089728 00000 n 
+0000089884 00000 n 
+0000090044 00000 n 
+0000090204 00000 n 
+0000090361 00000 n 
+0000090518 00000 n 
+0000090671 00000 n 
+0000090824 00000 n 
+0000090984 00000 n 
+0000091144 00000 n 
+0000091303 00000 n 
+0000091462 00000 n 
+0000091625 00000 n 
+0000091788 00000 n 
+0000091957 00000 n 
+0000092126 00000 n 
+0000092294 00000 n 
+0000092462 00000 n 
+0000092624 00000 n 
+0000092786 00000 n 
+0000092956 00000 n 
+0000093126 00000 n 
+0000093293 00000 n 
+0000093460 00000 n 
+0000093627 00000 n 
+0000093794 00000 n 
+0000093962 00000 n 
+0000094130 00000 n 
+0000094299 00000 n 
+0000094468 00000 n 
+0000094639 00000 n 
+0000094810 00000 n 
+0000094965 00000 n 
+0000095120 00000 n 
+0000095290 00000 n 
+0000095461 00000 n 
+0000095615 00000 n 
+0000095769 00000 n 
+0000095924 00000 n 
+0000096078 00000 n 
+0000096237 00000 n 
+0000096395 00000 n 
+0000096554 00000 n 
+0000096712 00000 n 
+0000096861 00000 n 
+0000097009 00000 n 
+0000097163 00000 n 
+0000097316 00000 n 
+0000097462 00000 n 
+0000097607 00000 n 
+0000097753 00000 n 
+0000097899 00000 n 
+0000098054 00000 n 
+0000098208 00000 n 
+0000098360 00000 n 
+0000098511 00000 n 
+0000098678 00000 n 
+0000098844 00000 n 
+0000098998 00000 n 
+0000099152 00000 n 
+0000099299 00000 n 
+0000099445 00000 n 
+0000099591 00000 n 
+0000099736 00000 n 
+0000099904 00000 n 
+0000100071 00000 n 
+0000100235 00000 n 
+0000100398 00000 n 
+0000100554 00000 n 
+0000100709 00000 n 
+0000100861 00000 n 
+0000101012 00000 n 
+0000101159 00000 n 
+0000001588 00000 f 
+0000956750 00000 n 
+0000405639 00000 n 
+0000405764 00000 n 
+0000406141 00000 n 
+0000406455 00000 n 
+0000410562 00000 n 
+0000413533 00000 n 
+0000419998 00000 n 
+0000420123 00000 n 
+0000421445 00000 n 
+0000424524 00000 n 
+0000424712 00000 n 
+0000425407 00000 n 
+0000425848 00000 n 
+0000426289 00000 n 
+0000430971 00000 n 
+0000440058 00000 n 
+0000442450 00000 n 
+0000442638 00000 n 
+0000443331 00000 n 
+0000443519 00000 n 
+0000443707 00000 n 
+0000443894 00000 n 
+0000447106 00000 n 
+0000447295 00000 n 
+0000447484 00000 n 
+0000448177 00000 n 
+0000452169 00000 n 
+0000452420 00000 n 
+0000453873 00000 n 
+0000457237 00000 n 
+0000457490 00000 n 
+0000463970 00000 n 
+0000468913 00000 n 
+0000469415 00000 n 
+0000469731 00000 n 
+0000481055 00000 n 
+0000486790 00000 n 
+0000490415 00000 n 
+0000490603 00000 n 
+0000491798 00000 n 
+0000495524 00000 n 
+0000496028 00000 n 
+0000496658 00000 n 
+0000500171 00000 n 
+0000501555 00000 n 
+0000173789 00000 n 
+0000158206 00000 n 
+0000101546 00000 n 
+0000173726 00000 n 
+0000159188 00000 n 
+0000159346 00000 n 
+0000159503 00000 n 
+0000159659 00000 n 
+0000159817 00000 n 
+0000159970 00000 n 
+0000160124 00000 n 
+0000160274 00000 n 
+0000160424 00000 n 
+0000160578 00000 n 
+0000160731 00000 n 
+0000160893 00000 n 
+0000161054 00000 n 
+0000161215 00000 n 
+0000161375 00000 n 
+0000161529 00000 n 
+0000161682 00000 n 
+0000161837 00000 n 
+0000161991 00000 n 
+0000162144 00000 n 
+0000162296 00000 n 
+0000162454 00000 n 
+0000162611 00000 n 
+0000162769 00000 n 
+0000162928 00000 n 
+0000163080 00000 n 
+0000163231 00000 n 
+0000163380 00000 n 
+0000163529 00000 n 
+0000163676 00000 n 
+0000163822 00000 n 
+0000163969 00000 n 
+0000164115 00000 n 
+0000164261 00000 n 
+0000164407 00000 n 
+0000164554 00000 n 
+0000164700 00000 n 
+0000164871 00000 n 
+0000165041 00000 n 
+0000165189 00000 n 
+0000165336 00000 n 
+0000165483 00000 n 
+0000165629 00000 n 
+0000165777 00000 n 
+0000165924 00000 n 
+0000166074 00000 n 
+0000166223 00000 n 
+0000166380 00000 n 
+0000166537 00000 n 
+0000166689 00000 n 
+0000166841 00000 n 
+0000166992 00000 n 
+0000167143 00000 n 
+0000167298 00000 n 
+0000167452 00000 n 
+0000167607 00000 n 
+0000167761 00000 n 
+0000167924 00000 n 
+0000168086 00000 n 
+0000168244 00000 n 
+0000168401 00000 n 
+0000168556 00000 n 
+0000168710 00000 n 
+0000168874 00000 n 
+0000169037 00000 n 
+0000169198 00000 n 
+0000169358 00000 n 
+0000169516 00000 n 
+0000169674 00000 n 
+0000169825 00000 n 
+0000169976 00000 n 
+0000170142 00000 n 
+0000170307 00000 n 
+0000170460 00000 n 
+0000170613 00000 n 
+0000170764 00000 n 
+0000170915 00000 n 
+0000171068 00000 n 
+0000171221 00000 n 
+0000171377 00000 n 
+0000171533 00000 n 
+0000171696 00000 n 
+0000171858 00000 n 
+0000172013 00000 n 
+0000172167 00000 n 
+0000172322 00000 n 
+0000172476 00000 n 
+0000172630 00000 n 
+0000172783 00000 n 
+0000172937 00000 n 
+0000173090 00000 n 
+0000173253 00000 n 
+0000173415 00000 n 
+0000173571 00000 n 
+0000510463 00000 n 
+0000511351 00000 n 
+0000515347 00000 n 
+0000515663 00000 n 
+0000515915 00000 n 
+0000516358 00000 n 
+0000520251 00000 n 
+0000520438 00000 n 
+0000521070 00000 n 
+0000521259 00000 n 
+0000524827 00000 n 
+0000525143 00000 n 
+0000526665 00000 n 
+0000529815 00000 n 
+0000529941 00000 n 
+0000530130 00000 n 
+0000530637 00000 n 
+0000534442 00000 n 
+0000537869 00000 n 
+0000538249 00000 n 
+0000538437 00000 n 
+0000541756 00000 n 
+0000542391 00000 n 
+0000545761 00000 n 
+0000545887 00000 n 
+0000556147 00000 n 
+0000556273 00000 n 
+0000559692 00000 n 
+0000559818 00000 n 
+0000560324 00000 n 
+0000561649 00000 n 
+0000572200 00000 n 
+0000572452 00000 n 
+0000573147 00000 n 
+0000576267 00000 n 
+0000582824 00000 n 
+0000588153 00000 n 
+0000589606 00000 n 
+0000587648 00000 n 
+0000593854 00000 n 
+0000594231 00000 n 
+0000598355 00000 n 
+0000598481 00000 n 
+0000599743 00000 n 
+0000600567 00000 n 
+0000600756 00000 n 
+0000604688 00000 n 
+0000240646 00000 n 
+0000225851 00000 n 
+0000173891 00000 n 
+0000240583 00000 n 
+0000226779 00000 n 
+0000226934 00000 n 
+0000227088 00000 n 
+0000227242 00000 n 
+0000227395 00000 n 
+0000227551 00000 n 
+0000227706 00000 n 
+0000227862 00000 n 
+0000228017 00000 n 
+0000228168 00000 n 
+0000228319 00000 n 
+0000228475 00000 n 
+0000228631 00000 n 
+0000228790 00000 n 
+0000228949 00000 n 
+0000229111 00000 n 
+0000229272 00000 n 
+0000229436 00000 n 
+0000229599 00000 n 
+0000229753 00000 n 
+0000229907 00000 n 
+0000230067 00000 n 
+0000230226 00000 n 
+0000230388 00000 n 
+0000230549 00000 n 
+0000230697 00000 n 
+0000230845 00000 n 
+0000230992 00000 n 
+0000231139 00000 n 
+0000231288 00000 n 
+0000231437 00000 n 
+0000231594 00000 n 
+0000231750 00000 n 
+0000231905 00000 n 
+0000232059 00000 n 
+0000232207 00000 n 
+0000232354 00000 n 
+0000232502 00000 n 
+0000232649 00000 n 
 0000232796 00000 n 
-0000232956 00000 n 
-0000233120 00000 n 
-0000233283 00000 n 
-0000233437 00000 n 
-0000233591 00000 n 
-0000233751 00000 n 
-0000233910 00000 n 
-0000234072 00000 n 
-0000234233 00000 n 
-0000234382 00000 n 
-0000234531 00000 n 
-0000234678 00000 n 
-0000234825 00000 n 
-0000234973 00000 n 
-0000235121 00000 n 
-0000235269 00000 n 
-0000235416 00000 n 
-0000235564 00000 n 
-0000235711 00000 n 
-0000235859 00000 n 
-0000236006 00000 n 
-0000236154 00000 n 
-0000236301 00000 n 
-0000236449 00000 n 
-0000236596 00000 n 
-0000236743 00000 n 
-0000236889 00000 n 
-0000237036 00000 n 
-0000237182 00000 n 
-0000237334 00000 n 
-0000237486 00000 n 
-0000237653 00000 n 
-0000237819 00000 n 
-0000237986 00000 n 
-0000238152 00000 n 
-0000238313 00000 n 
-0000238473 00000 n 
-0000238628 00000 n 
-0000238782 00000 n 
-0000238940 00000 n 
-0000239097 00000 n 
-0000239254 00000 n 
-0000239411 00000 n 
-0000239575 00000 n 
-0000239738 00000 n 
-0000239888 00000 n 
-0000240039 00000 n 
-0000240193 00000 n 
-0000240347 00000 n 
-0000240508 00000 n 
-0000240668 00000 n 
-0000240831 00000 n 
-0000240993 00000 n 
-0000002036 00000 f 
-0001000526 00000 n 
-0000241155 00000 n 
-0000241316 00000 n 
-0000241473 00000 n 
-0000241630 00000 n 
-0000241796 00000 n 
-0000241961 00000 n 
-0000242124 00000 n 
-0000242286 00000 n 
-0000242452 00000 n 
-0000242617 00000 n 
-0000242778 00000 n 
-0000242939 00000 n 
-0000243107 00000 n 
-0000243274 00000 n 
-0000243434 00000 n 
-0000243594 00000 n 
-0000243763 00000 n 
-0000243931 00000 n 
-0000244079 00000 n 
-0000244227 00000 n 
-0000244381 00000 n 
-0000244535 00000 n 
-0000244686 00000 n 
-0000244837 00000 n 
-0000244987 00000 n 
-0000245137 00000 n 
-0000245289 00000 n 
-0000591138 00000 n 
-0000591581 00000 n 
-0000602444 00000 n 
-0000606094 00000 n 
-0000606410 00000 n 
-0000606663 00000 n 
-0000611386 00000 n 
-0000611575 00000 n 
-0000611763 00000 n 
-0000612015 00000 n 
-0000612395 00000 n 
-0000616033 00000 n 
-0000617164 00000 n 
-0000617668 00000 n 
-0000621632 00000 n 
-0000620810 00000 n 
+0000232942 00000 n 
+0000233089 00000 n 
+0000233235 00000 n 
+0000233383 00000 n 
+0000233530 00000 n 
+0000233684 00000 n 
+0000233838 00000 n 
+0000233990 00000 n 
+0000234142 00000 n 
+0000234308 00000 n 
+0000234473 00000 n 
+0000234640 00000 n 
+0000234806 00000 n 
+0000234966 00000 n 
+0000235125 00000 n 
+0000235279 00000 n 
+0000235432 00000 n 
+0000235591 00000 n 
+0000235749 00000 n 
+0000235907 00000 n 
+0000236065 00000 n 
+0000236229 00000 n 
+0000236392 00000 n 
+0000236542 00000 n 
+0000236693 00000 n 
+0000236846 00000 n 
+0000236999 00000 n 
+0000237160 00000 n 
+0000237320 00000 n 
+0000237484 00000 n 
+0000237647 00000 n 
+0000002068 00000 f 
+0000956660 00000 n 
+0000237809 00000 n 
+0000237970 00000 n 
+0000238127 00000 n 
+0000238284 00000 n 
+0000238450 00000 n 
+0000238615 00000 n 
+0000238777 00000 n 
+0000238938 00000 n 
+0000239103 00000 n 
+0000239267 00000 n 
+0000239428 00000 n 
+0000239589 00000 n 
+0000239758 00000 n 
+0000239926 00000 n 
+0000240086 00000 n 
+0000240246 00000 n 
+0000240415 00000 n 
+0000605129 00000 n 
+0000605572 00000 n 
+0000605824 00000 n 
+0000616751 00000 n 
+0000620280 00000 n 
+0000620595 00000 n 
+0000620846 00000 n 
+0000626203 00000 n 
 0000626391 00000 n 
-0000627521 00000 n 
-0000629320 00000 n 
-0000629508 00000 n 
-0000629760 00000 n 
-0000633330 00000 n 
-0000633832 00000 n 
-0000634399 00000 n 
-0000639431 00000 n 
-0000640439 00000 n 
-0000643649 00000 n 
-0000648021 00000 n 
-0000649033 00000 n 
-0000654323 00000 n 
-0000654639 00000 n 
-0000654764 00000 n 
-0000654953 00000 n 
-0000656097 00000 n 
-0000656350 00000 n 
-0000659047 00000 n 
-0000659235 00000 n 
-0000660559 00000 n 
-0000663864 00000 n 
-0000663990 00000 n 
-0000670769 00000 n 
-0000670894 00000 n 
-0000674247 00000 n 
-0000674373 00000 n 
-0000674624 00000 n 
-0000679955 00000 n 
-0000687042 00000 n 
-0000318723 00000 n 
-0000303076 00000 n 
-0000245620 00000 n 
-0000318660 00000 n 
-0000304058 00000 n 
-0000304206 00000 n 
-0000304354 00000 n 
-0000304505 00000 n 
-0000304655 00000 n 
-0000304807 00000 n 
-0000304958 00000 n 
-0000305110 00000 n 
-0000305261 00000 n 
-0000305419 00000 n 
-0000305576 00000 n 
-0000305731 00000 n 
-0000305885 00000 n 
-0000306032 00000 n 
-0000306178 00000 n 
-0000306341 00000 n 
-0000306503 00000 n 
-0000306655 00000 n 
-0000306808 00000 n 
-0000306963 00000 n 
-0000307117 00000 n 
-0000307272 00000 n 
-0000307426 00000 n 
-0000307580 00000 n 
-0000307734 00000 n 
-0000307889 00000 n 
-0000308043 00000 n 
-0000308202 00000 n 
-0000308360 00000 n 
-0000308520 00000 n 
-0000308679 00000 n 
-0000308842 00000 n 
+0000626580 00000 n 
+0000626833 00000 n 
+0000627213 00000 n 
+0000630737 00000 n 
+0000631871 00000 n 
+0000635259 00000 n 
+0000636081 00000 n 
+0000640047 00000 n 
+0000640676 00000 n 
+0000640865 00000 n 
+0000640990 00000 n 
+0000641240 00000 n 
+0000643372 00000 n 
+0000644252 00000 n 
+0000648334 00000 n 
+0000648835 00000 n 
+0000647891 00000 n 
+0000654280 00000 n 
+0000655288 00000 n 
+0000658640 00000 n 
+0000663011 00000 n 
+0000664023 00000 n 
+0000669313 00000 n 
+0000669629 00000 n 
+0000669754 00000 n 
+0000669943 00000 n 
+0000671087 00000 n 
+0000671340 00000 n 
+0000674037 00000 n 
+0000674225 00000 n 
+0000675549 00000 n 
+0000678854 00000 n 
+0000678980 00000 n 
+0000685759 00000 n 
+0000685884 00000 n 
+0000315736 00000 n 
+0000299769 00000 n 
+0000240762 00000 n 
+0000315673 00000 n 
+0000300769 00000 n 
+0000300917 00000 n 
+0000301065 00000 n 
+0000301219 00000 n 
+0000301373 00000 n 
+0000301525 00000 n 
+0000301677 00000 n 
+0000301828 00000 n 
+0000301979 00000 n 
+0000302130 00000 n 
+0000302281 00000 n 
+0000302428 00000 n 
+0000302575 00000 n 
+0000302726 00000 n 
+0000302876 00000 n 
+0000303028 00000 n 
+0000303179 00000 n 
+0000303331 00000 n 
+0000303482 00000 n 
+0000303640 00000 n 
+0000303797 00000 n 
+0000303952 00000 n 
+0000304106 00000 n 
+0000304264 00000 n 
+0000304421 00000 n 
+0000304568 00000 n 
+0000304714 00000 n 
+0000304877 00000 n 
+0000305039 00000 n 
+0000305191 00000 n 
+0000305344 00000 n 
+0000305499 00000 n 
+0000305653 00000 n 
+0000305808 00000 n 
+0000305962 00000 n 
+0000306116 00000 n 
+0000306270 00000 n 
+0000306425 00000 n 
+0000306579 00000 n 
+0000306738 00000 n 
+0000306896 00000 n 
+0000307056 00000 n 
+0000307215 00000 n 
+0000307378 00000 n 
+0000307540 00000 n 
+0000307704 00000 n 
+0000307867 00000 n 
+0000308027 00000 n 
+0000308186 00000 n 
+0000308352 00000 n 
+0000308517 00000 n 
+0000308684 00000 n 
+0000308850 00000 n 
 0000309004 00000 n 
-0000309168 00000 n 
-0000309331 00000 n 
-0000309491 00000 n 
-0000309650 00000 n 
-0000309816 00000 n 
-0000309981 00000 n 
-0000310148 00000 n 
-0000310314 00000 n 
-0000310468 00000 n 
-0000310622 00000 n 
-0000310770 00000 n 
-0000310917 00000 n 
-0000311071 00000 n 
-0000311224 00000 n 
-0000311382 00000 n 
-0000311539 00000 n 
-0000311694 00000 n 
-0000311849 00000 n 
-0000312007 00000 n 
-0000312165 00000 n 
-0000312327 00000 n 
-0000312488 00000 n 
-0000312649 00000 n 
-0000312809 00000 n 
-0000312969 00000 n 
-0000313128 00000 n 
-0000313290 00000 n 
-0000313451 00000 n 
-0000313602 00000 n 
-0000313754 00000 n 
-0000313905 00000 n 
-0000314055 00000 n 
-0000314205 00000 n 
-0000314354 00000 n 
-0000314501 00000 n 
-0000314647 00000 n 
-0000314794 00000 n 
-0000314940 00000 n 
-0000315088 00000 n 
-0000315236 00000 n 
-0000315386 00000 n 
-0000315536 00000 n 
-0000315696 00000 n 
-0000315855 00000 n 
-0000316015 00000 n 
-0000316174 00000 n 
-0000316331 00000 n 
-0000316487 00000 n 
-0000316634 00000 n 
-0000316780 00000 n 
-0000316936 00000 n 
-0000317092 00000 n 
-0000317245 00000 n 
-0000317398 00000 n 
-0000317555 00000 n 
-0000317712 00000 n 
-0000317873 00000 n 
-0000318034 00000 n 
-0000318192 00000 n 
-0000318349 00000 n 
-0000318505 00000 n 
-0000685466 00000 n 
-0000741680 00000 n 
-0000742879 00000 n 
-0000743068 00000 n 
-0000741618 00000 n 
-0000747758 00000 n 
-0000748200 00000 n 
-0000748639 00000 n 
-0000752782 00000 n 
-0000752908 00000 n 
-0000758088 00000 n 
-0000758403 00000 n 
-0000762117 00000 n 
-0000762494 00000 n 
-0000762682 00000 n 
-0000762870 00000 n 
-0000763055 00000 n 
-0000765436 00000 n 
-0000765625 00000 n 
-0000765877 00000 n 
-0000766066 00000 n 
-0000766255 00000 n 
-0000769314 00000 n 
-0000769565 00000 n 
-0000769879 00000 n 
-0000770448 00000 n 
-0000770636 00000 n 
-0000773893 00000 n 
-0000774901 00000 n 
-0000781135 00000 n 
-0000781324 00000 n 
-0000784363 00000 n 
-0000784804 00000 n 
-0000785305 00000 n 
-0000788799 00000 n 
-0000789051 00000 n 
-0000793040 00000 n 
-0000793669 00000 n 
-0000793983 00000 n 
-0000798148 00000 n 
-0000800507 00000 n 
-0000803593 00000 n 
-0000803718 00000 n 
-0000804539 00000 n 
-0000804791 00000 n 
-0000805550 00000 n 
-0000810387 00000 n 
-0000385600 00000 n 
-0000371312 00000 n 
-0000318825 00000 n 
-0000385537 00000 n 
-0000372222 00000 n 
-0000372382 00000 n 
-0000372541 00000 n 
-0000372701 00000 n 
-0000372861 00000 n 
-0000373025 00000 n 
-0000373188 00000 n 
-0000373341 00000 n 
-0000373494 00000 n 
-0000373660 00000 n 
-0000373826 00000 n 
-0000373979 00000 n 
-0000374132 00000 n 
-0000374281 00000 n 
-0000374429 00000 n 
-0000374576 00000 n 
-0000374722 00000 n 
-0000374869 00000 n 
-0000375015 00000 n 
-0000375162 00000 n 
-0000375308 00000 n 
-0000375459 00000 n 
-0000375610 00000 n 
-0000375756 00000 n 
-0000375902 00000 n 
-0000376060 00000 n 
-0000376219 00000 n 
-0000376376 00000 n 
-0000376534 00000 n 
-0000376692 00000 n 
-0000376851 00000 n 
-0000377008 00000 n 
-0000377166 00000 n 
-0000377323 00000 n 
-0000377481 00000 n 
-0000377640 00000 n 
-0000377801 00000 n 
-0000377965 00000 n 
-0000378130 00000 n 
-0000378290 00000 n 
-0000378451 00000 n 
-0000378604 00000 n 
-0000378758 00000 n 
-0000378923 00000 n 
-0000379089 00000 n 
-0000379239 00000 n 
-0000379390 00000 n 
-0000379539 00000 n 
-0000379689 00000 n 
-0000379847 00000 n 
-0000380006 00000 n 
-0000380175 00000 n 
-0000380345 00000 n 
-0000380514 00000 n 
-0000380684 00000 n 
-0000380850 00000 n 
-0000381017 00000 n 
-0000381182 00000 n 
-0000381348 00000 n 
-0000381495 00000 n 
-0000381643 00000 n 
-0000381792 00000 n 
-0000381942 00000 n 
-0000382091 00000 n 
-0000382241 00000 n 
-0000382390 00000 n 
-0000382540 00000 n 
-0000382688 00000 n 
-0000382837 00000 n 
-0000382985 00000 n 
-0000383134 00000 n 
-0000383283 00000 n 
-0000383433 00000 n 
-0000383582 00000 n 
-0000383732 00000 n 
-0000383881 00000 n 
-0000384031 00000 n 
-0000384180 00000 n 
-0000384330 00000 n 
-0000384479 00000 n 
-0000384629 00000 n 
-0000384779 00000 n 
-0000384930 00000 n 
-0000385081 00000 n 
-0000385234 00000 n 
-0000385385 00000 n 
-0001001120 00000 n 
-0000814604 00000 n 
-0000815807 00000 n 
-0000825041 00000 n 
-0000825293 00000 n 
-0000836165 00000 n 
-0000843700 00000 n 
-0000843826 00000 n 
-0000844015 00000 n 
-0000844647 00000 n 
-0000846765 00000 n 
-0000847017 00000 n 
-0000849951 00000 n 
-0000916559 00000 n 
-0000916748 00000 n 
-0000917444 00000 n 
-0000917885 00000 n 
-0000920621 00000 n 
-0000921250 00000 n 
-0000922011 00000 n 
-0000925971 00000 n 
-0000928785 00000 n 
-0000929165 00000 n 
-0000933017 00000 n 
-0000933268 00000 n 
-0000935231 00000 n 
-0000937830 00000 n 
-0000937955 00000 n 
-0000939090 00000 n 
-0000944614 00000 n 
-0000950740 00000 n 
-0000951054 00000 n 
-0000951367 00000 n 
-0000955449 00000 n 
-0000955700 00000 n 
-0000959696 00000 n 
-0000964932 00000 n 
-0000965247 00000 n 
-0000965499 00000 n 
-0000968625 00000 n 
-0000968814 00000 n 
-0000969004 00000 n 
-0000969321 00000 n 
-0000973328 00000 n 
-0000395062 00000 n 
-0000392605 00000 n 
-0000385716 00000 n 
-0000394875 00000 n 
-0000392849 00000 n 
-0000393006 00000 n 
-0000393163 00000 n 
-0000393333 00000 n 
-0000393503 00000 n 
-0000393678 00000 n 
-0000393853 00000 n 
-0000394021 00000 n 
-0000394189 00000 n 
-0000394358 00000 n 
-0000394529 00000 n 
-0000394701 00000 n 
-0000687359 00000 n 
-0000659614 00000 n 
-0000659992 00000 n 
-0000660748 00000 n 
-0000925086 00000 n 
-0000925466 00000 n 
-0000400221 00000 n 
-0000397848 00000 n 
-0000395164 00000 n 
-0000398391 00000 n 
-0000398454 00000 n 
-0000398517 00000 n 
-0000397993 00000 n 
-0000398580 00000 n 
-0000398768 00000 n 
-0000398831 00000 n 
-0000398894 00000 n 
-0000399082 00000 n 
-0000399145 00000 n 
-0000399207 00000 n 
-0000399271 00000 n 
-0000399335 00000 n 
-0000399398 00000 n 
-0000399461 00000 n 
-0000399525 00000 n 
-0000399587 00000 n 
-0000399650 00000 n 
-0000399713 00000 n 
-0000399777 00000 n 
-0000399841 00000 n 
-0000399904 00000 n 
-0000399966 00000 n 
-0000400030 00000 n 
-0000400093 00000 n 
-0000400157 00000 n 
-0000406098 00000 n 
-0000402558 00000 n 
-0000400337 00000 n 
-0000402682 00000 n 
-0000402746 00000 n 
-0000402810 00000 n 
-0000402873 00000 n 
-0000402937 00000 n 
-0000403000 00000 n 
-0000403189 00000 n 
-0000403252 00000 n 
-0000403315 00000 n 
-0000403378 00000 n 
-0000403440 00000 n 
-0000403503 00000 n 
-0000403566 00000 n 
-0000403629 00000 n 
-0000403693 00000 n 
-0000403755 00000 n 
-0000403818 00000 n 
-0000403881 00000 n 
-0000403945 00000 n 
-0000404008 00000 n 
-0000404071 00000 n 
-0000404134 00000 n 
-0000404198 00000 n 
-0000404261 00000 n 
-0000404324 00000 n 
-0000404387 00000 n 
-0000404451 00000 n 
-0000404514 00000 n 
-0000404577 00000 n 
-0000404640 00000 n 
-0000404704 00000 n 
-0000404766 00000 n 
-0000404829 00000 n 
-0000404892 00000 n 
-0000404955 00000 n 
-0000405018 00000 n 
-0000405081 00000 n 
-0000405144 00000 n 
-0000405208 00000 n 
-0000405272 00000 n 
-0000405336 00000 n 
-0000405400 00000 n 
-0000405464 00000 n 
-0000405528 00000 n 
-0000405592 00000 n 
-0000405656 00000 n 
-0000405720 00000 n 
-0000405782 00000 n 
-0000405845 00000 n 
-0000405908 00000 n 
-0000405971 00000 n 
-0000408462 00000 n 
+0000309158 00000 n 
+0000309306 00000 n 
+0000309453 00000 n 
+0000309607 00000 n 
+0000309760 00000 n 
+0000309920 00000 n 
+0000310079 00000 n 
+0000310237 00000 n 
+0000310394 00000 n 
+0000310549 00000 n 
+0000310704 00000 n 
+0000310862 00000 n 
+0000311020 00000 n 
+0000311181 00000 n 
+0000311341 00000 n 
+0000311501 00000 n 
+0000311660 00000 n 
+0000311817 00000 n 
+0000311973 00000 n 
+0000312135 00000 n 
+0000312296 00000 n 
+0000312457 00000 n 
+0000312617 00000 n 
+0000312768 00000 n 
+0000312920 00000 n 
+0000313070 00000 n 
+0000313219 00000 n 
+0000313368 00000 n 
+0000313516 00000 n 
+0000313664 00000 n 
+0000313811 00000 n 
+0000313972 00000 n 
+0000314132 00000 n 
+0000314280 00000 n 
+0000314428 00000 n 
+0000314578 00000 n 
+0000314728 00000 n 
+0000314888 00000 n 
+0000315047 00000 n 
+0000315206 00000 n 
+0000315364 00000 n 
+0000315519 00000 n 
+0000689218 00000 n 
+0000689344 00000 n 
+0000689720 00000 n 
+0000695037 00000 n 
+0000702354 00000 n 
+0000700654 00000 n 
+0000754227 00000 n 
+0000757856 00000 n 
+0000758045 00000 n 
+0000758994 00000 n 
+0000762816 00000 n 
+0000763259 00000 n 
+0000763448 00000 n 
+0000767216 00000 n 
+0000767721 00000 n 
+0000767847 00000 n 
+0000773236 00000 n 
+0000773551 00000 n 
+0000777101 00000 n 
+0000777478 00000 n 
+0000777666 00000 n 
+0000777854 00000 n 
+0000780371 00000 n 
+0000780560 00000 n 
+0000780749 00000 n 
+0000781001 00000 n 
+0000781189 00000 n 
+0000781378 00000 n 
+0000784187 00000 n 
+0000784439 00000 n 
+0000784627 00000 n 
+0000784942 00000 n 
+0000788766 00000 n 
+0000788954 00000 n 
+0000790464 00000 n 
+0000796762 00000 n 
+0000799254 00000 n 
+0000799571 00000 n 
+0000804976 00000 n 
+0000805164 00000 n 
+0000805605 00000 n 
+0000809093 00000 n 
+0000809533 00000 n 
+0000809785 00000 n 
+0000813787 00000 n 
+0000817719 00000 n 
+0000818033 00000 n 
+0000818664 00000 n 
+0000387286 00000 n 
+0000371989 00000 n 
+0000315838 00000 n 
+0000387223 00000 n 
+0000372953 00000 n 
+0000373101 00000 n 
+0000373248 00000 n 
+0000373404 00000 n 
+0000373560 00000 n 
+0000373713 00000 n 
+0000373866 00000 n 
+0000374023 00000 n 
+0000374180 00000 n 
+0000374341 00000 n 
+0000374502 00000 n 
+0000374661 00000 n 
+0000374819 00000 n 
+0000374976 00000 n 
+0000375132 00000 n 
+0000375292 00000 n 
+0000375451 00000 n 
+0000375611 00000 n 
+0000375771 00000 n 
+0000375935 00000 n 
+0000376098 00000 n 
+0000376251 00000 n 
+0000376404 00000 n 
+0000376569 00000 n 
+0000376734 00000 n 
+0000376888 00000 n 
+0000377042 00000 n 
+0000377192 00000 n 
+0000377341 00000 n 
+0000377488 00000 n 
+0000377634 00000 n 
+0000377781 00000 n 
+0000377927 00000 n 
+0000378074 00000 n 
+0000378220 00000 n 
+0000378372 00000 n 
+0000378524 00000 n 
+0000378682 00000 n 
+0000378840 00000 n 
+0000378997 00000 n 
+0000379154 00000 n 
+0000379312 00000 n 
+0000379470 00000 n 
+0000379627 00000 n 
+0000379784 00000 n 
+0000379941 00000 n 
+0000380098 00000 n 
+0000380257 00000 n 
+0000380416 00000 n 
+0000380578 00000 n 
+0000380740 00000 n 
+0000380900 00000 n 
+0000381060 00000 n 
+0000381213 00000 n 
+0000381366 00000 n 
+0000381531 00000 n 
+0000381696 00000 n 
+0000381845 00000 n 
+0000381995 00000 n 
+0000382145 00000 n 
+0000382295 00000 n 
+0000382453 00000 n 
+0000382611 00000 n 
+0000382780 00000 n 
+0000382949 00000 n 
+0000383119 00000 n 
+0000383289 00000 n 
+0000383455 00000 n 
+0000383621 00000 n 
+0000383786 00000 n 
+0000383951 00000 n 
+0000384098 00000 n 
+0000384245 00000 n 
+0000384394 00000 n 
+0000384543 00000 n 
+0000384692 00000 n 
+0000384841 00000 n 
+0000384990 00000 n 
+0000385139 00000 n 
+0000385288 00000 n 
+0000385437 00000 n 
+0000385586 00000 n 
+0000385735 00000 n 
+0000385884 00000 n 
+0000386033 00000 n 
+0000386182 00000 n 
+0000386331 00000 n 
+0000386480 00000 n 
+0000386629 00000 n 
+0000386778 00000 n 
+0000386928 00000 n 
+0000387075 00000 n 
+0000957254 00000 n 
+0000822238 00000 n 
+0000825322 00000 n 
+0000825447 00000 n 
+0000826268 00000 n 
+0000826520 00000 n 
+0000827279 00000 n 
+0000832116 00000 n 
+0000836333 00000 n 
+0000837536 00000 n 
+0000846770 00000 n 
+0000847022 00000 n 
+0000857894 00000 n 
+0000865771 00000 n 
+0000865897 00000 n 
+0000866086 00000 n 
+0000868512 00000 n 
+0000868955 00000 n 
+0000869207 00000 n 
+0000872713 00000 n 
+0000872902 00000 n 
+0000873598 00000 n 
+0000874039 00000 n 
+0000876771 00000 n 
+0000877400 00000 n 
+0000878161 00000 n 
+0000882120 00000 n 
+0000884933 00000 n 
+0000885313 00000 n 
+0000889165 00000 n 
+0000889416 00000 n 
+0000891379 00000 n 
+0000893975 00000 n 
+0000894100 00000 n 
+0000895235 00000 n 
+0000900754 00000 n 
+0000906881 00000 n 
+0000907194 00000 n 
+0000907507 00000 n 
+0000911590 00000 n 
+0000911842 00000 n 
+0000915836 00000 n 
+0000921070 00000 n 
+0000921386 00000 n 
+0000921638 00000 n 
+0000924758 00000 n 
+0000924947 00000 n 
+0000393096 00000 n 
+0000391933 00000 n 
+0000387402 00000 n 
+0000393033 00000 n 
+0000392123 00000 n 
+0000392273 00000 n 
+0000392424 00000 n 
+0000392576 00000 n 
+0000392730 00000 n 
+0000392881 00000 n 
+0000925137 00000 n 
+0000925454 00000 n 
+0000929460 00000 n 
+0000402559 00000 n 
+0000400102 00000 n 
+0000393198 00000 n 
+0000402372 00000 n 
+0000400346 00000 n 
+0000400503 00000 n 
+0000400660 00000 n 
+0000400830 00000 n 
+0000401000 00000 n 
+0000401175 00000 n 
+0000401350 00000 n 
+0000401518 00000 n 
+0000401686 00000 n 
+0000401856 00000 n 
+0000402026 00000 n 
+0000402199 00000 n 
+0000702670 00000 n 
+0000674604 00000 n 
+0000674982 00000 n 
+0000675738 00000 n 
+0000881235 00000 n 
+0000881615 00000 n 
+0000407719 00000 n 
+0000405346 00000 n 
+0000402661 00000 n 
+0000405889 00000 n 
+0000405952 00000 n 
+0000406015 00000 n 
+0000405491 00000 n 
+0000406078 00000 n 
+0000406266 00000 n 
+0000406329 00000 n 
+0000406392 00000 n 
+0000406580 00000 n 
+0000406643 00000 n 
+0000406705 00000 n 
+0000406769 00000 n 
+0000406833 00000 n 
+0000406896 00000 n 
+0000406959 00000 n 
+0000407023 00000 n 
+0000407085 00000 n 
+0000407148 00000 n 
+0000407211 00000 n 
+0000407275 00000 n 
+0000407339 00000 n 
+0000407402 00000 n 
+0000407464 00000 n 
+0000407528 00000 n 
+0000407591 00000 n 
 0000407655 00000 n 
-0000406214 00000 n 
-0000408020 00000 n 
-0000408083 00000 n 
-0000408146 00000 n 
-0000408209 00000 n 
-0000408272 00000 n 
-0000002048 00000 f 
-0001000434 00000 n 
-0000407800 00000 n 
-0000408335 00000 n 
-0000408398 00000 n 
-0000979307 00000 n 
-0000414362 00000 n 
-0000411074 00000 n 
-0000408606 00000 n 
-0000412786 00000 n 
-0000412849 00000 n 
-0000412912 00000 n 
-0000002323 00000 f 
-0001000334 00000 n 
-0000412976 00000 n 
-0000411282 00000 n 
-0000411437 00000 n 
-0000413039 00000 n 
-0000413101 00000 n 
-0000413164 00000 n 
-0000413227 00000 n 
-0000413290 00000 n 
-0000413354 00000 n 
-0000413416 00000 n 
-0000413479 00000 n 
-0000413542 00000 n 
-0000411590 00000 n 
-0000413605 00000 n 
-0000411743 00000 n 
-0000413668 00000 n 
-0000411902 00000 n 
-0000413731 00000 n 
-0000412062 00000 n 
-0000413794 00000 n 
-0000412220 00000 n 
-0000413857 00000 n 
-0000412382 00000 n 
-0000413920 00000 n 
-0000414108 00000 n 
-0000414171 00000 n 
-0000414235 00000 n 
-0000414298 00000 n 
-0000419141 00000 n 
-0000416765 00000 n 
-0000414506 00000 n 
-0000417187 00000 n 
-0000417375 00000 n 
-0000417438 00000 n 
-0000417502 00000 n 
-0000417565 00000 n 
-0000417629 00000 n 
-0000417692 00000 n 
-0000417754 00000 n 
-0000417818 00000 n 
-0000417882 00000 n 
-0000418069 00000 n 
-0000418132 00000 n 
-0000418196 00000 n 
-0000418259 00000 n 
-0000418323 00000 n 
-0000418511 00000 n 
-0000418574 00000 n 
-0000416910 00000 n 
-0000418637 00000 n 
-0000418700 00000 n 
-0000418763 00000 n 
-0000418952 00000 n 
-0000419015 00000 n 
-0000419078 00000 n 
-0001001245 00000 n 
-0000979686 00000 n 
-0000424960 00000 n 
-0000422356 00000 n 
-0000419271 00000 n 
-0000423005 00000 n 
-0000423067 00000 n 
-0000423131 00000 n 
-0000423194 00000 n 
-0000423258 00000 n 
-0000423322 00000 n 
-0000423386 00000 n 
-0000423448 00000 n 
-0000423636 00000 n 
-0000423699 00000 n 
-0000422519 00000 n 
-0000423763 00000 n 
-0000423826 00000 n 
-0000423890 00000 n 
-0000423952 00000 n 
-0000424014 00000 n 
-0000424076 00000 n 
-0000424138 00000 n 
-0000424201 00000 n 
-0000422675 00000 n 
-0000422836 00000 n 
-0000424264 00000 n 
-0000424327 00000 n 
-0000424390 00000 n 
-0000424453 00000 n 
-0000424517 00000 n 
-0000424580 00000 n 
-0000424643 00000 n 
-0000424707 00000 n 
-0000424770 00000 n 
-0000424833 00000 n 
-0000424896 00000 n 
-0000432765 00000 n 
-0000427210 00000 n 
-0000425104 00000 n 
-0000428928 00000 n 
-0000428991 00000 n 
-0000429055 00000 n 
-0000429118 00000 n 
-0000429180 00000 n 
-0000429243 00000 n 
-0000429306 00000 n 
-0000429369 00000 n 
-0000429432 00000 n 
-0000429495 00000 n 
-0000427427 00000 n 
-0000429558 00000 n 
-0000429621 00000 n 
-0000429684 00000 n 
-0000429747 00000 n 
-0000429810 00000 n 
-0000429873 00000 n 
-0000427595 00000 n 
-0000429936 00000 n 
-0000429999 00000 n 
-0000430062 00000 n 
-0000430125 00000 n 
-0000430188 00000 n 
-0000430252 00000 n 
-0000430315 00000 n 
-0000427762 00000 n 
-0000430377 00000 n 
-0000430440 00000 n 
-0000430503 00000 n 
-0000430565 00000 n 
-0000427922 00000 n 
-0000430628 00000 n 
-0000430691 00000 n 
-0000428091 00000 n 
-0000430754 00000 n 
-0000430817 00000 n 
-0000428258 00000 n 
-0000430880 00000 n 
-0000430943 00000 n 
-0000428424 00000 n 
-0000431006 00000 n 
-0000431069 00000 n 
-0000431132 00000 n 
-0000431195 00000 n 
-0000431258 00000 n 
-0000431321 00000 n 
-0000428591 00000 n 
-0000431384 00000 n 
-0000431447 00000 n 
-0000431510 00000 n 
-0000431573 00000 n 
-0000431636 00000 n 
-0000431699 00000 n 
-0000431760 00000 n 
-0000431823 00000 n 
-0000428761 00000 n 
-0000431886 00000 n 
-0000431948 00000 n 
-0000432011 00000 n 
-0000432074 00000 n 
-0000432137 00000 n 
-0000432200 00000 n 
-0000432263 00000 n 
-0000432326 00000 n 
-0000432389 00000 n 
-0000432452 00000 n 
-0000432515 00000 n 
-0000432578 00000 n 
-0000432640 00000 n 
-0000432703 00000 n 
-0000436443 00000 n 
-0000434751 00000 n 
-0000432853 00000 n 
-0000435000 00000 n 
-0000435063 00000 n 
-0000435251 00000 n 
-0000435439 00000 n 
-0000435502 00000 n 
-0000435564 00000 n 
-0000435627 00000 n 
-0000435689 00000 n 
-0000435752 00000 n 
-0000435815 00000 n 
-0000435878 00000 n 
-0000435942 00000 n 
-0000436130 00000 n 
-0000436318 00000 n 
-0000440760 00000 n 
-0000438887 00000 n 
-0000436573 00000 n 
-0000439186 00000 n 
-0000439311 00000 n 
-0000439500 00000 n 
-0000439563 00000 n 
-0000439753 00000 n 
-0000439942 00000 n 
-0000440130 00000 n 
-0000440193 00000 n 
-0000440256 00000 n 
-0000440319 00000 n 
-0000440381 00000 n 
-0000439032 00000 n 
-0000440445 00000 n 
-0000440508 00000 n 
-0000440571 00000 n 
-0000440634 00000 n 
-0000446261 00000 n 
-0000443626 00000 n 
-0000440890 00000 n 
-0000443922 00000 n 
-0000444048 00000 n 
-0000444111 00000 n 
-0000444175 00000 n 
-0000444239 00000 n 
-0000444303 00000 n 
-0000444366 00000 n 
-0000444430 00000 n 
-0000444494 00000 n 
-0000444557 00000 n 
-0000444620 00000 n 
-0000444810 00000 n 
-0000444873 00000 n 
-0000443771 00000 n 
-0000445063 00000 n 
-0000445126 00000 n 
-0000445188 00000 n 
-0000445250 00000 n 
-0000445312 00000 n 
-0000445374 00000 n 
-0000445435 00000 n 
-0000445499 00000 n 
-0000445563 00000 n 
-0000445626 00000 n 
-0000445690 00000 n 
-0000445753 00000 n 
-0000445817 00000 n 
-0000445881 00000 n 
-0000445945 00000 n 
-0000446008 00000 n 
-0000446071 00000 n 
-0000446134 00000 n 
-0000450998 00000 n 
-0000448674 00000 n 
-0000446391 00000 n 
-0000449297 00000 n 
-0000449360 00000 n 
-0000449485 00000 n 
-0000448837 00000 n 
-0000448986 00000 n 
-0000449674 00000 n 
-0000449737 00000 n 
-0000449927 00000 n 
-0000449990 00000 n 
-0000449140 00000 n 
-0000450054 00000 n 
-0000450180 00000 n 
-0000450243 00000 n 
-0000450307 00000 n 
-0000450370 00000 n 
-0000450433 00000 n 
-0000450497 00000 n 
-0000450560 00000 n 
-0000450623 00000 n 
-0000450746 00000 n 
-0000450809 00000 n 
-0000450872 00000 n 
-0000450935 00000 n 
-0001001370 00000 n 
-0000456786 00000 n 
-0000453602 00000 n 
-0000451142 00000 n 
-0000454064 00000 n 
-0000454127 00000 n 
-0000454189 00000 n 
-0000454252 00000 n 
-0000454379 00000 n 
-0000454442 00000 n 
-0000454505 00000 n 
-0000002528 00000 f 
-0001000236 00000 n 
-0000454569 00000 n 
-0000453756 00000 n 
-0000454633 00000 n 
-0000454695 00000 n 
-0000454759 00000 n 
-0000454823 00000 n 
-0000454887 00000 n 
-0000454951 00000 n 
-0000455015 00000 n 
-0000455078 00000 n 
-0000455141 00000 n 
-0000455203 00000 n 
-0000455266 00000 n 
-0000455330 00000 n 
-0000455394 00000 n 
-0000455520 00000 n 
-0000455583 00000 n 
-0000455646 00000 n 
-0000455709 00000 n 
-0000455773 00000 n 
-0000455837 00000 n 
-0000455900 00000 n 
-0000455964 00000 n 
-0000456028 00000 n 
-0000456092 00000 n 
-0000456155 00000 n 
-0000456218 00000 n 
-0000456407 00000 n 
-0000456533 00000 n 
-0000456596 00000 n 
-0000456660 00000 n 
-0000456723 00000 n 
-0000453911 00000 n 
-0000462105 00000 n 
-0000459519 00000 n 
-0000456958 00000 n 
-0000459833 00000 n 
-0000459896 00000 n 
-0000459959 00000 n 
-0000460022 00000 n 
-0000460085 00000 n 
-0000460148 00000 n 
-0000460211 00000 n 
-0000460275 00000 n 
-0000460339 00000 n 
-0000460465 00000 n 
-0000460527 00000 n 
-0000460591 00000 n 
-0000460654 00000 n 
-0000460717 00000 n 
-0000460780 00000 n 
-0000460843 00000 n 
-0000460906 00000 n 
-0000460969 00000 n 
-0000461032 00000 n 
-0000461096 00000 n 
-0000461160 00000 n 
-0000461350 00000 n 
-0000461413 00000 n 
-0000461477 00000 n 
-0000461540 00000 n 
-0000461601 00000 n 
-0000461662 00000 n 
-0000461852 00000 n 
-0000461915 00000 n 
-0000459664 00000 n 
-0000461978 00000 n 
-0000467933 00000 n 
-0000464923 00000 n 
-0000462249 00000 n 
-0000465404 00000 n 
-0000465530 00000 n 
-0000465077 00000 n 
-0000465240 00000 n 
-0000465593 00000 n 
-0000465719 00000 n 
-0000465782 00000 n 
-0000465845 00000 n 
-0000465908 00000 n 
-0000465970 00000 n 
-0000466032 00000 n 
-0000466095 00000 n 
-0000466159 00000 n 
-0000466223 00000 n 
-0000466286 00000 n 
-0000466349 00000 n 
-0000466413 00000 n 
-0000466476 00000 n 
-0000466539 00000 n 
-0000466602 00000 n 
-0000466666 00000 n 
-0000466729 00000 n 
-0000466792 00000 n 
-0000466856 00000 n 
-0000466919 00000 n 
-0000466983 00000 n 
-0000467047 00000 n 
-0000467111 00000 n 
-0000467174 00000 n 
-0000467238 00000 n 
-0000467302 00000 n 
-0000467365 00000 n 
-0000467428 00000 n 
-0000467553 00000 n 
-0000467616 00000 n 
-0000467679 00000 n 
-0000467742 00000 n 
-0000467806 00000 n 
-0000467870 00000 n 
-0000473674 00000 n 
-0000471140 00000 n 
-0000468091 00000 n 
-0000471264 00000 n 
-0000471327 00000 n 
-0000471390 00000 n 
-0000471453 00000 n 
-0000471517 00000 n 
-0000471581 00000 n 
-0000471643 00000 n 
-0000471707 00000 n 
-0000471770 00000 n 
-0000471833 00000 n 
-0000471896 00000 n 
-0000471959 00000 n 
-0000472023 00000 n 
-0000472086 00000 n 
-0000472150 00000 n 
-0000472214 00000 n 
-0000472278 00000 n 
-0000472341 00000 n 
-0000472404 00000 n 
-0000472467 00000 n 
-0000472531 00000 n 
-0000472594 00000 n 
-0000472658 00000 n 
-0000472721 00000 n 
-0000472785 00000 n 
-0000472849 00000 n 
-0000472913 00000 n 
-0000472976 00000 n 
-0000473040 00000 n 
-0000473104 00000 n 
-0000473167 00000 n 
-0000473231 00000 n 
-0000473294 00000 n 
-0000473483 00000 n 
-0000473546 00000 n 
-0000473610 00000 n 
-0000479853 00000 n 
-0000476864 00000 n 
-0000473832 00000 n 
-0000477508 00000 n 
-0000477571 00000 n 
-0000477635 00000 n 
-0000477699 00000 n 
-0000477763 00000 n 
-0000477827 00000 n 
-0000477891 00000 n 
-0000477955 00000 n 
-0000478018 00000 n 
-0000478081 00000 n 
-0000478145 00000 n 
-0000478209 00000 n 
-0000478272 00000 n 
-0000478334 00000 n 
-0000478397 00000 n 
-0000478460 00000 n 
-0000478523 00000 n 
-0000478586 00000 n 
-0000478649 00000 n 
-0000478712 00000 n 
-0000478776 00000 n 
-0000478840 00000 n 
-0000478903 00000 n 
-0000478966 00000 n 
-0000479030 00000 n 
-0000477027 00000 n 
-0000479220 00000 n 
-0000479283 00000 n 
-0000477196 00000 n 
-0000479347 00000 n 
-0000479410 00000 n 
-0000479473 00000 n 
-0000479536 00000 n 
-0000477354 00000 n 
-0000479600 00000 n 
-0000479664 00000 n 
-0000479728 00000 n 
-0000479791 00000 n 
-0000484792 00000 n 
-0000482104 00000 n 
-0000480011 00000 n 
-0000482403 00000 n 
-0000482466 00000 n 
-0000482529 00000 n 
-0000482593 00000 n 
-0000482656 00000 n 
-0000482249 00000 n 
-0000482844 00000 n 
-0000483033 00000 n 
-0000483096 00000 n 
-0000483159 00000 n 
-0000483222 00000 n 
-0000002760 00000 f 
-0001000141 00000 n 
-0000483285 00000 n 
-0000483348 00000 n 
-0000483412 00000 n 
-0000483474 00000 n 
-0000483536 00000 n 
-0000483599 00000 n 
-0000483661 00000 n 
-0000483724 00000 n 
-0000483787 00000 n 
-0000483850 00000 n 
-0000483913 00000 n 
-0000483976 00000 n 
-0000484039 00000 n 
-0000484227 00000 n 
-0000484289 00000 n 
-0000484352 00000 n 
-0000484415 00000 n 
-0000484478 00000 n 
-0000484541 00000 n 
-0000484605 00000 n 
-0000484667 00000 n 
-0000484730 00000 n 
-0001001495 00000 n 
-0000489025 00000 n 
-0000487154 00000 n 
-0000484936 00000 n 
-0000487449 00000 n 
-0000487512 00000 n 
-0000487575 00000 n 
-0000487637 00000 n 
-0000487701 00000 n 
-0000487764 00000 n 
-0000487953 00000 n 
-0000488016 00000 n 
-0000488079 00000 n 
-0000488142 00000 n 
-0000488205 00000 n 
-0000488268 00000 n 
-0000488458 00000 n 
-0000487299 00000 n 
-0000488521 00000 n 
-0000488584 00000 n 
-0000488647 00000 n 
-0000488710 00000 n 
-0000488773 00000 n 
-0000488835 00000 n 
-0000488898 00000 n 
-0000494110 00000 n 
-0000491527 00000 n 
-0000489155 00000 n 
-0000491651 00000 n 
-0000491777 00000 n 
-0000491840 00000 n 
-0000491903 00000 n 
-0000491967 00000 n 
-0000492031 00000 n 
-0000492094 00000 n 
-0000492157 00000 n 
-0000492221 00000 n 
-0000492285 00000 n 
-0000492348 00000 n 
-0000492411 00000 n 
-0000492600 00000 n 
-0000492663 00000 n 
-0000492725 00000 n 
-0000492788 00000 n 
-0000492851 00000 n 
-0000492914 00000 n 
-0000492977 00000 n 
-0000493041 00000 n 
-0000493105 00000 n 
-0000493169 00000 n 
-0000493232 00000 n 
-0000493295 00000 n 
-0000493358 00000 n 
-0000493421 00000 n 
-0000493484 00000 n 
-0000493547 00000 n 
-0000493609 00000 n 
-0000493672 00000 n 
-0000493735 00000 n 
-0000493796 00000 n 
-0000493984 00000 n 
-0000494047 00000 n 
-0000499323 00000 n 
-0000496871 00000 n 
-0000494226 00000 n 
-0000497173 00000 n 
-0000497236 00000 n 
-0000497298 00000 n 
-0000497362 00000 n 
-0000497016 00000 n 
-0000497426 00000 n 
-0000497490 00000 n 
-0000497553 00000 n 
-0000497616 00000 n 
-0000497679 00000 n 
-0000497742 00000 n 
-0000497805 00000 n 
-0000497869 00000 n 
-0000497932 00000 n 
-0000497996 00000 n 
-0000498059 00000 n 
-0000498122 00000 n 
-0000498185 00000 n 
-0000498248 00000 n 
-0000498312 00000 n 
-0000498376 00000 n 
-0000498438 00000 n 
-0000498501 00000 n 
-0000498565 00000 n 
-0000498629 00000 n 
-0000498693 00000 n 
-0000498756 00000 n 
-0000498819 00000 n 
-0000498882 00000 n 
-0000498944 00000 n 
-0000499008 00000 n 
-0000499070 00000 n 
-0000499133 00000 n 
-0000499196 00000 n 
-0000499259 00000 n 
-0000980760 00000 n 
-0000504608 00000 n 
-0000501949 00000 n 
-0000499467 00000 n 
-0000502073 00000 n 
-0000502136 00000 n 
-0000502199 00000 n 
-0000502262 00000 n 
-0000502325 00000 n 
-0000502388 00000 n 
-0000502452 00000 n 
-0000502515 00000 n 
-0000502577 00000 n 
-0000502640 00000 n 
-0000502703 00000 n 
-0000502893 00000 n 
-0000502956 00000 n 
-0000503020 00000 n 
-0000503084 00000 n 
-0000503147 00000 n 
-0000503211 00000 n 
-0000503275 00000 n 
-0000503338 00000 n 
-0000503402 00000 n 
-0000503466 00000 n 
-0000503529 00000 n 
-0000503592 00000 n 
-0000503781 00000 n 
-0000503844 00000 n 
-0000503908 00000 n 
-0000503971 00000 n 
-0000504034 00000 n 
-0000504098 00000 n 
-0000504162 00000 n 
-0000504226 00000 n 
-0000504289 00000 n 
-0000504353 00000 n 
-0000504417 00000 n 
-0000504481 00000 n 
-0000504545 00000 n 
-0000509202 00000 n 
-0000507031 00000 n 
-0000504738 00000 n 
-0000507500 00000 n 
-0000507563 00000 n 
-0000507626 00000 n 
-0000507815 00000 n 
-0000507878 00000 n 
-0000507941 00000 n 
-0000508131 00000 n 
-0000508320 00000 n 
-0000508383 00000 n 
-0000508446 00000 n 
-0000508636 00000 n 
-0000507185 00000 n 
-0000507348 00000 n 
-0000508699 00000 n 
-0000508762 00000 n 
-0000508825 00000 n 
-0000508888 00000 n 
-0000508951 00000 n 
-0000509014 00000 n 
-0000509077 00000 n 
-0000509140 00000 n 
-0000989124 00000 n 
-0000513733 00000 n 
-0000511467 00000 n 
-0000509346 00000 n 
-0000512098 00000 n 
-0000512161 00000 n 
-0000512223 00000 n 
-0000512286 00000 n 
-0000512474 00000 n 
-0000512662 00000 n 
-0000511630 00000 n 
-0000511798 00000 n 
-0000512725 00000 n 
-0000512787 00000 n 
-0000512850 00000 n 
-0000512913 00000 n 
-0000513103 00000 n 
-0000513292 00000 n 
-0000513481 00000 n 
-0000513544 00000 n 
-0000513607 00000 n 
-0000511945 00000 n 
-0001001620 00000 n 
-0000519376 00000 n 
-0000516487 00000 n 
-0000513863 00000 n 
-0000516786 00000 n 
-0000516912 00000 n 
-0000516975 00000 n 
-0000517038 00000 n 
-0000517102 00000 n 
-0000516632 00000 n 
-0000517164 00000 n 
-0000517227 00000 n 
-0000517289 00000 n 
-0000517353 00000 n 
-0000517417 00000 n 
-0000517481 00000 n 
-0000517545 00000 n 
-0000517609 00000 n 
-0000517673 00000 n 
-0000517737 00000 n 
-0000517800 00000 n 
-0000517864 00000 n 
+0000413596 00000 n 
+0000410056 00000 n 
+0000407835 00000 n 
+0000410180 00000 n 
+0000410244 00000 n 
+0000410308 00000 n 
+0000410371 00000 n 
+0000410435 00000 n 
+0000410498 00000 n 
+0000410687 00000 n 
+0000410750 00000 n 
+0000410813 00000 n 
+0000410876 00000 n 
+0000410938 00000 n 
+0000411001 00000 n 
+0000411064 00000 n 
+0000411127 00000 n 
+0000411191 00000 n 
+0000411253 00000 n 
+0000411316 00000 n 
+0000411379 00000 n 
+0000411443 00000 n 
+0000411506 00000 n 
+0000411569 00000 n 
+0000411632 00000 n 
+0000411696 00000 n 
+0000411759 00000 n 
+0000411822 00000 n 
+0000411885 00000 n 
+0000411949 00000 n 
+0000412012 00000 n 
+0000412075 00000 n 
+0000412138 00000 n 
+0000412202 00000 n 
+0000412264 00000 n 
+0000412327 00000 n 
+0000412390 00000 n 
+0000412453 00000 n 
+0000412516 00000 n 
+0000412579 00000 n 
+0000412642 00000 n 
+0000412706 00000 n 
+0000412770 00000 n 
+0000412834 00000 n 
+0000412898 00000 n 
+0000412962 00000 n 
+0000413026 00000 n 
+0000413090 00000 n 
+0000413154 00000 n 
+0000413218 00000 n 
+0000413280 00000 n 
+0000413343 00000 n 
+0000413406 00000 n 
+0000413469 00000 n 
+0000415924 00000 n 
+0000415117 00000 n 
+0000413712 00000 n 
+0000415482 00000 n 
+0000415545 00000 n 
+0000415608 00000 n 
+0000415671 00000 n 
+0000415734 00000 n 
+0000002080 00000 f 
+0000956568 00000 n 
+0000415262 00000 n 
+0000415797 00000 n 
+0000415860 00000 n 
+0000935440 00000 n 
+0000421824 00000 n 
+0000418536 00000 n 
+0000416068 00000 n 
+0000420248 00000 n 
+0000420311 00000 n 
+0000420374 00000 n 
+0000002354 00000 f 
+0000956468 00000 n 
+0000420438 00000 n 
+0000418744 00000 n 
+0000418899 00000 n 
+0000420501 00000 n 
+0000420563 00000 n 
+0000420626 00000 n 
+0000420689 00000 n 
+0000420752 00000 n 
+0000420816 00000 n 
+0000420878 00000 n 
+0000420941 00000 n 
+0000421004 00000 n 
+0000419052 00000 n 
+0000421067 00000 n 
+0000419205 00000 n 
+0000421130 00000 n 
+0000419364 00000 n 
+0000421193 00000 n 
+0000419524 00000 n 
+0000421256 00000 n 
+0000419682 00000 n 
+0000421319 00000 n 
+0000419844 00000 n 
+0000421382 00000 n 
+0000421570 00000 n 
+0000421633 00000 n 
+0000421697 00000 n 
+0000421760 00000 n 
+0000957379 00000 n 
+0000426603 00000 n 
+0000424227 00000 n 
+0000421968 00000 n 
+0000424649 00000 n 
+0000424837 00000 n 
+0000424900 00000 n 
+0000424964 00000 n 
+0000425027 00000 n 
+0000425091 00000 n 
+0000425154 00000 n 
+0000425216 00000 n 
+0000425280 00000 n 
+0000425344 00000 n 
+0000425531 00000 n 
+0000425594 00000 n 
+0000425658 00000 n 
+0000425721 00000 n 
+0000425785 00000 n 
+0000425973 00000 n 
+0000426036 00000 n 
+0000424372 00000 n 
+0000426099 00000 n 
+0000426162 00000 n 
+0000426225 00000 n 
+0000426414 00000 n 
+0000426477 00000 n 
+0000426540 00000 n 
+0000935819 00000 n 
+0000432420 00000 n 
+0000429816 00000 n 
+0000426733 00000 n 
+0000430465 00000 n 
+0000430527 00000 n 
+0000430591 00000 n 
+0000430654 00000 n 
+0000430718 00000 n 
+0000430782 00000 n 
+0000430846 00000 n 
+0000430908 00000 n 
+0000431096 00000 n 
+0000431159 00000 n 
+0000429979 00000 n 
+0000431223 00000 n 
+0000431286 00000 n 
+0000431350 00000 n 
+0000431412 00000 n 
+0000431474 00000 n 
+0000431536 00000 n 
+0000431598 00000 n 
+0000431661 00000 n 
+0000430135 00000 n 
+0000430296 00000 n 
+0000431724 00000 n 
+0000431787 00000 n 
+0000431850 00000 n 
+0000431913 00000 n 
+0000431977 00000 n 
+0000432040 00000 n 
+0000432103 00000 n 
+0000432167 00000 n 
+0000432230 00000 n 
+0000432293 00000 n 
+0000432356 00000 n 
+0000440120 00000 n 
+0000434628 00000 n 
+0000432564 00000 n 
+0000436346 00000 n 
+0000436409 00000 n 
+0000436473 00000 n 
+0000436536 00000 n 
+0000436598 00000 n 
+0000436661 00000 n 
+0000436724 00000 n 
+0000436787 00000 n 
+0000436850 00000 n 
+0000436913 00000 n 
+0000434845 00000 n 
+0000436976 00000 n 
+0000437039 00000 n 
+0000437102 00000 n 
+0000437165 00000 n 
+0000437228 00000 n 
+0000437291 00000 n 
+0000435013 00000 n 
+0000437354 00000 n 
+0000437417 00000 n 
+0000437480 00000 n 
+0000437543 00000 n 
+0000437606 00000 n 
+0000437670 00000 n 
+0000437733 00000 n 
+0000435180 00000 n 
+0000437795 00000 n 
+0000437858 00000 n 
+0000437921 00000 n 
+0000437983 00000 n 
+0000435340 00000 n 
+0000438046 00000 n 
+0000438109 00000 n 
+0000435509 00000 n 
+0000438172 00000 n 
+0000438235 00000 n 
+0000435676 00000 n 
+0000438298 00000 n 
+0000438361 00000 n 
+0000435842 00000 n 
+0000438424 00000 n 
+0000438487 00000 n 
+0000438550 00000 n 
+0000438613 00000 n 
+0000438676 00000 n 
+0000438739 00000 n 
+0000436009 00000 n 
+0000438802 00000 n 
+0000438865 00000 n 
+0000438928 00000 n 
+0000438991 00000 n 
+0000439054 00000 n 
+0000439117 00000 n 
+0000439178 00000 n 
+0000439241 00000 n 
+0000436179 00000 n 
+0000439304 00000 n 
+0000439366 00000 n 
+0000439429 00000 n 
+0000439492 00000 n 
+0000439555 00000 n 
+0000439618 00000 n 
+0000439681 00000 n 
+0000439744 00000 n 
+0000439807 00000 n 
+0000439870 00000 n 
+0000439933 00000 n 
+0000439996 00000 n 
+0000443957 00000 n 
+0000442138 00000 n 
+0000440208 00000 n 
+0000442324 00000 n 
+0000442387 00000 n 
+0000442575 00000 n 
+0000442763 00000 n 
+0000442826 00000 n 
+0000442888 00000 n 
+0000442951 00000 n 
+0000443014 00000 n 
+0000443078 00000 n 
+0000443141 00000 n 
+0000443204 00000 n 
+0000443268 00000 n 
+0000443456 00000 n 
+0000443644 00000 n 
+0000443831 00000 n 
+0000448558 00000 n 
+0000446555 00000 n 
+0000444087 00000 n 
+0000446854 00000 n 
+0000446979 00000 n 
+0000447042 00000 n 
+0000447232 00000 n 
+0000447421 00000 n 
+0000447609 00000 n 
+0000447672 00000 n 
+0000447735 00000 n 
+0000447798 00000 n 
+0000447861 00000 n 
+0000446700 00000 n 
+0000447925 00000 n 
+0000447988 00000 n 
+0000448051 00000 n 
+0000448114 00000 n 
+0000448303 00000 n 
+0000448366 00000 n 
+0000448430 00000 n 
+0000448494 00000 n 
+0000453936 00000 n 
+0000451459 00000 n 
+0000448688 00000 n 
+0000451915 00000 n 
+0000451978 00000 n 
+0000452041 00000 n 
+0000452105 00000 n 
+0000452294 00000 n 
+0000452356 00000 n 
+0000451613 00000 n 
+0000452546 00000 n 
+0000452609 00000 n 
+0000452672 00000 n 
+0000452735 00000 n 
+0000452798 00000 n 
+0000452861 00000 n 
+0000452924 00000 n 
+0000452988 00000 n 
+0000453051 00000 n 
+0000453114 00000 n 
+0000453178 00000 n 
+0000453241 00000 n 
+0000453305 00000 n 
+0000453368 00000 n 
+0000453432 00000 n 
+0000453495 00000 n 
+0000453558 00000 n 
+0000451765 00000 n 
+0000453622 00000 n 
+0000453685 00000 n 
+0000453747 00000 n 
+0000453809 00000 n 
+0000957504 00000 n 
+0000458687 00000 n 
+0000456363 00000 n 
+0000454080 00000 n 
+0000456986 00000 n 
+0000457049 00000 n 
+0000457174 00000 n 
+0000456526 00000 n 
+0000456675 00000 n 
+0000457363 00000 n 
+0000457426 00000 n 
+0000457616 00000 n 
+0000457679 00000 n 
+0000456829 00000 n 
+0000457743 00000 n 
+0000457869 00000 n 
+0000457932 00000 n 
+0000457996 00000 n 
+0000458059 00000 n 
+0000458122 00000 n 
+0000458186 00000 n 
+0000458249 00000 n 
+0000458312 00000 n 
+0000458435 00000 n 
+0000458498 00000 n 
+0000458561 00000 n 
+0000458624 00000 n 
+0000464475 00000 n 
+0000461291 00000 n 
+0000458831 00000 n 
+0000461753 00000 n 
+0000461816 00000 n 
+0000461878 00000 n 
+0000461941 00000 n 
+0000462068 00000 n 
+0000462131 00000 n 
+0000462194 00000 n 
+0000002560 00000 f 
+0000956370 00000 n 
+0000462258 00000 n 
+0000461445 00000 n 
+0000462322 00000 n 
+0000462384 00000 n 
+0000462448 00000 n 
+0000462512 00000 n 
+0000462576 00000 n 
+0000462640 00000 n 
+0000462704 00000 n 
+0000462767 00000 n 
+0000462830 00000 n 
+0000462892 00000 n 
+0000462955 00000 n 
+0000463019 00000 n 
+0000463083 00000 n 
+0000463209 00000 n 
+0000463272 00000 n 
+0000463335 00000 n 
+0000463398 00000 n 
+0000463462 00000 n 
+0000463526 00000 n 
+0000463589 00000 n 
+0000463653 00000 n 
+0000463717 00000 n 
+0000463781 00000 n 
+0000463844 00000 n 
+0000463907 00000 n 
+0000464096 00000 n 
+0000464222 00000 n 
+0000464285 00000 n 
+0000464349 00000 n 
+0000464412 00000 n 
+0000461600 00000 n 
+0000469794 00000 n 
+0000467208 00000 n 
+0000464647 00000 n 
+0000467522 00000 n 
+0000467585 00000 n 
+0000467648 00000 n 
+0000467711 00000 n 
+0000467774 00000 n 
+0000467837 00000 n 
+0000467900 00000 n 
+0000467964 00000 n 
+0000468028 00000 n 
+0000468154 00000 n 
+0000468216 00000 n 
+0000468280 00000 n 
+0000468343 00000 n 
+0000468406 00000 n 
+0000468469 00000 n 
+0000468532 00000 n 
+0000468595 00000 n 
+0000468658 00000 n 
+0000468721 00000 n 
+0000468785 00000 n 
+0000468849 00000 n 
+0000469039 00000 n 
+0000469102 00000 n 
+0000469166 00000 n 
+0000469229 00000 n 
+0000469290 00000 n 
+0000469351 00000 n 
+0000469541 00000 n 
+0000469604 00000 n 
+0000467353 00000 n 
+0000469667 00000 n 
+0000475622 00000 n 
+0000472612 00000 n 
+0000469938 00000 n 
+0000473093 00000 n 
+0000473219 00000 n 
+0000472766 00000 n 
+0000472929 00000 n 
+0000473282 00000 n 
+0000473408 00000 n 
+0000473471 00000 n 
+0000473534 00000 n 
+0000473597 00000 n 
+0000473659 00000 n 
+0000473721 00000 n 
+0000473784 00000 n 
+0000473848 00000 n 
+0000473912 00000 n 
+0000473975 00000 n 
+0000474038 00000 n 
+0000474102 00000 n 
+0000474165 00000 n 
+0000474228 00000 n 
+0000474291 00000 n 
+0000474355 00000 n 
+0000474418 00000 n 
+0000474481 00000 n 
+0000474545 00000 n 
+0000474608 00000 n 
+0000474672 00000 n 
+0000474736 00000 n 
+0000474800 00000 n 
+0000474863 00000 n 
+0000474927 00000 n 
+0000474991 00000 n 
+0000475054 00000 n 
+0000475117 00000 n 
+0000475242 00000 n 
+0000475305 00000 n 
+0000475368 00000 n 
+0000475431 00000 n 
+0000475495 00000 n 
+0000475559 00000 n 
+0000481371 00000 n 
+0000478837 00000 n 
+0000475780 00000 n 
+0000478961 00000 n 
+0000479024 00000 n 
+0000479087 00000 n 
+0000479150 00000 n 
+0000479214 00000 n 
+0000479278 00000 n 
+0000479340 00000 n 
+0000479404 00000 n 
+0000479467 00000 n 
+0000479530 00000 n 
+0000479593 00000 n 
+0000479656 00000 n 
+0000479720 00000 n 
+0000479783 00000 n 
+0000479847 00000 n 
+0000479911 00000 n 
+0000479975 00000 n 
+0000480038 00000 n 
+0000480101 00000 n 
+0000480164 00000 n 
+0000480228 00000 n 
+0000480291 00000 n 
+0000480355 00000 n 
+0000480418 00000 n 
+0000480482 00000 n 
+0000480546 00000 n 
+0000480610 00000 n 
+0000480673 00000 n 
+0000480737 00000 n 
+0000480801 00000 n 
+0000480864 00000 n 
+0000480928 00000 n 
+0000480991 00000 n 
+0000481180 00000 n 
+0000481243 00000 n 
+0000481307 00000 n 
+0000487549 00000 n 
+0000484560 00000 n 
+0000481529 00000 n 
+0000485204 00000 n 
+0000485267 00000 n 
+0000485331 00000 n 
+0000485395 00000 n 
+0000485459 00000 n 
+0000485523 00000 n 
+0000485587 00000 n 
+0000485651 00000 n 
+0000485714 00000 n 
+0000485777 00000 n 
+0000485841 00000 n 
+0000485905 00000 n 
+0000485968 00000 n 
+0000486030 00000 n 
+0000486093 00000 n 
+0000486156 00000 n 
+0000486219 00000 n 
+0000486282 00000 n 
+0000486345 00000 n 
+0000486408 00000 n 
+0000486472 00000 n 
+0000486536 00000 n 
+0000486599 00000 n 
+0000486662 00000 n 
+0000486726 00000 n 
+0000484723 00000 n 
+0000486916 00000 n 
+0000486979 00000 n 
+0000484892 00000 n 
+0000487043 00000 n 
+0000487106 00000 n 
+0000487169 00000 n 
+0000487232 00000 n 
+0000485050 00000 n 
+0000487296 00000 n 
+0000487360 00000 n 
+0000487424 00000 n 
+0000487487 00000 n 
+0000957629 00000 n 
+0000492488 00000 n 
+0000489800 00000 n 
+0000487707 00000 n 
+0000490099 00000 n 
+0000490162 00000 n 
+0000490225 00000 n 
+0000490289 00000 n 
+0000490352 00000 n 
+0000489945 00000 n 
+0000490540 00000 n 
+0000490729 00000 n 
+0000490792 00000 n 
+0000490855 00000 n 
+0000490918 00000 n 
+0000002802 00000 f 
+0000956275 00000 n 
+0000490981 00000 n 
+0000491044 00000 n 
+0000491108 00000 n 
+0000491170 00000 n 
+0000491232 00000 n 
+0000491295 00000 n 
+0000491357 00000 n 
+0000491420 00000 n 
+0000491483 00000 n 
+0000491546 00000 n 
+0000491609 00000 n 
+0000491672 00000 n 
+0000491735 00000 n 
+0000491923 00000 n 
+0000491985 00000 n 
+0000492048 00000 n 
+0000492111 00000 n 
+0000492174 00000 n 
+0000492237 00000 n 
+0000492301 00000 n 
+0000492363 00000 n 
+0000492426 00000 n 
+0000496721 00000 n 
+0000494850 00000 n 
+0000492632 00000 n 
+0000495145 00000 n 
+0000495208 00000 n 
+0000495271 00000 n 
+0000495333 00000 n 
+0000495397 00000 n 
+0000495460 00000 n 
+0000495649 00000 n 
+0000495712 00000 n 
+0000495775 00000 n 
+0000495838 00000 n 
+0000495901 00000 n 
+0000495964 00000 n 
+0000496154 00000 n 
+0000494995 00000 n 
+0000496217 00000 n 
+0000496280 00000 n 
+0000496343 00000 n 
+0000496406 00000 n 
+0000496469 00000 n 
+0000496531 00000 n 
+0000496594 00000 n 
+0000501806 00000 n 
+0000499223 00000 n 
+0000496851 00000 n 
+0000499347 00000 n 
+0000499473 00000 n 
+0000499536 00000 n 
+0000499599 00000 n 
+0000499663 00000 n 
+0000499727 00000 n 
+0000499790 00000 n 
+0000499853 00000 n 
+0000499917 00000 n 
+0000499981 00000 n 
+0000500044 00000 n 
+0000500107 00000 n 
+0000500296 00000 n 
+0000500359 00000 n 
+0000500421 00000 n 
+0000500484 00000 n 
+0000500547 00000 n 
+0000500610 00000 n 
+0000500673 00000 n 
+0000500737 00000 n 
+0000500801 00000 n 
+0000500865 00000 n 
+0000500928 00000 n 
+0000500991 00000 n 
+0000501054 00000 n 
+0000501117 00000 n 
+0000501180 00000 n 
+0000501243 00000 n 
+0000501305 00000 n 
+0000501368 00000 n 
+0000501431 00000 n 
+0000501492 00000 n 
+0000501680 00000 n 
+0000501743 00000 n 
+0000507019 00000 n 
+0000504567 00000 n 
+0000501922 00000 n 
+0000504869 00000 n 
+0000504932 00000 n 
+0000504994 00000 n 
+0000505058 00000 n 
+0000504712 00000 n 
+0000505122 00000 n 
+0000505186 00000 n 
+0000505249 00000 n 
+0000505312 00000 n 
+0000505375 00000 n 
+0000505438 00000 n 
+0000505501 00000 n 
+0000505565 00000 n 
+0000505628 00000 n 
+0000505692 00000 n 
+0000505755 00000 n 
+0000505818 00000 n 
+0000505881 00000 n 
+0000505944 00000 n 
+0000506008 00000 n 
+0000506072 00000 n 
+0000506134 00000 n 
+0000506197 00000 n 
+0000506261 00000 n 
+0000506325 00000 n 
+0000506389 00000 n 
+0000506452 00000 n 
+0000506515 00000 n 
+0000506578 00000 n 
+0000506640 00000 n 
+0000506704 00000 n 
+0000506766 00000 n 
+0000506829 00000 n 
+0000506892 00000 n 
+0000506955 00000 n 
+0000936893 00000 n 
+0000512304 00000 n 
+0000509645 00000 n 
+0000507163 00000 n 
+0000509769 00000 n 
+0000509832 00000 n 
+0000509895 00000 n 
+0000509958 00000 n 
+0000510021 00000 n 
+0000510084 00000 n 
+0000510148 00000 n 
+0000510211 00000 n 
+0000510273 00000 n 
+0000510336 00000 n 
+0000510399 00000 n 
+0000510589 00000 n 
+0000510652 00000 n 
+0000510716 00000 n 
+0000510780 00000 n 
+0000510843 00000 n 
+0000510907 00000 n 
+0000510971 00000 n 
+0000511034 00000 n 
+0000511098 00000 n 
+0000511162 00000 n 
+0000511225 00000 n 
+0000511288 00000 n 
+0000511477 00000 n 
+0000511540 00000 n 
+0000511604 00000 n 
+0000511667 00000 n 
+0000511730 00000 n 
+0000511794 00000 n 
+0000511858 00000 n 
+0000511922 00000 n 
+0000511985 00000 n 
+0000512049 00000 n 
+0000512113 00000 n 
+0000512177 00000 n 
+0000512241 00000 n 
+0000516736 00000 n 
+0000514689 00000 n 
+0000512434 00000 n 
+0000515158 00000 n 
+0000515221 00000 n 
+0000515284 00000 n 
+0000515473 00000 n 
+0000515536 00000 n 
+0000515599 00000 n 
+0000515789 00000 n 
+0000515852 00000 n 
+0000516041 00000 n 
+0000516104 00000 n 
+0000516168 00000 n 
+0000516232 00000 n 
+0000516295 00000 n 
+0000516484 00000 n 
+0000514843 00000 n 
+0000515006 00000 n 
+0000516546 00000 n 
+0000516609 00000 n 
+0000516673 00000 n 
+0000957754 00000 n 
+0000945258 00000 n 
+0000521322 00000 n 
+0000519029 00000 n 
+0000516880 00000 n 
+0000519496 00000 n 
+0000519559 00000 n 
+0000519622 00000 n 
+0000519685 00000 n 
+0000519748 00000 n 
+0000519811 00000 n 
+0000519874 00000 n 
+0000519937 00000 n 
+0000520000 00000 n 
+0000520062 00000 n 
+0000520125 00000 n 
+0000520188 00000 n 
+0000520376 00000 n 
+0000520564 00000 n 
+0000519183 00000 n 
+0000519350 00000 n 
+0000520627 00000 n 
+0000520688 00000 n 
+0000520751 00000 n 
+0000520814 00000 n 
+0000520878 00000 n 
+0000520942 00000 n 
+0000521006 00000 n 
+0000521196 00000 n 
+0000526728 00000 n 
+0000524177 00000 n 
+0000521466 00000 n 
+0000524638 00000 n 
+0000524764 00000 n 
+0000524953 00000 n 
+0000525016 00000 n 
+0000525080 00000 n 
+0000524331 00000 n 
+0000525269 00000 n 
+0000525332 00000 n 
+0000525395 00000 n 
+0000525459 00000 n 
+0000525521 00000 n 
+0000525585 00000 n 
+0000524484 00000 n 
+0000525648 00000 n 
+0000525711 00000 n 
+0000525774 00000 n 
+0000525838 00000 n 
+0000525902 00000 n 
+0000525966 00000 n 
+0000526030 00000 n 
+0000526094 00000 n 
+0000526158 00000 n 
+0000526222 00000 n 
+0000526285 00000 n 
+0000526349 00000 n 
 0000000000 00000 f 
-0000998253 00000 n 
-0000517927 00000 n 
-0000517990 00000 n 
-0000518053 00000 n 
-0000518116 00000 n 
-0000518305 00000 n 
-0000518367 00000 n 
-0000518431 00000 n 
-0000518494 00000 n 
-0000518557 00000 n 
-0000518620 00000 n 
-0000518683 00000 n 
-0000518746 00000 n 
-0000518809 00000 n 
-0000518872 00000 n 
-0000518935 00000 n 
-0000518998 00000 n 
-0000519061 00000 n 
-0000519124 00000 n 
-0000519187 00000 n 
-0000519250 00000 n 
-0000980317 00000 n 
-0000522988 00000 n 
-0000521426 00000 n 
-0000519548 00000 n 
-0000521727 00000 n 
-0000521979 00000 n 
-0000521571 00000 n 
-0000522167 00000 n 
-0000522230 00000 n 
-0000522293 00000 n 
-0000522357 00000 n 
-0000522421 00000 n 
-0000522485 00000 n 
-0000522674 00000 n 
-0000522800 00000 n 
-0000522862 00000 n 
-0000522925 00000 n 
-0000527255 00000 n 
-0000525108 00000 n 
-0000523132 00000 n 
-0000525232 00000 n 
-0000525358 00000 n 
-0000525421 00000 n 
-0000525485 00000 n 
-0000525548 00000 n 
-0000525674 00000 n 
-0000525737 00000 n 
-0000525800 00000 n 
-0000525864 00000 n 
-0000525928 00000 n 
-0000525991 00000 n 
-0000526054 00000 n 
-0000526118 00000 n 
-0000526182 00000 n 
-0000526245 00000 n 
-0000526309 00000 n 
-0000526372 00000 n 
-0000526435 00000 n 
-0000526498 00000 n 
-0000526688 00000 n 
-0000526751 00000 n 
-0000526814 00000 n 
-0000526877 00000 n 
-0000526940 00000 n 
-0000527003 00000 n 
-0000527066 00000 n 
-0000527129 00000 n 
-0000527192 00000 n 
-0000530914 00000 n 
-0000529086 00000 n 
-0000527427 00000 n 
-0000529210 00000 n 
-0000529273 00000 n 
-0000529336 00000 n 
-0000529399 00000 n 
-0000529462 00000 n 
-0000529525 00000 n 
-0000529715 00000 n 
-0000529903 00000 n 
-0000529966 00000 n 
-0000530029 00000 n 
-0000530092 00000 n 
-0000530156 00000 n 
-0000530220 00000 n 
-0000530283 00000 n 
-0000530346 00000 n 
-0000530409 00000 n 
-0000530473 00000 n 
-0000530537 00000 n 
-0000530726 00000 n 
-0000530788 00000 n 
-0000530851 00000 n 
-0000534611 00000 n 
-0000532838 00000 n 
-0000531044 00000 n 
-0000532962 00000 n 
-0000533025 00000 n 
-0000533088 00000 n 
-0000533152 00000 n 
-0000533216 00000 n 
-0000533280 00000 n 
-0000533344 00000 n 
-0000533407 00000 n 
-0000533470 00000 n 
-0000533532 00000 n 
-0000533595 00000 n 
-0000533659 00000 n 
-0000533722 00000 n 
-0000533785 00000 n 
-0000533848 00000 n 
-0000533912 00000 n 
-0000533976 00000 n 
-0000534039 00000 n 
-0000534102 00000 n 
-0000534165 00000 n 
-0000534229 00000 n 
-0000534293 00000 n 
-0000534356 00000 n 
-0000534419 00000 n 
-0000534483 00000 n 
-0000534547 00000 n 
-0000538682 00000 n 
-0000536978 00000 n 
-0000534727 00000 n 
-0000537293 00000 n 
-0000537356 00000 n 
-0000537420 00000 n 
-0000537484 00000 n 
-0000537673 00000 n 
-0000537862 00000 n 
-0000537925 00000 n 
-0000537988 00000 n 
-0000538051 00000 n 
-0000538114 00000 n 
-0000538177 00000 n 
-0000538240 00000 n 
-0000538429 00000 n 
-0000537123 00000 n 
-0000538492 00000 n 
-0000538555 00000 n 
-0000538618 00000 n 
-0001001745 00000 n 
-0000540658 00000 n 
-0000539962 00000 n 
-0000538840 00000 n 
-0000540086 00000 n 
-0000540149 00000 n 
-0000540212 00000 n 
-0000540276 00000 n 
-0000540340 00000 n 
-0000540404 00000 n 
-0000540467 00000 n 
-0000540530 00000 n 
-0000540594 00000 n 
-0000545602 00000 n 
-0000543271 00000 n 
-0000540802 00000 n 
-0000543395 00000 n 
-0000543710 00000 n 
-0000543773 00000 n 
-0000543835 00000 n 
-0000543897 00000 n 
-0000543960 00000 n 
-0000544023 00000 n 
-0000544086 00000 n 
-0000544149 00000 n 
-0000544212 00000 n 
-0000544275 00000 n 
-0000544338 00000 n 
-0000544402 00000 n 
-0000544466 00000 n 
-0000544530 00000 n 
-0000544593 00000 n 
-0000544656 00000 n 
-0000544719 00000 n 
-0000544782 00000 n 
-0000544845 00000 n 
-0000544907 00000 n 
-0000544971 00000 n 
-0000545034 00000 n 
-0000545097 00000 n 
-0000545160 00000 n 
-0000545224 00000 n 
-0000545287 00000 n 
-0000545350 00000 n 
-0000545413 00000 n 
-0000545476 00000 n 
-0000545540 00000 n 
-0000550054 00000 n 
-0000548419 00000 n 
-0000545718 00000 n 
-0000548543 00000 n 
-0000548606 00000 n 
-0000548668 00000 n 
-0000548731 00000 n 
-0000548794 00000 n 
-0000548857 00000 n 
-0000548920 00000 n 
-0000548983 00000 n 
-0000549047 00000 n 
-0000549110 00000 n 
-0000549173 00000 n 
-0000549236 00000 n 
-0000549300 00000 n 
-0000549363 00000 n 
-0000549426 00000 n 
-0000549489 00000 n 
-0000549552 00000 n 
-0000549615 00000 n 
-0000549678 00000 n 
-0000549741 00000 n 
-0000549804 00000 n 
-0000549866 00000 n 
-0000549929 00000 n 
-0000549992 00000 n 
-0000554284 00000 n 
-0000552650 00000 n 
-0000550184 00000 n 
-0000552774 00000 n 
-0000552837 00000 n 
-0000552900 00000 n 
-0000552963 00000 n 
-0000553026 00000 n 
-0000553089 00000 n 
-0000553152 00000 n 
-0000553215 00000 n 
-0000553277 00000 n 
-0000553340 00000 n 
-0000553403 00000 n 
-0000553467 00000 n 
-0000553529 00000 n 
-0000553592 00000 n 
-0000553655 00000 n 
-0000553718 00000 n 
-0000553781 00000 n 
-0000554095 00000 n 
-0000554158 00000 n 
-0000554221 00000 n 
-0000559400 00000 n 
-0000556774 00000 n 
-0000554400 00000 n 
-0000557069 00000 n 
-0000557383 00000 n 
-0000557446 00000 n 
-0000557510 00000 n 
-0000557574 00000 n 
-0000557637 00000 n 
-0000557699 00000 n 
-0000557888 00000 n 
-0000558014 00000 n 
-0000558077 00000 n 
-0000558139 00000 n 
-0000558203 00000 n 
-0000556919 00000 n 
-0000558266 00000 n 
-0000558392 00000 n 
-0000558455 00000 n 
-0000558518 00000 n 
-0000558581 00000 n 
-0000558644 00000 n 
-0000558707 00000 n 
-0000558770 00000 n 
-0000558833 00000 n 
-0000558895 00000 n 
-0000558958 00000 n 
-0000559022 00000 n 
-0000559211 00000 n 
-0000559274 00000 n 
-0000559337 00000 n 
-0000566459 00000 n 
-0000563119 00000 n 
-0000559530 00000 n 
-0000563243 00000 n 
-0000563306 00000 n 
-0000563369 00000 n 
-0000563432 00000 n 
-0000563496 00000 n 
-0000563559 00000 n 
-0000563622 00000 n 
-0000563685 00000 n 
-0000563748 00000 n 
-0000563811 00000 n 
-0000563874 00000 n 
-0000563937 00000 n 
-0000564000 00000 n 
-0000564063 00000 n 
-0000564126 00000 n 
-0000564189 00000 n 
-0000564252 00000 n 
-0000564315 00000 n 
-0000564379 00000 n 
-0000564442 00000 n 
-0000564505 00000 n 
-0000564569 00000 n 
-0000564632 00000 n 
-0000564696 00000 n 
-0000564759 00000 n 
-0000564822 00000 n 
-0000564885 00000 n 
-0000564948 00000 n 
-0000565011 00000 n 
-0000565074 00000 n 
-0000565137 00000 n 
-0000565200 00000 n 
-0000565263 00000 n 
-0000565326 00000 n 
-0000565389 00000 n 
-0000565452 00000 n 
-0000565515 00000 n 
-0000565578 00000 n 
-0000565641 00000 n 
-0000565704 00000 n 
-0000565767 00000 n 
-0000565830 00000 n 
-0000565893 00000 n 
-0000565955 00000 n 
-0000566017 00000 n 
-0000566080 00000 n 
-0000566143 00000 n 
-0000566206 00000 n 
-0000566270 00000 n 
-0000566333 00000 n 
-0000566396 00000 n 
-0001001870 00000 n 
-0000571015 00000 n 
-0000569141 00000 n 
-0000566603 00000 n 
-0000569440 00000 n 
-0000569629 00000 n 
-0000569692 00000 n 
-0000569286 00000 n 
-0000569881 00000 n 
-0000569944 00000 n 
-0000570008 00000 n 
-0000570071 00000 n 
-0000570134 00000 n 
-0000570197 00000 n 
-0000570260 00000 n 
-0000570323 00000 n 
-0000570385 00000 n 
-0000570575 00000 n 
-0000570638 00000 n 
-0000570701 00000 n 
-0000570764 00000 n 
-0000570827 00000 n 
-0000570891 00000 n 
-0000575953 00000 n 
-0000573701 00000 n 
-0000571159 00000 n 
-0000574002 00000 n 
-0000574128 00000 n 
-0000573846 00000 n 
-0000574191 00000 n 
-0000574254 00000 n 
-0000574317 00000 n 
-0000574380 00000 n 
-0000574443 00000 n 
-0000574506 00000 n 
-0000574569 00000 n 
-0000574632 00000 n 
-0000574695 00000 n 
-0000574758 00000 n 
-0000574947 00000 n 
-0000575010 00000 n 
-0000575073 00000 n 
-0000575137 00000 n 
-0000575200 00000 n 
-0000575263 00000 n 
-0000575326 00000 n 
-0000575389 00000 n 
-0000575452 00000 n 
-0000575515 00000 n 
-0000575578 00000 n 
-0000575765 00000 n 
-0000575828 00000 n 
-0000575891 00000 n 
-0000989438 00000 n 
-0000581375 00000 n 
-0000578477 00000 n 
-0000576055 00000 n 
-0000578601 00000 n 
-0000578664 00000 n 
-0000578727 00000 n 
-0000578790 00000 n 
-0000578853 00000 n 
-0000578916 00000 n 
-0000578979 00000 n 
-0000579166 00000 n 
-0000579229 00000 n 
-0000579292 00000 n 
-0000579354 00000 n 
-0000579417 00000 n 
-0000579480 00000 n 
-0000579543 00000 n 
-0000579606 00000 n 
-0000579669 00000 n 
-0000579732 00000 n 
-0000579795 00000 n 
-0000579858 00000 n 
-0000579921 00000 n 
-0000580109 00000 n 
-0000580172 00000 n 
-0000580236 00000 n 
-0000580300 00000 n 
-0000580489 00000 n 
-0000580552 00000 n 
-0000580616 00000 n 
-0000580679 00000 n 
-0000580742 00000 n 
-0000580806 00000 n 
-0000580868 00000 n 
-0000580931 00000 n 
-0000580995 00000 n 
-0000581058 00000 n 
-0000581121 00000 n 
-0000581183 00000 n 
-0000581247 00000 n 
-0000581311 00000 n 
-0000586754 00000 n 
-0000583470 00000 n 
-0000581491 00000 n 
-0000583594 00000 n 
-0000583657 00000 n 
-0000583720 00000 n 
-0000583783 00000 n 
-0000583847 00000 n 
-0000583910 00000 n 
-0000583973 00000 n 
-0000584037 00000 n 
-0000584101 00000 n 
-0000584164 00000 n 
-0000584227 00000 n 
-0000584290 00000 n 
-0000584354 00000 n 
-0000584417 00000 n 
-0000584732 00000 n 
-0000584795 00000 n 
-0000584859 00000 n 
-0000584922 00000 n 
-0000584985 00000 n 
-0000585048 00000 n 
-0000585111 00000 n 
-0000585173 00000 n 
-0000585235 00000 n 
-0000585298 00000 n 
-0000585361 00000 n 
-0000585425 00000 n 
-0000585488 00000 n 
-0000585551 00000 n 
-0000585614 00000 n 
-0000585677 00000 n 
-0000585741 00000 n 
-0000585804 00000 n 
-0000585991 00000 n 
-0000586054 00000 n 
-0000586118 00000 n 
-0000586182 00000 n 
-0000586246 00000 n 
-0000586310 00000 n 
-0000586373 00000 n 
-0000586437 00000 n 
-0000586500 00000 n 
-0000586564 00000 n 
-0000586627 00000 n 
-0000591895 00000 n 
-0000588996 00000 n 
-0000586870 00000 n 
-0000589120 00000 n 
-0000589183 00000 n 
-0000589308 00000 n 
-0000589493 00000 n 
-0000589556 00000 n 
-0000589619 00000 n 
-0000589683 00000 n 
-0000589747 00000 n 
-0000589810 00000 n 
-0000589873 00000 n 
-0000589937 00000 n 
-0000590000 00000 n 
-0000590063 00000 n 
-0000590127 00000 n 
-0000590190 00000 n 
-0000590253 00000 n 
-0000590316 00000 n 
-0000590380 00000 n 
-0000590443 00000 n 
-0000590506 00000 n 
-0000590570 00000 n 
-0000590633 00000 n 
-0000590821 00000 n 
-0000590884 00000 n 
-0000590947 00000 n 
-0000591011 00000 n 
-0000591074 00000 n 
-0000591263 00000 n 
-0000591326 00000 n 
-0000591390 00000 n 
-0000591454 00000 n 
-0000591518 00000 n 
-0000591706 00000 n 
-0000591769 00000 n 
-0000591832 00000 n 
-0000597810 00000 n 
-0000594770 00000 n 
-0000592011 00000 n 
-0000594894 00000 n 
-0000595020 00000 n 
-0000595146 00000 n 
-0000595209 00000 n 
-0000595273 00000 n 
-0000595337 00000 n 
-0000595463 00000 n 
-0000595526 00000 n 
-0000595589 00000 n 
-0000595653 00000 n 
-0000595716 00000 n 
-0000595779 00000 n 
-0000595843 00000 n 
-0000595907 00000 n 
-0000595971 00000 n 
-0000596034 00000 n 
-0000596097 00000 n 
-0000596161 00000 n 
-0000596224 00000 n 
-0000596288 00000 n 
-0000596351 00000 n 
-0000596414 00000 n 
-0000596478 00000 n 
-0000596542 00000 n 
-0000596606 00000 n 
-0000596670 00000 n 
-0000596734 00000 n 
-0000596797 00000 n 
-0000596861 00000 n 
-0000596924 00000 n 
-0000596986 00000 n 
-0000597048 00000 n 
-0000597112 00000 n 
-0000597176 00000 n 
-0000597240 00000 n 
-0000597304 00000 n 
-0000597368 00000 n 
-0000597432 00000 n 
-0000597558 00000 n 
-0000597621 00000 n 
-0000597684 00000 n 
-0000597747 00000 n 
-0001001995 00000 n 
-0000602507 00000 n 
-0000600043 00000 n 
-0000597912 00000 n 
-0000600167 00000 n 
-0000600230 00000 n 
-0000600355 00000 n 
-0000600418 00000 n 
-0000600481 00000 n 
-0000600607 00000 n 
-0000600669 00000 n 
-0000600733 00000 n 
-0000600797 00000 n 
-0000600861 00000 n 
-0000600924 00000 n 
-0000600988 00000 n 
-0000601114 00000 n 
-0000601177 00000 n 
-0000601240 00000 n 
-0000601366 00000 n 
-0000601429 00000 n 
-0000601493 00000 n 
-0000601557 00000 n 
-0000601621 00000 n 
-0000601747 00000 n 
-0000601810 00000 n 
-0000601936 00000 n 
-0000601999 00000 n 
-0000602063 00000 n 
-0000602127 00000 n 
-0000602191 00000 n 
-0000602317 00000 n 
-0000602380 00000 n 
-0000607988 00000 n 
-0000605283 00000 n 
-0000602609 00000 n 
-0000605587 00000 n 
-0000605713 00000 n 
-0000605776 00000 n 
-0000605840 00000 n 
-0000605903 00000 n 
-0000605966 00000 n 
-0000606030 00000 n 
-0000606220 00000 n 
-0000606283 00000 n 
-0000606346 00000 n 
-0000606536 00000 n 
-0000606599 00000 n 
-0000606789 00000 n 
-0000606852 00000 n 
-0000606915 00000 n 
-0000606978 00000 n 
-0000607041 00000 n 
-0000607104 00000 n 
-0000607167 00000 n 
-0000607230 00000 n 
-0000607294 00000 n 
-0000607358 00000 n 
-0000607421 00000 n 
-0000607484 00000 n 
-0000607547 00000 n 
-0000607610 00000 n 
-0000607673 00000 n 
-0000605428 00000 n 
-0000607736 00000 n 
-0000607799 00000 n 
-0000607862 00000 n 
-0000607925 00000 n 
-0000612898 00000 n 
-0000610353 00000 n 
-0000608118 00000 n 
-0000610821 00000 n 
-0000610884 00000 n 
-0000610947 00000 n 
-0000610507 00000 n 
-0000611010 00000 n 
-0000611073 00000 n 
-0000611136 00000 n 
-0000611199 00000 n 
-0000611260 00000 n 
-0000611323 00000 n 
-0000611512 00000 n 
-0000610661 00000 n 
-0000611700 00000 n 
-0000611888 00000 n 
-0000611951 00000 n 
-0000612141 00000 n 
-0000612204 00000 n 
-0000612268 00000 n 
-0000612332 00000 n 
-0000612520 00000 n 
-0000612583 00000 n 
-0000612646 00000 n 
-0000612709 00000 n 
-0000612772 00000 n 
-0000612835 00000 n 
-0000617731 00000 n 
-0000615783 00000 n 
-0000613014 00000 n 
-0000615907 00000 n 
-0000615970 00000 n 
-0000616159 00000 n 
-0000616222 00000 n 
-0000616285 00000 n 
-0000616348 00000 n 
-0000616410 00000 n 
-0000616473 00000 n 
-0000616536 00000 n 
-0000616598 00000 n 
-0000616660 00000 n 
-0000616723 00000 n 
-0000616786 00000 n 
-0000616849 00000 n 
-0000616912 00000 n 
-0000616975 00000 n 
-0000617038 00000 n 
-0000617101 00000 n 
-0000617290 00000 n 
-0000617352 00000 n 
-0000617415 00000 n 
-0000617479 00000 n 
-0000617542 00000 n 
-0000617605 00000 n 
-0000623272 00000 n 
-0000620623 00000 n 
-0000617833 00000 n 
-0000620747 00000 n 
-0000620935 00000 n 
-0000620998 00000 n 
-0000621062 00000 n 
-0000621125 00000 n 
-0000621188 00000 n 
-0000621251 00000 n 
-0000621315 00000 n 
-0000621378 00000 n 
-0000621442 00000 n 
-0000621505 00000 n 
-0000621568 00000 n 
-0000621758 00000 n 
-0000621821 00000 n 
-0000621884 00000 n 
-0000621946 00000 n 
-0000622009 00000 n 
-0000622073 00000 n 
-0000622136 00000 n 
-0000622198 00000 n 
-0000622261 00000 n 
-0000622324 00000 n 
-0000622387 00000 n 
-0000622450 00000 n 
-0000622513 00000 n 
-0000622577 00000 n 
-0000622641 00000 n 
-0000622705 00000 n 
-0000622769 00000 n 
-0000622832 00000 n 
-0000622895 00000 n 
-0000622958 00000 n 
-0000623021 00000 n 
-0000623085 00000 n 
-0000623148 00000 n 
-0000623211 00000 n 
-0000627584 00000 n 
-0000625512 00000 n 
-0000623388 00000 n 
+0000954387 00000 n 
+0000526412 00000 n 
+0000526475 00000 n 
+0000526538 00000 n 
+0000526601 00000 n 
+0000936450 00000 n 
+0000531014 00000 n 
+0000529198 00000 n 
+0000526872 00000 n 
+0000529499 00000 n 
+0000529625 00000 n 
+0000529688 00000 n 
+0000529751 00000 n 
+0000530067 00000 n 
+0000529343 00000 n 
+0000530255 00000 n 
+0000530318 00000 n 
+0000530381 00000 n 
+0000530445 00000 n 
+0000530509 00000 n 
+0000530573 00000 n 
+0000530763 00000 n 
+0000530889 00000 n 
+0000530951 00000 n 
+0000534504 00000 n 
+0000532926 00000 n 
+0000531158 00000 n 
+0000533050 00000 n 
+0000533113 00000 n 
+0000533239 00000 n 
+0000533302 00000 n 
+0000533366 00000 n 
+0000533430 00000 n 
+0000533556 00000 n 
+0000533619 00000 n 
+0000533682 00000 n 
+0000533746 00000 n 
+0000533810 00000 n 
+0000533872 00000 n 
+0000533935 00000 n 
+0000533999 00000 n 
+0000534063 00000 n 
+0000534126 00000 n 
+0000534190 00000 n 
+0000534253 00000 n 
+0000534315 00000 n 
+0000534378 00000 n 
+0000538942 00000 n 
+0000536737 00000 n 
+0000534676 00000 n 
+0000536861 00000 n 
+0000536987 00000 n 
+0000537050 00000 n 
+0000537113 00000 n 
+0000537176 00000 n 
+0000537239 00000 n 
+0000537302 00000 n 
+0000537365 00000 n 
+0000537428 00000 n 
+0000537491 00000 n 
+0000537554 00000 n 
+0000537616 00000 n 
+0000537679 00000 n 
+0000537742 00000 n 
+0000537805 00000 n 
+0000537995 00000 n 
+0000538057 00000 n 
+0000538121 00000 n 
+0000538185 00000 n 
+0000538375 00000 n 
+0000538563 00000 n 
+0000538626 00000 n 
+0000538690 00000 n 
+0000538753 00000 n 
+0000538816 00000 n 
+0000538879 00000 n 
+0000542961 00000 n 
+0000541314 00000 n 
+0000539100 00000 n 
+0000541629 00000 n 
+0000541692 00000 n 
+0000541882 00000 n 
+0000541945 00000 n 
+0000542009 00000 n 
+0000541459 00000 n 
+0000542073 00000 n 
+0000542137 00000 n 
+0000542200 00000 n 
+0000542264 00000 n 
+0000542328 00000 n 
+0000542517 00000 n 
+0000542580 00000 n 
+0000542643 00000 n 
+0000542707 00000 n 
+0000542771 00000 n 
+0000542835 00000 n 
+0000542898 00000 n 
+0000957879 00000 n 
+0000547905 00000 n 
+0000545574 00000 n 
+0000543105 00000 n 
+0000545698 00000 n 
+0000546013 00000 n 
+0000546076 00000 n 
+0000546138 00000 n 
+0000546200 00000 n 
+0000546263 00000 n 
+0000546326 00000 n 
+0000546389 00000 n 
+0000546452 00000 n 
+0000546515 00000 n 
+0000546578 00000 n 
+0000546641 00000 n 
+0000546705 00000 n 
+0000546769 00000 n 
+0000546833 00000 n 
+0000546896 00000 n 
+0000546959 00000 n 
+0000547022 00000 n 
+0000547085 00000 n 
+0000547148 00000 n 
+0000547210 00000 n 
+0000547274 00000 n 
+0000547337 00000 n 
+0000547400 00000 n 
+0000547463 00000 n 
+0000547527 00000 n 
+0000547590 00000 n 
+0000547653 00000 n 
+0000547716 00000 n 
+0000547779 00000 n 
+0000547843 00000 n 
+0000552357 00000 n 
+0000550722 00000 n 
+0000548021 00000 n 
+0000550846 00000 n 
+0000550909 00000 n 
+0000550971 00000 n 
+0000551034 00000 n 
+0000551097 00000 n 
+0000551160 00000 n 
+0000551223 00000 n 
+0000551286 00000 n 
+0000551350 00000 n 
+0000551413 00000 n 
+0000551476 00000 n 
+0000551539 00000 n 
+0000551603 00000 n 
+0000551666 00000 n 
+0000551729 00000 n 
+0000551792 00000 n 
+0000551855 00000 n 
+0000551918 00000 n 
+0000551981 00000 n 
+0000552044 00000 n 
+0000552107 00000 n 
+0000552169 00000 n 
+0000552232 00000 n 
+0000552295 00000 n 
+0000556587 00000 n 
+0000554953 00000 n 
+0000552487 00000 n 
+0000555077 00000 n 
+0000555140 00000 n 
+0000555203 00000 n 
+0000555266 00000 n 
+0000555329 00000 n 
+0000555392 00000 n 
+0000555455 00000 n 
+0000555518 00000 n 
+0000555580 00000 n 
+0000555643 00000 n 
+0000555706 00000 n 
+0000555770 00000 n 
+0000555832 00000 n 
+0000555895 00000 n 
+0000555958 00000 n 
+0000556021 00000 n 
+0000556084 00000 n 
+0000556398 00000 n 
+0000556461 00000 n 
+0000556524 00000 n 
+0000561712 00000 n 
+0000559330 00000 n 
+0000556703 00000 n 
+0000559629 00000 n 
+0000559943 00000 n 
+0000560006 00000 n 
+0000560070 00000 n 
+0000560134 00000 n 
+0000560197 00000 n 
+0000560261 00000 n 
+0000560450 00000 n 
+0000560576 00000 n 
+0000560639 00000 n 
+0000560703 00000 n 
+0000560767 00000 n 
+0000559475 00000 n 
+0000560829 00000 n 
+0000560955 00000 n 
+0000561018 00000 n 
+0000561081 00000 n 
+0000561144 00000 n 
+0000561207 00000 n 
+0000561270 00000 n 
+0000561333 00000 n 
+0000561396 00000 n 
+0000561459 00000 n 
+0000561521 00000 n 
+0000561585 00000 n 
+0000568460 00000 n 
+0000565248 00000 n 
+0000561842 00000 n 
+0000565372 00000 n 
+0000565498 00000 n 
+0000565561 00000 n 
+0000565624 00000 n 
+0000565687 00000 n 
+0000565750 00000 n 
+0000565813 00000 n 
+0000565877 00000 n 
+0000565939 00000 n 
+0000566002 00000 n 
+0000566065 00000 n 
+0000566128 00000 n 
+0000566191 00000 n 
+0000566254 00000 n 
+0000566317 00000 n 
+0000566380 00000 n 
+0000566443 00000 n 
+0000566506 00000 n 
+0000566569 00000 n 
+0000566632 00000 n 
+0000566695 00000 n 
+0000566759 00000 n 
+0000566822 00000 n 
+0000566885 00000 n 
+0000566949 00000 n 
+0000567011 00000 n 
+0000567075 00000 n 
+0000567138 00000 n 
+0000567201 00000 n 
+0000567264 00000 n 
+0000567327 00000 n 
+0000567390 00000 n 
+0000567453 00000 n 
+0000567515 00000 n 
+0000567578 00000 n 
+0000567641 00000 n 
+0000567704 00000 n 
+0000567767 00000 n 
+0000567830 00000 n 
+0000567893 00000 n 
+0000567956 00000 n 
+0000568019 00000 n 
+0000568082 00000 n 
+0000568145 00000 n 
+0000568208 00000 n 
+0000568271 00000 n 
+0000568334 00000 n 
+0000568397 00000 n 
+0000573336 00000 n 
+0000571272 00000 n 
+0000568590 00000 n 
+0000571571 00000 n 
+0000571634 00000 n 
+0000571696 00000 n 
+0000571759 00000 n 
+0000571822 00000 n 
+0000571886 00000 n 
+0000571949 00000 n 
+0000572012 00000 n 
+0000572075 00000 n 
+0000572136 00000 n 
+0000572326 00000 n 
+0000572389 00000 n 
+0000571417 00000 n 
+0000572578 00000 n 
+0000572641 00000 n 
+0000572705 00000 n 
+0000572768 00000 n 
+0000572830 00000 n 
+0000572894 00000 n 
+0000572957 00000 n 
+0000573020 00000 n 
+0000573083 00000 n 
+0000573273 00000 n 
+0000958004 00000 n 
+0000578280 00000 n 
+0000575485 00000 n 
+0000573494 00000 n 
+0000575954 00000 n 
+0000576017 00000 n 
+0000576079 00000 n 
+0000576142 00000 n 
+0000576205 00000 n 
+0000576393 00000 n 
+0000575639 00000 n 
+0000575795 00000 n 
+0000576456 00000 n 
+0000576520 00000 n 
+0000576583 00000 n 
+0000576647 00000 n 
+0000576710 00000 n 
+0000576773 00000 n 
+0000576836 00000 n 
+0000576898 00000 n 
+0000576961 00000 n 
+0000577024 00000 n 
+0000577087 00000 n 
+0000577149 00000 n 
+0000577212 00000 n 
+0000577275 00000 n 
+0000577338 00000 n 
+0000577401 00000 n 
+0000577463 00000 n 
+0000577526 00000 n 
+0000577589 00000 n 
+0000577652 00000 n 
+0000577714 00000 n 
+0000577776 00000 n 
+0000577839 00000 n 
+0000577902 00000 n 
+0000577965 00000 n 
+0000578028 00000 n 
+0000578091 00000 n 
+0000578154 00000 n 
+0000578217 00000 n 
+0000945572 00000 n 
+0000584787 00000 n 
+0000581091 00000 n 
+0000578382 00000 n 
+0000581565 00000 n 
+0000581628 00000 n 
+0000581691 00000 n 
+0000581754 00000 n 
+0000581817 00000 n 
+0000581879 00000 n 
+0000581942 00000 n 
+0000581245 00000 n 
+0000582005 00000 n 
+0000582068 00000 n 
+0000582131 00000 n 
+0000582193 00000 n 
+0000582256 00000 n 
+0000582320 00000 n 
+0000582384 00000 n 
+0000582447 00000 n 
+0000582509 00000 n 
+0000582572 00000 n 
+0000582635 00000 n 
+0000582698 00000 n 
+0000582761 00000 n 
+0000581411 00000 n 
+0000582949 00000 n 
+0000583012 00000 n 
+0000583076 00000 n 
+0000583140 00000 n 
+0000583203 00000 n 
+0000583266 00000 n 
+0000583330 00000 n 
+0000583394 00000 n 
+0000583457 00000 n 
+0000583521 00000 n 
+0000583585 00000 n 
+0000583648 00000 n 
+0000583711 00000 n 
+0000583775 00000 n 
+0000583838 00000 n 
+0000583902 00000 n 
+0000583965 00000 n 
+0000584029 00000 n 
+0000584092 00000 n 
+0000584156 00000 n 
+0000584219 00000 n 
+0000584282 00000 n 
+0000584346 00000 n 
+0000584409 00000 n 
+0000584472 00000 n 
+0000584535 00000 n 
+0000584598 00000 n 
+0000584661 00000 n 
+0000584724 00000 n 
+0000590233 00000 n 
+0000587461 00000 n 
+0000584889 00000 n 
+0000587585 00000 n 
+0000587710 00000 n 
+0000587773 00000 n 
+0000587836 00000 n 
+0000587899 00000 n 
+0000587963 00000 n 
+0000588027 00000 n 
+0000588090 00000 n 
+0000588278 00000 n 
+0000588341 00000 n 
+0000588404 00000 n 
+0000588468 00000 n 
+0000588530 00000 n 
+0000588593 00000 n 
+0000588656 00000 n 
+0000588718 00000 n 
+0000588781 00000 n 
+0000588844 00000 n 
+0000588907 00000 n 
+0000588970 00000 n 
+0000589034 00000 n 
+0000589096 00000 n 
+0000589159 00000 n 
+0000589223 00000 n 
+0000589287 00000 n 
+0000589351 00000 n 
+0000589415 00000 n 
+0000589479 00000 n 
+0000589543 00000 n 
+0000589731 00000 n 
+0000589794 00000 n 
+0000589857 00000 n 
+0000589920 00000 n 
+0000589983 00000 n 
+0000590046 00000 n 
+0000590108 00000 n 
+0000590171 00000 n 
+0000595747 00000 n 
+0000592724 00000 n 
+0000590349 00000 n 
+0000592848 00000 n 
+0000592911 00000 n 
+0000593035 00000 n 
+0000593098 00000 n 
+0000593161 00000 n 
+0000593224 00000 n 
+0000593287 00000 n 
+0000593350 00000 n 
+0000593413 00000 n 
+0000593476 00000 n 
+0000593539 00000 n 
+0000593602 00000 n 
+0000593665 00000 n 
+0000593728 00000 n 
+0000593791 00000 n 
+0000593980 00000 n 
+0000594043 00000 n 
+0000594105 00000 n 
+0000594167 00000 n 
+0000594357 00000 n 
+0000594420 00000 n 
+0000594484 00000 n 
+0000594548 00000 n 
+0000594611 00000 n 
+0000594675 00000 n 
+0000594738 00000 n 
+0000594801 00000 n 
+0000594865 00000 n 
+0000594928 00000 n 
+0000594992 00000 n 
+0000595055 00000 n 
+0000595119 00000 n 
+0000595183 00000 n 
+0000595247 00000 n 
+0000595310 00000 n 
+0000595372 00000 n 
+0000595435 00000 n 
+0000595498 00000 n 
+0000595560 00000 n 
+0000595623 00000 n 
+0000595686 00000 n 
+0000600819 00000 n 
+0000597791 00000 n 
+0000595877 00000 n 
+0000597915 00000 n 
+0000597978 00000 n 
+0000598040 00000 n 
+0000598103 00000 n 
+0000598166 00000 n 
+0000598230 00000 n 
+0000598293 00000 n 
+0000598606 00000 n 
+0000598669 00000 n 
+0000598733 00000 n 
+0000598796 00000 n 
+0000598859 00000 n 
+0000598922 00000 n 
+0000598985 00000 n 
+0000599048 00000 n 
+0000599111 00000 n 
+0000599174 00000 n 
+0000599237 00000 n 
+0000599301 00000 n 
+0000599364 00000 n 
+0000599427 00000 n 
+0000599490 00000 n 
+0000599553 00000 n 
+0000599617 00000 n 
+0000599679 00000 n 
+0000599867 00000 n 
+0000599930 00000 n 
+0000599994 00000 n 
+0000600058 00000 n 
+0000600122 00000 n 
+0000600186 00000 n 
+0000600249 00000 n 
+0000600313 00000 n 
+0000600376 00000 n 
+0000600440 00000 n 
+0000600503 00000 n 
+0000600693 00000 n 
+0000606139 00000 n 
+0000603193 00000 n 
+0000600935 00000 n 
+0000603494 00000 n 
+0000603616 00000 n 
+0000603679 00000 n 
+0000603743 00000 n 
+0000603806 00000 n 
+0000603869 00000 n 
+0000603933 00000 n 
+0000603996 00000 n 
+0000604057 00000 n 
+0000604119 00000 n 
+0000604182 00000 n 
+0000604245 00000 n 
+0000604308 00000 n 
+0000604372 00000 n 
+0000604435 00000 n 
+0000604498 00000 n 
+0000604562 00000 n 
+0000604625 00000 n 
+0000604814 00000 n 
+0000604877 00000 n 
+0000604939 00000 n 
+0000605002 00000 n 
+0000605065 00000 n 
+0000605255 00000 n 
+0000605318 00000 n 
+0000605382 00000 n 
+0000605445 00000 n 
+0000605509 00000 n 
+0000605698 00000 n 
+0000605761 00000 n 
+0000603338 00000 n 
+0000605949 00000 n 
+0000606012 00000 n 
+0000606076 00000 n 
+0000958129 00000 n 
+0000612117 00000 n 
+0000609014 00000 n 
+0000606255 00000 n 
+0000609138 00000 n 
+0000609264 00000 n 
+0000609327 00000 n 
+0000609453 00000 n 
+0000609516 00000 n 
+0000609580 00000 n 
+0000609644 00000 n 
+0000609770 00000 n 
+0000609833 00000 n 
+0000609896 00000 n 
+0000609960 00000 n 
+0000610023 00000 n 
+0000610086 00000 n 
+0000610150 00000 n 
+0000610214 00000 n 
+0000610278 00000 n 
+0000610341 00000 n 
+0000610404 00000 n 
+0000610468 00000 n 
+0000610531 00000 n 
+0000610595 00000 n 
+0000610658 00000 n 
+0000610721 00000 n 
+0000610785 00000 n 
+0000610849 00000 n 
+0000610913 00000 n 
+0000610977 00000 n 
+0000611041 00000 n 
+0000611104 00000 n 
+0000611168 00000 n 
+0000611231 00000 n 
+0000611293 00000 n 
+0000611355 00000 n 
+0000611419 00000 n 
+0000611483 00000 n 
+0000611547 00000 n 
+0000611611 00000 n 
+0000611675 00000 n 
+0000611739 00000 n 
+0000611865 00000 n 
+0000611928 00000 n 
+0000611991 00000 n 
+0000612054 00000 n 
+0000616814 00000 n 
+0000614350 00000 n 
+0000612219 00000 n 
+0000614474 00000 n 
+0000614537 00000 n 
+0000614662 00000 n 
+0000614725 00000 n 
+0000614788 00000 n 
+0000614914 00000 n 
+0000614976 00000 n 
+0000615040 00000 n 
+0000615104 00000 n 
+0000615168 00000 n 
+0000615231 00000 n 
+0000615295 00000 n 
+0000615421 00000 n 
+0000615484 00000 n 
+0000615547 00000 n 
+0000615673 00000 n 
+0000615736 00000 n 
+0000615800 00000 n 
+0000615864 00000 n 
+0000615928 00000 n 
+0000616054 00000 n 
+0000616117 00000 n 
+0000616243 00000 n 
+0000616306 00000 n 
+0000616370 00000 n 
+0000616434 00000 n 
+0000616498 00000 n 
+0000616624 00000 n 
+0000616687 00000 n 
+0000621600 00000 n 
+0000619473 00000 n 
+0000616916 00000 n 
+0000619773 00000 n 
+0000619899 00000 n 
+0000619962 00000 n 
+0000620026 00000 n 
+0000620089 00000 n 
+0000620152 00000 n 
+0000620216 00000 n 
+0000620406 00000 n 
+0000620469 00000 n 
+0000619618 00000 n 
+0000620532 00000 n 
+0000620720 00000 n 
+0000620783 00000 n 
+0000620972 00000 n 
+0000621035 00000 n 
+0000621097 00000 n 
+0000621159 00000 n 
+0000621223 00000 n 
+0000621286 00000 n 
+0000621348 00000 n 
+0000621410 00000 n 
+0000621473 00000 n 
+0000621537 00000 n 
+0000627276 00000 n 
+0000624438 00000 n 
+0000621730 00000 n 
+0000625071 00000 n 
+0000625134 00000 n 
+0000625197 00000 n 
+0000625260 00000 n 
+0000625323 00000 n 
+0000625385 00000 n 
+0000624601 00000 n 
+0000625447 00000 n 
+0000625510 00000 n 
+0000625573 00000 n 
 0000625636 00000 n 
 0000625699 00000 n 
-0000625761 00000 n 
-0000625887 00000 n 
-0000625950 00000 n 
-0000626013 00000 n 
-0000626076 00000 n 
-0000626139 00000 n 
-0000626202 00000 n 
-0000626265 00000 n 
+0000625762 00000 n 
+0000624758 00000 n 
+0000625825 00000 n 
+0000625888 00000 n 
+0000625951 00000 n 
+0000626014 00000 n 
+0000626077 00000 n 
+0000626140 00000 n 
 0000626328 00000 n 
+0000624911 00000 n 
 0000626517 00000 n 
-0000626580 00000 n 
-0000626643 00000 n 
 0000626706 00000 n 
 0000626769 00000 n 
-0000626831 00000 n 
-0000626894 00000 n 
-0000626957 00000 n 
-0000627019 00000 n 
-0000627078 00000 n 
-0000627141 00000 n 
-0000627204 00000 n 
-0000627267 00000 n 
-0000627331 00000 n 
-0000627395 00000 n 
-0000627458 00000 n 
-0001002120 00000 n 
-0000630641 00000 n 
-0000629070 00000 n 
-0000627700 00000 n 
-0000629194 00000 n 
-0000629445 00000 n 
-0000629634 00000 n 
-0000629697 00000 n 
-0000629886 00000 n 
-0000629949 00000 n 
-0000630012 00000 n 
-0000630075 00000 n 
-0000630138 00000 n 
-0000630201 00000 n 
-0000630264 00000 n 
-0000630327 00000 n 
-0000630390 00000 n 
-0000630452 00000 n 
-0000630515 00000 n 
-0000630578 00000 n 
-0000634462 00000 n 
-0000633143 00000 n 
-0000630757 00000 n 
-0000633267 00000 n 
-0000633455 00000 n 
-0000633518 00000 n 
-0000633580 00000 n 
-0000633643 00000 n 
-0000633706 00000 n 
-0000633769 00000 n 
-0000633958 00000 n 
-0000634021 00000 n 
-0000634085 00000 n 
-0000634148 00000 n 
-0000634210 00000 n 
-0000634273 00000 n 
-0000634335 00000 n 
-0000640753 00000 n 
-0000637898 00000 n 
-0000634606 00000 n 
-0000638862 00000 n 
-0000638925 00000 n 
-0000639050 00000 n 
-0000639113 00000 n 
-0000638079 00000 n 
-0000639176 00000 n 
-0000639239 00000 n 
-0000639303 00000 n 
-0000639367 00000 n 
-0000639557 00000 n 
-0000639620 00000 n 
-0000639683 00000 n 
-0000639746 00000 n 
-0000638233 00000 n 
-0000639809 00000 n 
-0000639871 00000 n 
-0000638386 00000 n 
-0000639934 00000 n 
-0000639997 00000 n 
-0000638545 00000 n 
-0000640060 00000 n 
-0000638704 00000 n 
-0000640123 00000 n 
-0000640185 00000 n 
-0000640248 00000 n 
-0000640312 00000 n 
-0000640375 00000 n 
-0000640564 00000 n 
-0000640627 00000 n 
-0000640690 00000 n 
-0000644846 00000 n 
-0000642767 00000 n 
-0000640883 00000 n 
-0000642891 00000 n 
-0000642954 00000 n 
-0000643016 00000 n 
-0000643079 00000 n 
-0000643142 00000 n 
-0000643205 00000 n 
-0000643268 00000 n 
-0000643331 00000 n 
-0000643394 00000 n 
-0000643457 00000 n 
-0000643521 00000 n 
-0000643585 00000 n 
-0000643775 00000 n 
-0000643837 00000 n 
-0000643900 00000 n 
-0000643963 00000 n 
-0000644027 00000 n 
-0000644090 00000 n 
-0000644153 00000 n 
-0000644216 00000 n 
-0000644279 00000 n 
-0000644342 00000 n 
-0000644405 00000 n 
-0000644468 00000 n 
-0000644531 00000 n 
-0000644594 00000 n 
-0000644657 00000 n 
-0000644720 00000 n 
-0000644783 00000 n 
-0000649475 00000 n 
-0000647469 00000 n 
-0000645004 00000 n 
-0000647767 00000 n 
-0000647830 00000 n 
-0000647894 00000 n 
-0000647958 00000 n 
-0000648147 00000 n 
-0000648210 00000 n 
-0000648274 00000 n 
-0000648338 00000 n 
-0000648401 00000 n 
-0000648464 00000 n 
-0000648527 00000 n 
-0000648590 00000 n 
-0000648653 00000 n 
-0000648716 00000 n 
-0000648779 00000 n 
-0000648842 00000 n 
-0000648905 00000 n 
-0000648969 00000 n 
-0000647614 00000 n 
-0000649159 00000 n 
-0000649222 00000 n 
-0000649286 00000 n 
-0000649349 00000 n 
-0000649412 00000 n 
-0000651083 00000 n 
-0000650578 00000 n 
-0000649647 00000 n 
-0000650702 00000 n 
-0000650765 00000 n 
-0000650828 00000 n 
-0000650892 00000 n 
-0000650956 00000 n 
-0000651019 00000 n 
-0001002245 00000 n 
-0000656413 00000 n 
-0000653794 00000 n 
-0000651199 00000 n 
-0000654260 00000 n 
-0000654449 00000 n 
-0000654512 00000 n 
-0000654576 00000 n 
-0000654890 00000 n 
-0000655078 00000 n 
-0000653948 00000 n 
-0000655141 00000 n 
-0000655204 00000 n 
-0000655268 00000 n 
-0000655332 00000 n 
-0000654103 00000 n 
-0000655396 00000 n 
-0000655460 00000 n 
-0000655524 00000 n 
-0000655588 00000 n 
-0000655652 00000 n 
-0000655715 00000 n 
-0000655779 00000 n 
-0000655842 00000 n 
-0000655905 00000 n 
-0000655969 00000 n 
-0000656033 00000 n 
-0000656223 00000 n 
-0000656286 00000 n 
-0000983304 00000 n 
-0000993201 00000 n 
-0000661000 00000 n 
-0000658262 00000 n 
-0000656557 00000 n 
-0000658921 00000 n 
-0000659172 00000 n 
-0000658425 00000 n 
-0000659360 00000 n 
-0000659423 00000 n 
-0000659487 00000 n 
-0000659551 00000 n 
-0000659677 00000 n 
-0000659740 00000 n 
-0000659803 00000 n 
-0000659866 00000 n 
-0000659930 00000 n 
-0000660055 00000 n 
-0000660118 00000 n 
-0000660181 00000 n 
-0000660244 00000 n 
-0000660308 00000 n 
-0000660371 00000 n 
-0000660433 00000 n 
-0000660496 00000 n 
-0000658589 00000 n 
-0000660685 00000 n 
-0000658760 00000 n 
-0000660810 00000 n 
-0000660873 00000 n 
-0000660937 00000 n 
-0000668530 00000 n 
-0000663334 00000 n 
-0000661158 00000 n 
-0000663801 00000 n 
-0000664116 00000 n 
-0000664179 00000 n 
-0000664243 00000 n 
-0000664305 00000 n 
-0000663488 00000 n 
-0000663646 00000 n 
-0000664368 00000 n 
-0000664431 00000 n 
-0000664494 00000 n 
-0000664557 00000 n 
-0000664620 00000 n 
-0000664683 00000 n 
-0000664746 00000 n 
-0000664810 00000 n 
-0000664874 00000 n 
-0000664938 00000 n 
-0000665002 00000 n 
-0000665065 00000 n 
-0000665128 00000 n 
-0000665191 00000 n 
-0000665254 00000 n 
-0000665317 00000 n 
-0000665380 00000 n 
-0000665443 00000 n 
-0000665502 00000 n 
-0000665562 00000 n 
-0000665622 00000 n 
-0000665685 00000 n 
-0000665748 00000 n 
-0000665811 00000 n 
-0000665874 00000 n 
-0000665937 00000 n 
-0000666000 00000 n 
-0000666063 00000 n 
-0000666126 00000 n 
-0000666190 00000 n 
-0000666253 00000 n 
-0000666317 00000 n 
-0000666381 00000 n 
-0000666445 00000 n 
-0000666508 00000 n 
-0000666571 00000 n 
-0000666633 00000 n 
-0000666695 00000 n 
-0000666759 00000 n 
-0000666822 00000 n 
-0000666886 00000 n 
-0000666950 00000 n 
-0000667014 00000 n 
-0000667078 00000 n 
-0000667142 00000 n 
-0000667206 00000 n 
-0000667270 00000 n 
-0000667334 00000 n 
-0000667398 00000 n 
-0000667461 00000 n 
-0000667523 00000 n 
-0000667586 00000 n 
-0000667649 00000 n 
-0000667713 00000 n 
-0000667776 00000 n 
-0000667839 00000 n 
-0000667902 00000 n 
-0000667965 00000 n 
-0000668028 00000 n 
-0000668090 00000 n 
-0000668153 00000 n 
-0000668216 00000 n 
-0000668279 00000 n 
-0000668342 00000 n 
-0000668405 00000 n 
-0000668468 00000 n 
-0000973582 00000 n 
-0000671401 00000 n 
-0000670095 00000 n 
-0000668674 00000 n 
-0000670388 00000 n 
-0000670451 00000 n 
-0000670515 00000 n 
-0000670579 00000 n 
-0000670643 00000 n 
-0000670706 00000 n 
-0000670240 00000 n 
-0000671020 00000 n 
-0000671083 00000 n 
-0000671147 00000 n 
-0000671211 00000 n 
-0000671275 00000 n 
-0000671337 00000 n 
-0000676200 00000 n 
-0000674060 00000 n 
-0000671531 00000 n 
-0000674184 00000 n 
-0000674499 00000 n 
-0000674562 00000 n 
-0000674749 00000 n 
-0000674812 00000 n 
-0000674875 00000 n 
-0000674938 00000 n 
-0000675000 00000 n 
-0000675063 00000 n 
-0000675127 00000 n 
-0000675190 00000 n 
-0000675254 00000 n 
-0000675318 00000 n 
-0000675381 00000 n 
-0000675444 00000 n 
-0000675507 00000 n 
-0000675570 00000 n 
-0000675632 00000 n 
-0000675695 00000 n 
-0000675758 00000 n 
-0000675821 00000 n 
-0000675884 00000 n 
-0000675947 00000 n 
-0000676010 00000 n 
-0000676073 00000 n 
-0000676136 00000 n 
-0000682846 00000 n 
-0000679705 00000 n 
-0000676330 00000 n 
-0000679829 00000 n 
-0000679892 00000 n 
-0000680081 00000 n 
-0000680144 00000 n 
-0000680207 00000 n 
-0000680270 00000 n 
-0000680333 00000 n 
-0000680396 00000 n 
-0000680459 00000 n 
-0000680522 00000 n 
-0000680585 00000 n 
-0000680648 00000 n 
-0000680711 00000 n 
-0000680774 00000 n 
-0000680837 00000 n 
-0000680900 00000 n 
-0000680963 00000 n 
-0000681026 00000 n 
-0000681089 00000 n 
-0000681152 00000 n 
-0000681215 00000 n 
-0000681278 00000 n 
-0000681341 00000 n 
-0000681404 00000 n 
-0000681467 00000 n 
-0000681530 00000 n 
-0000681593 00000 n 
-0000681656 00000 n 
-0000681719 00000 n 
-0000681782 00000 n 
-0000681843 00000 n 
-0000681904 00000 n 
-0000681967 00000 n 
-0000682030 00000 n 
-0000682093 00000 n 
-0000682156 00000 n 
-0000682219 00000 n 
-0000682282 00000 n 
-0000682345 00000 n 
-0000682408 00000 n 
-0000682471 00000 n 
-0000682533 00000 n 
-0000682596 00000 n 
-0000682659 00000 n 
-0000682722 00000 n 
-0000682784 00000 n 
-0001002370 00000 n 
-0000689051 00000 n 
-0000687422 00000 n 
-0000685099 00000 n 
-0000682948 00000 n 
-0000685403 00000 n 
-0000685528 00000 n 
-0000685591 00000 n 
-0000685654 00000 n 
-0000685717 00000 n 
-0000685780 00000 n 
-0000685843 00000 n 
-0000685906 00000 n 
-0000685969 00000 n 
-0000686032 00000 n 
-0000686095 00000 n 
-0000686159 00000 n 
-0000686223 00000 n 
-0000686286 00000 n 
-0000686349 00000 n 
-0000686412 00000 n 
-0000686475 00000 n 
-0000686538 00000 n 
-0000686601 00000 n 
-0000686664 00000 n 
-0000686727 00000 n 
-0000686790 00000 n 
-0000686853 00000 n 
-0000686916 00000 n 
-0000686979 00000 n 
-0000687168 00000 n 
-0000685244 00000 n 
-0000687231 00000 n 
-0000687295 00000 n 
-0000739078 00000 n 
-0000688906 00000 n 
-0000687524 00000 n 
-0000738636 00000 n 
-0000738699 00000 n 
-0000738825 00000 n 
-0000738888 00000 n 
-0000738952 00000 n 
-0000739015 00000 n 
-0000738486 00000 n 
-0000744016 00000 n 
-0000741431 00000 n 
-0000739231 00000 n 
-0000741555 00000 n 
-0000741806 00000 n 
-0000741869 00000 n 
-0000741932 00000 n 
-0000741995 00000 n 
-0000742058 00000 n 
-0000742122 00000 n 
-0000742186 00000 n 
-0000742249 00000 n 
-0000742312 00000 n 
-0000742375 00000 n 
-0000742438 00000 n 
-0000742501 00000 n 
-0000742564 00000 n 
-0000742627 00000 n 
-0000742690 00000 n 
-0000742753 00000 n 
-0000742816 00000 n 
-0000743005 00000 n 
-0000743191 00000 n 
-0000743254 00000 n 
-0000743318 00000 n 
-0000743381 00000 n 
-0000743445 00000 n 
-0000743508 00000 n 
-0000743572 00000 n 
-0000743635 00000 n 
-0000743699 00000 n 
-0000743762 00000 n 
-0000743826 00000 n 
-0000743889 00000 n 
-0000743953 00000 n 
-0000748702 00000 n 
-0000747128 00000 n 
-0000744118 00000 n 
-0000747252 00000 n 
-0000747378 00000 n 
-0000747441 00000 n 
-0000747505 00000 n 
-0000747568 00000 n 
-0000747632 00000 n 
-0000747695 00000 n 
-0000747884 00000 n 
-0000747947 00000 n 
-0000748009 00000 n 
-0000748073 00000 n 
-0000748136 00000 n 
-0000748326 00000 n 
-0000748389 00000 n 
-0000748452 00000 n 
-0000748514 00000 n 
-0000748576 00000 n 
-0000754232 00000 n 
-0000751972 00000 n 
-0000748818 00000 n 
-0000752276 00000 n 
-0000752402 00000 n 
-0000752465 00000 n 
-0000752117 00000 n 
-0000752528 00000 n 
-0000752590 00000 n 
-0000752654 00000 n 
-0000752718 00000 n 
-0000753034 00000 n 
-0000753097 00000 n 
-0000753161 00000 n 
-0000753223 00000 n 
-0000753286 00000 n 
-0000753349 00000 n 
-0000753411 00000 n 
-0000753474 00000 n 
-0000753537 00000 n 
-0000753600 00000 n 
-0000753663 00000 n 
-0000753727 00000 n 
-0000753790 00000 n 
-0000753853 00000 n 
-0000753916 00000 n 
-0000753978 00000 n 
-0000754042 00000 n 
-0000754105 00000 n 
-0000754168 00000 n 
-0000758780 00000 n 
-0000757208 00000 n 
-0000754348 00000 n 
-0000757332 00000 n 
-0000757395 00000 n 
-0000757458 00000 n 
-0000757520 00000 n 
-0000757583 00000 n 
-0000757646 00000 n 
-0000757709 00000 n 
-0000757772 00000 n 
-0000757835 00000 n 
-0000757898 00000 n 
-0000757962 00000 n 
-0000758025 00000 n 
-0000758214 00000 n 
-0000758277 00000 n 
-0000758341 00000 n 
-0000758528 00000 n 
-0000758591 00000 n 
-0000758654 00000 n 
-0000758717 00000 n 
-0001002495 00000 n 
-0000763118 00000 n 
-0000761548 00000 n 
-0000758910 00000 n 
-0000761672 00000 n 
-0000761735 00000 n 
-0000761798 00000 n 
-0000761862 00000 n 
-0000761926 00000 n 
-0000761990 00000 n 
-0000762053 00000 n 
-0000762243 00000 n 
-0000762306 00000 n 
-0000762368 00000 n 
-0000762431 00000 n 
-0000762619 00000 n 
-0000762807 00000 n 
-0000762992 00000 n 
-0000766634 00000 n 
-0000765123 00000 n 
-0000763220 00000 n 
-0000765247 00000 n 
-0000765373 00000 n 
-0000765562 00000 n 
-0000765751 00000 n 
-0000765814 00000 n 
-0000766003 00000 n 
-0000766192 00000 n 
-0000766381 00000 n 
-0000766444 00000 n 
-0000766508 00000 n 
-0000766571 00000 n 
-0000770699 00000 n 
-0000769064 00000 n 
-0000766736 00000 n 
-0000769188 00000 n 
-0000769251 00000 n 
-0000769440 00000 n 
-0000769503 00000 n 
-0000769689 00000 n 
-0000769752 00000 n 
-0000769816 00000 n 
-0000770005 00000 n 
-0000770068 00000 n 
-0000770132 00000 n 
-0000770195 00000 n 
-0000770258 00000 n 
-0000770322 00000 n 
-0000770385 00000 n 
-0000770574 00000 n 
-0000775976 00000 n 
-0000773452 00000 n 
-0000770815 00000 n 
-0000773576 00000 n 
-0000773702 00000 n 
-0000773765 00000 n 
-0000773829 00000 n 
-0000774019 00000 n 
-0000774082 00000 n 
-0000774145 00000 n 
-0000774208 00000 n 
-0000774271 00000 n 
-0000774334 00000 n 
-0000774397 00000 n 
-0000774460 00000 n 
-0000774523 00000 n 
-0000774586 00000 n 
-0000774649 00000 n 
-0000774713 00000 n 
-0000774776 00000 n 
-0000774839 00000 n 
-0000775026 00000 n 
-0000775089 00000 n 
-0000775152 00000 n 
-0000775216 00000 n 
-0000775279 00000 n 
-0000775342 00000 n 
-0000775405 00000 n 
-0000775469 00000 n 
-0000775533 00000 n 
-0000775596 00000 n 
-0000775659 00000 n 
-0000775723 00000 n 
-0000775787 00000 n 
-0000775850 00000 n 
-0000775913 00000 n 
-0000781386 00000 n 
-0000778930 00000 n 
-0000776106 00000 n 
-0000779054 00000 n 
-0000779117 00000 n 
-0000779180 00000 n 
-0000779244 00000 n 
-0000779307 00000 n 
-0000779370 00000 n 
-0000779433 00000 n 
-0000779497 00000 n 
-0000779560 00000 n 
-0000779623 00000 n 
-0000779686 00000 n 
-0000779749 00000 n 
-0000779812 00000 n 
-0000779876 00000 n 
-0000779938 00000 n 
-0000780001 00000 n 
-0000780065 00000 n 
-0000780128 00000 n 
-0000780191 00000 n 
-0000780255 00000 n 
-0000780318 00000 n 
-0000780381 00000 n 
-0000780444 00000 n 
-0000780507 00000 n 
-0000780570 00000 n 
-0000780634 00000 n 
-0000780697 00000 n 
-0000780760 00000 n 
-0000780824 00000 n 
-0000780886 00000 n 
-0000780950 00000 n 
-0000781013 00000 n 
-0000781076 00000 n 
-0000781261 00000 n 
-0000785368 00000 n 
-0000784050 00000 n 
-0000781502 00000 n 
-0000784174 00000 n 
-0000784300 00000 n 
-0000784489 00000 n 
-0000784552 00000 n 
-0000784615 00000 n 
-0000784678 00000 n 
-0000784741 00000 n 
-0000784929 00000 n 
-0000784991 00000 n 
-0000785053 00000 n 
-0000785116 00000 n 
-0000785179 00000 n 
-0000785242 00000 n 
-0001002620 00000 n 
-0000789552 00000 n 
-0000788234 00000 n 
-0000785484 00000 n 
-0000788358 00000 n 
-0000788484 00000 n 
-0000788547 00000 n 
-0000788610 00000 n 
-0000788673 00000 n 
-0000788736 00000 n 
-0000788925 00000 n 
-0000788988 00000 n 
-0000789177 00000 n 
-0000789239 00000 n 
-0000789301 00000 n 
-0000789364 00000 n 
-0000789427 00000 n 
-0000789490 00000 n 
-0000794046 00000 n 
-0000792366 00000 n 
-0000789654 00000 n 
-0000792851 00000 n 
-0000792914 00000 n 
-0000792977 00000 n 
-0000793163 00000 n 
-0000793226 00000 n 
-0000793289 00000 n 
-0000793353 00000 n 
-0000793417 00000 n 
-0000793480 00000 n 
-0000792520 00000 n 
-0000793543 00000 n 
-0000793606 00000 n 
-0000792683 00000 n 
-0000793795 00000 n 
-0000793858 00000 n 
-0000793920 00000 n 
-0000798588 00000 n 
-0000797225 00000 n 
-0000794162 00000 n 
-0000797517 00000 n 
-0000797643 00000 n 
-0000797706 00000 n 
-0000797769 00000 n 
-0000797832 00000 n 
-0000797896 00000 n 
-0000797959 00000 n 
-0000798022 00000 n 
-0000798085 00000 n 
-0000798273 00000 n 
-0000798336 00000 n 
-0000798399 00000 n 
-0000797370 00000 n 
-0000798462 00000 n 
-0000798525 00000 n 
-0000800822 00000 n 
-0000800067 00000 n 
-0000798704 00000 n 
-0000800191 00000 n 
-0000800254 00000 n 
-0000800317 00000 n 
-0000800380 00000 n 
-0000800443 00000 n 
-0000800633 00000 n 
-0000800696 00000 n 
-0000800759 00000 n 
-0000805613 00000 n 
-0000803222 00000 n 
-0000800938 00000 n 
-0000803530 00000 n 
-0000803844 00000 n 
-0000803907 00000 n 
-0000803971 00000 n 
-0000804034 00000 n 
-0000804097 00000 n 
+0000626959 00000 n 
+0000627022 00000 n 
+0000627086 00000 n 
+0000627150 00000 n 
+0000632250 00000 n 
+0000630047 00000 n 
+0000627392 00000 n 
+0000630171 00000 n 
+0000630297 00000 n 
+0000630360 00000 n 
+0000630423 00000 n 
+0000630486 00000 n 
+0000630549 00000 n 
+0000630612 00000 n 
+0000630675 00000 n 
+0000630863 00000 n 
+0000630926 00000 n 
+0000630989 00000 n 
+0000631052 00000 n 
+0000631115 00000 n 
+0000631178 00000 n 
+0000631241 00000 n 
+0000631304 00000 n 
+0000631367 00000 n 
+0000631430 00000 n 
+0000631493 00000 n 
+0000631556 00000 n 
+0000631619 00000 n 
+0000631682 00000 n 
+0000631745 00000 n 
+0000631808 00000 n 
+0000631997 00000 n 
+0000632060 00000 n 
+0000632123 00000 n 
+0000632187 00000 n 
+0000637472 00000 n 
+0000634946 00000 n 
+0000632352 00000 n 
+0000635070 00000 n 
+0000635133 00000 n 
+0000635196 00000 n 
+0000635384 00000 n 
+0000635447 00000 n 
+0000635511 00000 n 
+0000635574 00000 n 
+0000635636 00000 n 
+0000635700 00000 n 
+0000635764 00000 n 
+0000635827 00000 n 
+0000635891 00000 n 
+0000635954 00000 n 
+0000636017 00000 n 
+0000636206 00000 n 
+0000636269 00000 n 
+0000636332 00000 n 
+0000636395 00000 n 
+0000636458 00000 n 
+0000636522 00000 n 
+0000636585 00000 n 
+0000636648 00000 n 
+0000636712 00000 n 
+0000636776 00000 n 
+0000636839 00000 n 
+0000636902 00000 n 
+0000636965 00000 n 
+0000637029 00000 n 
+0000637093 00000 n 
+0000637157 00000 n 
+0000637221 00000 n 
+0000637284 00000 n 
+0000637346 00000 n 
+0000637409 00000 n 
+0000958254 00000 n 
+0000641303 00000 n 
+0000639372 00000 n 
+0000637588 00000 n 
+0000639669 00000 n 
+0000639732 00000 n 
+0000639796 00000 n 
+0000639859 00000 n 
+0000639922 00000 n 
+0000639984 00000 n 
+0000640173 00000 n 
+0000640236 00000 n 
+0000640299 00000 n 
+0000640362 00000 n 
+0000640425 00000 n 
+0000640488 00000 n 
+0000640551 00000 n 
+0000640613 00000 n 
+0000640802 00000 n 
+0000639517 00000 n 
+0000641115 00000 n 
+0000641178 00000 n 
+0000644441 00000 n 
+0000642934 00000 n 
+0000641433 00000 n 
+0000643058 00000 n 
+0000643121 00000 n 
+0000643246 00000 n 
+0000643309 00000 n 
+0000643498 00000 n 
+0000643561 00000 n 
+0000643624 00000 n 
+0000643687 00000 n 
+0000643749 00000 n 
+0000643812 00000 n 
+0000643875 00000 n 
+0000643937 00000 n 
+0000644000 00000 n 
+0000644063 00000 n 
+0000644126 00000 n 
+0000644189 00000 n 
+0000644378 00000 n 
+0000649404 00000 n 
+0000647704 00000 n 
+0000644557 00000 n 
+0000647828 00000 n 
+0000647953 00000 n 
+0000648016 00000 n 
+0000648080 00000 n 
+0000648144 00000 n 
+0000648207 00000 n 
+0000648270 00000 n 
+0000648457 00000 n 
+0000648520 00000 n 
+0000648583 00000 n 
+0000648646 00000 n 
+0000648709 00000 n 
+0000648772 00000 n 
+0000648961 00000 n 
+0000649024 00000 n 
+0000649088 00000 n 
+0000649151 00000 n 
+0000649214 00000 n 
+0000649277 00000 n 
+0000649340 00000 n 
+0000655539 00000 n 
+0000652748 00000 n 
+0000649562 00000 n 
+0000653713 00000 n 
+0000653776 00000 n 
+0000653901 00000 n 
+0000653964 00000 n 
+0000652929 00000 n 
+0000654027 00000 n 
+0000654090 00000 n 
+0000654153 00000 n 
+0000654216 00000 n 
+0000654405 00000 n 
+0000654467 00000 n 
+0000654530 00000 n 
+0000654593 00000 n 
+0000653083 00000 n 
+0000654656 00000 n 
+0000654719 00000 n 
+0000653237 00000 n 
+0000654782 00000 n 
+0000654845 00000 n 
+0000653396 00000 n 
+0000654908 00000 n 
+0000653555 00000 n 
+0000654971 00000 n 
+0000655034 00000 n 
+0000655097 00000 n 
+0000655161 00000 n 
+0000655224 00000 n 
+0000655414 00000 n 
+0000655477 00000 n 
+0000659835 00000 n 
+0000657695 00000 n 
+0000655669 00000 n 
+0000657819 00000 n 
+0000657882 00000 n 
+0000657944 00000 n 
+0000658007 00000 n 
+0000658070 00000 n 
+0000658132 00000 n 
+0000658195 00000 n 
+0000658259 00000 n 
+0000658322 00000 n 
+0000658385 00000 n 
+0000658448 00000 n 
+0000658512 00000 n 
+0000658576 00000 n 
+0000658766 00000 n 
+0000658829 00000 n 
+0000658892 00000 n 
+0000658953 00000 n 
+0000659017 00000 n 
+0000659080 00000 n 
+0000659143 00000 n 
+0000659206 00000 n 
+0000659269 00000 n 
+0000659332 00000 n 
+0000659395 00000 n 
+0000659458 00000 n 
+0000659521 00000 n 
+0000659584 00000 n 
+0000659646 00000 n 
+0000659709 00000 n 
+0000659772 00000 n 
+0000664465 00000 n 
+0000662459 00000 n 
+0000659993 00000 n 
+0000662757 00000 n 
+0000662820 00000 n 
+0000662884 00000 n 
+0000662948 00000 n 
+0000663137 00000 n 
+0000663200 00000 n 
+0000663264 00000 n 
+0000663328 00000 n 
+0000663391 00000 n 
+0000663454 00000 n 
+0000663517 00000 n 
+0000663580 00000 n 
+0000663643 00000 n 
+0000663706 00000 n 
+0000663769 00000 n 
+0000663832 00000 n 
+0000663895 00000 n 
+0000663959 00000 n 
+0000662604 00000 n 
+0000664149 00000 n 
+0000664212 00000 n 
+0000664276 00000 n 
+0000664339 00000 n 
+0000664402 00000 n 
+0000958379 00000 n 
+0000666073 00000 n 
+0000665568 00000 n 
+0000664637 00000 n 
+0000665692 00000 n 
+0000665755 00000 n 
+0000665818 00000 n 
+0000665882 00000 n 
+0000665946 00000 n 
+0000666009 00000 n 
+0000671403 00000 n 
+0000668784 00000 n 
+0000666189 00000 n 
+0000669250 00000 n 
+0000669439 00000 n 
+0000669502 00000 n 
+0000669566 00000 n 
+0000669880 00000 n 
+0000670068 00000 n 
+0000668938 00000 n 
+0000670131 00000 n 
+0000670194 00000 n 
+0000670258 00000 n 
+0000670322 00000 n 
+0000669093 00000 n 
+0000670386 00000 n 
+0000670450 00000 n 
+0000670514 00000 n 
+0000670578 00000 n 
+0000670642 00000 n 
+0000670705 00000 n 
+0000670769 00000 n 
+0000670832 00000 n 
+0000670895 00000 n 
+0000670959 00000 n 
+0000671023 00000 n 
+0000671213 00000 n 
+0000671276 00000 n 
+0000939438 00000 n 
+0000949336 00000 n 
+0000675990 00000 n 
+0000673252 00000 n 
+0000671547 00000 n 
+0000673911 00000 n 
+0000674162 00000 n 
+0000673415 00000 n 
+0000674350 00000 n 
+0000674413 00000 n 
+0000674477 00000 n 
+0000674541 00000 n 
+0000674667 00000 n 
+0000674730 00000 n 
+0000674793 00000 n 
+0000674856 00000 n 
+0000674920 00000 n 
+0000675045 00000 n 
+0000675108 00000 n 
+0000675171 00000 n 
+0000675234 00000 n 
+0000675298 00000 n 
+0000675361 00000 n 
+0000675423 00000 n 
+0000675486 00000 n 
+0000673579 00000 n 
+0000675675 00000 n 
+0000673750 00000 n 
+0000675800 00000 n 
+0000675863 00000 n 
+0000675927 00000 n 
+0000683520 00000 n 
+0000678324 00000 n 
+0000676148 00000 n 
+0000678791 00000 n 
+0000679106 00000 n 
+0000679169 00000 n 
+0000679233 00000 n 
+0000679295 00000 n 
+0000678478 00000 n 
+0000678636 00000 n 
+0000679358 00000 n 
+0000679421 00000 n 
+0000679484 00000 n 
+0000679547 00000 n 
+0000679610 00000 n 
+0000679673 00000 n 
+0000679736 00000 n 
+0000679800 00000 n 
+0000679864 00000 n 
+0000679928 00000 n 
+0000679992 00000 n 
+0000680055 00000 n 
+0000680118 00000 n 
+0000680181 00000 n 
+0000680244 00000 n 
+0000680307 00000 n 
+0000680370 00000 n 
+0000680433 00000 n 
+0000680492 00000 n 
+0000680552 00000 n 
+0000680612 00000 n 
+0000680675 00000 n 
+0000680738 00000 n 
+0000680801 00000 n 
+0000680864 00000 n 
+0000680927 00000 n 
+0000680990 00000 n 
+0000681053 00000 n 
+0000681116 00000 n 
+0000681180 00000 n 
+0000681243 00000 n 
+0000681307 00000 n 
+0000681371 00000 n 
+0000681435 00000 n 
+0000681498 00000 n 
+0000681561 00000 n 
+0000681623 00000 n 
+0000681685 00000 n 
+0000681749 00000 n 
+0000681812 00000 n 
+0000681876 00000 n 
+0000681940 00000 n 
+0000682004 00000 n 
+0000682068 00000 n 
+0000682132 00000 n 
+0000682196 00000 n 
+0000682260 00000 n 
+0000682324 00000 n 
+0000682388 00000 n 
+0000682451 00000 n 
+0000682513 00000 n 
+0000682576 00000 n 
+0000682639 00000 n 
+0000682703 00000 n 
+0000682766 00000 n 
+0000682829 00000 n 
+0000682892 00000 n 
+0000682955 00000 n 
+0000683018 00000 n 
+0000683080 00000 n 
+0000683143 00000 n 
+0000683206 00000 n 
+0000683269 00000 n 
+0000683332 00000 n 
+0000683395 00000 n 
+0000683458 00000 n 
+0000929714 00000 n 
+0000686391 00000 n 
+0000685085 00000 n 
+0000683664 00000 n 
+0000685378 00000 n 
+0000685441 00000 n 
+0000685505 00000 n 
+0000685569 00000 n 
+0000685633 00000 n 
+0000685696 00000 n 
+0000685230 00000 n 
+0000686010 00000 n 
+0000686073 00000 n 
+0000686137 00000 n 
+0000686201 00000 n 
+0000686265 00000 n 
+0000686327 00000 n 
+0000691107 00000 n 
+0000689031 00000 n 
+0000686521 00000 n 
+0000689155 00000 n 
+0000689470 00000 n 
+0000689533 00000 n 
+0000689595 00000 n 
+0000689658 00000 n 
+0000689846 00000 n 
+0000689909 00000 n 
+0000689972 00000 n 
+0000690035 00000 n 
+0000690098 00000 n 
+0000690161 00000 n 
+0000690225 00000 n 
+0000690288 00000 n 
+0000690352 00000 n 
+0000690416 00000 n 
+0000690478 00000 n 
+0000690541 00000 n 
+0000690604 00000 n 
+0000690667 00000 n 
+0000690730 00000 n 
+0000690793 00000 n 
+0000690855 00000 n 
+0000690918 00000 n 
+0000690981 00000 n 
+0000691044 00000 n 
+0000958504 00000 n 
+0000697804 00000 n 
+0000694597 00000 n 
+0000691237 00000 n 
+0000694721 00000 n 
+0000694784 00000 n 
+0000694847 00000 n 
+0000694910 00000 n 
+0000694974 00000 n 
+0000695162 00000 n 
+0000695225 00000 n 
+0000695288 00000 n 
+0000695351 00000 n 
+0000695414 00000 n 
+0000695477 00000 n 
+0000695540 00000 n 
+0000695603 00000 n 
+0000695666 00000 n 
+0000695729 00000 n 
+0000695792 00000 n 
+0000695855 00000 n 
+0000695918 00000 n 
+0000695981 00000 n 
+0000696044 00000 n 
+0000696107 00000 n 
+0000696170 00000 n 
+0000696233 00000 n 
+0000696295 00000 n 
+0000696358 00000 n 
+0000696421 00000 n 
+0000696484 00000 n 
+0000696547 00000 n 
+0000696610 00000 n 
+0000696673 00000 n 
+0000696736 00000 n 
+0000696799 00000 n 
+0000696862 00000 n 
+0000696925 00000 n 
+0000696988 00000 n 
+0000697051 00000 n 
+0000697114 00000 n 
+0000697177 00000 n 
+0000697240 00000 n 
+0000697303 00000 n 
+0000697366 00000 n 
+0000697428 00000 n 
+0000697491 00000 n 
+0000697554 00000 n 
+0000697617 00000 n 
+0000697679 00000 n 
+0000697741 00000 n 
+0000704131 00000 n 
+0000702733 00000 n 
+0000700287 00000 n 
+0000697906 00000 n 
+0000700591 00000 n 
+0000700716 00000 n 
+0000700779 00000 n 
+0000700842 00000 n 
+0000700905 00000 n 
+0000700968 00000 n 
+0000701031 00000 n 
+0000701094 00000 n 
+0000701157 00000 n 
+0000701220 00000 n 
+0000701283 00000 n 
+0000701346 00000 n 
+0000701409 00000 n 
+0000701473 00000 n 
+0000701537 00000 n 
+0000701600 00000 n 
+0000701663 00000 n 
+0000701725 00000 n 
+0000701787 00000 n 
+0000701850 00000 n 
+0000701913 00000 n 
+0000701976 00000 n 
+0000702039 00000 n 
+0000702102 00000 n 
+0000702165 00000 n 
+0000702228 00000 n 
+0000702291 00000 n 
+0000702480 00000 n 
+0000700432 00000 n 
+0000702543 00000 n 
+0000702606 00000 n 
+0000754290 00000 n 
+0000703986 00000 n 
+0000702835 00000 n 
+0000753723 00000 n 
+0000753786 00000 n 
+0000753848 00000 n 
+0000753974 00000 n 
+0000754037 00000 n 
+0000754101 00000 n 
+0000754164 00000 n 
+0000753566 00000 n 
+0000759057 00000 n 
+0000756595 00000 n 
+0000754443 00000 n 
+0000756719 00000 n 
+0000756845 00000 n 
+0000756908 00000 n 
+0000756971 00000 n 
+0000757035 00000 n 
+0000757099 00000 n 
+0000757163 00000 n 
+0000757226 00000 n 
+0000757289 00000 n 
+0000757352 00000 n 
+0000757415 00000 n 
+0000757478 00000 n 
+0000757541 00000 n 
+0000757604 00000 n 
+0000757667 00000 n 
+0000757730 00000 n 
+0000757793 00000 n 
+0000757982 00000 n 
+0000758170 00000 n 
+0000758233 00000 n 
+0000758296 00000 n 
+0000758359 00000 n 
+0000758423 00000 n 
+0000758486 00000 n 
+0000758550 00000 n 
+0000758613 00000 n 
+0000758677 00000 n 
+0000758740 00000 n 
+0000758804 00000 n 
+0000758867 00000 n 
+0000758931 00000 n 
+0000763889 00000 n 
+0000762186 00000 n 
+0000759159 00000 n 
+0000762310 00000 n 
+0000762436 00000 n 
+0000762499 00000 n 
+0000762563 00000 n 
+0000762626 00000 n 
+0000762690 00000 n 
+0000762753 00000 n 
+0000762941 00000 n 
+0000763004 00000 n 
+0000763068 00000 n 
+0000763132 00000 n 
+0000763195 00000 n 
+0000763385 00000 n 
+0000763574 00000 n 
+0000763637 00000 n 
+0000763700 00000 n 
+0000763763 00000 n 
+0000763826 00000 n 
+0000768983 00000 n 
+0000766850 00000 n 
+0000764005 00000 n 
+0000767153 00000 n 
+0000767342 00000 n 
+0000767405 00000 n 
+0000766995 00000 n 
+0000767468 00000 n 
+0000767531 00000 n 
+0000767595 00000 n 
+0000767658 00000 n 
+0000767973 00000 n 
+0000768036 00000 n 
+0000768100 00000 n 
+0000768163 00000 n 
+0000768226 00000 n 
+0000768289 00000 n 
+0000768352 00000 n 
+0000768416 00000 n 
+0000768480 00000 n 
+0000768542 00000 n 
+0000768605 00000 n 
+0000768668 00000 n 
+0000768731 00000 n 
+0000768793 00000 n 
+0000768856 00000 n 
+0000768919 00000 n 
+0000958629 00000 n 
+0000773740 00000 n 
+0000772105 00000 n 
+0000769099 00000 n 
+0000772229 00000 n 
+0000772292 00000 n 
+0000772354 00000 n 
+0000772417 00000 n 
+0000772479 00000 n 
+0000772542 00000 n 
+0000772605 00000 n 
+0000772668 00000 n 
+0000772731 00000 n 
+0000772794 00000 n 
+0000772857 00000 n 
+0000772920 00000 n 
+0000772983 00000 n 
+0000773046 00000 n 
+0000773110 00000 n 
+0000773173 00000 n 
+0000773361 00000 n 
+0000773424 00000 n 
+0000773488 00000 n 
+0000773677 00000 n 
+0000777916 00000 n 
+0000776470 00000 n 
+0000773856 00000 n 
+0000776594 00000 n 
+0000776657 00000 n 
+0000776720 00000 n 
+0000776783 00000 n 
+0000776847 00000 n 
+0000776910 00000 n 
+0000776974 00000 n 
+0000777037 00000 n 
+0000777227 00000 n 
+0000777290 00000 n 
+0000777352 00000 n 
+0000777415 00000 n 
+0000777603 00000 n 
+0000777791 00000 n 
+0000781566 00000 n 
+0000780058 00000 n 
+0000778032 00000 n 
+0000780182 00000 n 
+0000780308 00000 n 
+0000780497 00000 n 
+0000780686 00000 n 
+0000780875 00000 n 
+0000780938 00000 n 
+0000781127 00000 n 
+0000781315 00000 n 
+0000781503 00000 n 
+0000785194 00000 n 
+0000783747 00000 n 
+0000781668 00000 n 
+0000783871 00000 n 
+0000783934 00000 n 
+0000783998 00000 n 
+0000784061 00000 n 
+0000784124 00000 n 
+0000784313 00000 n 
+0000784376 00000 n 
+0000784564 00000 n 
+0000784752 00000 n 
+0000784815 00000 n 
+0000784879 00000 n 
+0000785068 00000 n 
+0000785131 00000 n 
+0000791032 00000 n 
+0000788263 00000 n 
+0000785296 00000 n 
+0000788387 00000 n 
+0000788450 00000 n 
+0000788513 00000 n 
+0000788576 00000 n 
+0000788640 00000 n 
+0000788703 00000 n 
+0000788891 00000 n 
+0000789080 00000 n 
+0000789143 00000 n 
+0000789206 00000 n 
+0000789269 00000 n 
+0000789332 00000 n 
+0000789394 00000 n 
+0000789457 00000 n 
+0000789520 00000 n 
+0000789583 00000 n 
+0000789646 00000 n 
+0000789709 00000 n 
+0000789772 00000 n 
+0000789835 00000 n 
+0000789898 00000 n 
+0000789961 00000 n 
+0000790024 00000 n 
+0000790087 00000 n 
+0000790150 00000 n 
+0000790213 00000 n 
+0000790276 00000 n 
+0000790338 00000 n 
+0000790401 00000 n 
+0000790589 00000 n 
+0000790652 00000 n 
+0000790714 00000 n 
+0000790778 00000 n 
+0000790842 00000 n 
+0000790905 00000 n 
+0000790968 00000 n 
+0000796825 00000 n 
+0000794170 00000 n 
+0000791162 00000 n 
+0000794294 00000 n 
+0000794357 00000 n 
+0000794420 00000 n 
+0000794484 00000 n 
+0000794548 00000 n 
+0000794611 00000 n 
+0000794675 00000 n 
+0000794738 00000 n 
+0000794801 00000 n 
+0000794864 00000 n 
+0000794928 00000 n 
+0000794991 00000 n 
+0000795054 00000 n 
+0000795118 00000 n 
+0000795181 00000 n 
+0000795244 00000 n 
+0000795308 00000 n 
+0000795371 00000 n 
+0000795433 00000 n 
+0000795496 00000 n 
+0000795559 00000 n 
+0000795622 00000 n 
+0000795686 00000 n 
+0000795748 00000 n 
+0000795811 00000 n 
+0000795874 00000 n 
+0000795937 00000 n 
+0000796000 00000 n 
+0000796064 00000 n 
+0000796127 00000 n 
+0000796190 00000 n 
+0000796254 00000 n 
+0000796317 00000 n 
+0000796381 00000 n 
+0000796444 00000 n 
+0000796507 00000 n 
+0000796570 00000 n 
+0000796634 00000 n 
+0000796698 00000 n 
+0000958754 00000 n 
+0000801462 00000 n 
+0000798708 00000 n 
+0000796941 00000 n 
+0000799003 00000 n 
+0000799066 00000 n 
+0000799191 00000 n 
+0000798853 00000 n 
+0000799380 00000 n 
+0000799443 00000 n 
+0000799507 00000 n 
+0000799697 00000 n 
+0000799760 00000 n 
+0000799823 00000 n 
+0000799887 00000 n 
+0000799950 00000 n 
+0000800013 00000 n 
+0000800076 00000 n 
+0000800139 00000 n 
+0000800202 00000 n 
+0000800265 00000 n 
+0000800328 00000 n 
+0000800391 00000 n 
+0000800454 00000 n 
+0000800517 00000 n 
+0000800580 00000 n 
+0000800643 00000 n 
+0000800706 00000 n 
+0000800769 00000 n 
+0000800832 00000 n 
+0000800895 00000 n 
+0000800958 00000 n 
+0000801021 00000 n 
+0000801084 00000 n 
+0000801147 00000 n 
+0000801210 00000 n 
+0000801273 00000 n 
+0000801336 00000 n 
+0000801399 00000 n 
+0000805668 00000 n 
+0000803536 00000 n 
+0000801564 00000 n 
+0000803847 00000 n 
+0000803910 00000 n 
+0000803972 00000 n 
+0000804035 00000 n 
+0000804098 00000 n 
 0000804161 00000 n 
-0000804224 00000 n 
-0000804287 00000 n 
-0000804351 00000 n 
-0000804413 00000 n 
-0000804476 00000 n 
-0000804665 00000 n 
-0000804728 00000 n 
-0000803367 00000 n 
-0000804916 00000 n 
-0000804979 00000 n 
-0000805042 00000 n 
-0000805106 00000 n 
-0000805170 00000 n 
-0000805233 00000 n 
-0000805295 00000 n 
-0000805358 00000 n 
-0000805422 00000 n 
-0000805486 00000 n 
-0000810703 00000 n 
-0000808552 00000 n 
-0000805757 00000 n 
-0000808676 00000 n 
-0000808739 00000 n 
-0000808864 00000 n 
-0000808927 00000 n 
-0000808990 00000 n 
-0000809054 00000 n 
-0000809118 00000 n 
-0000809181 00000 n 
-0000809244 00000 n 
-0000809307 00000 n 
-0000809370 00000 n 
-0000809434 00000 n 
-0000809497 00000 n 
-0000809560 00000 n 
-0000809624 00000 n 
-0000809687 00000 n 
-0000809750 00000 n 
-0000809813 00000 n 
-0000809876 00000 n 
-0000809940 00000 n 
-0000810004 00000 n 
-0000810068 00000 n 
-0000810131 00000 n 
-0000810195 00000 n 
-0000810259 00000 n 
-0000810323 00000 n 
-0000810513 00000 n 
-0000810576 00000 n 
-0000810639 00000 n 
-0001002745 00000 n 
-0000815870 00000 n 
-0000814039 00000 n 
-0000810861 00000 n 
-0000814163 00000 n 
-0000814226 00000 n 
-0000814288 00000 n 
-0000814351 00000 n 
-0000814414 00000 n 
-0000814477 00000 n 
-0000814540 00000 n 
-0000814730 00000 n 
-0000814793 00000 n 
-0000814857 00000 n 
-0000814920 00000 n 
-0000814984 00000 n 
-0000815047 00000 n 
-0000815111 00000 n 
-0000815174 00000 n 
-0000815237 00000 n 
-0000815300 00000 n 
-0000815363 00000 n 
-0000815427 00000 n 
-0000815490 00000 n 
-0000815553 00000 n 
-0000815616 00000 n 
-0000815679 00000 n 
-0000815743 00000 n 
-0000821874 00000 n 
-0000819477 00000 n 
-0000816000 00000 n 
-0000819601 00000 n 
-0000819664 00000 n 
-0000819788 00000 n 
-0000819851 00000 n 
-0000819914 00000 n 
-0000819977 00000 n 
-0000820039 00000 n 
-0000820101 00000 n 
-0000820165 00000 n 
-0000820228 00000 n 
-0000820291 00000 n 
-0000820354 00000 n 
-0000820417 00000 n 
-0000820481 00000 n 
-0000820545 00000 n 
-0000820609 00000 n 
-0000820672 00000 n 
-0000820735 00000 n 
-0000820798 00000 n 
-0000820861 00000 n 
-0000820924 00000 n 
-0000820987 00000 n 
-0000821050 00000 n 
-0000821113 00000 n 
-0000821176 00000 n 
-0000821240 00000 n 
-0000821303 00000 n 
-0000821366 00000 n 
-0000821429 00000 n 
-0000821493 00000 n 
-0000821557 00000 n 
-0000821619 00000 n 
-0000821682 00000 n 
-0000821746 00000 n 
-0000821810 00000 n 
-0000825799 00000 n 
-0000824476 00000 n 
-0000822004 00000 n 
-0000824600 00000 n 
-0000824663 00000 n 
-0000824725 00000 n 
-0000824789 00000 n 
-0000824852 00000 n 
-0000824915 00000 n 
-0000824978 00000 n 
-0000825167 00000 n 
-0000825230 00000 n 
-0000825419 00000 n 
-0000825482 00000 n 
-0000825546 00000 n 
-0000825610 00000 n 
-0000825673 00000 n 
-0000825736 00000 n 
-0000831376 00000 n 
-0000829225 00000 n 
-0000825929 00000 n 
-0000829349 00000 n 
-0000829412 00000 n 
-0000829475 00000 n 
-0000829538 00000 n 
-0000829601 00000 n 
-0000829664 00000 n 
-0000829727 00000 n 
-0000829790 00000 n 
-0000829854 00000 n 
-0000829917 00000 n 
-0000829980 00000 n 
-0000830044 00000 n 
-0000830108 00000 n 
-0000830172 00000 n 
-0000830235 00000 n 
-0000830299 00000 n 
-0000830363 00000 n 
-0000830427 00000 n 
-0000830490 00000 n 
-0000830554 00000 n 
-0000830617 00000 n 
-0000830680 00000 n 
-0000830743 00000 n 
-0000830806 00000 n 
-0000830869 00000 n 
-0000830932 00000 n 
-0000830995 00000 n 
-0000831059 00000 n 
-0000831121 00000 n 
-0000831185 00000 n 
-0000831249 00000 n 
-0000831313 00000 n 
-0000836228 00000 n 
-0000834208 00000 n 
-0000831492 00000 n 
-0000834332 00000 n 
-0000834395 00000 n 
-0000834458 00000 n 
-0000834521 00000 n 
-0000834585 00000 n 
-0000834648 00000 n 
-0000834711 00000 n 
-0000834774 00000 n 
-0000834836 00000 n 
-0000834899 00000 n 
-0000834961 00000 n 
-0000835024 00000 n 
-0000835087 00000 n 
-0000835150 00000 n 
-0000835213 00000 n 
-0000835276 00000 n 
-0000835339 00000 n 
-0000835403 00000 n 
-0000835466 00000 n 
-0000835530 00000 n 
-0000835593 00000 n 
-0000835657 00000 n 
-0000835721 00000 n 
-0000835785 00000 n 
-0000835848 00000 n 
-0000835911 00000 n 
-0000835975 00000 n 
-0000836039 00000 n 
-0000836102 00000 n 
-0000840253 00000 n 
-0000838993 00000 n 
-0000836330 00000 n 
-0000839117 00000 n 
-0000839242 00000 n 
-0000839305 00000 n 
-0000839369 00000 n 
-0000839431 00000 n 
-0000839493 00000 n 
-0000839557 00000 n 
-0000839621 00000 n 
-0000839685 00000 n 
-0000839748 00000 n 
-0000839811 00000 n 
-0000839874 00000 n 
-0000839937 00000 n 
-0000840001 00000 n 
-0000840064 00000 n 
-0000840127 00000 n 
-0000840190 00000 n 
-0001002870 00000 n 
-0000844710 00000 n 
-0000842768 00000 n 
-0000840383 00000 n 
-0000843383 00000 n 
-0000843446 00000 n 
-0000843509 00000 n 
-0000843573 00000 n 
-0000843637 00000 n 
-0000843952 00000 n 
-0000842931 00000 n 
-0000843078 00000 n 
-0000843231 00000 n 
-0000844141 00000 n 
-0000844204 00000 n 
-0000844267 00000 n 
-0000844330 00000 n 
-0000844393 00000 n 
-0000844456 00000 n 
-0000844520 00000 n 
-0000844583 00000 n 
-0000847333 00000 n 
-0000846198 00000 n 
-0000844840 00000 n 
-0000846322 00000 n 
-0000846448 00000 n 
-0000846511 00000 n 
-0000846574 00000 n 
-0000846638 00000 n 
-0000846702 00000 n 
-0000846891 00000 n 
-0000846953 00000 n 
-0000847143 00000 n 
-0000847206 00000 n 
-0000847269 00000 n 
-0000851844 00000 n 
-0000849764 00000 n 
-0000847435 00000 n 
-0000849888 00000 n 
-0000850077 00000 n 
-0000850140 00000 n 
-0000850203 00000 n 
-0000850266 00000 n 
-0000850328 00000 n 
-0000850391 00000 n 
-0000850454 00000 n 
-0000850518 00000 n 
-0000850581 00000 n 
-0000850644 00000 n 
-0000850708 00000 n 
-0000850771 00000 n 
-0000850834 00000 n 
-0000850897 00000 n 
-0000850960 00000 n 
-0000851023 00000 n 
-0000851086 00000 n 
-0000851150 00000 n 
-0000851213 00000 n 
-0000851276 00000 n 
-0000851339 00000 n 
-0000851401 00000 n 
-0000851465 00000 n 
-0000851528 00000 n 
-0000851591 00000 n 
-0000851654 00000 n 
-0000851718 00000 n 
-0000851781 00000 n 
-0000856514 00000 n 
-0000854808 00000 n 
-0000851974 00000 n 
-0000854932 00000 n 
-0000854995 00000 n 
-0000855058 00000 n 
-0000855122 00000 n 
-0000855185 00000 n 
-0000855249 00000 n 
-0000855313 00000 n 
-0000855377 00000 n 
-0000855440 00000 n 
-0000855503 00000 n 
-0000855566 00000 n 
-0000855628 00000 n 
-0000855692 00000 n 
-0000855755 00000 n 
-0000855818 00000 n 
-0000855881 00000 n 
-0000855944 00000 n 
-0000856008 00000 n 
-0000856071 00000 n 
-0000856134 00000 n 
-0000856198 00000 n 
-0000856261 00000 n 
-0000856324 00000 n 
-0000856388 00000 n 
-0000856451 00000 n 
-0000860747 00000 n 
-0000858979 00000 n 
-0000856630 00000 n 
-0000859103 00000 n 
-0000859166 00000 n 
-0000859229 00000 n 
-0000859293 00000 n 
-0000859356 00000 n 
-0000859419 00000 n 
-0000859483 00000 n 
-0000859547 00000 n 
-0000859610 00000 n 
-0000859673 00000 n 
-0000859737 00000 n 
-0000859799 00000 n 
-0000859863 00000 n 
-0000859927 00000 n 
-0000859990 00000 n 
-0000860053 00000 n 
-0000860116 00000 n 
-0000860179 00000 n 
-0000860243 00000 n 
-0000860306 00000 n 
-0000860369 00000 n 
-0000860432 00000 n 
-0000860495 00000 n 
-0000860558 00000 n 
-0000860621 00000 n 
-0000860684 00000 n 
-0000865657 00000 n 
-0000863847 00000 n 
-0000860891 00000 n 
-0000864145 00000 n 
-0000864208 00000 n 
-0000864271 00000 n 
-0000863992 00000 n 
-0000864334 00000 n 
-0000864396 00000 n 
-0000864459 00000 n 
-0000864522 00000 n 
-0000864585 00000 n 
-0000864648 00000 n 
-0000864711 00000 n 
-0000864774 00000 n 
-0000864837 00000 n 
-0000864900 00000 n 
-0000864964 00000 n 
-0000865023 00000 n 
-0000865086 00000 n 
-0000865150 00000 n 
-0000865213 00000 n 
-0000865277 00000 n 
-0000865341 00000 n 
-0000865404 00000 n 
-0000865468 00000 n 
-0000865531 00000 n 
-0000865594 00000 n 
-0001002995 00000 n 
-0000870105 00000 n 
-0000868476 00000 n 
-0000865801 00000 n 
-0000868780 00000 n 
-0000868843 00000 n 
-0000868907 00000 n 
-0000868970 00000 n 
-0000869033 00000 n 
-0000869096 00000 n 
-0000869159 00000 n 
-0000869222 00000 n 
-0000869286 00000 n 
-0000869349 00000 n 
-0000869413 00000 n 
-0000869476 00000 n 
-0000869539 00000 n 
-0000869602 00000 n 
-0000869665 00000 n 
-0000869728 00000 n 
-0000869791 00000 n 
-0000869854 00000 n 
-0000868621 00000 n 
-0000869917 00000 n 
-0000869980 00000 n 
-0000870043 00000 n 
-0000875584 00000 n 
-0000873262 00000 n 
-0000870207 00000 n 
-0000873561 00000 n 
-0000873624 00000 n 
-0000873687 00000 n 
-0000873748 00000 n 
-0000873811 00000 n 
-0000873875 00000 n 
-0000873939 00000 n 
-0000874001 00000 n 
-0000874064 00000 n 
-0000874127 00000 n 
-0000874190 00000 n 
-0000874254 00000 n 
-0000874317 00000 n 
-0000874380 00000 n 
-0000874443 00000 n 
-0000874506 00000 n 
-0000874570 00000 n 
-0000874634 00000 n 
-0000874697 00000 n 
-0000874759 00000 n 
-0000874823 00000 n 
-0000874887 00000 n 
-0000874951 00000 n 
-0000875014 00000 n 
-0000875078 00000 n 
-0000875142 00000 n 
+0000804223 00000 n 
+0000804286 00000 n 
+0000804349 00000 n 
+0000804412 00000 n 
+0000804475 00000 n 
+0000804538 00000 n 
+0000804601 00000 n 
+0000804663 00000 n 
+0000804726 00000 n 
+0000804787 00000 n 
+0000804850 00000 n 
+0000804913 00000 n 
+0000803681 00000 n 
+0000805102 00000 n 
+0000805290 00000 n 
+0000805353 00000 n 
+0000805416 00000 n 
+0000805479 00000 n 
+0000805542 00000 n 
+0000809848 00000 n 
+0000808530 00000 n 
+0000805784 00000 n 
+0000808654 00000 n 
+0000808779 00000 n 
+0000808842 00000 n 
+0000808904 00000 n 
+0000808967 00000 n 
+0000809030 00000 n 
+0000809219 00000 n 
+0000809282 00000 n 
+0000809345 00000 n 
+0000809408 00000 n 
+0000809471 00000 n 
+0000809659 00000 n 
+0000809722 00000 n 
+0000814354 00000 n 
+0000812851 00000 n 
+0000809964 00000 n 
+0000813160 00000 n 
+0000813286 00000 n 
+0000813348 00000 n 
+0000813411 00000 n 
+0000813474 00000 n 
+0000813537 00000 n 
+0000813600 00000 n 
+0000813662 00000 n 
+0000813725 00000 n 
+0000813911 00000 n 
+0000813974 00000 n 
+0000814037 00000 n 
+0000814101 00000 n 
+0000814165 00000 n 
+0000814228 00000 n 
+0000812996 00000 n 
+0000814291 00000 n 
+0000818727 00000 n 
+0000817279 00000 n 
+0000814470 00000 n 
+0000817593 00000 n 
+0000817656 00000 n 
+0000817424 00000 n 
+0000817845 00000 n 
+0000817907 00000 n 
+0000817970 00000 n 
+0000818159 00000 n 
+0000818222 00000 n 
+0000818285 00000 n 
+0000818348 00000 n 
+0000818412 00000 n 
+0000818475 00000 n 
+0000818538 00000 n 
+0000818601 00000 n 
+0000822551 00000 n 
+0000821253 00000 n 
+0000818843 00000 n 
+0000821545 00000 n 
+0000821671 00000 n 
+0000821734 00000 n 
+0000821797 00000 n 
+0000821398 00000 n 
+0000821860 00000 n 
+0000821923 00000 n 
+0000821985 00000 n 
+0000822048 00000 n 
+0000822111 00000 n 
+0000822174 00000 n 
+0000822362 00000 n 
+0000822425 00000 n 
+0000822488 00000 n 
+0000958879 00000 n 
+0000827342 00000 n 
+0000824951 00000 n 
+0000822667 00000 n 
+0000825259 00000 n 
+0000825573 00000 n 
+0000825636 00000 n 
+0000825700 00000 n 
+0000825763 00000 n 
+0000825826 00000 n 
+0000825890 00000 n 
+0000825953 00000 n 
+0000826016 00000 n 
+0000826080 00000 n 
+0000826142 00000 n 
+0000826205 00000 n 
+0000826394 00000 n 
+0000826457 00000 n 
+0000825096 00000 n 
+0000826645 00000 n 
+0000826708 00000 n 
+0000826771 00000 n 
+0000826835 00000 n 
+0000826899 00000 n 
+0000826962 00000 n 
+0000827024 00000 n 
+0000827087 00000 n 
+0000827151 00000 n 
+0000827215 00000 n 
+0000832432 00000 n 
+0000830281 00000 n 
+0000827486 00000 n 
+0000830405 00000 n 
+0000830468 00000 n 
+0000830593 00000 n 
+0000830656 00000 n 
+0000830719 00000 n 
+0000830783 00000 n 
+0000830847 00000 n 
+0000830910 00000 n 
+0000830973 00000 n 
+0000831036 00000 n 
+0000831099 00000 n 
+0000831163 00000 n 
+0000831226 00000 n 
+0000831289 00000 n 
+0000831353 00000 n 
+0000831416 00000 n 
+0000831479 00000 n 
+0000831542 00000 n 
+0000831605 00000 n 
+0000831669 00000 n 
+0000831733 00000 n 
+0000831797 00000 n 
+0000831860 00000 n 
+0000831924 00000 n 
+0000831988 00000 n 
+0000832052 00000 n 
+0000832242 00000 n 
+0000832305 00000 n 
+0000832368 00000 n 
+0000837599 00000 n 
+0000835768 00000 n 
+0000832590 00000 n 
+0000835892 00000 n 
+0000835955 00000 n 
+0000836017 00000 n 
+0000836080 00000 n 
+0000836143 00000 n 
+0000836206 00000 n 
+0000836269 00000 n 
+0000836459 00000 n 
+0000836522 00000 n 
+0000836586 00000 n 
+0000836649 00000 n 
+0000836713 00000 n 
+0000836776 00000 n 
+0000836840 00000 n 
+0000836903 00000 n 
+0000836966 00000 n 
+0000837029 00000 n 
+0000837092 00000 n 
+0000837156 00000 n 
+0000837219 00000 n 
+0000837282 00000 n 
+0000837345 00000 n 
+0000837408 00000 n 
+0000837472 00000 n 
+0000843603 00000 n 
+0000841206 00000 n 
+0000837729 00000 n 
+0000841330 00000 n 
+0000841393 00000 n 
+0000841517 00000 n 
+0000841580 00000 n 
+0000841643 00000 n 
+0000841706 00000 n 
+0000841768 00000 n 
+0000841830 00000 n 
+0000841894 00000 n 
+0000841957 00000 n 
+0000842020 00000 n 
+0000842083 00000 n 
+0000842146 00000 n 
+0000842210 00000 n 
+0000842274 00000 n 
+0000842338 00000 n 
+0000842401 00000 n 
+0000842464 00000 n 
+0000842527 00000 n 
+0000842590 00000 n 
+0000842653 00000 n 
+0000842716 00000 n 
+0000842779 00000 n 
+0000842842 00000 n 
+0000842905 00000 n 
+0000842969 00000 n 
+0000843032 00000 n 
+0000843095 00000 n 
+0000843158 00000 n 
+0000843222 00000 n 
+0000843286 00000 n 
+0000843348 00000 n 
+0000843411 00000 n 
+0000843475 00000 n 
+0000843539 00000 n 
+0000847528 00000 n 
+0000846205 00000 n 
+0000843733 00000 n 
+0000846329 00000 n 
+0000846392 00000 n 
+0000846454 00000 n 
+0000846518 00000 n 
+0000846581 00000 n 
+0000846644 00000 n 
+0000846707 00000 n 
+0000846896 00000 n 
+0000846959 00000 n 
+0000847148 00000 n 
+0000847211 00000 n 
+0000847275 00000 n 
+0000847339 00000 n 
+0000847402 00000 n 
+0000847465 00000 n 
+0000853105 00000 n 
+0000850954 00000 n 
+0000847658 00000 n 
+0000851078 00000 n 
+0000851141 00000 n 
+0000851204 00000 n 
+0000851267 00000 n 
+0000851330 00000 n 
+0000851393 00000 n 
+0000851456 00000 n 
+0000851519 00000 n 
+0000851583 00000 n 
+0000851646 00000 n 
+0000851709 00000 n 
+0000851773 00000 n 
+0000851837 00000 n 
+0000851901 00000 n 
+0000851964 00000 n 
+0000852028 00000 n 
+0000852092 00000 n 
+0000852156 00000 n 
+0000852219 00000 n 
+0000852283 00000 n 
+0000852346 00000 n 
+0000852409 00000 n 
+0000852472 00000 n 
+0000852535 00000 n 
+0000852598 00000 n 
+0000852661 00000 n 
+0000852724 00000 n 
+0000852788 00000 n 
+0000852850 00000 n 
+0000852914 00000 n 
+0000852978 00000 n 
+0000853042 00000 n 
+0000959004 00000 n 
+0000857957 00000 n 
+0000855937 00000 n 
+0000853221 00000 n 
+0000856061 00000 n 
+0000856124 00000 n 
+0000856187 00000 n 
+0000856250 00000 n 
+0000856314 00000 n 
+0000856377 00000 n 
+0000856440 00000 n 
+0000856503 00000 n 
+0000856565 00000 n 
+0000856628 00000 n 
+0000856690 00000 n 
+0000856753 00000 n 
+0000856816 00000 n 
+0000856879 00000 n 
+0000856942 00000 n 
+0000857005 00000 n 
+0000857068 00000 n 
+0000857132 00000 n 
+0000857195 00000 n 
+0000857259 00000 n 
+0000857322 00000 n 
+0000857386 00000 n 
+0000857450 00000 n 
+0000857514 00000 n 
+0000857577 00000 n 
+0000857640 00000 n 
+0000857704 00000 n 
+0000857768 00000 n 
+0000857831 00000 n 
+0000862348 00000 n 
+0000860965 00000 n 
+0000858059 00000 n 
+0000861089 00000 n 
+0000861152 00000 n 
+0000861276 00000 n 
+0000861339 00000 n 
+0000861403 00000 n 
+0000861465 00000 n 
+0000861527 00000 n 
+0000861587 00000 n 
+0000861651 00000 n 
+0000861714 00000 n 
+0000861777 00000 n 
+0000861841 00000 n 
+0000861905 00000 n 
+0000861968 00000 n 
+0000862032 00000 n 
+0000862095 00000 n 
+0000862158 00000 n 
+0000862222 00000 n 
+0000862285 00000 n 
+0000866589 00000 n 
+0000864841 00000 n 
+0000862478 00000 n 
+0000865455 00000 n 
+0000865518 00000 n 
+0000865581 00000 n 
+0000865645 00000 n 
+0000865709 00000 n 
+0000866023 00000 n 
+0000865004 00000 n 
+0000865151 00000 n 
+0000865304 00000 n 
+0000866212 00000 n 
+0000866275 00000 n 
+0000866336 00000 n 
+0000866399 00000 n 
+0000866462 00000 n 
+0000866525 00000 n 
+0000869523 00000 n 
+0000868198 00000 n 
+0000866719 00000 n 
+0000868322 00000 n 
+0000868385 00000 n 
+0000868448 00000 n 
+0000868638 00000 n 
+0000868701 00000 n 
+0000868764 00000 n 
+0000868828 00000 n 
+0000868892 00000 n 
+0000869080 00000 n 
+0000869143 00000 n 
+0000869333 00000 n 
+0000869396 00000 n 
+0000869459 00000 n 
+0000874539 00000 n 
+0000872183 00000 n 
+0000869625 00000 n 
+0000872650 00000 n 
+0000872839 00000 n 
+0000873028 00000 n 
+0000873091 00000 n 
+0000873154 00000 n 
+0000873218 00000 n 
+0000872337 00000 n 
+0000872493 00000 n 
+0000873281 00000 n 
+0000873344 00000 n 
 0000873407 00000 n 
-0000875205 00000 n 
-0000875268 00000 n 
-0000875331 00000 n 
-0000875395 00000 n 
-0000875457 00000 n 
-0000875520 00000 n 
-0000880742 00000 n 
-0000878434 00000 n 
-0000875728 00000 n 
-0000878909 00000 n 
-0000878972 00000 n 
-0000879035 00000 n 
-0000879099 00000 n 
-0000879162 00000 n 
-0000879225 00000 n 
-0000879289 00000 n 
-0000879352 00000 n 
-0000878588 00000 n 
-0000879415 00000 n 
-0000879478 00000 n 
-0000879542 00000 n 
-0000879604 00000 n 
-0000879667 00000 n 
-0000879730 00000 n 
-0000879794 00000 n 
-0000879856 00000 n 
-0000879919 00000 n 
-0000879983 00000 n 
-0000880047 00000 n 
-0000880111 00000 n 
-0000880174 00000 n 
-0000880237 00000 n 
-0000880300 00000 n 
-0000880363 00000 n 
-0000878751 00000 n 
-0000880427 00000 n 
-0000880490 00000 n 
-0000880553 00000 n 
-0000880616 00000 n 
-0000880679 00000 n 
-0000885584 00000 n 
-0000883182 00000 n 
-0000880886 00000 n 
-0000883306 00000 n 
-0000883369 00000 n 
-0000883432 00000 n 
-0000883496 00000 n 
-0000883559 00000 n 
-0000883622 00000 n 
-0000883686 00000 n 
-0000883750 00000 n 
-0000883813 00000 n 
-0000883877 00000 n 
-0000883941 00000 n 
-0000884004 00000 n 
-0000884067 00000 n 
-0000884130 00000 n 
-0000884193 00000 n 
-0000884256 00000 n 
-0000884319 00000 n 
-0000884383 00000 n 
-0000884446 00000 n 
-0000884509 00000 n 
-0000884573 00000 n 
-0000884637 00000 n 
-0000884701 00000 n 
-0000884764 00000 n 
-0000884828 00000 n 
-0000884892 00000 n 
-0000884956 00000 n 
-0000885019 00000 n 
-0000885081 00000 n 
-0000885143 00000 n 
-0000885206 00000 n 
-0000885269 00000 n 
-0000885332 00000 n 
-0000885395 00000 n 
-0000885458 00000 n 
-0000885521 00000 n 
-0000891458 00000 n 
-0000888688 00000 n 
-0000885742 00000 n 
-0000888986 00000 n 
-0000889049 00000 n 
-0000889112 00000 n 
-0000889176 00000 n 
-0000889239 00000 n 
-0000889302 00000 n 
-0000889365 00000 n 
-0000889429 00000 n 
-0000889493 00000 n 
-0000889557 00000 n 
-0000889621 00000 n 
-0000889685 00000 n 
-0000889749 00000 n 
-0000889812 00000 n 
-0000888833 00000 n 
-0000889875 00000 n 
-0000889939 00000 n 
-0000890003 00000 n 
-0000890065 00000 n 
-0000890128 00000 n 
-0000890192 00000 n 
-0000890256 00000 n 
-0000890319 00000 n 
-0000890382 00000 n 
-0000890446 00000 n 
-0000890509 00000 n 
-0000890573 00000 n 
-0000890636 00000 n 
-0000890699 00000 n 
-0000890762 00000 n 
-0000890825 00000 n 
-0000890889 00000 n 
-0000890953 00000 n 
-0000891017 00000 n 
-0000891080 00000 n 
-0000891143 00000 n 
-0000891206 00000 n 
-0000891269 00000 n 
-0000891333 00000 n 
-0000891396 00000 n 
-0000987240 00000 n 
-0000896059 00000 n 
-0000894045 00000 n 
-0000891574 00000 n 
-0000894169 00000 n 
-0000894232 00000 n 
-0000894294 00000 n 
-0000894357 00000 n 
-0000894421 00000 n 
-0000894485 00000 n 
-0000894548 00000 n 
-0000894612 00000 n 
-0000894675 00000 n 
-0000894738 00000 n 
-0000894801 00000 n 
-0000894864 00000 n 
-0000894927 00000 n 
-0000894990 00000 n 
-0000895053 00000 n 
-0000895116 00000 n 
-0000895179 00000 n 
-0000895243 00000 n 
-0000895305 00000 n 
-0000895369 00000 n 
-0000895432 00000 n 
-0000895495 00000 n 
-0000895557 00000 n 
-0000895619 00000 n 
-0000895681 00000 n 
-0000895744 00000 n 
-0000895806 00000 n 
-0000895869 00000 n 
+0000873471 00000 n 
+0000873534 00000 n 
+0000873724 00000 n 
+0000873787 00000 n 
+0000873850 00000 n 
+0000873913 00000 n 
+0000873976 00000 n 
+0000874164 00000 n 
+0000874227 00000 n 
+0000874290 00000 n 
+0000874352 00000 n 
+0000874415 00000 n 
+0000874477 00000 n 
+0000878413 00000 n 
+0000876521 00000 n 
+0000874683 00000 n 
+0000876645 00000 n 
+0000876708 00000 n 
+0000876896 00000 n 
+0000876959 00000 n 
+0000877022 00000 n 
+0000877085 00000 n 
+0000877149 00000 n 
+0000877212 00000 n 
+0000877274 00000 n 
+0000877337 00000 n 
+0000877526 00000 n 
+0000877589 00000 n 
+0000877653 00000 n 
+0000877716 00000 n 
+0000877779 00000 n 
+0000877843 00000 n 
+0000877907 00000 n 
+0000877971 00000 n 
+0000878034 00000 n 
+0000878097 00000 n 
+0000878287 00000 n 
+0000878350 00000 n 
+0000959129 00000 n 
+0000882372 00000 n 
+0000880797 00000 n 
+0000878557 00000 n 
+0000880921 00000 n 
+0000880984 00000 n 
+0000881047 00000 n 
+0000881111 00000 n 
+0000881172 00000 n 
+0000881298 00000 n 
+0000881361 00000 n 
+0000881424 00000 n 
+0000881488 00000 n 
+0000881552 00000 n 
+0000881678 00000 n 
+0000881741 00000 n 
+0000881803 00000 n 
+0000881867 00000 n 
+0000881931 00000 n 
+0000881994 00000 n 
+0000882057 00000 n 
+0000882246 00000 n 
+0000882309 00000 n 
+0000885755 00000 n 
+0000884380 00000 n 
+0000882488 00000 n 
+0000884679 00000 n 
+0000884742 00000 n 
+0000884805 00000 n 
+0000884869 00000 n 
+0000885059 00000 n 
+0000885122 00000 n 
+0000885185 00000 n 
+0000885249 00000 n 
+0000884525 00000 n 
+0000885439 00000 n 
+0000885502 00000 n 
+0000885565 00000 n 
+0000885628 00000 n 
+0000885691 00000 n 
+0000892067 00000 n 
+0000888978 00000 n 
+0000885885 00000 n 
+0000889102 00000 n 
+0000889291 00000 n 
+0000889354 00000 n 
+0000889541 00000 n 
+0000889604 00000 n 
+0000889668 00000 n 
+0000889731 00000 n 
+0000889795 00000 n 
+0000889859 00000 n 
+0000889922 00000 n 
+0000889986 00000 n 
+0000890049 00000 n 
+0000890112 00000 n 
+0000890175 00000 n 
+0000890238 00000 n 
+0000890300 00000 n 
+0000890362 00000 n 
+0000890426 00000 n 
+0000890490 00000 n 
+0000890554 00000 n 
+0000890618 00000 n 
+0000890682 00000 n 
+0000890746 00000 n 
+0000890809 00000 n 
+0000890872 00000 n 
+0000890935 00000 n 
+0000890998 00000 n 
+0000891062 00000 n 
+0000891125 00000 n 
+0000891188 00000 n 
+0000891251 00000 n 
+0000891315 00000 n 
+0000891500 00000 n 
+0000891563 00000 n 
+0000891626 00000 n 
+0000891690 00000 n 
+0000891752 00000 n 
+0000891816 00000 n 
+0000891880 00000 n 
+0000891943 00000 n 
+0000892005 00000 n 
+0000895802 00000 n 
+0000893788 00000 n 
+0000892211 00000 n 
+0000893912 00000 n 
+0000894226 00000 n 
+0000894288 00000 n 
+0000894351 00000 n 
+0000894414 00000 n 
+0000894477 00000 n 
+0000894540 00000 n 
+0000894603 00000 n 
+0000894666 00000 n 
+0000894729 00000 n 
+0000894792 00000 n 
+0000894855 00000 n 
+0000894918 00000 n 
+0000894982 00000 n 
+0000895046 00000 n 
+0000895108 00000 n 
+0000895171 00000 n 
+0000895360 00000 n 
+0000895423 00000 n 
+0000895486 00000 n 
+0000895549 00000 n 
+0000895612 00000 n 
+0000895676 00000 n 
+0000895740 00000 n 
+0000898538 00000 n 
+0000896638 00000 n 
 0000895932 00000 n 
-0000895995 00000 n 
-0001003120 00000 n 
-0000901258 00000 n 
-0000898689 00000 n 
-0000896203 00000 n 
-0000898985 00000 n 
-0000899048 00000 n 
-0000899111 00000 n 
-0000899174 00000 n 
-0000898834 00000 n 
-0000899237 00000 n 
-0000899300 00000 n 
-0000899363 00000 n 
-0000899426 00000 n 
-0000899489 00000 n 
-0000899552 00000 n 
-0000899616 00000 n 
-0000899678 00000 n 
-0000899740 00000 n 
-0000899804 00000 n 
-0000899867 00000 n 
-0000899930 00000 n 
-0000899994 00000 n 
-0000900057 00000 n 
-0000900120 00000 n 
-0000900184 00000 n 
-0000900247 00000 n 
-0000900311 00000 n 
-0000900375 00000 n 
-0000900438 00000 n 
-0000900502 00000 n 
-0000900565 00000 n 
-0000900629 00000 n 
-0000900692 00000 n 
-0000900756 00000 n 
-0000900819 00000 n 
-0000900881 00000 n 
-0000900943 00000 n 
+0000896762 00000 n 
+0000896825 00000 n 
+0000896887 00000 n 
+0000896950 00000 n 
+0000897014 00000 n 
+0000897076 00000 n 
+0000897139 00000 n 
+0000897203 00000 n 
+0000897267 00000 n 
+0000897331 00000 n 
+0000897394 00000 n 
+0000897457 00000 n 
+0000897521 00000 n 
+0000897585 00000 n 
+0000897649 00000 n 
+0000897711 00000 n 
+0000897774 00000 n 
+0000897838 00000 n 
+0000897902 00000 n 
+0000897966 00000 n 
+0000898029 00000 n 
+0000898092 00000 n 
+0000898156 00000 n 
+0000898220 00000 n 
+0000898284 00000 n 
+0000898347 00000 n 
+0000898410 00000 n 
+0000898474 00000 n 
+0000901450 00000 n 
+0000899488 00000 n 
+0000898626 00000 n 
+0000899612 00000 n 
+0000899675 00000 n 
+0000899738 00000 n 
+0000899802 00000 n 
+0000899866 00000 n 
+0000899928 00000 n 
+0000899991 00000 n 
+0000900055 00000 n 
+0000900119 00000 n 
+0000900183 00000 n 
+0000900246 00000 n 
+0000900309 00000 n 
+0000900373 00000 n 
+0000900437 00000 n 
+0000900499 00000 n 
+0000900562 00000 n 
+0000900626 00000 n 
+0000900690 00000 n 
+0000900879 00000 n 
+0000900942 00000 n 
 0000901005 00000 n 
 0000901069 00000 n 
-0000901132 00000 n 
-0000901195 00000 n 
-0000906271 00000 n 
-0000904379 00000 n 
-0000901374 00000 n 
-0000904503 00000 n 
-0000904566 00000 n 
-0000904628 00000 n 
-0000904691 00000 n 
-0000904755 00000 n 
-0000904818 00000 n 
-0000904881 00000 n 
-0000904944 00000 n 
-0000905007 00000 n 
-0000905071 00000 n 
-0000905134 00000 n 
-0000905197 00000 n 
-0000905260 00000 n 
-0000905323 00000 n 
-0000905385 00000 n 
-0000905448 00000 n 
-0000905511 00000 n 
-0000905574 00000 n 
-0000905637 00000 n 
-0000905701 00000 n 
-0000905764 00000 n 
-0000905827 00000 n 
-0000905890 00000 n 
-0000905954 00000 n 
-0000906017 00000 n 
-0000906081 00000 n 
-0000906144 00000 n 
-0000906207 00000 n 
-0000909564 00000 n 
-0000908365 00000 n 
-0000906401 00000 n 
-0000908489 00000 n 
-0000908552 00000 n 
-0000908616 00000 n 
-0000908679 00000 n 
-0000908742 00000 n 
-0000908805 00000 n 
-0000908868 00000 n 
-0000908931 00000 n 
-0000908994 00000 n 
-0000909057 00000 n 
-0000909120 00000 n 
-0000909183 00000 n 
-0000909246 00000 n 
-0000909310 00000 n 
-0000909373 00000 n 
-0000909437 00000 n 
-0000909501 00000 n 
-0000913366 00000 n 
-0000911591 00000 n 
-0000909680 00000 n 
-0000911715 00000 n 
-0000911778 00000 n 
-0000911842 00000 n 
-0000911906 00000 n 
+0000901133 00000 n 
+0000901197 00000 n 
+0000901260 00000 n 
+0000901323 00000 n 
+0000901387 00000 n 
+0000959254 00000 n 
+0000903833 00000 n 
+0000902377 00000 n 
+0000901552 00000 n 
+0000902501 00000 n 
+0000902564 00000 n 
+0000902628 00000 n 
+0000902691 00000 n 
+0000902754 00000 n 
+0000902818 00000 n 
+0000902881 00000 n 
+0000902945 00000 n 
+0000903008 00000 n 
+0000903071 00000 n 
+0000903135 00000 n 
+0000903199 00000 n 
+0000903263 00000 n 
+0000903326 00000 n 
+0000903389 00000 n 
+0000903453 00000 n 
+0000903516 00000 n 
+0000903580 00000 n 
+0000903643 00000 n 
+0000903705 00000 n 
+0000903769 00000 n 
+0000908011 00000 n 
+0000906694 00000 n 
+0000903921 00000 n 
+0000906818 00000 n 
+0000907006 00000 n 
+0000907069 00000 n 
+0000907131 00000 n 
+0000907319 00000 n 
+0000907382 00000 n 
+0000907445 00000 n 
+0000907633 00000 n 
+0000907696 00000 n 
+0000907759 00000 n 
+0000907822 00000 n 
+0000907885 00000 n 
+0000907948 00000 n 
+0000912158 00000 n 
+0000911277 00000 n 
+0000908113 00000 n 
+0000911401 00000 n 
+0000911464 00000 n 
+0000911527 00000 n 
+0000911717 00000 n 
+0000911779 00000 n 
 0000911969 00000 n 
 0000912032 00000 n 
-0000912096 00000 n 
-0000912160 00000 n 
-0000912221 00000 n 
-0000912284 00000 n 
-0000912347 00000 n 
-0000912410 00000 n 
-0000912474 00000 n 
-0000912538 00000 n 
-0000912602 00000 n 
-0000912665 00000 n 
-0000912729 00000 n 
-0000912793 00000 n 
-0000912857 00000 n 
-0000912921 00000 n 
-0000912985 00000 n 
-0000913048 00000 n 
-0000913112 00000 n 
-0000913175 00000 n 
-0000913239 00000 n 
-0000913302 00000 n 
-0000918385 00000 n 
-0000916029 00000 n 
-0000913468 00000 n 
-0000916496 00000 n 
-0000916685 00000 n 
-0000916874 00000 n 
-0000916937 00000 n 
-0000917000 00000 n 
-0000917064 00000 n 
-0000916183 00000 n 
-0000916339 00000 n 
-0000917127 00000 n 
-0000917190 00000 n 
-0000917253 00000 n 
-0000917317 00000 n 
-0000917380 00000 n 
-0000917570 00000 n 
-0000917633 00000 n 
-0000917696 00000 n 
-0000917759 00000 n 
-0000917822 00000 n 
-0000918010 00000 n 
-0000918073 00000 n 
-0000918136 00000 n 
-0000918198 00000 n 
-0000918261 00000 n 
-0000918323 00000 n 
-0000922263 00000 n 
-0000920371 00000 n 
-0000918529 00000 n 
-0000920495 00000 n 
-0000920558 00000 n 
-0000920746 00000 n 
-0000920809 00000 n 
-0000920872 00000 n 
-0000920935 00000 n 
-0000920999 00000 n 
-0000921062 00000 n 
-0000921124 00000 n 
-0000921187 00000 n 
-0000921376 00000 n 
-0000921439 00000 n 
-0000921503 00000 n 
-0000921566 00000 n 
-0000921629 00000 n 
-0000921693 00000 n 
-0000921757 00000 n 
-0000921821 00000 n 
-0000921884 00000 n 
-0000921947 00000 n 
-0000922137 00000 n 
-0000922200 00000 n 
-0001003245 00000 n 
-0000926223 00000 n 
-0000924648 00000 n 
-0000922407 00000 n 
-0000924772 00000 n 
-0000924835 00000 n 
-0000924898 00000 n 
-0000924962 00000 n 
-0000925023 00000 n 
-0000925149 00000 n 
-0000925212 00000 n 
-0000925275 00000 n 
-0000925339 00000 n 
-0000925403 00000 n 
-0000925529 00000 n 
-0000925592 00000 n 
-0000925654 00000 n 
-0000925718 00000 n 
-0000925782 00000 n 
-0000925845 00000 n 
-0000925908 00000 n 
-0000926097 00000 n 
-0000926160 00000 n 
-0000929607 00000 n 
-0000928232 00000 n 
-0000926339 00000 n 
-0000928531 00000 n 
-0000928594 00000 n 
-0000928657 00000 n 
-0000928721 00000 n 
-0000928911 00000 n 
-0000928974 00000 n 
-0000929037 00000 n 
-0000929101 00000 n 
-0000928377 00000 n 
-0000929291 00000 n 
-0000929354 00000 n 
-0000929417 00000 n 
-0000929480 00000 n 
-0000929543 00000 n 
-0000935919 00000 n 
-0000932830 00000 n 
-0000929737 00000 n 
-0000932954 00000 n 
-0000933143 00000 n 
-0000933206 00000 n 
-0000933393 00000 n 
-0000933456 00000 n 
-0000933520 00000 n 
-0000933583 00000 n 
-0000933647 00000 n 
-0000933711 00000 n 
-0000933774 00000 n 
-0000933838 00000 n 
-0000933901 00000 n 
-0000933964 00000 n 
-0000934027 00000 n 
-0000934090 00000 n 
-0000934152 00000 n 
-0000934214 00000 n 
-0000934278 00000 n 
-0000934342 00000 n 
-0000934406 00000 n 
-0000934470 00000 n 
-0000934534 00000 n 
-0000934598 00000 n 
-0000934661 00000 n 
-0000934724 00000 n 
-0000934787 00000 n 
-0000934850 00000 n 
-0000934914 00000 n 
-0000934977 00000 n 
-0000935040 00000 n 
-0000935103 00000 n 
-0000935167 00000 n 
-0000935352 00000 n 
-0000935415 00000 n 
-0000935478 00000 n 
-0000935542 00000 n 
-0000935604 00000 n 
-0000935668 00000 n 
-0000935732 00000 n 
-0000935795 00000 n 
-0000935857 00000 n 
-0000939658 00000 n 
-0000937643 00000 n 
-0000936063 00000 n 
-0000937767 00000 n 
-0000938081 00000 n 
-0000938143 00000 n 
-0000938206 00000 n 
-0000938269 00000 n 
-0000938332 00000 n 
-0000938395 00000 n 
-0000938458 00000 n 
-0000938521 00000 n 
-0000938584 00000 n 
-0000938647 00000 n 
-0000938710 00000 n 
-0000938773 00000 n 
-0000938837 00000 n 
-0000938901 00000 n 
-0000938963 00000 n 
-0000939026 00000 n 
-0000939216 00000 n 
-0000939279 00000 n 
-0000939342 00000 n 
-0000939405 00000 n 
-0000939468 00000 n 
-0000939532 00000 n 
-0000939596 00000 n 
-0000942396 00000 n 
-0000940496 00000 n 
-0000939788 00000 n 
-0000940620 00000 n 
-0000940683 00000 n 
-0000940745 00000 n 
-0000940808 00000 n 
-0000940872 00000 n 
-0000940934 00000 n 
-0000940997 00000 n 
-0000941061 00000 n 
-0000941125 00000 n 
-0000941189 00000 n 
-0000941252 00000 n 
-0000941315 00000 n 
-0000941379 00000 n 
-0000941443 00000 n 
-0000941507 00000 n 
-0000941569 00000 n 
-0000941632 00000 n 
-0000941696 00000 n 
-0000941760 00000 n 
-0000941824 00000 n 
-0000941887 00000 n 
-0000941950 00000 n 
-0000942014 00000 n 
-0000942078 00000 n 
-0000942142 00000 n 
-0000942205 00000 n 
-0000942268 00000 n 
-0000942332 00000 n 
-0000945310 00000 n 
-0000943348 00000 n 
-0000942484 00000 n 
-0000943472 00000 n 
-0000943535 00000 n 
-0000943598 00000 n 
-0000943662 00000 n 
-0000943726 00000 n 
-0000943788 00000 n 
-0000943851 00000 n 
-0000943915 00000 n 
-0000943979 00000 n 
-0000944043 00000 n 
-0000944106 00000 n 
-0000944169 00000 n 
-0000944233 00000 n 
-0000944297 00000 n 
-0000944359 00000 n 
-0000944422 00000 n 
-0000944486 00000 n 
-0000944550 00000 n 
-0000944739 00000 n 
-0000944802 00000 n 
-0000944865 00000 n 
-0000944929 00000 n 
-0000944993 00000 n 
-0000945057 00000 n 
-0000945120 00000 n 
-0000945183 00000 n 
-0000945247 00000 n 
-0001003370 00000 n 
-0000947696 00000 n 
-0000946240 00000 n 
-0000945412 00000 n 
-0000946364 00000 n 
-0000946427 00000 n 
-0000946491 00000 n 
-0000946554 00000 n 
-0000946617 00000 n 
-0000946681 00000 n 
-0000946744 00000 n 
-0000946808 00000 n 
-0000946871 00000 n 
-0000946934 00000 n 
-0000946998 00000 n 
-0000947062 00000 n 
-0000947126 00000 n 
-0000947189 00000 n 
-0000947252 00000 n 
-0000947316 00000 n 
-0000947379 00000 n 
-0000947443 00000 n 
-0000947506 00000 n 
-0000947568 00000 n 
-0000947632 00000 n 
-0000951871 00000 n 
-0000950553 00000 n 
-0000947784 00000 n 
-0000950677 00000 n 
-0000950866 00000 n 
-0000950929 00000 n 
-0000950991 00000 n 
-0000951179 00000 n 
-0000951242 00000 n 
-0000951305 00000 n 
-0000951493 00000 n 
-0000951556 00000 n 
-0000951619 00000 n 
-0000951682 00000 n 
-0000951745 00000 n 
-0000951808 00000 n 
-0000956015 00000 n 
-0000955136 00000 n 
-0000951973 00000 n 
-0000955260 00000 n 
-0000955323 00000 n 
-0000955386 00000 n 
-0000955575 00000 n 
-0000955637 00000 n 
-0000955826 00000 n 
-0000955889 00000 n 
-0000955952 00000 n 
-0000961772 00000 n 
-0000959384 00000 n 
-0000956117 00000 n 
-0000959508 00000 n 
-0000959571 00000 n 
-0000959633 00000 n 
-0000959822 00000 n 
-0000959885 00000 n 
-0000959948 00000 n 
-0000960011 00000 n 
-0000960074 00000 n 
-0000960137 00000 n 
-0000960200 00000 n 
-0000960263 00000 n 
-0000960326 00000 n 
-0000960388 00000 n 
-0000960451 00000 n 
-0000960514 00000 n 
-0000960577 00000 n 
-0000960640 00000 n 
-0000960703 00000 n 
-0000960766 00000 n 
-0000960829 00000 n 
-0000960892 00000 n 
-0000960954 00000 n 
-0000961017 00000 n 
-0000961080 00000 n 
-0000961143 00000 n 
-0000961205 00000 n 
-0000961268 00000 n 
-0000961331 00000 n 
-0000961394 00000 n 
-0000961457 00000 n 
-0000961520 00000 n 
-0000961583 00000 n 
-0000961646 00000 n 
-0000961709 00000 n 
-0000965689 00000 n 
-0000964619 00000 n 
-0000961874 00000 n 
-0000964743 00000 n 
-0000964806 00000 n 
-0000964869 00000 n 
-0000965058 00000 n 
-0000965121 00000 n 
-0000965184 00000 n 
-0000965373 00000 n 
-0000965436 00000 n 
-0000965626 00000 n 
-0000969636 00000 n 
-0000968375 00000 n 
-0000965791 00000 n 
-0000968499 00000 n 
-0000968562 00000 n 
-0000968751 00000 n 
-0000968941 00000 n 
-0000969131 00000 n 
-0000969194 00000 n 
-0000969258 00000 n 
-0000969447 00000 n 
-0000969510 00000 n 
-0000969573 00000 n 
-0001003495 00000 n 
-0000970921 00000 n 
-0000970608 00000 n 
-0000969738 00000 n 
-0000970732 00000 n 
-0000970795 00000 n 
-0000970858 00000 n 
-0000976682 00000 n 
-0000972965 00000 n 
-0000971009 00000 n 
-0000973265 00000 n 
-0000973455 00000 n 
-0000973707 00000 n 
-0000973770 00000 n 
-0000973833 00000 n 
-0000973897 00000 n 
-0000973961 00000 n 
-0000974087 00000 n 
-0000974214 00000 n 
-0000974277 00000 n 
-0000974340 00000 n 
-0000974404 00000 n 
-0000974468 00000 n 
-0000974530 00000 n 
-0000974656 00000 n 
-0000974719 00000 n 
-0000974782 00000 n 
-0000974845 00000 n 
-0000974908 00000 n 
-0000974972 00000 n 
-0000975035 00000 n 
-0000975098 00000 n 
-0000975161 00000 n 
-0000975224 00000 n 
-0000975287 00000 n 
-0000975350 00000 n 
-0000975413 00000 n 
-0000975477 00000 n 
-0000975541 00000 n 
-0000975604 00000 n 
-0000975667 00000 n 
-0000975730 00000 n 
-0000975793 00000 n 
-0000975857 00000 n 
-0000975921 00000 n 
-0000975985 00000 n 
-0000976049 00000 n 
-0000976113 00000 n 
-0000976177 00000 n 
-0000976241 00000 n 
-0000976304 00000 n 
-0000976367 00000 n 
-0000976430 00000 n 
-0000976492 00000 n 
-0000976556 00000 n 
-0000973110 00000 n 
-0000976619 00000 n 
-0000981137 00000 n 
-0000978365 00000 n 
-0000976812 00000 n 
-0000978489 00000 n 
-0000978614 00000 n 
-0000978738 00000 n 
-0000978801 00000 n 
-0000978863 00000 n 
-0000978927 00000 n 
-0000978991 00000 n 
-0000979055 00000 n 
-0000979182 00000 n 
-0000979244 00000 n 
-0000979434 00000 n 
-0000979497 00000 n 
-0000979560 00000 n 
-0000979813 00000 n 
-0000979876 00000 n 
-0000979938 00000 n 
-0000980000 00000 n 
-0000980064 00000 n 
-0000980191 00000 n 
-0000980254 00000 n 
-0000980443 00000 n 
-0000980506 00000 n 
-0000980569 00000 n 
-0000980632 00000 n 
-0000980696 00000 n 
-0000980822 00000 n 
-0000980947 00000 n 
-0000981010 00000 n 
-0000981073 00000 n 
-0000984882 00000 n 
-0000982738 00000 n 
-0000981267 00000 n 
-0000982862 00000 n 
-0000982925 00000 n 
-0000982987 00000 n 
-0000983051 00000 n 
-0000983114 00000 n 
-0000983178 00000 n 
-0000983431 00000 n 
-0000983494 00000 n 
-0000983557 00000 n 
-0000983621 00000 n 
-0000983684 00000 n 
-0000983810 00000 n 
-0000983873 00000 n 
-0000983936 00000 n 
-0000984062 00000 n 
-0000984189 00000 n 
-0000984251 00000 n 
-0000984314 00000 n 
-0000984377 00000 n 
-0000984441 00000 n 
-0000984504 00000 n 
-0000984629 00000 n 
-0000984756 00000 n 
-0000984819 00000 n 
-0000989690 00000 n 
-0000986649 00000 n 
-0000985012 00000 n 
-0000987115 00000 n 
-0000987366 00000 n 
-0000987429 00000 n 
-0000987491 00000 n 
-0000987555 00000 n 
-0000987614 00000 n 
-0000987674 00000 n 
-0000987734 00000 n 
-0000987798 00000 n 
-0000987925 00000 n 
-0000987988 00000 n 
-0000986803 00000 n 
-0000988051 00000 n 
-0000988115 00000 n 
-0000988178 00000 n 
-0000988241 00000 n 
-0000988304 00000 n 
-0000988367 00000 n 
-0000988431 00000 n 
-0000988493 00000 n 
-0000988555 00000 n 
-0000988618 00000 n 
-0000988682 00000 n 
-0000988746 00000 n 
-0000988809 00000 n 
-0000988872 00000 n 
-0000988935 00000 n 
-0000986958 00000 n 
-0000988999 00000 n 
-0000989251 00000 n 
-0000989312 00000 n 
-0000989375 00000 n 
-0000989564 00000 n 
-0000989627 00000 n 
-0000992506 00000 n 
-0000993518 00000 n 
-0000991183 00000 n 
-0000989806 00000 n 
-0000991307 00000 n 
-0000991370 00000 n 
-0000991496 00000 n 
-0000991559 00000 n 
-0000991622 00000 n 
-0000991686 00000 n 
-0000991810 00000 n 
-0000991936 00000 n 
-0000991998 00000 n 
-0000992061 00000 n 
-0000992124 00000 n 
-0000992188 00000 n 
-0000992252 00000 n 
-0000992316 00000 n 
-0000992380 00000 n 
-0000992633 00000 n 
-0000992696 00000 n 
-0000992759 00000 n 
-0000992886 00000 n 
-0000992949 00000 n 
-0000993012 00000 n 
-0000993076 00000 n 
-0000993328 00000 n 
-0000993391 00000 n 
-0000993454 00000 n 
-0001003620 00000 n 
-0000998151 00000 n 
-0000995684 00000 n 
-0000993620 00000 n 
-0000995808 00000 n 
-0000995871 00000 n 
-0000995934 00000 n 
-0000996061 00000 n 
-0000996124 00000 n 
-0000996187 00000 n 
-0000996250 00000 n 
-0000996313 00000 n 
-0000996377 00000 n 
-0000996441 00000 n 
-0000996505 00000 n 
-0000996568 00000 n 
-0000996632 00000 n 
-0000996696 00000 n 
-0000996760 00000 n 
-0000996824 00000 n 
-0000996949 00000 n 
-0000997076 00000 n 
-0000997139 00000 n 
-0000997202 00000 n 
-0000997266 00000 n 
-0000997393 00000 n 
-0000997456 00000 n 
-0000997519 00000 n 
-0000997645 00000 n 
-0000997772 00000 n 
-0000997835 00000 n 
-0000997898 00000 n 
-0000997961 00000 n 
-0000998024 00000 n 
-0000998087 00000 n 
-0000998329 00000 n 
-0001003709 00000 n 
-0001003835 00000 n 
-0001003961 00000 n 
-0001004087 00000 n 
-0001004195 00000 n 
-0001004287 00000 n 
-0001033081 00000 n 
-0001095382 00000 n 
-0001095423 00000 n 
-0001095463 00000 n 
-0001095695 00000 n 
+0000912095 00000 n 
+0000917913 00000 n 
+0000915524 00000 n 
+0000912260 00000 n 
+0000915648 00000 n 
+0000915711 00000 n 
+0000915773 00000 n 
+0000915963 00000 n 
+0000916026 00000 n 
+0000916089 00000 n 
+0000916152 00000 n 
+0000916215 00000 n 
+0000916278 00000 n 
+0000916341 00000 n 
+0000916404 00000 n 
+0000916467 00000 n 
+0000916529 00000 n 
+0000916592 00000 n 
+0000916655 00000 n 
+0000916718 00000 n 
+0000916781 00000 n 
+0000916844 00000 n 
+0000916907 00000 n 
+0000916970 00000 n 
+0000917033 00000 n 
+0000917095 00000 n 
+0000917158 00000 n 
+0000917221 00000 n 
+0000917284 00000 n 
+0000917346 00000 n 
+0000917409 00000 n 
+0000917472 00000 n 
+0000917535 00000 n 
+0000917598 00000 n 
+0000917661 00000 n 
+0000917724 00000 n 
+0000917787 00000 n 
+0000917850 00000 n 
+0000921828 00000 n 
+0000920757 00000 n 
+0000918015 00000 n 
+0000920881 00000 n 
+0000920944 00000 n 
+0000921007 00000 n 
+0000921197 00000 n 
+0000921260 00000 n 
+0000921323 00000 n 
+0000921512 00000 n 
+0000921575 00000 n 
+0000921765 00000 n 
+0000925769 00000 n 
+0000924508 00000 n 
+0000921930 00000 n 
+0000924632 00000 n 
+0000924695 00000 n 
+0000924884 00000 n 
+0000925074 00000 n 
+0000925264 00000 n 
+0000925327 00000 n 
+0000925391 00000 n 
+0000925580 00000 n 
+0000925643 00000 n 
+0000925706 00000 n 
+0000959379 00000 n 
+0000927053 00000 n 
+0000926740 00000 n 
+0000925871 00000 n 
+0000926864 00000 n 
+0000926927 00000 n 
+0000926990 00000 n 
+0000932814 00000 n 
+0000929097 00000 n 
+0000927141 00000 n 
+0000929397 00000 n 
+0000929587 00000 n 
+0000929839 00000 n 
+0000929902 00000 n 
+0000929965 00000 n 
+0000930029 00000 n 
+0000930093 00000 n 
+0000930219 00000 n 
+0000930346 00000 n 
+0000930409 00000 n 
+0000930472 00000 n 
+0000930536 00000 n 
+0000930600 00000 n 
+0000930662 00000 n 
+0000930788 00000 n 
+0000930851 00000 n 
+0000930914 00000 n 
+0000930977 00000 n 
+0000931040 00000 n 
+0000931104 00000 n 
+0000931167 00000 n 
+0000931230 00000 n 
+0000931293 00000 n 
+0000931356 00000 n 
+0000931419 00000 n 
+0000931482 00000 n 
+0000931545 00000 n 
+0000931609 00000 n 
+0000931673 00000 n 
+0000931736 00000 n 
+0000931799 00000 n 
+0000931862 00000 n 
+0000931925 00000 n 
+0000931989 00000 n 
+0000932053 00000 n 
+0000932117 00000 n 
+0000932181 00000 n 
+0000932245 00000 n 
+0000932309 00000 n 
+0000932373 00000 n 
+0000932436 00000 n 
+0000932499 00000 n 
+0000932562 00000 n 
+0000932624 00000 n 
+0000932688 00000 n 
+0000929242 00000 n 
+0000932751 00000 n 
+0000937270 00000 n 
+0000934498 00000 n 
+0000932944 00000 n 
+0000934622 00000 n 
+0000934747 00000 n 
+0000934871 00000 n 
+0000934934 00000 n 
+0000934996 00000 n 
+0000935060 00000 n 
+0000935124 00000 n 
+0000935188 00000 n 
+0000935315 00000 n 
+0000935377 00000 n 
+0000935567 00000 n 
+0000935630 00000 n 
+0000935693 00000 n 
+0000935946 00000 n 
+0000936009 00000 n 
+0000936071 00000 n 
+0000936133 00000 n 
+0000936197 00000 n 
+0000936324 00000 n 
+0000936387 00000 n 
+0000936576 00000 n 
+0000936639 00000 n 
+0000936702 00000 n 
+0000936765 00000 n 
+0000936829 00000 n 
+0000936955 00000 n 
+0000937080 00000 n 
+0000937143 00000 n 
+0000937206 00000 n 
+0000941016 00000 n 
+0000938872 00000 n 
+0000937400 00000 n 
+0000938996 00000 n 
+0000939059 00000 n 
+0000939121 00000 n 
+0000939185 00000 n 
+0000939248 00000 n 
+0000939312 00000 n 
+0000939565 00000 n 
+0000939628 00000 n 
+0000939691 00000 n 
+0000939755 00000 n 
+0000939818 00000 n 
+0000939944 00000 n 
+0000940007 00000 n 
+0000940070 00000 n 
+0000940196 00000 n 
+0000940323 00000 n 
+0000940385 00000 n 
+0000940448 00000 n 
+0000940511 00000 n 
+0000940575 00000 n 
+0000940638 00000 n 
+0000940763 00000 n 
+0000940890 00000 n 
+0000940953 00000 n 
+0000945824 00000 n 
+0000942783 00000 n 
+0000941146 00000 n 
+0000943249 00000 n 
+0000943374 00000 n 
+0000943500 00000 n 
+0000943563 00000 n 
+0000943625 00000 n 
+0000943689 00000 n 
+0000943748 00000 n 
+0000943808 00000 n 
+0000943868 00000 n 
+0000943932 00000 n 
+0000944059 00000 n 
+0000944122 00000 n 
+0000942937 00000 n 
+0000944185 00000 n 
+0000944249 00000 n 
+0000944312 00000 n 
+0000944375 00000 n 
+0000944438 00000 n 
+0000944501 00000 n 
+0000944565 00000 n 
+0000944627 00000 n 
+0000944689 00000 n 
+0000944752 00000 n 
+0000944816 00000 n 
+0000944880 00000 n 
+0000944943 00000 n 
+0000945006 00000 n 
+0000945069 00000 n 
+0000943092 00000 n 
+0000945133 00000 n 
+0000945385 00000 n 
+0000945446 00000 n 
+0000945509 00000 n 
+0000945698 00000 n 
+0000945761 00000 n 
+0000948641 00000 n 
+0000949653 00000 n 
+0000947318 00000 n 
+0000945940 00000 n 
+0000947442 00000 n 
+0000947505 00000 n 
+0000947631 00000 n 
+0000947694 00000 n 
+0000947757 00000 n 
+0000947821 00000 n 
+0000947945 00000 n 
+0000948071 00000 n 
+0000948133 00000 n 
+0000948196 00000 n 
+0000948259 00000 n 
+0000948323 00000 n 
+0000948387 00000 n 
+0000948451 00000 n 
+0000948515 00000 n 
+0000948768 00000 n 
+0000948831 00000 n 
+0000948894 00000 n 
+0000949021 00000 n 
+0000949084 00000 n 
+0000949147 00000 n 
+0000949211 00000 n 
+0000949463 00000 n 
+0000949526 00000 n 
+0000949589 00000 n 
+0000959504 00000 n 
+0000954285 00000 n 
+0000951818 00000 n 
+0000949755 00000 n 
+0000951942 00000 n 
+0000952005 00000 n 
+0000952068 00000 n 
+0000952195 00000 n 
+0000952258 00000 n 
+0000952321 00000 n 
+0000952384 00000 n 
+0000952447 00000 n 
+0000952511 00000 n 
+0000952575 00000 n 
+0000952639 00000 n 
+0000952702 00000 n 
+0000952766 00000 n 
+0000952830 00000 n 
+0000952894 00000 n 
+0000952958 00000 n 
+0000953083 00000 n 
+0000953210 00000 n 
+0000953273 00000 n 
+0000953336 00000 n 
+0000953400 00000 n 
+0000953527 00000 n 
+0000953590 00000 n 
+0000953653 00000 n 
+0000953779 00000 n 
+0000953906 00000 n 
+0000953969 00000 n 
+0000954032 00000 n 
+0000954095 00000 n 
+0000954158 00000 n 
+0000954221 00000 n 
+0000954463 00000 n 
+0000959593 00000 n 
+0000959719 00000 n 
+0000959845 00000 n 
+0000959971 00000 n 
+0000960060 00000 n 
+0000960152 00000 n 
+0000989348 00000 n 
+0001046245 00000 n 
+0001046286 00000 n 
+0001046326 00000 n 
+0001046558 00000 n 
 trailer
 <<
-/Size 5509
-/Root 5507 0 R
-/Info 5508 0 R
+/Size 5201
+/Root 5199 0 R
+/Info 5200 0 R
 >>
 startxref
-1095851
+1046714
 %%EOF
diff --git a/docs/txt/Bugzilla-Guide.txt b/docs/txt/Bugzilla-Guide.txt
index c4a0934869bc4891854edb8f0f13fa74cac557ed..ce6cc50fdebbcbf944089e1b1030436f72f1e999 100644
--- a/docs/txt/Bugzilla-Guide.txt
+++ b/docs/txt/Bugzilla-Guide.txt
@@ -1,9 +1,9 @@
 
-The Bugzilla Guide - 3.1.2 Development Release
+The Bugzilla Guide - 3.1.3 Development Release
 
 The Bugzilla Team
 
-   2007-09-18
+   2008-02-01
 
    This is the documentation for Bugzilla, a bug-tracking system from
    mozilla.org. Bugzilla is an enterprise-class piece of software that tracks
@@ -41,12 +41,14 @@ The Bugzilla Team
         3.6. Versions
         3.7. Milestones
         3.8. Flags
-        3.9. Custom Fields
-        3.10. Legal Values
-        3.11. Voting
-        3.12. Quips
-        3.13. Groups and Group Security
-        3.14. Upgrading to New Releases
+        3.9. Keywords
+        3.10. Custom Fields
+        3.11. Legal Values
+        3.12. Voting
+        3.13. Quips
+        3.14. Groups and Group Security
+        3.15. Checking and Maintaining Database Integrity
+        3.16. Upgrading to New Releases
 
    4. Bugzilla Security
 
@@ -79,34 +81,33 @@ The Bugzilla Team
         6.4. Customizing Who Can Change What
         6.5. Integrating Bugzilla with Third-Party Tools
 
-   A. The Bugzilla FAQ
-   B. Troubleshooting
+   A. Troubleshooting
 
-        B.1. General Advice
-        B.2. The Apache web server is not serving Bugzilla pages
-        B.3. I installed a Perl module, but checksetup.pl claims it's not
+        A.1. General Advice
+        A.2. The Apache web server is not serving Bugzilla pages
+        A.3. I installed a Perl module, but checksetup.pl claims it's not
                 installed!
 
-        B.4. DBD::Sponge::db prepare failed
-        B.5. cannot chdir(/var/spool/mqueue)
-        B.6. Everybody is constantly being forced to relogin
-        B.7. Some users are constantly being forced to relogin
-        B.8. index.cgi doesn't show up unless specified in the URL
-        B.9. checksetup.pl reports "Client does not support authentication
+        A.4. DBD::Sponge::db prepare failed
+        A.5. cannot chdir(/var/spool/mqueue)
+        A.6. Everybody is constantly being forced to relogin
+        A.7. Some users are constantly being forced to relogin
+        A.8. index.cgi doesn't show up unless specified in the URL
+        A.9. checksetup.pl reports "Client does not support authentication
                 protocol requested by server..."
 
-   C. Contrib
+   B. Contrib
 
-        C.1. Command-line Search Interface
-        C.2. Command-line 'Send Unsent Bug-mail' tool
+        B.1. Command-line Search Interface
+        B.2. Command-line 'Send Unsent Bug-mail' tool
 
-   D. Manual Installation of Perl Modules
+   C. Manual Installation of Perl Modules
 
-        D.1. Instructions
-        D.2. Download Locations
-        D.3. Optional Modules
+        C.1. Instructions
+        C.2. Download Locations
+        C.3. Optional Modules
 
-   E. GNU Free Documentation License
+   D. GNU Free Documentation License
 
         0. Preamble
         1. Applicability and Definition
@@ -130,22 +131,22 @@ The Bugzilla Team
    4-1. Assigning the MySQL "root" User a Password
    4-2. Disabling the MySQL "anonymous" User
    4-3. Disabling Networking in MySQL
-   B-1. Examples of urlbase/cookiepath pairs for sharing login cookies
-   B-2. Examples of urlbase/cookiepath pairs to restrict the login cookie
+   A-1. Examples of urlbase/cookiepath pairs for sharing login cookies
+   A-2. Examples of urlbase/cookiepath pairs to restrict the login cookie
      _________________________________________________________________
 
 Chapter 1. About This Guide
 
 1.1. Copyright Information
 
-   This document is copyright (c) 2000-2007 by the various Bugzilla
+   This document is copyright (c) 2000-2008 by the various Bugzilla
    contributors who wrote it.
 
      Permission is granted to copy, distribute and/or modify this document
      under the terms of the GNU Free Documentation License, Version 1.1 or any
      later version published by the Free Software Foundation; with no Invariant
      Sections, no Front-Cover Texts, and with no Back-Cover Texts. A copy of
-     the license is included in Appendix E.
+     the license is included in Appendix D.
 
    If you have any questions regarding this document, its copyright, or
    publishing this document in non-electronic form, please contact the Bugzilla
@@ -175,7 +176,7 @@ Chapter 1. About This Guide
 
 1.3. New Versions
 
-   This is the 3.1.2 version of The Bugzilla Guide. It is so named to match the
+   This is the 3.1.3 version of The Bugzilla Guide. It is so named to match the
    current version of Bugzilla. This version of the guide, like its associated
    Bugzilla version, is a development version.
 
@@ -248,14 +249,14 @@ Chapter 1. About This Guide
    This document uses the following conventions:
 
    Descriptions Appearance
-   Warning Caution Don't run with scissors!
-   Hint
+   Caution Caution Don't run with scissors!
+   Hint or Tip
 
-   Tip Would you like a breath mint?
+   Tip For best results...
    Note
 
    Note Dear John...
-   Information requiring special attention
+   Warning
 
    Warning Read this or the cat gets it.
    File or directory name filename
@@ -418,7 +419,7 @@ Chapter 2. Installing Bugzilla
    The preferred way of installing Perl modules is via CPAN on Unix, or PPM on
    Windows (see Section 2.5.1.2). These instructions assume you are using CPAN;
    if for some reason you need to install the Perl modules manually, see
-   Appendix D.
+   Appendix C.
    bash# perl -MCPAN -e 'install "<modulename>"'
 
    If you using Bundle::Bugzilla, invoke the magic CPAN command on it.
@@ -448,10 +449,10 @@ Chapter 2. Installing Bugzilla
     1. CGI 2.93 or CGI 3.11 if using mod_perl
     2. Date::Format (2.21)
     3. DBI (1.41)
-    4. DBD::mysql (2.9003) if using MySQL
+    4. DBD::mysql (4.00) if using MySQL
     5. DBD::Pg (1.45) if using PostgreSQL
     6. File::Spec (0.84)
-    7. Template (2.12)
+    7. Template (2.15)
     8. Email::Send (2.00)
     9. Email::MIME::Modifier (any)
 
@@ -476,7 +477,6 @@ Chapter 2. Installing Bugzilla
    17. Email::Reply (any) for Inbound Email
    18. mod_perl2 (1.999022) for mod_perl
    19. CGI (2.93) for mod_perl
-   20. Apache::DBI (0.96) for mod_perl2
      _________________________________________________________________
 
 2.1.5.1. DBD::mysql
@@ -494,7 +494,7 @@ Chapter 2. Installing Bugzilla
    which MySQL creates upon installation.
      _________________________________________________________________
 
-2.1.5.2. Template Toolkit (2.12)
+2.1.5.2. Template Toolkit (2.15)
 
    When you install Template Toolkit, you'll get asked various questions about
    features to enable. The defaults are fine, except that it is recommended you
@@ -601,8 +601,6 @@ Chapter 2. Installing Bugzilla
 
    Bugzilla also requires a more up-to-date version of the CGI perl module to
    be installed, version 3.11 as opposed to 2.93
-
-   Finally, Bugzilla also requires Apache::DBI (0.96) to be installed as well.
      _________________________________________________________________
 
 2.2. Configuration
@@ -635,7 +633,11 @@ Chapter 2. Installing Bugzilla
    "www-data" group. If you are going to run Bugzilla on a machine where you do
    not have root access (such as on a shared web hosting account), you will
    need to leave webservergroup empty, ignoring the warnings that checksetup.pl
-   will subsequently display every time it in run.
+   will subsequently display every time it is run.
+
+   Caution If you are using suexec, you should use your own primary group for
+   webservergroup rather than leaving it empty, and see the additional
+      directions in the suexec section Section 2.6.6.1.
 
    The other options in the localconfig file are documented by their
    accompanying comments. If you have a slightly non-standard MySQL setup, you
@@ -885,7 +887,7 @@ Chapter 2. Installing Bugzilla
      Warning You should also ensure that you have disabled KeepAlive support in
       your Apache install when utilizing Bugzilla under mod_perl
 
-    PerlSwitches -I/var/www/html/bugzilla -w -T
+    PerlSwitches -I/var/www/html/bugzilla -I/var/www/html/bugzilla/lib -w -T
        PerlConfigRequire /var/www/html/bugzilla/mod_perl.pl
     3. checksetup.pl can set tighter permissions on Bugzilla's files and
        directories if it knows what group the web server runs as. Find the
@@ -971,7 +973,7 @@ c:\perl\bin\perl.exe -xc:\bugzilla -wT "%s" %s
 
    Your Bugzilla should now be working. Access http://<your-bugzilla-server>/ -
    you should see the Bugzilla front page. If not, consult the Troubleshooting
-   section, Appendix B.
+   section, Appendix A.
 
    Note The URL above may be incorrect if you installed Bugzilla into a
    subdirectory or used a symbolic link from your web site root to the Bugzilla
@@ -1283,7 +1285,9 @@ AddType application/rdf+xml .rdf
    Making Bugzilla work on Windows is more difficult than making it work on
    Unix. For that reason, we still recommend doing so on a Unix based system
    such as GNU/Linux. That said, if you do want to get Bugzilla running on
-   Windows, you will need to make the following adjustments.
+   Windows, you will need to make the following adjustments. A detailed
+   step-by-step installation guide for Windows is also available if you need
+   more help with your installation.
      _________________________________________________________________
 
 2.5.1.1. Win32 Perl
@@ -1292,6 +1296,10 @@ AddType application/rdf+xml .rdf
    find a compiled binary at
    http://aspn.activestate.com/ASPN/Downloads/ActivePerl/. The following
    instructions assume that you are using version 5.8.1 of ActiveState.
+
+   Note These instructions are for 32-bit versions of Windows. If you are using
+   a 64-bit version of Windows, you will need to install 32-bit Perl in order
+      to install the 32-bit modules as described below.
      _________________________________________________________________
 
 2.5.1.2. Perl Modules on Win32
@@ -1303,6 +1311,9 @@ C:\perl> ppm install <module name>
    The best source for the Windows PPM modules needed for Bugzilla is probably
    the Bugzilla Test Server (aka 'Landfill'), so you should add the Landfill
    package repository as follows:
+ppm repo add landfill http://www.landfill.bugzilla.org/ppm/
+
+   Note In versions prior to 5.8.8 build 819 of PPM the command is
 ppm repository add landfill http://www.landfill.bugzilla.org/ppm/
 
    Note The PPM repository stores modules in 'packages' that may have a
@@ -1333,7 +1344,9 @@ ppm repository add landfill http://www.landfill.bugzilla.org/ppm/
 
    Note If using Apache on windows, you can set the ScriptInterpreterSource
    directive in your Apache config to avoid having to modify the first line of
-      every script to contain your path to perl perl instead of /usr/bin/perl.
+   every script to contain your path to Perl instead of /usr/bin/perl. When
+   setting ScriptInterpreterSource, do not forget to specify the -T flag to
+      enable the taint mode. For example: C:\Perl\bin\perl.exe -T.
      _________________________________________________________________
 
 2.5.1.5. Sending Email
@@ -1403,21 +1416,19 @@ ppm repository add landfill http://www.landfill.bugzilla.org/ppm/
           correctly with Bugzilla.
      _________________________________________________________________
 
-2.5.3. Linux-Mandrake 8.0
+2.5.3. Linux Distributions
 
-   Linux-Mandrake 8.0 includes every required and optional library for
-   Bugzilla. The easiest way to install them is by using the urpmi utility. If
-   you follow these commands, you should have everything you need for Bugzilla,
-   and ./checksetup.pl should not complain about any missing libraries. You may
-   already have some of these installed.
-bash# urpmi perl-mysql
-bash# urpmi perl-chart
-bash# urpmi perl-gd
-bash# urpmi perl-MailTools              (1)
-bash# urpmi apache-modules
+   Many Linux distributions include Bugzilla and its dependencies in their
+   native package management systems. Installing Bugzilla with root access on
+   any Linux system should be as simple as finding the Bugzilla package in the
+   package management application and installing it using the normal command
+   syntax. Several distributions also perform the proper web server
+   configuration automatically on installation.
 
-   (1) 
-          for Bugzilla email integration
+   Please consult the documentation of your Linux distribution for instructions
+   on how to install packages, or for specific instructions on installing
+   Bugzilla with native package management tools. There is also a Bugzilla Wiki
+   Page for distro-specific installation notes.
      _________________________________________________________________
 
 2.6. UNIX (non-root) Installation Notes
@@ -1523,103 +1534,15 @@ pid-file=/home/foo/mymysql/the.pid
         bash$
         make && make test && make install
 
-   Once you have Perl installed into a directory (probably in ~/perl/bin),
-   you'll have to change the locations on the scripts, which is detailed later
-   on this page.
+   Once you have Perl installed into a directory (probably in ~/perl/bin), you
+   will need to install the Perl Modules, described below.
      _________________________________________________________________
 
 2.6.4. Perl Modules
 
-   Installing the Perl modules as a non-root user is probably the hardest part
-   of the process. There are two different methods: a completely independant
-   Perl with its own modules, or personal modules using the current (root
-   installed) version of Perl. The independant method takes up quite a bit of
-   disk space, but is less complex, while the mixed method only uses as much
-   space as the modules themselves, but takes more work to setup.
-     _________________________________________________________________
-
-2.6.4.1. The Independant Method
-
-   The independant method requires that you install your own personal version
-   of Perl, as detailed in the previous section. Once installed, you can start
-   the CPAN shell with the following command:
-
-            bash$
-            /home/foo/perl/bin/perl -MCPAN -e 'shell'
-
-   And then:
-
-            cpan>
-            install Bundle::Bugzilla
-
-   With this method, module installation will usually go a lot smoother, but if
-   you have any hang-ups, you can consult the next section.
-     _________________________________________________________________
-
-2.6.4.2. The Mixed Method
-
-   First, you'll need to configure CPAN to install modules in your home
-   directory. The CPAN FAQ says the following on this issue:
-
-5)  I am not root, how can I install a module in a personal directory?
-
-    You will most probably like something like this:
-
-      o conf makepl_arg "LIB=~/myperl/lib \
-                         INSTALLMAN1DIR=~/myperl/man/man1 \
-                         INSTALLMAN3DIR=~/myperl/man/man3"
-    install Sybase::Sybperl
-
-    You can make this setting permanent like all "o conf" settings with "o conf
- commit".
-
-    You will have to add ~/myperl/man to the MANPATH environment variable and a
-lso tell your Perl programs to
-    look into ~/myperl/lib, e.g. by including
-
-      use lib "$ENV{HOME}/myperl/lib";
-
-    or setting the PERL5LIB environment variable.
-
-    Another thing you should bear in mind is that the UNINST parameter should n
-ever be set if you are not root.
-
-   So, you will need to create a Perl directory in your home directory, as well
-   as the lib, man, man/man1, and man/man3 directories in that Perl directory.
-   Set the MANPATH variable and PERL5LIB variable, so that the installation of
-   the modules goes smoother. (Setting UNINST=0 in your "make install" options,
-   on the CPAN first-time configuration, is also a good idea.)
-
-   After that, go into the CPAN shell:
-
-            bash$
-            perl -MCPAN -e 'shell'
-
-   From there, you will need to type in the above "o conf" command and commit
-   the changes. Then you can run through the installation:
-
-            cpan>
-            install Bundle::Bugzilla
-
-   Most of the module installation process should go smoothly. However, you may
-   have some problems with Template. When you first start, you will want to try
-   to install Template with the XS Stash options on. If this doesn't work, it
-   may spit out C compiler error messages and croak back to the CPAN shell
-   prompt. So, redo the install, and turn it off. (In fact, say no to all of
-   the Template questions.) It may also start failing on a few of the tests. If
-   the total tests passed is a reasonable figure (90+%), force the install with
-   the following command:
-
-            cpan>
-            force install Template
-
-   You may also want to install the other optional modules:
-          cpan>
-          install GD
-          cpan>
-          install Chart::Base
-          cpan>
-          install MIME::Parser
+   Installing the Perl modules as a non-root user is accomplished by running
+   the install-module.pl script. For more details on this script, see
+   install-module.pl documentation
      _________________________________________________________________
 
 2.6.5. HTTP Server
@@ -1655,31 +1578,39 @@ ever be set if you are not root.
 
 2.6.6. Bugzilla
 
-   If you had to install Perl modules as a non-root user (Section 2.6.4) or to
-   non-standard directories, you will need to change the scripts, setting the
-   correct location of the Perl modules:
-
-perl -pi -e
-        's@use strict\;@use strict\; use lib \"/home/foo/perl/lib\"\;@'
-        *cgi *pl Bug.pm processmail syncshadowdb
-
-   Change /home/foo/perl/lib to your personal Perl library directory. You can
-   probably skip this step if you are using the independant method of Perl
-   module installation.
-
    When you run ./checksetup.pl to create the localconfig file, it will list
    the Perl modules it finds. If one is missing, go back and double-check the
-   module installation from the CPAN shell, then delete the localconfig file
-   and try again.
+   module installation from Section 2.6.4, then delete the localconfig file and
+   try again.
 
-   Warning The one option in localconfig you might have problems with is the
-   web server group. If you can't successfully browse to the index.cgi (like a
+   Warning One option in localconfig you might have problems with is the web
+   server group. If you can't successfully browse to the index.cgi (like a
    Forbidden error), you may have to relax your permissions, and blank out the
    web server group. Of course, this may pose as a security risk. Having a
    properly jailed shell and/or limited access to shell accounts may lessen the
       security risk, but use at your own risk.
      _________________________________________________________________
 
+2.6.6.1. suexec or shared hosting
+
+   If you are running on a system that uses suexec (most shared hosting
+   environments do this), you will need to set the webservergroup value in
+   localconfig to match your primary group, rather than the one the web server
+   runs under. You will need to run the following shell commands after running
+   ./checksetup.pl, every time you run it (or modify checksetup.pl to do them
+   for you via the system() command).
+        for i in docs graphs images js skins; do find $i -type d -exec chmod o+
+rx {} \; ; done
+        for i in jpg gif css js png html rdf xul; do find . -name \*.$i -exec c
+hmod o+r {} \; ; done
+        find . -name .htaccess -exec chmod o+r {} \;
+        chmod o+x . data data/webdot
+
+   Pay particular attention to the number of semicolons and dots. They are all
+   important. A future version of Bugzilla will hopefully be able to do this
+   for you out of the box.
+     _________________________________________________________________
+
 Chapter 3. Administering Bugzilla
 
 3.1. Bugzilla Configuration
@@ -1859,21 +1790,26 @@ Chapter 3. Administering Bugzilla
 3.2.2.1. Searching for existing users
 
    If you have "editusers" privileges or if you are allowed to grant privileges
-   for some groups, the "Users" link appears in the footer.
-
-   The first screen you get is a search form to search for existing user
-   accounts. You can run searches based either on the ID, real name or login
-   name (i.e. the email address in most cases) of users. You can search in
-   different ways the listbox to the right of the text entry box. You can match
-   by case-insensitive substring (the default), regular expression, a reverse
-   regular expression match, which finds every user name which does NOT match
-   the regular expression, or the exact string if you know exactly who you are
-   looking for.
-
-   You can also restrict your search to users being in some specific group. By
-   default, the restriction is turned off. Then you get a list of users
-   matching your criteria, and clicking their login name lets you edit their
-   properties.
+   for some groups, the "Users" link will appear in the Administration page.
+
+   The first screen is a search form to search for existing user accounts. You
+   can run searches based either on the user ID, real name or login name (i.e.
+   the email address, or just the first part of the email address if the
+   "emailsuffix" parameter is set). The search can be conducted in different
+   ways using the listbox to the right of the text entry box. You can match by
+   case-insensitive substring (the default), regular expression, a reverse
+   regular expression match (which finds every user name which does NOT match
+   the regular expression), or the exact string if you know exactly who you are
+   looking for. The search can be restricted to users who are in a specific
+   group. By default, the restriction is turned off.
+
+   The search returns a list of users matching your criteria. User properties
+   can be edited by clicking the login name. The Account History of a user can
+   be viewed by clicking the "View" link in the Account History column. The
+   Account History displays changes that have been made to the user account,
+   the time of the change and the user who made the change. For example, the
+   Account History page will display details of when a user was added or
+   removed from a group.
      _________________________________________________________________
 
 3.2.2.2. Creating new users
@@ -1966,8 +1902,13 @@ Chapter 3. Administering Bugzilla
      * tweakparams: This flag allows a user to change Bugzilla's Params (using
        editparams.cgi.)
      * <productname>: This allows an administrator to specify the products in
-       which a user can see bugs. The user must still have the "editbugs"
-       privilege to edit bugs in these products.
+       which a user can see bugs. If you turn on the "makeproductgroups"
+       parameter in the Group Security Panel in the Parameters page, then
+       Bugzilla creates one group per product (at the time you create the
+       product), and this group has exactly the same name as the product
+       itself. Note that for products that already exist when the parameter is
+       turned on, the corresponding group will not be created. The user must
+       still have the "editbugs" privilege to edit bugs in these products.
      _________________________________________________________________
 
 3.2.2.4. Deleting Users
@@ -2028,27 +1969,130 @@ Chapter 3. Administering Bugzilla
 
 3.4. Products
 
-   Products tend to represent real-world shipping products. E.g. if your
-   company makes computer games, you should have one product per game, perhaps
-   a "Common" product for units of technology used in multiple games, and maybe
-   a few special products (Website, Administration...)
+   Products typically represent real-world shipping products. Products can be
+   given Classifications. For example, if a company makes computer games, they
+   could have a classification of "Games", and a separate product for each
+   game. This company might also have a "Common" product for units of
+   technology used in multiple games, and perhaps a few special products that
+   represent items that are not actually shipping products (for example,
+   "Website", or "Administration").
 
    Many of Bugzilla's settings are configurable on a per-product basis. The
    number of "votes" available to users is set per-product, as is the number of
    votes required to move a bug automatically from the UNCONFIRMED status to
    the NEW status.
 
+   When creating or editing products the following options are available:
+
+   Product
+          The name of the product
+
+   Description
+          A brief description of the product
+
+   URL describing milestones for this product
+          If there is reference URL, provide it here
+
+   Default milestone
+          Select the default milestone for this product.
+
+   Closed for bug entry
+          Select this box to prevent new bugs from being entered against this
+          product.
+
+   Maximum votes per person
+          Maximum votes a user is allowed to give for this product
+
+   Maximum votes a person can put on a single bug
+          Maximum votes a user is allowed to give for this product in a single
+          bug
+
+   Confirmation threshold
+          Number of votes needed to automatically remove any bug against this
+          product from the UNCONFIRMED state
+
+   Version
+          Specify which version of the product bugs will be entered against.
+
+   Create chart datasets for this product
+          Select to make chart datasets available for this product.
+
+   When editing a product there is also a link to edit Group Access Controls.
+
    To create a new product:
 
-    1. Select "products" from the footer
-    2. Select the "Add" link in the bottom right
+    1. Select "Administration" from the footer and then choose "Products" from
+       the main administration page.
+    2. Select the "Add" link in the bottom right.
     3. Enter the name of the product and a description. The Description field
        may contain HTML.
+    4. When the product is created, Bugzilla will give a message stating that a
+       component must be created before any bugs can be entered against the new
+       product. Follow the link to create a new component. See Components for
+       more information.
+     _________________________________________________________________
+
+3.4.1. Assigning Group Controls to Products
+
+   On the "Product Edit" page, there is a link called "Edit Group Access
+   Controls". The settings on this page control the relationship of the groups
+   to the product being edited.
+
+   Groups may be applicable, default, and mandatory for each product. Groups
+   can also control access to bugs for a given product, or be used to make bugs
+   for a product totally read-only unless the group restrictions are met.
+
+   If any group has Entry selected, then the product will restrict bug entry to
+   only those users who are members of all the groups with Entry selected.
+
+   If any group has Canedit selected, then the product will be read-only for
+   any users who are not members of all of the groups with Canedit selected.
+   ONLY users who are members of all the Canedit groups will be able to edit.
+   This is an additional restriction that further limits what can be edited by
+   a user.
+
+   The following settings let you choose privileges on a per-product basis.
+   This is a convenient way to give privileges to some users for some products
+   only, without having to give them global privileges which would affect all
+   products.
+
+   Any group having editcomponents selected allows users who are in this group
+   to edit all aspects of this product, including components, milestones and
+   versions.
+
+   Any group having canconfirm selected allows users who are in this group to
+   confirm bugs in this product.
+
+   Any group having editbugs selected allows users who are in this group to
+   edit all fields of bugs in this product.
+
+   The MemberControl and OtherControl fields indicate which bugs will be placed
+   in this group according to the following definitions.
+
+   For each group, it is possible to specify if membership in that group is:
+
+    1. Required for bug entry.
+    2. Not applicable to this product(NA), a possible restriction for a member
+       of the group to place on a bug in this product(Shown), a default
+       restriction for a member of the group to place on a bug in this
+       product(Default), or a mandatory restriction to be placed on bugs in
+       this product(Mandatory).
+    3. Not applicable by non-members to this product(NA), a possible
+       restriction for a non-member of the group to place on a bug in this
+       product(Shown), a default restriction for a non-member of the group to
+       place on a bug in this product(Default), or a mandatory restriction to
+       be placed on bugs in this product when entered by a
+       non-member(Mandatory).
+    4. Required in order to make any change to bugs in this product including
+       comments.
+
+   These controls are often described in this order, so a product that requires
+   a user to be a member of group "foo" to enter a bug and then requires that
+   the bug stay restricted to group "foo" at all times and that only members of
+   group "foo" can edit the bug even if they otherwise could see the bug would
+   have its controls summarized by...
 
-   Don't worry about the "Closed for bug entry", "Maximum Votes per person",
-   "Maximum votes a person can put on a single bug", "Number of votes a bug in
-   this Product needs to automatically get out of the UNCONFIRMED state", and
-   "Version" options yet. We'll cover those in a few moments.
+foo: ENTRY, MANDATORY/MANDATORY, CANEDIT
      _________________________________________________________________
 
 3.5. Components
@@ -2073,9 +2117,10 @@ Chapter 3. Administering Bugzilla
     1. Select the "Edit components" link from the "Edit product" page
     2. Select the "Add" link in the bottom right.
     3. Fill out the "Component" field, a short "Description", the "Default
-       Assignee" and "Default QA Contact" (if enabled). The Component and
-       Description fields may contain HTML; the "Default Assignee" field must
-       be a login name already existing in the database.
+       Assignee", "Default CC List" and "Default QA Contact" (if enabled). The
+       "Component Description" field may contain a limited subset of HTML tags.
+       The "Default Assignee" field must be a login name already existing in
+       the Bugzilla database.
      _________________________________________________________________
 
 3.6. Versions
@@ -2232,8 +2277,8 @@ Chapter 3. Administering Bugzilla
 
 3.8.5. Administering Flags
 
-   If you have the "editcomponents" permission, you will have "Edit: ... |
-   Flags | ..." in your page footer. Clicking on that link will bring you to
+   If you have the "editcomponents" permission, you can edit Flag Types from
+   the main administration page. Clicking the "Flags" link will bring you to
    the "Administer Flag Types" page. Here, you can select whether you want to
    create (or edit) a Bug flag, or an Attachment flag.
 
@@ -2241,20 +2286,27 @@ Chapter 3. Administering Bugzilla
    it once.
      _________________________________________________________________
 
-3.8.5.1. Creating a Flag
+3.8.5.1. Editing a Flag
+
+   To edit a flag's properties, just click on the "Edit" link next to the
+   flag's description. That will take you to the same form as described below
+   (Section 3.8.5.2).
+     _________________________________________________________________
+
+3.8.5.2. Creating a Flag
 
    When you click on the "Create a Flag Type for..." link, you will be
    presented with a form. Here is what the fields in the form mean:
      _________________________________________________________________
 
-3.8.5.1.1. Name
+3.8.5.2.1. Name
 
    This is the name of the flag. This will be displayed to Bugzilla users who
    are looking at or setting the flag. The name may contain any valid Unicode
    characters except commas and spaces.
      _________________________________________________________________
 
-3.8.5.1.2. Description
+3.8.5.2.2. Description
 
    The description describes the flag in more detail. It is visible in a
    tooltip when hovering over a flag either in the "Show Bug" or "Edit
@@ -2262,7 +2314,7 @@ Chapter 3. Administering Bugzilla
    any character you want.
      _________________________________________________________________
 
-3.8.5.1.3. Category
+3.8.5.2.3. Category
 
    Default behaviour for a newly-created flag is to appear on products and all
    components, which is why "__Any__:__Any__" is already entered in the
@@ -2302,7 +2354,7 @@ Chapter 3. Administering Bugzilla
    Plane:Pilot".
      _________________________________________________________________
 
-3.8.5.1.4. Sort Key
+3.8.5.2.4. Sort Key
 
    Flags normally show up in alphabetical order. If you want them to show up in
    a different order, you can use this key set the order on each flag. Flags
@@ -2316,7 +2368,7 @@ Chapter 3. Administering Bugzilla
    CFlag, AFlag.
      _________________________________________________________________
 
-3.8.5.1.5. Active
+3.8.5.2.5. Active
 
    Sometimes, you might want to keep old flag information in the Bugzilla
    database, but stop users from setting any new flags of this type. To do
@@ -2326,14 +2378,14 @@ Chapter 3. Administering Bugzilla
    completely disappear from a bug/attachment, and cannot be set again.
      _________________________________________________________________
 
-3.8.5.1.6. Requestable
+3.8.5.2.6. Requestable
 
    New flags are, by default, "requestable", meaning that they offer users the
    "?" option, as well as "+" and "-". To remove the ? option, uncheck
    "requestable".
      _________________________________________________________________
 
-3.8.5.1.7. Specifically Requestable
+3.8.5.2.7. Specifically Requestable
 
    By default this box is checked for new flags, meaning that users may make
    flag requests of specific individuals. Unchecking this box will remove the
@@ -2343,7 +2395,7 @@ Chapter 3. Administering Bugzilla
    it will no longer appear to the user).
      _________________________________________________________________
 
-3.8.5.1.8. Multiplicable
+3.8.5.2.8. Multiplicable
 
    Any flag with "Multiplicable" set (default for new flags is 'on') may be set
    more than once. After being set once, an unset flag of the same type will
@@ -2352,14 +2404,14 @@ Chapter 3. Administering Bugzilla
    same bug/attachment.
      _________________________________________________________________
 
-3.8.5.1.9. CC List
+3.8.5.2.9. CC List
 
    If you want certain users to be notified every time this flag is set to ?,
    -, +, or unset, add them here. This is a comma-separated list of email
    addresses that need not be restricted to Bugzilla usernames.
      _________________________________________________________________
 
-3.8.5.1.10. Grant Group
+3.8.5.2.10. Grant Group
 
    When this field is set to some given group, only users in the group can set
    the flag to "+" and "-". This field does not affect who can request or
@@ -2368,7 +2420,7 @@ Chapter 3. Administering Bugzilla
    useful for restricting which users can approve or reject requests.
      _________________________________________________________________
 
-3.8.5.1.11. Request Group
+3.8.5.2.11. Request Group
 
    When this field is set to some given group, only users in the group can
    request or cancel this flag. Note that this field has no effect if the
@@ -2377,7 +2429,7 @@ Chapter 3. Administering Bugzilla
    have an effect.
      _________________________________________________________________
 
-3.8.5.2. Deleting a Flag
+3.8.5.3. Deleting a Flag
 
    When you are at the "Administer Flag Types" screen, you will be presented
    with a list of Bug flags and a list of Attachment Flags.
@@ -2391,14 +2443,25 @@ Chapter 3. Administering Bugzilla
       "active" in the flag Edit form.
      _________________________________________________________________
 
-3.8.5.3. Editing a Flag
+3.9. Keywords
 
-   To edit a flag's properties, just click on the "Edit" link next to the
-   flag's description. That will take you to the same form described in the
-   "Creating a Flag" section.
+   The administrator can define keywords which can be used to tag and
+   categorise bugs. For example, the keyword "regression" is commonly used. A
+   company might have a policy stating all regressions must be fixed by the
+   next release - this keyword can make tracking those bugs much easier.
+
+   Keywords are global, rather than per-product. If the administrator changes a
+   keyword currently applied to any bugs, the keyword cache must be rebuilt
+   using the Section 3.15 script. Currently keywords can not be marked obsolete
+   to prevent future usage.
+
+   Keywords can be created, edited or deleted by clicking the "Keywords" link
+   in the admin page. There are two fields for each keyword - the keyword
+   itself and a brief description. Once created, keywords can be selected and
+   applied to individual bugs in that bug's "Details" section.
      _________________________________________________________________
 
-3.9. Custom Fields
+3.10. Custom Fields
 
    One of the most requested features was the ability to add your own custom
    fields to bugs, based on your needs. With the release of Bugzilla 3.0, this
@@ -2407,7 +2470,7 @@ Chapter 3. Administering Bugzilla
    is the list of existing custom fields (which is empty by default).
      _________________________________________________________________
 
-3.9.1. Adding Custom Fields
+3.10.1. Adding Custom Fields
 
    The "Add a new custom field" link permits you to add a new field which can
    be either a free text box or a drop down menu. More field types will be
@@ -2426,7 +2489,7 @@ Chapter 3. Administering Bugzilla
        text boxes let you type any string, while drop down menus only let you
        choose one value in the list provided. The list of legal values for this
        field can be created and edited as soon as this custom field is added to
-       the DB. See Section 3.10.1 for information about editing legal values.
+       the DB. See Section 3.11.1 for information about editing legal values.
      * Sortkey: this integer determines in which order custom fields are
        displayed in the UI, especially when viewing a bug. Fields with lower
        values are displayed first.
@@ -2442,21 +2505,21 @@ Chapter 3. Administering Bugzilla
        displayed at all. Obsolete custom fields are hidden.
      _________________________________________________________________
 
-3.9.2. Editing Custom Fields
+3.10.2. Editing Custom Fields
 
    As soon as a custom field is created, its name and type cannot be changed.
    If this field is a drop down menu, its legal values can be set as described
-   in Section 3.10.1. All other attributes can be edited as described above.
+   in Section 3.11.1. All other attributes can be edited as described above.
      _________________________________________________________________
 
-3.9.3. Deleting Custom Fields
+3.10.3. Deleting Custom Fields
 
    At this point, it is not possible to delete custom fields from your web
    browser. If you don't want to make one available anymore, mark it as
    obsolete. This way, you will preserve your DB referential integrity.
      _________________________________________________________________
 
-3.10. Legal Values
+3.11. Legal Values
 
    Since Bugzilla 2.20 RC1, legal values for Operating Systems, platforms, bug
    priorities and severities can be edited from the User Interface directly.
@@ -2465,7 +2528,7 @@ Chapter 3. Administering Bugzilla
    resolutions from the same interface.
      _________________________________________________________________
 
-3.10.1. Viewing/Editing legal values
+3.11.1. Viewing/Editing legal values
 
    Editing legal values requires "admin" privileges. A link named "Field
    Values" is visible in your footer and clicking on it displays the list of
@@ -2476,7 +2539,7 @@ Chapter 3. Administering Bugzilla
    the desired order.
      _________________________________________________________________
 
-3.10.2. Deleting legal values
+3.11.2. Deleting legal values
 
    You can also delete legal values, but only if the two following conditions
    are respected:
@@ -2489,7 +2552,7 @@ Chapter 3. Administering Bugzilla
    to set another value as default for the field.
      _________________________________________________________________
 
-3.11. Voting
+3.12. Voting
 
    Voting allows users to be given a pot of votes which they can allocate to
    bugs, to indicate that they'd like them fixed. This allows developers to
@@ -2512,7 +2575,7 @@ Chapter 3. Administering Bugzilla
     5. Once you have adjusted the values to your preference, click "Update".
      _________________________________________________________________
 
-3.12. Quips
+3.13. Quips
 
    Quips are small text messages that can be configured to appear next to
    search results. A Bugzilla installation can have its own specific quips.
@@ -2543,7 +2606,7 @@ Chapter 3. Administering Bugzilla
    to permanently delete a quip.
      _________________________________________________________________
 
-3.13. Groups and Group Security
+3.14. Groups and Group Security
 
    Groups allow the administrator to isolate bugs or products that should only
    be seen by certain people. The association between products and groups is
@@ -2567,7 +2630,7 @@ Chapter 3. Administering Bugzilla
       box next to either 'Reporter' or 'CC List' (or both).
      _________________________________________________________________
 
-3.13.1. Creating Groups
+3.14.1. Creating Groups
 
    To create Groups:
 
@@ -2601,7 +2664,7 @@ Chapter 3. Administering Bugzilla
        groups should be permitted to add and delete users from this group.
      _________________________________________________________________
 
-3.13.2. Assigning Users to Groups
+3.14.2. Assigning Users to Groups
 
    Users can become a member of a group in several ways.
 
@@ -2612,43 +2675,14 @@ Chapter 3. Administering Bugzilla
        specifies to automatically grant membership to the group.
      _________________________________________________________________
 
-3.13.3. Assigning Group Controls to Products
-
-   On the product edit page, there is a page to edit the "Group Controls" for a
-   product. This allows you to configure how a group relates to the product.
-   Groups may be applicable, default, and mandatory as well as used to control
-   entry or used to make bugs in the product totally read-only unless the group
-   restrictions are met.
-
-   For each group, it is possible to specify if membership in that group is...
-
-    1. required for bug entry,
-    2. Not applicable to this product(NA), a possible restriction for a member
-       of the group to place on a bug in this product(Shown), a default
-       restriction for a member of the group to place on a bug in this
-       product(Default), or a mandatory restriction to be placed on bugs in
-       this product(Mandatory).
-    3. Not applicable by non-members to this product(NA), a possible
-       restriction for a non-member of the group to place on a bug in this
-       product(Shown), a default restriction for a non-member of the group to
-       place on a bug in this product(Default), or a mandatory restriction to
-       be placed on bugs in this product when entered by a
-       non-member(Mandatory).
-    4. required in order to make any change to bugs in this product including
-       comments.
-
-   These controls are often described in this order, so a product that requires
-   a user to be a member of group "foo" to enter a bug and then requires that
-   the bug stay restricted to group "foo" at all times and that only members of
-   group "foo" can edit the bug even if they otherwise could see the bug would
-   have its controls summarized by...
+3.14.3. Assigning Group Controls to Products
 
-foo: ENTRY, MANDATORY/MANDATORY, CANEDIT
+   For information on assigning group controls to products, see Products.
      _________________________________________________________________
 
-3.13.4. Common Applications of Group Controls
+3.14.4. Common Applications of Group Controls
 
-3.13.4.1. General User Access With Security Group
+3.14.4.1. General User Access With Security Group
 
    To permit any user to file bugs in each product (A, B, C...) and to permit
    any user to submit those bugs into a security group....
@@ -2661,7 +2695,7 @@ Product C...
 security: SHOWN/SHOWN
      _________________________________________________________________
 
-3.13.4.2. General User Access With A Security Product
+3.14.4.2. General User Access With A Security Product
 
    To permit any user to file bugs in a Security product while keeping those
    bugs from becoming visible to anyone outside the securityworkers group
@@ -2671,7 +2705,7 @@ Product Security...
 securityworkers: DEFAULT/MANDATORY
      _________________________________________________________________
 
-3.13.4.3. Product Isolation With Common Group
+3.14.4.3. Product Isolation With Common Group
 
    To permit users of product A to access the bugs for product A, users of
    product B to access product B, and support staff to access both, 3 groups
@@ -2701,7 +2735,34 @@ Product Common...
 Support: ENTRY, DEFAULT/MANDATORY, CANEDIT
      _________________________________________________________________
 
-3.14. Upgrading to New Releases
+3.15. Checking and Maintaining Database Integrity
+
+   Over time it is possible for the Bugzilla database to become corrupt or to
+   have anomalies. This could happen through normal usage of Bugzilla, manual
+   database administration outside of the Bugzilla user interface, or from some
+   other unexpected event. Bugzilla includes a "Sanity Check" script that can
+   perform several basic database checks, and repair certain problems or
+   inconsistencies.
+
+   To run the "Sanity Check" script, log in as an Administrator and click the
+   "Sanity Check" link in the admin page. Any problems that are found will be
+   displayed in red letters. If the script is capable of fixing a problem, it
+   will present a link to initiate the fix. If the script can not fix the
+   problem it will require manual database administration or recovery.
+
+   The "Sanity Check" script can also be run from the command line via the perl
+   script sanitycheck.pl. The script can also be run as a cron job. Results
+   will be delivered by email.
+
+   The "Sanity Check" script should be run on a regular basis as a matter of
+   best practice.
+
+   Warning The "Sanity Check" script is no substitute for a competent database
+   administrator. It is only designed to check and repair basic database
+      problems.
+     _________________________________________________________________
+
+3.16. Upgrading to New Releases
 
    Upgrading Bugzilla is something we all want to do from time to time, be it
    to get new features or pick up the latest security fix. How easy it is to
@@ -2711,7 +2772,7 @@ Support: ENTRY, DEFAULT/MANDATORY, CANEDIT
      * How many local changes (if any) have been made
      _________________________________________________________________
 
-3.14.1. Version Definitions
+3.16.1. Version Definitions
 
    Bugzilla displays the version you are using at the top of the home page
    index.cgi. It looks something like '2.20.3', '2.22.1' or '3.0rc1'. The first
@@ -2746,7 +2807,7 @@ Support: ENTRY, DEFAULT/MANDATORY, CANEDIT
       dealing with software.
      _________________________________________________________________
 
-3.14.2. Upgrading - Notifications
+3.16.2. Upgrading - Notifications
 
    Bugzilla 3.0 introduces the ability to automatically notify administrators
    when new releases are available, based on the upgrade_notification
@@ -2758,13 +2819,13 @@ Support: ENTRY, DEFAULT/MANDATORY, CANEDIT
    http://user:pass@proxy_url/ syntax.
      _________________________________________________________________
 
-3.14.3. Upgrading - Methods and Procedure
+3.16.3. Upgrading - Methods and Procedure
 
    There are three different ways to upgrade your installation.
 
-    1. Using CVS (Section 3.14.3.1)
-    2. Downloading a new tarball (Section 3.14.3.2)
-    3. Applying the relevant patches (Section 3.14.3.3)
+    1. Using CVS (Section 3.16.3.1)
+    2. Downloading a new tarball (Section 3.16.3.2)
+    3. Applying the relevant patches (Section 3.16.3.3)
 
    Each of these options has its own pros and cons; the one that's right for
    you depends on how long it has been since you last installed, the degree to
@@ -2796,7 +2857,7 @@ Support: ENTRY, DEFAULT/MANDATORY, CANEDIT
    appropriate.
      _________________________________________________________________
 
-3.14.3.1. Upgrading using CVS
+3.16.3.1. Upgrading using CVS
 
    Every release of Bugzilla, whether it is a point release or a bugfix, is
    tagged in CVS. Also, every tarball that has been distributed since version
@@ -2828,7 +2889,7 @@ P template/en/default/list/quips.html.tmpl
       the portion using that file) will be usable.
      _________________________________________________________________
 
-3.14.3.2. Upgrading using the tarball
+3.16.3.2. Upgrading using the tarball
 
    If you are unable (or unwilling) to use CVS, another option that's always
    available is to obtain the latest tarball from the Download Page and create
@@ -2868,7 +2929,7 @@ bash$ mv bugzilla-2.22.1 bugzilla
    method, your code will already be set up for it.
      _________________________________________________________________
 
-3.14.3.3. Upgrading using patches
+3.16.3.3. Upgrading using patches
 
    If you are doing a bugfix upgrade -- that is, one where only the last number
    of the revision changes, such as from 2.22 to 2.22.1 -- then you have the
@@ -2894,10 +2955,10 @@ patching file collectstats.pl
 
    Warning Be aware that upgrading from a patch file does not change the
    entries in your CVS directory. This could make it more difficult to upgrade
-      using CVS (Section 3.14.3.1) in the future.
+      using CVS (Section 3.16.3.1) in the future.
      _________________________________________________________________
 
-3.14.4. Completing Your Upgrade
+3.16.4. Completing Your Upgrade
 
    Regardless of which upgrade method you choose, you will need to run
    ./checksetup.pl before your Bugzilla upgrade will be complete.
@@ -3086,6 +3147,10 @@ Chapter 5. Using Bugzilla
    necessarily have all Bugzilla features enabled, and different installations
    run different versions, so some things may not quite work as this document
    describes.
+
+   Frequently Asked Questions (FAQ) are available and answered on
+   wiki.mozilla.org. They may cover some questions you have which are left
+   unanswered.
      _________________________________________________________________
 
 5.2. Create a Bugzilla Account
@@ -3241,15 +3306,10 @@ Chapter 5. Using Bugzilla
    the field matches any one of the selected values. If none is selected, then
    the field can take any value.
 
-   Once you've run a search, you can save it as a Saved Search, which appears
-   in the page footer. On the Saved Searches tab of your User Preferences page
-   (the Prefs link in Bugzilla's footer), members of the group defined in the
-   querysharegroup parameter can share such Saved Searches with user groups so
-   that other users may use them. At the same place, you can see Saved Searches
-   other users are sharing, and have them show up in your personal Bugzilla
-   footer along with your own Saved Searches. If somebody is sharing a Search
-   with a group she or he is allowed to assign users to, the sharer may opt to
-   have the Search show up in the group's direct members' footers by default.
+   After a search is run, you can save it as a Saved Search, which will appear
+   in the page footer. If you are in the group defined by the "querysharegroup"
+   parameter, you may share your queries with other users, see Saved Searches
+   for more details.
      _________________________________________________________________
 
 5.5.1. Boolean Charts
@@ -3353,7 +3413,15 @@ Chapter 5. Using Bugzilla
    front page, there is an additional Help link which details how to use it.
      _________________________________________________________________
 
-5.5.3. Bug Lists
+5.5.3. Case Sensitivity in Searches
+
+   Bugzilla queries are case-insensitive and accent-insensitive, when used with
+   either MySQL or Oracle databases. When using Bugzilla with PostgreSQL,
+   however, some queries are case-sensitive. This is due to the way PostgreSQL
+   handles case and accent sensitivity.
+     _________________________________________________________________
+
+5.5.4. Bug Lists
 
    If you run a search, a list of matching bugs will be returned.
 
@@ -3395,7 +3463,7 @@ Chapter 5. Using Bugzilla
    Description Framework RDF/XML (ctype=rdf).
      _________________________________________________________________
 
-5.5.4. Adding/removing tags to/from bugs
+5.5.5. Adding/removing tags to/from bugs
 
    You can add and remove tags from individual bugs, which let you find and
    manage them more easily. Creating a new tag automatically generates a saved
@@ -3658,7 +3726,14 @@ Chapter 5. Using Bugzilla
    are not.
      _________________________________________________________________
 
-5.8.3. Dependency Tree
+5.8.3. Server-Side Comment Wrapping
+
+   Bugzilla stores comments unwrapped and wraps them at display time. This
+   ensures proper wrapping in all browsers. Lines beginning with the ">"
+   character are assumed to be quotes, and are not wrapped.
+     _________________________________________________________________
+
+5.8.4. Dependency Tree
 
    On the "Dependency tree" page linked from each bug page, you can see the
    dependency relationship from the bug as a tree structure.
@@ -3691,70 +3766,61 @@ Chapter 5. Using Bugzilla
 
 5.10. User Preferences
 
-   Once you have logged in, you can customize various aspects of Bugzilla via
-   the "Edit prefs" link in the page footer. The preferences are split into
-   three tabs:
-     _________________________________________________________________
-
-5.10.1. Account Preferences
-
-   On this tab, you can change your basic account information, including your
-   password, email address and real name. For security reasons, in order to
-   change anything on this page you must type your current password into the
-   "Password" field at the top of the page. If you attempt to change your email
-   address, a confirmation email is sent to both the old and new addresses,
-   with a link to use to confirm the change. This helps to prevent account
-   hijacking.
-     _________________________________________________________________
-
-5.10.2. General Preferences
-
-   This tab allows you to change several Bugzilla behavior.
-
-     * Field separator character for CSV files - This controls separator
-       character used in CSV formatted Bug List.
-     * After changing bugs - This controls which bugs or no bugs are shown in
-       the page after you changed bugs. You can select the bug you've changed
-       this time, or the next bug of the list.
-     * Add individual bugs to saved searches - this controls whether you can
-       add individual bugs to saved searches or you can't.
-     * When viewing a bug, show comments in this order - This controls the
-       order of comments, you can select below:
-
-       Initial description, comment 1, comment 2, ...
-       Initial description, last comment, ..., comment 2, comment 1.
-       Initial last comment, ..., comment 2, comment 1, description.
-     * Show a quip at the top of each bug list - This controls whether a quip
-       will be shown on the Bug list page or not.
-     _________________________________________________________________
-
-5.10.3. Email Preferences
-
-   This tab controls the amount of email Bugzilla sends you.
-
-   The first item on this page is marked "Users to watch". When you enter one
-   or more comma-delineated user accounts (usually email addresses) into the
-   text entry box, you will receive a copy of all the bugmail those users are
-   sent (security settings permitting). This powerful functionality enables
-   seamless transitions as developers change projects or users go on holiday.
-
-   Note The ability to watch other users may not be available in all Bugzilla
-   installations. If you don't see this feature, and feel that you need it,
-      speak to your administrator.
-
-   Each user listed in the "Users watching you" field has you listed in their
-   "Users to watch" list and can get bugmail according to your relationship to
-   the bug and their "Field/recipient specific options" setting.
+   Once logged in, you can customize various aspects of Bugzilla via the
+   "Preferences" link in the page footer. The preferences are split into five
+   tabs:
+     _________________________________________________________________
+
+5.10.1. General Preferences
+
+   This tab allows you to change several default settings of Bugzilla.
+
+     * Bugzilla's general appearance (skin) - select which skin to use.
+       Bugzilla supports adding custom skins.
+     * Quote the associated comment when you click on its reply link - sets the
+       behavior of the comment "Reply" link. Options include quoting the full
+       comment, just reference the comment number, or turn the link off.
+     * Language used in email - select which language email will be sent in,
+       from the list of available languages.
+     * After changing a bug - This controls what page is displayed after
+       changes to a bug are submitted. The options include to show the bug just
+       modified, to show the next bug in your list, or to do nothing.
+     * Enable tags for bugs - turn bug tagging on or off.
+     * Zoom textareas large when in use (requires JavaScript) - enable or
+       disable the automatic expanding of text areas when text is being entered
+       into them.
+     * Field separator character for CSV files - Select between a comma and
+       semi-colon for exported CSV bug lists.
+     * Automatically add me to the CC list of bugs I change - set default
+       behavior of CC list. Options include "Always", "Never", and "Only if I
+       have no role on them".
+     * When viewing a bug, show comments in this order - controls the order of
+       comments. Options include "Oldest to Newest", "Newest to Oldest" and
+       "Newest to Oldest, but keep the bug description at the top".
+     * Show a quip at the top of each bug list - controls whether a quip will
+       be shown on the Bug list page.
+     _________________________________________________________________
+
+5.10.2. Email Preferences
+
+   This tab allows you to enable or disable email notification on specific
+   events.
 
    In general, users have almost complete control over how much (or how little)
    email Bugzilla sends them. If you want to receive the maximum amount of
    email possible, click the "Enable All Mail" button. If you don't want to
    receive any email from Bugzilla at all, click the "Disable All Mail" button.
 
-   Note Your Bugzilla administrator can stop a user from receiving bugmail by
-   adding the user's name to the data/nomail file. This is a drastic step best
-   taken only for disabled accounts, as it overrides the user's individual mail
-      preferences.
+   Note A Bugzilla administrator can stop a user from receiving bugmail by
+   clicking the "Bugmail Disabled" checkbox when editing the user account. This
+   is a drastic step best taken only for disabled accounts, as it overrides the
+      user's individual mail preferences.
+
+   There are two global options -- "Email me when someone asks me to set a
+   flag" and "Email me when someone sets a flag I asked for". These define how
+   you want to receive bugmail with regards to flags. Their use is quite
+   straightforward; enable the checkboxes if you want Bugzilla to send you mail
+   under either of the above conditions.
 
    If you'd like to set your bugmail to something besides 'Completely ON' and
    'Completely OFF', the "Field/recipient specific options" table allows you to
@@ -3794,23 +3860,91 @@ Chapter 5. Using Bugzilla
    CC, or Voter) to the bug. This header can be used to do further client-side
       filtering.
 
-   Two items not in the table ("Email me when someone asks me to set a flag"
-   and "Email me when someone sets a flag I asked for") define how you want to
-   receive bugmail with regards to flags. Their use is quite straightforward;
-   enable the checkboxes if you want Bugzilla to send you mail under either of
-   the above conditions.
+   Bugzilla has a feature called "Users Watching". When you enter one or more
+   comma-delineated user accounts (usually email addresses) into the text entry
+   box, you will receive a copy of all the bugmail those users are sent
+   (security settings permitting). This powerful functionality enables seamless
+   transitions as developers change projects or users go on holiday.
 
-   By default, Bugzilla sends out email regardless of who made the change...
-   even if you were the one responsible for generating the email in the first
-   place. If you don't care to receive bugmail from your own changes, check the
-   box marked "Only email me reports of changes made by other people".
+   Note The ability to watch other users may not be available in all Bugzilla
+   installations. If you don't see this feature, and feel that you need it,
+      speak to your administrator.
+
+   Each user listed in the "Users watching you" field has you listed in their
+   "Users to watch" list and can get bugmail according to your relationship to
+   the bug and their "Field/recipient specific options" setting.
+     _________________________________________________________________
+
+5.10.3. Saved Searches
+
+   On this tab you can view and run any Saved Searches that you have created,
+   and also any Saved Searches that other members of the group defined in the
+   "querysharegroup" parameter have shared. Saved Searches can be added to the
+   page footer from this screen. If somebody is sharing a Search with a group
+   she or he is allowed to assign users to, the sharer may opt to have the
+   Search show up in the footer of the group's direct members by default.
+     _________________________________________________________________
+
+5.10.4. Name and Password
+
+   On this tab, you can change your basic account information, including your
+   password, email address and real name. For security reasons, in order to
+   change anything on this page you must type your current password into the
+   "Password" field at the top of the page. If you attempt to change your email
+   address, a confirmation email is sent to both the old and new addresses,
+   with a link to use to confirm the change. This helps to prevent account
+   hijacking.
      _________________________________________________________________
 
-5.10.4. Permissions
+5.10.5. Permissions
 
    This is a purely informative page which outlines your current permissions on
-   this installation of Bugzilla - what product groups you are in, and whether
-   you can edit bugs or perform various administration functions.
+   this installation of Bugzilla.
+
+   A complete list of permissions is below. Only users with editusers
+   privileges can change the permissions of other users.
+
+   admin
+          Indicates user is an Administrator.
+
+   bz_canusewhineatothers
+          Indicates user can configure whine reports for other users.
+
+   bz_canusewhines
+          Indicates user can configure whine reports for self.
+
+   bz_sudoers
+          Indicates user can perform actions as other users.
+
+   bz_sudo_protect
+          Indicates user can not be impersonated by other users.
+
+   canconfirm
+          Indicates user can confirm a bug or mark it a duplicate.
+
+   creategroups
+          Indicates user can create and destroy groups.
+
+   editbugs
+          Indicates user can edit all bug fields.
+
+   editclassifications
+          Indicates user can create, destroy, and edit classifications.
+
+   editcomponents
+          Indicates user can create, destroy, and edit components.
+
+   editkeywords
+          Indicates user can create, destroy, and edit keywords.
+
+   editusers
+          Indicates user can edit or disable users.
+
+   tweakparams
+          Indicates user can change Parameters.
+
+   Note For more information on how permissions work in Bugzilla (i.e. who can
+      change what), see Section 6.4.
      _________________________________________________________________
 
 5.11. Reports and Charts
@@ -4055,7 +4189,7 @@ Chapter 5. Using Bugzilla
    appears at the bottom of every Bugzilla page). You are only allowed to
    choose from searches that you have saved yourself (the default saved search,
    "My Bugs", is not a valid choice). If you do not have any saved searches,
-   you can take this opportunity to create one (see Section 5.5.3).
+   you can take this opportunity to create one (see Section 5.5.4).
 
    Note When running queries, the whining system acts as if you are the user
    executing the query. This means that the whining system will ignore bugs
@@ -4521,6 +4655,13 @@ s %]
    has been designed to make it easy for you to write your own custom rules to
    define who is allowed to make what sorts of value transition.
 
+   By default, assignees, QA owners and users with editbugs privileges can edit
+   all fields of bugs, except group restrictions (unless they are members of
+   the groups they are trying to change). Bug reporters also have the ability
+   to edit some fields, but in a more restrictive manner. Other users, without
+   editbugs privileges, can not edit bugs, except to comment and add themselves
+   to the CC list.
+
    For maximum flexibility, customizing this means editing Bugzilla's Perl
    code. This gives the administrator complete control over exactly who is
    allowed to do what. The relevant method is called check_can_change_field(),
@@ -4654,951 +4795,14 @@ s %]
    http://tinderbox.mozilla.org/showbuilds.cgi to see it in action.
      _________________________________________________________________
 
-Appendix A. The Bugzilla FAQ
-
-   This FAQ includes questions not covered elsewhere in the Guide.
-
-   1. General Questions
-
-        A.1.1. Can I try out Bugzilla somewhere? 
-        A.1.2. What license is Bugzilla distributed under? 
-        A.1.3. How do I get commercial support for Bugzilla? 
-        A.1.4. What major companies or projects are currently using Bugzilla
-                for bug-tracking? 
-
-        A.1.5. Who maintains Bugzilla? 
-        A.1.6. How does Bugzilla stack up against other bug-tracking databases?
-                
-        A.1.7. Why doesn't Bugzilla offer this or that feature or compatibility
-                with this other tracking software? 
-
-        A.1.8. What databases does Bugzilla run on? 
-        A.1.9. My perl is located at /usr/local/bin/perl and not /usr/bin/perl.
-                Is there an easy to change that in all the files that have this
-                hard-coded? 
-
-        A.1.10. Is there an easy way to change the Bugzilla cookie name? 
-        A.1.11. How can Bugzilla be made to work under SELinux? 
-
-   2. Managerial Questions
-
-        A.2.1. Is Bugzilla web-based, or do you have to have specific software
-                or a specific operating system on your machine? 
-
-        A.2.2. Does Bugzilla allow us to define our own priorities and levels?
-                Do we have complete freedom to change the labels of fields and
-                format of them, and the choice of acceptable values? 
-
-        A.2.3. Does Bugzilla provide any reporting features, metrics, graphs,
-                etc? You know, the type of stuff that management likes to see.
-                :) 
-
-        A.2.4. Is there email notification? If so, what do you see when you get
-                an email? 
-
-        A.2.5. Do users have to have any particular type of email application? 
-        A.2.6. Does Bugzilla allow data to be imported and exported? If I had
-                outsiders write up a bug report using a MS Word bug template,
-                could that template be imported into "matching" fields? If I
-                wanted to take the results of a query and export that data to
-                MS Excel, could I do that? 
-
-        A.2.7. Has anyone converted Bugzilla to another language to be used in
-                other countries? Is it localizable? 
-
-        A.2.8. Can a user create and save reports? Can they do this in Word
-                format? Excel format? 
-
-        A.2.9. Are there any backup features provided? 
-        A.2.10. What type of human resources are needed to be on staff to
-                install and maintain Bugzilla? Specifically, what type of
-                skills does the person need to have? I need to find out what
-                types of individuals would we need to hire and how much would
-                that cost if we were to go with Bugzilla vs. buying an
-                "out-of-the-box" solution. 
-
-        A.2.11. What time frame are we looking at if we decide to hire people
-                to install and maintain the Bugzilla? Is this something that
-                takes hours or days to install and a couple of hours per week
-                to maintain and customize, or is this a multi-week install
-                process, plus a full time job for 1 person, 2 people, etc? 
-
-        A.2.12. Is there any licensing fee or other fees for using Bugzilla?
-                Any out-of-pocket cost other than the bodies needed as
-                identified above? 
-
-        A.2.13. We don't like referring to problems as 'bugs'. Can we change
-                that? 
-
-   3. Administrative Questions
-
-        A.3.1. Does Bugzilla provide record locking when there is simultaneous
-                access to the same bug? Does the second person get a notice
-                that the bug is in use or how are they notified? 
-
-        A.3.2. Can users be on the system while a backup is in progress? 
-        A.3.3. How can I update the code and the database using CVS? 
-        A.3.4. How do I make it so that bugs can have an UNCONFIRMED status? 
-        A.3.5. How do I move a Bugzilla installation from one machine to
-                another? 
-
-        A.3.6. How do I make a new Bugzilla administrator? The previous
-                administrator is gone... 
-
-   4. Bugzilla Security
-
-        A.4.1. How do I completely disable MySQL security if it's giving me
-                problems? (I've followed the instructions in the installation
-                section of this guide...) 
-
-        A.4.2. Are there any security problems with Bugzilla? 
-
-   5. Bugzilla Email
-
-        A.5.1. I have a user who doesn't want to receive any more email from
-                Bugzilla. How do I stop it entirely for this user? 
-
-        A.5.2. I'm evaluating/testing Bugzilla, and don't want it to send email
-                to anyone but me. How do I do it? 
-
-        A.5.3. I want whineatnews.pl to whine at something other than new and
-                reopened bugs. How do I do it? 
-
-        A.5.4. How do I set up the email interface to submit or change bugs via
-                email? 
-
-        A.5.5. Email takes FOREVER to reach me from Bugzilla -- it's extremely
-                slow. What gives? 
-
-        A.5.6. How come email from Bugzilla changes never reaches me? 
-
-   6. Bugzilla Database
-
-        A.6.1. I think my database might be corrupted, or contain invalid
-                entries. What do I do? 
-
-        A.6.2. I want to manually edit some entries in my database. How? 
-        A.6.3. I think I've set up MySQL permissions correctly, but Bugzilla
-                still can't connect. 
-
-        A.6.4. How do I synchronize bug information among multiple different
-                Bugzilla databases? 
-
-   7. Can Bugzilla run on a Windows server?
-
-        A.7.1. What is the easiest way to run Bugzilla on Win32 (Win98+/NT/2K)?
-                
-        A.7.2. Is there a "Bundle::Bugzilla" equivalent for Win32? 
-        A.7.3. CGI's are failing with a "something.cgi is not a valid Windows
-                NT application" error. Why? 
-
-        A.7.4. I'm having trouble with the perl modules for NT not being able
-                to talk to the database. 
-
-   8. Bugzilla Usage
-
-        A.8.1. How do I change my user name (email address) in Bugzilla? 
-        A.8.2. The query page is very confusing. Isn't there a simpler way to
-                query? 
-
-        A.8.3. I'm confused by the behavior of the "Accept" button in the Show
-                Bug form. Why doesn't it assign the bug to me when I accept it?
-                
-        A.8.4. I can't upload anything into the database via the "Create
-                Attachment" link. What am I doing wrong? 
-
-        A.8.5. How do I change a keyword in Bugzilla, once some bugs are using
-                it? 
-
-        A.8.6. Why can't I close bugs from the "Change Several Bugs at Once"
-                page? 
-
-   9. Bugzilla Hacking
-
-        A.9.1. What kind of style should I use for templatization? 
-        A.9.2. What bugs are in Bugzilla right now? 
-        A.9.3. How can I change the default priority to a null value? For
-                instance, have the default priority be "---" instead of "P2"? 
-
-        A.9.4. What's the best way to submit patches? What guidelines should I
-                follow? 
-
-1. General Questions
-
-   A.1.1. Can I try out Bugzilla somewhere?
-
-   If you want to take a test ride, there are test installations at
-   http://landfill.bugzilla.org/, ready to play with directly from your
-   browser.
-
-   A.1.2. What license is Bugzilla distributed under?
-
-   Bugzilla is covered by the Mozilla Public License. See details at
-   http://www.mozilla.org/MPL/.
-
-   A.1.3. How do I get commercial support for Bugzilla?
-
-   http://www.bugzilla.org/support/consulting.html is a list of companies and
-   individuals who have asked us to list them as consultants for Bugzilla.
-
-   There are several experienced Bugzilla hackers on the mailing list/newsgroup
-   who are willing to make themselves available for generous compensation. Try
-   sending a message to the mailing list asking for a volunteer.
-
-   A.1.4. What major companies or projects are currently using Bugzilla for
-   bug-tracking?
-
-   There are dozens of major companies with public Bugzilla sites to track bugs
-   in their products. We have a fairly complete list available on our website
-   at http://bugzilla.org/installation-list/. If you have an installation of
-   Bugzilla and would like to be added to the list, whether it's a public
-   install or not, simply e-mail Gerv <gerv@mozilla.org>.
-
-   A.1.5. Who maintains Bugzilla?
-
-   A core team, led by Dave Miller (justdave@bugzilla.org).
-
-   A.1.6. How does Bugzilla stack up against other bug-tracking databases?
-
-   We can't find any head-to-head comparisons of Bugzilla against other
-   defect-tracking software. If you know of one, please get in touch. In the
-   experience of Matthew Barnson (the original author of this FAQ), though,
-   Bugzilla offers superior performance on commodity hardware, better price
-   (free!), more developer-friendly features (such as stored queries, email
-   integration, and platform independence), improved scalability, greater
-   flexibility, and superior ease-of-use when compared to commercial
-   bug-tracking software.
-
-   If you happen to be a vendor for commercial bug-tracking software, and would
-   like to submit a list of advantages your product has over Bugzilla, simply
-   send it to <documentation@bugzilla.org> and we'd be happy to include the
-   comparison in our documentation.
-
-   A.1.7. Why doesn't Bugzilla offer this or that feature or compatibility with
-   this other tracking software?
-
-   It may be that the support has not been built yet, or that you have not yet
-   found it. While Bugzilla makes strides in usability, customizability,
-   scalability, and user interface with each release, that doesn't mean it
-   can't still use improvement!
-
-   The best way to make an enhancement request is to file a bug at
-   bugzilla.mozilla.org and set the Severity to 'enhancement'. Your 'request
-   for enhancement' (RFE) will start out in the UNCONFIRMED state, and will
-   stay there until someone with the ability to CONFIRM the bug reviews it. If
-   that person feels it to be a good request that fits in with Bugzilla's
-   overall direction, the status will be changed to NEW; if not, they will
-   probably explain why and set the bug to RESOLVED/WONTFIX. If someone else
-   has made the same (or almost the same) request before, your request will be
-   marked RESOLVED/DUPLICATE, and a pointer to the previous RFE will be added.
-
-   Even if your RFE gets approved, that doesn't mean it's going to make it
-   right into the next release; there are a limited number of developers, and a
-   whole lot of RFEs... some of which are quite complex. If you're a
-   code-hacking sort of person, you can help the project along by making a
-   patch yourself that supports the functionality you require. If you have
-   never contributed anything to Bugzilla before, please be sure to read the
-   Developers' Guide and Contributors' Guide before going ahead.
-
-   A.1.8. What databases does Bugzilla run on?
-
-   MySQL is the default database for Bugzilla. It was originally chosen because
-   it is free, easy to install, and was available for the hardware Netscape
-   intended to run it on.
-
-   As of Bugzilla 2.22, complete support for PostgreSQL is included. With this
-   release using PostgreSQL with Bugzilla should be as stable as using MySQL.
-   If you experience any problems with PostgreSQL compatibility, they will be
-   taken as seriously as if you were running MySQL.
-
-   There are plans to include an Oracle driver for Bugzilla 3.1.2. Track
-   progress at Bug 189947.
-
-   Sybase support was worked on for a time. However, several complicating
-   factors have prevented Sybase support from being realized. There are
-   currently no plans to revive it.
-
-   Bug 237862 is a good bug to read through if you'd like to see what progress
-   is being made on general database compatibility.
-
-   A.1.9. My perl is located at /usr/local/bin/perl and not /usr/bin/perl. Is
-   there an easy to change that in all the files that have this hard-coded?
-
-   The easiest way to get around this is to create a link from one to the
-   other: ln -s /usr/local/bin/perl /usr/bin/perl. If that's not an option for
-   you, the following bit of perl magic will change all the shebang lines (that
-   is to say, the line at the top of each file that starts with '#!' and
-   contains the path) to something else:
-perl -pi -e 's@#\!/usr/bin/perl@#\!/usr/local/bin/perl@' *cgi *pl
-
-   Sadly, this command-line won't work on Windows unless you also have Cygwin.
-   However, MySQL comes with a binary called replace which can do the job:
-C:\mysql\bin\replace "#!/usr/bin/perl" "#!C:\perl\bin\perl" -- *.cgi *.pl
-
-   Note If your perl path is something else again, just follow the above
-      examples and replace /usr/local/bin/perl with your own perl path.
-
-   Once you've modified all your files, you'll also need to modify the
-   t/002goodperl.t test, as it tests that all shebang lines are equal to
-   /usr/bin/perl. (For more information on the test suite, please check out the
-   appropriate section in the Developers' Guide.) Having done this, run the
-   test itself:
-            perl runtests.pl 2 --verbose
-
-   to ensure that you've modified all the relevant files.
-
-   If using Apache on Windows, you can avoid the whole problem by setting the
-   ScriptInterpreterSource directive to 'Registry'. (If using Apache 2 or
-   higher, set it to 'Registry-Strict'.) ScriptInterperterSource requires a
-   registry entry "HKEY_CLASSES_ROOT\.cgi\Shell\ExecCGI\Command" to associate
-   .cgi files with your perl executable. If one does not already exist, create
-   it with a default value of "<full path to perl> -T", e.g.
-   "C:\Perl\bin\perl.exe -T".
-
-   A.1.10. Is there an easy way to change the Bugzilla cookie name?
-
-   At present, no.
-
-   A.1.11. How can Bugzilla be made to work under SELinux?
-
-   As a web application, Bugzilla simply requires its root directory to have
-   the httpd context applied for it to work properly under SELinux. This should
-   happen automatically on distributions that use SELinux and that package
-   Bugzilla (if it is installed with the native package management tools).
-   Information on how to view and change SELinux file contexts can be found at
-   the SELinux FAQ.
-
-2. Managerial Questions
-
-   A.2.1. Is Bugzilla web-based, or do you have to have specific software or a
-   specific operating system on your machine?
-
-   It is web and e-mail based.
-
-   A.2.2. Does Bugzilla allow us to define our own priorities and levels? Do we
-   have complete freedom to change the labels of fields and format of them, and
-   the choice of acceptable values?
-
-   Yes. However, modifying some fields, notably those related to bug
-   progression states, also require adjusting the program logic to compensate
-   for the change.
-
-   As of Bugzilla 3.0 custom fields can be created via the "Custom Fields"
-   admin page.
-
-   A.2.3. Does Bugzilla provide any reporting features, metrics, graphs, etc?
-   You know, the type of stuff that management likes to see. :)
-
-   Yes. Look at https://bugzilla.mozilla.org/report.cgi for samples of what
-   Bugzilla can do in reporting and graphing. Fuller documentation is provided
-   in Section 5.11.
-
-   If you can not get the reports you want from the included reporting scripts,
-   it is possible to hook up a professional reporting package such as Crystal
-   Reports using ODBC. If you choose to do this, beware that giving direct
-   access to the database does contain some security implications. Even if you
-   give read-only access to the bugs database it will bypass the secure bugs
-   features of Bugzilla.
-
-   A.2.4. Is there email notification? If so, what do you see when you get an
-   email?
-
-   Email notification is user-configurable. By default, the bug id and summary
-   of the bug report accompany each email notification, along with a list of
-   the changes made.
-
-   A.2.5. Do users have to have any particular type of email application?
-
-   Bugzilla email is sent in plain text, the most compatible mail format on the
-   planet.
-
-   Note If you decide to use the bugzilla_email integration features to allow
-   Bugzilla to record responses to mail with the associated bug, you may need
-   to caution your users to set their mailer to "respond to messages in the
-   format in which they were sent". For security reasons Bugzilla ignores HTML
-   tags in comments, and if a user sends HTML-based email into Bugzilla the
-      resulting comment looks downright awful.
-
-   A.2.6. Does Bugzilla allow data to be imported and exported? If I had
-   outsiders write up a bug report using a MS Word bug template, could that
-   template be imported into "matching" fields? If I wanted to take the results
-   of a query and export that data to MS Excel, could I do that?
-
-   Bugzilla can output buglists as HTML (the default), CSV or RDF. The link for
-   CSV can be found at the bottom of the buglist in HTML format. This CSV
-   format can easily be imported into MS Excel or other spreadsheet
-   applications.
-
-   To use the RDF format of the buglist it is necessary to append a &ctype=rdf
-   to the URL. RDF is meant to be machine readable and thus it is assumed that
-   the URL would be generated programmatically so there is no user visible link
-   to this format.
-
-   Currently the only script included with Bugzilla that can import data is
-   importxml.pl which is intended to be used for importing the data generated
-   by the XML ctype of show_bug.cgi in association with bug moving. Any other
-   use is left as an exercise for the user.
-
-   There are also scripts included in the contrib/ directory for using e-mail
-   to import information into Bugzilla, but these scripts are not currently
-   supported and included for educational purposes.
-
-   A.2.7. Has anyone converted Bugzilla to another language to be used in other
-   countries? Is it localizable?
-
-   Yes. For more information including available translated templates, see
-   http://www.bugzilla.org/download.html#localizations. Some admin interfaces
-   have been templatized (for easy localization) but many of them are still
-   available in English only. Also, there may be issues with the charset not
-   being declared. See bug 126226 for more information.
-
-   A.2.8. Can a user create and save reports? Can they do this in Word format?
-   Excel format?
-
-   Yes. No. Yes (using the CSV format).
-
-   A.2.9. Are there any backup features provided?
-
-   You should use the backup options supplied by your database platform. Vendor
-   documentation for backing up a MySQL database can be found at
-   http://www.mysql.com/doc/B/a/Backup.html. PostgreSQL backup documentation
-   can be found at http://www.postgresql.org/docs/8.0/static/backup.html.
-
-   A.2.10. What type of human resources are needed to be on staff to install
-   and maintain Bugzilla? Specifically, what type of skills does the person
-   need to have? I need to find out what types of individuals would we need to
-   hire and how much would that cost if we were to go with Bugzilla vs. buying
-   an "out-of-the-box" solution.
-
-   If Bugzilla is set up correctly from the start, continuing maintenance needs
-   are minimal and can be done easily using the web interface.
-
-   Commercial Bug-tracking software typically costs somewhere upwards of
-   $20,000 or more for 5-10 floating licenses. Bugzilla consultation is
-   available from skilled members of the newsgroup. Simple questions are
-   answered there and then.
-
-   A.2.11. What time frame are we looking at if we decide to hire people to
-   install and maintain the Bugzilla? Is this something that takes hours or
-   days to install and a couple of hours per week to maintain and customize, or
-   is this a multi-week install process, plus a full time job for 1 person, 2
-   people, etc?
-
-   It all depends on your level of commitment. Someone with much Bugzilla
-   experience can get you up and running in less than a day, and your Bugzilla
-   install can run untended for years. If your Bugzilla strategy is critical to
-   your business workflow, hire somebody to who has reasonable Perl skills, and
-   a familiarity with the operating system on which Bugzilla will be running,
-   and have them handle your process management, bug-tracking maintenance, and
-   local customization.
-
-   A.2.12. Is there any licensing fee or other fees for using Bugzilla? Any
-   out-of-pocket cost other than the bodies needed as identified above?
-
-   No. Bugzilla, Perl, the Template Toolkit, and all other support software
-   needed to make Bugzilla work can be downloaded for free. MySQL and
-   PostgreSQL -- the databases supported by Bugzilla -- are also open-source.
-   MySQL asks that if you find their product valuable, you purchase a support
-   contract from them that suits your needs.
-
-   A.2.13. We don't like referring to problems as 'bugs'. Can we change that?
-
-   Yes! As of Bugzilla 2.18, it is a simple matter to change the word 'bug'
-   into whatever word/phrase is used by your organization. See the
-   documentation on Customization for more details, specifically Section 6.2.5.
-
-3. Administrative Questions
-
-   A.3.1. Does Bugzilla provide record locking when there is simultaneous
-   access to the same bug? Does the second person get a notice that the bug is
-   in use or how are they notified?
-
-   Bugzilla does not lock records. It provides mid-air collision detection --
-   which means that it warns a user when a commit is about to conflict with
-   commits recently made by another user, and offers the second user a choice
-   of options to deal with the conflict.
-
-   A.3.2. Can users be on the system while a backup is in progress?
-
-   Refer to your database platform documentation for details on how to do hot
-   backups. Vendor documentation for backing up a MySQL database can be found
-   at http://www.mysql.com/doc/B/a/Backup.html. PostgreSQL backup documentation
-   can be found at http://www.postgresql.org/docs/8.0/static/backup.html.
-
-   A.3.3. How can I update the code and the database using CVS?
-
-    1. Make a backup of both your Bugzilla directory and the database. For the
-       Bugzilla directory this is as easy as doing cp -rp bugzilla
-       bugzilla.bak. For the database, there's a number of options - see the
-       MySQL docs and pick the one that fits you best (the easiest is to just
-       make a physical copy of the database on the disk, but you have to have
-       the database server shut down to do that without risking dataloss).
-    2. Make the Bugzilla directory your current directory.
-    3. Use cvs -q update -AdP if you want to update to the tip or cvs -q update
-       -dP -rTAGNAME if you want a specific version (in that case you'll have
-       to replace TAGNAME with a CVS tag name such as BUGZILLA-2_16_5).
-       If you've made no local changes, this should be very clean. If you have
-       made local changes, then watch the cvs output for C results. If you get
-       any lines that start with a C it means there were conflicts between your
-       local changes and what's in CVS. You'll need to fix those manually
-       before continuing.
-    4. After resolving any conflicts that the cvs update operation generated,
-       running ./checksetup.pl will take care of updating the database for you
-       as well as any other changes required for the new version to operate.
-
-      Warning Once you run checksetup.pl, the only way to go back is to restore
-   the database backups. You can't "downgrade" the system cleanly under most
-      circumstances.
-
-   See also the instructions in Section 3.14.3.1.
-
-   A.3.4. How do I make it so that bugs can have an UNCONFIRMED status?
-
-   To use the UNCONFIRMED status, you must have the 'usevotes' parameter set to
-   "On". You must then visit the editproducts.cgi page and set the " Number of
-   votes a bug in this product needs to automatically get out of the
-   UNCONFIRMED state" to be a non-zero number. (You will have to do this for
-   each product that wants to use the UNCONFIRMED state.) If you do not
-   actually want users to be able to vote for bugs entered against this
-   product, leave the "Maximum votes per person" value at '0'.
-
-   There is work being done to decouple the UNCONFIRMED state from the
-   'usevotes' parameter for future versions of Bugzilla. Follow the discussion
-   and progress at bug 162060.
-
-   A.3.5. How do I move a Bugzilla installation from one machine to another?
-
-   Reference your database vendor's documentation for information on backing up
-   and restoring your Bugzilla database on to a different server. Vendor
-   documentation for backing up a MySQL database can be found at
-   http://dev.mysql.com/doc/mysql/en/mysqldump.html. PostgreSQL backup
-   documentation can be found at
-   http://www.postgresql.org/docs/8.0/static/backup.html.
-
-   On your new machine, follow the instructions found in Chapter 2 as far as
-   setting up the physical environment of the new machine with perl, webserver,
-   modules, etc. Having done that, you can either: copy your entire Bugzilla
-   directory from the old machine to a new one (if you want to keep your
-   existing code and modifications), or download a newer version (if you are
-   planning to upgrade at the same time). Even if you are upgrading to clean
-   code, you will still want to bring over the localconfig file, and the data
-   directory from the old machine, as they contain configuration information
-   that you probably won't want to re-create.
-
-   Note If the hostname or port number of your database server changed as part
-   of the move, you'll need to update the appropriate variables in localconfig
-      before taking the next step.
-
-   Once you have your code in place, and your database has been restored from
-   the backup you made in step 1, run checksetup.pl. This will upgrade your
-   database (if necessary), rebuild your templates, etc.
-
-   A.3.6. How do I make a new Bugzilla administrator? The previous
-   administrator is gone...
-
-   Run checksetup.pl with --make-admin option. Its usage is
-   --make-admin=user@example.org. The user account must be exist in the
-   Bugzilla database.
-
-4. Bugzilla Security
-
-   A.4.1. How do I completely disable MySQL security if it's giving me
-   problems? (I've followed the instructions in the installation section of
-   this guide...)
-
-   You can run MySQL like this: mysqld --skip-grant-tables. However, doing so
-   disables all MySQL security. This is a bad idea. Please consult Section 4.2
-   of this guide and the MySQL documentation for better solutions.
-
-   A.4.2. Are there any security problems with Bugzilla?
-
-   The Bugzilla code has undergone a reasonably complete security audit, and
-   user-facing CGIs run under Perl's taint mode. However, it is recommended
-   that you closely examine permissions on your Bugzilla installation, and
-   follow the recommended security guidelines found in The Bugzilla Guide.
-
-5. Bugzilla Email
-
-   A.5.1. I have a user who doesn't want to receive any more email from
-   Bugzilla. How do I stop it entirely for this user?
-
-   The user can stop Bugzilla from sending any mail by unchecking all boxes on
-   the 'Edit prefs' -> 'Email settings' page. (As of 2.18,this is made easier
-   by the addition of a 'Disable All Mail' button.) Alternately, you can add
-   their email address to the data/nomail file (one email address per line).
-   This will override their personal preferences, and they will never be sent
-   mail again.
-
-   A.5.2. I'm evaluating/testing Bugzilla, and don't want it to send email to
-   anyone but me. How do I do it?
-
-   To disable email, set the mail_delivery_method parameter to none (2.20 and
-   later), or
-   $enableSendMail
-
-   parameter to '0' in either BugMail.pm (2.18 and later) or processmail (up to
-   2.16.x).
-
-   Note Up to 2.16.x, changing
-   $enableSendMail
-
-   will only affect bugmail; email related to password changes, email address
-   changes, bug imports, flag changes, etc. will still be sent out. As of the
-   final release of 2.18, however, the above step will disable all mail sent
-   from Bugzilla for any purpose.
-
-   To have bugmail (and only bugmail) redirected to you instead of its intended
-   recipients, leave
-   $enableSendMail
-
-   alone; instead, edit the "newchangedmail" parameter as follows:
-
-     * Replace "To:" with "X-Real-To:"
-     * Replace "Cc:" with "X-Real-CC:"
-     * Add a "To: %lt;your_email_address>"
-
-   A.5.3. I want whineatnews.pl to whine at something other than new and
-   reopened bugs. How do I do it?
-
-   For older versions of Bugzilla, you may be able to apply Klaas Freitag's
-   patch for "whineatassigned", which can be found in bug 6679. Note that this
-   patch was made in 2000, so it may take some work to apply cleanly to any
-   releases of Bugzilla newer than that, but you can use it as a starting
-   point.
-
-   An updated (and much-expanded) version of this functionality is due to be
-   released as part of Bugzilla 2.20; see bug 185090 for the discussion, and
-   for more up-to-date patches if you just can't wait.
-
-   A.5.4. How do I set up the email interface to submit or change bugs via
-   email?
-
-   Bugzilla 3.0 and later offers the ability submit or change bugs via email,
-   using the email_in.pl script within the root directory of the Bugzilla
-   installation. More information on the script can be found in
-   docs/html/api/email_in.html.
-
-   A.5.5. Email takes FOREVER to reach me from Bugzilla -- it's extremely slow.
-   What gives?
-
-   If you are using sendmail, try enabling sendmailnow in editparams.cgi. For
-   earlier versions of sendmail, one could achieve significant performance
-   improvement in the UI (at the cost of delaying the sending of mail) by
-   setting this parameter to off. Sites with sendmail version 8.12 (or higher)
-   should leave this on, as they will not see any performance benefit.
-
-   If you are using an alternate MTA, make sure the options given in
-   Bugzilla/BugMail.pm and any other place where sendmail is called are correct
-   for your MTA.
-
-   A.5.6. How come email from Bugzilla changes never reaches me?
-
-   Double-check that you have not turned off email in your user preferences.
-   Confirm that Bugzilla is able to send email by visiting the "Log In" link of
-   your Bugzilla installation and clicking the "Submit Request" button after
-   entering your email address.
-
-   If you never receive mail from Bugzilla, chances are you do not have
-   sendmail in "/usr/lib/sendmail". Ensure sendmail lives in, or is symlinked
-   to, "/usr/lib/sendmail".
-
-   If you are using an MTA other than sendmail the sendmailnow param must be
-   set to on or no mail will be sent.
-
-6. Bugzilla Database
-
-   A.6.1. I think my database might be corrupted, or contain invalid entries.
-   What do I do?
-
-   Run the "sanity check" utility (sanitycheck.cgi) from your web browser to
-   see! If it finishes without errors, you're probably OK. If it doesn't come
-   back OK (i.e. any red letters), there are certain things Bugzilla can
-   recover from and certain things it can't. If it can't auto-recover, I hope
-   you're familiar with mysqladmin commands or have installed another way to
-   manage your database. Sanity Check, although it is a good basic check on
-   your database integrity, by no means is a substitute for competent database
-   administration and avoiding deletion of data. It is not exhaustive, and was
-   created to do a basic check for the most common problems in Bugzilla
-   databases.
-
-   A.6.2. I want to manually edit some entries in my database. How?
-
-   There is no facility in Bugzilla itself to do this. It's also generally not
-   a smart thing to do if you don't know exactly what you're doing. If you
-   understand SQL, though, you can use the mysql or psql command line utilities
-   to manually insert, delete and modify table information. There are also more
-   intuitive GUI clients available for both MySQL and PostgreSQL. For MySQL, we
-   recommend phpMyAdmin.
-
-   Remember, backups are your friend. Everyone makes mistakes, and it's nice to
-   have a safety net in case you mess something up.
-
-   A.6.3. I think I've set up MySQL permissions correctly, but Bugzilla still
-   can't connect.
-
-   Try running MySQL from its binary: mysqld --skip-grant-tables. This will
-   allow you to completely rule out grant tables as the cause of your
-   frustration. If this Bugzilla is able to connect at this point then you need
-   to check that you have granted proper permission to the user password combo
-   defined in localconfig.
-
-   Warning Running MySQL with this command line option is very insecure and
-   should only be done when not connected to the external network as a
-   troubleshooting step. Please do not run your production database in this
-      mode.
-
-   You may also be suffering from a client version mismatch:
-
-   MySQL 4.1 and up uses an authentication protocol based on a password hashing
-   algorithm that is incompatible with that used by older clients. If you
-   upgrade the server to 4.1, attempts to connect to it with an older client
-   may fail with the following message:
-
-shell> mysql
-            Client does not support authentication protocol requested
-            by server; consider upgrading MySQL client
-
-   To solve this problem, you should use one of the following approaches:
-
-     * Upgrade all client programs to use a 4.1.1 or newer client library.
-     * When connecting to the server with a pre-4.1 client program, use an
-       account that still has a pre-4.1-style password.
-     * Reset the password to pre-4.1 style for each user that needs to use a
-       pre-4.1 client program. This can be done using the SET PASSWORD
-       statement and the OLD_PASSWORD() function:
-
-                    mysql> SET PASSWORD FOR
-                        -> ' some_user '@' some_host ' = OLD_PASSWORD(' newpwd
-   ');
-
-   A.6.4. How do I synchronize bug information among multiple different
-   Bugzilla databases?
-
-   Well, you can synchronize or you can move bugs. Synchronization will only
-   work one way -- you can create a read-only copy of the database at one site,
-   and have it regularly updated at intervals from the main database.
-
-   MySQL has some synchronization features built-in to the latest releases. It
-   would be great if someone looked into the possibilities there and provided a
-   report to the newsgroup on how to effectively synchronize two Bugzilla
-   installations.
-
-   If you simply need to transfer bugs from one Bugzilla to another, checkout
-   the "move.pl" script in the Bugzilla distribution.
-
-7. Can Bugzilla run on a Windows server?
-
-   A.7.1. What is the easiest way to run Bugzilla on Win32 (Win98+/NT/2K)?
-
-   Making Bugzilla work easily with Windows was one of the major goals of the
-   2.18 milestone. If the necessary components are in place (perl, a webserver,
-   an MTA, etc.) then installation of Bugzilla on a Windows box should be no
-   more difficult than on any other platform. As with any installation, we
-   recommend that you carefully and completely follow the installation
-   instructions in Section 2.5.1.
-
-   While doing so, don't forget to check out the very excellent guide to
-   Installing Bugzilla on Microsoft Windows written by Byron Jones. Thanks,
-   Byron!
-
-   A.7.2. Is there a "Bundle::Bugzilla" equivalent for Win32?
-
-   Not currently. Bundle::Bugzilla enormously simplifies Bugzilla installation
-   on UNIX systems. If someone can volunteer to create a suitable PPM bundle
-   for Win32, it would be appreciated.
-
-   A.7.3. CGI's are failing with a "something.cgi is not a valid Windows NT
-   application" error. Why?
-
-   Depending on what Web server you are using, you will have to configure the
-   Web server to treat *.cgi files as CGI scripts. In IIS, you do this by
-   adding *.cgi to the App Mappings with the <path>\perl.exe %s %s as the
-   executable.
-
-   Microsoft has some advice on this matter, as well:
-
-     "Set application mappings. In the ISM, map the extension for the script
-     file(s) to the executable for the script interpreter. For example, you
-     might map the extension .py to Python.exe, the executable for the Python
-     script interpreter. Note For the ActiveState Perl script interpreter, the
-     extension '.pl' is associated with PerlIS.dll by default. If you want to
-     change the association of .pl to perl.exe, you need to change the
-     application mapping. In the mapping, you must add two percent (%)
-     characters to the end of the pathname for perl.exe, as shown in this
-     example: c:\perl\bin\perl.exe %s %s"
-
-   A.7.4. I'm having trouble with the perl modules for NT not being able to
-   talk to the database.
-
-   Your modules may be outdated or inaccurate. Try:
-
-    1. Hitting http://www.activestate.com/ActivePerl
-    2. Download ActivePerl
-    3. Go to your prompt
-    4. Type 'ppm'
-    5. PPM> install DBI DBD-mysql GD
-
-   I reckon TimeDate comes with the activeperl. You can check the ActiveState
-   site for packages for installation through PPM.
-   http://www.activestate.com/Packages/.
-
-8. Bugzilla Usage
-
-   A.8.1. How do I change my user name (email address) in Bugzilla?
-
-   You can change your email address from the Name and Password section in
-   Preferences. You will be emailed at both the old and new addresses for
-   confirmation. 'Administrative Policies' must have the 'allowemailchange'
-   parameter set to "On".
-
-   A.8.2. The query page is very confusing. Isn't there a simpler way to query?
-
-   The interface was simplified by a UI designer for 2.16. Further suggestions
-   for improvement are welcome, but we won't sacrifice power for simplicity.
-
-   As of 2.18, there is also a 'simpler' search available. At the top of the
-   search page are two links; "Advanced Search" will take you to the familiar
-   full-power/full-complexity search page. The "Find a Specific Bug" link will
-   take you to a much-simplified page where you can pick a product and status
-   (open,closed, or both), then enter words that appear in the bug you want to
-   find. This search will scour the 'Summary' and 'Comment' fields, and return
-   a list of bugs sorted so that the bugs with the most hits/matches are nearer
-   to the top.
-
-   Note Matches in the Summary will 'trump' matches in comments, and bugs with
-   summary-matches will be placed higher in the buglist -- even if a
-      lower-ranked bug has more matches in the comments section.
-
-   Bugzilla uses a cookie to remember which version of the page you visited
-   last, and brings that page up when you next do a search. The default page
-   for new users (or after an upgrade) is the 'simple' search.
-
-   A.8.3. I'm confused by the behavior of the "Accept" button in the Show Bug
-   form. Why doesn't it assign the bug to me when I accept it?
-
-   The current behavior is acceptable to bugzilla.mozilla.org and most users.
-   If you want to change this behavior, though, you have your choice of
-   patches:
-
-   Bug 35195 seeks to add an "...and accept the bug" checkbox to the UI. It has
-   two patches attached to it: attachment 8029 was originally created for
-   Bugzilla 2.12, while attachment 91372 is an updated version for Bugzilla
-   2.16
-   Bug 37613 also provides two patches (against Bugzilla 2.12): one to add a
-   'Take Bug' option, and the other to automatically reassign the bug on
-   'Accept'.
-
-   These patches are all somewhat dated now, and cannot be applied directly,
-   but they are simple enough to provide a guide on how Bugzilla can be
-   customized and updated to suit your needs.
-
-   A.8.4. I can't upload anything into the database via the "Create Attachment"
-   link. What am I doing wrong?
-
-   The most likely cause is a very old browser or a browser that is
-   incompatible with file upload via POST. Download the latest version of your
-   favourite browser to handle uploads correctly.
-
-   A.8.5. How do I change a keyword in Bugzilla, once some bugs are using it?
-
-   In the Bugzilla administrator UI, edit the keyword and it will let you
-   replace the old keyword name with a new one. This will cause a problem with
-   the keyword cache; run sanitycheck.cgi to fix it.
-
-   A.8.6. Why can't I close bugs from the "Change Several Bugs at Once" page?
-
-   Simple answer; you can.
-
-   The logic behind the page checks every bug in the list to determine legal
-   state changes, and then only shows you controls to do things that could
-   apply to every bug on the list. The reason for this is that if you try to do
-   something illegal to a bug, the whole process will grind to a halt, and all
-   changes after the failed one will also fail. Since that isn't a good
-   outcome, the page doesn't even present you with the option.
-
-   In practical terms, that means that in order to mark multiple bugs as
-   CLOSED, then every bug on the page has to be either RESOLVED or VERIFIED
-   already; if this is not the case, then the option to close the bugs will not
-   appear on the page.
-
-   The rationale is that if you pick one of the bugs that's not VERIFIED and
-   try to CLOSE it, the bug change will fail miserably (thus killing any
-   changes in the list after it while doing the bulk change) so it doesn't even
-   give you the choice.
-
-9. Bugzilla Hacking
-
-   A.9.1. What kind of style should I use for templatization?
-
-   Gerv and Myk suggest a 2-space indent, with embedded code sections on their
-   own line, in line with outer tags. Like this:
-<fred>
-[% IF foo %]
-  <bar>
-  [% FOREACH x = barney %]
-    <tr>
-      <td>
-        [% x %]
-      </td>
-    <tr>
-  [% END %]
-[% END %]
-</fred>
-
-   Myk also recommends you turn on PRE_CHOMP in the template initialization to
-   prevent bloating of HTML with unnecessary whitespace.
-
-   Please note that many have differing opinions on this subject, and the
-   existing templates in Bugzilla espouse both this and a 4-space style. Either
-   is acceptable; the above is preferred.
-
-   A.9.2. What bugs are in Bugzilla right now?
-
-   Try this link to view current bugs or requests for enhancement for Bugzilla.
-
-   You can view bugs marked for 3.2 release here. This list includes bugs for
-   the 3.2 release that have already been fixed and checked into CVS. Please
-   consult the Bugzilla Project Page for details on how to check current
-   sources out of CVS so you can have these bug fixes early!
-
-   A.9.3. How can I change the default priority to a null value? For instance,
-   have the default priority be "---" instead of "P2"?
-
-   This is well-documented in bug 49862. Ultimately, it's as easy as adding the
-   "---" priority field to your localconfig file in the appropriate area,
-   re-running checksetup.pl, and then changing the default priority in your
-   browser using editparams.cgi.
-
-   A.9.4. What's the best way to submit patches? What guidelines should I
-   follow?
-
-    1. Enter a bug into bugzilla.mozilla.org for the "Bugzilla" product.
-    2. Upload your patch as a unified diff (having used "diff -u" against the
-       current sources checked out of CVS), or new source file by clicking
-       "Create a new attachment" link on the bug page you've just created, and
-       include any descriptions of database changes you may make, into the bug
-       ID you submitted in step #1. Be sure and click the "Patch" checkbox to
-       indicate the text you are sending is a patch!
-    3. Announce your patch and the associated URL
-       (https://bugzilla.mozilla.org/show_bug.cgi?id=XXXXXX) for discussion in
-       the newsgroup (mozilla.support.bugzilla). You'll get a really good,
-       fairly immediate reaction to the implications of your patch, which will
-       also give us an idea how well-received the change would be.
-    4. If it passes muster with minimal modification, the person to whom the
-       bug is assigned in Bugzilla is responsible for seeing the patch is
-       checked into CVS.
-    5. Bask in the glory of the fact that you helped write the most successful
-       open-source bug-tracking software on the planet :)
-     _________________________________________________________________
-
-Appendix B. Troubleshooting
+Appendix A. Troubleshooting
 
    This section gives solutions to common Bugzilla installation problems. If
    none of the section headings seems to match your problem, read the general
    advice.
      _________________________________________________________________
 
-B.1. General Advice
+A.1. General Advice
 
    If you can't get checksetup.pl to run to completion, it normally explains
    what's wrong and how to fix it. If you can't work it out, or if it's being
@@ -5622,7 +4826,7 @@ B.1. General Advice
    included. To disable error logging, delete or rename the errorlog file.
      _________________________________________________________________
 
-B.2. The Apache web server is not serving Bugzilla pages
+A.2. The Apache web server is not serving Bugzilla pages
 
    After you have run checksetup.pl twice, run testserver.pl
    http://yoursite.yourdomain/yoururl to confirm that your web server is
@@ -5635,7 +4839,7 @@ TEST-OK Webserver is preventing fetch of http://landfill.bugzilla.org/bugzilla-
 tip/localconfig.
      _________________________________________________________________
 
-B.3. I installed a Perl module, but checksetup.pl claims it's not installed!
+A.3. I installed a Perl module, but checksetup.pl claims it's not installed!
 
    This could be caused by one of two things:
 
@@ -5649,7 +4853,7 @@ B.3. I installed a Perl module, but checksetup.pl claims it's not installed!
        is recommended that they be world readable.
      _________________________________________________________________
 
-B.4. DBD::Sponge::db prepare failed
+A.4. DBD::Sponge::db prepare failed
 
    The following error message may appear due to a bug in DBD::mysql (over
    which the Bugzilla team have no control):
@@ -5677,7 +4881,7 @@ B.4. DBD::Sponge::db prepare failed
    (note the S added to NAME.)
      _________________________________________________________________
 
-B.5. cannot chdir(/var/spool/mqueue)
+A.5. cannot chdir(/var/spool/mqueue)
 
    If you are installing Bugzilla on SuSE Linux, or some other distributions
    with "paranoid" security options, it is possible that the checksetup.pl
@@ -5690,7 +4894,7 @@ B.5. cannot chdir(/var/spool/mqueue)
    /var/spool/mqueue directory.
      _________________________________________________________________
 
-B.6. Everybody is constantly being forced to relogin
+A.6. Everybody is constantly being forced to relogin
 
    The most-likely cause is that the "cookiepath" parameter is not set
    correctly in the Bugzilla configuration. You can change this (if you're a
@@ -5715,7 +4919,7 @@ B.6. Everybody is constantly being forced to relogin
    cookiepath set to "/", or to a sufficiently-high enough directory that all
    of the involved apps can see the cookies.
 
-   Example B-1. Examples of urlbase/cookiepath pairs for sharing login cookies
+   Example A-1. Examples of urlbase/cookiepath pairs for sharing login cookies
 
              urlbase is http://bugzilla.mozilla.org/
              cookiepath is /
@@ -5730,7 +4934,7 @@ B.6. Everybody is constantly being forced to relogin
    restricted enough so that the different Bugzillas don't confuse their
    cookies with one another.
 
-   Example B-2. Examples of urlbase/cookiepath pairs to restrict the login
+   Example A-2. Examples of urlbase/cookiepath pairs to restrict the login
    cookie
 
              urlbase is http://landfill.bugzilla.org/bugzilla-tip/
@@ -5744,7 +4948,7 @@ B.6. Everybody is constantly being forced to relogin
    browser (this is true starting with Bugzilla 2.18 and Bugzilla 2.16.5).
      _________________________________________________________________
 
-B.7. Some users are constantly being forced to relogin
+A.7. Some users are constantly being forced to relogin
 
    First, make sure cookies are enabled in the user's browser.
 
@@ -5766,7 +4970,7 @@ B.7. Some users are constantly being forced to relogin
    logged in.
      _________________________________________________________________
 
-B.8. index.cgi doesn't show up unless specified in the URL
+A.8. index.cgi doesn't show up unless specified in the URL
 
    You probably need to set up your web server in such a way that it will serve
    the index.cgi page as an index page.
@@ -5775,7 +4979,7 @@ B.8. index.cgi doesn't show up unless specified in the URL
    the DirectoryIndex line as mentioned in Section 2.2.4.1.
      _________________________________________________________________
 
-B.9. checksetup.pl reports "Client does not support authentication protocol
+A.9. checksetup.pl reports "Client does not support authentication protocol
 requested by server..."
 
    This error is occurring because you are using the new password encryption
@@ -5790,13 +4994,13 @@ requested by server..."
    from the MySQL docs: http://dev.mysql.com/doc/mysql/en/Old_client.html
      _________________________________________________________________
 
-Appendix C. Contrib
+Appendix B. Contrib
 
    There are a number of unofficial Bugzilla add-ons in the
    $BUGZILLA_ROOT/contrib/ directory. This section documents them.
      _________________________________________________________________
 
-C.1. Command-line Search Interface
+B.1. Command-line Search Interface
 
    There are a suite of Unix utilities for searching Bugzilla from the command
    line. They live in the contrib/cmdline directory. There are three files -
@@ -5831,7 +5035,7 @@ C.1. Command-line Search Interface
    text/html -dump
      _________________________________________________________________
 
-C.2. Command-line 'Send Unsent Bug-mail' tool
+B.2. Command-line 'Send Unsent Bug-mail' tool
 
    Within the contrib directory exists a utility with the descriptive (if
    compact) name of sendunsentbugmail.pl. The purpose of this script is,
@@ -5856,9 +5060,9 @@ C.2. Command-line 'Send Unsent Bug-mail' tool
    a cron job) with no parameters.
      _________________________________________________________________
 
-Appendix D. Manual Installation of Perl Modules
+Appendix C. Manual Installation of Perl Modules
 
-D.1. Instructions
+C.1. Instructions
 
    If you need to install Perl modules manually, here's how it's done. Download
    the module using the link given in the next section, and then apply this
@@ -5882,7 +5086,7 @@ bash# make install
           > ppm install <filename.ppd>
      _________________________________________________________________
 
-D.2. Download Locations
+C.2. Download Locations
 
    Note Running Bugzilla on Windows requires the use of ActiveState Perl 5.8.1
    or higher. Some modules already exist in the core distribution of
@@ -5963,7 +5167,7 @@ D.2. Download Locations
    r.pm
      _________________________________________________________________
 
-D.3. Optional Modules
+C.3. Optional Modules
 
    Chart::Base:
 
@@ -6005,7 +5209,7 @@ D.3. Optional Modules
            Documentation: http://www.imagemagick.org/script/resources.php
      _________________________________________________________________
 
-Appendix E. GNU Free Documentation License
+Appendix D. GNU Free Documentation License
 
    Version 1.1, March 2000
 
diff --git a/docs/xml/Bugzilla-Guide.xml b/docs/xml/Bugzilla-Guide.xml
index 43547853fd4ed5ae7134b73889ae9e1492eda9da..e9650c7cb6467e5cf8146bd9308c3847f37f7e3c 100644
--- a/docs/xml/Bugzilla-Guide.xml
+++ b/docs/xml/Bugzilla-Guide.xml
@@ -8,7 +8,6 @@
 <!ENTITY about SYSTEM "about.xml">
 <!ENTITY conventions SYSTEM "conventions.xml">
 <!ENTITY doc-index SYSTEM "index.xml">
-<!ENTITY faq SYSTEM "faq.xml">
 <!ENTITY gfdl SYSTEM "gfdl.xml">
 <!ENTITY glossary SYSTEM "glossary.xml">
 <!ENTITY installation SYSTEM "installation.xml">
@@ -36,10 +35,10 @@
      For a devel release, simple bump bz-ver and bz-date
 -->
 
-<!ENTITY bz-ver "3.1.2">
+<!ENTITY bz-ver "3.1.3">
 <!ENTITY bz-nextver "3.2">
-<!ENTITY bz-date "2007-09-18">
-<!ENTITY current-year "2007">
+<!ENTITY bz-date "2008-02-01">
+<!ENTITY current-year "2008">
 
 <!ENTITY landfillbase "http://landfill.bugzilla.org/bugzilla-tip/">
 <!ENTITY bz "http://www.bugzilla.org/">
@@ -135,9 +134,6 @@
 <!-- Customizing Bugzilla -->
 &customization;
 
-<!-- Appendix: The Frequently Asked Questions -->
-&faq;
-
 <!-- Appendix: Troubleshooting -->
 &troubleshooting;
 
diff --git a/docs/xml/CVS/Entries b/docs/xml/CVS/Entries
index de89bed411aca673c873420f6bdcf8d04d05625b..d5278429d384ae44760842967acaa3a8280f06af 100644
--- a/docs/xml/CVS/Entries
+++ b/docs/xml/CVS/Entries
@@ -1,20 +1,19 @@
-/.cvsignore/1.1/Tue Sep  5 19:00:56 2006//TBUGZILLA-3_1_2
-/Bugzilla-Guide.xml/1.75/Tue Sep 18 23:40:38 2007//TBUGZILLA-3_1_2
-/about.xml/1.26/Thu Aug  2 06:52:32 2007//TBUGZILLA-3_1_2
-/administration.xml/1.73/Thu Aug  2 12:34:21 2007//TBUGZILLA-3_1_2
-/conventions.xml/1.11/Tue Feb 21 21:50:45 2006//TBUGZILLA-3_1_2
-/customization.xml/1.42/Tue Aug 21 20:47:55 2007//TBUGZILLA-3_1_2
-/faq.xml/1.52/Fri Sep  7 20:10:21 2007//TBUGZILLA-3_1_2
-/gfdl.xml/1.11/Tue Feb 21 21:50:45 2006//TBUGZILLA-3_1_2
-/glossary.xml/1.25/Mon Sep  3 10:12:04 2007//TBUGZILLA-3_1_2
-/index.xml/1.6/Tue Feb 21 21:50:45 2006//TBUGZILLA-3_1_2
-/installation.xml/1.142/Thu Aug  9 12:36:08 2007//TBUGZILLA-3_1_2
-/integration.xml/1.14/Sat Mar 10 02:17:55 2007//TBUGZILLA-3_1_2
-/introduction.xml/1.6/Sun Jul 22 22:25:12 2007//TBUGZILLA-3_1_2
-/modules.xml/1.12/Tue Feb 13 00:19:00 2007//TBUGZILLA-3_1_2
-/patches.xml/1.25/Sun Jul 22 22:25:12 2007//TBUGZILLA-3_1_2
-/requiredsoftware.xml/1.7/Mon Jul 31 22:22:51 2006//TBUGZILLA-3_1_2
-/security.xml/1.18/Mon Sep  3 10:12:04 2007//TBUGZILLA-3_1_2
-/troubleshooting.xml/1.13/Tue Jul 24 18:22:02 2007//TBUGZILLA-3_1_2
-/using.xml/1.70/Sun Jul 22 22:25:12 2007//TBUGZILLA-3_1_2
+/.cvsignore/1.1/Tue Sep  5 19:00:56 2006//TBUGZILLA-3_1_3
+/Bugzilla-Guide.xml/1.77/Sat Feb  2 00:34:20 2008//TBUGZILLA-3_1_3
+/about.xml/1.26/Thu Aug  2 06:52:32 2007//TBUGZILLA-3_1_3
+/administration.xml/1.82/Sun Jan 20 16:47:23 2008//TBUGZILLA-3_1_3
+/conventions.xml/1.12/Mon Jan 21 13:35:31 2008//TBUGZILLA-3_1_3
+/customization.xml/1.43/Sat Jan 19 17:24:36 2008//TBUGZILLA-3_1_3
+/gfdl.xml/1.11/Tue Feb 21 21:50:45 2006//TBUGZILLA-3_1_3
+/glossary.xml/1.25/Mon Sep  3 10:12:04 2007//TBUGZILLA-3_1_3
+/index.xml/1.6/Tue Feb 21 21:50:45 2006//TBUGZILLA-3_1_3
+/installation.xml/1.152/Thu Jan 24 22:35:16 2008//TBUGZILLA-3_1_3
+/integration.xml/1.14/Sat Mar 10 02:17:55 2007//TBUGZILLA-3_1_3
+/introduction.xml/1.6/Sun Jul 22 22:25:12 2007//TBUGZILLA-3_1_3
+/modules.xml/1.12/Tue Feb 13 00:19:00 2007//TBUGZILLA-3_1_3
+/patches.xml/1.25/Sun Jul 22 22:25:12 2007//TBUGZILLA-3_1_3
+/requiredsoftware.xml/1.7/Mon Jul 31 22:22:51 2006//TBUGZILLA-3_1_3
+/security.xml/1.18/Mon Sep  3 10:12:04 2007//TBUGZILLA-3_1_3
+/troubleshooting.xml/1.13/Tue Jul 24 18:22:02 2007//TBUGZILLA-3_1_3
+/using.xml/1.78/Mon Jan 21 21:45:23 2008//TBUGZILLA-3_1_3
 D
diff --git a/docs/xml/CVS/Tag b/docs/xml/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/docs/xml/CVS/Tag
+++ b/docs/xml/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/docs/xml/administration.xml b/docs/xml/administration.xml
index 9c85248a5cc94f92e7d7220d0caa8011aa7278a9..6a692c2640eefe9c9e77041334e915a5cd636741 100644
--- a/docs/xml/administration.xml
+++ b/docs/xml/administration.xml
@@ -355,25 +355,33 @@
         <para>
           If you have <quote>editusers</quote> privileges or if you are allowed
           to grant privileges for some groups, the <quote>Users</quote> link
-          appears in the footer.
+          will appear in the Administration page.
         </para>
 
         <para>
-          The first screen you get is a search form to search for existing user
-          accounts. You can run searches based either on the ID, real name or
-          login name (i.e. the email address in most cases) of users. You can
-          search in different ways the listbox to the right of the text entry
+          The first screen is a search form to search for existing user
+          accounts. You can run searches based either on the user ID, real
+          name or login name (i.e. the email address, or just the first part
+          of the email address if the "emailsuffix" parameter is set).
+          The search can be conducted
+          in different ways using the listbox to the right of the text entry
           box. You can match by case-insensitive substring (the default),
           regular expression, a <emphasis>reverse</emphasis> regular expression
-          match, which finds every user name which does NOT match the regular
-          expression, or the exact string if you know exactly who you are looking for.
+          match (which finds every user name which does NOT match the regular
+          expression), or the exact string if you know exactly who you are
+          looking for. The search can be restricted to users who are in a
+          specific group. By default, the restriction is turned off.
         </para>
 
         <para>
-          You can also restrict your search to users being in some specific group.
-          By default, the restriction is turned off. Then you get a list of
-          users matching your criteria, and clicking their login name lets you
-          edit their properties.
+          The search returns a list of
+          users matching your criteria. User properties can be edited by clicking
+          the login name. The Account History of a user can be viewed by clicking
+          the "View" link in the Account History column. The Account History
+          displays changes that have been made to the user account, the time of
+          the change and the user who made the change. For example, the Account
+          History page will display details of when a user was added or removed
+          from a group.
         </para>
       </section>
 
@@ -575,11 +583,18 @@
           </listitem>
 
           <listitem>
-            <para>
-            <emphasis>&lt;productname&gt;</emphasis>: 
-            This allows an administrator to specify the products in which 
-            a user can see bugs. The user must still have the 
-            "editbugs" privilege to edit bugs in these products.</para>
+            <para> 
+            <emphasis>&lt;productname&gt;</emphasis>:
+            This allows an administrator to specify the products 
+            in which a user can see bugs. If you turn on the 
+            <quote>makeproductgroups</quote> parameter in
+            the Group Security Panel in the Parameters page, 
+            then Bugzilla creates one group per product (at the time you create 
+            the product), and this group has exactly the same name as the 
+            product itself. Note that for products that already exist when
+            the parameter is turned on, the corresponding group will not be
+            created. The user must still have the <quote>editbugs</quote> 
+            privilege to edit bugs in these products.</para>
           </listitem>
         </itemizedlist>
       </section>
@@ -641,7 +656,7 @@
     </section>
   </section>
 
-  <section id="classifications">
+  <section id="classifications" xreflabel="Classifications">
     <title>Classifications</title>
 
     <para>Classifications tend to be used in order to group several related
@@ -660,52 +675,314 @@
     will also appear in the advanced search form.</para>
   </section>
 
-  <section id="products">
+  <section id="products" xreflabel="Products">
     <title>Products</title>
 
     <para>
     <glossterm linkend="gloss-product" baseform="product">
-    Products</glossterm>
+    Products</glossterm> typically represent real-world
+    shipping products. Products can be given 
+    <xref linkend="classifications"/>. 
+    For example, if a company makes computer games, 
+    they could have a classification of "Games", and a separate
+    product for each game. This company might also have a 
+    <quote>Common</quote> product for units of technology used 
+    in multiple games, and perhaps a few special products that
+    represent items that are not actually shipping products 
+    (for example, "Website", or "Administration").
+    </para>
+
+    <para>
+    Many of Bugzilla's settings are configurable on a per-product
+    basis. The number of <quote>votes</quote> available to 
+    users is set per-product, as is the number of votes
+    required to move a bug automatically from the UNCONFIRMED 
+    status to the NEW status.
+    </para>
+
+    <para>
+    When creating or editing products the following options are
+    available: 
+    </para> 
+
+    <variablelist>
+
+      <varlistentry>
+        <term>
+          Product
+        </term>
+        <listitem>
+          <para> 
+            The name of the product
+          </para>
+        </listitem>
+      </varlistentry>
+
+      <varlistentry>
+        <term>
+          Description
+        </term>
+        <listitem>
+          <para> 
+            A brief description of the product
+          </para>
+        </listitem>
+      </varlistentry>
+
+      <varlistentry>
+        <term>
+          URL describing milestones for this product
+        </term>
+        <listitem>
+          <para> 
+            If there is reference URL, provide it here
+          </para>
+        </listitem>
+      </varlistentry>
+
+      <varlistentry>
+        <term>
+          Default milestone
+        </term>
+        <listitem>
+          <para> 
+            Select the default milestone for this product.
+          </para>
+        </listitem>
+      </varlistentry>
+
+      <varlistentry>
+        <term>
+          Closed for bug entry
+        </term>
+        <listitem>
+          <para> 
+            Select this box to prevent new bugs from being
+            entered against this product.
+          </para>
+        </listitem>
+      </varlistentry>
+
+      <varlistentry>
+        <term>
+          Maximum votes per person
+        </term>
+        <listitem>
+          <para> 
+            Maximum votes a user is allowed to give for this 
+            product
+          </para>
+        </listitem>
+      </varlistentry>
+
+      <varlistentry>
+        <term>
+          Maximum votes a person can put on a single bug
+        </term>
+        <listitem>
+          <para> 
+            Maximum votes a user is allowed to give for this 
+            product in a single bug
+          </para>
+        </listitem>
+      </varlistentry>
 
-    tend to represent real-world
-    shipping products. E.g. if your company makes computer games, 
-    you should have one product per game, perhaps a "Common" product for 
-    units of technology used in multiple games, and maybe a few special
-     products (Website, Administration...)</para>
+      <varlistentry>
+        <term>
+          Confirmation threshold
+        </term>
+        <listitem>
+          <para> 
+            Number of votes needed to automatically remove any
+            bug against this product from the UNCONFIRMED state
+          </para>
+        </listitem>
+      </varlistentry>
+
+      <varlistentry>
+        <term>
+          Version
+        </term>
+        <listitem>
+          <para> 
+            Specify which version of the product bugs will be
+            entered against.
+          </para>
+        </listitem>
+      </varlistentry>
 
-    <para>Many of Bugzilla's settings are configurable on a per-product
-    basis. The number of "votes" available to users is set per-product, 
-    as is the number of votes
-    required to move a bug automatically from the UNCONFIRMED status to the
-    NEW status.</para>
+      <varlistentry>
+        <term>
+          Create chart datasets for this product
+        </term>
+        <listitem>
+          <para> 
+            Select to make chart datasets available for this product.
+          </para>
+        </listitem>
+      </varlistentry>
 
-    <para>To create a new product:</para>
+    </variablelist>
+
+    <para>
+    When editing a product there is also a link to edit
+    <xref linkend="product-group-controls"/>.
+    </para>
+    <para>
+    To create a new product:
+    </para>
 
     <orderedlist>
       <listitem>
-        <para>Select "products" from the footer</para>
+        <para> 
+        Select <quote>Administration</quote> from the footer and then
+        choose <quote>Products</quote> from the main administration page.
+        </para>
+      </listitem>
 
+      <listitem>
+        <para>
+        Select the <quote>Add</quote> link in the bottom right.
+        </para>
       </listitem>
 
       <listitem>
-        <para>Select the "Add" link in the bottom right</para>
+        <para>
+        Enter the name of the product and a description. The
+        Description field may contain HTML.
+        </para>
       </listitem>
 
       <listitem>
-        <para>Enter the name of the product and a description. The
-        Description field may contain HTML.</para>
+        <para>
+        When the product is created, Bugzilla will give a message
+        stating that a component must be created before any bugs can
+        be entered against the new product. Follow the link to create
+        a new component. See <xref linkend="components"/> for more
+        information.
+        </para>
       </listitem>
     </orderedlist>
 
-    <para>Don't worry about the "Closed for bug entry", "Maximum Votes
-    per person", "Maximum votes a person can put on a single bug",
-    "Number of votes a bug in this Product needs to automatically get out
-    of the UNCONFIRMED state", and "Version" options yet. We'll cover
-    those in a few moments.
-    </para>
+
+    <section id="product-group-controls" xreflabel="Group Access Controls">
+      <title>Assigning Group Controls to Products</title>
+      <para> 
+      On the <quote>Product Edit</quote> page, 
+      there is a link called 
+      <quote>Edit Group Access Controls</quote>. 
+      The settings on this page control the relationship 
+      of the groups to the product being edited.
+      </para> 
+      <para>
+      Groups may be applicable, default, and 
+      mandatory for each product. Groups can also control access 
+      to bugs for a given product, or be used to make bugs 
+      for a product totally read-only unless the group 
+      restrictions are met.
+      </para>
+      <para>
+      If any group has <emphasis>Entry</emphasis> selected, then the 
+      product will restrict bug entry to only those users 
+      who are members of all the groups with 
+      <emphasis>Entry</emphasis> selected.
+      </para>
+      <para>
+      If any group has <emphasis>Canedit</emphasis> selected, 
+      then the product will be read-only for any users 
+      who are not members of all of the groups with
+      <emphasis>Canedit</emphasis> selected. ONLY users who 
+      are members of all the <emphasis>Canedit</emphasis> groups 
+      will be able to edit. This is an 
+      additional restriction that further limits 
+      what can be edited by a user.
+      </para>
+      <para>
+      The following settings let you 
+      choose privileges on a <emphasis>per-product basis</emphasis>.
+      This is a convenient way to give privileges to 
+      some users for some products only, without having 
+      to give them global privileges which would affect 
+      all products.
+      </para>
+      <para>
+      Any group having <emphasis>editcomponents</emphasis> 
+      selected  allows users who are in this group to edit all 
+      aspects of this product, including components, milestones 
+      and versions.
+      </para>
+      <para>
+      Any group having <emphasis>canconfirm</emphasis> selected 
+      allows users who are in this group to confirm bugs 
+      in this product.
+      </para>
+      <para>
+      Any group having <emphasis>editbugs</emphasis> selected allows 
+      users who are in this group to edit all fields of 
+      bugs in this product.
+      </para>
+      <para>
+      The <emphasis>MemberControl</emphasis> and 
+      <emphasis>OtherControl</emphasis> fields indicate which 
+      bugs will be placed in this group according 
+      to the following definitions.
+      </para>
+      <para>
+      For each group, it is possible to specify if 
+      membership in that group is:
+      </para>
+      <orderedlist>
+        <listitem>
+          <para>
+          Required for bug entry. 
+          </para>
+        </listitem>
+        <listitem>
+          <para>
+          Not applicable to this product(NA),
+          a possible restriction for a member of the 
+          group to place on a bug in this product(Shown),
+          a default restriction for a member of the 
+          group to place on a bug in this product(Default),
+          or a mandatory restriction to be placed on bugs 
+          in this product(Mandatory).
+          </para>
+        </listitem>
+        <listitem>
+          <para>
+          Not applicable by non-members to this product(NA),
+          a possible restriction for a non-member of the 
+          group to place on a bug in this product(Shown),
+          a default restriction for a non-member of the 
+          group to place on a bug in this product(Default),
+          or a mandatory restriction to be placed on bugs 
+          in this product when entered by a non-member(Mandatory).
+          </para>
+        </listitem>
+        <listitem>
+          <para>
+          Required in order to make <emphasis>any</emphasis> change
+          to bugs in this product <emphasis>including comments.</emphasis>
+          </para>
+        </listitem>
+      </orderedlist>
+      <para>These controls are often described in this order, so a 
+      product that requires a user to be a member of group "foo" 
+      to enter a bug and then requires that the bug stay restricted
+      to group "foo" at all times and that only members of group "foo"
+      can edit the bug even if they otherwise could see the bug would 
+      have its controls summarized by...</para>
+      <programlisting> 
+foo: ENTRY, MANDATORY/MANDATORY, CANEDIT
+      </programlisting>
+      
+    </section>
+
+
+
   </section>
 
-  <section id="components">
+  <section id="components" xreflabel="Components">
     <title>Components</title>
 
     <para>Components are subsections of a Product. E.g. the computer game 
@@ -730,22 +1007,24 @@
 
     <para>To create a new Component:</para>
 
-    <orderedlist>
+   <orderedlist>
       <listitem>
-        <para>Select the "Edit components" link from the "Edit product"
-        page</para>
+        <para>Select the <quote>Edit components</quote> link 
+        from the <quote>Edit product</quote> page</para>
       </listitem>
 
       <listitem>
-        <para>Select the "Add" link in the bottom right.</para>
+        <para>Select the <quote>Add</quote> link in the bottom right.</para>
       </listitem>
 
       <listitem>
-        <para>Fill out the "Component" field, a short "Description", 
-        the "Default Assignee" and "Default QA Contact" (if enabled). 
-        The Component and Description fields may contain HTML; 
-        the "Default Assignee" field must be a login name
-        already existing in the database. 
+        <para>Fill out the <quote>Component</quote> field, a 
+        short <quote>Description</quote>, the 
+        <quote>Default Assignee</quote>, <quote>Default CC List</quote> 
+        and <quote>Default QA Contact</quote> (if enabled). 
+        The <quote>Component Description</quote> field may contain a 
+        limited subset of HTML tags. The <quote>Default Assignee</quote> 
+        field must be a login name already existing in the Bugzilla database. 
         </para>
       </listitem>
     </orderedlist>
@@ -1029,9 +1308,9 @@
      <title>Administering Flags</title>
 
      <para>
-       If you have the <quote>editcomponents</quote> permission, you will
-       have <quote>Edit: ... | Flags | ...</quote> in your page footer.
-       Clicking on that link will bring you to the <quote>Administer 
+       If you have the <quote>editcomponents</quote> permission, you can
+       edit Flag Types from the main administration page. Clicking the
+       <quote>Flags</quote> link will bring you to the <quote>Administer
        Flag Types</quote> page. Here, you can select whether you want 
        to create (or edit) a Bug flag, or an Attachment flag.
      </para>
@@ -1040,6 +1319,15 @@
        just go over it once.
      </para>
 
+     <section id="flags-edit">
+       <title>Editing a Flag</title>
+       <para>
+         To edit a flag's properties, just click on the <quote>Edit</quote>
+         link next to the flag's description. That will take you to the same
+         form as described below (<xref linkend="flags-create"/>).
+       </para>
+     </section>
+
      <section id="flags-create">
        <title>Creating a Flag</title>
        
@@ -1250,21 +1538,36 @@
         </warning>
       </section>
 
-      <section id="flags-edit">
-        <title>Editing a Flag</title>
-        <para>
-          To edit a flag's properties, just click on the <quote>Edit</quote>
-          link next to the flag's description. That will take you to the same
-          form described in the <quote>Creating a Flag</quote> section.
-        </para>
-      </section>
-
     </section> <!-- flags-admin -->
 
     <!-- XXX We should add a "Uses of Flags" section, here, with examples. -->
 
   </section> <!-- flags -->
 
+  <section id="keywords">
+    <title>Keywords</title>
+
+    <para>
+    The administrator can define keywords which can be used to tag and
+    categorise bugs. For example, the keyword "regression" is commonly used.
+    A company might have a policy stating all regressions
+    must be fixed by the next release - this keyword can make tracking those
+    bugs much easier.
+    </para>
+    <para>
+    Keywords are global, rather than per-product. If the administrator changes
+    a keyword currently applied to any bugs, the keyword cache must be rebuilt
+    using the <xref linkend="sanitycheck"/> script. Currently keywords can not
+    be marked obsolete to prevent future usage.
+    </para>
+    <para>
+    Keywords can be created, edited or deleted by clicking the "Keywords"
+    link in the admin page. There are two fields for each keyword - the keyword
+    itself and a brief description. Once created, keywords can be selected
+    and applied to individual bugs in that bug's "Details" section.
+    </para>
+  </section>
+
   <section id="custom-fields">
     <title>Custom Fields</title>
 
@@ -1561,7 +1864,7 @@
         and un-checking the box next to either 'Reporter' or 'CC List' (or both).
       </para>
     </note>
-    <section>
+    <section id="create-groups">
       <title>Creating Groups</title>
       <para>To create Groups:</para>
   
@@ -1617,7 +1920,7 @@
       </orderedlist>
   
     </section>
-    <section>
+    <section id="edit-groups">
       <title>Assigning Users to Groups</title>
       <para>Users can become a member of a group in several ways.</para>
       <orderedlist>
@@ -1636,70 +1939,14 @@
         </listitem>
       </orderedlist>
     </section>
-    
     <section>
-      <title>Assigning Group Controls to Products</title>
-      <para>
-      On the product edit page, there is a page to edit the 
-      <quote>Group Controls</quote> 
-      for a product. This  allows you to 
-      configure how a group relates to the product. 
-      Groups may be applicable, default, 
-      and mandatory as well as used to control entry 
-      or used to make bugs in the product
-      totally read-only unless the group restrictions are met. 
-      </para>
-      
-      <para>
-      For each group, it is possible to specify if membership in that
-      group is...
-      </para>
-      <orderedlist>
-        <listitem>
-          <para>
-          required for bug entry, 
-          </para>
-        </listitem>
-        <listitem>
-          <para>
-          Not applicable to this product(NA),
-          a possible restriction for a member of the 
-          group to place on a bug in this product(Shown),
-          a default restriction for a member of the 
-          group to place on a bug in this product(Default),
-          or a mandatory restriction to be placed on bugs 
-          in this product(Mandatory).
-          </para>
-        </listitem>
-        <listitem>
-          <para>
-          Not applicable by non-members to this product(NA),
-          a possible restriction for a non-member of the 
-          group to place on a bug in this product(Shown),
-          a default restriction for a non-member of the 
-          group to place on a bug in this product(Default),
-          or a mandatory restriction to be placed on bugs 
-          in this product when entered by a non-member(Mandatory).
-          </para>
-        </listitem>
-        <listitem>
-          <para>
-          required in order to make <emphasis>any</emphasis> change
-          to bugs in this product <emphasis>including comments.</emphasis>
-          </para>
-        </listitem>
-      </orderedlist>
-      <para>These controls are often described in this order, so a 
-      product that requires a user to be a member of group "foo" 
-      to enter a bug and then requires that the bug stay restricted
-      to group "foo" at all times and that only members of group "foo"
-      can edit the bug even if they otherwise could see the bug would 
-      have its controls summarized by...</para>
-      <programlisting> 
-foo: ENTRY, MANDATORY/MANDATORY, CANEDIT
-      </programlisting>
-      
+     <title>Assigning Group Controls to Products</title>
+     <para>
+     For information on assigning group controls to
+     products, see <xref linkend="products" />.
+     </para>
     </section>
+    
     <section>
     <title>Common Applications of Group Controls</title>
       <section>
@@ -1770,6 +2017,44 @@ Support: ENTRY, DEFAULT/MANDATORY, CANEDIT
     </section>
   </section>
 
+  <section id="sanitycheck">
+    <title>Checking and Maintaining Database Integrity</title>
+
+    <para>
+    Over time it is possible for the Bugzilla database to become corrupt
+    or to have anomalies.
+    This could happen through normal usage of Bugzilla, manual database
+    administration outside of the Bugzilla user interface, or from some
+    other unexpected event. Bugzilla includes a "Sanity Check" script that
+    can perform several basic database checks, and repair certain problems or
+    inconsistencies. 
+    </para>
+    <para>
+    To run the "Sanity Check" script, log in as an Administrator and click the
+    "Sanity Check" link in the admin page. Any problems that are found will be
+    displayed in red letters. If the script is capable of fixing a problem,
+    it will present a link to initiate the fix. If the script can not
+    fix the problem it will require manual database administration or recovery.
+    </para>
+    <para>
+    The "Sanity Check" script can also be run from the command line via the perl
+    script <filename>sanitycheck.pl</filename>. The script can also be run as
+    a <command>cron</command> job. Results will be delivered by email.
+    </para>
+    <para>
+    The "Sanity Check" script should be run on a regular basis as a matter of
+    best practice.
+    </para>
+    <warning>
+      <para>
+      The "Sanity Check" script is no substitute for a competent database
+      administrator. It is only designed to check and repair basic database
+      problems.
+      </para>
+    </warning>
+
+  </section>
+
   <section id="upgrading">
     <title>Upgrading to New Releases</title>
 
diff --git a/docs/xml/bugzilla.ent b/docs/xml/bugzilla.ent
index ad3d5a5bf20d9fe546c7b2436892f24bcf4014c8..b94f654fa6e6eda880bc3a68c1ed1c00cb4e59f3 100644
--- a/docs/xml/bugzilla.ent
+++ b/docs/xml/bugzilla.ent
@@ -5,7 +5,7 @@
 <!ENTITY min-date-format-ver "2.21">
 <!ENTITY min-file-spec-ver "0.84">
 <!ENTITY min-dbi-ver "1.41">
-<!ENTITY min-template-ver "2.12">
+<!ENTITY min-template-ver "2.15">
 <!ENTITY min-email-send-ver "2.00">
 <!ENTITY min-email-mime-modifier-ver "any">
 <!ENTITY min-gd-ver "1.20">
@@ -27,11 +27,12 @@
 <!ENTITY min-email-reply-ver "any">
 <!ENTITY min-mod_perl2-ver "1.999022">
 <!ENTITY min-cgi-ver "3.11">
-<!ENTITY min-apache-dbi-ver "0.96">
 <!ENTITY min-mp-cgi-ver "3.11">
 
  <!-- Database Versions --> 
 <!ENTITY min-dbd-pg-ver "1.45">
 <!ENTITY min-pg-ver "8.00.0000">
-<!ENTITY min-dbd-mysql-ver "2.9003">
+<!ENTITY min-dbd-mysql-ver "4.00">
 <!ENTITY min-mysql-ver "4.1.2">
+<!ENTITY min-dbd-oracle-ver "1.19">
+<!ENTITY min-oracle-ver "10.01.0">
diff --git a/docs/xml/conventions.xml b/docs/xml/conventions.xml
index 24986d66b4c4d4b7e51e7a663130b2fff90a7d28..70e6624f7e683719ff48aae2756fd80c9c0f94be 100644
--- a/docs/xml/conventions.xml
+++ b/docs/xml/conventions.xml
@@ -20,7 +20,7 @@
 
       <tbody>
         <row>
-          <entry>Warning</entry>
+          <entry>Caution</entry>
 
           <entry>
             <caution>
@@ -30,11 +30,11 @@
         </row>
 
         <row>
-          <entry>Hint</entry>
+          <entry>Hint or Tip</entry>
 
           <entry>
             <tip>
-              <para>Would you like a breath mint?</para>
+              <para>For best results... </para>
             </tip>
           </entry>
         </row>
@@ -50,7 +50,7 @@
         </row>
 
         <row>
-          <entry>Information requiring special attention</entry>
+          <entry>Warning</entry>
 
           <entry>
             <warning>
diff --git a/docs/xml/customization.xml b/docs/xml/customization.xml
index 90d2d620854d14ef1d888b5a4c396904e7a86b21..bb89cb12b76b2d464508e9024a1a47e3956c9c7f 100644
--- a/docs/xml/customization.xml
+++ b/docs/xml/customization.xml
@@ -688,7 +688,7 @@
         versions, and you upgrade.
       </para>
     </warning>
-       
+      
     <para>
       Companies often have rules about which employees, or classes of employees,
       are allowed to change certain things in the bug system. For example, 
@@ -697,6 +697,16 @@
       designed to make it easy for you to write your own custom rules to define
       who is allowed to make what sorts of value transition.
     </para>
+
+    <para>
+     By default, assignees, QA owners and users
+     with <emphasis>editbugs</emphasis> privileges can edit all fields of bugs, 
+     except group restrictions (unless they are members of the groups they 
+     are trying to change). Bug reporters also have the ability to edit some 
+     fields, but in a more restrictive manner. Other users, without 
+     <emphasis>editbugs</emphasis> privileges, can not edit 
+     bugs, except to comment and add themselves to the CC list.
+    </para> 
     
     <para>
       For maximum flexibility, customizing this means editing Bugzilla's Perl 
diff --git a/docs/xml/faq.xml b/docs/xml/faq.xml
deleted file mode 100644
index 22f0144ab75464dcfe51b17d1ebb55e5b1fffa9c..0000000000000000000000000000000000000000
--- a/docs/xml/faq.xml
+++ /dev/null
@@ -1,1659 +0,0 @@
-<!-- <!DOCTYPE appendix PUBLIC "-//OASIS//DTD DocBook V4.1//EN"> -->
-
-<appendix id="faq">
-  <title>The Bugzilla FAQ</title>
-
-  <para>
-    This FAQ includes questions not covered elsewhere in the Guide.
-  </para>
-  
-  <qandaset>
-
-
-    <qandadiv id="faq-general">
-      <title>General Questions</title>
-
-      <qandaentry>
-        <question id="faq-general-tryout">
-          <para>
-            Can I try out Bugzilla somewhere?
-          </para>
-        </question>
-        <answer>
-          <para>
-            If you want to take a test ride, there are test installations
-            at <ulink url="http://landfill.bugzilla.org/"/>,
-            ready to play with directly from your browser.
-          </para>
-        </answer>
-      </qandaentry>
-
-      <qandaentry>
-        <question id="faq-general-license">
-          <para>
-            What license is Bugzilla distributed under?
-          </para>
-        </question>
-        <answer>
-          <para>
-            Bugzilla is covered by the Mozilla Public License.
-            See details at <ulink url="http://www.mozilla.org/MPL/"/>.
-          </para>
-        </answer>
-      </qandaentry>
-
-      <qandaentry>
-        <question id="faq-general-support">
-          <para>
-            How do I get commercial support for Bugzilla?
-          </para>
-        </question>
-        <answer>
-          <para>
-            <ulink url="http://www.bugzilla.org/support/consulting.html"/>
-            is a list of companies and individuals who have asked us to
-            list them as consultants for Bugzilla.
-          </para>
-          <para>
-            There are several experienced
-            Bugzilla hackers on the mailing list/newsgroup who are willing
-            to make themselves available for generous compensation.
-            Try sending a message to the mailing list asking for a volunteer.
-          </para>
-        </answer>
-      </qandaentry>
-
-      <qandaentry>
-        <question id="faq-general-companies">
-          <para>
-            What major companies or projects are currently using Bugzilla
-            for bug-tracking?
-          </para>
-        </question>
-        <answer>
-          <para>
-            There are <emphasis>dozens</emphasis> of major companies with public
-            Bugzilla sites to track bugs in their products. We have a fairly
-            complete list available on our website at
-            <ulink url="http://bugzilla.org/installation-list/"/>. If you
-            have an installation of Bugzilla and would like to be added to the
-            list, whether it's a public install or not, simply e-mail
-            Gerv <email>gerv@mozilla.org</email>.
-          </para>
-        </answer>
-      </qandaentry>
-
-      <qandaentry>
-        <question id="faq-general-maintainers">
-          <para>
-            Who maintains Bugzilla?
-          </para>
-        </question>
-        <answer>
-          <para>
-            A <ulink url="http://www.bugzilla.org/developers/profiles.html">core
-            team</ulink>, led by Dave Miller (justdave@bugzilla.org).
-          </para>
-        </answer>
-      </qandaentry>
-
-      <qandaentry>
-        <question id="faq-general-compare">
-          <para>
-            How does Bugzilla stack up against other bug-tracking databases?
-          </para>
-        </question>
-        <answer>
-          <para>
-            We can't find any head-to-head comparisons of Bugzilla against
-            other defect-tracking software. If you know of one, please get
-            in touch. In the experience of Matthew Barnson (the original
-            author of this FAQ), though, Bugzilla offers superior
-            performance on commodity hardware, better price (free!), more
-            developer-friendly features (such as stored queries, email
-            integration, and platform independence), improved scalability,
-            greater flexibility, and superior ease-of-use when compared
-            to commercial bug-tracking software.
-          </para>
-          <para>
-            If you happen to be a vendor for commercial bug-tracking
-            software, and would like to submit a list of advantages your
-            product has over Bugzilla, simply send it to 
-            <email>documentation@bugzilla.org</email> and we'd be happy to
-            include the comparison in our documentation.
-          </para>
-        </answer>
-      </qandaentry>
-
-      <qandaentry>
-        <question id="faq-general-bzmissing">
-          <para>
-            Why doesn't Bugzilla offer this or that feature or compatibility
-            with this other tracking software?
-          </para>
-        </question>
-        <answer>
-          <para>
-            It may be that the support has not been built yet, or that you
-            have not yet found it. While Bugzilla makes strides in usability,
-            customizability, scalability, and user interface with each release,
-            that doesn't mean it can't still use improvement!
-          </para>
-          <para>
-            The best way to make an enhancement request is to <ulink 
-            url="https://bugzilla.mozilla.org/enter_bug.cgi?product=Bugzilla">file
-            a bug at bugzilla.mozilla.org</ulink> and set the Severity
-            to 'enhancement'. Your 'request for enhancement' (RFE) will
-            start out in the UNCONFIRMED state, and will stay there until
-            someone with the ability to CONFIRM the bug reviews it.
-            If that person feels it to be a good request that fits in with
-            Bugzilla's overall direction, the status will be changed to
-            NEW; if not, they will probably explain why and set the bug
-            to RESOLVED/WONTFIX. If someone else has made the same (or
-            almost the same) request before, your request will be marked
-            RESOLVED/DUPLICATE, and a pointer to the previous RFE will be
-            added.
-          </para>
-          <para>
-            Even if your RFE gets approved, that doesn't mean it's going
-            to make it right into the next release; there are a limited
-            number of developers, and a whole lot of RFEs... some of
-            which are <emphasis>quite</emphasis> complex. If you're a
-            code-hacking sort of person, you can help the project along
-            by making a patch yourself that supports the functionality
-            you require. If you have never contributed anything to
-            Bugzilla before, please be sure to read the 
-            <ulink url="http://www.bugzilla.org/docs/developer.html">Developers' Guide</ulink>
-            and
-            <ulink url="http://www.bugzilla.org/docs/contributor.html">Contributors' Guide</ulink>
-            before going ahead.
-          </para>
-        </answer>
-      </qandaentry>
-
-      <qandaentry>
-        <question id="faq-general-db">
-          <para>
-            What databases does Bugzilla run on?
-          </para>
-        </question>
-        <answer>
-          <para>
-            MySQL is the default database for Bugzilla. It was originally chosen 
-            because it is free, easy to install, and was available for the hardware 
-            Netscape intended to run it on.
-          </para>
-          <para>
-            As of Bugzilla 2.22, complete support for PostgreSQL 
-            is included. With this release using PostgreSQL with Bugzilla 
-            should be as stable as using MySQL. If you experience any problems
-            with PostgreSQL compatibility, they will be taken as
-            seriously as if you were running MySQL.
-          </para>
-          <para>
-            There are plans to include an Oracle driver for Bugzilla 3.1.2. 
-            Track progress at
-            <ulink url="https://bugzilla.mozilla.org/show_bug.cgi?id=189947">
-            Bug 189947</ulink>.
-          </para>
-          <para>
-            Sybase support was worked on for a time. However, several 
-            complicating factors have prevented Sybase support from 
-            being realized. There are currently no plans to revive it.
-          </para>
-          <para>
-            <ulink url="https://bugzilla.mozilla.org/show_bug.cgi?id=237862">
-            Bug 237862</ulink> is a good bug to read through if you'd
-            like to see what progress is being made on general database
-            compatibility.
-          </para>
-        </answer>
-      </qandaentry>
-
-      <qandaentry>
-        <question id="faq-general-perlpath">
-          <para>
-            My perl is located at <filename>/usr/local/bin/perl</filename>
-            and not <filename>/usr/bin/perl</filename>. Is there an easy
-            to change that in all the files that have this hard-coded?
-          </para>
-        </question>
-        <answer>
-          <para>
-            The easiest way to get around this is to create a link from
-            one to the other:
-            <command>ln -s /usr/local/bin/perl /usr/bin/perl</command>.
-            If that's not an option for you, the following bit of perl
-            magic will change all the shebang lines (that is to say,
-            the line at the top of each file that starts with '#!' 
-            and contains the path) to something else:
-          </para>
-          <programlisting>
-perl -pi -e 's@#\!/usr/bin/perl@#\!/usr/local/bin/perl@' *cgi *pl
-          </programlisting>
-          <para>
-            Sadly, this command-line won't work on Windows unless you
-            also have Cygwin. However, MySQL comes with a binary called
-            <command>replace</command> which can do the job:
-          </para>
-          <programlisting>
-C:\mysql\bin\replace "#!/usr/bin/perl" "#!C:\perl\bin\perl" -- *.cgi *.pl
-          </programlisting>
-          <note>
-            <para>
-              If your perl path is something else again, just follow the
-              above examples and replace
-              <filename>/usr/local/bin/perl</filename> with your own perl path.
-            </para>            
-          </note>
-          <para>
-            Once you've modified all your files, you'll also need to modify the
-            <filename>t/002goodperl.t</filename> test, as it tests that all
-            shebang lines are equal to <filename>/usr/bin/perl</filename>.
-            (For more information on the test suite, please check out the 
-            appropriate section in the <ulink
-            url="http://www.bugzilla.org/docs/developer.html#testsuite">Developers'
-            Guide</ulink>.) Having done this, run the test itself:
-            <programlisting>
-            perl runtests.pl 2 --verbose
-            </programlisting>
-            to ensure that you've modified all the relevant files.
-          </para>
-          <para>
-            If using Apache on Windows, you can avoid the whole problem
-            by setting the <ulink
-            url="http://httpd.apache.org/docs-2.0/mod/core.html#scriptinterpretersource">
-            ScriptInterpreterSource</ulink> directive to 'Registry'.
-            (If using Apache 2 or higher, set it to 'Registry-Strict'.)
-            ScriptInterperterSource requires a registry entry
-            <quote>HKEY_CLASSES_ROOT\.cgi\Shell\ExecCGI\Command</quote> to
-            associate .cgi files with your perl executable. If one does
-            not already exist, create it with a default value of
-           <quote>&lt;full path to perl&gt; -T</quote>, e.g.
-           <quote>C:\Perl\bin\perl.exe -T</quote>.
-          </para>
-        </answer>
-      </qandaentry>
-
-      <qandaentry>
-        <question id="faq-general-cookie">
-          <para>
-            Is there an easy way to change the Bugzilla cookie name?
-          </para>
-        </question>
-        <answer>
-          <para>
-            At present, no.
-          </para>
-        </answer>
-      </qandaentry>
-
-      <qandaentry>
-        <question id="faq-general-selinux">
-          <para>
-            How can Bugzilla be made to work under SELinux?
-          </para>
-        </question>
-        <answer>
-          <para>
-            As a web application, Bugzilla simply requires its root
-            directory to have the httpd context applied for it to work
-            properly under SELinux. This should happen automatically
-            on distributions that use SELinux and that package Bugzilla
-            (if it is installed with the native package management tools).
-            Information on how to view and change SELinux file contexts
-            can be found at the 
-            <ulink url="http://docs.fedoraproject.org/selinux-faq-fc5/">
-            SELinux FAQ</ulink>.
-
-          </para>
-        </answer>
-      </qandaentry>
-
-    </qandadiv>
-
-    <qandadiv id="faq-phb">
-      <title>Managerial Questions</title>
-
-      <qandaentry>
-        <question id="faq-phb-client">
-          <para>
-            Is Bugzilla web-based, or do you have to have specific software or
-            a specific operating system on your machine?
-          </para>
-        </question>
-        <answer>
-          <para>
-            It is web and e-mail based.
-          </para>
-        </answer>
-      </qandaentry>
-
-      <qandaentry>
-        <question id="faq-phb-priorities">
-          <para>
-            Does Bugzilla allow us to define our own priorities and levels?
-            Do we have complete freedom to change the labels of fields and
-            format of them, and the choice of acceptable values?
-          </para>
-        </question>
-        <answer>
-          <para>
-            Yes. However, modifying some fields, notably those related to bug
-            progression states, also require adjusting the program logic to
-            compensate for the change.
-          </para>
-          <para>
-            As of Bugzilla 3.0 custom fields can be created via the
-            "Custom Fields" admin page.
-          </para>
-        </answer>
-      </qandaentry>
-
-      <qandaentry>
-        <question id="faq-phb-reporting">
-          <para>
-            Does Bugzilla provide any reporting features, metrics, graphs,
-            etc? You know, the type of stuff that management likes to see. :)
-          </para>
-        </question>
-        <answer>
-          <para>
-            Yes. Look at <ulink url="https://bugzilla.mozilla.org/report.cgi"/>
-            for samples of what Bugzilla can do in reporting and graphing.
-            Fuller documentation is provided in <xref linkend="reporting"/>.
-          </para>
-          <para>
-            If you can not get the reports you want from the included reporting
-            scripts, it is possible to hook up a professional reporting package
-            such as Crystal Reports using ODBC. If you choose to do this,
-            beware that giving direct access to the database does contain some
-            security implications. Even if you give read-only access to the
-            bugs database it will bypass the secure bugs features of Bugzilla.
-          </para>
-        </answer>
-      </qandaentry>
-
-      <qandaentry>
-        <question id="faq-phb-email">
-          <para>
-            Is there email notification? If so, what do you see
-            when you get an email?
-          </para>
-        </question>
-        <answer>
-          <para>
-            Email notification is user-configurable. By default, the bug id
-            and summary of the bug report accompany each email notification,
-            along with a list of the changes made.
-          </para>
-        </answer>
-      </qandaentry>
-
-      <qandaentry>
-        <question id="faq-phb-emailapp">
-          <para>
-            Do users have to have any particular type of email application?
-          </para>
-        </question>
-        <answer>
-          <para>
-            Bugzilla email is sent in plain text, the most compatible
-            mail format on the planet.
-            <note>
-              <para>
-                If you decide to use the bugzilla_email integration features
-                to allow Bugzilla to record responses to mail with the
-                associated bug, you may need to caution your users to set
-                their mailer to <quote>respond to messages in the format in
-                which they were sent</quote>. For security reasons Bugzilla
-                ignores HTML tags in comments, and if a user sends HTML-based
-                email into Bugzilla the resulting comment looks downright awful.
-              </para>
-            </note>
-          </para>
-        </answer>
-      </qandaentry>
-
-      <qandaentry>
-        <question id="faq-phb-data">
-          <para>
-            Does Bugzilla allow data to be imported and exported? If I had
-            outsiders write up a bug report using a MS Word bug template,
-            could that template be imported into <quote>matching</quote>
-            fields? If I wanted to take the results of a query and export
-            that data to MS Excel, could I do that?
-          </para>
-        </question>
-        <answer>
-          <para>
-            Bugzilla can output buglists as HTML (the default), CSV or RDF.
-            The link for CSV can be found at the bottom of the buglist in HTML
-            format. This CSV format can easily be imported into MS Excel or
-            other spreadsheet applications.
-          </para>
-          <para>
-            To use the RDF format of the buglist it is necessary to append a
-            <computeroutput>&amp;ctype=rdf</computeroutput> to the URL. RDF
-            is meant to be machine readable and thus it is assumed that the
-            URL would be generated programmatically so there is no user visible
-            link to this format.
-          </para>
-          <para>
-            Currently the only script included with Bugzilla that can import
-            data is <filename>importxml.pl</filename> which is intended to be
-            used for importing the data generated by the XML ctype of
-            <filename>show_bug.cgi</filename> in association with bug moving.
-            Any other use is left as an exercise for the user.
-          </para>
-          <para>
-            There are also scripts included in the <filename>contrib/</filename>
-            directory for using e-mail to import information into Bugzilla,
-            but these scripts are not currently supported and included for
-            educational purposes.
-          </para>
-        </answer>
-      </qandaentry>
-
-      <qandaentry>
-        <question id="faq-phb-l10n">
-          <para>
-            Has anyone converted Bugzilla to another language to be
-            used in other countries? Is it localizable?
-          </para>
-        </question>
-        <answer>
-          <para>
-            Yes. For more information including available translated templates,
-            see <ulink
-            url="http://www.bugzilla.org/download.html#localizations"/>.
-            Some admin interfaces have been templatized (for easy localization)
-            but many of them are still available in English only. Also, there
-            may be issues with the charset not being declared. See <ulink
-            url="https://bugzilla.mozilla.org/show_bug.cgi?id=126266">bug 126226</ulink>
-            for more information.
-          </para>
-        </answer>
-      </qandaentry>
-
-      <qandaentry>
-        <question id="faq-phb-reports">
-          <para>
-            Can a user create and save reports?
-            Can they do this in Word format? Excel format?
-          </para>
-        </question>
-        <answer>
-          <para>
-            Yes. No. Yes (using the CSV format).
-          </para>
-        </answer>
-      </qandaentry>
-
-      <qandaentry>
-        <question id="faq-phb-backup">
-          <para>
-            Are there any backup features provided?
-          </para>
-        </question>
-        <answer>
-          <para>
-            You should use the backup options supplied by your database platform.  
-            Vendor documentation for backing up a MySQL database can be found at 
-            <ulink url="http://www.mysql.com/doc/B/a/Backup.html"/>. 
-            PostgreSQL backup documentation can be found at
-            <ulink url="http://www.postgresql.org/docs/8.0/static/backup.html"/>.
-          </para>
-        </answer>
-      </qandaentry>
-
-      <qandaentry>
-        <question id="faq-phb-maintenance">
-          <para>
-            What type of human resources are needed to be on staff to install
-            and maintain Bugzilla? Specifically, what type of skills does the
-            person need to have? I need to find out what types of individuals
-            would we need to hire and how much would that cost if we were to
-            go with Bugzilla vs. buying an <quote>out-of-the-box</quote>
-            solution.
-          </para>
-        </question>
-        <answer>
-          <para>
-            If Bugzilla is set up correctly from the start, continuing
-            maintenance needs are minimal and can be done easily using
-            the web interface.
-          </para>
-          <para>
-            Commercial Bug-tracking software typically costs somewhere
-            upwards of $20,000 or more for 5-10 floating licenses. Bugzilla
-            consultation is available from skilled members of the newsgroup.
-            Simple questions are answered there and then.
-          </para>
-        </answer>
-      </qandaentry>
-
-      <qandaentry>
-        <question id="faq-phb-installtime">
-          <para>
-            What time frame are we looking at if we decide to hire people
-            to install and maintain the Bugzilla? Is this something that
-            takes hours or days to install and a couple of hours per week
-            to maintain and customize, or is this a multi-week install process,
-            plus a full time job for 1 person, 2 people, etc?
-          </para>
-        </question>
-        <answer>
-          <para>
-            It all depends on your level of commitment. Someone with much
-            Bugzilla experience can get you up and running in less than a day,
-            and your Bugzilla install can run untended for years. If your
-            Bugzilla strategy is critical to your business workflow, hire
-            somebody to who has reasonable Perl skills, and a familiarity
-            with the operating system on which Bugzilla will be running,
-            and have them handle your process management, bug-tracking
-            maintenance, and local customization.
-          </para>
-        </answer>
-      </qandaentry>
-
-      <qandaentry>
-        <question id="faq-phb-cost">
-          <para>
-            Is there any licensing fee or other fees for using Bugzilla? Any
-            out-of-pocket cost other than the bodies needed as identified above?
-          </para>
-        </question>
-        <answer>
-          <para>
-            No. Bugzilla, Perl, the Template Toolkit, and all other support
-            software needed to make Bugzilla work can be downloaded for free.
-            MySQL and PostgreSQL -- the databases supported by Bugzilla -- 
-            are also open-source. MySQL asks that if you find their product 
-            valuable, you purchase a support contract from them that suits your needs.
-          </para>
-        </answer>
-      </qandaentry>
-
-      <qandaentry>
-        <question id="faq-phb-renameBugs">
-          <para>
-            We don't like referring to problems as 'bugs'. Can we change that?
-          </para>
-        </question>
-        <answer>
-          <para>
-            Yes! As of Bugzilla 2.18, it is a simple matter to change the
-            word 'bug' into whatever word/phrase is used by your organization.
-            See the documentation on Customization for more details,
-            specifically <xref linkend="template-specific"/>.
-          </para>
-        </answer>
-      </qandaentry>
-
-    </qandadiv>
-
-    <qandadiv id="faq-admin">
-      <title>Administrative Questions</title>
-
-      <qandaentry>
-        <question id="faq-admin-midair">
-          <para>
-            Does Bugzilla provide record locking when there is simultaneous
-            access to the same bug? Does the second person get a notice
-            that the bug is in use or how are they notified?
-          </para>
-        </question>
-        <answer>
-          <para>
-            Bugzilla does not lock records. It provides mid-air collision
-            detection -- which means that it warns a user when a commit is
-            about to conflict with commits recently made by another user,
-            and offers the second user a choice of options to deal with
-            the conflict.
-          </para>
-        </answer>
-      </qandaentry>
-
-      <qandaentry>
-        <question id="faq-admin-livebackup">
-          <para>
-            Can users be on the system while a backup is in progress?
-          </para>
-        </question>
-        <answer>
-          <para>
-            Refer to your database platform documentation for details on how to do hot
-            backups.  
-            Vendor documentation for backing up a MySQL database can be found at 
-            <ulink url="http://www.mysql.com/doc/B/a/Backup.html"/>. 
-            PostgreSQL backup documentation can be found at
-            <ulink url="http://www.postgresql.org/docs/8.0/static/backup.html"/>.
-          </para>
-        </answer>
-      </qandaentry>
-
-      <qandaentry>
-        <question id="faq-admin-cvsupdate">
-          <para>
-            How can I update the code and the database using CVS?
-          </para>
-        </question>
-        <answer>
-          <para>
-            <orderedlist>
-              <listitem>
-                <para>
-                  Make a backup of both your Bugzilla directory and the
-                  database. For the Bugzilla directory this is as easy as
-                  doing <command>cp -rp bugzilla bugzilla.bak</command>.
-                  For the database, there's a number of options - see the
-                  MySQL docs and pick the one that fits you best (the easiest
-                  is to just make a physical copy of the database on the disk,
-                  but you have to have the database server shut down to do
-                  that without risking dataloss).
-                </para>
-              </listitem>
-
-              <listitem>
-                <para>
-                  Make the Bugzilla directory your current directory.
-                </para>
-              </listitem>
-
-              <listitem>
-                <para>
-                  Use <command>cvs -q update -AdP</command> if you want to
-                  update to the tip or
-                  <command>cvs -q update -dP -rTAGNAME</command>
-                  if you want a specific version (in that case you'll have to
-                  replace TAGNAME with a CVS tag name such as BUGZILLA-2_16_5).
-                </para>
-
-                <para>
-                  If you've made no local changes, this should be very clean.
-                  If you have made local changes, then watch the cvs output
-                  for C results. If you get any lines that start with a C
-                  it means there  were conflicts between your local changes
-                  and what's in CVS. You'll need to fix those manually before
-                  continuing.
-                </para>
-              </listitem>
-
-              <listitem>
-                <para>
-                  After resolving any conflicts that the cvs update operation
-                  generated, running <command>./checksetup.pl</command> will
-                  take care of updating the database for you as well as any
-                  other changes required for the new version to operate.
-                </para>
-
-                <warning>
-                  <para>
-                    Once you run checksetup.pl, the only way to go back is
-                    to restore the database backups. You can't
-                    <quote>downgrade</quote> the system cleanly under most
-                    circumstances.
-                  </para>
-                </warning>
-              </listitem>
-            </orderedlist>
-          </para>
-          <para>
-            See also the instructions in <xref linkend="upgrade-cvs"/>.
-          </para>
-        </answer>
-      </qandaentry>
-
-      <qandaentry>
-        <question id="faq-admin-enable-unconfirmed">
-          <para>
-            How do I make it so that bugs can have an UNCONFIRMED status?
-          </para>
-        </question>
-        <answer>
-          <para>
-            To use the UNCONFIRMED status, you must have the 'usevotes'
-            parameter set to <quote>On</quote>. You must then visit the
-            <filename>editproducts.cgi</filename> page and set the <quote>
-            Number of votes a bug in this product needs to automatically
-            get out of the UNCONFIRMED state</quote> to be a non-zero number.
-            (You will have to do this for each product that wants to use
-            the UNCONFIRMED state.) If you do not actually want users to be
-            able to vote for bugs entered against this product, leave the
-            <quote>Maximum votes per person</quote> value at '0'.
-          </para>            
-          <para>
-            There is work being done to decouple the UNCONFIRMED state from
-            the 'usevotes' parameter for future versions of Bugzilla.
-            Follow the discussion and progress at <ulink 
-            url="https://bugzilla.mozilla.org/show_bug.cgi?id=162060">bug
-            162060</ulink>.
-          </para>
-        </answer>
-      </qandaentry>
-
-      <qandaentry>
-        <question id="faq-admin-moving">
-          <para>
-            How do I move a Bugzilla installation from one machine to another?
-          </para>
-        </question>
-
-        <answer>
-          <para>
-            Reference your database vendor's documentation for information on 
-            backing up and restoring your Bugzilla database on to a different server.
-            Vendor documentation for backing up a MySQL database can be found at 
-            <ulink url="http://dev.mysql.com/doc/mysql/en/mysqldump.html"/>.
-            PostgreSQL backup documentation can be found at
-            <ulink url="http://www.postgresql.org/docs/8.0/static/backup.html"/>.
-          </para>
-
-          <para>
-            On your new machine, follow the instructions found in <xref 
-            linkend="installing-bugzilla"/> as far as setting up the physical
-            environment of the new machine with perl, webserver, modules, etc. 
-            Having done that, you can either: copy your entire Bugzilla
-            directory from the old machine to a new one (if you want to keep
-            your existing code and modifications), or download a newer version
-            (if you are planning to upgrade at the same time). Even if you are
-            upgrading to clean code, you will still want to bring over the 
-            <filename>localconfig</filename> file, and the 
-            <filename class="directory">data</filename> directory from the
-            old machine, as they contain configuration information that you 
-            probably won't want to re-create.
-          </para>
-
-          <note>
-            <para>
-              If the hostname or port number of your database server changed
-              as part of the move, you'll need to update the appropriate
-              variables in localconfig before taking the next step.
-            </para>
-          </note>
-
-          <para>
-            Once you have your code in place, and your database has
-            been restored from the backup you made in step 1, run
-            <command>checksetup.pl</command>. This will upgrade your
-            database (if necessary), rebuild your templates, etc.
-          </para>
-        </answer>
-      </qandaentry>
-
-      <qandaentry>
-        <question id="faq-admin-makeadmin">
-          <para>
-            How do I make a new Bugzilla administrator?
-            The previous administrator is gone...
-          </para>
-        </question>
-        <answer>
-          <para>
-            Run <command>checksetup.pl</command> with
-            <option>--make-admin</option> option.
-            Its usage is <option>--make-admin=user@example.org</option>.
-            The user account must be exist in the Bugzilla database.
-          </para>
-        </answer>
-      </qandaentry>
-
-    </qandadiv>
-
-    <qandadiv id="faq-security">
-      <title>Bugzilla Security</title>
-      <qandaentry>
-        <question id="faq-security-mysql">
-          <para>
-            How do I completely disable MySQL security if it's giving
-            me problems? (I've followed the instructions in the installation
-            section of this guide...)
-          </para>
-        </question>
-
-        <answer>
-          <para>
-            You can run MySQL like this: <command>mysqld --skip-grant-tables</command>.
-            However, doing so disables all MySQL security. This is a bad idea.
-            Please consult <xref linkend="security-mysql"/> of this guide
-            and the MySQL documentation for better solutions.
-            </para>
-        </answer>
-      </qandaentry>
-      
-      <qandaentry>
-        <question id="faq-security-knownproblems">
-          <para>
-            Are there any security problems with Bugzilla?
-          </para>
-        </question>
-        <answer>
-          <para>
-            The Bugzilla code has undergone a reasonably complete security
-            audit, and user-facing CGIs run under Perl's taint mode. However, 
-            it is recommended that you closely examine permissions on your
-            Bugzilla installation, and follow the recommended security
-            guidelines found in The Bugzilla Guide.
-          </para>
-        </answer>
-      </qandaentry>
-    </qandadiv>
-
-    <qandadiv id="faq-email">
-      <title>Bugzilla Email</title>
-
-      <qandaentry>
-        <question id="faq-email-nomail">
-          <para>
-            I have a user who doesn't want to receive any more email
-            from Bugzilla. How do I stop it entirely for this user?
-          </para>
-        </question>
-        <answer>
-          <para>
-            The user can stop Bugzilla from sending any mail by unchecking
-            all boxes on the 'Edit prefs' -> 'Email settings' page.
-            (As of 2.18,this is made easier by the addition of a 'Disable
-            All Mail' button.) Alternately, you can add their email address
-            to the <filename>data/nomail</filename> file (one email address
-            per line). This will override their personal preferences, and
-            they will never be sent mail again.
-          </para>
-        </answer>
-      </qandaentry>
-
-      <qandaentry>
-        <question id="faq-email-testing">
-          <para>
-            I'm evaluating/testing Bugzilla, and don't want it to send email
-            to anyone but me. How do I do it?
-          </para>
-        </question>
-        <answer>
-          <para>
-            To disable email, set the
-            <option>mail_delivery_method</option> parameter to
-            <literal>none</literal> (2.20 and later), or
-            <programlisting>$enableSendMail</programlisting> parameter to '0'
-            in either <filename>BugMail.pm</filename> (2.18 and later) or 
-            <filename>processmail</filename> (up to 2.16.x).
-          </para>
-          <note>
-            <para>
-              Up to 2.16.x, changing
-              <programlisting>$enableSendMail</programlisting>
-              will only affect bugmail; email related to password changes,
-              email address changes, bug imports, flag changes, etc. will
-              still be sent out. As of the final release of 2.18, however,
-              the above step will disable <emphasis>all</emphasis> mail
-              sent from Bugzilla for any purpose.
-            </para>
-          </note>
-          <para>
-            To have bugmail (and only bugmail) redirected to you instead of
-            its intended recipients, leave
-            <programlisting>$enableSendMail</programlisting> alone;
-            instead, edit the <quote>newchangedmail</quote> parameter
-            as follows:
-          </para>
-          <itemizedlist>
-            <listitem>
-              <para>
-                Replace <quote>To:</quote> with <quote>X-Real-To:</quote>
-              </para>
-            </listitem>
-            <listitem>
-              <para>
-                Replace <quote>Cc:</quote> with <quote>X-Real-CC:</quote>
-              </para>
-            </listitem>
-            <listitem>
-              <para>
-                Add a <quote>To: %lt;your_email_address&gt;</quote>
-              </para>
-            </listitem>
-          </itemizedlist>
-        </answer>
-      </qandaentry>
-
-      <qandaentry>
-        <question id="faq-email-whine">
-          <para>
-            I want whineatnews.pl to whine at something other than new and
-            reopened bugs. How do I do it?
-          </para>
-        </question>
-        <answer>
-          <para>
-            For older versions of Bugzilla, you may be able to apply 
-            Klaas Freitag's patch for <quote>whineatassigned</quote>,
-            which can be found in
-            <ulink url="https://bugzilla.mozilla.org/show_bug.cgi?id=6679">bug
-            6679</ulink>. Note that this patch was made in 2000, so it may take
-            some work to apply cleanly to any releases of Bugzilla newer than
-            that, but you can use it as a starting point.
-          </para>
-
-          <para>
-            An updated (and much-expanded) version of this functionality is
-            due to be released as part of Bugzilla 2.20; see 
-            <ulink url="https://bugzilla.mozilla.org/show_bug.cgi?id=185090">bug
-            185090</ulink> for the discussion, and for more up-to-date patches
-            if you just can't wait.
-          </para>
-        </answer>
-      </qandaentry>
-
-      <qandaentry>
-        <question id="faq-email-in">
-          <para>
-            How do I set up the email interface to submit or change bugs via email?
-          </para>
-        </question>
-        <answer>
-          <para>
-            Bugzilla 3.0 and later offers the ability submit or change
-            bugs via email, using the <filename>email_in.pl</filename>
-            script within the root directory of the Bugzilla installation.
-            More information on the script can be found in
-            <ulink url="api/email_in.html">docs/html/api/email_in.html</ulink>.
-          </para>
-        </answer>
-      </qandaentry>
-
-      <qandaentry>
-        <question id="faq-email-sendmailnow">
-          <para>
-            Email takes FOREVER to reach me from Bugzilla -- it's
-            extremely slow. What gives?
-          </para>
-        </question>
-        <answer>
-          <para>
-            If you are using <application>sendmail</application>, try
-            enabling <option>sendmailnow</option> in
-            <filename>editparams.cgi</filename>. For earlier versions of
-            <application>sendmail</application>, one could achieve
-            significant performance improvement in the UI (at the cost of
-            delaying the sending of mail) by setting this parameter to
-            <literal>off</literal>. Sites with
-            <application>sendmail</application> version 8.12 (or higher)
-            should leave this <literal>on</literal>, as they will not see
-            any performance benefit.
-          </para>
-          <para>
-            If you are using an alternate
-            <glossterm linkend="gloss-mta">MTA</glossterm>, make sure the
-            options given in <filename>Bugzilla/BugMail.pm</filename>
-            and any other place where <application>sendmail</application>
-            is called are correct for your MTA.
-          </para>
-        </answer>
-      </qandaentry>
-
-      <qandaentry>
-        <question id="faq-email-nonreceived">
-          <para>
-             How come email from Bugzilla changes never reaches me?
-          </para>
-        </question>
-        <answer>
-          <para>
-            Double-check that you have not turned off email in your user
-            preferences. Confirm that Bugzilla is able to send email by
-            visiting the <quote>Log In</quote> link of your Bugzilla
-            installation and clicking the <quote>Submit Request</quote>
-            button after entering your email address.
-          </para>
-          <para>
-            If you never receive mail from Bugzilla, chances are you do
-            not have sendmail in "/usr/lib/sendmail". Ensure sendmail
-            lives in, or is symlinked to, "/usr/lib/sendmail".
-          </para>
-          <para>
-            If you are using an MTA other than
-            <application>sendmail</application> the
-            <option>sendmailnow</option> param must be set to
-            <literal>on</literal> or no mail will be sent.
-          </para>
-        </answer>
-      </qandaentry>
-    </qandadiv>
-
-    <qandadiv id="faq-db">
-      <title>Bugzilla Database</title>
-
-      <qandaentry>
-        <question id="faq-db-corrupted">
-          <para>
-            I think my database might be corrupted, or contain
-            invalid entries. What do I do?
-          </para>
-        </question>
-        <answer>
-          <para>
-            Run the <quote>sanity check</quote> utility
-            (<filename>sanitycheck.cgi</filename>) from your web browser
-            to see! If it finishes without errors, you're
-            <emphasis>probably</emphasis> OK. If it doesn't come back
-            OK (i.e. any red letters), there are certain things
-            Bugzilla can recover from and certain things it can't. If
-            it can't auto-recover, I hope you're familiar with
-            mysqladmin commands or have installed another way to
-            manage your database. Sanity Check, although it is a good
-            basic check on your database integrity, by no means is a
-            substitute for competent database administration and
-            avoiding deletion of data. It is not exhaustive, and was
-            created to do a basic check for the most common problems
-            in Bugzilla databases.
-          </para>
-        </answer>
-      </qandaentry>
-
-      <qandaentry>
-        <question id="faq-db-manualedit">
-          <para>
-            I want to manually edit some entries in my database. How?
-          </para>
-        </question>
-        <answer>
-          <para>
-            There is no facility in Bugzilla itself to do this. It's also
-            generally not a smart thing to do if you don't know exactly what
-            you're doing. If you understand SQL, though, you can use the
-            <command>mysql</command> or <command>psql</command> command line 
-            utilities to manually insert, delete and modify table information. 
-            There are also more intuitive GUI clients available for both MySQL 
-            and PostgreSQL. For MySQL, we recommend
-            <ulink url="http://www.phpmyadmin.net/">phpMyAdmin</ulink>.
-          </para>
-
-          <para>
-            Remember, backups are your friend. Everyone makes mistakes, and
-            it's nice to have a safety net in case you mess something up.
-          </para>
-
-        </answer>
-      </qandaentry>
-
-      <qandaentry>
-        <question id="faq-db-permissions">
-          <para>
-            I think I've set up MySQL permissions correctly, but Bugzilla still
-            can't connect.
-          </para>
-        </question>
-        <answer>
-          <para>
-            Try running MySQL from its binary:
-            <command>mysqld --skip-grant-tables</command>.
-            This will allow you to completely rule out grant tables as the
-            cause of your frustration. If this Bugzilla is able to connect
-            at this point then you need to check that you have granted proper
-            permission to the user password combo defined in
-            <filename>localconfig</filename>.
-          </para>
-          <warning>
-            <para>
-              Running MySQL with this command line option is very insecure and
-              should only be done when not connected to the external network
-              as a troubleshooting step.  Please do not run your production
-              database in this mode.
-            </para>
-          </warning>
-          <para>
-            You may also be suffering from a client version mismatch:
-          </para>
-          <para>
-            MySQL 4.1 and up uses an authentication protocol based on
-            a password hashing algorithm that is incompatible with that
-            used by older clients. If you upgrade the server to 4.1,
-            attempts to connect to it with an older client may fail
-            with the following message:
-          </para>
-          <para>
-            <screen><prompt>shell&gt;</prompt> mysql
-            Client does not support authentication protocol requested
-            by server; consider upgrading MySQL client
-            </screen>
-          </para>
-          <para>
-            To solve this problem, you should use one of the following
-            approaches:
-          </para>
-          <para>
-            <itemizedlist>
-              <listitem>
-                <para>
-                  Upgrade all client programs to use a 4.1.1 or newer
-                  client library.
-                </para>
-              </listitem>
-              <listitem>
-                <para>
-                  When connecting to the server with a pre-4.1 client
-                  program, use an account that still has a
-                  pre-4.1-style password.
-                </para>
-              </listitem>
-              <listitem>
-                <para>
-                  Reset the password to pre-4.1 style for each user
-                  that needs to use a pre-4.1 client program.
-                  This can be done using the SET PASSWORD statement
-                  and the OLD_PASSWORD() function:
-                  <screen>
-                    <prompt>mysql&gt;</prompt> SET PASSWORD FOR
-                    <prompt>    -&gt;</prompt> ' some_user '@' some_host ' = OLD_PASSWORD(' newpwd ');
-                  </screen>
-                </para>
-              </listitem>
-            </itemizedlist>
-            
-          </para>
-
-
-          <para>
-          </para>
-
-        </answer>
-      </qandaentry>
-
-      <qandaentry>
-        <question id="faq-db-synchronize">
-          <para>
-            How do I synchronize bug information among multiple
-            different Bugzilla databases?
-          </para>
-        </question>
-        <answer>
-          <para>
-            Well, you can synchronize or you can move bugs.
-            Synchronization will only work one way -- you can create
-            a read-only copy of the database at one site, and have it
-            regularly updated at intervals from the main database.
-          </para>
-          <para>
-            MySQL has some synchronization features built-in to the
-            latest releases. It would be great if someone looked into
-            the possibilities there and provided a report to the
-            newsgroup on how to effectively synchronize two Bugzilla
-            installations.
-          </para>
-          <para>
-            If you simply need to transfer bugs from one Bugzilla to another,
-            checkout the <quote>move.pl</quote> script in the Bugzilla
-            distribution.
-          </para>
-        </answer>
-      </qandaentry>
-    </qandadiv>
-
-    <qandadiv id="faq-nt">
-      <title>Can Bugzilla run on a Windows server?</title>
-
-      <qandaentry>
-        <question id="faq-nt-easiest">
-          <para>
-            What is the easiest way to run Bugzilla on Win32 (Win98+/NT/2K)?
-          </para>
-        </question>
-        <answer>
-          <para>
-            Making Bugzilla work easily with Windows
-            was one of the major goals of the 2.18 milestone. If the
-            necessary components are in place (perl, a webserver, an MTA, etc.)
-            then installation of Bugzilla on a Windows box should be no more
-            difficult than on any other platform. As with any installation,
-            we recommend that you carefully and completely follow the
-            installation instructions in <xref linkend="os-win32"/>.
-          </para>
-          <para>
-            While doing so, don't forget to check out the very excellent guide
-            to <ulink url="http://www.bugzilla.org/docs/win32install.html">
-            Installing Bugzilla on Microsoft Windows</ulink> written by
-            Byron Jones. Thanks, Byron!
-          </para>
-        </answer>
-      </qandaentry>
-
-      <qandaentry>
-        <question id="faq-nt-bundle">
-          <para>
-            Is there a "Bundle::Bugzilla" equivalent for Win32?
-          </para>
-        </question>
-        <answer>
-          <para>
-            Not currently. Bundle::Bugzilla enormously simplifies Bugzilla
-            installation on UNIX systems. If someone can volunteer to
-            create a suitable PPM bundle for Win32, it would be appreciated.
-          </para>
-        </answer>
-      </qandaentry>
-
-      <qandaentry>
-        <question id="faq-nt-mappings">
-          <para>
-            CGI's are failing with a <quote>something.cgi is not a valid
-            Windows NT application</quote> error. Why?
-          </para>
-        </question>
-        <answer>
-          <para>
-            Depending on what Web server you are using, you will have to
-            configure the Web server to treat *.cgi files as CGI scripts.
-            In IIS, you do this by adding *.cgi to the App Mappings with
-            the &lt;path&gt;\perl.exe %s %s as the executable.
-          </para>
-          <para>
-            Microsoft has some advice on this matter, as well:
-            <blockquote>
-              <para>
-                <quote>Set application mappings. In the ISM, map the extension
-                for the script file(s) to the executable for the script
-                interpreter. For example, you might map the extension .py to
-                Python.exe, the executable for the Python script interpreter.
-                Note For the ActiveState Perl script interpreter, the extension
-                '.pl' is associated with PerlIS.dll by default. If you want
-                to change the association of .pl to perl.exe, you need to
-                change the application mapping. In the mapping, you must add
-                two percent (%) characters to the end of the pathname for
-                perl.exe, as shown in this example: 
-                <command>c:\perl\bin\perl.exe %s %s</command></quote>
-              </para>
-            </blockquote>
-          </para>
-        </answer>
-      </qandaentry>
-
-      <qandaentry>
-        <question id="faq-nt-dbi">
-          <para>
-            I'm having trouble with the perl modules for NT not being
-            able to talk to the database.
-          </para>
-        </question>
-        <answer>
-          <para>
-            Your modules may be outdated or inaccurate. Try:
-            <orderedlist>
-              <listitem>
-                <para>
-                  Hitting <ulink url="http://www.activestate.com/ActivePerl"/>
-                </para>
-              </listitem>
-              <listitem>
-                <para>
-                  Download ActivePerl
-                </para>
-              </listitem>
-              <listitem>
-                <para>
-                  Go to your prompt
-                </para>
-              </listitem>
-              <listitem>
-                <para>
-                  Type 'ppm'
-                </para>
-              </listitem>
-              <listitem>
-                <para>
-                  <prompt>PPM></prompt> <command>install DBI DBD-mysql GD</command>
-                </para>
-              </listitem>
-            </orderedlist>
-            I reckon TimeDate comes with the activeperl.
-            You can check the ActiveState site for packages for installation
-            through PPM. <ulink url="http://www.activestate.com/Packages/"/>.
-          </para>
-        </answer>
-      </qandaentry>
-
-    </qandadiv>
-
-    <qandadiv id="faq-use">
-      <title>Bugzilla Usage</title>
-
-      <qandaentry>
-        <question id="faq-use-changeaddress">
-          <para>
-            How do I change my user name (email address) in Bugzilla?
-          </para>
-        </question>
-        <answer>
-          <para>
-            You can change your email address from the Name and Password
-            section in Preferences. You will be emailed at both the old 
-            and new addresses for confirmation. 'Administrative Policies' 
-            must have the 'allowemailchange' parameter set to <quote>On</quote>.
-          </para>
-        </answer>
-      </qandaentry>
-
-      <qandaentry>
-        <question id="faq-use-query">
-          <para>
-            The query page is very confusing.
-            Isn't there a simpler way to query?
-          </para>
-        </question>
-        <answer>
-          <para>
-            The interface was simplified by a UI designer for 2.16. Further
-            suggestions for improvement are welcome, but we won't sacrifice
-            power for simplicity.
-          </para>
-          <para>
-            As of 2.18, there is also a 'simpler' search available. At the top
-            of the search page are two links; <quote>Advanced Search</quote>
-            will take you to the familiar full-power/full-complexity search
-            page. The <quote>Find a Specific Bug</quote> link will take you
-            to a much-simplified page where you can pick a product and
-            status (open,closed, or both), then enter words that appear in
-            the bug you want to find. This search will scour the 'Summary'
-            and 'Comment' fields, and return a list of bugs sorted so that
-            the bugs with the most hits/matches are nearer to the top.
-          </para>
-          <note>
-            <para>
-              Matches in the Summary will 'trump' matches in comments,
-              and bugs with summary-matches will be placed higher in
-              the buglist --  even if a lower-ranked bug has more matches
-              in the comments section.
-            </para>
-          </note>
-          <para>
-            Bugzilla uses a cookie to remember which version of the page
-            you visited last, and brings that page up when you next do a
-            search. The default page for new users (or after an upgrade)
-            is the 'simple' search.
-          </para>
-        </answer>
-      </qandaentry>
-
-      <qandaentry>
-        <question id="faq-use-accept">
-          <para>
-            I'm confused by the behavior of the <quote>Accept</quote>
-            button in the Show Bug form. Why doesn't it assign the bug
-            to me when I accept it?
-          </para>
-        </question>
-        <answer>
-          <para>
-            The current behavior is acceptable to bugzilla.mozilla.org and
-            most users. If you want to change this behavior, though, you
-            have your choice of patches: 
-            <simplelist>
-              <member>
-                <ulink url="https://bugzilla.mozilla.org/show_bug.cgi?id=35195">Bug 35195</ulink>
-                seeks to add an <quote>...and accept the bug</quote> checkbox
-                to the UI. It has two patches attached to it: 
-                <ulink url="https://bugzilla.mozilla.org/showattachment.cgi?attach_id=8029">attachment 8029</ulink>
-                was originally created for Bugzilla 2.12, while 
-                <ulink url="https://bugzilla.mozilla.org/showattachment.cgi?attach_id=91372">attachment 91372</ulink>
-                is an updated version for Bugzilla 2.16
-              </member>
-              <member>
-                <ulink url="https://bugzilla.mozilla.org/show_bug.cgi?id=37613">Bug
-                37613</ulink> also provides two patches (against Bugzilla
-                2.12): one to add a 'Take Bug' option, and the other to
-                automatically reassign the bug on 'Accept'. 
-              </member>
-            </simplelist>
-            These patches are all somewhat dated now, and cannot be applied
-            directly, but they are simple enough to provide a guide on how
-            Bugzilla can be customized and updated to suit your needs.
-          </para>
-        </answer>
-      </qandaentry>
-
-      <qandaentry>
-        <question id="faq-use-attachment">
-          <para>
-            I can't upload anything into the database via the
-            <quote>Create Attachment</quote> link. What am I doing wrong?
-          </para>
-        </question>
-        <answer>
-          <para>
-            The most likely cause is a very old browser or a browser that is
-            incompatible with file upload via POST. Download the latest version
-            of your favourite browser to handle uploads correctly.
-          </para>
-        </answer>
-      </qandaentry>
-
-      <qandaentry>
-        <question id="faq-use-keyword">
-          <para>
-            How do I change a keyword in Bugzilla, once some bugs are using it?
-          </para>
-        </question>
-        <answer>
-          <para>
-            In the Bugzilla administrator UI, edit the keyword and
-            it will let you replace the old keyword name with a new one.
-            This will cause a problem with the keyword cache; run
-            <command>sanitycheck.cgi</command> to fix it.
-          </para>
-        </answer>
-      </qandaentry>
-
-      <qandaentry>
-        <question id="faq-use-close">
-          <para>
-            Why can't I close bugs from the <quote>Change Several Bugs
-            at Once</quote> page?
-          </para>
-        </question>
-        <answer>
-          <para>
-            Simple answer; you can.
-          </para>
-
-          <para>
-            The logic behind the page checks every bug in the list to
-            determine legal state changes, and then only shows you controls
-            to do things that could apply to <emphasis>every</emphasis> bug
-            on the list. The reason for this is that if you try to do something
-            illegal to a bug, the whole process will grind to a halt, and all
-            changes after the failed one will <emphasis>also</emphasis> fail.
-            Since that isn't a good outcome, the page doesn't even present
-            you with the option.
-          </para>
-
-          <para>
-            In practical terms, that means that in order to mark
-            multiple bugs as CLOSED, then every bug on the page has to be
-            either RESOLVED or VERIFIED already; if this is not the case,
-            then the option to close the bugs will not appear on the page.
-          </para>
-
-          <para>
-            The rationale is that if you pick one of the bugs that's not
-            VERIFIED and try to CLOSE it, the bug change will fail
-            miserably (thus killing any changes in the list after it
-            while doing the bulk change) so it doesn't even give you the
-            choice.
-          </para>
-        </answer>
-      </qandaentry>
-
-
-    </qandadiv>
-
-    <qandadiv id="faq-hacking">
-      <title>Bugzilla Hacking</title>
-
-      <qandaentry>
-        <question id="faq-hacking-templatestyle">
-          <para>
-            What kind of style should I use for templatization?
-          </para>
-        </question>
-        <answer>
-          <para>
-            Gerv and Myk suggest a 2-space indent, with embedded code sections on
-            their own line, in line with outer tags. Like this:</para>
-            <programlisting><![CDATA[
-<fred>
-[% IF foo %]
-  <bar>
-  [% FOREACH x = barney %]
-    <tr>
-      <td>
-        [% x %]
-      </td>
-    <tr>
-  [% END %]
-[% END %]
-</fred>
-]]></programlisting>
-
-        <para> Myk also recommends you turn on PRE_CHOMP in the template
-        initialization to prevent bloating of HTML with unnecessary whitespace.
-        </para>
-
-        <para>Please note that many have differing opinions on this subject,
-        and the existing templates in Bugzilla espouse both this and a 4-space
-        style. Either is acceptable; the above is preferred.</para>
-        </answer>
-      </qandaentry>
-
-      <qandaentry>
-        <question id="faq-hacking-bugzillabugs">
-          <para>
-            What bugs are in Bugzilla right now?
-          </para>
-        </question>
-        <answer>
-          <para>
-            Try <ulink url="https://bugzilla.mozilla.org/buglist.cgi?bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=REOPENED&amp;product=Bugzilla">
-            this link</ulink> to view current bugs or requests for
-            enhancement for Bugzilla.
-          </para>
-          <para>
-            You can view bugs marked for &bz-nextver; release
-            <ulink url="https://bugzilla.mozilla.org/buglist.cgi?product=Bugzilla&amp;target_milestone=Bugzilla+&amp;bz-nextver;">here</ulink>.
-            This list includes bugs for the &bz-nextver; release that have already
-            been fixed and checked into CVS. Please consult the
-            <ulink url="http://www.bugzilla.org/">
-            Bugzilla Project Page</ulink> for details on how to
-            check current sources out of CVS so you can have these
-            bug fixes early!
-          </para>
-        </answer>
-      </qandaentry>
-
-      <qandaentry>
-        <question id="faq-hacking-priority">
-          <para>
-            How can I change the default priority to a null value?
-            For instance, have the default priority be <quote>---</quote>
-            instead of <quote>P2</quote>?
-          </para>
-        </question>
-        <answer>
-          <para>
-            This is well-documented in <ulink
-            url="https://bugzilla.mozilla.org/show_bug.cgi?id=49862">bug
-            49862</ulink>. Ultimately, it's as easy as adding the
-            <quote>---</quote> priority field to your localconfig file
-            in the appropriate area, re-running checksetup.pl, and then
-            changing the default priority in your browser using
-            <command>editparams.cgi</command>. 
-          </para>
-        </answer>
-      </qandaentry>
-
-      <qandaentry>
-        <question id="faq-hacking-patches">
-          <para>
-            What's the best way to submit patches?  What guidelines
-            should I follow?
-          </para>
-        </question>
-        <answer>
-          <blockquote>
-            <orderedlist>
-              <listitem>
-                <para>
-                  Enter a bug into bugzilla.mozilla.org for the <quote><ulink
-                  url="https://bugzilla.mozilla.org/enter_bug.cgi?product=Bugzilla">Bugzilla</ulink></quote>
-                  product.
-                </para>
-              </listitem>
-              <listitem>
-                <para>
-                  Upload your patch as a unified diff (having used <quote>diff
-                  -u</quote> against the <emphasis>current sources</emphasis>
-                  checked out of CVS), or new source file by clicking
-                  <quote>Create a new attachment</quote> link on the bug
-                  page you've just created, and include any descriptions of
-                  database changes you may make, into the bug ID you submitted
-                  in step #1. Be sure and click the <quote>Patch</quote> checkbox
-                  to indicate the text you are sending is a patch!
-                </para>
-              </listitem>
-              <listitem>
-                <para>
-                  Announce your patch and the associated URL
-                  (https://bugzilla.mozilla.org/show_bug.cgi?id=XXXXXX)
-                  for discussion in the newsgroup
-                  (mozilla.support.bugzilla). You'll get a
-                  really good, fairly immediate reaction to the
-                  implications of your patch, which will also give us
-                  an idea how well-received the change would be.
-                </para>
-              </listitem>
-              <listitem>
-                <para>
-                  If it passes muster with minimal modification, the
-                  person to whom the bug is assigned in Bugzilla is
-                  responsible for seeing the patch is checked into CVS.
-                </para>
-              </listitem>
-              <listitem>
-                <para>
-                  Bask in the glory of the fact that you helped write
-                  the most successful open-source bug-tracking software
-                  on the planet :)
-                </para>
-              </listitem>
-            </orderedlist>
-          </blockquote>
-        </answer>
-      </qandaentry>
-
-
-    </qandadiv>
-
-  </qandaset>
-
-</appendix>
-
-
-<!-- Keep this comment at the end of the file
-Local variables:
-mode: sgml
-sgml-always-quote-attributes:t
-sgml-auto-insert-required-elements:t
-sgml-balanced-tag-edit:t
-sgml-exposed-tags:nil
-sgml-general-insert-case:lower
-sgml-indent-data:t
-sgml-indent-step:2
-sgml-local-catalogs:nil
-sgml-local-ecat-files:nil
-sgml-minimize-attributes:nil
-sgml-namecase-general:t
-sgml-omittag:t
-sgml-parent-document:("Bugzilla-Guide.xml" "book" "chapter")
-sgml-shorttag:t
-sgml-tag-region-if-active:t
-End:
--->
diff --git a/docs/xml/installation.xml b/docs/xml/installation.xml
index 0d321e0d9181d2880381c0e1bc7692930b14363b..1d4b8cbe4b7b85b145240c1ac3b135857405f5ba 100644
--- a/docs/xml/installation.xml
+++ b/docs/xml/installation.xml
@@ -1,5 +1,5 @@
 <!-- <!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"> -->
-<!-- $Id: installation.xml,v 1.142 2007/08/09 12:36:08 lpsolit%gmail.com Exp $ -->
+<!-- $Id: installation.xml,v 1.152 2008/01/24 22:35:16 lpsolit%gmail.com Exp $ -->
 <chapter id="installing-bugzilla">
   <title>Installing Bugzilla</title>
 
@@ -473,12 +473,6 @@
           </para>
         </listitem>
 
-        <listitem>
-          <para>
-            Apache::DBI
-            (&min-apache-dbi-ver;) for mod_perl2
-          </para>
-        </listitem>
       </orderedlist>
       </para>
 
@@ -655,9 +649,6 @@
       <para>Bugzilla also requires a more up-to-date version of the CGI
       perl module to be installed, version &min-mp-cgi-ver; as opposed to &min-cgi-ver;
       </para>
-      
-      <para>Finally, Bugzilla also requires <literal>Apache::DBI</literal>
-      (&min-apache-dbi-ver;) to be installed as well.</para>
     </section>
   </section>
   
@@ -707,9 +698,18 @@
         hosting account), you will need to leave
         <emphasis>webservergroup</emphasis> empty, ignoring the warnings 
         that <filename>checksetup.pl</filename> will subsequently display 
-        every time it in run.
+        every time it is run.
       </para>
       
+      <caution>
+        <para>
+          If you are using suexec, you should use your own primary group
+          for <emphasis>webservergroup</emphasis> rather than leaving it
+          empty, and see the additional directions in the suexec section
+          <xref linkend="suexec" />.
+        </para>
+      </caution>
+
       <para>
         The other options in the <filename>localconfig</filename> file
         are documented by their accompanying comments. If you have a slightly
@@ -1114,7 +1114,7 @@
                 </warning> 
                 
                 <programlisting>
-    PerlSwitches -I/var/www/html/bugzilla -w -T
+    PerlSwitches -I/var/www/html/bugzilla -I/var/www/html/bugzilla/lib -w -T
     PerlConfigRequire /var/www/html/bugzilla/mod_perl.pl
                 </programlisting>
             </step>
@@ -1734,7 +1734,7 @@ AddType application/rdf+xml .rdf</screen>
     </section>    
   </section>
 
-  <section>
+  <section id="multiple-bz-dbs">
     <title>Multiple Bugzilla databases with a single installation</title>
 
     <para>The previous instructions referred to a standard installation, with
@@ -1796,7 +1796,10 @@ AddType application/rdf+xml .rdf</screen>
         work on Unix.  For that reason, we still recommend doing so on a Unix 
         based system such as GNU/Linux.  That said, if you do want to get
         Bugzilla running on Windows, you will need to make the following
-        adjustments.
+        adjustments. A detailed step-by-step
+        <ulink url="http://www.bugzilla.org/docs/win32install.html">
+        installation guide for Windows</ulink> is also available
+        if you need more help with your installation.
       </para>
 
       <section id="win32-perl">
@@ -1809,6 +1812,15 @@ AddType application/rdf+xml .rdf</screen>
            The following instructions assume that you are using version
            5.8.1 of ActiveState.
           </para>
+
+          <note>
+            <para>
+             These instructions are for 32-bit versions of Windows. If you are
+             using a 64-bit version of Windows, you will need to install 32-bit
+             Perl in order to install the 32-bit modules as described below.
+            </para>
+          </note>
+
         </section>
   
       <section id="win32-perl-modules">
@@ -1832,9 +1844,16 @@ C:\perl&gt; <command>ppm install &lt;module name&gt;</command>
         </para>
 
         <programlisting>
-<command>ppm repository add landfill http://www.landfill.bugzilla.org/ppm/</command>
+<command>ppm repo add landfill http://www.landfill.bugzilla.org/ppm/</command>
         </programlisting>
-
+        <note>
+          <para>
+            In versions prior to 5.8.8 build 819 of PPM the command is 
+            <programlisting>
+<command>ppm repository add landfill http://www.landfill.bugzilla.org/ppm/</command>
+            </programlisting>
+          </para>
+        </note>
         <note>
           <para>
             The PPM repository stores modules in 'packages' that may have
@@ -1884,8 +1903,11 @@ C:\perl&gt; <command>ppm install &lt;module name&gt;</command>
             If using Apache on windows, you can set the <ulink
             url="http://httpd.apache.org/docs-2.0/mod/core.html#scriptinterpretersource">ScriptInterpreterSource</ulink>
             directive in your Apache config to avoid having to modify
-            the first line of every script to contain your path to perl 
-            perl instead of <filename>/usr/bin/perl</filename>.
+            the first line of every script to contain your path to Perl
+            instead of <filename>/usr/bin/perl</filename>. When setting
+            <filename>ScriptInterpreterSource</filename>, do not forget
+            to specify the <command>-T</command> flag to enable the taint
+            mode. For example: <command>C:\Perl\bin\perl.exe -T</command>.
           </para>
         </note>
 
@@ -1992,32 +2014,25 @@ C:\perl&gt; <command>ppm install &lt;module name&gt;</command>
       </section>
     </section>
 
-    <section id="os-mandrake">
-      <title>Linux-Mandrake 8.0</title>
-
-      <para>Linux-Mandrake 8.0 includes every required and optional library
-      for Bugzilla. The easiest way to install them is by using the
-      <command>urpmi</command>  utility. If you follow these commands, you
-      should have everything you need for Bugzilla, and
-      <command>./checksetup.pl</command>  should not complain about any
-      missing libraries. You may already have some of these installed.
-      </para>
-
-      <screen>
-<prompt>bash#</prompt> <command>urpmi perl-mysql</command>
-<prompt>bash#</prompt> <command>urpmi perl-chart</command>
-<prompt>bash#</prompt> <command>urpmi perl-gd</command>
-<prompt>bash#</prompt> <command>urpmi perl-MailTools</command>             <co id="test-mailtools"/>
-<prompt>bash#</prompt> <command>urpmi apache-modules</command>
-      </screen>
-      <calloutlist>
-        <callout arearefs="test-mailtools">
-          <para>for Bugzilla email integration</para>
-        </callout>
-      </calloutlist>
-
+    <section id="os-linux">
+      <title>Linux Distributions</title>
+            <para>Many Linux distributions include Bugzilla and its 
+            dependencies in their native package management systems. 
+            Installing Bugzilla with root access on any Linux system 
+            should be as simple as finding the Bugzilla package in the 
+            package management application and installing it using the 
+            normal command syntax. Several distributions also perform 
+            the proper web server configuration automatically on installation.
+            </para>
+            <para>Please consult the documentation of your Linux 
+            distribution for instructions on how to install packages, 
+            or for specific instructions on installing Bugzilla with 
+            native package management tools. There is also a 
+            <ulink url="http://wiki.mozilla.org/Bugzilla:Linux_Distro_Installation">
+            Bugzilla Wiki Page</ulink> for distro-specific installation
+            notes.
+            </para>
     </section>
-
   </section>
 
 
@@ -2137,10 +2152,12 @@ pid-file=/home/foo/mymysql/the.pid
     <section>
       <title>Perl</title>
 
-      <para>On the extremely rare chance that you don't have Perl on
+      <para>
+      On the extremely rare chance that you don't have Perl on
       the machine, you will have to build the sources
       yourself. The following commands should get your system
-      installed with your own personal version of Perl:</para>
+      installed with your own personal version of Perl:
+      </para>
 
       <screen>
         <prompt>bash$</prompt>
@@ -2155,139 +2172,23 @@ pid-file=/home/foo/mymysql/the.pid
         <command>make &amp;&amp; make test &amp;&amp; make install</command>
       </screen>
 
-      <para>Once you have Perl installed into a directory (probably
-      in <filename class="directory">~/perl/bin</filename>), you'll have to
-      change the locations on the scripts, which is detailed later on
-      this page.</para>
+      <para>
+      Once you have Perl installed into a directory (probably
+      in <filename class="directory">~/perl/bin</filename>), you will need to
+      install the Perl Modules, described below.
+      </para>
     </section>
 
     <section id="install-perlmodules-nonroot">
       <title>Perl Modules</title>
 
-      <para>Installing the Perl modules as a non-root user is probably the
-      hardest part of the process. There are two different methods: a
-      completely independant Perl with its own modules, or personal
-      modules using the current (root installed) version of Perl. The
-      independant method takes up quite a bit of disk space, but is
-      less complex, while the mixed method only uses as much space as the
-      modules themselves, but takes more work to setup.</para>
-
-      <section>
-        <title>The Independant Method</title>
-
-        <para>The independant method requires that you install your own
-        personal version of Perl, as detailed in the previous section. Once
-        installed, you can start the CPAN shell with the following
-        command:</para>
-
-        <para>
-          <screen>
-            <prompt>bash$</prompt>
-            <command>/home/foo/perl/bin/perl -MCPAN -e 'shell'</command>
-          </screen>
-        </para>
-
-        <para>And then:</para>
-
-        <para>
-          <screen>
-            <prompt>cpan&gt;</prompt>
-            <command>install Bundle::Bugzilla</command>
-          </screen>
-        </para>
-
-        <para>With this method, module installation will usually go a lot
-        smoother, but if you have any hang-ups, you can consult the next
-        section.</para>
-      </section>
-
-      <section>
-        <title>The Mixed Method</title>
-
-        <para>First, you'll need to configure CPAN to
-        install modules in your home directory. The CPAN FAQ says the
-        following on this issue:</para>
-
-        <para>
-          <programlisting>
-5)  I am not root, how can I install a module in a personal directory?
-
-    You will most probably like something like this:
-
-      o conf makepl_arg "LIB=~/myperl/lib \
-                         INSTALLMAN1DIR=~/myperl/man/man1 \
-                         INSTALLMAN3DIR=~/myperl/man/man3"
-    install Sybase::Sybperl
-
-    You can make this setting permanent like all "o conf" settings with "o conf commit".
-
-    You will have to add ~/myperl/man to the MANPATH environment variable and also tell your Perl programs to
-    look into ~/myperl/lib, e.g. by including
-
-      use lib "$ENV{HOME}/myperl/lib";
-
-    or setting the PERL5LIB environment variable.
-
-    Another thing you should bear in mind is that the UNINST parameter should never be set if you are not root.</programlisting>
-        </para>
-
-        <para>So, you will need to create a Perl directory in your home
-        directory, as well as the <filename class="directory">lib</filename>,
-        <filename class="directory">man</filename>,
-        <filename class="directory">man/man1</filename>, and
-        <filename class="directory">man/man3</filename> directories in that
-        Perl directory. Set the MANPATH variable and PERL5LIB variable, so
-        that the installation of the modules goes smoother. (Setting
-        UNINST=0 in your "make install" options, on the CPAN first-time
-        configuration, is also a good idea.)</para>
-
-        <para>After that, go into the CPAN shell:</para>
-
-        <para>
-          <screen>
-            <prompt>bash$</prompt>
-            <command>perl -MCPAN -e 'shell'</command>
-          </screen>
-        </para>
-
-        <para>From there, you will need to type in the above "o conf" command
-        and commit the changes. Then you can run through the installation:</para>
-
-        <para>
-          <screen>
-            <prompt>cpan&gt;</prompt>
-            <command>install Bundle::Bugzilla</command>
-          </screen>
-        </para>
-
-        <para>Most of the module installation process should go smoothly. However,
-        you may have some problems with Template. When you first start, you will
-        want to try to install Template with the XS Stash options on. If this
-        doesn't work, it may spit out C compiler error messages and croak back
-        to the CPAN shell prompt. So, redo the install, and turn it off. (In fact,
-        say no to all of the Template questions.) It may also start failing on a
-        few of the tests. If the total tests passed is a reasonable figure (90+%),
-        force the install with the following command:</para>
-
-        <para>
-          <screen>
-            <prompt>cpan&gt;</prompt>
-            <command>force install Template</command>
-          </screen>
-        </para>
-
-        <para>You may also want to install the other optional modules:</para>
-
-        <screen>
-          <prompt>cpan&gt;</prompt>
-          <command>install GD</command>
-          <prompt>cpan&gt;</prompt>
-          <command>install Chart::Base</command>
-          <prompt>cpan&gt;</prompt>
-          <command>install MIME::Parser</command>
-        </screen>
-
-      </section>
+      <para>
+      Installing the Perl modules as a non-root user is accomplished by
+      running the <filename>install-module.pl</filename>
+      script. For more details on this script, see 
+      <ulink url="api/install-module.html"><filename>install-module.pl</filename>
+      documentation</ulink>
+      </para>
     </section>
 
     <section>
@@ -2332,30 +2233,16 @@ pid-file=/home/foo/mymysql/the.pid
     <section>
       <title>Bugzilla</title>
 
-      <para>If you had to install Perl modules as a non-root user
-      (<xref linkend="install-perlmodules-nonroot" />) or to non-standard
-      directories, you will need to change the scripts, setting the correct
-      location of the Perl modules:</para>
-
       <para>
-        <programlisting>perl -pi -e
-        's@use strict\;@use strict\; use lib \"/home/foo/perl/lib\"\;@'
-        *cgi *pl Bug.pm processmail syncshadowdb</programlisting>
-
-        Change <filename class="directory">/home/foo/perl/lib</filename> to
-        your personal Perl library directory. You can probably skip this
-        step if you are using the independant method of Perl module
-        installation.
-      </para>
-
-      <para>When you run <command>./checksetup.pl</command> to create
+      When you run <command>./checksetup.pl</command> to create
       the <filename>localconfig</filename> file, it will list the Perl
       modules it finds. If one is missing, go back and double-check the
-      module installation from the CPAN shell, then delete the
-      <filename>localconfig</filename> file and try again.</para>
+      module installation from <xref linkend="install-perlmodules-nonroot"/>, 
+      then delete the <filename>localconfig</filename> file and try again.
+      </para>
 
       <warning>
-        <para>The one option in <filename>localconfig</filename> you
+        <para>One option in <filename>localconfig</filename> you
         might have problems with is the web server group. If you can't
         successfully browse to the <filename>index.cgi</filename> (like
         a Forbidden error), you may have to relax your permissions,
@@ -2364,6 +2251,26 @@ pid-file=/home/foo/mymysql/the.pid
         limited access to shell accounts may lessen the security risk,
         but use at your own risk.</para>
       </warning>
+
+      <section id="suexec">
+        <title>suexec or shared hosting</title>
+
+        <para>If you are running on a system that uses suexec (most shared
+        hosting environments do this), you will need to set the
+        <emphasis>webservergroup</emphasis> value in <filename>localconfig</filename>
+        to match <emphasis>your</emphasis> primary group, rather than the one
+        the web server runs under.  You will need to run the following
+        shell commands after running <command>./checksetup.pl</command>,
+        every time you run it (or modify <filename>checksetup.pl</filename>
+        to do them for you via the system() command).
+        <programlisting>        for i in docs graphs images js skins; do find $i -type d -exec chmod o+rx {} \; ; done
+        for i in jpg gif css js png html rdf xul; do find . -name \*.$i -exec chmod o+r {} \; ; done
+        find . -name .htaccess -exec chmod o+r {} \;
+        chmod o+x . data data/webdot</programlisting>
+        Pay particular attention to the number of semicolons and dots.
+        They are all important.  A future version of Bugzilla will
+        hopefully be able to do this for you out of the box.</para>
+      </section>
     </section>
   </section>
 
diff --git a/docs/xml/using.xml b/docs/xml/using.xml
index 3c200a30ab2140dae3f822220d4201ff50bd5487..de5e4c6fef041d0c7518353f4c087ce2b9372bb9 100644
--- a/docs/xml/using.xml
+++ b/docs/xml/using.xml
@@ -12,6 +12,12 @@
     installations there will necessarily have all Bugzilla features enabled,
     and different installations run different versions, so some things may not
     quite work as this document describes.</para>
+
+    <para>
+      Frequently Asked Questions (FAQ) are available and answered on
+      <ulink url="http://wiki.mozilla.org/Bugzilla:FAQ">wiki.mozilla.org</ulink>.
+      They may cover some questions you have which are left unanswered.
+    </para>
   </section>
       
   <section id="myaccount">
@@ -392,18 +398,10 @@
     values. If none is selected, then the field can take any value.</para>
 
     <para>
-      Once you've run a search, you can save it as a Saved Search, which
-      appears in the page footer.
-      On the Saved Searches tab of your User Preferences page (the Prefs link
-      in Bugzilla's footer), members of the group defined in the
-      querysharegroup parameter can share such Saved Searches with user groups
-      so that other users may use them.
-      At the same place, you can see Saved Searches other users are sharing, and
-      have them show up in your personal Bugzilla footer along with your own
-      Saved Searches.
-      If somebody is sharing a Search with a group she or he is allowed to
-      <link linkend="groups">assign users to</link>, the sharer may opt to have
-      the Search show up in the group's direct members' footers by default.
+      After a search is run, you can save it as a Saved Search, which
+      will appear in the page footer. If you are in the group defined 
+      by the "querysharegroup" parameter, you may share your queries 
+      with other users, see <xref linkend="savedsearches"/> for more details.
     </para>
 
     <section id="boolean">
@@ -566,7 +564,15 @@
         link which details how to use it.
       </para>
     </section>
-
+    <section id="casesensitivity">
+      <title>Case Sensitivity in Searches</title>
+      <para>
+      Bugzilla queries are case-insensitive and accent-insensitive, when
+      used with either MySQL or Oracle databases. When using Bugzilla with
+      PostgreSQL, however, some queries are case-sensitive. This is due to
+      the way PostgreSQL handles case and accent sensitivity. 
+      </para>
+    </section>
     <section id="list">
       <title>Bug Lists</title>
 
@@ -1014,6 +1020,15 @@
       </para>
     </section>
 
+    <section id="comment-wrapping">
+      <title>Server-Side Comment Wrapping</title>
+      <para>
+      Bugzilla stores comments unwrapped and wraps them at display time. This
+      ensures proper wrapping in all browsers. Lines beginning with the ">" 
+      character are assumed to be quotes, and are not wrapped.
+      </para>
+    </section>
+
     <section id="dependencytree">
       <title>Dependency Tree</title>
 
@@ -1064,69 +1079,82 @@
   <section id="userpreferences">
     <title>User Preferences</title>
 
-    <para>Once you have logged in, you can customize various aspects of
-    Bugzilla via the "Edit prefs" link in the page footer.
-    The preferences are split into three tabs:</para>
-
-    <section id="accountpreferences" xreflabel="Account Preferences">
-      <title>Account Preferences</title>
-
-      <para>On this tab, you can change your basic account information,
-      including your password, email address and real name. For security
-      reasons, in order to change anything on this page you must type your
-      <emphasis>current</emphasis>
-      password into the
-      <quote>Password</quote>
-      field at the top of the page.
-      If you attempt to change your email address, a confirmation
-      email is sent to both the old and new addresses, with a link to use to
-      confirm the change. This helps to prevent account hijacking.</para>
-    </section>
+    <para>
+    Once logged in, you can customize various aspects of
+    Bugzilla via the "Preferences" link in the page footer.
+    The preferences are split into five tabs:</para>
 
     <section id="generalpreferences" xreflabel="General Preferences">
       <title>General Preferences</title>
 
       <para>
-        This tab allows you to change several Bugzilla behavior.
+        This tab allows you to change several default settings of Bugzilla.
       </para>
 
       <itemizedlist spacing="compact">
         <listitem>
           <para>
-            Field separator character for CSV files -
-            This controls separator character used in CSV formatted Bug List.
+            Bugzilla's general appearance (skin) - select which skin to use.
+            Bugzilla supports adding custom skins.
+          </para>
+        </listitem>
+        <listitem>
+          <para>
+            Quote the associated comment when you click on its reply link - sets
+            the behavior of the comment "Reply" link. Options include quoting the
+            full comment, just reference the comment number, or turn the link off.
+          </para>
+        </listitem>
+        <listitem>
+          <para>
+            Language used in email - select which language email will be sent in,
+            from the list of available languages.
+          </para>
+        </listitem>
+        <listitem>
+          <para>
+            After changing a bug - This controls what page is displayed after
+            changes to a bug are submitted. The options include to show the bug
+            just modified, to show the next bug in your list, or to do nothing.
+          </para>
+        </listitem>
+        <listitem>
+          <para>
+            Enable tags for bugs - turn bug tagging on or off.
+          </para>
+        </listitem>
+        <listitem>
+          <para>
+            Zoom textareas large when in use (requires JavaScript) - enable or
+            disable the automatic expanding of text areas when  text is being
+            entered into them. 
           </para>
         </listitem>
         <listitem>
           <para>
-            After changing bugs - This controls which bugs or no bugs
-            are shown in the page after you changed bugs.
-            You can select the bug you've changed this time, or the next
-            bug of the list.
+            Field separator character for CSV files -
+            Select between a comma and semi-colon for exported CSV bug lists.
           </para>
         </listitem>
         <listitem>
           <para>
-            Add individual bugs to saved searches - this controls
-            whether you can add individual bugs to saved searches
-            or you can't.
+            Automatically add me to the CC list of bugs I change - set default
+            behavior of CC list. Options include "Always", "Never", and "Only
+            if I have no role on them". 
           </para>
         </listitem>
         <listitem>
           <para>
             When viewing a bug, show comments in this order -
-            This controls the order of comments, you can select below:
-            <simplelist>
-              <member>Initial description, comment 1, comment 2, ...</member>
-              <member>Initial description, last comment, ..., comment 2, comment 1.</member>
-              <member>Initial last comment, ..., comment 2, comment 1, description.</member>
-            </simplelist>
+            controls the order of comments. Options include "Oldest
+            to Newest", "Newest to Oldest" and "Newest to Oldest, but keep the
+            bug description at the top".
           </para>
         </listitem>
         <listitem>
           <para>
-            Show a quip at the top of each bug list - This controls
-            whether a quip will be shown on the Bug list page or not.
+            Show a quip at the top of each bug list - controls
+            whether a quip will be shown on the Bug list page.
           </para>
         </listitem>
       </itemizedlist>
@@ -1136,31 +1164,8 @@
       <title>Email Preferences</title>
 
       <para>
-        This tab controls the amount of email Bugzilla sends you.
-      </para>
-
-      <para>
-        The first item on this page is marked <quote>Users to watch</quote>.
-        When you enter one or more comma-delineated user accounts (usually email
-        addresses) into the text entry box, you will receive a copy of all the
-        bugmail those users are sent (security settings permitting).
-        This powerful functionality enables seamless transitions as developers
-        change projects or users go on holiday.
-      </para>
-
-      <note>
-        <para>
-          The ability to watch other users may not be available in all
-          Bugzilla installations. If you don't see this feature, and feel
-          that you need it, speak to your administrator.
-        </para>
-      </note>
-
-      <para>
-        Each user listed in the <quote>Users watching you</quote> field
-        has you listed in their <quote>Users to watch</quote> list
-        and can get bugmail according to your relationship to the bug and
-        their <quote>Field/recipient specific options</quote> setting.
+        This tab allows you to enable or disable email notification on
+        specific events.
       </para>
 
       <para>
@@ -1173,14 +1178,23 @@
 
       <note>
         <para>
-          Your Bugzilla administrator can stop a user from receiving
-          bugmail by adding the user's name to the 
-          <filename>data/nomail</filename> file. This is a drastic step
+          A Bugzilla administrator can stop a user from receiving
+          bugmail by clicking the <quote>Bugmail Disabled</quote> checkbox
+          when editing the user account. This is a drastic step
           best taken only for disabled accounts, as it overrides 
           the user's individual mail preferences.
         </para>
       </note>
   
+      <para>
+        There are two global options -- <quote>Email me when someone
+        asks me to set a flag</quote> and <quote>Email me when someone
+        sets a flag I asked for</quote>. These define how you want to
+        receive bugmail with regards to flags. Their use is quite
+        straightforward; enable the checkboxes if you want Bugzilla to
+        send you mail under either of the above conditions.
+      </para>
+
       <para>
         If you'd like to set your bugmail to something besides
         'Completely ON' and 'Completely OFF', the
@@ -1231,7 +1245,6 @@
         </listitem>
       </itemizedlist>
 
-
       <note>
         <para>
           Some columns may not be visible for your installation, depending
@@ -1264,31 +1277,224 @@
       </note>
 
       <para>
-        Two items not in the table (<quote>Email me when someone
-        asks me to set a flag</quote> and <quote>Email me when someone
-        sets a flag I asked for</quote>) define how you want to
-        receive bugmail with regards to flags. Their use is quite
-        straightforward; enable the checkboxes if you want Bugzilla to
-        send you mail under either of the above conditions.
+        Bugzilla has a feature called <quote>Users Watching</quote>.
+        When you enter one or more comma-delineated user accounts (usually email
+        addresses) into the text entry box, you will receive a copy of all the
+        bugmail those users are sent (security settings permitting).
+        This powerful functionality enables seamless transitions as developers
+        change projects or users go on holiday.
       </para>
 
+      <note>
+        <para>
+          The ability to watch other users may not be available in all
+          Bugzilla installations. If you don't see this feature, and feel
+          that you need it, speak to your administrator.
+        </para>
+      </note>
+
       <para>
-        By default, Bugzilla sends out email regardless of who made the
-        change... even if you were the one responsible for generating
-        the email in the first place. If you don't care to receive bugmail
-        from your own changes, check the box marked <quote>Only email me
-        reports of changes made by other people</quote>.
+        Each user listed in the <quote>Users watching you</quote> field
+        has you listed in their <quote>Users to watch</quote> list
+        and can get bugmail according to your relationship to the bug and
+        their <quote>Field/recipient specific options</quote> setting.
       </para>
 
     </section>
 
+    <section id="savedsearches" xreflabel="Saved Searches">
+      <title>Saved Searches</title>
+      <para>
+      On this tab you can view and run any Saved Searches that you have
+      created, and also any Saved Searches that other members of the group
+      defined in the "querysharegroup" parameter have shared. 
+      Saved Searches can be added to the page footer from this screen. 
+      If somebody is sharing a Search with a group she or he is allowed to
+      <link linkend="groups">assign users to</link>, the sharer may opt to have
+      the Search show up in the footer of the group's direct members by default.
+      </para>
+    </section>
+
+    <section id="accountpreferences" xreflabel="Name and Password">
+      <title>Name and Password</title>
+
+      <para>On this tab, you can change your basic account information,
+      including your password, email address and real name. For security
+      reasons, in order to change anything on this page you must type your
+      <emphasis>current</emphasis> password into the <quote>Password</quote>
+      field at the top of the page.
+      If you attempt to change your email address, a confirmation
+      email is sent to both the old and new addresses, with a link to use to
+      confirm the change. This helps to prevent account hijacking.</para>
+    </section>
+
     <section id="permissionsettings">
       <title>Permissions</title>
       
-      <para>This is a purely informative page which outlines your current
-      permissions on this installation of Bugzilla - what product groups you
-      are in, and whether you can edit bugs or perform various administration
-      functions.</para>
+      <para>
+      This is a purely informative page which outlines your current
+      permissions on this installation of Bugzilla.
+      </para>
+
+      <para>
+      A complete list of permissions is below. Only users with 
+      <emphasis>editusers</emphasis> privileges can change the permissions 
+      of other users.
+      </para>
+
+      <variablelist>
+        <varlistentry>
+          <term>
+            admin
+          </term>
+          <listitem>
+            <para> 
+             Indicates user is an Administrator.
+            </para>
+          </listitem>
+        </varlistentry>
+
+        <varlistentry>
+          <term>
+            bz_canusewhineatothers
+          </term>
+          <listitem>
+            <para> 
+             Indicates user can configure whine reports for other users.
+            </para>
+          </listitem>
+        </varlistentry>
+
+        <varlistentry>
+          <term>
+             bz_canusewhines
+          </term>
+          <listitem>
+            <para> 
+             Indicates user can configure whine reports for self.
+            </para>
+          </listitem>
+        </varlistentry>	 	
+ 
+        <varlistentry>
+          <term>
+             bz_sudoers
+          </term>
+          <listitem>
+            <para> 
+             Indicates user can perform actions as other users.
+            </para>
+          </listitem>
+        </varlistentry>	
+
+        <varlistentry>
+          <term>
+             bz_sudo_protect
+          </term>
+          <listitem>
+            <para> 
+             Indicates user can not be impersonated by other users.
+            </para>
+          </listitem>
+        </varlistentry>
+
+        <varlistentry>
+          <term>
+             canconfirm
+          </term>
+          <listitem>
+            <para> 
+             Indicates user can confirm a bug or mark it a duplicate.
+            </para>
+          </listitem>
+        </varlistentry>
+
+        <varlistentry>
+          <term>
+             creategroups
+          </term>
+          <listitem>
+            <para> 
+             Indicates user can create and destroy groups.
+            </para>
+          </listitem>
+        </varlistentry>
+
+        <varlistentry>
+          <term>
+             editbugs
+          </term>
+          <listitem>
+            <para> 
+             Indicates user can edit all bug fields.
+            </para>
+          </listitem>
+        </varlistentry>
+
+        <varlistentry>
+          <term>
+             editclassifications
+          </term>
+          <listitem>
+            <para> 
+             Indicates user can create, destroy, and edit classifications.
+            </para>
+          </listitem>
+        </varlistentry>
+
+        <varlistentry>
+          <term>
+             editcomponents
+          </term>
+          <listitem>
+            <para> 
+             Indicates user can create, destroy, and edit components.
+            </para>
+          </listitem>
+        </varlistentry>
+ 
+        <varlistentry>
+          <term>
+             editkeywords
+          </term>
+          <listitem>
+            <para> 
+             Indicates user can create, destroy, and edit keywords.
+            </para>
+          </listitem>
+        </varlistentry>
+
+        <varlistentry>
+          <term>
+             editusers
+          </term>
+          <listitem>
+            <para> 
+             Indicates user can edit or disable users.
+            </para>
+          </listitem>
+        </varlistentry>
+	
+        <varlistentry>
+          <term>
+             tweakparams
+          </term>
+          <listitem>
+            <para> 
+             Indicates user can change Parameters.
+            </para>
+          </listitem>
+        </varlistentry>
+
+      </variablelist>
+
+       <note>
+        <para>
+        For more information on how permissions work in Bugzilla (i.e. who can
+        change what), see  <xref linkend="cust-change-permissions"/>. 
+        </para>
+       </note>
+
     </section>
   </section>
   
@@ -1426,7 +1632,7 @@
 
       </section>
       
-      <section>
+      <section id="charts-new-series">
         <title>Creating New Data Sets</title>
         
         <para>
diff --git a/duplicates.cgi b/duplicates.cgi
index e393d7c257136fefc7c9d1861042ace25c590bbb..32553a39d71be47c23b42621de0a0f7621872b2f 100755
--- a/duplicates.cgi
+++ b/duplicates.cgi
@@ -27,7 +27,7 @@ use strict;
 
 use AnyDBM_File;
 
-use lib qw(.);
+use lib qw(. lib);
 
 use Bugzilla;
 use Bugzilla::Constants;
diff --git a/editclassifications.cgi b/editclassifications.cgi
index 0ebfb97fa8f16394fec8bff468b4af18aba5d957..8ef9afe1a7508f497c0c0b4397886d0fdc11ba17 100755
--- a/editclassifications.cgi
+++ b/editclassifications.cgi
@@ -17,11 +17,11 @@
 #
 # Contributor(s): Albert Ting <alt@sonic.net>
 #                 Max Kanat-Alexander <mkanat@bugzilla.org>
-#
-# Direct any questions on this source code to mozilla.org
+#                 Frédéric Buclin <LpSolit@gmail.com>
+
 
 use strict;
-use lib ".";
+use lib qw(. lib);
 
 use Bugzilla;
 use Bugzilla::Constants;
@@ -40,6 +40,12 @@ sub LoadTemplate {
     my $cgi = Bugzilla->cgi;
     my $template = Bugzilla->template;
 
+    $vars->{'classifications'} = [Bugzilla::Classification::get_all_classifications()]
+      if ($action eq 'select');
+    # There is currently only one section about classifications,
+    # so all pages point to it. Let's define it here.
+    $vars->{'doc_section'} = 'classifications.html';
+
     $action =~ /(\w+)/;
     $action = $1;
     print $cgi->header();
@@ -74,14 +80,7 @@ my $token      = $cgi->param('token');
 #
 # action='' -> Show nice list of classifications
 #
-
-unless ($action) {
-    my @classifications =
-        Bugzilla::Classification::get_all_classifications();
-
-    $vars->{'classifications'} = \@classifications;
-    LoadTemplate("select");
-}
+LoadTemplate('select') unless $action;
 
 #
 # action='add' -> present form for parameters for new classification
@@ -126,10 +125,13 @@ if ($action eq 'new') {
     $dbh->do("INSERT INTO classifications (name, description, sortkey)
               VALUES (?, ?, ?)", undef, ($class_name, $description, $sortkey));
 
-    $vars->{'classification'} = $class_name;
-
     delete_token($token);
-    LoadTemplate($action);
+
+    $vars->{'message'} = 'classification_created';
+    $vars->{'classification'} = new Bugzilla::Classification({name => $class_name});
+    $vars->{'classifications'} = [Bugzilla::Classification::get_all_classifications];
+    $vars->{'token'} = issue_session_token('reclassify_classifications');
+    LoadTemplate('reclassify');
 }
 
 #
@@ -172,22 +174,22 @@ if ($action eq 'delete') {
     }
 
     # lock the tables before we start to change everything:
-    $dbh->bz_lock_tables('classifications WRITE', 'products WRITE');
-
-    # delete
-    $dbh->do("DELETE FROM classifications WHERE id = ?", undef,
-             $classification->id);
+    $dbh->bz_start_transaction();
 
     # update products just in case
     $dbh->do("UPDATE products SET classification_id = 1
               WHERE classification_id = ?", undef, $classification->id);
 
-    $dbh->bz_unlock_tables();
+    # delete
+    $dbh->do("DELETE FROM classifications WHERE id = ?", undef,
+             $classification->id);
 
-    $vars->{'classification'} = $classification;
+    $dbh->bz_commit_transaction();
 
+    $vars->{'message'} = 'classification_deleted';
+    $vars->{'classification'} = $class_name;
     delete_token($token);
-    LoadTemplate($action);
+    LoadTemplate('select');
 }
 
 #
@@ -229,7 +231,7 @@ if ($action eq 'update') {
       || ThrowUserError('classification_invalid_sortkey', {'name' => $class_old->name,
                                                            'sortkey' => $stored_sortkey});
 
-    $dbh->bz_lock_tables('classifications WRITE');
+    $dbh->bz_start_transaction();
 
     if ($class_name ne $class_old->name) {
 
@@ -262,10 +264,12 @@ if ($action eq 'update') {
         $vars->{'updated_sortkey'} = 1;
     }
 
-    $dbh->bz_unlock_tables();
+    $dbh->bz_commit_transaction();
 
+    $vars->{'message'} = 'classification_updated';
+    $vars->{'classification'} = $class_name;
     delete_token($token);
-    LoadTemplate($action);
+    LoadTemplate('select');
 }
 
 #
diff --git a/editcomponents.cgi b/editcomponents.cgi
index 09acc0c518897e966ae69a83e5988846d92ac59b..7623be591212bcffd9916b29037942b22c106ac3 100755
--- a/editcomponents.cgi
+++ b/editcomponents.cgi
@@ -22,55 +22,30 @@
 #                 Terry Weissman <terry@mozilla.org>
 #                 Frédéric Buclin <LpSolit@gmail.com>
 #                 Akamai Technologies <bugzilla-dev@akamai.com>
-#
-# Direct any questions on this source code to
-#
-# Holger Schurig <holgerschurig@nikocity.de>
 
 use strict;
-use lib ".";
+use lib qw(. lib);
 
 use Bugzilla;
 use Bugzilla::Constants;
-use Bugzilla::Series;
 use Bugzilla::Util;
 use Bugzilla::Error;
 use Bugzilla::User;
 use Bugzilla::Component;
-use Bugzilla::Bug;
 use Bugzilla::Token;
 
-###############
-# Subroutines #
-###############
-
-# Takes an arrayref of login names and returns an arrayref of user ids.
-sub check_initial_cc {
-    my ($user_names) = @_;
-
-    my %cc_ids;
-    foreach my $cc (@$user_names) {
-        my $id = login_to_id($cc, THROW_ERROR);
-        $cc_ids{$id} = 1;
-    }
-    return [keys %cc_ids];
-}
-
-###############
-# Main Script #
-###############
-
 my $cgi = Bugzilla->cgi;
-my $dbh = Bugzilla->dbh;
 my $template = Bugzilla->template;
 my $vars = {};
+# There is only one section about components in the documentation,
+# so all actions point to the same page.
+$vars->{'doc_section'} = 'components.html';
 
 #
 # Preliminary checks:
 #
 
 my $user = Bugzilla->login(LOGIN_REQUIRED);
-my $whoid = $user->id;
 
 print $cgi->header();
 
@@ -115,16 +90,13 @@ my $product = $user->check_can_admin_product($product_name);
 #
 
 unless ($action) {
-
     $vars->{'showbugcounts'} = $showbugcounts;
     $vars->{'product'} = $product;
     $template->process("admin/components/list.html.tmpl", $vars)
         || ThrowTemplateError($template->error());
-
     exit;
 }
 
-
 #
 # action='add' -> present form for parameters for new component
 #
@@ -136,12 +108,9 @@ if ($action eq 'add') {
     $vars->{'product'} = $product;
     $template->process("admin/components/create.html.tmpl", $vars)
         || ThrowTemplateError($template->error());
-
     exit;
 }
 
-
-
 #
 # action='new' -> add component entered in the 'action=add' screen
 #
@@ -160,103 +129,24 @@ if ($action eq 'new') {
     my $description        = trim($cgi->param('description')      || '');
     my @initial_cc         = $cgi->param('initialcc');
 
-    $comp_name || ThrowUserError('component_blank_name');
-
-    if (length($comp_name) > 64) {
-        ThrowUserError('component_name_too_long',
-                       {'name' => $comp_name});
-    }
-
     my $component =
-        new Bugzilla::Component({product => $product,
-                                 name => $comp_name});
-
-    if ($component) {
-        ThrowUserError('component_already_exists',
-                       {'name' => $component->name});
-    }
-
-    $description || ThrowUserError('component_blank_description',
-                                   {name => $comp_name});
-
-    $default_assignee || ThrowUserError('component_need_initialowner',
-                                        {name => $comp_name});
-
-    my $default_assignee_id   = login_to_id($default_assignee);
-    my $default_qa_contact_id = Bugzilla->params->{'useqacontact'} ?
-        (login_to_id($default_qa_contact) || undef) : undef;
-
-    my $initial_cc_ids = check_initial_cc(\@initial_cc);
-
-    trick_taint($comp_name);
-    trick_taint($description);
-
-    $dbh->bz_lock_tables('components WRITE', 'component_cc WRITE');
-
-    $dbh->do("INSERT INTO components
-                (product_id, name, description, initialowner,
-                 initialqacontact)
-              VALUES (?, ?, ?, ?, ?)", undef,
-             ($product->id, $comp_name, $description,
-              $default_assignee_id, $default_qa_contact_id));
-
-    $component = new Bugzilla::Component({ product => $product,
-                                           name => $comp_name });
-
-    my $sth = $dbh->prepare("INSERT INTO component_cc 
-                             (user_id, component_id) VALUES (?, ?)");
-    foreach my $user_id (@$initial_cc_ids) {
-        $sth->execute($user_id, $component->id);
-    }
-
-    $dbh->bz_unlock_tables;
-
-    # Insert default charting queries for this product.
-    # If they aren't using charting, this won't do any harm.
-    my @series;
-
-    my $prodcomp = "&product="   . url_quote($product->name) .
-                   "&component=" . url_quote($comp_name);
-
-    # For localization reasons, we get the title of the queries from the
-    # submitted form.
-    my $open_name = $cgi->param('open_name');
-    my $nonopen_name = $cgi->param('nonopen_name');
-    my $open_query = "field0-0-0=resolution&type0-0-0=notregexp&value0-0-0=." .
-                     $prodcomp;
-    my $nonopen_query = "field0-0-0=resolution&type0-0-0=regexp&value0-0-0=." .
-                        $prodcomp;
-
-    # trick_taint is ok here, as these variables aren't used as a command
-    # or in SQL unquoted
-    trick_taint($open_name);
-    trick_taint($nonopen_name);
-    trick_taint($open_query);
-    trick_taint($nonopen_query);
-
-    push(@series, [$open_name, $open_query]);
-    push(@series, [$nonopen_name, $nonopen_query]);
-
-    foreach my $sdata (@series) {
-        my $series = new Bugzilla::Series(undef, $product->name,
-                                          $comp_name, $sdata->[0],
-                                          $whoid, 1, $sdata->[1], 1);
-        $series->writeToDatabase();
-    }
-
+      Bugzilla::Component->create({ name             => $comp_name,
+                                    product          => $product,
+                                    description      => $description,
+                                    initialowner     => $default_assignee,
+                                    initialqacontact => $default_qa_contact,
+                                    initial_cc       => \@initial_cc });
+
+    $vars->{'message'} = 'component_created';
     $vars->{'comp'} = $component;
     $vars->{'product'} = $product;
     delete_token($token);
 
-    $template->process("admin/components/created.html.tmpl",
-                       $vars)
+    $template->process("admin/components/list.html.tmpl", $vars)
       || ThrowTemplateError($template->error());
-
     exit;
 }
 
-
-
 #
 # action='del' -> ask if user really wants to delete
 #
@@ -266,18 +156,14 @@ if ($action eq 'new') {
 if ($action eq 'del') {
     $vars->{'token'} = issue_session_token('delete_component');
     $vars->{'comp'} =
-        Bugzilla::Component::check_component($product, $comp_name);
-
+      Bugzilla::Component->check({ product => $product, name => $comp_name });
     $vars->{'product'} = $product;
 
     $template->process("admin/components/confirm-delete.html.tmpl", $vars)
         || ThrowTemplateError($template->error());
-
     exit;
 }
 
-
-
 #
 # action='delete' -> really delete the component
 #
@@ -285,47 +171,21 @@ if ($action eq 'del') {
 if ($action eq 'delete') {
     check_token_data($token, 'delete_component');
     my $component =
-        Bugzilla::Component::check_component($product, $comp_name);
-
-    if ($component->bug_count) {
-        if (Bugzilla->params->{"allowbugdeletion"}) {
-            foreach my $bug_id (@{$component->bug_ids}) {
-                # Note: We allow admins to delete bugs even if they can't
-                # see them, as long as they can see the product.
-                my $bug = new Bugzilla::Bug($bug_id);
-                $bug->remove_from_db();
-            }
-        } else {
-            ThrowUserError("component_has_bugs",
-                           {nb => $component->bug_count });
-        }
-    }
-    
-    $dbh->bz_lock_tables('components WRITE', 'component_cc WRITE',
-                         'flaginclusions WRITE', 'flagexclusions WRITE');
-
-    $dbh->do("DELETE FROM flaginclusions WHERE component_id = ?",
-             undef, $component->id);
-    $dbh->do("DELETE FROM flagexclusions WHERE component_id = ?",
-             undef, $component->id);
-    $dbh->do("DELETE FROM component_cc WHERE component_id = ?",
-             undef, $component->id);
-    $dbh->do("DELETE FROM components WHERE id = ?",
-             undef, $component->id);
+        Bugzilla::Component->check({ product => $product, name => $comp_name });
 
-    $dbh->bz_unlock_tables();
+    $component->remove_from_db;
 
+    $vars->{'message'} = 'component_deleted';
     $vars->{'comp'} = $component;
     $vars->{'product'} = $product;
+    $vars->{'no_edit_component_link'} = 1;
     delete_token($token);
 
-    $template->process("admin/components/deleted.html.tmpl", $vars)
+    $template->process("admin/components/list.html.tmpl", $vars)
       || ThrowTemplateError($template->error());
     exit;
 }
 
-
-
 #
 # action='edit' -> present the edit component form
 #
@@ -335,7 +195,7 @@ if ($action eq 'delete') {
 if ($action eq 'edit') {
     $vars->{'token'} = issue_session_token('edit_component');
     my $component =
-        Bugzilla::Component::check_component($product, $comp_name);
+        Bugzilla::Component->check({ product => $product, name => $comp_name });
     $vars->{'comp'} = $component;
 
     $vars->{'initial_cc_names'} = 
@@ -343,15 +203,11 @@ if ($action eq 'edit') {
 
     $vars->{'product'} = $product;
 
-    $template->process("admin/components/edit.html.tmpl",
-                       $vars)
+    $template->process("admin/components/edit.html.tmpl", $vars)
       || ThrowTemplateError($template->error());
-
     exit;
 }
 
-
-
 #
 # action='update' -> update the component
 #
@@ -371,106 +227,24 @@ if ($action eq 'update') {
     my $description           = trim($cgi->param('description')      || '');
     my @initial_cc            = $cgi->param('initialcc');
 
-    my $component_old =
-        Bugzilla::Component::check_component($product, $comp_old_name);
-
-    $comp_name || ThrowUserError('component_blank_name');
-
-    if (length($comp_name) > 64) {
-        ThrowUserError('component_name_too_long',
-                       {'name' => $comp_name});
-    }
-
-    if ($comp_name ne $component_old->name) {
-        my $component =
-            new Bugzilla::Component({product => $product,
-                                     name => $comp_name});
-        if ($component) {
-            ThrowUserError('component_already_exists',
-                           {'name' => $component->name});
-        }
-    }
-
-    $description || ThrowUserError('component_blank_description',
-                                   {'name' => $component_old->name});
-
-    $default_assignee || ThrowUserError('component_need_initialowner',
-                                        {name => $comp_name});
-
-    my $default_assignee_id   = login_to_id($default_assignee);
-    my $default_qa_contact_id = login_to_id($default_qa_contact) || undef;
-
-    my $initial_cc_ids = check_initial_cc(\@initial_cc);
-
-    $dbh->bz_lock_tables('components WRITE', 'component_cc WRITE', 
-                         'profiles READ');
-
-    if ($comp_name ne $component_old->name) {
-
-        trick_taint($comp_name);
-        $dbh->do("UPDATE components SET name = ? WHERE id = ?",
-                 undef, ($comp_name, $component_old->id));
-
-        $vars->{'updated_name'} = 1;
-
-    }
-
-    if ($description ne $component_old->description) {
-    
-        trick_taint($description);
-        $dbh->do("UPDATE components SET description = ? WHERE id = ?",
-                 undef, ($description, $component_old->id));
-
-        $vars->{'updated_description'} = 1;
-    }
-
-    if ($default_assignee ne $component_old->default_assignee->login) {
-
-        $dbh->do("UPDATE components SET initialowner = ? WHERE id = ?",
-                 undef, ($default_assignee_id, $component_old->id));
-
-        $vars->{'updated_initialowner'} = 1;
-    }
-
-    if (Bugzilla->params->{'useqacontact'}
-        && $default_qa_contact ne $component_old->default_qa_contact->login) {
-        $dbh->do("UPDATE components SET initialqacontact = ?
-                  WHERE id = ?", undef,
-                 ($default_qa_contact_id, $component_old->id));
-
-        $vars->{'updated_initialqacontact'} = 1;
-    }
-
-    my @initial_cc_old = map($_->id, @{$component_old->initial_cc});
-    my ($removed, $added) = diff_arrays(\@initial_cc_old, $initial_cc_ids);
-
-    foreach my $user_id (@$removed) {
-        $dbh->do('DELETE FROM component_cc 
-                   WHERE component_id = ? AND user_id = ?', undef,
-                 $component_old->id, $user_id);
-        $vars->{'updated_initialcc'} = 1;
-    }
-
-    foreach my $user_id (@$added) {
-        $dbh->do("INSERT INTO component_cc (user_id, component_id) 
-                       VALUES (?, ?)", undef, $user_id, $component_old->id);
-        $vars->{'updated_initialcc'} = 1;
-    }
+    my $component =
+        Bugzilla::Component->check({ product => $product, name => $comp_old_name });
 
-    $dbh->bz_unlock_tables();
+    $component->set_name($comp_name);
+    $component->set_description($description);
+    $component->set_default_assignee($default_assignee);
+    $component->set_default_qa_contact($default_qa_contact);
+    $component->set_cc_list(\@initial_cc);
+    my $changes = $component->update();
 
-    my $component = new Bugzilla::Component($component_old->id);
-    
+    $vars->{'message'} = 'component_updated';
     $vars->{'comp'} = $component;
-    $vars->{'initial_cc_names'} = 
-        join(', ', map($_->login, @{$component->initial_cc}));
     $vars->{'product'} = $product;
+    $vars->{'changes'} = $changes;
     delete_token($token);
 
-    $template->process("admin/components/updated.html.tmpl",
-                       $vars)
+    $template->process("admin/components/list.html.tmpl", $vars)
       || ThrowTemplateError($template->error());
-
     exit;
 }
 
diff --git a/editfields.cgi b/editfields.cgi
index e57e1952c4c51052836c3636bc9347816acf41d7..50564c19094a1d5f43c74d62f1368951dde85619 100644
--- a/editfields.cgi
+++ b/editfields.cgi
@@ -16,7 +16,7 @@
 # Contributor(s): Frédéric Buclin <LpSolit@gmail.com>
 
 use strict;
-use lib ".";
+use lib qw(. lib);
 
 use Bugzilla;
 use Bugzilla::Constants;
diff --git a/editflagtypes.cgi b/editflagtypes.cgi
index 0aec0385d621e50f289394b3f413f2d0dcf8282e..4117c91e8b91a9953880755b42d44233d67301a5 100755
--- a/editflagtypes.cgi
+++ b/editflagtypes.cgi
@@ -27,7 +27,7 @@
 
 # Make it harder for us to do dangerous things in Perl.
 use strict;
-use lib ".";
+use lib qw(. lib);
 
 # Use Bugzilla's flag modules for handling flag types.
 use Bugzilla;
@@ -309,9 +309,7 @@ sub insert {
 
     my $target_type = $cgi->param('target_type') eq "bug" ? "b" : "a";
 
-    $dbh->bz_lock_tables('flagtypes WRITE', 'products READ',
-                         'components READ', 'flaginclusions WRITE',
-                         'flagexclusions WRITE');
+    $dbh->bz_start_transaction();
 
     # Insert a record for the new flag type into the database.
     $dbh->do('INSERT INTO flagtypes
@@ -332,17 +330,19 @@ sub insert {
     # Populate the list of inclusions/exclusions for this flag type.
     validateAndSubmit($id);
 
-    $dbh->bz_unlock_tables();
+    $dbh->bz_commit_transaction();
 
-    $vars->{'name'} = $cgi->param('name');
+    $vars->{'name'} = $name;
     $vars->{'message'} = "flag_type_created";
     delete_token($token);
 
+    $vars->{'bug_types'} = Bugzilla::FlagType::match({'target_type' => 'bug'});
+    $vars->{'attachment_types'} = Bugzilla::FlagType::match({'target_type' => 'attachment'});
+
     # Return the appropriate HTTP response headers.
     print $cgi->header();
 
-    # Generate and return the UI (HTML page) from the appropriate template.
-    $template->process("global/message.html.tmpl", $vars)
+    $template->process("admin/flag-type/list.html.tmpl", $vars)
       || ThrowTemplateError($template->error());
 }
 
@@ -365,9 +365,7 @@ sub update {
 
     my $dbh = Bugzilla->dbh;
     my $user = Bugzilla->user;
-    $dbh->bz_lock_tables('flagtypes WRITE', 'products READ',
-                         'components READ', 'flaginclusions WRITE',
-                         'flagexclusions WRITE');
+    $dbh->bz_start_transaction();
     $dbh->do('UPDATE flagtypes
                  SET name = ?, description = ?, cc_list = ?,
                      sortkey = ?, is_active = ?, is_requestable = ?,
@@ -383,7 +381,7 @@ sub update {
     # Update the list of inclusions/exclusions for this flag type.
     validateAndSubmit($id);
 
-    $dbh->bz_unlock_tables();
+    $dbh->bz_commit_transaction();
 
     # Clear existing flags for bugs/attachments in categories no longer on 
     # the list of inclusions or that have been added to the list of exclusions.
@@ -431,15 +429,17 @@ sub update {
                  undef, $id);
     }
 
-    $vars->{'name'} = $cgi->param('name');
+    $vars->{'name'} = $name;
     $vars->{'message'} = "flag_type_changes_saved";
     delete_token($token);
 
+    $vars->{'bug_types'} = Bugzilla::FlagType::match({'target_type' => 'bug'});
+    $vars->{'attachment_types'} = Bugzilla::FlagType::match({'target_type' => 'attachment'});
+
     # Return the appropriate HTTP response headers.
     print $cgi->header();
 
-    # Generate and return the UI (HTML page) from the appropriate template.
-    $template->process("global/message.html.tmpl", $vars)
+    $template->process("admin/flag-type/list.html.tmpl", $vars)
       || ThrowTemplateError($template->error());
 }
 
@@ -473,8 +473,7 @@ sub deleteType {
     my $id = $flag_type->id;
     my $dbh = Bugzilla->dbh;
 
-    $dbh->bz_lock_tables('flagtypes WRITE', 'flags WRITE',
-                         'flaginclusions WRITE', 'flagexclusions WRITE');
+    $dbh->bz_start_transaction();
 
     # Get the name of the flag type so we can tell users
     # what was deleted.
@@ -484,16 +483,18 @@ sub deleteType {
     $dbh->do('DELETE FROM flaginclusions WHERE type_id = ?', undef, $id);
     $dbh->do('DELETE FROM flagexclusions WHERE type_id = ?', undef, $id);
     $dbh->do('DELETE FROM flagtypes WHERE id = ?', undef, $id);
-    $dbh->bz_unlock_tables();
+    $dbh->bz_commit_transaction();
 
     $vars->{'message'} = "flag_type_deleted";
     delete_token($token);
 
+    $vars->{'bug_types'} = Bugzilla::FlagType::match({'target_type' => 'bug'});
+    $vars->{'attachment_types'} = Bugzilla::FlagType::match({'target_type' => 'attachment'});
+
     # Return the appropriate HTTP response headers.
     print $cgi->header();
 
-    # Generate and return the UI (HTML page) from the appropriate template.
-    $template->process("global/message.html.tmpl", $vars)
+    $template->process("admin/flag-type/list.html.tmpl", $vars)
       || ThrowTemplateError($template->error());
 }
 
@@ -506,19 +507,22 @@ sub deactivate {
 
     my $dbh = Bugzilla->dbh;
 
-    $dbh->bz_lock_tables('flagtypes WRITE');
+    $dbh->bz_start_transaction();
     $dbh->do('UPDATE flagtypes SET is_active = 0 WHERE id = ?', undef, $flag_type->id);
-    $dbh->bz_unlock_tables();
+    $dbh->bz_commit_transaction();
 
     $vars->{'message'} = "flag_type_deactivated";
     $vars->{'flag_type'} = $flag_type;
     delete_token($token);
 
+    $vars->{'bug_types'} = Bugzilla::FlagType::match({'target_type' => 'bug'});
+    $vars->{'attachment_types'} = Bugzilla::FlagType::match({'target_type' => 'attachment'});
+
     # Return the appropriate HTTP response headers.
     print $cgi->header();
 
     # Generate and return the UI (HTML page) from the appropriate template.
-    $template->process("global/message.html.tmpl", $vars)
+    $template->process("admin/flag-type/list.html.tmpl", $vars)
       || ThrowTemplateError($template->error());
 }
 
@@ -605,7 +609,8 @@ sub validateComponent {
     ($product && $product->id)
       || ThrowUserError("flag_type_component_without_product");
 
-    my $component = Bugzilla::Component::check_component($product, $component_name);
+    my $component = Bugzilla::Component->check({ product => $product,
+                                                 name => $component_name });
     return $component;
 }
 
diff --git a/editgroups.cgi b/editgroups.cgi
index b9503426b58385bf86876a31e43bb7944c14fb78..c54924c5bc8c79b002dcf82ba0c84c809c1b4598 100755
--- a/editgroups.cgi
+++ b/editgroups.cgi
@@ -25,7 +25,7 @@
 #                 Frédéric Buclin <LpSolit@gmail.com>
 
 use strict;
-use lib ".";
+use lib qw(. lib);
 
 use Bugzilla;
 use Bugzilla::Constants;
@@ -257,7 +257,7 @@ if ($action eq 'new') {
               VALUES (?, ?, 1, ?, ?, ?)',
               undef, ($name, $desc, $regexp, $isactive, $icon_url));
 
-    my $gid = $dbh->bz_last_key('groups', 'id');
+    my $group = new Bugzilla::Group({name => $name});
     my $admin = Bugzilla::Group->new({name => 'admin'})->id();
     # Since we created a new group, give the "admin" group all privileges
     # initially.
@@ -265,9 +265,9 @@ if ($action eq 'new') {
                              (member_id, grantor_id, grant_type)
                              VALUES (?, ?, ?)');
 
-    $sth->execute($admin, $gid, GROUP_MEMBERSHIP);
-    $sth->execute($admin, $gid, GROUP_BLESS);
-    $sth->execute($admin, $gid, GROUP_VISIBLE);
+    $sth->execute($admin, $group->id, GROUP_MEMBERSHIP);
+    $sth->execute($admin, $group->id, GROUP_BLESS);
+    $sth->execute($admin, $group->id, GROUP_VISIBLE);
 
     # Permit all existing products to use the new group if makeproductgroups.
     if ($cgi->param('insertnew')) {
@@ -275,13 +275,18 @@ if ($action eq 'new') {
                   (group_id, product_id, entry, membercontrol,
                    othercontrol, canedit)
                   SELECT ?, products.id, 0, ?, ?, 0 FROM products',
-                  undef, ($gid, CONTROLMAPSHOWN, CONTROLMAPNA));
+                  undef, ($group->id, CONTROLMAPSHOWN, CONTROLMAPNA));
     }
-    Bugzilla::Group::RederiveRegexp($regexp, $gid);
+    Bugzilla::Group::RederiveRegexp($regexp, $group->id);
     delete_token($token);
 
+    $vars->{'message'} = 'group_created';
+    $vars->{'group'} = $group;
+    get_current_and_available($group, $vars);
+    $vars->{'token'} = issue_session_token('edit_group');
+
     print $cgi->header();
-    $template->process("admin/groups/created.html.tmpl", $vars)
+    $template->process("admin/groups/edit.html.tmpl", $vars)
       || ThrowTemplateError($template->error());
     exit;
 }
@@ -454,10 +459,12 @@ if ($action eq 'delete') {
 
     delete_token($token);
 
+    $vars->{'message'} = 'group_deleted';
+    $vars->{'groups'} = [Bugzilla::Group->get_all];
+
     print $cgi->header();
-    $template->process("admin/groups/deleted.html.tmpl", $vars)
+    $template->process("admin/groups/list.html.tmpl", $vars)
       || ThrowTemplateError($template->error());
-
     exit;
 }
 
@@ -502,8 +509,7 @@ if ($action eq 'remove_regexp') {
     my $group  = new Bugzilla::Group(CheckGroupID($cgi->param('group_id')));
     my $regexp = CheckGroupRegexp($cgi->param('regexp'));
 
-    $dbh->bz_lock_tables('groups WRITE', 'profiles READ',
-                         'user_group_map WRITE');
+    $dbh->bz_start_transaction();
 
     my $users = $group->members_direct();
     my $sth_delete = $dbh->prepare(
@@ -517,14 +523,18 @@ if ($action eq 'remove_regexp') {
             push(@deleted, $member);
         }
     }
-    $dbh->bz_unlock_tables();
+    $dbh->bz_commit_transaction();
 
     $vars->{'users'}  = \@deleted;
     $vars->{'regexp'} = $regexp;
     delete_token($token);
-    
+
+    $vars->{'message'} = 'group_membership_removed';
+    $vars->{'group'} = $group->name;
+    $vars->{'groups'} = [Bugzilla::Group->get_all];
+
     print $cgi->header();
-    $template->process("admin/groups/remove.html.tmpl", $vars)
+    $template->process("admin/groups/list.html.tmpl", $vars)
       || ThrowTemplateError($template->error());
 
     exit;
@@ -543,13 +553,7 @@ sub doGroupChanges {
     my $cgi = Bugzilla->cgi;
     my $dbh = Bugzilla->dbh;
 
-    $dbh->bz_lock_tables('groups WRITE', 'group_group_map WRITE',
-                         'bug_group_map WRITE', 'user_group_map WRITE',
-                         'group_control_map READ', 'bugs READ', 'profiles READ',
-                         # Due to the way Bugzilla::Config::BugFields::get_param_list()
-                         # works, we need to lock these tables too.
-                         'priority READ', 'bug_severity READ', 'rep_platform READ',
-                         'op_sys READ');
+    $dbh->bz_start_transaction();
 
     # Check that the given group ID is valid and make a Group.
     my $group = new Bugzilla::Group(CheckGroupID($cgi->param('group_id')));
@@ -603,12 +607,13 @@ sub doGroupChanges {
                    $data->[0], $data->[1]);
     }
 
-    $dbh->bz_unlock_tables();
+    $dbh->bz_commit_transaction();
     return $changes;
 }
 
 sub _do_add {
     my ($group, $changes, $sth_insert, $field, $type, $reverse) = @_;
+    my $cgi = Bugzilla->cgi;
 
     my $current;
     # $reverse means we're doing a granted_by--that is, somebody else
@@ -639,6 +644,7 @@ sub _do_add {
 
 sub _do_remove {
     my ($group, $changes, $sth_delete, $field, $type, $reverse) = @_;
+    my $cgi = Bugzilla->cgi;
     my $remove_items = Bugzilla::Group->new_from_list([$cgi->param($field)]);
 
     foreach my $remove (@$remove_items) {
diff --git a/editkeywords.cgi b/editkeywords.cgi
index 3aca22e4384ad28e17e8252fe0e64d280931a96b..1e5d772963c828db556f08b4cea1317256c0057d 100755
--- a/editkeywords.cgi
+++ b/editkeywords.cgi
@@ -21,7 +21,7 @@
 # Contributor(s): Terry Weissman <terry@mozilla.org>
 
 use strict;
-use lib ".";
+use lib qw(. lib);
 
 use Bugzilla;
 use Bugzilla::Constants;
@@ -92,14 +92,15 @@ if ($action eq 'new') {
 
     print $cgi->header();
 
+    $vars->{'message'} = 'keyword_created';
     $vars->{'name'} = $keyword->name;
-    $template->process("admin/keywords/created.html.tmpl", $vars)
-      || ThrowTemplateError($template->error());
+    $vars->{'keywords'} = Bugzilla::Keyword->get_all_with_bug_count();
 
+    $template->process("admin/keywords/list.html.tmpl", $vars)
+      || ThrowTemplateError($template->error());
     exit;
 }
 
-    
 
 #
 # action='edit' -> present the edit keywords from
@@ -132,16 +133,19 @@ if ($action eq 'update') {
 
     $keyword->set_name($cgi->param('name'));
     $keyword->set_description($cgi->param('description'));
-    $keyword->update();
+    my $changes = $keyword->update();
 
     delete_token($token);
 
     print $cgi->header();
 
+    $vars->{'message'} = 'keyword_updated';
     $vars->{'keyword'} = $keyword;
-    $template->process("admin/keywords/rebuild-cache.html.tmpl", $vars)
-      || ThrowTemplateError($template->error());
+    $vars->{'changes'} = $changes;
+    $vars->{'keywords'} = Bugzilla::Keyword->get_all_with_bug_count();
 
+    $template->process("admin/keywords/list.html.tmpl", $vars)
+      || ThrowTemplateError($template->error());
     exit;
 }
 
@@ -173,9 +177,11 @@ if ($action eq 'delete') {
 
     print $cgi->header();
 
-    $template->process("admin/keywords/rebuild-cache.html.tmpl", $vars)
-      || ThrowTemplateError($template->error());
+    $vars->{'message'} = 'keyword_deleted';
+    $vars->{'keywords'} = Bugzilla::Keyword->get_all_with_bug_count();
 
+    $template->process("admin/keywords/list.html.tmpl", $vars)
+      || ThrowTemplateError($template->error());
     exit;
 }
 
diff --git a/editmilestones.cgi b/editmilestones.cgi
index 880e1d4a794bde7af8f0eb76ca634620ac88a77f..a5f0c3d637a44fa5fc9cd3e53916eb6799000f96 100755
--- a/editmilestones.cgi
+++ b/editmilestones.cgi
@@ -1,43 +1,47 @@
 #!/usr/bin/perl -wT
 # -*- Mode: perl; indent-tabs-mode: nil -*-
-
 #
-# This is a script to edit the target milestones. It is largely a copy of
-# the editversions.cgi script, since the two fields were set up in a
-# very similar fashion.
+# The contents of this file are subject to the Mozilla Public
+# License Version 1.1 (the "License"); you may not use this file
+# except in compliance with the License. You may obtain a copy of
+# the License at http://www.mozilla.org/MPL/
 #
-# (basically replace each occurrence of 'milestone' with 'version', and
-# you'll have the original script)
+# Software distributed under the License is distributed on an "AS
+# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
+# implied. See the License for the specific language governing
+# rights and limitations under the License.
 #
-# Matt Masson <matthew@zeroknowledge.com>
+# The Initial Developer of the Original Code is Matt Masson.
+# Portions created by Matt Masson are Copyright (C) 2000 Matt Masson.
+# All Rights Reserved.
 #
-# Contributors : Gavin Shelley <bugzilla@chimpychompy.org>
+# Contributors : Matt Masson <matthew@zeroknowledge.com>
+#                Gavin Shelley <bugzilla@chimpychompy.org>
 #                Frédéric Buclin <LpSolit@gmail.com>
-#
-
 
 use strict;
-use lib ".";
+use lib qw(. lib);
 
 use Bugzilla;
 use Bugzilla::Constants;
 use Bugzilla::Util;
 use Bugzilla::Error;
 use Bugzilla::Milestone;
-use Bugzilla::Bug;
 use Bugzilla::Token;
 
 my $cgi = Bugzilla->cgi;
 my $dbh = Bugzilla->dbh;
 my $template = Bugzilla->template;
 my $vars = {};
+# There is only one section about milestones in the documentation,
+# so all actions point to the same page.
+$vars->{'doc_section'} = 'milestones.html';
 
 #
 # Preliminary checks:
 #
 
 my $user = Bugzilla->login(LOGIN_REQUIRED);
-my $whoid = $user->id;
 
 print $cgi->header();
 
@@ -86,16 +90,11 @@ unless ($action) {
 
     $vars->{'showbugcounts'} = $showbugcounts;
     $vars->{'product'} = $product;
-    $template->process("admin/milestones/list.html.tmpl",
-                       $vars)
+    $template->process("admin/milestones/list.html.tmpl", $vars)
       || ThrowTemplateError($template->error());
-
     exit;
 }
 
-
-
-
 #
 # action='add' -> present form for parameters for new milestone
 #
@@ -105,62 +104,30 @@ unless ($action) {
 if ($action eq 'add') {
     $vars->{'token'} = issue_session_token('add_milestone');
     $vars->{'product'} = $product;
-    $template->process("admin/milestones/create.html.tmpl",
-                       $vars)
+    $template->process("admin/milestones/create.html.tmpl", $vars)
       || ThrowTemplateError($template->error());
-
     exit;
 }
 
-
-
 #
 # action='new' -> add milestone entered in the 'action=add' screen
 #
 
 if ($action eq 'new') {
     check_token_data($token, 'add_milestone');
-    $milestone_name || ThrowUserError('milestone_blank_name');
-
-    if (length($milestone_name) > 20) {
-        ThrowUserError('milestone_name_too_long',
-                       {'name' => $milestone_name});
-    }
-
-    $sortkey = Bugzilla::Milestone::check_sort_key($milestone_name,
-                                                   $sortkey);
-
-    my $milestone = new Bugzilla::Milestone(
-        { product => $product, name => $milestone_name });
-
-    if ($milestone) {
-        ThrowUserError('milestone_already_exists',
-                       {'name' => $milestone->name,
-                        'product' => $product->name});
-    }
-
-    # Add the new milestone
-    trick_taint($milestone_name);
-    $dbh->do('INSERT INTO milestones ( value, product_id, sortkey )
-              VALUES ( ?, ?, ? )',
-             undef, $milestone_name, $product->id, $sortkey);
-
-    $milestone = new Bugzilla::Milestone(
-        { product => $product, name => $milestone_name });
+    my $milestone = Bugzilla::Milestone->create({ name    => $milestone_name,
+                                                  product => $product,
+                                                  sortkey => $sortkey });
     delete_token($token);
 
+    $vars->{'message'} = 'milestone_created';
     $vars->{'milestone'} = $milestone;
     $vars->{'product'} = $product;
-    $template->process("admin/milestones/created.html.tmpl",
-                       $vars)
+    $template->process("admin/milestones/list.html.tmpl", $vars)
       || ThrowTemplateError($template->error());
-
     exit;
 }
 
-
-
-
 #
 # action='del' -> ask if user really wants to delete
 #
@@ -176,7 +143,7 @@ if ($action eq 'del') {
 
     # The default milestone cannot be deleted.
     if ($product->default_milestone eq $milestone->name) {
-        ThrowUserError("milestone_is_default", $vars);
+        ThrowUserError("milestone_is_default", { milestone => $milestone });
     }
     $vars->{'token'} = issue_session_token('delete_milestone');
 
@@ -185,8 +152,6 @@ if ($action eq 'del') {
     exit;
 }
 
-
-
 #
 # action='delete' -> really delete the milestone
 #
@@ -195,47 +160,19 @@ if ($action eq 'delete') {
     check_token_data($token, 'delete_milestone');
     my $milestone = Bugzilla::Milestone->check({ product => $product,
                                                  name    => $milestone_name });
+    $milestone->remove_from_db;
+    delete_token($token);
+
+    $vars->{'message'} = 'milestone_deleted';
     $vars->{'milestone'} = $milestone;
     $vars->{'product'} = $product;
+    $vars->{'no_edit_milestone_link'} = 1;
 
-    # The default milestone cannot be deleted.
-    if ($milestone->name eq $product->default_milestone) {
-        ThrowUserError("milestone_is_default", $vars);
-    }
-
-    if ($milestone->bug_count) {
-        # We don't want to delete bugs when deleting a milestone.
-        # Bugs concerned are reassigned to the default milestone.
-        my $bug_ids =
-          $dbh->selectcol_arrayref("SELECT bug_id FROM bugs
-                                    WHERE product_id = ? AND target_milestone = ?",
-                                    undef, ($product->id, $milestone->name));
-        my $timestamp = $dbh->selectrow_array("SELECT NOW()");
-        foreach my $bug_id (@$bug_ids) {
-            $dbh->do("UPDATE bugs SET target_milestone = ?,
-                      delta_ts = ? WHERE bug_id = ?",
-                      undef, ($product->default_milestone, $timestamp,
-                              $bug_id));
-            # We have to update the 'bugs_activity' table too.
-            LogActivityEntry($bug_id, 'target_milestone',
-                             $milestone->name,
-                             $product->default_milestone,
-                             $whoid, $timestamp);
-        }
-    }
-
-    $dbh->do("DELETE FROM milestones WHERE product_id = ? AND value = ?",
-             undef, ($product->id, $milestone->name));
-
-    delete_token($token);
-
-    $template->process("admin/milestones/deleted.html.tmpl", $vars)
+    $template->process("admin/milestones/list.html.tmpl", $vars)
       || ThrowTemplateError($template->error());
     exit;
 }
 
-
-
 #
 # action='edit' -> present the edit milestone form
 #
@@ -251,15 +188,11 @@ if ($action eq 'edit') {
     $vars->{'product'} = $product;
     $vars->{'token'} = issue_session_token('edit_milestone');
 
-    $template->process("admin/milestones/edit.html.tmpl",
-                       $vars)
+    $template->process("admin/milestones/edit.html.tmpl", $vars)
       || ThrowTemplateError($template->error());
-
     exit;
 }
 
-
-
 #
 # action='update' -> update the milestone
 #
@@ -267,93 +200,24 @@ if ($action eq 'edit') {
 if ($action eq 'update') {
     check_token_data($token, 'edit_milestone');
     my $milestone_old_name = trim($cgi->param('milestoneold') || '');
-    my $milestone_old = Bugzilla::Milestone->check(
-        { product => $product, name =>  $milestone_old_name });
-
-    if (length($milestone_name) > 20) {
-        ThrowUserError('milestone_name_too_long',
-                       {'name' => $milestone_name});
-    }
-
-    $dbh->bz_lock_tables('bugs WRITE',
-                         'milestones WRITE',
-                         'products WRITE');
-
-    if ($sortkey ne $milestone_old->sortkey) {
-        $sortkey = Bugzilla::Milestone::check_sort_key($milestone_name,
-                                                       $sortkey);
-
-        $dbh->do('UPDATE milestones SET sortkey = ?
-                  WHERE product_id = ?
-                  AND value = ?',
-                 undef,
-                 $sortkey,
-                 $product->id,
-                 $milestone_old->name);
-
-        $vars->{'updated_sortkey'} = 1;
-    }
-
-    if ($milestone_name ne $milestone_old->name) {
-        unless ($milestone_name) {
-            ThrowUserError('milestone_blank_name');
-        }
-        my $milestone = new Bugzilla::Milestone(
-            { product => $product, name => $milestone_name });
-        if ($milestone) {
-            ThrowUserError('milestone_already_exists',
-                           {'name' => $milestone->name,
-                            'product' => $product->name});
-        }
-
-        trick_taint($milestone_name);
-
-        $dbh->do('UPDATE bugs
-                  SET target_milestone = ?
-                  WHERE target_milestone = ?
-                  AND product_id = ?',
-                 undef,
-                 $milestone_name,
-                 $milestone_old->name,
-                 $product->id);
-
-        $dbh->do("UPDATE milestones
-                  SET value = ?
-                  WHERE product_id = ?
-                  AND value = ?",
-                 undef,
-                 $milestone_name,
-                 $product->id,
-                 $milestone_old->name);
-
-        $dbh->do("UPDATE products
-                  SET defaultmilestone = ?
-                  WHERE id = ?
-                  AND defaultmilestone = ?",
-                 undef,
-                 $milestone_name,
-                 $product->id,
-                 $milestone_old->name);
-
-        $vars->{'updated_name'} = 1;
-    }
+    my $milestone = Bugzilla::Milestone->check({ product => $product,
+                                                 name    => $milestone_old_name });
 
-    $dbh->bz_unlock_tables();
+    $milestone->set_name($milestone_name);
+    $milestone->set_sortkey($sortkey);
+    my $changes = $milestone->update();
 
-    my $milestone = Bugzilla::Milestone->check({ product => $product,
-                                                 name    => $milestone_name });
     delete_token($token);
 
+    $vars->{'message'} = 'milestone_updated';
     $vars->{'milestone'} = $milestone;
     $vars->{'product'} = $product;
-    $template->process("admin/milestones/updated.html.tmpl",
-                       $vars)
+    $vars->{'changes'} = $changes;
+    $template->process("admin/milestones/list.html.tmpl", $vars)
       || ThrowTemplateError($template->error());
-
     exit;
 }
 
-
 #
 # No valid action found
 #
diff --git a/editparams.cgi b/editparams.cgi
index 819c8c64580ac2bcbd1f345cdd209d490335f1ea..39faa16c6ecbd4d5f62dcff7a8b09258a9d06524 100755
--- a/editparams.cgi
+++ b/editparams.cgi
@@ -23,7 +23,7 @@
 #                 Frédéric Buclin <LpSolit@gmail.com>
 
 use strict;
-use lib ".";
+use lib qw(. lib);
 
 use Bugzilla;
 use Bugzilla::Constants;
diff --git a/editproducts.cgi b/editproducts.cgi
index 9be85ded9f0cb82828f5b1ec4530a5a3552d4d0b..e69c99c1e83cd266d559f02b8f82f3dd996b24de 100755
--- a/editproducts.cgi
+++ b/editproducts.cgi
@@ -26,13 +26,9 @@
 #               Frédéric Buclin <LpSolit@gmail.com>
 #               Greg Hendricks <ghendricks@novell.com>
 #               Lance Larsh <lance.larsh@oracle.com>
-#
-# Direct any questions on this source code to
-#
-# Holger Schurig <holgerschurig@nikocity.de>
 
 use strict;
-use lib ".";
+use lib qw(. lib);
 
 use Bugzilla;
 use Bugzilla::Constants;
@@ -48,6 +44,7 @@ use Bugzilla::Group;
 use Bugzilla::User;
 use Bugzilla::Field;
 use Bugzilla::Token;
+use Bugzilla::Status;
 
 #
 # Preliminary checks:
@@ -60,6 +57,9 @@ my $dbh = Bugzilla->dbh;
 my $cgi = Bugzilla->cgi;
 my $template = Bugzilla->template;
 my $vars = {};
+# Remove this as soon as the documentation about products has been
+# improved and each action has its own section.
+$vars->{'doc_section'} = 'products.html';
 
 print $cgi->header();
 
@@ -69,6 +69,28 @@ $user->in_group('editcomponents')
                                      action => "edit",
                                      object => "products"});
 
+sub get_group_controls {
+    my $product = shift;
+
+    my $group_controls = $product->group_controls;
+    # Convert Group Controls (membercontrol and othercontrol) from
+    # integer to string to display Membercontrol/Othercontrol names
+    # in the template.
+    my $constants = {
+        (CONTROLMAPNA) => 'NA',
+        (CONTROLMAPSHOWN) => 'Shown',
+        (CONTROLMAPDEFAULT) => 'Default',
+        (CONTROLMAPMANDATORY) => 'Mandatory'};
+
+    foreach my $group (keys %$group_controls) {
+        foreach my $control ('membercontrol', 'othercontrol') {
+            $group_controls->{$group}->{$control} =
+                $constants->{$group_controls->{$group}->{$control}};
+        }
+    }
+    return $group_controls;
+}
+
 #
 # often used variables
 #
@@ -335,9 +357,14 @@ if ($action eq 'new') {
     }
     delete_token($token);
 
+    $vars->{'message'} = 'product_created';
     $vars->{'product'} = $product;
+    $vars->{'classification'} = new Bugzilla::Classification($product->classification_id)
+      if Bugzilla->params->{'useclassification'};
+    $vars->{'group_controls'} = get_group_controls($product);
+    $vars->{'token'} = issue_session_token('edit_product');
 
-    $template->process("admin/products/created.html.tmpl", $vars)
+    $template->process("admin/products/edit.html.tmpl", $vars)
         || ThrowTemplateError($template->error());
     exit;
 }
@@ -378,8 +405,6 @@ if ($action eq 'delete') {
     my $product = $user->check_can_admin_product($product_name);
     check_token_data($token, 'delete_product');
 
-    $vars->{'product'} = $product;
-
     if (Bugzilla->params->{'useclassification'}) {
         my $classification = 
             Bugzilla::Classification::check_classification($classification_name);
@@ -406,10 +431,7 @@ if ($action eq 'delete') {
         }
     }
 
-    $dbh->bz_lock_tables('products WRITE', 'components WRITE',
-                         'versions WRITE', 'milestones WRITE',
-                         'group_control_map WRITE', 'component_cc WRITE',
-                         'flaginclusions WRITE', 'flagexclusions WRITE');
+    $dbh->bz_start_transaction();
 
     my $comp_ids = $dbh->selectcol_arrayref('SELECT id FROM components
                                              WHERE product_id = ?',
@@ -439,12 +461,37 @@ if ($action eq 'delete') {
     $dbh->do("DELETE FROM products WHERE id = ?",
              undef, $product->id);
 
-    $dbh->bz_unlock_tables();
+    $dbh->bz_commit_transaction();
+
+    # We have to delete these internal variables, else we get
+    # the old lists of products and classifications again.
+    delete $user->{selectable_products};
+    delete $user->{selectable_classifications};
 
     delete_token($token);
 
-    $template->process("admin/products/deleted.html.tmpl", $vars)
-        || ThrowTemplateError($template->error());
+    $vars->{'message'} = 'product_deleted';
+    $vars->{'product'} = $product;
+    $vars->{'no_edit_product_link'} = 1;
+
+    if (Bugzilla->params->{'useclassification'}) {
+        $vars->{'classifications'} = $user->get_selectable_classifications;
+
+        $template->process("admin/products/list-classifications.html.tmpl", $vars)
+          || ThrowTemplateError($template->error());
+    }
+    else {
+        my $products = $user->get_selectable_products;
+        # If the user has editcomponents privs for some products only,
+        # we have to restrict the list of products to display.
+        unless ($user->in_group('editcomponents')) {
+            $products = $user->get_products_by_permission('editcomponents');
+        }
+        $vars->{'products'} = $products;
+
+        $template->process("admin/products/list.html.tmpl", $vars)
+          || ThrowTemplateError($template->error());
+    }
     exit;
 }
 
@@ -474,30 +521,12 @@ if ($action eq 'edit' || (!$action && $product_name)) {
         }
         $vars->{'classification'} = $classification;
     }
-    my $group_controls = $product->group_controls;
-        
-    # Convert Group Controls(membercontrol and othercontrol) from 
-    # integer to string to display Membercontrol/Othercontrol names
-    # at the template. <gabriel@async.com.br>
-    my $constants = {
-        (CONTROLMAPNA) => 'NA',
-        (CONTROLMAPSHOWN) => 'Shown',
-        (CONTROLMAPDEFAULT) => 'Default',
-        (CONTROLMAPMANDATORY) => 'Mandatory'};
-
-    foreach my $group (keys(%$group_controls)) {
-        foreach my $control ('membercontrol', 'othercontrol') {
-            $group_controls->{$group}->{$control} = 
-                $constants->{$group_controls->{$group}->{$control}};
-        }
-    }
-    $vars->{'group_controls'} = $group_controls;
+    $vars->{'group_controls'} = get_group_controls($product);
     $vars->{'product'} = $product;
     $vars->{'token'} = issue_session_token('edit_product');
 
     $template->process("admin/products/edit.html.tmpl", $vars)
         || ThrowTemplateError($template->error());
-
     exit;
 }
 
@@ -586,12 +615,7 @@ if ($action eq 'updategroupcontrols') {
                             {groupname => $groupname});
         }
     }
-    $dbh->bz_lock_tables('groups READ',
-                         'group_control_map WRITE',
-                         'bugs WRITE',
-                         'bugs_activity WRITE',
-                         'bug_group_map WRITE',
-                         'fielddefs READ');
+    $dbh->bz_start_transaction();
 
     my $sth_Insert = $dbh->prepare('INSERT INTO group_control_map
                                     (group_id, product_id, entry, membercontrol,
@@ -770,7 +794,7 @@ if ($action eq 'updategroupcontrols') {
 
         push(@added_mandatory, \%group);
     }
-    $dbh->bz_unlock_tables();
+    $dbh->bz_commit_transaction();
 
     delete_token($token);
 
@@ -846,7 +870,7 @@ if ($action eq 'update') {
                        {votestoconfirm => $stored_votestoconfirm});
     }
 
-    $dbh->bz_lock_tables('products WRITE', 'milestones READ');
+    $dbh->bz_start_transaction();
 
     my $testproduct = 
         new Bugzilla::Product({name => $product_name});
@@ -916,7 +940,7 @@ if ($action eq 'update') {
                  undef, ($product_name, $product_old->id));
     }
 
-    $dbh->bz_unlock_tables();
+    $dbh->bz_commit_transaction();
 
     my $product = new Bugzilla::Product({name => $product_name});
 
diff --git a/editsettings.cgi b/editsettings.cgi
index a4a85710f92ecf6f65cd3625ef5137109c573629..d375a3d5d9e15c7bf28590961af94e1c8ef9ae7b 100755
--- a/editsettings.cgi
+++ b/editsettings.cgi
@@ -14,10 +14,10 @@
 # The Original Code is the Bugzilla Bug Tracking System.
 #
 # Contributor(s): Shane H. W. Travis <travis@sedsystems.ca>
-#
+#                 Frédéric Buclin <LpSolit@gmail.com>
 
 use strict;
-use lib qw(.);
+use lib qw(. lib);
 
 use Bugzilla;
 use Bugzilla::Constants;
@@ -27,84 +27,47 @@ use Bugzilla::User::Setting;
 use Bugzilla::Token;
 
 my $template = Bugzilla->template;
-local our $vars = {};
-
-###############################
-###  Subroutine Definitions ###
-###############################
-
-sub LoadSettings {
-
-    $vars->{'settings'} = Bugzilla::User::Setting::get_defaults();
+my $user = Bugzilla->login(LOGIN_REQUIRED);
+my $cgi = Bugzilla->cgi;
+my $vars = {};
 
-    my @setting_list = keys %{$vars->{'settings'}};
-    $vars->{'setting_names'} = \@setting_list;
-}
+print $cgi->header;
 
-sub SaveSettings{
+$user->in_group('tweakparams')
+  || ThrowUserError("auth_failure", {group  => "tweakparams",
+                                     action => "modify",
+                                     object => "settings"});
 
-    my $cgi = Bugzilla->cgi;
+my $action = trim($cgi->param('action') || '');
+my $token = $cgi->param('token');
 
-    $vars->{'settings'} = Bugzilla::User::Setting::get_defaults();
-    my @setting_list = keys %{$vars->{'settings'}};
+if ($action eq 'update') {
+    check_token_data($token, 'edit_settings');
+    my $settings = Bugzilla::User::Setting::get_defaults();
+    my $changed = 0;
 
-    foreach my $name (@setting_list) {
-        my $changed = 0;
-        my $old_enabled = $vars->{'settings'}->{$name}->{'is_enabled'};
-        my $old_value   = $vars->{'settings'}->{$name}->{'default_value'};
+    foreach my $name (keys %$settings) {
+        my $old_enabled = $settings->{$name}->{'is_enabled'};
+        my $old_value = $settings->{$name}->{'default_value'};
         my $enabled = defined $cgi->param("${name}-enabled") || 0;
         my $value = $cgi->param("${name}");
         my $setting = new Bugzilla::User::Setting($name);
 
         $setting->validate_value($value);
 
-        if ( ($old_enabled != $enabled) ||
-             ($old_value ne $value) ) {
+        if ($old_enabled != $enabled || $old_value ne $value) {
             Bugzilla::User::Setting::set_default($name, $value, $enabled);
+            $changed = 1;
         }
     }
-}
-
-###################
-###  Live code  ###
-###################
-
-my $user = Bugzilla->login(LOGIN_REQUIRED);
-
-my $cgi = Bugzilla->cgi;
-print $cgi->header;
-
-$user->in_group('tweakparams')
-  || ThrowUserError("auth_failure", {group  => "tweakparams",
-                                     action => "modify",
-                                     object => "settings"});
-
-my $action  = trim($cgi->param('action')  || 'load');
-my $token   = $cgi->param('token');
-
-if ($action eq 'update') {
-    check_token_data($token, 'edit_settings');
-    SaveSettings();
+    $vars->{'message'} = 'default_settings_updated';
+    $vars->{'changes_saved'} = $changed;
     delete_token($token);
-    $vars->{'changes_saved'} = 1;
-
-    $template->process("admin/settings/updated.html.tmpl", $vars)
-      || ThrowTemplateError($template->error());
-
-    exit;
 }
 
-if ($action eq 'load') {
-    LoadSettings();
-    $vars->{'token'} = issue_session_token('edit_settings');
-
-    $template->process("admin/settings/edit.html.tmpl", $vars)
-      || ThrowTemplateError($template->error());
+# Don't use $settings as defaults may have changed.
+$vars->{'settings'} = Bugzilla::User::Setting::get_defaults();
+$vars->{'token'} = issue_session_token('edit_settings');
 
-    exit;
-}
-
-#
-# No valid action found
-#
-ThrowUserError('no_valid_action', {'field' => "settings"});
+$template->process("admin/settings/edit.html.tmpl", $vars)
+  || ThrowTemplateError($template->error());
diff --git a/editusers.cgi b/editusers.cgi
index 076a2de986ae306cff8eae39047f90365e16029c..6dda0e97aa093fdf185904a3b90c269e9b92b75c 100755
--- a/editusers.cgi
+++ b/editusers.cgi
@@ -21,7 +21,7 @@
 #                 Gavin Shelley  <bugzilla@chimpychompy.org>
 
 use strict;
-use lib ".";
+use lib qw(. lib);
 
 use Bugzilla;
 use Bugzilla::Constants;
@@ -227,18 +227,7 @@ if ($action eq 'search') {
     $otherUserID = $otherUser->id;
 
     # Lock tables during the check+update session.
-    $dbh->bz_lock_tables('profiles WRITE',
-                         'profiles_activity WRITE',
-                         'fielddefs READ',
-                         'tokens WRITE',
-                         'logincookies WRITE',
-                         'groups READ',
-                         'user_group_map WRITE',
-                         'group_group_map READ',
-                         'group_group_map AS ggm READ',
-                         'user_group_map AS directmember READ',
-                         'user_group_map AS regexpmember READ',
-                         'user_group_map AS directbless READ');
+    $dbh->bz_start_transaction();
  
     $editusers || $user->can_see_user($otherUser)
         || ThrowUserError('auth_failure', {reason => "not_visible",
@@ -338,7 +327,7 @@ if ($action eq 'search') {
     }
     # XXX: should create profiles_activity entries for blesser changes.
 
-    $dbh->bz_unlock_tables();
+    $dbh->bz_commit_transaction();
 
     # XXX: userDataToVars may be off when editing ourselves.
     userDataToVars($otherUserID);
@@ -454,33 +443,7 @@ if ($action eq 'search') {
     # XXX: if there was some change on these tables after the deletion
     #      confirmation checks, we may do something here we haven't warned
     #      about.
-    $dbh->bz_lock_tables('bugs WRITE',
-                         'bugs_activity WRITE',
-                         'attachments READ',
-                         'fielddefs READ',
-                         'products READ',
-                         'components READ',
-                         'logincookies WRITE',
-                         'profiles WRITE',
-                         'profiles_activity WRITE',
-                         'email_setting WRITE',
-                         'profile_setting WRITE',
-                         'bug_group_map READ',
-                         'user_group_map WRITE',
-                         'flags WRITE',
-                         'flagtypes READ',
-                         'cc WRITE',
-                         'namedqueries WRITE',
-                         'namedqueries_link_in_footer WRITE',
-                         'namedquery_group_map WRITE',
-                         'tokens WRITE',
-                         'votes WRITE',
-                         'watch WRITE',
-                         'series WRITE',
-                         'series_data WRITE',
-                         'whine_schedules WRITE',
-                         'whine_queries WRITE',
-                         'whine_events WRITE');
+    $dbh->bz_start_transaction();
 
     Bugzilla->params->{'allowuserdeletion'}
         || ThrowUserError('users_deletion_disabled');
@@ -588,9 +551,6 @@ if ($action eq 'search') {
     }
 
     # 2) Whines
-    my $sth_whineidFromSchedules = $dbh->prepare(
-           qq{SELECT eventid FROM whine_schedules
-              WHERE mailto = ? AND mailto_type = ?});
     my $sth_whineidFromEvents = $dbh->prepare(
            'SELECT id FROM whine_events WHERE owner_userid = ?');
     my $sth_deleteWhineEvent = $dbh->prepare(
@@ -600,12 +560,8 @@ if ($action eq 'search') {
     my $sth_deleteWhineSchedule = $dbh->prepare(
            'DELETE FROM whine_schedules WHERE eventid = ?');
 
-    $sth_whineidFromSchedules->execute($otherUserID, MAILTO_USER);
-    while ($id = $sth_whineidFromSchedules->fetchrow_array()) {
-        $sth_deleteWhineQuery->execute($id);
-        $sth_deleteWhineSchedule->execute($id);
-        $sth_deleteWhineEvent->execute($id);
-    }
+    $dbh->do('DELETE FROM whine_schedules WHERE mailto = ? AND mailto_type = ?',
+             undef, ($otherUserID, MAILTO_USER));
 
     $sth_whineidFromEvents->execute($otherUserID);
     while ($id = $sth_whineidFromEvents->fetchrow_array()) {
@@ -664,7 +620,7 @@ if ($action eq 'search') {
     # Finally, remove the user account itself.
     $dbh->do('DELETE FROM profiles WHERE userid = ?', undef, $otherUserID);
 
-    $dbh->bz_unlock_tables();
+    $dbh->bz_commit_transaction();
     delete_token($token);
 
     $vars->{'message'} = 'account_deleted';
diff --git a/editvalues.cgi b/editvalues.cgi
index a9d5878c0990d5308f403e000c556d87edba002a..361e206e536d4315778dde9b99c40c94753c9577 100755
--- a/editvalues.cgi
+++ b/editvalues.cgi
@@ -19,7 +19,7 @@
 # with some cleanup.
 
 use strict;
-use lib ".";
+use lib qw(. lib);
 
 use Bugzilla;
 use Bugzilla::Util;
@@ -110,7 +110,11 @@ Bugzilla->login(LOGIN_REQUIRED);
 my $dbh      = Bugzilla->dbh;
 my $cgi      = Bugzilla->cgi;
 my $template = Bugzilla->template;
-my $vars = {};
+local our $vars = {};
+
+# Replace this entry by separate entries in templates when
+# the documentation about legal values becomes bigger.
+$vars->{'doc_section'} = 'edit-values.html';
 
 print $cgi->header();
 
@@ -130,7 +134,7 @@ my $token   = $cgi->param('token');
 
 # Gives the name of the parameter associated with the field
 # and representing its default value.
-my %defaults;
+local our %defaults;
 $defaults{'op_sys'} = 'defaultopsys';
 $defaults{'rep_platform'} = 'defaultplatform';
 $defaults{'priority'} = 'defaultpriority';
@@ -138,7 +142,7 @@ $defaults{'bug_severity'} = 'defaultseverity';
 
 # Alternatively, a list of non-editable values can be specified.
 # In this case, only the sortkey can be altered.
-my %static;
+local our %static;
 $static{'bug_status'} = ['UNCONFIRMED', Bugzilla->params->{'duplicate_or_move_bug_status'}];
 $static{'resolution'} = ['', 'FIXED', 'MOVED', 'DUPLICATE'];
 $static{$_->name} = ['---'] foreach (@custom_fields);
@@ -161,27 +165,31 @@ unless ($field) {
 }
 
 # At this point, the field is defined.
-$vars->{'field'} = FieldMustExist($field);
+my $field_obj = FieldMustExist($field);
+$vars->{'field'} = $field_obj;
 trick_taint($field);
 
-#
-# action='' -> Show nice list of values.
-#
-unless ($action) {
+sub display_field_values {
+    my $template = Bugzilla->template;
+    my $field = $vars->{'field'}->name;
     my $fieldvalues =
-        $dbh->selectall_arrayref("SELECT value AS name, sortkey"
-                               . "  FROM $field ORDER BY sortkey, value",
-                                 {Slice =>{}});
+      Bugzilla->dbh->selectall_arrayref("SELECT value AS name, sortkey"
+                                      . "  FROM $field ORDER BY sortkey, value",
+                                        {Slice =>{}});
 
     $vars->{'values'} = $fieldvalues;
     $vars->{'default'} = Bugzilla->params->{$defaults{$field}} if defined $defaults{$field};
     $vars->{'static'} = $static{$field} if exists $static{$field};
+
     $template->process("admin/fieldvalues/list.html.tmpl", $vars)
       || ThrowTemplateError($template->error());
-
     exit;
 }
 
+#
+# action='' -> Show nice list of values.
+#
+display_field_values() unless $action;
 
 #
 # action='add' -> show form for adding new field value.
@@ -220,7 +228,7 @@ if ($action eq 'new') {
     }
     if (ValueExists($field, $value)) {
         ThrowUserError('fieldvalue_already_exists',
-                       {'field' => $field,
+                       {'field' => $field_obj,
                         'value' => $value});
     }
     if ($field eq 'bug_status'
@@ -249,12 +257,9 @@ if ($action eq 'new') {
 
     delete_token($token);
 
+    $vars->{'message'} = 'field_value_created';
     $vars->{'value'} = $value;
-    $template->process("admin/fieldvalues/created.html.tmpl",
-                       $vars)
-      || ThrowTemplateError($template->error());
-
-    exit;
+    display_field_values();
 }
 
 
@@ -267,10 +272,18 @@ if ($action eq 'del') {
     trick_taint($value);
 
     # See if any bugs are still using this value.
-    $vars->{'bug_count'} = 
-        $dbh->selectrow_array("SELECT COUNT(*) FROM bugs WHERE $field = ?",
-                              undef, $value) || 0;
-    $vars->{'value_count'} = 
+    if ($field_obj->type != FIELD_TYPE_MULTI_SELECT) {
+        $vars->{'bug_count'} =
+            $dbh->selectrow_array("SELECT COUNT(*) FROM bugs WHERE $field = ?",
+                                  undef, $value);
+    }
+    else {
+        $vars->{'bug_count'} =
+            $dbh->selectrow_array("SELECT COUNT(*) FROM bug_$field WHERE value = ?",
+                                  undef, $value);
+    }
+
+    $vars->{'value_count'} =
         $dbh->selectrow_array("SELECT COUNT(*) FROM $field");
 
     $vars->{'value'} = $value;
@@ -312,20 +325,28 @@ if ($action eq 'delete') {
 
     trick_taint($value);
 
-    my @lock_tables = ('bugs READ', "$field WRITE");
-    push(@lock_tables, 'status_workflow WRITE') if ($field eq 'bug_status');
-    $dbh->bz_lock_tables(@lock_tables);
+    $dbh->bz_start_transaction();
 
     # Check if there are any bugs that still have this value.
-    my $bug_ids = $dbh->selectcol_arrayref(
-        "SELECT bug_id FROM bugs WHERE $field = ?", undef, $value);
+    my $bug_count;
+    if ($field_obj->type != FIELD_TYPE_MULTI_SELECT) {
+        $bug_count =
+            $dbh->selectrow_array("SELECT COUNT(*) FROM bugs WHERE $field = ?",
+                                  undef, $value);
+    }
+    else {
+        $bug_count =
+            $dbh->selectrow_array("SELECT COUNT(*) FROM bug_$field WHERE value = ?",
+                                  undef, $value);
+    }
+
 
-    if (scalar(@$bug_ids)) {
+    if ($bug_count) {
         # You tried to delete a field that bugs are still using.
         # You can't just delete the bugs. That's ridiculous. 
         ThrowUserError("fieldvalue_still_has_bugs", 
                        { field => $field, value => $value,
-                         count => scalar(@$bug_ids) });
+                         count => $bug_count });
     }
 
     if ($field eq 'bug_status') {
@@ -338,13 +359,12 @@ if ($action eq 'delete') {
 
     $dbh->do("DELETE FROM $field WHERE value = ?", undef, $value);
 
-    $dbh->bz_unlock_tables();
+    $dbh->bz_commit_transaction();
     delete_token($token);
 
-    $template->process("admin/fieldvalues/deleted.html.tmpl",
-                       $vars)
-      || ThrowTemplateError($template->error());
-    exit;
+    $vars->{'message'} = 'field_value_deleted';
+    $vars->{'no_edit_link'} = 1;
+    display_field_values();
 }
 
 
@@ -396,7 +416,7 @@ if ($action eq 'update') {
         ThrowUserError('fieldvalue_name_too_long', $vars);
     }
 
-    $dbh->bz_lock_tables('bugs WRITE', "$field WRITE");
+    $dbh->bz_start_transaction();
 
     # Need to store because detaint_natural() will delete this if
     # invalid
@@ -433,8 +453,14 @@ if ($action eq 'update') {
         }
         trick_taint($value);
 
-        $dbh->do("UPDATE bugs SET $field = ? WHERE $field = ?",
-                 undef, $value, $valueold);
+        if ($field_obj->type != FIELD_TYPE_MULTI_SELECT) {
+            $dbh->do("UPDATE bugs SET $field = ? WHERE $field = ?",
+                     undef, $value, $valueold);
+        }
+        else {
+            $dbh->do("UPDATE bug_$field SET value = ? WHERE value = ?",
+                     undef, $value, $valueold);
+        }
 
         $dbh->do("UPDATE $field SET value = ? WHERE value = ?",
                  undef, $value, $valueold);
@@ -442,7 +468,7 @@ if ($action eq 'update') {
         $vars->{'updated_value'} = 1;
     }
 
-    $dbh->bz_unlock_tables();
+    $dbh->bz_commit_transaction();
 
     # If the old value was the default value for the field,
     # update data/params accordingly.
@@ -458,11 +484,8 @@ if ($action eq 'update') {
     }
     delete_token($token);
 
-    $template->process("admin/fieldvalues/updated.html.tmpl",
-                       $vars)
-      || ThrowTemplateError($template->error());
-
-    exit;
+    $vars->{'message'} = 'field_value_updated';
+    display_field_values();
 }
 
 
diff --git a/editversions.cgi b/editversions.cgi
index 54f87457beddc8c5563452ef35706dd0d44a0c4e..85f4f8ca4f2e9b02fd5b17f4c0922bb3d3781c9e 100755
--- a/editversions.cgi
+++ b/editversions.cgi
@@ -22,14 +22,9 @@
 #                 Terry Weissman <terry@mozilla.org>
 #                 Gavin Shelley <bugzilla@chimpychompy.org>
 #                 Frédéric Buclin <LpSolit@gmail.com>
-#
-#
-# Direct any questions on this source code to
-#
-# Holger Schurig <holgerschurig@nikocity.de>
 
 use strict;
-use lib ".";
+use lib qw(. lib);
 
 use Bugzilla;
 use Bugzilla::Constants;
@@ -42,6 +37,9 @@ my $cgi = Bugzilla->cgi;
 my $dbh = Bugzilla->dbh;
 my $template = Bugzilla->template;
 my $vars = {};
+# There is only one section about versions in the documentation,
+# so all actions point to the same page.
+$vars->{'doc_section'} = 'versions.html';
 
 #
 # Preliminary checks:
@@ -100,9 +98,6 @@ unless ($action) {
     exit;
 }
 
-
-
-
 #
 # action='add' -> present form for parameters for new version
 #
@@ -118,8 +113,6 @@ if ($action eq 'add') {
     exit;
 }
 
-
-
 #
 # action='new' -> add version entered in the 'action=add' screen
 #
@@ -129,17 +122,15 @@ if ($action eq 'new') {
     my $version = Bugzilla::Version::create($version_name, $product);
     delete_token($token);
 
+    $vars->{'message'} = 'version_created';
     $vars->{'version'} = $version;
     $vars->{'product'} = $product;
-    $template->process("admin/versions/created.html.tmpl", $vars)
+    $template->process("admin/versions/list.html.tmpl", $vars)
       || ThrowTemplateError($template->error());
 
     exit;
 }
 
-
-
-
 #
 # action='del' -> ask if user really wants to delete
 #
@@ -158,8 +149,6 @@ if ($action eq 'del') {
     exit;
 }
 
-
-
 #
 # action='delete' -> really delete the version
 #
@@ -171,17 +160,17 @@ if ($action eq 'delete') {
     $version->remove_from_db;
     delete_token($token);
 
+    $vars->{'message'} = 'version_deleted';
     $vars->{'version'} = $version;
     $vars->{'product'} = $product;
+    $vars->{'no_edit_version_link'} = 1;
 
-    $template->process("admin/versions/deleted.html.tmpl", $vars)
+    $template->process("admin/versions/list.html.tmpl", $vars)
       || ThrowTemplateError($template->error());
 
     exit;
 }
 
-
-
 #
 # action='edit' -> present the edit version form
 #
@@ -201,8 +190,6 @@ if ($action eq 'edit') {
     exit;
 }
 
-
-
 #
 # action='update' -> update the version
 #
@@ -213,23 +200,22 @@ if ($action eq 'update') {
     my $version = Bugzilla::Version->check({ product => $product,
                                              name   => $version_old_name });
 
-    $dbh->bz_lock_tables('bugs WRITE', 'versions WRITE');
+    $dbh->bz_start_transaction();
 
     $vars->{'updated'} = $version->update($version_name, $product);
 
-    $dbh->bz_unlock_tables();
+    $dbh->bz_commit_transaction();
     delete_token($token);
 
+    $vars->{'message'} = 'version_updated';
     $vars->{'version'} = $version;
     $vars->{'product'} = $product;
-    $template->process("admin/versions/updated.html.tmpl", $vars)
+    $template->process("admin/versions/list.html.tmpl", $vars)
       || ThrowTemplateError($template->error());
 
     exit;
 }
 
-
-
 #
 # No valid action found
 #
diff --git a/editwhines.cgi b/editwhines.cgi
index ba39b543ddac115d23231334fec0e61beec6d50a..7da598dd8b1f03a3ef1a2f0c0ead9557d185dfe3 100755
--- a/editwhines.cgi
+++ b/editwhines.cgi
@@ -27,7 +27,7 @@
 
 use strict;
 
-use lib ".";
+use lib qw(. lib);
 
 use Bugzilla;
 use Bugzilla::Constants;
diff --git a/editworkflow.cgi b/editworkflow.cgi
index d599a97fdc6ec96ed2b8a35d6d0bab32d1ad6232..eddf845f22438bf595a1f1d5a508543a27359ad1 100644
--- a/editworkflow.cgi
+++ b/editworkflow.cgi
@@ -21,7 +21,7 @@
 
 use strict;
 
-use lib qw(.);
+use lib qw(. lib);
 
 use Bugzilla;
 use Bugzilla::Constants;
diff --git a/email_in.pl b/email_in.pl
index be9abadea57d05486c7e044fe6c38bfae2a241c4..ca7a297350629a1b7f430de4cdf2b67bafad6080 100644
--- a/email_in.pl
+++ b/email_in.pl
@@ -29,6 +29,8 @@ BEGIN {
     chdir(File::Basename::dirname($0)); 
 }
 
+use lib qw(. lib);
+
 use Data::Dumper;
 use Email::Address;
 use Email::Reply qw(reply);
@@ -36,6 +38,7 @@ use Email::MIME;
 use Email::MIME::Attachment::Stripper;
 use Getopt::Long qw(:config bundling);
 use Pod::Usage;
+use Encode;
 
 use Bugzilla;
 use Bugzilla::Bug qw(ValidateBugID);
@@ -210,22 +213,17 @@ sub process_bug {
     ValidateBugID($bug_id);
     my $bug = new Bugzilla::Bug($bug_id);
 
-    if ($fields{'assigned_to'}) {
-        $fields{'knob'} = 'reassign';
+    if ($fields{'bug_status'}) {
+        $fields{'knob'} = $fields{'bug_status'};
     }
-    if (my $status = $fields{'bug_status'}) {
-        $fields{'knob'} = 'confirm' if $status =~ /NEW/i;
-        $fields{'knob'} = 'accept'  if $status =~ /ASSIGNED/i;
-        $fields{'knob'} = 'clearresolution' if $status =~ /REOPENED/i;
-        $fields{'knob'} = 'verify'  if $status =~ /VERIFIED/i;
-        $fields{'knob'} = 'close'   if $status =~ /CLOSED/i;
+    # If no status is given, then we only want to change the resolution.
+    elsif ($fields{'resolution'}) {
+        $fields{'knob'} = 'change_resolution';
+        $fields{'resolution_knob_change_resolution'} = $fields{'resolution'};
     }
     if ($fields{'dup_id'}) {
         $fields{'knob'} = 'duplicate';
     }
-    if ($fields{'resolution'}) {
-        $fields{'knob'} = 'resolve';
-    }
 
     # Make sure we don't get prompted if we have to change the default
     # groups.
@@ -295,9 +293,18 @@ sub get_text_alternative {
     my $body;
     foreach my $part (@parts) {
         my $ct = $part->content_type || 'text/plain';
+        my $charset = 'iso-8859-1';
+        # The charset may be quoted.
+        if ($ct =~ /charset="?([^;"]+)/) {
+            $charset= $1;
+        }
         debug_print("Part Content-Type: $ct", 2);
+        debug_print("Part Character Encoding: $charset", 2);
         if (!$ct || $ct =~ /^text\/plain/i) {
             $body = $part->body;
+            if (Bugzilla->params->{'utf8'} && !utf8::is_utf8($body)) {
+                $body = Encode::decode($charset, $body);
+            }
             last;
         }
     }
@@ -433,9 +440,24 @@ The script expects to read an email with the following format:
  be included in the bug description.
 
 The C<@> labels can be any valid field name in Bugzilla that can be
-set on C<enter_bug.cgi>. For the list of field names, see the
-C<fielddefs> table in the database. The above example shows the
-minimum fields you B<must> specify.
+set on C<enter_bug.cgi>. For the list of required field names, see 
+L<Bugzilla::WebService::Bug/Create>. Note, that there is some difference
+in the names of the required input fields between web and email interfaces, 
+as listed below:
+
+=over
+
+=item *
+
+C<platform> in web is C<@rep_platform> in email
+
+=item *
+
+C<severity> in web is C<@bug_severity> in email
+
+=back
+
+For the list of all field names, see the C<fielddefs> table in the database. 
 
 The values for the fields can be split across multiple lines, but
 note that a newline will be parsed as a single space, for the value.
diff --git a/enter_bug.cgi b/enter_bug.cgi
index d4ee73bfb032e032c5b66c3a33789bcf5dacb633..cce5a431e58ba430e03bdf945317969a62ccc295 100755
--- a/enter_bug.cgi
+++ b/enter_bug.cgi
@@ -35,7 +35,7 @@
 
 use strict;
 
-use lib qw(.);
+use lib qw(. lib);
 
 use Bugzilla;
 use Bugzilla::Constants;
@@ -61,6 +61,9 @@ my $dbh = Bugzilla->dbh;
 my $template = Bugzilla->template;
 my $vars = {};
 
+# All pages point to the same part of the documentation.
+$vars->{'doc_section'} = 'bugreports.html';
+
 my $product_name = trim($cgi->param('product') || '');
 # Will contain the product object the bug is created in.
 my $product;
diff --git a/extensions/CVS/Entries b/extensions/CVS/Entries
new file mode 100644
index 0000000000000000000000000000000000000000..03c3eab352e7ea50e4e0ed90ef790b8b4be48e9d
--- /dev/null
+++ b/extensions/CVS/Entries
@@ -0,0 +1 @@
+D/example////
diff --git a/extensions/CVS/Repository b/extensions/CVS/Repository
new file mode 100644
index 0000000000000000000000000000000000000000..78529a42daa3679fdc380fc73d5b2df458aa907f
--- /dev/null
+++ b/extensions/CVS/Repository
@@ -0,0 +1 @@
+mozilla/webtools/bugzilla/extensions
diff --git a/extensions/CVS/Root b/extensions/CVS/Root
new file mode 100644
index 0000000000000000000000000000000000000000..cdb6f4a0739a0dc53e628026726036377dec3637
--- /dev/null
+++ b/extensions/CVS/Root
@@ -0,0 +1 @@
+:pserver:anonymous@cvs-mirror.mozilla.org:/cvsroot
diff --git a/extensions/CVS/Tag b/extensions/CVS/Tag
new file mode 100644
index 0000000000000000000000000000000000000000..0ca7715dc476234040a6da28cf255d1c036fe0ae
--- /dev/null
+++ b/extensions/CVS/Tag
@@ -0,0 +1 @@
+TBUGZILLA-3_1_3
diff --git a/extensions/example/CVS/Entries b/extensions/example/CVS/Entries
new file mode 100644
index 0000000000000000000000000000000000000000..c283a82c1d2d9e1b4dfa3ed7186e797713cf540c
--- /dev/null
+++ b/extensions/example/CVS/Entries
@@ -0,0 +1,4 @@
+/disabled/1.1/Fri Oct 19 07:58:49 2007//TBUGZILLA-3_1_3
+/version.pl/1.1/Fri Oct 19 08:07:30 2007//TBUGZILLA-3_1_3
+D/code////
+D/lib////
diff --git a/extensions/example/CVS/Repository b/extensions/example/CVS/Repository
new file mode 100644
index 0000000000000000000000000000000000000000..a30c00aaded40e4fb214ef4dc2be27ca7a0d6afd
--- /dev/null
+++ b/extensions/example/CVS/Repository
@@ -0,0 +1 @@
+mozilla/webtools/bugzilla/extensions/example
diff --git a/extensions/example/CVS/Root b/extensions/example/CVS/Root
new file mode 100644
index 0000000000000000000000000000000000000000..cdb6f4a0739a0dc53e628026726036377dec3637
--- /dev/null
+++ b/extensions/example/CVS/Root
@@ -0,0 +1 @@
+:pserver:anonymous@cvs-mirror.mozilla.org:/cvsroot
diff --git a/extensions/example/CVS/Tag b/extensions/example/CVS/Tag
new file mode 100644
index 0000000000000000000000000000000000000000..31d8633e2f2aba270fc0fec77fda99283c580eea
--- /dev/null
+++ b/extensions/example/CVS/Tag
@@ -0,0 +1 @@
+NBUGZILLA-3_1_3
diff --git a/extensions/example/code/CVS/Entries b/extensions/example/code/CVS/Entries
new file mode 100644
index 0000000000000000000000000000000000000000..b2c781da4560969fa48414e847c2afe932da8d44
--- /dev/null
+++ b/extensions/example/code/CVS/Entries
@@ -0,0 +1,2 @@
+/webservice.pl/1.2/Fri Oct 19 08:01:51 2007//TBUGZILLA-3_1_3
+D
diff --git a/extensions/example/code/CVS/Repository b/extensions/example/code/CVS/Repository
new file mode 100644
index 0000000000000000000000000000000000000000..a27995294641ce7326df1e24fdf772f9f4589bc0
--- /dev/null
+++ b/extensions/example/code/CVS/Repository
@@ -0,0 +1 @@
+mozilla/webtools/bugzilla/extensions/example/code
diff --git a/extensions/example/code/CVS/Root b/extensions/example/code/CVS/Root
new file mode 100644
index 0000000000000000000000000000000000000000..cdb6f4a0739a0dc53e628026726036377dec3637
--- /dev/null
+++ b/extensions/example/code/CVS/Root
@@ -0,0 +1 @@
+:pserver:anonymous@cvs-mirror.mozilla.org:/cvsroot
diff --git a/extensions/example/code/CVS/Tag b/extensions/example/code/CVS/Tag
new file mode 100644
index 0000000000000000000000000000000000000000..31d8633e2f2aba270fc0fec77fda99283c580eea
--- /dev/null
+++ b/extensions/example/code/CVS/Tag
@@ -0,0 +1 @@
+NBUGZILLA-3_1_3
diff --git a/extensions/example/code/webservice.pl b/extensions/example/code/webservice.pl
new file mode 100644
index 0000000000000000000000000000000000000000..ff503be3992133e00d2c3a5da382f98d0ee0d20b
--- /dev/null
+++ b/extensions/example/code/webservice.pl
@@ -0,0 +1,25 @@
+# -*- Mode: perl; indent-tabs-mode: nil -*-
+#
+# The contents of this file are subject to the Mozilla Public
+# License Version 1.1 (the "License"); you may not use this file
+# except in compliance with the License. You may obtain a copy of
+# the License at http://www.mozilla.org/MPL/
+#
+# Software distributed under the License is distributed on an "AS
+# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
+# implied. See the License for the specific language governing
+# rights and limitations under the License.
+#
+# The Original Code is the Bugzilla Bug Tracking System.
+#
+# The Initial Developer of the Original Code is Everything Solved, Inc.
+# Portions created by Everything Solved, Inc. are Copyright (C) 2007 
+# Everything Solved, Inc. All Rights Reserved.
+#
+# Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
+
+use strict;
+use warnings;
+use Bugzilla;
+my $dispatch = Bugzilla->hook_args->{dispatch};
+$dispatch->{Example} = "extensions::example::lib::WSExample";
diff --git a/extensions/example/disabled b/extensions/example/disabled
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/extensions/example/lib/CVS/Entries b/extensions/example/lib/CVS/Entries
new file mode 100644
index 0000000000000000000000000000000000000000..60a3dba03b00967f4fd48031ace86c85e234fc89
--- /dev/null
+++ b/extensions/example/lib/CVS/Entries
@@ -0,0 +1,2 @@
+/WSExample.pm/1.2/Fri Oct 19 08:01:52 2007//TBUGZILLA-3_1_3
+D
diff --git a/extensions/example/lib/CVS/Repository b/extensions/example/lib/CVS/Repository
new file mode 100644
index 0000000000000000000000000000000000000000..a27c0ca59e935eced56d4e86033e00ab357fd138
--- /dev/null
+++ b/extensions/example/lib/CVS/Repository
@@ -0,0 +1 @@
+mozilla/webtools/bugzilla/extensions/example/lib
diff --git a/extensions/example/lib/CVS/Root b/extensions/example/lib/CVS/Root
new file mode 100644
index 0000000000000000000000000000000000000000..cdb6f4a0739a0dc53e628026726036377dec3637
--- /dev/null
+++ b/extensions/example/lib/CVS/Root
@@ -0,0 +1 @@
+:pserver:anonymous@cvs-mirror.mozilla.org:/cvsroot
diff --git a/extensions/example/lib/CVS/Tag b/extensions/example/lib/CVS/Tag
new file mode 100644
index 0000000000000000000000000000000000000000..31d8633e2f2aba270fc0fec77fda99283c580eea
--- /dev/null
+++ b/extensions/example/lib/CVS/Tag
@@ -0,0 +1 @@
+NBUGZILLA-3_1_3
diff --git a/extensions/example/lib/WSExample.pm b/extensions/example/lib/WSExample.pm
new file mode 100644
index 0000000000000000000000000000000000000000..ced4c6d369a8ae7a5e311be8b3da9db5fa03f3b2
--- /dev/null
+++ b/extensions/example/lib/WSExample.pm
@@ -0,0 +1,30 @@
+# -*- Mode: perl; indent-tabs-mode: nil -*-
+#
+# The contents of this file are subject to the Mozilla Public
+# License Version 1.1 (the "License"); you may not use this file
+# except in compliance with the License. You may obtain a copy of
+# the License at http://www.mozilla.org/MPL/
+#
+# Software distributed under the License is distributed on an "AS
+# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
+# implied. See the License for the specific language governing
+# rights and limitations under the License.
+#
+# The Original Code is the Bugzilla Bug Tracking System.
+#
+# The Initial Developer of the Original Code is Everything Solved, Inc.
+# Portions created by Everything Solved, Inc. are Copyright (C) 2007 
+# Everything Solved, Inc. All Rights Reserved.
+#
+# Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
+
+package extensions::example::lib::WSExample;
+use strict;
+use warnings;
+
+use base qw(Bugzilla::WebService);
+
+# This can be called as Example.hello() from XML-RPC.
+sub hello { return 'Hello!'; }
+
+1;
diff --git a/extensions/example/version.pl b/extensions/example/version.pl
new file mode 100644
index 0000000000000000000000000000000000000000..c1305f92fcb2ada86e8161696517e41764c357d3
--- /dev/null
+++ b/extensions/example/version.pl
@@ -0,0 +1,31 @@
+# -*- Mode: perl; indent-tabs-mode: nil -*-
+#
+# The contents of this file are subject to the Mozilla Public
+# License Version 1.1 (the "License"); you may not use this file
+# except in compliance with the License. You may obtain a copy of
+# the License at http://www.mozilla.org/MPL/
+#
+# Software distributed under the License is distributed on an "AS
+# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
+# implied. See the License for the specific language governing
+# rights and limitations under the License.
+#
+# The Original Code is the Bugzilla Example WebService Plugin
+#
+# The Initial Developer of the Original Code is Everything Solved, Inc.
+# Portions created by Everything Solved, Inc. are Copyright (C) 2007
+# Everything Solved, Inc. All Rights Reserved.
+#
+# Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
+
+# This script does some code to return a version number. However,
+# most plugins will probably just want to return a raw string.
+# To do that, the only contents of the file should be the string
+# on a single line, like:
+#
+# '1.2.3';
+
+use strict;
+no warnings qw(void); # Avoid "useless use of a constant in void context"
+use Bugzilla::Constants;
+BUGZILLA_VERSION;
diff --git a/images/CVS/Entries b/images/CVS/Entries
index d57978b19674e76b2e793869cc86e4b5afe768b5..16ecb7aafb43dd302d42166bc4ff5e611ee1ab64 100644
--- a/images/CVS/Entries
+++ b/images/CVS/Entries
@@ -1,2 +1,2 @@
-/padlock.png/1.2/Thu Sep 23 18:08:31 2004/-kb/TBUGZILLA-3_1_2
+/padlock.png/1.2/Thu Sep 23 18:08:31 2004/-kb/TBUGZILLA-3_1_3
 D
diff --git a/images/CVS/Tag b/images/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/images/CVS/Tag
+++ b/images/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/importxml.pl b/importxml.pl
index 9ef8150f62762e03bdf874c3a4e1142ef524f14e..80506971cf9b631d04a04a50a640b55fcdd07406 100755
--- a/importxml.pl
+++ b/importxml.pl
@@ -54,22 +54,16 @@ use strict;
 #
 #####################################################################
 
-# figure out which path this script lives in. Set the current path to
-# this and add it to @INC so this will work when run as part of mail
-# alias by the mailer daemon
-# since "use lib" is run at compile time, we need to enclose the
-# $::path declaration in a BEGIN block so that it is executed before
-# the rest of the file is compiled.
+use File::Basename qw(dirname);
+# MTAs may call this script from any directory, but it should always
+# run from this one so that it can find its modules.
 BEGIN {
-    $::path = $0;
-    $::path =~ m#(.*)/[^/]+#;
-    $::path = $1;
-    $::path ||= '.';    # $0 is empty at compile time.  This line will
-                        # have no effect on this script at runtime.
+    require File::Basename;
+    my $dir = $0; $dir =~ /(.*)/; $dir = $1; # trick taint
+    chdir(File::Basename::dirname($dir));
 }
 
-chdir $::path;
-use lib ($::path);
+use lib qw(. lib);
 # Data dumber is used for debugging, I got tired of copying it back in 
 # and then removing it. 
 #use Data::Dumper;
diff --git a/index.cgi b/index.cgi
index 7d1525b58ff426971c2d39898a4147919ebb71fb..100941765d9c03e82659ab593e3186d8b4d8ac8e 100755
--- a/index.cgi
+++ b/index.cgi
@@ -29,7 +29,7 @@
 use strict;
 
 # Include the Bugzilla CGI and general utility library.
-use lib ".";
+use lib qw(. lib);
 
 use Bugzilla;
 use Bugzilla::Constants;
diff --git a/install-module.pl b/install-module.pl
new file mode 100644
index 0000000000000000000000000000000000000000..a0de6d70aeba39841f1d41545e083dcd9001df0f
--- /dev/null
+++ b/install-module.pl
@@ -0,0 +1,153 @@
+#!/usr/bin/perl -w
+# -*- Mode: perl; indent-tabs-mode: nil -*-
+#
+# The contents of this file are subject to the Mozilla Public
+# License Version 1.1 (the "License"); you may not use this file
+# except in compliance with the License. You may obtain a copy of
+# the License at http://www.mozilla.org/MPL/
+#
+# Software distributed under the License is distributed on an "AS
+# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
+# implied. See the License for the specific language governing
+# rights and limitations under the License.
+#
+# The Original Code is the Bugzilla Bug Tracking System.
+#
+# The Initial Developer of the Original Code is Everything Solved, Inc.
+# Portions created by Everything Solved are Copyright (C) 2007
+# Everything Solved, Inc. All Rights Reserved.
+#
+# Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
+
+use strict;
+use warnings;
+
+# Have to abs_path('.') or calls to Bugzilla modules won't work once
+# CPAN has chdir'ed around. We do all of this in this funny order to
+# make sure that we use the lib/ modules instead of the base Perl modules,
+# in case the lib/ modules are newer.
+use Cwd qw(abs_path);
+use lib abs_path('.');
+use Bugzilla::Constants;
+use lib abs_path(bz_locations()->{ext_libpath});
+
+use Bugzilla::Install::CPAN;
+
+use Bugzilla::Constants;
+use Bugzilla::Install::Requirements;
+
+use Data::Dumper;
+use Getopt::Long;
+use Pod::Usage;
+
+our %switch;
+
+GetOptions(\%switch, 'all|a', 'upgrade-all|u', 'show-config|s', 'global|g',
+                     'help|h');
+
+pod2usage({ -verbose => 1 }) if $switch{'help'};
+pod2usage({ -verbose => 0 }) if (!%switch && !@ARGV);
+
+set_cpan_config($switch{'global'});
+
+if ($switch{'show-config'}) {
+  print Dumper($CPAN::Config);
+  exit;
+}
+
+my $can_notest = 1;
+if (substr(CPAN->VERSION, 0, 3) < 1.8) {
+    $can_notest = 0;
+    print "* Note: If you upgrade your CPAN module, installs will be faster.\n";
+    print "* You can upgrade CPAN by doing: $^X install-module.pl CPAN\n";
+}
+
+if ($switch{'all'} || $switch{'upgrade-all'}) {
+    my @modules;
+    if ($switch{'upgrade-all'}) {
+        @modules = (@{REQUIRED_MODULES()}, @{OPTIONAL_MODULES()});
+        push(@modules, DB_MODULE->{$_}->{dbd}) foreach (keys %{DB_MODULE()});
+    }
+    else {
+        # This is the only time we need a Bugzilla-related module, so
+        # we require them down here. Otherwise this script can be run from
+        # any directory, even outside of Bugzilla itself.
+        my $reqs = check_requirements(0);
+        @modules = (@{$reqs->{missing}}, @{$reqs->{optional}});
+        my $dbs = DB_MODULE;
+        foreach my $db (keys %$dbs) {
+            push(@modules, $dbs->{$db}->{dbd})
+                if !have_vers($dbs->{$db}->{dbd}, 0);
+        }
+    }
+    foreach my $module (@modules) {
+        my $cpan_name = $module->{module};
+        # --all shouldn't include mod_perl2, because it can have some complex
+        # configuration, and really should be installed on its own.
+        next if $cpan_name eq 'mod_perl2';
+        next if $cpan_name eq 'DBD::Oracle' and !$ENV{ORACLE_HOME};
+        install_module($cpan_name, $can_notest);
+    }
+}
+
+foreach my $module (@ARGV) {
+    install_module($module, $can_notest);
+}
+
+__END__
+
+=head1 NAME
+
+install-module.pl - Installs or upgrades modules from CPAN
+
+=head1 SYNOPSIS
+
+  ./install-module.pl Module::Name [--global]
+  ./install-module.pl --all [--global]
+  ./install-module.pl --all-upgrade [--global]
+  ./install-module.pl --show-config
+
+  Do "./install-module.pl --help" for more information.
+
+=head1 OPTIONS
+
+=over
+
+=item B<Module::Name>
+
+The name of a module that you want to install from CPAN. This is the
+same thing that you'd give to the C<install> command in the CPAN shell.
+
+You can specify multiple module names separated by a space to install
+multiple modules.
+
+=item B<--global>
+
+This makes install-module install modules globally for all applications,
+instead of just for Bugzilla.
+
+On most systems, you have to be root for C<--global> to work.
+
+=item B<--all>
+
+This will make install-module do its best to install every required
+and optional module that is not installed that Bugzilla can use.
+
+Some modules may fail to install. You can run checksetup.pl to see
+which installed properly.
+
+=item B<--upgrade-all>
+
+This is like C<--all>, except it forcibly installs the very latest
+version of every Bugzilla prerequisite, whether or not you already
+have them installed.
+
+=item B<--show-config>
+
+Prints out the CPAN configuration in raw Perl format. Useful for debugging.
+
+=item B<--help>
+
+Shows this help.
+
+=back
diff --git a/js/CVS/Entries b/js/CVS/Entries
index 3d5376ed096b755a553a11ccc33a58373e046d92..9d3c6ed11b6568e1150fae8744650f1d963f1d8e 100644
--- a/js/CVS/Entries
+++ b/js/CVS/Entries
@@ -1,10 +1,11 @@
-/TUI.js/1.1/Tue Jul 12 12:32:16 2005//TBUGZILLA-3_1_2
-/attachment.js/1.3/Wed Mar  7 07:59:33 2007//TBUGZILLA-3_1_2
-/duplicates.js/1.2/Sun Jan 25 18:47:16 2004//TBUGZILLA-3_1_2
-/expanding-tree.js/1.2/Wed Feb 22 22:02:09 2006//TBUGZILLA-3_1_2
-/help.js/1.1/Sun Apr 15 18:43:26 2007//TBUGZILLA-3_1_2
-/keyword-chooser.js/1.1/Mon May 14 17:56:30 2007//TBUGZILLA-3_1_2
-/params.js/1.1/Thu Aug  2 22:38:44 2007//TBUGZILLA-3_1_2
-/productform.js/1.3/Tue Apr 17 22:08:06 2007//TBUGZILLA-3_1_2
-/util.js/1.2/Mon May 14 17:56:30 2007//TBUGZILLA-3_1_2
-D
+/TUI.js/1.1/Tue Jul 12 12:32:16 2005//TBUGZILLA-3_1_3
+/attachment.js/1.3/Wed Mar  7 07:59:33 2007//TBUGZILLA-3_1_3
+/duplicates.js/1.2/Sun Jan 25 18:47:16 2004//TBUGZILLA-3_1_3
+/expanding-tree.js/1.2/Wed Feb 22 22:02:09 2006//TBUGZILLA-3_1_3
+/field.js/1.3/Sun Jan 27 19:21:11 2008//TBUGZILLA-3_1_3
+/help.js/1.1/Sun Apr 15 18:43:26 2007//TBUGZILLA-3_1_3
+/keyword-chooser.js/1.2/Thu Nov 29 02:20:26 2007//TBUGZILLA-3_1_3
+/params.js/1.1/Thu Aug  2 22:38:44 2007//TBUGZILLA-3_1_3
+/productform.js/1.3/Tue Apr 17 22:08:06 2007//TBUGZILLA-3_1_3
+/util.js/1.3/Thu Nov 29 02:20:26 2007//TBUGZILLA-3_1_3
+D/yui////
diff --git a/js/CVS/Tag b/js/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/js/CVS/Tag
+++ b/js/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/js/field.js b/js/field.js
new file mode 100644
index 0000000000000000000000000000000000000000..164ce1c31bbd718d20fab41e45a94afbd8e16bed
--- /dev/null
+++ b/js/field.js
@@ -0,0 +1,193 @@
+/* The contents of this file are subject to the Mozilla Public
+ * License Version 1.1 (the "License"); you may not use this file
+ * except in compliance with the License. You may obtain a copy of
+ * the License at http://www.mozilla.org/MPL/
+ *
+ * Software distributed under the License is distributed on an "AS
+ * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
+ * implied. See the License for the specific language governing
+ * rights and limitations under the License.
+ *
+ * The Original Code is the Bugzilla Bug Tracking System.
+ *
+ * The Initial Developer of the Original Code is Everything Solved, Inc.
+ * Portions created by Everything Solved are Copyright (C) 2007 Everything
+ * Solved, Inc. All Rights Reserved.
+ *
+ * Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
+ */
+
+/* This library assumes that the needed YUI libraries have been loaded 
+   already. */
+
+function createCalendar(name) {
+    var cal = new YAHOO.widget.Calendar('calendar_' + name, 
+                                        'con_calendar_' + name);
+    YAHOO.bugzilla['calendar_' + name] = cal;
+    var field = document.getElementById(name);
+    cal.selectEvent.subscribe(setFieldFromCalendar, field, false);
+    updateCalendarFromField(field);
+    cal.render();
+}
+
+/* The onclick handlers for the button that shows the calendar. */
+function showCalendar(field_name) {
+    var calendar  = YAHOO.bugzilla["calendar_" + field_name];
+    var field     = document.getElementById(field_name);
+    var button    = document.getElementById('button_calendar_' + field_name);
+
+    bz_overlayBelow(calendar.oDomContainer, field);
+    calendar.show();
+    button.onclick = function() { hideCalendar(field_name); };
+
+    // Because of the way removeListener works, this has to be a function
+    // attached directly to this calendar.
+    calendar.bz_myBodyCloser = function(event) {
+        var container = this.oDomContainer;
+        var target    = YAHOO.util.Event.getTarget(event);
+        if (target != container && target != button
+            && !YAHOO.util.Dom.isAncestor(container, target))
+        {
+            hideCalendar(field_name);
+        }
+    };
+
+    // If somebody clicks outside the calendar, hide it.
+    YAHOO.util.Event.addListener(document.body, 'click', 
+                                 calendar.bz_myBodyCloser, calendar, true);
+
+    // Make Esc close the calendar.
+    calendar.bz_escCal = function (event) {
+        var key = YAHOO.util.Event.getCharCode(event);
+        if (key == 27) {
+            hideCalendar(field_name);
+        }
+    };
+    YAHOO.util.Event.addListener(document.body, 'keydown', calendar.bz_escCal);
+}
+
+function hideCalendar(field_name) {
+    var cal = YAHOO.bugzilla["calendar_" + field_name];
+    cal.hide();
+    var button = document.getElementById('button_calendar_' + field_name);
+    button.onclick = function() { showCalendar(field_name); };
+    YAHOO.util.Event.removeListener(document.body, 'click',
+                                    cal.bz_myBodyCloser);
+    YAHOO.util.Event.removeListener(document.body, 'keydown', cal.bz_escCal);
+}
+
+/* This is the selectEvent for our Calendar objects on our custom 
+ * DateTime fields.
+ */
+function setFieldFromCalendar(type, args, date_field) {
+    var dates = args[0];
+    var setDate = dates[0];
+
+    // We can't just write the date straight into the field, because there 
+    // might already be a time there.
+    var timeRe = /\b(\d{1,2}):(\d\d)(?::(\d\d))?/;
+    var currentTime = timeRe.exec(date_field.value);
+    var d = new Date(setDate[0], setDate[1] - 1, setDate[2]);
+    if (currentTime) {
+        d.setHours(currentTime[1], currentTime[2]);
+        if (currentTime[3]) {
+            d.setSeconds(currentTime[3]);
+        }
+    }
+
+    var year = d.getFullYear();
+    // JavaScript's "Date" represents January as 0 and December as 11.
+    var month = d.getMonth() + 1;
+    if (month < 10) month = '0' + String(month);
+    var day = d.getDate();
+    if (day < 10) day = '0' + String(day);
+    var dateStr = year + '-' + month  + '-' + day;
+
+    if (currentTime) {
+        var minutes = d.getMinutes();
+        if (minutes < 10) minutes = '0' + String(minutes);
+        var seconds = d.getSeconds();
+        if (seconds > 0 && seconds < 10) {
+            seconds = '0' + String(seconds);
+        }
+
+        dateStr = dateStr + ' ' + d.getHours() + ':' + minutes;
+        if (seconds) dateStr = dateStr + ':' + seconds;
+    }
+
+    date_field.value = dateStr;
+    hideCalendar(date_field.id);
+}
+
+/* Sets the calendar based on the current field value. 
+ */ 
+function updateCalendarFromField(date_field) {
+    var dateRe = /(\d\d\d\d)-(\d\d?)-(\d\d?)/;
+    var pieces = dateRe.exec(date_field.value);
+    if (pieces) {
+        var cal = YAHOO.bugzilla["calendar_" + date_field.id];
+        cal.select(new Date(pieces[1], pieces[2] - 1, pieces[3]));
+        var selectedArray = cal.getSelectedDates();
+        var selected = selectedArray[0];
+        cal.cfg.setProperty("pagedate", (selected.getMonth() + 1) + '/' 
+                                        + selected.getFullYear());
+        cal.render();
+    }
+}
+
+
+/* Hide input fields and show the text with (edit) next to it */  
+function hideEditableField( container, input, action, field_id, original_value ) {
+    YAHOO.util.Dom.setStyle(container, 'display', 'inline');
+    YAHOO.util.Dom.setStyle(input, 'display', 'none');
+    YAHOO.util.Event.addListener(action, 'click', showEditableField, new Array(container, input) );
+    if(field_id != ""){
+      YAHOO.util.Event.addListener(window, 'load', checkForChangedFieldValues, new Array(container, input, field_id, original_value ));
+    }
+}
+
+/* showEditableField (e, ContainerInputArray)
+ * Function hides the (edit) link and the text and displays the input
+ *
+ * var e: the event
+ * var ContainerInputArray: An array containing the (edit) and text area and the input being displayed
+ * var ContainerInputArray[0]: the conainer that will be hidden usually shows the (edit) text
+ * var ContainerInputArray[1]: the input area and label that will be displayed
+ *
+ */
+function showEditableField (e, ContainerInputArray) {
+    YAHOO.util.Dom.setStyle(ContainerInputArray[0], 'display', 'none');
+    YAHOO.util.Dom.setStyle(ContainerInputArray[1], 'display', 'inline');
+    YAHOO.util.Event.preventDefault(e);
+}
+
+
+/* checkForChangedFieldValues(e, array )
+ * Function checks if after the autocomplete by the browser if the values match the originals.
+ *   If they don't match then hide the text and show the input so users don't get confused.
+ *
+ * var e: the event
+ * var ContainerInputArray: An array containing the (edit) and text area and the input being displayed
+ * var ContainerInputArray[0]: the conainer that will be hidden usually shows the (edit) text
+ * var ContainerInputArray[1]: the input area and label that will be displayed
+ * var ContainerInputArray[2]: the field that is on the page, might get changed by browser autocomplete 
+ * var ContainerInputArray[3]: the original value from the page loading.
+ *
+ */  
+function checkForChangedFieldValues(e, ContainerInputArray ) {
+    var el = document.getElementById(ContainerInputArray[2]);
+    if ( el ) {
+        if ( el.value != ContainerInputArray[3] || ( el.value == "" && el.id != "alias") ) {
+            YAHOO.util.Dom.setStyle(ContainerInputArray[0], 'display', 'none');
+            YAHOO.util.Dom.setStyle(ContainerInputArray[1], 'display', 'inline');
+        } 
+    }
+}
+
+function hideAliasAndSummary(short_desc_value, alias_value){
+  // check the short desc field
+  hideEditableField( 'summary_alias_container', 'summary_alias_input', 'editme_action', 'short_desc', short_desc_value);  
+  // check that the alias hasn't changed
+  bz_alias_check_array = new Array('summary_alias_container', 'summary_alias_input', 'alias', alias_value )
+  YAHOO.util.Event.addListener( window, 'load', checkForChangedFieldValues, bz_alias_check_array);
+}
diff --git a/js/keyword-chooser.js b/js/keyword-chooser.js
index afc90b49102f603352a4bd23f4d56ea1471f34b7..3bbf1bee2eb7df5c236a89494ce192c47229e2dd 100644
--- a/js/keyword-chooser.js
+++ b/js/keyword-chooser.js
@@ -65,17 +65,8 @@ KeywordChooser.prototype =
 
   positionChooser: function()
   {
-    if (this._positioned) {
-      return;
-    }
-
-    var elemY = bz_findPosY(this._parent);
-    var elemX = bz_findPosX(this._parent);
-    var elemH = this._parent.offsetHeight;
-
-    this._chooser.style.left = elemX + "px";
-    this._chooser.style.top = elemY + elemH + 1 + "px";
-
+    if (this._positioned) return;
+    bz_overlayBelow(this._chooser, this._parent);
     this._positioned = true;
   },
 
diff --git a/js/util.js b/js/util.js
index 293c89a5d4f8e9112e9bdd4d63a1d0b4fef9669f..98bafb664b958e3585f5b49fde14243b319485ed 100644
--- a/js/util.js
+++ b/js/util.js
@@ -116,6 +116,24 @@ function bz_getFullWidth(fromObj)
     return scrollX;
 }
 
+/**
+ * Causes a block to appear directly underneath another block,
+ * overlaying anything below it.
+ * 
+ * @param item   The block that you want to move.
+ * @param parent The block that it goes on top of.
+ * @return nothing
+ */
+function bz_overlayBelow(item, parent) {
+    var elemY = bz_findPosY(parent);
+    var elemX = bz_findPosX(parent);
+    var elemH = parent.offsetHeight;
+
+    item.style.position = 'absolute';
+    item.style.left = elemX + "px";
+    item.style.top = elemY + elemH + 1 + "px";
+}
+
 /**
  * Create wanted options in a select form control.
  *
diff --git a/js/yui/CVS/Entries b/js/yui/CVS/Entries
new file mode 100644
index 0000000000000000000000000000000000000000..266a9ddea9dcda8783ff4eae609520a55af592d4
--- /dev/null
+++ b/js/yui/CVS/Entries
@@ -0,0 +1,3 @@
+/calendar.js/1.1/Thu Nov 29 02:20:27 2007//TBUGZILLA-3_1_3
+/yahoo-dom-event.js/1.1/Thu Nov 29 02:20:27 2007//TBUGZILLA-3_1_3
+D
diff --git a/js/yui/CVS/Repository b/js/yui/CVS/Repository
new file mode 100644
index 0000000000000000000000000000000000000000..c4783f81678c9333a3140363a96cc421f3220640
--- /dev/null
+++ b/js/yui/CVS/Repository
@@ -0,0 +1 @@
+mozilla/webtools/bugzilla/js/yui
diff --git a/js/yui/CVS/Root b/js/yui/CVS/Root
new file mode 100644
index 0000000000000000000000000000000000000000..cdb6f4a0739a0dc53e628026726036377dec3637
--- /dev/null
+++ b/js/yui/CVS/Root
@@ -0,0 +1 @@
+:pserver:anonymous@cvs-mirror.mozilla.org:/cvsroot
diff --git a/js/yui/CVS/Tag b/js/yui/CVS/Tag
new file mode 100644
index 0000000000000000000000000000000000000000..31d8633e2f2aba270fc0fec77fda99283c580eea
--- /dev/null
+++ b/js/yui/CVS/Tag
@@ -0,0 +1 @@
+NBUGZILLA-3_1_3
diff --git a/js/yui/calendar.js b/js/yui/calendar.js
new file mode 100644
index 0000000000000000000000000000000000000000..a8eff37de749c965b497a708a0e3370a9b4779b6
--- /dev/null
+++ b/js/yui/calendar.js
@@ -0,0 +1,16 @@
+/*
+Copyright (c) 2007, Yahoo! Inc. All rights reserved.
+Code licensed under the BSD License:
+http://developer.yahoo.net/yui/license.txt
+version: 2.3.1
+*/
+(function(){YAHOO.util.Config=function(D){if(D){this.init(D);}if(!D){}};var B=YAHOO.lang,C=YAHOO.util.CustomEvent,A=YAHOO.util.Config;A.CONFIG_CHANGED_EVENT="configChanged";A.BOOLEAN_TYPE="boolean";A.prototype={owner:null,queueInProgress:false,config:null,initialConfig:null,eventQueue:null,configChangedEvent:null,init:function(D){this.owner=D;this.configChangedEvent=this.createEvent(A.CONFIG_CHANGED_EVENT);this.configChangedEvent.signature=C.LIST;this.queueInProgress=false;this.config={};this.initialConfig={};this.eventQueue=[];},checkBoolean:function(D){return(typeof D==A.BOOLEAN_TYPE);},checkNumber:function(D){return(!isNaN(D));},fireEvent:function(D,F){var E=this.config[D];if(E&&E.event){E.event.fire(F);}},addProperty:function(E,D){E=E.toLowerCase();this.config[E]=D;D.event=this.createEvent(E,{scope:this.owner});D.event.signature=C.LIST;D.key=E;if(D.handler){D.event.subscribe(D.handler,this.owner);}this.setProperty(E,D.value,true);if(!D.suppressEvent){this.queueProperty(E,D.value);}},getConfig:function(){var D={},F,E;for(F in this.config){E=this.config[F];if(E&&E.event){D[F]=E.value;}}return D;},getProperty:function(D){var E=this.config[D.toLowerCase()];if(E&&E.event){return E.value;}else{return undefined;}},resetProperty:function(D){D=D.toLowerCase();var E=this.config[D];if(E&&E.event){if(this.initialConfig[D]&&!B.isUndefined(this.initialConfig[D])){this.setProperty(D,this.initialConfig[D]);return true;}}else{return false;}},setProperty:function(E,G,D){var F;E=E.toLowerCase();if(this.queueInProgress&&!D){this.queueProperty(E,G);return true;}else{F=this.config[E];if(F&&F.event){if(F.validator&&!F.validator(G)){return false;}else{F.value=G;if(!D){this.fireEvent(E,G);this.configChangedEvent.fire([E,G]);}return true;}}else{return false;}}},queueProperty:function(S,P){S=S.toLowerCase();var R=this.config[S],K=false,J,G,H,I,O,Q,F,M,N,D,L,T,E;if(R&&R.event){if(!B.isUndefined(P)&&R.validator&&!R.validator(P)){return false;}else{if(!B.isUndefined(P)){R.value=P;}else{P=R.value;}K=false;J=this.eventQueue.length;for(L=0;L<J;L++){G=this.eventQueue[L];if(G){H=G[0];I=G[1];if(H==S){this.eventQueue[L]=null;this.eventQueue.push([S,(!B.isUndefined(P)?P:I)]);K=true;break;}}}if(!K&&!B.isUndefined(P)){this.eventQueue.push([S,P]);}}if(R.supercedes){O=R.supercedes.length;for(T=0;T<O;T++){Q=R.supercedes[T];F=this.eventQueue.length;for(E=0;E<F;E++){M=this.eventQueue[E];if(M){N=M[0];D=M[1];if(N==Q.toLowerCase()){this.eventQueue.push([N,D]);this.eventQueue[E]=null;break;}}}}}return true;}else{return false;}},refireEvent:function(D){D=D.toLowerCase();var E=this.config[D];if(E&&E.event&&!B.isUndefined(E.value)){if(this.queueInProgress){this.queueProperty(D);}else{this.fireEvent(D,E.value);}}},applyConfig:function(E,H){var G,D,F;if(H){F={};for(G in E){if(B.hasOwnProperty(E,G)){F[G.toLowerCase()]=E[G];}}this.initialConfig=F;}for(G in E){if(B.hasOwnProperty(E,G)){this.queueProperty(G,E[G]);}}},refresh:function(){var D;for(D in this.config){this.refireEvent(D);}},fireQueue:function(){var E,H,D,G,F;this.queueInProgress=true;for(E=0;E<this.eventQueue.length;E++){H=this.eventQueue[E];if(H){D=H[0];G=H[1];F=this.config[D];F.value=G;this.fireEvent(D,G);}}this.queueInProgress=false;this.eventQueue=[];},subscribeToConfigEvent:function(E,F,H,D){var G=this.config[E.toLowerCase()];if(G&&G.event){if(!A.alreadySubscribed(G.event,F,H)){G.event.subscribe(F,H,D);}return true;}else{return false;}},unsubscribeFromConfigEvent:function(D,E,G){var F=this.config[D.toLowerCase()];if(F&&F.event){return F.event.unsubscribe(E,G);}else{return false;}},toString:function(){var D="Config";if(this.owner){D+=" ["+this.owner.toString()+"]";}return D;},outputEventQueue:function(){var D="",G,E,F=this.eventQueue.length;for(E=0;E<F;E++){G=this.eventQueue[E];if(G){D+=G[0]+"="+G[1]+", ";}}return D;},destroy:function(){var E=this.config,D,F;for(D in E){if(B.hasOwnProperty(E,D)){F=E[D];F.event.unsubscribeAll();F.event=null;}}this.configChangedEvent.unsubscribeAll();this.configChangedEvent=null;this.owner=null;this.config=null;this.initialConfig=null;this.eventQueue=null;}};A.alreadySubscribed=function(E,H,I){var F=E.subscribers.length,D,G;if(F>0){G=F-1;do{D=E.subscribers[G];if(D&&D.obj==I&&D.fn==H){return true;}}while(G--);}return false;};YAHOO.lang.augmentProto(A,YAHOO.util.EventProvider);}());YAHOO.widget.DateMath={DAY:"D",WEEK:"W",YEAR:"Y",MONTH:"M",ONE_DAY_MS:1000*60*60*24,add:function(A,D,C){var F=new Date(A.getTime());switch(D){case this.MONTH:var E=A.getMonth()+C;var B=0;if(E<0){while(E<0){E+=12;B-=1;}}else{if(E>11){while(E>11){E-=12;B+=1;}}}F.setMonth(E);F.setFullYear(A.getFullYear()+B);break;case this.DAY:F.setDate(A.getDate()+C);break;case this.YEAR:F.setFullYear(A.getFullYear()+C);break;case this.WEEK:F.setDate(A.getDate()+(C*7));break;}return F;},subtract:function(A,C,B){return this.add(A,C,(B*-1));},before:function(C,B){var A=B.getTime();if(C.getTime()<A){return true;}else{return false;}},after:function(C,B){var A=B.getTime();if(C.getTime()>A){return true;}else{return false;}},between:function(B,A,C){if(this.after(B,A)&&this.before(B,C)){return true;}else{return false;}},getJan1:function(A){return new Date(A,0,1);},getDayOffset:function(B,D){var C=this.getJan1(D);var A=Math.ceil((B.getTime()-C.getTime())/this.ONE_DAY_MS);return A;},getWeekNumber:function(C,F){C=this.clearTime(C);var E=new Date(C.getTime()+(4*this.ONE_DAY_MS)-((C.getDay())*this.ONE_DAY_MS));var B=new Date(E.getFullYear(),0,1);var A=((E.getTime()-B.getTime())/this.ONE_DAY_MS)-1;var D=Math.ceil((A)/7);return D;},isYearOverlapWeek:function(A){var C=false;var B=this.add(A,this.DAY,6);if(B.getFullYear()!=A.getFullYear()){C=true;}return C;},isMonthOverlapWeek:function(A){var C=false;var B=this.add(A,this.DAY,6);if(B.getMonth()!=A.getMonth()){C=true;}return C;},findMonthStart:function(A){var B=new Date(A.getFullYear(),A.getMonth(),1);return B;},findMonthEnd:function(B){var D=this.findMonthStart(B);var C=this.add(D,this.MONTH,1);var A=this.subtract(C,this.DAY,1);return A;},clearTime:function(A){A.setHours(12,0,0,0);
+return A;}};YAHOO.widget.Calendar=function(C,A,B){this.init(C,A,B);};YAHOO.widget.Calendar.IMG_ROOT=null;YAHOO.widget.Calendar.DATE="D";YAHOO.widget.Calendar.MONTH_DAY="MD";YAHOO.widget.Calendar.WEEKDAY="WD";YAHOO.widget.Calendar.RANGE="R";YAHOO.widget.Calendar.MONTH="M";YAHOO.widget.Calendar.DISPLAY_DAYS=42;YAHOO.widget.Calendar.STOP_RENDER="S";YAHOO.widget.Calendar.SHORT="short";YAHOO.widget.Calendar.LONG="long";YAHOO.widget.Calendar.MEDIUM="medium";YAHOO.widget.Calendar.ONE_CHAR="1char";YAHOO.widget.Calendar._DEFAULT_CONFIG={PAGEDATE:{key:"pagedate",value:null},SELECTED:{key:"selected",value:null},TITLE:{key:"title",value:""},CLOSE:{key:"close",value:false},IFRAME:{key:"iframe",value:(YAHOO.env.ua.ie&&YAHOO.env.ua.ie<=6)?true:false},MINDATE:{key:"mindate",value:null},MAXDATE:{key:"maxdate",value:null},MULTI_SELECT:{key:"multi_select",value:false},START_WEEKDAY:{key:"start_weekday",value:0},SHOW_WEEKDAYS:{key:"show_weekdays",value:true},SHOW_WEEK_HEADER:{key:"show_week_header",value:false},SHOW_WEEK_FOOTER:{key:"show_week_footer",value:false},HIDE_BLANK_WEEKS:{key:"hide_blank_weeks",value:false},NAV_ARROW_LEFT:{key:"nav_arrow_left",value:null},NAV_ARROW_RIGHT:{key:"nav_arrow_right",value:null},MONTHS_SHORT:{key:"months_short",value:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]},MONTHS_LONG:{key:"months_long",value:["January","February","March","April","May","June","July","August","September","October","November","December"]},WEEKDAYS_1CHAR:{key:"weekdays_1char",value:["S","M","T","W","T","F","S"]},WEEKDAYS_SHORT:{key:"weekdays_short",value:["Su","Mo","Tu","We","Th","Fr","Sa"]},WEEKDAYS_MEDIUM:{key:"weekdays_medium",value:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"]},WEEKDAYS_LONG:{key:"weekdays_long",value:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]},LOCALE_MONTHS:{key:"locale_months",value:"long"},LOCALE_WEEKDAYS:{key:"locale_weekdays",value:"short"},DATE_DELIMITER:{key:"date_delimiter",value:","},DATE_FIELD_DELIMITER:{key:"date_field_delimiter",value:"/"},DATE_RANGE_DELIMITER:{key:"date_range_delimiter",value:"-"},MY_MONTH_POSITION:{key:"my_month_position",value:1},MY_YEAR_POSITION:{key:"my_year_position",value:2},MD_MONTH_POSITION:{key:"md_month_position",value:1},MD_DAY_POSITION:{key:"md_day_position",value:2},MDY_MONTH_POSITION:{key:"mdy_month_position",value:1},MDY_DAY_POSITION:{key:"mdy_day_position",value:2},MDY_YEAR_POSITION:{key:"mdy_year_position",value:3},MY_LABEL_MONTH_POSITION:{key:"my_label_month_position",value:1},MY_LABEL_YEAR_POSITION:{key:"my_label_year_position",value:2},MY_LABEL_MONTH_SUFFIX:{key:"my_label_month_suffix",value:" "},MY_LABEL_YEAR_SUFFIX:{key:"my_label_year_suffix",value:""}};YAHOO.widget.Calendar._EVENT_TYPES={BEFORE_SELECT:"beforeSelect",SELECT:"select",BEFORE_DESELECT:"beforeDeselect",DESELECT:"deselect",CHANGE_PAGE:"changePage",BEFORE_RENDER:"beforeRender",RENDER:"render",RESET:"reset",CLEAR:"clear"};YAHOO.widget.Calendar._STYLES={CSS_ROW_HEADER:"calrowhead",CSS_ROW_FOOTER:"calrowfoot",CSS_CELL:"calcell",CSS_CELL_SELECTOR:"selector",CSS_CELL_SELECTED:"selected",CSS_CELL_SELECTABLE:"selectable",CSS_CELL_RESTRICTED:"restricted",CSS_CELL_TODAY:"today",CSS_CELL_OOM:"oom",CSS_CELL_OOB:"previous",CSS_HEADER:"calheader",CSS_HEADER_TEXT:"calhead",CSS_BODY:"calbody",CSS_WEEKDAY_CELL:"calweekdaycell",CSS_WEEKDAY_ROW:"calweekdayrow",CSS_FOOTER:"calfoot",CSS_CALENDAR:"yui-calendar",CSS_SINGLE:"single",CSS_CONTAINER:"yui-calcontainer",CSS_NAV_LEFT:"calnavleft",CSS_NAV_RIGHT:"calnavright",CSS_CLOSE:"calclose",CSS_CELL_TOP:"calcelltop",CSS_CELL_LEFT:"calcellleft",CSS_CELL_RIGHT:"calcellright",CSS_CELL_BOTTOM:"calcellbottom",CSS_CELL_HOVER:"calcellhover",CSS_CELL_HIGHLIGHT1:"highlight1",CSS_CELL_HIGHLIGHT2:"highlight2",CSS_CELL_HIGHLIGHT3:"highlight3",CSS_CELL_HIGHLIGHT4:"highlight4"};YAHOO.widget.Calendar.prototype={Config:null,parent:null,index:-1,cells:null,cellDates:null,id:null,oDomContainer:null,today:null,renderStack:null,_renderStack:null,_selectedDates:null,domEventMap:null};YAHOO.widget.Calendar.prototype.init=function(C,A,B){this.initEvents();this.today=new Date();YAHOO.widget.DateMath.clearTime(this.today);this.id=C;this.oDomContainer=document.getElementById(A);this.cfg=new YAHOO.util.Config(this);this.Options={};this.Locale={};this.initStyles();YAHOO.util.Dom.addClass(this.oDomContainer,this.Style.CSS_CONTAINER);YAHOO.util.Dom.addClass(this.oDomContainer,this.Style.CSS_SINGLE);this.cellDates=[];this.cells=[];this.renderStack=[];this._renderStack=[];this.setupConfig();if(B){this.cfg.applyConfig(B,true);}this.cfg.fireQueue();};YAHOO.widget.Calendar.prototype.configIframe=function(C,B,D){var A=B[0];if(!this.parent){if(YAHOO.util.Dom.inDocument(this.oDomContainer)){if(A){var E=YAHOO.util.Dom.getStyle(this.oDomContainer,"position");if(E=="absolute"||E=="relative"){if(!YAHOO.util.Dom.inDocument(this.iframe)){this.iframe=document.createElement("iframe");this.iframe.src="javascript:false;";YAHOO.util.Dom.setStyle(this.iframe,"opacity","0");if(YAHOO.env.ua.ie&&YAHOO.env.ua.ie<=6){YAHOO.util.Dom.addClass(this.iframe,"fixedsize");}this.oDomContainer.insertBefore(this.iframe,this.oDomContainer.firstChild);}}}else{if(this.iframe){if(this.iframe.parentNode){this.iframe.parentNode.removeChild(this.iframe);}this.iframe=null;}}}}};YAHOO.widget.Calendar.prototype.configTitle=function(B,A,C){var E=A[0],F;if(E){this.createTitleBar(E);}else{var D=this.cfg.getProperty(YAHOO.widget.Calendar._DEFAULT_CONFIG.CLOSE.key);if(!D){this.removeTitleBar();}else{this.createTitleBar("&#160;");}}};YAHOO.widget.Calendar.prototype.configClose=function(B,A,C){var E=A[0],D=this.cfg.getProperty(YAHOO.widget.Calendar._DEFAULT_CONFIG.TITLE.key);if(E){if(!D){this.createTitleBar("&#160;");}this.createCloseButton();}else{this.removeCloseButton();if(!D){this.removeTitleBar();}}};YAHOO.widget.Calendar.prototype.initEvents=function(){var A=YAHOO.widget.Calendar._EVENT_TYPES;this.beforeSelectEvent=new YAHOO.util.CustomEvent(A.BEFORE_SELECT);this.selectEvent=new YAHOO.util.CustomEvent(A.SELECT);
+this.beforeDeselectEvent=new YAHOO.util.CustomEvent(A.BEFORE_DESELECT);this.deselectEvent=new YAHOO.util.CustomEvent(A.DESELECT);this.changePageEvent=new YAHOO.util.CustomEvent(A.CHANGE_PAGE);this.beforeRenderEvent=new YAHOO.util.CustomEvent(A.BEFORE_RENDER);this.renderEvent=new YAHOO.util.CustomEvent(A.RENDER);this.resetEvent=new YAHOO.util.CustomEvent(A.RESET);this.clearEvent=new YAHOO.util.CustomEvent(A.CLEAR);this.beforeSelectEvent.subscribe(this.onBeforeSelect,this,true);this.selectEvent.subscribe(this.onSelect,this,true);this.beforeDeselectEvent.subscribe(this.onBeforeDeselect,this,true);this.deselectEvent.subscribe(this.onDeselect,this,true);this.changePageEvent.subscribe(this.onChangePage,this,true);this.renderEvent.subscribe(this.onRender,this,true);this.resetEvent.subscribe(this.onReset,this,true);this.clearEvent.subscribe(this.onClear,this,true);};YAHOO.widget.Calendar.prototype.doSelectCell=function(G,A){var L,F,I,C;var H=YAHOO.util.Event.getTarget(G);var B=H.tagName.toLowerCase();var E=false;while(B!="td"&&!YAHOO.util.Dom.hasClass(H,A.Style.CSS_CELL_SELECTABLE)){if(!E&&B=="a"&&YAHOO.util.Dom.hasClass(H,A.Style.CSS_CELL_SELECTOR)){E=true;}H=H.parentNode;B=H.tagName.toLowerCase();if(B=="html"){return ;}}if(E){YAHOO.util.Event.preventDefault(G);}L=H;if(YAHOO.util.Dom.hasClass(L,A.Style.CSS_CELL_SELECTABLE)){F=L.id.split("cell")[1];I=A.cellDates[F];C=new Date(I[0],I[1]-1,I[2]);var K;if(A.Options.MULTI_SELECT){K=L.getElementsByTagName("a")[0];if(K){K.blur();}var D=A.cellDates[F];var J=A._indexOfSelectedFieldArray(D);if(J>-1){A.deselectCell(F);}else{A.selectCell(F);}}else{K=L.getElementsByTagName("a")[0];if(K){K.blur();}A.selectCell(F);}}};YAHOO.widget.Calendar.prototype.doCellMouseOver=function(C,B){var A;if(C){A=YAHOO.util.Event.getTarget(C);}else{A=this;}while(A.tagName.toLowerCase()!="td"){A=A.parentNode;if(A.tagName.toLowerCase()=="html"){return ;}}if(YAHOO.util.Dom.hasClass(A,B.Style.CSS_CELL_SELECTABLE)){YAHOO.util.Dom.addClass(A,B.Style.CSS_CELL_HOVER);}};YAHOO.widget.Calendar.prototype.doCellMouseOut=function(C,B){var A;if(C){A=YAHOO.util.Event.getTarget(C);}else{A=this;}while(A.tagName.toLowerCase()!="td"){A=A.parentNode;if(A.tagName.toLowerCase()=="html"){return ;}}if(YAHOO.util.Dom.hasClass(A,B.Style.CSS_CELL_SELECTABLE)){YAHOO.util.Dom.removeClass(A,B.Style.CSS_CELL_HOVER);}};YAHOO.widget.Calendar.prototype.setupConfig=function(){var A=YAHOO.widget.Calendar._DEFAULT_CONFIG;this.cfg.addProperty(A.PAGEDATE.key,{value:new Date(),handler:this.configPageDate});this.cfg.addProperty(A.SELECTED.key,{value:[],handler:this.configSelected});this.cfg.addProperty(A.TITLE.key,{value:A.TITLE.value,handler:this.configTitle});this.cfg.addProperty(A.CLOSE.key,{value:A.CLOSE.value,handler:this.configClose});this.cfg.addProperty(A.IFRAME.key,{value:A.IFRAME.value,handler:this.configIframe,validator:this.cfg.checkBoolean});this.cfg.addProperty(A.MINDATE.key,{value:A.MINDATE.value,handler:this.configMinDate});this.cfg.addProperty(A.MAXDATE.key,{value:A.MAXDATE.value,handler:this.configMaxDate});this.cfg.addProperty(A.MULTI_SELECT.key,{value:A.MULTI_SELECT.value,handler:this.configOptions,validator:this.cfg.checkBoolean});this.cfg.addProperty(A.START_WEEKDAY.key,{value:A.START_WEEKDAY.value,handler:this.configOptions,validator:this.cfg.checkNumber});this.cfg.addProperty(A.SHOW_WEEKDAYS.key,{value:A.SHOW_WEEKDAYS.value,handler:this.configOptions,validator:this.cfg.checkBoolean});this.cfg.addProperty(A.SHOW_WEEK_HEADER.key,{value:A.SHOW_WEEK_HEADER.value,handler:this.configOptions,validator:this.cfg.checkBoolean});this.cfg.addProperty(A.SHOW_WEEK_FOOTER.key,{value:A.SHOW_WEEK_FOOTER.value,handler:this.configOptions,validator:this.cfg.checkBoolean});this.cfg.addProperty(A.HIDE_BLANK_WEEKS.key,{value:A.HIDE_BLANK_WEEKS.value,handler:this.configOptions,validator:this.cfg.checkBoolean});this.cfg.addProperty(A.NAV_ARROW_LEFT.key,{value:A.NAV_ARROW_LEFT.value,handler:this.configOptions});this.cfg.addProperty(A.NAV_ARROW_RIGHT.key,{value:A.NAV_ARROW_RIGHT.value,handler:this.configOptions});this.cfg.addProperty(A.MONTHS_SHORT.key,{value:A.MONTHS_SHORT.value,handler:this.configLocale});this.cfg.addProperty(A.MONTHS_LONG.key,{value:A.MONTHS_LONG.value,handler:this.configLocale});this.cfg.addProperty(A.WEEKDAYS_1CHAR.key,{value:A.WEEKDAYS_1CHAR.value,handler:this.configLocale});this.cfg.addProperty(A.WEEKDAYS_SHORT.key,{value:A.WEEKDAYS_SHORT.value,handler:this.configLocale});this.cfg.addProperty(A.WEEKDAYS_MEDIUM.key,{value:A.WEEKDAYS_MEDIUM.value,handler:this.configLocale});this.cfg.addProperty(A.WEEKDAYS_LONG.key,{value:A.WEEKDAYS_LONG.value,handler:this.configLocale});var B=function(){this.cfg.refireEvent(A.LOCALE_MONTHS.key);this.cfg.refireEvent(A.LOCALE_WEEKDAYS.key);};this.cfg.subscribeToConfigEvent(A.START_WEEKDAY.key,B,this,true);this.cfg.subscribeToConfigEvent(A.MONTHS_SHORT.key,B,this,true);this.cfg.subscribeToConfigEvent(A.MONTHS_LONG.key,B,this,true);this.cfg.subscribeToConfigEvent(A.WEEKDAYS_1CHAR.key,B,this,true);this.cfg.subscribeToConfigEvent(A.WEEKDAYS_SHORT.key,B,this,true);this.cfg.subscribeToConfigEvent(A.WEEKDAYS_MEDIUM.key,B,this,true);this.cfg.subscribeToConfigEvent(A.WEEKDAYS_LONG.key,B,this,true);this.cfg.addProperty(A.LOCALE_MONTHS.key,{value:A.LOCALE_MONTHS.value,handler:this.configLocaleValues});this.cfg.addProperty(A.LOCALE_WEEKDAYS.key,{value:A.LOCALE_WEEKDAYS.value,handler:this.configLocaleValues});this.cfg.addProperty(A.DATE_DELIMITER.key,{value:A.DATE_DELIMITER.value,handler:this.configLocale});this.cfg.addProperty(A.DATE_FIELD_DELIMITER.key,{value:A.DATE_FIELD_DELIMITER.value,handler:this.configLocale});this.cfg.addProperty(A.DATE_RANGE_DELIMITER.key,{value:A.DATE_RANGE_DELIMITER.value,handler:this.configLocale});this.cfg.addProperty(A.MY_MONTH_POSITION.key,{value:A.MY_MONTH_POSITION.value,handler:this.configLocale,validator:this.cfg.checkNumber});this.cfg.addProperty(A.MY_YEAR_POSITION.key,{value:A.MY_YEAR_POSITION.value,handler:this.configLocale,validator:this.cfg.checkNumber});
+this.cfg.addProperty(A.MD_MONTH_POSITION.key,{value:A.MD_MONTH_POSITION.value,handler:this.configLocale,validator:this.cfg.checkNumber});this.cfg.addProperty(A.MD_DAY_POSITION.key,{value:A.MD_DAY_POSITION.value,handler:this.configLocale,validator:this.cfg.checkNumber});this.cfg.addProperty(A.MDY_MONTH_POSITION.key,{value:A.MDY_MONTH_POSITION.value,handler:this.configLocale,validator:this.cfg.checkNumber});this.cfg.addProperty(A.MDY_DAY_POSITION.key,{value:A.MDY_DAY_POSITION.value,handler:this.configLocale,validator:this.cfg.checkNumber});this.cfg.addProperty(A.MDY_YEAR_POSITION.key,{value:A.MDY_YEAR_POSITION.value,handler:this.configLocale,validator:this.cfg.checkNumber});this.cfg.addProperty(A.MY_LABEL_MONTH_POSITION.key,{value:A.MY_LABEL_MONTH_POSITION.value,handler:this.configLocale,validator:this.cfg.checkNumber});this.cfg.addProperty(A.MY_LABEL_YEAR_POSITION.key,{value:A.MY_LABEL_YEAR_POSITION.value,handler:this.configLocale,validator:this.cfg.checkNumber});this.cfg.addProperty(A.MY_LABEL_MONTH_SUFFIX.key,{value:A.MY_LABEL_MONTH_SUFFIX.value,handler:this.configLocale});this.cfg.addProperty(A.MY_LABEL_YEAR_SUFFIX.key,{value:A.MY_LABEL_YEAR_SUFFIX.value,handler:this.configLocale});};YAHOO.widget.Calendar.prototype.configPageDate=function(B,A,C){this.cfg.setProperty(YAHOO.widget.Calendar._DEFAULT_CONFIG.PAGEDATE.key,this._parsePageDate(A[0]),true);};YAHOO.widget.Calendar.prototype.configMinDate=function(B,A,C){var D=A[0];if(YAHOO.lang.isString(D)){D=this._parseDate(D);this.cfg.setProperty(YAHOO.widget.Calendar._DEFAULT_CONFIG.MINDATE.key,new Date(D[0],(D[1]-1),D[2]));}};YAHOO.widget.Calendar.prototype.configMaxDate=function(B,A,C){var D=A[0];if(YAHOO.lang.isString(D)){D=this._parseDate(D);this.cfg.setProperty(YAHOO.widget.Calendar._DEFAULT_CONFIG.MAXDATE.key,new Date(D[0],(D[1]-1),D[2]));}};YAHOO.widget.Calendar.prototype.configSelected=function(C,A,E){var B=A[0];var D=YAHOO.widget.Calendar._DEFAULT_CONFIG.SELECTED.key;if(B){if(YAHOO.lang.isString(B)){this.cfg.setProperty(D,this._parseDates(B),true);}}if(!this._selectedDates){this._selectedDates=this.cfg.getProperty(D);}};YAHOO.widget.Calendar.prototype.configOptions=function(B,A,C){this.Options[B.toUpperCase()]=A[0];};YAHOO.widget.Calendar.prototype.configLocale=function(C,B,D){var A=YAHOO.widget.Calendar._DEFAULT_CONFIG;this.Locale[C.toUpperCase()]=B[0];this.cfg.refireEvent(A.LOCALE_MONTHS.key);this.cfg.refireEvent(A.LOCALE_WEEKDAYS.key);};YAHOO.widget.Calendar.prototype.configLocaleValues=function(D,C,E){var B=YAHOO.widget.Calendar._DEFAULT_CONFIG;D=D.toLowerCase();var G=C[0];switch(D){case B.LOCALE_MONTHS.key:switch(G){case YAHOO.widget.Calendar.SHORT:this.Locale.LOCALE_MONTHS=this.cfg.getProperty(B.MONTHS_SHORT.key).concat();break;case YAHOO.widget.Calendar.LONG:this.Locale.LOCALE_MONTHS=this.cfg.getProperty(B.MONTHS_LONG.key).concat();break;}break;case B.LOCALE_WEEKDAYS.key:switch(G){case YAHOO.widget.Calendar.ONE_CHAR:this.Locale.LOCALE_WEEKDAYS=this.cfg.getProperty(B.WEEKDAYS_1CHAR.key).concat();break;case YAHOO.widget.Calendar.SHORT:this.Locale.LOCALE_WEEKDAYS=this.cfg.getProperty(B.WEEKDAYS_SHORT.key).concat();break;case YAHOO.widget.Calendar.MEDIUM:this.Locale.LOCALE_WEEKDAYS=this.cfg.getProperty(B.WEEKDAYS_MEDIUM.key).concat();break;case YAHOO.widget.Calendar.LONG:this.Locale.LOCALE_WEEKDAYS=this.cfg.getProperty(B.WEEKDAYS_LONG.key).concat();break;}var F=this.cfg.getProperty(B.START_WEEKDAY.key);if(F>0){for(var A=0;A<F;++A){this.Locale.LOCALE_WEEKDAYS.push(this.Locale.LOCALE_WEEKDAYS.shift());}}break;}};YAHOO.widget.Calendar.prototype.initStyles=function(){var A=YAHOO.widget.Calendar._STYLES;this.Style={CSS_ROW_HEADER:A.CSS_ROW_HEADER,CSS_ROW_FOOTER:A.CSS_ROW_FOOTER,CSS_CELL:A.CSS_CELL,CSS_CELL_SELECTOR:A.CSS_CELL_SELECTOR,CSS_CELL_SELECTED:A.CSS_CELL_SELECTED,CSS_CELL_SELECTABLE:A.CSS_CELL_SELECTABLE,CSS_CELL_RESTRICTED:A.CSS_CELL_RESTRICTED,CSS_CELL_TODAY:A.CSS_CELL_TODAY,CSS_CELL_OOM:A.CSS_CELL_OOM,CSS_CELL_OOB:A.CSS_CELL_OOB,CSS_HEADER:A.CSS_HEADER,CSS_HEADER_TEXT:A.CSS_HEADER_TEXT,CSS_BODY:A.CSS_BODY,CSS_WEEKDAY_CELL:A.CSS_WEEKDAY_CELL,CSS_WEEKDAY_ROW:A.CSS_WEEKDAY_ROW,CSS_FOOTER:A.CSS_FOOTER,CSS_CALENDAR:A.CSS_CALENDAR,CSS_SINGLE:A.CSS_SINGLE,CSS_CONTAINER:A.CSS_CONTAINER,CSS_NAV_LEFT:A.CSS_NAV_LEFT,CSS_NAV_RIGHT:A.CSS_NAV_RIGHT,CSS_CLOSE:A.CSS_CLOSE,CSS_CELL_TOP:A.CSS_CELL_TOP,CSS_CELL_LEFT:A.CSS_CELL_LEFT,CSS_CELL_RIGHT:A.CSS_CELL_RIGHT,CSS_CELL_BOTTOM:A.CSS_CELL_BOTTOM,CSS_CELL_HOVER:A.CSS_CELL_HOVER,CSS_CELL_HIGHLIGHT1:A.CSS_CELL_HIGHLIGHT1,CSS_CELL_HIGHLIGHT2:A.CSS_CELL_HIGHLIGHT2,CSS_CELL_HIGHLIGHT3:A.CSS_CELL_HIGHLIGHT3,CSS_CELL_HIGHLIGHT4:A.CSS_CELL_HIGHLIGHT4};};YAHOO.widget.Calendar.prototype.buildMonthLabel=function(){var A=this.cfg.getProperty(YAHOO.widget.Calendar._DEFAULT_CONFIG.PAGEDATE.key);var C=this.Locale.LOCALE_MONTHS[A.getMonth()]+this.Locale.MY_LABEL_MONTH_SUFFIX;var B=A.getFullYear()+this.Locale.MY_LABEL_YEAR_SUFFIX;if(this.Locale.MY_LABEL_MONTH_POSITION==2||this.Locale.MY_LABEL_YEAR_POSITION==1){return B+C;}else{return C+B;}};YAHOO.widget.Calendar.prototype.buildDayLabel=function(A){return A.getDate();};YAHOO.widget.Calendar.prototype.createTitleBar=function(A){var B=YAHOO.util.Dom.getElementsByClassName(YAHOO.widget.CalendarGroup.CSS_2UPTITLE,"div",this.oDomContainer)[0]||document.createElement("div");B.className=YAHOO.widget.CalendarGroup.CSS_2UPTITLE;B.innerHTML=A;this.oDomContainer.insertBefore(B,this.oDomContainer.firstChild);YAHOO.util.Dom.addClass(this.oDomContainer,"withtitle");return B;};YAHOO.widget.Calendar.prototype.removeTitleBar=function(){var A=YAHOO.util.Dom.getElementsByClassName(YAHOO.widget.CalendarGroup.CSS_2UPTITLE,"div",this.oDomContainer)[0]||null;if(A){YAHOO.util.Event.purgeElement(A);this.oDomContainer.removeChild(A);}YAHOO.util.Dom.removeClass(this.oDomContainer,"withtitle");};YAHOO.widget.Calendar.prototype.createCloseButton=function(){var D=YAHOO.util.Dom,A=YAHOO.util.Event,C=YAHOO.widget.CalendarGroup.CSS_2UPCLOSE,F="us/my/bn/x_d.gif";var E=D.getElementsByClassName("link-close","a",this.oDomContainer)[0];
+if(!E){E=document.createElement("a");A.addListener(E,"click",function(H,G){G.hide();A.preventDefault(H);},this);}E.href="#";E.className="link-close";if(YAHOO.widget.Calendar.IMG_ROOT!==null){var B=D.getElementsByClassName(C,"img",E)[0]||document.createElement("img");B.src=YAHOO.widget.Calendar.IMG_ROOT+F;B.className=C;E.appendChild(B);}else{E.innerHTML="<span class=\""+C+" "+this.Style.CSS_CLOSE+"\"></span>";}this.oDomContainer.appendChild(E);return E;};YAHOO.widget.Calendar.prototype.removeCloseButton=function(){var A=YAHOO.util.Dom.getElementsByClassName("link-close","a",this.oDomContainer)[0]||null;if(A){YAHOO.util.Event.purgeElement(A);this.oDomContainer.removeChild(A);}};YAHOO.widget.Calendar.prototype.renderHeader=function(E){var H=7;var F="us/tr/callt.gif";var G="us/tr/calrt.gif";var L=YAHOO.widget.Calendar._DEFAULT_CONFIG;if(this.cfg.getProperty(L.SHOW_WEEK_HEADER.key)){H+=1;}if(this.cfg.getProperty(L.SHOW_WEEK_FOOTER.key)){H+=1;}E[E.length]="<thead>";E[E.length]="<tr>";E[E.length]="<th colspan=\""+H+"\" class=\""+this.Style.CSS_HEADER_TEXT+"\">";E[E.length]="<div class=\""+this.Style.CSS_HEADER+"\">";var J,K=false;if(this.parent){if(this.index===0){J=true;}if(this.index==(this.parent.cfg.getProperty("pages")-1)){K=true;}}else{J=true;K=true;}var B=this.parent||this;if(J){var A=this.cfg.getProperty(L.NAV_ARROW_LEFT.key);if(A===null&&YAHOO.widget.Calendar.IMG_ROOT!==null){A=YAHOO.widget.Calendar.IMG_ROOT+F;}var C=(A===null)?"":" style=\"background-image:url("+A+")\"";E[E.length]="<a class=\""+this.Style.CSS_NAV_LEFT+"\""+C+" >&#160;</a>";}E[E.length]=this.buildMonthLabel();if(K){var D=this.cfg.getProperty(L.NAV_ARROW_RIGHT.key);if(D===null&&YAHOO.widget.Calendar.IMG_ROOT!==null){D=YAHOO.widget.Calendar.IMG_ROOT+G;}var I=(D===null)?"":" style=\"background-image:url("+D+")\"";E[E.length]="<a class=\""+this.Style.CSS_NAV_RIGHT+"\""+I+" >&#160;</a>";}E[E.length]="</div>\n</th>\n</tr>";if(this.cfg.getProperty(L.SHOW_WEEKDAYS.key)){E=this.buildWeekdays(E);}E[E.length]="</thead>";return E;};YAHOO.widget.Calendar.prototype.buildWeekdays=function(C){var A=YAHOO.widget.Calendar._DEFAULT_CONFIG;C[C.length]="<tr class=\""+this.Style.CSS_WEEKDAY_ROW+"\">";if(this.cfg.getProperty(A.SHOW_WEEK_HEADER.key)){C[C.length]="<th>&#160;</th>";}for(var B=0;B<this.Locale.LOCALE_WEEKDAYS.length;++B){C[C.length]="<th class=\"calweekdaycell\">"+this.Locale.LOCALE_WEEKDAYS[B]+"</th>";}if(this.cfg.getProperty(A.SHOW_WEEK_FOOTER.key)){C[C.length]="<th>&#160;</th>";}C[C.length]="</tr>";return C;};YAHOO.widget.Calendar.prototype.renderBody=function(c,a){var m=YAHOO.widget.Calendar._DEFAULT_CONFIG;var AC=this.cfg.getProperty(m.START_WEEKDAY.key);this.preMonthDays=c.getDay();if(AC>0){this.preMonthDays-=AC;}if(this.preMonthDays<0){this.preMonthDays+=7;}this.monthDays=YAHOO.widget.DateMath.findMonthEnd(c).getDate();this.postMonthDays=YAHOO.widget.Calendar.DISPLAY_DAYS-this.preMonthDays-this.monthDays;c=YAHOO.widget.DateMath.subtract(c,YAHOO.widget.DateMath.DAY,this.preMonthDays);var Q,H;var G="w";var W="_cell";var U="wd";var k="d";var I;var h;var O=this.today.getFullYear();var j=this.today.getMonth();var D=this.today.getDate();var q=this.cfg.getProperty(m.PAGEDATE.key);var C=this.cfg.getProperty(m.HIDE_BLANK_WEEKS.key);var Z=this.cfg.getProperty(m.SHOW_WEEK_FOOTER.key);var T=this.cfg.getProperty(m.SHOW_WEEK_HEADER.key);var M=this.cfg.getProperty(m.MINDATE.key);var S=this.cfg.getProperty(m.MAXDATE.key);if(M){M=YAHOO.widget.DateMath.clearTime(M);}if(S){S=YAHOO.widget.DateMath.clearTime(S);}a[a.length]="<tbody class=\"m"+(q.getMonth()+1)+" "+this.Style.CSS_BODY+"\">";var AA=0;var J=document.createElement("div");var b=document.createElement("td");J.appendChild(b);var z=new Date(q.getFullYear(),0,1);var o=this.parent||this;for(var u=0;u<6;u++){Q=YAHOO.widget.DateMath.getWeekNumber(c,q.getFullYear(),AC);H=G+Q;if(u!==0&&C===true&&c.getMonth()!=q.getMonth()){break;}else{a[a.length]="<tr class=\""+H+"\">";if(T){a=this.renderRowHeader(Q,a);}for(var AB=0;AB<7;AB++){I=[];h=null;this.clearElement(b);b.className=this.Style.CSS_CELL;b.id=this.id+W+AA;if(c.getDate()==D&&c.getMonth()==j&&c.getFullYear()==O){I[I.length]=o.renderCellStyleToday;}var R=[c.getFullYear(),c.getMonth()+1,c.getDate()];this.cellDates[this.cellDates.length]=R;if(c.getMonth()!=q.getMonth()){I[I.length]=o.renderCellNotThisMonth;}else{YAHOO.util.Dom.addClass(b,U+c.getDay());YAHOO.util.Dom.addClass(b,k+c.getDate());for(var t=0;t<this.renderStack.length;++t){var l=this.renderStack[t];var AD=l[0];var B;var V;var F;switch(AD){case YAHOO.widget.Calendar.DATE:B=l[1][1];V=l[1][2];F=l[1][0];if(c.getMonth()+1==B&&c.getDate()==V&&c.getFullYear()==F){h=l[2];this.renderStack.splice(t,1);}break;case YAHOO.widget.Calendar.MONTH_DAY:B=l[1][0];V=l[1][1];if(c.getMonth()+1==B&&c.getDate()==V){h=l[2];this.renderStack.splice(t,1);}break;case YAHOO.widget.Calendar.RANGE:var Y=l[1][0];var X=l[1][1];var e=Y[1];var L=Y[2];var P=Y[0];var y=new Date(P,e-1,L);var E=X[1];var g=X[2];var A=X[0];var w=new Date(A,E-1,g);if(c.getTime()>=y.getTime()&&c.getTime()<=w.getTime()){h=l[2];if(c.getTime()==w.getTime()){this.renderStack.splice(t,1);}}break;case YAHOO.widget.Calendar.WEEKDAY:var K=l[1][0];if(c.getDay()+1==K){h=l[2];}break;case YAHOO.widget.Calendar.MONTH:B=l[1][0];if(c.getMonth()+1==B){h=l[2];}break;}if(h){I[I.length]=h;}}}if(this._indexOfSelectedFieldArray(R)>-1){I[I.length]=o.renderCellStyleSelected;}if((M&&(c.getTime()<M.getTime()))||(S&&(c.getTime()>S.getTime()))){I[I.length]=o.renderOutOfBoundsDate;}else{I[I.length]=o.styleCellDefault;I[I.length]=o.renderCellDefault;}for(var n=0;n<I.length;++n){if(I[n].call(o,c,b)==YAHOO.widget.Calendar.STOP_RENDER){break;}}c.setTime(c.getTime()+YAHOO.widget.DateMath.ONE_DAY_MS);if(AA>=0&&AA<=6){YAHOO.util.Dom.addClass(b,this.Style.CSS_CELL_TOP);}if((AA%7)===0){YAHOO.util.Dom.addClass(b,this.Style.CSS_CELL_LEFT);}if(((AA+1)%7)===0){YAHOO.util.Dom.addClass(b,this.Style.CSS_CELL_RIGHT);}var f=this.postMonthDays;if(C&&f>=7){var N=Math.floor(f/7);for(var v=0;
+v<N;++v){f-=7;}}if(AA>=((this.preMonthDays+f+this.monthDays)-7)){YAHOO.util.Dom.addClass(b,this.Style.CSS_CELL_BOTTOM);}a[a.length]=J.innerHTML;AA++;}if(Z){a=this.renderRowFooter(Q,a);}a[a.length]="</tr>";}}a[a.length]="</tbody>";return a;};YAHOO.widget.Calendar.prototype.renderFooter=function(A){return A;};YAHOO.widget.Calendar.prototype.render=function(){this.beforeRenderEvent.fire();var A=YAHOO.widget.Calendar._DEFAULT_CONFIG;var C=YAHOO.widget.DateMath.findMonthStart(this.cfg.getProperty(A.PAGEDATE.key));this.resetRenderers();this.cellDates.length=0;YAHOO.util.Event.purgeElement(this.oDomContainer,true);var B=[];B[B.length]="<table cellSpacing=\"0\" class=\""+this.Style.CSS_CALENDAR+" y"+C.getFullYear()+"\" id=\""+this.id+"\">";B=this.renderHeader(B);B=this.renderBody(C,B);B=this.renderFooter(B);B[B.length]="</table>";this.oDomContainer.innerHTML=B.join("\n");this.applyListeners();this.cells=this.oDomContainer.getElementsByTagName("td");this.cfg.refireEvent(A.TITLE.key);this.cfg.refireEvent(A.CLOSE.key);this.cfg.refireEvent(A.IFRAME.key);this.renderEvent.fire();};YAHOO.widget.Calendar.prototype.applyListeners=function(){var K=this.oDomContainer;var B=this.parent||this;var G="a";var D="mousedown";var H=YAHOO.util.Dom.getElementsByClassName(this.Style.CSS_NAV_LEFT,G,K);var C=YAHOO.util.Dom.getElementsByClassName(this.Style.CSS_NAV_RIGHT,G,K);if(H&&H.length>0){this.linkLeft=H[0];YAHOO.util.Event.addListener(this.linkLeft,D,B.previousMonth,B,true);}if(C&&C.length>0){this.linkRight=C[0];YAHOO.util.Event.addListener(this.linkRight,D,B.nextMonth,B,true);}if(this.domEventMap){var E,A;for(var M in this.domEventMap){if(YAHOO.lang.hasOwnProperty(this.domEventMap,M)){var I=this.domEventMap[M];if(!(I instanceof Array)){I=[I];}for(var F=0;F<I.length;F++){var L=I[F];A=YAHOO.util.Dom.getElementsByClassName(M,L.tag,this.oDomContainer);for(var J=0;J<A.length;J++){E=A[J];YAHOO.util.Event.addListener(E,L.event,L.handler,L.scope,L.correct);}}}}}YAHOO.util.Event.addListener(this.oDomContainer,"click",this.doSelectCell,this);YAHOO.util.Event.addListener(this.oDomContainer,"mouseover",this.doCellMouseOver,this);YAHOO.util.Event.addListener(this.oDomContainer,"mouseout",this.doCellMouseOut,this);};YAHOO.widget.Calendar.prototype.getDateByCellId=function(B){var A=this.getDateFieldsByCellId(B);return new Date(A[0],A[1]-1,A[2]);};YAHOO.widget.Calendar.prototype.getDateFieldsByCellId=function(A){A=A.toLowerCase().split("_cell")[1];A=parseInt(A,10);return this.cellDates[A];};YAHOO.widget.Calendar.prototype.renderOutOfBoundsDate=function(B,A){YAHOO.util.Dom.addClass(A,this.Style.CSS_CELL_OOB);A.innerHTML=B.getDate();return YAHOO.widget.Calendar.STOP_RENDER;};YAHOO.widget.Calendar.prototype.renderRowHeader=function(B,A){A[A.length]="<th class=\"calrowhead\">"+B+"</th>";return A;};YAHOO.widget.Calendar.prototype.renderRowFooter=function(B,A){A[A.length]="<th class=\"calrowfoot\">"+B+"</th>";return A;};YAHOO.widget.Calendar.prototype.renderCellDefault=function(B,A){A.innerHTML="<a href=\"#\" class=\""+this.Style.CSS_CELL_SELECTOR+"\">"+this.buildDayLabel(B)+"</a>";};YAHOO.widget.Calendar.prototype.styleCellDefault=function(B,A){YAHOO.util.Dom.addClass(A,this.Style.CSS_CELL_SELECTABLE);};YAHOO.widget.Calendar.prototype.renderCellStyleHighlight1=function(B,A){YAHOO.util.Dom.addClass(A,this.Style.CSS_CELL_HIGHLIGHT1);};YAHOO.widget.Calendar.prototype.renderCellStyleHighlight2=function(B,A){YAHOO.util.Dom.addClass(A,this.Style.CSS_CELL_HIGHLIGHT2);};YAHOO.widget.Calendar.prototype.renderCellStyleHighlight3=function(B,A){YAHOO.util.Dom.addClass(A,this.Style.CSS_CELL_HIGHLIGHT3);};YAHOO.widget.Calendar.prototype.renderCellStyleHighlight4=function(B,A){YAHOO.util.Dom.addClass(A,this.Style.CSS_CELL_HIGHLIGHT4);};YAHOO.widget.Calendar.prototype.renderCellStyleToday=function(B,A){YAHOO.util.Dom.addClass(A,this.Style.CSS_CELL_TODAY);};YAHOO.widget.Calendar.prototype.renderCellStyleSelected=function(B,A){YAHOO.util.Dom.addClass(A,this.Style.CSS_CELL_SELECTED);};YAHOO.widget.Calendar.prototype.renderCellNotThisMonth=function(B,A){YAHOO.util.Dom.addClass(A,this.Style.CSS_CELL_OOM);A.innerHTML=B.getDate();return YAHOO.widget.Calendar.STOP_RENDER;};YAHOO.widget.Calendar.prototype.renderBodyCellRestricted=function(B,A){YAHOO.util.Dom.addClass(A,this.Style.CSS_CELL);YAHOO.util.Dom.addClass(A,this.Style.CSS_CELL_RESTRICTED);A.innerHTML=B.getDate();return YAHOO.widget.Calendar.STOP_RENDER;};YAHOO.widget.Calendar.prototype.addMonths=function(B){var A=YAHOO.widget.Calendar._DEFAULT_CONFIG.PAGEDATE.key;this.cfg.setProperty(A,YAHOO.widget.DateMath.add(this.cfg.getProperty(A),YAHOO.widget.DateMath.MONTH,B));this.resetRenderers();this.changePageEvent.fire();};YAHOO.widget.Calendar.prototype.subtractMonths=function(B){var A=YAHOO.widget.Calendar._DEFAULT_CONFIG.PAGEDATE.key;this.cfg.setProperty(A,YAHOO.widget.DateMath.subtract(this.cfg.getProperty(A),YAHOO.widget.DateMath.MONTH,B));this.resetRenderers();this.changePageEvent.fire();};YAHOO.widget.Calendar.prototype.addYears=function(B){var A=YAHOO.widget.Calendar._DEFAULT_CONFIG.PAGEDATE.key;this.cfg.setProperty(A,YAHOO.widget.DateMath.add(this.cfg.getProperty(A),YAHOO.widget.DateMath.YEAR,B));this.resetRenderers();this.changePageEvent.fire();};YAHOO.widget.Calendar.prototype.subtractYears=function(B){var A=YAHOO.widget.Calendar._DEFAULT_CONFIG.PAGEDATE.key;this.cfg.setProperty(A,YAHOO.widget.DateMath.subtract(this.cfg.getProperty(A),YAHOO.widget.DateMath.YEAR,B));this.resetRenderers();this.changePageEvent.fire();};YAHOO.widget.Calendar.prototype.nextMonth=function(){this.addMonths(1);};YAHOO.widget.Calendar.prototype.previousMonth=function(){this.subtractMonths(1);};YAHOO.widget.Calendar.prototype.nextYear=function(){this.addYears(1);};YAHOO.widget.Calendar.prototype.previousYear=function(){this.subtractYears(1);};YAHOO.widget.Calendar.prototype.reset=function(){var A=YAHOO.widget.Calendar._DEFAULT_CONFIG;this.cfg.resetProperty(A.SELECTED.key);this.cfg.resetProperty(A.PAGEDATE.key);this.resetEvent.fire();
+};YAHOO.widget.Calendar.prototype.clear=function(){var A=YAHOO.widget.Calendar._DEFAULT_CONFIG;this.cfg.setProperty(A.SELECTED.key,[]);this.cfg.setProperty(A.PAGEDATE.key,new Date(this.today.getTime()));this.clearEvent.fire();};YAHOO.widget.Calendar.prototype.select=function(C){var F=this._toFieldArray(C);var B=[];var E=[];var G=YAHOO.widget.Calendar._DEFAULT_CONFIG.SELECTED.key;for(var A=0;A<F.length;++A){var D=F[A];if(!this.isDateOOB(this._toDate(D))){if(B.length===0){this.beforeSelectEvent.fire();E=this.cfg.getProperty(G);}B.push(D);if(this._indexOfSelectedFieldArray(D)==-1){E[E.length]=D;}}}if(B.length>0){if(this.parent){this.parent.cfg.setProperty(G,E);}else{this.cfg.setProperty(G,E);}this.selectEvent.fire(B);}return this.getSelectedDates();};YAHOO.widget.Calendar.prototype.selectCell=function(D){var B=this.cells[D];var H=this.cellDates[D];var G=this._toDate(H);var C=YAHOO.util.Dom.hasClass(B,this.Style.CSS_CELL_SELECTABLE);if(C){this.beforeSelectEvent.fire();var F=YAHOO.widget.Calendar._DEFAULT_CONFIG.SELECTED.key;var E=this.cfg.getProperty(F);var A=H.concat();if(this._indexOfSelectedFieldArray(A)==-1){E[E.length]=A;}if(this.parent){this.parent.cfg.setProperty(F,E);}else{this.cfg.setProperty(F,E);}this.renderCellStyleSelected(G,B);this.selectEvent.fire([A]);this.doCellMouseOut.call(B,null,this);}return this.getSelectedDates();};YAHOO.widget.Calendar.prototype.deselect=function(E){var A=this._toFieldArray(E);var D=[];var G=[];var H=YAHOO.widget.Calendar._DEFAULT_CONFIG.SELECTED.key;for(var B=0;B<A.length;++B){var F=A[B];if(!this.isDateOOB(this._toDate(F))){if(D.length===0){this.beforeDeselectEvent.fire();G=this.cfg.getProperty(H);}D.push(F);var C=this._indexOfSelectedFieldArray(F);if(C!=-1){G.splice(C,1);}}}if(D.length>0){if(this.parent){this.parent.cfg.setProperty(H,G);}else{this.cfg.setProperty(H,G);}this.deselectEvent.fire(D);}return this.getSelectedDates();};YAHOO.widget.Calendar.prototype.deselectCell=function(E){var H=this.cells[E];var B=this.cellDates[E];var F=this._indexOfSelectedFieldArray(B);var G=YAHOO.util.Dom.hasClass(H,this.Style.CSS_CELL_SELECTABLE);if(G){this.beforeDeselectEvent.fire();var I=YAHOO.widget.Calendar._DEFAULT_CONFIG;var D=this.cfg.getProperty(I.SELECTED.key);var C=this._toDate(B);var A=B.concat();if(F>-1){if(this.cfg.getProperty(I.PAGEDATE.key).getMonth()==C.getMonth()&&this.cfg.getProperty(I.PAGEDATE.key).getFullYear()==C.getFullYear()){YAHOO.util.Dom.removeClass(H,this.Style.CSS_CELL_SELECTED);}D.splice(F,1);}if(this.parent){this.parent.cfg.setProperty(I.SELECTED.key,D);}else{this.cfg.setProperty(I.SELECTED.key,D);}this.deselectEvent.fire(A);}return this.getSelectedDates();};YAHOO.widget.Calendar.prototype.deselectAll=function(){this.beforeDeselectEvent.fire();var D=YAHOO.widget.Calendar._DEFAULT_CONFIG.SELECTED.key;var A=this.cfg.getProperty(D);var B=A.length;var C=A.concat();if(this.parent){this.parent.cfg.setProperty(D,[]);}else{this.cfg.setProperty(D,[]);}if(B>0){this.deselectEvent.fire(C);}return this.getSelectedDates();};YAHOO.widget.Calendar.prototype._toFieldArray=function(B){var A=[];if(B instanceof Date){A=[[B.getFullYear(),B.getMonth()+1,B.getDate()]];}else{if(YAHOO.lang.isString(B)){A=this._parseDates(B);}else{if(YAHOO.lang.isArray(B)){for(var C=0;C<B.length;++C){var D=B[C];A[A.length]=[D.getFullYear(),D.getMonth()+1,D.getDate()];}}}}return A;};YAHOO.widget.Calendar.prototype._toDate=function(A){if(A instanceof Date){return A;}else{return new Date(A[0],A[1]-1,A[2]);}};YAHOO.widget.Calendar.prototype._fieldArraysAreEqual=function(C,B){var A=false;if(C[0]==B[0]&&C[1]==B[1]&&C[2]==B[2]){A=true;}return A;};YAHOO.widget.Calendar.prototype._indexOfSelectedFieldArray=function(E){var D=-1;var A=this.cfg.getProperty(YAHOO.widget.Calendar._DEFAULT_CONFIG.SELECTED.key);for(var C=0;C<A.length;++C){var B=A[C];if(E[0]==B[0]&&E[1]==B[1]&&E[2]==B[2]){D=C;break;}}return D;};YAHOO.widget.Calendar.prototype.isDateOOM=function(A){return(A.getMonth()!=this.cfg.getProperty(YAHOO.widget.Calendar._DEFAULT_CONFIG.PAGEDATE.key).getMonth());};YAHOO.widget.Calendar.prototype.isDateOOB=function(D){var A=YAHOO.widget.Calendar._DEFAULT_CONFIG;var E=this.cfg.getProperty(A.MINDATE.key);var F=this.cfg.getProperty(A.MAXDATE.key);var C=YAHOO.widget.DateMath;if(E){E=C.clearTime(E);}if(F){F=C.clearTime(F);}var B=new Date(D.getTime());B=C.clearTime(B);return((E&&B.getTime()<E.getTime())||(F&&B.getTime()>F.getTime()));};YAHOO.widget.Calendar.prototype._parsePageDate=function(B){var E;var A=YAHOO.widget.Calendar._DEFAULT_CONFIG;if(B){if(B instanceof Date){E=YAHOO.widget.DateMath.findMonthStart(B);}else{var F,D,C;C=B.split(this.cfg.getProperty(A.DATE_FIELD_DELIMITER.key));F=parseInt(C[this.cfg.getProperty(A.MY_MONTH_POSITION.key)-1],10)-1;D=parseInt(C[this.cfg.getProperty(A.MY_YEAR_POSITION.key)-1],10);E=new Date(D,F,1);}}else{E=new Date(this.today.getFullYear(),this.today.getMonth(),1);}return E;};YAHOO.widget.Calendar.prototype.onBeforeSelect=function(){if(this.cfg.getProperty(YAHOO.widget.Calendar._DEFAULT_CONFIG.MULTI_SELECT.key)===false){if(this.parent){this.parent.callChildFunction("clearAllBodyCellStyles",this.Style.CSS_CELL_SELECTED);this.parent.deselectAll();}else{this.clearAllBodyCellStyles(this.Style.CSS_CELL_SELECTED);this.deselectAll();}}};YAHOO.widget.Calendar.prototype.onSelect=function(A){};YAHOO.widget.Calendar.prototype.onBeforeDeselect=function(){};YAHOO.widget.Calendar.prototype.onDeselect=function(A){};YAHOO.widget.Calendar.prototype.onChangePage=function(){this.render();};YAHOO.widget.Calendar.prototype.onRender=function(){};YAHOO.widget.Calendar.prototype.onReset=function(){this.render();};YAHOO.widget.Calendar.prototype.onClear=function(){this.render();};YAHOO.widget.Calendar.prototype.validate=function(){return true;};YAHOO.widget.Calendar.prototype._parseDate=function(C){var D=C.split(this.Locale.DATE_FIELD_DELIMITER);var A;if(D.length==2){A=[D[this.Locale.MD_MONTH_POSITION-1],D[this.Locale.MD_DAY_POSITION-1]];A.type=YAHOO.widget.Calendar.MONTH_DAY;}else{A=[D[this.Locale.MDY_YEAR_POSITION-1],D[this.Locale.MDY_MONTH_POSITION-1],D[this.Locale.MDY_DAY_POSITION-1]];
+A.type=YAHOO.widget.Calendar.DATE;}for(var B=0;B<A.length;B++){A[B]=parseInt(A[B],10);}return A;};YAHOO.widget.Calendar.prototype._parseDates=function(B){var I=[];var H=B.split(this.Locale.DATE_DELIMITER);for(var G=0;G<H.length;++G){var F=H[G];if(F.indexOf(this.Locale.DATE_RANGE_DELIMITER)!=-1){var A=F.split(this.Locale.DATE_RANGE_DELIMITER);var E=this._parseDate(A[0]);var J=this._parseDate(A[1]);var D=this._parseRange(E,J);I=I.concat(D);}else{var C=this._parseDate(F);I.push(C);}}return I;};YAHOO.widget.Calendar.prototype._parseRange=function(A,F){var E=new Date(A[0],A[1]-1,A[2]);var B=YAHOO.widget.DateMath.add(new Date(A[0],A[1]-1,A[2]),YAHOO.widget.DateMath.DAY,1);var D=new Date(F[0],F[1]-1,F[2]);var C=[];C.push(A);while(B.getTime()<=D.getTime()){C.push([B.getFullYear(),B.getMonth()+1,B.getDate()]);B=YAHOO.widget.DateMath.add(B,YAHOO.widget.DateMath.DAY,1);}return C;};YAHOO.widget.Calendar.prototype.resetRenderers=function(){this.renderStack=this._renderStack.concat();};YAHOO.widget.Calendar.prototype.clearElement=function(A){A.innerHTML="&#160;";A.className="";};YAHOO.widget.Calendar.prototype.addRenderer=function(A,B){var D=this._parseDates(A);for(var C=0;C<D.length;++C){var E=D[C];if(E.length==2){if(E[0] instanceof Array){this._addRenderer(YAHOO.widget.Calendar.RANGE,E,B);}else{this._addRenderer(YAHOO.widget.Calendar.MONTH_DAY,E,B);}}else{if(E.length==3){this._addRenderer(YAHOO.widget.Calendar.DATE,E,B);}}}};YAHOO.widget.Calendar.prototype._addRenderer=function(B,C,A){var D=[B,C,A];this.renderStack.unshift(D);this._renderStack=this.renderStack.concat();};YAHOO.widget.Calendar.prototype.addMonthRenderer=function(B,A){this._addRenderer(YAHOO.widget.Calendar.MONTH,[B],A);};YAHOO.widget.Calendar.prototype.addWeekdayRenderer=function(B,A){this._addRenderer(YAHOO.widget.Calendar.WEEKDAY,[B],A);};YAHOO.widget.Calendar.prototype.clearAllBodyCellStyles=function(A){for(var B=0;B<this.cells.length;++B){YAHOO.util.Dom.removeClass(this.cells[B],A);}};YAHOO.widget.Calendar.prototype.setMonth=function(C){var A=YAHOO.widget.Calendar._DEFAULT_CONFIG.PAGEDATE.key;var B=this.cfg.getProperty(A);B.setMonth(parseInt(C,10));this.cfg.setProperty(A,B);};YAHOO.widget.Calendar.prototype.setYear=function(B){var A=YAHOO.widget.Calendar._DEFAULT_CONFIG.PAGEDATE.key;var C=this.cfg.getProperty(A);C.setFullYear(parseInt(B,10));this.cfg.setProperty(A,C);};YAHOO.widget.Calendar.prototype.getSelectedDates=function(){var C=[];var B=this.cfg.getProperty(YAHOO.widget.Calendar._DEFAULT_CONFIG.SELECTED.key);for(var E=0;E<B.length;++E){var D=B[E];var A=new Date(D[0],D[1]-1,D[2]);C.push(A);}C.sort(function(G,F){return G-F;});return C;};YAHOO.widget.Calendar.prototype.hide=function(){this.oDomContainer.style.display="none";};YAHOO.widget.Calendar.prototype.show=function(){this.oDomContainer.style.display="block";};YAHOO.widget.Calendar.prototype.browser=function(){var A=navigator.userAgent.toLowerCase();if(A.indexOf("opera")!=-1){return"opera";}else{if(A.indexOf("msie 7")!=-1){return"ie7";}else{if(A.indexOf("msie")!=-1){return"ie";}else{if(A.indexOf("safari")!=-1){return"safari";}else{if(A.indexOf("gecko")!=-1){return"gecko";}else{return false;}}}}}}();YAHOO.widget.Calendar.prototype.toString=function(){return"Calendar "+this.id;};YAHOO.widget.Calendar_Core=YAHOO.widget.Calendar;YAHOO.widget.Cal_Core=YAHOO.widget.Calendar;YAHOO.widget.CalendarGroup=function(C,A,B){if(arguments.length>0){this.init(C,A,B);}};YAHOO.widget.CalendarGroup.prototype.init=function(C,A,B){this.initEvents();this.initStyles();this.pages=[];this.id=C;this.containerId=A;this.oDomContainer=document.getElementById(A);YAHOO.util.Dom.addClass(this.oDomContainer,YAHOO.widget.CalendarGroup.CSS_CONTAINER);YAHOO.util.Dom.addClass(this.oDomContainer,YAHOO.widget.CalendarGroup.CSS_MULTI_UP);this.cfg=new YAHOO.util.Config(this);this.Options={};this.Locale={};this.setupConfig();if(B){this.cfg.applyConfig(B,true);}this.cfg.fireQueue();if(YAHOO.env.ua.opera){this.renderEvent.subscribe(this._fixWidth,this,true);}};YAHOO.widget.CalendarGroup.prototype.setupConfig=function(){var A=YAHOO.widget.CalendarGroup._DEFAULT_CONFIG;this.cfg.addProperty(A.PAGES.key,{value:A.PAGES.value,validator:this.cfg.checkNumber,handler:this.configPages});this.cfg.addProperty(A.PAGEDATE.key,{value:new Date(),handler:this.configPageDate});this.cfg.addProperty(A.SELECTED.key,{value:[],handler:this.configSelected});this.cfg.addProperty(A.TITLE.key,{value:A.TITLE.value,handler:this.configTitle});this.cfg.addProperty(A.CLOSE.key,{value:A.CLOSE.value,handler:this.configClose});this.cfg.addProperty(A.IFRAME.key,{value:A.IFRAME.value,handler:this.configIframe,validator:this.cfg.checkBoolean});this.cfg.addProperty(A.MINDATE.key,{value:A.MINDATE.value,handler:this.delegateConfig});this.cfg.addProperty(A.MAXDATE.key,{value:A.MAXDATE.value,handler:this.delegateConfig});this.cfg.addProperty(A.MULTI_SELECT.key,{value:A.MULTI_SELECT.value,handler:this.delegateConfig,validator:this.cfg.checkBoolean});this.cfg.addProperty(A.START_WEEKDAY.key,{value:A.START_WEEKDAY.value,handler:this.delegateConfig,validator:this.cfg.checkNumber});this.cfg.addProperty(A.SHOW_WEEKDAYS.key,{value:A.SHOW_WEEKDAYS.value,handler:this.delegateConfig,validator:this.cfg.checkBoolean});this.cfg.addProperty(A.SHOW_WEEK_HEADER.key,{value:A.SHOW_WEEK_HEADER.value,handler:this.delegateConfig,validator:this.cfg.checkBoolean});this.cfg.addProperty(A.SHOW_WEEK_FOOTER.key,{value:A.SHOW_WEEK_FOOTER.value,handler:this.delegateConfig,validator:this.cfg.checkBoolean});this.cfg.addProperty(A.HIDE_BLANK_WEEKS.key,{value:A.HIDE_BLANK_WEEKS.value,handler:this.delegateConfig,validator:this.cfg.checkBoolean});this.cfg.addProperty(A.NAV_ARROW_LEFT.key,{value:A.NAV_ARROW_LEFT.value,handler:this.delegateConfig});this.cfg.addProperty(A.NAV_ARROW_RIGHT.key,{value:A.NAV_ARROW_RIGHT.value,handler:this.delegateConfig});this.cfg.addProperty(A.MONTHS_SHORT.key,{value:A.MONTHS_SHORT.value,handler:this.delegateConfig});this.cfg.addProperty(A.MONTHS_LONG.key,{value:A.MONTHS_LONG.value,handler:this.delegateConfig});
+this.cfg.addProperty(A.WEEKDAYS_1CHAR.key,{value:A.WEEKDAYS_1CHAR.value,handler:this.delegateConfig});this.cfg.addProperty(A.WEEKDAYS_SHORT.key,{value:A.WEEKDAYS_SHORT.value,handler:this.delegateConfig});this.cfg.addProperty(A.WEEKDAYS_MEDIUM.key,{value:A.WEEKDAYS_MEDIUM.value,handler:this.delegateConfig});this.cfg.addProperty(A.WEEKDAYS_LONG.key,{value:A.WEEKDAYS_LONG.value,handler:this.delegateConfig});this.cfg.addProperty(A.LOCALE_MONTHS.key,{value:A.LOCALE_MONTHS.value,handler:this.delegateConfig});this.cfg.addProperty(A.LOCALE_WEEKDAYS.key,{value:A.LOCALE_WEEKDAYS.value,handler:this.delegateConfig});this.cfg.addProperty(A.DATE_DELIMITER.key,{value:A.DATE_DELIMITER.value,handler:this.delegateConfig});this.cfg.addProperty(A.DATE_FIELD_DELIMITER.key,{value:A.DATE_FIELD_DELIMITER.value,handler:this.delegateConfig});this.cfg.addProperty(A.DATE_RANGE_DELIMITER.key,{value:A.DATE_RANGE_DELIMITER.value,handler:this.delegateConfig});this.cfg.addProperty(A.MY_MONTH_POSITION.key,{value:A.MY_MONTH_POSITION.value,handler:this.delegateConfig,validator:this.cfg.checkNumber});this.cfg.addProperty(A.MY_YEAR_POSITION.key,{value:A.MY_YEAR_POSITION.value,handler:this.delegateConfig,validator:this.cfg.checkNumber});this.cfg.addProperty(A.MD_MONTH_POSITION.key,{value:A.MD_MONTH_POSITION.value,handler:this.delegateConfig,validator:this.cfg.checkNumber});this.cfg.addProperty(A.MD_DAY_POSITION.key,{value:A.MD_DAY_POSITION.value,handler:this.delegateConfig,validator:this.cfg.checkNumber});this.cfg.addProperty(A.MDY_MONTH_POSITION.key,{value:A.MDY_MONTH_POSITION.value,handler:this.delegateConfig,validator:this.cfg.checkNumber});this.cfg.addProperty(A.MDY_DAY_POSITION.key,{value:A.MDY_DAY_POSITION.value,handler:this.delegateConfig,validator:this.cfg.checkNumber});this.cfg.addProperty(A.MDY_YEAR_POSITION.key,{value:A.MDY_YEAR_POSITION.value,handler:this.delegateConfig,validator:this.cfg.checkNumber});this.cfg.addProperty(A.MY_LABEL_MONTH_POSITION.key,{value:A.MY_LABEL_MONTH_POSITION.value,handler:this.delegateConfig,validator:this.cfg.checkNumber});this.cfg.addProperty(A.MY_LABEL_YEAR_POSITION.key,{value:A.MY_LABEL_YEAR_POSITION.value,handler:this.delegateConfig,validator:this.cfg.checkNumber});this.cfg.addProperty(A.MY_LABEL_MONTH_SUFFIX.key,{value:A.MY_LABEL_MONTH_SUFFIX.value,handler:this.delegateConfig});this.cfg.addProperty(A.MY_LABEL_YEAR_SUFFIX.key,{value:A.MY_LABEL_YEAR_SUFFIX.value,handler:this.delegateConfig});};YAHOO.widget.CalendarGroup.prototype.initEvents=function(){var C=this;var E="Event";var B=function(G,J,F){for(var I=0;I<C.pages.length;++I){var H=C.pages[I];H[this.type+E].subscribe(G,J,F);}};var A=function(F,I){for(var H=0;H<C.pages.length;++H){var G=C.pages[H];G[this.type+E].unsubscribe(F,I);}};var D=YAHOO.widget.Calendar._EVENT_TYPES;this.beforeSelectEvent=new YAHOO.util.CustomEvent(D.BEFORE_SELECT);this.beforeSelectEvent.subscribe=B;this.beforeSelectEvent.unsubscribe=A;this.selectEvent=new YAHOO.util.CustomEvent(D.SELECT);this.selectEvent.subscribe=B;this.selectEvent.unsubscribe=A;this.beforeDeselectEvent=new YAHOO.util.CustomEvent(D.BEFORE_DESELECT);this.beforeDeselectEvent.subscribe=B;this.beforeDeselectEvent.unsubscribe=A;this.deselectEvent=new YAHOO.util.CustomEvent(D.DESELECT);this.deselectEvent.subscribe=B;this.deselectEvent.unsubscribe=A;this.changePageEvent=new YAHOO.util.CustomEvent(D.CHANGE_PAGE);this.changePageEvent.subscribe=B;this.changePageEvent.unsubscribe=A;this.beforeRenderEvent=new YAHOO.util.CustomEvent(D.BEFORE_RENDER);this.beforeRenderEvent.subscribe=B;this.beforeRenderEvent.unsubscribe=A;this.renderEvent=new YAHOO.util.CustomEvent(D.RENDER);this.renderEvent.subscribe=B;this.renderEvent.unsubscribe=A;this.resetEvent=new YAHOO.util.CustomEvent(D.RESET);this.resetEvent.subscribe=B;this.resetEvent.unsubscribe=A;this.clearEvent=new YAHOO.util.CustomEvent(D.CLEAR);this.clearEvent.subscribe=B;this.clearEvent.unsubscribe=A;};YAHOO.widget.CalendarGroup.prototype.configPages=function(K,J,G){var E=J[0];var C=YAHOO.widget.CalendarGroup._DEFAULT_CONFIG.PAGEDATE.key;var O="_";var L="groupcal";var N="first-of-type";var D="last-of-type";for(var B=0;B<E;++B){var M=this.id+O+B;var I=this.containerId+O+B;var H=this.cfg.getConfig();H.close=false;H.title=false;var A=this.constructChild(M,I,H);var F=A.cfg.getProperty(C);this._setMonthOnDate(F,F.getMonth()+B);A.cfg.setProperty(C,F);YAHOO.util.Dom.removeClass(A.oDomContainer,this.Style.CSS_SINGLE);YAHOO.util.Dom.addClass(A.oDomContainer,L);if(B===0){YAHOO.util.Dom.addClass(A.oDomContainer,N);}if(B==(E-1)){YAHOO.util.Dom.addClass(A.oDomContainer,D);}A.parent=this;A.index=B;this.pages[this.pages.length]=A;}};YAHOO.widget.CalendarGroup.prototype.configPageDate=function(H,G,E){var C=G[0];var F;var D=YAHOO.widget.CalendarGroup._DEFAULT_CONFIG.PAGEDATE.key;for(var B=0;B<this.pages.length;++B){var A=this.pages[B];if(B===0){F=A._parsePageDate(C);A.cfg.setProperty(D,F);}else{var I=new Date(F);this._setMonthOnDate(I,I.getMonth()+B);A.cfg.setProperty(D,I);}}};YAHOO.widget.CalendarGroup.prototype.configSelected=function(C,A,E){var D=YAHOO.widget.CalendarGroup._DEFAULT_CONFIG.SELECTED.key;this.delegateConfig(C,A,E);var B=(this.pages.length>0)?this.pages[0].cfg.getProperty(D):[];this.cfg.setProperty(D,B,true);};YAHOO.widget.CalendarGroup.prototype.delegateConfig=function(B,A,E){var F=A[0];var D;for(var C=0;C<this.pages.length;C++){D=this.pages[C];D.cfg.setProperty(B,F);}};YAHOO.widget.CalendarGroup.prototype.setChildFunction=function(D,B){var A=this.cfg.getProperty(YAHOO.widget.CalendarGroup._DEFAULT_CONFIG.PAGES.key);for(var C=0;C<A;++C){this.pages[C][D]=B;}};YAHOO.widget.CalendarGroup.prototype.callChildFunction=function(F,B){var A=this.cfg.getProperty(YAHOO.widget.CalendarGroup._DEFAULT_CONFIG.PAGES.key);for(var E=0;E<A;++E){var D=this.pages[E];if(D[F]){var C=D[F];C.call(D,B);}}};YAHOO.widget.CalendarGroup.prototype.constructChild=function(D,B,C){var A=document.getElementById(B);if(!A){A=document.createElement("div");A.id=B;this.oDomContainer.appendChild(A);
+}return new YAHOO.widget.Calendar(D,B,C);};YAHOO.widget.CalendarGroup.prototype.setMonth=function(E){E=parseInt(E,10);var F;var B=YAHOO.widget.CalendarGroup._DEFAULT_CONFIG.PAGEDATE.key;for(var D=0;D<this.pages.length;++D){var C=this.pages[D];var A=C.cfg.getProperty(B);if(D===0){F=A.getFullYear();}else{A.setYear(F);}this._setMonthOnDate(A,E+D);C.cfg.setProperty(B,A);}};YAHOO.widget.CalendarGroup.prototype.setYear=function(C){var B=YAHOO.widget.CalendarGroup._DEFAULT_CONFIG.PAGEDATE.key;C=parseInt(C,10);for(var E=0;E<this.pages.length;++E){var D=this.pages[E];var A=D.cfg.getProperty(B);if((A.getMonth()+1)==1&&E>0){C+=1;}D.setYear(C);}};YAHOO.widget.CalendarGroup.prototype.render=function(){this.renderHeader();for(var B=0;B<this.pages.length;++B){var A=this.pages[B];A.render();}this.renderFooter();};YAHOO.widget.CalendarGroup.prototype.select=function(A){for(var C=0;C<this.pages.length;++C){var B=this.pages[C];B.select(A);}return this.getSelectedDates();};YAHOO.widget.CalendarGroup.prototype.selectCell=function(A){for(var C=0;C<this.pages.length;++C){var B=this.pages[C];B.selectCell(A);}return this.getSelectedDates();};YAHOO.widget.CalendarGroup.prototype.deselect=function(A){for(var C=0;C<this.pages.length;++C){var B=this.pages[C];B.deselect(A);}return this.getSelectedDates();};YAHOO.widget.CalendarGroup.prototype.deselectAll=function(){for(var B=0;B<this.pages.length;++B){var A=this.pages[B];A.deselectAll();}return this.getSelectedDates();};YAHOO.widget.CalendarGroup.prototype.deselectCell=function(A){for(var C=0;C<this.pages.length;++C){var B=this.pages[C];B.deselectCell(A);}return this.getSelectedDates();};YAHOO.widget.CalendarGroup.prototype.reset=function(){for(var B=0;B<this.pages.length;++B){var A=this.pages[B];A.reset();}};YAHOO.widget.CalendarGroup.prototype.clear=function(){for(var B=0;B<this.pages.length;++B){var A=this.pages[B];A.clear();}};YAHOO.widget.CalendarGroup.prototype.nextMonth=function(){for(var B=0;B<this.pages.length;++B){var A=this.pages[B];A.nextMonth();}};YAHOO.widget.CalendarGroup.prototype.previousMonth=function(){for(var B=this.pages.length-1;B>=0;--B){var A=this.pages[B];A.previousMonth();}};YAHOO.widget.CalendarGroup.prototype.nextYear=function(){for(var B=0;B<this.pages.length;++B){var A=this.pages[B];A.nextYear();}};YAHOO.widget.CalendarGroup.prototype.previousYear=function(){for(var B=0;B<this.pages.length;++B){var A=this.pages[B];A.previousYear();}};YAHOO.widget.CalendarGroup.prototype.getSelectedDates=function(){var C=[];var B=this.cfg.getProperty(YAHOO.widget.CalendarGroup._DEFAULT_CONFIG.SELECTED.key);for(var E=0;E<B.length;++E){var D=B[E];var A=new Date(D[0],D[1]-1,D[2]);C.push(A);}C.sort(function(G,F){return G-F;});return C;};YAHOO.widget.CalendarGroup.prototype.addRenderer=function(A,B){for(var D=0;D<this.pages.length;++D){var C=this.pages[D];C.addRenderer(A,B);}};YAHOO.widget.CalendarGroup.prototype.addMonthRenderer=function(D,A){for(var C=0;C<this.pages.length;++C){var B=this.pages[C];B.addMonthRenderer(D,A);}};YAHOO.widget.CalendarGroup.prototype.addWeekdayRenderer=function(B,A){for(var D=0;D<this.pages.length;++D){var C=this.pages[D];C.addWeekdayRenderer(B,A);}};YAHOO.widget.CalendarGroup.prototype.renderHeader=function(){};YAHOO.widget.CalendarGroup.prototype.renderFooter=function(){};YAHOO.widget.CalendarGroup.prototype.addMonths=function(A){this.callChildFunction("addMonths",A);};YAHOO.widget.CalendarGroup.prototype.subtractMonths=function(A){this.callChildFunction("subtractMonths",A);};YAHOO.widget.CalendarGroup.prototype.addYears=function(A){this.callChildFunction("addYears",A);};YAHOO.widget.CalendarGroup.prototype.subtractYears=function(A){this.callChildFunction("subtractYears",A);};YAHOO.widget.CalendarGroup.prototype.show=function(){this.oDomContainer.style.display="block";if(YAHOO.env.ua.opera){this._fixWidth();}};YAHOO.widget.CalendarGroup.prototype._setMonthOnDate=function(C,D){if(YAHOO.env.ua.webkit&&YAHOO.env.ua.webkit<420&&(D<0||D>11)){var B=YAHOO.widget.DateMath;var A=B.add(C,B.MONTH,D-C.getMonth());C.setTime(A.getTime());}else{C.setMonth(D);}};YAHOO.widget.CalendarGroup.prototype._fixWidth=function(){var B=this.oDomContainer.offsetWidth;var A=0;for(var D=0;D<this.pages.length;++D){var C=this.pages[D];A+=C.oDomContainer.offsetWidth;}if(A>0){this.oDomContainer.style.width=A+"px";}};YAHOO.widget.CalendarGroup.CSS_CONTAINER="yui-calcontainer";YAHOO.widget.CalendarGroup.CSS_MULTI_UP="multi";YAHOO.widget.CalendarGroup.CSS_2UPTITLE="title";YAHOO.widget.CalendarGroup.CSS_2UPCLOSE="close-icon";YAHOO.lang.augmentProto(YAHOO.widget.CalendarGroup,YAHOO.widget.Calendar,"buildDayLabel","buildMonthLabel","renderOutOfBoundsDate","renderRowHeader","renderRowFooter","renderCellDefault","styleCellDefault","renderCellStyleHighlight1","renderCellStyleHighlight2","renderCellStyleHighlight3","renderCellStyleHighlight4","renderCellStyleToday","renderCellStyleSelected","renderCellNotThisMonth","renderBodyCellRestricted","initStyles","configTitle","configClose","configIframe","createTitleBar","createCloseButton","removeTitleBar","removeCloseButton","hide","browser");YAHOO.widget.CalendarGroup._DEFAULT_CONFIG=YAHOO.widget.Calendar._DEFAULT_CONFIG;YAHOO.widget.CalendarGroup._DEFAULT_CONFIG.PAGES={key:"pages",value:2};YAHOO.widget.CalendarGroup.prototype.toString=function(){return"CalendarGroup "+this.id;};YAHOO.widget.CalGrp=YAHOO.widget.CalendarGroup;YAHOO.widget.Calendar2up=function(C,A,B){this.init(C,A,B);};YAHOO.extend(YAHOO.widget.Calendar2up,YAHOO.widget.CalendarGroup);YAHOO.widget.Cal2up=YAHOO.widget.Calendar2up;YAHOO.register("calendar",YAHOO.widget.Calendar,{version:"2.3.1",build:"541"});
\ No newline at end of file
diff --git a/js/yui/yahoo-dom-event.js b/js/yui/yahoo-dom-event.js
new file mode 100644
index 0000000000000000000000000000000000000000..d089967edf360d253a6171af148c0e1d43793555
--- /dev/null
+++ b/js/yui/yahoo-dom-event.js
@@ -0,0 +1,10 @@
+/*
+Copyright (c) 2007, Yahoo! Inc. All rights reserved.
+Code licensed under the BSD License:
+http://developer.yahoo.net/yui/license.txt
+version: 2.3.1
+*/
+if(typeof YAHOO=="undefined"){var YAHOO={};}YAHOO.namespace=function(){var A=arguments,E=null,C,B,D;for(C=0;C<A.length;C=C+1){D=A[C].split(".");E=YAHOO;for(B=(D[0]=="YAHOO")?1:0;B<D.length;B=B+1){E[D[B]]=E[D[B]]||{};E=E[D[B]];}}return E;};YAHOO.log=function(D,A,C){var B=YAHOO.widget.Logger;if(B&&B.log){return B.log(D,A,C);}else{return false;}};YAHOO.register=function(A,E,D){var I=YAHOO.env.modules;if(!I[A]){I[A]={versions:[],builds:[]};}var B=I[A],H=D.version,G=D.build,F=YAHOO.env.listeners;B.name=A;B.version=H;B.build=G;B.versions.push(H);B.builds.push(G);B.mainClass=E;for(var C=0;C<F.length;C=C+1){F[C](B);}if(E){E.VERSION=H;E.BUILD=G;}else{YAHOO.log("mainClass is undefined for module "+A,"warn");}};YAHOO.env=YAHOO.env||{modules:[],listeners:[]};YAHOO.env.getVersion=function(A){return YAHOO.env.modules[A]||null;};YAHOO.env.ua=function(){var C={ie:0,opera:0,gecko:0,webkit:0};var B=navigator.userAgent,A;if((/KHTML/).test(B)){C.webkit=1;}A=B.match(/AppleWebKit\/([^\s]*)/);if(A&&A[1]){C.webkit=parseFloat(A[1]);}if(!C.webkit){A=B.match(/Opera[\s\/]([^\s]*)/);if(A&&A[1]){C.opera=parseFloat(A[1]);}else{A=B.match(/MSIE\s([^;]*)/);if(A&&A[1]){C.ie=parseFloat(A[1]);}else{A=B.match(/Gecko\/([^\s]*)/);if(A){C.gecko=1;A=B.match(/rv:([^\s\)]*)/);if(A&&A[1]){C.gecko=parseFloat(A[1]);}}}}}return C;}();(function(){YAHOO.namespace("util","widget","example");if("undefined"!==typeof YAHOO_config){var B=YAHOO_config.listener,A=YAHOO.env.listeners,D=true,C;if(B){for(C=0;C<A.length;C=C+1){if(A[C]==B){D=false;break;}}if(D){A.push(B);}}}})();YAHOO.lang={isArray:function(B){if(B){var A=YAHOO.lang;return A.isNumber(B.length)&&A.isFunction(B.splice)&&!A.hasOwnProperty(B.length);}return false;},isBoolean:function(A){return typeof A==="boolean";},isFunction:function(A){return typeof A==="function";},isNull:function(A){return A===null;},isNumber:function(A){return typeof A==="number"&&isFinite(A);},isObject:function(A){return(A&&(typeof A==="object"||YAHOO.lang.isFunction(A)))||false;},isString:function(A){return typeof A==="string";},isUndefined:function(A){return typeof A==="undefined";},hasOwnProperty:function(A,B){if(Object.prototype.hasOwnProperty){return A.hasOwnProperty(B);}return !YAHOO.lang.isUndefined(A[B])&&A.constructor.prototype[B]!==A[B];},_IEEnumFix:function(C,B){if(YAHOO.env.ua.ie){var E=["toString","valueOf"],A;for(A=0;A<E.length;A=A+1){var F=E[A],D=B[F];if(YAHOO.lang.isFunction(D)&&D!=Object.prototype[F]){C[F]=D;}}}},extend:function(D,E,C){if(!E||!D){throw new Error("YAHOO.lang.extend failed, please check that all dependencies are included.");}var B=function(){};B.prototype=E.prototype;D.prototype=new B();D.prototype.constructor=D;D.superclass=E.prototype;if(E.prototype.constructor==Object.prototype.constructor){E.prototype.constructor=E;}if(C){for(var A in C){D.prototype[A]=C[A];}YAHOO.lang._IEEnumFix(D.prototype,C);}},augmentObject:function(E,D){if(!D||!E){throw new Error("Absorb failed, verify dependencies.");}var A=arguments,C,F,B=A[2];if(B&&B!==true){for(C=2;C<A.length;C=C+1){E[A[C]]=D[A[C]];}}else{for(F in D){if(B||!E[F]){E[F]=D[F];}}YAHOO.lang._IEEnumFix(E,D);}},augmentProto:function(D,C){if(!C||!D){throw new Error("Augment failed, verify dependencies.");}var A=[D.prototype,C.prototype];for(var B=2;B<arguments.length;B=B+1){A.push(arguments[B]);}YAHOO.lang.augmentObject.apply(this,A);},dump:function(A,G){var C=YAHOO.lang,D,F,I=[],J="{...}",B="f(){...}",H=", ",E=" => ";if(!C.isObject(A)){return A+"";}else{if(A instanceof Date||("nodeType" in A&&"tagName" in A)){return A;}else{if(C.isFunction(A)){return B;}}}G=(C.isNumber(G))?G:3;if(C.isArray(A)){I.push("[");for(D=0,F=A.length;D<F;D=D+1){if(C.isObject(A[D])){I.push((G>0)?C.dump(A[D],G-1):J);}else{I.push(A[D]);}I.push(H);}if(I.length>1){I.pop();}I.push("]");}else{I.push("{");for(D in A){if(C.hasOwnProperty(A,D)){I.push(D+E);if(C.isObject(A[D])){I.push((G>0)?C.dump(A[D],G-1):J);}else{I.push(A[D]);}I.push(H);}}if(I.length>1){I.pop();}I.push("}");}return I.join("");},substitute:function(Q,B,J){var G,F,E,M,N,P,D=YAHOO.lang,L=[],C,H="dump",K=" ",A="{",O="}";for(;;){G=Q.lastIndexOf(A);if(G<0){break;}F=Q.indexOf(O,G);if(G+1>=F){break;}C=Q.substring(G+1,F);M=C;P=null;E=M.indexOf(K);if(E>-1){P=M.substring(E+1);M=M.substring(0,E);}N=B[M];if(J){N=J(M,N,P);}if(D.isObject(N)){if(D.isArray(N)){N=D.dump(N,parseInt(P,10));}else{P=P||"";var I=P.indexOf(H);if(I>-1){P=P.substring(4);}if(N.toString===Object.prototype.toString||I>-1){N=D.dump(N,parseInt(P,10));}else{N=N.toString();}}}else{if(!D.isString(N)&&!D.isNumber(N)){N="~-"+L.length+"-~";L[L.length]=C;}}Q=Q.substring(0,G)+N+Q.substring(F+1);}for(G=L.length-1;G>=0;G=G-1){Q=Q.replace(new RegExp("~-"+G+"-~"),"{"+L[G]+"}","g");}return Q;},trim:function(A){try{return A.replace(/^\s+|\s+$/g,"");}catch(B){return A;}},merge:function(){var C={},A=arguments,B;for(B=0;B<A.length;B=B+1){YAHOO.lang.augmentObject(C,A[B],true);}return C;},isValue:function(B){var A=YAHOO.lang;return(A.isObject(B)||A.isString(B)||A.isNumber(B)||A.isBoolean(B));}};YAHOO.util.Lang=YAHOO.lang;YAHOO.lang.augment=YAHOO.lang.augmentProto;YAHOO.augment=YAHOO.lang.augmentProto;YAHOO.extend=YAHOO.lang.extend;YAHOO.register("yahoo",YAHOO,{version:"2.3.1",build:"541"});(function(){var B=YAHOO.util,K,I,H=0,J={},F={};var C=YAHOO.env.ua.opera,L=YAHOO.env.ua.webkit,A=YAHOO.env.ua.gecko,G=YAHOO.env.ua.ie;var E={HYPHEN:/(-[a-z])/i,ROOT_TAG:/^body|html$/i};var M=function(O){if(!E.HYPHEN.test(O)){return O;}if(J[O]){return J[O];}var P=O;while(E.HYPHEN.exec(P)){P=P.replace(RegExp.$1,RegExp.$1.substr(1).toUpperCase());}J[O]=P;return P;};var N=function(P){var O=F[P];if(!O){O=new RegExp("(?:^|\\s+)"+P+"(?:\\s+|$)");F[P]=O;}return O;};if(document.defaultView&&document.defaultView.getComputedStyle){K=function(O,R){var Q=null;if(R=="float"){R="cssFloat";}var P=document.defaultView.getComputedStyle(O,"");if(P){Q=P[M(R)];}return O.style[R]||Q;};}else{if(document.documentElement.currentStyle&&G){K=function(O,Q){switch(M(Q)){case"opacity":var S=100;try{S=O.filters["DXImageTransform.Microsoft.Alpha"].opacity;}catch(R){try{S=O.filters("alpha").opacity;}catch(R){}}return S/100;case"float":Q="styleFloat";default:var P=O.currentStyle?O.currentStyle[Q]:null;return(O.style[Q]||P);}};}else{K=function(O,P){return O.style[P];};}}if(G){I=function(O,P,Q){switch(P){case"opacity":if(YAHOO.lang.isString(O.style.filter)){O.style.filter="alpha(opacity="+Q*100+")";if(!O.currentStyle||!O.currentStyle.hasLayout){O.style.zoom=1;}}break;case"float":P="styleFloat";default:O.style[P]=Q;}};}else{I=function(O,P,Q){if(P=="float"){P="cssFloat";}O.style[P]=Q;};}var D=function(O,P){return O&&O.nodeType==1&&(!P||P(O));};YAHOO.util.Dom={get:function(Q){if(Q&&(Q.tagName||Q.item)){return Q;}if(YAHOO.lang.isString(Q)||!Q){return document.getElementById(Q);}if(Q.length!==undefined){var R=[];for(var P=0,O=Q.length;P<O;++P){R[R.length]=B.Dom.get(Q[P]);}return R;}return Q;},getStyle:function(O,Q){Q=M(Q);var P=function(R){return K(R,Q);};return B.Dom.batch(O,P,B.Dom,true);},setStyle:function(O,Q,R){Q=M(Q);var P=function(S){I(S,Q,R);};B.Dom.batch(O,P,B.Dom,true);},getXY:function(O){var P=function(R){if((R.parentNode===null||R.offsetParent===null||this.getStyle(R,"display")=="none")&&R!=document.body){return false;}var Q=null;var V=[];var S;var T=R.ownerDocument;if(R.getBoundingClientRect){S=R.getBoundingClientRect();return[S.left+B.Dom.getDocumentScrollLeft(R.ownerDocument),S.top+B.Dom.getDocumentScrollTop(R.ownerDocument)];}else{V=[R.offsetLeft,R.offsetTop];Q=R.offsetParent;var U=this.getStyle(R,"position")=="absolute";if(Q!=R){while(Q){V[0]+=Q.offsetLeft;V[1]+=Q.offsetTop;if(L&&!U&&this.getStyle(Q,"position")=="absolute"){U=true;}Q=Q.offsetParent;}}if(L&&U){V[0]-=R.ownerDocument.body.offsetLeft;V[1]-=R.ownerDocument.body.offsetTop;}}Q=R.parentNode;while(Q.tagName&&!E.ROOT_TAG.test(Q.tagName)){if(B.Dom.getStyle(Q,"display").search(/^inline|table-row.*$/i)){V[0]-=Q.scrollLeft;V[1]-=Q.scrollTop;}Q=Q.parentNode;}return V;};return B.Dom.batch(O,P,B.Dom,true);},getX:function(O){var P=function(Q){return B.Dom.getXY(Q)[0];};return B.Dom.batch(O,P,B.Dom,true);},getY:function(O){var P=function(Q){return B.Dom.getXY(Q)[1];};return B.Dom.batch(O,P,B.Dom,true);},setXY:function(O,R,Q){var P=function(U){var T=this.getStyle(U,"position");if(T=="static"){this.setStyle(U,"position","relative");T="relative";}var W=this.getXY(U);if(W===false){return false;}var V=[parseInt(this.getStyle(U,"left"),10),parseInt(this.getStyle(U,"top"),10)];if(isNaN(V[0])){V[0]=(T=="relative")?0:U.offsetLeft;}if(isNaN(V[1])){V[1]=(T=="relative")?0:U.offsetTop;}if(R[0]!==null){U.style.left=R[0]-W[0]+V[0]+"px";}if(R[1]!==null){U.style.top=R[1]-W[1]+V[1]+"px";}if(!Q){var S=this.getXY(U);if((R[0]!==null&&S[0]!=R[0])||(R[1]!==null&&S[1]!=R[1])){this.setXY(U,R,true);}}};B.Dom.batch(O,P,B.Dom,true);},setX:function(P,O){B.Dom.setXY(P,[O,null]);},setY:function(O,P){B.Dom.setXY(O,[null,P]);},getRegion:function(O){var P=function(Q){if((Q.parentNode===null||Q.offsetParent===null||this.getStyle(Q,"display")=="none")&&Q!=document.body){return false;}var R=B.Region.getRegion(Q);return R;};return B.Dom.batch(O,P,B.Dom,true);},getClientWidth:function(){return B.Dom.getViewportWidth();},getClientHeight:function(){return B.Dom.getViewportHeight();},getElementsByClassName:function(S,W,T,U){W=W||"*";T=(T)?B.Dom.get(T):null||document;if(!T){return[];}var P=[],O=T.getElementsByTagName(W),V=N(S);for(var Q=0,R=O.length;Q<R;++Q){if(V.test(O[Q].className)){P[P.length]=O[Q];if(U){U.call(O[Q],O[Q]);}}}return P;},hasClass:function(Q,P){var O=N(P);var R=function(S){return O.test(S.className);};return B.Dom.batch(Q,R,B.Dom,true);},addClass:function(P,O){var Q=function(R){if(this.hasClass(R,O)){return false;}R.className=YAHOO.lang.trim([R.className,O].join(" "));return true;};return B.Dom.batch(P,Q,B.Dom,true);},removeClass:function(Q,P){var O=N(P);var R=function(S){if(!this.hasClass(S,P)){return false;}var T=S.className;S.className=T.replace(O," ");if(this.hasClass(S,P)){this.removeClass(S,P);}S.className=YAHOO.lang.trim(S.className);return true;};return B.Dom.batch(Q,R,B.Dom,true);},replaceClass:function(R,P,O){if(!O||P===O){return false;}var Q=N(P);var S=function(T){if(!this.hasClass(T,P)){this.addClass(T,O);return true;}T.className=T.className.replace(Q," "+O+" ");if(this.hasClass(T,P)){this.replaceClass(T,P,O);}T.className=YAHOO.lang.trim(T.className);return true;};return B.Dom.batch(R,S,B.Dom,true);},generateId:function(O,Q){Q=Q||"yui-gen";var P=function(R){if(R&&R.id){return R.id;}var S=Q+H++;if(R){R.id=S;}return S;};return B.Dom.batch(O,P,B.Dom,true)||P.apply(B.Dom,arguments);},isAncestor:function(P,Q){P=B.Dom.get(P);if(!P||!Q){return false;}var O=function(R){if(P.contains&&R.nodeType&&!L){return P.contains(R);}else{if(P.compareDocumentPosition&&R.nodeType){return !!(P.compareDocumentPosition(R)&16);}else{if(R.nodeType){return !!this.getAncestorBy(R,function(S){return S==P;});}}}return false;};return B.Dom.batch(Q,O,B.Dom,true);},inDocument:function(O){var P=function(Q){if(L){while(Q=Q.parentNode){if(Q==document.documentElement){return true;}}return false;}return this.isAncestor(document.documentElement,Q);};return B.Dom.batch(O,P,B.Dom,true);},getElementsBy:function(V,P,Q,S){P=P||"*";
+Q=(Q)?B.Dom.get(Q):null||document;if(!Q){return[];}var R=[],U=Q.getElementsByTagName(P);for(var T=0,O=U.length;T<O;++T){if(V(U[T])){R[R.length]=U[T];if(S){S(U[T]);}}}return R;},batch:function(S,V,U,Q){S=(S&&(S.tagName||S.item))?S:B.Dom.get(S);if(!S||!V){return false;}var R=(Q)?U:window;if(S.tagName||S.length===undefined){return V.call(R,S,U);}var T=[];for(var P=0,O=S.length;P<O;++P){T[T.length]=V.call(R,S[P],U);}return T;},getDocumentHeight:function(){var P=(document.compatMode!="CSS1Compat")?document.body.scrollHeight:document.documentElement.scrollHeight;var O=Math.max(P,B.Dom.getViewportHeight());return O;},getDocumentWidth:function(){var P=(document.compatMode!="CSS1Compat")?document.body.scrollWidth:document.documentElement.scrollWidth;var O=Math.max(P,B.Dom.getViewportWidth());return O;},getViewportHeight:function(){var O=self.innerHeight;var P=document.compatMode;if((P||G)&&!C){O=(P=="CSS1Compat")?document.documentElement.clientHeight:document.body.clientHeight;}return O;},getViewportWidth:function(){var O=self.innerWidth;var P=document.compatMode;if(P||G){O=(P=="CSS1Compat")?document.documentElement.clientWidth:document.body.clientWidth;}return O;},getAncestorBy:function(O,P){while(O=O.parentNode){if(D(O,P)){return O;}}return null;},getAncestorByClassName:function(P,O){P=B.Dom.get(P);if(!P){return null;}var Q=function(R){return B.Dom.hasClass(R,O);};return B.Dom.getAncestorBy(P,Q);},getAncestorByTagName:function(P,O){P=B.Dom.get(P);if(!P){return null;}var Q=function(R){return R.tagName&&R.tagName.toUpperCase()==O.toUpperCase();};return B.Dom.getAncestorBy(P,Q);},getPreviousSiblingBy:function(O,P){while(O){O=O.previousSibling;if(D(O,P)){return O;}}return null;},getPreviousSibling:function(O){O=B.Dom.get(O);if(!O){return null;}return B.Dom.getPreviousSiblingBy(O);},getNextSiblingBy:function(O,P){while(O){O=O.nextSibling;if(D(O,P)){return O;}}return null;},getNextSibling:function(O){O=B.Dom.get(O);if(!O){return null;}return B.Dom.getNextSiblingBy(O);},getFirstChildBy:function(O,Q){var P=(D(O.firstChild,Q))?O.firstChild:null;return P||B.Dom.getNextSiblingBy(O.firstChild,Q);},getFirstChild:function(O,P){O=B.Dom.get(O);if(!O){return null;}return B.Dom.getFirstChildBy(O);},getLastChildBy:function(O,Q){if(!O){return null;}var P=(D(O.lastChild,Q))?O.lastChild:null;return P||B.Dom.getPreviousSiblingBy(O.lastChild,Q);},getLastChild:function(O){O=B.Dom.get(O);return B.Dom.getLastChildBy(O);},getChildrenBy:function(P,R){var Q=B.Dom.getFirstChildBy(P,R);var O=Q?[Q]:[];B.Dom.getNextSiblingBy(Q,function(S){if(!R||R(S)){O[O.length]=S;}return false;});return O;},getChildren:function(O){O=B.Dom.get(O);if(!O){}return B.Dom.getChildrenBy(O);},getDocumentScrollLeft:function(O){O=O||document;return Math.max(O.documentElement.scrollLeft,O.body.scrollLeft);},getDocumentScrollTop:function(O){O=O||document;return Math.max(O.documentElement.scrollTop,O.body.scrollTop);},insertBefore:function(P,O){P=B.Dom.get(P);O=B.Dom.get(O);if(!P||!O||!O.parentNode){return null;}return O.parentNode.insertBefore(P,O);},insertAfter:function(P,O){P=B.Dom.get(P);O=B.Dom.get(O);if(!P||!O||!O.parentNode){return null;}if(O.nextSibling){return O.parentNode.insertBefore(P,O.nextSibling);}else{return O.parentNode.appendChild(P);}}};})();YAHOO.util.Region=function(C,D,A,B){this.top=C;this[1]=C;this.right=D;this.bottom=A;this.left=B;this[0]=B;};YAHOO.util.Region.prototype.contains=function(A){return(A.left>=this.left&&A.right<=this.right&&A.top>=this.top&&A.bottom<=this.bottom);};YAHOO.util.Region.prototype.getArea=function(){return((this.bottom-this.top)*(this.right-this.left));};YAHOO.util.Region.prototype.intersect=function(E){var C=Math.max(this.top,E.top);var D=Math.min(this.right,E.right);var A=Math.min(this.bottom,E.bottom);var B=Math.max(this.left,E.left);if(A>=C&&D>=B){return new YAHOO.util.Region(C,D,A,B);}else{return null;}};YAHOO.util.Region.prototype.union=function(E){var C=Math.min(this.top,E.top);var D=Math.max(this.right,E.right);var A=Math.max(this.bottom,E.bottom);var B=Math.min(this.left,E.left);return new YAHOO.util.Region(C,D,A,B);};YAHOO.util.Region.prototype.toString=function(){return("Region {top: "+this.top+", right: "+this.right+", bottom: "+this.bottom+", left: "+this.left+"}");};YAHOO.util.Region.getRegion=function(D){var F=YAHOO.util.Dom.getXY(D);var C=F[1];var E=F[0]+D.offsetWidth;var A=F[1]+D.offsetHeight;var B=F[0];return new YAHOO.util.Region(C,E,A,B);};YAHOO.util.Point=function(A,B){if(YAHOO.lang.isArray(A)){B=A[1];A=A[0];}this.x=this.right=this.left=this[0]=A;this.y=this.top=this.bottom=this[1]=B;};YAHOO.util.Point.prototype=new YAHOO.util.Region();YAHOO.register("dom",YAHOO.util.Dom,{version:"2.3.1",build:"541"});YAHOO.util.CustomEvent=function(D,B,C,A){this.type=D;this.scope=B||window;this.silent=C;this.signature=A||YAHOO.util.CustomEvent.LIST;this.subscribers=[];if(!this.silent){}var E="_YUICEOnSubscribe";if(D!==E){this.subscribeEvent=new YAHOO.util.CustomEvent(E,this,true);}this.lastError=null;};YAHOO.util.CustomEvent.LIST=0;YAHOO.util.CustomEvent.FLAT=1;YAHOO.util.CustomEvent.prototype={subscribe:function(B,C,A){if(!B){throw new Error("Invalid callback for subscriber to '"+this.type+"'");}if(this.subscribeEvent){this.subscribeEvent.fire(B,C,A);}this.subscribers.push(new YAHOO.util.Subscriber(B,C,A));},unsubscribe:function(D,F){if(!D){return this.unsubscribeAll();}var E=false;for(var B=0,A=this.subscribers.length;B<A;++B){var C=this.subscribers[B];if(C&&C.contains(D,F)){this._delete(B);E=true;}}return E;},fire:function(){var E=this.subscribers.length;if(!E&&this.silent){return true;}var H=[],G=true,D,I=false;for(D=0;D<arguments.length;++D){H.push(arguments[D]);}var A=H.length;if(!this.silent){}for(D=0;D<E;++D){var L=this.subscribers[D];if(!L){I=true;}else{if(!this.silent){}var K=L.getScope(this.scope);if(this.signature==YAHOO.util.CustomEvent.FLAT){var B=null;if(H.length>0){B=H[0];}try{G=L.fn.call(K,B,L.obj);}catch(F){this.lastError=F;}}else{try{G=L.fn.call(K,this.type,H,L.obj);}catch(F){this.lastError=F;}}if(false===G){if(!this.silent){}return false;}}}if(I){var J=[],C=this.subscribers;for(D=0,E=C.length;D<E;D=D+1){J.push(C[D]);}this.subscribers=J;}return true;},unsubscribeAll:function(){for(var B=0,A=this.subscribers.length;B<A;++B){this._delete(A-1-B);}this.subscribers=[];return B;},_delete:function(A){var B=this.subscribers[A];if(B){delete B.fn;delete B.obj;}this.subscribers[A]=null;},toString:function(){return"CustomEvent: '"+this.type+"', scope: "+this.scope;}};YAHOO.util.Subscriber=function(B,C,A){this.fn=B;this.obj=YAHOO.lang.isUndefined(C)?null:C;this.override=A;};YAHOO.util.Subscriber.prototype.getScope=function(A){if(this.override){if(this.override===true){return this.obj;}else{return this.override;}}return A;};YAHOO.util.Subscriber.prototype.contains=function(A,B){if(B){return(this.fn==A&&this.obj==B);}else{return(this.fn==A);}};YAHOO.util.Subscriber.prototype.toString=function(){return"Subscriber { obj: "+this.obj+", override: "+(this.override||"no")+" }";};if(!YAHOO.util.Event){YAHOO.util.Event=function(){var H=false;var J=false;var I=[];var K=[];var G=[];var E=[];var C=0;var F=[];var B=[];var A=0;var D={63232:38,63233:40,63234:37,63235:39};return{POLL_RETRYS:4000,POLL_INTERVAL:10,EL:0,TYPE:1,FN:2,WFN:3,UNLOAD_OBJ:3,ADJ_SCOPE:4,OBJ:5,OVERRIDE:6,lastError:null,isSafari:YAHOO.env.ua.webkit,webkit:YAHOO.env.ua.webkit,isIE:YAHOO.env.ua.ie,_interval:null,startInterval:function(){if(!this._interval){var L=this;var M=function(){L._tryPreloadAttach();};this._interval=setInterval(M,this.POLL_INTERVAL);}},onAvailable:function(N,L,O,M){F.push({id:N,fn:L,obj:O,override:M,checkReady:false});C=this.POLL_RETRYS;this.startInterval();},onDOMReady:function(L,N,M){if(J){setTimeout(function(){var O=window;if(M){if(M===true){O=N;}else{O=M;}}L.call(O,"DOMReady",[],N);},0);}else{this.DOMReadyEvent.subscribe(L,N,M);}},onContentReady:function(N,L,O,M){F.push({id:N,fn:L,obj:O,override:M,checkReady:true});C=this.POLL_RETRYS;this.startInterval();},addListener:function(N,L,W,R,M){if(!W||!W.call){return false;}if(this._isValidCollection(N)){var X=true;for(var S=0,U=N.length;S<U;++S){X=this.on(N[S],L,W,R,M)&&X;}return X;}else{if(YAHOO.lang.isString(N)){var Q=this.getEl(N);if(Q){N=Q;}else{this.onAvailable(N,function(){YAHOO.util.Event.on(N,L,W,R,M);});return true;}}}if(!N){return false;}if("unload"==L&&R!==this){K[K.length]=[N,L,W,R,M];return true;}var Z=N;if(M){if(M===true){Z=R;}else{Z=M;}}var O=function(a){return W.call(Z,YAHOO.util.Event.getEvent(a,N),R);};var Y=[N,L,W,O,Z,R,M];var T=I.length;I[T]=Y;if(this.useLegacyEvent(N,L)){var P=this.getLegacyIndex(N,L);if(P==-1||N!=G[P][0]){P=G.length;B[N.id+L]=P;G[P]=[N,L,N["on"+L]];E[P]=[];N["on"+L]=function(a){YAHOO.util.Event.fireLegacyEvent(YAHOO.util.Event.getEvent(a),P);};}E[P].push(Y);}else{try{this._simpleAdd(N,L,O,false);}catch(V){this.lastError=V;this.removeListener(N,L,W);return false;}}return true;},fireLegacyEvent:function(P,N){var R=true,L,T,S,U,Q;T=E[N];for(var M=0,O=T.length;M<O;++M){S=T[M];if(S&&S[this.WFN]){U=S[this.ADJ_SCOPE];Q=S[this.WFN].call(U,P);R=(R&&Q);}}L=G[N];if(L&&L[2]){L[2](P);}return R;},getLegacyIndex:function(M,N){var L=this.generateId(M)+N;if(typeof B[L]=="undefined"){return -1;}else{return B[L];}},useLegacyEvent:function(M,N){if(this.webkit&&("click"==N||"dblclick"==N)){var L=parseInt(this.webkit,10);if(!isNaN(L)&&L<418){return true;}}return false;},removeListener:function(M,L,U){var P,S,W;if(typeof M=="string"){M=this.getEl(M);}else{if(this._isValidCollection(M)){var V=true;for(P=0,S=M.length;P<S;++P){V=(this.removeListener(M[P],L,U)&&V);}return V;}}if(!U||!U.call){return this.purgeElement(M,false,L);}if("unload"==L){for(P=0,S=K.length;P<S;P++){W=K[P];if(W&&W[0]==M&&W[1]==L&&W[2]==U){K[P]=null;return true;}}return false;}var Q=null;var R=arguments[3];if("undefined"===typeof R){R=this._getCacheIndex(M,L,U);}if(R>=0){Q=I[R];}if(!M||!Q){return false;}if(this.useLegacyEvent(M,L)){var O=this.getLegacyIndex(M,L);var N=E[O];if(N){for(P=0,S=N.length;P<S;++P){W=N[P];if(W&&W[this.EL]==M&&W[this.TYPE]==L&&W[this.FN]==U){N[P]=null;break;}}}}else{try{this._simpleRemove(M,L,Q[this.WFN],false);}catch(T){this.lastError=T;return false;}}delete I[R][this.WFN];delete I[R][this.FN];I[R]=null;return true;},getTarget:function(N,M){var L=N.target||N.srcElement;return this.resolveTextNode(L);},resolveTextNode:function(L){if(L&&3==L.nodeType){return L.parentNode;}else{return L;}},getPageX:function(M){var L=M.pageX;if(!L&&0!==L){L=M.clientX||0;if(this.isIE){L+=this._getScrollLeft();}}return L;},getPageY:function(L){var M=L.pageY;if(!M&&0!==M){M=L.clientY||0;if(this.isIE){M+=this._getScrollTop();}}return M;},getXY:function(L){return[this.getPageX(L),this.getPageY(L)];
+},getRelatedTarget:function(M){var L=M.relatedTarget;if(!L){if(M.type=="mouseout"){L=M.toElement;}else{if(M.type=="mouseover"){L=M.fromElement;}}}return this.resolveTextNode(L);},getTime:function(N){if(!N.time){var M=new Date().getTime();try{N.time=M;}catch(L){this.lastError=L;return M;}}return N.time;},stopEvent:function(L){this.stopPropagation(L);this.preventDefault(L);},stopPropagation:function(L){if(L.stopPropagation){L.stopPropagation();}else{L.cancelBubble=true;}},preventDefault:function(L){if(L.preventDefault){L.preventDefault();}else{L.returnValue=false;}},getEvent:function(Q,O){var P=Q||window.event;if(!P){var R=this.getEvent.caller;while(R){P=R.arguments[0];if(P&&Event==P.constructor){break;}R=R.caller;}}if(P&&this.isIE){try{var N=P.srcElement;if(N){var M=N.type;}}catch(L){P.target=O;}}return P;},getCharCode:function(M){var L=M.keyCode||M.charCode||0;if(YAHOO.env.ua.webkit&&(L in D)){L=D[L];}return L;},_getCacheIndex:function(P,Q,O){for(var N=0,M=I.length;N<M;++N){var L=I[N];if(L&&L[this.FN]==O&&L[this.EL]==P&&L[this.TYPE]==Q){return N;}}return -1;},generateId:function(L){var M=L.id;if(!M){M="yuievtautoid-"+A;++A;L.id=M;}return M;},_isValidCollection:function(M){try{return(typeof M!=="string"&&M.length&&!M.tagName&&!M.alert&&typeof M[0]!=="undefined");}catch(L){return false;}},elCache:{},getEl:function(L){return(typeof L==="string")?document.getElementById(L):L;},clearCache:function(){},DOMReadyEvent:new YAHOO.util.CustomEvent("DOMReady",this),_load:function(M){if(!H){H=true;var L=YAHOO.util.Event;L._ready();L._tryPreloadAttach();}},_ready:function(M){if(!J){J=true;var L=YAHOO.util.Event;L.DOMReadyEvent.fire();L._simpleRemove(document,"DOMContentLoaded",L._ready);}},_tryPreloadAttach:function(){if(this.locked){return false;}if(this.isIE){if(!J){this.startInterval();return false;}}this.locked=true;var Q=!H;if(!Q){Q=(C>0);}var P=[];var R=function(T,U){var S=T;if(U.override){if(U.override===true){S=U.obj;}else{S=U.override;}}U.fn.call(S,U.obj);};var M,L,O,N;for(M=0,L=F.length;M<L;++M){O=F[M];if(O&&!O.checkReady){N=this.getEl(O.id);if(N){R(N,O);F[M]=null;}else{P.push(O);}}}for(M=0,L=F.length;M<L;++M){O=F[M];if(O&&O.checkReady){N=this.getEl(O.id);if(N){if(H||N.nextSibling){R(N,O);F[M]=null;}}else{P.push(O);}}}C=(P.length===0)?0:C-1;if(Q){this.startInterval();}else{clearInterval(this._interval);this._interval=null;}this.locked=false;return true;},purgeElement:function(O,P,R){var Q=this.getListeners(O,R),N,L;if(Q){for(N=0,L=Q.length;N<L;++N){var M=Q[N];this.removeListener(O,M.type,M.fn,M.index);}}if(P&&O&&O.childNodes){for(N=0,L=O.childNodes.length;N<L;++N){this.purgeElement(O.childNodes[N],P,R);}}},getListeners:function(N,L){var Q=[],M;if(!L){M=[I,K];}else{if(L=="unload"){M=[K];}else{M=[I];}}for(var P=0;P<M.length;P=P+1){var T=M[P];if(T&&T.length>0){for(var R=0,S=T.length;R<S;++R){var O=T[R];if(O&&O[this.EL]===N&&(!L||L===O[this.TYPE])){Q.push({type:O[this.TYPE],fn:O[this.FN],obj:O[this.OBJ],adjust:O[this.OVERRIDE],scope:O[this.ADJ_SCOPE],index:R});}}}}return(Q.length)?Q:null;},_unload:function(S){var R=YAHOO.util.Event,P,O,M,L,N;for(P=0,L=K.length;P<L;++P){M=K[P];if(M){var Q=window;if(M[R.ADJ_SCOPE]){if(M[R.ADJ_SCOPE]===true){Q=M[R.UNLOAD_OBJ];}else{Q=M[R.ADJ_SCOPE];}}M[R.FN].call(Q,R.getEvent(S,M[R.EL]),M[R.UNLOAD_OBJ]);K[P]=null;M=null;Q=null;}}K=null;if(I&&I.length>0){O=I.length;while(O){N=O-1;M=I[N];if(M){R.removeListener(M[R.EL],M[R.TYPE],M[R.FN],N);}O=O-1;}M=null;R.clearCache();}for(P=0,L=G.length;P<L;++P){G[P][0]=null;G[P]=null;}G=null;R._simpleRemove(window,"unload",R._unload);},_getScrollLeft:function(){return this._getScroll()[1];},_getScrollTop:function(){return this._getScroll()[0];},_getScroll:function(){var L=document.documentElement,M=document.body;if(L&&(L.scrollTop||L.scrollLeft)){return[L.scrollTop,L.scrollLeft];}else{if(M){return[M.scrollTop,M.scrollLeft];}else{return[0,0];}}},regCE:function(){},_simpleAdd:function(){if(window.addEventListener){return function(N,O,M,L){N.addEventListener(O,M,(L));};}else{if(window.attachEvent){return function(N,O,M,L){N.attachEvent("on"+O,M);};}else{return function(){};}}}(),_simpleRemove:function(){if(window.removeEventListener){return function(N,O,M,L){N.removeEventListener(O,M,(L));};}else{if(window.detachEvent){return function(M,N,L){M.detachEvent("on"+N,L);};}else{return function(){};}}}()};}();(function(){var D=YAHOO.util.Event;D.on=D.addListener;if(D.isIE){YAHOO.util.Event.onDOMReady(YAHOO.util.Event._tryPreloadAttach,YAHOO.util.Event,true);var B,E=document,A=E.body;if(("undefined"!==typeof YAHOO_config)&&YAHOO_config.injecting){B=document.createElement("script");var C=E.getElementsByTagName("head")[0]||A;C.insertBefore(B,C.firstChild);}else{E.write("<script id=\"_yui_eu_dr\" defer=\"true\" src=\"//:\"></script>");B=document.getElementById("_yui_eu_dr");}if(B){B.onreadystatechange=function(){if("complete"===this.readyState){this.parentNode.removeChild(this);YAHOO.util.Event._ready();}};}else{}B=null;}else{if(D.webkit){D._drwatch=setInterval(function(){var F=document.readyState;if("loaded"==F||"complete"==F){clearInterval(D._drwatch);D._drwatch=null;D._ready();}},D.POLL_INTERVAL);}else{D._simpleAdd(document,"DOMContentLoaded",D._ready);}}D._simpleAdd(window,"load",D._load);D._simpleAdd(window,"unload",D._unload);D._tryPreloadAttach();})();}YAHOO.util.EventProvider=function(){};YAHOO.util.EventProvider.prototype={__yui_events:null,__yui_subscribers:null,subscribe:function(A,C,F,E){this.__yui_events=this.__yui_events||{};var D=this.__yui_events[A];if(D){D.subscribe(C,F,E);}else{this.__yui_subscribers=this.__yui_subscribers||{};var B=this.__yui_subscribers;if(!B[A]){B[A]=[];}B[A].push({fn:C,obj:F,override:E});}},unsubscribe:function(C,E,G){this.__yui_events=this.__yui_events||{};var A=this.__yui_events;if(C){var F=A[C];if(F){return F.unsubscribe(E,G);}}else{var B=true;for(var D in A){if(YAHOO.lang.hasOwnProperty(A,D)){B=B&&A[D].unsubscribe(E,G);}}return B;}return false;},unsubscribeAll:function(A){return this.unsubscribe(A);},createEvent:function(G,D){this.__yui_events=this.__yui_events||{};
+var A=D||{};var I=this.__yui_events;if(I[G]){}else{var H=A.scope||this;var E=(A.silent);var B=new YAHOO.util.CustomEvent(G,H,E,YAHOO.util.CustomEvent.FLAT);I[G]=B;if(A.onSubscribeCallback){B.subscribeEvent.subscribe(A.onSubscribeCallback);}this.__yui_subscribers=this.__yui_subscribers||{};var F=this.__yui_subscribers[G];if(F){for(var C=0;C<F.length;++C){B.subscribe(F[C].fn,F[C].obj,F[C].override);}}}return I[G];},fireEvent:function(E,D,A,C){this.__yui_events=this.__yui_events||{};var G=this.__yui_events[E];if(!G){return null;}var B=[];for(var F=1;F<arguments.length;++F){B.push(arguments[F]);}return G.fire.apply(G,B);},hasEvent:function(A){if(this.__yui_events){if(this.__yui_events[A]){return true;}}return false;}};YAHOO.util.KeyListener=function(A,F,B,C){if(!A){}else{if(!F){}else{if(!B){}}}if(!C){C=YAHOO.util.KeyListener.KEYDOWN;}var D=new YAHOO.util.CustomEvent("keyPressed");this.enabledEvent=new YAHOO.util.CustomEvent("enabled");this.disabledEvent=new YAHOO.util.CustomEvent("disabled");if(typeof A=="string"){A=document.getElementById(A);}if(typeof B=="function"){D.subscribe(B);}else{D.subscribe(B.fn,B.scope,B.correctScope);}function E(K,J){if(!F.shift){F.shift=false;}if(!F.alt){F.alt=false;}if(!F.ctrl){F.ctrl=false;}if(K.shiftKey==F.shift&&K.altKey==F.alt&&K.ctrlKey==F.ctrl){var H;var G;if(F.keys instanceof Array){for(var I=0;I<F.keys.length;I++){H=F.keys[I];if(H==K.charCode){D.fire(K.charCode,K);break;}else{if(H==K.keyCode){D.fire(K.keyCode,K);break;}}}}else{H=F.keys;if(H==K.charCode){D.fire(K.charCode,K);}else{if(H==K.keyCode){D.fire(K.keyCode,K);}}}}}this.enable=function(){if(!this.enabled){YAHOO.util.Event.addListener(A,C,E);this.enabledEvent.fire(F);}this.enabled=true;};this.disable=function(){if(this.enabled){YAHOO.util.Event.removeListener(A,C,E);this.disabledEvent.fire(F);}this.enabled=false;};this.toString=function(){return"KeyListener ["+F.keys+"] "+A.tagName+(A.id?"["+A.id+"]":"");};};YAHOO.util.KeyListener.KEYDOWN="keydown";YAHOO.util.KeyListener.KEYUP="keyup";YAHOO.register("event",YAHOO.util.Event,{version:"2.3.1",build:"541"});YAHOO.register("yahoo-dom-event", YAHOO, {version: "2.3.1", build: "541"});
diff --git a/lib/CVS/Entries b/lib/CVS/Entries
new file mode 100644
index 0000000000000000000000000000000000000000..577e1271343ee8aab9b7316e3f35d3799cb4c64e
--- /dev/null
+++ b/lib/CVS/Entries
@@ -0,0 +1,2 @@
+/README/1.1/Fri Oct 19 06:46:19 2007//TBUGZILLA-3_1_3
+D
diff --git a/lib/CVS/Repository b/lib/CVS/Repository
new file mode 100644
index 0000000000000000000000000000000000000000..17e12f4f8fd5cbcae44f0fb4ebe5c15c93b06770
--- /dev/null
+++ b/lib/CVS/Repository
@@ -0,0 +1 @@
+mozilla/webtools/bugzilla/lib
diff --git a/lib/CVS/Root b/lib/CVS/Root
new file mode 100644
index 0000000000000000000000000000000000000000..cdb6f4a0739a0dc53e628026726036377dec3637
--- /dev/null
+++ b/lib/CVS/Root
@@ -0,0 +1 @@
+:pserver:anonymous@cvs-mirror.mozilla.org:/cvsroot
diff --git a/lib/CVS/Tag b/lib/CVS/Tag
new file mode 100644
index 0000000000000000000000000000000000000000..31d8633e2f2aba270fc0fec77fda99283c580eea
--- /dev/null
+++ b/lib/CVS/Tag
@@ -0,0 +1 @@
+NBUGZILLA-3_1_3
diff --git a/lib/README b/lib/README
new file mode 100644
index 0000000000000000000000000000000000000000..5778a9a3f20b9628fbb62f13dc2980e6822f179f
--- /dev/null
+++ b/lib/README
@@ -0,0 +1,4 @@
+This directory contains the Perl modules that Bugzilla requires to run.
+
+If you would rather have Bugzilla use the Perl modules installed on your
+system, you can delete everything in this directory.
diff --git a/long_list.cgi b/long_list.cgi
index c02c8deda5d9952598934185165f870d6c88b2df..7e1f69534e3445e4d1baf5ef742be326513b4c58 100755
--- a/long_list.cgi
+++ b/long_list.cgi
@@ -22,7 +22,7 @@
 #                 Gervase Markham <gerv@gerv.net>
 
 use strict;
-use lib qw(.);
+use lib qw(. lib);
 use Bugzilla;
 
 my $cgi = Bugzilla->cgi;
diff --git a/mod_perl.pl b/mod_perl.pl
index f88c398e1af908624de80362939cb9a4197fea6c..fe78c4be98bb60d3a4ba5ff6ac5528e463d01a20 100644
--- a/mod_perl.pl
+++ b/mod_perl.pl
@@ -28,7 +28,6 @@ use strict;
 # startup, so we always specify () after using any module in this
 # file.
 
-use Apache::DBI ();
 use Apache2::ServerUtil;
 use Apache2::SizeLimit;
 use ModPerl::RegistryLoader ();
@@ -71,6 +70,9 @@ $server->add_config([split("\n", $conf)]);
 
 # Have ModPerl::RegistryLoader pre-compile all CGI scripts.
 my $rl = new ModPerl::RegistryLoader();
+# If we try to do this in "new" it fails because it looks for a 
+# Bugzilla/ModPerl/ResponseHandler.pm
+$rl->{package} = 'Bugzilla::ModPerl::ResponseHandler';
 # Note that $cgi_path will be wrong if somebody puts the libraries
 # in a different place than the CGIs.
 foreach my $file (glob "$cgi_path/*.cgi") {
@@ -90,6 +92,7 @@ sub handler : method {
     # $0 is broken under mod_perl before 2.0.2, so we have to set it
     # here explicitly or init_page's shutdownhtml code won't work right.
     $0 = $ENV{'SCRIPT_FILENAME'};
+
     Bugzilla::init_page();
     return $class->SUPER::handler(@_);
 }
diff --git a/page.cgi b/page.cgi
index 43a826590d474e1a5737b69417f38218a042f67a..290a4acb6bc515fb8efe0b83920e00c371eab34e 100755
--- a/page.cgi
+++ b/page.cgi
@@ -30,7 +30,7 @@
 
 use strict;
 
-use lib ".";
+use lib qw(. lib);
 
 use Bugzilla;
 use Bugzilla::Error;
diff --git a/post_bug.cgi b/post_bug.cgi
index ddc12fd6417cfc22bd047435f28977971a0347d5..0f23e7d98be2570e6f7fc702d2de9ce9cb38b82f 100755
--- a/post_bug.cgi
+++ b/post_bug.cgi
@@ -25,7 +25,7 @@
 #                 Marc Schumann <wurblzap@gmail.com>
 
 use strict;
-use lib qw(.);
+use lib qw(. lib);
 
 use Bugzilla;
 use Bugzilla::Attachment;
@@ -53,6 +53,9 @@ my $vars = {};
 # Main Script
 ######################################################################
 
+# redirect to enter_bug if no field is passed.
+print $cgi->redirect(correct_urlbase() . 'enter_bug.cgi') unless $cgi->param();
+
 # Detect if the user already used the same form to submit a bug
 my $token = trim($cgi->param('token'));
 if ($token) {
@@ -128,10 +131,6 @@ my @custom_bug_fields = grep {$_->type != FIELD_TYPE_MULTI_SELECT}
 my @bug_fields = grep { defined $cgi->param($_->name) } @custom_bug_fields;
 @bug_fields = map { $_->name } @bug_fields;
 
-# Custom tables must be locked (required when validating custom fields).
-my @custom_tables = grep { $_->type == FIELD_TYPE_SINGLE_SELECT } @custom_bug_fields;
-@custom_tables = map { $_->name . ' READ' } @custom_tables;
-
 push(@bug_fields, qw(
     product
     component
@@ -195,7 +194,7 @@ if (defined $cgi->param('version')) {
 if (defined($cgi->upload('data')) || $cgi->param('attachurl')) {
     $cgi->param('isprivate', $cgi->param('commentprivacy'));
     my $attachment = Bugzilla::Attachment->insert_attachment_for_bug(!THROW_ERROR,
-                                                  $bug, $user, $timestamp, \$vars);
+                                                  $bug, $user, $timestamp, $vars);
 
     if ($attachment) {
         # Update the comment to include the new attachment ID.
@@ -231,7 +230,7 @@ my $error_mode_cache = Bugzilla->error_mode;
 Bugzilla->error_mode(ERROR_MODE_DIE);
 eval {
     Bugzilla::Flag::validate($cgi, $id, undef, SKIP_REQUESTEE_ON_ERROR);
-    Bugzilla::Flag::process($bug, undef, $timestamp, $cgi);
+    Bugzilla::Flag::process($bug, undef, $timestamp, $cgi, $vars);
 };
 Bugzilla->error_mode($error_mode_cache);
 if ($@) {
diff --git a/process_bug.cgi b/process_bug.cgi
index 0d76a5c7010356ae164684d7e746db2580eb1760..8eb7aaf33edefa7664a2b583de5a0e00bd897856 100755
--- a/process_bug.cgi
+++ b/process_bug.cgi
@@ -43,7 +43,7 @@
 
 use strict;
 
-use lib qw(.);
+use lib qw(. lib);
 
 use Bugzilla;
 use Bugzilla::Constants;
@@ -58,25 +58,19 @@ use Bugzilla::Product;
 use Bugzilla::Component;
 use Bugzilla::Keyword;
 use Bugzilla::Flag;
+use Bugzilla::Status;
 
 use Storable qw(dclone);
 
 my $user = Bugzilla->login(LOGIN_REQUIRED);
-local our $whoid = $user->id;
-my $grouplist = $user->groups_as_string;
 
 my $cgi = Bugzilla->cgi;
 my $dbh = Bugzilla->dbh;
 my $template = Bugzilla->template;
-local our $vars = {};
+my $vars = {};
 $vars->{'valid_keywords'} = [map($_->name, Bugzilla::Keyword->get_all)];
 $vars->{'use_keywords'} = 1 if Bugzilla::Keyword::keyword_count();
 
-my @editable_bug_fields = editable_bug_fields();
-
-my $requiremilestone = 0;
-local our $PrivilegesRequired = 0;
-
 ######################################################################
 # Subroutines
 ######################################################################
@@ -98,38 +92,26 @@ sub send_results {
 # Tells us whether or not a field should be changed by process_bug, by
 # checking that it's defined and not set to dontchange.
 sub should_set {
-    # check_defined is used for custom fields, where there's another field
+    # check_defined is used for fields where there's another field
     # whose name starts with "defined_" and then the field name--it's used
     # to know when we did things like empty a multi-select or deselect
     # a checkbox.
     my ($field, $check_defined) = @_;
     my $cgi = Bugzilla->cgi;
-    if (( defined $cgi->param($field) 
-          || ($check_defined && defined $cgi->param("defined_$field")) )
-        && ( !$cgi->param('dontchange') 
-             || $cgi->param($field) ne $cgi->param('dontchange')) )
+    if ( defined $cgi->param($field) 
+         || ($check_defined && defined $cgi->param("defined_$field")) )
     {
         return 1;
     }
     return 0;
 }
 
-sub comment_exists {
-    my $cgi = Bugzilla->cgi;
-    return ($cgi->param('comment') && $cgi->param('comment') =~ /\S+/) ? 1 : 0;
-}
-
 ######################################################################
 # Begin Data/Security Validation
 ######################################################################
 
-# Create a list of IDs of all bugs being modified in this request.
-# This list will either consist of a single bug number from the "id"
-# form/URL field or a series of numbers from multiple form/URL fields
-# named "id_x" where "x" is the bug number.
-# For each bug being modified, make sure its ID is a valid bug number 
-# representing an existing bug that the user is authorized to access.
-my (@idlist, @bug_objects);
+# Create a list of objects for all bugs being modified in this request.
+my @bug_objects;
 if (defined $cgi->param('id')) {
   my $id = $cgi->param('id');
   ValidateBugID($id);
@@ -137,67 +119,34 @@ if (defined $cgi->param('id')) {
   # Store the validated, and detainted id back in the cgi data, as
   # lots of later code will need it, and will obtain it from there
   $cgi->param('id', $id);
-  push @idlist, $id;
   push(@bug_objects, new Bugzilla::Bug($id));
 } else {
+    my @ids;
     foreach my $i ($cgi->param()) {
         if ($i =~ /^id_([1-9][0-9]*)/) {
             my $id = $1;
             ValidateBugID($id);
-            push @idlist, $id;
-            # We do this until we have Bugzilla::Bug->new_from_list.
-            push(@bug_objects, new Bugzilla::Bug($id));
+            push(@ids, $id);
         }
     }
+    @bug_objects = @{Bugzilla::Bug->new_from_list(\@ids)};
 }
 
 # Make sure there are bugs to process.
-scalar(@idlist) || ThrowUserError("no_bugs_chosen", {action => 'modify'});
-
-# Build a bug object using the first bug id, for validations.
-my $bug = $bug_objects[0];
+scalar(@bug_objects) || ThrowUserError("no_bugs_chosen", {action => 'modify'});
 
-# Make sure form param 'dontchange' is defined so it can be compared to easily.
-$cgi->param('dontchange','') unless defined $cgi->param('dontchange');
+my $first_bug = $bug_objects[0]; # Used when we're only updating a single bug.
 
-# Make sure the 'knob' param is defined; else set it to 'none'.
-$cgi->param('knob', 'none') unless defined $cgi->param('knob');
-
-# Validate work_time
-if (defined $cgi->param('work_time') 
-    && $cgi->param('work_time') ne $cgi->param('dontchange')) 
-{
-    $cgi->param('work_time', $bug->_check_time($cgi->param('work_time'),
-                                               'work_time'));
-}
-
-if (Bugzilla->user->in_group(Bugzilla->params->{'timetrackinggroup'})) {
-    my $wk_time = $cgi->param('work_time');
-    if (!comment_exists() && $wk_time && $wk_time != 0) {
-        ThrowUserError('comment_required');
+# Delete any parameter set to 'dontchange'.
+if (defined $cgi->param('dontchange')) {
+    foreach my $name ($cgi->param) {
+        next if $name eq 'dontchange'; # But don't delete dontchange itself!
+        if ($cgi->param($name) eq $cgi->param('dontchange')) {
+            $cgi->delete($name);
+        }
     }
 }
 
-$cgi->param('comment', $bug->_check_comment($cgi->param('comment')));
-
-# If the bug(s) being modified have dependencies, validate them
-# and rebuild the list with the validated values.  This is important
-# because there are situations where validation changes the value
-# instead of throwing an error, f.e. when one or more of the values
-# is a bug alias that gets converted to its corresponding bug ID
-# during validation.
-if ($cgi->param('id') && (defined $cgi->param('dependson')
-                          || defined $cgi->param('blocked')) )
-{
-    $bug->set_dependencies(scalar $cgi->param('dependson'),
-                           scalar $cgi->param('blocked'));
-}
-# Right now, you can't modify dependencies on a mass change.
-else {
-    $cgi->delete('dependson');
-    $cgi->delete('blocked');
-}
-
 # do a match on the fields if applicable
 
 # The order of these function calls is important, as Flag::validate
@@ -220,21 +169,36 @@ Bugzilla::Flag::validate($cgi, $cgi->param('id'));
 ######################################################################
 
 print $cgi->header() unless Bugzilla->usage_mode == USAGE_MODE_EMAIL;
-$vars->{'title_tag'} = "bug_processed";
 
-# Set the title if we can see a mid-air coming. This test may have false
-# negatives, but never false positives, and should catch the majority of cases.
-# It only works at all in the single bug case.
-if (defined $cgi->param('id')) {
-    if (defined $cgi->param('delta_ts')
-        && $cgi->param('delta_ts') ne $bug->delta_ts)
-    {
-        $vars->{'title_tag'} = "mid_air";
-        ThrowCodeError('undefined_field', {field => 'longdesclength'})
-          if !defined $cgi->param('longdesclength');
-    }
+# Check for a mid-air collision. Currently this only works when updating
+# an individual bug.
+if (defined $cgi->param('delta_ts')
+    && $cgi->param('delta_ts') ne $first_bug->delta_ts)
+{
+    ($vars->{'operations'}) =
+        Bugzilla::Bug::GetBugActivity($first_bug->id, undef,
+                                      scalar $cgi->param('delta_ts'));
+
+    $vars->{'title_tag'} = "mid_air";
+    
+    ThrowCodeError('undefined_field', { field => 'longdesclength' })
+        if !defined $cgi->param('longdesclength');
+
+    $vars->{'start_at'} = $cgi->param('longdesclength');
+    # Always sort midair collision comments oldest to newest,
+    # regardless of the user's personal preference.
+    $vars->{'comments'} = Bugzilla::Bug::GetComments($first_bug->id,
+                                                     "oldest_to_newest");
+    $vars->{'bug'} = $first_bug;
+    
+    # Warn the user about the mid-air collision and ask them what to do.
+    $template->process("bug/process/midair.html.tmpl", $vars)
+      || ThrowTemplateError($template->error());
+    exit;
 }
 
+$vars->{'title_tag'} = "bug_processed";
+
 # Set up the vars for navigational <link> elements
 my @bug_list;
 if ($cgi->cookie("BUGLIST") && defined $cgi->param('id')) {
@@ -242,71 +206,83 @@ if ($cgi->cookie("BUGLIST") && defined $cgi->param('id')) {
     $vars->{'bug_list'} = \@bug_list;
 }
 
-my $product_change; # XXX Temporary until all of process_bug uses update()
-if (should_set('product')) {
-    # We only pass the fields if they're defined and not set to dontchange.
-    # This is because when you haven't changed the product, --do-not-change--
-    # isn't a valid component, version, or target_milestone. (When you're
-    # doing a mass-change, some bugs might already be in the new product.)
-    my %product_fields;
-    foreach my $field (qw(component version target_milestone)) {
-        if (should_set($field)) {
-            $product_fields{$field} = $cgi->param($field);
-        }
+# For each bug, we have to check if the user can edit the bug the product
+# is currently in, before we allow them to change anything.
+foreach my $bug (@bug_objects) {
+    if (!Bugzilla->user->can_edit_product($bug->product_obj->id) ) {
+        ThrowUserError("product_edit_denied",
+                      { product => $bug->product });
     }
+}
 
+# For security purposes, and because lots of other checks depend on it,
+# we set the product first before anything else.
+my $product_change; # Used only for strict_isolation checks, right now.
+if (should_set('product')) {
     foreach my $b (@bug_objects) {
         my $changed = $b->set_product(scalar $cgi->param('product'),
-            { %product_fields,
+            { component        => scalar $cgi->param('component'),
+              version          => scalar $cgi->param('version'),
+              target_milestone => scalar $cgi->param('target_milestone'),
               change_confirmed => scalar $cgi->param('confirm_product_change'),
               other_bugs => \@bug_objects,
             });
         $product_change ||= $changed;
     }
 }
-
-# Confirm that the reporter of the current bug can access the bug we are duping to.
-sub DuplicateUserConfirm {
-    my ($dupe, $original) = @_;
-    my $cgi = Bugzilla->cgi;
-    my $dbh = Bugzilla->dbh;
-    my $template = Bugzilla->template;
-
-    # if we've already been through here, then exit
-    if (defined $cgi->param('confirm_add_duplicate')) {
-        return;
+        
+# strict_isolation checks mean that we should set the groups
+# immediately after changing the product.
+foreach my $b (@bug_objects) {
+    foreach my $group (@{$b->product_obj->groups_valid}) {
+        my $gid = $group->id;
+        if (should_set("bit-$gid", 1)) {
+            # Check ! first to avoid having to check defined below.
+            if (!$cgi->param("bit-$gid")) {
+                $b->remove_group($gid);
+            }
+            # "== 1" is important because mass-change uses -1 to mean
+            # "don't change this restriction"
+            elsif ($cgi->param("bit-$gid") == 1) {
+                $b->add_group($gid);
+            }
+        }
     }
+}
 
-    if ($dupe->reporter->can_see_bug($original)) {
-        $cgi->param('confirm_add_duplicate', '1');
-        return;
-    }
-    elsif (Bugzilla->usage_mode == USAGE_MODE_EMAIL) {
-        # The email interface defaults to the safe alternative, which is
-        # not CC'ing the user.
-        $cgi->param('confirm_add_duplicate', 0);
-        return;
-    }
+if ($cgi->param('id') && (defined $cgi->param('dependson')
+                          || defined $cgi->param('blocked')) )
+{
+    $first_bug->set_dependencies(scalar $cgi->param('dependson'),
+                                 scalar $cgi->param('blocked'));
+}
+# Right now, you can't modify dependencies on a mass change.
+else {
+    $cgi->delete('dependson');
+    $cgi->delete('blocked');
+}
 
-    $vars->{'cclist_accessible'} = $dbh->selectrow_array(
-        q{SELECT cclist_accessible FROM bugs WHERE bug_id = ?},
-        undef, $original);
-    
-    # Once in this part of the subroutine, the user has not been auto-validated
-    # and the duper has not chosen whether or not to add to CC list, so let's
-    # ask the duper what he/she wants to do.
-    
-    $vars->{'original_bug_id'} = $original;
-    $vars->{'duplicate_bug_id'} = $dupe->bug_id;
-    
-    # Confirm whether or not to add the reporter to the cc: list
-    # of the original bug (the one this bug is being duped against).
-    print Bugzilla->cgi->header();
-    $template->process("bug/process/confirm-duplicate.html.tmpl", $vars)
-      || ThrowTemplateError($template->error());
-    exit;
+my $any_keyword_changes;
+if (defined $cgi->param('keywords')) {
+    foreach my $b (@bug_objects) {
+        my $return =
+            $b->modify_keywords(scalar $cgi->param('keywords'),
+                                scalar $cgi->param('keywordaction'));
+        $any_keyword_changes ||= $return;
+    }
 }
 
+# Component, target_milestone, and version are in here just in case
+# the 'product' field wasn't defined in the CGI. It doesn't hurt to set
+# them twice.
+my @set_fields = qw(op_sys rep_platform priority bug_severity
+                    component target_milestone version
+                    bug_file_loc status_whiteboard short_desc
+                    deadline remaining_time estimated_time);
+push(@set_fields, 'assigned_to') if !$cgi->param('set_default_assignee');
+push(@set_fields, 'qa_contact')  if !$cgi->param('set_default_qa_contact');
+my @custom_fields = Bugzilla->get_fields({custom => 1, obsolete => 0});
+
 my %methods = (
     bug_severity => 'set_severity',
     rep_platform => 'set_platform',
@@ -314,179 +290,56 @@ my %methods = (
     bug_file_loc => 'set_url',
 );
 foreach my $b (@bug_objects) {
-    # Component, target_milestone, and version are in here just in case
-    # the 'product' field wasn't defined in the CGI. It doesn't hurt to set
-    # them twice.
-    foreach my $field_name (qw(op_sys rep_platform priority bug_severity
-                               component target_milestone version
-                               bug_file_loc status_whiteboard short_desc
-                               deadline remaining_time estimated_time))
-    {
+    if (should_set('comment') || $cgi->param('work_time')) {
+        # Add a comment as needed to each bug. This is done early because
+        # there are lots of things that want to check if we added a comment.
+        $b->add_comment(scalar($cgi->param('comment')),
+            { isprivate => scalar $cgi->param('commentprivacy'),
+              work_time => scalar $cgi->param('work_time') });
+    }
+    foreach my $field_name (@set_fields) {
         if (should_set($field_name)) {
             my $method = $methods{$field_name};
             $method ||= "set_" . $field_name;
             $b->$method($cgi->param($field_name));
         }
     }
-}
-
-my $action = trim($cgi->param('action') || '');
+    $b->reset_assigned_to if $cgi->param('set_default_assignee');
+    $b->reset_qa_contact  if $cgi->param('set_default_qa_contact');
 
-if ($action eq Bugzilla->params->{'move-button-text'}) {
-    Bugzilla->params->{'move-enabled'} || ThrowUserError("move_bugs_disabled");
-
-    $user->is_mover || ThrowUserError("auth_failure", {action => 'move',
-                                                       object => 'bugs'});
-
-    my @multi_select_locks  = map {'bug_' . $_->name . " WRITE"}
-        Bugzilla->get_fields({ custom => 1, type => FIELD_TYPE_MULTI_SELECT,
-                               obsolete => 0 });
-
-    $dbh->bz_lock_tables('bugs WRITE', 'bugs_activity WRITE', 'duplicates WRITE',
-                         'longdescs WRITE', 'profiles READ', 'groups READ',
-                         'bug_group_map READ', 'group_group_map READ',
-                         'user_group_map READ', 'classifications READ',
-                         'products READ', 'components READ', 'votes READ',
-                         'cc READ', 'fielddefs READ', 'bug_status READ',
-                         'status_workflow READ', 'resolution READ', @multi_select_locks);
-
-    # First update all moved bugs.
-    foreach my $bug (@bug_objects) {
-        $bug->add_comment(scalar $cgi->param('comment'),
-                          { type => CMT_MOVED_TO, extra_data => $user->login });
-    }
-    # Don't export the new status and resolution. We want the current ones.
-    local $Storable::forgive_me = 1;
-    my $bugs = dclone(\@bug_objects);
-    foreach my $bug (@bug_objects) {
-        my ($status, $resolution) = $bug->get_new_status_and_resolution('move');
-        $bug->set_status($status);
-        $bug->set_resolution($resolution);
-    }
-    $_->update() foreach @bug_objects;
-    $dbh->bz_unlock_tables();
-
-    # Now send emails.
-    foreach my $id (@idlist) {
-        $vars->{'mailrecipients'} = { 'changer' => $user->login };
-        $vars->{'id'} = $id;
-        $vars->{'type'} = "move";
-        send_results($id, $vars);
-    }
-    # Prepare and send all data about these bugs to the new database
-    my $to = Bugzilla->params->{'move-to-address'};
-    $to =~ s/@/\@/;
-    my $from = Bugzilla->params->{'moved-from-address'};
-    $from =~ s/@/\@/;
-    my $msg = "To: $to\n";
-    $msg .= "From: Bugzilla <" . $from . ">\n";
-    $msg .= "Subject: Moving bug(s) " . join(', ', @idlist) . "\n\n";
-
-    my @fieldlist = (Bugzilla::Bug->fields, 'group', 'long_desc',
-                     'attachment', 'attachmentdata');
-    my %displayfields;
-    foreach (@fieldlist) {
-        $displayfields{$_} = 1;
-    }
-
-    $template->process("bug/show.xml.tmpl", { bugs => $bugs,
-                                              displayfields => \%displayfields,
-                                            }, \$msg)
-      || ThrowTemplateError($template->error());
-
-    $msg .= "\n";
-    MessageToMTA($msg);
-
-    # End the response page.
-    unless (Bugzilla->usage_mode == USAGE_MODE_EMAIL) {
-        $template->process("bug/navigate.html.tmpl", $vars)
-            || ThrowTemplateError($template->error());
-        $template->process("global/footer.html.tmpl", $vars)
-            || ThrowTemplateError($template->error());
-    }
-    exit;
-}
-
-
-$::query = "UPDATE bugs SET";
-$::comma = "";
-local our @values;
-umask(0);
-
-sub DoComma {
-    $::query .= "$::comma\n    ";
-    $::comma = ",";
-}
-
-# Add custom fields data to the query that will update the database.
-foreach my $field (Bugzilla->get_fields({custom => 1, obsolete => 0})) {
-    my $fname = $field->name;
-    if (should_set($fname, 1)) {
-        $_->set_custom_field($field, [$cgi->param($fname)]) foreach @bug_objects;
-    }
-}
-
-my ($product, @newprod_ids);
-if ($cgi->param('product') ne $cgi->param('dontchange')) {
-    $product = Bugzilla::Product::check_product(scalar $cgi->param('product'));
-    @newprod_ids = ($product->id);
-} else {
-    @newprod_ids = @{$dbh->selectcol_arrayref("SELECT DISTINCT product_id
-                                               FROM bugs 
-                                               WHERE bug_id IN (" .
-                                                   join(',', @idlist) . 
-                                               ")")};
-    if (scalar(@newprod_ids) == 1) {
-        $product = new Bugzilla::Product($newprod_ids[0]);
+    # And set custom fields.
+    foreach my $field (@custom_fields) {
+        my $fname = $field->name;
+        if (should_set($fname, 1)) {
+            $b->set_custom_field($field, [$cgi->param($fname)]);
+        }
     }
 }
 
-my (@cc_add, @cc_remove);
-
 # Certain changes can only happen on individual bugs, never on mass-changes.
 if (defined $cgi->param('id')) {
-    my $bug = $bug_objects[0];
-    
     # Since aliases are unique (like bug numbers), they can only be changed
     # for one bug at a time.
     if (Bugzilla->params->{"usebugaliases"} && defined $cgi->param('alias')) {
-        $bug->set_alias($cgi->param('alias'));
+        $first_bug->set_alias($cgi->param('alias'));
     }
 
     # reporter_accessible and cclist_accessible--these are only set if
-    # the user can change them and there are groups on the bug.
-    # (If the user can't change the field, the checkboxes don't appear
-    #  on show_bug, thus it would look like the user was trying to
-    #  uncheck them, which would then be denied by the set_ functions,
-    #  throwing a confusing error.)
-    if (scalar @{$bug->groups_in}) {
-        $bug->set_cclist_accessible($cgi->param('cclist_accessible'))
-            if $bug->check_can_change_field('cclist_accessible', 0, 1);
-        $bug->set_reporter_accessible($cgi->param('reporter_accessible'))
-            if $bug->check_can_change_field('reporter_accessible', 0, 1);
+    # the user can change them and they appear on the page.
+    if (should_set('cclist_accessible', 1)) {
+        $first_bug->set_cclist_accessible($cgi->param('cclist_accessible'))
     }
-}
-
-if ( defined $cgi->param('id') &&
-     (Bugzilla->params->{"insidergroup"} 
-      && Bugzilla->user->in_group(Bugzilla->params->{"insidergroup"})) ) 
-{
-
-    my $sth = $dbh->prepare('UPDATE longdescs SET isprivate = ?
-                             WHERE bug_id = ? AND bug_when = ?');
-
-    foreach my $field ($cgi->param()) {
-        if ($field =~ /when-([0-9]+)/) {
-            my $sequence = $1;
-            my $private = $cgi->param("isprivate-$sequence") ? 1 : 0 ;
-            if ($private != $cgi->param("oisprivate-$sequence")) {
-                my $field_data = $cgi->param("$field");
-                # Make sure a valid date is given.
-                $field_data = format_time($field_data, '%Y-%m-%d %T');
-                $sth->execute($private, $cgi->param('id'), $field_data);
-            }
-        }
-
+    if (should_set('reporter_accessible', 1)) {
+        $first_bug->set_reporter_accessible($cgi->param('reporter_accessible'))
+    }
+    
+    # You can only mark/unmark comments as private on single bugs. If
+    # you're not in the insider group, this code won't do anything.
+    foreach my $field (grep(/^defined_isprivate/, $cgi->param())) {
+        $field =~ /(\d+)$/;
+        my $comment_id = $1;
+        $first_bug->set_comment_is_private($comment_id,
+                                           $cgi->param("isprivate_$comment_id"));
     }
 }
 
@@ -494,6 +347,7 @@ if ( defined $cgi->param('id') &&
 # any bugs. What we'll do here is formulate the CC data into two arrays of
 # users involved in this CC change.  Then those arrays can be used later 
 # on for the actual change.
+my (@cc_add, @cc_remove);
 if (defined $cgi->param('newcc')
     || defined $cgi->param('addselfcc')
     || defined $cgi->param('removecc')
@@ -526,526 +380,155 @@ if (defined $cgi->param('newcc')
 foreach my $b (@bug_objects) {
     $b->remove_cc($_) foreach @cc_remove;
     $b->add_cc($_) foreach @cc_add;
+    # Theoretically you could move a product without ever specifying
+    # a new assignee or qa_contact, or adding/removing any CCs. So,
+    # we have to check that the current assignee, qa, and CCs are still
+    # valid if we've switched products, under strict_isolation. We can only
+    # do that here. There ought to be some better way to do this,
+    # architecturally, but I haven't come up with it.
+    if ($product_change) {
+        $b->_check_strict_isolation();
+    }
 }
 
-# Store the new assignee and QA contact IDs (if any). This is the
-# only way to keep these informations when bugs are reassigned by
-# component as $cgi->param('assigned_to') and $cgi->param('qa_contact')
-# are not the right fields to look at.
-# If the assignee or qacontact is changed, the new one is checked when
-# changed information is validated.  If not, then the unchanged assignee
-# or qacontact may have to be validated later.
-
-my $assignee;
-my $qacontact;
-my $qacontact_checked = 0;
-my $assignee_checked = 0;
-
-my %usercache = ();
-
-if (should_set('assigned_to') && !$cgi->param('set_default_assignee')) {
-    my $name = trim($cgi->param('assigned_to'));
-    if ($name ne "") {
-        $assignee = login_to_id($name, THROW_ERROR);
-        if (Bugzilla->params->{"strict_isolation"}) {
-            $usercache{$assignee} ||= Bugzilla::User->new($assignee);
-            my $assign_user = $usercache{$assignee};
-            foreach my $product_id (@newprod_ids) {
-                if (!$assign_user->can_edit_product($product_id)) {
-                    my $product_name = Bugzilla::Product->new($product_id)->name;
-                    ThrowUserError('invalid_user_group',
-                                      {'users'   => $assign_user->login,
-                                       'product' => $product_name,
-                                       'bug_id' => (scalar(@idlist) > 1)
-                                                     ? undef : $idlist[0]
-                                      });
-                }
-            }
-        }
-    } else {
-        ThrowUserError("reassign_to_empty");
-    }
-    DoComma();
-    $::query .= "assigned_to = ?";
-    push(@values, $assignee);
-    $assignee_checked = 1;
-};
+my $move_action = $cgi->param('action') || '';
+if ($move_action eq Bugzilla->params->{'move-button-text'}) {
+    Bugzilla->params->{'move-enabled'} || ThrowUserError("move_bugs_disabled");
 
-if (should_set('qa_contact') && !$cgi->param('set_default_qa_contact')) {
-    my $name = trim($cgi->param('qa_contact'));
-    $qacontact = login_to_id($name, THROW_ERROR) if ($name ne "");
-    if ($qacontact && Bugzilla->params->{"strict_isolation"}
-        && !(defined $cgi->param('id') && $bug->qa_contact
-             && $qacontact == $bug->qa_contact->id))
-    {
-            $usercache{$qacontact} ||= Bugzilla::User->new($qacontact);
-            my $qa_user = $usercache{$qacontact};
-            foreach my $product_id (@newprod_ids) {
-                if (!$qa_user->can_edit_product($product_id)) {
-                    my $product_name = Bugzilla::Product->new($product_id)->name;
-                    ThrowUserError('invalid_user_group',
-                                      {'users'   => $qa_user->login,
-                                       'product' => $product_name,
-                                       'bug_id' => (scalar(@idlist) > 1)
-                                                     ? undef : $idlist[0]
-                                      });
-                }
-            }
-    }
-    $qacontact_checked = 1;
-    DoComma();
-    if($qacontact) {
-        $::query .= "qa_contact = ?";
-        push(@values, $qacontact);
-    }
-    else {
-        $::query .= "qa_contact = NULL";
-    }
-}
+    $user->is_mover || ThrowUserError("auth_failure", {action => 'move',
+                                                       object => 'bugs'});
 
-if (($cgi->param('set_default_assignee') || $cgi->param('set_default_qa_contact'))
-    && Bugzilla->params->{'commentonreassignbycomponent'} && !comment_exists())
-{
-        ThrowUserError('comment_required');
-}
+    $dbh->bz_start_transaction();
 
-my $duplicate; # It will store the ID of the bug we are pointing to, if any.
-
-# Make sure the bug status transition is legal for all bugs.
-my $knob = scalar $cgi->param('knob');
-# Special actions (duplicate, change_resolution and clearresolution) are outside
-# the workflow.
-if (!grep { $knob eq $_ } SPECIAL_STATUS_WORKFLOW_ACTIONS) {
-    # Make sure the bug status exists and is active.
-    check_field('bug_status', $knob);
-    my $bug_status = new Bugzilla::Status({name => $knob});
-    $_->check_status_transition($bug_status) foreach @bug_objects;
-
-    # Fill the resolution field with the correct value (e.g. in case the
-    # workflow allows several open -> closed transitions).
-    if ($bug_status->is_open) {
-        $cgi->delete('resolution');
+    # First update all moved bugs.
+    foreach my $bug (@bug_objects) {
+        $bug->add_comment(scalar $cgi->param('comment'),
+                          { type => CMT_MOVED_TO, extra_data => $user->login });
     }
-    else {
-        $cgi->param('resolution', $cgi->param('resolution_knob_' . $bug_status->id));
+    # Don't export the new status and resolution. We want the current ones.
+    local $Storable::forgive_me = 1;
+    my $bugs = dclone(\@bug_objects);
+    foreach my $bug (@bug_objects) {
+        my ($status, $resolution) = $bug->get_new_status_and_resolution('move');
+        $bug->set_status($status);
+        # We don't use set_resolution here because the MOVED resolution is
+        # special and is normally rejected by set_resolution.
+        $bug->{resolution} = $resolution;
+        # That means that we need to clear dups manually. Eventually this
+        # bug-moving code will all be inside Bugzilla::Bug, so it's OK
+        # to call an internal function here.
+        $bug->_clear_dup_id;
     }
-}
-elsif ($knob eq 'change_resolution') {
-    # Fill the resolution field with the correct value.
-    $cgi->param('resolution', $cgi->param('resolution_knob_change_resolution'));
-}
-else {
-    # The resolution field is not in use.
-    $cgi->delete('resolution');
-}
-
-# The action is a valid one.
-trick_taint($knob);
-# Some information is required for checks.
-$vars->{comment_exists} = comment_exists();
-$vars->{bug_id} = $cgi->param('id');
-$vars->{dup_id} = $cgi->param('dup_id');
-$vars->{resolution} = $cgi->param('resolution') || '';
-Bugzilla::Bug->check_status_change_triggers($knob, \@bug_objects, $vars);
-
-# Some triggers require extra actions.
-$duplicate = $vars->{dup_id} if ($knob eq 'duplicate');
-$requiremilestone = $vars->{requiremilestone};
-# $vars->{DuplicateUserConfirm} is true only if a single bug is being edited.
-DuplicateUserConfirm($bug, $duplicate) if $vars->{DuplicateUserConfirm};
+    $_->update() foreach @bug_objects;
+    $dbh->bz_commit_transaction();
 
-my $any_keyword_changes;
-if (defined $cgi->param('keywords')) {
-    foreach my $b (@bug_objects) {
-        my $return =
-            $b->modify_keywords(scalar $cgi->param('keywords'),
-                                scalar $cgi->param('keywordaction'));
-        $any_keyword_changes ||= $return;
+    # Now send emails.
+    foreach my $bug (@bug_objects) {
+        $vars->{'mailrecipients'} = { 'changer' => $user->login };
+        $vars->{'id'} = $bug->id;
+        $vars->{'type'} = "move";
+        send_results($bug->id, $vars);
     }
-}
+    # Prepare and send all data about these bugs to the new database
+    my $to = Bugzilla->params->{'move-to-address'};
+    $to =~ s/@/\@/;
+    my $from = Bugzilla->params->{'moved-from-address'};
+    $from =~ s/@/\@/;
+    my $msg = "To: $to\n";
+    $msg .= "From: Bugzilla <" . $from . ">\n";
+    $msg .= "Subject: Moving bug(s) " . join(', ', map($_->id, @bug_objects))
+            . "\n\n";
 
-if ($::comma eq ""
-    && !$any_keyword_changes
-    && defined $cgi->param('masscc') && ! $cgi->param('masscc')
-    ) {
-    if (!defined $cgi->param('comment') || $cgi->param('comment') =~ /^\s*$/) {
-        ThrowUserError("bugs_not_changed");
+    my @fieldlist = (Bugzilla::Bug->fields, 'group', 'long_desc',
+                     'attachment', 'attachmentdata');
+    my %displayfields;
+    foreach (@fieldlist) {
+        $displayfields{$_} = 1;
     }
-}
-
-my $basequery = $::query;
 
-local our $delta_ts;
-sub SnapShotBug {
-    my ($id) = (@_);
-    my $dbh = Bugzilla->dbh;
-    my @row = $dbh->selectrow_array(q{SELECT delta_ts, } .
-                join(',', editable_bug_fields()).q{ FROM bugs WHERE bug_id = ?},
-                undef, $id);
-    $delta_ts = shift @row;
+    $template->process("bug/show.xml.tmpl", { bugs => $bugs,
+                                              displayfields => \%displayfields,
+                                            }, \$msg)
+      || ThrowTemplateError($template->error());
 
-    return @row;
-}
+    $msg .= "\n";
+    MessageToMTA($msg);
 
-my $timestamp;
-
-if ($product_change && Bugzilla->params->{"strict_isolation"}) {
-    my $sth_cc = $dbh->prepare("SELECT who
-                                FROM cc
-                                WHERE bug_id = ?");
-    my $sth_bug = $dbh->prepare("SELECT assigned_to, qa_contact
-                                 FROM bugs
-                                 WHERE bug_id = ?");
-
-    foreach my $id (@idlist) {
-        $sth_cc->execute($id);
-        my @blocked_cc = ();
-        while (my ($pid) = $sth_cc->fetchrow_array) {
-            # Ignore deleted accounts. They will never get notification.
-            $usercache{$pid} ||= Bugzilla::User->new($pid) || next;
-            my $cc_user = $usercache{$pid};
-            if (!$cc_user->can_edit_product($product->id)) {
-                push (@blocked_cc, $cc_user->login);
-            }
-        }
-        if (scalar(@blocked_cc)) {
-            ThrowUserError('invalid_user_group',
-                              {'users'   => \@blocked_cc,
-                               'bug_id' => $id,
-                               'product' => $product->name});
-        }
-        $sth_bug->execute($id);
-        my ($assignee, $qacontact) = $sth_bug->fetchrow_array;
-        if (!$assignee_checked) {
-            $usercache{$assignee} ||= Bugzilla::User->new($assignee) || next;
-            my $assign_user = $usercache{$assignee};
-            if (!$assign_user->can_edit_product($product->id)) {
-                    ThrowUserError('invalid_user_group',
-                                      {'users'   => $assign_user->login,
-                                       'bug_id' => $id,
-                                       'product' => $product->name});
-            }
-        }
-        if (!$qacontact_checked && $qacontact) {
-            $usercache{$qacontact} ||= Bugzilla::User->new($qacontact) || next;
-            my $qa_user = $usercache{$qacontact};
-            if (!$qa_user->can_edit_product($product->id)) {
-                    ThrowUserError('invalid_user_group',
-                                      {'users'   => $qa_user->login,
-                                       'bug_id' => $id,
-                                       'product' => $product->name});
-            }
-        }
+    # End the response page.
+    unless (Bugzilla->usage_mode == USAGE_MODE_EMAIL) {
+        $template->process("bug/navigate.html.tmpl", $vars)
+            || ThrowTemplateError($template->error());
+        $template->process("global/footer.html.tmpl", $vars)
+            || ThrowTemplateError($template->error());
     }
+    exit;
 }
 
-my %bug_objects = map {$_->id => $_} @bug_objects;
-
-# This loop iterates once for each bug to be processed (i.e. all the
-# bugs selected when this script is called with multiple bugs selected
-# from buglist.cgi, or just the one bug when called from
-# show_bug.cgi).
-#
-foreach my $id (@idlist) {
-    my $query = $basequery;
-    my @bug_values = @values;
-    # XXX We really have to get rid of $::comma.
-    my $comma = $::comma;
-    my $old_bug_obj = new Bugzilla::Bug($id);
-
-    my ($status, $everconfirmed);
-    my $resolution = $old_bug_obj->resolution;
-    # We only care about the resolution field if the user explicitly edits it
-    # or if he closes the bug.
-    if ($knob eq 'change_resolution' || $cgi->param('resolution')) {
-        $resolution = $cgi->param('resolution');
-    }
-    ($status, $resolution, $everconfirmed) =
-      $old_bug_obj->get_new_status_and_resolution($knob, $resolution);
-
-    if ($status ne $old_bug_obj->bug_status) {
-        $query .= "$comma bug_status = ?";
-        push(@bug_values, $status);
-        $comma = ',';
-    }
-    if ($resolution ne $old_bug_obj->resolution) {
-        $query .= "$comma resolution = ?";
-        push(@bug_values, $resolution);
-        $comma = ',';
-    }
-    if ($everconfirmed ne $old_bug_obj->everconfirmed) {
-        $query .= "$comma everconfirmed = ?";
-        push(@bug_values, $everconfirmed);
-        $comma = ',';
-    }
 
-    # We have to check whether the bug is moved to another product
-    # and/or component before reassigning.
-    if ($cgi->param('set_default_assignee')) {
-        my $new_comp_id = $bug_objects{$id}->component_id;
-        $assignee = $dbh->selectrow_array('SELECT initialowner
-                                           FROM components
-                                           WHERE components.id = ?',
-                                           undef, $new_comp_id);
-        $query .= "$comma assigned_to = ?";
-        push(@bug_values, $assignee);
-        $comma = ',';
-    }
+# You cannot mark bugs as duplicates when changing several bugs at once
+# (because currently there is no way to check for duplicate loops in that
+# situation).
+if (!$cgi->param('id') && $cgi->param('dup_id')) {
+    ThrowUserError('dupe_not_allowed');
+}
 
-    if (Bugzilla->params->{'useqacontact'} && $cgi->param('set_default_qa_contact')) {
-        my $new_comp_id = $bug_objects{$id}->component_id;
-        $qacontact = $dbh->selectrow_array('SELECT initialqacontact
-                                            FROM components
-                                            WHERE components.id = ?',
-                                            undef, $new_comp_id);
-        if ($qacontact) {
-            $query .= "$comma qa_contact = ?";
-            push(@bug_values, $qacontact);
+# Set the status, resolution, and dupe_of (if needed). This has to be done
+# down here, because the validity of status changes depends on other fields,
+# such as Target Milestone.
+foreach my $b (@bug_objects) {
+    if (should_set('knob')) {
+        # First, get the correct resolution <select>, in case there is more
+        # than one open -> closed transition allowed. Allow to fallback to
+        # 'resolution' (useful when called from email_in.pl).
+        my $knob = $cgi->param('knob');
+        my $status = new Bugzilla::Status({name => $knob});
+        my $resolution;
+        if ($status) {
+            $resolution = $cgi->param('resolution_knob_' . $status->id)
+                          || $cgi->param('resolution');
         }
         else {
-            $query .= "$comma qa_contact = NULL";
+            $resolution = $cgi->param('resolution_knob_change_resolution');
         }
-        $comma = ',';
-    }
-
-    my $bug_changed = 0;
-    my $write = "WRITE";        # Might want to make a param to control
-                                # whether we do LOW_PRIORITY ...
-
-    my @multi_select_locks  = map {'bug_' . $_->name . " $write"}
-        Bugzilla->get_fields({ custom => 1, type => FIELD_TYPE_MULTI_SELECT,
-                               obsolete => 0 });
-
-    $dbh->bz_lock_tables("bugs $write", "bugs_activity $write", "cc $write",
-            "profiles READ", "dependencies $write", "votes $write",
-            "products READ", "components READ", "milestones READ",
-            "keywords $write", "longdescs $write", "fielddefs READ",
-            "bug_group_map $write", "flags $write", "duplicates $write",
-            "user_group_map READ", "group_group_map READ", "flagtypes READ",
-            "flaginclusions AS i READ", "flagexclusions AS e READ",
-            "keyworddefs READ", "groups READ", "attachments READ",
-            "bug_status READ", "group_control_map AS oldcontrolmap READ",
-            "group_control_map AS newcontrolmap READ",
-            "group_control_map READ", "email_setting READ", 
-            "classifications READ", @multi_select_locks);
-
-    # It may sound crazy to set %formhash for each bug as $cgi->param()
-    # will not change, but %formhash is modified below and we prefer
-    # to set it again.
-    my $i = 0;
-    my @oldvalues = SnapShotBug($id);
-    my %oldhash;
-    my %formhash;
-    foreach my $col (@editable_bug_fields) {
-        # Consider NULL db entries to be equivalent to the empty string
-        $oldvalues[$i] = defined($oldvalues[$i]) ? $oldvalues[$i] : '';
-        # Convert the deadline taken from the DB into the YYYY-MM-DD format
-        # for consistency with the deadline provided by the user, if any.
-        # Else Bug::check_can_change_field() would see them as different
-        # in all cases.
-        if ($col eq 'deadline') {
-            $oldvalues[$i] = format_time($oldvalues[$i], "%Y-%m-%d");
-        }
-        $oldhash{$col} = $oldvalues[$i];
-        $formhash{$col} = $cgi->param($col) if defined $cgi->param($col);
-        $i++;
-    }
-    # The status and resolution are defined by the workflow.
-    $formhash{'bug_status'} = $status;
-    $formhash{'resolution'} = $resolution;
-
-    # We need to convert $newhash{'assigned_to'} and $newhash{'qa_contact'}
-    # email addresses into their corresponding IDs;
-    $formhash{'qa_contact'} = $qacontact if Bugzilla->params->{'useqacontact'};
-    $formhash{'assigned_to'} = $assignee;
-
-    # This hash is required by Bug::check_can_change_field().
-    my $cgi_hash = {'dontchange' => scalar $cgi->param('dontchange')};
-    foreach my $col (@editable_bug_fields) {
-        if (exists $formhash{$col}
-            && !$old_bug_obj->check_can_change_field($col, $oldhash{$col}, $formhash{$col},
-                                                     \$PrivilegesRequired, $cgi_hash))
-        {
-            my $vars;
-            if ($col eq 'component_id') {
-                # Display the component name
-                $vars->{'oldvalue'} = $old_bug_obj->component;
-                $vars->{'newvalue'} = $cgi->param('component');
-                $vars->{'field'} = 'component';
-            } elsif ($col eq 'assigned_to' || $col eq 'qa_contact') {
-                # Display the assignee or QA contact email address
-                $vars->{'oldvalue'} = user_id_to_login($oldhash{$col});
-                $vars->{'newvalue'} = user_id_to_login($formhash{$col});
-                $vars->{'field'} = $col;
-            } else {
-                $vars->{'oldvalue'} = $oldhash{$col};
-                $vars->{'newvalue'} = $formhash{$col};
-                $vars->{'field'} = $col;
-            }
-            $vars->{'privs'} = $PrivilegesRequired;
-            ThrowUserError("illegal_change", $vars);
-        }
-    }
-    
-    $oldhash{'product'} = $old_bug_obj->product;
-    if (!Bugzilla->user->can_edit_product($oldhash{'product_id'})) {
-        ThrowUserError("product_edit_denied",
-                      { product => $oldhash{'product'} });
-    }
-
-    my $new_product = $bug_objects{$id}->product_obj;
-    # musthavemilestoneonaccept applies only if at least two
-    # target milestones are defined for the product.
-    if ($requiremilestone
-        && scalar(@{ $new_product->milestones }) > 1
-        && $bug_objects{$id}->target_milestone
-           eq $new_product->default_milestone)
-    {
-        ThrowUserError("milestone_required", { bug_id => $id });
-    }
-    if (defined $cgi->param('delta_ts') && $cgi->param('delta_ts') ne $delta_ts)
-    {
-        ($vars->{'operations'}) =
-            Bugzilla::Bug::GetBugActivity($id, $cgi->param('delta_ts'));
-
-        $vars->{'start_at'} = $cgi->param('longdesclength');
-
-        # Always sort midair collision comments oldest to newest,
-        # regardless of the user's personal preference.
-        $vars->{'comments'} = Bugzilla::Bug::GetComments($id, "oldest_to_newest");
-
-        $cgi->param('delta_ts', $delta_ts);
         
-        $vars->{'bug_id'} = $id;
-        
-        $dbh->bz_unlock_tables(UNLOCK_ABORT);
-        
-        # Warn the user about the mid-air collision and ask them what to do.
-        $template->process("bug/process/midair.html.tmpl", $vars)
-          || ThrowTemplateError($template->error());
-        exit;
-    }
-
-    my $work_time;
-    if (Bugzilla->user->in_group(Bugzilla->params->{'timetrackinggroup'})) {
-        $work_time = $cgi->param('work_time');
-    }
-
-    if ($cgi->param('comment') || $work_time || $duplicate) {
-        my $type = $duplicate ? CMT_DUPE_OF : CMT_NORMAL;
-
-        $bug_objects{$id}->add_comment(scalar($cgi->param('comment')),
-            { isprivate => scalar($cgi->param('commentprivacy')),
-              work_time => $work_time, type => $type, 
-              extra_data => $duplicate});
-        $bug_changed = 1;
-    }
-    
-    #################################
-    # Start Actual Database Updates #
-    #################################
-    
-    $timestamp = $dbh->selectrow_array(q{SELECT NOW()});
-
-    if ($work_time) {
-        LogActivityEntry($id, "work_time", "", $work_time,
-                         $whoid, $timestamp);
+        # Translate the knob values into new status and resolution values.
+        $b->process_knob($knob, $resolution, scalar $cgi->param('dup_id'));
     }
+}
 
-    $bug_objects{$id}->update($timestamp);
-
-    $bug_objects{$id}->update_keywords($timestamp);
-    
-    $query .= " WHERE bug_id = ?";
-    push(@bug_values, $id);
-
-    if ($comma ne '') {
-        $dbh->do($query, undef, @bug_values);
-    }
+##############################
+# Do Actual Database Updates #
+##############################
+foreach my $bug (@bug_objects) {
+    $dbh->bz_start_transaction();
 
-    # Check for duplicates if the bug is [re]open or its resolution is changed.
-    if ($resolution ne 'DUPLICATE') {
-        $dbh->do(q{DELETE FROM duplicates WHERE dupe = ?}, undef, $id);
-    }
+    my $timestamp = $dbh->selectrow_array(q{SELECT NOW()});
+    my $changes = $bug->update($timestamp);
 
-    # First of all, get all groups the bug is currently restricted to.
-    my $initial_groups =
-      $dbh->selectcol_arrayref('SELECT group_id, name
-                                  FROM bug_group_map
-                            INNER JOIN groups
-                                    ON groups.id = bug_group_map.group_id
-                                 WHERE bug_id = ?', {Columns=>[1,2]}, $id);
-    my %original_groups = @$initial_groups;
-    my %updated_groups = %original_groups;
-
-    # Now let's see which groups have to be added or removed.
-    foreach my $gid (keys %{$new_product->group_controls}) {
-        my $group = $new_product->group_controls->{$gid};
-        # Leave inactive groups alone.
-        next unless $group->{group}->is_active;
-
-        # Only members of a group can add/remove the bug to/from it,
-        # unless the bug is being moved to another product in which case
-        # non-members can also edit group restrictions.
-        if ($group->{membercontrol} == CONTROLMAPMANDATORY
-            || ($product_change && $group->{othercontrol} == CONTROLMAPMANDATORY
-                && !$user->in_group_id($gid)))
-        {
-            $updated_groups{$gid} = $group->{group}->name;
-        }
-        elsif ($group->{membercontrol} == CONTROLMAPNA
-               || ($product_change && $group->{othercontrol} == CONTROLMAPNA
-                   && !$user->in_group_id($gid)))
-        {
-            delete $updated_groups{$gid};
+    my %notify_deps;
+    if ($changes->{'bug_status'}) {
+        my ($old_status, $new_status) = @{ $changes->{'bug_status'} };
+        
+        # If this bug has changed from opened to closed or vice-versa,
+        # then all of the bugs we block need to be notified.
+        if (is_open_state($old_status) ne is_open_state($new_status)) {
+            $notify_deps{$_} = 1 foreach (@{$bug->blocked});
         }
-        # When editing several bugs at once, only consider groups which
-        # have been displayed.
-        elsif (($user->in_group_id($gid) || $product_change)
-               && ((defined $cgi->param('id') && Bugzilla->usage_mode != USAGE_MODE_EMAIL)
-                   || defined $cgi->param("bit-$gid")))
-        {
-            if (!$cgi->param("bit-$gid")) {
-                delete $updated_groups{$gid};
-            }
-            # Note that == 1 is important, because == -1 means "ignore this group".
-            elsif ($cgi->param("bit-$gid") == 1) {
-                $updated_groups{$gid} = $group->{group}->name;
-            }
+        
+        # We may have zeroed the remaining time, if we moved into a closed
+        # status, so we should inform the user about that.
+        if (!is_open_state($new_status) && $changes->{'remaining_time'}) {
+            $vars->{'message'} = "remaining_time_zeroed"
+              if Bugzilla->user->in_group(Bugzilla->params->{'timetrackinggroup'});
         }
     }
-    # We also have to remove groups which are not legal in the new product.
-    foreach my $gid (keys %updated_groups) {
-        delete $updated_groups{$gid}
-          unless exists $new_product->group_controls->{$gid};
-    }
-    my ($removed, $added) = diff_arrays([keys %original_groups], [keys %updated_groups]);
-
-    # We can now update the DB.
-    if (scalar(@$removed)) {
-        $dbh->do('DELETE FROM bug_group_map WHERE bug_id = ?
-                  AND group_id IN (' . join(', ', @$removed) . ')',
-                  undef, $id);
-    }
-    if (scalar(@$added)) {
-        my $sth = $dbh->prepare('INSERT INTO bug_group_map
-                                 (bug_id, group_id) VALUES (?, ?)');
-        $sth->execute($id, $_) foreach @$added;
-    }
-
-    # Add the changes to the bug_activity table.
-    if (scalar(@$removed) || scalar(@$added)) {
-        my @removed_names = map { $original_groups{$_} } @$removed;
-        my @added_names = map { $updated_groups{$_} } @$added;
-        LogActivityEntry($id, 'bug_group', join(',', @removed_names),
-                         join(',', @added_names), $whoid, $timestamp);
-        $bug_changed = 1;
-    }
 
-    my ($cc_removed) = $bug_objects{$id}->update_cc($timestamp);
+    $bug->update_keywords($timestamp);
+    
+    my ($cc_removed) = $bug->update_cc($timestamp);
     $cc_removed = [map {$_->login} @$cc_removed];
 
-    my ($dep_changes) = $bug_objects{$id}->update_dependencies($timestamp);
+    my ($dep_changes) = $bug->update_dependencies($timestamp);
     
     # Convert the "changes" hash into a list of all the bug ids, then
     # convert that into a hash to eliminate duplicates. ("map {@$_}" collapses
@@ -1054,158 +537,59 @@ foreach my $id (@idlist) {
     push(@all_changed_deps, map { @$_ } @{$dep_changes->{'blocked'}});
     my %changed_deps = map { $_ => 1 } @all_changed_deps;
 
-    # get a snapshot of the newly set values out of the database,
-    # and then generate any necessary bug activity entries by seeing 
-    # what has changed since before we wrote out the new values.
-    #
-    my $new_bug_obj = new Bugzilla::Bug($id);
-    my @newvalues = SnapShotBug($id);
-    my %newhash;
-    $i = 0;
-    foreach my $col (@editable_bug_fields) {
-        # Consider NULL db entries to be equivalent to the empty string
-        $newvalues[$i] = defined($newvalues[$i]) ? $newvalues[$i] : '';
-        # Convert the deadline to the YYYY-MM-DD format.
-        if ($col eq 'deadline') {
-            $newvalues[$i] = format_time($newvalues[$i], "%Y-%m-%d");
-        }
-        $newhash{$col} = $newvalues[$i];
-        $i++;
-    }
-    # for passing to Bugzilla::BugMail to ensure that when someone is removed
-    # from one of these fields, they get notified of that fact (if desired)
-    #
-    my $origOwner = "";
-    my $origQaContact = "";
-
     # $msgs will store emails which have to be sent to voters, if any.
     my $msgs;
-    my %notify_deps;
-    
-    foreach my $c (@editable_bug_fields) {
-        my $col = $c;           # We modify it, don't want to modify array
-                                # values in place.
-        my $old = shift @oldvalues;
-        my $new = shift @newvalues;
-        if ($old ne $new) {
-
-            # save off the old value for passing to Bugzilla::BugMail so
-            # the old assignee can be notified
-            #
-            if ($col eq 'assigned_to') {
-                $old = ($old) ? user_id_to_login($old) : "";
-                $new = ($new) ? user_id_to_login($new) : "";
-                $origOwner = $old;
-            }
-
-            # ditto for the old qa contact
-            #
-            if ($col eq 'qa_contact') {
-                $old = ($old) ? user_id_to_login($old) : "";
-                $new = ($new) ? user_id_to_login($new) : "";
-                $origQaContact = $old;
-            }
-
-            # Bugzilla::Bug does these for us already.
-            next if grep($_ eq $col, qw(keywords op_sys rep_platform priority
-                                        product_id component_id version
-                                        target_milestone
-                                        bug_severity short_desc alias
-                                        deadline estimated_time remaining_time
-                                        reporter_accessible cclist_accessible
-                                        status_whiteboard bug_file_loc),
-                                     Bugzilla->custom_field_names);
-
-            if ($col eq 'product') {
-                # If some votes have been removed, RemoveVotes() returns
-                # a list of messages to send to voters.
-                # We delay the sending of these messages till tables are unlocked.
-                $msgs = RemoveVotes($id, 0,
-                          "This bug has been moved to a different product");
-
-                CheckIfVotedConfirmed($id, $whoid);
-            }
-
-            # If this bug has changed from opened to closed or vice-versa,
-            # then all of the bugs we block need to be notified.
-            if ($col eq 'bug_status' 
-                && is_open_state($old) ne is_open_state($new))
-            {
-                $notify_deps{$_} = 1 foreach (@{$bug_objects{$id}->blocked});
-            }
+    if ($changes->{'product'}) {
+        # If some votes have been removed, RemoveVotes() returns
+        # a list of messages to send to voters.
+        # We delay the sending of these messages till tables are unlocked.
+        $msgs = RemoveVotes($bug->id, 0,
+                  "This bug has been moved to a different product");
 
-            LogActivityEntry($id,$col,$old,$new,$whoid,$timestamp);
-            $bug_changed = 1;
-        }
+        CheckIfVotedConfirmed($bug->id, Bugzilla->user->id);
     }
+
     # Set and update flags.
-    Bugzilla::Flag::process($new_bug_obj, undef, $timestamp, $cgi);
+    Bugzilla::Flag::process($bug, undef, $timestamp, $cgi, $vars);
 
-    if ($bug_changed) {
-        $dbh->do(q{UPDATE bugs SET delta_ts = ? WHERE bug_id = ?},
-                 undef, $timestamp, $id);
-    }
-    $dbh->bz_unlock_tables();
+    $dbh->bz_commit_transaction();
+
+    ###############
+    # Send Emails #
+    ###############
 
     # Now is a good time to send email to voters.
     foreach my $msg (@$msgs) {
         MessageToMTA($msg);
     }
 
-    if ($duplicate) {
-        # If the bug was already marked as a duplicate, remove
-        # the existing entry.
-        $dbh->do('DELETE FROM duplicates WHERE dupe = ?',
-                  undef, $cgi->param('id'));
-
-        my $dup = new Bugzilla::Bug($duplicate);
-        my $reporter = $new_bug_obj->reporter;
-        my $isoncc = $dbh->selectrow_array(q{SELECT who FROM cc
-                                           WHERE bug_id = ? AND who = ?},
-                                           undef, $duplicate, $reporter->id);
-        unless (($reporter->id == $dup->reporter->id) || $isoncc
-                || !$cgi->param('confirm_add_duplicate')) {
-            # The reporter is oblivious to the existence of the original bug
-            # and is permitted access. Add him to the cc (and record activity).
-            LogActivityEntry($duplicate,"cc","",$reporter->name,
-                             $whoid,$timestamp);
-            $dbh->do(q{INSERT INTO cc (who, bug_id) VALUES (?, ?)},
-                     undef, $reporter->id, $duplicate);
-        }
-        # Bug 171639 - Duplicate notifications do not need to be private.
-        $dup->add_comment("", { type => CMT_HAS_DUPE,
-                                extra_data => $new_bug_obj->bug_id });
-        $dup->update($timestamp);
-
-        $dbh->do(q{INSERT INTO duplicates VALUES (?, ?)}, undef,
-                 $duplicate, $cgi->param('id'));
-    }
-
-    # Now all changes to the DB have been made. It's time to email
-    # all concerned users, including the bug itself, but also the
-    # duplicated bug and dependent bugs, if any.
-
-    $vars->{'mailrecipients'} = { 'cc' => $cc_removed,
-                                  'owner' => $origOwner,
-                                  'qacontact' => $origQaContact,
-                                  'changer' => Bugzilla->user->login };
+    my $old_qa  = $changes->{'qa_contact'} ? $changes->{'qa_contact'}->[0] : '';
+    my $old_own =  $changes->{'assigned_to'} ? $changes->{'assigned_to'}->[0] : '';
+    $vars->{'mailrecipients'} = {
+        cc        => $cc_removed,
+        owner     => $old_own,
+        qacontact => $old_qa,
+        changer   => Bugzilla->user->login };
 
-    $vars->{'id'} = $id;
+    $vars->{'id'} = $bug->id;
     $vars->{'type'} = "bug";
     
     # Let the user know the bug was changed and who did and didn't
     # receive email about the change.
-    send_results($id, $vars);
+    send_results($bug->id, $vars);
  
-    if ($duplicate) {
+    # If the bug was marked as a duplicate, we need to notify users on the
+    # other bug of any changes to that bug.
+    my $new_dup_id = $changes->{'dup_id'} ? $changes->{'dup_id'}->[1] : undef;
+    if ($new_dup_id) {
         $vars->{'mailrecipients'} = { 'changer' => Bugzilla->user->login }; 
 
-        $vars->{'id'} = $duplicate;
+        $vars->{'id'} = $new_dup_id;
         $vars->{'type'} = "dupe";
         
         # Let the user know a duplication notation was added to the 
         # original bug.
-        send_results($duplicate, $vars);
+        send_results($new_dup_id, $vars);
     }
 
     my %all_dep_changes = (%notify_deps, %changed_deps);
@@ -1229,6 +613,7 @@ eval {
     $vars->{'patchviewerinstalled'} = 1;
 };
 
+my $action;
 if (defined $cgi->param('id')) {
     $action = Bugzilla->user->settings->{'post_bug_submit_action'}->{'value'};
 } else {
diff --git a/query.cgi b/query.cgi
index 5ca04d81d1b800b534f3af0f91364a9ceb65bf26..622c1588cef4b8b6083eb804c1e3c3fe68b4e424 100755
--- a/query.cgi
+++ b/query.cgi
@@ -26,7 +26,7 @@
 #                 Max Kanat-Alexander <mkanat@bugzilla.org>
 
 use strict;
-use lib ".";
+use lib qw(. lib);
 
 use Bugzilla;
 use Bugzilla::Bug;
@@ -70,7 +70,7 @@ if ($userid) {
                 # If the query name contains invalid characters, don't import.
                 $name =~ /[<>&]/ && next;
                 trick_taint($name);
-                $dbh->bz_lock_tables('namedqueries WRITE');
+                $dbh->bz_start_transaction();
                 my $query = $dbh->selectrow_array(
                     "SELECT query FROM namedqueries " .
                      "WHERE userid = ? AND name = ?",
@@ -80,7 +80,7 @@ if ($userid) {
                             "(userid, name, query) VALUES " .
                             "(?, ?, ?)", undef, ($userid, $name, $value));
                 }
-                $dbh->bz_unlock_tables();
+                $dbh->bz_commit_transaction();
             }
             $cgi->remove_cookie($cookiename);
         }
@@ -111,6 +111,7 @@ local our %default;
 # and ignore any multiple values.
 sub PrefillForm {
     my ($buf) = (@_);
+    my $cgi = Bugzilla->cgi;
     $buf = new Bugzilla::CGI($buf);
     my $foundone = 0;
 
@@ -136,17 +137,22 @@ sub PrefillForm {
         $default{$name} = [];
     }
  
+    # we won't prefill the boolean chart data from this query if
+    # there are any being submitted via params
+    my $prefillcharts = (grep(/^field-/, $cgi->param)) ? 0 : 1;
  
     # Iterate over the URL parameters
     foreach my $name ($buf->param()) {
         my @values = $buf->param($name);
 
-        # If the name begins with field, type, or value, then it is part of
-        # the boolean charts. Because these are built different than the rest
-        # of the form, we don't need to save a default value. We do, however,
-        # need to indicate that we found something so the default query isn't
-        # added in if all we have are boolean chart items.
-        if ($name =~ m/^(?:field|type|value)/) {
+        # If the name begins with the string 'field', 'type', 'value', or
+        # 'negate', then it is part of the boolean charts. Because
+        # these are built different than the rest of the form, we need
+        # to store these as parameters. We also need to indicate that
+        # we found something so the default query isn't added in if
+        # all we have are boolean chart items.
+        if ($name =~ m/^(?:field|type|value|negate)/) {
+            $cgi->param(-name => $name, -value => $values[0]) if ($prefillcharts);
             $foundone = 1;
         }
         # If the name ends in a number (which it does for the fields which
diff --git a/quips.cgi b/quips.cgi
index bb0e5afffc29828e866616b59a64c92cb735483c..295b6c83fc07c305870d19563b49816084157385 100755
--- a/quips.cgi
+++ b/quips.cgi
@@ -25,7 +25,7 @@
 
 use strict;
 
-use lib qw(.);
+use lib qw(. lib);
 
 use Bugzilla;
 use Bugzilla::Constants;
diff --git a/relogin.cgi b/relogin.cgi
index 5aa187490f99649f4a06342bd32dcdcc484573c7..e2182699aa72716c3be3d40b17393da8af992e43 100755
--- a/relogin.cgi
+++ b/relogin.cgi
@@ -23,7 +23,7 @@
 #                 A. Karl Kornel <karl@kornel.name>
 
 use strict;
-use lib qw(.);
+use lib qw(. lib);
 
 use Bugzilla;
 use Bugzilla::Mailer;
diff --git a/report.cgi b/report.cgi
index 10c532163e94ef9423a075ba4c0acc30bb51508e..2b9cb61ad00d6056367523bcf689ab8d5db59979 100755
--- a/report.cgi
+++ b/report.cgi
@@ -22,7 +22,7 @@
 #                 <rdean@cambianetworks.com>
 
 use strict;
-use lib ".";
+use lib qw(. lib);
 
 use Bugzilla;
 use Bugzilla::Constants;
@@ -316,6 +316,9 @@ if ($cgi->param('debug')) {
     print Data::Dumper::Dumper(@image_data) . "\n\n</pre>";
 }
 
+# All formats point to the same section of the documentation.
+$vars->{'doc_section'} = 'reporting.html#reports';
+
 $template->process("$format->{'template'}", $vars)
   || ThrowTemplateError($template->error());
 
diff --git a/reports.cgi b/reports.cgi
index 065e6d73a1bd2c26154ae520ae17b7ebb44b428c..40bbc82bb5d502243ce6e8a44fe33236a4ecd024 100755
--- a/reports.cgi
+++ b/reports.cgi
@@ -37,13 +37,13 @@
 
 use strict;
 
-use lib qw(.);
+use lib qw(. lib);
 
 use Bugzilla;
 use Bugzilla::Constants;
 use Bugzilla::Util;
 use Bugzilla::Error;
-use Bugzilla::Bug;
+use Bugzilla::Status;
 
 eval "use GD";
 $@ && ThrowCodeError("gd_not_installed");
diff --git a/request.cgi b/request.cgi
index 8d514347a4031dce7c48d1f321bb929350cede7b..c854a176799b5b047bea760334e38a269459db2c 100755
--- a/request.cgi
+++ b/request.cgi
@@ -28,7 +28,7 @@
 # Make it harder for us to do dangerous things in Perl.
 use strict;
 
-use lib qw(.);
+use lib qw(. lib);
 
 use Bugzilla;
 use Bugzilla::Util;
@@ -42,6 +42,11 @@ use Bugzilla::Component;
 # Make sure the user is logged in.
 my $user = Bugzilla->login();
 my $cgi = Bugzilla->cgi;
+my $dbh = Bugzilla->dbh;
+my $template = Bugzilla->template;
+my $action = $cgi->param('action') || '';
+
+print $cgi->header();
 
 ################################################################################
 # Main Body Execution
@@ -59,7 +64,21 @@ unless (defined $cgi->param('requestee')
 
 Bugzilla::User::match_field($cgi, $fields);
 
-queue();
+if ($action eq 'queue') {
+    queue();
+}
+else {
+    my $flagtypes = $dbh->selectcol_arrayref('SELECT DISTINCT(name) FROM flagtypes
+                                              ORDER BY name');
+    my @types = ('all', @$flagtypes);
+
+    my $vars = {};
+    $vars->{'products'} = $user->get_selectable_products;
+    $vars->{'types'} = \@types;
+    $vars->{'requests'} = {};
+    $template->process('request/queue.html.tmpl', $vars)
+      || ThrowTemplateError($template->error());
+}
 exit;
 
 ################################################################################
@@ -186,8 +205,8 @@ sub queue {
         push(@criteria, "bugs.product_id = " . $product->id);
         push(@excluded_columns, 'product') unless $cgi->param('do_union');
         if (defined $cgi->param('component') && $cgi->param('component') ne "") {
-            my $component =
-                Bugzilla::Component::check_component($product, scalar $cgi->param('component'));
+            my $component = Bugzilla::Component->check({ product => $product,
+                                                         name => scalar $cgi->param('component') });
             push(@criteria, "bugs.component_id = " . $component->id);
             push(@excluded_columns, 'component') unless $cgi->param('do_union');
         }
@@ -288,9 +307,6 @@ sub queue {
     $vars->{'requests'} = \@requests;
     $vars->{'types'} = \@types;
 
-    # Return the appropriate HTTP response headers.
-    print $cgi->header();
-
     # Generate and return the UI (HTML page) from the appropriate template.
     $template->process("request/queue.html.tmpl", $vars)
       || ThrowTemplateError($template->error());
diff --git a/runtests.pl b/runtests.pl
index ad6898b2396ee056151aa9400d018bffd12c6e7c..092d8069b941499801de5d52e52dd109df8c14e2 100755
--- a/runtests.pl
+++ b/runtests.pl
@@ -23,6 +23,7 @@
 # Make it harder for us to do dangerous things in Perl.
 use diagnostics;
 use strict;
+use lib qw(lib);
 
 use Test::Harness qw(&runtests $verbose);
 
diff --git a/sanitycheck.cgi b/sanitycheck.cgi
index 157281b11e73924fa475630f0ff570765bc8d57d..57dca0c31a9ba93d4bb91ea828caeda16e9dfc2f 100755
--- a/sanitycheck.cgi
+++ b/sanitycheck.cgi
@@ -26,13 +26,13 @@
 
 use strict;
 
-use lib qw(.);
+use lib qw(. lib);
 
 use Bugzilla;
 use Bugzilla::Constants;
 use Bugzilla::Util;
 use Bugzilla::Error;
-use Bugzilla::Bug;
+use Bugzilla::Status;
 
 ###########################################################################
 # General subs
@@ -106,7 +106,7 @@ unless ($user->in_group('editcomponents')) {
 
 if ($cgi->param('rebuildvotecache')) {
     Status('vote_cache_rebuild_start');
-    $dbh->bz_lock_tables('bugs WRITE', 'votes READ');
+    $dbh->bz_start_transaction();
     $dbh->do(q{UPDATE bugs SET votes = 0});
     my $sth_update = $dbh->prepare(q{UPDATE bugs 
                                         SET votes = ? 
@@ -117,7 +117,7 @@ if ($cgi->param('rebuildvotecache')) {
     while (my ($id, $v) = $sth->fetchrow_array) {
         $sth_update->execute($v, $id);
     }
-    $dbh->bz_unlock_tables();
+    $dbh->bz_commit_transaction();
     Status('vote_cache_rebuild_end');
 }
 
@@ -262,11 +262,7 @@ if ($cgi->param('rescanallBugMail')) {
 if ($cgi->param('remove_invalid_bug_references')) {
     Status('bug_reference_deletion_start');
 
-    $dbh->bz_lock_tables('attachments WRITE', 'bug_group_map WRITE',
-                         'bugs_activity WRITE', 'cc WRITE',
-                         'dependencies WRITE', 'duplicates WRITE',
-                         'flags WRITE', 'keywords WRITE',
-                         'longdescs WRITE', 'votes WRITE', 'bugs READ');
+    $dbh->bz_start_transaction();
 
     foreach my $pair ('attachments/', 'bug_group_map/', 'bugs_activity/', 'cc/',
                       'dependencies/blocked', 'dependencies/dependson',
@@ -286,7 +282,7 @@ if ($cgi->param('remove_invalid_bug_references')) {
         }
     }
 
-    $dbh->bz_unlock_tables();
+    $dbh->bz_commit_transaction();
     Status('bug_reference_deletion_end');
 }
 
@@ -297,7 +293,7 @@ if ($cgi->param('remove_invalid_bug_references')) {
 if ($cgi->param('remove_invalid_attach_references')) {
     Status('attachment_reference_deletion_start');
 
-    $dbh->bz_lock_tables('attachments WRITE', 'attach_data WRITE');
+    $dbh->bz_start_transaction();
 
     my $attach_ids =
         $dbh->selectcol_arrayref('SELECT attach_data.id
@@ -311,7 +307,7 @@ if ($cgi->param('remove_invalid_attach_references')) {
                  join(',', @$attach_ids) . ')');
     }
 
-    $dbh->bz_unlock_tables();
+    $dbh->bz_commit_transaction();
     Status('attachment_reference_deletion_end');
 }
 
@@ -698,7 +694,7 @@ sub _check_keywords {
     Status('keyword_cache_start');
 
     if ($cgi->param('rebuildkeywordcache')) {
-        $dbh->bz_lock_tables('bugs write', 'keywords read', 'keyworddefs read');
+        $dbh->bz_start_transaction();
     }
 
     my $query = q{SELECT keywords.bug_id, keyworddefs.name
@@ -765,7 +761,7 @@ sub _check_keywords {
     }
 
     if ($cgi->param('rebuildkeywordcache')) {
-        $dbh->bz_unlock_tables();
+        $dbh->bz_commit_transaction();
     }
 }
 
@@ -804,10 +800,8 @@ if (scalar(@invalid_flags)) {
     if ($cgi->param('remove_invalid_flags')) {
         Status('flag_deletion_start');
         my @flag_ids = map {$_->[0]} @invalid_flags;
-        $dbh->bz_lock_tables('flags WRITE');
         # Silently delete these flags, with no notification to requesters/setters.
         $dbh->do('DELETE FROM flags WHERE id IN (' . join(',', @flag_ids) .')');
-        $dbh->bz_unlock_tables();
         Status('flag_deletion_end');
     }
     else {
@@ -874,11 +868,11 @@ Status('bug_check_status_everconfirmed');
 
 BugCheck("bugs WHERE bug_status = 'UNCONFIRMED' AND everconfirmed = 1",
          'bug_check_status_everconfirmed_error_text');
-# The below list of resolutions is hard-coded because we don't know if future
-# resolutions will be confirmed, unconfirmed or maybeconfirmed.  I suspect
-# they will be maybeconfirmed, e.g. ASLEEP and REMIND.  This hardcoding should
-# disappear when we have customized statuses.
-BugCheck("bugs WHERE bug_status IN ('NEW', 'ASSIGNED', 'REOPENED') AND everconfirmed = 0",
+
+my @confirmed_open_states = grep {$_ ne 'UNCONFIRMED'} BUG_STATE_OPEN;
+my $confirmed_open_states = join(', ', map {$dbh->quote($_)} @confirmed_open_states);
+
+BugCheck("bugs WHERE bug_status IN ($confirmed_open_states) AND everconfirmed = 0",
          'bug_check_status_everconfirmed_error_text2');
 
 Status('bug_check_votes_everconfirmed');
diff --git a/sanitycheck.pl b/sanitycheck.pl
index 5c383e67d65da49d154dd4e34db8e578b1143c80..2ef0eea7da29bfcff091c16e41e87c9555a8910f 100644
--- a/sanitycheck.pl
+++ b/sanitycheck.pl
@@ -21,7 +21,7 @@
 
 use strict;
 
-use lib qw(.);
+use lib qw(. lib);
 
 use Bugzilla;
 use Bugzilla::Constants;
@@ -30,11 +30,17 @@ use Bugzilla::User;
 use Bugzilla::Mailer;
 
 use Getopt::Long;
+use Pod::Usage;
 
 my $verbose = 0; # Return all comments if true, else errors only.
 my $login = '';  # Login name of the user which is used to call sanitycheck.cgi.
+my $help = 0;    # Has user asked for help on this script?
 
-my $result = GetOptions('verbose' => \$verbose, 'login=s' => \$login);
+my $result = GetOptions('verbose'  => \$verbose,
+                        'login=s'  => \$login,
+                        'help|h|?' => \$help);
+
+pod2usage({-verbose => 1, -exitval => 1}) if $help;
 
 Bugzilla->usage_mode(USAGE_MODE_CMDLINE);
 
@@ -68,3 +74,43 @@ if ($cgi->param('output')) {
 
     MessageToMTA($message);
 }
+
+
+__END__
+
+=head1 NAME
+
+sanitycheck.pl - Perl script to perform a sanity check at the command line
+
+=head1 SYNOPSIS
+
+ ./sanitycheck.pl [--help]
+ ./sanitycheck.pl [--verbose] --login <user@domain.com>
+
+=head1 OPTIONS
+
+=over
+
+=item B<--help>
+
+Displays this help text
+
+=item B<--verbose>
+
+Causes this script to be more verbose in its output. Without this option,
+the script will return only errors. With the option, the script will append
+all output to the email.
+
+=item B<--login>
+
+This should be passed the email address of a user that is capable of
+running the Sanity Check process, a user with the editcomponents priv. This
+user will receive an email with the results of the script run.
+
+=back
+
+=head1 DESCRIPTION
+
+This script provides a way of running a 'Sanity Check' on the database
+via either a CLI or cron. It is equivalent to calling sanitycheck.cgi
+via a web broswer.
diff --git a/search_plugin.cgi b/search_plugin.cgi
index e3384fccede51fc326de68d68aefc55f90684224..5048f7ce6ac26df94f84cd543404478e3283926a 100644
--- a/search_plugin.cgi
+++ b/search_plugin.cgi
@@ -16,7 +16,7 @@
 # Contributor(s): Frédéric Buclin <LpSolit@gmail.com>
 
 use strict;
-use lib ".";
+use lib qw(. lib);
 
 use Bugzilla;
 use Bugzilla::Error;
diff --git a/show_activity.cgi b/show_activity.cgi
index 1eff56f3f8763720b13a9739fc71bc4e6eddfa95..d2570f8b105ed44434ea88bc34c77cb99f00fc19 100755
--- a/show_activity.cgi
+++ b/show_activity.cgi
@@ -24,7 +24,7 @@
 
 use strict;
 
-use lib qw(.);
+use lib qw(. lib);
 
 use Bugzilla;
 use Bugzilla::Error;
@@ -53,7 +53,7 @@ ValidateBugID($bug_id);
 ($vars->{'operations'}, $vars->{'incomplete_data'}) = 
     Bugzilla::Bug::GetBugActivity($bug_id);
 
-$vars->{'bug_id'} = $bug_id;
+$vars->{'bug'} = new Bugzilla::Bug($bug_id);
 
 print $cgi->header();
 
diff --git a/show_bug.cgi b/show_bug.cgi
index 6aa31456564dd6fef555e53d165f51e419aa7f81..4e3aac982f47be1d1ba0f3134896a23da5008458 100755
--- a/show_bug.cgi
+++ b/show_bug.cgi
@@ -22,7 +22,7 @@
 
 use strict;
 
-use lib qw(.);
+use lib qw(. lib);
 
 use Bugzilla;
 use Bugzilla::Constants;
diff --git a/showattachment.cgi b/showattachment.cgi
index f535d5c9dacee9925c8a392e10a8867382202278..e90a01533ee3818101249524e2bd44c9aecd46dc 100755
--- a/showattachment.cgi
+++ b/showattachment.cgi
@@ -23,7 +23,7 @@
 
 use strict;
 
-use lib qw(.);
+use lib qw(. lib);
 
 use Bugzilla;
 use Bugzilla::Util;
diff --git a/showdependencygraph.cgi b/showdependencygraph.cgi
index fd042f43630baab845f9e282a8d5c8932f93e7af..f7977446ef6214afcea5be674659b6bf10e7bc10 100755
--- a/showdependencygraph.cgi
+++ b/showdependencygraph.cgi
@@ -23,7 +23,7 @@
 
 use strict;
 
-use lib qw(.);
+use lib qw(. lib);
 
 use File::Temp;
 
@@ -32,6 +32,7 @@ use Bugzilla::Constants;
 use Bugzilla::Util;
 use Bugzilla::Error;
 use Bugzilla::Bug;
+use Bugzilla::Status;
 
 Bugzilla->login();
 
@@ -71,7 +72,7 @@ sub CreateImagemap {
             # Pick up bugid from the mapdata label field. Getting the title from
             # bugtitle hash instead of mapdata allows us to get the summary even
             # when showsummary is off, and also gives us status and resolution.
-            my $bugtitle = value_quote($bugtitles{$bugid});
+            my $bugtitle = html_quote(clean_text($bugtitles{$bugid}));
             $map .= qq{<area alt="bug $bugid" name="bug$bugid" shape="rect" } .
                     qq{title="$bugtitle" href="$url" } .
                     qq{coords="$leftx,$topy,$rightx,$bottomy">\n};
diff --git a/showdependencytree.cgi b/showdependencytree.cgi
index 070986d5ef21e508bb2af05e1368d11366f1a3b6..80e67716afe551ba55675659bb2eaa7f5be52874 100755
--- a/showdependencytree.cgi
+++ b/showdependencytree.cgi
@@ -26,7 +26,7 @@
 
 use strict;
 
-use lib qw(.);
+use lib qw(. lib);
 
 use Bugzilla;
 use Bugzilla::Error;
diff --git a/sidebar.cgi b/sidebar.cgi
index 5619d6b407508af5c7c16bc8754b31286ec9c7e3..35c4e64ad513bddfd45d322b72a8ecfafa6b0d38 100755
--- a/sidebar.cgi
+++ b/sidebar.cgi
@@ -17,7 +17,7 @@
 
 use strict;
 
-use lib ".";
+use lib qw(. lib);
 
 use Bugzilla;
 use Bugzilla::Error;
diff --git a/skins/CVS/Entries b/skins/CVS/Entries
index 09a96374f74823ca2ed8ff998b2fa6170538f410..a83af6af4fa986697d1b3de8df4612071acab4d4 100644
--- a/skins/CVS/Entries
+++ b/skins/CVS/Entries
@@ -1,3 +1,3 @@
-/.cvsignore/1.2/Tue Aug 14 21:54:35 2007//TBUGZILLA-3_1_2
+/.cvsignore/1.2/Tue Aug 14 21:54:35 2007//TBUGZILLA-3_1_3
 D/contrib////
 D/standard////
diff --git a/skins/CVS/Tag b/skins/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/skins/CVS/Tag
+++ b/skins/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/skins/contrib/CVS/Tag b/skins/contrib/CVS/Tag
index 80c099bc19dadebec1c7694887784832759a1d11..0ca7715dc476234040a6da28cf255d1c036fe0ae 100644
--- a/skins/contrib/CVS/Tag
+++ b/skins/contrib/CVS/Tag
@@ -1 +1 @@
-TBUGZILLA-3_1_2
+TBUGZILLA-3_1_3
diff --git a/skins/contrib/Dusk/.cvsignore b/skins/contrib/Dusk/.cvsignore
index cd13c00e9c53b0a0dadd33fd657a42b339693682..8e2561a25294f97a7231284d42fc6ae55f8ddf9a 100644
--- a/skins/contrib/Dusk/.cvsignore
+++ b/skins/contrib/Dusk/.cvsignore
@@ -10,6 +10,8 @@ index.css
 panel.css
 params.css
 release-notes.css
+show_bug.css
 show_multiple.css
 summarize-time.css
 voting.css
+yui
diff --git a/skins/contrib/Dusk/CVS/Entries b/skins/contrib/Dusk/CVS/Entries
index dd94b852cc0d46f8f0ef47b714d982109a426ba0..884f054a03b4e501bb986031c7a800ebabfdb1c9 100644
--- a/skins/contrib/Dusk/CVS/Entries
+++ b/skins/contrib/Dusk/CVS/Entries
@@ -1,4 +1,4 @@
-/.cvsignore/1.1/Sat Sep 15 01:43:54 2007//TBUGZILLA-3_1_2
-/buglist.css/1.1/Tue Aug 14 21:54:35 2007//TBUGZILLA-3_1_2
-/global.css/1.2/Sun Sep  9 22:41:09 2007//TBUGZILLA-3_1_2
+/.cvsignore/1.3/Sun Jan 27 19:21:12 2008//TBUGZILLA-3_1_3
+/buglist.css/1.1/Tue Aug 14 21:54:35 2007//TBUGZILLA-3_1_3
+/global.css/1.2/Sun Sep  9 22:41:09 2007//TBUGZILLA-3_1_3
 D
diff --git a/skins/contrib/Dusk/CVS/Tag b/skins/contrib/Dusk/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/skins/contrib/Dusk/CVS/Tag
+++ b/skins/contrib/Dusk/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/skins/standard/CVS/Entries b/skins/standard/CVS/Entries
index fa7a7d987ea35ff2c972cf885e5a44c9fadd9f5f..bda9b5d6aa7fcf89b677ce535cb22f2e7ef19bea 100644
--- a/skins/standard/CVS/Entries
+++ b/skins/standard/CVS/Entries
@@ -1,19 +1,21 @@
-/IE-fixes.css/1.1/Tue Oct 17 19:58:34 2006//TBUGZILLA-3_1_2
-/admin.css/1.6/Thu May 17 15:10:53 2007//TBUGZILLA-3_1_2
-/buglist.css/1.11/Wed Nov 15 10:44:15 2006//TBUGZILLA-3_1_2
-/create_attachment.css/1.1/Sat Jun 17 23:24:35 2006//TBUGZILLA-3_1_2
-/dependency-tree.css/1.3/Sat Jan  6 19:48:10 2007//TBUGZILLA-3_1_2
-/duplicates.css/1.2/Fri Nov 15 22:04:04 2002//TBUGZILLA-3_1_2
-/editusers.css/1.3/Sun May 13 18:58:26 2007//TBUGZILLA-3_1_2
-/global.css/1.40/Mon Sep 17 04:48:05 2007//TBUGZILLA-3_1_2
-/help.css/1.1/Sun Apr 15 18:43:26 2007//TBUGZILLA-3_1_2
-/index.css/1.8/Sun Mar 25 02:10:20 2007//TBUGZILLA-3_1_2
-/panel.css/1.1/Wed Dec 12 22:41:11 2001//TBUGZILLA-3_1_2
-/params.css/1.4/Thu Aug  2 22:38:45 2007//TBUGZILLA-3_1_2
-/release-notes.css/1.1/Thu Feb 22 18:41:29 2007//TBUGZILLA-3_1_2
-/show_multiple.css/1.4/Sun Jun 18 23:11:59 2006//TBUGZILLA-3_1_2
-/summarize-time.css/1.1/Mon Feb 28 17:52:57 2005//TBUGZILLA-3_1_2
-/voting.css/1.1/Tue Feb  8 15:49:57 2005//TBUGZILLA-3_1_2
+/IE-fixes.css/1.1/Tue Oct 17 19:58:34 2006//TBUGZILLA-3_1_3
+/admin.css/1.6/Thu May 17 15:10:53 2007//TBUGZILLA-3_1_3
+/buglist.css/1.11/Wed Nov 15 10:44:15 2006//TBUGZILLA-3_1_3
+/create_attachment.css/1.1/Sat Jun 17 23:24:35 2006//TBUGZILLA-3_1_3
+/dependency-tree.css/1.3/Sat Jan  6 19:48:10 2007//TBUGZILLA-3_1_3
+/duplicates.css/1.2/Fri Nov 15 22:04:04 2002//TBUGZILLA-3_1_3
+/editusers.css/1.3/Sun May 13 18:58:26 2007//TBUGZILLA-3_1_3
+/global.css/1.43/Sun Jan 27 19:21:12 2008//TBUGZILLA-3_1_3
+/help.css/1.1/Sun Apr 15 18:43:26 2007//TBUGZILLA-3_1_3
+/index.css/1.8/Sun Mar 25 02:10:20 2007//TBUGZILLA-3_1_3
+/panel.css/1.1/Wed Dec 12 22:41:11 2001//TBUGZILLA-3_1_3
+/params.css/1.4/Thu Aug  2 22:38:45 2007//TBUGZILLA-3_1_3
+/release-notes.css/1.1/Thu Feb 22 18:41:29 2007//TBUGZILLA-3_1_3
+/show_bug.css/1.4/Sun Jan 27 19:21:12 2008//TBUGZILLA-3_1_3
+/show_multiple.css/1.4/Sun Jun 18 23:11:59 2006//TBUGZILLA-3_1_3
+/summarize-time.css/1.1/Mon Feb 28 17:52:57 2005//TBUGZILLA-3_1_3
+/voting.css/1.1/Tue Feb  8 15:49:57 2005//TBUGZILLA-3_1_3
 D/dependency-tree////
 D/global////
 D/index////
+D/yui////
diff --git a/skins/standard/CVS/Tag b/skins/standard/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/skins/standard/CVS/Tag
+++ b/skins/standard/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/skins/standard/dependency-tree/CVS/Entries b/skins/standard/dependency-tree/CVS/Entries
index feed82458ab9e4cef575ff4cfe752b81ed021515..cfa00cfab4261618c7c0ab3d3ad418da17110e3c 100644
--- a/skins/standard/dependency-tree/CVS/Entries
+++ b/skins/standard/dependency-tree/CVS/Entries
@@ -1,5 +1,5 @@
-/bug-item.png/1.1/Fri Feb 24 01:31:13 2006/-kb/TBUGZILLA-3_1_2
-/tree-closed.png/1.1/Fri Feb 24 01:31:13 2006/-kb/TBUGZILLA-3_1_2
-/tree-open.png/1.1/Fri Feb 24 01:31:13 2006/-kb/TBUGZILLA-3_1_2
-/tree.png/1.1/Tue May 23 00:31:35 2006/-kb/TBUGZILLA-3_1_2
+/bug-item.png/1.1/Fri Feb 24 01:31:13 2006/-kb/TBUGZILLA-3_1_3
+/tree-closed.png/1.1/Fri Feb 24 01:31:13 2006/-kb/TBUGZILLA-3_1_3
+/tree-open.png/1.1/Fri Feb 24 01:31:13 2006/-kb/TBUGZILLA-3_1_3
+/tree.png/1.1/Tue May 23 00:31:35 2006/-kb/TBUGZILLA-3_1_3
 D
diff --git a/skins/standard/dependency-tree/CVS/Tag b/skins/standard/dependency-tree/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/skins/standard/dependency-tree/CVS/Tag
+++ b/skins/standard/dependency-tree/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/skins/standard/global.css b/skins/standard/global.css
index d7765dc885c385293d21c42c2afb0e8e1107a5ce..9d87927c7f8a65fb2ca0e5000595aa5290f76185 100644
--- a/skins/standard/global.css
+++ b/skins/standard/global.css
@@ -28,6 +28,10 @@
         color: #000;
         background: #fff url("global/body-back.gif") repeat-x;
     }
+    body, td, th, input {
+        font-family: Verdana, sans-serif;
+        font-size: small;
+    }    
 /* global (end) */
 
 /* header (begin) */
@@ -41,11 +45,6 @@
         display: inline;
     }
 
-    #header .btn,
-    #header .txt {
-        font-size: 80%;
-    }
-
     #header .links {
         font-size: 85%;
         border-left: 1px solid silver;
@@ -356,8 +355,35 @@ div.user_match {
     vertical-align: top;
     font-weight: bold;
 }
-.field_value {
+.field_value, form#Create th, form#Create td {
+    vertical-align: top;
+}
+
+.calendar_button {
+    background: transparent url("global/calendar.png") no-repeat;
+    width: 20px;
+    height: 20px;
+    vertical-align: middle;
+}
+.calendar_button span { display: none }
+/* These classes are set by YUI. */
+.yui-calcontainer {
+    display: none; 
+    background-color: white; 
+    padding: 10px;
+    border: 1px solid #404D6C;
+}
+
+form#Create th {
+    text-align: right;
+}
+
+form#Create .comment {
     vertical-align: top;
+    overflow: auto;
+    color: green;
+    margin: 0 0.5em;
+    padding: 0.3em;
 }
 
 #keyword-chooser {
@@ -370,3 +396,5 @@ div.user_match {
     -moz-border-radius: 5px;
     background: white;
 }
+
+
diff --git a/skins/standard/global/CVS/Entries b/skins/standard/global/CVS/Entries
index 1d4b4ef3c15e6d56dddd65870f6a072d783d36d8..14d209955111281acad672039f7ae735ce75583e 100644
--- a/skins/standard/global/CVS/Entries
+++ b/skins/standard/global/CVS/Entries
@@ -1,3 +1,4 @@
-/body-back.gif/1.1/Fri Mar 11 03:07:18 2005/-kb/TBUGZILLA-3_1_2
-/header.png/1.1/Thu Feb  3 19:23:17 2005/-kb/TBUGZILLA-3_1_2
+/body-back.gif/1.1/Fri Mar 11 03:07:18 2005/-kb/TBUGZILLA-3_1_3
+/calendar.png/1.1/Thu Nov 29 02:20:30 2007/-kb/TBUGZILLA-3_1_3
+/header.png/1.1/Thu Feb  3 19:23:17 2005/-kb/TBUGZILLA-3_1_3
 D
diff --git a/skins/standard/global/CVS/Tag b/skins/standard/global/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/skins/standard/global/CVS/Tag
+++ b/skins/standard/global/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/skins/standard/global/calendar.png b/skins/standard/global/calendar.png
new file mode 100644
index 0000000000000000000000000000000000000000..0eb9ca78ec9e03d96fe5010fa19c2347286746b2
Binary files /dev/null and b/skins/standard/global/calendar.png differ
diff --git a/skins/standard/index/CVS/Entries b/skins/standard/index/CVS/Entries
index 13bb4f8337a028a203afaf2331bd24c71590a597..e3aba5f02c939379ea56ed2a2a147e637f944830 100644
--- a/skins/standard/index/CVS/Entries
+++ b/skins/standard/index/CVS/Entries
@@ -1,2 +1,2 @@
-/front.png/1.1/Thu Feb  3 19:23:17 2005/-kb/TBUGZILLA-3_1_2
+/front.png/1.1/Thu Feb  3 19:23:17 2005/-kb/TBUGZILLA-3_1_3
 D
diff --git a/skins/standard/index/CVS/Tag b/skins/standard/index/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/skins/standard/index/CVS/Tag
+++ b/skins/standard/index/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/skins/standard/show_bug.css b/skins/standard/show_bug.css
new file mode 100644
index 0000000000000000000000000000000000000000..0546b4165ee7f03a894b2620320283c7afe767e8
--- /dev/null
+++ b/skins/standard/show_bug.css
@@ -0,0 +1,65 @@
+.bz_alias_short_desc_container {
+    margin: 8px 0; 
+    padding: 0.3em; 
+    background-color: rgb(208, 208, 208); 
+    -moz-border-radius: 0.5em; 
+    font-size: 125%; 
+    font-weight: bold;
+}
+
+.bz_column_spacer {
+    width: 2em;
+}
+
+.bz_default_hidden {
+    display: none;
+}
+
+.related_actions {
+    font-size: 0.85em; 
+    float: right;
+    list-style-type: none;
+    white-space: nowrap;
+    margin: 0;
+    padding: 0;
+}
+
+.related_actions li {
+    display: inline;
+}
+
+.bz_show_bug_column {
+  vertical-align: top;
+}
+
+.bz_section_spacer {
+    height: 1em;
+}
+
+#bz_field_status {
+    white-space: nowrap;
+}
+
+.bz_time_tracking_table {
+    border-collapse: collapse;
+}
+
+.bz_time_tracking_table th {
+    text-align: center;
+    background-color: #ccc;
+}
+
+.bz_time_tracking_table td {
+    text-align: center;
+}
+
+.bz_time_tracking_table th, 
+.bz_time_tracking_table td {
+    padding: 4px;
+    border: 1px solid black;
+
+}
+
+.bz_time_tracking_table .bz_summarize_time {
+    text-align: right;
+}
diff --git a/skins/standard/yui/CVS/Entries b/skins/standard/yui/CVS/Entries
new file mode 100644
index 0000000000000000000000000000000000000000..2eb68fe10b73b238de38cdf82cee841054ab96a9
--- /dev/null
+++ b/skins/standard/yui/CVS/Entries
@@ -0,0 +1,3 @@
+/calendar.css/1.1/Thu Nov 29 02:20:31 2007//TBUGZILLA-3_1_3
+/sprite.png/1.1/Thu Nov 29 02:20:31 2007/-kb/TBUGZILLA-3_1_3
+D
diff --git a/skins/standard/yui/CVS/Repository b/skins/standard/yui/CVS/Repository
new file mode 100644
index 0000000000000000000000000000000000000000..3b77e6c3e820237cc0e57a5d5c91e70a69a0d780
--- /dev/null
+++ b/skins/standard/yui/CVS/Repository
@@ -0,0 +1 @@
+mozilla/webtools/bugzilla/skins/standard/yui
diff --git a/skins/standard/yui/CVS/Root b/skins/standard/yui/CVS/Root
new file mode 100644
index 0000000000000000000000000000000000000000..cdb6f4a0739a0dc53e628026726036377dec3637
--- /dev/null
+++ b/skins/standard/yui/CVS/Root
@@ -0,0 +1 @@
+:pserver:anonymous@cvs-mirror.mozilla.org:/cvsroot
diff --git a/skins/standard/yui/CVS/Tag b/skins/standard/yui/CVS/Tag
new file mode 100644
index 0000000000000000000000000000000000000000..31d8633e2f2aba270fc0fec77fda99283c580eea
--- /dev/null
+++ b/skins/standard/yui/CVS/Tag
@@ -0,0 +1 @@
+NBUGZILLA-3_1_3
diff --git a/skins/standard/yui/calendar.css b/skins/standard/yui/calendar.css
new file mode 100644
index 0000000000000000000000000000000000000000..80886d511744553fc70f4d15ee715cc8e27fad18
--- /dev/null
+++ b/skins/standard/yui/calendar.css
@@ -0,0 +1,7 @@
+/*
+Copyright (c) 2007, Yahoo! Inc. All rights reserved.
+Code licensed under the BSD License:
+http://developer.yahoo.net/yui/license.txt
+version: 2.3.1
+*/
+.yui-calcontainer{position:relative;float:left;_overflow:hidden;}.yui-calcontainer iframe{position:absolute;border:none;margin:0;padding:0;z-index:0;width:100%;height:100%;left:0px;top:0px;}.yui-calcontainer iframe.fixedsize{width:50em;height:50em;top:-1px;left:-1px;}.yui-calcontainer.multi .groupcal{z-index:1;float:left;position:relative;}.yui-calcontainer .title{position:relative;z-index:1;}.yui-calcontainer .close-icon{position:absolute;z-index:1;}.yui-calendar{position:relative;}.yui-calendar .calnavleft{position:absolute;z-index:1;}.yui-calendar .calnavright{position:absolute;z-index:1;}.yui-calendar .calheader{position:relative;width:100%;text-align:center;}.yui-calendar .calbody a:hover{background:inherit;}p#clear{clear:left;padding-top:10px;}.yui-skin-sam .yui-calcontainer{background-color:#f2f2f2;border:1px solid #808080;padding:10px;}.yui-skin-sam .yui-calcontainer.multi{padding:0 5px 0 5px;}.yui-skin-sam .yui-calcontainer.multi .groupcal{background-color:transparent;border:none;padding:10px 5px 10px 5px;margin:0;}.yui-skin-sam .yui-calcontainer .title{background:url(sprite.png) repeat-x 0 0;border-bottom:1px solid #cccccc;font:100% sans-serif;color:#000;font-weight:bold;height:auto;padding:.4em;margin:0 -10px 10px -10px;top:0;left:0;text-align:left;}.yui-skin-sam .yui-calcontainer.multi .title{margin:0 -5px 0 -5px;}.yui-skin-sam .yui-calcontainer.withtitle{padding-top:0;}.yui-skin-sam .yui-calcontainer .calclose{background:url(sprite.png) no-repeat 0 -300px;width:25px;height:15px;top:.4em;right:.4em;cursor:pointer;}.yui-skin-sam .yui-calendar{border-spacing:0;border-collapse:collapse;font:100% sans-serif;text-align:center;}.yui-skin-sam .yui-calendar .calhead{background:transparent;border:none;vertical-align:middle;}.yui-skin-sam .yui-calendar .calheader{background:transparent;font-weight:bold;padding:0 0 .6em 0;text-align:center;}.yui-skin-sam .yui-calendar .calheader img{border:none;}.yui-skin-sam .yui-calendar .calnavleft{background:url(sprite.png) no-repeat 0 -450px;width:25px;height:15px;top:0;bottom:0;left:-10px;margin-left:.4em;cursor:pointer;}.yui-skin-sam .yui-calendar .calnavright{background:url(sprite.png) no-repeat 0 -500px;width:25px;height:15px;top:0;bottom:0;right:-10px;margin-right:.4em;cursor:pointer;}.yui-skin-sam .yui-calendar .calweekdayrow{height:2em;}.yui-skin-sam .yui-calendar .calweekdaycell{color:#000;font-weight:bold;text-align:center;width:2em;}.yui-skin-sam .yui-calendar .calfoot{background-color:#f2f2f2;}.yui-skin-sam .yui-calendar .calrowhead,.yui-skin-sam .yui-calendar .calrowfoot{color:#a6a6a6;font-size:85%;font-style:normal;font-weight:normal;}.yui-skin-sam .yui-calendar .calrowhead{text-align:right;padding-right:2px;}.yui-skin-sam .yui-calendar .calrowfoot{text-align:left;padding-left:2px;}.yui-skin-sam .yui-calendar td.calcell{border:1px solid #cccccc;background:#fff;padding:1px;height:1.6em;line-height:1.6em;text-align:center;white-space:nowrap;}.yui-skin-sam .yui-calendar td.calcell a{color:#0066cc;display:block;height:100%;text-decoration:none;}.yui-skin-sam .yui-calendar td.calcell.today{background-color:#000;}.yui-skin-sam .yui-calendar td.calcell.today a{background-color:#fff;}.yui-skin-sam .yui-calendar td.calcell.oom{background-color:#cccccc;color:#a6a6a6;cursor:default;}.yui-skin-sam .yui-calendar td.calcell.selected{background-color:#fff;color:#000;}.yui-skin-sam .yui-calendar td.calcell.selected a{background-color:#b3d4ff;color:#000;}.yui-skin-sam .yui-calendar td.calcell.calcellhover{background-color:#426fd9;color:#fff;cursor:pointer;}.yui-skin-sam .yui-calendar td.calcell.calcellhover a{background-color:#426fd9;color:#fff;}.yui-skin-sam .yui-calendar td.calcell.previous{color:#e0e0e0;}.yui-skin-sam .yui-calendar td.calcell.restricted{text-decoration:line-through;}.yui-skin-sam .yui-calendar td.calcell.highlight1{background-color:#ccff99;}.yui-skin-sam .yui-calendar td.calcell.highlight2{background-color:#99ccff;}.yui-skin-sam .yui-calendar td.calcell.highlight3{background-color:#ffcccc;}.yui-skin-sam .yui-calendar td.calcell.highlight4{background-color:#ccff99;}
diff --git a/skins/standard/yui/sprite.png b/skins/standard/yui/sprite.png
new file mode 100644
index 0000000000000000000000000000000000000000..afd65e05aaabc820fc2e6bba0740818773fcd599
Binary files /dev/null and b/skins/standard/yui/sprite.png differ
diff --git a/summarize_time.cgi b/summarize_time.cgi
index df1297e5e06bbd3b2fc56de79d1a3922b8a919db..071f89a67ad5de85e01ce91157c624ce0a3372b5 100755
--- a/summarize_time.cgi
+++ b/summarize_time.cgi
@@ -19,7 +19,7 @@
 
 use strict;
 
-use lib qw(.);
+use lib qw(. lib);
 
 use Date::Parse;         # strptime
 
diff --git a/t/007util.t b/t/007util.t
index 5f2c998d1675850e743d85846bd5eed00d56718f..18d58148bd3288012f5c035ac74cfd0e32acd799 100644
--- a/t/007util.t
+++ b/t/007util.t
@@ -28,7 +28,7 @@ use lib 't';
 use Support::Files;
 
 BEGIN { 
-        use Test::More tests => 13;
+        use Test::More tests => 12;
         use_ok(Bugzilla);
         use_ok(Bugzilla::Util);
 }
@@ -48,9 +48,6 @@ is(html_quote("<lala&>"),"&lt;lala&amp;&gt;",'html_quote');
 #url_quote():
 is(url_quote("<lala&>gaa\"'[]{\\"),"%3Clala%26%3Egaa%22%27%5B%5D%7B%5C",'url_quote');
 
-#value_quote():
-is(value_quote("<lal\na&>g\naa\"'[\n]{\\"),"&lt;lal&#013;a&amp;&gt;g&#013;aa&quot;'[&#013;]{\\",'value_quote');
-
 #lsearch():
 my @list = ('apple','pear','plum','<"\\%');
 is(lsearch(\@list,'pear'),1,'lsearch 1');
diff --git a/t/008filter.t b/t/008filter.t
index d4053461e75b7210986a36db72a0d3a796098148..8b92d94d0344ea55958574b38437d808541083f9 100644
--- a/t/008filter.t
+++ b/t/008filter.t
@@ -176,7 +176,7 @@ sub directive_ok {
     return 1 if $directive =~ /^(IF|END|UNLESS|FOREACH|PROCESS|INCLUDE|
                                  BLOCK|USE|ELSE|NEXT|LAST|DEFAULT|FLUSH|
                                  ELSIF|SET|SWITCH|CASE|WHILE|RETURN|STOP|
-                                 TRY|CATCH|FINAL|THROW|CLEAR|MACRO)/x;
+                                 TRY|CATCH|FINAL|THROW|CLEAR|MACRO|FILTER)/x;
 
     # ? :
     if ($directive =~ /.+\?(.+):(.+)/) {
diff --git a/t/CVS/Entries b/t/CVS/Entries
index 42ce978502768e809f5922920d9fa8f283abab6f..4b6cae3762a659f8f4e97a3b49bcf738c08a936b 100644
--- a/t/CVS/Entries
+++ b/t/CVS/Entries
@@ -1,13 +1,13 @@
-/001compile.t/1.16/Thu Aug  9 12:36:09 2007//TBUGZILLA-3_1_2
-/002goodperl.t/1.15/Wed Sep  8 22:46:34 2004//TBUGZILLA-3_1_2
-/003safesys.t/1.6/Sun Dec  5 14:13:27 2004//TBUGZILLA-3_1_2
-/004template.t/1.39/Mon Aug 20 18:24:38 2007//TBUGZILLA-3_1_2
-/005no_tabs.t/1.13/Fri Aug  5 23:47:27 2005//TBUGZILLA-3_1_2
-/006spellcheck.t/1.6/Wed Jul 25 14:47:20 2007//TBUGZILLA-3_1_2
-/007util.t/1.8/Tue Jun 27 10:54:05 2006//TBUGZILLA-3_1_2
-/008filter.t/1.26/Sat Oct 14 20:26:50 2006//TBUGZILLA-3_1_2
-/009bugwords.t/1.7/Wed Jul 25 14:51:00 2007//TBUGZILLA-3_1_2
-/010dependencies.t/1.1/Tue Sep  5 17:02:45 2006//TBUGZILLA-3_1_2
-/011pod.t/1.1/Tue Jul 26 14:23:50 2005//TBUGZILLA-3_1_2
-/012throwables.t/1.5/Wed Oct  4 20:20:59 2006//TBUGZILLA-3_1_2
+/001compile.t/1.16/Thu Aug  9 12:36:09 2007//TBUGZILLA-3_1_3
+/002goodperl.t/1.15/Wed Sep  8 22:46:34 2004//TBUGZILLA-3_1_3
+/003safesys.t/1.6/Sun Dec  5 14:13:27 2004//TBUGZILLA-3_1_3
+/004template.t/1.39/Mon Aug 20 18:24:38 2007//TBUGZILLA-3_1_3
+/005no_tabs.t/1.13/Fri Aug  5 23:47:27 2005//TBUGZILLA-3_1_3
+/006spellcheck.t/1.6/Wed Jul 25 14:47:20 2007//TBUGZILLA-3_1_3
+/007util.t/1.9/Sun Oct  7 22:56:37 2007//TBUGZILLA-3_1_3
+/008filter.t/1.27/Sun Jan 27 19:21:13 2008//TBUGZILLA-3_1_3
+/009bugwords.t/1.7/Wed Jul 25 14:51:00 2007//TBUGZILLA-3_1_3
+/010dependencies.t/1.1/Tue Sep  5 17:02:45 2006//TBUGZILLA-3_1_3
+/011pod.t/1.1/Tue Jul 26 14:23:50 2005//TBUGZILLA-3_1_3
+/012throwables.t/1.5/Wed Oct  4 20:20:59 2006//TBUGZILLA-3_1_3
 D/Support////
diff --git a/t/CVS/Tag b/t/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/t/CVS/Tag
+++ b/t/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/t/Support/CVS/Entries b/t/Support/CVS/Entries
index 7d5cddfbff956200f23b6a35f4d7d6a6fb897530..1638bc0c67aaa3793070400023ac53b38925e32d 100644
--- a/t/Support/CVS/Entries
+++ b/t/Support/CVS/Entries
@@ -1,4 +1,4 @@
-/Files.pm/1.23/Fri Aug  3 13:41:43 2007//TBUGZILLA-3_1_2
-/Systemexec.pm/1.2/Fri Oct 19 22:39:51 2001//TBUGZILLA-3_1_2
-/Templates.pm/1.15/Tue Jul  4 22:25:47 2006//TBUGZILLA-3_1_2
+/Files.pm/1.23/Fri Aug  3 13:41:43 2007//TBUGZILLA-3_1_3
+/Systemexec.pm/1.2/Fri Oct 19 22:39:51 2001//TBUGZILLA-3_1_3
+/Templates.pm/1.15/Tue Jul  4 22:25:47 2006//TBUGZILLA-3_1_3
 D
diff --git a/t/Support/CVS/Tag b/t/Support/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/t/Support/CVS/Tag
+++ b/t/Support/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/template/CVS/Entries b/template/CVS/Entries
index 8d3a4baa931138286fd0765637b2536738dd28c8..3492746f2d0c18d65b0431ff55552de088a5eb33 100644
--- a/template/CVS/Entries
+++ b/template/CVS/Entries
@@ -1,2 +1,2 @@
-/.cvsignore/1.3/Tue May  7 21:33:53 2002//TBUGZILLA-3_1_2
+/.cvsignore/1.3/Tue May  7 21:33:53 2002//TBUGZILLA-3_1_3
 D/en////
diff --git a/template/CVS/Tag b/template/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/template/CVS/Tag
+++ b/template/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/template/en/CVS/Entries b/template/en/CVS/Entries
index 13daf999784d23b83155573872b86a1aa8184a03..4887f9a487ad95848074f476ae50ef2add0f686a 100644
--- a/template/en/CVS/Entries
+++ b/template/en/CVS/Entries
@@ -1,3 +1,3 @@
-/.cvsignore/1.1/Wed Apr 24 07:29:49 2002//TBUGZILLA-3_1_2
+/.cvsignore/1.1/Wed Apr 24 07:29:49 2002//TBUGZILLA-3_1_3
 D/default////
 D/extension////
diff --git a/template/en/CVS/Tag b/template/en/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/template/en/CVS/Tag
+++ b/template/en/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/template/en/default/CVS/Entries b/template/en/default/CVS/Entries
index de9972823972619301f8a173cf8bf7a9f3745c76..271be9cff69762cc2666192bf2f250e312b6ff8a 100644
--- a/template/en/default/CVS/Entries
+++ b/template/en/default/CVS/Entries
@@ -1,9 +1,9 @@
-/config.js.tmpl/1.9/Mon Aug 20 18:24:39 2007//TBUGZILLA-3_1_2
-/config.rdf.tmpl/1.9/Mon Aug 20 18:24:39 2007//TBUGZILLA-3_1_2
-/filterexceptions.pl/1.106/Thu Aug 23 15:34:38 2007//TBUGZILLA-3_1_2
-/index.html.tmpl/1.39/Mon Aug 20 18:24:39 2007//TBUGZILLA-3_1_2
-/sidebar.xul.tmpl/1.25/Mon Aug 20 18:24:39 2007//TBUGZILLA-3_1_2
-/welcome-admin.html.tmpl/1.3/Mon Aug 20 18:24:39 2007//TBUGZILLA-3_1_2
+/config.js.tmpl/1.10/Fri Oct  5 22:54:41 2007//TBUGZILLA-3_1_3
+/config.rdf.tmpl/1.11/Sun Oct  7 23:18:13 2007//TBUGZILLA-3_1_3
+/filterexceptions.pl/1.110/Sun Dec  2 22:55:12 2007//TBUGZILLA-3_1_3
+/index.html.tmpl/1.39/Mon Aug 20 18:24:39 2007//TBUGZILLA-3_1_3
+/sidebar.xul.tmpl/1.25/Mon Aug 20 18:24:39 2007//TBUGZILLA-3_1_3
+/welcome-admin.html.tmpl/1.3/Mon Aug 20 18:24:39 2007//TBUGZILLA-3_1_3
 D/account////
 D/admin////
 D/attachment////
diff --git a/template/en/default/CVS/Tag b/template/en/default/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/template/en/default/CVS/Tag
+++ b/template/en/default/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/template/en/default/account/CVS/Entries b/template/en/default/account/CVS/Entries
index 1d86e5d0af9e32bef41c899e00b781eabe9eacc7..447b6c0b9afff6a0278dac8ca819c659e7fc95f3 100644
--- a/template/en/default/account/CVS/Entries
+++ b/template/en/default/account/CVS/Entries
@@ -1,7 +1,7 @@
-/cancel-token.txt.tmpl/1.14/Mon Aug 20 18:24:40 2007//TBUGZILLA-3_1_2
-/create.html.tmpl/1.12/Mon Aug 20 18:24:40 2007//TBUGZILLA-3_1_2
-/created.html.tmpl/1.9/Mon Aug 20 18:24:40 2007//TBUGZILLA-3_1_2
-/profile-activity.html.tmpl/1.4/Mon Aug 20 18:24:40 2007//TBUGZILLA-3_1_2
+/cancel-token.txt.tmpl/1.14/Mon Aug 20 18:24:40 2007//TBUGZILLA-3_1_3
+/create.html.tmpl/1.12/Mon Aug 20 18:24:40 2007//TBUGZILLA-3_1_3
+/created.html.tmpl/1.9/Mon Aug 20 18:24:40 2007//TBUGZILLA-3_1_3
+/profile-activity.html.tmpl/1.4/Mon Aug 20 18:24:40 2007//TBUGZILLA-3_1_3
 D/auth////
 D/email////
 D/password////
diff --git a/template/en/default/account/CVS/Tag b/template/en/default/account/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/template/en/default/account/CVS/Tag
+++ b/template/en/default/account/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/template/en/default/account/auth/CVS/Entries b/template/en/default/account/auth/CVS/Entries
index 15399bb00028c7353fe08d2c576b114138029772..7669584f03e3164cccad94e0e6336775953bb910 100644
--- a/template/en/default/account/auth/CVS/Entries
+++ b/template/en/default/account/auth/CVS/Entries
@@ -1,3 +1,3 @@
-/login-small.html.tmpl/1.10/Mon Aug 20 18:24:40 2007//TBUGZILLA-3_1_2
-/login.html.tmpl/1.20/Mon Aug 20 18:24:40 2007//TBUGZILLA-3_1_2
+/login-small.html.tmpl/1.10/Mon Aug 20 18:24:40 2007//TBUGZILLA-3_1_3
+/login.html.tmpl/1.20/Mon Aug 20 18:24:40 2007//TBUGZILLA-3_1_3
 D
diff --git a/template/en/default/account/auth/CVS/Tag b/template/en/default/account/auth/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/template/en/default/account/auth/CVS/Tag
+++ b/template/en/default/account/auth/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/template/en/default/account/email/CVS/Entries b/template/en/default/account/email/CVS/Entries
index ebc3e9f7749ab28818f873562caa85607a99f133..b2d9d3199060c75b4f6c8a05c77c09ee2b9a1739 100644
--- a/template/en/default/account/email/CVS/Entries
+++ b/template/en/default/account/email/CVS/Entries
@@ -1,6 +1,6 @@
-/change-new.txt.tmpl/1.12/Mon Aug 20 18:24:41 2007//TBUGZILLA-3_1_2
-/change-old.txt.tmpl/1.13/Mon Aug 20 18:24:41 2007//TBUGZILLA-3_1_2
-/confirm-new.html.tmpl/1.5/Mon Aug 20 18:24:41 2007//TBUGZILLA-3_1_2
-/confirm.html.tmpl/1.11/Mon Aug 20 18:24:41 2007//TBUGZILLA-3_1_2
-/request-new.txt.tmpl/1.6/Mon Aug 20 18:24:41 2007//TBUGZILLA-3_1_2
+/change-new.txt.tmpl/1.12/Mon Aug 20 18:24:41 2007//TBUGZILLA-3_1_3
+/change-old.txt.tmpl/1.13/Mon Aug 20 18:24:41 2007//TBUGZILLA-3_1_3
+/confirm-new.html.tmpl/1.5/Mon Aug 20 18:24:41 2007//TBUGZILLA-3_1_3
+/confirm.html.tmpl/1.11/Mon Aug 20 18:24:41 2007//TBUGZILLA-3_1_3
+/request-new.txt.tmpl/1.6/Mon Aug 20 18:24:41 2007//TBUGZILLA-3_1_3
 D
diff --git a/template/en/default/account/email/CVS/Tag b/template/en/default/account/email/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/template/en/default/account/email/CVS/Tag
+++ b/template/en/default/account/email/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/template/en/default/account/password/CVS/Entries b/template/en/default/account/password/CVS/Entries
index ea26b5ed49f4eec5a6f89c09083a70e08e553d0a..4bed6355d00f07528d232c0ea73a7091600a48e6 100644
--- a/template/en/default/account/password/CVS/Entries
+++ b/template/en/default/account/password/CVS/Entries
@@ -1,3 +1,3 @@
-/forgotten-password.txt.tmpl/1.10/Mon Aug 20 18:24:42 2007//TBUGZILLA-3_1_2
-/set-forgotten-password.html.tmpl/1.8/Mon Aug 20 18:24:42 2007//TBUGZILLA-3_1_2
+/forgotten-password.txt.tmpl/1.10/Mon Aug 20 18:24:42 2007//TBUGZILLA-3_1_3
+/set-forgotten-password.html.tmpl/1.8/Mon Aug 20 18:24:42 2007//TBUGZILLA-3_1_3
 D
diff --git a/template/en/default/account/password/CVS/Tag b/template/en/default/account/password/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/template/en/default/account/password/CVS/Tag
+++ b/template/en/default/account/password/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/template/en/default/account/prefs/CVS/Entries b/template/en/default/account/prefs/CVS/Entries
index b90ba39778b672339d49eb90ba0d6ff798f1f2d1..3a82868ee3fabddfeec41ba721272262e05302b2 100644
--- a/template/en/default/account/prefs/CVS/Entries
+++ b/template/en/default/account/prefs/CVS/Entries
@@ -1,7 +1,7 @@
-/account.html.tmpl/1.9/Mon Aug 20 18:24:42 2007//TBUGZILLA-3_1_2
-/email.html.tmpl/1.30/Mon Aug 20 18:24:42 2007//TBUGZILLA-3_1_2
-/permissions.html.tmpl/1.13/Mon Aug 20 18:24:42 2007//TBUGZILLA-3_1_2
-/prefs.html.tmpl/1.29/Mon Aug 20 18:24:42 2007//TBUGZILLA-3_1_2
-/saved-searches.html.tmpl/1.17/Mon Aug 20 18:24:42 2007//TBUGZILLA-3_1_2
-/settings.html.tmpl/1.6/Mon Aug 20 18:24:42 2007//TBUGZILLA-3_1_2
+/account.html.tmpl/1.9/Mon Aug 20 18:24:42 2007//TBUGZILLA-3_1_3
+/email.html.tmpl/1.30/Mon Aug 20 18:24:42 2007//TBUGZILLA-3_1_3
+/permissions.html.tmpl/1.13/Mon Aug 20 18:24:42 2007//TBUGZILLA-3_1_3
+/prefs.html.tmpl/1.30/Sun Oct 21 20:59:28 2007//TBUGZILLA-3_1_3
+/saved-searches.html.tmpl/1.17/Mon Aug 20 18:24:42 2007//TBUGZILLA-3_1_3
+/settings.html.tmpl/1.6/Mon Aug 20 18:24:42 2007//TBUGZILLA-3_1_3
 D
diff --git a/template/en/default/account/prefs/CVS/Tag b/template/en/default/account/prefs/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/template/en/default/account/prefs/CVS/Tag
+++ b/template/en/default/account/prefs/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/template/en/default/account/prefs/prefs.html.tmpl b/template/en/default/account/prefs/prefs.html.tmpl
index 080a83c2b0c9029b9bdbf4c06eb8efb714539423..ed9cbce72ed6b683b3131aae9a0eac6c3f895927 100644
--- a/template/en/default/account/prefs/prefs.html.tmpl
+++ b/template/en/default/account/prefs/prefs.html.tmpl
@@ -41,6 +41,7 @@
    subheader = filtered_login
    style_urls = ['skins/standard/admin.css']
    javascript_urls = ['js/util.js']
+   doc_section = "userpreferences.html"
  %]
 
 [% tabs = [{ name => "settings", label => "General Preferences",
diff --git a/template/en/default/admin/CVS/Entries b/template/en/default/admin/CVS/Entries
index 273e03e476ad664e7f4868157fc5198c79437dc6..c004c8129860fa9f0ad09c17d6ce3a6b4aac1222 100644
--- a/template/en/default/admin/CVS/Entries
+++ b/template/en/default/admin/CVS/Entries
@@ -1,7 +1,7 @@
-/admin.html.tmpl/1.4/Mon Aug 20 18:24:43 2007//TBUGZILLA-3_1_2
-/confirm-action.html.tmpl/1.2/Mon Aug 20 18:24:43 2007//TBUGZILLA-3_1_2
-/sudo.html.tmpl/1.6/Mon Aug 20 18:24:43 2007//TBUGZILLA-3_1_2
-/table.html.tmpl/1.9/Mon Aug 20 18:24:43 2007//TBUGZILLA-3_1_2
+/admin.html.tmpl/1.6/Tue Nov 13 21:39:05 2007//TBUGZILLA-3_1_3
+/confirm-action.html.tmpl/1.2/Mon Aug 20 18:24:43 2007//TBUGZILLA-3_1_3
+/sudo.html.tmpl/1.7/Mon Oct 22 21:41:59 2007//TBUGZILLA-3_1_3
+/table.html.tmpl/1.9/Mon Aug 20 18:24:43 2007//TBUGZILLA-3_1_3
 D/classifications////
 D/components////
 D/custom_fields////
diff --git a/template/en/default/admin/CVS/Tag b/template/en/default/admin/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/template/en/default/admin/CVS/Tag
+++ b/template/en/default/admin/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/template/en/default/admin/admin.html.tmpl b/template/en/default/admin/admin.html.tmpl
index 0a1aed28997d70c22e3e396b6409cfd4e712d5e6..c681767b5bca0228bb86bb41affd287615e09e71 100644
--- a/template/en/default/admin/admin.html.tmpl
+++ b/template/en/default/admin/admin.html.tmpl
@@ -16,12 +16,13 @@
 [% PROCESS global/variables.none.tmpl %]
 
 [% title = BLOCK %]
-  Administrate your installation ([% terms.Bugzilla %]
+  Administer your installation ([% terms.Bugzilla %]
   [%+ constants.BUGZILLA_VERSION FILTER html %])
 [% END %]
 
 [% PROCESS global/header.html.tmpl title = title
                                    style_urls = ['skins/standard/admin.css']
+                                   doc_section = "administration.html"
 %]
 
 <div>
diff --git a/template/en/default/admin/classifications/CVS/Entries b/template/en/default/admin/classifications/CVS/Entries
index 8111f5e90395ac716fbfe96aed466b1f2670697f..e0e46258d50fa30df83f2b611ff33851ed7578e9 100644
--- a/template/en/default/admin/classifications/CVS/Entries
+++ b/template/en/default/admin/classifications/CVS/Entries
@@ -1,9 +1,6 @@
-/add.html.tmpl/1.5/Mon Aug 20 18:24:44 2007//TBUGZILLA-3_1_2
-/del.html.tmpl/1.8/Mon Aug 20 18:24:44 2007//TBUGZILLA-3_1_2
-/delete.html.tmpl/1.3/Mon Aug 20 18:24:44 2007//TBUGZILLA-3_1_2
-/edit.html.tmpl/1.12/Fri Aug 24 05:03:42 2007//TBUGZILLA-3_1_2
-/new.html.tmpl/1.3/Mon Aug 20 18:24:44 2007//TBUGZILLA-3_1_2
-/reclassify.html.tmpl/1.8/Mon Aug 20 18:24:44 2007//TBUGZILLA-3_1_2
-/select.html.tmpl/1.8/Mon Aug 20 18:24:44 2007//TBUGZILLA-3_1_2
-/update.html.tmpl/1.3/Mon Aug 20 18:24:44 2007//TBUGZILLA-3_1_2
+/add.html.tmpl/1.5/Mon Aug 20 18:24:44 2007//TBUGZILLA-3_1_3
+/del.html.tmpl/1.8/Mon Aug 20 18:24:44 2007//TBUGZILLA-3_1_3
+/edit.html.tmpl/1.12/Fri Aug 24 05:03:42 2007//TBUGZILLA-3_1_3
+/reclassify.html.tmpl/1.8/Mon Aug 20 18:24:44 2007//TBUGZILLA-3_1_3
+/select.html.tmpl/1.8/Mon Aug 20 18:24:44 2007//TBUGZILLA-3_1_3
 D
diff --git a/template/en/default/admin/classifications/CVS/Tag b/template/en/default/admin/classifications/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/template/en/default/admin/classifications/CVS/Tag
+++ b/template/en/default/admin/classifications/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/template/en/default/admin/classifications/delete.html.tmpl b/template/en/default/admin/classifications/delete.html.tmpl
deleted file mode 100644
index 38dc3dbfdcae7e64753106878b13020aa72ee005..0000000000000000000000000000000000000000
--- a/template/en/default/admin/classifications/delete.html.tmpl
+++ /dev/null
@@ -1,30 +0,0 @@
-[%# The contents of this file are subject to the Mozilla Public
-  # License Version 1.1 (the "License"); you may not use this file
-  # except in compliance with the License. You may obtain a copy of
-  # the License at http://www.mozilla.org/MPL/
-  #
-  # Software distributed under the License is distributed on an "AS
-  # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
-  # implied. See the License for the specific language governing
-  # rights and limitations under the License.
-  #
-  # The Original Code is the Bugzilla Bug Tracking System.
-  #
-  # The Initial Developer of the Original Code is Netscape Communications
-  # Corporation. Portions created by Netscape are
-  # Copyright (C) 1998 Netscape Communications Corporation. All
-  # Rights Reserved.
-  #
-  # Contributor(s): Albert Ting <alt@sonic.net>
-  #%]
-
-[% PROCESS global/header.html.tmpl
-  title = "Classification deleted"
-%]
-
-Classification [% classification.name FILTER html %] deleted.<br>
-
-<p>Back to the <a href="./">main [% terms.bugs %] page</a>
-or <a href="editclassifications.cgi"> edit</a> more classifications.
-
-[% PROCESS global/footer.html.tmpl %] 
diff --git a/template/en/default/admin/classifications/new.html.tmpl b/template/en/default/admin/classifications/new.html.tmpl
deleted file mode 100644
index dbc99df9cf947bdcf5f9f1f8bce1db4a126c355b..0000000000000000000000000000000000000000
--- a/template/en/default/admin/classifications/new.html.tmpl
+++ /dev/null
@@ -1,31 +0,0 @@
-[%# The contents of this file are subject to the Mozilla Public
-  # License Version 1.1 (the "License"); you may not use this file
-  # except in compliance with the License. You may obtain a copy of
-  # the License at http://www.mozilla.org/MPL/
-  #
-  # Software distributed under the License is distributed on an "AS
-  # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
-  # implied. See the License for the specific language governing
-  # rights and limitations under the License.
-  #
-  # The Original Code is the Bugzilla Bug Tracking System.
-  #
-  # The Initial Developer of the Original Code is Netscape Communications
-  # Corporation. Portions created by Netscape are
-  # Copyright (C) 1998 Netscape Communications Corporation. All
-  # Rights Reserved.
-  #
-  # Contributor(s): Albert Ting <alt@sonic.net>
-  #%]
-
-[% PROCESS global/header.html.tmpl
-  title = "Adding new classification"
-%]
-
-OK, done.
-
-<p>Back to the <a href="./">main [% terms.bugs %] page</a>,
-<a href="editproducts.cgi?action=add&amp;classification=[% classification FILTER url_quote %]">add</a> products to this new classification, 
-or <a href="editclassifications.cgi"> edit</a> more classifications.
-
-[% PROCESS global/footer.html.tmpl %] 
diff --git a/template/en/default/admin/classifications/update.html.tmpl b/template/en/default/admin/classifications/update.html.tmpl
deleted file mode 100644
index a67dbde3af840e64e13e6faf91054f46f180d141..0000000000000000000000000000000000000000
--- a/template/en/default/admin/classifications/update.html.tmpl
+++ /dev/null
@@ -1,40 +0,0 @@
-[%# The contents of this file are subject to the Mozilla Public
-  # License Version 1.1 (the "License"); you may not use this file
-  # except in compliance with the License. You may obtain a copy of
-  # the License at http://www.mozilla.org/MPL/
-  #
-  # Software distributed under the License is distributed on an "AS
-  # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
-  # implied. See the License for the specific language governing
-  # rights and limitations under the License.
-  #
-  # The Original Code is the Bugzilla Bug Tracking System.
-  #
-  # The Initial Developer of the Original Code is Netscape Communications
-  # Corporation. Portions created by Netscape are
-  # Copyright (C) 1998 Netscape Communications Corporation. All
-  # Rights Reserved.
-  #
-  # Contributor(s): Albert Ting <alt@sonic.net>
-  #%]
-
-[% PROCESS global/header.html.tmpl
-  title = "Update classification"
-%]
-
-[% IF updated_sortkey %] 
-  Updated sortkey.<br>
-[% END %]
-
-[% IF updated_description %] 
-  Updated description.<br>
-[% END %]
-
-[% IF updated_classification %] 
-  Updated classification name.<br>
-[% END %]
-
-<p>Back to the <a href="./">main [% terms.bugs %] page</a>
-or <a href="editclassifications.cgi"> edit</a> more classifications.
-
-[% PROCESS global/footer.html.tmpl %] 
diff --git a/template/en/default/admin/components/CVS/Entries b/template/en/default/admin/components/CVS/Entries
index e70659e8065f462168f1e54d0b1cfa4bd9fe7579..158efdb9589c5227220da3dc77f9f8d635f3ec4a 100644
--- a/template/en/default/admin/components/CVS/Entries
+++ b/template/en/default/admin/components/CVS/Entries
@@ -1,10 +1,7 @@
-/confirm-delete.html.tmpl/1.11/Mon Aug 20 18:24:44 2007//TBUGZILLA-3_1_2
-/create.html.tmpl/1.13/Mon Aug 20 18:24:44 2007//TBUGZILLA-3_1_2
-/created.html.tmpl/1.3/Mon Aug 20 18:24:44 2007//TBUGZILLA-3_1_2
-/deleted.html.tmpl/1.5/Mon Aug 20 18:24:44 2007//TBUGZILLA-3_1_2
-/edit.html.tmpl/1.15/Mon Aug 20 18:24:44 2007//TBUGZILLA-3_1_2
-/footer.html.tmpl/1.4/Mon Aug 20 18:24:44 2007//TBUGZILLA-3_1_2
-/list.html.tmpl/1.6/Mon Aug 20 18:24:44 2007//TBUGZILLA-3_1_2
-/select-product.html.tmpl/1.4/Mon Aug 20 18:24:44 2007//TBUGZILLA-3_1_2
-/updated.html.tmpl/1.8/Mon Aug 20 18:24:44 2007//TBUGZILLA-3_1_2
+/confirm-delete.html.tmpl/1.12/Sun Oct  7 23:18:21 2007//TBUGZILLA-3_1_3
+/create.html.tmpl/1.14/Thu Oct 11 23:07:24 2007//TBUGZILLA-3_1_3
+/edit.html.tmpl/1.15/Mon Aug 20 18:24:44 2007//TBUGZILLA-3_1_3
+/footer.html.tmpl/1.4/Mon Aug 20 18:24:44 2007//TBUGZILLA-3_1_3
+/list.html.tmpl/1.6/Mon Aug 20 18:24:44 2007//TBUGZILLA-3_1_3
+/select-product.html.tmpl/1.4/Mon Aug 20 18:24:44 2007//TBUGZILLA-3_1_3
 D
diff --git a/template/en/default/admin/components/CVS/Tag b/template/en/default/admin/components/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/template/en/default/admin/components/CVS/Tag
+++ b/template/en/default/admin/components/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/template/en/default/admin/components/confirm-delete.html.tmpl b/template/en/default/admin/components/confirm-delete.html.tmpl
index bd48ff882594899ef9d55b386896cea4ebf91afe..53bba1e357253b8cc840b11f0faa9530df6b36e4 100644
--- a/template/en/default/admin/components/confirm-delete.html.tmpl
+++ b/template/en/default/admin/components/confirm-delete.html.tmpl
@@ -74,7 +74,7 @@ from '[% product.name FILTER html %]' product
 <tr>
   <td valign="top">Product Milestone URL:</td>
   <td valign="top">
-    <a href="[% product.milestone_url FILTER uri %]">
+    <a href="[% product.milestone_url FILTER html %]">
       [% product.milestone_url FILTER html %]
     </a>
   </td>
diff --git a/template/en/default/admin/components/create.html.tmpl b/template/en/default/admin/components/create.html.tmpl
index 2cefd6d9393785b9e925090f26e68ddff08ddb2f..5e414d52ac994d1ef7c1db9a93b968c20db0e3c1 100644
--- a/template/en/default/admin/components/create.html.tmpl
+++ b/template/en/default/admin/components/create.html.tmpl
@@ -95,8 +95,6 @@
   <hr>
   <input type="submit" id="create" value="Add">
   <input type="hidden" name="action" value="new">
-  <input type="hidden" name='open_name' value='All Open'>
-  <input type="hidden" name='nonopen_name' value='All Closed'>
   <input type="hidden" name='product' value="[% product.name FILTER html %]">
   <input type="hidden" name="token" value="[% token FILTER html %]">
 </form>
diff --git a/template/en/default/admin/components/created.html.tmpl b/template/en/default/admin/components/created.html.tmpl
deleted file mode 100644
index 5a7745700d72936039d9950db1310f997ca86feb..0000000000000000000000000000000000000000
--- a/template/en/default/admin/components/created.html.tmpl
+++ /dev/null
@@ -1,40 +0,0 @@
-[%# The contents of this file are subject to the Mozilla Public
-  # License Version 1.1 (the "License"); you may not use this file
-  # except in compliance with the License. You may obtain a copy of
-  # the License at http://www.mozilla.org/MPL/
-  #
-  # Software distributed under the License is distributed on an "AS
-  # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
-  # implied. See the License for the specific language governing
-  # rights and limitations under the License.
-  #
-  # The Original Code is the Bugzilla Bug Tracking System.
-  #
-  # The Initial Developer of the Original Code is Netscape Communications
-  # Corporation. Portions created by Netscape are
-  # Copyright (C) 1998 Netscape Communications Corporation. All
-  # Rights Reserved.
-  #
-  # Contributor(s): Gavin Shelley <bugzilla@chimpychompy.org>
-  #%]
-
-[%# INTERFACE:
-  # comp: object; Bugzilla::Component object representing the component the
-  #               user created.
-  # product: object; Bugzilla::Product object representing the product to
-  #               which the component belongs.
-  #%]
-  
-[% title = BLOCK %]Adding new Component of Product
-                   '[% product.name FILTER html %]'[% END %]
-[% PROCESS global/header.html.tmpl
-  title = title
-%]
-
-<p>The component '<a href="editcomponents.cgi?action=edit&amp;product=
-   [%- product.name FILTER url_quote %]&amp;component=[% comp.name FILTER url_quote %]">
-   [%- comp.name FILTER html %]</a>' has been created.</p>
-
-[% PROCESS admin/components/footer.html.tmpl %]
-
-[% PROCESS global/footer.html.tmpl %]
diff --git a/template/en/default/admin/components/deleted.html.tmpl b/template/en/default/admin/components/deleted.html.tmpl
deleted file mode 100644
index 86940180ff3b783980dc48d52cba4f3efe422e33..0000000000000000000000000000000000000000
--- a/template/en/default/admin/components/deleted.html.tmpl
+++ /dev/null
@@ -1,58 +0,0 @@
-[%# The contents of this file are subject to the Mozilla Public
-  # License Version 1.1 (the "License"); you may not use this file
-  # except in compliance with the License. You may obtain a copy of
-  # the License at http://www.mozilla.org/MPL/
-  #
-  # Software distributed under the License is distributed on an "AS
-  # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
-  # implied. See the License for the specific language governing
-  # rights and limitations under the License.
-  #
-  # The Original Code is the Bugzilla Bug Tracking System.
-  #
-  # The Initial Developer of the Original Code is Netscape Communications
-  # Corporation. Portions created by Netscape are
-  # Copyright (C) 1998 Netscape Communications Corporation. All
-  # Rights Reserved.
-  #
-  # Contributor(s): Gavin Shelley <bugzilla@chimpychompy.org>
-  #%]
-
-[%# INTERFACE:
-  # comp: object; Bugzilla::Component object representing the component the
-  #               user deleted.
-  # product: object; Bugzilla::Product object representing the product to
-  #               which the component belongs.
-  #%]
-  
-[% title = BLOCK %]Deleted Component '[% comp.name FILTER html %]' from Product
-                   '[% product.name FILTER html %]'[% END %]
-[% PROCESS global/header.html.tmpl
-  title = title
-%]
-
-<p>
-[% IF comp.bug_count %]
-  [% comp.bug_count FILTER none %]
-  [%- IF comp.bug_count > 1 %] 
-    [%+ terms.bugs %]
-  [% ELSE %]
-    [%+ terms.bug %]
-  [% END %]
-  deleted.
-  </p><p>
-  All references to those deleted [% terms.bugs %] have been removed.
-[% ELSE %]
-  No [% terms.bugs %] existed for the component.
-[% END %]
-</p>
-
-<p>Flag inclusions and exclusions deleted.</p>
-
-<p>Component '[% comp.name FILTER html %]' deleted.</p>
-
-[% PROCESS admin/components/footer.html.tmpl
-  no_edit_component_link = 1
- %]
-
-[% PROCESS global/footer.html.tmpl %]
diff --git a/template/en/default/admin/components/updated.html.tmpl b/template/en/default/admin/components/updated.html.tmpl
deleted file mode 100644
index 176d653b7683703a78505f54bc9688ead1387288..0000000000000000000000000000000000000000
--- a/template/en/default/admin/components/updated.html.tmpl
+++ /dev/null
@@ -1,97 +0,0 @@
-[%# The contents of this file are subject to the Mozilla Public
-  # License Version 1.1 (the "License"); you may not use this file
-  # except in compliance with the License. You may obtain a copy of
-  # the License at http://www.mozilla.org/MPL/
-  #
-  # Software distributed under the License is distributed on an "AS
-  # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
-  # implied. See the License for the specific language governing
-  # rights and limitations under the License.
-  #
-  # The Original Code is the Bugzilla Bug Tracking System.
-  #
-  # The Initial Developer of the Original Code is Netscape Communications
-  # Corporation. Portions created by Netscape are
-  # Copyright (C) 1998 Netscape Communications Corporation. All
-  # Rights Reserved.
-  #
-  # Contributor(s): Gavin Shelley <bugzilla@chimpychompy.org>
-  #                 Akamai Technologies <bugzilla-dev@akamai.com>
-  #                 Max Kanat-Alexander <mkanat@bugzilla.org>
-  #%]
-
-[%# INTERFACE:
-  #
-  # 'updated_XXX' variables are booleans, and are defined if the
-  # 'XXX' field was updated during the edit just being handled.
-  #
-  # updated_name: the name of the component updated
-  #
-  # updated_description: the component description updated
-  #
-  # updated_initialowner: the default assignee updated
-  #
-  # updated_initialqacontact: the default qa contact updated
-  #
-  # updated_initialcc: the default initial cc list
-  #
-  # comp: object; Bugzilla::Component object representing the component 
-  #               user updated.
-  # product: object; Bugzilla::Product object representing the product to
-  #               which the component belongs.
-  #
-  # initial_cc_names: a comma-separated list of the login names of
-  #                   the Initial CC, if it was updated.
-  #%]
-  
-[% title = BLOCK %]Updating Component '[% comp.name FILTER html %]' of Product
-                   '[% product.name FILTER html %]'[% END %]
-[% PROCESS global/header.html.tmpl
-  title = title
-%]
-
-[% IF updated_description %]
-  <table>
-    <tr>
-      <td>Updated description to:</td>
-      <td>'[% comp.description FILTER html_light %]'</td>
-    </tr>
-  </table>
-[% END %]
-
-[% IF updated_initialowner %]
-  <p>Updated Default Assignee to: '[% comp.default_assignee.login FILTER html %]'.</p>
-[% END %]
-
-[% IF updated_initialqacontact %]
-  <p>
-  [% IF comp.default_qa_contact.id %]
-    Updated Default QA Contact to '[% comp.default_qa_contact.login FILTER html %]'.
-  [% ELSE %]
-    Removed Default QA Contact.
-  [% END %]
-  </p>
-[% END %]
-
-[% IF updated_name %]
-  <p>Updated Component name to: '[% comp.name FILTER html %]'.</p>
-[% END %]
-
-[% IF updated_initialcc %]
-  [% IF initial_cc_names %]
-    <p>Updated Default CC list to:
-      '[% initial_cc_names FILTER html %]'.</p>
-  [% ELSE %]
-    <p>Removed the Default CC list.</p>
-  [% END %]
-[% END %]
-
-[% UNLESS updated_description || updated_initialowner || 
-          updated_initialqacontact || updated_name  ||
-          updated_initialcc %]
-  <p>Nothing changed for component '[% comp.name FILTER html %]'.</p>
-[% END %]
-
-[% PROCESS admin/components/footer.html.tmpl %]
-
-[% PROCESS global/footer.html.tmpl %]
diff --git a/template/en/default/admin/custom_fields/CVS/Entries b/template/en/default/admin/custom_fields/CVS/Entries
index 667dcccecdbf61a9e679fc8f2dfd930e88a39e17..081641f2fb3ed384b86af3b5734cd7e4fe25ac29 100644
--- a/template/en/default/admin/custom_fields/CVS/Entries
+++ b/template/en/default/admin/custom_fields/CVS/Entries
@@ -1,4 +1,4 @@
-/create.html.tmpl/1.8/Mon Aug 20 18:24:45 2007//TBUGZILLA-3_1_2
-/edit.html.tmpl/1.7/Sat Sep  8 00:14:28 2007//TBUGZILLA-3_1_2
-/list.html.tmpl/1.5/Mon Aug 20 18:24:45 2007//TBUGZILLA-3_1_2
+/create.html.tmpl/1.9/Sun Nov 11 21:57:09 2007//TBUGZILLA-3_1_3
+/edit.html.tmpl/1.8/Sun Nov 11 21:57:09 2007//TBUGZILLA-3_1_3
+/list.html.tmpl/1.6/Sun Nov 11 21:57:09 2007//TBUGZILLA-3_1_3
 D
diff --git a/template/en/default/admin/custom_fields/CVS/Tag b/template/en/default/admin/custom_fields/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/template/en/default/admin/custom_fields/CVS/Tag
+++ b/template/en/default/admin/custom_fields/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/template/en/default/admin/custom_fields/create.html.tmpl b/template/en/default/admin/custom_fields/create.html.tmpl
index 4feb57393f5e1524752f1721ad57e496b06bea9c..5dd50ce3b47682d69e5859c6fb76a7e89dcb054f 100644
--- a/template/en/default/admin/custom_fields/create.html.tmpl
+++ b/template/en/default/admin/custom_fields/create.html.tmpl
@@ -21,7 +21,9 @@
 
 [% PROCESS global/header.html.tmpl
            title = "Add a new Custom Field"
-           onload = "document.getElementById('new_bugmail').disabled = true;" %]
+           onload = "document.getElementById('new_bugmail').disabled = true;"
+           doc_section = "custom-fields.html#add-custom-fields"
+%]
 
 <script type="text/javascript">
   <!--
diff --git a/template/en/default/admin/custom_fields/edit.html.tmpl b/template/en/default/admin/custom_fields/edit.html.tmpl
index b983bbcc6f818c2dcf6632655f21471f53699ddd..596e7e704eb49be59cb7b8eb860bc54337b6dc9f 100644
--- a/template/en/default/admin/custom_fields/edit.html.tmpl
+++ b/template/en/default/admin/custom_fields/edit.html.tmpl
@@ -25,7 +25,9 @@
 
 [% PROCESS global/header.html.tmpl
            title = title
-           onload = "toggleCheckbox(document.getElementById('enter_bug'), 'new_bugmail');" %]
+           onload = "toggleCheckbox(document.getElementById('enter_bug'), 'new_bugmail');"
+           doc_section = "custom-fields.html#edit-custom-fields"
+%]
 
 <script type="text/javascript">
   <!--
diff --git a/template/en/default/admin/custom_fields/list.html.tmpl b/template/en/default/admin/custom_fields/list.html.tmpl
index 51575570c71a6d1e69bb16a827881b5b06fa6fc2..acb3f680d35a205c757a75772db4d07fdb69ace2 100644
--- a/template/en/default/admin/custom_fields/list.html.tmpl
+++ b/template/en/default/admin/custom_fields/list.html.tmpl
@@ -19,7 +19,10 @@
 
 [% PROCESS "global/field-descs.none.tmpl" %]
 
-[% PROCESS global/header.html.tmpl title = "Custom Fields" %]
+[% PROCESS global/header.html.tmpl
+  title = "Custom Fields"
+  doc_section = "custom-fields.html"
+%]
 
 [% columns = [
      {
diff --git a/template/en/default/admin/fieldvalues/CVS/Entries b/template/en/default/admin/fieldvalues/CVS/Entries
index 64fee838121a18a4bd2d52857bd1679adee9a767..f57a38ed1cc9c2b74482777c678ae35298bfeaee 100644
--- a/template/en/default/admin/fieldvalues/CVS/Entries
+++ b/template/en/default/admin/fieldvalues/CVS/Entries
@@ -1,10 +1,7 @@
-/confirm-delete.html.tmpl/1.9/Mon Aug 20 18:24:46 2007//TBUGZILLA-3_1_2
-/create.html.tmpl/1.9/Mon Aug 20 18:24:46 2007//TBUGZILLA-3_1_2
-/created.html.tmpl/1.7/Mon Aug 20 18:24:46 2007//TBUGZILLA-3_1_2
-/deleted.html.tmpl/1.5/Mon Aug 20 18:24:46 2007//TBUGZILLA-3_1_2
-/edit.html.tmpl/1.11/Mon Aug 20 18:24:46 2007//TBUGZILLA-3_1_2
-/footer.html.tmpl/1.6/Mon Aug 20 18:24:46 2007//TBUGZILLA-3_1_2
-/list.html.tmpl/1.8/Mon Aug 20 18:24:46 2007//TBUGZILLA-3_1_2
-/select-field.html.tmpl/1.4/Mon Aug 20 18:24:46 2007//TBUGZILLA-3_1_2
-/updated.html.tmpl/1.6/Mon Aug 20 18:24:46 2007//TBUGZILLA-3_1_2
+/confirm-delete.html.tmpl/1.9/Mon Aug 20 18:24:46 2007//TBUGZILLA-3_1_3
+/create.html.tmpl/1.9/Mon Aug 20 18:24:46 2007//TBUGZILLA-3_1_3
+/edit.html.tmpl/1.11/Mon Aug 20 18:24:46 2007//TBUGZILLA-3_1_3
+/footer.html.tmpl/1.6/Mon Aug 20 18:24:46 2007//TBUGZILLA-3_1_3
+/list.html.tmpl/1.8/Mon Aug 20 18:24:46 2007//TBUGZILLA-3_1_3
+/select-field.html.tmpl/1.4/Mon Aug 20 18:24:46 2007//TBUGZILLA-3_1_3
 D
diff --git a/template/en/default/admin/fieldvalues/CVS/Tag b/template/en/default/admin/fieldvalues/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/template/en/default/admin/fieldvalues/CVS/Tag
+++ b/template/en/default/admin/fieldvalues/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/template/en/default/admin/fieldvalues/created.html.tmpl b/template/en/default/admin/fieldvalues/created.html.tmpl
deleted file mode 100644
index 4a31234cf65965bc3f1794343584a02d788ebd1d..0000000000000000000000000000000000000000
--- a/template/en/default/admin/fieldvalues/created.html.tmpl
+++ /dev/null
@@ -1,43 +0,0 @@
-[%# The contents of this file are subject to the Mozilla Public
-  # License Version 1.1 (the "License"); you may not use this file
-  # except in compliance with the License. You may obtain a copy of
-  # the License at http://www.mozilla.org/MPL/
-  #
-  # Software distributed under the License is distributed on an "AS
-  # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
-  # implied. See the License for the specific language governing
-  # rights and limitations under the License.
-  #
-  # The Original Code is the Bugzilla Bug Tracking System.
-  #
-  # Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
-  #%]
-
-[%# INTERFACE:
-  # value: string; the name of the newly created field value
-  # field: object; the field the value belongs to
-  #%]
-  
-[% title = BLOCK %]
-  New Value '[% value FILTER html %]' added to '[% field.description FILTER html %]'
-  ([% field.name FILTER html %]) field
-[% END %]
-[% PROCESS global/header.html.tmpl
-  title = title
-%]
-
-<p>The value '<a title="Edit value '[% value FILTER html %]' of 
-   for the '[% field.description FILTER html %]' field"
-   href="editvalues.cgi?action=edit&amp;field=
-   [%- field.name FILTER url_quote %]&amp;value=[% value FILTER url_quote %]">
-   [%- value FILTER html %]</a>' has been added as a valid choice for
-   the '[% field.description FILTER html %]' field.</p>
-
-[% IF field.name == "bug_status" %]
-  You should now visit the <a href="editworkflow.cgi">status workflow page</a>
-  to include your new [% terms.bug %] status.
-[% END %]
-
-[% PROCESS admin/fieldvalues/footer.html.tmpl %]
-
-[% PROCESS global/footer.html.tmpl %]
diff --git a/template/en/default/admin/fieldvalues/deleted.html.tmpl b/template/en/default/admin/fieldvalues/deleted.html.tmpl
deleted file mode 100644
index 27e62f82d59711abca5b7b6220ad6f7c616c4e6f..0000000000000000000000000000000000000000
--- a/template/en/default/admin/fieldvalues/deleted.html.tmpl
+++ /dev/null
@@ -1,37 +0,0 @@
-[%# The contents of this file are subject to the Mozilla Public
-  # License Version 1.1 (the "License"); you may not use this file
-  # except in compliance with the License. You may obtain a copy of
-  # the License at http://www.mozilla.org/MPL/
-  #
-  # Software distributed under the License is distributed on an "AS
-  # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
-  # implied. See the License for the specific language governing
-  # rights and limitations under the License.
-  #
-  # The Original Code is the Bugzilla Bug Tracking System.
-  #
-  # Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
-  #%]
-
-[%# INTERFACE:
-  # value: string; the field value that was deleted.
-  #
-  # field: object; the field the value was deleted from.
-  #
-  #%]
-  
-[% title = BLOCK %]
-  Deleted Value '[% value FILTER html %]' for the '[% field.description FILTER html %]'
-  ([% field.name FILTER html %]) Field
-[% END %]
-[% PROCESS global/header.html.tmpl
-  title = title
-%]
-
-<p>Field Value '[% value FILTER html %]' deleted.</p>
-
-[% PROCESS admin/fieldvalues/footer.html.tmpl
-  no_edit_link = 1
- %]
-
-[% PROCESS global/footer.html.tmpl %]
diff --git a/template/en/default/admin/fieldvalues/updated.html.tmpl b/template/en/default/admin/fieldvalues/updated.html.tmpl
deleted file mode 100644
index 7ca29c3cf06ac91066c0d076984a808a2b59d424..0000000000000000000000000000000000000000
--- a/template/en/default/admin/fieldvalues/updated.html.tmpl
+++ /dev/null
@@ -1,56 +0,0 @@
-[%# The contents of this file are subject to the Mozilla Public
-  # License Version 1.1 (the "License"); you may not use this file
-  # except in compliance with the License. You may obtain a copy of
-  # the License at http://www.mozilla.org/MPL/
-  #
-  # Software distributed under the License is distributed on an "AS
-  # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
-  # implied. See the License for the specific language governing
-  # rights and limitations under the License.
-  #
-  # The Original Code is the Bugzilla Bug Tracking System.
-  #
-  # Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
-  #%]
-
-[%# INTERFACE:
-  #
-  # 'updated_XXX' variables are booleans, and are defined if the
-  # 'XXX' field was updated during the edit just being handled.
-  # Variables called just 'XXX' are strings, and are the _new_ contents
-  # of the fields.
-  #
-  # value & updated_value: the name of the field value
-  # sortkey & updated_sortkey: the field value sortkey
-  # field: object; the field that the value belongs to
-  # default_value_updated: boolean; whether the default value for
-  #                        this field has been updated
-  #%]
-  
-[% title = BLOCK %]
-  Updating Value '[% value FILTER html %]' of the '[% field.description FILTER html %]'
-  ([% field.name FILTER html %]) Field
-[% END %]
-[% PROCESS global/header.html.tmpl
-  title = title
-%]
-
-[% IF updated_value %]
-  <p>Updated field value to: '[% value FILTER html %]'.</p>
-  [% IF default_value_updated %]
-    <p>Note that this value is the default for this field.
-    All references to the default value will now point to this new value.</p>
-  [% END %]
-[% END %]
-
-[% IF updated_sortkey %]
-  <p>Updated field value sortkey to: '[% sortkey FILTER html %]'.</p>
-[% END %]
-
-[% UNLESS (updated_sortkey || updated_value) %]
-  <p>Nothing changed for field value '[% value FILTER html %]'.</p>
-[% END %]
-
-[% PROCESS admin/fieldvalues/footer.html.tmpl %]
-
-[% PROCESS global/footer.html.tmpl %]
diff --git a/template/en/default/admin/flag-type/CVS/Entries b/template/en/default/admin/flag-type/CVS/Entries
index 1418ed4f37dd46a990cc2dc62b483b00ab25089c..9182f3f9bad2ae1979f9ba26ec892f7d6e0cd72f 100644
--- a/template/en/default/admin/flag-type/CVS/Entries
+++ b/template/en/default/admin/flag-type/CVS/Entries
@@ -1,4 +1,4 @@
-/confirm-delete.html.tmpl/1.8/Mon Aug 20 18:24:47 2007//TBUGZILLA-3_1_2
-/edit.html.tmpl/1.25/Mon Aug 20 18:24:47 2007//TBUGZILLA-3_1_2
-/list.html.tmpl/1.18/Mon Aug 20 18:24:47 2007//TBUGZILLA-3_1_2
+/confirm-delete.html.tmpl/1.9/Mon Oct 22 21:42:00 2007//TBUGZILLA-3_1_3
+/edit.html.tmpl/1.26/Mon Oct 22 21:42:00 2007//TBUGZILLA-3_1_3
+/list.html.tmpl/1.19/Mon Oct 22 21:42:00 2007//TBUGZILLA-3_1_3
 D
diff --git a/template/en/default/admin/flag-type/CVS/Tag b/template/en/default/admin/flag-type/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/template/en/default/admin/flag-type/CVS/Tag
+++ b/template/en/default/admin/flag-type/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/template/en/default/admin/flag-type/confirm-delete.html.tmpl b/template/en/default/admin/flag-type/confirm-delete.html.tmpl
index 131dc73d951585f57b6570ff3b95c413273ed173..cc6a064a92832c360ea1056e1bb5ad95f975b271 100644
--- a/template/en/default/admin/flag-type/confirm-delete.html.tmpl
+++ b/template/en/default/admin/flag-type/confirm-delete.html.tmpl
@@ -22,7 +22,10 @@
 
 [% title = BLOCK %]Confirm Deletion of Flag Type '[% flag_type.name FILTER html %]'[% END %]
 
-[% PROCESS global/header.html.tmpl title = title %]
+[% PROCESS global/header.html.tmpl
+  title = title
+  doc_section = "flags-overview.html#flags-delete"
+%]
 
 <p>
    There are [% flag_type.flag_count %] flags of type [% flag_type.name FILTER html %].
diff --git a/template/en/default/admin/flag-type/edit.html.tmpl b/template/en/default/admin/flag-type/edit.html.tmpl
index 609e3db9dd214293af303aaffe0bbda1e3f22737..ebebf50821a0ed73ed6e5783876ad1ece3e170cc 100644
--- a/template/en/default/admin/flag-type/edit.html.tmpl
+++ b/template/en/default/admin/flag-type/edit.html.tmpl
@@ -33,10 +33,12 @@
   [% typeLabelLowerSingular = BLOCK %]attachment[% END %]
 [% END %]
 
+[% doc_section = "flags-overview.html#flags-create" %]
 [% IF last_action == "copy" %]
   [% title = BLOCK %]Create Flag Type Based on [% type.name FILTER html %][% END %]
 [% ELSIF last_action == "edit" %]
   [% title = BLOCK %]Edit Flag Type [% type.name FILTER html %][% END %]
+  [% doc_section = "flags-overview.html#flags-edit" %]
 [% END %]
 
 [% PROCESS global/header.html.tmpl
@@ -47,6 +49,7 @@
   "
   onload="var f = document.forms[0]; selectProduct(f.product, f.component, null, null, '__Any__');"
   javascript_urls=["js/productform.js"]
+  doc_section = doc_section
 %]
 
 <form method="post" action="editflagtypes.cgi">
diff --git a/template/en/default/admin/flag-type/list.html.tmpl b/template/en/default/admin/flag-type/list.html.tmpl
index 6f9fe4d0d149af514fae4dcb1d8f2b82e702d749..d4bba945a289a8f8f4866db0c31584e89d76bea1 100644
--- a/template/en/default/admin/flag-type/list.html.tmpl
+++ b/template/en/default/admin/flag-type/list.html.tmpl
@@ -32,6 +32,7 @@
   "
   onload="var f = document.forms[0]; selectProduct(f.product, f.component, null, null, '__All__');"
   javascript_urls=["js/productform.js"]
+  doc_section = "flags-overview.html#flag-types"
 %]
 
 <p>
diff --git a/template/en/default/admin/groups/CVS/Entries b/template/en/default/admin/groups/CVS/Entries
index aa971514cb72a7baa851aa944bd5a3bdf1c2182e..eb1265fbcfe6f3aed421c3ce8411347a8d0253cc 100644
--- a/template/en/default/admin/groups/CVS/Entries
+++ b/template/en/default/admin/groups/CVS/Entries
@@ -1,9 +1,6 @@
-/confirm-remove.html.tmpl/1.3/Wed Aug 29 18:38:01 2007//TBUGZILLA-3_1_2
-/create.html.tmpl/1.10/Mon Aug 20 18:24:47 2007//TBUGZILLA-3_1_2
-/created.html.tmpl/1.2/Mon Aug 20 18:24:47 2007//TBUGZILLA-3_1_2
-/delete.html.tmpl/1.11/Mon Aug 20 18:24:47 2007//TBUGZILLA-3_1_2
-/deleted.html.tmpl/1.4/Mon Aug 20 18:24:47 2007//TBUGZILLA-3_1_2
-/edit.html.tmpl/1.16/Mon Aug 20 18:24:47 2007//TBUGZILLA-3_1_2
-/list.html.tmpl/1.12/Mon Aug 20 18:24:48 2007//TBUGZILLA-3_1_2
-/remove.html.tmpl/1.4/Mon Aug 20 18:24:48 2007//TBUGZILLA-3_1_2
+/confirm-remove.html.tmpl/1.5/Sun Dec 16 10:32:54 2007//TBUGZILLA-3_1_3
+/create.html.tmpl/1.11/Sun Nov 11 21:57:10 2007//TBUGZILLA-3_1_3
+/delete.html.tmpl/1.13/Tue Nov 20 08:46:57 2007//TBUGZILLA-3_1_3
+/edit.html.tmpl/1.17/Sun Nov 11 21:57:10 2007//TBUGZILLA-3_1_3
+/list.html.tmpl/1.13/Sun Nov 11 21:57:10 2007//TBUGZILLA-3_1_3
 D
diff --git a/template/en/default/admin/groups/CVS/Tag b/template/en/default/admin/groups/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/template/en/default/admin/groups/CVS/Tag
+++ b/template/en/default/admin/groups/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/template/en/default/admin/groups/confirm-remove.html.tmpl b/template/en/default/admin/groups/confirm-remove.html.tmpl
index 27d0ba5d840f13debde957d3440a3fb1e421e371..cdb070d3372676b71334d3352e47cf63d5415b8a 100644
--- a/template/en/default/admin/groups/confirm-remove.html.tmpl
+++ b/template/en/default/admin/groups/confirm-remove.html.tmpl
@@ -33,7 +33,10 @@
   [% title = "Confirm: Remove All Explicit Members?" %]
 [% END %]
 
-[% PROCESS global/header.html.tmpl %]
+[% PROCESS global/header.html.tmpl
+  title = title
+  doc_section = "groups.html"
+%]
 
 [% IF regexp %]
   <p>This option will remove all users from '[% group.name FILTER html %]'
@@ -45,7 +48,7 @@
 [% END %]
   
 <p>Generally, you will only need to do this when upgrading groups
-  created with [% terms.Bugzilla %] versions 2.16 and prior. Use
+  created with [% terms.Bugzilla %] versions 2.16 and earlier. Use
   this option with <b>extreme care</b> and consult the documentation
   for further information.
 </p>
diff --git a/template/en/default/admin/groups/create.html.tmpl b/template/en/default/admin/groups/create.html.tmpl
index 49cd550e97fd243c6cc69021a2222f4f0d126902..13b1a42540b109db6593b98af96567dc071afd24 100644
--- a/template/en/default/admin/groups/create.html.tmpl
+++ b/template/en/default/admin/groups/create.html.tmpl
@@ -28,6 +28,7 @@
 [% PROCESS global/header.html.tmpl
   title = "Add group"
   subheader = "This page allows you to define a new user group."
+  doc_section = "groups.html#create-groups"
 %]
 
 <form method="post" action="editgroups.cgi">
diff --git a/template/en/default/admin/groups/created.html.tmpl b/template/en/default/admin/groups/created.html.tmpl
deleted file mode 100644
index a734829a7b0245e1ef51208421785a1114cacb6e..0000000000000000000000000000000000000000
--- a/template/en/default/admin/groups/created.html.tmpl
+++ /dev/null
@@ -1,37 +0,0 @@
-[%# The contents of this file are subject to the Mozilla Public
-  # License Version 1.1 (the "License"); you may not use this file
-  # except in compliance with the License. You may obtain a copy of
-  # the License at http://www.mozilla.org/MPL/
-  #
-  # Software distributed under the License is distributed on an "AS
-  # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
-  # implied. See the License for the specific language governing
-  # rights and limitations under the License.
-  #
-  # The Original Code is the Bugzilla Bug Tracking System.
-  #
-  # The Initial Developer of the Original Code is Netscape Communications
-  # Corporation. Portions created by Netscape are
-  # Copyright (C) 1998 Netscape Communications Corporation. All
-  # Rights Reserved.
-  #
-  # Contributor(s): Dave Miller <justdave@syndicomm.com>
-  #                 Joel Peshkin <bugreport@peshkin.net>
-  #                 Jacob Steenhagen <jake@bugzilla.org>
-  #                 Vlad Dascalu <jocuri@softhome.net>
-  #%]
-
-[%# INTERFACE:
-  # none
-  #%]
-
-[% PROCESS global/header.html.tmpl
-  title = "Adding new group"
-%]
-
-<p>OK, done.</p>
-
-<p><a href="editgroups.cgi?action=add">Add</a> another group or
-go back to the <a href="editgroups.cgi">group list</a>.</p>
-
-[% PROCESS global/footer.html.tmpl %] 
diff --git a/template/en/default/admin/groups/delete.html.tmpl b/template/en/default/admin/groups/delete.html.tmpl
index d7809bca76514a7ccf07bf99ecf27e5d2682140b..e847adad88bacbb33abffb205b3f3cc133c5a0a4 100644
--- a/template/en/default/admin/groups/delete.html.tmpl
+++ b/template/en/default/admin/groups/delete.html.tmpl
@@ -36,6 +36,7 @@
 
 [% PROCESS global/header.html.tmpl
   title = "Delete group"
+  doc_section = "groups.html"
 %]
 
 <table border="1">
@@ -119,10 +120,12 @@
           indicated problems first before you can proceed.</b></p>
   [% END %]
 
-  <p><input type="submit" id="delete" value="Yes, delete">
-  <input type="hidden" name="action" value="delete">
-  <input type="hidden" name="group" value="[% gid FILTER html %]">
-  <input type="hidden" name="token" value="[% token FILTER html %]">
+  <p>
+    <input type="submit" id="delete" value="Yes, delete">
+    <input type="hidden" name="action" value="delete">
+    <input type="hidden" name="group" value="[% gid FILTER html %]">
+    <input type="hidden" name="token" value="[% token FILTER html %]">
+  </p>
 </form>
 
 Go back to the <a href="editgroups.cgi">group list</a>.
diff --git a/template/en/default/admin/groups/deleted.html.tmpl b/template/en/default/admin/groups/deleted.html.tmpl
deleted file mode 100644
index acda17254c4dc28c930205b37827d35ac1988c7f..0000000000000000000000000000000000000000
--- a/template/en/default/admin/groups/deleted.html.tmpl
+++ /dev/null
@@ -1,37 +0,0 @@
-[%# The contents of this file are subject to the Mozilla Public
-  # License Version 1.1 (the "License"); you may not use this file
-  # except in compliance with the License. You may obtain a copy of
-  # the License at http://www.mozilla.org/MPL/
-  #
-  # Software distributed under the License is distributed on an "AS
-  # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
-  # implied. See the License for the specific language governing
-  # rights and limitations under the License.
-  #
-  # The Original Code is the Bugzilla Bug Tracking System.
-  #
-  # The Initial Developer of the Original Code is Netscape Communications
-  # Corporation. Portions created by Netscape are
-  # Copyright (C) 1998 Netscape Communications Corporation. All
-  # Rights Reserved.
-  #
-  # Contributor(s): Dave Miller <justdave@syndicomm.com>
-  #                 Joel Peshkin <bugreport@peshkin.net>
-  #                 Jacob Steenhagen <jake@bugzilla.org>
-  #                 Vlad Dascalu <jocuri@softhome.net>
-  #%]
-
-[%# INTERFACE:
-  # name: string. The name of the group.
-  #%]
-
-
-[% PROCESS global/header.html.tmpl
-  title = "Deleting group"
-%]
-
-<p>The group [% name FILTER html %] has been deleted.</p>
-
-<p>Go back to the <a href="editgroups.cgi">group list</a>.
-
-[% PROCESS global/footer.html.tmpl %] 
diff --git a/template/en/default/admin/groups/edit.html.tmpl b/template/en/default/admin/groups/edit.html.tmpl
index 607ae4002400f728605bdc70d15ac95578940b3e..7cb989d994430e547356ad3a1719ab33ad96acb6 100644
--- a/template/en/default/admin/groups/edit.html.tmpl
+++ b/template/en/default/admin/groups/edit.html.tmpl
@@ -33,6 +33,8 @@
 [% title = BLOCK %]Change Group: [% group.name FILTER html %][% END %]
 
 [% PROCESS global/header.html.tmpl
+  title = title
+  doc_section = "groups.html#edit-groups"
   style = "
     .grant_table { border-collapse: collapse; }
     .grant_table td, .grant_table th {
diff --git a/template/en/default/admin/groups/list.html.tmpl b/template/en/default/admin/groups/list.html.tmpl
index 2acbdb1a469388043af34a495724ae72fb87da84..029e5f0b412b0018f314f7fc0d3c824953fddd0c 100644
--- a/template/en/default/admin/groups/list.html.tmpl
+++ b/template/en/default/admin/groups/list.html.tmpl
@@ -34,6 +34,7 @@
 [% PROCESS global/header.html.tmpl
   title = "Edit Groups"
   subheader = "This lets you edit the groups available to put users in."
+  doc_section = "groups.html"
 %]
 
 [% edit_contentlink = "editgroups.cgi?action=changeform&amp;group=%%id%%" %]
diff --git a/template/en/default/admin/groups/remove.html.tmpl b/template/en/default/admin/groups/remove.html.tmpl
deleted file mode 100644
index fb0481d161d379d6afdce7a4b1d8e36ee4b4615d..0000000000000000000000000000000000000000
--- a/template/en/default/admin/groups/remove.html.tmpl
+++ /dev/null
@@ -1,46 +0,0 @@
-[%# The contents of this file are subject to the Mozilla Public
-  # License Version 1.1 (the "License"); you may not use this file
-  # except in compliance with the License. You may obtain a copy of
-  # the License at http://www.mozilla.org/MPL/
-  #
-  # Software distributed under the License is distributed on an "AS
-  # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
-  # implied. See the License for the specific language governing
-  # rights and limitations under the License.
-  #
-  # The Original Code is the Bugzilla Bug Tracking System.
-  #
-  # The Initial Developer of the Original Code is Netscape Communications
-  # Corporation. Portions created by Netscape are
-  # Copyright (C) 1998 Netscape Communications Corporation. All
-  # Rights Reserved.
-  #
-  # Contributor(s): Dave Miller <justdave@syndicomm.com>
-  #                 Joel Peshkin <bugreport@peshkin.net>
-  #                 Jacob Steenhagen <jake@bugzilla.org>
-  #                 Vlad Dascalu <jocuri@softhome.net>
-  #                 Max Kanat-Alexander <mkanat@bugzilla.org>
-  #%]
-
-[%# INTERFACE:
-  # group: The Bugzilla::Group being modified.
-  # regexp: string. The regexp according to which the removal was performed.
-  # users: Array of Bugzilla::User objects who were removed from this group.
-  #%]
-
-
-[% PROCESS global/header.html.tmpl
-           title = "Removing Explicit Group Membership" %]
-
-<p><b>Removing explicit memberships[% IF regexp %] of users matching
-  '[% regexp FILTER html %]'[% END %]...</b></p>
-    
-[% FOREACH user = users %]
-  [% user.login FILTER html %] removed<br>
-[% END %]
-
-<p><b>Done</b>.</p>
-
-<p>Back to the <a href="editgroups.cgi">group list</a>.</p>
-
-[% PROCESS global/footer.html.tmpl %] 
diff --git a/template/en/default/admin/keywords/CVS/Entries b/template/en/default/admin/keywords/CVS/Entries
index 271a156510b72751edcc6036b1cb67a3f0a35b30..e29d804cecf511153050b6064c7e9d7fb23ec7f6 100644
--- a/template/en/default/admin/keywords/CVS/Entries
+++ b/template/en/default/admin/keywords/CVS/Entries
@@ -1,7 +1,5 @@
-/confirm-delete.html.tmpl/1.7/Mon Aug 20 18:24:48 2007//TBUGZILLA-3_1_2
-/create.html.tmpl/1.9/Mon Aug 20 18:24:48 2007//TBUGZILLA-3_1_2
-/created.html.tmpl/1.3/Mon Aug 20 18:24:48 2007//TBUGZILLA-3_1_2
-/edit.html.tmpl/1.10/Mon Aug 20 18:24:48 2007//TBUGZILLA-3_1_2
-/list.html.tmpl/1.11/Mon Aug 20 18:24:48 2007//TBUGZILLA-3_1_2
-/rebuild-cache.html.tmpl/1.5/Mon Aug 20 18:24:48 2007//TBUGZILLA-3_1_2
+/confirm-delete.html.tmpl/1.7/Mon Aug 20 18:24:48 2007//TBUGZILLA-3_1_3
+/create.html.tmpl/1.9/Mon Aug 20 18:24:48 2007//TBUGZILLA-3_1_3
+/edit.html.tmpl/1.10/Mon Aug 20 18:24:48 2007//TBUGZILLA-3_1_3
+/list.html.tmpl/1.11/Mon Aug 20 18:24:48 2007//TBUGZILLA-3_1_3
 D
diff --git a/template/en/default/admin/keywords/CVS/Tag b/template/en/default/admin/keywords/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/template/en/default/admin/keywords/CVS/Tag
+++ b/template/en/default/admin/keywords/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/template/en/default/admin/keywords/created.html.tmpl b/template/en/default/admin/keywords/created.html.tmpl
deleted file mode 100755
index b39981d85c69fc27f526c8cbcf7404a9b8d36b72..0000000000000000000000000000000000000000
--- a/template/en/default/admin/keywords/created.html.tmpl
+++ /dev/null
@@ -1,35 +0,0 @@
-[%# The contents of this file are subject to the Mozilla Public
-  # License Version 1.1 (the "License"); you may not use this file
-  # except in compliance with the License. You may obtain a copy of
-  # the License at http://www.mozilla.org/MPL/
-  #
-  # Software distributed under the License is distributed on an "AS
-  # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
-  # implied. See the License for the specific language governing
-  # rights and limitations under the License.
-  #
-  # The Original Code is the Bugzilla Bug Tracking System.
-  #
-  # The Initial Developer of the Original Code is Netscape Communications
-  # Corporation. Portions created by Netscape are
-  # Copyright (C) 1998 Netscape Communications Corporation. All
-  # Rights Reserved.
-  #
-  # Contributor(s): Terry Weissman <terry@mozilla.org>
-  #                 Vlad Dascalu <jocuri@softhome.net>
-  #%]
-
-[%# INTERFACE:
-  # name: string; the name of the current keyword.
-  #%]
-  
-[% PROCESS global/header.html.tmpl
-  title = "Adding new keyword"
-%]
-
-<p>The keyword [% name FILTER html %] has been added.</p>
-
-<p><a href="editkeywords.cgi">Edit existing keywords</a> or
-<a href="editkeywords.cgi?action=add">add another keyword</a>.</p>
-
-[% PROCESS global/footer.html.tmpl %]
diff --git a/template/en/default/admin/keywords/rebuild-cache.html.tmpl b/template/en/default/admin/keywords/rebuild-cache.html.tmpl
deleted file mode 100755
index fc491c97a87655cecfa173df4c54a5e27f146885..0000000000000000000000000000000000000000
--- a/template/en/default/admin/keywords/rebuild-cache.html.tmpl
+++ /dev/null
@@ -1,55 +0,0 @@
-[%# The contents of this file are subject to the Mozilla Public
-  # License Version 1.1 (the "License"); you may not use this file
-  # except in compliance with the License. You may obtain a copy of
-  # the License at http://www.mozilla.org/MPL/
-  #
-  # Software distributed under the License is distributed on an "AS
-  # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
-  # implied. See the License for the specific language governing
-  # rights and limitations under the License.
-  #
-  # The Original Code is the Bugzilla Bug Tracking System.
-  #
-  # The Initial Developer of the Original Code is Netscape Communications
-  # Corporation. Portions created by Netscape are
-  # Copyright (C) 1998 Netscape Communications Corporation. All
-  # Rights Reserved.
-  #
-  # Contributor(s): Terry Weissman <terry@mozilla.org>
-  #                 Vlad Dascalu <jocuri@softhome.net>
-  #                 Max Kanat-Alexander <mkanat@bugzilla.org>
-  #%]
-
-[%# INTERFACE:
-  # action: string; the current action (either "update" or "delete").
-  # keyword: A Bugzilla::Keyword object
-  #%]
-  
-[% IF action == "update" %]
-  [% title = "Update keyword"%]
-  [% status = "updated" %]
-[% ELSIF action == "delete" %]
-  [% title = "Delete keyword" %]
-  [% status = "deleted" %]
-[% END %]
-
-[% PROCESS global/header.html.tmpl %]
-
-Keyword [% keyword.name FILTER html %] [%+ status FILTER html %].
-
-<p>
-  <b>After you have finished deleting or modifying keywords,
-  you need to rebuild the keyword cache.</b><br>
-  
-  Warning: on a very large installation of [% terms.Bugzilla %],
-  this can take several minutes.
-</p>
-
-<p>
-  <b><a href="sanitycheck.cgi?rebuildkeywordcache=1">Rebuild
-  keyword cache</a></b>
-</p>
-
-<p><a href="editkeywords.cgi">Edit more keywords</a>.</p>
-
-[% PROCESS global/footer.html.tmpl %] 
diff --git a/template/en/default/admin/milestones/CVS/Entries b/template/en/default/admin/milestones/CVS/Entries
index abd9f3ce0acfa4ff8276e07d3bbabc38218d1d12..079f026c0fed5d20e1a7e5bf89b3be3cb1f133ae 100644
--- a/template/en/default/admin/milestones/CVS/Entries
+++ b/template/en/default/admin/milestones/CVS/Entries
@@ -1,10 +1,7 @@
-/confirm-delete.html.tmpl/1.9/Mon Aug 20 18:24:49 2007//TBUGZILLA-3_1_2
-/create.html.tmpl/1.8/Mon Aug 20 18:24:49 2007//TBUGZILLA-3_1_2
-/created.html.tmpl/1.4/Mon Aug 20 18:24:49 2007//TBUGZILLA-3_1_2
-/deleted.html.tmpl/1.6/Mon Aug 20 18:24:49 2007//TBUGZILLA-3_1_2
-/edit.html.tmpl/1.9/Mon Aug 20 18:24:49 2007//TBUGZILLA-3_1_2
-/footer.html.tmpl/1.4/Mon Aug 20 18:24:49 2007//TBUGZILLA-3_1_2
-/list.html.tmpl/1.6/Mon Aug 20 18:24:49 2007//TBUGZILLA-3_1_2
-/select-product.html.tmpl/1.5/Mon Aug 20 18:24:49 2007//TBUGZILLA-3_1_2
-/updated.html.tmpl/1.4/Mon Aug 20 18:24:49 2007//TBUGZILLA-3_1_2
+/confirm-delete.html.tmpl/1.9/Mon Aug 20 18:24:49 2007//TBUGZILLA-3_1_3
+/create.html.tmpl/1.8/Mon Aug 20 18:24:49 2007//TBUGZILLA-3_1_3
+/edit.html.tmpl/1.9/Mon Aug 20 18:24:49 2007//TBUGZILLA-3_1_3
+/footer.html.tmpl/1.4/Mon Aug 20 18:24:49 2007//TBUGZILLA-3_1_3
+/list.html.tmpl/1.6/Mon Aug 20 18:24:49 2007//TBUGZILLA-3_1_3
+/select-product.html.tmpl/1.5/Mon Aug 20 18:24:49 2007//TBUGZILLA-3_1_3
 D
diff --git a/template/en/default/admin/milestones/CVS/Tag b/template/en/default/admin/milestones/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/template/en/default/admin/milestones/CVS/Tag
+++ b/template/en/default/admin/milestones/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/template/en/default/admin/milestones/created.html.tmpl b/template/en/default/admin/milestones/created.html.tmpl
deleted file mode 100644
index e9be95c5ae29266489ef3ae82e6a54673a68f23f..0000000000000000000000000000000000000000
--- a/template/en/default/admin/milestones/created.html.tmpl
+++ /dev/null
@@ -1,43 +0,0 @@
-[%# The contents of this file are subject to the Mozilla Public
-  # License Version 1.1 (the "License"); you may not use this file
-  # except in compliance with the License. You may obtain a copy of
-  # the License at http://www.mozilla.org/MPL/
-  #
-  # Software distributed under the License is distributed on an "AS
-  # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
-  # implied. See the License for the specific language governing
-  # rights and limitations under the License.
-  #
-  # The Original Code is the Bugzilla Bug Tracking System.
-  #
-  # The Initial Developer of the Original Code is Netscape Communications
-  # Corporation. Portions created by Netscape are
-  # Copyright (C) 1998 Netscape Communications Corporation. All
-  # Rights Reserved.
-  #
-  # Contributor(s): Gavin Shelley <bugzilla@chimpychompy.org>
-  #%]
-
-[%# INTERFACE:
-  # milestone: object; Bugzilla::Milestone object representing the
-  #                    milestone the user created.
-  #
-  # product: object; Bugzilla::Product object representing the product to
-  #               which the milestone belongs.
-  #%]
-  
-[% title = BLOCK %]Adding new Milestone of Product
-                   '[% product.name FILTER html %]'[% END %]
-[% PROCESS global/header.html.tmpl
-  title = title
-%]
-
-<p>The milestone '<a title="Edit milestone '[% milestone.name FILTER html %]' of 
-   product '[% product.name FILTER html %]'"
-   href="editmilestones.cgi?action=edit&amp;product=
-   [%- product.name FILTER url_quote %]&amp;milestone=[% milestone.name FILTER url_quote %]">
-   [%- milestone.name FILTER html %]</a>' has been created.</p>
-
-[% PROCESS admin/milestones/footer.html.tmpl %]
-
-[% PROCESS global/footer.html.tmpl %]
diff --git a/template/en/default/admin/milestones/deleted.html.tmpl b/template/en/default/admin/milestones/deleted.html.tmpl
deleted file mode 100644
index 9ccd1b6c7acab039dbbe2f39afe2af77f6c6a360..0000000000000000000000000000000000000000
--- a/template/en/default/admin/milestones/deleted.html.tmpl
+++ /dev/null
@@ -1,57 +0,0 @@
-[%# The contents of this file are subject to the Mozilla Public
-  # License Version 1.1 (the "License"); you may not use this file
-  # except in compliance with the License. You may obtain a copy of
-  # the License at http://www.mozilla.org/MPL/
-  #
-  # Software distributed under the License is distributed on an "AS
-  # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
-  # implied. See the License for the specific language governing
-  # rights and limitations under the License.
-  #
-  # The Original Code is the Bugzilla Bug Tracking System.
-  #
-  # The Initial Developer of the Original Code is Netscape Communications
-  # Corporation. Portions created by Netscape are
-  # Copyright (C) 1998 Netscape Communications Corporation. All
-  # Rights Reserved.
-  #
-  # Contributor(s): Gavin Shelley <bugzilla@chimpychompy.org>
-  #                 Frédéric Buclin <LpSolit@gmail.com>
-  #%]
-
-[%# INTERFACE:
-  # product: object; Bugzilla::Product object representing the product to
-  #               which the milestone belongs.
-  # milestone: object; Bugzilla::Milestone object representing the
-  #                    milestone the user deleted.
-  #%]
-  
-[% title = BLOCK %]Deleted Milestone '[% milestone.name FILTER html %]' of Product
-                   '[% product.name FILTER html %]'[% END %]
-[% PROCESS global/header.html.tmpl
-  title = title
-%]
-
-<p>
-[% IF milestone.bug_count %]
-
-  [% milestone.bug_count FILTER none %]
-  [% IF milestone.bug_count > 1 %] 
-    [%+ terms.bugs %]
-  [% ELSE %]
-    [%+ terms.bug %]
-  [% END %]
-  reassigned to the default milestone.
-
-[% ELSE %]
-  No [% terms.bugs %] were targetted at the milestone.
-[% END %]
-</p>
-
-<p>Milestone '[% milestone.name FILTER html %]' deleted.</p>
-
-[% PROCESS admin/milestones/footer.html.tmpl
-  no_edit_milestone_link = 1
- %]
-
-[% PROCESS global/footer.html.tmpl %]
diff --git a/template/en/default/admin/milestones/updated.html.tmpl b/template/en/default/admin/milestones/updated.html.tmpl
deleted file mode 100644
index 3f86e2870f7c05f67397eb6ca2c28b7bd6268ffa..0000000000000000000000000000000000000000
--- a/template/en/default/admin/milestones/updated.html.tmpl
+++ /dev/null
@@ -1,50 +0,0 @@
-[%# The contents of this file are subject to the Mozilla Public
-  # License Version 1.1 (the "License"); you may not use this file
-  # except in compliance with the License. You may obtain a copy of
-  # the License at http://www.mozilla.org/MPL/
-  #
-  # Software distributed under the License is distributed on an "AS
-  # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
-  # implied. See the License for the specific language governing
-  # rights and limitations under the License.
-  #
-  # The Original Code is the Bugzilla Bug Tracking System.
-  #
-  # The Initial Developer of the Original Code is Netscape Communications
-  # Corporation. Portions created by Netscape are
-  # Copyright (C) 1998 Netscape Communications Corporation. All
-  # Rights Reserved.
-  #
-  # Contributor(s): Gavin Shelley <bugzilla@chimpychompy.org>
-  #%]
-
-[%# INTERFACE:
-  # product: object; Bugzilla::Product object representing the product to
-  #               which the milestone belongs.
-  #
-  # 'updated_XXX' variables are booleans, and are defined if the
-  # 'XXX' field was updated during the edit just being handled.
-  #%]
-
-[% title = BLOCK %]Updating Milestone '[% milestone.name FILTER html %]' of Product
-                   '[% product.name FILTER html %]'[% END %]
-[% PROCESS global/header.html.tmpl
-  title = title
-%]
-
-[% IF updated_name %]
-  <p>Updated Milestone name to: '[% milestone.name FILTER html %]'.</p>
-[% END %]
-
-[% IF updated_sortkey %]
-  <p>Updated Milestone sortkey to: '[% milestone.sortkey FILTER html %]'.</p>
-[% END %]
-
-[% UNLESS updated_sortkey || updated_name %]
-  <p>Nothing changed for milestone '[% milestone.name FILTER html %]'.</p>
-
-[% END %]
-
-[% PROCESS admin/milestones/footer.html.tmpl %]
-
-[% PROCESS global/footer.html.tmpl %]
diff --git a/template/en/default/admin/params/CVS/Entries b/template/en/default/admin/params/CVS/Entries
index 36c3c4c7ea3bd0d8e2fcb2245897e9983478c3ad..990bd8fe599b12139b074d314d11c37c8290a6f2 100644
--- a/template/en/default/admin/params/CVS/Entries
+++ b/template/en/default/admin/params/CVS/Entries
@@ -1,20 +1,20 @@
-/admin.html.tmpl/1.4/Mon Aug 20 18:24:50 2007//TBUGZILLA-3_1_2
-/attachment.html.tmpl/1.4/Mon Aug 20 18:24:50 2007//TBUGZILLA-3_1_2
-/auth.html.tmpl/1.3/Mon Aug 20 18:24:50 2007//TBUGZILLA-3_1_2
-/bugchange.html.tmpl/1.6/Mon Aug 20 18:24:50 2007//TBUGZILLA-3_1_2
-/bugfields.html.tmpl/1.4/Mon Aug 20 18:24:50 2007//TBUGZILLA-3_1_2
-/bugmove.html.tmpl/1.3/Mon Aug 20 18:24:50 2007//TBUGZILLA-3_1_2
-/common.html.tmpl/1.5/Mon Aug 20 18:24:50 2007//TBUGZILLA-3_1_2
-/core.html.tmpl/1.9/Sun Aug 26 11:41:34 2007//TBUGZILLA-3_1_2
-/dependencygraph.html.tmpl/1.2/Mon Aug 20 18:24:50 2007//TBUGZILLA-3_1_2
-/editparams.html.tmpl/1.7/Mon Aug 20 18:24:50 2007//TBUGZILLA-3_1_2
-/groupsecurity.html.tmpl/1.5/Mon Aug 20 18:24:50 2007//TBUGZILLA-3_1_2
-/index.html.tmpl/1.2/Mon Aug 20 18:24:50 2007//TBUGZILLA-3_1_2
-/ldap.html.tmpl/1.7/Mon Aug 20 18:24:50 2007//TBUGZILLA-3_1_2
-/mta.html.tmpl/1.11/Mon Aug 20 18:24:50 2007//TBUGZILLA-3_1_2
-/patchviewer.html.tmpl/1.3/Mon Aug 20 18:24:50 2007//TBUGZILLA-3_1_2
-/query.html.tmpl/1.4/Mon Aug 20 18:24:50 2007//TBUGZILLA-3_1_2
-/radius.html.tmpl/1.2/Mon Aug 20 18:24:50 2007//TBUGZILLA-3_1_2
-/shadowdb.html.tmpl/1.2/Mon Aug 20 18:24:50 2007//TBUGZILLA-3_1_2
-/usermatch.html.tmpl/1.3/Mon Aug 20 18:24:50 2007//TBUGZILLA-3_1_2
+/admin.html.tmpl/1.4/Mon Aug 20 18:24:50 2007//TBUGZILLA-3_1_3
+/attachment.html.tmpl/1.4/Mon Aug 20 18:24:50 2007//TBUGZILLA-3_1_3
+/auth.html.tmpl/1.4/Wed Dec  5 00:48:30 2007//TBUGZILLA-3_1_3
+/bugchange.html.tmpl/1.6/Mon Aug 20 18:24:50 2007//TBUGZILLA-3_1_3
+/bugfields.html.tmpl/1.4/Mon Aug 20 18:24:50 2007//TBUGZILLA-3_1_3
+/bugmove.html.tmpl/1.3/Mon Aug 20 18:24:50 2007//TBUGZILLA-3_1_3
+/common.html.tmpl/1.5/Mon Aug 20 18:24:50 2007//TBUGZILLA-3_1_3
+/core.html.tmpl/1.9/Sun Aug 26 11:41:34 2007//TBUGZILLA-3_1_3
+/dependencygraph.html.tmpl/1.2/Mon Aug 20 18:24:50 2007//TBUGZILLA-3_1_3
+/editparams.html.tmpl/1.8/Mon Oct 22 21:42:01 2007//TBUGZILLA-3_1_3
+/groupsecurity.html.tmpl/1.5/Mon Aug 20 18:24:50 2007//TBUGZILLA-3_1_3
+/index.html.tmpl/1.2/Mon Aug 20 18:24:50 2007//TBUGZILLA-3_1_3
+/ldap.html.tmpl/1.7/Mon Aug 20 18:24:50 2007//TBUGZILLA-3_1_3
+/mta.html.tmpl/1.11/Mon Aug 20 18:24:50 2007//TBUGZILLA-3_1_3
+/patchviewer.html.tmpl/1.3/Mon Aug 20 18:24:50 2007//TBUGZILLA-3_1_3
+/query.html.tmpl/1.4/Mon Aug 20 18:24:50 2007//TBUGZILLA-3_1_3
+/radius.html.tmpl/1.2/Mon Aug 20 18:24:50 2007//TBUGZILLA-3_1_3
+/shadowdb.html.tmpl/1.2/Mon Aug 20 18:24:50 2007//TBUGZILLA-3_1_3
+/usermatch.html.tmpl/1.3/Mon Aug 20 18:24:50 2007//TBUGZILLA-3_1_3
 D
diff --git a/template/en/default/admin/params/CVS/Tag b/template/en/default/admin/params/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/template/en/default/admin/params/CVS/Tag
+++ b/template/en/default/admin/params/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/template/en/default/admin/params/auth.html.tmpl b/template/en/default/admin/params/auth.html.tmpl
index 4292cdacb5ecabb24b441675c181a0e05fd77d5c..94a748b257e973095b739a704eaa489f223dd210 100644
--- a/template/en/default/admin/params/auth.html.tmpl
+++ b/template/en/default/admin/params/auth.html.tmpl
@@ -79,9 +79,8 @@
                           <dt>LDAP</dt>
                           <dd>
                             LDAP authentication using an LDAP server.
-                            This method is experimental; please see the
-                            $terms.Bugzilla documentation for more information.
-                            Using this method requires
+                            Please see the $terms.Bugzilla documentation
+                            for more information. Using this method requires
                             <a href=\"?section=ldap\">additional
                             parameters</a> to be set.
                           </dd>
diff --git a/template/en/default/admin/params/editparams.html.tmpl b/template/en/default/admin/params/editparams.html.tmpl
index ac646f97bf15712cb3dc5b5cce0c2b7bbc5cca21..a35ec0f4ae7ae10c90eff2f4d8a60385cabe1cdb 100644
--- a/template/en/default/admin/params/editparams.html.tmpl
+++ b/template/en/default/admin/params/editparams.html.tmpl
@@ -57,6 +57,7 @@
    message = message
    style_urls = ['skins/standard/params.css']
    javascript_urls = ['js/params.js']
+   doc_section = "parameters.html"
 %]
 
 <table border="0" width="100%">
diff --git a/template/en/default/admin/products/CVS/Entries b/template/en/default/admin/products/CVS/Entries
index 0bc1a90d7ae7418a8b8d53b9a1785209127189a0..ffbc374071a8e2516a6f3289f49b5c03cdba6a28 100644
--- a/template/en/default/admin/products/CVS/Entries
+++ b/template/en/default/admin/products/CVS/Entries
@@ -1,11 +1,9 @@
-/confirm-delete.html.tmpl/1.8/Mon Aug 20 18:24:51 2007//TBUGZILLA-3_1_2
-/create.html.tmpl/1.5/Mon Aug 20 18:24:51 2007//TBUGZILLA-3_1_2
-/created.html.tmpl/1.4/Mon Aug 20 18:24:51 2007//TBUGZILLA-3_1_2
-/deleted.html.tmpl/1.5/Mon Aug 20 18:24:51 2007//TBUGZILLA-3_1_2
-/edit-common.html.tmpl/1.9/Mon Aug 20 18:24:51 2007//TBUGZILLA-3_1_2
-/edit.html.tmpl/1.11/Mon Aug 20 18:24:51 2007//TBUGZILLA-3_1_2
-/footer.html.tmpl/1.11/Mon Aug 20 18:24:51 2007//TBUGZILLA-3_1_2
-/list-classifications.html.tmpl/1.3/Mon Aug 20 18:24:51 2007//TBUGZILLA-3_1_2
-/list.html.tmpl/1.5/Mon Aug 20 18:24:51 2007//TBUGZILLA-3_1_2
-/updated.html.tmpl/1.7/Mon Aug 20 18:24:51 2007//TBUGZILLA-3_1_2
+/confirm-delete.html.tmpl/1.9/Sun Oct  7 23:18:29 2007//TBUGZILLA-3_1_3
+/create.html.tmpl/1.5/Mon Aug 20 18:24:51 2007//TBUGZILLA-3_1_3
+/edit-common.html.tmpl/1.9/Mon Aug 20 18:24:51 2007//TBUGZILLA-3_1_3
+/edit.html.tmpl/1.11/Mon Aug 20 18:24:51 2007//TBUGZILLA-3_1_3
+/footer.html.tmpl/1.11/Mon Aug 20 18:24:51 2007//TBUGZILLA-3_1_3
+/list-classifications.html.tmpl/1.4/Thu Sep 20 21:23:44 2007//TBUGZILLA-3_1_3
+/list.html.tmpl/1.5/Mon Aug 20 18:24:51 2007//TBUGZILLA-3_1_3
+/updated.html.tmpl/1.7/Mon Aug 20 18:24:51 2007//TBUGZILLA-3_1_3
 D/groupcontrol////
diff --git a/template/en/default/admin/products/CVS/Tag b/template/en/default/admin/products/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/template/en/default/admin/products/CVS/Tag
+++ b/template/en/default/admin/products/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/template/en/default/admin/products/confirm-delete.html.tmpl b/template/en/default/admin/products/confirm-delete.html.tmpl
index 8a24cfd4e5c6d5d8efe11f0c05e0736eded9eb77..7667d70e5e8355dd7a8671789de0667d5ff1d420 100644
--- a/template/en/default/admin/products/confirm-delete.html.tmpl
+++ b/template/en/default/admin/products/confirm-delete.html.tmpl
@@ -89,7 +89,7 @@
       <td>Milestone URL:</td>
       <td>
         [% IF product.milestone_url %]
-          <a href="[% product.milestone_url FILTER uri %]">
+          <a href="[% product.milestone_url FILTER html %]">
             [%- product.milestone_url FILTER html %]
           </a>
         [% ELSE %]
diff --git a/template/en/default/admin/products/created.html.tmpl b/template/en/default/admin/products/created.html.tmpl
deleted file mode 100644
index 3da777fa353fc39103d6bbd0ec2d47b70fbc72fa..0000000000000000000000000000000000000000
--- a/template/en/default/admin/products/created.html.tmpl
+++ /dev/null
@@ -1,36 +0,0 @@
-[%# The contents of this file are subject to the Mozilla Public
-  # License Version 1.1 (the "License"); you may not use this file
-  # except in compliance with the License. You may obtain a copy of
-  # the License at http://www.mozilla.org/MPL/
-  #
-  # Software distributed under the License is distributed on an "AS
-  # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
-  # implied. See the License for the specific language governing
-  # rights and limitations under the License.
-  #
-  # The Original Code is the Bugzilla Bug Tracking System.
-  #
-  # Contributor(s): Gabriel S. Oliveira <gabriel@async.com.br>
-  #%]
-
-[%# INTERFACE:
-  # product: Bugzilla::Product object; the Product created.
-  #
-  #%]
-
-[% title = BLOCK %]New Product '[% product.name FILTER html %]' Created[% END %]
-
-[% PROCESS global/header.html.tmpl title = title %]
-
-<br>
-<div style='border: 1px red solid; padding: 1ex;'>
-  <b>You will need to   
-   <a href="editcomponents.cgi?action=add&product=[% product.name FILTER url_quote %]">
-     add at least one component
-   </a> before you can enter [% terms.bugs %] against this product
-  </b>
-</div>
-
-[% PROCESS "admin/products/footer.html.tmpl" %]
-
-[% PROCESS global/footer.html.tmpl %]
diff --git a/template/en/default/admin/products/deleted.html.tmpl b/template/en/default/admin/products/deleted.html.tmpl
deleted file mode 100644
index 5f29b4b31918c31b456654138d2802e5e59d394b..0000000000000000000000000000000000000000
--- a/template/en/default/admin/products/deleted.html.tmpl
+++ /dev/null
@@ -1,49 +0,0 @@
-[%# The contents of this file are subject to the Mozilla Public
-  # License Version 1.1 (the "License"); you may not use this file
-  # except in compliance with the License. You may obtain a copy of
-  # the License at http://www.mozilla.org/MPL/
-  #
-  # Software distributed under the License is distributed on an "AS
-  # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
-  # implied. See the License for the specific language governing
-  # rights and limitations under the License.
-  #
-  # The Original Code is the Bugzilla Bug Tracking System.
-  #
-  # Contributor(s): Tiago R. Mello <timello@async.com.br>
-  #
-  #%]
-
-[%# INTERFACE:
-  # product: Bugzilla::Product object; The product
-  #
-  #%]
-
-[% title = BLOCK %]Product '[% product.name FILTER html %]' Deleted[% END %]
-
-[% PROCESS global/header.html.tmpl title = title %]
-
-[% IF product.bug_count %]
-  All references to deleted [% terms.bugs %] removed.
-[% END %]
-
-<p>
-  Components deleted.<br>
-  Versions deleted.<br>
-  Milestones deleted.
-</p>
-
-<p>
-  Group controls deleted.<br>
-  Flag inclusions and exclusions deleted.
-</p>
-
-<p>
-  Product [% product.name FILTER html %] deleted.
-</p>
-
-[% PROCESS admin/products/footer.html.tmpl
-           no_edit_product_link = 1
-%]
-
-[% PROCESS global/footer.html.tmpl %]
diff --git a/template/en/default/admin/products/groupcontrol/CVS/Entries b/template/en/default/admin/products/groupcontrol/CVS/Entries
index 396099df472d040605937e0bac15a41884c79b45..af4db99f300c7a3de1a98d3cdcb6052ef1dd949c 100644
--- a/template/en/default/admin/products/groupcontrol/CVS/Entries
+++ b/template/en/default/admin/products/groupcontrol/CVS/Entries
@@ -1,4 +1,4 @@
-/confirm-edit.html.tmpl/1.9/Mon Aug 20 18:24:52 2007//TBUGZILLA-3_1_2
-/edit.html.tmpl/1.10/Mon Aug 20 18:24:52 2007//TBUGZILLA-3_1_2
-/updated.html.tmpl/1.3/Mon Aug 20 18:24:52 2007//TBUGZILLA-3_1_2
+/confirm-edit.html.tmpl/1.9/Mon Aug 20 18:24:52 2007//TBUGZILLA-3_1_3
+/edit.html.tmpl/1.10/Mon Aug 20 18:24:52 2007//TBUGZILLA-3_1_3
+/updated.html.tmpl/1.3/Mon Aug 20 18:24:52 2007//TBUGZILLA-3_1_3
 D
diff --git a/template/en/default/admin/products/groupcontrol/CVS/Tag b/template/en/default/admin/products/groupcontrol/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/template/en/default/admin/products/groupcontrol/CVS/Tag
+++ b/template/en/default/admin/products/groupcontrol/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/template/en/default/admin/products/list-classifications.html.tmpl b/template/en/default/admin/products/list-classifications.html.tmpl
index a91014e23c0909bf46650b9336aa8bd71e50513e..4eddad30606d7905c3a471fca705365b85d31bad 100644
--- a/template/en/default/admin/products/list-classifications.html.tmpl
+++ b/template/en/default/admin/products/list-classifications.html.tmpl
@@ -49,15 +49,18 @@
        name => "product_count"
        align => "right"
        heading => "Product Count"
-     },
-     { 
-       heading => "Action..."
-       content => "Add product"
-       contentlink => add_contentlink
-     },
+     }
    ]
 %]
 
+[% IF user.in_group('editcomponents') %]
+  [% columns.push({
+       heading => "Action..."
+       content => "Add product"
+       contentlink => add_contentlink })
+  %]
+[% END %]
+
 [% PROCESS admin/table.html.tmpl
      columns = columns
      data = classifications
diff --git a/template/en/default/admin/sanitycheck/CVS/Entries b/template/en/default/admin/sanitycheck/CVS/Entries
index 5df9bcf7d2f3cfd4673139a4547376093d758d22..385f2c9825b8f1305b72c40fb8319274413ef3c9 100644
--- a/template/en/default/admin/sanitycheck/CVS/Entries
+++ b/template/en/default/admin/sanitycheck/CVS/Entries
@@ -1,3 +1,3 @@
-/list.html.tmpl/1.2/Mon Aug 20 18:24:53 2007//TBUGZILLA-3_1_2
-/messages.html.tmpl/1.2/Mon Aug 20 18:24:53 2007//TBUGZILLA-3_1_2
+/list.html.tmpl/1.2/Mon Aug 20 18:24:53 2007//TBUGZILLA-3_1_3
+/messages.html.tmpl/1.2/Mon Aug 20 18:24:53 2007//TBUGZILLA-3_1_3
 D
diff --git a/template/en/default/admin/sanitycheck/CVS/Tag b/template/en/default/admin/sanitycheck/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/template/en/default/admin/sanitycheck/CVS/Tag
+++ b/template/en/default/admin/sanitycheck/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/template/en/default/admin/settings/CVS/Entries b/template/en/default/admin/settings/CVS/Entries
index 003c7922c59d87aef00abc6447c4b6f938655f99..e199360a138960f116a1c0f9ea6775a77c2a5663 100644
--- a/template/en/default/admin/settings/CVS/Entries
+++ b/template/en/default/admin/settings/CVS/Entries
@@ -1,3 +1,2 @@
-/edit.html.tmpl/1.8/Mon Aug 20 18:24:53 2007//TBUGZILLA-3_1_2
-/updated.html.tmpl/1.4/Mon Aug 20 18:24:53 2007//TBUGZILLA-3_1_2
+/edit.html.tmpl/1.9/Sun Jan 27 23:14:25 2008//TBUGZILLA-3_1_3
 D
diff --git a/template/en/default/admin/settings/CVS/Tag b/template/en/default/admin/settings/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/template/en/default/admin/settings/CVS/Tag
+++ b/template/en/default/admin/settings/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/template/en/default/admin/settings/edit.html.tmpl b/template/en/default/admin/settings/edit.html.tmpl
index 34535eb95af11139515f50befe52cd497d554b06..7f95f883e18413874e4b29bd0aa266e09ab5af42 100644
--- a/template/en/default/admin/settings/edit.html.tmpl
+++ b/template/en/default/admin/settings/edit.html.tmpl
@@ -15,8 +15,7 @@
   #%]
 
 [%# INTERFACE:
-  # setting_names: an array of strings
-  # settings:      a hash of hashes, keyed by setting_name.
+  # settings:      a hash of hashes, keyed by setting name.
   #                Each hash contains:
   #                 is_enabled    - boolean
   #                 default_value - string (global default for this setting)
@@ -56,7 +55,7 @@ page, and the Default Value will automatically apply to everyone.
         <th>Enabled</th>
       </tr>
 
-      [% FOREACH name = setting_names %]
+      [% FOREACH name = settings.keys %]
           [% checkbox_name = name _ '-enabled' %]
           <tr>
             <td align="right">
diff --git a/template/en/default/admin/settings/updated.html.tmpl b/template/en/default/admin/settings/updated.html.tmpl
deleted file mode 100644
index b3a5f44c39e0011e9bb4bf845061fb9a005545c4..0000000000000000000000000000000000000000
--- a/template/en/default/admin/settings/updated.html.tmpl
+++ /dev/null
@@ -1,26 +0,0 @@
-[%# The contents of this file are subject to the Mozilla Public
-  # License Version 1.1 (the "License"); you may not use this file
-  # except in compliance with the License. You may obtain a copy of
-  # the License at http://www.mozilla.org/MPL/
-  #
-  # Software distributed under the License is distributed on an "AS
-  # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
-  # implied. See the License for the specific language governing
-  # rights and limitations under the License.
-  #
-  # The Original Code is the Bugzilla Bug Tracking System.
-  #
-  # Contributor(s): Shane H. W. Travis <travis@sedsystems.ca>
-  #
-  #%]
-
-[% PROCESS global/header.html.tmpl
-   title = "Default Preferences Updated"
- %]
-
-Your changes to the Default Preferences have been saved.<br>
-<br>
-Return to the <a
-href="editsettings.cgi?action=load">Default Preferences</a> page.
-
-[% PROCESS global/footer.html.tmpl %]
diff --git a/template/en/default/admin/sudo.html.tmpl b/template/en/default/admin/sudo.html.tmpl
index 3bdbd9fab3eab13d487e6fdacb165052413d2e9c..4dc70f95ac9697fc598c87d1b80003fea3e6d4d9 100644
--- a/template/en/default/admin/sudo.html.tmpl
+++ b/template/en/default/admin/sudo.html.tmpl
@@ -23,6 +23,7 @@
 [% PROCESS global/header.html.tmpl
    title = "Begin sudo session"
    style_urls = ['skins/standard/admin.css']
+   doc_section = "useradmin.html#impersonatingusers"
  %]
  
 [% DEFAULT target_login = "" %]
diff --git a/template/en/default/admin/users/CVS/Entries b/template/en/default/admin/users/CVS/Entries
index 8e95d13c56dd1d87f3fc9e061e4072dbc9f0e18b..d25c06e29d9d31c110da9cdbfce43b4eac549518 100644
--- a/template/en/default/admin/users/CVS/Entries
+++ b/template/en/default/admin/users/CVS/Entries
@@ -1,9 +1,9 @@
-/confirm-delete.html.tmpl/1.18/Mon Aug 20 18:24:54 2007//TBUGZILLA-3_1_2
-/create.html.tmpl/1.4/Mon Aug 20 18:24:54 2007//TBUGZILLA-3_1_2
-/edit.html.tmpl/1.14/Mon Aug 20 18:24:54 2007//TBUGZILLA-3_1_2
-/list.html.tmpl/1.5/Mon Aug 20 18:24:54 2007//TBUGZILLA-3_1_2
-/listselectvars.html.tmpl/1.2/Mon Aug 20 18:24:54 2007//TBUGZILLA-3_1_2
-/responsibilities.html.tmpl/1.2/Mon Aug 20 18:24:54 2007//TBUGZILLA-3_1_2
-/search.html.tmpl/1.5/Mon Aug 20 18:24:54 2007//TBUGZILLA-3_1_2
-/userdata.html.tmpl/1.11/Mon Aug 20 18:24:54 2007//TBUGZILLA-3_1_2
+/confirm-delete.html.tmpl/1.20/Mon Nov 19 12:43:09 2007//TBUGZILLA-3_1_3
+/create.html.tmpl/1.5/Mon Oct 22 21:42:01 2007//TBUGZILLA-3_1_3
+/edit.html.tmpl/1.15/Mon Oct 22 21:42:01 2007//TBUGZILLA-3_1_3
+/list.html.tmpl/1.6/Mon Oct 22 21:42:01 2007//TBUGZILLA-3_1_3
+/listselectvars.html.tmpl/1.2/Mon Aug 20 18:24:54 2007//TBUGZILLA-3_1_3
+/responsibilities.html.tmpl/1.2/Mon Aug 20 18:24:54 2007//TBUGZILLA-3_1_3
+/search.html.tmpl/1.6/Mon Oct 22 21:42:01 2007//TBUGZILLA-3_1_3
+/userdata.html.tmpl/1.12/Sat Jan 12 11:40:11 2008//TBUGZILLA-3_1_3
 D
diff --git a/template/en/default/admin/users/CVS/Tag b/template/en/default/admin/users/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/template/en/default/admin/users/CVS/Tag
+++ b/template/en/default/admin/users/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/template/en/default/admin/users/confirm-delete.html.tmpl b/template/en/default/admin/users/confirm-delete.html.tmpl
index d6607c397e4ca1ea1dd076797dcad82dbd1d5644..218775dca69fa2f92d98faf6957c277b7266da3b 100644
--- a/template/en/default/admin/users/confirm-delete.html.tmpl
+++ b/template/en/default/admin/users/confirm-delete.html.tmpl
@@ -48,6 +48,7 @@
   title = title
   style_urls = ['skins/standard/admin.css',
                 'skins/standard/editusers.css']
+  doc_section = "useradmin.html#user-account-deletion"
 %]
 
 [% PROCESS admin/users/listselectvars.html.tmpl
@@ -371,27 +372,15 @@
             will cease along with the deletion of the user account.
           </li>
         [% END %]
-        [% IF whine_events || whine_schedules %]
+        [% IF whine_events %]
           <li>
-            [% otheruser.login FILTER html %]
-            [% IF whine_events %]
-              has scheduled
-              [% IF whine_events == 1 %]
-                a whine
-              [% ELSE %]
-                [%+ whine_events %] whines
-              [% END %]
-            [% END %]
-            [% IF whine_schedules %]
-              [%+ 'and' IF whine_events %]
-              is on the receiving end of
-              [% IF whine_schedules == 1 %]
-                a whine
-              [% ELSE %]
-                [%+ whine_schedules %] whines
-              [% END %]
+            [% otheruser.login FILTER html %] has scheduled
+            [% IF whine_events == 1 %]
+              a whine
+            [% ELSE %]
+              [%+ whine_events %] whines
             [% END %].
-            [% IF whine_events + whine_schedules == 1 %]
+            [% IF whine_events == 1 %]
               This whine
             [% ELSE %]
               These whines
@@ -399,6 +388,18 @@
             will be deleted along with the user account.
           </li>
         [% END %]
+        [% IF whine_schedules %]
+          <li>
+            [% otheruser.login FILTER html %] is on the receiving end of
+            [% IF whine_schedules == 1 %]
+              a whine
+            [% ELSE %]
+              [%+ whine_schedules %] whines
+            [% END %].
+            The corresponding schedules will be deleted along with the user account,
+            but the whines themselves will be left unaltered.
+          </li>
+        [% END %]
       </ul>
     </div>
     [% display_warning = 1 %]
diff --git a/template/en/default/admin/users/create.html.tmpl b/template/en/default/admin/users/create.html.tmpl
index dd674b723834af1460fba3bdb0339ca7719807db..6fd5b67e79ee374c69365fae76f03d719e83c025 100644
--- a/template/en/default/admin/users/create.html.tmpl
+++ b/template/en/default/admin/users/create.html.tmpl
@@ -23,6 +23,7 @@
   title = "Add user"
   style_urls = ['skins/standard/editusers.css']
   onload = "document.forms['f'].login.focus()"
+  doc_section = "useradmin.html#createnewusers"
 %]
 
 [% PROCESS admin/users/listselectvars.html.tmpl
diff --git a/template/en/default/admin/users/edit.html.tmpl b/template/en/default/admin/users/edit.html.tmpl
index 37c0a74b2ed3422be50d70061c6a744cda4c5a0d..3efa4b8bf1b2de51616d77e27bf6196628e312e3 100644
--- a/template/en/default/admin/users/edit.html.tmpl
+++ b/template/en/default/admin/users/edit.html.tmpl
@@ -30,6 +30,7 @@
   title = title
   message = message
   style_urls = ['skins/standard/admin.css', 'skins/standard/editusers.css']
+  doc_section = "useradmin.html#modifyusers"
 %]
 
 [% PROCESS admin/users/listselectvars.html.tmpl
diff --git a/template/en/default/admin/users/list.html.tmpl b/template/en/default/admin/users/list.html.tmpl
index 4ccc1464d71d50b5ffc40932216f11e68246b945..4788e527d31addc8144bc9e97d3dd821c28ee4e7 100644
--- a/template/en/default/admin/users/list.html.tmpl
+++ b/template/en/default/admin/users/list.html.tmpl
@@ -24,6 +24,7 @@
 [% PROCESS global/header.html.tmpl
   title = "Select user"
   style_urls = ['skins/standard/editusers.css']
+  doc_section = "useradmin.html"
 %]
 
 [% PROCESS admin/users/listselectvars.html.tmpl
diff --git a/template/en/default/admin/users/search.html.tmpl b/template/en/default/admin/users/search.html.tmpl
index ff1419d9818a0a2f5314d23ccd043b2e19689f71..82e0afda71f3ea83cbcdbf957831d1ec901e0343 100644
--- a/template/en/default/admin/users/search.html.tmpl
+++ b/template/en/default/admin/users/search.html.tmpl
@@ -27,6 +27,7 @@
   title = "Search users"
   style_urls = ['skins/standard/editusers.css']
   onload = "document.forms['f'].matchstr.focus()"
+  doc_section = "useradmin.html#user-account-search"
 %]
 
 [% PROCESS admin/users/listselectvars.html.tmpl
diff --git a/template/en/default/admin/users/userdata.html.tmpl b/template/en/default/admin/users/userdata.html.tmpl
index cb3da3b136857345408cf2691ee05ac79b4086f6..feee4c5d6a936915ddce40d815af71b808b38d13 100644
--- a/template/en/default/admin/users/userdata.html.tmpl
+++ b/template/en/default/admin/users/userdata.html.tmpl
@@ -30,7 +30,7 @@
         [% IF !otheruser.groups.bz_sudo_protect %]
           <br />
           <a href="relogin.cgi?action=prepare-sudo&amp;target_login=
-          [%- otheruser.login FILTER html %]">Impersonate this user</a>
+          [%- otheruser.login FILTER url_quote %]">Impersonate this user</a>
         [% END %]
       [% END %]
     [% ELSE %]
diff --git a/template/en/default/admin/versions/CVS/Entries b/template/en/default/admin/versions/CVS/Entries
index 1173bb126d663b401d5ec465fd297e2e951311fd..9c128cbb053581bc6f7edf6a2f4ce868e4cda6c0 100644
--- a/template/en/default/admin/versions/CVS/Entries
+++ b/template/en/default/admin/versions/CVS/Entries
@@ -1,10 +1,7 @@
-/confirm-delete.html.tmpl/1.8/Mon Aug 20 18:24:54 2007//TBUGZILLA-3_1_2
-/create.html.tmpl/1.7/Mon Aug 20 18:24:54 2007//TBUGZILLA-3_1_2
-/created.html.tmpl/1.4/Mon Aug 20 18:24:55 2007//TBUGZILLA-3_1_2
-/deleted.html.tmpl/1.5/Mon Aug 20 18:24:55 2007//TBUGZILLA-3_1_2
-/edit.html.tmpl/1.7/Mon Aug 20 18:24:55 2007//TBUGZILLA-3_1_2
-/footer.html.tmpl/1.4/Mon Aug 20 18:24:55 2007//TBUGZILLA-3_1_2
-/list.html.tmpl/1.5/Mon Aug 20 18:24:55 2007//TBUGZILLA-3_1_2
-/select-product.html.tmpl/1.4/Mon Aug 20 18:24:55 2007//TBUGZILLA-3_1_2
-/updated.html.tmpl/1.5/Mon Aug 20 18:24:55 2007//TBUGZILLA-3_1_2
+/confirm-delete.html.tmpl/1.8/Mon Aug 20 18:24:54 2007//TBUGZILLA-3_1_3
+/create.html.tmpl/1.7/Mon Aug 20 18:24:54 2007//TBUGZILLA-3_1_3
+/edit.html.tmpl/1.7/Mon Aug 20 18:24:55 2007//TBUGZILLA-3_1_3
+/footer.html.tmpl/1.4/Mon Aug 20 18:24:55 2007//TBUGZILLA-3_1_3
+/list.html.tmpl/1.5/Mon Aug 20 18:24:55 2007//TBUGZILLA-3_1_3
+/select-product.html.tmpl/1.4/Mon Aug 20 18:24:55 2007//TBUGZILLA-3_1_3
 D
diff --git a/template/en/default/admin/versions/CVS/Tag b/template/en/default/admin/versions/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/template/en/default/admin/versions/CVS/Tag
+++ b/template/en/default/admin/versions/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/template/en/default/admin/versions/created.html.tmpl b/template/en/default/admin/versions/created.html.tmpl
deleted file mode 100644
index c765eb725d8160ee2c2610323e5efaa8a24a4770..0000000000000000000000000000000000000000
--- a/template/en/default/admin/versions/created.html.tmpl
+++ /dev/null
@@ -1,42 +0,0 @@
-[%# The contents of this file are subject to the Mozilla Public
-  # License Version 1.1 (the "License"); you may not use this file
-  # except in compliance with the License. You may obtain a copy of
-  # the License at http://www.mozilla.org/MPL/
-  #
-  # Software distributed under the License is distributed on an "AS
-  # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
-  # implied. See the License for the specific language governing
-  # rights and limitations under the License.
-  #
-  # The Original Code is the Bugzilla Bug Tracking System.
-  #
-  # The Initial Developer of the Original Code is Netscape Communications
-  # Corporation. Portions created by Netscape are
-  # Copyright (C) 1998 Netscape Communications Corporation. All
-  # Rights Reserved.
-  #
-  # Contributor(s): Gavin Shelley <bugzilla@chimpychompy.org>
-  #%]
-
-[%# INTERFACE:
-  # product: object; Bugzilla::Product object representing the product to
-  #                  which the version belongs.
-  # version: object; Bugzilla::Version object representing the
-  #                  newly created version
-  #%]
-  
-[% title = BLOCK %]Adding new Version of Product
-                   '[% product.name FILTER html %]'[% END %]
-[% PROCESS global/header.html.tmpl
-  title = title
-%]
-
-<p>The version '<a title="Edit version '[% version.name FILTER html %]' of product '
-   [%- product.name FILTER html %]'"
-   href="editversions.cgi?action=edit&amp;product=
-   [%- product.name FILTER url_quote %]&amp;version=[% version.name FILTER url_quote %]">
-   [%- version.name FILTER html %]</a>' has been created.</p>
-
-[% PROCESS admin/versions/footer.html.tmpl %]
-
-[% PROCESS global/footer.html.tmpl %]
diff --git a/template/en/default/admin/versions/deleted.html.tmpl b/template/en/default/admin/versions/deleted.html.tmpl
deleted file mode 100644
index 49febe894d7592417d007527fcde35094a827aae..0000000000000000000000000000000000000000
--- a/template/en/default/admin/versions/deleted.html.tmpl
+++ /dev/null
@@ -1,40 +0,0 @@
-[%# The contents of this file are subject to the Mozilla Public
-  # License Version 1.1 (the "License"); you may not use this file
-  # except in compliance with the License. You may obtain a copy of
-  # the License at http://www.mozilla.org/MPL/
-  #
-  # Software distributed under the License is distributed on an "AS
-  # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
-  # implied. See the License for the specific language governing
-  # rights and limitations under the License.
-  #
-  # The Original Code is the Bugzilla Bug Tracking System.
-  #
-  # The Initial Developer of the Original Code is Netscape Communications
-  # Corporation. Portions created by Netscape are
-  # Copyright (C) 1998 Netscape Communications Corporation. All
-  # Rights Reserved.
-  #
-  # Contributor(s): Gavin Shelley <bugzilla@chimpychompy.org>
-  #%]
-
-[%# INTERFACE:
-  # product: object; Bugzilla::Product object representing the product to
-  #               which the version belongs.
-  # version: object; Bugzilla::Version object representing the
-  #                    version the user deleted.
-  #%]
-  
-[% title = BLOCK %]Deleted Version '[% version.name FILTER html %]' of Product
-                   '[% product.name FILTER html %]'[% END %]
-[% PROCESS global/header.html.tmpl
-  title = title
-%]
-
-<p>Version '[% version.name FILTER html %]' deleted.</p>
-
-[% PROCESS admin/versions/footer.html.tmpl
-  no_edit_version_link = 1
- %]
-
-[% PROCESS global/footer.html.tmpl %]
diff --git a/template/en/default/admin/versions/updated.html.tmpl b/template/en/default/admin/versions/updated.html.tmpl
deleted file mode 100644
index a7ae9a4cdc87c1a96ab0be43855abfe0b9dfa333..0000000000000000000000000000000000000000
--- a/template/en/default/admin/versions/updated.html.tmpl
+++ /dev/null
@@ -1,44 +0,0 @@
-[%# The contents of this file are subject to the Mozilla Public
-  # License Version 1.1 (the "License"); you may not use this file
-  # except in compliance with the License. You may obtain a copy of
-  # the License at http://www.mozilla.org/MPL/
-  #
-  # Software distributed under the License is distributed on an "AS
-  # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
-  # implied. See the License for the specific language governing
-  # rights and limitations under the License.
-  #
-  # The Original Code is the Bugzilla Bug Tracking System.
-  #
-  # The Initial Developer of the Original Code is Netscape Communications
-  # Corporation. Portions created by Netscape are
-  # Copyright (C) 1998 Netscape Communications Corporation. All
-  # Rights Reserved.
-  #
-  # Contributor(s): Gavin Shelley <bugzilla@chimpychompy.org>
-  #%]
-
-[%# INTERFACE:
-  # product: object; Bugzilla::Product object representing the product to
-  #               which the version belongs.
-  # version: object; Bugzilla::Version object representing the
-  #                    version the user updated.
-  #
-  # updated: boolean; defined if the 'name' field was updated
-  #%]
-  
-[% title = BLOCK %]Updating Version '[% version.name FILTER html %]' of Product
-                   '[% product.name FILTER html %]'[% END %]
-[% PROCESS global/header.html.tmpl
-  title = title
-%]
-
-[% IF updated %]
-  <p>Updated Version name to: '[% version.name FILTER html %]'.</p>
-[% ELSE %]
-  <p>Nothing changed for version '[% version.name FILTER html %]'.</p>
-[% END %]
-
-[% PROCESS admin/versions/footer.html.tmpl %]
-
-[% PROCESS global/footer.html.tmpl %]
diff --git a/template/en/default/admin/workflow/CVS/Entries b/template/en/default/admin/workflow/CVS/Entries
index 30d23dadfb92940d6fa9c8cb75799526901f0029..68b1d608d22101e0f9e248f85835eda16573bd8a 100644
--- a/template/en/default/admin/workflow/CVS/Entries
+++ b/template/en/default/admin/workflow/CVS/Entries
@@ -1,3 +1,3 @@
-/comment.html.tmpl/1.3/Mon Aug 20 18:24:55 2007//TBUGZILLA-3_1_2
-/edit.html.tmpl/1.4/Mon Aug 20 18:24:55 2007//TBUGZILLA-3_1_2
+/comment.html.tmpl/1.3/Mon Aug 20 18:24:55 2007//TBUGZILLA-3_1_3
+/edit.html.tmpl/1.4/Mon Aug 20 18:24:55 2007//TBUGZILLA-3_1_3
 D
diff --git a/template/en/default/admin/workflow/CVS/Tag b/template/en/default/admin/workflow/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/template/en/default/admin/workflow/CVS/Tag
+++ b/template/en/default/admin/workflow/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/template/en/default/attachment/CVS/Entries b/template/en/default/attachment/CVS/Entries
index 3224121117df9f76219307e522d3ce1e9f95c274..1df05ad2638e9e5c0d1c072ab028223f1124eb1f 100644
--- a/template/en/default/attachment/CVS/Entries
+++ b/template/en/default/attachment/CVS/Entries
@@ -1,15 +1,16 @@
-/choose.html.tmpl/1.6/Mon Aug 20 18:24:57 2007//TBUGZILLA-3_1_2
-/confirm-delete.html.tmpl/1.5/Mon Aug 20 18:24:57 2007//TBUGZILLA-3_1_2
-/content-types.html.tmpl/1.6/Mon Aug 20 18:24:57 2007//TBUGZILLA-3_1_2
-/create.html.tmpl/1.32/Mon Aug 20 18:24:57 2007//TBUGZILLA-3_1_2
-/created.html.tmpl/1.15/Mon Aug 20 18:24:57 2007//TBUGZILLA-3_1_2
-/createformcontents.html.tmpl/1.2/Mon Aug 20 18:24:57 2007//TBUGZILLA-3_1_2
-/delete_reason.txt.tmpl/1.3/Mon Aug 20 18:24:57 2007//TBUGZILLA-3_1_2
-/diff-file.html.tmpl/1.7/Mon Aug 20 18:24:57 2007//TBUGZILLA-3_1_2
-/diff-footer.html.tmpl/1.3/Mon Aug 20 18:24:57 2007//TBUGZILLA-3_1_2
-/diff-header.html.tmpl/1.17/Mon Aug 20 18:24:57 2007//TBUGZILLA-3_1_2
-/edit.html.tmpl/1.47/Sun Sep  9 12:06:52 2007//TBUGZILLA-3_1_2
-/list.html.tmpl/1.38/Mon Aug 20 18:24:57 2007//TBUGZILLA-3_1_2
-/show-multiple.html.tmpl/1.24/Mon Aug 20 18:24:57 2007//TBUGZILLA-3_1_2
-/updated.html.tmpl/1.14/Mon Aug 20 18:24:57 2007//TBUGZILLA-3_1_2
+/choose.html.tmpl/1.6/Mon Aug 20 18:24:57 2007//TBUGZILLA-3_1_3
+/confirm-delete.html.tmpl/1.6/Sun Nov 11 22:03:17 2007//TBUGZILLA-3_1_3
+/content-types.html.tmpl/1.6/Mon Aug 20 18:24:57 2007//TBUGZILLA-3_1_3
+/create.html.tmpl/1.34/Sun Nov 11 22:03:17 2007//TBUGZILLA-3_1_3
+/created.html.tmpl/1.19/Sun Jan 27 19:21:15 2008//TBUGZILLA-3_1_3
+/createformcontents.html.tmpl/1.2/Mon Aug 20 18:24:57 2007//TBUGZILLA-3_1_3
+/delete_reason.txt.tmpl/1.3/Mon Aug 20 18:24:57 2007//TBUGZILLA-3_1_3
+/diff-file.html.tmpl/1.7/Mon Aug 20 18:24:57 2007//TBUGZILLA-3_1_3
+/diff-footer.html.tmpl/1.3/Mon Aug 20 18:24:57 2007//TBUGZILLA-3_1_3
+/diff-header.html.tmpl/1.18/Sun Nov 11 22:03:17 2007//TBUGZILLA-3_1_3
+/edit.html.tmpl/1.49/Thu Nov 29 19:49:16 2007//TBUGZILLA-3_1_3
+/list.html.tmpl/1.38/Mon Aug 20 18:24:57 2007//TBUGZILLA-3_1_3
+/midair.html.tmpl/1.1/Thu Nov 29 19:49:16 2007//TBUGZILLA-3_1_3
+/show-multiple.html.tmpl/1.24/Mon Aug 20 18:24:57 2007//TBUGZILLA-3_1_3
+/updated.html.tmpl/1.17/Tue Jan 29 18:48:45 2008//TBUGZILLA-3_1_3
 D
diff --git a/template/en/default/attachment/CVS/Tag b/template/en/default/attachment/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/template/en/default/attachment/CVS/Tag
+++ b/template/en/default/attachment/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/template/en/default/attachment/confirm-delete.html.tmpl b/template/en/default/attachment/confirm-delete.html.tmpl
index 82cff7ed27985d178b4030e66ef05c05c90ec7e9..4bd69e5650030b641433a282fc424a64a7515d1d 100644
--- a/template/en/default/attachment/confirm-delete.html.tmpl
+++ b/template/en/default/attachment/confirm-delete.html.tmpl
@@ -25,7 +25,10 @@
   [%+ "$terms.Bug " _ a.bug_id FILTER bug_link(a.bug_id) FILTER none %]
 [% END %]
 
-[% PROCESS global/header.html.tmpl title = title %]
+[% PROCESS global/header.html.tmpl
+  title = title
+  doc_section = "attachments.html"
+%]
 
 <table border="1" cellpadding="4" cellspacing="0">
   <tr bgcolor="#6666FF">
diff --git a/template/en/default/attachment/create.html.tmpl b/template/en/default/attachment/create.html.tmpl
index 10a6abec2fe12dee8657cd29e4ff3bfa9e390d5b..3a5353577d2c2c4f34d90b50720a71d9c155ffc4 100644
--- a/template/en/default/attachment/create.html.tmpl
+++ b/template/en/default/attachment/create.html.tmpl
@@ -36,6 +36,7 @@
   onload="setContentTypeDisabledState(document.entryform);"
   style_urls = [ 'skins/standard/create_attachment.css' ]
   javascript_urls = [ "js/attachment.js" ]
+  doc_section = "attachments.html"
 %]
 
 <form name="entryform" method="post" action="attachment.cgi" enctype="multipart/form-data">
@@ -73,6 +74,21 @@
               check the box below.</em><br>
           <input type="checkbox" id="takebug" name="takebug" value="1">
           <label for="takebug">take [% terms.bug %]</label>
+          [% bug_statuses = [] %]
+          [% FOREACH bug_status = bug.status.can_change_to %]
+            [% NEXT IF bug_status.name == "UNCONFIRMED" && !bug.product_obj.votes_to_confirm %]
+            [% bug_statuses.push(bug_status) IF bug_status.is_open %]
+          [% END %]
+          [% IF bug_statuses.size %]
+            <label for="takebug">and set the [% terms.bug %] status to</label>
+            <select id="bug_status" name="bug_status">
+              <option label="[% bug.status.name FILTER html %]">[% bug.status.name FILTER html %] (current)</option>
+              [% FOREACH bug_status = bug_statuses %]
+                [% NEXT IF bug_status.id == bug.status.id %]
+                <option label="[% bug_status.name FILTER html %]">[% bug_status.name FILTER html %]</option>
+              [% END %]
+            </select>
+          [% END %]
         </td>
       </tr>
     [% END %]
diff --git a/template/en/default/attachment/created.html.tmpl b/template/en/default/attachment/created.html.tmpl
index 69b18c2b70e83593e654346976aa1ddddc7b2da7..d0358dac3f3beddeb1342adc5e7bc5b09b6edac4 100644
--- a/template/en/default/attachment/created.html.tmpl
+++ b/template/en/default/attachment/created.html.tmpl
@@ -27,7 +27,11 @@
 [% PROCESS global/variables.none.tmpl %]
 
 [% PROCESS global/header.html.tmpl
-  title = "Changes Submitted"
+  title = "Attachment $attachment.id added to $terms.Bug $attachment.bug_id"
+  javascript_urls = [ "js/util.js", "js/keyword-chooser.js", "js/field.js",
+                      "js/yui/yahoo-dom-event.js", "js/yui/calendar.js" ]
+  style_urls = [ "skins/standard/yui/calendar.css", "skins/standard/show_bug.css" ]
+  doc_section = "bug_page.html"
 %]
 
 <dl>
@@ -60,7 +64,7 @@
 
 <p>
 <a href="attachment.cgi?bugid=[% attachment.bug_id %]&amp;action=enter">Create
- Another Attachment to [% terms.Bug %] #[% attachment.bug_id %]</a>
+ Another Attachment to [% terms.Bug %] [%+ attachment.bug_id %]</a>
 </p>
 
-[% PROCESS global/footer.html.tmpl %]
+[% PROCESS bug/show.html.tmpl %]
diff --git a/template/en/default/attachment/diff-header.html.tmpl b/template/en/default/attachment/diff-header.html.tmpl
index 46db332c65ba340d30fae0a9cf8ddda8890dbb1f..57afc799f59aea1d8a00f54a9fae097ad5a05e58 100644
--- a/template/en/default/attachment/diff-header.html.tmpl
+++ b/template/en/default/attachment/diff-header.html.tmpl
@@ -224,7 +224,7 @@ tbody.file pre:empty {
   [% subheader = BLOCK %]
     [% bugsummary FILTER html %]
   [% END %]
-  [% PROCESS global/header.html.tmpl %]
+  [% PROCESS global/header.html.tmpl doc_section = "attachments.html#patchviewer" %]
 [% ELSE %]
   <html>
   <head>
diff --git a/template/en/default/attachment/edit.html.tmpl b/template/en/default/attachment/edit.html.tmpl
index ffa53493d4485893c9f08caa097bb8bd6c44ed73..3796b56505dca60468470eecec6da5e36fc05158 100644
--- a/template/en/default/attachment/edit.html.tmpl
+++ b/template/en/default/attachment/edit.html.tmpl
@@ -35,6 +35,7 @@
   title = title
   header = header
   subheader = subheader
+  doc_section = "attachments.html"
   style = "
     table.attachment_info th { text-align: right; vertical-align: top; }
     table.attachment_info td { text-align: left; vertical-align: top; }
@@ -201,6 +202,7 @@
   <input type="hidden" name="id" value="[% attachment.id %]">
   <input type="hidden" name="action" value="update">
   <input type="hidden" name="contenttypemethod" value="manual">
+  <input type="hidden" name="delta_ts" value="[% attachment.modification_time FILTER html %]">
 
   <table class="attachment_info" width="100%">
 
diff --git a/template/en/default/attachment/midair.html.tmpl b/template/en/default/attachment/midair.html.tmpl
new file mode 100644
index 0000000000000000000000000000000000000000..8cde9f2f5b309e70e84a03a2e5b839aab9d9bf10
--- /dev/null
+++ b/template/en/default/attachment/midair.html.tmpl
@@ -0,0 +1,76 @@
+[%# The contents of this file are subject to the Mozilla Public
+  # License Version 1.1 (the "License"); you may not use this file
+  # except in compliance with the License. You may obtain a copy of
+  # the License at http://www.mozilla.org/MPL/
+  #
+  # Software distributed under the License is distributed on an "AS
+  # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
+  # implied. See the License for the specific language governing
+  # rights and limitations under the License.
+  #
+  # The Original Code is the Bugzilla Bug Tracking System.
+  #
+  # The Initial Developer of the Original Code is Netscape Communications
+  # Corporation. Portions created by Netscape are
+  # Copyright (C) 1998 Netscape Communications Corporation. All
+  # Rights Reserved.
+  #
+  # Contributor(s): Myk Melez <myk@mozilla.org>
+  #                 Frédéric Buclin <LpSolit@gmail.com>
+  #%]
+
+[%# INTERFACE:
+  # operations: array; bug activity since the user last displayed the attachment form,
+  #   used by bug/activity/table.html.tmpl to display recent changes that will
+  #   be overwritten if the user submits these changes.  See that template
+  #   for further documentation.
+  # attachment: object; the attachment being changed.
+  #%]
+
+[%# The global Bugzilla->cgi object is used to obtain form variable values. %]
+[% USE Bugzilla %]
+[% cgi = Bugzilla.cgi %]
+
+[% PROCESS global/variables.none.tmpl %]
+[% PROCESS global/header.html.tmpl title = "Mid-air collision!" %]
+
+<h1>Mid-air collision detected!</h1>
+
+<p>
+  Someone else has made changes to
+  <a href="attachment.cgi?id=[% attachment.id %]&amp;action=edit">attachment [% attachment.id %]</a>
+  of [% "$terms.bug $attachment.bug_id" FILTER bug_link(attachment.bug_id) FILTER none %]
+  at the same time you were trying to. The changes made were:
+</p>
+
+<p>
+  [% PROCESS "bug/activity/table.html.tmpl" incomplete_data=0 %]
+</p>
+
+[% IF cgi.param("comment") %]
+<p>
+  Your comment was:<br>
+  <blockquote><pre>[% cgi.param("comment") FILTER wrap_comment FILTER html %]</pre></blockquote>
+</p>
+[% END %]
+
+<p>
+You have the following choices:
+</p>
+
+<ul>
+  <li>
+    <form method="post" action="attachment.cgi">
+      [% PROCESS "global/hidden-fields.html.tmpl" exclude="^Bugzilla_(login|password)$" %]
+      <input type="submit" id="process" value="Submit my changes anyway">
+        This will cause all of the above changes to be overwritten.
+    </form>
+  </li>
+  <li>
+    Throw away my changes, and
+    <a href="attachment.cgi?id=[% attachment.id %]&amp;action=edit">revisit
+    attachment [% attachment.id %]</a>
+  </li>
+</ul>
+
+[% PROCESS global/footer.html.tmpl %]
diff --git a/template/en/default/attachment/updated.html.tmpl b/template/en/default/attachment/updated.html.tmpl
index ca695e6021a1c1db6573fe504903b64cc1c024f4..4b9160710b695baa3ecb03ca6ae9cda1748a1132 100644
--- a/template/en/default/attachment/updated.html.tmpl
+++ b/template/en/default/attachment/updated.html.tmpl
@@ -24,9 +24,24 @@
   #%]
 
 [% PROCESS global/variables.none.tmpl %]
+[% bug = bugs.0 %]
+[% filtered_desc = bug.short_desc FILTER html %]
+[% filtered_timestamp = bug.delta_ts FILTER time %]
 
 [% PROCESS global/header.html.tmpl
-  title = "Changes Submitted"
+  title = "Changes Submitted to Attachment $attachment.id of $terms.Bug $attachment.bug_id"
+  header = "$terms.Bug&nbsp;$attachment.bug_id"
+  subheader = filtered_desc
+  header_addl_info = "Last modified: $filtered_timestamp"
+  bodyclasses = ['bz_bug',
+                 "bz_status_$bug.bug_status",
+                 "bz_component_$bug.component",
+                 "bz_bug_$bug.bug_id"
+                ]
+  javascript_urls = [ "js/util.js", "js/keyword-chooser.js", "js/field.js",
+                      "js/yui/yahoo-dom-event.js", "js/yui/calendar.js" ]
+  style_urls = [ "skins/standard/yui/calendar.css", "skins/standard/show_bug.css" ]
+  doc_section = "bug_page.html"
 %]
 
 <dl>
@@ -41,4 +56,4 @@
   </dd>
 </dl>
 
-[% PROCESS global/footer.html.tmpl %]
+[% PROCESS bug/show.html.tmpl %]
diff --git a/template/en/default/bug/CVS/Entries b/template/en/default/bug/CVS/Entries
index cc8dd4c49455de60d661dacc34d5c7fe692ae3e8..42efaeaeabc5a283614a8a8989c059cffaf19293 100644
--- a/template/en/default/bug/CVS/Entries
+++ b/template/en/default/bug/CVS/Entries
@@ -1,17 +1,17 @@
-/choose.html.tmpl/1.8/Mon Aug 20 18:24:57 2007//TBUGZILLA-3_1_2
-/comments.html.tmpl/1.33/Mon Aug 20 18:24:57 2007//TBUGZILLA-3_1_2
-/dependency-graph.html.tmpl/1.14/Mon Aug 20 18:24:57 2007//TBUGZILLA-3_1_2
-/dependency-tree.html.tmpl/1.26/Mon Aug 20 18:24:57 2007//TBUGZILLA-3_1_2
-/edit.html.tmpl/1.106/Mon Aug 20 18:24:57 2007//TBUGZILLA-3_1_2
-/field.html.tmpl/1.11/Mon Sep 17 04:48:06 2007//TBUGZILLA-3_1_2
-/keyword-chooser.html.tmpl/1.2/Mon Aug 20 18:24:58 2007//TBUGZILLA-3_1_2
-/knob.html.tmpl/1.35/Mon Aug 20 18:24:58 2007//TBUGZILLA-3_1_2
-/navigate.html.tmpl/1.10/Mon Aug 20 18:24:58 2007//TBUGZILLA-3_1_2
-/show-multiple.html.tmpl/1.39/Fri Aug 24 04:42:56 2007//TBUGZILLA-3_1_2
-/show.html.tmpl/1.19/Mon Aug 20 18:24:58 2007//TBUGZILLA-3_1_2
-/show.xml.tmpl/1.22/Mon Aug 20 18:24:58 2007//TBUGZILLA-3_1_2
-/summarize-time.html.tmpl/1.10/Tue Sep 18 21:37:12 2007//TBUGZILLA-3_1_2
-/time.html.tmpl/1.3/Mon Aug 20 18:24:58 2007//TBUGZILLA-3_1_2
+/choose.html.tmpl/1.8/Mon Aug 20 18:24:57 2007//TBUGZILLA-3_1_3
+/comments.html.tmpl/1.35/Wed Nov 21 01:06:22 2007//TBUGZILLA-3_1_3
+/dependency-graph.html.tmpl/1.14/Mon Aug 20 18:24:57 2007//TBUGZILLA-3_1_3
+/dependency-tree.html.tmpl/1.28/Sun Nov 11 22:03:18 2007//TBUGZILLA-3_1_3
+/edit.html.tmpl/1.112/Tue Jan 29 18:42:16 2008//TBUGZILLA-3_1_3
+/field.html.tmpl/1.14/Sat Jan 12 17:20:51 2008//TBUGZILLA-3_1_3
+/keyword-chooser.html.tmpl/1.2/Mon Aug 20 18:24:58 2007//TBUGZILLA-3_1_3
+/knob.html.tmpl/1.35/Mon Aug 20 18:24:58 2007//TBUGZILLA-3_1_3
+/navigate.html.tmpl/1.11/Sun Jan 27 19:21:16 2008//TBUGZILLA-3_1_3
+/show-multiple.html.tmpl/1.40/Sun Nov 11 22:03:18 2007//TBUGZILLA-3_1_3
+/show.html.tmpl/1.22/Sun Jan 27 19:21:16 2008//TBUGZILLA-3_1_3
+/show.xml.tmpl/1.22/Mon Aug 20 18:24:58 2007//TBUGZILLA-3_1_3
+/summarize-time.html.tmpl/1.11/Sun Nov 11 22:03:18 2007//TBUGZILLA-3_1_3
+/time.html.tmpl/1.3/Mon Aug 20 18:24:58 2007//TBUGZILLA-3_1_3
 D/activity////
 D/create////
 D/process////
diff --git a/template/en/default/bug/CVS/Tag b/template/en/default/bug/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/template/en/default/bug/CVS/Tag
+++ b/template/en/default/bug/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/template/en/default/bug/activity/CVS/Entries b/template/en/default/bug/activity/CVS/Entries
index 5df2f2461379e56a19b462d872f85cff1143012e..cc61c3afb3b944217bb388ca7d7fe464a2c4255a 100644
--- a/template/en/default/bug/activity/CVS/Entries
+++ b/template/en/default/bug/activity/CVS/Entries
@@ -1,3 +1,3 @@
-/show.html.tmpl/1.9/Mon Aug 20 18:24:59 2007//TBUGZILLA-3_1_2
-/table.html.tmpl/1.15/Mon Aug 20 18:24:59 2007//TBUGZILLA-3_1_2
+/show.html.tmpl/1.10/Wed Oct  3 13:38:34 2007//TBUGZILLA-3_1_3
+/table.html.tmpl/1.15/Mon Aug 20 18:24:59 2007//TBUGZILLA-3_1_3
 D
diff --git a/template/en/default/bug/activity/CVS/Tag b/template/en/default/bug/activity/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/template/en/default/bug/activity/CVS/Tag
+++ b/template/en/default/bug/activity/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/template/en/default/bug/activity/show.html.tmpl b/template/en/default/bug/activity/show.html.tmpl
index c18e04bfdf28d2c3a5bb1761ce7dec4a4f50ec60..a457df01800f07f56fc296328b79850d6b1d5190 100644
--- a/template/en/default/bug/activity/show.html.tmpl
+++ b/template/en/default/bug/activity/show.html.tmpl
@@ -19,27 +19,31 @@
   #%]
 
 [%# INTERFACE:
-  # bug_id: integer. The bug ID.
+  # bug: object. The bug whose activity is being displayed.
+  # operations: array of hashes, see activity/table.html.tmpl.
   #
   # This template also needs to be called with the interface to the
-  # activity.html.tmpl template fulfilled.
+  # activity/table.html.tmpl template fulfilled.
   #%]
 
 [% PROCESS global/variables.none.tmpl %]
 
+[% filtered_desc = bug.short_desc FILTER html %]
 [% PROCESS global/header.html.tmpl
-  title = "Changes made to $terms.bug $bug_id"
-  header = "Activity log"
-  subheader = "$terms.Bug <a href=\"show_bug.cgi?id=$bug_id\">$bug_id</a>"
+  title = "Changes made to $terms.bug $bug.bug_id"
+  header = "Activity log for $terms.bug $bug.bug_id: $filtered_desc"
  %]
 
-<br>
+<p>
+  [% "Back to $terms.bug $bug.bug_id" FILTER bug_link(bug.bug_id) FILTER none %]
+</p>
 
 [% PROCESS bug/activity/table.html.tmpl %]
 
-<p>
-  <a href="show_bug.cgi?id=[% bug_id %]">Back to [% terms.bug %] 
-  [%+ bug_id %]</a>
-</p>
+[% IF operations.size > 0 %]
+  <p>
+    [% "Back to $terms.bug $bug.bug_id" FILTER bug_link(bug.bug_id) FILTER none %]
+  </p>
+[% END %]
 
 [% PROCESS global/footer.html.tmpl %]
diff --git a/template/en/default/bug/comments.html.tmpl b/template/en/default/bug/comments.html.tmpl
index 895ab5306139649e0b0d53aaf04335377fc52a13..1fc5d46d362f24d1ca3c71529062e226a93e7649 100644
--- a/template/en/default/bug/comments.html.tmpl
+++ b/template/en/default/bug/comments.html.tmpl
@@ -183,7 +183,7 @@
         [% IF mode == "edit" %]
           <script type="text/javascript"><!--
             addCollapseLink([% count %]);
-            addReplyLink([% count %]); //-->
+            addReplyLink([% count %], [% comment.id %]); //-->
           </script>
         [% END %]
         [%+ decoration FILTER none %]
@@ -191,14 +191,14 @@
 
       [% IF mode == "edit" && isinsider %]
         <i>
-          <input type="hidden" name="oisprivate-[% count %]" 
-                 value="[% comment.isprivate %]">
-          <input type="hidden" name="when-[% count %]" value="[% comment.time %]">
-          <input type="checkbox" name="isprivate-[% count %]" value="1"
+          <input type="hidden" value="1"
+                 name="defined_isprivate_[% comment.id %]">
+          <input type="checkbox"
+                 name="isprivate_[% comment.id %]" value="1"
+                 id="isprivate_[% comment.id %]"
                  onClick="updateCommentPrivacy(this, [% count %])"
-                 id="isprivate-[% count %]"
                  [% " checked=\"checked\"" IF comment.isprivate %]>
-          <label for="isprivate-[% count %]">Private</label>
+          <label for="isprivate_[% comment.id %]">Private</label>
         </i>
       [% END %]
       [% IF user.in_group(Param('timetrackinggroup')) &&
diff --git a/template/en/default/bug/create/CVS/Entries b/template/en/default/bug/create/CVS/Entries
index 00741d663a6beae773e7c05c903b78d88f6ad280..0add02eec63810669b83d081b5bc22fac15149f3 100644
--- a/template/en/default/bug/create/CVS/Entries
+++ b/template/en/default/bug/create/CVS/Entries
@@ -1,9 +1,9 @@
-/comment-guided.txt.tmpl/1.6/Mon Aug 20 18:25:00 2007//TBUGZILLA-3_1_2
-/comment.txt.tmpl/1.5/Mon Aug 20 18:25:00 2007//TBUGZILLA-3_1_2
-/confirm-create-dupe.html.tmpl/1.4/Mon Aug 20 18:25:00 2007//TBUGZILLA-3_1_2
-/create-guided.html.tmpl/1.40/Thu Aug 23 15:34:39 2007//TBUGZILLA-3_1_2
-/create.html.tmpl/1.78/Mon Aug 20 18:25:00 2007//TBUGZILLA-3_1_2
-/created.html.tmpl/1.11/Mon Aug 20 18:25:00 2007//TBUGZILLA-3_1_2
-/make-template.html.tmpl/1.10/Mon Aug 20 18:25:00 2007//TBUGZILLA-3_1_2
-/user-message.html.tmpl/1.5/Mon Aug 20 18:25:00 2007//TBUGZILLA-3_1_2
+/comment-guided.txt.tmpl/1.6/Mon Aug 20 18:25:00 2007//TBUGZILLA-3_1_3
+/comment.txt.tmpl/1.5/Mon Aug 20 18:25:00 2007//TBUGZILLA-3_1_3
+/confirm-create-dupe.html.tmpl/1.4/Mon Aug 20 18:25:00 2007//TBUGZILLA-3_1_3
+/create-guided.html.tmpl/1.42/Fri Dec 14 16:57:49 2007//TBUGZILLA-3_1_3
+/create.html.tmpl/1.81/Sun Dec  2 22:30:53 2007//TBUGZILLA-3_1_3
+/created.html.tmpl/1.12/Sun Jan 27 19:21:17 2008//TBUGZILLA-3_1_3
+/make-template.html.tmpl/1.10/Mon Aug 20 18:25:00 2007//TBUGZILLA-3_1_3
+/user-message.html.tmpl/1.5/Mon Aug 20 18:25:00 2007//TBUGZILLA-3_1_3
 D
diff --git a/template/en/default/bug/create/CVS/Tag b/template/en/default/bug/create/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/template/en/default/bug/create/CVS/Tag
+++ b/template/en/default/bug/create/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/template/en/default/bug/create/create-guided.html.tmpl b/template/en/default/bug/create/create-guided.html.tmpl
index 6953c84efbe01b7fffd1e4d1c97cd78c87b4086a..588a1043d89781e6fa27c919ba438bb930a92de5 100644
--- a/template/en/default/bug/create/create-guided.html.tmpl
+++ b/template/en/default/bug/create/create-guided.html.tmpl
@@ -209,6 +209,11 @@ function PutDescription() {
           <td valign="top">
             <select name="component" id="component"
                     size="5" onchange="PutDescription()">
+              [% IF NOT default.component_ %]
+                [%# Various b.m.o. products have a "General" component,
+                    which is a useful default. %]
+                [% default.component_ = "General" %]
+              [% END %]
               [% FOREACH c = product.components %]
                 <option value="[% c.name FILTER html %]"
                   [% " selected=\"selected\"" IF c.name == default.component_ %]>
@@ -316,7 +321,7 @@ function PutDescription() {
     </td>
     <td valign="top">
       <input type="text" size="80" name="short_desc" id="short_desc" 
-             maxlength="255">
+             maxlength="255" spellcheck="true">
       <p>
         A sentence which summarises the problem.
         Please be descriptive and use lots of keywords.
diff --git a/template/en/default/bug/create/create.html.tmpl b/template/en/default/bug/create/create.html.tmpl
index fa6b7b020c916018b69fcdc4e93c0a8c68e2f9c2..8bc4ab4655c538518e5b0f32627c4d64210b0819 100644
--- a/template/en/default/bug/create/create.html.tmpl
+++ b/template/en/default/bug/create/create.html.tmpl
@@ -21,6 +21,7 @@
   #                 Marc Schumann <wurblzap@gmail.com>
   #                 Akamai Technologies <bugzilla-dev@akamai.com>
   #                 Max Kanat-Alexander <mkanat@bugzilla.org>
+  #                 Frédéric Buclin <LpSolit@gmail.com>
   #%]
 
 [% PROCESS "global/field-descs.none.tmpl" %]
@@ -29,8 +30,11 @@
 
 [% PROCESS global/header.html.tmpl
   title = title
-  style_urls = [ 'skins/standard/create_attachment.css' ]
-  javascript_urls = [ "js/attachment.js", "js/util.js", "js/keyword-chooser.js" ]
+  style_urls = [ 'skins/standard/create_attachment.css',
+                 'skins/standard/yui/calendar.css' ]
+  javascript_urls = [ "js/attachment.js", "js/util.js", "js/keyword-chooser.js",
+                      "js/yui/yahoo-dom-event.js", "js/yui/calendar.js",
+                      "js/field.js" ]
 %]
 
 <script type="text/javascript">
@@ -40,6 +44,7 @@ var initialowners = new Array([% product.components.size %]);
 var last_initialowner;
 var initialccs = new Array([% product.components.size %]);
 var components = new Array([% product.components.size %]);
+var comp_desc = new Array([% product.components.size %]);
 var flags = new Array([% product.components.size %]);
 [% IF Param("useqacontact") %]
     var initialqacontacts = new Array([% product.components.size %]);
@@ -48,6 +53,7 @@ var flags = new Array([% product.components.size %]);
 [% count = 0 %]
 [%- FOREACH c = product.components %]
     components[[% count %]] = "[% c.name FILTER js %]";
+    comp_desc[[% count %]] = "[% c.description FILTER html_light FILTER js %]";
     initialowners[[% count %]] = "[% c.default_assignee.login FILTER js %]";
     [% flag_list = [] %]
     [% FOREACH f = c.flag_types.bug %]
@@ -101,6 +107,7 @@ function set_assign_to() {
         }
 
         document.getElementById('initial_cc').innerHTML = initialccs[index];
+        document.getElementById('comp_desc').innerHTML = comp_desc[index];
 
         [% IF Param("useqacontact") %]
             var contact = initialqacontacts[index];
@@ -160,11 +167,10 @@ function handleWantsAttachment(wants_attachment) {
 <input type="hidden" name="product" value="[% product.name FILTER html %]">
 <input type="hidden" name="token" value="[% token FILTER html %]">
 
-<table cellspacing="2" cellpadding="0" border="0">
-
+<table cellspacing="4" cellpadding="2" border="0">
+<tbody>
   <tr>
-    <td>&nbsp;</td>
-    <td colspan="3">
+    <td colspan="4">
     [%# Migration note: The following file corresponds to the old Param
       # 'entryheaderhtml'
       #%]
@@ -173,39 +179,23 @@ function handleWantsAttachment(wants_attachment) {
   </tr>
 
   <tr>
-    <td>&nbsp;</td>
-    <td colspan="3">&nbsp;</td>
+    <td colspan="4">&nbsp;</td>
   </tr>
 
   <tr>
-    <td align="right" valign="top"><strong>Reporter:</strong></td>
-    <td valign="top">[% user.login FILTER html %]</td>
+    <th>Product:</th>
+    <td width="10%">[% product.name FILTER html %]</td>
 
-    <td align="right" valign="top"><strong>Product:</strong></td>
-    <td valign="top">[% product.name FILTER html %]</td>
+    <th>Reporter:</th>
+    <td width="100%">[% user.login FILTER html %]</td>
   </tr>
 
   [%# We can't use the select block in these two cases for various reasons. %]
   <tr>
-    <td align="right" valign="top">
-      <strong>Version:</strong>
-    </td>
-    <td>
-      <select name="version" size="5">
-        [%- FOREACH v = version %]
-          <option value="[% v FILTER html %]"
-            [% " selected=\"selected\"" IF v == default.version %]>[% v FILTER html -%]
-          </option>
-        [%- END %]
-      </select>
-    </td>
-
-    <td align="right" valign="top">
-      <strong>
-        <a href="describecomponents.cgi?product=[% product.name FILTER url_quote %]">
-          Component</a>:
-      </strong>
-    </td>
+    <th>
+      <a href="describecomponents.cgi?product=[% product.name FILTER url_quote %]">
+      Component</a>:
+    </th>
     <td>
       <select name="component" onchange="set_assign_to();" size="5">
         [%- FOREACH c = product.components %]
@@ -216,22 +206,59 @@ function handleWantsAttachment(wants_attachment) {
         [%- END %]
       </select>
     </td>
-  </tr>
 
-  <tr>
-    <td>&nbsp;</td>
-    <td colspan="3">&nbsp;</td>
+    <td colspan="2">
+      [%# Enclose the fieldset in a nested table so that its width changes based
+        # on the length on the component description. %]
+      <table>
+        <tr>
+          <td>
+            <fieldset>
+              <legend>Component Description</legend>
+              <div id="comp_desc" class="comment">Select a component to read its description.</div>
+            </fieldset>
+          </td>
+        </tr>
+      </table>
+    </td>
   </tr>
 
   <tr>
+    <th rowspan="3">Version:</th>
+    <td rowspan="3">
+      <select name="version" size="5">
+        [%- FOREACH v = version %]
+          <option value="[% v FILTER html %]"
+            [% ' selected="selected"' IF v == default.version %]>[% v FILTER html -%]
+          </option>
+        [%- END %]
+      </select>
+    </td>
+
     [% sel = { description => 'Severity', name => 'bug_severity' } %]
     [% INCLUDE select %]
+  </tr>
 
+  <tr>
     [% sel = { description => 'Platform', name => 'rep_platform' } %]
     [% INCLUDE select %]
   </tr>
 
   <tr>
+    [% sel = { description => 'OS', name => 'op_sys' } %]
+    [% INCLUDE select %]
+  </tr>
+</tbody>
+
+<tbody class="expert_fields">
+  <tr>
+    [% IF Param('usetargetmilestone') && Param('letsubmitterchoosemilestone') %]
+      [% sel = { description => 'Target Milestone', name => 'target_milestone' } %]
+      [% INCLUDE select %]
+    [% ELSE %]
+      <td colspan="2">&nbsp;</td>
+    [% END %]
+
     [% IF Param('letsubmitterchoosepriority') %]
       [% sel = { description => 'Priority', name => 'priority' } %]
       [% INCLUDE select %]
@@ -240,41 +267,52 @@ function handleWantsAttachment(wants_attachment) {
         <input type="hidden" name="priority" value="[% default.priority FILTER html %]">
       </td>
     [% END %]
-
-    [% sel = { description => 'OS', name => 'op_sys' } %]
-    [% INCLUDE select %]
   </tr>
+</tbody>
 
-  [% IF Param('usetargetmilestone') && Param('letsubmitterchoosemilestone') %]
+[% IF !Param('defaultplatform') || !Param('defaultopsys') %]
+  <tbody>
     <tr>
-      [% sel = { description => 'Target Milestone', name => 'target_milestone' } %]
-      [% INCLUDE select %]
-      <td colspan="2">&nbsp;</td>
+      <th>&nbsp;</th>
+      <td colspan="3" class="comment">
+        We've made a guess at your
+        [% IF Param('defaultplatform') %]
+          operating system. Please check it
+        [% ELSIF Param('defaultopsys') %]
+          platform. Please check it
+        [% ELSE %]
+          operating system and platform. Please check them
+        [% END %]
+        and, if we got it wrong, email [% Param('maintainer') %].
+      </td>
     </tr>
-  [% END %]
+  </tbody>
+[% END %]
 
+<tbody class="expert_fields">
   <tr>
-    <td>&nbsp;</td>
-    <td colspan="3">&nbsp;</td>
+    <td colspan="4">&nbsp;</td>
   </tr>
 
   <tr>
 [% IF bug_status.size <= 1 %]
   <input type="hidden" name="bug_status" 
          value="[% default.bug_status FILTER html %]">
-    <td align="right" valign="top"><strong>Initial State:</strong></td>
-    <td valign="top">[% get_status(default.bug_status) FILTER html %]</td>
+    <th>Initial State:</th>
+    <td>[% get_status(default.bug_status) FILTER html %]</td>
 [% ELSE %]
     [% sel = { description => 'Initial State', name => 'bug_status' } %]
     [% INCLUDE select %]
 [% END %]
+
     <td>&nbsp;</td>
     [%# Calculate the number of rows we can use for flags %]
     [% num_rows = 6 + (Param("useqacontact") ? 1 : 0) +
                       (user.in_group(Param('timetrackinggroup')) ? 3 : 0) +
                       (Param("usebugaliases") ? 1 : 0)
     %]
-    <td rowspan="[% num_rows FILTER html %]" valign="top">
+
+    <td rowspan="[% num_rows FILTER html %]">
       [% IF product.flag_types.bug.size > 0 %]
         [% PROCESS "flag/list.html.tmpl" flag_types = product.flag_types.bug
                                          any_flags_requesteeble = 1
@@ -285,11 +323,7 @@ function handleWantsAttachment(wants_attachment) {
   </tr>
 
   <tr>
-    <td align="right">
-      <strong>
-        <a href="page.cgi?id=fields.html#assigned_to">Assign To</a>:
-      </strong>
-    </td>
+    <th><a href="page.cgi?id=fields.html#assigned_to">Assign To</a>:</th>
     <td colspan="2">
       [% INCLUDE global/userselect.html.tmpl
          name => "assigned_to"
@@ -304,7 +338,7 @@ function handleWantsAttachment(wants_attachment) {
   
 [% IF Param("useqacontact") %]
     <tr>
-      <td align="right"><strong>QA Contact:</strong></td>
+      <th>QA Contact:</th>
       <td colspan="2">
       [% INCLUDE global/userselect.html.tmpl
          name => "qa_contact"
@@ -319,7 +353,7 @@ function handleWantsAttachment(wants_attachment) {
 [% END %]
 
   <tr>
-    <td align="right"><strong>Cc:</strong></td>
+    <th>CC:</th>
     <td colspan="2">
       [% INCLUDE global/userselect.html.tmpl
          name => "cc"
@@ -332,7 +366,7 @@ function handleWantsAttachment(wants_attachment) {
   </tr>
 
   <tr>
-    <th align="right">Default CC:</th>
+    <th>Default CC:</th>
     <td colspan="2">
       <div id="initial_cc">
           <!-- This has to happen after everything above renders,
@@ -344,19 +378,18 @@ function handleWantsAttachment(wants_attachment) {
   </tr>
   
   <tr>
-    <td>&nbsp;</td>
-    <td colspan="2"></td>
+    <td colspan="3">&nbsp;</td>
   </tr>
 
 [% IF user.in_group(Param('timetrackinggroup')) %]
   <tr>
-    <td align="right"><strong>Estimated Hours:</strong></td>
+    <th>Estimated Hours:</th>
     <td colspan="2">
       <input name="estimated_time" size="6" maxlength="6" value="0.0">
     </td>
   </tr>
   <tr>
-    <td align="right"><strong>Deadline:</strong></td>
+    <th>Deadline:</th>
     <td colspan="2">
       <input name="deadline" size="10" maxlength="10" value="[% deadline FILTER html %]">
       <small>(YYYY-MM-DD)</small>
@@ -364,14 +397,13 @@ function handleWantsAttachment(wants_attachment) {
   </tr>
 
   <tr>
-    <td>&nbsp;</td>
-    <td colspan="2"></td>
+    <td colspan="3">&nbsp;</td>
   </tr>
 [% END %]
 
 [% IF Param("usebugaliases") %]
   <tr>
-    <td align="right"><strong>Alias:</strong></td>
+    <th>Alias:</th>
     <td colspan="2">
       <input name="alias" size="20">
     </td>
@@ -379,31 +411,37 @@ function handleWantsAttachment(wants_attachment) {
 [% END %]
 
   <tr>
-    <td align="right"><strong>URL:</strong></td>
+    <th>URL:</th>
     <td colspan="2">
       <input name="bug_file_loc" size="60"
              value="[% bug_file_loc FILTER html %]">
     </td>
   </tr>
+</tbody>
 
+<tbody>
   [% USE Bugzilla %]
-  [% FOREACH field = Bugzilla.get_fields({ obsolete => 0, custom => 1, 
+  [% custom_fields = Bugzilla.get_fields({ obsolete => 0, custom => 1,
                                            enter_bug => 1 }) %]
+
+  [% FOREACH field = custom_fields %]
     [% SET value = ${field.name} IF ${field.name}.defined %]
     <tr>
-      [% PROCESS bug/field.html.tmpl editable=1 value_span=2 %]
+      [% PROCESS bug/field.html.tmpl editable=1 value_span=3 %]
     </tr>
   [% END %]
 
   <tr>
-    <td align="right"><strong>Summary:</strong></td>
+    <th>Summary:</th>
     <td colspan="2">
       <input name="short_desc" size="60" value="[% short_desc FILTER html %]"
-             maxlength="255">
+             maxlength="255" spellcheck="true">
     </td>
+    <td>&nbsp;</td>
   </tr>
 
-  <tr><td align="right" valign="top"><strong>Description:</strong></td>
+  <tr>
+    <th>Description:</th>
     <td colspan="3">
       [% defaultcontent = BLOCK %]
         [% IF cloned_bug_id %]
@@ -429,7 +467,7 @@ function handleWantsAttachment(wants_attachment) {
 
   [% IF Param("insidergroup") && user.in_group(Param("insidergroup")) %]
     <tr>
-      <td></td>
+      <th>&nbsp;</th>
       <td colspan="3">
         &nbsp;&nbsp;
         <input type="checkbox" id="commentprivacy" name="commentprivacy"
@@ -440,9 +478,11 @@ function handleWantsAttachment(wants_attachment) {
       </td>
     </tr>
   [% END %]
+</tbody>
 
+<tbody class="expert_fields">
   <tr>
-    <th align="right" valign="top">Attachment:</th>
+    <th>Attachment:</th>
     <td colspan="3">
       <script type="text/javascript">
         <!--
@@ -479,38 +519,33 @@ function handleWantsAttachment(wants_attachment) {
   [% IF user.in_group('editbugs', product.id) %]
     [% IF use_keywords %]
       <tr>
-        <td align="right" valign="top">
-          <strong>
-            <a href="describekeywords.cgi">Keywords</a>:
-          </strong>
-        </td>
+        <th><a href="describekeywords.cgi">Keywords</a>:</th>
         <td colspan="3">
           <input id="keywords" name="keywords" size="60" value="[% keywords FILTER html %]" onfocus="this.chooser.open();"> (optional)
         </td>
       </tr>
     [% END %]
+
     <tr>
-      <td align="right">
-        <strong>Depends on:</strong>
-      </td>
-      <td>
+      <th>Depends on:</th>
+      <td colspan="3">
         <input name="dependson" accesskey="d" value="[% dependson FILTER html %]">
       </td>
     </tr>
     <tr>
-      <td align="right">
-        <strong>Blocks:</strong>
-      </td>
-      <td>
+      <th>Blocks:</th>
+      <td colspan="3">
         <input name="blocked" accesskey="b" value="[% blocked FILTER html %]">
       </td>
     </tr>
   [% END %]
+</tbody>
 
+<tbody>
+  [% IF group.size %]
   <tr>
-    <td></td>
+    <th>&nbsp;</th>
     <td colspan="3">
-    [% IF group.size %]
       <br>
         <strong>
           Only users in all of the selected groups can view this [% terms.bug %]:
@@ -530,46 +565,27 @@ function handleWantsAttachment(wants_attachment) {
           [% " checked=\"checked\"" IF g.checked %]>
           <label for="bit-[% g.bit %]">[% g.description FILTER html_light %]</label><br>
       [% END %]
-      <br>
-    [% END %]
     </td>
   </tr>
+  [% END %]
 
   [%# Form controls for entering additional data about the bug being created. %]
   [% Hook.process("form") %]
 
   <tr>
-    <td></td>
+    <th>&nbsp;</th>
     <td colspan="3">
-      <input type="submit" id="commit" value="    Commit    "
+      <input type="submit" id="commit" value="Commit"
              onclick="if (this.form.short_desc.value == '')
              { alert('Please enter a summary sentence for this [% terms.bug %].');
                return false; } return true;">
       &nbsp;&nbsp;&nbsp;&nbsp;
       <input type="submit" name="maketemplate" id="maketemplate"
-             value="Remember values as bookmarkable template">
+             value="Remember values as bookmarkable template"
+             class="expert_fields">
     </td>
   </tr>
-
-[% UNLESS (Param('defaultplatform') && Param('defaultopsys')) %]
-  <tr>
-    <td></td>
-    <td colspan="3">
-      <br>
-      We've made a guess at your
-  [% IF Param('defaultplatform') %]
-      operating system. Please check it
-  [% ELSIF Param('defaultopsys') %]
-      platform. Please check it
-  [% ELSE %]
-      operating system and platform. Please check them
-  [% END %]
-      and, if we got it wrong, email
-      [%+ Param('maintainer') %].
-    </td>
-  </tr>
-[% END %]
-
+</tbody>
   </table>
   <input type="hidden" name="form_name" value="enter_bug">
 </form>
@@ -591,12 +607,9 @@ function handleWantsAttachment(wants_attachment) {
 
 [% BLOCK select %]
   [% IF sel.description %]
-  <td align="right">
-    <strong>
-      <a href="page.cgi?id=fields.html#[% sel.name %]">
-        [% sel.description %]</a>:
-    </strong>
-  </td>
+    <th>
+      <a href="page.cgi?id=fields.html#[% sel.name %]">[% sel.description %]</a>:
+    </th>
   [% END %]
 
   <td>
diff --git a/template/en/default/bug/create/created.html.tmpl b/template/en/default/bug/create/created.html.tmpl
index 1a88c98ab01ded65a61fc88ea2c2f26df40f7a02..c4ec8dd0a21b394b36c016f4e10905e0e7dc0dc3 100644
--- a/template/en/default/bug/create/created.html.tmpl
+++ b/template/en/default/bug/create/created.html.tmpl
@@ -36,7 +36,11 @@
 
 [% PROCESS global/header.html.tmpl
   title = "$terms.Bug $id Submitted"
-  javascript_urls = [ "js/util.js", "js/keyword-chooser.js" ]
+  javascript_urls = [ "js/util.js", "js/keyword-chooser.js", "js/field.js",
+                        "js/yui/yahoo-dom-event.js", "js/yui/calendar.js" ]
+  style_urls = [ "skins/standard/yui/calendar.css", "skins/standard/show_bug.css" ]
+  
+  
 %]
 
 [% header_done = 1 %]
diff --git a/template/en/default/bug/dependency-tree.html.tmpl b/template/en/default/bug/dependency-tree.html.tmpl
index 6adb96aa65c0401c7467947c6cfb91ad7b173178..9fcbebbd55bf6037f55d60d5e22f70971c85d5bd 100644
--- a/template/en/default/bug/dependency-tree.html.tmpl
+++ b/template/en/default/bug/dependency-tree.html.tmpl
@@ -31,6 +31,7 @@
    javascript_urls = ["js/expanding-tree.js"]
    style_urls      = ["skins/standard/dependency-tree.css"]
    subheader      = filtered_desc
+   doc_section = "hintsandtips.html#dependencytree"
 %]
 
 [% PROCESS depthControlToolbar %]
@@ -143,10 +144,10 @@
       <span class="summ_text">[%+ bug.short_desc FILTER html %]</span>
       <span class="summ_info">[[% INCLUDE buginfo %]]</span>
     </a>
-    <a href="showdependencytree.cgi?id=[% bugid FILTER uri %]"
+    <a href="showdependencytree.cgi?id=[% bugid FILTER url_quote %]"
        class="tree_link">
       <img src="skins/standard/dependency-tree/tree.png"
-           title="See dependency tree for [% terms.bug %] [%+ bugid FILTER uri %]">
+           title="See dependency tree for [% terms.bug %] [%+ bugid FILTER html %]">
     </a>
   [% END %]
 [% END %]
diff --git a/template/en/default/bug/edit.html.tmpl b/template/en/default/bug/edit.html.tmpl
index a43fd225f8ad9ef2ead9f2a3058617346c567bff..2723c654ef6400ac07bb0ac8e06934045f905282 100644
--- a/template/en/default/bug/edit.html.tmpl
+++ b/template/en/default/bug/edit.html.tmpl
@@ -30,20 +30,20 @@
 
   <script type="text/javascript">
   <!--
-
+  
   /* Outputs a link to call replyToComment(); used to reduce HTML output */
-  function addReplyLink(id) {
+  function addReplyLink(id, real_id) {
       /* XXX this should really be updated to use the DOM Core's
        * createElement, but finding a container isn't trivial.
        */
       [% IF user.settings.quote_replies.value != 'off' %]
         document.write('[<a href="#add_comment" onclick="replyToComment(' + 
-                       id + ');">reply<' + '/a>]');
+                       id + ',' + real_id + ');">reply<' + '/a>]');
       [% END %]
   }
 
   /* Adds the reply text to the `comment' textarea */
-  function replyToComment(id) {
+  function replyToComment(id, real_id) {
       var prefix = "(In reply to comment #" + id + ")\n";
       var replytext = "";
       [% IF user.settings.quote_replies.value == 'quoted_reply' %]
@@ -66,7 +66,7 @@
       [% END %]
 
     [% IF Param("insidergroup") && user.in_group(Param("insidergroup")) %]
-      if (document.getElementById('isprivate-'+id).checked) {
+      if (document.getElementById('isprivate_' + real_id).checked) {
           document.getElementById('newcommentprivacy').checked = 'checked';
       }
     [% END %]
@@ -143,247 +143,70 @@
   <input type="hidden" name="longdesclength" value="[% bug.longdescs.size %]">
   <input type="hidden" name="id" value="[% bug.bug_id %]">
 
-  [%# That's the main table, which contains all editable fields. %]
+  [% PROCESS section_title %]
   <table>
     <tr>
-      <td valign="top">
-        <fieldset>
-          <legend>Details</legend>
-          <table>
-
-            [%# *** Summary *** %]
-            <tr>
-              <td align="right">
-                <label for="short_desc" accesskey="s"><b><u>S</u>ummary</b></label>:
-              </td>
-              [% PROCESS input inputname => "short_desc" size => "60" colspan => 2
-                               maxlength => 255 %]
-            </tr>
-
-            <tr>
-              <td colspan="3">
-                <table>
-                  <tr>
-                    [%# *** ID, product, component, status and resolution *** %]
-                    <td valign="top">[% PROCESS section_details1 %]</td>
-
-                    [%# *** Platform, OS, severity, priority, version and milestone *** %]
-                    <td valign="top">[% PROCESS section_details2 %]</td>
-                  </tr>
-                </table>
-              </td>
-            </tr>
-
-            <tr>
-              <td colspan="3"><hr size="1"></td>
-            </tr>
-
-            [%# *** URL Whiteboard Keywords *** %]
-
-            <tr>
-              <td align="right">
-                <label for="bug_file_loc" accesskey="u"><b>
-                  [% IF bug.bug_file_loc 
-                     AND NOT bug.bug_file_loc.match("^(javascript|data)") %]
-                    <a href="[% bug.bug_file_loc FILTER html %]"><u>U</u>RL</a>
-                  [% ELSE %]
-                    <u>U</u>RL
-                  [% END %]
-                [%%]</b></label>:
-              </td>
-              [% PROCESS input inputname => "bug_file_loc" size => "60" colspan => 2 %]
-            </tr>
-
-            [% IF Param('usestatuswhiteboard') %]
-              <tr>
-                <td align="right">
-                  <label for="status_whiteboard" accesskey="w"><b><u>W</u>hiteboard</b></label>:
-                </td>
-                [% PROCESS input inputname => "status_whiteboard" size => "60" colspan => 2 %]
-              </tr>
-            [% END %]
-
-            [% IF use_keywords %]
-              <tr>
-                <td align="right">
-                  <label for="keywords" accesskey="k">
-                    <b><a href="describekeywords.cgi"><u>K</u>eywords</a></b></label>:
-                </td>
-                [% PROCESS input inputname => "keywords" size => 60 colspan => 2
-                                 value => bug.keywords.join(', ')
-                                 onfocus => "this.chooser.open()" %]
-              </tr>
-            [% END %]
-
-            [%# *** Custom Fields *** %]
-
-            [% USE Bugzilla %]
-            [% fields = Bugzilla.get_fields({ obsolete => 0, custom => 1 }) %]
-            [% IF fields %]
-              [% FOREACH field = fields %]
-                <tr>
-                  [% PROCESS bug/field.html.tmpl value=bug.${field.name}
-                                                 editable = bug.check_can_change_field(field.name, 0, 1)
-                                                 value_span = 2 %]
-                </tr>
-              [% END %]
-            [% END %]
-
-            [%# *** Dependencies *** %]
-
-            <tr>
-              [% PROCESS dependencies
-                         dep = { title => "Depends&nbsp;on", fieldname => "dependson" } %]
-            </tr>
-
-            <tr>
-              [% PROCESS dependencies accesskey = "b"
-                         dep = { title => "<u>B</u>locks", fieldname => "blocked" } %]
-            </tr>
-
-            <tr>
-              <th>&nbsp;</th>
-
-              <td colspan="2">
-                <a href="showdependencytree.cgi?id=[% bug.bug_id %]&amp;hide_resolved=1">Show
-                   dependency tree</a>
-
-                [% IF Param('webdotbase') %]
-                  - <a href="showdependencygraph.cgi?id=[% bug.bug_id %]">Show
-                       dependency graph</a>
-                [% END %]
-              </td>
-            </tr>
-          </table>
-        </fieldset>
-      </td>
-
-      [%# Force the layout to be displayed now, before drawing the second column of the table.
-        # This should prevent bug 370739 when using Firefox 2. %]
-      <script type="text/javascript">
-        <!--
-        var v = document.body.offsetHeight;
-        //-->
-      </script>
-
-      <td valign="top">
-        [%# *** Reporter, owner and QA contact *** %]
-        <fieldset>
-          <legend>People</legend>
+      [%# 1st Column %]
+      <td id="bz_show_bug_column_1" class="bz_show_bug_column">     
+        <table>
+          [%# *** ID, product, component, status, resolution, Hardware, and  OS *** %]
+          [% PROCESS section_details1 %]
+          
+          [% PROCESS section_spacer %]
+          
+          [%# *** severity, priority, version and milestone *** %]
+          [% PROCESS section_details2 %]            
+          
+          [%# *** assigned to and qa contact *** %]
           [% PROCESS section_people %]
-        </fieldset>
-
-        [%# *** Flags *** %]
-        [% show_bug_flags = 0 %]
-        [% FOREACH type = bug.flag_types %]
-          [% IF (type.flags && type.flags.size > 0) || (user.id && type.is_active) %]
-            [% show_bug_flags = 1 %]
-            [% LAST %]
-          [% END %]
-        [% END %]
-        [% IF show_bug_flags %]
-          <fieldset>
-            <legend>Flags</legend>
-            <table cellspacing="1" cellpadding="1">
-              <tr>
-                <td colspan="2" valign="top">
-                  [% IF user.id %]
-                    [% IF bug.flag_types.size > 0 %]
-                      [% PROCESS "flag/list.html.tmpl" flag_no_header = 1
-                                                       flag_types = bug.flag_types
-                                                       any_flags_requesteeble = bug.any_flags_requesteeble %]
-                    [% END %]
-                  [% ELSE %]
-                    [% FOREACH type = bug.flag_types %]
-                      [% FOREACH flag = type.flags %]
-                          [% flag.setter.nick FILTER html %]:
-                          [%+ type.name FILTER html FILTER no_break %][% flag.status %]
-                          [%+ IF flag.requestee %]
-                            ([% flag.requestee.nick FILTER html %])
-                          [% END %]<br>
-                      [% END %]
-                    [% END %]
-                  [% END %]
-                </td>
-              </tr>
-            </table>
-          </fieldset>
-        [% END %]
+          
+          [% PROCESS section_spacer %]
+          
+          [% PROCESS section_url_keyword_whiteboard %]
+          
+          [% PROCESS section_spacer %]
+          
+          [%# *** Dependencies *** %]
+          [% PROCESS section_dependson_blocks %]
+          
+        </table>
+      </td>
+      <td>
+        <div class="bz_column_spacer">&nbsp;</div>
+      </td>
+      [%# 2nd Column %]
+      <td id="bz_show_bug_column_2" class="bz_show_bug_column">
+        <table cellpadding="3" cellspacing="1">
+        [%# *** Reported and modified dates *** %]
+         [% PROCESS section_dates %]
+         
+         [% PROCESS section_cclist %]
+         
+         [% PROCESS section_spacer %] 
+         
+         [% PROCESS section_customfields %]
+         
+         [% PROCESS section_spacer %]
+         
+         [% PROCESS section_flags %]
+
+        </table>
+      </td>
+    </tr>
+    <tr>
+      <td colspan="3">
+          <hr id="bz_top_half_spacer">
       </td>
     </tr>
   </table>
 
+  
+  [% PROCESS section_restrict_visibility %]
   [% IF user.in_group(Param('timetrackinggroup')) %]
     <br>
-    <table cellspacing="0" cellpadding="4" border="1">
-      <tr>
-        <th align="center" bgcolor="#cccccc">
-          <label for="estimated_time">Orig. Est.</label>
-        </th>
-        <th align="center" bgcolor="#cccccc">
-          Current Est.
-        </th>
-        <th align="center" bgcolor="#cccccc">
-          <label for="work_time">Hours Worked</label>
-        </th>
-        <th align="center" bgcolor="#cccccc">
-          <label for="remaining_time">Hours Left</label>
-        </th>
-        <th align="center" bgcolor="#cccccc">
-          %Complete
-        </th>
-        <th align="center" bgcolor="#cccccc">
-          Gain
-        </th>
-        <th align="center" bgcolor="#cccccc">
-          <label for="deadline">Deadline</label>
-        </th>
-      </tr>
-      <tr>
-        <td align="center">
-          <input name="estimated_time" id="estimated_time"
-                 value="[% PROCESS formattimeunit
-                                   time_unit=bug.estimated_time %]"
-                 size="6" maxlength="6">
-        </td>
-        <td align="center">
-          [% PROCESS formattimeunit
-                     time_unit=(bug.actual_time + bug.remaining_time) %]
-        </td>
-        <td align="center">
-          [% PROCESS formattimeunit time_unit=bug.actual_time %] +
-          <input name="work_time" id="work_time"
-                 value="0" size="3" maxlength="6"
-                 onchange="adjustRemainingTime();">
-        </td>
-        <td align="center">
-          <input name="remaining_time" id="remaining_time"
-                 value="[% PROCESS formattimeunit
-                                   time_unit=bug.remaining_time %]"
-                 size="6" maxlength="6" onchange="updateRemainingTime();">
-        </td>
-        <td align="center">
-          [% PROCESS calculatepercentage act=bug.actual_time
-                                         rem=bug.remaining_time %]
-        </td>
-        <td align="center">
-          [% PROCESS formattimeunit time_unit=bug.estimated_time - (bug.actual_time + bug.remaining_time) %]
-        </td>
-         <td align="center">
-           <input name="deadline" id="deadline" value="[% bug.deadline %]"
-                  size="10" maxlength="10"><br />
-           <small>(YYYY-MM-DD)</small>
-        </td>        
-      </tr>
-      <tr>
-        <td colspan="7" align="right">
-          <a href="summarize_time.cgi?id=[% bug.bug_id %]&amp;do_depends=1">
-          Summarize time (including time for [% terms.bugs %]
-          blocking this [% terms.bug %])</a>
-        </td>
-      </tr>
-    </table>
+    [% PROCESS section_timetracking %]
   [% END %]
+  
 
 [%# *** Attachments *** %]
 
@@ -418,22 +241,7 @@
                      maxrows   = 25
                      cols      = constants.COMMENT_COLS
           %]
-
-          [% IF NOT bug.cc || NOT bug.cc.contains(user.login) %]
-            [% has_role = bug.user.isreporter
-                          || bug.assigned_to.id == user.id
-                          || (Param('useqacontact')
-                              && bug.qa_contact
-                              && bug.qa_contact.id == user.id) %]
-
-            <br>
-            <input type="checkbox" id="addselfcc" name="addselfcc"
-              [% " checked=\"checked\""
-                   IF user.settings.state_addselfcc.value == 'always'
-                      || (!has_role
-                          && user.settings.state_addselfcc.value == 'cc_unless_role') %]>
-            <label for="addselfcc">Add [% user.identity FILTER html %] to CC list</label>
-          [% END %]
+          [% PROCESS bug/knob.html.tmpl %]
         [% ELSE %]
           <fieldset>
             <legend>Note</legend>
@@ -444,119 +252,18 @@
             </p>
           </fieldset>
         [% END %]
-      </td>
-
-      <td valign="top">
-        <fieldset>
-          <legend>Related actions</legend>
-          <ul>
-            <li><a href="show_activity.cgi?id=[% bug.bug_id %]">View [% terms.Bug %] Activity</a></li>
-            <li><a href="show_bug.cgi?format=multiple&amp;id=[% bug.bug_id %]">Format For Printing</a></li>
-            <li><a href="show_bug.cgi?ctype=xml&amp;id=[% bug.bug_id %]">XML</a></li>
-            <li><a href="enter_bug.cgi?cloned_bug_id=[% bug.bug_id %]">Clone This [% terms.Bug %]</a></li>
-          </ul>
-
-          [% IF bug.use_votes %]
-            <br>
-            <b><a href="page.cgi?id=voting.html">Votes</a></b>: [% bug.votes %]
-            <ul>
-              [% IF bug.votes %]
-                <li><a href="votes.cgi?action=show_bug&amp;bug_id=[% bug.bug_id %]">Show
-                             votes for this [% terms.bug %]</a></li>
-              [% END %]
-              <li><a href="votes.cgi?action=show_user&amp;bug_id=[% bug.bug_id %]#vote_[% bug.bug_id %]">Vote
-                           for this [% terms.bug %]</a></li>
-            </ul>
-          [% END %]
-
-          [%# Links to more things users can do with this bug. %]
-          [% Hook.process("links") %]
-        </fieldset>
+        [%# *** Additional Comments *** %]
+        <hr>
+        <div id="comments">
+        [% PROCESS bug/comments.html.tmpl
+           comments = bug.longdescs
+           mode = user.id ? "edit" : "show"
+         %]
+        </div>
+        
       </td>
     </tr>
   </table>
-  <br>
-
-  [% IF bug.groups.size > 0 %]
-    [% inallgroups = 1 %]
-    [% inagroup = 0 %]
-    [% FOREACH group = bug.groups %]
-      [% SET inallgroups = 0 IF NOT group.ingroup %]
-      [% SET inagroup = 1 IF group.ison %]
-
-      [% IF NOT group.mandatory %]
-        [% IF NOT emitted_description %]
-          [% emitted_description = 1 %]
-          <br>
-          <b>Only users in all of the selected groups can view this [% terms.bug %]:</b>
-          <br>
-          <font size="-1">
-            (Unchecking all boxes makes this a more public [% terms.bug %].)
-          </font>
-          <br>
-          <br>
-        [% END %]
-
-      &nbsp;&nbsp;&nbsp;&nbsp;
-      <input type="checkbox" value="1"
-             name="bit-[% group.bit %]" id="bit-[% group.bit %]"
-             [% " checked=\"checked\"" IF group.ison %]
-             [% " disabled=\"disabled\"" IF NOT group.ingroup %]>
-      <label for="bit-[% group.bit %]">[% group.description FILTER html_light %]</label>
-      <br>
-      [% END %]
-    [% END %]
-
-    [% IF NOT inallgroups %]
-      <b>
-        Only members of a group can change the visibility of [% terms.abug %] for
-        that group
-      </b>
-    <br>
-    [% END %]
-
-    [% IF inagroup %]
-      <p>
-        <b>Users in the roles selected below can always view this [% terms.bug %]:</b>
-        <br>
-        <small>
-          (The assignee
-          [% IF (Param('useqacontact')) %]
-             and QA contact
-          [% END %]
-          can always see [% terms.abug %], and this section does not take effect unless
-          the [% terms.bug %] is restricted to at least one group.)
-        </small>
-      </p>
-
-      <p>
-        <input type="checkbox" value="1"
-               name="reporter_accessible" id="reporter_accessible"
-               [% " checked" IF bug.reporter_accessible %]
-               [% " disabled=\"disabled\"" UNLESS bug.check_can_change_field("reporter_accessible", 0, 1) %]>
-        <label for="reporter_accessible">Reporter</label>
-        <input type="checkbox" value="1"
-               name="cclist_accessible" id="cclist_accessible"
-               [% " checked" IF bug.cclist_accessible %]
-               [% " disabled=\"disabled\"" UNLESS bug.check_can_change_field("cclist_accessible", 0, 1) %]>
-        <label for="cclist_accessible">CC List</label>
-      </p>
-    [% END %]
-  [% END %]
-
-[% PROCESS bug/knob.html.tmpl IF user.id %]
-
-[%# *** Additional Comments *** %]
-
-<hr>
-
-<div id="comments">
-[% PROCESS bug/comments.html.tmpl
-   comments = bug.longdescs
-   mode = user.id ? "edit" : "show"
- %]
-</div>
-
 </form>
 
 [% IF use_keywords %]
@@ -566,66 +273,117 @@
 [% END %]
 
 [%############################################################################%]
-[%# Block for the first table in the "Details" section                       #%]
+[%# Block for the Title (alias and short desc)                               #%]
 [%############################################################################%]
 
-[% BLOCK section_details1 %]
-  <table cellspacing="1" cellpadding="1">
-    <tr>
-      <td align="right">
-        [% IF Param('useclassification') && bug.classification_id != 1 %]
-          <b>[[% bug.classification FILTER html %]]</b>
+[% BLOCK section_title %]
+  [%# That's the main table, which contains all editable fields. %]
+  <div class="bz_alias_short_desc_container">
+    
+    [% IF Param('useclassification') && bug.classification_id != 1 %]
+      <b>[[% bug.classification FILTER html %]]</b>
+    [% END %]
+     <a href="show_bug.cgi?id=[% bug.bug_id %]">
+        <b>[% terms.Bug %]&nbsp;[% bug.bug_id FILTER html %]</b>
+     </a> - 
+     <span id="summary_alias_container" class="bz_default_hidden"> 
+      [% IF Param("usebugaliases") %]
+        [% IF bug.alias != "" %]
+          (<span id="alias_nonedit_display">[% bug.alias FILTER html %]</span>) 
         [% END %]
-        <b>[% terms.Bug %]#</b>:
-      </td>
-      <td>
-        <a href="[% urlbase FILTER html %]show_bug.cgi?id=[% bug.bug_id %]">
-           [% bug.bug_id %]</a>
-      </td>
-    </tr>
+      [% END %]
+      <span id="short_desc_nonedit_display">[% bug.short_desc FILTER html %]</span>
+      [% IF bug.check_can_change_field('short_desc', 0, 1) || 
+            bug.check_can_change_field('alias', 0, 1)  %]
+        <small class="editme">(<a href="#" id="editme_action">edit</a>)</small>
+      [% END %]
+     </span>
+  
+       
+    <span id="summary_alias_input">
+      <span id="summary">                           
+        [% IF Param("usebugaliases") %]
+          [% IF bug.check_can_change_field('alias', 0, 1) %]
+            <label 
+              for="alias" 
+              title="a name for the 
+                     [% terms.bug %] that can be used in place of its ID number, 
+                     [%%] e.g. when adding it to a list of dependencies"
+              >Alias</label>:&nbsp;
+          [% ELSIF bug.alias %]
+            (
+          [% END %]
+          [% PROCESS input inputname => "alias" 
+                     size => "20" 
+                     maxlength => "20"  
+                     no_td => 1 
+                     %][% ") " IF NOT bug.check_can_change_field('alias', 0, 1) 
+                                  && bug.alias %]
+        [% END %] 
+        [%# *** Summary *** %]
+          [% IF bug.check_can_change_field('alias', 0, 1) %]
+            <label accesskey="s" for="short_desc"><u>S</u>ummary</label>:&nbsp;
+          [% END %]
+          [% PROCESS input inputname => "short_desc" size => "60" colspan => 2
+                           maxlength => 255 spellcheck => "true" no_td => 1 %]
+      </span>
+    </span>
+  </div>
+  <script type="text/javascript">
+    hideAliasAndSummary('[% bug.short_desc FILTER js %]', '[% bug.alias FILTER js %]');
+  </script>
+[% END %]
 
-    [% IF Param("usebugaliases") %]
-      <tr>
-        <td align="right">
-          <label for="alias" title="a name for the [% terms.bug %] that can be used in place of its ID number, f.e. when adding it to a list of dependencies"><b>Alias</b></label>:
-        </td>
-        [% PROCESS input inputname => "alias" size => "20" maxlength => "20" %]
-      </tr>
-    [% END %]
+[%############################################################################%]
+[%# Block for the first table in the "Details" section                       #%]
+[%############################################################################%]
 
+[% BLOCK section_details1 %]
+
+    [%#############%]
+    [%#  PRODUCT  #%]
+    [%#############%]
     <tr>
-      <td align="right">
+      <td class="field_label">
         <label for="product" accesskey="p"><b><u>P</u>roduct</b></label>:
       </td>
       [% PROCESS select selname => "product" %]
     </tr>
-
+    [%###############%]    
+    [%#  Component  #%]
+    [%###############%]
     <tr>
-      <td align="right">
-        <label for="component" accesskey="m"><b><a href="describecomponents.cgi?product=[% bug.product FILTER url_quote %]">Co<u>m</u>ponent</a></b></label>:
+      <td class="field_label">
+        <label for="component" accesskey="m">
+          <b><a href="describecomponents.cgi?product=[% bug.product FILTER url_quote %]">
+            Co<u>m</u>ponent</a>
+          </b>
+        </label>:
       </td>
       [% PROCESS select selname => "component" %]
     </tr>
-
     <tr>
-      <td align="right">
-        <b><a href="page.cgi?id=fields.html#status">Status</a></b>:
+      <td class="field_label">
+        <label for="version"><b>Version</b></label>:
       </td>
-      <td>[% get_status(bug.bug_status) FILTER html %]</td>
-    </tr>
 
+      [% PROCESS select selname => "version" %]
+    </tr>
+    [%############%]    
+    [%# PLATFORM #%]
+    [%############%]    
     <tr>
-      <td align="right">
-        <b><a href="page.cgi?id=fields.html#resolution">Resolution</a></b>:
+      <td class="field_label">
+        <label for="rep_platform" accesskey="h"><b>Platform</b></label>:
       </td>
       <td>
-        [% get_resolution(bug.resolution) FILTER html %]
-        [% IF bug.resolution == "DUPLICATE" %]
-          of [% terms.bug %] [%+ "${bug.dup_id}" FILTER bug_link(bug.dup_id) FILTER none %]
-        [% END %]
+       [% PROCESS select selname => "rep_platform" no_td=> 1 %]
+       [%+ PROCESS select selname => "op_sys" no_td=> 1 %]
       </td>
     </tr>
-  </table>
+
+
+
 [% END %]
 
 [%############################################################################%]
@@ -633,56 +391,68 @@
 [%############################################################################%]
 
 [% BLOCK section_details2 %]
-  <table cellspacing="1" cellpadding="1">
-    <tr>
-      <td align="right">
-        <label for="rep_platform" accesskey="h"><b><u>H</u>ardware</b></label>:
-      </td>
-      [% PROCESS select selname => "rep_platform" %]
-    </tr>
 
+[%############%]
+[%#  STATUS  #%]
+[%############%]
     <tr>
-      <td align="right">
-        <label for="op_sys" accesskey="o"><b><u>O</u>S</b></label>:
+      <td class="field_label">
+        <b><a href="page.cgi?id=fields.html#status">Status</a></b>:
       </td>
-      [% PROCESS select selname => "op_sys" %]
-    </tr>
+      <td id="bz_field_status">
 
-    <tr>
-      <td align="right">
-        <label for="version"><b>Version</b></label>:
+        [% get_status(bug.bug_status) FILTER html %]&nbsp;&nbsp;
+        [% get_resolution(bug.resolution) FILTER html %]
+     
+        [% IF bug.resolution == "DUPLICATE" %]
+          of [% terms.bug %] [%+ "${bug.dup_id}" FILTER bug_link(bug.dup_id) FILTER none %]
+        [% END %]
+      
       </td>
-      [% PROCESS select selname => "version" %]
     </tr>
-
+ [%###############################################################%]
+ [%# Importance (priority, severity and votes) #%]
+ [%###############################################################%]
     <tr>
-      <td align="right">
-        <label for="priority" accesskey="i"><b><a href="page.cgi?id=fields.html#priority">Pr<u>i</u>ority</a></b></label>:
+      <td class="field_label">
+        <label for="priority" accesskey="i"><b><u>I</u>mportance</b></label>:
       </td>
-      [% PROCESS select selname => "priority" %]
-    </tr>
-
-    <tr>
-      <td align="right">
-        <label for="bug_severity"><b><a href="page.cgi?id=fields.html#bug_severity">Severity</a></b></label>:
+      <td>
+        <table>
+          <tr>
+            [% PROCESS select selname => "priority" %] 
+            [% PROCESS select selname = "bug_severity" %]
+            [% IF bug.use_votes %]
+            <td>
+              [% IF bug.votes %] 
+                with 
+                <a href="votes.cgi?action=show_bug&amp;bug_id=[% bug.bug_id %]">
+                  [% bug.votes %] vote[%IF bug.votes > 1 %]s[% END %]
+                </a>. 
+              [% END %]    
+            (<a href="votes.cgi?action=show_user&amp;bug_id=
+                      [% bug.bug_id %]#vote_[% bug.bug_id %]">vote</a>)
+            </td>
+            [% END %]
+          </tr>
+        </table>
       </td>
-      [% PROCESS select selname = "bug_severity" %]
     </tr>
 
     [% IF Param("usetargetmilestone") && bug.target_milestone %]
       <tr>
-        <td align="right">
+        <td class="field_label">
           <label for="target_milestone"><b>
             [% IF bug.milestoneurl %]
               <a href="[% bug.milestoneurl FILTER html %]">
             [% END %]
-            Target Milestone[% "</a>" IF bug.milestoneurl %]
+            Target&nbsp;Milestone[% "</a>" IF bug.milestoneurl %]
           [%%]</b></label>:
         </td>
         [% PROCESS select selname = "target_milestone" %]
       </tr>
     [% END %]
-  </table>
+  
 [% END %]
 
 [%############################################################################%]
@@ -690,31 +460,37 @@
 [%############################################################################%]
 
 [% BLOCK section_people %]
-  <table cellpadding="3" cellspacing="1">
-    <tr>
-      <td align="right">
-        <b>Reporter</b>:
-      </td>
-      <td>
-        [% INCLUDE user_identity user => bug.reporter %]
-      </td>
-    </tr>
 
     <tr>
-      <td align="right" valign="top">
-        <b><a href="page.cgi?id=fields.html#assigned_to">Assignee</a></b>:
+      <td class="field_label">
+        <b><a href="page.cgi?id=fields.html#assigned_to">Assigned To</a></b>:
       </td>
       <td>
         [% IF bug.check_can_change_field("assigned_to", 0, 1) %]
-          [% INCLUDE global/userselect.html.tmpl
-               id => "assigned_to"
-               name => "assigned_to"
-               value => bug.assigned_to.login
-               size => 30
-          %]
-          <br>
-          <input type="checkbox" id="set_default_assignee" name="set_default_assignee" value="1">
-          <label for="set_default_assignee">Reset Assignee to default</label>
+          <div id="bz_assignee_edit_container" class="bz_default_hidden">
+            <span>
+              [% INCLUDE user_identity user=> bug.assigned_to %]
+              (<a href="#" id="bz_assignee_edit_action">edit</a>)
+            </span>
+          </div>
+          <div id="bz_assignee_input">
+            [% INCLUDE global/userselect.html.tmpl
+                 id => "assigned_to"
+                 name => "assigned_to"
+                 value => bug.assigned_to.login
+                 size => 30
+            %]
+            <br>
+            <input type="checkbox" id="set_default_assignee" name="set_default_assignee" value="1">
+            <label for="set_default_assignee">Reset Assignee to default</label>
+          </div>
+          <script type="text/javascript">
+           hideEditableField('bz_assignee_edit_container', 
+                             'bz_assignee_input', 
+                             'bz_assignee_edit_action', 
+                             'assigned_to', 
+                             '[% bug.assigned_to.login FILTER js %]' );
+          </script>
         [% ELSE %]
           <input type="hidden" name="assigned_to" id="assigned_to"
                  value="[% bug.assigned_to.login FILTER html %]">
@@ -725,21 +501,42 @@
 
     [% IF Param('useqacontact') %]
     <tr>
-      <td align="right" valign="top">
+      <td class="field_label">
         <label for="qa_contact" accesskey="q"><b><u>Q</u>A Contact</b></label>:
       </td>
       <td>
+
         [% IF bug.check_can_change_field("qa_contact", 0, 1) %]
-          [% INCLUDE global/userselect.html.tmpl
-              id => "qa_contact"
-              name => "qa_contact"
-              value => bug.qa_contact.login
-              size => 30
-              emptyok => 1
-          %]
-          <br>
-          <input type="checkbox" id="set_default_qa_contact" name="set_default_qa_contact" value="1">
-          <label for="set_default_qa_contact">Reset QA Contact to default</label>
+          [% IF bug.qa_contact != "" %]
+           <div id="bz_qa_contact_edit_container" class="bz_default_hidden">
+            <span>
+              <span id="bz_qa_contact_edit_display">
+              [% INCLUDE user_identity user=> bug.qa_contact %]</span>
+              (<a href="#" id="bz_qa_contact_edit_action">edit</a>)
+            </span>
+          </div>
+          [% END %]
+          <div id="bz_qa_contact_input">
+            [% INCLUDE global/userselect.html.tmpl
+                id => "qa_contact"
+                name => "qa_contact"
+                value => bug.qa_contact.login
+                size => 30
+                emptyok => 1
+            %]
+            <br>
+            <input type="checkbox" id="set_default_qa_contact" name="set_default_qa_contact" value="1">
+            <label for="set_default_qa_contact">Reset QA Contact to default</label>
+          </div>
+          [% IF bug.qa_contact != "" %]
+            <script type="text/javascript">
+             hideEditableField('bz_qa_contact_edit_container', 
+                               'bz_qa_contact_input', 
+                               'bz_qa_contact_edit_action', 
+                               'qa_contact', 
+                               '[% bug.qa_contact.login FILTER js %]');
+            </script>
+          [% END %]
         [% ELSE %]
           <input type="hidden" name="qa_contact" id="qa_contact"
                  value="[% bug.qa_contact.login FILTER html %]">
@@ -748,30 +545,273 @@
       </td>
     </tr>
     [% END %]
+     
+[% END %]
 
-    [% IF user.id %]
-      <tr>
-        <td align="right" valign="top">
-          <label for="newcc" accesskey="a"><b><u>A</u>dd&nbsp;CC</b></label>:
-        </td>
-        <td>
-           [% INCLUDE global/userselect.html.tmpl
-              id => "newcc"
-              name => "newcc"
-              value => ""
-              size => 30
-              multiple => 5
-            %]
-        </td>
-      </tr>
+[% BLOCK section_url_keyword_whiteboard %]
+[%# *** URL Whiteboard Keywords *** %]
+  <tr>
+    <td class="field_label">
+      <label for="bug_file_loc" accesskey="u"><b>
+        [% IF bug.bug_file_loc 
+           AND NOT bug.bug_file_loc.match("^(javascript|data)") %]
+          <a href="[% bug.bug_file_loc FILTER html %]"><u>U</u>RL</a>
+        [% ELSE %]
+          <u>U</u>RL
+        [% END %]
+      [%%]</b></label>:
+    </td>
+    <td>
+      [% IF bug.check_can_change_field("bug_file_loc", 0, 1) %]
+        <span id="bz_url_edit_container" class="bz_default_hidden"> 
+        [% IF bug.bug_file_loc 
+           AND NOT bug.bug_file_loc.match("^(javascript|data)") %]
+           <a href="[% bug.bug_file_loc FILTER html %]" target="_blank">
+             [% bug.bug_file_loc FILTER html%]</a>
+        [% ELSE %]
+          [% bug.bug_file_loc FILTER html %]
+        [% END %]
+        (<a href="#" id="bz_url_edit_action">edit</a>)</span>
+      [% END %]
+      <span id="bz_url_input_area">
+        [% url_output =  PROCESS input no_td=1 inputname => "bug_file_loc" size => "40" colspan => 2 %]
+        [% IF NOT bug.check_can_change_field("bug_file_loc", 0, 1)  %]
+          <a href="[% bug.bug_file_loc FILTER html %]">[% url_output FILTER none %]</a>
+        [% ELSE %]
+          [% url_output FILTER none %]
+        [% END %]
+      </span>
+      [% IF bug.check_can_change_field("bug_file_loc", 0, 1) %]
+        <script type="text/javascript">
+          hideEditableField('bz_url_edit_container', 
+                            'bz_url_input_area', 
+                            'bz_url_edit_action', 
+                            'bug_file_loc', 
+                            "[% bug.bug_file_loc FILTER js %]");
+        </script>
+      [% END %]
+    </td>
+  </tr>
+  
+  [% IF Param('usestatuswhiteboard') %]
+    <tr>
+      <td class="field_label">
+        <label for="status_whiteboard" accesskey="w"><b><u>W</u>hiteboard</b></label>:
+      </td>
+      [% PROCESS input inputname => "status_whiteboard" size => "40" colspan => 2 %]
+    </tr>
+  [% END %]
+  
+  [% IF use_keywords %]
+    <tr>
+      <td class="field_label">
+        <label for="keywords" accesskey="k">
+          <b><a href="describekeywords.cgi"><u>K</u>eywords</a></b></label>:
+      </td>
+      [% PROCESS input inputname => "keywords" size => 40 colspan => 2
+                       value => bug.keywords.join(', ')
+                       onfocus => "this.chooser.open()" %]
+    </tr>
+  [% END %]
+[% END %]
+
+[% BLOCK section_dependson_blocks %]
+  <tr>
+    [% PROCESS dependencies
+               dep = { title => "Depends&nbsp;on", fieldname => "dependson" } %]
+  </tr>
+  
+  <tr>
+    [% PROCESS dependencies accesskey = "b"
+               dep = { title => "<u>B</u>locks", fieldname => "blocked" } %]
+  
+  <tr>
+    <th>&nbsp;</th>
+  
+    <td colspan="2" align="left" id="show_dependency_tree_or_graph">
+      Show dependency <a href="showdependencytree.cgi?id=[% bug.bug_id %]&amp;hide_resolved=1">tree</a>
+  
+      [% IF Param('webdotbase') %]
+        /&nbsp;<a href="showdependencygraph.cgi?id=[% bug.bug_id %]">graph</a>
+      [% END %]
+    </td>
+  </tr>
+[% END %]
+
+
+[%############################################################################%]
+[%# Block for Restricting Visibility                                         #%]
+[%############################################################################%]
+
+[% BLOCK section_restrict_visibility %]
+  [% IF bug.groups.size > 0 %]
+  <table>
+    <tr>
+      <td class="field_label">
+        <label id="bz_restrict_group_visibility_label"><b> Restrict Group Visibility</b>:</label>
+      </td>
+      <td>
+        [% inallgroups = 1 %]
+        [% inagroup = 0 %]
+        [% FOREACH group = bug.groups %]
+          [% SET inallgroups = 0 IF NOT group.ingroup %]
+          [% SET inagroup = 1 IF group.ison %]
+    
+          [% IF NOT group.mandatory %]
+            [% IF NOT emitted_description %]
+              [% emitted_description = 1 %]
+              <div id="bz_restrict_group_visibility_help">
+                <b>Only users in all of the selected groups can view this [% terms.bug %]:</b>
+                <br>
+                <font size="-1">
+                  (Unchecking all boxes makes this a more public [% terms.bug %].)
+                </font>
+              </div>
+            [% END %]
+    
+          [% IF group.ingroup %]
+            <input type="hidden" name="defined_bit-[% group.bit %]" value="1">
+          [% END %]
+          <input type="checkbox" value="1"
+                 name="bit-[% group.bit %]" id="bit-[% group.bit %]"
+                 [% " checked=\"checked\"" IF group.ison %]
+                 [% " disabled=\"disabled\"" IF NOT group.ingroup %]>
+          <label for="bit-[% group.bit %]">[% group.description FILTER html_light %]</label>
+          <br>
+          [% END %]
+        [% END %]
+    
+        [% IF NOT inallgroups %]
+          <b>
+            Only members of a group can change the visibility of [% terms.abug %] for
+            that group.
+          </b>
+        <br>
+        [% END %]
+      </td>
+    </tr>
+    [% IF inagroup %]
+    <tr>
+      <td class="field_label">
+        <label id="bz_enable_role_visibility_label"><b>Enable Role Visibility</b>:</label>
+      </td>
+      <td>
+        <div id="bz_enable_role_visibility_help">
+          <b>Users in the roles selected below can always view this [% terms.bug %]:</b>
+          <br>
+          <small>
+            (The assignee
+            [% IF (Param('useqacontact')) %]
+               and QA contact
+            [% END %]
+            can always see [% terms.abug %], and this section does not take effect unless
+            the [% terms.bug %] is restricted to at least one group.)
+          </small>
+        </div>
+        <div>
+          <div>
+            <input type="hidden" name="defined_reporter_accessible" value="1">
+            <input type="checkbox" value="1"
+                   name="reporter_accessible" id="reporter_accessible"
+                   [% " checked" IF bug.reporter_accessible %]
+                   [% " disabled=\"disabled\"" UNLESS bug.check_can_change_field("reporter_accessible", 0, 1) %]>
+            <label for="reporter_accessible">Reporter</label>
+          </div>
+          <div>
+            <input type="hidden" name="defined_cclist_accessible" value="1">
+            <input type="checkbox" value="1"
+                   name="cclist_accessible" id="cclist_accessible"
+                   [% " checked" IF bug.cclist_accessible %]
+                   [% " disabled=\"disabled\"" UNLESS bug.check_can_change_field("cclist_accessible", 0, 1) %]>
+            <label for="cclist_accessible">CC List</label>
+          </div>
+        </div>
+      </td>
+    </tr>
     [% END %]
+  </table>  
+  [% END %]
+[% END %]
 
+[%############################################################################%]
+[%# Block for Dates                                                          #%]
+[%############################################################################%]
+
+[% BLOCK section_dates %]
+  <tr>
+    <td class="field_label">
+      <b>Reported</b>:
+    </td>
+    <td>
+     [% bug.creation_ts FILTER time %] by [% INCLUDE user_identity user => bug.reporter %]
+    </td>
+  </tr>
+  
+  <tr>
+    <td class="field_label">
+      <b> Modified</b>:
+    </td>
+    <td>
+      [% bug.delta_ts FILTER time FILTER replace(':\d\d$', '') FILTER replace(':\d\d ', ' ')%] 
+      (<a href="show_activity.cgi?id=[% bug.bug_id %]">[%# terms.Bug %]History</a>)
+    </td>
+  
+  </tr>
+[% END %]
+
+[%############################################################################%]
+[%# Block for CC LIST                                                        #%]
+[%############################################################################%]
+[% BLOCK section_cclist %]
+  [% IF user.id %]
     <tr>
-      [% IF bug.cc %]
-        <td align="right" valign="top">
-          <label for="cc"><b>CC</b></label>:
+        <td class="field_label">
+          <label for="newcc" accesskey="a"><b>CC List</b>:</label>
         </td>
-        <td valign="top">
+      <td>
+        [% IF user.id %]
+          [% IF NOT bug.cc || NOT bug.cc.contains(user.login) %]
+            [% has_role = bug.user.isreporter
+                          || bug.assigned_to.id == user.id
+                          || (Param('useqacontact')
+                              && bug.qa_contact
+                              && bug.qa_contact.id == user.id) %]
+            <input type="checkbox" id="addselfcc" name="addselfcc"
+              [% " checked=\"checked\""
+                   IF user.settings.state_addselfcc.value == 'always'
+                      || (!has_role
+                          && user.settings.state_addselfcc.value == 'cc_unless_role') %]>
+            <label for="addselfcc">
+              Myself ([% INCLUDE user_identity user=> user FILTER collapse %])
+            </label>
+            <br> 
+          [% END %]
+        [% END %]
+        [% bug.cc.size || 0  FILTER html%]&nbsp;total users
+        [% IF user.id %]
+          [% IF bug.cc.contains( user.email ) %]
+            including you ([% INCLUDE user_identity user=> user FILTER collapse %])
+          [% END %]
+        [% END %].
+        <span id="cc_edit_area_showhide_container" class="bz_default_hidden">
+          (<a href="#" id="cc_edit_area_showhide">edit</a>)
+        </span>
+        <div id="cc_edit_area">
+          <div>
+            <div>
+              <label for="cc">
+                <b>Add</b>
+              </label>
+            </div>
+            [% INCLUDE global/userselect.html.tmpl
+                id => "newcc"
+                name => "newcc"
+                value => ""
+                size => 30
+                multiple => 5
+              %]
+          </div>
+        [% IF bug.cc %]
           <select id="cc" name="cc" multiple="multiple" size="5">
           [% FOREACH c = bug.cc %]
             <option value="[% c FILTER html %]">[% c FILTER html %]</option>
@@ -783,47 +823,234 @@
             [%%]<label for="removecc">Remove selected CCs</label>
             <br>
           [% END %]
-        </td>
-      [% ELSE %]
-        <td colspan="2"><input type="hidden" name="cc" value=""></td>
+        [% ELSE %]
+          <input type="hidden" name="cc" value="">
+        [% END %]
+        </div>
+        <script type="text/javascript">
+          hideEditableField( 'cc_edit_area_showhide_container', 
+                             'cc_edit_area', 
+                             'cc_edit_area_showhide', 
+                             '', 
+                             '');  
+        </script>
+      </td>
+    </tr>
+  [% END %]
+[% END %]
+
+[%############################################################################%]
+[%# Block for FLAGS                                                          #%]
+[%############################################################################%]
+
+[% BLOCK section_flags %]
+  [%# *** Flags *** %]
+  [% show_bug_flags = 0 %]
+  [% FOREACH type = bug.flag_types %]
+    [% IF (type.flags && type.flags.size > 0) || (user.id && type.is_active) %]
+      [% show_bug_flags = 1 %]
+      [% LAST %]
+    [% END %]
+  [% END %]
+  [% IF show_bug_flags %]
+    <tr>
+      <td class="field_label">
+        <label><b>Flags:</b></label>
+      </td>
+      <td></td>
+    </tr>
+    <tr>
+      <td colspan="2">
+    [% show_bug_flags = 0 %]
+    [% FOREACH type = bug.flag_types %]
+      [% IF (type.flags && type.flags.size > 0) || (user.id && type.is_active) %]
+        [% show_bug_flags = 1 %]
+        [% LAST %]
       [% END %]
+    [% END %]
+    [% IF show_bug_flags %]
+    
+      [% IF user.id %]
+        [% IF bug.flag_types.size > 0 %]
+          [% PROCESS "flag/list.html.tmpl" flag_no_header = 1
+                                           flag_types = bug.flag_types
+                                           any_flags_requesteeble = bug.any_flags_requesteeble %]
+        [% END %]
+      [% ELSE %]
+        [% FOREACH type = bug.flag_types %]
+          [% FOREACH flag = type.flags %]
+              [% flag.setter.nick FILTER html %]:
+              [%+ type.name FILTER html FILTER no_break %][% flag.status %]
+              [%+ IF flag.requestee %]
+                ([% flag.requestee.nick FILTER html %])
+              [% END %]<br>
+          [% END %]
+        [% END %]
+      [% END %]         
+    [% END %]
+      </td>
     </tr>
-  </table>
+  [% END %]
+[% END %]
+
+[%############################################################################%]
+[%# Block for Section Spacer                                                 #%]
+[%############################################################################%]
+
+[% BLOCK section_customfields %]
+[%# *** Custom Fields *** %]
+
+  [% USE Bugzilla %]
+  [% fields = Bugzilla.get_fields({ obsolete => 0, custom => 1 }) %]
+  [% IF fields %]
+    [% FOREACH field = fields %]
+      <tr>
+        [% PROCESS bug/field.html.tmpl value=bug.${field.name}
+                                       editable = bug.check_can_change_field(field.name, 0, 1)
+                                       value_span = 2 %]
+      </tr>
+    [% END %]
+  [% END %]
 [% END %]
 
+[%############################################################################%]
+[%# Block for Section Spacer                                                 #%]
+[%############################################################################%]
+
+[% BLOCK section_spacer %]
+  <tr>
+    <td colspan="2" class="bz_section_spacer"></td>
+  </tr>
+[% END %]
+
+
+
+
 [%############################################################################%]
 [%# Block for dependencies                                                   #%]
 [%############################################################################%]
 
 [% BLOCK dependencies %]
-  <th align="right">
+
+  <th class="field_label">
     <label for="[% dep.fieldname %]"[% " accesskey=\"$accesskey\"" IF accesskey %]>
     [% dep.title %]</label>:
   </th>
-  <td>
-  [% FOREACH depbug = bug.${dep.fieldname} %]
-    [% depbug FILTER bug_link(depbug) FILTER none %][% " " %]
-  [% END %]
-  </td>
-  <td>
+  <td>    
+    <span id="[% dep.fieldname %]_input_area">
+      [% IF bug.check_can_change_field(dep.fieldname, 0, 1) %]
+        <input name="[% dep.fieldname %]" id="[% dep.fieldname %]"
+               value="[% bug.${dep.fieldname}.join(', ') %]">
+      [% ELSE %]
+        <input type="hidden" id="[% dep.fieldname %]" name="[% dep.fieldname %]"
+               value="[% bug.${dep.fieldname}.join(', ') %]">
+      [% END %]
+    </span>
+    
+    [% FOREACH depbug = bug.${dep.fieldname} %]
+      [% depbug FILTER bug_link(depbug) FILTER none %][% " " %]
+    [% END %]
     [% IF bug.check_can_change_field(dep.fieldname, 0, 1) %]
-      <input name="[% dep.fieldname %]" id="[% dep.fieldname %]"
-             value="[% bug.${dep.fieldname}.join(', ') %]">
-    [% ELSE %]
-      <input type="hidden" id="[% dep.fieldname %]" name="[% dep.fieldname %]"
-             value="[% bug.${dep.fieldname}.join(', ') %]">
+      <span id="[% dep.fieldname %]_edit_container" class="edit_me bz_default_hidden" >
+        (<a href="#" id="[% dep.fieldname %]_edit_action">edit</a>)
+      </span>
+      <script type="text/javascript">
+        hideEditableField('[% dep.fieldname %]_edit_container', 
+                          '[% dep.fieldname %]_input_area', 
+                          '[% dep.fieldname %]_edit_action', 
+                          '[% dep.fieldname %]', 
+                          "[% bug.${dep.fieldname}.join(', ') %]");
+      </script>
     [% END %]
   </td>
+  
   [% accesskey = undef %]
+  
 [% END %]
 
+[%############################################################################%]
+[%# Block for Time Tracking Group                                            #%]
+[%############################################################################%]
+
+[% BLOCK section_timetracking %]
+  <table class="bz_time_tracking_table">
+    <tr>
+      <th>
+        <label for="estimated_time">Orig. Est.</label>
+      </th>
+      <th>
+        Current Est.
+      </th>
+      <th>
+        <label for="work_time">Hours Worked</label>
+      </th>
+      <th>
+        <label for="remaining_time">Hours Left</label>
+      </th>
+      <th>
+        %Complete
+      </th>
+      <th>
+        Gain
+      </th>
+      <th>
+        <label for="deadline">Deadline</label>
+      </th>
+    </tr>
+    <tr>
+      <td>
+        <input name="estimated_time" id="estimated_time"
+               value="[% PROCESS formattimeunit
+                                 time_unit=bug.estimated_time %]"
+               size="6" maxlength="6">
+      </td>
+      <td>
+        [% PROCESS formattimeunit
+                   time_unit=(bug.actual_time + bug.remaining_time) %]
+      </td>
+      <td>
+        [% PROCESS formattimeunit time_unit=bug.actual_time %] +
+        <input name="work_time" id="work_time"
+               value="0" size="3" maxlength="6"
+               onchange="adjustRemainingTime();">
+      </td>
+      <td>
+        <input name="remaining_time" id="remaining_time"
+               value="[% PROCESS formattimeunit
+                                 time_unit=bug.remaining_time %]"
+               size="6" maxlength="6" onchange="updateRemainingTime();">
+      </td>
+      <td>
+        [% PROCESS calculatepercentage act=bug.actual_time
+                                       rem=bug.remaining_time %]
+      </td>
+      <td>
+        [% PROCESS formattimeunit time_unit=bug.estimated_time - (bug.actual_time + bug.remaining_time) %]
+      </td>
+       <td>
+         <input name="deadline" id="deadline" value="[% bug.deadline %]"
+                size="10" maxlength="10"><br />
+         <small>(YYYY-MM-DD)</small>
+      </td>        
+    </tr>
+    <tr>
+      <td colspan="7" class="bz_summarize_time">
+        <a href="summarize_time.cgi?id=[% bug.bug_id %]&amp;do_depends=1">
+        Summarize time (including time for [% terms.bugs %]
+        blocking this [% terms.bug %])</a>
+      </td>
+    </tr>
+  </table> 
+[% END %]
 
 [%############################################################################%]
 [%# Block for SELECT fields                                                  #%]
 [%############################################################################%]
 
 [% BLOCK select %]
+  [% IF NOT no_td %]
   <td>
+  [% END %]
     [% IF bug.check_can_change_field(selname, 0, 1) AND bug.choices.${selname}.size > 1 %]
       <select id="[% selname %]" name="[% selname %]">
         [% FOREACH x = bug.choices.${selname} %]
@@ -836,7 +1063,10 @@
       <input type="hidden" id="[% selname %]" name="[% selname %]" value="[% bug.${selname} FILTER html %]">
       [% bug.${selname} FILTER html %]
     [% END %]
+  [% IF NOT no_td %]
   </td>
+  [% END %]
+  [% no_td = 0 %]
 [% END %]
 
 [%############################################################################%]
@@ -844,13 +1074,16 @@
 [%############################################################################%]
 
 [% BLOCK input %]
+  [% IF no_td != 1 %]
   <td[% " colspan=\"$colspan\"" IF colspan %]>
+  [% END %]
     [% val = value ? value : bug.$inputname %]
     [% IF bug.check_can_change_field(inputname, 0, 1) %]
        <input id="[% inputname %]" name="[% inputname %]"
               value="[% val FILTER html %]"[% " size=\"$size\"" IF size %]
               [% " maxlength=\"$maxlength\"" IF maxlength %]
-              [% " onfocus=\"$onfocus\"" IF onfocus %]>
+              [% " onfocus=\"$onfocus\"" IF onfocus %]
+              [% " spellcheck=\"$spellcheck\"" IF spellcheck %]>
     [% ELSE %]
        <input type="hidden" name="[% inputname %]" id="[% inputname %]"
               value="[% val FILTER html %]">
@@ -862,12 +1095,16 @@
         [% val FILTER html %]
       [% END %]
     [% END %]
+  [% IF no_td != 1 %]  
   </td>
+  [% END %]
+  [% no_td = 0 %]
   [% maxlength = 0 %]
   [% colspan = 0 %]
   [% size = 0 %]
   [% value = undef %]
   [% onfocus = undef %]
+  [% spellcheck = undef %]
 [% END %]
 
 [%############################################################################%]
@@ -876,15 +1113,16 @@
 
 [% BLOCK user_identity %]
   <span class="vcard">
-    [% IF user.name %]
-      <a class="email" href="mailto:[% user.email FILTER html %]">
-        <span class="fn">[% user.name FILTER html %]</span>
-        &lt;[% user.email FILTER html %]&gt;
-      </a>
-    [% ELSE %]
-      <a class="fn email" href="mailto:[% user.email FILTER html %]">
-        [% user.email FILTER html %]
-      </a>
-    [% END %]
-  </span>
+    [% FILTER collapse %]
+      [% IF user.name %]
+        <a class="email" href="mailto:[% user.email FILTER html %]" 
+           title="[% user.email FILTER html %]"
+          ><span class="fn">[% user.name FILTER html %]</span
+        ></a>
+      [% ELSE %]
+        <a class="fn email" href="mailto:[% user.email FILTER html %]">
+          [% user.email FILTER html %]</a>
+      [% END %]
+    [% END %]</span>
 [% END %]
+
diff --git a/template/en/default/bug/field.html.tmpl b/template/en/default/bug/field.html.tmpl
index 7de659742f68e814451c6110bc8f86dc1c7d2084..1ba0b1784a45bbb50fe64fd8a361bb24688fcb62 100644
--- a/template/en/default/bug/field.html.tmpl
+++ b/template/en/default/bug/field.html.tmpl
@@ -41,7 +41,26 @@
 [% IF editable %]
   [% SWITCH field.type %]
     [% CASE constants.FIELD_TYPE_FREETEXT %]
-        <input name="[% field.name FILTER html %]" value="[% value FILTER html %]" size="60">
+        <input id="[% field.name FILTER html %]" name="[% field.name FILTER html %]"
+               value="[% value FILTER html %]" size="60"
+               maxlength="[% constants.MAX_FREETEXT_LENGTH FILTER none %]">
+    [% CASE constants.FIELD_TYPE_DATETIME %]
+      <input name="[% field.name FILTER html %]" size="20"
+             id="[% field.name FILTER html %]"
+             value="[% value FILTER html %]"
+             onchange="updateCalendarFromField(this)">
+      <button type="button" class="calendar_button"
+              id="button_calendar_[% field.name FILTER html %]"
+              onclick="showCalendar('[% field.name FILTER js %]')">
+        <span>Calendar</span>
+      </button>
+
+      <div id="con_calendar_[% field.name FILTER html %]"
+           class="yui-skin-sam"></div>
+
+      <script type="text/javascript">
+        createCalendar('[% field.name FILTER js %]')
+      </script>
     [% CASE [ constants.FIELD_TYPE_SINGLE_SELECT 
               constants.FIELD_TYPE_MULTI_SELECT ] %]
         <select id="[% field.name FILTER html %]" 
diff --git a/template/en/default/bug/navigate.html.tmpl b/template/en/default/bug/navigate.html.tmpl
index b55c4a73d86819f2419e6c4ac521586c783c4f5e..7b8f3c827400503a546ff0bfdd5691d1fb287703 100644
--- a/template/en/default/bug/navigate.html.tmpl
+++ b/template/en/default/bug/navigate.html.tmpl
@@ -19,6 +19,21 @@
   #%]
 
 [% PROCESS global/variables.none.tmpl %]
+[% IF bottom_navigator == 1 %]
+  <ul class="related_actions">
+    <li><a href="show_bug.cgi?format=multiple&amp;id=
+                [% bug.bug_id FILTER url_quote %]">Format For Printing</a></li>
+    <li>&nbsp;-&nbsp;<a href="show_bug.cgi?ctype=xml&amp;id=
+                        [% bug.bug_id  FILTER url_quote %]">XML</a></li>
+    <li>&nbsp;-&nbsp;<a href="enter_bug.cgi?cloned_bug_id=
+                        [% bug.bug_id  FILTER url_quote %]">Clone This 
+                        [% terms.Bug %]</a></li>
+    [%# Links to more things users can do with this bug. %]
+    [% Hook.process("links") %]
+    <li>&nbsp;-&nbsp;<a href="#">Top of page </a></li>
+    </ul>
+[% END %]        
+
 
 <div class="navigation">
 [% IF bug_list && bug_list.size > 0 %]
diff --git a/template/en/default/bug/process/CVS/Entries b/template/en/default/bug/process/CVS/Entries
index bf14e812993573a69b63a9c2675f514917fb37a6..a26c3d8a3055a0f823ea56bd97ccd8960a29f654 100644
--- a/template/en/default/bug/process/CVS/Entries
+++ b/template/en/default/bug/process/CVS/Entries
@@ -1,7 +1,7 @@
-/bugmail.html.tmpl/1.8/Mon Aug 20 18:25:01 2007//TBUGZILLA-3_1_2
-/confirm-duplicate.html.tmpl/1.12/Mon Aug 20 18:25:01 2007//TBUGZILLA-3_1_2
-/header.html.tmpl/1.7/Mon Aug 20 18:25:01 2007//TBUGZILLA-3_1_2
-/midair.html.tmpl/1.20/Mon Aug 20 18:25:01 2007//TBUGZILLA-3_1_2
-/results.html.tmpl/1.12/Mon Aug 20 18:25:01 2007//TBUGZILLA-3_1_2
-/verify-new-product.html.tmpl/1.24/Tue Sep 18 21:07:21 2007//TBUGZILLA-3_1_2
+/bugmail.html.tmpl/1.8/Mon Aug 20 18:25:01 2007//TBUGZILLA-3_1_3
+/confirm-duplicate.html.tmpl/1.12/Mon Aug 20 18:25:01 2007//TBUGZILLA-3_1_3
+/header.html.tmpl/1.9/Sun Jan 27 19:21:18 2008//TBUGZILLA-3_1_3
+/midair.html.tmpl/1.21/Sun Jan 20 02:22:27 2008//TBUGZILLA-3_1_3
+/results.html.tmpl/1.12/Mon Aug 20 18:25:01 2007//TBUGZILLA-3_1_3
+/verify-new-product.html.tmpl/1.25/Sat Jan 12 16:23:13 2008//TBUGZILLA-3_1_3
 D
diff --git a/template/en/default/bug/process/CVS/Tag b/template/en/default/bug/process/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/template/en/default/bug/process/CVS/Tag
+++ b/template/en/default/bug/process/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/template/en/default/bug/process/header.html.tmpl b/template/en/default/bug/process/header.html.tmpl
index 930ab5c586b8c96b4c264ce1766d72b958011250..f31a9f8e4b318b5895d0addc57157b75d9aeb357 100644
--- a/template/en/default/bug/process/header.html.tmpl
+++ b/template/en/default/bug/process/header.html.tmpl
@@ -42,5 +42,7 @@
 [% END %]
 
 [% PROCESS global/header.html.tmpl
-  javascript_urls = [ "js/util.js", "js/keyword-chooser.js" ]
+  javascript_urls = [ "js/util.js", "js/keyword-chooser.js", "js/field.js",
+                      "js/yui/yahoo-dom-event.js", "js/yui/calendar.js" ]
+    style_urls = [ "skins/standard/yui/calendar.css", "skins/standard/show_bug.css" ]
  %]
diff --git a/template/en/default/bug/process/midair.html.tmpl b/template/en/default/bug/process/midair.html.tmpl
index 3d76e175488931aedd5ea44505db4c2834cf8b1d..31dbc7b3cd6d77aa0c3593142b099f1029da17ff 100644
--- a/template/en/default/bug/process/midair.html.tmpl
+++ b/template/en/default/bug/process/midair.html.tmpl
@@ -28,7 +28,7 @@
   #   entered a comment along with their change) or a number less than that
   #   (if they didn't), in which case no comments are displayed.
   # comments: array; all the comments on the bug.
-  # bug_id: number; the ID of the bug being changed.
+  # bug: Bugzilla::Bug; the bug being changed.
   #%]
 
 [%# The global Bugzilla->cgi object is used to obtain form variable values. %]
@@ -45,7 +45,7 @@
 
 <p>
   Someone else has made changes to
-  [%+ "$terms.bug $bug_id" FILTER bug_link(bug_id) FILTER none %]
+  [%+ "$terms.bug $bug.id" FILTER bug_link(bug.id) FILTER none %]
   at the same time you were trying to.
   The changes made were:
 </p>
@@ -58,7 +58,7 @@
 <p>
   Added the comment(s):
   <blockquote>
-    [% PROCESS "bug/comments.html.tmpl" bug = { 'bug_id' => bug_id } %]
+    [% PROCESS "bug/comments.html.tmpl" %]
   </blockquote>
 </p>
 [% END %]
@@ -77,7 +77,10 @@ You have the following choices:
 <ul>
   <li>
     <form method="post" action="process_bug.cgi">
-      [% PROCESS "global/hidden-fields.html.tmpl" exclude="^Bugzilla_(login|password)$" %]
+      <input type="hidden" name="delta_ts" 
+             value="[% bug.delta_ts FILTER html %]">
+      [% PROCESS "global/hidden-fields.html.tmpl" 
+          exclude="^Bugzilla_login|Bugzilla_password|delta_ts$" %]
       <input type="submit" id="process" value="Submit my changes anyway">
         This will cause all of the above changes to be overwritten
         [% ", except for the added comment(s)" IF comments.size > start_at %].
@@ -85,7 +88,7 @@ You have the following choices:
   </li>
   <li>
     Throw away my changes, and
-    [%+ "revisit $terms.bug $bug_id" FILTER bug_link(bug_id) FILTER none %]
+    [%+ "revisit $terms.bug $bug.id" FILTER bug_link(bug.id) FILTER none %]
   </li>
 </ul>
 
diff --git a/template/en/default/bug/process/verify-new-product.html.tmpl b/template/en/default/bug/process/verify-new-product.html.tmpl
index ee87ef8181c2584db413151f561bdf479d16e0dd..d1ce9652b0a970a4f7573efb3f73940c98c894fd 100644
--- a/template/en/default/bug/process/verify-new-product.html.tmpl
+++ b/template/en/default/bug/process/verify-new-product.html.tmpl
@@ -145,6 +145,8 @@
     <p>These groups are optional. You can decide to restrict [% terms.bugs %] to
     one or more of the following groups:<br>
     [% FOREACH group = optional_groups %]
+      <input type="hidden" name="defined_bit-[% group.group.id FILTER html %]"
+             value="1">
       <input type="checkbox" id="bit-[% group.group.id FILTER html %]"
              name="bit-[% group.group.id FILTER html %]"
              [% ((group.membercontrol == constants.CONTROLMAPDEFAULT && user.in_group(group.group.name))
diff --git a/template/en/default/bug/show-multiple.html.tmpl b/template/en/default/bug/show-multiple.html.tmpl
index 26dce7a4d7609a9c26cedafd4671e3ef91a118a3..2104c90a49e25a3a96160279c1d539a2ce07a151 100644
--- a/template/en/default/bug/show-multiple.html.tmpl
+++ b/template/en/default/bug/show-multiple.html.tmpl
@@ -29,6 +29,7 @@
   h1 = ""
   style_urls = ["skins/standard/show_multiple.css",
                 "skins/standard/buglist.css"]
+  doc_section = "bug_page.html"
 %]
 [% PROCESS bug/time.html.tmpl %]
 [% IF bugs.first %]
diff --git a/template/en/default/bug/show.html.tmpl b/template/en/default/bug/show.html.tmpl
index c3f4d4b1927d3dd8765f72d4bb888130ac5b139f..a6f9e8b97851dc6e5b148d79c1f1cc35f9068282 100644
--- a/template/en/default/bug/show.html.tmpl
+++ b/template/en/default/bug/show.html.tmpl
@@ -39,7 +39,10 @@
                    "bz_component_$bug.component",
                    "bz_bug_$bug.bug_id"
                   ]
-    javascript_urls = [ "js/util.js", "js/keyword-chooser.js" ]
+    javascript_urls = [ "js/util.js", "js/keyword-chooser.js", "js/field.js",
+                        "js/yui/yahoo-dom-event.js", "js/yui/calendar.js" ]
+     style_urls = [ "skins/standard/yui/calendar.css", "skins/standard/show_bug.css" ]
+doc_section = "bug_page.html"
   %]
 [% END %]
 
@@ -54,13 +57,11 @@
 
 [% PROCESS bug/navigate.html.tmpl %]
 
-<hr>
-
 [% PROCESS bug/edit.html.tmpl %]
 
 <hr>
 
-[% PROCESS bug/navigate.html.tmpl %]
+[% PROCESS bug/navigate.html.tmpl bottom_navigator => 1%]
 
 <br>
 
diff --git a/template/en/default/bug/summarize-time.html.tmpl b/template/en/default/bug/summarize-time.html.tmpl
index a7f90d0a7407f6f160a8e77dc8df60984e0c72c6..b7eaa797d7293f5ba26faf611c205f768d8da6e7 100644
--- a/template/en/default/bug/summarize-time.html.tmpl
+++ b/template/en/default/bug/summarize-time.html.tmpl
@@ -33,6 +33,7 @@
     title = title 
     header = header 
     style_urls = ["skins/standard/summarize-time.css"]
+    doc_section = "timetracking.html"
     %]
 
 [% INCLUDE query_form %]
diff --git a/template/en/default/bug/votes/CVS/Entries b/template/en/default/bug/votes/CVS/Entries
index d0e32022983b3ea0f97f44ab83feec0701235719..626c3c090808c179374f06665df561a93ceb711e 100644
--- a/template/en/default/bug/votes/CVS/Entries
+++ b/template/en/default/bug/votes/CVS/Entries
@@ -1,4 +1,4 @@
-/delete-all.html.tmpl/1.8/Mon Aug 20 18:25:02 2007//TBUGZILLA-3_1_2
-/list-for-bug.html.tmpl/1.12/Mon Aug 20 18:25:02 2007//TBUGZILLA-3_1_2
-/list-for-user.html.tmpl/1.27/Fri Aug 24 05:01:00 2007//TBUGZILLA-3_1_2
+/delete-all.html.tmpl/1.8/Mon Aug 20 18:25:02 2007//TBUGZILLA-3_1_3
+/list-for-bug.html.tmpl/1.12/Mon Aug 20 18:25:02 2007//TBUGZILLA-3_1_3
+/list-for-user.html.tmpl/1.27/Fri Aug 24 05:01:00 2007//TBUGZILLA-3_1_3
 D
diff --git a/template/en/default/bug/votes/CVS/Tag b/template/en/default/bug/votes/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/template/en/default/bug/votes/CVS/Tag
+++ b/template/en/default/bug/votes/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/template/en/default/config.js.tmpl b/template/en/default/config.js.tmpl
index e55e0d9107fad31c8cb3658aeedec3f81ece6f73..628a918d0203be973522d08d8a1f687e9782d9ed 100644
--- a/template/en/default/config.js.tmpl
+++ b/template/en/default/config.js.tmpl
@@ -57,6 +57,14 @@ var platform      = [ [% FOREACH x = platform %]'[% x FILTER js %]', [% END %] ]
 var severity      = [ [% FOREACH x = severity %]'[% x FILTER js %]', [% END %] ];
 
 
+// Custom Fields
+// =============
+
+[% FOREACH cf = custom_fields %]
+var [% cf.name FILTER js %] = [ [% FOREACH x = cf.legal_values %]'[% x FILTER js %]', [% END %] ];
+[% END %]
+
+
 // Products and Components
 // =======================
 //
diff --git a/template/en/default/config.rdf.tmpl b/template/en/default/config.rdf.tmpl
index a7e43227a05252d06181c602af0f9e724ae45df1..99850fa712d5195fab0dbbfcc0a071ccab6e9674 100644
--- a/template/en/default/config.rdf.tmpl
+++ b/template/en/default/config.rdf.tmpl
@@ -102,17 +102,28 @@
     </Seq>
   </bz:severity>
 
+[% FOREACH cf = custom_fields %]
+  <bz:[% cf.name FILTER html %]>
+    <Seq>
+      [% FOREACH item = cf.legal_values %]
+        <li>[% item FILTER html %]</li>
+      [% END %]
+    </Seq>
+  </bz:[% cf.name FILTER html %]>
+
+[% END %]
+
   <bz:products>
     <Seq>
       [% FOREACH product = products %]
         <li>
-          <bz:product rdf:about="[% urlbase FILTER xml %]product.cgi?name=[% product.name FILTER uri %]">
+          <bz:product rdf:about="[% urlbase FILTER xml %]product.cgi?name=[% product.name FILTER url_quote %]">
             <bz:name>[% product.name FILTER html %]</bz:name>
 
             <bz:components>
               <Seq>
                 [% FOREACH component = product.components %]
-                  <li resource="[% urlbase FILTER xml %]component.cgi?name=[% component.name FILTER uri %]"/>
+                  <li resource="[% urlbase FILTER xml %]component.cgi?name=[% component.name FILTER url_quote %]"/>
                 [% END %]
               </Seq>
             </bz:components>
@@ -120,7 +131,7 @@
             <bz:versions>
               <Seq>
                 [% FOREACH version = product.versions %]
-                  <li resource="[% urlbase FILTER xml %]version.cgi?name=[% version.name FILTER uri %]"/>
+                  <li resource="[% urlbase FILTER xml %]version.cgi?name=[% version.name FILTER url_quote %]"/>
                 [% END %]
               </Seq>
             </bz:versions>
@@ -129,7 +140,7 @@
               <bz:target_milestones>
                 <Seq>
                   [% FOREACH milestone = product.milestones %]
-                    <li resource="[% urlbase FILTER xml %]milestone.cgi?name=[% milestone.name FILTER uri %]"/>
+                    <li resource="[% urlbase FILTER xml %]milestone.cgi?name=[% milestone.name FILTER url_quote %]"/>
                   [% END %]
                 </Seq>
               </bz:target_milestones>
@@ -146,7 +157,7 @@
       [% FOREACH product = products %]
         [% FOREACH component = product.components %]
           <li>
-            <bz:component rdf:about="[% urlbase FILTER xml %]component.cgi?name=[% component.name FILTER uri %]">
+            <bz:component rdf:about="[% urlbase FILTER xml %]component.cgi?name=[% component.name FILTER url_quote %]">
               <bz:name>[% component.name FILTER html %]</bz:name>
             </bz:component>
           </li>
@@ -160,7 +171,7 @@
       [% FOREACH product = products %]
         [% FOREACH version = product.versions %]
           <li>
-            <bz:version rdf:about="[% urlbase FILTER xml %]version.cgi?name=[% version.name FILTER uri %]">
+            <bz:version rdf:about="[% urlbase FILTER xml %]version.cgi?name=[% version.name FILTER url_quote %]">
               <bz:name>[% version.name FILTER html %]</bz:name>
             </bz:version>
           </li>
@@ -175,7 +186,7 @@
         [% FOREACH product = products %]
           [% FOREACH milestone = product.milestones %]
             <li>
-              <bz:target_milestone rdf:about="[% urlbase FILTER xml %]milestone.cgi?name=[% milestone.name FILTER uri %]">
+              <bz:target_milestone rdf:about="[% urlbase FILTER xml %]milestone.cgi?name=[% milestone.name FILTER url_quote %]">
                 <bz:name>[% milestone.name FILTER html %]</bz:name>
               </bz:target_milestone>
             </li>
@@ -190,7 +201,7 @@
       [% PROCESS "global/field-descs.none.tmpl" %]
       [% FOREACH item = field %]
         <li>
-          <bz:field rdf:about="[% urlbase FILTER xml %]field.cgi?name=[% item.name FILTER uri %]">
+          <bz:field rdf:about="[% urlbase FILTER xml %]field.cgi?name=[% item.name FILTER url_quote %]">
             <bz:name>[% item.name FILTER html %]</bz:name>
             <bz:description>[% (field_descs.${item.name} OR item.description) FILTER html %]</bz:description>
           </bz:field>
diff --git a/template/en/default/email/CVS/Entries b/template/en/default/email/CVS/Entries
index e247b75461e40e901f8ec6c8ceb4c9adfd72346e..ad5eae691c0e2d9a4428a735b8df790ce23669f7 100644
--- a/template/en/default/email/CVS/Entries
+++ b/template/en/default/email/CVS/Entries
@@ -1,6 +1,6 @@
-/newchangedmail.txt.tmpl/1.11/Tue Sep  4 22:01:54 2007//TBUGZILLA-3_1_2
-/sanitycheck.txt.tmpl/1.3/Mon Aug 20 18:25:02 2007//TBUGZILLA-3_1_2
-/sudo.txt.tmpl/1.5/Mon Aug 20 18:25:02 2007//TBUGZILLA-3_1_2
-/votes-removed.txt.tmpl/1.4/Mon Aug 20 18:25:02 2007//TBUGZILLA-3_1_2
-/whine.txt.tmpl/1.6/Mon Aug 20 18:25:02 2007//TBUGZILLA-3_1_2
+/newchangedmail.txt.tmpl/1.11/Tue Sep  4 22:01:54 2007//TBUGZILLA-3_1_3
+/sanitycheck.txt.tmpl/1.3/Mon Aug 20 18:25:02 2007//TBUGZILLA-3_1_3
+/sudo.txt.tmpl/1.5/Mon Aug 20 18:25:02 2007//TBUGZILLA-3_1_3
+/votes-removed.txt.tmpl/1.4/Mon Aug 20 18:25:02 2007//TBUGZILLA-3_1_3
+/whine.txt.tmpl/1.6/Mon Aug 20 18:25:02 2007//TBUGZILLA-3_1_3
 D
diff --git a/template/en/default/email/CVS/Tag b/template/en/default/email/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/template/en/default/email/CVS/Tag
+++ b/template/en/default/email/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/template/en/default/filterexceptions.pl b/template/en/default/filterexceptions.pl
index 93305c1c841be6bf0d99ab7f55c4c6caffb3e1c2..2fb8b48e09c7cf836fad6b4a2dd63f69ff5729b4 100644
--- a/template/en/default/filterexceptions.pl
+++ b/template/en/default/filterexceptions.pl
@@ -275,8 +275,7 @@
 ],
 
 'bug/comments.html.tmpl' => [
-  'comment.isprivate', 
-  'comment.time', 
+  'comment.id',
   'bug.bug_id',
 ],
 
@@ -316,6 +315,7 @@
   '" maxlength=\"$maxlength\"" IF maxlength',
   '" onfocus=\"$onfocus\"" IF onfocus',
   'flag.status',
+  '" spellcheck=\"$spellcheck\"" IF spellcheck',
 ],
 
 'bug/navigate.html.tmpl' => [
@@ -389,10 +389,6 @@
   'productstring', 
 ],
 
-'bug/activity/show.html.tmpl' => [
-  'bug_id', 
-],
-
 'bug/activity/table.html.tmpl' => [
   'change.attachid', 
   'change.field', 
@@ -421,6 +417,10 @@
   'obsolete_attachments',
 ],
 
+'attachment/midair.html.tmpl' => [
+  'attachment.id',
+],
+
 'attachment/show-multiple.html.tmpl' => [
   'a.id',
   'flag.status'
diff --git a/template/en/default/flag/CVS/Entries b/template/en/default/flag/CVS/Entries
index 6de430d6fe95c3acebd14c75c4dbd786eaa13388..aecbc8d1de68313bd8b336c73f81bfc7894bcce7 100644
--- a/template/en/default/flag/CVS/Entries
+++ b/template/en/default/flag/CVS/Entries
@@ -1,2 +1,2 @@
-/list.html.tmpl/1.30/Mon Aug 20 18:25:03 2007//TBUGZILLA-3_1_2
+/list.html.tmpl/1.30/Mon Aug 20 18:25:03 2007//TBUGZILLA-3_1_3
 D
diff --git a/template/en/default/flag/CVS/Tag b/template/en/default/flag/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/template/en/default/flag/CVS/Tag
+++ b/template/en/default/flag/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/template/en/default/global/CVS/Entries b/template/en/default/global/CVS/Entries
index f95f46196168aa1fc64a3af8278eed32ee5d9152..1fb93f6857d74c8cfebf72f833dc9370fdd4ec6a 100644
--- a/template/en/default/global/CVS/Entries
+++ b/template/en/default/global/CVS/Entries
@@ -1,28 +1,28 @@
-/banner.html.tmpl/1.11/Mon Aug 20 18:25:04 2007//TBUGZILLA-3_1_2
-/choose-classification.html.tmpl/1.10/Mon Aug 20 18:25:04 2007//TBUGZILLA-3_1_2
-/choose-product.html.tmpl/1.18/Mon Aug 20 18:25:04 2007//TBUGZILLA-3_1_2
-/code-error.html.tmpl/1.102/Mon Aug 20 18:25:04 2007//TBUGZILLA-3_1_2
-/common-links.html.tmpl/1.10/Mon Aug 20 18:25:04 2007//TBUGZILLA-3_1_2
-/confirm-user-match.html.tmpl/1.19/Mon Aug 20 18:25:04 2007//TBUGZILLA-3_1_2
-/docslinks.html.tmpl/1.2/Mon Aug 20 18:25:04 2007//TBUGZILLA-3_1_2
-/field-descs.none.tmpl/1.24/Mon Sep 17 04:48:06 2007//TBUGZILLA-3_1_2
-/footer.html.tmpl/1.14/Mon Aug 20 18:25:04 2007//TBUGZILLA-3_1_2
-/header.html.tmpl/1.54/Mon Aug 20 18:25:04 2007//TBUGZILLA-3_1_2
-/help.html.tmpl/1.6/Mon Aug 20 18:25:04 2007//TBUGZILLA-3_1_2
-/hidden-fields.html.tmpl/1.11/Mon Aug 20 18:25:04 2007//TBUGZILLA-3_1_2
-/initialize.none.tmpl/1.2/Mon Aug 20 18:25:04 2007//TBUGZILLA-3_1_2
-/js-products.html.tmpl/1.3/Mon Aug 20 18:25:04 2007//TBUGZILLA-3_1_2
-/message.html.tmpl/1.8/Mon Aug 20 18:25:04 2007//TBUGZILLA-3_1_2
-/message.txt.tmpl/1.4/Mon Aug 20 18:25:04 2007//TBUGZILLA-3_1_2
-/messages.html.tmpl/1.64/Mon Aug 20 18:25:04 2007//TBUGZILLA-3_1_2
-/per-bug-queries.html.tmpl/1.12/Mon Aug 20 18:25:04 2007//TBUGZILLA-3_1_2
-/select-menu.html.tmpl/1.6/Mon Aug 20 18:25:04 2007//TBUGZILLA-3_1_2
-/setting-descs.none.tmpl/1.14/Mon Aug 20 18:25:04 2007//TBUGZILLA-3_1_2
-/site-navigation.html.tmpl/1.24/Mon Aug 20 18:25:04 2007//TBUGZILLA-3_1_2
-/tabs.html.tmpl/1.4/Mon Aug 20 18:25:04 2007//TBUGZILLA-3_1_2
-/textarea.html.tmpl/1.3/Mon Aug 20 18:25:04 2007//TBUGZILLA-3_1_2
-/useful-links.html.tmpl/1.59/Mon Aug 20 18:25:04 2007//TBUGZILLA-3_1_2
-/user-error.html.tmpl/1.232/Tue Sep 18 21:44:23 2007//TBUGZILLA-3_1_2
-/userselect.html.tmpl/1.8/Mon Aug 20 18:25:04 2007//TBUGZILLA-3_1_2
-/variables.none.tmpl/1.6/Mon Aug 20 18:25:04 2007//TBUGZILLA-3_1_2
+/banner.html.tmpl/1.11/Mon Aug 20 18:25:04 2007//TBUGZILLA-3_1_3
+/choose-classification.html.tmpl/1.10/Mon Aug 20 18:25:04 2007//TBUGZILLA-3_1_3
+/choose-product.html.tmpl/1.18/Mon Aug 20 18:25:04 2007//TBUGZILLA-3_1_3
+/code-error.html.tmpl/1.104/Sun Jan 27 19:15:22 2008//TBUGZILLA-3_1_3
+/common-links.html.tmpl/1.12/Sun Nov 25 21:45:04 2007//TBUGZILLA-3_1_3
+/confirm-user-match.html.tmpl/1.19/Mon Aug 20 18:25:04 2007//TBUGZILLA-3_1_3
+/docslinks.html.tmpl/1.2/Mon Aug 20 18:25:04 2007//TBUGZILLA-3_1_3
+/field-descs.none.tmpl/1.25/Tue Oct 23 19:36:53 2007//TBUGZILLA-3_1_3
+/footer.html.tmpl/1.14/Mon Aug 20 18:25:04 2007//TBUGZILLA-3_1_3
+/header.html.tmpl/1.55/Thu Nov 29 02:20:34 2007//TBUGZILLA-3_1_3
+/help.html.tmpl/1.6/Mon Aug 20 18:25:04 2007//TBUGZILLA-3_1_3
+/hidden-fields.html.tmpl/1.11/Mon Aug 20 18:25:04 2007//TBUGZILLA-3_1_3
+/initialize.none.tmpl/1.2/Mon Aug 20 18:25:04 2007//TBUGZILLA-3_1_3
+/js-products.html.tmpl/1.3/Mon Aug 20 18:25:04 2007//TBUGZILLA-3_1_3
+/message.html.tmpl/1.8/Mon Aug 20 18:25:04 2007//TBUGZILLA-3_1_3
+/message.txt.tmpl/1.4/Mon Aug 20 18:25:04 2007//TBUGZILLA-3_1_3
+/messages.html.tmpl/1.69/Sun Jan 27 23:14:26 2008//TBUGZILLA-3_1_3
+/per-bug-queries.html.tmpl/1.12/Mon Aug 20 18:25:04 2007//TBUGZILLA-3_1_3
+/select-menu.html.tmpl/1.6/Mon Aug 20 18:25:04 2007//TBUGZILLA-3_1_3
+/setting-descs.none.tmpl/1.14/Mon Aug 20 18:25:04 2007//TBUGZILLA-3_1_3
+/site-navigation.html.tmpl/1.24/Mon Aug 20 18:25:04 2007//TBUGZILLA-3_1_3
+/tabs.html.tmpl/1.4/Mon Aug 20 18:25:04 2007//TBUGZILLA-3_1_3
+/textarea.html.tmpl/1.3/Mon Aug 20 18:25:04 2007//TBUGZILLA-3_1_3
+/useful-links.html.tmpl/1.59/Mon Aug 20 18:25:04 2007//TBUGZILLA-3_1_3
+/user-error.html.tmpl/1.243/Sun Jan 20 02:35:25 2008//TBUGZILLA-3_1_3
+/userselect.html.tmpl/1.8/Mon Aug 20 18:25:04 2007//TBUGZILLA-3_1_3
+/variables.none.tmpl/1.6/Mon Aug 20 18:25:04 2007//TBUGZILLA-3_1_3
 D
diff --git a/template/en/default/global/CVS/Tag b/template/en/default/global/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/template/en/default/global/CVS/Tag
+++ b/template/en/default/global/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/template/en/default/global/code-error.html.tmpl b/template/en/default/global/code-error.html.tmpl
index dce7947d61ffa075091539ea1a0edd84acacf814..7e0e1cd70c3bc9d4b349ea7e3e3bba3d0b962a9f 100644
--- a/template/en/default/global/code-error.html.tmpl
+++ b/template/en/default/global/code-error.html.tmpl
@@ -309,6 +309,10 @@
   [% ELSIF error == "need_quipid" %]
     A valid quipid is needed.
 
+  [% ELSIF error == "no_manual_moved" %]
+    You cannot set the resolution of [% terms.abug %] to MOVED without
+    moving the [% terms.bug %].
+
   [% ELSIF error == "param_must_be_numeric" %]
     [% title = "Invalid Parameter" %]
     Invalid parameter passed to [% function FILTER html %].
@@ -412,14 +416,6 @@
   [% ELSIF error == "not_in_transaction" %]
     Attempted to end transaction without starting one first.
 
-  [% ELSIF error == "already_locked" %]
-    Attempted to lock a table without releasing previous lock first:
-    <p>Tables already locked:<br>[% current FILTER html %]
-    <p>Tables requesting locking:<br>[% new FILTER html %]
-
-  [% ELSIF error == "no_matching_lock" %]
-    Attempted to unlock tables without locking them first.
-
   [% ELSIF error == "comma_operator_deprecated" %]
     [% title = "SQL query generator internal error" %]
     There is an internal error in the SQL query generation code,
diff --git a/template/en/default/global/common-links.html.tmpl b/template/en/default/global/common-links.html.tmpl
index cb7b289cf8c27a7f4266f58cd427c574e26d4523..94fed709fd0511ed981ebddaa56dfc9bb0f35b57 100644
--- a/template/en/default/global/common-links.html.tmpl
+++ b/template/en/default/global/common-links.html.tmpl
@@ -42,7 +42,7 @@
     <span class="separator">| </span>
     [% IF user.id %]
       <a href="request.cgi?requester=[% user.login FILTER url_quote %]&amp;requestee=
-               [% user.login FILTER url_quote %]&amp;do_union=1&amp;group=type">My Requests</a>
+               [% user.login FILTER url_quote %]&amp;do_union=1&amp;group=type&amp;action=queue">My Requests</a>
     [% ELSE %]
       <a href="request.cgi">Requests</a>
     [% END %]
@@ -61,6 +61,9 @@
           || user.get_products_by_permission("editcomponents").size %]
       <li><span class="separator">| </span><a href="admin.cgi">Administration</a></li>
     [% END %]
+
+    [% PROCESS link_to_documentation %]
+
     <li>
       <span class="separator">| </span>
       [% IF user.authorizer.can_logout %]
@@ -81,6 +84,9 @@
           && user.authorizer.user_can_create_account %]
       <li><span class="separator">| </span><a href="createaccount.cgi">New&nbsp;Account</a></li>
     [% END %]
+
+    [% PROCESS link_to_documentation %]
+
     [% IF user.authorizer.can_login %]
       [%# Use the current script name. If an empty name is returned,
         # then we are accessing the home page. %]
@@ -109,3 +115,12 @@
     [% END %]
   [% END %]
 </ul>
+
+[% BLOCK link_to_documentation %]
+    [% IF doc_section %]
+      <li>
+        <span class="separator">| </span>
+        <a href="[% Param("docs_urlbase") _ doc_section FILTER html %]" target="_blank">Help</a>
+      </li>
+    [% END %]
+[% END %]
diff --git a/template/en/default/global/field-descs.none.tmpl b/template/en/default/global/field-descs.none.tmpl
index 64bf546e6c2d672f21494ce380cf33ab39ae3c49..178a6844445448a7234bd22f62f2c8af77e2ce22 100644
--- a/template/en/default/global/field-descs.none.tmpl
+++ b/template/en/default/global/field-descs.none.tmpl
@@ -83,6 +83,7 @@
                    ${constants.FIELD_TYPE_SINGLE_SELECT} => "Drop Down",
                    ${constants.FIELD_TYPE_MULTI_SELECT}  => "Multiple-Selection Box",
                    ${constants.FIELD_TYPE_TEXTAREA}      => "Large Text Box",
+                   ${constants.FIELD_TYPE_DATETIME}      => "Date/Time",
                 } %]
 
 [% status_descs = { "UNCONFIRMED" => "UNCONFIRMED",
diff --git a/template/en/default/global/header.html.tmpl b/template/en/default/global/header.html.tmpl
index e4d0d9f2941bcc0e0005a6bed5633f4a4adc0c94..fef99ca554d1c3fa51015a8bf3086680a73d9d85 100644
--- a/template/en/default/global/header.html.tmpl
+++ b/template/en/default/global/header.html.tmpl
@@ -74,11 +74,16 @@
         [% javascript %]
       </script>
     [% END %]
-    
+
     [% IF javascript_urls %]
       [% FOREACH javascript_url = javascript_urls %]
         <script src="[% javascript_url FILTER html %]" type="text/javascript"></script>
       [% END %]
+      [% IF javascript_urls.grep('yui/').size %]
+        <script type="text/javascript">
+          YAHOO.namespace('bugzilla');
+        </script>
+      [% END %]
     [% END %]
 
     [%# Set up the skin CSS cascade:
diff --git a/template/en/default/global/messages.html.tmpl b/template/en/default/global/messages.html.tmpl
index 6db207dd4ce8f1a8c8a3bc57b7209e3c24255462..0189cfab7feeae4dbf2a778a25c33d238be9cc91 100644
--- a/template/en/default/global/messages.html.tmpl
+++ b/template/en/default/global/messages.html.tmpl
@@ -173,6 +173,82 @@
     Click <a href="[% redirect_url FILTER html %]">here</a>
     if the page does not automatically refresh.
 
+  [% ELSIF message_tag == "classification_created" %]
+    [% title = "New Classification Created" %]
+    The <em>[% classification.name FILTER html %]</em> classification has been created.
+
+  [% ELSIF message_tag == "classification_deleted" %]
+    [% title = "Classification Deleted" %]
+    The <em>[% classification FILTER html %]</em> classification has been deleted.
+
+  [% ELSIF message_tag == "classification_updated" %]
+    [% IF updated_classification || updated_description || updated_sortkey %]
+      [% title = "Classification Updated" %]
+      Changes to the <em>[% classification FILTER html %]</em> classification
+      have been saved:
+      <ul>
+        [% IF updated_classification %]
+          <li>Classification name updated</li>
+        [% END %]
+        [% IF updated_description %]
+          <li>Description updated</li>
+        [% END %]
+        [% IF updated_sortkey %]
+          <li>Sortkey updated</li>
+        [% END %]
+      </ul>
+    [% ELSE %]
+      No changes made to <em>[% classification FILTER html %]</em>.
+    [% END %]
+
+  [% ELSIF message_tag == "component_created" %]
+    [% title = "Component Created" %]
+    The component <em>[% comp.name FILTER html %]</em> has been created.
+
+  [% ELSIF message_tag == "component_deleted" %]
+    [% title = "Component Deleted" %]
+    The component <em>[% comp.name FILTER html %]</em> has been deleted.
+    [% IF comp.bug_count %]
+      All [% terms.bugs %] being in this component and all references
+      to them have also been deleted.
+    [% END %]
+
+  [% ELSIF message_tag == "component_updated" %]
+    [% title = "Component Updated" %]
+    [% IF changes.keys.size %]
+      Changes to the component <em>[% comp.name FILTER html %]</em> have been saved:
+      <ul>
+      [% IF changes.name.defined %]
+        <li>Name updated to '[% comp.name FILTER html %]'</li>
+      [% END %]
+      [% IF changes.description.defined %]
+        <li>Description updated to '[% comp.description FILTER html_light %]'</li>
+      [% END %]
+      [% IF changes.initialowner.defined %]
+        <li>Default assignee updated to '[% comp.default_assignee.login FILTER html %]'</li>
+      [% END %]
+      [% IF changes.initialqacontact.defined %]
+        [% IF comp.default_qa_contact.id %]
+          <li>Default QA contact updated to '[% comp.default_qa_contact.login FILTER html %]'</li>
+        [% ELSE %]
+          <li>Default QA contact deleted</li>
+        [% END %]
+      [% END %]
+      [% IF changes.cc_list.defined %]
+        [% IF comp.initial_cc.size %]
+          [% cc_list = [] %]
+          [% FOREACH cc_user = comp.initial_cc %]
+            [% cc_list.push(cc_user.login) %]
+          [% END %]
+          <li>Default CC list updated to [% cc_list.join(", ") FILTER html %]</li>
+        [% ELSE %]
+          <li>Default CC list deleted</li>
+        [% END %]
+      [% END %]
+    [% ELSE %]
+      No changes made to <em>[% comp.name FILTER html %]</em>.
+    [% END %]
+
   [% ELSIF message_tag == "custom_field_created" %]
     [% title = "Custom Field Created" %]
     The new custom field '[% field.name FILTER html %]' has been
@@ -183,6 +259,13 @@
     Properties of the '[% field.name FILTER html %]' field have been
     successfully updated.
 
+  [% ELSIF message_tag == "default_settings_updated" %]
+    [% IF changes_saved %]
+      Changes to default preferences have been saved.
+    [% ELSE %]
+      No changes made.
+    [% END %]
+
   [% ELSIF message_tag == "emailold_change_canceled" %]
     [% title = "Cancel Request to Change Email Address" %]
     The request to change the email address for your account to
@@ -201,11 +284,73 @@
     [%+ new_email FILTER html %] has been canceled.
    Your old account settings have been reinstated.
 
+  [% ELSIF message_tag == "field_value_created" %]
+    [% title = "New Field Value Created" %]
+    The value <em>[% value FILTER html %]</em> has been added as a valid choice
+    for the <em>[% field.description FILTER html %]</em>
+    (<em>[% field.name FILTER html %]</em>) field.
+    [% IF field.name == "bug_status" %]
+      You should now visit the <a href="editworkflow.cgi">status workflow page</a>
+      to include your new [% terms.bug %] status.
+    [% END %]
+
+  [% ELSIF message_tag == "field_value_deleted" %]
+    [% title = "Field Value Deleted" %]
+    The value <em>[% value FILTER html %]</em> of the
+    <em>[% field.description FILTER html %]</em>
+    (<em>[% field.name FILTER html %]</em>) field has been deleted.
+
+  [% ELSIF message_tag == "field_value_updated" %]
+    [% title = "Field Value Updated" %]
+    [% IF updated_value || updated_sortkey %]
+      Changes to the <em>[% value FILTER html %]</em> value of the
+      <em>[% field.description FILTER html %]</em>
+      (<em>[% field.name FILTER html %]</em>) field have been changed:
+      <ul>
+        [% IF updated_value %]
+          <li>Field value updated to <em>[% value FILTER html %]</em></li>
+          [% IF default_value_updated %]
+            (note that this value is the default for this field. All
+            references to the default value will now point to this new value)
+          [% END %]
+        [% END %]
+        [% IF updated_sortkey %]
+          <li>Field value sortkey updated to <em>[% sortkey FILTER html %]</em></li>
+        [% END %]
+      </ul>
+    [% ELSE %]
+      No changes made to the field value <em>[% value FILTER html %]</em>.
+    [% END %]
+
+  [% ELSIF message_tag == "flag_cleared" %]
+    Some flags didn't apply in the new product/component
+    and have been cleared.
+
   [% ELSIF message_tag == "flag_creation_failed" %]
     [% title = "Flag Creation Failure" %]
     An error occured while validating flags:
     [%+ flag_creation_error FILTER none %]
 
+  [% ELSIF message_tag == "group_created" %]
+    [% title = "New Group Created" %]
+    The group <em>[% group.name FILTER html %]</em> has been created.
+
+  [% ELSIF message_tag == "group_deleted" %]
+    [% title = "Group Deleted" %]
+    The group <em>[% name FILTER html %]</em> has been deleted.
+
+  [% ELSIF message_tag == "group_membership_removed" %]
+    [% title = "Group Membership Removed" %]
+    [% IF users.size %]
+      Explicit membership to the <em>[% group FILTER html %]</em> group removed
+      [% IF regexp %] for users matching '[% regexp FILTER html %]'[% END %]:
+      [% FOREACH user = users %]
+        [%+ user.login FILTER html %]
+      [% END %]
+    [% ELSE %]
+      No users are being affected by your action.
+    [% END %]
+
   [% ELSIF message_tag == "group_updated" %]
     [% IF changes.keys.size %]
       The following changes have been made to the '[% group.name FILTER html %]'
@@ -271,6 +416,41 @@
       group.
     [% END %]
 
+  [% ELSIF message_tag == "keyword_created" %]
+    [% title = "New Keyword Created" %]
+    The keyword <em>[% name FILTER html %]</em> has been created.
+
+  [% ELSIF message_tag == "keyword_deleted" %]
+    [% title = "Keyword Deleted" %]
+    The <em>[% keyword.name FILTER html %]</em> keyword has been deleted.
+    <b>After you have finished editing keywords, you need to
+    <a href="sanitycheck.cgi?rebuildkeywordcache=1">rebuild the keyword
+    cache</a></b> (on a very large installation of [% terms.Bugzilla %],
+    this can take several minutes).
+
+  [% ELSIF message_tag == "keyword_updated" %]
+    [% title = "Keyword Updated" %]
+    [% IF changes.keys.size %]
+      Changes to the <em>[% keyword.name FILTER html %]</em> keyword have
+      been saved:
+      <ul>
+        [% IF changes.name.defined %]
+          <li>
+            Keyword renamed to <em>[% keyword.name FILTER html %]</em>.
+            <b>After you have finished editing keywords, you need to
+            <a href="sanitycheck.cgi?rebuildkeywordcache=1">rebuild
+            the keyword cache</a></b> (on a very large installation
+            of [% terms.Bugzilla %], this can take several minutes).
+          </li>
+        [% END %]
+        [% IF changes.description.defined %]
+          <li>Description updated to <em>[% keyword.description FILTER html %]</em></li>
+        [% END %]
+      </ul>
+    [% ELSE %]
+      No changes made.
+    [% END %]
+
   [% ELSIF message_tag == "logged_out" %]
     [% title = "Logged Out" %]
     [% url = "index.cgi?GoAheadAndLogIn=1" %]
@@ -283,6 +463,35 @@
     [% title = "$terms.Bugzilla Login Changed" %]
     Your [% terms.Bugzilla %] login has been changed.
 
+  [% ELSIF message_tag == "milestone_created" %]
+    [% title = "Milestone Created" %]
+    The milestone <em>[% milestone.name FILTER html %]</em> has been created.
+
+  [% ELSIF message_tag == "milestone_deleted" %]
+    [% title = "Milestone Deleted" %]
+    The milestone <em>[% milestone.name FILTER html %]</em> has been deleted.
+    [% IF milestone.bug_count %]
+      [%+ terms.Bugs %] targetted to this milestone have been retargetted to
+      the default milestone <em>[% product.default_milestone FILTER html %]</em>.
+    [% END %]
+
+  [% ELSIF message_tag == "milestone_updated" %]
+    [% title = "Milestone Updated" %]
+    [% IF changes.size %]
+      Changes to the milestone <em>[% milestone.name FILTER html %]</em>
+      have been saved:
+      <ul>
+        [% IF changes.value.defined %]
+          <li>Milestone name updated to <em>[% milestone.name FILTER html %]</em></li>
+        [% END %]
+        [% IF changes.sortkey.defined %]
+          <li>Sortkey updated to <em>[% milestone.sortkey FILTER html %]</em>
+        [% END %]
+      </ul>
+    [% ELSE %]
+      No changes made to milestone <em>[% milestone.name FILTER html %]</em>.
+    [% END %]
+
   [% ELSIF message_tag == "parameters_updated" %]
     [% title = "Parameters Updated" %]
     [% IF param_changed.size > 0 %]
@@ -317,32 +526,21 @@
 
   [% ELSIF message_tag == "flag_type_created" %]
     [% title = "Flag Type Created" %]
-      The flag type <em>[% name FILTER html %]</em> has been created.
-      <a href="editflagtypes.cgi">Back to flag types.</a>
-    
+    The flag type <em>[% name FILTER html %]</em> has been created.
+
   [% ELSIF message_tag == "flag_type_changes_saved" %]
     [% title = "Flag Type Changes Saved" %]
-    <p>
-      Your changes to the flag type <em>[% name FILTER html %]</em> 
-      have been saved.
-      <a href="editflagtypes.cgi">Back to flag types.</a>
-    </p>
-    
+    Your changes to the flag type <em>[% name FILTER html %]</em>
+    have been saved.
+
   [% ELSIF message_tag == "flag_type_deleted" %]
     [% title = "Flag Type Deleted" %]
-    <p>
-      The flag type <em>[% name FILTER html %]</em> has been deleted.
-      <a href="editflagtypes.cgi">Back to flag types.</a>
-    </p>
-    
+    The flag type <em>[% name FILTER html %]</em> has been deleted.
+
   [% ELSIF message_tag == "flag_type_deactivated" %]
     [% title = "Flag Type Deactivated" %]
-    <p>
-      The flag type <em>[% flag_type.name FILTER html %]</em> 
-      has been deactivated.
-      <a href="editflagtypes.cgi">Back to flag types.</a>
-    </p>
-    
+    The flag type <em>[% flag_type.name FILTER html %]</em> has been deactivated.
+
   [% ELSIF message_tag == "install_admin_get_email" %]
     Enter the e-mail address of the administrator:
 
@@ -352,9 +550,6 @@
   [% ELSIF message_tag == "install_admin_get_password" %]
     Enter a password for the administrator account:
 
-  [% ELSIF message_tag == "install_admin_get_password2" %]
-    Please retype the password to verify:
-
   [% ELSIF message_tag == "install_admin_created" %]
     [% user.login FILTER html %] is now set up as an administrator.
 
@@ -372,6 +567,9 @@
   [% ELSIF message_tag == "install_column_rename" %]
     Renaming column '[% old FILTER html %]' to '[% new FILTER html %]'...
 
+  [% ELSIF message_tag == "install_confirm_password" %]
+    Please retype the password to verify:
+
   [% ELSIF message_tag == "install_default_classification" %]
     Creating default classification '[% name FILTER html %]'...
 
@@ -384,6 +582,9 @@
   [% ELSIF message_tag == "install_fk_add" %]
     Adding foreign key: [% table FILTER html %].[% column FILTER html %] -&gt; [% fk.TABLE FILTER html %].[% fk.COLUMN FILTER html %]...
 
+  [% ELSIF message_tag == "install_fk_drop" %]
+    Dropping foreign key: [% table FILTER html %].[% column FILTER html %] -&gt; [% fk.TABLE FILTER html %].[% fk.COLUMN FILTER html %]...
+
   [% ELSIF message_tag == "install_group_create" %]
     Creating group [% name FILTER html %]...
 
@@ -402,6 +603,12 @@
     account) to ensure it is set up as you wish - this includes
     setting the 'urlbase' option to the correct URL.
 
+  [% ELSIF message_tag == "install_reset_password" %]
+    Enter a new password for [% user.login FILTER html %]:
+
+  [% ELSIF message_tag == "install_reset_password_done" %]
+    New password set.
+
   [% ELSIF message_tag == "install_webservergroup_empty" %]
     ****************************************************************************
     WARNING! You have not entered a value for the "webservergroup" parameter
@@ -431,6 +638,21 @@
     Verify that the file permissions in your [% terms.Bugzilla %] directory are
     suitable for your system. Avoid unnecessary write access.
 
+  [% ELSIF message_tag == "product_created" %]
+    [% title = "Product Created" %]
+    The product <em>[% product.name FILTER html %]</em> has been created. You will need to
+    <a href="editcomponents.cgi?action=add&product=[% product.name FILTER url_quote %]">
+    add at least one component</a> before you can enter [% terms.bugs %] against this product.
+
+  [% ELSIF message_tag == "product_deleted" %]
+    [% title = "Product Deleted" %]
+    The product <em>[% product.name FILTER html %]</em> and all its versions,
+    components, milestones and group controls have been deleted.
+    [% IF product.bug_count %]
+      All [% terms.bugs %] being in this product and all references
+      to them have also been deleted.
+    [% END %]
+
   [% ELSIF message_tag == "product_invalid" %]
     [% title = "$terms.Bugzilla Component Descriptions" %]
     The product <em>[% product FILTER html %]</em> does not exist
@@ -447,6 +669,12 @@
       # we can still use get_text(). %]
     [% PROCESS "admin/sanitycheck/messages.html.tmpl" %]
 
+  [% ELSIF message_tag == "series_all_open" %]
+    All Open
+
+  [% ELSIF message_tag == "series_all_closed" %]
+    All Closed
+
   [% ELSIF message_tag == "sudo_started" %]
     [% title = "Sudo session started" %]
       The sudo session has been started.  For the next 6 hours, or until you 
@@ -481,6 +709,9 @@
   [% ELSIF message_tag == "term" %]
     [% terms.$term FILTER html %]
 
+  [% ELSIF message_tag == "unexpected_flag_types" %]
+    Some flags could not be set. Please check your changes.
+
   [% ELSIF message_tag == "user_match_failed" %]
     You entered a username that did not match any known 
     [% terms.Bugzilla %] users, so we have instead left
@@ -491,6 +722,20 @@
     user, so we have instead left the [% match_field FILTER html %]
     field blank.
 
+  [% ELSIF message_tag == "version_created" %]
+    [% title = "Version Created" %]
+    The version <em>[% version.name FILTER html %]</em> of product
+    <em>[% product.name FILTER html %]</em> has been created.
+
+  [% ELSIF message_tag == "version_deleted" %]
+    [% title = "Version Deleted" %]
+    The version <em>[% version.name FILTER html %]</em> of product
+    <em>[% product.name FILTER html %]</em> has been deleted.
+
+  [% ELSIF message_tag == "version_updated" %]
+    [% title = "Version Updated" %]
+    Version renamed as <em>[% version.name FILTER html %]</em>.
+
   [% ELSIF message_tag == "workflow_updated" %]
     The workflow has been updated.
 
diff --git a/template/en/default/global/user-error.html.tmpl b/template/en/default/global/user-error.html.tmpl
index f72275bd55dc805f408d2030323069711294a4f0..73d0f1d1fb74e69b4e33317a085b37a57124330a 100644
--- a/template/en/default/global/user-error.html.tmpl
+++ b/template/en/default/global/user-error.html.tmpl
@@ -237,25 +237,25 @@
                     'query.html#list' => "$terms.Bug lists"} %]
     You may not search, or create saved searches, without any search terms.
 
-  [% ELSIF error == "bugs_not_changed" %]
-    [% title = BLOCK %][% terms.Bugs %] Not Changed[% END %]
-    You do not seem to have made any changes in the selected [% terms.bugs %],
-    so there is nothing to Commit.
-
   [% ELSIF error == "chart_too_large" %]
     [% title = "Chart Too Large" %]
     Sorry, but 2000 x 2000 is the maximum size for a chart.
 
+  [% ELSIF error == "comment_invalid_isprivate" %]
+    You tried to modify the privacy of comment id [% id FILTER html %],
+    but that is not a valid comment on this [% terms.bug %].
+
   [% ELSIF error == "comment_required" %]
     [% title = "Comment Required" %]
-    You have to specify a <b>comment</b>
-    [% IF old.size && new %]
-      to change the [% terms.bug %] status from [% old.join(", ") FILTER html %]
-      to [% new FILTER html %].
+    You have to specify a
+    [% IF old && new %]
+      <b>comment</b> when changing the status of [% terms.abug %] from
+      [%+ old.name FILTER html %] to [% new.name FILTER html %].
+    [% ELSIF new %]
+      description for this [% terms.bug %].
     [% ELSE %]
-      on this change.
+      <b>comment</b> on this change.
     [% END %]
-    Please explain your change.
 
   [% ELSIF error == "comment_too_long" %]
     [% title = "Comment Too Long" %]
@@ -298,12 +298,13 @@
 
   [% ELSIF error == "component_already_exists" %]
     [% title = "Component Already Exists" %]
-    A component with the name '[% name FILTER html %]' already exists.
+    The <em>[% product.name FILTER html %]</em> product already has
+    a component named <em>[% name FILTER html %]</em>.
 
   [% ELSIF error == "component_blank_description" %]
     [% title = "Blank Component Description Not Allowed" %]
-    You must enter a non-blank description for component '[% name FILTER html %]'.
-     
+    You must enter a non-blank description for this component.
+
   [% ELSIF error == "component_blank_name" %]
     [% title = "Blank Component Name Not Allowed" %]
     You must enter a name for this new component.
@@ -317,16 +318,11 @@
   [% ELSIF error == "component_name_too_long" %]
     [% title = "Component Name Is Too Long" %]
     The name of a component is limited to 64 characters. 
-    '[% name FILTER html %]' is too long ([% name.size %] characters).
+    '[% name FILTER html %]' is too long ([% name.length %] characters).
 
   [% ELSIF error == "component_need_initialowner" %]
     [% title = "Component Requires Default Assignee" %]
-    You must enter a default assignee for component '[% name FILTER html %]'.
-
-  [% ELSIF error == "component_not_valid" %]
-    [% title = "Specified Component Does Not Exist" %]
-    Product [% product FILTER html %] does not have a component
-    named [% name FILTER html %].
+    A default assignee is required for this component.
 
   [% ELSIF error == "customfield_nonexistent" %]
     [% title = "Unknown Custom Field" %]
@@ -346,9 +342,10 @@
     [% title = "Dependency Loop Detected" %]
     You can't make [% terms.abug %] block itself or depend on itself.
 
-  [% ELSIF error == "description_required" %]
-    [% title = "Description Required" %]
-    You must provide a description of the [% terms.bug %].
+  [% ELSIF error == "dupe_id_required" %]
+    [% title = "Duplicate $terms.Bug Id Required" %]
+    You must specify [% terms.abug %] id to mark this [% terms.bug %]
+    as a duplicate of.
 
   [% ELSIF error == "dupe_not_allowed" %]
     [% title = "Cannot mark $terms.bugs as duplicates" %]
@@ -592,6 +589,13 @@
     The sort key must be an integer between 0 and 32767 inclusive.
     It cannot be <em>[% sortkey FILTER html %]</em>.
 
+  [% ELSIF error == "freetext_too_long" %]
+    [% title = "Text Too Long" %]
+    The text you entered is too long ([% text.length FILTER html %] characters,
+    above the maximum length allowed of [% constants.MAX_FREETEXT_LENGTH FILTER none %]
+    characters):
+    <p><em>[% text FILTER html %]</em></p>
+
   [% ELSIF error == "group_cannot_delete" %]
     [% title = "Cannot Delete Group" %]
     The <em>[% name FILTER html %]</em> group cannot be deleted because
@@ -600,6 +604,12 @@
     in the database which refer to it. All references to this group must
     be removed before you can remove it.
 
+  [% ELSIF error == "group_change_denied" %]
+    [% title = "Cannot Add/Remove That Group" %]
+    You tried to add or remove group id [% group_id FILTER html %]
+    from [% terms.bug %] [%+ bug.id FILTER html %], but you do not
+    have permissions to do so.
+
   [% ELSIF error == "group_exists" %]
     [% title = "The group already exists" %]
     The group [% name FILTER html %] already exists.
@@ -618,6 +628,19 @@
     In order to delete this group, you first have to change the
     [%+ param FILTER html %] to make [% attr FILTER html %] point to another group.
 
+
+  [% ELSIF error == "group_invalid_removal" %]
+    You tried to remove [% terms.bug %] [%+ bug.id FILTER html %]
+    from group id [% group_id FILTER html %], but [% terms.bugs %] in the 
+    '[% product.name FILTER html %]' product can not be removed from that
+    group.
+    
+  [% ELSIF error == "group_invalid_restriction" %]
+    You tried to restrict [% terms.bug %] [%+ bug.id FILTER html %] to
+    to group id [% group_id FILTER html %], but [% terms.bugs %] in the
+    '[% product.name FILTER html %]' product can not be restricted to
+    that group.
+
   [% ELSIF error == "group_not_specified" %]
     [% title = "Group not specified" %]
     No group was specified.
@@ -653,8 +676,13 @@
 
   [% ELSIF error == "illegal_bug_status_transition" %]
     [% title = "Illegal $terms.Bug Status Change" %]
-    You are not allowed to change the [% terms.bug %] status from
-    [%+ old FILTER html %] to [% new FILTER html %].
+    [% IF old.defined %]
+      You are not allowed to change the [% terms.bug %] status from
+      [%+ old.name FILTER html %] to [% new.name FILTER html %].
+    [% ELSE %]
+      You are not allowed to file new [% terms.bugs %] with the
+      [%+ new.name FILTER html %] status. 
+    [% END %]
 
   [% ELSIF error == "illegal_change" %]
     [% title = "Not allowed" %]
@@ -737,6 +765,13 @@
     [% docslinks = {'reporting.html' => 'Reporting'} %]
     You are not authorized to edit this series. To do this, you must either
     be its creator, or an administrator.
+
+  [% ELSIF error == "illegal_time" %]
+    [% title = "Illegal Time" %]
+    '<tt>[% time FILTER html %]</tt>' is not a legal time.
+    [% IF format %]
+      Please use the format '<tt>[% format FILTER html %]</tt>'.
+    [% END %]
         
   [% ELSIF error == "insufficient_data_points" %]
     [% docslinks = {'reporting.html' => 'Reporting'} %]
@@ -895,9 +930,9 @@
     [% title = "Default milestone not deletable" %]
     [% admindocslinks = {'products.html' => 'Administering products',
                          'milestones.html' => 'About Milestones'} %]
-    Sorry, but [% milestone.name FILTER html %] is the default milestone 
-    for product '[% product.name FILTER html %]', and so it can not be 
-    deleted.
+    Sorry, but [% milestone.name FILTER html %] is the default milestone
+    for the '[% milestone.product.name FILTER html %]' product, and so
+    it cannot be deleted.
 
   [% ELSIF error == "milestone_name_too_long" %]
     [% title = "Milestone Name Is Too Long" %]
@@ -907,15 +942,15 @@
   [% ELSIF error == "milestone_required" %]
     [% title = "Milestone Required" %]
     You must determine a target milestone for [% terms.bug %] 
-    [%+ bug_id FILTER html %]
+    [%+ bug.id FILTER html %]
     if you are going to accept it.  Part of accepting 
     [%+ terms.abug %] is giving an estimate of when it will be fixed.
 
   [% ELSIF error == "milestone_sortkey_invalid" %]
     [% title = "Invalid Milestone Sortkey" %]
-    The sortkey '[% sortkey FILTER html %]' for milestone '
-    [% name FILTER html %]' is not in the range -32768 &le; sortkey
-    &le; 32767.
+    The sortkey '[% sortkey FILTER html %]' is not in the range
+    [%+ constants.MIN_SMALLINT FILTER html %] &le; sortkey &le;
+    [%+ constants.MAX_SMALLINT FILTER html %].
 
   [% ELSIF error == "misarranged_dates" %]
     [% title = "Misarranged Dates" %]
@@ -1248,7 +1283,7 @@
     create the milestone '[% defaultmilestone FILTER html %]'</a> before
     it can be made the default milestone for product '[% product FILTER html %]'.
 
-  [% ELSIF error == "product_access_denied" %]
+  [% ELSIF error == "product_admin_denied" %]
     [% title = "Product Access Denied" %]
     You are not allowed to edit properties of product '[% product FILTER html %]'.
 
@@ -1346,6 +1381,10 @@
     [% title = "Summary Needed" %]
     You must enter a summary for this [% terms.bug %].
 
+  [% ELSIF error == "resolution_cant_clear" %]
+    [% terms.Bug %] [%+ bug_id FILTER bug_link(bug_id) FILTER none %] is 
+    closed, so you cannot clear its resolution.
+
   [% ELSIF error == "resolution_not_allowed" %]
     [% title = "Resolution Not Allowed" %]
     You cannot set a resolution for open [% terms.bugs %].
@@ -1620,9 +1659,13 @@
 [% BLOCK object_name %]
   [% IF class == "Bugzilla::User" %]
     user
+  [% ELSIF class == "Bugzilla::Component" %]
+    component
   [% ELSIF class == "Bugzilla::Version" %]
     version
   [% ELSIF class == "Bugzilla::Milestone" %]
     milestone
+  [% ELSIF class == "Bugzilla::Status" %]
+    status
   [% END %]
 [% END %]
diff --git a/template/en/default/list/CVS/Entries b/template/en/default/list/CVS/Entries
index f5f3e1f677afd70914b57e11d6fee7494d35bfba..7fcbdc62308b4cbe77284d082994ed5a1e21e946 100644
--- a/template/en/default/list/CVS/Entries
+++ b/template/en/default/list/CVS/Entries
@@ -1,13 +1,13 @@
-/change-columns.html.tmpl/1.15/Mon Aug 20 18:25:05 2007//TBUGZILLA-3_1_2
-/edit-multiple.html.tmpl/1.46/Mon Sep 10 12:53:33 2007//TBUGZILLA-3_1_2
-/list-simple.html.tmpl/1.12/Mon Aug 20 18:25:05 2007//TBUGZILLA-3_1_2
-/list.atom.tmpl/1.5/Mon Aug 20 18:25:05 2007//TBUGZILLA-3_1_2
-/list.csv.tmpl/1.7/Mon Aug 20 18:25:05 2007//TBUGZILLA-3_1_2
-/list.html.tmpl/1.55/Mon Aug 20 18:25:05 2007//TBUGZILLA-3_1_2
-/list.ics.tmpl/1.8/Mon Aug 20 18:25:05 2007//TBUGZILLA-3_1_2
-/list.js.tmpl/1.3/Mon Aug 20 18:25:05 2007//TBUGZILLA-3_1_2
-/list.rdf.tmpl/1.7/Mon Aug 20 18:25:05 2007//TBUGZILLA-3_1_2
-/quips.html.tmpl/1.21/Mon Aug 20 18:25:05 2007//TBUGZILLA-3_1_2
-/server-push.html.tmpl/1.7/Mon Aug 20 18:25:05 2007//TBUGZILLA-3_1_2
-/table.html.tmpl/1.37/Fri Aug 24 06:47:52 2007//TBUGZILLA-3_1_2
+/change-columns.html.tmpl/1.15/Mon Aug 20 18:25:05 2007//TBUGZILLA-3_1_3
+/edit-multiple.html.tmpl/1.47/Fri Jan  4 00:20:42 2008//TBUGZILLA-3_1_3
+/list-simple.html.tmpl/1.12/Mon Aug 20 18:25:05 2007//TBUGZILLA-3_1_3
+/list.atom.tmpl/1.5/Mon Aug 20 18:25:05 2007//TBUGZILLA-3_1_3
+/list.csv.tmpl/1.7/Mon Aug 20 18:25:05 2007//TBUGZILLA-3_1_3
+/list.html.tmpl/1.59/Sat Jan 12 14:26:26 2008//TBUGZILLA-3_1_3
+/list.ics.tmpl/1.9/Sun Oct  7 23:18:44 2007//TBUGZILLA-3_1_3
+/list.js.tmpl/1.3/Mon Aug 20 18:25:05 2007//TBUGZILLA-3_1_3
+/list.rdf.tmpl/1.7/Mon Aug 20 18:25:05 2007//TBUGZILLA-3_1_3
+/quips.html.tmpl/1.22/Sun Oct  7 23:18:44 2007//TBUGZILLA-3_1_3
+/server-push.html.tmpl/1.7/Mon Aug 20 18:25:05 2007//TBUGZILLA-3_1_3
+/table.html.tmpl/1.39/Sat Jan 12 14:26:26 2008//TBUGZILLA-3_1_3
 D
diff --git a/template/en/default/list/CVS/Tag b/template/en/default/list/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/template/en/default/list/CVS/Tag
+++ b/template/en/default/list/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/template/en/default/list/edit-multiple.html.tmpl b/template/en/default/list/edit-multiple.html.tmpl
index f19410ab8c1038d22ab4f11e613726a303fdfdc0..9aa110359e8c653df4a966781b2d919ff8bddff1 100644
--- a/template/en/default/list/edit-multiple.html.tmpl
+++ b/template/en/default/list/edit-multiple.html.tmpl
@@ -140,6 +140,15 @@
                value="[% dontchange FILTER html %]"
                size="6">
       </td>
+      <th><label for="deadline">Deadline (YYYY-MM-DD):</label></th>
+      <td>
+        <input id="deadline"
+               name="deadline"
+               value="[% dontchange FILTER html %]"
+               size="10">
+      </td>
+    </tr>
+    <tr>
       <th><label for="remaining_time">Remaining Hours:</label></th>
       <td>
         <input id="remaining_time"
@@ -147,6 +156,8 @@
                value="[% dontchange FILTER html %]"
                size="6">
       </td>
+      <th>&nbsp;</th>
+      <td>&nbsp;</td>
     </tr>
   [% END %]
 
diff --git a/template/en/default/list/list.html.tmpl b/template/en/default/list/list.html.tmpl
index 23c1b6e14d0af0b13838dd396fd096f34cb29243..0a8eb402cd59860a037e283078aae41a35e8afd0 100644
--- a/template/en/default/list/list.html.tmpl
+++ b/template/en/default/list/list.html.tmpl
@@ -35,9 +35,7 @@
   [% title = title _ ": " _ (searchname OR defaultsavename) FILTER html %]
 [% END %]
 
-[% style_urls = [ "skins/standard/buglist.css" ] %]
 [% qorder = order FILTER url_quote IF order %]
-[% message = "buglist_sorted_by_relevance" IF sorted_by_relevance %]
 
 
 [%############################################################################%]
@@ -48,7 +46,10 @@
   title = title
   style = style
   atomlink = "buglist.cgi?$urlquerypart&title=$title&ctype=atom" 
-  javascript_urls = [ "js/util.js", "js/keyword-chooser.js" ]
+  javascript_urls = [ "js/util.js", "js/keyword-chooser.js", "js/field.js",
+                      "js/yui/yahoo-dom-event.js", "js/yui/calendar.js" ]
+  style_urls = [ "skins/standard/buglist.css", "skins/standard/yui/calendar.css" ]
+  doc_section = "query.html#list"
 %]
 
 <div class="bz_query_head" align="center">
diff --git a/template/en/default/list/list.ics.tmpl b/template/en/default/list/list.ics.tmpl
index 02444472afc81e6ce2163806c459b403198dcc9c..f8953d99663d26653e1aabe625541e8b9b0993c9 100644
--- a/template/en/default/list/list.ics.tmpl
+++ b/template/en/default/list/list.ics.tmpl
@@ -57,11 +57,11 @@ END:VCALENDAR
 [% END %]
 
 [% BLOCK ics_uid %]
-  [% "${bug_id}@${base_url}" FILTER uri FILTER ics('UID') %]
+  [% "${bug_id}@${base_url}" FILTER url_quote FILTER ics('UID') %]
 [% END %]
 
 [% BLOCK ics_url %]
-  [% "${base_url}show_bug.cgi?id=${bug_id}" FILTER uri FILTER ics('URL;VALUE=URI') %]
+  [% "${base_url}show_bug.cgi?id=${bug_id}" FILTER url_quote FILTER ics('URL;VALUE=URI') %]
 [% END %]
 
 [% BLOCK ics_dtstart %]
diff --git a/template/en/default/list/quips.html.tmpl b/template/en/default/list/quips.html.tmpl
index e730e7cce7233863d40791c6a2470f7936cffa1c..14cecb26ee65e07c26f7a90dcf1d11de7aa11f08 100644
--- a/template/en/default/list/quips.html.tmpl
+++ b/template/en/default/list/quips.html.tmpl
@@ -119,13 +119,13 @@
               [% "Unknown" IF NOT users.$userid %]
             </td>
             <td>
-              <a href="quips.cgi?action=delete&amp;quipid=[% quipid FILTER uri%]">
+              <a href="quips.cgi?action=delete&amp;quipid=[% quipid FILTER url_quote %]">
                 Delete
               </a>
             </td>
             <td>
-              <input type="checkbox" name="quipid_[% quipid FILTER uri%]"
-                     id="quipid_[% quipid FILTER uri%]"
+              <input type="checkbox" name="quipid_[% quipid FILTER html %]"
+                     id="quipid_[% quipid FILTER html %]"
                      [%- ' checked="checked"' IF quips.$quipid.approved %]>
             </td>
           </tr>
diff --git a/template/en/default/list/table.html.tmpl b/template/en/default/list/table.html.tmpl
index 8941eb515af8933aa2228413f08b849a132d964b..47d2e4643fbdd5549913af4c02ce455525fd7794 100644
--- a/template/en/default/list/table.html.tmpl
+++ b/template/en/default/list/table.html.tmpl
@@ -85,14 +85,14 @@
       <th>&nbsp;</th>
       [% END %]
       <th colspan="[% splitheader ? 2 : 1 %]" class="first-child">
-        [% IF sorted_by_relevance %]
-          ID
-        [% ELSE %]
-          <a href="buglist.cgi?
-                    [% urlquerypart FILTER html %]&amp;order=bugs.bug_id
-                    [%-#%]&amp;query_based_on=
-                    [% defaultsavename OR searchname FILTER url_quote %]">ID</a>
+        [% desc = '' %]
+        [% IF (om = order.match("^bugs\.bug_id( desc)?")) %]
+          [% desc = ' desc' IF NOT om.0 %]
         [% END %]
+        <a href="buglist.cgi?
+                  [% urlquerypart FILTER html %]&amp;order=bugs.bug_id[% desc FILTER url_quote %]
+                  [%-#%]&amp;query_based_on=
+                  [% defaultsavename OR searchname FILTER url_quote %]">ID</a>
       </th>
 
       [% IF splitheader %]
@@ -129,23 +129,24 @@
 
 [% BLOCK columnheader %]
   <th colspan="[% splitheader ? 2 : 1 %]">
-    [% IF sorted_by_relevance %]
-      [%- abbrev.$id.title || field_descs.$id || column.title -%]
+    [% IF column.name.match('\s+AS\s+') %]
+      [%# For aliased columns, use their ID for sorting. %]
+      [% column.sortalias = id %]
     [% ELSE %]
-      [% IF column.name.match('\s+AS\s+') %]
-        [%# For aliased columns, use their ID for sorting. %]
-        [% column.sortalias = id %]
-      [% ELSE %]
-        [%# Other columns may sort on their name directly. %]
-        [% column.sortalias = column.name %]
-      [% END %]
-      <a href="buglist.cgi?[% urlquerypart FILTER html %]&amp;order=
-        [% column.sortalias FILTER url_quote %]
-        [% ",$order" FILTER url_quote IF order %]
-        [%-#%]&amp;query_based_on=
-        [% defaultsavename OR searchname FILTER url_quote %]">
-          [%- abbrev.$id.title || field_descs.$id || column.title -%]</a>
+      [%# Other columns may sort on their name directly. %]
+      [% column.sortalias = column.name %]
+    [% END %]
+    [% desc = '' %]
+    [% IF (om = order.match("$column.sortalias( desc)?")) %]
+      [% desc = ' desc' IF NOT om.0 %]
     [% END %]
+    [% order = order.remove("$column.sortalias( desc)?,?") %]
+    <a href="buglist.cgi?[% urlquerypart FILTER html %]&amp;order=
+      [% column.sortalias FILTER url_quote %][% desc FILTER url_quote %]
+      [% ",$order" FILTER url_quote IF order %]
+      [%-#%]&amp;query_based_on=
+      [% defaultsavename OR searchname FILTER url_quote %]">
+        [%- abbrev.$id.title || field_descs.$id || column.title -%]</a>
   </th>
 [% END %]
 
diff --git a/template/en/default/pages/CVS/Entries b/template/en/default/pages/CVS/Entries
index 315ab0db9e23d11746536d1890e4300cb281593e..d8232e21f2c6fb17471a3b4621c42ea899c9d1b4 100644
--- a/template/en/default/pages/CVS/Entries
+++ b/template/en/default/pages/CVS/Entries
@@ -1,10 +1,10 @@
-/bug-writing.html.tmpl/1.9/Mon Aug 20 18:25:05 2007//TBUGZILLA-3_1_2
-/fields.html.tmpl/1.11/Mon Aug 20 18:25:05 2007//TBUGZILLA-3_1_2
-/linked.html.tmpl/1.9/Mon Aug 20 18:25:05 2007//TBUGZILLA-3_1_2
-/linkify.html.tmpl/1.9/Mon Aug 20 18:25:05 2007//TBUGZILLA-3_1_2
-/quicksearch.html.tmpl/1.3/Mon Aug 20 18:25:05 2007//TBUGZILLA-3_1_2
-/quicksearchhack.html.tmpl/1.6/Mon Aug 20 18:25:05 2007//TBUGZILLA-3_1_2
-/release-notes.html.tmpl/1.12/Tue Sep 18 21:24:59 2007//TBUGZILLA-3_1_2
-/sudo.html.tmpl/1.2/Mon Aug 20 18:25:05 2007//TBUGZILLA-3_1_2
-/voting.html.tmpl/1.4/Mon Aug 20 18:25:05 2007//TBUGZILLA-3_1_2
+/bug-writing.html.tmpl/1.9/Mon Aug 20 18:25:05 2007//TBUGZILLA-3_1_3
+/fields.html.tmpl/1.11/Mon Aug 20 18:25:05 2007//TBUGZILLA-3_1_3
+/linked.html.tmpl/1.9/Mon Aug 20 18:25:05 2007//TBUGZILLA-3_1_3
+/linkify.html.tmpl/1.9/Mon Aug 20 18:25:05 2007//TBUGZILLA-3_1_3
+/quicksearch.html.tmpl/1.3/Mon Aug 20 18:25:05 2007//TBUGZILLA-3_1_3
+/quicksearchhack.html.tmpl/1.7/Sun Dec  2 23:12:10 2007//TBUGZILLA-3_1_3
+/release-notes.html.tmpl/1.14/Wed Jan  9 06:45:09 2008//TBUGZILLA-3_1_3
+/sudo.html.tmpl/1.2/Mon Aug 20 18:25:05 2007//TBUGZILLA-3_1_3
+/voting.html.tmpl/1.4/Mon Aug 20 18:25:05 2007//TBUGZILLA-3_1_3
 D
diff --git a/template/en/default/pages/CVS/Tag b/template/en/default/pages/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/template/en/default/pages/CVS/Tag
+++ b/template/en/default/pages/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/template/en/default/pages/quicksearchhack.html.tmpl b/template/en/default/pages/quicksearchhack.html.tmpl
index 565e530138b1c0cfbc11b35abbfaacb9a36a296c..4d96f5d05a5cf9bc4c49c51f1d6e4990d485a6e7 100644
--- a/template/en/default/pages/quicksearchhack.html.tmpl
+++ b/template/en/default/pages/quicksearchhack.html.tmpl
@@ -293,7 +293,17 @@
   <td><tt>attachmimetype</tt></td>
   <td>Attachment mime-type <i>(&ldquo;attachments.mimetype&rdquo;)</i></td>
 </tr>
-
+<tr>
+  <td>&nbsp;</td>
+  <td>&nbsp;</td>
+  <td><tt>votes</tt></td>
+  <td>&nbsp;</td>
+  <td>
+    Number of votes<br>
+    (votes:<i>N</i> and votes&gt;=<i>N</i> mean "at least N votes",
+    votes&gt;<i>N</i> means "more than N votes")
+  </td>
+</tr>
 </table>
 
 <p>
@@ -330,19 +340,6 @@
   <td><b>:</b><i>area</i></td>
   <td><b>product,component:</b><i>area</i></td>
 </tr>
-<!--
-<tr>
-  <td><tt>:browser</tt></td>
-  <td><i>[% terms.bugs %] in the Browser product</i></td>
-</tr>
- <td><tt>:mail</tt></td>
-  <td><i>[% terms.bugs %] in the MailNews product</td>
-</tr>
-<tr>
-  <td><tt>:xbl</tt></td>
-  <td><i>[% terms.bugs %] in the XBL component</i></td>
-</tr>
-  -->
 <tr>
   <td><i>sev</i></td>
   <td><b>severity:</b><i>sev</i></td>
@@ -371,30 +368,10 @@
   <td><b>@</b><i>assignee</i></td>
   <td><b>assignedto:</b><i>assignee</i></td>
 </tr>
-<!--
-<tr>
-  <td><tt>@nobody</tt></td>
-  <td><i>assigneeless [% terms.bugs %]</i></td>
-</tr>
-<tr>
-  <td><tt>@mozilla.org</tt></td>
-  <td><i>[% terms.bugs %] assigned to mozilla.org members</i></td>
-</tr>
-  -->
 <tr>
   <td><b>!</b><i>keyword</i></td>
   <td><b>keywords:</b><i>keyword</i></td>
 </tr>
-<!--
-<tr>
-  <td><tt>!crash</tt></td>
-  <td><i>crasher [% terms.bugs %]</i></td>
-</tr>
-<tr>
-  <td><tt>!helpwanted</tt></td>
-  <td><i>[% terms.bugs %] waiting for your help</i></td>
-</tr>
-  -->
 <tr>
   <td><i>flag</i><b>?</b><i>requestee</i></td>
   <td><b>flag:</b><i>flag?</i> <b>requestee:</b><i>requestee</i></td>
diff --git a/template/en/default/pages/release-notes.html.tmpl b/template/en/default/pages/release-notes.html.tmpl
index 461d7243f764abdeec0189a37dabbc38af987db0..d6ed45fc50f0ca86c5a230903328622393deeb40 100644
--- a/template/en/default/pages/release-notes.html.tmpl
+++ b/template/en/default/pages/release-notes.html.tmpl
@@ -19,7 +19,7 @@
 
 [% PROCESS global/variables.none.tmpl %]
 [% INCLUDE global/header.html.tmpl 
-  title = "$terms.Bugzilla 3.0.2 Release Notes" 
+  title = "$terms.Bugzilla 3.0.3 Release Notes" 
   style_urls = ['skins/standard/release-notes.css'] 
 %]
 
@@ -60,6 +60,42 @@
   <em>everything</em> that's changed in each version, you should use our
   <a href="http://www.bugzilla.org/status/changes.html">Change Log Page</a>.</p>
 
+<h3>3.0.3</h3>
+
+<ul>
+  <li>mod_perl no longer compiles [% terms.Bugzilla %]'s code for each Apache
+    process individually. It now compiles code only once and shares it among
+    each Apache process. This greatly improves performance and highly 
+    decreases the memory footprint.
+   (<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=398241">[% terms.Bug %] 398241</a>)</li>
+
+  <li>You can now search for '---' (without quotes) in versions and milestones.
+    (<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=362436">[% terms.Bug %] 362436</a>)</li>
+
+  <li>[% terms.Bugzilla %] should no longer break lines unnecessarily in 
+    email subjects. This was causing trouble with some email clients.
+    (<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=374424">[% terms.Bug %] 374424</a>)</li>
+
+  <li>If you had selected "I'm added to or removed from this capacity" option
+    for the "CC" role in your email preferences, you wouldn't get mail when
+    more than one person was added to the CC list at once.
+    (<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=394796">[% terms.Bug %] 394796</a>)</li>
+
+  <li>Deleting a user account no longer deletes whines from another user who
+    has the deleted account as addressee. The schedule is simply removed, 
+    but the whine itself is left intact.
+    (<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=395924">[% terms.Bug %] 395924</a>)</li>
+
+  <li><kbd>contrib/merge-users.pl</kbd> now correctly merges all required
+    fields when merging two user accounts.
+    (<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=400160">[% terms.Bug %] 400160</a>)</li>
+
+  <li>[% terms.Bugzilla %] no longer requires Apache::DBI to run under 
+    mod_perl. It caused troubles such as lost connections with the DB and
+    didn't give any important performance gain.
+    (<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=408766">[% terms.Bug %] 408766</a>)</li>
+</ul>
+
 <h3>3.0.2</h3>
 
 <ul>
@@ -575,6 +611,10 @@
 
 <h2><a name="v30_security"></a>Security Updates in This Release</h2>
 
+<h3>3.0.3</h3>
+
+<p>No security fixes in this release.</p>
+
 <h3>3.0.2</h3>
 
 <p>[% terms.Bugzilla %] 3.0.1 had an important security fix that is
diff --git a/template/en/default/reports/CVS/Entries b/template/en/default/reports/CVS/Entries
index fb699f0847431b476dbe534bad6b33f0a6aa7f13..fceac866ab3828f5b2bad7e3fc4c0727ee2f8a6b 100644
--- a/template/en/default/reports/CVS/Entries
+++ b/template/en/default/reports/CVS/Entries
@@ -1,24 +1,24 @@
-/chart.csv.tmpl/1.3/Mon Aug 20 18:25:06 2007//TBUGZILLA-3_1_2
-/chart.html.tmpl/1.4/Mon Aug 20 18:25:06 2007//TBUGZILLA-3_1_2
-/chart.png.tmpl/1.6/Mon Aug 20 18:25:06 2007//TBUGZILLA-3_1_2
-/components.html.tmpl/1.13/Mon Aug 20 18:25:06 2007//TBUGZILLA-3_1_2
-/create-chart.html.tmpl/1.16/Mon Aug 20 18:25:06 2007//TBUGZILLA-3_1_2
-/duplicates-simple.html.tmpl/1.5/Mon Aug 20 18:25:06 2007//TBUGZILLA-3_1_2
-/duplicates-table.html.tmpl/1.14/Mon Aug 20 18:25:06 2007//TBUGZILLA-3_1_2
-/duplicates.html.tmpl/1.18/Mon Aug 20 18:25:06 2007//TBUGZILLA-3_1_2
-/duplicates.rdf.tmpl/1.4/Mon Aug 20 18:25:06 2007//TBUGZILLA-3_1_2
-/edit-series.html.tmpl/1.7/Mon Aug 20 18:25:06 2007//TBUGZILLA-3_1_2
-/keywords.html.tmpl/1.10/Mon Aug 20 18:25:06 2007//TBUGZILLA-3_1_2
-/menu.html.tmpl/1.8/Mon Aug 20 18:25:06 2007//TBUGZILLA-3_1_2
-/old-charts.html.tmpl/1.2/Mon Aug 20 18:25:06 2007//TBUGZILLA-3_1_2
-/report-bar.png.tmpl/1.8/Mon Aug 20 18:25:06 2007//TBUGZILLA-3_1_2
-/report-line.png.tmpl/1.9/Mon Aug 20 18:25:06 2007//TBUGZILLA-3_1_2
-/report-pie.png.tmpl/1.7/Mon Aug 20 18:25:06 2007//TBUGZILLA-3_1_2
-/report-simple.html.tmpl/1.3/Mon Aug 20 18:25:06 2007//TBUGZILLA-3_1_2
-/report-table.csv.tmpl/1.11/Mon Aug 20 18:25:06 2007//TBUGZILLA-3_1_2
-/report-table.html.tmpl/1.16/Mon Aug 20 18:25:06 2007//TBUGZILLA-3_1_2
-/report.csv.tmpl/1.3/Mon Aug 20 18:25:06 2007//TBUGZILLA-3_1_2
-/report.html.tmpl/1.14/Mon Aug 20 18:25:06 2007//TBUGZILLA-3_1_2
-/series-common.html.tmpl/1.5/Mon Aug 20 18:25:06 2007//TBUGZILLA-3_1_2
-/series.html.tmpl/1.9/Mon Aug 20 18:25:06 2007//TBUGZILLA-3_1_2
+/chart.csv.tmpl/1.3/Mon Aug 20 18:25:06 2007//TBUGZILLA-3_1_3
+/chart.html.tmpl/1.4/Mon Aug 20 18:25:06 2007//TBUGZILLA-3_1_3
+/chart.png.tmpl/1.6/Mon Aug 20 18:25:06 2007//TBUGZILLA-3_1_3
+/components.html.tmpl/1.13/Mon Aug 20 18:25:06 2007//TBUGZILLA-3_1_3
+/create-chart.html.tmpl/1.16/Mon Aug 20 18:25:06 2007//TBUGZILLA-3_1_3
+/duplicates-simple.html.tmpl/1.5/Mon Aug 20 18:25:06 2007//TBUGZILLA-3_1_3
+/duplicates-table.html.tmpl/1.14/Mon Aug 20 18:25:06 2007//TBUGZILLA-3_1_3
+/duplicates.html.tmpl/1.18/Mon Aug 20 18:25:06 2007//TBUGZILLA-3_1_3
+/duplicates.rdf.tmpl/1.4/Mon Aug 20 18:25:06 2007//TBUGZILLA-3_1_3
+/edit-series.html.tmpl/1.7/Mon Aug 20 18:25:06 2007//TBUGZILLA-3_1_3
+/keywords.html.tmpl/1.10/Mon Aug 20 18:25:06 2007//TBUGZILLA-3_1_3
+/menu.html.tmpl/1.9/Sun Nov 11 22:03:19 2007//TBUGZILLA-3_1_3
+/old-charts.html.tmpl/1.3/Sun Nov 11 22:03:19 2007//TBUGZILLA-3_1_3
+/report-bar.png.tmpl/1.8/Mon Aug 20 18:25:06 2007//TBUGZILLA-3_1_3
+/report-line.png.tmpl/1.9/Mon Aug 20 18:25:06 2007//TBUGZILLA-3_1_3
+/report-pie.png.tmpl/1.7/Mon Aug 20 18:25:06 2007//TBUGZILLA-3_1_3
+/report-simple.html.tmpl/1.3/Mon Aug 20 18:25:06 2007//TBUGZILLA-3_1_3
+/report-table.csv.tmpl/1.11/Mon Aug 20 18:25:06 2007//TBUGZILLA-3_1_3
+/report-table.html.tmpl/1.16/Mon Aug 20 18:25:06 2007//TBUGZILLA-3_1_3
+/report.csv.tmpl/1.3/Mon Aug 20 18:25:06 2007//TBUGZILLA-3_1_3
+/report.html.tmpl/1.14/Mon Aug 20 18:25:06 2007//TBUGZILLA-3_1_3
+/series-common.html.tmpl/1.5/Mon Aug 20 18:25:06 2007//TBUGZILLA-3_1_3
+/series.html.tmpl/1.9/Mon Aug 20 18:25:06 2007//TBUGZILLA-3_1_3
 D
diff --git a/template/en/default/reports/CVS/Tag b/template/en/default/reports/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/template/en/default/reports/CVS/Tag
+++ b/template/en/default/reports/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/template/en/default/reports/menu.html.tmpl b/template/en/default/reports/menu.html.tmpl
index 38dd3d4ee4d79b5146f36a820da3522831123e70..db5b192939f8fd7de4d631043234ec0fef982fa5 100644
--- a/template/en/default/reports/menu.html.tmpl
+++ b/template/en/default/reports/menu.html.tmpl
@@ -27,6 +27,7 @@
 
 [% PROCESS global/header.html.tmpl
   title = "Reporting and Charting Kitchen"
+  doc_section = "reporting.html"
 %]
 
 <p>
diff --git a/template/en/default/reports/old-charts.html.tmpl b/template/en/default/reports/old-charts.html.tmpl
index ed5b708efcba06189e6b892e3687dd7b48c65d71..ca3ba6c7d1ed3d329dd5233650a1fd3951411ec2 100644
--- a/template/en/default/reports/old-charts.html.tmpl
+++ b/template/en/default/reports/old-charts.html.tmpl
@@ -21,8 +21,11 @@
 
 [% PROCESS "global/field-descs.none.tmpl" %]
 
-[% PROCESS global/header.html.tmpl title = "$terms.Bug Charts"
-                                   h1 = "Welcome to the $terms.Bugzilla Charting Kitchen" %]
+[% PROCESS global/header.html.tmpl
+  title = "$terms.Bug Charts"
+  h1 = "Welcome to the $terms.Bugzilla Charting Kitchen"
+  doc_section = "reporting.html#charts"
+%]
 
 <div align="center">
   [% IF url_image %]
diff --git a/template/en/default/request/CVS/Entries b/template/en/default/request/CVS/Entries
index 21166ef2559b9f9b62812c1facaf3c00730a9b9c..6d1157e028c7e01908b42a78ce76b85011dd5a90 100644
--- a/template/en/default/request/CVS/Entries
+++ b/template/en/default/request/CVS/Entries
@@ -1,3 +1,3 @@
-/email.txt.tmpl/1.20/Wed Aug 29 21:10:09 2007//TBUGZILLA-3_1_2
-/queue.html.tmpl/1.19/Mon Aug 20 18:25:07 2007//TBUGZILLA-3_1_2
+/email.txt.tmpl/1.20/Wed Aug 29 21:10:09 2007//TBUGZILLA-3_1_3
+/queue.html.tmpl/1.19/Mon Aug 20 18:25:07 2007//TBUGZILLA-3_1_3
 D
diff --git a/template/en/default/request/CVS/Tag b/template/en/default/request/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/template/en/default/request/CVS/Tag
+++ b/template/en/default/request/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/template/en/default/search/CVS/Entries b/template/en/default/search/CVS/Entries
index d4746cdb28fa1b32fb1fe63aa2794e6c732d4762..7f64e072b316387ce867062b44631dba711ea351 100644
--- a/template/en/default/search/CVS/Entries
+++ b/template/en/default/search/CVS/Entries
@@ -1,13 +1,13 @@
-/boolean-charts.html.tmpl/1.16/Mon Aug 20 18:25:07 2007//TBUGZILLA-3_1_2
-/form.html.tmpl/1.50/Mon Aug 20 18:25:07 2007//TBUGZILLA-3_1_2
-/knob.html.tmpl/1.21/Mon Aug 20 18:25:07 2007//TBUGZILLA-3_1_2
-/search-advanced.html.tmpl/1.31/Mon Aug 20 18:25:07 2007//TBUGZILLA-3_1_2
-/search-create-series.html.tmpl/1.13/Mon Aug 20 18:25:07 2007//TBUGZILLA-3_1_2
-/search-help.html.tmpl/1.10/Mon Aug 20 18:25:07 2007//TBUGZILLA-3_1_2
-/search-plugin.xml.tmpl/1.4/Mon Aug 20 18:25:07 2007//TBUGZILLA-3_1_2
-/search-report-graph.html.tmpl/1.11/Mon Aug 20 18:25:07 2007//TBUGZILLA-3_1_2
-/search-report-select.html.tmpl/1.7/Mon Aug 20 18:25:07 2007//TBUGZILLA-3_1_2
-/search-report-table.html.tmpl/1.12/Mon Aug 20 18:25:07 2007//TBUGZILLA-3_1_2
-/search-specific.html.tmpl/1.24/Mon Aug 20 18:25:07 2007//TBUGZILLA-3_1_2
-/tabs.html.tmpl/1.7/Mon Aug 20 18:25:07 2007//TBUGZILLA-3_1_2
+/boolean-charts.html.tmpl/1.16/Mon Aug 20 18:25:07 2007//TBUGZILLA-3_1_3
+/form.html.tmpl/1.51/Sat Sep 22 21:35:07 2007//TBUGZILLA-3_1_3
+/knob.html.tmpl/1.21/Mon Aug 20 18:25:07 2007//TBUGZILLA-3_1_3
+/search-advanced.html.tmpl/1.32/Sun Nov 11 22:03:21 2007//TBUGZILLA-3_1_3
+/search-create-series.html.tmpl/1.14/Sun Nov 11 22:03:21 2007//TBUGZILLA-3_1_3
+/search-help.html.tmpl/1.10/Mon Aug 20 18:25:07 2007//TBUGZILLA-3_1_3
+/search-plugin.xml.tmpl/1.4/Mon Aug 20 18:25:07 2007//TBUGZILLA-3_1_3
+/search-report-graph.html.tmpl/1.12/Sun Nov 11 22:03:21 2007//TBUGZILLA-3_1_3
+/search-report-select.html.tmpl/1.7/Mon Aug 20 18:25:07 2007//TBUGZILLA-3_1_3
+/search-report-table.html.tmpl/1.13/Sun Nov 11 22:03:21 2007//TBUGZILLA-3_1_3
+/search-specific.html.tmpl/1.24/Mon Aug 20 18:25:07 2007//TBUGZILLA-3_1_3
+/tabs.html.tmpl/1.7/Mon Aug 20 18:25:07 2007//TBUGZILLA-3_1_3
 D
diff --git a/template/en/default/search/CVS/Tag b/template/en/default/search/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/template/en/default/search/CVS/Tag
+++ b/template/en/default/search/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/template/en/default/search/form.html.tmpl b/template/en/default/search/form.html.tmpl
index 349160d15834f2c8f72002624b64896ba3b156f2..e9f2ba676dc2f3977ee98609080532911de38047 100644
--- a/template/en/default/search/form.html.tmpl
+++ b/template/en/default/search/form.html.tmpl
@@ -513,6 +513,7 @@ function doOnSelectProduct(selectmode) {
       [% FOREACH qv = [
         { name => "substring", description => "contains" },
         { name => "exact", description => "is" },
+        { name => "notequals", description => "is not" },
         { name => "regexp", description => "matches regexp" },
         { name => "notregexp", description => "doesn't match regexp" } ] %]
 
diff --git a/template/en/default/search/search-advanced.html.tmpl b/template/en/default/search/search-advanced.html.tmpl
index d489ea8ed6aa60286ecd86bdc349cb15149f06a3..1f1fd50ab8aeccdad8eab62b1cba79c65869bfd3 100644
--- a/template/en/default/search/search-advanced.html.tmpl
+++ b/template/en/default/search/search-advanced.html.tmpl
@@ -40,6 +40,7 @@ var queryform = "queryform"
   javascript = js_data
   javascript_urls = [ "js/productform.js" "js/util.js" "js/help.js" ]
   style_urls = [ "skins/standard/help.css" ]
+  doc_section = "query.html"
   style = "dl.bug_changes dt {
              margin-top: 15px;
            }"
diff --git a/template/en/default/search/search-create-series.html.tmpl b/template/en/default/search/search-create-series.html.tmpl
index f35270382b8a8a9eed73c37d81ef0ddb5df23f76..da1011e10c39f015ec117471c3eecb09e405ab1a 100644
--- a/template/en/default/search/search-create-series.html.tmpl
+++ b/template/en/default/search/search-create-series.html.tmpl
@@ -35,6 +35,7 @@
   onload = "doOnSelectProduct(0);"
   javascript = js_data 
   javascript_urls = [ "js/productform.js" ]
+  doc_section = "reporting.html#charts-new-series"
 %]
 
 <form method="get" action="chart.cgi" name="chartform">
diff --git a/template/en/default/search/search-report-graph.html.tmpl b/template/en/default/search/search-report-graph.html.tmpl
index 791fd02c52f6640890cdb0a5d473c42f0e335e4b..83b916631c1bad2d0dccf3ef12ad6e396fb54aea 100644
--- a/template/en/default/search/search-report-graph.html.tmpl
+++ b/template/en/default/search/search-report-graph.html.tmpl
@@ -34,6 +34,7 @@ var queryform = "reportform"
   onload = "doOnSelectProduct(0); chartTypeChanged()"
   javascript = js_data
   javascript_urls = [ "js/productform.js" ]
+  doc_section = "reporting.html#reports"
 %]
 
 [% PROCESS "search/search-report-select.html.tmpl" %]
diff --git a/template/en/default/search/search-report-table.html.tmpl b/template/en/default/search/search-report-table.html.tmpl
index 757ecbad12f87b55959fe3f346989c91b04cd60f..8c9f2512fb7996df3161c6e9d6c91d8d1ccee8a2 100644
--- a/template/en/default/search/search-report-table.html.tmpl
+++ b/template/en/default/search/search-report-table.html.tmpl
@@ -34,6 +34,7 @@ var queryform = "reportform"
   onload = "doOnSelectProduct(0)"
   javascript = js_data
   javascript_urls = [ "js/productform.js" ]
+  doc_section = "reporting.html#reports"
 %]
 
 [% PROCESS "search/search-report-select.html.tmpl" %]
diff --git a/template/en/default/setup/CVS/Entries b/template/en/default/setup/CVS/Entries
index f247b24a35130189e24cee0366614a441c3b40c4..8f05f548a5959669be00dd88617575d4eb547007 100644
--- a/template/en/default/setup/CVS/Entries
+++ b/template/en/default/setup/CVS/Entries
@@ -1,2 +1,2 @@
-/strings.txt.pl/1.3/Tue Mar 20 20:39:23 2007//TBUGZILLA-3_1_2
+/strings.txt.pl/1.8/Mon Jan 28 00:54:59 2008//TBUGZILLA-3_1_3
 D
diff --git a/template/en/default/setup/CVS/Tag b/template/en/default/setup/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/template/en/default/setup/CVS/Tag
+++ b/template/en/default/setup/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/template/en/default/setup/strings.txt.pl b/template/en/default/setup/strings.txt.pl
index 34e4478577081b49a0ca9fd3fa69ff02e7e4ddb3..51e1ac0597b1249957305e3ffd942ee92ecdc6be 100644
--- a/template/en/default/setup/strings.txt.pl
+++ b/template/en/default/setup/strings.txt.pl
@@ -33,12 +33,31 @@
     checking_dbd      => 'Checking available perl DBD modules...',
     checking_optional => 'The following Perl modules are optional:',
     checking_modules  => 'Checking perl modules...',
+    done => 'done.',
     header => "* This is Bugzilla ##bz_ver## on perl ##perl_ver##\n"
             . "* Running on ##os_name## ##os_ver##",
+    install_all => <<EOT,
+
+To attempt an automatic install of every required and optional module
+with one command, do:
+
+  ##perl## install-module.pl --all
+
+EOT
+    install_data_too_long => <<EOT,
+WARNING: Some of the data in the ##table##.##column## column is longer than
+its new length limit of ##max_length## characters. The data that needs to be
+fixed is printed below with the value of the ##id_column## column first and
+then the value of the ##column## column that needs to be fixed:
+
+EOT
+    install_module => 'Installing ##module## version ##version##...',
     module_found => "found v##ver##",
     module_not_found => "not found",
     module_ok => 'ok',
     module_unknown_version => "found unknown version",
+    template_precompile   => "Precompiling templates...",
+    template_removing_dir => "Removing existing compiled templates...",
 );
 
 1;
diff --git a/template/en/default/whine/CVS/Entries b/template/en/default/whine/CVS/Entries
index dee8565f8f0bceea59e1d22096d419b77d42a648..f223b52291ed133cb91f9810022dc39ce3c124d0 100644
--- a/template/en/default/whine/CVS/Entries
+++ b/template/en/default/whine/CVS/Entries
@@ -1,5 +1,5 @@
-/mail.html.tmpl/1.7/Mon Aug 20 18:25:09 2007//TBUGZILLA-3_1_2
-/mail.txt.tmpl/1.7/Mon Aug 20 18:25:09 2007//TBUGZILLA-3_1_2
-/multipart-mime.txt.tmpl/1.6/Mon Aug 20 18:25:09 2007//TBUGZILLA-3_1_2
-/schedule.html.tmpl/1.10/Mon Aug 20 18:25:09 2007//TBUGZILLA-3_1_2
+/mail.html.tmpl/1.7/Mon Aug 20 18:25:09 2007//TBUGZILLA-3_1_3
+/mail.txt.tmpl/1.7/Mon Aug 20 18:25:09 2007//TBUGZILLA-3_1_3
+/multipart-mime.txt.tmpl/1.6/Mon Aug 20 18:25:09 2007//TBUGZILLA-3_1_3
+/schedule.html.tmpl/1.11/Sun Nov 11 21:57:10 2007//TBUGZILLA-3_1_3
 D
diff --git a/template/en/default/whine/CVS/Tag b/template/en/default/whine/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/template/en/default/whine/CVS/Tag
+++ b/template/en/default/whine/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/template/en/default/whine/schedule.html.tmpl b/template/en/default/whine/schedule.html.tmpl
index d82c6813f8d4a934e52fd75d0db75d8737923d36..8cb120dfa23f602d945c5a167e37b0238665c6fb 100644
--- a/template/en/default/whine/schedule.html.tmpl
+++ b/template/en/default/whine/schedule.html.tmpl
@@ -35,7 +35,10 @@
 [% PROCESS global/variables.none.tmpl %]
 
 [% title = "Set up whining" %]
-[% PROCESS global/header.html.tmpl %]
+[% PROCESS global/header.html.tmpl
+  title = title
+  doc_section = "whining.html"
+%]
 
 <p>
   "Whining" is when [% terms.Bugzilla %] executes a saved query at a regular interval
diff --git a/template/en/extension/CVS/Entries b/template/en/extension/CVS/Entries
index 79ced1be8b44be5e3063245f031dbf4609c66772..0525d0afaad9e8de5d2ae01aac4543dd1e8d874d 100644
--- a/template/en/extension/CVS/Entries
+++ b/template/en/extension/CVS/Entries
@@ -1,2 +1,2 @@
-/filterexceptions.pl/1.2/Sat Feb 25 23:10:53 2006//TBUGZILLA-3_1_2
+/filterexceptions.pl/1.2/Sat Feb 25 23:10:53 2006//TBUGZILLA-3_1_3
 D
diff --git a/template/en/extension/CVS/Tag b/template/en/extension/CVS/Tag
index eebc89e143301fb7f0b233aacf08bddedf73186f..31d8633e2f2aba270fc0fec77fda99283c580eea 100644
--- a/template/en/extension/CVS/Tag
+++ b/template/en/extension/CVS/Tag
@@ -1 +1 @@
-NBUGZILLA-3_1_2
+NBUGZILLA-3_1_3
diff --git a/testserver.pl b/testserver.pl
index 6169a77e0db2f30213e38a25667848be7361366a..9b649277caa21a5fd196d413206a4429ee8c3fe9 100755
--- a/testserver.pl
+++ b/testserver.pl
@@ -19,7 +19,7 @@
 # issues as possible.
 
 use strict;
-use lib ".";
+use lib qw(. lib);
 
 BEGIN {
     my $envpath = $ENV{'PATH'};
diff --git a/token.cgi b/token.cgi
index dd41e466520e22c6e0a74a87590cac4edb04d3cf..cf6b3781166e60cfe480f664e8e33892fb122826 100755
--- a/token.cgi
+++ b/token.cgi
@@ -28,7 +28,7 @@
 # Make it harder for us to do dangerous things in Perl.
 use strict;
 
-use lib qw(.);
+use lib qw(. lib);
 
 use Bugzilla;
 use Bugzilla::Constants;
@@ -215,13 +215,13 @@ sub changePassword {
     
     # Update the user's password in the profiles table and delete the token
     # from the tokens table.
-    $dbh->bz_lock_tables('profiles WRITE', 'tokens WRITE');
+    $dbh->bz_start_transaction();
     $dbh->do(q{UPDATE   profiles
                SET      cryptpassword = ?
                WHERE    userid = ?},
              undef, ($cryptedpassword, $userid) );
     $dbh->do('DELETE FROM tokens WHERE token = ?', undef, $::token);
-    $dbh->bz_unlock_tables();
+    $dbh->bz_commit_transaction();
 
     Bugzilla->logout_user_by_id($userid);
 
@@ -265,7 +265,7 @@ sub changeEmail {
 
     # Update the user's login name in the profiles table and delete the token
     # from the tokens table.
-    $dbh->bz_lock_tables('profiles WRITE', 'tokens WRITE');
+    $dbh->bz_start_transaction();
     $dbh->do(q{UPDATE   profiles
                SET      login_name = ?
                WHERE    userid = ?},
@@ -273,7 +273,7 @@ sub changeEmail {
     $dbh->do('DELETE FROM tokens WHERE token = ?', undef, $::token);
     $dbh->do(q{DELETE FROM tokens WHERE userid = ?
                AND tokentype = 'emailnew'}, undef, $userid);
-    $dbh->bz_unlock_tables();
+    $dbh->bz_commit_transaction();
 
     # The email address has been changed, so we need to rederive the groups
     my $user = new Bugzilla::User($userid);
@@ -308,12 +308,10 @@ sub cancelChangeEmail {
         
         # check to see if it has been altered
         if($actualemail ne $old_email) {
-            $dbh->bz_lock_tables('profiles WRITE');
             $dbh->do(q{UPDATE   profiles
                        SET      login_name = ?
                        WHERE    userid = ?},
                      undef, ($old_email, $userid));
-            $dbh->bz_unlock_tables();
 
             # email has changed, so rederive groups
             # Note that this is done _after_ the tables are unlocked
@@ -335,11 +333,9 @@ sub cancelChangeEmail {
     $vars->{'new_email'} = $new_email;
     Bugzilla::Token::Cancel($::token, $vars->{'message'}, $vars);
 
-    $dbh->bz_lock_tables('tokens WRITE');
     $dbh->do(q{DELETE FROM tokens WHERE userid = ?
                AND tokentype = 'emailold' OR tokentype = 'emailnew'},
              undef, $userid);
-    $dbh->bz_unlock_tables();
 
     # Return HTTP response headers.
     print $cgi->header();
diff --git a/userprefs.cgi b/userprefs.cgi
index efe07921bec7f8735458d8295aa8d6b6c9b3b583..3880b9c38b9211e6d5061af95b745cab8639d629 100755
--- a/userprefs.cgi
+++ b/userprefs.cgi
@@ -24,7 +24,7 @@
 
 use strict;
 
-use lib qw(.);
+use lib qw(. lib);
 
 use Bugzilla;
 use Bugzilla::Constants;
@@ -255,7 +255,7 @@ sub SaveEmail {
     ###########################################################################
     # Role-based preferences
     ###########################################################################
-    $dbh->bz_lock_tables("email_setting WRITE");
+    $dbh->bz_start_transaction();
 
     # Delete all the user's current preferences
     $dbh->do("DELETE FROM email_setting WHERE user_id = ?", undef, $user->id);
@@ -302,7 +302,7 @@ sub SaveEmail {
         }
     }
 
-    $dbh->bz_unlock_tables();
+    $dbh->bz_commit_transaction();
 
     ###########################################################################
     # User watching
@@ -311,11 +311,7 @@ sub SaveEmail {
         && (defined $cgi->param('new_watchedusers')
             || defined $cgi->param('remove_watched_users'))) 
     {
-        # Just in case.  Note that this much locking is actually overkill:
-        # we don't really care if anyone reads the watch table.  So 
-        # some small amount of contention could be gotten rid of by
-        # using user-defined locks rather than table locking.
-        $dbh->bz_lock_tables('watch WRITE', 'profiles READ');
+        $dbh->bz_start_transaction();
 
         # Use this to protect error messages on duplicate submissions
         my $old_watch_ids =
@@ -356,7 +352,7 @@ sub SaveEmail {
             }
         }
 
-        $dbh->bz_unlock_tables();
+        $dbh->bz_commit_transaction();
     }
 }
 
@@ -507,7 +503,7 @@ my $cgi = Bugzilla->cgi;
 
 # This script needs direct access to the username and password CGI variables,
 # so we save them before their removal in Bugzilla->login, and delete them 
-# prior to login if we might possibly be in an sudo session.
+# before login in case we might be in a sudo session.
 my $bugzilla_login    = $cgi->param('Bugzilla_login');
 my $bugzilla_password = $cgi->param('Bugzilla_password');
 $cgi->delete('Bugzilla_login', 'Bugzilla_password') if ($cgi->cookie('sudo'));
diff --git a/votes.cgi b/votes.cgi
index 9805ae48ebf7bdc4c8aecf206f04dfb45ebf3b23..9dc728ef8a0f973eec2dfc7898e09ed25b7d626d 100755
--- a/votes.cgi
+++ b/votes.cgi
@@ -25,7 +25,7 @@
 #                 Frédéric Buclin <LpSolit@gmail.com>
 
 use strict;
-use lib ".";
+use lib qw(. lib);
 
 use Bugzilla;
 use Bugzilla::Constants;
@@ -130,9 +130,7 @@ sub show_user {
 
     my $canedit = (Bugzilla->params->{'usevotes'} && $userid == $who) ? 1 : 0;
 
-    $dbh->bz_lock_tables('bugs READ', 'products READ', 'votes WRITE',
-             'cc READ', 'bug_group_map READ', 'user_group_map READ',
-             'group_group_map READ', 'groups READ', 'group_control_map READ');
+    $dbh->bz_start_transaction();
 
     if ($canedit && $bug_id) {
         # Make sure there is an entry for this bug
@@ -197,7 +195,7 @@ sub show_user {
     }
 
     $dbh->do('DELETE FROM votes WHERE vote_count <= 0');
-    $dbh->bz_unlock_tables();
+    $dbh->bz_commit_transaction();
 
     $vars->{'canedit'} = $canedit;
     $vars->{'voting_user'} = { "login" => $name };
@@ -296,9 +294,7 @@ sub record_votes {
     # for products that only allow one vote per bug).  In that case, we still
     # need to clear the user's votes from the database.
     my %affected;
-    $dbh->bz_lock_tables('bugs WRITE', 'bugs_activity WRITE',
-                         'votes WRITE', 'longdescs WRITE',
-                         'products READ', 'fielddefs READ');
+    $dbh->bz_start_transaction();
     
     # Take note of, and delete the user's old votes from the database.
     my $bug_list = $dbh->selectcol_arrayref('SELECT bug_id FROM votes
@@ -337,7 +333,7 @@ sub record_votes {
         my $confirmed = CheckIfVotedConfirmed($id, $who);
         push (@updated_bugs, $id) if $confirmed;
     }
-    $dbh->bz_unlock_tables();
+    $dbh->bz_commit_transaction();
 
     $vars->{'type'} = "votes";
     $vars->{'mailrecipients'} = { 'changer' => Bugzilla->user->login };
diff --git a/whine.pl b/whine.pl
index 82bfc933b3e2fded9d0fac405cc83831548b7c07..8f467132166fcde915f1523dcf1db510fdc23302 100755
--- a/whine.pl
+++ b/whine.pl
@@ -26,7 +26,7 @@
 
 use strict;
 
-use lib ".";
+use lib qw(. lib);
 
 use Bugzilla;
 use Bugzilla::Constants;
@@ -206,12 +206,7 @@ sub get_next_event {
     # Loop until there's something to return
     until (scalar keys %{$event}) {
 
-        $dbh->bz_lock_tables('whine_schedules WRITE',
-                             'whine_events READ',
-                             'profiles READ',
-                             'groups READ',
-                             'group_group_map READ',
-                             'user_group_map READ');
+        $dbh->bz_start_transaction();
 
         # Get the event ID for the first pending schedule
         $sth_next_scheduled_event->execute;
@@ -275,7 +270,7 @@ sub get_next_event {
             reset_timer($sid);
         }
 
-        $dbh->bz_unlock_tables();
+        $dbh->bz_commit_transaction();
 
         # Only set $event if the user is allowed to do whining
         if ($owner->in_group('bz_canusewhines')) {
@@ -474,7 +469,7 @@ sub run_queries {
                 push @{$thisquery->{'bugs'}}, $bug;
             }
         }
-        unless ($thisquery->{'onemailperbug'}) {
+        if (!$thisquery->{'onemailperbug'} && @{$thisquery->{'bugs'}}) {
             push @{$return_queries}, $thisquery;
         }
     }
diff --git a/whineatnews.pl b/whineatnews.pl
index 12a86cb6b1a411a753aee9adda61922132e295ec..5c1ec655daa60d763d240aa1afa2fe9d72d2b4d5 100755
--- a/whineatnews.pl
+++ b/whineatnews.pl
@@ -29,7 +29,7 @@
 # touched for more than the number of days specified in the whinedays param.
 
 use strict;
-use lib '.';
+use lib qw(. lib);
 
 use Bugzilla;
 use Bugzilla::Mailer;
diff --git a/xml.cgi b/xml.cgi
index 8316971c9ace15c702eab7caa46becba7f763d41..ce6a7c39b10986b6ea8121c3bb5f7aecdc60481e 100755
--- a/xml.cgi
+++ b/xml.cgi
@@ -24,7 +24,7 @@
 
 use strict;
 
-use lib qw(.);
+use lib qw(. lib);
 use Bugzilla;
 
 my $cgi = Bugzilla->cgi;
diff --git a/xmlrpc.cgi b/xmlrpc.cgi
index c17cab86c3e8ce1a49da9cb9ef076ee272157270..2ac34e67539fb5ae27d26097d43e50d48e125408 100755
--- a/xmlrpc.cgi
+++ b/xmlrpc.cgi
@@ -16,10 +16,11 @@
 # Contributor(s): Marc Schumann <wurblzap@gmail.com>
 
 use strict;
-use lib qw(.);
+use lib qw(. lib);
 
 use Bugzilla;
 use Bugzilla::Constants;
+use Bugzilla::Hook;
 
 # Use an eval here so that runtests.pl accepts this script even if SOAP-Lite
 # is not installed.
@@ -29,11 +30,16 @@ $@ && ThrowCodeError('soap_not_installed');
 
 Bugzilla->usage_mode(Bugzilla::Constants::USAGE_MODE_WEBSERVICE);
 
+my %hook_dispatch;
+Bugzilla::Hook::process('webservice', { dispatch => \%hook_dispatch });
+local @INC = (bz_locations()->{extensionsdir}, @INC);
+
 my $response = Bugzilla::WebService::XMLRPC::Transport::HTTP::CGI
     ->dispatch_with({'Bugzilla' => 'Bugzilla::WebService::Bugzilla',
                      'Bug'      => 'Bugzilla::WebService::Bug',
                      'User'     => 'Bugzilla::WebService::User',
                      'Product'  => 'Bugzilla::WebService::Product',
+                     %hook_dispatch
                     })
     ->on_action(\&Bugzilla::WebService::handle_login)
     ->handle;