You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by gi...@apache.org on 2018/04/10 14:10:59 UTC

[1/3] hbase-site git commit: Published site at 93498ddc599fe15f4357acf742a2dcb8b2c84b9c.

Repository: hbase-site
Updated Branches:
  refs/heads/asf-site 57e2bad6f -> 8bbf0a2dc


http://git-wip-us.apache.org/repos/asf/hbase-site/blob/8bbf0a2d/book.html
----------------------------------------------------------------------
diff --git a/book.html b/book.html
index 6c9b14f..09ab4cb 100644
--- a/book.html
+++ b/book.html
@@ -28110,11 +28110,14 @@ If a slave cluster does run out of room, or is inaccessible for other reasons, i
 <td class="content">
 <div class="title">Consistency Across Replicated Clusters</div>
 <div class="paragraph">
-<p>How your application builds on top of the HBase API matters when replication is in play. HBase&#8217;s replication system provides at-least-once delivery of client edits for an enabled column family to each configured destination cluster. In the event of failure to reach a given destination, the replication system will retry sending edits in a way that might repeat a given message. Further more, there is not a guaranteed order of delivery for client edits. In the event of a RegionServer failing, recovery of the replication queue happens independent of recovery of the individual regions that server was previously handling. This means that it is possible for the not-yet-replicated edits to be serviced by a RegionServer that is currently slower to replicate than the one that handles edits from after the failure.</p>
+<p>How your application builds on top of the HBase API matters when replication is in play. HBase&#8217;s replication system provides at-least-once delivery of client edits for an enabled column family to each configured destination cluster. In the event of failure to reach a given destination, the replication system will retry sending edits in a way that might repeat a given message. HBase provides two ways of replication, one is the original replication and the other is serial replication. In the previous way of replication, there is not a guaranteed order of delivery for client edits. In the event of a RegionServer failing, recovery of the replication queue happens independent of recovery of the individual regions that server was previously handling. This means that it is possible for the not-yet-replicated edits to be serviced by a RegionServer that is currently slower to replicate than the one that handles edits from after the failure.</p>
 </div>
 <div class="paragraph">
 <p>The combination of these two properties (at-least-once delivery and the lack of message ordering) means that some destination clusters may end up in a different state if your application makes use of operations that are not idempotent, e.g. Increments.</p>
 </div>
+<div class="paragraph">
+<p>To solve the problem, HBase now supports serial replication, which sends edits to destination cluster as the order of requests from client. See <a href="#_serial_replication">Serial Replication</a>.</p>
+</div>
 </td>
 </tr>
 </table>
@@ -28197,6 +28200,10 @@ Create tables with the same names and column families on both the source and des
 <pre>LOG.info("Replicating "+clusterId + " -&gt; " + peerClusterId);</pre>
 </div>
 </div>
+<div class="paragraph">
+<div class="title">Serial Replication Configuration</div>
+<p>See <a href="#_serial_replication">Serial Replication</a></p>
+</div>
 <div class="dlist">
 <div class="title">Cluster Management Commands</div>
 <dl>
@@ -28248,7 +28255,48 @@ replication as long as peers exist.</p>
 </div>
 </div>
 <div class="sect2">
-<h3 id="_verifying_replicated_data"><a class="anchor" href="#_verifying_replicated_data"></a>151.3. Verifying Replicated Data</h3>
+<h3 id="_serial_replication"><a class="anchor" href="#_serial_replication"></a>151.3. Serial Replication</h3>
+<div class="paragraph">
+<p>Note: this feature is introduced in HBase 2.1</p>
+</div>
+<div class="paragraph">
+<div class="title">Function of serial replication</div>
+<p>Serial replication supports to push logs to the destination cluster in the same order as logs reach to the source cluster.</p>
+</div>
+<div class="paragraph">
+<div class="title">Why need serial replication?</div>
+<p>In replication of HBase, we push mutations to destination cluster by reading WAL in each region server. We have a queue for WAL files so we can read them in order of creation time. However, when region-move or RS failure occurs in source cluster, the hlog entries that are not pushed before region-move or RS-failure will be pushed by original RS(for region move) or another RS which takes over the remained hlog of dead RS(for RS failure), and the new entries for the same region(s) will be pushed by the RS which now serves the region(s), but they push the hlog entries of a same region concurrently without coordination.</p>
+</div>
+<div class="paragraph">
+<p>This treatment can possibly lead to data inconsistency between source and destination clusters:</p>
+</div>
+<div class="olist arabic">
+<ol class="arabic">
+<li>
+<p>there are put and then delete written to source cluster.</p>
+</li>
+<li>
+<p>due to region-move / RS-failure, they are pushed by different replication-source threads to peer cluster.</p>
+</li>
+<li>
+<p>if delete is pushed to peer cluster before put, and flush and major-compact occurs in peer cluster before put is pushed to peer cluster, the delete is collected and the put remains in peer cluster, but in source cluster the put is masked by the delete, hence data inconsistency between source and destination clusters.</p>
+</li>
+</ol>
+</div>
+<div class="olist arabic">
+<div class="title">Serial replication configuration</div>
+<ol class="arabic">
+<li>
+<p>Set the serial flag to true for a repliation peer. You can either set it to true when creating a replication peer, or change it to true later.</p>
+</li>
+</ol>
+</div>
+<div class="paragraph">
+<p>The serial replication feature had been done firstly in <a href="https://issues.apache.org/jira/browse/HBASE-9465">HBASE-9465</a> and then reverted and redone in <a href="https://issues.apache.org/jira/browse/HBASE-20046">HBASE-20046</a>. You can find more details in these issues.</p>
+</div>
+</div>
+<div class="sect2">
+<h3 id="_verifying_replicated_data"><a class="anchor" href="#_verifying_replicated_data"></a>151.4. Verifying Replicated Data</h3>
 <div class="paragraph">
 <p>The <code>VerifyReplication</code> MapReduce job, which is included in HBase, performs a systematic comparison of replicated data between two different clusters. Run the VerifyReplication job on the master cluster, supplying it with the peer ID and table name to use for validation. You can limit the verification further by specifying a time range or specific families. The job&#8217;s short name is <code>verifyrep</code>. To run the job, use a command like the following:</p>
 </div>
@@ -28266,7 +28314,7 @@ The <code>VerifyReplication</code> command prints out <code>GOODROWS</code> and
 </div>
 </div>
 <div class="sect2">
-<h3 id="_detailed_information_about_cluster_replication"><a class="anchor" href="#_detailed_information_about_cluster_replication"></a>151.4. Detailed Information About Cluster Replication</h3>
+<h3 id="_detailed_information_about_cluster_replication"><a class="anchor" href="#_detailed_information_about_cluster_replication"></a>151.5. Detailed Information About Cluster Replication</h3>
 <div class="imageblock">
 <div class="content">
 <img src="images/replication_overview.png" alt="replication overview">
@@ -28274,7 +28322,7 @@ The <code>VerifyReplication</code> command prints out <code>GOODROWS</code> and
 <div class="title">Figure 13. Replication Architecture Overview</div>
 </div>
 <div class="sect3">
-<h4 id="_life_of_a_wal_edit"><a class="anchor" href="#_life_of_a_wal_edit"></a>151.4.1. Life of a WAL Edit</h4>
+<h4 id="_life_of_a_wal_edit"><a class="anchor" href="#_life_of_a_wal_edit"></a>151.5.1. Life of a WAL Edit</h4>
 <div class="paragraph">
 <p>A single WAL edit goes through several steps in order to be replicated to a slave cluster.</p>
 </div>
@@ -28357,7 +28405,7 @@ This option was introduced in <a href="https://issues.apache.org/jira/browse/HBA
 </div>
 </div>
 <div class="sect3">
-<h4 id="_replication_internals"><a class="anchor" href="#_replication_internals"></a>151.4.2. Replication Internals</h4>
+<h4 id="_replication_internals"><a class="anchor" href="#_replication_internals"></a>151.5.2. Replication Internals</h4>
 <div class="dlist">
 <dl>
 <dt class="hdlist1">Replication State in ZooKeeper</dt>
@@ -28385,7 +28433,7 @@ This list includes both live and dead region servers.</p>
 </div>
 </div>
 <div class="sect3">
-<h4 id="_choosing_region_servers_to_replicate_to"><a class="anchor" href="#_choosing_region_servers_to_replicate_to"></a>151.4.3. Choosing Region Servers to Replicate To</h4>
+<h4 id="_choosing_region_servers_to_replicate_to"><a class="anchor" href="#_choosing_region_servers_to_replicate_to"></a>151.5.3. Choosing Region Servers to Replicate To</h4>
 <div class="paragraph">
 <p>When a master cluster region server initiates a replication source to a slave cluster, it first connects to the slave&#8217;s ZooKeeper ensemble using the provided cluster key . It then scans the <em>rs/</em> directory to discover all the available sinks (region servers that are accepting incoming streams of edits to replicate) and randomly chooses a subset of them using a configured ratio which has a default value of 10%. For example, if a slave cluster has 150 machines, 15 will be chosen as potential recipient for edits that this master cluster region server sends.
 Because this selection is performed by each master region server, the probability that all slave region servers are used is very high, and this method works for clusters of any size.
@@ -28398,7 +28446,7 @@ When nodes are removed from the slave cluster, or if nodes go down or come back
 </div>
 </div>
 <div class="sect3">
-<h4 id="_keeping_track_of_logs"><a class="anchor" href="#_keeping_track_of_logs"></a>151.4.4. Keeping Track of Logs</h4>
+<h4 id="_keeping_track_of_logs"><a class="anchor" href="#_keeping_track_of_logs"></a>151.5.4. Keeping Track of Logs</h4>
 <div class="paragraph">
 <p>Each master cluster region server has its own znode in the replication znodes hierarchy.
 It contains one znode per peer cluster (if 5 slave clusters, 5 znodes are created), and each of these contain a queue of WALs to process.
@@ -28423,7 +28471,7 @@ Because moving a file is a NameNode operation , if the reader is currently readi
 </div>
 </div>
 <div class="sect3">
-<h4 id="_reading_filtering_and_sending_edits"><a class="anchor" href="#_reading_filtering_and_sending_edits"></a>151.4.5. Reading, Filtering and Sending Edits</h4>
+<h4 id="_reading_filtering_and_sending_edits"><a class="anchor" href="#_reading_filtering_and_sending_edits"></a>151.5.5. Reading, Filtering and Sending Edits</h4>
 <div class="paragraph">
 <p>By default, a source attempts to read from a WAL and ship log entries to a sink as quickly as possible.
 Speed is limited by the filtering of log entries Only KeyValues that are scoped GLOBAL and that do not belong to catalog tables will be retained.
@@ -28440,7 +28488,7 @@ If the RPC threw an exception, the source will retry 10 times before trying to f
 </div>
 </div>
 <div class="sect3">
-<h4 id="_cleaning_logs"><a class="anchor" href="#_cleaning_logs"></a>151.4.6. Cleaning Logs</h4>
+<h4 id="_cleaning_logs"><a class="anchor" href="#_cleaning_logs"></a>151.5.6. Cleaning Logs</h4>
 <div class="paragraph">
 <p>If replication is not enabled, the master&#8217;s log-cleaning thread deletes old logs using a configured TTL.
 This TTL-based method does not work well with replication, because archived logs which have exceeded their TTL may still be in a queue.
@@ -28462,7 +28510,7 @@ WALs are saved when replication is enabled or disabled as long as peers exist.
 </div>
 </div>
 <div class="sect3">
-<h4 id="rs.failover.details"><a class="anchor" href="#rs.failover.details"></a>151.4.7. Region Server Failover</h4>
+<h4 id="rs.failover.details"><a class="anchor" href="#rs.failover.details"></a>151.5.7. Region Server Failover</h4>
 <div class="paragraph">
 <p>When no region servers are failing, keeping track of the logs in ZooKeeper adds no value.
 Unfortunately, region servers do fail, and since ZooKeeper is highly available, it is useful for managing the transfer of the queues in the event of a failure.</p>
@@ -28561,7 +28609,7 @@ The new layout will be:</p>
 </div>
 </div>
 <div class="sect2">
-<h3 id="_replication_metrics"><a class="anchor" href="#_replication_metrics"></a>151.5. Replication Metrics</h3>
+<h3 id="_replication_metrics"><a class="anchor" href="#_replication_metrics"></a>151.6. Replication Metrics</h3>
 <div class="paragraph">
 <p>The following metrics are exposed at the global region server level and at the peer level:</p>
 </div>
@@ -28615,7 +28663,7 @@ The new layout will be:</p>
 </div>
 </div>
 <div class="sect2">
-<h3 id="_replication_configuration_options"><a class="anchor" href="#_replication_configuration_options"></a>151.6. Replication Configuration Options</h3>
+<h3 id="_replication_configuration_options"><a class="anchor" href="#_replication_configuration_options"></a>151.7. Replication Configuration Options</h3>
 <table class="tableblock frame-all grid-all spread">
 <colgroup>
 <col style="width: 33.3333%;">
@@ -28671,7 +28719,7 @@ The new layout will be:</p>
 </table>
 </div>
 <div class="sect2">
-<h3 id="_monitoring_replication_status"><a class="anchor" href="#_monitoring_replication_status"></a>151.7. Monitoring Replication Status</h3>
+<h3 id="_monitoring_replication_status"><a class="anchor" href="#_monitoring_replication_status"></a>151.8. Monitoring Replication Status</h3>
 <div class="paragraph">
 <p>You can use the HBase Shell command <code>status 'replication'</code> to monitor the replication status on your cluster. The  command has three variations:
 * <code>status 'replication'</code>&#8201;&#8212;&#8201;prints the status of each source and its sinks, sorted by hostname.
@@ -37631,7 +37679,7 @@ The server will return cellblocks compressed using this same compressor as long
 <div id="footer">
 <div id="footer-text">
 Version 3.0.0-SNAPSHOT<br>
-Last updated 2018-04-09 17:04:15 UTC
+Last updated 2018-04-10 13:51:52 UTC
 </div>
 </div>
 </body>

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/8bbf0a2d/bulk-loads.html
----------------------------------------------------------------------
diff --git a/bulk-loads.html b/bulk-loads.html
index 293682d..acda590 100644
--- a/bulk-loads.html
+++ b/bulk-loads.html
@@ -7,7 +7,7 @@
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20180409" />
+    <meta name="Date-Revision-yyyymmdd" content="20180410" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013;  
       Bulk Loads in Apache HBase (TM)
@@ -306,7 +306,7 @@ under the License. -->
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-04-09</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-04-10</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/8bbf0a2d/checkstyle-aggregate.html
----------------------------------------------------------------------
diff --git a/checkstyle-aggregate.html b/checkstyle-aggregate.html
index 578f159..8f089ea 100644
--- a/checkstyle-aggregate.html
+++ b/checkstyle-aggregate.html
@@ -7,7 +7,7 @@
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20180409" />
+    <meta name="Date-Revision-yyyymmdd" content="20180410" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Checkstyle Results</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -123641,7 +123641,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-04-09</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-04-10</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/8bbf0a2d/coc.html
----------------------------------------------------------------------
diff --git a/coc.html b/coc.html
index 7cbfcf1..9e8f660 100644
--- a/coc.html
+++ b/coc.html
@@ -7,7 +7,7 @@
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20180409" />
+    <meta name="Date-Revision-yyyymmdd" content="20180410" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; 
       Code of Conduct Policy
@@ -375,7 +375,7 @@ email to <a class="externalLink" href="mailto:private@hbase.apache.org">the priv
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-04-09</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-04-10</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/8bbf0a2d/dependencies.html
----------------------------------------------------------------------
diff --git a/dependencies.html b/dependencies.html
index f218fda..3e188a7 100644
--- a/dependencies.html
+++ b/dependencies.html
@@ -7,7 +7,7 @@
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20180409" />
+    <meta name="Date-Revision-yyyymmdd" content="20180410" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Project Dependencies</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -440,7 +440,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-04-09</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-04-10</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/8bbf0a2d/dependency-convergence.html
----------------------------------------------------------------------
diff --git a/dependency-convergence.html b/dependency-convergence.html
index 3baf30c..62b1ee4 100644
--- a/dependency-convergence.html
+++ b/dependency-convergence.html
@@ -7,7 +7,7 @@
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20180409" />
+    <meta name="Date-Revision-yyyymmdd" content="20180410" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Reactor Dependency Convergence</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -1105,7 +1105,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-04-09</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-04-10</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/8bbf0a2d/dependency-info.html
----------------------------------------------------------------------
diff --git a/dependency-info.html b/dependency-info.html
index a99006b..7235769 100644
--- a/dependency-info.html
+++ b/dependency-info.html
@@ -7,7 +7,7 @@
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20180409" />
+    <meta name="Date-Revision-yyyymmdd" content="20180410" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Dependency Information</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -313,7 +313,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-04-09</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-04-10</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/8bbf0a2d/dependency-management.html
----------------------------------------------------------------------
diff --git a/dependency-management.html b/dependency-management.html
index 94778b4..b76a07f 100644
--- a/dependency-management.html
+++ b/dependency-management.html
@@ -7,7 +7,7 @@
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20180409" />
+    <meta name="Date-Revision-yyyymmdd" content="20180410" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Project Dependency Management</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -969,7 +969,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-04-09</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-04-10</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/8bbf0a2d/devapidocs/constant-values.html
----------------------------------------------------------------------
diff --git a/devapidocs/constant-values.html b/devapidocs/constant-values.html
index de61b3b..4433328 100644
--- a/devapidocs/constant-values.html
+++ b/devapidocs/constant-values.html
@@ -3768,14 +3768,14 @@
 <!--   -->
 </a><code>public&nbsp;static&nbsp;final&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
 <td><code><a href="org/apache/hadoop/hbase/Version.html#date">date</a></code></td>
-<td class="colLast"><code>"Mon Apr  9 17:15:48 UTC 2018"</code></td>
+<td class="colLast"><code>"Tue Apr 10 14:03:20 UTC 2018"</code></td>
 </tr>
 <tr class="rowColor">
 <td class="colFirst"><a name="org.apache.hadoop.hbase.Version.revision">
 <!--   -->
 </a><code>public&nbsp;static&nbsp;final&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
 <td><code><a href="org/apache/hadoop/hbase/Version.html#revision">revision</a></code></td>
-<td class="colLast"><code>"116a8085178d9d5bc55ab48a7e48a3969a0fd787"</code></td>
+<td class="colLast"><code>"93498ddc599fe15f4357acf742a2dcb8b2c84b9c"</code></td>
 </tr>
 <tr class="altColor">
 <td class="colFirst"><a name="org.apache.hadoop.hbase.Version.srcChecksum">

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/8bbf0a2d/devapidocs/src-html/org/apache/hadoop/hbase/Version.html
----------------------------------------------------------------------
diff --git a/devapidocs/src-html/org/apache/hadoop/hbase/Version.html b/devapidocs/src-html/org/apache/hadoop/hbase/Version.html
index 21db7f6..aa21d87 100644
--- a/devapidocs/src-html/org/apache/hadoop/hbase/Version.html
+++ b/devapidocs/src-html/org/apache/hadoop/hbase/Version.html
@@ -16,9 +16,9 @@
 <span class="sourceLineNo">008</span>@InterfaceAudience.Private<a name="line.8"></a>
 <span class="sourceLineNo">009</span>public class Version {<a name="line.9"></a>
 <span class="sourceLineNo">010</span>  public static final String version = "3.0.0-SNAPSHOT";<a name="line.10"></a>
-<span class="sourceLineNo">011</span>  public static final String revision = "116a8085178d9d5bc55ab48a7e48a3969a0fd787";<a name="line.11"></a>
+<span class="sourceLineNo">011</span>  public static final String revision = "93498ddc599fe15f4357acf742a2dcb8b2c84b9c";<a name="line.11"></a>
 <span class="sourceLineNo">012</span>  public static final String user = "jenkins";<a name="line.12"></a>
-<span class="sourceLineNo">013</span>  public static final String date = "Mon Apr  9 17:15:48 UTC 2018";<a name="line.13"></a>
+<span class="sourceLineNo">013</span>  public static final String date = "Tue Apr 10 14:03:20 UTC 2018";<a name="line.13"></a>
 <span class="sourceLineNo">014</span>  public static final String url = "git://jenkins-websites1.apache.org/home/jenkins/jenkins-slave/workspace/hbase_generate_website/hbase";<a name="line.14"></a>
 <span class="sourceLineNo">015</span>  public static final String srcChecksum = "6e1ea0c1e6c6f1e913b17d2af1f51b33";<a name="line.15"></a>
 <span class="sourceLineNo">016</span>}<a name="line.16"></a>

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/8bbf0a2d/export_control.html
----------------------------------------------------------------------
diff --git a/export_control.html b/export_control.html
index 6d371e8..34fae68 100644
--- a/export_control.html
+++ b/export_control.html
@@ -7,7 +7,7 @@
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20180409" />
+    <meta name="Date-Revision-yyyymmdd" content="20180410" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; 
       Export Control
@@ -331,7 +331,7 @@ for more details.</p>
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-04-09</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-04-10</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/8bbf0a2d/index.html
----------------------------------------------------------------------
diff --git a/index.html b/index.html
index 1de3a3b..25c7f05 100644
--- a/index.html
+++ b/index.html
@@ -7,7 +7,7 @@
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20180409" />
+    <meta name="Date-Revision-yyyymmdd" content="20180410" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Apache HBase™ Home</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -378,7 +378,7 @@ Apache HBase is an open-source, distributed, versioned, non-relational database
 <div class="section">
 <h2><a name="News"></a>News</h2>
        
-<p>June 18th, 2018 <a class="externalLink" href="https://hbase.apache.org/hbasecon-2018">HBaseCon 2018</a> @ San Jose Convention Center, San Jose, CA, USA</p>
+<p>June 18th, 2018 <a class="externalLink" href="https://hbase.apache.org/hbasecon-2018">HBaseCon 2018</a> @ San Jose Convention Center, San Jose, CA, USA. CFP open, see site for details!</p>
        
 <p>August 4th, 2017 <a class="externalLink" href="https://easychair.org/cfp/HBaseConAsia2017">HBaseCon Asia 2017</a> @ the Huawei Campus in Shenzhen, China</p>
        
@@ -435,7 +435,7 @@ Apache HBase is an open-source, distributed, versioned, non-relational database
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-04-09</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-04-10</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/8bbf0a2d/integration.html
----------------------------------------------------------------------
diff --git a/integration.html b/integration.html
index b70e933..b98215d 100644
--- a/integration.html
+++ b/integration.html
@@ -7,7 +7,7 @@
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20180409" />
+    <meta name="Date-Revision-yyyymmdd" content="20180410" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; CI Management</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -291,7 +291,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-04-09</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-04-10</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/8bbf0a2d/issue-tracking.html
----------------------------------------------------------------------
diff --git a/issue-tracking.html b/issue-tracking.html
index 905ce9c..dd11dad 100644
--- a/issue-tracking.html
+++ b/issue-tracking.html
@@ -7,7 +7,7 @@
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20180409" />
+    <meta name="Date-Revision-yyyymmdd" content="20180410" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Issue Management</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -288,7 +288,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-04-09</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-04-10</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/8bbf0a2d/license.html
----------------------------------------------------------------------
diff --git a/license.html b/license.html
index 16cf566..3979766 100644
--- a/license.html
+++ b/license.html
@@ -7,7 +7,7 @@
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20180409" />
+    <meta name="Date-Revision-yyyymmdd" content="20180410" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Project Licenses</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -491,7 +491,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-04-09</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-04-10</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/8bbf0a2d/mail-lists.html
----------------------------------------------------------------------
diff --git a/mail-lists.html b/mail-lists.html
index 0914a08..6d440c5 100644
--- a/mail-lists.html
+++ b/mail-lists.html
@@ -7,7 +7,7 @@
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20180409" />
+    <meta name="Date-Revision-yyyymmdd" content="20180410" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Project Mailing Lists</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -341,7 +341,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-04-09</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-04-10</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/8bbf0a2d/metrics.html
----------------------------------------------------------------------
diff --git a/metrics.html b/metrics.html
index 3b2c521..feea358 100644
--- a/metrics.html
+++ b/metrics.html
@@ -7,7 +7,7 @@
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20180409" />
+    <meta name="Date-Revision-yyyymmdd" content="20180410" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013;  
       Apache HBase (TM) Metrics
@@ -459,7 +459,7 @@ export HBASE_REGIONSERVER_OPTS=&quot;$HBASE_JMX_OPTS -Dcom.sun.management.jmxrem
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-04-09</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-04-10</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/8bbf0a2d/old_news.html
----------------------------------------------------------------------
diff --git a/old_news.html b/old_news.html
index 9472010..0b33acb 100644
--- a/old_news.html
+++ b/old_news.html
@@ -7,7 +7,7 @@
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20180409" />
+    <meta name="Date-Revision-yyyymmdd" content="20180410" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; 
       Old Apache HBase (TM) News
@@ -414,7 +414,7 @@ under the License. -->
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-04-09</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-04-10</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/8bbf0a2d/plugin-management.html
----------------------------------------------------------------------
diff --git a/plugin-management.html b/plugin-management.html
index 0070a00..b1d9de2 100644
--- a/plugin-management.html
+++ b/plugin-management.html
@@ -7,7 +7,7 @@
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20180409" />
+    <meta name="Date-Revision-yyyymmdd" content="20180410" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Project Plugin Management</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -440,7 +440,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-04-09</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-04-10</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/8bbf0a2d/plugins.html
----------------------------------------------------------------------
diff --git a/plugins.html b/plugins.html
index 53420f4..8bd598e 100644
--- a/plugins.html
+++ b/plugins.html
@@ -7,7 +7,7 @@
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20180409" />
+    <meta name="Date-Revision-yyyymmdd" content="20180410" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Project Plugins</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -375,7 +375,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-04-09</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-04-10</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/8bbf0a2d/poweredbyhbase.html
----------------------------------------------------------------------
diff --git a/poweredbyhbase.html b/poweredbyhbase.html
index 7b3bb81..19f08f6 100644
--- a/poweredbyhbase.html
+++ b/poweredbyhbase.html
@@ -7,7 +7,7 @@
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20180409" />
+    <meta name="Date-Revision-yyyymmdd" content="20180410" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Powered By Apache HBase™</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -769,7 +769,7 @@ under the License. -->
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-04-09</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-04-10</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/8bbf0a2d/project-info.html
----------------------------------------------------------------------
diff --git a/project-info.html b/project-info.html
index 1a97891..a96f806 100644
--- a/project-info.html
+++ b/project-info.html
@@ -7,7 +7,7 @@
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20180409" />
+    <meta name="Date-Revision-yyyymmdd" content="20180410" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Project Information</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -335,7 +335,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-04-09</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-04-10</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/8bbf0a2d/project-reports.html
----------------------------------------------------------------------
diff --git a/project-reports.html b/project-reports.html
index 6736fa4..9d485b7 100644
--- a/project-reports.html
+++ b/project-reports.html
@@ -7,7 +7,7 @@
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20180409" />
+    <meta name="Date-Revision-yyyymmdd" content="20180410" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Generated Reports</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -305,7 +305,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-04-09</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-04-10</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/8bbf0a2d/project-summary.html
----------------------------------------------------------------------
diff --git a/project-summary.html b/project-summary.html
index 28f8857..1fa739a 100644
--- a/project-summary.html
+++ b/project-summary.html
@@ -7,7 +7,7 @@
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20180409" />
+    <meta name="Date-Revision-yyyymmdd" content="20180410" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Project Summary</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -331,7 +331,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-04-09</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-04-10</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/8bbf0a2d/pseudo-distributed.html
----------------------------------------------------------------------
diff --git a/pseudo-distributed.html b/pseudo-distributed.html
index 6714853..d1d73c9 100644
--- a/pseudo-distributed.html
+++ b/pseudo-distributed.html
@@ -7,7 +7,7 @@
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20180409" />
+    <meta name="Date-Revision-yyyymmdd" content="20180410" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013;  
 Running Apache HBase (TM) in pseudo-distributed mode
@@ -308,7 +308,7 @@ under the License. -->
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-04-09</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-04-10</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/8bbf0a2d/replication.html
----------------------------------------------------------------------
diff --git a/replication.html b/replication.html
index bd35e59..2766d2e 100644
--- a/replication.html
+++ b/replication.html
@@ -7,7 +7,7 @@
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20180409" />
+    <meta name="Date-Revision-yyyymmdd" content="20180410" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; 
       Apache HBase (TM) Replication
@@ -303,7 +303,7 @@ under the License. -->
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-04-09</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-04-10</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/8bbf0a2d/resources.html
----------------------------------------------------------------------
diff --git a/resources.html b/resources.html
index dc8f516..2251baa 100644
--- a/resources.html
+++ b/resources.html
@@ -7,7 +7,7 @@
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20180409" />
+    <meta name="Date-Revision-yyyymmdd" content="20180410" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Other Apache HBase (TM) Resources</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -331,7 +331,7 @@ under the License. -->
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-04-09</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-04-10</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/8bbf0a2d/source-repository.html
----------------------------------------------------------------------
diff --git a/source-repository.html b/source-repository.html
index 240c106..b355016 100644
--- a/source-repository.html
+++ b/source-repository.html
@@ -7,7 +7,7 @@
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20180409" />
+    <meta name="Date-Revision-yyyymmdd" content="20180410" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Source Code Management</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -299,7 +299,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-04-09</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-04-10</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/8bbf0a2d/sponsors.html
----------------------------------------------------------------------
diff --git a/sponsors.html b/sponsors.html
index dce1630..30216b5 100644
--- a/sponsors.html
+++ b/sponsors.html
@@ -7,7 +7,7 @@
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20180409" />
+    <meta name="Date-Revision-yyyymmdd" content="20180410" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Apache HBase™ Sponsors</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -333,7 +333,7 @@ under the License. -->
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-04-09</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-04-10</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/8bbf0a2d/supportingprojects.html
----------------------------------------------------------------------
diff --git a/supportingprojects.html b/supportingprojects.html
index c3aaa0c..733f6ef 100644
--- a/supportingprojects.html
+++ b/supportingprojects.html
@@ -7,7 +7,7 @@
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20180409" />
+    <meta name="Date-Revision-yyyymmdd" content="20180410" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Supporting Projects</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -520,7 +520,7 @@ under the License. -->
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-04-09</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-04-10</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/8bbf0a2d/team-list.html
----------------------------------------------------------------------
diff --git a/team-list.html b/team-list.html
index a78738b..ad595d4 100644
--- a/team-list.html
+++ b/team-list.html
@@ -7,7 +7,7 @@
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20180409" />
+    <meta name="Date-Revision-yyyymmdd" content="20180410" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Project Team</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -730,7 +730,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-04-09</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-04-10</li>
             </p>
                 </div>
 


[3/3] hbase-site git commit: Published site at 93498ddc599fe15f4357acf742a2dcb8b2c84b9c.

Posted by gi...@apache.org.
Published site at 93498ddc599fe15f4357acf742a2dcb8b2c84b9c.


Project: http://git-wip-us.apache.org/repos/asf/hbase-site/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase-site/commit/8bbf0a2d
Tree: http://git-wip-us.apache.org/repos/asf/hbase-site/tree/8bbf0a2d
Diff: http://git-wip-us.apache.org/repos/asf/hbase-site/diff/8bbf0a2d

Branch: refs/heads/asf-site
Commit: 8bbf0a2dcdb359780485576aa6c6a9190e632252
Parents: 57e2bad
Author: jenkins <bu...@apache.org>
Authored: Tue Apr 10 14:10:49 2018 +0000
Committer: jenkins <bu...@apache.org>
Committed: Tue Apr 10 14:10:49 2018 +0000

----------------------------------------------------------------------
 acid-semantics.html                             |     4 +-
 apache_hbase_reference_guide.pdf                | 22707 +++++++++--------
 book.html                                       |    76 +-
 bulk-loads.html                                 |     4 +-
 checkstyle-aggregate.html                       |     4 +-
 coc.html                                        |     4 +-
 dependencies.html                               |     4 +-
 dependency-convergence.html                     |     4 +-
 dependency-info.html                            |     4 +-
 dependency-management.html                      |     4 +-
 devapidocs/constant-values.html                 |     4 +-
 .../org/apache/hadoop/hbase/Version.html        |     4 +-
 export_control.html                             |     4 +-
 index.html                                      |     6 +-
 integration.html                                |     4 +-
 issue-tracking.html                             |     4 +-
 license.html                                    |     4 +-
 mail-lists.html                                 |     4 +-
 metrics.html                                    |     4 +-
 old_news.html                                   |     4 +-
 plugin-management.html                          |     4 +-
 plugins.html                                    |     4 +-
 poweredbyhbase.html                             |     4 +-
 project-info.html                               |     4 +-
 project-reports.html                            |     4 +-
 project-summary.html                            |     4 +-
 pseudo-distributed.html                         |     4 +-
 replication.html                                |     4 +-
 resources.html                                  |     4 +-
 source-repository.html                          |     4 +-
 sponsors.html                                   |     4 +-
 supportingprojects.html                         |     4 +-
 team-list.html                                  |     4 +-
 33 files changed, 11809 insertions(+), 11100 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase-site/blob/8bbf0a2d/acid-semantics.html
----------------------------------------------------------------------
diff --git a/acid-semantics.html b/acid-semantics.html
index 1f5f2f6..b89c9ad 100644
--- a/acid-semantics.html
+++ b/acid-semantics.html
@@ -7,7 +7,7 @@
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20180409" />
+    <meta name="Date-Revision-yyyymmdd" content="20180410" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013;  
       Apache HBase (TM) ACID Properties
@@ -601,7 +601,7 @@ under the License. -->
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-04-09</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-04-10</li>
             </p>
                 </div>
 


[2/3] hbase-site git commit: Published site at 93498ddc599fe15f4357acf742a2dcb8b2c84b9c.

Posted by gi...@apache.org.
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/8bbf0a2d/apache_hbase_reference_guide.pdf
----------------------------------------------------------------------
diff --git a/apache_hbase_reference_guide.pdf b/apache_hbase_reference_guide.pdf
index 6be0202..2a5ee85 100644
--- a/apache_hbase_reference_guide.pdf
+++ b/apache_hbase_reference_guide.pdf
@@ -5,16 +5,16 @@
 /Author (Apache HBase Team)
 /Creator (Asciidoctor PDF 1.5.0.alpha.15, based on Prawn 2.2.2)
 /Producer (Apache HBase Team)
-/ModDate (D:20180409172027+00'00')
-/CreationDate (D:20180409172027+00'00')
+/ModDate (D:20180410140832+00'00')
+/CreationDate (D:20180410140832+00'00')
 >>
 endobj
 2 0 obj
 << /Type /Catalog
 /Pages 3 0 R
 /Names 26 0 R
-/Outlines 4588 0 R
-/PageLabels 4814 0 R
+/Outlines 4595 0 R
+/PageLabels 4821 0 R
 /PageMode /UseOutlines
 /OpenAction [7 0 R /FitH 842.89]
 /ViewerPreferences << /DisplayDocTitle true
@@ -23,8 +23,8 @@ endobj
 endobj
 3 0 obj
 << /Type /Pages
-/Count 717
-/Kids [7 0 R 12 0 R 14 0 R 16 0 R 18 0 R 20 0 R 22 0 R 24 0 R 44 0 R 47 0 R 50 0 R 54 0 R 61 0 R 63 0 R 67 0 R 69 0 R 71 0 R 78 0 R 81 0 R 83 0 R 89 0 R 92 0 R 94 0 R 96 0 R 103 0 R 109 0 R 114 0 R 116 0 R 132 0 R 137 0 R 144 0 R 153 0 R 161 0 R 170 0 R 181 0 R 185 0 R 187 0 R 191 0 R 200 0 R 209 0 R 217 0 R 226 0 R 231 0 R 240 0 R 248 0 R 257 0 R 270 0 R 277 0 R 287 0 R 295 0 R 303 0 R 310 0 R 318 0 R 324 0 R 330 0 R 337 0 R 345 0 R 356 0 R 365 0 R 377 0 R 385 0 R 393 0 R 400 0 R 409 0 R 417 0 R 427 0 R 435 0 R 442 0 R 451 0 R 463 0 R 472 0 R 479 0 R 487 0 R 495 0 R 504 0 R 511 0 R 516 0 R 520 0 R 525 0 R 529 0 R 545 0 R 556 0 R 560 0 R 575 0 R 580 0 R 585 0 R 587 0 R 589 0 R 592 0 R 594 0 R 596 0 R 604 0 R 610 0 R 615 0 R 620 0 R 627 0 R 637 0 R 645 0 R 649 0 R 653 0 R 655 0 R 665 0 R 679 0 R 687 0 R 694 0 R 706 0 R 714 0 R 730 0 R 744 0 R 750 0 R 756 0 R 759 0 R 763 0 R 767 0 R 770 0 R 773 0 R 775 0 R 778 0 R 782 0 R 784 0 R 788 0 R 794 0 R 799 0 R 803 0 R 806 0 R 812 0 R 814 0 R
  818 0 R 826 0 R 828 0 R 831 0 R 834 0 R 837 0 R 840 0 R 854 0 R 862 0 R 872 0 R 883 0 R 889 0 R 899 0 R 910 0 R 913 0 R 917 0 R 920 0 R 925 0 R 934 0 R 942 0 R 946 0 R 950 0 R 955 0 R 959 0 R 961 0 R 976 0 R 987 0 R 992 0 R 999 0 R 1002 0 R 1010 0 R 1018 0 R 1023 0 R 1028 0 R 1033 0 R 1035 0 R 1037 0 R 1039 0 R 1049 0 R 1057 0 R 1061 0 R 1068 0 R 1075 0 R 1083 0 R 1087 0 R 1093 0 R 1098 0 R 1106 0 R 1110 0 R 1115 0 R 1117 0 R 1123 0 R 1131 0 R 1138 0 R 1145 0 R 1156 0 R 1160 0 R 1162 0 R 1164 0 R 1168 0 R 1171 0 R 1176 0 R 1179 0 R 1191 0 R 1195 0 R 1201 0 R 1209 0 R 1214 0 R 1218 0 R 1222 0 R 1224 0 R 1227 0 R 1230 0 R 1233 0 R 1237 0 R 1241 0 R 1245 0 R 1250 0 R 1254 0 R 1257 0 R 1259 0 R 1269 0 R 1272 0 R 1280 0 R 1289 0 R 1295 0 R 1299 0 R 1301 0 R 1312 0 R 1315 0 R 1321 0 R 1329 0 R 1332 0 R 1339 0 R 1347 0 R 1349 0 R 1351 0 R 1360 0 R 1362 0 R 1364 0 R 1367 0 R 1369 0 R 1371 0 R 1373 0 R 1375 0 R 1378 0 R 1382 0 R 1387 0 R 1389 0 R 1391 0 R 1393 0 R 1398 0 R 1405 0 R 1411 0 R
  1414 0 R 1416 0 R 1419 0 R 1423 0 R 1427 0 R 1430 0 R 1432 0 R 1434 0 R 1437 0 R 1442 0 R 1448 0 R 1456 0 R 1470 0 R 1484 0 R 1487 0 R 1492 0 R 1505 0 R 1510 0 R 1525 0 R 1533 0 R 1537 0 R 1546 0 R 1561 0 R 1575 0 R 1587 0 R 1592 0 R 1598 0 R 1608 0 R 1613 0 R 1618 0 R 1626 0 R 1629 0 R 1638 0 R 1644 0 R 1649 0 R 1661 0 R 1666 0 R 1672 0 R 1674 0 R 1680 0 R 1688 0 R 1696 0 R 1700 0 R 1702 0 R 1704 0 R 1716 0 R 1722 0 R 1731 0 R 1737 0 R 1750 0 R 1756 0 R 1762 0 R 1773 0 R 1779 0 R 1784 0 R 1789 0 R 1792 0 R 1795 0 R 1800 0 R 1805 0 R 1812 0 R 1816 0 R 1821 0 R 1830 0 R 1835 0 R 1840 0 R 1842 0 R 1851 0 R 1858 0 R 1864 0 R 1869 0 R 1873 0 R 1876 0 R 1881 0 R 1886 0 R 1892 0 R 1894 0 R 1896 0 R 1899 0 R 1910 0 R 1913 0 R 1920 0 R 1928 0 R 1933 0 R 1937 0 R 1942 0 R 1944 0 R 1947 0 R 1952 0 R 1955 0 R 1957 0 R 1960 0 R 1963 0 R 1966 0 R 1976 0 R 1981 0 R 1986 0 R 1988 0 R 1996 0 R 2003 0 R 2010 0 R 2016 0 R 2021 0 R 2023 0 R 2032 0 R 2042 0 R 2052 0 R 2058 0 R 2065 0 R 2067 0 R 2072 0
  R 2074 0 R 2076 0 R 2080 0 R 2083 0 R 2086 0 R 2091 0 R 2095 0 R 2106 0 R 2109 0 R 2114 0 R 2117 0 R 2119 0 R 2124 0 R 2134 0 R 2136 0 R 2138 0 R 2140 0 R 2142 0 R 2145 0 R 2147 0 R 2149 0 R 2152 0 R 2154 0 R 2156 0 R 2161 0 R 2166 0 R 2175 0 R 2177 0 R 2179 0 R 2185 0 R 2187 0 R 2192 0 R 2194 0 R 2196 0 R 2203 0 R 2208 0 R 2212 0 R 2217 0 R 2221 0 R 2223 0 R 2225 0 R 2229 0 R 2232 0 R 2234 0 R 2236 0 R 2240 0 R 2242 0 R 2245 0 R 2247 0 R 2249 0 R 2251 0 R 2258 0 R 2261 0 R 2266 0 R 2268 0 R 2270 0 R 2272 0 R 2274 0 R 2282 0 R 2293 0 R 2307 0 R 2318 0 R 2322 0 R 2327 0 R 2331 0 R 2334 0 R 2339 0 R 2345 0 R 2347 0 R 2350 0 R 2352 0 R 2354 0 R 2356 0 R 2361 0 R 2363 0 R 2376 0 R 2379 0 R 2387 0 R 2393 0 R 2405 0 R 2419 0 R 2432 0 R 2449 0 R 2453 0 R 2455 0 R 2459 0 R 2477 0 R 2483 0 R 2495 0 R 2499 0 R 2503 0 R 2512 0 R 2524 0 R 2529 0 R 2539 0 R 2552 0 R 2571 0 R 2580 0 R 2583 0 R 2592 0 R 2609 0 R 2616 0 R 2619 0 R 2624 0 R 2628 0 R 2631 0 R 2640 0 R 2648 0 R 2652 0 R 2654 0 R 2658
  0 R 2672 0 R 2681 0 R 2686 0 R 2690 0 R 2693 0 R 2695 0 R 2697 0 R 2699 0 R 2704 0 R 2717 0 R 2727 0 R 2735 0 R 2741 0 R 2747 0 R 2757 0 R 2764 0 R 2770 0 R 2772 0 R 2781 0 R 2790 0 R 2792 0 R 2800 0 R 2808 0 R 2810 0 R 2819 0 R 2822 0 R 2832 0 R 2836 0 R 2844 0 R 2852 0 R 2857 0 R 2861 0 R 2865 0 R 2867 0 R 2873 0 R 2877 0 R 2881 0 R 2887 0 R 2893 0 R 2896 0 R 2902 0 R 2906 0 R 2915 0 R 2920 0 R 2925 0 R 2935 0 R 2941 0 R 2948 0 R 2951 0 R 2954 0 R 2961 0 R 2966 0 R 2969 0 R 2974 0 R 2984 0 R 2989 0 R 2991 0 R 2995 0 R 3002 0 R 3005 0 R 3016 0 R 3022 0 R 3031 0 R 3034 0 R 3044 0 R 3049 0 R 3053 0 R 3061 0 R 3067 0 R 3071 0 R 3073 0 R 3084 0 R 3089 0 R 3092 0 R 3094 0 R 3096 0 R 3106 0 R 3113 0 R 3117 0 R 3120 0 R 3126 0 R 3129 0 R 3132 0 R 3135 0 R 3142 0 R 3147 0 R 3153 0 R 3157 0 R 3160 0 R 3163 0 R 3165 0 R 3169 0 R 3180 0 R 3182 0 R 3186 0 R 3189 0 R 3193 0 R 3196 0 R 3200 0 R 3202 0 R 3215 0 R 3220 0 R 3225 0 R 3231 0 R 3239 0 R 3241 0 R 3249 0 R 3267 0 R 3278 0 R 3285 0 R 33
 01 0 R 3304 0 R 3309 0 R 3311 0 R 3318 0 R 3323 0 R 3326 0 R 3328 0 R 3330 0 R 3332 0 R 3335 0 R 3353 0 R 3356 0 R 3361 0 R 3367 0 R 3377 0 R 3382 0 R 3392 0 R 3402 0 R 3410 0 R 3419 0 R 3424 0 R 3427 0 R 3435 0 R 3439 0 R 3444 0 R 3449 0 R 3462 0 R 3465 0 R 3471 0 R 3476 0 R 3485 0 R 3495 0 R 3501 0 R 3510 0 R 3519 0 R 3524 0 R 3530 0 R 3536 0 R 3541 0 R 3543 0 R 3549 0 R 3556 0 R 3558 0 R 3565 0 R 3567 0 R 3573 0 R 3581 0 R 3587 0 R 3596 0 R 3603 0 R 3614 0 R 3623 0 R 3634 0 R 3647 0 R 3650 0 R 3652 0 R 3657 0 R 3670 0 R 3675 0 R 3681 0 R 3685 0 R 3688 0 R 3693 0 R 3695 0 R 3699 0 R 3701 0 R 3705 0 R 3708 0 R 3711 0 R 3719 0 R 3721 0 R 3725 0 R 3728 0 R 3736 0 R 3743 0 R 3747 0 R 3750 0 R 3752 0 R 3756 0 R 3761 0 R 3766 0 R 3769 0 R 3778 0 R 3783 0 R 3787 0 R 3790 0 R 3798 0 R 3803 0 R 3811 0 R 3816 0 R 3818 0 R 3824 0 R 3826 0 R 3831 0 R 3835 0 R 3841 0 R 3845 0 R 3857 0 R 3873 0 R 3888 0 R 3893 0 R 3896 0 R 3899 0 R 3905 0 R 3910 0 R 3912 0 R 3914 0 R 3916 0 R 3918 0 R 3920 0 R 
 3929 0 R 3933 0 R 3937 0 R 3941 0 R 3943 0 R 3950 0 R 3960 0 R 3967 0 R 3970 0 R 3973 0 R 3975 0 R 3982 0 R 3989 0 R 3999 0 R 4003 0 R 4006 0 R 4010 0 R 4014 0 R 4020 0 R 4023 0 R 4039 0 R 4044 0 R 4067 0 R 4071 0 R 4078 0 R 4089 0 R 4098 0 R 4101 0 R 4104 0 R 4107 0 R 4123 0 R 4129 0 R 4136 0 R]
+/Count 718
+/Kids [7 0 R 12 0 R 14 0 R 16 0 R 18 0 R 20 0 R 22 0 R 24 0 R 44 0 R 47 0 R 50 0 R 54 0 R 61 0 R 63 0 R 67 0 R 69 0 R 71 0 R 78 0 R 81 0 R 83 0 R 89 0 R 92 0 R 94 0 R 96 0 R 103 0 R 109 0 R 114 0 R 116 0 R 132 0 R 137 0 R 144 0 R 153 0 R 161 0 R 170 0 R 181 0 R 185 0 R 187 0 R 191 0 R 200 0 R 209 0 R 217 0 R 226 0 R 231 0 R 240 0 R 248 0 R 257 0 R 270 0 R 277 0 R 287 0 R 295 0 R 303 0 R 310 0 R 318 0 R 324 0 R 330 0 R 337 0 R 345 0 R 356 0 R 365 0 R 377 0 R 385 0 R 393 0 R 400 0 R 409 0 R 417 0 R 427 0 R 435 0 R 442 0 R 451 0 R 463 0 R 472 0 R 479 0 R 487 0 R 495 0 R 504 0 R 511 0 R 516 0 R 520 0 R 525 0 R 529 0 R 545 0 R 556 0 R 560 0 R 575 0 R 580 0 R 585 0 R 587 0 R 589 0 R 592 0 R 594 0 R 596 0 R 604 0 R 610 0 R 615 0 R 620 0 R 627 0 R 637 0 R 645 0 R 649 0 R 653 0 R 655 0 R 665 0 R 679 0 R 687 0 R 694 0 R 706 0 R 714 0 R 730 0 R 744 0 R 750 0 R 756 0 R 759 0 R 763 0 R 767 0 R 770 0 R 773 0 R 775 0 R 778 0 R 782 0 R 784 0 R 788 0 R 794 0 R 799 0 R 803 0 R 806 0 R 812 0 R 814 0 R
  818 0 R 826 0 R 828 0 R 831 0 R 834 0 R 837 0 R 840 0 R 854 0 R 862 0 R 872 0 R 883 0 R 889 0 R 899 0 R 910 0 R 913 0 R 917 0 R 920 0 R 925 0 R 934 0 R 942 0 R 946 0 R 950 0 R 955 0 R 959 0 R 961 0 R 976 0 R 987 0 R 992 0 R 999 0 R 1002 0 R 1010 0 R 1018 0 R 1023 0 R 1028 0 R 1033 0 R 1035 0 R 1037 0 R 1039 0 R 1049 0 R 1057 0 R 1061 0 R 1068 0 R 1075 0 R 1083 0 R 1087 0 R 1093 0 R 1098 0 R 1106 0 R 1110 0 R 1115 0 R 1117 0 R 1123 0 R 1131 0 R 1138 0 R 1145 0 R 1156 0 R 1160 0 R 1162 0 R 1164 0 R 1168 0 R 1171 0 R 1176 0 R 1179 0 R 1191 0 R 1195 0 R 1201 0 R 1209 0 R 1214 0 R 1218 0 R 1222 0 R 1224 0 R 1227 0 R 1230 0 R 1233 0 R 1237 0 R 1241 0 R 1245 0 R 1250 0 R 1254 0 R 1257 0 R 1259 0 R 1269 0 R 1272 0 R 1280 0 R 1289 0 R 1295 0 R 1299 0 R 1301 0 R 1312 0 R 1315 0 R 1321 0 R 1329 0 R 1332 0 R 1339 0 R 1347 0 R 1349 0 R 1351 0 R 1360 0 R 1362 0 R 1364 0 R 1367 0 R 1369 0 R 1371 0 R 1373 0 R 1375 0 R 1378 0 R 1382 0 R 1387 0 R 1389 0 R 1391 0 R 1393 0 R 1398 0 R 1405 0 R 1411 0 R
  1414 0 R 1416 0 R 1419 0 R 1423 0 R 1427 0 R 1430 0 R 1432 0 R 1434 0 R 1437 0 R 1442 0 R 1448 0 R 1456 0 R 1470 0 R 1484 0 R 1487 0 R 1492 0 R 1505 0 R 1510 0 R 1525 0 R 1533 0 R 1537 0 R 1546 0 R 1561 0 R 1575 0 R 1587 0 R 1592 0 R 1598 0 R 1608 0 R 1613 0 R 1618 0 R 1626 0 R 1629 0 R 1638 0 R 1644 0 R 1649 0 R 1661 0 R 1666 0 R 1672 0 R 1674 0 R 1680 0 R 1688 0 R 1696 0 R 1700 0 R 1702 0 R 1704 0 R 1716 0 R 1722 0 R 1731 0 R 1737 0 R 1750 0 R 1756 0 R 1762 0 R 1773 0 R 1779 0 R 1784 0 R 1789 0 R 1792 0 R 1795 0 R 1800 0 R 1805 0 R 1812 0 R 1816 0 R 1821 0 R 1830 0 R 1835 0 R 1840 0 R 1842 0 R 1851 0 R 1858 0 R 1864 0 R 1869 0 R 1873 0 R 1876 0 R 1881 0 R 1886 0 R 1892 0 R 1894 0 R 1896 0 R 1899 0 R 1910 0 R 1913 0 R 1920 0 R 1928 0 R 1933 0 R 1937 0 R 1942 0 R 1944 0 R 1947 0 R 1952 0 R 1955 0 R 1957 0 R 1960 0 R 1963 0 R 1966 0 R 1976 0 R 1981 0 R 1986 0 R 1988 0 R 1996 0 R 2003 0 R 2010 0 R 2016 0 R 2021 0 R 2023 0 R 2032 0 R 2042 0 R 2052 0 R 2058 0 R 2065 0 R 2067 0 R 2072 0
  R 2074 0 R 2076 0 R 2080 0 R 2083 0 R 2086 0 R 2091 0 R 2095 0 R 2106 0 R 2109 0 R 2114 0 R 2117 0 R 2119 0 R 2124 0 R 2134 0 R 2136 0 R 2138 0 R 2140 0 R 2142 0 R 2145 0 R 2147 0 R 2149 0 R 2152 0 R 2154 0 R 2156 0 R 2161 0 R 2166 0 R 2175 0 R 2177 0 R 2179 0 R 2185 0 R 2187 0 R 2192 0 R 2194 0 R 2196 0 R 2203 0 R 2208 0 R 2212 0 R 2217 0 R 2221 0 R 2223 0 R 2225 0 R 2229 0 R 2232 0 R 2234 0 R 2236 0 R 2240 0 R 2242 0 R 2245 0 R 2247 0 R 2249 0 R 2251 0 R 2258 0 R 2261 0 R 2266 0 R 2268 0 R 2270 0 R 2272 0 R 2274 0 R 2282 0 R 2293 0 R 2307 0 R 2318 0 R 2322 0 R 2327 0 R 2331 0 R 2334 0 R 2339 0 R 2345 0 R 2347 0 R 2350 0 R 2352 0 R 2354 0 R 2356 0 R 2361 0 R 2363 0 R 2376 0 R 2379 0 R 2387 0 R 2393 0 R 2405 0 R 2419 0 R 2432 0 R 2449 0 R 2453 0 R 2455 0 R 2459 0 R 2477 0 R 2483 0 R 2495 0 R 2499 0 R 2503 0 R 2512 0 R 2524 0 R 2529 0 R 2539 0 R 2552 0 R 2571 0 R 2580 0 R 2583 0 R 2592 0 R 2609 0 R 2616 0 R 2619 0 R 2624 0 R 2628 0 R 2631 0 R 2640 0 R 2648 0 R 2652 0 R 2654 0 R 2658
  0 R 2672 0 R 2681 0 R 2686 0 R 2690 0 R 2693 0 R 2695 0 R 2697 0 R 2699 0 R 2704 0 R 2717 0 R 2727 0 R 2735 0 R 2741 0 R 2747 0 R 2757 0 R 2764 0 R 2770 0 R 2772 0 R 2781 0 R 2790 0 R 2792 0 R 2800 0 R 2808 0 R 2810 0 R 2819 0 R 2822 0 R 2832 0 R 2836 0 R 2844 0 R 2852 0 R 2857 0 R 2861 0 R 2865 0 R 2867 0 R 2873 0 R 2877 0 R 2881 0 R 2887 0 R 2893 0 R 2896 0 R 2902 0 R 2906 0 R 2915 0 R 2920 0 R 2925 0 R 2935 0 R 2941 0 R 2948 0 R 2951 0 R 2954 0 R 2961 0 R 2966 0 R 2969 0 R 2974 0 R 2984 0 R 2989 0 R 2991 0 R 2995 0 R 3002 0 R 3005 0 R 3016 0 R 3022 0 R 3031 0 R 3034 0 R 3044 0 R 3049 0 R 3053 0 R 3061 0 R 3067 0 R 3071 0 R 3073 0 R 3084 0 R 3089 0 R 3092 0 R 3094 0 R 3096 0 R 3106 0 R 3113 0 R 3117 0 R 3120 0 R 3126 0 R 3130 0 R 3133 0 R 3137 0 R 3142 0 R 3150 0 R 3155 0 R 3160 0 R 3165 0 R 3167 0 R 3170 0 R 3172 0 R 3176 0 R 3187 0 R 3189 0 R 3193 0 R 3196 0 R 3200 0 R 3203 0 R 3207 0 R 3209 0 R 3222 0 R 3227 0 R 3232 0 R 3238 0 R 3246 0 R 3248 0 R 3256 0 R 3274 0 R 3285 0 R 32
 92 0 R 3308 0 R 3311 0 R 3316 0 R 3318 0 R 3325 0 R 3330 0 R 3333 0 R 3335 0 R 3337 0 R 3339 0 R 3342 0 R 3360 0 R 3363 0 R 3368 0 R 3374 0 R 3384 0 R 3389 0 R 3399 0 R 3409 0 R 3417 0 R 3426 0 R 3431 0 R 3434 0 R 3442 0 R 3446 0 R 3451 0 R 3456 0 R 3469 0 R 3472 0 R 3478 0 R 3483 0 R 3492 0 R 3502 0 R 3508 0 R 3517 0 R 3526 0 R 3531 0 R 3537 0 R 3543 0 R 3548 0 R 3550 0 R 3556 0 R 3563 0 R 3565 0 R 3572 0 R 3574 0 R 3580 0 R 3588 0 R 3594 0 R 3603 0 R 3610 0 R 3621 0 R 3630 0 R 3641 0 R 3654 0 R 3657 0 R 3659 0 R 3664 0 R 3677 0 R 3682 0 R 3688 0 R 3692 0 R 3695 0 R 3700 0 R 3702 0 R 3706 0 R 3708 0 R 3712 0 R 3715 0 R 3718 0 R 3726 0 R 3728 0 R 3732 0 R 3735 0 R 3743 0 R 3750 0 R 3754 0 R 3757 0 R 3759 0 R 3763 0 R 3768 0 R 3773 0 R 3776 0 R 3785 0 R 3790 0 R 3794 0 R 3797 0 R 3805 0 R 3810 0 R 3818 0 R 3823 0 R 3825 0 R 3831 0 R 3833 0 R 3838 0 R 3842 0 R 3848 0 R 3852 0 R 3864 0 R 3880 0 R 3895 0 R 3900 0 R 3903 0 R 3906 0 R 3912 0 R 3917 0 R 3919 0 R 3921 0 R 3923 0 R 3925 0 R 
 3927 0 R 3936 0 R 3940 0 R 3944 0 R 3948 0 R 3950 0 R 3957 0 R 3967 0 R 3974 0 R 3977 0 R 3980 0 R 3982 0 R 3989 0 R 3996 0 R 4006 0 R 4010 0 R 4013 0 R 4017 0 R 4021 0 R 4027 0 R 4030 0 R 4046 0 R 4051 0 R 4074 0 R 4078 0 R 4085 0 R 4096 0 R 4105 0 R 4108 0 R 4111 0 R 4114 0 R 4130 0 R 4136 0 R 4143 0 R]
 >>
 endobj
 4 0 obj
@@ -187,11 +187,11 @@ endobj
 << /Type /Font
 /BaseFont /71be00+NotoSerif
 /Subtype /TrueType
-/FontDescriptor 4816 0 R
+/FontDescriptor 4823 0 R
 /FirstChar 32
 /LastChar 255
-/Widths 4818 0 R
-/ToUnicode 4817 0 R
+/Widths 4825 0 R
+/ToUnicode 4824 0 R
 >>
 endobj
 11 0 obj
@@ -1750,7 +1750,7 @@ endobj
 /F1.0 10 0 R
 >>
 >>
-/Annots [4138 0 R 4139 0 R 4140 0 R 4141 0 R 4142 0 R 4143 0 R 4144 0 R 4145 0 R 4146 0 R 4147 0 R 4148 0 R 4149 0 R 4150 0 R 4151 0 R 4152 0 R 4153 0 R 4154 0 R 4155 0 R 4156 0 R 4157 0 R 4158 0 R 4159 0 R 4160 0 R 4161 0 R 4162 0 R 4163 0 R 4164 0 R 4165 0 R 4166 0 R 4167 0 R 4168 0 R 4169 0 R 4170 0 R 4171 0 R 4172 0 R 4173 0 R 4174 0 R 4175 0 R 4176 0 R 4177 0 R 4178 0 R 4179 0 R 4180 0 R 4181 0 R 4182 0 R 4183 0 R 4184 0 R 4185 0 R 4186 0 R 4187 0 R 4188 0 R 4189 0 R 4190 0 R 4191 0 R 4192 0 R 4193 0 R 4194 0 R 4195 0 R 4196 0 R 4197 0 R 4198 0 R 4199 0 R 4200 0 R 4201 0 R 4202 0 R 4203 0 R 4204 0 R 4205 0 R 4206 0 R 4207 0 R 4208 0 R 4209 0 R 4210 0 R 4211 0 R 4212 0 R 4213 0 R]
+/Annots [4145 0 R 4146 0 R 4147 0 R 4148 0 R 4149 0 R 4150 0 R 4151 0 R 4152 0 R 4153 0 R 4154 0 R 4155 0 R 4156 0 R 4157 0 R 4158 0 R 4159 0 R 4160 0 R 4161 0 R 4162 0 R 4163 0 R 4164 0 R 4165 0 R 4166 0 R 4167 0 R 4168 0 R 4169 0 R 4170 0 R 4171 0 R 4172 0 R 4173 0 R 4174 0 R 4175 0 R 4176 0 R 4177 0 R 4178 0 R 4179 0 R 4180 0 R 4181 0 R 4182 0 R 4183 0 R 4184 0 R 4185 0 R 4186 0 R 4187 0 R 4188 0 R 4189 0 R 4190 0 R 4191 0 R 4192 0 R 4193 0 R 4194 0 R 4195 0 R 4196 0 R 4197 0 R 4198 0 R 4199 0 R 4200 0 R 4201 0 R 4202 0 R 4203 0 R 4204 0 R 4205 0 R 4206 0 R 4207 0 R 4208 0 R 4209 0 R 4210 0 R 4211 0 R 4212 0 R 4213 0 R 4214 0 R 4215 0 R 4216 0 R 4217 0 R 4218 0 R 4219 0 R 4220 0 R]
 >>
 endobj
 13 0 obj
@@ -3417,7 +3417,7 @@ endobj
 /Font << /F1.0 10 0 R
 >>
 >>
-/Annots [4214 0 R 4215 0 R 4216 0 R 4217 0 R 4218 0 R 4219 0 R 4220 0 R 4221 0 R 4222 0 R 4223 0 R 4224 0 R 4225 0 R 4226 0 R 4227 0 R 4228 0 R 4229 0 R 4230 0 R 4231 0 R 4232 0 R 4233 0 R 4234 0 R 4235 0 R 4236 0 R 4237 0 R 4238 0 R 4239 0 R 4240 0 R 4241 0 R 4242 0 R 4243 0 R 4244 0 R 4245 0 R 4246 0 R 4247 0 R 4248 0 R 4249 0 R 4250 0 R 4251 0 R 4252 0 R 4253 0 R 4254 0 R 4255 0 R 4256 0 R 4257 0 R 4258 0 R 4259 0 R 4260 0 R 4261 0 R 4262 0 R 4263 0 R 4264 0 R 4265 0 R 4266 0 R 4267 0 R 4268 0 R 4269 0 R 4270 0 R 4271 0 R 4272 0 R 4273 0 R 4274 0 R 4275 0 R 4276 0 R 4277 0 R 4278 0 R 4279 0 R 4280 0 R 4281 0 R 4282 0 R 4283 0 R 4284 0 R 4285 0 R 4286 0 R 4287 0 R 4288 0 R 4289 0 R 4290 0 R 4291 0 R 4292 0 R 4293 0 R 4294 0 R 4295 0 R]
+/Annots [4221 0 R 4222 0 R 4223 0 R 4224 0 R 4225 0 R 4226 0 R 4227 0 R 4228 0 R 4229 0 R 4230 0 R 4231 0 R 4232 0 R 4233 0 R 4234 0 R 4235 0 R 4236 0 R 4237 0 R 4238 0 R 4239 0 R 4240 0 R 4241 0 R 4242 0 R 4243 0 R 4244 0 R 4245 0 R 4246 0 R 4247 0 R 4248 0 R 4249 0 R 4250 0 R 4251 0 R 4252 0 R 4253 0 R 4254 0 R 4255 0 R 4256 0 R 4257 0 R 4258 0 R 4259 0 R 4260 0 R 4261 0 R 4262 0 R 4263 0 R 4264 0 R 4265 0 R 4266 0 R 4267 0 R 4268 0 R 4269 0 R 4270 0 R 4271 0 R 4272 0 R 4273 0 R 4274 0 R 4275 0 R 4276 0 R 4277 0 R 4278 0 R 4279 0 R 4280 0 R 4281 0 R 4282 0 R 4283 0 R 4284 0 R 4285 0 R 4286 0 R 4287 0 R 4288 0 R 4289 0 R 4290 0 R 4291 0 R 4292 0 R 4293 0 R 4294 0 R 4295 0 R 4296 0 R 4297 0 R 4298 0 R 4299 0 R 4300 0 R 4301 0 R 4302 0 R]
 >>
 endobj
 15 0 obj
@@ -5084,7 +5084,7 @@ endobj
 /Font << /F1.0 10 0 R
 >>
 >>
-/Annots [4296 0 R 4297 0 R 4298 0 R 4299 0 R 4300 0 R 4301 0 R 4302 0 R 4303 0 R 4304 0 R 4305 0 R 4306 0 R 4307 0 R 4308 0 R 4309 0 R 4310 0 R 4311 0 R 4312 0 R 4313 0 R 4314 0 R 4315 0 R 4316 0 R 4317 0 R 4318 0 R 4319 0 R 4320 0 R 4321 0 R 4322 0 R 4323 0 R 4324 0 R 4325 0 R 4326 0 R 4327 0 R 4328 0 R 4329 0 R 4330 0 R 4331 0 R 4332 0 R 4333 0 R 4334 0 R 4335 0 R 4336 0 R 4337 0 R 4338 0 R 4339 0 R 4340 0 R 4341 0 R 4342 0 R 4343 0 R 4344 0 R 4345 0 R 4346 0 R 4347 0 R 4348 0 R 4349 0 R 4350 0 R 4351 0 R 4352 0 R 4353 0 R 4354 0 R 4355 0 R 4356 0 R 4357 0 R 4358 0 R 4359 0 R 4360 0 R 4361 0 R 4362 0 R 4363 0 R 4364 0 R 4365 0 R 4366 0 R 4367 0 R 4368 0 R 4369 0 R 4370 0 R 4371 0 R 4372 0 R 4373 0 R 4374 0 R 4375 0 R 4376 0 R 4377 0 R]
+/Annots [4303 0 R 4304 0 R 4305 0 R 4306 0 R 4307 0 R 4308 0 R 4309 0 R 4310 0 R 4311 0 R 4312 0 R 4313 0 R 4314 0 R 4315 0 R 4316 0 R 4317 0 R 4318 0 R 4319 0 R 4320 0 R 4321 0 R 4322 0 R 4323 0 R 4324 0 R 4325 0 R 4326 0 R 4327 0 R 4328 0 R 4329 0 R 4330 0 R 4331 0 R 4332 0 R 4333 0 R 4334 0 R 4335 0 R 4336 0 R 4337 0 R 4338 0 R 4339 0 R 4340 0 R 4341 0 R 4342 0 R 4343 0 R 4344 0 R 4345 0 R 4346 0 R 4347 0 R 4348 0 R 4349 0 R 4350 0 R 4351 0 R 4352 0 R 4353 0 R 4354 0 R 4355 0 R 4356 0 R 4357 0 R 4358 0 R 4359 0 R 4360 0 R 4361 0 R 4362 0 R 4363 0 R 4364 0 R 4365 0 R 4366 0 R 4367 0 R 4368 0 R 4369 0 R 4370 0 R 4371 0 R 4372 0 R 4373 0 R 4374 0 R 4375 0 R 4376 0 R 4377 0 R 4378 0 R 4379 0 R 4380 0 R 4381 0 R 4382 0 R 4383 0 R 4384 0 R]
 >>
 endobj
 17 0 obj
@@ -6751,7 +6751,7 @@ endobj
 /Font << /F1.0 10 0 R
 >>
 >>
-/Annots [4378 0 R 4379 0 R 4380 0 R 4381 0 R 4382 0 R 4383 0 R 4384 0 R 4385 0 R 4386 0 R 4387 0 R 4388 0 R 4389 0 R 4390 0 R 4391 0 R 4392 0 R 4393 0 R 4394 0 R 4395 0 R 4396 0 R 4397 0 R 4398 0 R 4399 0 R 4400 0 R 4401 0 R 4402 0 R 4403 0 R 4404 0 R 4405 0 R 4406 0 R 4407 0 R 4408 0 R 4409 0 R 4410 0 R 4411 0 R 4412 0 R 4413 0 R 4414 0 R 4415 0 R 4416 0 R 4417 0 R 4418 0 R 4419 0 R 4420 0 R 4421 0 R 4422 0 R 4423 0 R 4424 0 R 4425 0 R 4426 0 R 4427 0 R 4428 0 R 4429 0 R 4430 0 R 4431 0 R 4432 0 R 4433 0 R 4434 0 R 4435 0 R 4436 0 R 4437 0 R 4438 0 R 4439 0 R 4440 0 R 4441 0 R 4442 0 R 4443 0 R 4444 0 R 4445 0 R 4446 0 R 4447 0 R 4448 0 R 4449 0 R 4450 0 R 4451 0 R 4452 0 R 4453 0 R 4454 0 R 4455 0 R 4456 0 R 4457 0 R 4458 0 R 4459 0 R]
+/Annots [4385 0 R 4386 0 R 4387 0 R 4388 0 R 4389 0 R 4390 0 R 4391 0 R 4392 0 R 4393 0 R 4394 0 R 4395 0 R 4396 0 R 4397 0 R 4398 0 R 4399 0 R 4400 0 R 4401 0 R 4402 0 R 4403 0 R 4404 0 R 4405 0 R 4406 0 R 4407 0 R 4408 0 R 4409 0 R 4410 0 R 4411 0 R 4412 0 R 4413 0 R 4414 0 R 4415 0 R 4416 0 R 4417 0 R 4418 0 R 4419 0 R 4420 0 R 4421 0 R 4422 0 R 4423 0 R 4424 0 R 4425 0 R 4426 0 R 4427 0 R 4428 0 R 4429 0 R 4430 0 R 4431 0 R 4432 0 R 4433 0 R 4434 0 R 4435 0 R 4436 0 R 4437 0 R 4438 0 R 4439 0 R 4440 0 R 4441 0 R 4442 0 R 4443 0 R 4444 0 R 4445 0 R 4446 0 R 4447 0 R 4448 0 R 4449 0 R 4450 0 R 4451 0 R 4452 0 R 4453 0 R 4454 0 R 4455 0 R 4456 0 R 4457 0 R 4458 0 R 4459 0 R 4460 0 R 4461 0 R 4462 0 R 4463 0 R 4464 0 R 4465 0 R 4466 0 R]
 >>
 endobj
 19 0 obj
@@ -7276,7 +7276,7 @@ ET
 BT
 529.4315 572.916 Td
 /F1.0 10.5 Tf
-<353438> Tj
+<353439> Tj
 ET
 
 0.0 0.0 0.0 SCN
@@ -7316,7 +7316,7 @@ ET
 BT
 529.4315 554.436 Td
 /F1.0 10.5 Tf
-<353536> Tj
+<353537> Tj
 ET
 
 0.0 0.0 0.0 SCN
@@ -7356,7 +7356,7 @@ ET
 BT
 529.4315 535.956 Td
 /F1.0 10.5 Tf
-<353538> Tj
+<353539> Tj
 ET
 
 0.0 0.0 0.0 SCN
@@ -7396,7 +7396,7 @@ ET
 BT
 529.4315 517.476 Td
 /F1.0 10.5 Tf
-<353632> Tj
+<353633> Tj
 ET
 
 0.0 0.0 0.0 SCN
@@ -7436,7 +7436,7 @@ ET
 BT
 529.4315 498.996 Td
 /F1.0 10.5 Tf
-<353633> Tj
+<353634> Tj
 ET
 
 0.0 0.0 0.0 SCN
@@ -7476,7 +7476,7 @@ ET
 BT
 529.4315 480.516 Td
 /F1.0 10.5 Tf
-<353637> Tj
+<353638> Tj
 ET
 
 0.0 0.0 0.0 SCN
@@ -7516,7 +7516,7 @@ ET
 BT
 529.4315 462.036 Td
 /F1.0 10.5 Tf
-<353638> Tj
+<353639> Tj
 ET
 
 0.0 0.0 0.0 SCN
@@ -7556,7 +7556,7 @@ ET
 BT
 529.4315 443.556 Td
 /F1.0 10.5 Tf
-<353731> Tj
+<353732> Tj
 ET
 
 0.0 0.0 0.0 SCN
@@ -7596,7 +7596,7 @@ ET
 BT
 529.4315 425.076 Td
 /F1.0 10.5 Tf
-<353736> Tj
+<353737> Tj
 ET
 
 0.0 0.0 0.0 SCN
@@ -7636,7 +7636,7 @@ ET
 BT
 529.4315 406.596 Td
 /F1.0 10.5 Tf
-<353737> Tj
+<353738> Tj
 ET
 
 0.0 0.0 0.0 SCN
@@ -7676,7 +7676,7 @@ ET
 BT
 529.4315 388.116 Td
 /F1.0 10.5 Tf
-<353830> Tj
+<353831> Tj
 ET
 
 0.0 0.0 0.0 SCN
@@ -7716,7 +7716,7 @@ ET
 BT
 529.4315 369.636 Td
 /F1.0 10.5 Tf
-<353831> Tj
+<353832> Tj
 ET
 
 0.0 0.0 0.0 SCN
@@ -7756,7 +7756,7 @@ ET
 BT
 529.4315 351.156 Td
 /F1.0 10.5 Tf
-<353834> Tj
+<353835> Tj
 ET
 
 0.0 0.0 0.0 SCN
@@ -7796,7 +7796,7 @@ ET
 BT
 529.4315 332.676 Td
 /F1.0 10.5 Tf
-<353837> Tj
+<353838> Tj
 ET
 
 0.0 0.0 0.0 SCN
@@ -7836,7 +7836,7 @@ ET
 BT
 529.4315 314.196 Td
 /F1.0 10.5 Tf
-<353935> Tj
+<353936> Tj
 ET
 
 0.0 0.0 0.0 SCN
@@ -7876,7 +7876,7 @@ ET
 BT
 529.4315 295.716 Td
 /F1.0 10.5 Tf
-<353936> Tj
+<353937> Tj
 ET
 
 0.0 0.0 0.0 SCN
@@ -7927,7 +7927,7 @@ ET
 BT
 529.4315 277.236 Td
 /F1.0 10.5 Tf
-<353937> Tj
+<353938> Tj
 ET
 
 0.0 0.0 0.0 SCN
@@ -7967,7 +7967,7 @@ ET
 BT
 529.4315 258.756 Td
 /F1.0 10.5 Tf
-<353938> Tj
+<353939> Tj
 ET
 
 0.0 0.0 0.0 SCN
@@ -8007,7 +8007,7 @@ ET
 BT
 529.4315 240.276 Td
 /F1.0 10.5 Tf
-<363132> Tj
+<363133> Tj
 ET
 
 0.0 0.0 0.0 SCN
@@ -8047,7 +8047,7 @@ ET
 BT
 529.4315 221.796 Td
 /F1.0 10.5 Tf
-<363236> Tj
+<363237> Tj
 ET
 
 0.0 0.0 0.0 SCN
@@ -8087,7 +8087,7 @@ ET
 BT
 529.4315 203.316 Td
 /F1.0 10.5 Tf
-<363237> Tj
+<363238> Tj
 ET
 
 0.0 0.0 0.0 SCN
@@ -8127,7 +8127,7 @@ ET
 BT
 529.4315 184.836 Td
 /F1.0 10.5 Tf
-<363239> Tj
+<363330> Tj
 ET
 
 0.0 0.0 0.0 SCN
@@ -8167,7 +8167,7 @@ ET
 BT
 529.4315 166.356 Td
 /F1.0 10.5 Tf
-<363331> Tj
+<363332> Tj
 ET
 
 0.0 0.0 0.0 SCN
@@ -8207,7 +8207,7 @@ ET
 BT
 529.4315 147.876 Td
 /F1.0 10.5 Tf
-<363333> Tj
+<363334> Tj
 ET
 
 0.0 0.0 0.0 SCN
@@ -8247,7 +8247,7 @@ ET
 BT
 529.4315 129.396 Td
 /F1.0 10.5 Tf
-<363335> Tj
+<363336> Tj
 ET
 
 0.0 0.0 0.0 SCN
@@ -8287,7 +8287,7 @@ ET
 BT
 529.4315 110.916 Td
 /F1.0 10.5 Tf
-<363336> Tj
+<363337> Tj
 ET
 
 0.0 0.0 0.0 SCN
@@ -8327,7 +8327,7 @@ ET
 BT
 529.4315 92.436 Td
 /F1.0 10.5 Tf
-<363338> Tj
+<363339> Tj
 ET
 
 0.0 0.0 0.0 SCN
@@ -8367,7 +8367,7 @@ ET
 BT
 529.4315 73.956 Td
 /F1.0 10.5 Tf
-<363430> Tj
+<363431> Tj
 ET
 
 0.0 0.0 0.0 SCN
@@ -8407,7 +8407,7 @@ ET
 BT
 529.4315 55.476 Td
 /F1.0 10.5 Tf
-<363431> Tj
+<363432> Tj
 ET
 
 0.0 0.0 0.0 SCN
@@ -8429,7 +8429,7 @@ endobj
 /Font << /F1.0 10 0 R
 >>
 >>
-/Annots [4460 0 R 4461 0 R 4462 0 R 4463 0 R 4464 0 R 4465 0 R 4466 0 R 4467 0 R 4468 0 R 4469 0 R 4470 0 R 4471 0 R 4472 0 R 4473 0 R 4474 0 R 4475 0 R 4476 0 R 4477 0 R 4478 0 R 4479 0 R 4480 0 R 4481 0 R 4482 0 R 4483 0 R 4484 0 R 4485 0 R 4486 0 R 4487 0 R 4488 0 R 4489 0 R 4490 0 R 4491 0 R 4492 0 R 4493 0 R 4494 0 R 4495 0 R 4496 0 R 4497 0 R 4498 0 R 4499 0 R 4500 0 R 4501 0 R 4502 0 R 4503 0 R 4504 0 R 4505 0 R 4506 0 R 4507 0 R 4508 0 R 4509 0 R 4510 0 R 4511 0 R 4512 0 R 4513 0 R 4514 0 R 4515 0 R 4516 0 R 4517 0 R 4518 0 R 4519 0 R 4520 0 R 4521 0 R 4522 0 R 4523 0 R 4524 0 R 4525 0 R 4526 0 R 4527 0 R 4528 0 R 4529 0 R 4530 0 R 4531 0 R 4532 0 R 4533 0 R 4534 0 R 4535 0 R 4536 0 R 4537 0 R 4538 0 R 4539 0 R 4540 0 R 4541 0 R 4542 0 R 4543 0 R]
+/Annots [4467 0 R 4468 0 R 4469 0 R 4470 0 R 4471 0 R 4472 0 R 4473 0 R 4474 0 R 4475 0 R 4476 0 R 4477 0 R 4478 0 R 4479 0 R 4480 0 R 4481 0 R 4482 0 R 4483 0 R 4484 0 R 4485 0 R 4486 0 R 4487 0 R 4488 0 R 4489 0 R 4490 0 R 4491 0 R 4492 0 R 4493 0 R 4494 0 R 4495 0 R 4496 0 R 4497 0 R 4498 0 R 4499 0 R 4500 0 R 4501 0 R 4502 0 R 4503 0 R 4504 0 R 4505 0 R 4506 0 R 4507 0 R 4508 0 R 4509 0 R 4510 0 R 4511 0 R 4512 0 R 4513 0 R 4514 0 R 4515 0 R 4516 0 R 4517 0 R 4518 0 R 4519 0 R 4520 0 R 4521 0 R 4522 0 R 4523 0 R 4524 0 R 4525 0 R 4526 0 R 4527 0 R 4528 0 R 4529 0 R 4530 0 R 4531 0 R 4532 0 R 4533 0 R 4534 0 R 4535 0 R 4536 0 R 4537 0 R 4538 0 R 4539 0 R 4540 0 R 4541 0 R 4542 0 R 4543 0 R 4544 0 R 4545 0 R 4546 0 R 4547 0 R 4548 0 R 4549 0 R 4550 0 R]
 >>
 endobj
 21 0 obj
@@ -8474,7 +8474,7 @@ ET
 BT
 529.4315 794.676 Td
 /F1.0 10.5 Tf
-<363438> Tj
+<363439> Tj
 ET
 
 0.0 0.0 0.0 SCN
@@ -8514,7 +8514,7 @@ ET
 BT
 529.4315 776.196 Td
 /F1.0 10.5 Tf
-<363439> Tj
+<363530> Tj
 ET
 
 0.0 0.0 0.0 SCN
@@ -8554,7 +8554,7 @@ ET
 BT
 529.4315 757.716 Td
 /F1.0 10.5 Tf
-<363530> Tj
+<363531> Tj
 ET
 
 0.0 0.0 0.0 SCN
@@ -8594,7 +8594,7 @@ ET
 BT
 529.4315 739.236 Td
 /F1.0 10.5 Tf
-<363531> Tj
+<363532> Tj
 ET
 
 0.0 0.0 0.0 SCN
@@ -8634,7 +8634,7 @@ ET
 BT
 529.4315 720.756 Td
 /F1.0 10.5 Tf
-<363532> Tj
+<363533> Tj
 ET
 
 0.0 0.0 0.0 SCN
@@ -8674,7 +8674,7 @@ ET
 BT
 529.4315 702.276 Td
 /F1.0 10.5 Tf
-<363533> Tj
+<363534> Tj
 ET
 
 0.0 0.0 0.0 SCN
@@ -8714,7 +8714,7 @@ ET
 BT
 529.4315 683.796 Td
 /F1.0 10.5 Tf
-<363634> Tj
+<363635> Tj
 ET
 
 0.0 0.0 0.0 SCN
@@ -8754,7 +8754,7 @@ ET
 BT
 529.4315 665.316 Td
 /F1.0 10.5 Tf
-<363637> Tj
+<363638> Tj
 ET
 
 0.0 0.0 0.0 SCN
@@ -8794,7 +8794,7 @@ ET
 BT
 529.4315 646.836 Td
 /F1.0 10.5 Tf
-<363731> Tj
+<363732> Tj
 ET
 
 0.0 0.0 0.0 SCN
@@ -8834,7 +8834,7 @@ ET
 BT
 529.4315 628.356 Td
 /F1.0 10.5 Tf
-<363737> Tj
+<363738> Tj
 ET
 
 0.0 0.0 0.0 SCN
@@ -8874,7 +8874,7 @@ ET
 BT
 529.4315 609.876 Td
 /F1.0 10.5 Tf
-<363838> Tj
+<363839> Tj
 ET
 
 0.0 0.0 0.0 SCN
@@ -8914,7 +8914,7 @@ ET
 BT
 529.4315 591.396 Td
 /F1.0 10.5 Tf
-<363839> Tj
+<363930> Tj
 ET
 
 0.0 0.0 0.0 SCN
@@ -8954,7 +8954,7 @@ ET
 BT
 529.4315 572.916 Td
 /F1.0 10.5 Tf
-<363930> Tj
+<363931> Tj
 ET
 
 0.0 0.0 0.0 SCN
@@ -8994,7 +8994,7 @@ ET
 BT
 529.4315 554.436 Td
 /F1.0 10.5 Tf
-<363939> Tj
+<373030> Tj
 ET
 
 0.0 0.0 0.0 SCN
@@ -9034,7 +9034,7 @@ ET
 BT
 529.4315 535.956 Td
 /F1.0 10.5 Tf
-<373030> Tj
+<373031> Tj
 ET
 
 0.0 0.0 0.0 SCN
@@ -9074,7 +9074,7 @@ ET
 BT
 529.4315 517.476 Td
 /F1.0 10.5 Tf
-<373031> Tj
+<373032> Tj
 ET
 
 0.0 0.0 0.0 SCN
@@ -9114,7 +9114,7 @@ ET
 BT
 529.4315 498.996 Td
 /F1.0 10.5 Tf
-<373032> Tj
+<373033> Tj
 ET
 
 0.0 0.0 0.0 SCN
@@ -9154,7 +9154,7 @@ ET
 BT
 529.4315 480.516 Td
 /F1.0 10.5 Tf
-<373033> Tj
+<373034> Tj
 ET
 
 0.0 0.0 0.0 SCN
@@ -9194,7 +9194,7 @@ ET
 BT
 529.4315 462.036 Td
 /F1.0 10.5 Tf
-<373035> Tj
+<373036> Tj
 ET
 
 0.0 0.0 0.0 SCN
@@ -9234,7 +9234,7 @@ ET
 BT
 529.4315 443.556 Td
 /F1.0 10.5 Tf
-<373036> Tj
+<373037> Tj
 ET
 
 0.0 0.0 0.0 SCN
@@ -9274,7 +9274,7 @@ ET
 BT
 529.4315 425.076 Td
 /F1.0 10.5 Tf
-<373037> Tj
+<373038> Tj
 ET
 
 0.0 0.0 0.0 SCN
@@ -9296,7 +9296,7 @@ endobj
 /Font << /F1.0 10 0 R
 >>
 >>
-/Annots [4544 0 R 4545 0 R 4546 0 R 4547 0 R 4548 0 R 4549 0 R 4550 0 R 4551 0 R 4552 0 R 4553 0 R 4554 0 R 4555 0 R 4556 0 R 4557 0 R 4558 0 R 4559 0 R 4560 0 R 4561 0 R 4562 0 R 4563 0 R 4564 0 R 4565 0 R 4566 0 R 4567 0 R 4568 0 R 4569 0 R 4570 0 R 4571 0 R 4572 0 R 4573 0 R 4574 0 R 4575 0 R 4576 0 R 4577 0 R 4578 0 R 4579 0 R 4580 0 R 4581 0 R 4582 0 R 4583 0 R 4584 0 R 4585 0 R]
+/Annots [4551 0 R 4552 0 R 4553 0 R 4554 0 R 4555 0 R 4556 0 R 4557 0 R 4558 0 R 4559 0 R 4560 0 R 4561 0 R 4562 0 R 4563 0 R 4564 0 R 4565 0 R 4566 0 R 4567 0 R 4568 0 R 4569 0 R 4570 0 R 4571 0 R 4572 0 R 4573 0 R 4574 0 R 4575 0 R 4576 0 R 4577 0 R 4578 0 R 4579 0 R 4580 0 R 4581 0 R 4582 0 R 4583 0 R 4584 0 R 4585 0 R 4586 0 R 4587 0 R 4588 0 R 4589 0 R 4590 0 R 4591 0 R 4592 0 R]
 >>
 endobj
 23 0 obj
@@ -10108,7 +10108,7 @@ endobj
 /F4.0 35 0 R
 /F1.1 38 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 /Annots [30 0 R 31 0 R 32 0 R 34 0 R 36 0 R 37 0 R 39 0 R 40 0 R 41 0 R]
@@ -10123,7 +10123,7 @@ endobj
 >>
 endobj
 27 0 obj
-<< /Kids [640 0 R 3612 0 R 1903 0 R 641 0 R 3539 0 R 1148 0 R 2519 0 R]
+<< /Kids [640 0 R 3619 0 R 1903 0 R 641 0 R 3546 0 R 1148 0 R 2519 0 R]
 >>
 endobj
 28 0 obj
@@ -10133,11 +10133,11 @@ endobj
 << /Type /Font
 /BaseFont /358635+NotoSerif-Bold
 /Subtype /TrueType
-/FontDescriptor 4820 0 R
+/FontDescriptor 4827 0 R
 /FirstChar 32
 /LastChar 255
-/Widths 4822 0 R
-/ToUnicode 4821 0 R
+/Widths 4829 0 R
+/ToUnicode 4828 0 R
 >>
 endobj
 30 0 obj
@@ -10177,11 +10177,11 @@ endobj
 << /Type /Font
 /BaseFont /260f03+NotoSerif-Italic
 /Subtype /TrueType
-/FontDescriptor 4824 0 R
+/FontDescriptor 4831 0 R
 /FirstChar 32
 /LastChar 255
-/Widths 4826 0 R
-/ToUnicode 4825 0 R
+/Widths 4833 0 R
+/ToUnicode 4832 0 R
 >>
 endobj
 34 0 obj
@@ -10199,11 +10199,11 @@ endobj
 << /Type /Font
 /BaseFont /c7d210+mplus1mn-regular
 /Subtype /TrueType
-/FontDescriptor 4828 0 R
+/FontDescriptor 4835 0 R
 /FirstChar 32
 /LastChar 255
-/Widths 4830 0 R
-/ToUnicode 4829 0 R
+/Widths 4837 0 R
+/ToUnicode 4836 0 R
 >>
 endobj
 36 0 obj
@@ -10229,11 +10229,11 @@ endobj
 << /Type /Font
 /BaseFont /34c70d+NotoSerif
 /Subtype /TrueType
-/FontDescriptor 4832 0 R
+/FontDescriptor 4839 0 R
 /FirstChar 32
 /LastChar 255
-/Widths 4834 0 R
-/ToUnicode 4833 0 R
+/Widths 4841 0 R
+/ToUnicode 4840 0 R
 >>
 endobj
 39 0 obj
@@ -10667,7 +10667,7 @@ endobj
 /F5.1 45 0 R
 /F2.0 29 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 >>
@@ -10676,11 +10676,11 @@ endobj
 << /Type /Font
 /BaseFont /26ec65+FontAwesome
 /Subtype /TrueType
-/FontDescriptor 4836 0 R
+/FontDescriptor 4843 0 R
 /FirstChar 32
 /LastChar 255
-/Widths 4838 0 R
-/ToUnicode 4837 0 R
+/Widths 4845 0 R
+/ToUnicode 4844 0 R
 >>
 endobj
 46 0 obj
@@ -10738,7 +10738,7 @@ endobj
 /Font << /F2.0 29 0 R
 /F1.0 10 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 >>
@@ -10823,7 +10823,7 @@ endobj
 /Font << /F2.0 29 0 R
 /F1.0 10 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 /Annots [52 0 R]
@@ -12396,7 +12396,7 @@ endobj
 /F1.1 38 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 /Annots [57 0 R 59 0 R]
@@ -13516,7 +13516,7 @@ endobj
 /F1.0 10 0 R
 /F5.1 45 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 >>
@@ -14395,7 +14395,7 @@ endobj
 /F3.0 33 0 R
 /F5.1 45 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 /Annots [64 0 R]
@@ -15185,7 +15185,7 @@ endobj
 /Font << /F4.0 35 0 R
 /F1.0 10 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 >>
@@ -15904,7 +15904,7 @@ endobj
 /Font << /F4.0 35 0 R
 /F1.0 10 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 >>
@@ -16780,7 +16780,7 @@ endobj
 /F2.0 29 0 R
 /F5.1 45 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 /Annots [73 0 R 74 0 R 75 0 R 76 0 R]
@@ -17770,7 +17770,7 @@ endobj
 /F1.0 10 0 R
 /F3.0 33 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 /Annots [79 0 R]
@@ -18693,7 +18693,7 @@ endobj
 /F4.0 35 0 R
 /F3.0 33 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 >>
@@ -20204,7 +20204,7 @@ endobj
 /F4.0 35 0 R
 /F5.1 45 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 /Annots [84 0 R 86 0 R]
@@ -21552,7 +21552,7 @@ endobj
 /F4.0 35 0 R
 /F3.0 33 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 /Annots [90 0 R]
@@ -22626,7 +22626,7 @@ endobj
 /F1.0 10 0 R
 /F3.0 33 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 >>
@@ -23310,7 +23310,7 @@ endobj
 /F1.0 10 0 R
 /F3.0 33 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 >>
@@ -24101,7 +24101,7 @@ endobj
 /F1.0 10 0 R
 /F2.0 29 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 /Annots [97 0 R 98 0 R 99 0 R 101 0 R]
@@ -24330,7 +24330,7 @@ endobj
 /Font << /F2.0 29 0 R
 /F1.0 10 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 /Annots [105 0 R 106 0 R 107 0 R]
@@ -25194,7 +25194,7 @@ endobj
 /F4.0 35 0 R
 /F5.1 45 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 /Annots [111 0 R 112 0 R]
@@ -25474,7 +25474,7 @@ endobj
 /F1.0 10 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 >>
@@ -26954,7 +26954,7 @@ endobj
 /F5.1 45 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 /Annots [119 0 R 120 0 R 121 0 R 122 0 R 123 0 R 124 0 R 125 0 R 127 0 R 128 0 R 129 0 R 130 0 R]
@@ -28021,7 +28021,7 @@ endobj
 /F2.0 29 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 /Annots [133 0 R 135 0 R]
@@ -28759,7 +28759,7 @@ endobj
 /F2.0 29 0 R
 /F5.1 45 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 /Annots [138 0 R 140 0 R 141 0 R 142 0 R]
@@ -31165,7 +31165,7 @@ endobj
 /F2.0 29 0 R
 /F5.1 45 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 /Annots [145 0 R 146 0 R 147 0 R 148 0 R 149 0 R 150 0 R 151 0 R]
@@ -31981,7 +31981,7 @@ endobj
 /F2.0 29 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 /Annots [157 0 R 158 0 R]
@@ -31992,12 +31992,12 @@ endobj
 endobj
 155 0 obj
 << /Limits [(__anchor-top) (adding.new.node)]
-/Names [(__anchor-top) 25 0 R (__indexterm-7530260) 3504 0 R (__indexterm-7532664) 3506 0 R (__indexterm-7534212) 3508 0 R (__indexterm-7536732) 3511 0 R (acid) 921 0 R (acl) 3316 0 R (add-metric-name-and-function-to-hadoop-compat-interface) 3606 0 R (add-the-implementation-to-both-hadoop-1-and-hadoop-2-compat-modules) 3608 0 R (add.metrics) 3604 0 R (adding-a-new-chapter-to-the-hbase-reference-guide) 3842 0 R (adding.new.node) 3069 0 R]
+/Names [(__anchor-top) 25 0 R (__indexterm-7547646) 3511 0 R (__indexterm-7550050) 3513 0 R (__indexterm-7551598) 3515 0 R (__indexterm-7554118) 3518 0 R (acid) 921 0 R (acl) 3323 0 R (add-metric-name-and-function-to-hadoop-compat-interface) 3613 0 R (add-the-implementation-to-both-hadoop-1-and-hadoop-2-compat-modules) 3615 0 R (add.metrics) 3611 0 R (adding-a-new-chapter-to-the-hbase-reference-guide) 3849 0 R (adding.new.node) 3069 0 R]
 >>
 endobj
 156 0 obj
 << /Limits [(io.storefile.bloom.block.size) (jdk-version-requirements)]
-/Names [(io.storefile.bloom.block.size) 353 0 R (irbrc) 785 0 R (irc) 3347 0 R (isolate-system-tables) 3313 0 R (java) 118 0 R (java-2) 1906 0 R (java-3) 1911 0 R (java.client.config) 513 0 R (jdk-issues) 2888 0 R (jdk-version-requirements) 56 0 R]
+/Names [(io.storefile.bloom.block.size) 353 0 R (irbrc) 785 0 R (irc) 3354 0 R (isolate-system-tables) 3320 0 R (java) 118 0 R (java-2) 1906 0 R (java-3) 1911 0 R (java.client.config) 513 0 R (jdk-issues) 2888 0 R (jdk-version-requirements) 56 0 R]
 >>
 endobj
 157 0 obj
@@ -33136,7 +33136,7 @@ endobj
 /F4.0 35 0 R
 /F1.1 38 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 /Annots [163 0 R 164 0 R 166 0 R]
@@ -33936,7 +33936,7 @@ endobj
 /F5.1 45 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 /Annots [171 0 R 172 0 R 173 0 R 175 0 R 176 0 R 178 0 R 179 0 R]
@@ -35408,7 +35408,7 @@ endobj
 /F1.0 10 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 /Annots [182 0 R 183 0 R]
@@ -35833,7 +35833,7 @@ endobj
 /F4.0 35 0 R
 /F3.0 33 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 >>
@@ -36489,7 +36489,7 @@ endobj
 /F3.0 33 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 /Annots [189 0 R]
@@ -37256,7 +37256,7 @@ endobj
 /F4.0 35 0 R
 /F1.1 38 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 /Annots [194 0 R]
@@ -37787,7 +37787,7 @@ endobj
 /F3.0 33 0 R
 /F1.0 10 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 >>
@@ -37803,7 +37803,7 @@ endobj
 endobj
 204 0 obj
 << /Limits [(getshortmidpointkey-an-optimization-for-data-index-block) (handling-of-errors-during-log-splitting)]
-/Names [(getshortmidpointkey-an-optimization-for-data-index-block) 4021 0 R (getting.involved) 3336 0 R (getting_started) 48 0 R (git.best.practices) 3609 0 R (git.patch.flow) 3659 0 R (goals) 4115 0 R (guide-for-hbase-committers) 3636 0 R (guidelines-for-deploying-a-coprocessor) 2357 0 R (guidelines-for-reporting-effective-issues) 3354 0 R (hadoop) 139 0 R (hadoop.native.lib) 3939 0 R (hadoop.policy.file) 380 0 R (handling-of-errors-during-log-splitting) 1650 0 R]
+/Names [(getshortmidpointkey-an-optimization-for-data-index-block) 4028 0 R (getting.involved) 3343 0 R (getting_started) 48 0 R (git.best.practices) 3616 0 R (git.patch.flow) 3666 0 R (goals) 4122 0 R (guide-for-hbase-committers) 3643 0 R (guidelines-for-deploying-a-coprocessor) 2357 0 R (guidelines-for-reporting-effective-issues) 3361 0 R (hadoop) 139 0 R (hadoop.native.lib) 3946 0 R (hadoop.policy.file) 380 0 R (handling-of-errors-during-log-splitting) 1650 0 R]
 >>
 endobj
 205 0 obj
@@ -38333,7 +38333,7 @@ endobj
 /F3.0 33 0 R
 /F1.0 10 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 >>
@@ -38855,7 +38855,7 @@ endobj
 /F1.0 10 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 >>
@@ -39490,7 +39490,7 @@ endobj
 /F3.0 33 0 R
 /F1.0 10 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 >>
@@ -39999,7 +39999,7 @@ endobj
 /F3.0 33 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 >>
@@ -40530,7 +40530,7 @@ endobj
 /F3.0 33 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 >>
@@ -41109,7 +41109,7 @@ endobj
 /F3.0 33 0 R
 /F1.0 10 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 /Annots [250 0 R 251 0 R]
@@ -41676,7 +41676,7 @@ endobj
 /F1.0 10 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 /Annots [259 0 R 260 0 R 262 0 R 263 0 R]
@@ -41740,7 +41740,7 @@ endobj
 endobj
 266 0 obj
 << /Limits [(hbase.table.lock.enable) (hbase.tmp.dir)]
-/Names [(hbase.table.lock.enable) 405 0 R (hbase.table.max.rowsize) 406 0 R (hbase.tags) 1340 0 R (hbase.tests) 3486 0 R (hbase.tests.categories) 3531 0 R (hbase.tests.cluster) 3533 0 R (hbase.tests.example.code) 3534 0 R (hbase.tests.rules) 3527 0 R (hbase.tests.sleeps) 3532 0 R (hbase.tests.writing) 3526 0 R (hbase.thrift.maxQueuedRequests) 412 0 R (hbase.thrift.maxWorkerThreads) 411 0 R (hbase.thrift.minWorkerThreads) 410 0 R (hbase.tmp.dir) 196 0 R]
+/Names [(hbase.table.lock.enable) 405 0 R (hbase.table.max.rowsize) 406 0 R (hbase.tags) 1340 0 R (hbase.tests) 3493 0 R (hbase.tests.categories) 3538 0 R (hbase.tests.cluster) 3540 0 R (hbase.tests.example.code) 3541 0 R (hbase.tests.rules) 3534 0 R (hbase.tests.sleeps) 3539 0 R (hbase.tests.writing) 3533 0 R (hbase.thrift.maxQueuedRequests) 412 0 R (hbase.thrift.maxWorkerThreads) 411 0 R (hbase.thrift.minWorkerThreads) 410 0 R (hbase.tmp.dir) 196 0 R]
 >>
 endobj
 267 0 obj
@@ -42296,7 +42296,7 @@ endobj
 /F1.0 10 0 R
 /F1.1 38 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 >>
@@ -42891,7 +42891,7 @@ endobj
 /F4.0 35 0 R
 /F1.0 10 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 /Annots [283 0 R 284 0 R]
@@ -42911,7 +42911,7 @@ endobj
 endobj
 282 0 obj
 << /Limits [(hbase.cluster.distributed) (hbase.data.umask.enable)]
-/Names [(hbase.cluster.distributed) 198 0 R (hbase.column.max.version) 431 0 R (hbase.commit.msg.format) 3784 0 R (hbase.coordinated.state.manager.class) 474 0 R (hbase.coprocessor.abortonerror) 396 0 R (hbase.coprocessor.enabled) 389 0 R (hbase.coprocessor.master.classes) 395 0 R (hbase.coprocessor.region.classes) 394 0 R (hbase.coprocessor.user.enabled) 391 0 R (hbase.data.umask) 422 0 R (hbase.data.umask.enable) 421 0 R]
+/Names [(hbase.cluster.distributed) 198 0 R (hbase.column.max.version) 431 0 R (hbase.commit.msg.format) 3791 0 R (hbase.coordinated.state.manager.class) 474 0 R (hbase.coprocessor.abortonerror) 396 0 R (hbase.coprocessor.enabled) 389 0 R (hbase.coprocessor.master.classes) 395 0 R (hbase.coprocessor.region.classes) 394 0 R (hbase.coprocessor.user.enabled) 391 0 R (hbase.data.umask) 422 0 R (hbase.data.umask.enable) 421 0 R]
 >>
 endobj
 283 0 obj
@@ -43457,7 +43457,7 @@ endobj
 /F3.0 33 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 >>
@@ -43952,7 +43952,7 @@ endobj
 /F3.0 33 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 >>
@@ -44524,7 +44524,7 @@ endobj
 /F3.0 33 0 R
 /F1.0 10 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 >>
@@ -45089,7 +45089,7 @@ endobj
 /F4.0 35 0 R
 /F1.0 10 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 >>
@@ -45694,7 +45694,7 @@ endobj
 /F4.0 35 0 R
 /F1.0 10 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 >>
@@ -46291,7 +46291,7 @@ endobj
 /F4.0 35 0 R
 /F1.0 10 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 >>
@@ -46834,7 +46834,7 @@ endobj
 /F4.0 35 0 R
 /F1.0 10 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 >>
@@ -47345,7 +47345,7 @@ endobj
 /F3.0 33 0 R
 /F1.0 10 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 >>
@@ -47920,7 +47920,7 @@ endobj
 /F3.0 33 0 R
 /F1.0 10 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 /Annots [347 0 R 351 0 R]
@@ -47968,7 +47968,7 @@ endobj
 endobj
 354 0 obj
 << /Limits [(quota) (regions.arch)]
-/Names [(quota) 3174 0 R (read-api-and-usage) 1907 0 R (read-hbase-shell-commands-from-a-command-file) 771 0 R (reading-filtering-and-sending-edits) 3154 0 R (reading_cells_with_labels) 1394 0 R (recommended.configurations.hdfs) 543 0 R (recommended_configurations) 538 0 R (recommended_configurations.zk) 539 0 R (region-overlap-repairs) 3897 0 R (region-replication-for-meta-table-s-region) 1884 0 R (regions.arch) 1681 0 R]
+/Names [(quota) 3181 0 R (read-api-and-usage) 1907 0 R (read-hbase-shell-commands-from-a-command-file) 771 0 R (reading-filtering-and-sending-edits) 3161 0 R (reading_cells_with_labels) 1394 0 R (recommended.configurations.hdfs) 543 0 R (recommended_configurations) 538 0 R (recommended_configurations.zk) 539 0 R (region-overlap-repairs) 3904 0 R (region-replication-for-meta-table-s-region) 1884 0 R (regions.arch) 1681 0 R]
 >>
 endobj
 355 0 obj
@@ -48501,7 +48501,7 @@ endobj
 /F3.0 33 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 >>
@@ -48528,7 +48528,7 @@ endobj
 endobj
 363 0 obj
 << /Limits [(hbase.regionserver.thrift.compact) (hbase.rootdir.perms)]
-/Names [(hbase.regionserver.thrift.compact) 415 0 R (hbase.regionserver.thrift.framed) 413 0 R (hbase.regionserver.thrift.framed.max_frame_size_in_mb) 414 0 R (hbase.replication.management) 3130 0 R (hbase.replication.rpc.codec) 483 0 R (hbase.replication.source.maxthreads) 484 0 R (hbase.rest-csrf.browser-useragents-regex) 467 0 R (hbase.rest.csrf.enabled) 466 0 R (hbase.rest.filter.classes) 454 0 R (hbase.rest.port) 397 0 R (hbase.rest.readonly) 398 0 R (hbase.rest.support.proxyuser) 403 0 R (hbase.rest.threads.max) 401 0 R (hbase.rest.threads.min) 402 0 R (hbase.rolling.restart) 632 0 R (hbase.rolling.upgrade) 628 0 R (hbase.rootdir) 197 0 R (hbase.rootdir.perms) 418 0 R]
+/Names [(hbase.regionserver.thrift.compact) 415 0 R (hbase.regionserver.thrift.framed) 413 0 R (hbase.regionserver.thrift.framed.max_frame_size_in_mb) 414 0 R (hbase.replication.management) 3131 0 R (hbase.replication.rpc.codec) 483 0 R (hbase.replication.source.maxthreads) 484 0 R (hbase.rest-csrf.browser-useragents-regex) 467 0 R (hbase.rest.csrf.enabled) 466 0 R (hbase.rest.filter.classes) 454 0 R (hbase.rest.port) 397 0 R (hbase.rest.readonly) 398 0 R (hbase.rest.support.proxyuser) 403 0 R (hbase.rest.threads.max) 401 0 R (hbase.rest.threads.min) 402 0 R (hbase.rolling.restart) 632 0 R (hbase.rolling.upgrade) 628 0 R (hbase.rootdir) 197 0 R (hbase.rootdir.perms) 418 0 R]
 >>
 endobj
 364 0 obj
@@ -49116,7 +49116,7 @@ endobj
 /F3.0 33 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 /Annots [367 0 R 368 0 R 370 0 R 372 0 R 373 0 R]
@@ -49691,7 +49691,7 @@ endobj
 /F1.0 10 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 >>
@@ -50240,7 +50240,7 @@ endobj
 /F3.0 33 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 >>
@@ -50787,7 +50787,7 @@ endobj
 /F4.0 35 0 R
 /F1.0 10 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 >>
@@ -51306,7 +51306,7 @@ endobj
 /F3.0 33 0 R
 /F1.0 10 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 >>
@@ -51331,7 +51331,7 @@ endobj
 endobj
 407 0 obj
 << /Limits [(hbase.zookeeper.property.maxClientCnxns) (hfile.block.index.cacheonwrite)]
-/Names [(hbase.zookeeper.property.maxClientCnxns) 271 0 R (hbase.zookeeper.property.syncLimit) 265 0 R (hbase.zookeeper.quorum) 201 0 R (hbase_apis) 2110 0 R (hbase_default_configurations) 195 0 R (hbase_env) 527 0 R (hbase_metrics) 3074 0 R (hbase_mob) 1921 0 R (hbase_site) 523 0 R (hbase_supported_tested_definitions) 42 0 R (hbck) 2975 0 R (hbck.in.depth) 3889 0 R (health.check) 2971 0 R (hedged.reads) 2575 0 R (hfile) 1738 0 R (hfile-format) 1739 0 R (hfile-format-2) 3990 0 R (hfile.block.bloom.cacheonwrite) 352 0 R (hfile.block.cache.size) 341 0 R (hfile.block.index.cacheonwrite) 342 0 R]
+/Names [(hbase.zookeeper.property.maxClientCnxns) 271 0 R (hbase.zookeeper.property.syncLimit) 265 0 R (hbase.zookeeper.quorum) 201 0 R (hbase_apis) 2110 0 R (hbase_default_configurations) 195 0 R (hbase_env) 527 0 R (hbase_metrics) 3074 0 R (hbase_mob) 1921 0 R (hbase_site) 523 0 R (hbase_supported_tested_definitions) 42 0 R (hbck) 2975 0 R (hbck.in.depth) 3896 0 R (health.check) 2971 0 R (hedged.reads) 2575 0 R (hfile) 1738 0 R (hfile-format) 1739 0 R (hfile-format-2) 3997 0 R (hfile.block.bloom.cacheonwrite) 352 0 R (hfile.block.cache.size) 341 0 R (hfile.block.index.cacheonwrite) 342 0 R]
 >>
 endobj
 408 0 obj
@@ -51825,7 +51825,7 @@ endobj
 /F3.0 33 0 R
 /F1.0 10 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 >>
@@ -52335,7 +52335,7 @@ endobj
 /F3.0 33 0 R
 /F1.0 10 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 >>
@@ -52345,7 +52345,7 @@ endobj
 endobj
 419 0 obj
 << /Limits [(hbase.rpc) (hbase.secure.spnego.ui)]
-/Names [(hbase.rpc) 4108 0 R (hbase.rpc.rows.warning.threshold) 506 0 R (hbase.rpc.shortoperation.timeout) 362 0 R (hbase.rpc.timeout) 358 0 R (hbase.rs.cacheblocksonwrite) 357 0 R (hbase.secure.bulkload) 1420 0 R (hbase.secure.configuration) 1260 0 R (hbase.secure.enable) 1424 0 R (hbase.secure.simpleconfiguration) 1302 0 R (hbase.secure.spnego.ui) 1255 0 R]
+/Names [(hbase.rpc) 4115 0 R (hbase.rpc.rows.warning.threshold) 506 0 R (hbase.rpc.shortoperation.timeout) 362 0 R (hbase.rpc.timeout) 358 0 R (hbase.rs.cacheblocksonwrite) 357 0 R (hbase.secure.bulkload) 1420 0 R (hbase.secure.configuration) 1260 0 R (hbase.secure.enable) 1424 0 R (hbase.secure.simpleconfiguration) 1302 0 R (hbase.secure.spnego.ui) 1255 0 R]
 >>
 endobj
 420 0 obj
@@ -52861,7 +52861,7 @@ endobj
 /F3.0 33 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 >>
@@ -53422,7 +53422,7 @@ endobj
 /F3.0 33 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 >>
@@ -53922,7 +53922,7 @@ endobj
 /F3.0 33 0 R
 /F1.0 10 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 >>
@@ -54467,7 +54467,7 @@ endobj
 /F3.0 33 0 R
 /F1.0 10 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 /Annots [457 0 R 458 0 R]
@@ -55141,7 +55141,7 @@ endobj
 /F4.0 35 0 R
 /F6.0 468 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 /Annots [464 0 R 465 0 R]
@@ -55179,11 +55179,11 @@ endobj
 << /Type /Font
 /BaseFont /066905+mplus1mn-bold
 /Subtype /TrueType
-/FontDescriptor 4840 0 R
+/FontDescriptor 4847 0 R
 /FirstChar 32
 /LastChar 255
-/Widths 4842 0 R
-/ToUnicode 4841 0 R
+/Widths 4849 0 R
+/ToUnicode 4848 0 R
 >>
 endobj
 469 0 obj
@@ -55745,7 +55745,7 @@ endobj
 /F3.0 33 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 >>
@@ -55758,7 +55758,7 @@ endobj
 endobj
 475 0 obj
 << /Limits [(hbase.defaults.for.version.skip) (hbase.hregion.percolumnfamilyflush.size.lower.bound.min)]
-/Names [(hbase.defaults.for.version.skip) 404 0 R (hbase.dfs.client.read.shortcircuit.buffer.size) 436 0 R (hbase.display.keys) 388 0 R (hbase.dynamic.jars.dir) 452 0 R (hbase.encryption.server) 1407 0 R (hbase.env.sh) 508 0 R (hbase.fix.version.in.jira) 3772 0 R (hbase.history) 4068 0 R (hbase.hregion.majorcompaction) 311 0 R (hbase.hregion.majorcompaction.jitter) 312 0 R (hbase.hregion.max.filesize) 308 0 R (hbase.hregion.memstore.block.multiplier) 306 0 R (hbase.hregion.memstore.flush.size) 301 0 R (hbase.hregion.memstore.mslab.enabled) 307 0 R (hbase.hregion.percolumnfamilyflush.size.lower.bound.min) 304 0 R]
+/Names [(hbase.defaults.for.version.skip) 404 0 R (hbase.dfs.client.read.shortcircuit.buffer.size) 436 0 R (hbase.display.keys) 388 0 R (hbase.dynamic.jars.dir) 452 0 R (hbase.encryption.server) 1407 0 R (hbase.env.sh) 508 0 R (hbase.fix.version.in.jira) 3779 0 R (hbase.history) 4075 0 R (hbase.hregion.majorcompaction) 311 0 R (hbase.hregion.majorcompaction.jitter) 312 0 R (hbase.hregion.max.filesize) 308 0 R (hbase.hregion.memstore.block.multiplier) 306 0 R (hbase.hregion.memstore.flush.size) 301 0 R (hbase.hregion.memstore.mslab.enabled) 307 0 R (hbase.hregion.percolumnfamilyflush.size.lower.bound.min) 304 0 R]
 >>
 endobj
 476 0 obj
@@ -56289,7 +56289,7 @@ endobj
 /F3.0 33 0 R
 /F1.0 10 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 >>
@@ -56800,7 +56800,7 @@ endobj
 /F3.0 33 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 >>
@@ -57303,7 +57303,7 @@ endobj
 /F3.0 33 0 R
 /F1.0 10 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 >>
@@ -57319,7 +57319,7 @@ endobj
 endobj
 499 0 obj
 << /Limits [(hbase.mob.compaction.threads.max) (hbase.org)]
-/Names [(hbase.mob.compaction.threads.max) 501 0 R (hbase.mob.compactor.class) 500 0 R (hbase.mob.delfile.max.count) 496 0 R (hbase.mob.file.cache.size) 489 0 R (hbase.moduletest.run) 3496 0 R (hbase.moduletest.shell) 3490 0 R (hbase.moduletests) 3488 0 R (hbase.normalizer.period) 297 0 R (hbase.offpeak.end.hour) 332 0 R (hbase.offpeak.start.hour) 331 0 R (hbase.org) 3477 0 R]
+/Names [(hbase.mob.compaction.threads.max) 501 0 R (hbase.mob.compactor.class) 500 0 R (hbase.mob.delfile.max.count) 496 0 R (hbase.mob.file.cache.size) 489 0 R (hbase.moduletest.run) 3503 0 R (hbase.moduletest.shell) 3497 0 R (hbase.moduletests) 3495 0 R (hbase.normalizer.period) 297 0 R (hbase.offpeak.end.hour) 332 0 R (hbase.offpeak.start.hour) 331 0 R (hbase.org) 3484 0 R]
 >>
 endobj
 500 0 obj
@@ -57805,7 +57805,7 @@ endobj
 /F1.0 10 0 R
 /F2.0 29 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 >>
@@ -58958,7 +58958,7 @@ endobj
 /F3.0 33 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 /Annots [514 0 R]
@@ -59737,7 +59737,7 @@ endobj
 /F3.0 33 0 R
 /F2.0 29 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 /Annots [517 0 R]
@@ -61194,7 +61194,7 @@ endobj
 /F3.0 33 0 R
 /F1.1 38 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 >>
@@ -61718,7 +61718,7 @@ endobj
 /F1.0 10 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 >>
@@ -62371,7 +62371,7 @@ endobj
 /F4.0 35 0 R
 /F1.1 38 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 /Annots [532 0 R 533 0 R 535 0 R 536 0 R 537 0 R 542 0 R]
@@ -63126,7 +63126,7 @@ endobj
 /F2.0 29 0 R
 /F1.1 38 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 /Annots [548 0 R 551 0 R 554 0 R]
@@ -63165,7 +63165,7 @@ endobj
 endobj
 553 0 obj
 << /Limits [(configuration) (coprocessor-implementation-overview)]
-/Names [(configuration) 104 0 R (configuration-2) 3103 0 R (configuration-3) 3860 0 R (configuration-files) 110 0 R (configuration-from-scratch) 3757 0 R (configuration-properties) 1889 0 R (configure-mob-compaction-mergeable-threshold) 1930 0 R (configure-mob-compaction-policy) 1929 0 R (configuring-columns-for-mob) 1926 0 R (configuring-server-wide-behavior-of-bloom-filters) 2481 0 R (configuring-the-rest-server-and-client) 2129 0 R (confirm) 188 0 R (connection-setup) 4120 0 R (constraints) 1058 0 R (contributing-to-documentation-or-other-strings) 3795 0 R (coprocessor-implementation-overview) 2286 0 R]
+/Names [(configuration) 104 0 R (configuration-2) 3103 0 R (configuration-3) 3867 0 R (configuration-files) 110 0 R (configuration-from-scratch) 3764 0 R (configuration-properties) 1889 0 R (configure-mob-compaction-mergeable-threshold) 1930 0 R (configure-mob-compaction-policy) 1929 0 R (configuring-columns-for-mob) 1926 0 R (configuring-server-wide-behavior-of-bloom-filters) 2481 0 R (configuring-the-rest-server-and-client) 2129 0 R (confirm) 188 0 R (connection-setup) 4127 0 R (constraints) 1058 0 R (contributing-to-documentation-or-other-strings) 3802 0 R (coprocessor-implementation-overview) 2286 0 R]
 >>
 endobj
 554 0 obj
@@ -64027,7 +64027,7 @@ endobj
 /F4.0 35 0 R
 /F5.1 45 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 /Annots [558 0 R]
@@ -64841,7 +64841,7 @@ endobj
 /F5.1 45 0 R
 /F3.0 33 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 /Annots [562 0 R 563 0 R 564 0 R 568 0 R 571 0 R 572 0 R 573 0 R]
@@ -65583,7 +65583,7 @@ endobj
 /F1.1 38 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 /Annots [577 0 R 578 0 R]
@@ -67015,7 +67015,7 @@ endobj
 /F1.0 10 0 R
 /F3.0 33 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 /Annots [582 0 R 583 0 R]
@@ -67792,7 +67792,7 @@ endobj
 /F1.0 10 0 R
 /F3.0 33 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 >>
@@ -68493,7 +68493,7 @@ endobj
 /F3.0 33 0 R
 /F5.1 45 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 >>
@@ -69824,7 +69824,7 @@ endobj
 /F4.0 35 0 R
 /F3.0 33 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 >>
@@ -71319,7 +71319,7 @@ endobj
 /Font << /F2.0 29 0 R
 /F1.0 10 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 >>
@@ -71485,7 +71485,7 @@ endobj
 /Font << /F2.0 29 0 R
 /F1.0 10 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 >>
@@ -71683,7 +71683,7 @@ endobj
 /Font << /F2.0 29 0 R
 /F1.0 10 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 /Annots [598 0 R 599 0 R 600 0 R 601 0 R 602 0 R]
@@ -72437,7 +72437,7 @@ endobj
 /F1.0 10 0 R
 /F3.0 33 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 /Annots [607 0 R]
@@ -73380,7 +73380,7 @@ endobj
 /F3.0 33 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 /Annots [611 0 R 612 0 R 613 0 R]
@@ -75768,7 +75768,7 @@ endobj
 /F1.1 38 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 /Annots [617 0 R 618 0 R]
@@ -76653,7 +76653,7 @@ endobj
 /F2.0 29 0 R
 /F3.0 33 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 /Annots [621 0 R]
@@ -77127,7 +77127,7 @@ endobj
 /F4.0 35 0 R
 /F3.0 33 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 /Annots [629 0 R 630 0 R 631 0 R 633 0 R 634 0 R 635 0 R]
@@ -77919,7 +77919,7 @@ endobj
 /F1.0 10 0 R
 /F3.0 33 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 /Annots [643 0 R]
@@ -77930,17 +77930,17 @@ endobj
 endobj
 639 0 obj
 << /Limits [(standalone.over.hdfs) (table)]
-/Names [(standalone.over.hdfs) 167 0 R (standalone_dist) 162 0 R (starting-and-stopping-the-rest-server) 2128 0 R (static-loading) 2320 0 R (static-unloading) 2323 0 R (store) 1732 0 R (store-file-ttl) 1883 0 R (store.file.dir) 1747 0 R (store.memstore) 1733 0 R (storefile-refresher) 1879 0 R (submit_doc_patch_procedure) 3796 0 R (submitting.patches) 3615 0 R (submitting.patches.create) 3620 0 R (submitting.patches.tests) 3626 0 R (supported.datatypes) 1011 0 R (table) 829 0 R]
+/Names [(standalone.over.hdfs) 167 0 R (standalone_dist) 162 0 R (starting-and-stopping-the-rest-server) 2128 0 R (static-loading) 2320 0 R (static-unloading) 2323 0 R (store) 1732 0 R (store-file-ttl) 1883 0 R (store.file.dir) 1747 0 R (store.memstore) 1733 0 R (storefile-refresher) 1879 0 R (submit_doc_patch_procedure) 3803 0 R (submitting.patches) 3622 0 R (submitting.patches.create) 3627 0 R (submitting.patches.tests) 3633 0 R (supported.datatypes) 1011 0 R (table) 829 0 R]
 >>
 endobj
 640 0 obj
 << /Limits [(__anchor-top) (cascading)]
-/Kids [155 0 R 3607 0 R 1849 0 R 1444 0 R 3837 0 R 1606 0 R 4016 0 R 2078 0 R 2036 0 R 1993 0 R 2027 0 R 3415 0 R]
+/Kids [155 0 R 3614 0 R 1849 0 R 1444 0 R 3844 0 R 1606 0 R 4023 0 R 2078 0 R 2036 0 R 1993 0 R 2027 0 R 3422 0 R]
 >>
 endobj
 641 0 obj
 << /Limits [(hbase.mob.compaction.threads.max) (hbase.zookeeper.property.initLimit)]
-/Kids [499 0 R 3491 0 R 461 0 R 237 0 R 363 0 R 419 0 R 4109 0 R 449 0 R 266 0 R 3528 0 R 3499 0 R]
+/Kids [499 0 R 3498 0 R 461 0 R 237 0 R 363 0 R 419 0 R 4116 0 R 449 0 R 266 0 R 3535 0 R 3506 0 R]
 >>
 endobj
 642 0 obj
@@ -78604,7 +78604,7 @@ endobj
 /F1.0 10 0 R
 /F3.0 33 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 >>
@@ -79319,7 +79319,7 @@ endobj
 /F1.0 10 0 R
 /F2.0 29 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 /Annots [651 0 R]
@@ -79786,7 +79786,7 @@ endobj
 /F3.0 33 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 >>
@@ -80506,7 +80506,7 @@ endobj
 /F1.0 10 0 R
 /F3.0 33 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 /Annots [660 0 R 663 0 R]
@@ -81749,7 +81749,7 @@ endobj
 /F3.0 33 0 R
 /F2.0 29 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 /Annots [666 0 R 667 0 R 668 0 R 669 0 R 670 0 R 671 0 R 672 0 R 673 0 R 676 0 R 677 0 R]
@@ -82644,7 +82644,7 @@ endobj
 /Font << /F1.0 10 0 R
 /F3.0 33 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 /Annots [680 0 R 683 0 R]
@@ -83435,7 +83435,7 @@ endobj
 /F4.0 35 0 R
 /F3.0 33 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 /Annots [688 0 R 691 0 R]
@@ -84189,7 +84189,7 @@ endobj
 /Font << /F1.0 10 0 R
 /F3.0 33 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 /Annots [696 0 R 697 0 R 700 0 R 702 0 R 704 0 R]
@@ -85233,7 +85233,7 @@ endobj
 /F3.0 33 0 R
 /F2.0 29 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 /Annots [709 0 R]
@@ -86126,7 +86126,7 @@ endobj
 /F2.0 29 0 R
 /F3.0 33 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 /Annots [716 0 R 717 0 R 718 0 R 722 0 R 723 0 R 724 0 R 725 0 R 726 0 R 727 0 R 728 0 R]
@@ -87021,7 +87021,7 @@ endobj
 /F4.0 35 0 R
 /F2.0 29 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 /Annots [731 0 R 732 0 R 733 0 R 734 0 R 735 0 R 736 0 R 737 0 R]
@@ -87109,7 +87109,7 @@ endobj
 endobj
 739 0 obj
 << /Limits [(upgrade2.0.tracing) (using-secure-http-https-for-the-web-ui)]
-/Names [(upgrade2.0.tracing) 720 0 R (upgrade2.0.ui.splitmerge.by.row) 698 0 R (upgrade2.0.zkconfig) 689 0 R (upgrading) 597 0 R (upgrading-2) 3855 0 R (use-cases-for-observer-coprocessors) 2298 0 R (user-interface) 1900 0 R (using-existing-zookeeper-ensemble) 3729 0 R (using-hbase-shell) 2336 0 R (using-rest-endpoints) 2132 0 R (using-secure-http-https-for-the-web-ui) 1251 0 R]
+/Names [(upgrade2.0.tracing) 720 0 R (upgrade2.0.ui.splitmerge.by.row) 698 0 R (upgrade2.0.zkconfig) 689 0 R (upgrading) 597 0 R (upgrading-2) 3862 0 R (use-cases-for-observer-coprocessors) 2298 0 R (user-interface) 1900 0 R (using-existing-zookeeper-ensemble) 3736 0 R (using-hbase-shell) 2336 0 R (using-rest-endpoints) 2132 0 R (using-secure-http-https-for-the-web-ui) 1251 0 R]
 >>
 endobj
 740 0 obj
@@ -87516,7 +87516,7 @@ endobj
 /F1.0 10 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 >>
@@ -87878,7 +87878,7 @@ endobj
 /F1.0 10 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 /Annots [752 0 R 753 0 R 754 0 R]
@@ -88079,7 +88079,7 @@ endobj
 /F3.0 33 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 >>
@@ -88317,7 +88317,7 @@ endobj
 /F1.0 10 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 /Annots [761 0 R]
@@ -88913,7 +88913,7 @@ endobj
 /F3.0 33 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 /Annots [765 0 R]
@@ -89450,7 +89450,7 @@ endobj
 /F4.0 35 0 R
 /F2.0 29 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 >>
@@ -89727,7 +89727,7 @@ endobj
 /F3.0 33 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 >>
@@ -90211,7 +90211,7 @@ endobj
 /F1.0 10 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 >>
@@ -90486,7 +90486,7 @@ endobj
 /F4.0 35 0 R
 /F3.0 33 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 >>
@@ -90923,7 +90923,7 @@ endobj
 /F1.0 10 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 >>
@@ -91486,7 +91486,7 @@ endobj
 /Font << /F4.0 35 0 R
 /F1.0 10 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 >>
@@ -92097,7 +92097,7 @@ endobj
 /F3.0 33 0 R
 /F1.0 10 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 >>
@@ -93267,7 +93267,7 @@ endobj
 /F2.0 29 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 /Annots [789 0 R]
@@ -93289,7 +93289,7 @@ endobj
 endobj
 791 0 obj
 << /Limits [(multiple-typed-queues) (new.version.behavior)]
-/Names [(multiple-typed-queues) 3187 0 R (multiwal) 1641 0 R (nagles) 570 0 R (namespace) 819 0 R (namespace_creation) 823 0 R (namespace_quotas) 3183 0 R (namespace_special) 824 0 R (network-saturation-the-winner) 2918 0 R (new-committers) 3637 0 R (new.version.behavior) 897 0 R]
+/Names [(multiple-typed-queues) 3194 0 R (multiwal) 1641 0 R (nagles) 570 0 R (namespace) 819 0 R (namespace_creation) 823 0 R (namespace_quotas) 3190 0 R (namespace_special) 824 0 R (network-saturation-the-winner) 2918 0 R (new-committers) 3644 0 R (new.version.behavior) 897 0 R]
 >>
 endobj
 792 0 obj
@@ -98553,7 +98553,7 @@ endobj
 /F2.0 29 0 R
 /F1.1 38 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 >>
@@ -98929,7 +98929,7 @@ endobj
 /F2.0 29 0 R
 /F1.0 10 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 >>
@@ -99544,7 +99544,7 @@ endobj
 /F3.0 33 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 >>
@@ -102085,7 +102085,7 @@ endobj
 /F5.1 45 0 R
 /F3.0 33 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 /Annots [808 0 R 809 0 R 810 0 R]
@@ -105104,7 +105104,7 @@ endobj
 /Font << /F4.0 35 0 R
 /F1.0 10 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 >>
@@ -106538,7 +106538,7 @@ endobj
 /F3.0 33 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 /Annots [816 0 R]
@@ -107322,7 +107322,7 @@ endobj
 /F4.0 35 0 R
 /F3.0 33 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 /Annots [820 0 R 821 0 R 822 0 R]
@@ -107524,7 +107524,7 @@ endobj
 /F4.0 35 0 R
 /F1.0 10 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 >>
@@ -107595,7 +107595,7 @@ endobj
 /Font << /F2.0 29 0 R
 /F1.0 10 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 >>
@@ -107699,7 +107699,7 @@ endobj
 /Font << /F2.0 29 0 R
 /F1.0 10 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 >>
@@ -108116,7 +108116,7 @@ endobj
 /F3.0 33 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 >>
@@ -108236,7 +108236,7 @@ endobj
 /F3.0 33 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 >>
@@ -110423,7 +110423,7 @@ endobj
 /F1.0 10 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 /Annots [842 0 R 844 0 R 845 0 R 847 0 R 848 0 R 849 0 R 851 0 R 852 0 R]
@@ -110752,7 +110752,7 @@ endobj
 /F1.0 10 0 R
 /F3.0 33 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 /Annots [857 0 R 858 0 R 859 0 R 860 0 R]
@@ -110763,7 +110763,7 @@ endobj
 endobj
 856 0 obj
 << /Limits [(dfs.datanode.failed.volumes.tolerated) (dm.column.metadata)]
-/Names [(dfs.datanode.failed.volumes.tolerated) 546 0 R (dfs.datanode.max.transfer.threads) 154 0 R (dfs.domain.socket.path) 433 0 R (dialog) 3665 0 R (direct.memory) 1611 0 R (disable-nagle-for-rpc) 1120 0 R (disable.splitting) 557 0 R (disabling-metrics) 3081 0 R (disabling.blockcache) 569 0 R (discovering.available.metrics) 3082 0 R (distributed) 168 0 R (distributed.log.replay.failure.reasons) 1670 0 R (distributed.log.splitting) 1658 0 R (dm.column.metadata) 914 0 R]
+/Names [(dfs.datanode.failed.volumes.tolerated) 546 0 R (dfs.datanode.max.transfer.threads) 154 0 R (dfs.domain.socket.path) 433 0 R (dialog) 3672 0 R (direct.memory) 1611 0 R (disable-nagle-for-rpc) 1120 0 R (disable.splitting) 557 0 R (disabling-metrics) 3081 0 R (disabling.blockcache) 569 0 R (discovering.available.metrics) 3082 0 R (distributed) 168 0 R (distributed.log.replay.failure.reasons) 1670 0 R (distributed.log.splitting) 1658 0 R (dm.column.metadata) 914 0 R]
 >>
 endobj
 857 0 obj
@@ -111772,7 +111772,7 @@ endobj
 /F7.0 869 0 R
 /F7.1 870 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 /Annots [864 0 R 865 0 R 868 0 R]
@@ -111808,7 +111808,7 @@ endobj
 endobj
 867 0 obj
 << /Limits [(rowcounter) (save-the-dataframe)]
-/Names [(rowcounter) 3017 0 R (rowcounter-example) 1196 0 R (rowkey.design) 956 0 R (rowkey.regionsplits) 997 0 R (rowkey.scope) 994 0 R (rpc) 4117 0 R (rpc.configs) 4137 0 R (rpc.logging) 2646 0 R (rs.failover.details) 3158 0 R (rs_metrics) 3090 0 R (rsgroup) 3305 0 R (run-canary-test-as-daemon-mode) 2958 0 R (run.insitu) 3601 0 R (running-canary-in-a-kerberos-enabled-cluster) 2964 0 R (running-hbck-to-identify-inconsistencies) 3890 0 R (running-multiple-workloads-on-a-single-cluster) 3170 0 R (running-the-shell-in-non-interactive-mode) 760 0 R (save-the-dataframe) 2256 0 R]
+/Names [(rowcounter) 3017 0 R (rowcounter-example) 1196 0 R (rowkey.design) 956 0 R (rowkey.regionsplits) 997 0 R (rowkey.scope) 994 0 R (rpc) 4124 0 R (rpc.configs) 4144 0 R (rpc.logging) 2646 0 R (rs.failover.details) 3163 0 R (rs_metrics) 3090 0 R (rsgroup) 3312 0 R (run-canary-test-as-daemon-mode) 2958 0 R (run.insitu) 3608 0 R (running-canary-in-a-kerberos-enabled-cluster) 2964 0 R (running-hbck-to-identify-inconsistencies) 3897 0 R (running-multiple-workloads-on-a-single-cluster) 3177 0 R (running-the-shell-in-non-interactive-mode) 760 0 R (save-the-dataframe) 2256 0 R]
 >>
 endobj
 868 0 obj
@@ -111826,22 +111826,22 @@ endobj
 << /Type /Font
 /BaseFont /9a0a42+mplus-1p-regular
 /Subtype /TrueType
-/FontDescriptor 4844 0 R
+/FontDescriptor 4851 0 R
 /FirstChar 32
 /LastChar 255
-/Widths 4846 0 R
-/ToUnicode 4845 0 R
+/Widths 4853 0 R
+/ToUnicode 4852 0 R
 >>
 endobj
 870 0 obj
 << /Type /Font
 /BaseFont /a99fc7+mplus-1p-regular
 /Subtype /TrueType
-/FontDescriptor 4848 0 R
+/FontDescriptor 4855 0 R
 /FirstChar 32
 /LastChar 255
-/Widths 4850 0 R
-/ToUnicode 4849 0 R
+/Widths 4857 0 R
+/ToUnicode 4856 0 R
 >>
 endobj
 871 0 obj
@@ -113709,7 +113709,7 @@ endobj
 /F7.1 870 0 R
 /F2.0 29 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 /Annots [873 0 R 874 0 R 877 0 R 878 0 R 879 0 R 880 0 R]
@@ -117645,7 +117645,7 @@ endobj
 /F1.0 10 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 >>
@@ -118627,7 +118627,7 @@ endobj
 /F1.1 38 0 R
 /F5.1 45 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 /Annots [891 0 R 892 0 R 893 0 R 894 0 R 895 0 R 896 0 R]
@@ -119519,7 +119519,7 @@ endobj
 /F2.0 29 0 R
 /F3.0 33 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 /Annots [900 0 R 901 0 R 903 0 R 904 0 R 906 0 R 908 0 R]
@@ -119684,7 +119684,7 @@ endobj
 /Font << /F2.0 29 0 R
 /F1.0 10 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 >>
@@ -119851,7 +119851,7 @@ endobj
 /Font << /F2.0 29 0 R
 /F1.0 10 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 /Annots [915 0 R]
@@ -120080,7 +120080,7 @@ endobj
 /Font << /F2.0 29 0 R
 /F1.0 10 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 >>
@@ -120198,7 +120198,7 @@ endobj
 /Font << /F2.0 29 0 R
 /F1.0 10 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 /Annots [922 0 R 923 0 R]
@@ -120611,7 +120611,7 @@ endobj
 /F1.0 10 0 R
 /F1.1 38 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 /Annots [927 0 R 928 0 R 929 0 R 930 0 R 931 0 R 932 0 R]
@@ -122086,7 +122086,7 @@ endobj
 /F4.0 35 0 R
 /F5.1 45 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 /Annots [936 0 R 937 0 R 938 0 R 940 0 R]
@@ -122606,7 +122606,7 @@ endobj
 /Font << /F2.0 29 0 R
 /F1.0 10 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 /Annots [944 0 R]
@@ -122823,7 +122823,7 @@ endobj
 /Font << /F2.0 29 0 R
 /F1.0 10 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 /Annots [948 0 R]
@@ -123140,7 +123140,7 @@ endobj
 /Font << /F2.0 29 0 R
 /F1.0 10 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 /Annots [952 0 R]
@@ -123556,7 +123556,7 @@ endobj
 /F1.0 10 0 R
 /F3.0 33 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 >>
@@ -124285,7 +124285,7 @@ endobj
 /F1.0 10 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 >>
@@ -125218,7 +125218,7 @@ endobj
 /F4.0 35 0 R
 /F2.0 29 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 /Annots [962 0 R 963 0 R 964 0 R 965 0 R 967 0 R 968 0 R 969 0 R 970 0 R 971 0 R 973 0 R 974 0 R]
@@ -125843,7 +125843,7 @@ endobj
 /F2.0 29 0 R
 /F1.1 38 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 /Annots [977 0 R 978 0 R 979 0 R 981 0 R 983 0 R]
@@ -129424,7 +129424,7 @@ endobj
 /F5.1 45 0 R
 /F3.0 33 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 /Annots [989 0 R 990 0 R]
@@ -130142,7 +130142,7 @@ endobj
 /F2.0 29 0 R
 /F3.0 33 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 /Annots [993 0 R]
@@ -130164,7 +130164,7 @@ endobj
 endobj
 996 0 obj
 << /Limits [(cf.in.memory) (client.connection.pooling)]
-/Names [(cf.in.memory) 2487 0 R (cf.keep.deleted) 1029 0 R (changes-of-note) 658 0 R (changing.compression) 3965 0 R (changing.rowkeys) 995 0 R (chaos.monkey.properties) 3560 0 R (checking-for-success-or-failure-in-scripts) 768 0 R (choosing-region-servers-to-replicate-to) 3149 0 R (cleaning-logs) 3155 0 R (client) 4121 0 R (client-side-configuration-for-secure-operation) 1266 0 R (client-side-configuration-for-secure-operation-rest-gateway) 1291 0 R (client-side-configuration-for-simple-user-access-operation) 1313 0 R (client-side-configuration-for-simple-user-access-operation-rest-gateway) 1318 0 R (client-side-configuration-for-simple-user-access-operation-thrift-gateway) 1316 0 R (client-side-properties) 1897 0 R (client.connection.pooling) 1472 0 R]
+/Names [(cf.in.memory) 2487 0 R (cf.keep.deleted) 1029 0 R (changes-of-note) 658 0 R (changing.compression) 3972 0 R (changing.rowkeys) 995 0 R (chaos.monkey.properties) 3567 0 R (checking-for-success-or-failure-in-scripts) 768 0 R (choosing-region-servers-to-replicate-to) 3156 0 R (cleaning-logs) 3162 0 R (client) 4128 0 R (client-side-configuration-for-secure-operation) 1266 0 R (client-side-configuration-for-secure-operation-rest-gateway) 1291 0 R (client-side-configuration-for-simple-user-access-operation) 1313 0 R (client-side-configuration-for-simple-user-access-operation-rest-gateway) 1318 0 R (client-side-configuration-for-simple-user-access-operation-thrift-gateway) 1316 0 R (client-side-properties) 1897 0 R (client.connection.pooling) 1472 0 R]
 >>
 endobj
 997 0 obj
@@ -133919,7 +133919,7 @@ endobj
 /F3.0 33 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 /Annots [1000 0 R]
@@ -134392,7 +134392,7 @@ endobj
 /F1.0 10 0 R
 /F3.0 33 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 /Annots [1005 0 R 1006 0 R 1008 0 R]
@@ -134772,7 +134772,7 @@ endobj
 /F1.0 10 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 /Annots [1012 0 R 1013 0 R 1014 0 R 1016 0 R]
@@ -134913,7 +134913,7 @@ endobj
 /Font << /F2.0 29 0 R
 /F1.0 10 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 /Annots [1021 0 R]
@@ -134924,7 +134924,7 @@ endobj
 endobj
 1020 0 obj
 << /Limits [(schema.versions) (sect.zookeeper.session.timeout)]
-/Names [(schema.versions) 1003 0 R (schema.versions.max) 1004 0 R (scopes) 3907 0 R (scripting) 757 0 R (secondary-replica-failover) 1888 0 R (secondary.indexes) 1040 0 R (secondary.indexes.coproc) 1054 0 R (secondary.indexes.dualwrite) 1050 0 R (secondary.indexes.filter) 1044 0 R (secondary.indexes.periodic) 1046 0 R (secondary.indexes.summary) 1052 0 R (sect.zookeeper.session.timeout) 540 0 R]
+/Names [(schema.versions) 1003 0 R (schema.versions.max) 1004 0 R (scopes) 3914 0 R (scripting) 757 0 R (secondary-replica-failover) 1888 0 R (secondary.indexes) 1040 0 R (secondary.indexes.coproc) 1054 0 R (secondary.indexes.dualwrite) 1050 0 R (secondary.indexes.filter) 1044 0 R (secondary.indexes.periodic) 1046 0 R (secondary.indexes.summary) 1052 0 R (sect.zookeeper.session.timeout) 540 0 R]
 >>
 endobj
 1021 0 obj
@@ -135350,7 +135350,7 @@ endobj
 /F3.0 33 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 /Annots [1025 0 R 1026 0 R]
@@ -136068,7 +136068,7 @@ endobj
 /F7.0 869 0 R
 /F7.1 870 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 /Annots [1030 0 R 1031 0 R]
@@ -141783,7 +141783,7 @@ endobj
 /Font << /F4.0 35 0 R
 /F1.0 10 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 >>
@@ -147729,7 +147729,7 @@ endobj
 /Font << /F4.0 35 0 R
 /F1.0 10 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 >>
@@ -148815,7 +148815,7 @@ endobj
 /F1.0 10 0 R
 /F3.0 33 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 >>
@@ -149501,7 +149501,7 @@ endobj
 /F1.0 10 0 R
 /F3.0 33 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 /Annots [1041 0 R 1042 0 R 1043 0 R 1045 0 R 1047 0 R]
@@ -149806,7 +149806,7 @@ endobj
 /Font << /F2.0 29 0 R
 /F1.0 10 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 /Annots [1051 0 R 1053 0 R 1055 0 R]
@@ -150014,7 +150014,7 @@ endobj
 /Font << /F2.0 29 0 R
 /F1.0 10 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 /Annots [1059 0 R]
@@ -150810,7 +150810,7 @@ endobj
 /F1.0 10 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 /Annots [1063 0 R 1066 0 R]
@@ -151788,7 +151788,7 @@ endobj
 /F5.1 45 0 R
 /F3.0 33 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 /Annots [1071 0 R 1072 0 R]
@@ -152468,7 +152468,7 @@ endobj
 /F4.0 35 0 R
 /F2.0 29 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 /Annots [1076 0 R 1078 0 R 1079 0 R 1080 0 R]
@@ -153221,7 +153221,7 @@ endobj
 /F3.0 33 0 R
 /F2.0 29 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 /Annots [1084 0 R]
@@ -153857,7 +153857,7 @@ endobj
 /F2.0 29 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 /Annots [1091 0 R]
@@ -154661,7 +154661,7 @@ endobj
 /F1.0 10 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 /Annots [1095 0 R]
@@ -155224,7 +155224,7 @@ endobj
 /Font << /F2.0 29 0 R
 /F1.0 10 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 /Annots [1100 0 R]
@@ -156783,7 +156783,7 @@ endobj
 /F4.0 35 0 R
 /F1.1 38 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 /Annots [1107 0 R]
@@ -157527,7 +157527,7 @@ endobj
 /F2.0 29 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 /Annots [1111 0 R 1112 0 R 1113 0 R]
@@ -157695,7 +157695,7 @@ endobj
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /Font << /F1.0 10 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 >>
@@ -158841,7 +158841,7 @@ endobj
 /F4.0 35 0 R
 /F1.1 38 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 >>
@@ -160119,7 +160119,7 @@ endobj
 /F2.0 29 0 R
 /F3.0 33 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 /Annots [1125 0 R 1126 0 R 1127 0 R 1128 0 R 1129 0 R]
@@ -160868,7 +160868,7 @@ endobj
 /F1.0 10 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 >>
@@ -160881,7 +160881,7 @@ endobj
 endobj
 1134 0 obj
 << /Limits [(tune-jvm-gc-for-low-collection-latencies) (upgrade2.0.basic.requirements)]
-/Names [(tune-jvm-gc-for-low-collection-latencies) 1133 0 R (tuning-code-callqueue-code-options) 2450 0 R (types-of-coprocessors) 2294 0 R (types-of-observer-coprocessor) 2300 0 R (ulimit) 134 0 R (understanding-access-levels) 1345 0 R (unexpected-filesystem-growth) 2768 0 R (unified-version-2-block-format) 4004 0 R (unit.tests) 3676 0 R (units-of-measure-for-metrics) 3086 0 R (upgrade-paths) 656 0 R (upgrade1.0) 748 0 R (upgrade1.4) 741 0 R (upgrade1.4.memory) 742 0 R (upgrade1.4.rawscan) 747 0 R (upgrade1.4.replication) 745 0 R (upgrade2.0) 657 0 R (upgrade2.0.admin.commands) 692 0 R (upgrade2.0.basic.requirements) 659 0 R]
+/Names [(tune-jvm-gc-for-low-collection-latencies) 1133 0 R (tuning-code-callqueue-code-options) 2450 0 R (types-of-coprocessors) 2294 0 R (types-of-observer-coprocessor) 2300 0 R (ulimit) 134 0 R (understanding-access-levels) 1345 0 R (unexpected-filesystem-growth) 2768 0 R (unified-version-2-block-format) 4011 0 R (unit.tests) 3683 0 R (units-of-measure-for-metrics) 3086 0 R (upgrade-paths) 656 0 R (upgrade1.0) 748 0 R (upgrade1.4) 741 0 R (upgrade1.4.memory) 742 0 R (upgrade1.4.rawscan) 747 0 R (upgrade1.4.replication) 745 0 R (upgrade2.0) 657 0 R (upgrade2.0.admin.commands) 692 0 R (upgrade2.0.basic.requirements) 659 0 R]
 >>
 endobj
 1135 0 obj
@@ -160889,7 +160889,7 @@ endobj
 endobj
 1136 0 obj
 << /Limits [(others) (perf.general)]
-/Names [(others) 2264 0 R (output) 3107 0 R (package) 3397 0 R (page-allocation-failure) 2883 0 R (passing-vm-options-to-the-shell) 776 0 R (passwordless.ssh.quickstart) 87 0 R (perf.99th.percentile) 2422 0 R (perf.batch.loading) 2505 0 R (perf.casestudy) 2625 0 R (perf.compactions.and.splits) 2423 0 R (perf.compression) 2490 0 R (perf.compression.however) 2493 0 R (perf.configurations) 2420 0 R (perf.deleting) 2584 0 R (perf.deleting.queue) 2585 0 R (perf.deleting.rpc) 2589 0 R (perf.ec2) 2617 0 R (perf.general) 2500 0 R]
+/Names [(others) 2264 0 R (output) 3107 0 R (package) 3404 0 R (page-allocation-failure) 2883 0 R (passing-vm-options-to-the-shell) 776 0 R (passwordless.ssh.quickstart) 87 0 R (perf.99th.percentile) 2422 0 R (perf.batch.loading) 2505 0 R (perf.casestudy) 2625 0 R (perf.compactions.and.splits) 2423 0 R (perf.compression) 2490 0 R (perf.compression.however) 2493 0 R (perf.configurations) 2420 0 R (perf.deleting) 2584 0 R (perf.deleting.queue) 2585 0 R (perf.deleting.rpc) 2589 0 R (perf.ec2) 2617 0 R (perf.general) 2500 0 R]
 >>
 endobj
 1137 0 obj
@@ -161724,7 +161724,7 @@ endobj
 /F1.1 38 0 R
 /F7.0 869 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 /Annots [1143 0 R]
@@ -162272,7 +162272,7 @@ endobj
 /F4.0 35 0 R
 /F3.0 33 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 /Annots [1149 0 R 1150 0 R 1151 0 R 1152 0 R 1153 0 R 1154 0 R]
@@ -162283,12 +162283,12 @@ endobj
 endobj
 1147 0 obj
 << /Limits [(keysize.cf) (load-the-dataframe)]
-/Names [(keysize.cf) 980 0 R (keysize.patterns) 985 0 R (keysize.row) 984 0 R (keyvalue) 1753 0 R (keyvalue.example) 1754 0 R (language-integrated-query) 2262 0 R (lb) 3050 0 R (life-of-a-wal-edit) 3139 0 R (limit-server-failure-impact) 1121 0 R (load-the-dataframe) 2259 0 R]
+/Names [(keysize.cf) 980 0 R (keysize.patterns) 985 0 R (keysize.row) 984 0 R (keyvalue) 1753 0 R (keyvalue.example) 1754 0 R (language-integrated-query) 2262 0 R (lb) 3050 0 R (life-of-a-wal-edit) 3146 0 R (limit-server-failure-impact) 1121 0 R (load-the-dataframe) 2259 0 R]
 >>
 endobj
 1148 0 obj
 << /Limits [(multiple-typed-queues) (schema.updates)]
-/Kids [791 0 R 4012 0 R 1827 0 R 3280 0 R 3209 0 R 3036 0 R 1136 0 R 2518 0 R 2554 0 R 2424 0 R 2531 0 R 2383 0 R 354 0 R 3175 0 R 1570 0 R 4126 0 R 3063 0 R 867 0 R 3018 0 R 1090 0 R]
+/Kids [791 0 R 4019 0 R 1827 0 R 3287 0 R 3216 0 R 3036 0 R 1136 0 R 2518 0 R 2554 0 R 2424 0 R 2531 0 R 2383 0 R 354 0 R 3182 0 R 1570 0 R 4133 0 R 3063 0 R 867 0 R 3018 0 R 1090 0 R]
 >>
 endobj
 1149 0 obj
@@ -163362,7 +163362,7 @@ endobj
 /F3.0 33 0 R
 /F1.1 38 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 /Annots [1158 0 R]
@@ -163989,7 +163989,7 @@ endobj
 /Font << /F4.0 35 0 R
 /F1.0 10 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 >>
@@ -164319,7 +164319,7 @@ endobj
 /F4.0 35 0 R
 /F3.0 33 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 >>
@@ -165072,7 +165072,7 @@ endobj
 /Font << /F4.0 35 0 R
 /F1.0 10 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 /Annots [1165 0 R 1166 0 R]
@@ -165510,7 +165510,7 @@ endobj
 /Font << /F1.0 10 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 /Annots [1169 0 R]
@@ -166038,7 +166038,7 @@ endobj
 /F4.0 35 0 R
 /F3.0 33 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 /Annots [1173 0 R 1174 0 R]
@@ -166352,7 +166352,7 @@ endobj
 /F1.0 10 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 >>
@@ -167104,7 +167104,7 @@ endobj
 /F1.0 10 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 /Annots [1181 0 R 1182 0 R 1183 0 R 1184 0 R 1185 0 R 1186 0 R 1187 0 R 1188 0 R 1189 0 R]
@@ -167341,7 +167341,7 @@ endobj
 /Font << /F2.0 29 0 R
 /F1.0 10 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 /Annots [1193 0 R]
@@ -167650,7 +167650,7 @@ endobj
 /F1.0 10 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 /Annots [1197 0 R 1198 0 R 1199 0 R]
@@ -167902,7 +167902,7 @@ endobj
 /F1.0 10 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 /Annots [1205 0 R 1207 0 R]
@@ -170458,7 +170458,7 @@ endobj
 /F1.0 10 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 /Annots [1212 0 R]
@@ -172715,7 +172715,7 @@ endobj
 /F1.0 10 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 /Annots [1216 0 R]
@@ -174671,7 +174671,7 @@ endobj
 /F1.0 10 0 R
 /F2.0 29 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 >>
@@ -178672,7 +178672,7 @@ endobj
 /Font << /F4.0 35 0 R
 /F1.0 10 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 >>
@@ -180931,7 +180931,7 @@ endobj
 /F4.0 35 0 R
 /F2.0 29 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 >>
@@ -184386,7 +184386,7 @@ endobj
 /F1.0 10 0 R
 /F2.0 29 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 >>
@@ -185993,7 +185993,7 @@ endobj
 /F4.0 35 0 R
 /F2.0 29 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 >>
@@ -187157,7 +187157,7 @@ endobj
 /F1.0 10 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 >>
@@ -187314,7 +187314,7 @@ endobj
 /Font << /F2.0 29 0 R
 /F1.0 10 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 /Annots [1239 0 R]
@@ -190772,7 +190772,7 @@ endobj
 /F1.0 10 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 /Annots [1243 0 R]
@@ -191127,7 +191127,7 @@ endobj
 /F3.0 33 0 R
 /F1.0 10 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 /Annots [1247 0 R 1248 0 R]
@@ -191746,7 +191746,7 @@ endobj
 /F3.0 33 0 R
 /F5.1 45 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 /Annots [1252 0 R]
@@ -192336,7 +192336,7 @@ endobj
 /F4.0 35 0 R
 /F3.0 33 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 >>
@@ -193132,7 +193132,7 @@ endobj
 /Font << /F4.0 35 0 R
 /F1.0 10 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 >>
@@ -193980,7 +193980,7 @@ endobj
 /F1.0 10 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 /Annots [1261 0 R 1262 0 R 1265 0 R 1267 0 R]
@@ -195685,7 +195685,7 @@ endobj
 /F4.0 35 0 R
 /F2.0 29 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 >>
@@ -196820,7 +196820,7 @@ endobj
 /F2.0 29 0 R
 /F5.1 45 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 /Annots [1274 0 R 1276 0 R 1277 0 R 1278 0 R]
@@ -196830,11 +196830,11 @@ endobj
 << /Type /Font
 /BaseFont /294f18+mplus1mn-italic
 /Subtype /TrueType
-/FontDescriptor 4852 0 R
+/FontDescriptor 4859 0 R
 /FirstChar 32
 /LastChar 255
-/Widths 4854 0 R
-/ToUnicode 4853 0 R
+/Widths 4861 0 R
+/ToUnicode 4860 0 R
 >>
 endobj
 1274 0 obj
@@ -198045,7 +198045,7 @@ endobj
 /F2.0 29 0 R
 /F6.0 468 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 /Annots [1281 0 R 1282 0 R 1283 0 R 1284 0 R 1286 0 R 1287 0 R]
@@ -199276,7 +199276,7 @@ endobj
 /F3.0 33 0 R
 /F8.0 1273 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 /Annots [1290 0 R 1292 0 R 1293 0 R]
@@ -200302,7 +200302,7 @@ endobj
 /F3.0 33 0 R
 /F2.0 29 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 /Annots [1296 0 R]
@@ -201227,7 +201227,7 @@ endobj
 /F1.0 10 0 R
 /F3.0 33 0 R
 >>
-/XObject << /Stamp1 4586 0 R
+/XObject << /Stamp1 4593 0 R
 >>
 >>
 >>
@@ -201588,7 +201588,7 @@ endobj
 /F1.0 10 0 R
 /F4.0 35 0 R
 >>
-/XObject << /Stamp2 4587 0 R
+/XObject << /Stamp2 4594 0 R
 >>
 >>
 /Annots [1303 0 R 1304 0 R 1306 0 R 1307 0 R]
@@ -201646,7 +201646,7 @@ endobj
 endobj
 1310 0 obj
 << /Limits [(shell-tricks) (space-quotas)]
-/Names [(shell-tricks) 779 0 R (shell_exercises) 65 0 R (shortcircuit.reads) 1124 0 R (simple-versus-secure-access) 1305 0 R (slack) 3343 0 R (slowness-due-to-high-processor-usage) 2917 0 R (snappy.compression.installation) 3958 0 R (snapshot-errors-due-to-reverse-dns) 2817 0 R (snapshots_azure) 3242 0 R (snapshots_s3) 3235 0 R (space-quotas) 3190 0 R]
+/Names [(shell-tricks) 779 0 R (shell_exercises) 65 0 R (shortcircuit.reads) 1124 0 R (simple-versus-secure-access) 1305 0 R (slack) 3350 0 R (slowness-due-to-high-processor-usage) 2917 0 R (snappy.compression.installation) 3965 0 R (snapshot-errors-due-to-reverse-dns) 2817 0 R (snapshots_azure) 3249 0 R (snapshots_s3) 3242 0 R (space-quotas) 3197 0 R]
 >>
 endobj
 1311 0 obj
@@ -202744,7 +202744,7 @@ endobj
 /F1.0 10 0 R
 /F2.0 29 0 R
 >>
-/XObject << /Stamp1 45

<TRUNCATED>