From 07d62f233872dde30bd665a8d4d4a427ef0b127f Mon Sep 17 00:00:00 2001
From: Karl-Hermann Wieners <karl-hermann.wieners@mpimet.mpg.de>
Date: Wed, 30 Sep 2020 13:16:07 +0200
Subject: [PATCH] Global: Added dry run option (-n) to 'cpexp'

---
 CHANGES.txt       |    1 +
 cpexp             |   13 +-
 cppath            |   17 +-
 doc/mkexp.fodt.in | 1418 +++++++++++++++++++++++----------------------
 doc/mkexp.pdf     |  Bin 178225 -> 178439 bytes
 5 files changed, 736 insertions(+), 713 deletions(-)

diff --git a/CHANGES.txt b/CHANGES.txt
index 1914146..5b6085f 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -15,6 +15,7 @@ Global
 * Changed version info to be retrieved from version control system.
   This requires an additional 'make' step before running
 * Changed 'setconfig' to take additional config files to merged with the first
+* Added dry run option (-n) to 'cpexp'
 
 Configuration
 -------------
diff --git a/cpexp b/cpexp
index 5218367..0dbed54 100755
--- a/cpexp
+++ b/cpexp
@@ -14,8 +14,15 @@ die () {
     exit 1
 }
 
+CPPATHFLAGS=
+if [ "x$1" = x-n ]
+then
+    CPPATHFLAGS=-n
+    shift
+fi
+
 [ "x$2" = x ] && die "Oops: invalid number of parameters
-Usage: $PROGRAM config_file new_exp_id [key=value...]"
+Usage: $PROGRAM [-n] config_file new_exp_id [key=value...]"
 
 CONFIG_A=$1
 EXP_B=$2
@@ -25,8 +32,8 @@ eval `getexp -v "$CONFIG_A" "$@" || echo '
 ' exit $?`
 EXP_A=$EXP_ID
 
-set $SCRIPT_DIR $WORK_DIR $RESTART_DIR $DATA_DIR $LOG_DIR $MON_DIR/$EXP_A ### $MON_DIR/index.html
+set $SCRIPT_DIR $WORK_DIR $RESTART_DIR $DATA_DIR $LOG_DIR ${MON_DIR}${MON_DIR:+/$EXP_A} ### $MON_DIR/index.html
 for PATH_A
 do
-    cppath "$EXP_A" "$EXP_B" "$PATH_A"
+    cppath $CPPATHFLAGS "$EXP_A" "$EXP_B" "$PATH_A"
 done
diff --git a/cppath b/cppath
index dede8e4..8f54ee0 100755
--- a/cppath
+++ b/cppath
@@ -6,6 +6,8 @@
 #
 
 PROGRAM=`basename $0`
+BINDIR=`dirname $0`
+PATH="$BINDIR:$PATH"
 
 die () {
     echo "$@" >&2
@@ -33,8 +35,15 @@ cp_exp_file () {
     esac
 }
 
+EXEC=
+if [ "x$1" = x-n ]
+then
+    EXEC=echo
+    shift
+fi
+
 [ "x$3" = x ] && die "Oops: invalid number of parameters
-Usage: $PROGRAM experiment_id_a experiment_id_b path_to_a [path_to_b]"
+Usage: $PROGRAM [-n] experiment_id_a experiment_id_b path_to_a [path_to_b]"
 
 unset CDPATH
 
@@ -53,7 +62,7 @@ else
     PATH_B=$(dirname $PATH_B)
 fi
 
-mkdir -vp "$PATH_B"
+$EXEC mkdir -vp "$PATH_B"
 
 for DIR_A in $(
     {
@@ -63,7 +72,7 @@ for DIR_A in $(
 )
 do
     DIR_B=`echo "$DIR_A" | sed "s,$EXP_A,$EXP_B,g"`
-    mkdir -vp "$PATH_B"/"$DIR_B"
+    $EXEC mkdir -vp "$PATH_B"/"$DIR_B"
 done
     
 for FILE_A in $(
@@ -74,7 +83,7 @@ for FILE_A in $(
 )
 do
     FILE_B=${FIND_B:-$(echo "$FILE_A" | sed "s,$EXP_A,$EXP_B,g")}
-    cp_exp_file "$EXP_A" "$EXP_B" "$PATH_A/$FILE_A" "$PATH_B/$FILE_B" ||
+    $EXEC cp_exp_file "$EXP_A" "$EXP_B" "$PATH_A/$FILE_A" "$PATH_B/$FILE_B" ||
         STATUS=$?
 done
 
diff --git a/doc/mkexp.fodt.in b/doc/mkexp.fodt.in
index 76eacbb..24e614e 100644
--- a/doc/mkexp.fodt.in
+++ b/doc/mkexp.fodt.in
@@ -1,24 +1,24 @@
 <?xml version="1.0" encoding="UTF-8"?>
 
 <office:document xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:rpt="http://openoffice.org/2005/report" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:officeooo="http://openoffice.org/2009/office" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:css3t="http://www.w3.org/TR/css3-text/" office:version="1.2" office:mimetype="application/vnd.oasis.opendocument.text">
- <office:meta><meta:creation-date>2015-01-05T17:44:27.618344249</meta:creation-date><dc:title>Make Experiments!</dc:title><meta:editing-duration>P12DT3H22M43S</meta:editing-duration><meta:editing-cycles>166</meta:editing-cycles><meta:generator>LibreOffice/6.0.7.3$Linux_X86_64 LibreOffice_project/00m0$Build-3</meta:generator><meta:initial-creator>Karl-Hermann Wieners</meta:initial-creator><dc:date>2020-09-29T18:18:27.889322692</dc:date><dc:creator>Karl-Hermann Wieners</dc:creator><meta:printed-by>Karl-Hermann Wieners</meta:printed-by><meta:print-date>2015-01-20T10:55:48.576690105</meta:print-date><dc:subject>Run-script generation for earth system models</dc:subject><meta:document-statistic meta:table-count="0" meta:image-count="0" meta:object-count="0" meta:page-count="33" meta:paragraph-count="624" meta:word-count="8410" meta:character-count="53592" meta:non-whitespace-character-count="45321"/><meta:template xlink:type="simple" xlink:actuate="onRequest" xlink:title="A4" xlink:href="../../../../../../home/m221078/.config/libreoffice/4/user/template/A4.ott" meta:date="2015-01-05T17:44:27.463210655"/></office:meta>
+ <office:meta><meta:creation-date>2015-01-05T17:44:27.618344249</meta:creation-date><dc:title>Make Experiments!</dc:title><meta:editing-duration>P12DT3H27M25S</meta:editing-duration><meta:editing-cycles>167</meta:editing-cycles><meta:generator>LibreOffice/6.0.7.3$Linux_X86_64 LibreOffice_project/00m0$Build-3</meta:generator><meta:initial-creator>Karl-Hermann Wieners</meta:initial-creator><dc:date>2020-09-30T13:13:20.697106008</dc:date><dc:creator>Karl-Hermann Wieners</dc:creator><meta:printed-by>Karl-Hermann Wieners</meta:printed-by><meta:print-date>2015-01-20T10:55:48.576690105</meta:print-date><dc:subject>Run-script generation for earth system models</dc:subject><meta:document-statistic meta:table-count="0" meta:image-count="0" meta:object-count="0" meta:page-count="33" meta:paragraph-count="624" meta:word-count="8423" meta:character-count="53663" meta:non-whitespace-character-count="45379"/><meta:template xlink:type="simple" xlink:actuate="onRequest" xlink:title="A4" xlink:href="../../../../../../home/m221078/.config/libreoffice/4/user/template/A4.ott" meta:date="2015-01-05T17:44:27.463210655"/></office:meta>
  <office:settings>
   <config:config-item-set config:name="ooo:view-settings">
-   <config:config-item config:name="ViewAreaTop" config:type="long">867068</config:config-item>
+   <config:config-item config:name="ViewAreaTop" config:type="long">253411</config:config-item>
    <config:config-item config:name="ViewAreaLeft" config:type="long">0</config:config-item>
    <config:config-item config:name="ViewAreaWidth" config:type="long">22098</config:config-item>
-   <config:config-item config:name="ViewAreaHeight" config:type="long">20525</config:config-item>
+   <config:config-item config:name="ViewAreaHeight" config:type="long">19309</config:config-item>
    <config:config-item config:name="ShowRedlineChanges" config:type="boolean">false</config:config-item>
    <config:config-item config:name="InBrowseMode" config:type="boolean">false</config:config-item>
    <config:config-item-map-indexed config:name="Views">
     <config:config-item-map-entry>
      <config:config-item config:name="ViewId" config:type="string">view2</config:config-item>
-     <config:config-item config:name="ViewLeft" config:type="long">11691</config:config-item>
-     <config:config-item config:name="ViewTop" config:type="long">883100</config:config-item>
+     <config:config-item config:name="ViewLeft" config:type="long">8749</config:config-item>
+     <config:config-item config:name="ViewTop" config:type="long">266979</config:config-item>
      <config:config-item config:name="VisibleLeft" config:type="long">0</config:config-item>
-     <config:config-item config:name="VisibleTop" config:type="long">867068</config:config-item>
+     <config:config-item config:name="VisibleTop" config:type="long">253411</config:config-item>
      <config:config-item config:name="VisibleRight" config:type="long">22096</config:config-item>
-     <config:config-item config:name="VisibleBottom" config:type="long">887591</config:config-item>
+     <config:config-item config:name="VisibleBottom" config:type="long">272718</config:config-item>
      <config:config-item config:name="ZoomType" config:type="short">3</config:config-item>
      <config:config-item config:name="ViewLayoutColumns" config:type="short">0</config:config-item>
      <config:config-item config:name="ViewLayoutBookMode" config:type="boolean">false</config:config-item>
@@ -41,7 +41,7 @@
    <config:config-item config:name="AlignTabStopPosition" config:type="boolean">true</config:config-item>
    <config:config-item config:name="PrintLeftPages" config:type="boolean">true</config:config-item>
    <config:config-item config:name="IgnoreFirstLineIndentInNumbering" config:type="boolean">false</config:config-item>
-   <config:config-item config:name="PrinterSetup" config:type="base64Binary">swH+/0hQLU9mZmljZWpldC00NjIwLXNlcmllcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ1VQUzpIUC1PZmZpY2VqZXQtNDYyMC1zZXJpZXMAAAAWAAMA0AAAAAAAAAAIAFZUAAAkbQAASm9iRGF0YSAxCnByaW50ZXI9SFAtT2ZmaWNlamV0LTQ2MjAtc2VyaWVzCm9yaWVudGF0aW9uPVBvcnRyYWl0CmNvcGllcz0xCmNvbGxhdGU9ZmFsc2UKbWFyZ2luZGFqdXN0bWVudD0wLDAsMCwwCmNvbG9yZGVwdGg9MjQKcHNsZXZlbD0wCnBkZmRldmljZT0xCmNvbG9yZGV2aWNlPTAKUFBEQ29udGV4RGF0YQpJbnB1dFNsb3Q6QXV0bwBQYWdlU2l6ZTpMZXR0ZXIAABIAQ09NUEFUX0RVUExFWF9NT0RFEwBEdXBsZXhNb2RlOjpVbmtub3du</config:config-item>
+   <config:config-item config:name="PrinterSetup" config:type="base64Binary">swH+/0hQLU9mZmljZWpldC00NjIwLXNlcmllcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ1VQUzpIUC1PZmZpY2VqZXQtNDYyMC1zZXJpZXMAAAAWAAMA0AAAAAAAAAAIAFZUAAAkbQAASm9iRGF0YSAxCnByaW50ZXI9SFAtT2ZmaWNlamV0LTQ2MjAtc2VyaWVzCm9yaWVudGF0aW9uPVBvcnRyYWl0CmNvcGllcz0xCmNvbGxhdGU9ZmFsc2UKbWFyZ2luZGFqdXN0bWVudD0wLDAsMCwwCmNvbG9yZGVwdGg9MjQKcHNsZXZlbD0wCnBkZmRldmljZT0xCmNvbG9yZGV2aWNlPTAKUFBEQ29udGV4RGF0YQpQYWdlU2l6ZTpMZXR0ZXIASW5wdXRTbG90OkF1dG8AABIAQ09NUEFUX0RVUExFWF9NT0RFEwBEdXBsZXhNb2RlOjpVbmtub3du</config:config-item>
    <config:config-item config:name="CollapseEmptyCellPara" config:type="boolean">true</config:config-item>
    <config:config-item config:name="RedlineProtectionKey" config:type="base64Binary"/>
    <config:config-item config:name="UseOldPrinterMetrics" config:type="boolean">false</config:config-item>
@@ -92,7 +92,7 @@
    <config:config-item config:name="UnxForceZeroExtLeading" config:type="boolean">false</config:config-item>
    <config:config-item config:name="TabAtLeftIndentForParagraphsInList" config:type="boolean">false</config:config-item>
    <config:config-item config:name="PrintRightPages" config:type="boolean">true</config:config-item>
-   <config:config-item config:name="Rsid" config:type="int">18869309</config:config-item>
+   <config:config-item config:name="Rsid" config:type="int">18936640</config:config-item>
    <config:config-item config:name="MathBaselineAlignment" config:type="boolean">true</config:config-item>
    <config:config-item config:name="MsWordCompTrailingBlanks" config:type="boolean">false</config:config-item>
    <config:config-item config:name="InvertBorderSpacing" config:type="boolean">false</config:config-item>
@@ -719,754 +719,757 @@
   <style:style style:name="P106" style:family="paragraph" style:parent-style-name="Text_20_body">
    <style:text-properties officeooo:rsid="01114cfa" officeooo:paragraph-rsid="01114cfa"/>
   </style:style>
-  <style:style style:name="P107" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P107" style:family="paragraph" style:parent-style-name="Text_20_body">
+   <style:text-properties officeooo:rsid="011bfd3c" officeooo:paragraph-rsid="011bfd3c"/>
+  </style:style>
+  <style:style style:name="P108" style:family="paragraph" style:parent-style-name="Text_20_body">
+   <style:text-properties officeooo:rsid="011bfd3c" officeooo:paragraph-rsid="011cd839"/>
+  </style:style>
+  <style:style style:name="P109" style:family="paragraph" style:parent-style-name="Text_20_body">
+   <style:text-properties officeooo:rsid="011d9d28" officeooo:paragraph-rsid="011d9d28"/>
+  </style:style>
+  <style:style style:name="P110" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties officeooo:paragraph-rsid="000ef722"/>
   </style:style>
-  <style:style style:name="P108" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P111" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties officeooo:rsid="000ef722" officeooo:paragraph-rsid="000ef722"/>
   </style:style>
-  <style:style style:name="P109" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P112" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties officeooo:rsid="0010c1fe" officeooo:paragraph-rsid="0010c1fe"/>
   </style:style>
-  <style:style style:name="P110" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P113" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties officeooo:rsid="00120dec" officeooo:paragraph-rsid="00120dec"/>
   </style:style>
-  <style:style style:name="P111" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P114" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties officeooo:rsid="00120dec" officeooo:paragraph-rsid="0056317a"/>
   </style:style>
-  <style:style style:name="P112" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P115" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties officeooo:rsid="00120dec" officeooo:paragraph-rsid="00c2926f"/>
   </style:style>
-  <style:style style:name="P113" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P116" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties officeooo:rsid="00120dec" officeooo:paragraph-rsid="00c2ee8b"/>
   </style:style>
-  <style:style style:name="P114" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P117" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties officeooo:rsid="00136724" officeooo:paragraph-rsid="00136724"/>
   </style:style>
-  <style:style style:name="P115" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P118" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties officeooo:rsid="00136724" officeooo:paragraph-rsid="00145993"/>
   </style:style>
-  <style:style style:name="P116" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P119" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties officeooo:rsid="00136724" officeooo:paragraph-rsid="00823929"/>
   </style:style>
-  <style:style style:name="P117" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P120" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties officeooo:rsid="00136724" officeooo:paragraph-rsid="00c6886f"/>
   </style:style>
-  <style:style style:name="P118" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P121" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties officeooo:rsid="00136724" officeooo:paragraph-rsid="010b31a7"/>
   </style:style>
-  <style:style style:name="P119" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P122" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties officeooo:rsid="00136724" officeooo:paragraph-rsid="010c8232"/>
   </style:style>
-  <style:style style:name="P120" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P123" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties officeooo:rsid="00145993" officeooo:paragraph-rsid="00145993"/>
   </style:style>
-  <style:style style:name="P121" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P124" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
   </style:style>
-  <style:style style:name="P122" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P125" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties fo:font-weight="bold" officeooo:paragraph-rsid="00145993" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
   </style:style>
-  <style:style style:name="P123" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P126" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties fo:font-weight="bold" officeooo:rsid="00120dec" officeooo:paragraph-rsid="00145993" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
   </style:style>
-  <style:style style:name="P124" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P127" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties fo:font-weight="bold" officeooo:paragraph-rsid="0040993d" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
   </style:style>
-  <style:style style:name="P125" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P128" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties fo:font-weight="bold" officeooo:rsid="00136724" officeooo:paragraph-rsid="00823929" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
   </style:style>
-  <style:style style:name="P126" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P129" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties fo:font-weight="bold" officeooo:rsid="00136724" officeooo:paragraph-rsid="00c6886f" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
   </style:style>
-  <style:style style:name="P127" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P130" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties fo:font-weight="bold" officeooo:rsid="00136724" officeooo:paragraph-rsid="010b31a7" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
   </style:style>
-  <style:style style:name="P128" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P131" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties fo:font-weight="bold" officeooo:rsid="00136724" officeooo:paragraph-rsid="010c8232" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
   </style:style>
-  <style:style style:name="P129" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P132" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties fo:font-weight="bold" officeooo:rsid="00823929" officeooo:paragraph-rsid="00823929" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
   </style:style>
-  <style:style style:name="P130" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P133" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties fo:font-weight="bold" officeooo:paragraph-rsid="00881a06" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
   </style:style>
-  <style:style style:name="P131" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P134" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties fo:font-weight="bold" officeooo:rsid="00cfb468" officeooo:paragraph-rsid="00cfb468" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
   </style:style>
-  <style:style style:name="P132" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P135" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties officeooo:rsid="002df45a" officeooo:paragraph-rsid="002df45a"/>
   </style:style>
-  <style:style style:name="P133" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P136" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties officeooo:paragraph-rsid="002df45a"/>
   </style:style>
-  <style:style style:name="P134" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P137" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties officeooo:rsid="0031081b" officeooo:paragraph-rsid="003212b8"/>
   </style:style>
-  <style:style style:name="P135" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P138" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties officeooo:paragraph-rsid="003212b8"/>
   </style:style>
-  <style:style style:name="P136" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P139" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties officeooo:paragraph-rsid="003b8120"/>
   </style:style>
-  <style:style style:name="P137" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P140" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties officeooo:rsid="0040993d" officeooo:paragraph-rsid="0040993d"/>
   </style:style>
-  <style:style style:name="P138" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P141" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties fo:font-style="normal" style:font-style-asian="normal" style:font-style-complex="normal"/>
   </style:style>
-  <style:style style:name="P139" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P142" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties fo:font-style="normal" officeooo:rsid="00c4ca99" officeooo:paragraph-rsid="00c4ca99" style:font-style-asian="normal" style:font-style-complex="normal"/>
   </style:style>
-  <style:style style:name="P140" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P143" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties fo:font-style="normal" officeooo:rsid="00136724" officeooo:paragraph-rsid="010b31a7" style:font-style-asian="normal" style:font-style-complex="normal"/>
   </style:style>
-  <style:style style:name="P141" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P144" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties fo:font-style="normal" officeooo:rsid="00136724" officeooo:paragraph-rsid="010c8232" style:font-style-asian="normal" style:font-style-complex="normal"/>
   </style:style>
-  <style:style style:name="P142" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P145" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties fo:font-style="normal" style:text-underline-style="none" style:font-style-asian="normal" style:font-style-complex="normal"/>
   </style:style>
-  <style:style style:name="P143" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P146" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties fo:font-style="normal" style:text-underline-style="none" officeooo:rsid="0056317a" officeooo:paragraph-rsid="00551136" style:font-style-asian="normal" style:font-style-complex="normal"/>
   </style:style>
-  <style:style style:name="P144" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P147" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties fo:font-style="normal" style:text-underline-style="none" officeooo:rsid="00584c1a" officeooo:paragraph-rsid="005a5c62" style:font-style-asian="normal" style:font-style-complex="normal"/>
   </style:style>
-  <style:style style:name="P145" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P148" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties fo:font-style="normal" style:text-underline-style="none" officeooo:paragraph-rsid="005a5c62" style:font-style-asian="normal" style:font-style-complex="normal"/>
   </style:style>
-  <style:style style:name="P146" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P149" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties fo:font-style="normal" style:text-underline-style="none" officeooo:rsid="005ac4c7" officeooo:paragraph-rsid="005ac4c7" style:font-style-asian="normal" style:font-style-complex="normal"/>
   </style:style>
-  <style:style style:name="P147" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P150" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties fo:font-style="normal" style:text-underline-style="none" officeooo:paragraph-rsid="005ac4c7" style:font-style-asian="normal" style:font-style-complex="normal"/>
   </style:style>
-  <style:style style:name="P148" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P151" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties fo:font-style="normal" style:text-underline-style="none" officeooo:rsid="005b6c85" officeooo:paragraph-rsid="005b6c85" style:font-style-asian="normal" style:font-style-complex="normal"/>
   </style:style>
-  <style:style style:name="P149" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P152" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties fo:font-style="normal" style:text-underline-style="none" officeooo:paragraph-rsid="00657146" style:font-style-asian="normal" style:font-style-complex="normal"/>
   </style:style>
-  <style:style style:name="P150" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P153" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties fo:font-style="normal" style:text-underline-style="none" officeooo:rsid="00657146" officeooo:paragraph-rsid="00657146" style:font-style-asian="normal" style:font-style-complex="normal"/>
   </style:style>
-  <style:style style:name="P151" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P154" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties fo:font-style="normal" fo:font-weight="bold" officeooo:rsid="00881a06" officeooo:paragraph-rsid="00881a06" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-style-complex="normal" style:font-weight-complex="bold"/>
   </style:style>
-  <style:style style:name="P152" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P155" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties fo:font-style="normal" fo:font-weight="normal" officeooo:rsid="00c6886f" officeooo:paragraph-rsid="00c6886f" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-style-complex="normal" style:font-weight-complex="normal"/>
   </style:style>
-  <style:style style:name="P153" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P156" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties fo:font-style="normal" fo:font-weight="normal" officeooo:rsid="00136724" officeooo:paragraph-rsid="00c6886f" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-style-complex="normal" style:font-weight-complex="normal"/>
   </style:style>
-  <style:style style:name="P154" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P157" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties officeooo:rsid="00405b5f"/>
   </style:style>
-  <style:style style:name="P155" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P158" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties officeooo:rsid="0051a8b5" officeooo:paragraph-rsid="0051a8b5"/>
   </style:style>
-  <style:style style:name="P156" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P159" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties officeooo:paragraph-rsid="00551136"/>
   </style:style>
-  <style:style style:name="P157" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P160" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties officeooo:rsid="0056317a" officeooo:paragraph-rsid="0056317a"/>
   </style:style>
-  <style:style style:name="P158" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P161" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties officeooo:rsid="0056317a" officeooo:paragraph-rsid="00c2926f"/>
   </style:style>
-  <style:style style:name="P159" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P162" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties officeooo:paragraph-rsid="005ac4c7"/>
   </style:style>
-  <style:style style:name="P160" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P163" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties officeooo:paragraph-rsid="005b6c85"/>
   </style:style>
-  <style:style style:name="P161" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P164" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties officeooo:rsid="005b6c85" officeooo:paragraph-rsid="005b6c85"/>
   </style:style>
-  <style:style style:name="P162" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P165" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties officeooo:paragraph-rsid="00657146"/>
   </style:style>
-  <style:style style:name="P163" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P166" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties officeooo:paragraph-rsid="006e58f1"/>
   </style:style>
-  <style:style style:name="P164" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P167" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties officeooo:rsid="00823929" officeooo:paragraph-rsid="00823929"/>
   </style:style>
-  <style:style style:name="P165" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P168" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties officeooo:rsid="00823929" officeooo:paragraph-rsid="010b31a7"/>
   </style:style>
-  <style:style style:name="P166" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P169" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties officeooo:rsid="00823929" officeooo:paragraph-rsid="010c8232"/>
   </style:style>
-  <style:style style:name="P167" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P170" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties officeooo:rsid="00840f80" officeooo:paragraph-rsid="00840f80"/>
   </style:style>
-  <style:style style:name="P168" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P171" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties officeooo:rsid="00840f80" officeooo:paragraph-rsid="00881a06"/>
   </style:style>
-  <style:style style:name="P169" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P172" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties officeooo:paragraph-rsid="00881a06"/>
   </style:style>
-  <style:style style:name="P170" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P173" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties officeooo:rsid="008a0101" officeooo:paragraph-rsid="008a0101"/>
   </style:style>
-  <style:style style:name="P171" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P174" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties officeooo:paragraph-rsid="008a0101"/>
   </style:style>
-  <style:style style:name="P172" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P175" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties officeooo:rsid="008b134d" officeooo:paragraph-rsid="008b134d"/>
   </style:style>
-  <style:style style:name="P173" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P176" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties officeooo:rsid="008ba54a" officeooo:paragraph-rsid="008c2cba"/>
   </style:style>
-  <style:style style:name="P174" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P177" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties officeooo:rsid="008c2cba" officeooo:paragraph-rsid="008c2cba"/>
   </style:style>
-  <style:style style:name="P175" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P178" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties officeooo:rsid="00931d47" officeooo:paragraph-rsid="00931d47"/>
   </style:style>
-  <style:style style:name="P176" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P179" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties officeooo:rsid="0089d9b6"/>
   </style:style>
-  <style:style style:name="P177" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P180" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties officeooo:rsid="00c4ca99" officeooo:paragraph-rsid="00c4ca99"/>
   </style:style>
-  <style:style style:name="P178" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P181" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties officeooo:paragraph-rsid="00c6886f"/>
   </style:style>
-  <style:style style:name="P179" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P182" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties officeooo:paragraph-rsid="00c85300"/>
   </style:style>
-  <style:style style:name="P180" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P183" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties officeooo:rsid="00cba5e3" officeooo:paragraph-rsid="00cba5e3"/>
   </style:style>
-  <style:style style:name="P181" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P184" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties officeooo:rsid="00cba5e3" officeooo:paragraph-rsid="00ccb67c"/>
   </style:style>
-  <style:style style:name="P182" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P185" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties officeooo:rsid="00ccb67c" officeooo:paragraph-rsid="00ccb67c"/>
   </style:style>
-  <style:style style:name="P183" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P186" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties officeooo:paragraph-rsid="010b31a7"/>
   </style:style>
-  <style:style style:name="P184" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+  <style:style style:name="P187" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
    <style:text-properties officeooo:paragraph-rsid="010c8232"/>
   </style:style>
-  <style:style style:name="P185" style:family="paragraph" style:parent-style-name="List_20_Heading">
+  <style:style style:name="P188" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+   <style:text-properties officeooo:paragraph-rsid="011cd839"/>
+  </style:style>
+  <style:style style:name="P189" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+   <style:text-properties fo:font-weight="normal" officeooo:paragraph-rsid="011cd839" style:font-weight-asian="normal" style:font-weight-complex="normal"/>
+  </style:style>
+  <style:style style:name="P190" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+   <style:text-properties fo:font-weight="normal" officeooo:paragraph-rsid="011e9cc8" style:font-weight-asian="normal" style:font-weight-complex="normal"/>
+  </style:style>
+  <style:style style:name="P191" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+   <style:text-properties fo:font-weight="normal" officeooo:rsid="011f7d97" officeooo:paragraph-rsid="011f7d97" style:font-weight-asian="normal" style:font-weight-complex="normal"/>
+  </style:style>
+  <style:style style:name="P192" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+   <style:text-properties fo:font-weight="normal" officeooo:paragraph-rsid="011f7d97" style:font-weight-asian="normal" style:font-weight-complex="normal"/>
+  </style:style>
+  <style:style style:name="P193" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+   <style:text-properties officeooo:paragraph-rsid="011e9cc8"/>
+  </style:style>
+  <style:style style:name="P194" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+   <style:text-properties officeooo:rsid="011f7d97" officeooo:paragraph-rsid="011f7d97"/>
+  </style:style>
+  <style:style style:name="P195" style:family="paragraph" style:parent-style-name="List_20_Heading">
    <style:text-properties officeooo:rsid="00469c32" officeooo:paragraph-rsid="00469c32"/>
   </style:style>
-  <style:style style:name="P186" style:family="paragraph" style:parent-style-name="List_20_Heading">
+  <style:style style:name="P196" style:family="paragraph" style:parent-style-name="List_20_Heading">
    <style:text-properties officeooo:rsid="00469c32" officeooo:paragraph-rsid="004e33b4"/>
   </style:style>
-  <style:style style:name="P187" style:family="paragraph" style:parent-style-name="List_20_Heading">
+  <style:style style:name="P197" style:family="paragraph" style:parent-style-name="List_20_Heading">
    <style:text-properties fo:font-style="normal" style:font-style-asian="normal" style:font-style-complex="normal"/>
   </style:style>
-  <style:style style:name="P188" style:family="paragraph" style:parent-style-name="List_20_Heading">
+  <style:style style:name="P198" style:family="paragraph" style:parent-style-name="List_20_Heading">
    <style:text-properties fo:font-style="normal" officeooo:rsid="004584b6" officeooo:paragraph-rsid="004584b6" style:font-style-asian="normal" style:font-style-complex="normal"/>
   </style:style>
-  <style:style style:name="P189" style:family="paragraph" style:parent-style-name="List_20_Heading">
+  <style:style style:name="P199" style:family="paragraph" style:parent-style-name="List_20_Heading">
    <style:text-properties fo:font-style="normal" officeooo:rsid="0045d600" officeooo:paragraph-rsid="0045d600" style:font-style-asian="normal" style:font-style-complex="normal"/>
   </style:style>
-  <style:style style:name="P190" style:family="paragraph" style:parent-style-name="List_20_Heading">
+  <style:style style:name="P200" style:family="paragraph" style:parent-style-name="List_20_Heading">
    <style:text-properties fo:font-style="normal" officeooo:rsid="00469c32" officeooo:paragraph-rsid="00469c32" style:font-style-asian="normal" style:font-style-complex="normal"/>
   </style:style>
-  <style:style style:name="P191" style:family="paragraph" style:parent-style-name="List_20_Heading">
+  <style:style style:name="P201" style:family="paragraph" style:parent-style-name="List_20_Heading">
    <style:text-properties fo:font-style="normal" officeooo:rsid="00493380" officeooo:paragraph-rsid="00493380" style:font-style-asian="normal" style:font-style-complex="normal"/>
   </style:style>
-  <style:style style:name="P192" style:family="paragraph" style:parent-style-name="List_20_Heading">
+  <style:style style:name="P202" style:family="paragraph" style:parent-style-name="List_20_Heading">
    <style:text-properties fo:font-style="normal" officeooo:paragraph-rsid="00493380" style:font-style-asian="normal" style:font-style-complex="normal"/>
   </style:style>
-  <style:style style:name="P193" style:family="paragraph" style:parent-style-name="List_20_Heading">
+  <style:style style:name="P203" style:family="paragraph" style:parent-style-name="List_20_Heading">
    <style:text-properties fo:font-style="normal" officeooo:rsid="009d837c" officeooo:paragraph-rsid="009d837c" style:font-style-asian="normal" style:font-style-complex="normal"/>
   </style:style>
-  <style:style style:name="P194" style:family="paragraph" style:parent-style-name="List_20_Heading">
+  <style:style style:name="P204" style:family="paragraph" style:parent-style-name="List_20_Heading">
    <style:text-properties fo:font-style="normal" officeooo:rsid="00d7adce" officeooo:paragraph-rsid="00d7adce" style:font-style-asian="normal" style:font-style-complex="normal"/>
   </style:style>
-  <style:style style:name="P195" style:family="paragraph" style:parent-style-name="List_20_Heading">
+  <style:style style:name="P205" style:family="paragraph" style:parent-style-name="List_20_Heading">
    <style:text-properties fo:font-style="normal" style:text-underline-style="none" style:font-style-asian="normal" style:font-style-complex="normal"/>
   </style:style>
-  <style:style style:name="P196" style:family="paragraph" style:parent-style-name="List_20_Heading">
+  <style:style style:name="P206" style:family="paragraph" style:parent-style-name="List_20_Heading">
    <style:text-properties fo:font-style="normal" style:text-underline-style="none" officeooo:rsid="009beecc" officeooo:paragraph-rsid="009beecc" style:font-style-asian="normal" style:font-style-complex="normal"/>
   </style:style>
-  <style:style style:name="P197" style:family="paragraph" style:parent-style-name="List_20_Heading">
+  <style:style style:name="P207" style:family="paragraph" style:parent-style-name="List_20_Heading">
    <style:text-properties officeooo:rsid="00493380" officeooo:paragraph-rsid="004e33b4"/>
   </style:style>
-  <style:style style:name="P198" style:family="paragraph" style:parent-style-name="List_20_Heading">
+  <style:style style:name="P208" style:family="paragraph" style:parent-style-name="List_20_Heading">
    <style:text-properties officeooo:rsid="00484f3f" officeooo:paragraph-rsid="004e33b4"/>
   </style:style>
-  <style:style style:name="P199" style:family="paragraph" style:parent-style-name="List_20_Heading">
+  <style:style style:name="P209" style:family="paragraph" style:parent-style-name="List_20_Heading">
    <style:text-properties officeooo:rsid="00719334" officeooo:paragraph-rsid="00719334"/>
   </style:style>
-  <style:style style:name="P200" style:family="paragraph" style:parent-style-name="List_20_Heading">
+  <style:style style:name="P210" style:family="paragraph" style:parent-style-name="List_20_Heading">
    <style:text-properties officeooo:rsid="00c20e43" officeooo:paragraph-rsid="00c20e43"/>
   </style:style>
-  <style:style style:name="P201" style:family="paragraph" style:parent-style-name="List_20_Contents">
+  <style:style style:name="P211" style:family="paragraph" style:parent-style-name="List_20_Contents">
    <style:text-properties officeooo:rsid="004584b6" officeooo:paragraph-rsid="004584b6"/>
   </style:style>
-  <style:style style:name="P202" style:family="paragraph" style:parent-style-name="List_20_Contents">
+  <style:style style:name="P212" style:family="paragraph" style:parent-style-name="List_20_Contents">
    <style:text-properties officeooo:rsid="00469c32" officeooo:paragraph-rsid="00469c32"/>
   </style:style>
-  <style:style style:name="P203" style:family="paragraph" style:parent-style-name="List_20_Contents">
+  <style:style style:name="P213" style:family="paragraph" style:parent-style-name="List_20_Contents">
    <style:text-properties officeooo:rsid="00493380" officeooo:paragraph-rsid="00493380"/>
   </style:style>
-  <style:style style:name="P204" style:family="paragraph" style:parent-style-name="List_20_Contents">
+  <style:style style:name="P214" style:family="paragraph" style:parent-style-name="List_20_Contents">
    <style:text-properties fo:font-style="normal" officeooo:rsid="0045d600" officeooo:paragraph-rsid="0045d600" style:font-style-asian="normal" style:font-style-complex="normal"/>
   </style:style>
-  <style:style style:name="P205" style:family="paragraph" style:parent-style-name="List_20_Contents">
+  <style:style style:name="P215" style:family="paragraph" style:parent-style-name="List_20_Contents">
    <style:text-properties fo:font-style="normal" officeooo:rsid="00484f3f" officeooo:paragraph-rsid="004e33b4" style:font-style-asian="normal" style:font-style-complex="normal"/>
   </style:style>
-  <style:style style:name="P206" style:family="paragraph" style:parent-style-name="List_20_Contents">
+  <style:style style:name="P216" style:family="paragraph" style:parent-style-name="List_20_Contents">
    <style:text-properties fo:font-style="normal" officeooo:rsid="00493380" officeooo:paragraph-rsid="00493380" style:font-style-asian="normal" style:font-style-complex="normal"/>
   </style:style>
-  <style:style style:name="P207" style:family="paragraph" style:parent-style-name="List_20_Contents">
+  <style:style style:name="P217" style:family="paragraph" style:parent-style-name="List_20_Contents">
    <style:text-properties fo:font-style="normal" officeooo:rsid="00493380" officeooo:paragraph-rsid="004e33b4" style:font-style-asian="normal" style:font-style-complex="normal"/>
   </style:style>
-  <style:style style:name="P208" style:family="paragraph" style:parent-style-name="List_20_Contents">
+  <style:style style:name="P218" style:family="paragraph" style:parent-style-name="List_20_Contents">
    <style:text-properties fo:font-style="normal" officeooo:rsid="00493380" officeooo:paragraph-rsid="00d7adce" style:font-style-asian="normal" style:font-style-complex="normal"/>
   </style:style>
-  <style:style style:name="P209" style:family="paragraph" style:parent-style-name="List_20_Contents">
+  <style:style style:name="P219" style:family="paragraph" style:parent-style-name="List_20_Contents">
    <style:text-properties fo:font-style="normal" officeooo:rsid="00469c32" officeooo:paragraph-rsid="00469c32" style:font-style-asian="normal" style:font-style-complex="normal"/>
   </style:style>
-  <style:style style:name="P210" style:family="paragraph" style:parent-style-name="List_20_Contents">
+  <style:style style:name="P220" style:family="paragraph" style:parent-style-name="List_20_Contents">
    <style:text-properties fo:font-style="normal" officeooo:rsid="007ab691" officeooo:paragraph-rsid="007ab691" style:font-style-asian="normal" style:font-style-complex="normal"/>
   </style:style>
-  <style:style style:name="P211" style:family="paragraph" style:parent-style-name="List_20_Contents">
+  <style:style style:name="P221" style:family="paragraph" style:parent-style-name="List_20_Contents">
    <style:text-properties fo:font-style="normal" officeooo:rsid="009d837c" officeooo:paragraph-rsid="009d837c" style:font-style-asian="normal" style:font-style-complex="normal"/>
   </style:style>
-  <style:style style:name="P212" style:family="paragraph" style:parent-style-name="List_20_Contents">
+  <style:style style:name="P222" style:family="paragraph" style:parent-style-name="List_20_Contents">
    <style:text-properties fo:font-style="normal" officeooo:rsid="00719334" officeooo:paragraph-rsid="00719334" style:font-style-asian="normal" style:font-style-complex="normal"/>
   </style:style>
-  <style:style style:name="P213" style:family="paragraph" style:parent-style-name="List_20_Contents">
+  <style:style style:name="P223" style:family="paragraph" style:parent-style-name="List_20_Contents">
    <style:text-properties fo:font-style="normal" officeooo:rsid="00dbc83d" officeooo:paragraph-rsid="00dbc83d" style:font-style-asian="normal" style:font-style-complex="normal"/>
   </style:style>
-  <style:style style:name="P214" style:family="paragraph" style:parent-style-name="List_20_Contents">
+  <style:style style:name="P224" style:family="paragraph" style:parent-style-name="List_20_Contents">
    <style:text-properties fo:font-style="normal" officeooo:rsid="00e102d3" officeooo:paragraph-rsid="00e102d3" style:font-style-asian="normal" style:font-style-complex="normal"/>
   </style:style>
-  <style:style style:name="P215" style:family="paragraph" style:parent-style-name="List_20_Contents">
+  <style:style style:name="P225" style:family="paragraph" style:parent-style-name="List_20_Contents">
    <style:text-properties fo:font-style="normal" officeooo:rsid="01037e2c" officeooo:paragraph-rsid="01037e2c" style:font-style-asian="normal" style:font-style-complex="normal"/>
   </style:style>
-  <style:style style:name="P216" style:family="paragraph" style:parent-style-name="List_20_Contents">
+  <style:style style:name="P226" style:family="paragraph" style:parent-style-name="List_20_Contents">
    <style:text-properties fo:font-style="normal" fo:font-weight="normal" officeooo:rsid="00925c69" officeooo:paragraph-rsid="00925c69" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-style-complex="normal" style:font-weight-complex="normal"/>
   </style:style>
-  <style:style style:name="P217" style:family="paragraph" style:parent-style-name="List_20_Contents">
+  <style:style style:name="P227" style:family="paragraph" style:parent-style-name="List_20_Contents">
    <style:text-properties fo:font-style="normal" fo:font-weight="normal" officeooo:rsid="00cef9a3" officeooo:paragraph-rsid="00d08d3b" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-style-complex="normal" style:font-weight-complex="normal"/>
   </style:style>
-  <style:style style:name="P218" style:family="paragraph" style:parent-style-name="List_20_Contents">
+  <style:style style:name="P228" style:family="paragraph" style:parent-style-name="List_20_Contents">
    <style:text-properties fo:font-style="normal" style:text-underline-style="none" officeooo:rsid="009beecc" officeooo:paragraph-rsid="009beecc" style:font-style-asian="normal" style:font-style-complex="normal"/>
   </style:style>
-  <style:style style:name="P219" style:family="paragraph" style:parent-style-name="List_20_Contents">
+  <style:style style:name="P229" style:family="paragraph" style:parent-style-name="List_20_Contents">
    <style:text-properties fo:font-style="normal" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00e1d614" officeooo:paragraph-rsid="00e1d614" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-style-complex="normal" style:font-weight-complex="normal"/>
   </style:style>
-  <style:style style:name="P220" style:family="paragraph" style:parent-style-name="List_20_Contents">
+  <style:style style:name="P230" style:family="paragraph" style:parent-style-name="List_20_Contents">
    <style:text-properties officeooo:rsid="00484f3f" officeooo:paragraph-rsid="004e33b4"/>
   </style:style>
-  <style:style style:name="P221" style:family="paragraph" style:parent-style-name="List_20_Contents">
+  <style:style style:name="P231" style:family="paragraph" style:parent-style-name="List_20_Contents">
    <style:text-properties officeooo:rsid="006c5326" officeooo:paragraph-rsid="006c5326"/>
   </style:style>
-  <style:style style:name="P222" style:family="paragraph" style:parent-style-name="List_20_Contents">
+  <style:style style:name="P232" style:family="paragraph" style:parent-style-name="List_20_Contents">
    <style:text-properties officeooo:paragraph-rsid="00779a5b"/>
   </style:style>
-  <style:style style:name="P223" style:family="paragraph" style:parent-style-name="List_20_Contents">
+  <style:style style:name="P233" style:family="paragraph" style:parent-style-name="List_20_Contents">
    <style:text-properties fo:font-style="italic" officeooo:rsid="007ab691" officeooo:paragraph-rsid="007ab691" style:font-style-asian="italic" style:font-style-complex="italic"/>
   </style:style>
-  <style:style style:name="P224" style:family="paragraph" style:parent-style-name="List_20_Contents">
+  <style:style style:name="P234" style:family="paragraph" style:parent-style-name="List_20_Contents">
    <style:text-properties fo:font-style="italic" officeooo:rsid="00925c69" officeooo:paragraph-rsid="00925c69" style:font-style-asian="italic" style:font-style-complex="italic"/>
   </style:style>
-  <style:style style:name="P225" style:family="paragraph" style:parent-style-name="List_20_Contents">
+  <style:style style:name="P235" style:family="paragraph" style:parent-style-name="List_20_Contents">
    <style:text-properties fo:font-style="italic" officeooo:rsid="00779a5b" officeooo:paragraph-rsid="00a52bc9" style:font-style-asian="italic" style:font-style-complex="italic"/>
   </style:style>
-  <style:style style:name="P226" style:family="paragraph" style:parent-style-name="List_20_Contents">
+  <style:style style:name="P236" style:family="paragraph" style:parent-style-name="List_20_Contents">
    <style:text-properties officeooo:rsid="007a1e4b" officeooo:paragraph-rsid="007a1e4b"/>
   </style:style>
-  <style:style style:name="P227" style:family="paragraph" style:parent-style-name="List_20_Contents">
+  <style:style style:name="P237" style:family="paragraph" style:parent-style-name="List_20_Contents">
    <style:text-properties officeooo:rsid="007ab691" officeooo:paragraph-rsid="007ab691"/>
   </style:style>
-  <style:style style:name="P228" style:family="paragraph" style:parent-style-name="List_20_Contents">
+  <style:style style:name="P238" style:family="paragraph" style:parent-style-name="List_20_Contents">
    <style:text-properties officeooo:rsid="007bf983" officeooo:paragraph-rsid="007bf983"/>
   </style:style>
-  <style:style style:name="P229" style:family="paragraph" style:parent-style-name="List_20_Contents">
+  <style:style style:name="P239" style:family="paragraph" style:parent-style-name="List_20_Contents">
    <style:text-properties officeooo:rsid="007bf983" officeooo:paragraph-rsid="00dd5dd8"/>
   </style:style>
-  <style:style style:name="P230" style:family="paragraph" style:parent-style-name="List_20_Contents">
+  <style:style style:name="P240" style:family="paragraph" style:parent-style-name="List_20_Contents">
    <style:text-properties officeooo:rsid="008e53fe" officeooo:paragraph-rsid="008f3b90"/>
   </style:style>
-  <style:style style:name="P231" style:family="paragraph" style:parent-style-name="List_20_Contents">
+  <style:style style:name="P241" style:family="paragraph" style:parent-style-name="List_20_Contents">
    <style:text-properties officeooo:rsid="008e53fe" officeooo:paragraph-rsid="00fa446c"/>
   </style:style>
-  <style:style style:name="P232" style:family="paragraph" style:parent-style-name="List_20_Contents">
+  <style:style style:name="P242" style:family="paragraph" style:parent-style-name="List_20_Contents">
    <style:text-properties officeooo:rsid="0090e55e" officeooo:paragraph-rsid="00913e1d"/>
   </style:style>
-  <style:style style:name="P233" style:family="paragraph" style:parent-style-name="List_20_Contents">
+  <style:style style:name="P243" style:family="paragraph" style:parent-style-name="List_20_Contents">
    <style:text-properties officeooo:rsid="00beeeb9" officeooo:paragraph-rsid="00beeeb9"/>
   </style:style>
-  <style:style style:name="P234" style:family="paragraph" style:parent-style-name="List_20_Contents">
+  <style:style style:name="P244" style:family="paragraph" style:parent-style-name="List_20_Contents">
    <style:text-properties officeooo:rsid="00beeeb9" officeooo:paragraph-rsid="00c0dbdb"/>
   </style:style>
-  <style:style style:name="P235" style:family="paragraph" style:parent-style-name="List_20_Contents">
+  <style:style style:name="P245" style:family="paragraph" style:parent-style-name="List_20_Contents">
    <style:text-properties officeooo:rsid="00c20e43" officeooo:paragraph-rsid="00c20e43"/>
   </style:style>
-  <style:style style:name="P236" style:family="paragraph" style:parent-style-name="List_20_Contents">
+  <style:style style:name="P246" style:family="paragraph" style:parent-style-name="List_20_Contents">
    <style:text-properties officeooo:rsid="00cef9a3" officeooo:paragraph-rsid="00cef9a3"/>
   </style:style>
-  <style:style style:name="P237" style:family="paragraph" style:parent-style-name="List_20_Contents">
+  <style:style style:name="P247" style:family="paragraph" style:parent-style-name="List_20_Contents">
    <style:text-properties officeooo:rsid="00cfb468" officeooo:paragraph-rsid="00cfb468"/>
   </style:style>
-  <style:style style:name="P238" style:family="paragraph" style:parent-style-name="List_20_Contents">
+  <style:style style:name="P248" style:family="paragraph" style:parent-style-name="List_20_Contents">
    <style:text-properties fo:font-weight="bold" officeooo:rsid="00d08d3b" officeooo:paragraph-rsid="00d08d3b" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
   </style:style>
-  <style:style style:name="P239" style:family="paragraph" style:parent-style-name="List_20_Contents">
+  <style:style style:name="P249" style:family="paragraph" style:parent-style-name="List_20_Contents">
    <style:text-properties fo:font-weight="bold" officeooo:rsid="00e1d614" officeooo:paragraph-rsid="00e1d614" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
   </style:style>
-  <style:style style:name="P240" style:family="paragraph" style:parent-style-name="List_20_Contents">
+  <style:style style:name="P250" style:family="paragraph" style:parent-style-name="List_20_Contents">
    <style:text-properties officeooo:rsid="00d15d24" officeooo:paragraph-rsid="00d15d24"/>
   </style:style>
-  <style:style style:name="P241" style:family="paragraph" style:parent-style-name="List_20_Contents">
+  <style:style style:name="P251" style:family="paragraph" style:parent-style-name="List_20_Contents">
    <style:text-properties officeooo:rsid="00dbc83d" officeooo:paragraph-rsid="00dbc83d"/>
   </style:style>
-  <style:style style:name="P242" style:family="paragraph" style:parent-style-name="List_20_Contents">
+  <style:style style:name="P252" style:family="paragraph" style:parent-style-name="List_20_Contents">
    <style:text-properties officeooo:rsid="00e102d3" officeooo:paragraph-rsid="00e102d3"/>
   </style:style>
-  <style:style style:name="P243" style:family="paragraph" style:parent-style-name="List_20_Contents">
+  <style:style style:name="P253" style:family="paragraph" style:parent-style-name="List_20_Contents">
    <style:text-properties officeooo:rsid="00e4d644" officeooo:paragraph-rsid="00e4d644"/>
   </style:style>
-  <style:style style:name="P244" style:family="paragraph" style:parent-style-name="List_20_Contents">
+  <style:style style:name="P254" style:family="paragraph" style:parent-style-name="List_20_Contents">
    <style:text-properties officeooo:paragraph-rsid="00f02006"/>
   </style:style>
-  <style:style style:name="P245" style:family="paragraph" style:parent-style-name="List_20_Contents">
+  <style:style style:name="P255" style:family="paragraph" style:parent-style-name="List_20_Contents">
    <style:text-properties officeooo:rsid="00f0bb68" officeooo:paragraph-rsid="00f0bb68"/>
   </style:style>
-  <style:style style:name="P246" style:family="paragraph" style:parent-style-name="List_20_Contents">
+  <style:style style:name="P256" style:family="paragraph" style:parent-style-name="List_20_Contents">
    <style:text-properties officeooo:rsid="00f0bb68" officeooo:paragraph-rsid="00f87427"/>
   </style:style>
-  <style:style style:name="P247" style:family="paragraph" style:parent-style-name="List_20_Contents">
+  <style:style style:name="P257" style:family="paragraph" style:parent-style-name="List_20_Contents">
    <style:text-properties officeooo:paragraph-rsid="00fa446c"/>
   </style:style>
-  <style:style style:name="P248" style:family="paragraph" style:parent-style-name="List_20_Contents">
+  <style:style style:name="P258" style:family="paragraph" style:parent-style-name="List_20_Contents">
    <style:text-properties officeooo:paragraph-rsid="00fe6ad2"/>
   </style:style>
-  <style:style style:name="P249" style:family="paragraph" style:parent-style-name="List_20_Contents">
+  <style:style style:name="P259" style:family="paragraph" style:parent-style-name="List_20_Contents">
    <style:text-properties officeooo:rsid="00fe6ad2" officeooo:paragraph-rsid="00fe6ad2"/>
   </style:style>
-  <style:style style:name="P250" style:family="paragraph" style:parent-style-name="List_20_Contents">
+  <style:style style:name="P260" style:family="paragraph" style:parent-style-name="List_20_Contents">
    <style:text-properties officeooo:rsid="01037e2c" officeooo:paragraph-rsid="01037e2c"/>
   </style:style>
-  <style:style style:name="P251" style:family="paragraph" style:parent-style-name="List_20_Contents">
+  <style:style style:name="P261" style:family="paragraph" style:parent-style-name="List_20_Contents">
    <style:text-properties officeooo:paragraph-rsid="0118a9d0"/>
   </style:style>
-  <style:style style:name="P252" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading">
+  <style:style style:name="P262" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading">
    <style:text-properties officeooo:paragraph-rsid="007a1e4b"/>
   </style:style>
-  <style:style style:name="P253" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading">
+  <style:style style:name="P263" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading">
    <style:text-properties officeooo:rsid="007ab691" officeooo:paragraph-rsid="007ab691"/>
   </style:style>
-  <style:style style:name="P254" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading">
+  <style:style style:name="P264" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading">
    <style:text-properties officeooo:paragraph-rsid="007bf983"/>
   </style:style>
-  <style:style style:name="P255" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading">
+  <style:style style:name="P265" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading">
    <style:text-properties officeooo:rsid="008e53fe" officeooo:paragraph-rsid="008e53fe"/>
   </style:style>
-  <style:style style:name="P256" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading">
+  <style:style style:name="P266" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading">
    <style:text-properties fo:font-style="italic" officeooo:rsid="00925c69" officeooo:paragraph-rsid="00925c69" style:font-style-asian="italic" style:font-style-complex="italic"/>
   </style:style>
-  <style:style style:name="P257" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading">
+  <style:style style:name="P267" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading">
    <style:text-properties officeooo:paragraph-rsid="0090e55e"/>
   </style:style>
-  <style:style style:name="P258" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading">
+  <style:style style:name="P268" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading">
    <style:text-properties officeooo:rsid="00925c69" officeooo:paragraph-rsid="00925c69"/>
   </style:style>
-  <style:style style:name="P259" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading">
+  <style:style style:name="P269" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading">
    <style:text-properties officeooo:rsid="00beeeb9" officeooo:paragraph-rsid="00beeeb9"/>
   </style:style>
-  <style:style style:name="P260" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading">
+  <style:style style:name="P270" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading">
    <style:text-properties officeooo:rsid="00beeeb9" officeooo:paragraph-rsid="00c0dbdb"/>
   </style:style>
-  <style:style style:name="P261" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading">
+  <style:style style:name="P271" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading">
    <style:text-properties fo:font-weight="bold" officeooo:rsid="00cfb468" officeooo:paragraph-rsid="00cfb468" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
   </style:style>
-  <style:style style:name="P262" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading">
+  <style:style style:name="P272" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading">
    <style:text-properties fo:font-weight="bold" officeooo:rsid="00d08d3b" officeooo:paragraph-rsid="00d08d3b" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
   </style:style>
-  <style:style style:name="P263" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading">
+  <style:style style:name="P273" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading">
    <style:text-properties fo:font-weight="bold" officeooo:rsid="00e1d614" officeooo:paragraph-rsid="00e1d614" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
   </style:style>
-  <style:style style:name="P264" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading">
+  <style:style style:name="P274" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading">
    <style:text-properties officeooo:rsid="00d08d3b" officeooo:paragraph-rsid="00d08d3b"/>
   </style:style>
-  <style:style style:name="P265" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading">
+  <style:style style:name="P275" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading">
    <style:text-properties officeooo:paragraph-rsid="00dbc83d"/>
   </style:style>
-  <style:style style:name="P266" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading">
+  <style:style style:name="P276" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading">
    <style:text-properties officeooo:paragraph-rsid="00dd5dd8"/>
   </style:style>
-  <style:style style:name="P267" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading">
+  <style:style style:name="P277" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading">
    <style:text-properties officeooo:paragraph-rsid="00f02006"/>
   </style:style>
-  <style:style style:name="P268" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading">
+  <style:style style:name="P278" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading">
    <style:text-properties officeooo:paragraph-rsid="00fe6ad2"/>
   </style:style>
-  <style:style style:name="P269" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading">
+  <style:style style:name="P279" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading">
    <style:text-properties officeooo:rsid="00fff904" officeooo:paragraph-rsid="00fff904"/>
   </style:style>
-  <style:style style:name="P270" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading">
+  <style:style style:name="P280" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading">
    <style:text-properties officeooo:paragraph-rsid="01037e2c"/>
   </style:style>
-  <style:style style:name="P271" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading">
+  <style:style style:name="P281" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading">
    <style:text-properties officeooo:rsid="010837cd" officeooo:paragraph-rsid="010837cd"/>
   </style:style>
-  <style:style style:name="P272" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading">
+  <style:style style:name="P282" style:family="paragraph" style:parent-style-name="Preformatted_20_List_20_Heading">
    <style:text-properties officeooo:paragraph-rsid="01161488"/>
   </style:style>
-  <style:style style:name="P273" style:family="paragraph" style:parent-style-name="Preformatted_20_Text_20_Interrupt">
+  <style:style style:name="P283" style:family="paragraph" style:parent-style-name="Preformatted_20_Text_20_Interrupt">
    <style:text-properties officeooo:paragraph-rsid="008c2cba"/>
   </style:style>
-  <style:style style:name="P274" style:family="paragraph" style:parent-style-name="Preformatted_20_Text_20_Indented">
+  <style:style style:name="P284" style:family="paragraph" style:parent-style-name="Preformatted_20_Text_20_Indented">
    <style:text-properties fo:font-style="normal" officeooo:rsid="008f3b90" officeooo:paragraph-rsid="008f3b90" style:font-style-asian="normal" style:font-style-complex="normal"/>
   </style:style>
-  <style:style style:name="P275" style:family="paragraph" style:parent-style-name="Preformatted_20_Text_20_Indented">
+  <style:style style:name="P285" style:family="paragraph" style:parent-style-name="Preformatted_20_Text_20_Indented">
    <style:text-properties fo:font-style="normal" fo:font-weight="normal" officeooo:rsid="00cba5e3" officeooo:paragraph-rsid="00d15d24" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-style-complex="normal" style:font-weight-complex="normal"/>
   </style:style>
-  <style:style style:name="P276" style:family="paragraph" style:parent-style-name="Preformatted_20_Text_20_Indented">
+  <style:style style:name="P286" style:family="paragraph" style:parent-style-name="Preformatted_20_Text_20_Indented">
    <style:text-properties fo:font-style="normal" fo:font-weight="normal" officeooo:rsid="00d15d24" officeooo:paragraph-rsid="00d15d24" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-style-complex="normal" style:font-weight-complex="normal"/>
   </style:style>
-  <style:style style:name="P277" style:family="paragraph" style:parent-style-name="Preformatted_20_Text_20_Indented">
+  <style:style style:name="P287" style:family="paragraph" style:parent-style-name="Preformatted_20_Text_20_Indented">
    <style:text-properties officeooo:paragraph-rsid="00cfb468"/>
   </style:style>
-  <style:style style:name="P278" style:family="paragraph" style:parent-style-name="Preformatted_20_Text_20_Indented">
+  <style:style style:name="P288" style:family="paragraph" style:parent-style-name="Preformatted_20_Text_20_Indented">
    <style:text-properties officeooo:rsid="00d08d3b" officeooo:paragraph-rsid="00d08d3b"/>
   </style:style>
-  <style:style style:name="P279" style:family="paragraph" style:parent-style-name="Preformatted_20_Text_20_Indented">
+  <style:style style:name="P289" style:family="paragraph" style:parent-style-name="Preformatted_20_Text_20_Indented">
    <style:text-properties officeooo:rsid="00d15d24" officeooo:paragraph-rsid="00d15d24"/>
   </style:style>
-  <style:style style:name="P280" style:family="paragraph" style:parent-style-name="Caption">
+  <style:style style:name="P290" style:family="paragraph" style:parent-style-name="Caption">
    <style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
   </style:style>
-  <style:style style:name="P281" style:family="paragraph" style:parent-style-name="Contents_20_Heading">
+  <style:style style:name="P291" style:family="paragraph" style:parent-style-name="Contents_20_Heading">
    <style:paragraph-properties fo:break-before="page"/>
   </style:style>
-  <style:style style:name="P282" style:family="paragraph" style:parent-style-name="Heading_20_1">
+  <style:style style:name="P292" style:family="paragraph" style:parent-style-name="Heading_20_1">
    <style:paragraph-properties fo:break-before="page"/>
    <style:text-properties officeooo:rsid="000a3505" officeooo:paragraph-rsid="000a3505"/>
   </style:style>
-  <style:style style:name="P283" style:family="paragraph" style:parent-style-name="Contents_20_1">
+  <style:style style:name="P293" style:family="paragraph" style:parent-style-name="Contents_20_1">
    <style:paragraph-properties>
     <style:tab-stops>
      <style:tab-stop style:position="17cm" style:type="right" style:leader-style="dotted" style:leader-text="."/>
     </style:tab-stops>
    </style:paragraph-properties>
   </style:style>
-  <style:style style:name="P284" style:family="paragraph" style:parent-style-name="Contents_20_2">
+  <style:style style:name="P294" style:family="paragraph" style:parent-style-name="Contents_20_2">
    <style:paragraph-properties>
     <style:tab-stops>
      <style:tab-stop style:position="16.501cm" style:type="right" style:leader-style="dotted" style:leader-text="."/>
     </style:tab-stops>
    </style:paragraph-properties>
   </style:style>
-  <style:style style:name="P285" style:family="paragraph" style:parent-style-name="Contents_20_3">
+  <style:style style:name="P295" style:family="paragraph" style:parent-style-name="Contents_20_3">
    <style:paragraph-properties>
     <style:tab-stops>
      <style:tab-stop style:position="16.002cm" style:type="right" style:leader-style="dotted" style:leader-text="."/>
     </style:tab-stops>
    </style:paragraph-properties>
   </style:style>
-  <style:style style:name="P286" style:family="paragraph" style:parent-style-name="Heading_20_1">
+  <style:style style:name="P296" style:family="paragraph" style:parent-style-name="Heading_20_1">
    <style:text-properties officeooo:rsid="001888a2" officeooo:paragraph-rsid="009eea28"/>
   </style:style>
-  <style:style style:name="P287" style:family="paragraph" style:parent-style-name="Title" style:master-page-name="">
+  <style:style style:name="P297" style:family="paragraph" style:parent-style-name="Title" style:master-page-name="">
    <style:paragraph-properties style:page-number="auto"/>
    <style:text-properties officeooo:rsid="000a3505" officeooo:paragraph-rsid="000a3505"/>
   </style:style>
-  <style:style style:name="P288" style:family="paragraph" style:parent-style-name="Title" style:master-page-name="">
+  <style:style style:name="P298" style:family="paragraph" style:parent-style-name="Title" style:master-page-name="">
    <style:paragraph-properties style:page-number="auto"/>
    <style:text-properties officeooo:rsid="00cef9a3" officeooo:paragraph-rsid="00cef9a3"/>
   </style:style>
-  <style:style style:name="P289" style:family="paragraph" style:parent-style-name="Heading_20_3">
+  <style:style style:name="P299" style:family="paragraph" style:parent-style-name="Heading_20_3">
    <style:text-properties officeooo:rsid="00750ebf" officeooo:paragraph-rsid="0074d148"/>
   </style:style>
-  <style:style style:name="P290" style:family="paragraph" style:parent-style-name="Heading_20_3">
+  <style:style style:name="P300" style:family="paragraph" style:parent-style-name="Heading_20_3">
    <style:text-properties officeooo:rsid="00750ebf" officeooo:paragraph-rsid="00750ebf"/>
   </style:style>
-  <style:style style:name="P291" style:family="paragraph" style:parent-style-name="Heading_20_3">
+  <style:style style:name="P301" style:family="paragraph" style:parent-style-name="Heading_20_3">
    <style:text-properties fo:font-style="normal" style:text-underline-style="none" style:font-style-asian="normal" style:font-style-complex="normal"/>
   </style:style>
-  <style:style style:name="P292" style:family="paragraph" style:parent-style-name="Heading_20_3">
+  <style:style style:name="P302" style:family="paragraph" style:parent-style-name="Heading_20_3">
    <style:text-properties fo:font-style="normal" style:text-underline-style="none" officeooo:rsid="009beecc" officeooo:paragraph-rsid="009beecc" style:font-style-asian="normal" style:font-style-complex="normal"/>
   </style:style>
-  <style:style style:name="P293" style:family="paragraph" style:parent-style-name="Heading_20_3">
+  <style:style style:name="P303" style:family="paragraph" style:parent-style-name="Heading_20_3">
    <style:text-properties fo:font-style="normal" style:text-underline-style="none" officeooo:paragraph-rsid="00c2926f" style:font-style-asian="normal" style:font-style-complex="normal"/>
   </style:style>
-  <style:style style:name="P294" style:family="paragraph" style:parent-style-name="Heading_20_3">
+  <style:style style:name="P304" style:family="paragraph" style:parent-style-name="Heading_20_3">
    <style:text-properties fo:font-style="normal" style:font-style-asian="normal" style:font-style-complex="normal"/>
   </style:style>
-  <style:style style:name="P295" style:family="paragraph" style:parent-style-name="Heading_20_3">
+  <style:style style:name="P305" style:family="paragraph" style:parent-style-name="Heading_20_3">
    <style:text-properties fo:font-style="normal" officeooo:paragraph-rsid="00931d47" style:font-style-asian="normal" style:font-style-complex="normal"/>
   </style:style>
-  <style:style style:name="P296" style:family="paragraph" style:parent-style-name="Heading_20_3">
+  <style:style style:name="P306" style:family="paragraph" style:parent-style-name="Heading_20_3">
    <style:text-properties fo:font-style="normal" officeooo:rsid="009715be" officeooo:paragraph-rsid="009acc7d" style:font-style-asian="normal" style:font-style-complex="normal"/>
   </style:style>
-  <style:style style:name="P297" style:family="paragraph" style:parent-style-name="Heading_20_3">
+  <style:style style:name="P307" style:family="paragraph" style:parent-style-name="Heading_20_3">
    <style:text-properties fo:font-style="normal" officeooo:rsid="009715be" officeooo:paragraph-rsid="00c6886f" style:font-style-asian="normal" style:font-style-complex="normal"/>
   </style:style>
-  <style:style style:name="P298" style:family="paragraph" style:parent-style-name="Heading_20_3">
+  <style:style style:name="P308" style:family="paragraph" style:parent-style-name="Heading_20_3">
    <style:text-properties officeooo:rsid="0063d022" officeooo:paragraph-rsid="0063d022"/>
   </style:style>
-  <style:style style:name="P299" style:family="paragraph" style:parent-style-name="Heading_20_3">
+  <style:style style:name="P309" style:family="paragraph" style:parent-style-name="Heading_20_3">
    <style:text-properties officeooo:paragraph-rsid="00931d47"/>
   </style:style>
-  <style:style style:name="P300" style:family="paragraph" style:parent-style-name="Heading_20_3">
+  <style:style style:name="P310" style:family="paragraph" style:parent-style-name="Heading_20_3">
    <style:text-properties officeooo:rsid="00c6886f" officeooo:paragraph-rsid="00c6886f"/>
   </style:style>
-  <style:style style:name="P301" style:family="paragraph" style:parent-style-name="Heading_20_3">
+  <style:style style:name="P311" style:family="paragraph" style:parent-style-name="Heading_20_3">
    <style:text-properties officeooo:rsid="00d7bd9c" officeooo:paragraph-rsid="00d7bd9c"/>
   </style:style>
-  <style:style style:name="P302" style:family="paragraph" style:parent-style-name="Heading_20_3">
+  <style:style style:name="P312" style:family="paragraph" style:parent-style-name="Heading_20_3">
    <style:text-properties officeooo:rsid="00f3a79a" officeooo:paragraph-rsid="00f3a79a"/>
   </style:style>
-  <style:style style:name="P303" style:family="paragraph" style:parent-style-name="Heading_20_3">
+  <style:style style:name="P313" style:family="paragraph" style:parent-style-name="Heading_20_3">
    <style:text-properties officeooo:paragraph-rsid="00fb6b92"/>
   </style:style>
-  <style:style style:name="P304" style:family="paragraph" style:parent-style-name="Subtitle">
+  <style:style style:name="P314" style:family="paragraph" style:parent-style-name="Heading_20_3">
+   <style:text-properties officeooo:rsid="011bfd3c" officeooo:paragraph-rsid="011bfd3c"/>
+  </style:style>
+  <style:style style:name="P315" style:family="paragraph" style:parent-style-name="Subtitle">
    <style:text-properties officeooo:rsid="000a3505" officeooo:paragraph-rsid="000a3505"/>
   </style:style>
-  <style:style style:name="P305" style:family="paragraph" style:parent-style-name="Subtitle">
+  <style:style style:name="P316" style:family="paragraph" style:parent-style-name="Subtitle">
    <style:text-properties officeooo:rsid="000a3505" officeooo:paragraph-rsid="00beeeb9"/>
   </style:style>
-  <style:style style:name="P306" style:family="paragraph" style:parent-style-name="Subtitle">
+  <style:style style:name="P317" style:family="paragraph" style:parent-style-name="Subtitle">
    <style:text-properties officeooo:rsid="00beeeb9" officeooo:paragraph-rsid="00beeeb9"/>
   </style:style>
-  <style:style style:name="P307" style:family="paragraph" style:parent-style-name="Heading_20_2">
+  <style:style style:name="P318" style:family="paragraph" style:parent-style-name="Heading_20_2">
    <style:text-properties officeooo:paragraph-rsid="00b17591"/>
   </style:style>
-  <style:style style:name="P308" style:family="paragraph" style:parent-style-name="Heading_20_2">
+  <style:style style:name="P319" style:family="paragraph" style:parent-style-name="Heading_20_2">
    <style:text-properties officeooo:rsid="00288fc1" officeooo:paragraph-rsid="00423119"/>
   </style:style>
-  <style:style style:name="P309" style:family="paragraph" style:parent-style-name="Heading_20_2">
+  <style:style style:name="P320" style:family="paragraph" style:parent-style-name="Heading_20_2">
    <style:text-properties officeooo:paragraph-rsid="00423119"/>
   </style:style>
-  <style:style style:name="P310" style:family="paragraph" style:parent-style-name="Heading_20_2">
+  <style:style style:name="P321" style:family="paragraph" style:parent-style-name="Heading_20_2">
    <style:text-properties officeooo:paragraph-rsid="0063d022"/>
   </style:style>
-  <style:style style:name="P311" style:family="paragraph" style:parent-style-name="Heading_20_2">
+  <style:style style:name="P322" style:family="paragraph" style:parent-style-name="Heading_20_2">
    <style:text-properties fo:font-style="normal" officeooo:paragraph-rsid="0086f697" style:font-style-asian="normal" style:font-style-complex="normal"/>
   </style:style>
-  <style:style style:name="P312" style:family="paragraph" style:parent-style-name="Heading_20_2">
+  <style:style style:name="P323" style:family="paragraph" style:parent-style-name="Heading_20_2">
    <style:text-properties officeooo:paragraph-rsid="00f02006"/>
   </style:style>
-  <style:style style:name="P313" style:family="paragraph" style:parent-style-name="Heading_20_2">
+  <style:style style:name="P324" style:family="paragraph" style:parent-style-name="Heading_20_2">
    <style:text-properties officeooo:paragraph-rsid="00f3a79a"/>
   </style:style>
-  <style:style style:name="P314" style:family="paragraph" style:parent-style-name="Footnote">
+  <style:style style:name="P325" style:family="paragraph" style:parent-style-name="Footnote">
    <style:text-properties officeooo:rsid="00f46600" officeooo:paragraph-rsid="00f46600"/>
   </style:style>
-  <style:style style:name="P315" style:family="paragraph" style:parent-style-name="Text_20_body">
-   <style:text-properties officeooo:rsid="00931d47" officeooo:paragraph-rsid="009475bb"/>
-  </style:style>
-  <style:style style:name="P316" style:family="paragraph" style:parent-style-name="Text_20_body">
-   <style:text-properties officeooo:rsid="011bfd3c" officeooo:paragraph-rsid="011bfd3c"/>
-  </style:style>
-  <style:style style:name="P317" style:family="paragraph" style:parent-style-name="Text_20_body">
-   <style:text-properties officeooo:rsid="011bfd3c" officeooo:paragraph-rsid="011cd839"/>
-  </style:style>
-  <style:style style:name="P318" style:family="paragraph" style:parent-style-name="Text_20_body">
-   <style:text-properties officeooo:rsid="011d9d28" officeooo:paragraph-rsid="011d9d28"/>
-  </style:style>
-  <style:style style:name="P319" style:family="paragraph" style:parent-style-name="Title" style:master-page-name="First_20_Page">
+  <style:style style:name="P326" style:family="paragraph" style:parent-style-name="Title" style:master-page-name="First_20_Page">
    <style:paragraph-properties style:page-number="auto"/>
    <style:text-properties officeooo:rsid="00cef9a3" officeooo:paragraph-rsid="00cef9a3"/>
   </style:style>
-  <style:style style:name="P320" style:family="paragraph" style:parent-style-name="Heading_20_1">
+  <style:style style:name="P327" style:family="paragraph" style:parent-style-name="Heading_20_1">
    <style:text-properties officeooo:rsid="001888a2" officeooo:paragraph-rsid="009eea28"/>
   </style:style>
-  <style:style style:name="P321" style:family="paragraph" style:parent-style-name="Heading_20_1">
+  <style:style style:name="P328" style:family="paragraph" style:parent-style-name="Heading_20_1">
    <style:paragraph-properties fo:break-before="page"/>
    <style:text-properties officeooo:rsid="000a3505" officeooo:paragraph-rsid="000a3505"/>
   </style:style>
-  <style:style style:name="P322" style:family="paragraph" style:parent-style-name="Heading_20_2">
+  <style:style style:name="P329" style:family="paragraph" style:parent-style-name="Heading_20_2">
    <style:text-properties officeooo:paragraph-rsid="00b17591"/>
   </style:style>
-  <style:style style:name="P323" style:family="paragraph" style:parent-style-name="Heading_20_2">
+  <style:style style:name="P330" style:family="paragraph" style:parent-style-name="Heading_20_2">
    <style:text-properties officeooo:rsid="00288fc1" officeooo:paragraph-rsid="00423119"/>
   </style:style>
-  <style:style style:name="P324" style:family="paragraph" style:parent-style-name="Heading_20_2">
+  <style:style style:name="P331" style:family="paragraph" style:parent-style-name="Heading_20_2">
    <style:text-properties officeooo:paragraph-rsid="00f02006"/>
   </style:style>
-  <style:style style:name="P325" style:family="paragraph" style:parent-style-name="Heading_20_2">
+  <style:style style:name="P332" style:family="paragraph" style:parent-style-name="Heading_20_2">
    <style:text-properties officeooo:paragraph-rsid="00f3a79a"/>
   </style:style>
-  <style:style style:name="P326" style:family="paragraph" style:parent-style-name="Heading_20_2">
+  <style:style style:name="P333" style:family="paragraph" style:parent-style-name="Heading_20_2">
    <style:text-properties officeooo:paragraph-rsid="0063d022"/>
   </style:style>
-  <style:style style:name="P327" style:family="paragraph" style:parent-style-name="Heading_20_2">
+  <style:style style:name="P334" style:family="paragraph" style:parent-style-name="Heading_20_2">
    <style:text-properties fo:font-style="normal" officeooo:paragraph-rsid="0086f697" style:font-style-asian="normal" style:font-style-complex="normal"/>
   </style:style>
-  <style:style style:name="P328" style:family="paragraph" style:parent-style-name="Heading_20_3">
+  <style:style style:name="P335" style:family="paragraph" style:parent-style-name="Heading_20_3">
    <style:text-properties officeooo:rsid="00750ebf" officeooo:paragraph-rsid="0074d148"/>
   </style:style>
-  <style:style style:name="P329" style:family="paragraph" style:parent-style-name="Heading_20_3">
+  <style:style style:name="P336" style:family="paragraph" style:parent-style-name="Heading_20_3">
    <style:text-properties officeooo:rsid="00750ebf" officeooo:paragraph-rsid="00750ebf"/>
   </style:style>
-  <style:style style:name="P330" style:family="paragraph" style:parent-style-name="Heading_20_3">
+  <style:style style:name="P337" style:family="paragraph" style:parent-style-name="Heading_20_3">
    <style:text-properties officeooo:rsid="00f3a79a" officeooo:paragraph-rsid="00f3a79a"/>
   </style:style>
-  <style:style style:name="P331" style:family="paragraph" style:parent-style-name="Heading_20_3">
+  <style:style style:name="P338" style:family="paragraph" style:parent-style-name="Heading_20_3">
    <style:text-properties officeooo:rsid="00d7bd9c" officeooo:paragraph-rsid="00d7bd9c"/>
   </style:style>
-  <style:style style:name="P332" style:family="paragraph" style:parent-style-name="Heading_20_3">
+  <style:style style:name="P339" style:family="paragraph" style:parent-style-name="Heading_20_3">
    <style:text-properties fo:font-style="normal" style:text-underline-style="none" style:font-style-asian="normal" style:font-style-complex="normal"/>
   </style:style>
-  <style:style style:name="P333" style:family="paragraph" style:parent-style-name="Heading_20_3">
+  <style:style style:name="P340" style:family="paragraph" style:parent-style-name="Heading_20_3">
    <style:text-properties fo:font-style="normal" style:text-underline-style="none" officeooo:rsid="009beecc" officeooo:paragraph-rsid="009beecc" style:font-style-asian="normal" style:font-style-complex="normal"/>
   </style:style>
-  <style:style style:name="P334" style:family="paragraph" style:parent-style-name="Heading_20_3">
+  <style:style style:name="P341" style:family="paragraph" style:parent-style-name="Heading_20_3">
    <style:text-properties fo:font-style="normal" style:text-underline-style="none" officeooo:paragraph-rsid="00c2926f" style:font-style-asian="normal" style:font-style-complex="normal"/>
   </style:style>
-  <style:style style:name="P335" style:family="paragraph" style:parent-style-name="Heading_20_3">
+  <style:style style:name="P342" style:family="paragraph" style:parent-style-name="Heading_20_3">
    <style:text-properties fo:font-style="normal" style:font-style-asian="normal" style:font-style-complex="normal"/>
   </style:style>
-  <style:style style:name="P336" style:family="paragraph" style:parent-style-name="Heading_20_3">
+  <style:style style:name="P343" style:family="paragraph" style:parent-style-name="Heading_20_3">
+   <style:text-properties fo:font-style="normal" officeooo:paragraph-rsid="00931d47" style:font-style-asian="normal" style:font-style-complex="normal"/>
+  </style:style>
+  <style:style style:name="P344" style:family="paragraph" style:parent-style-name="Heading_20_3">
    <style:text-properties fo:font-style="normal" officeooo:rsid="009715be" officeooo:paragraph-rsid="00c6886f" style:font-style-asian="normal" style:font-style-complex="normal"/>
   </style:style>
-  <style:style style:name="P337" style:family="paragraph" style:parent-style-name="Heading_20_3">
+  <style:style style:name="P345" style:family="paragraph" style:parent-style-name="Heading_20_3">
    <style:text-properties officeooo:rsid="0063d022" officeooo:paragraph-rsid="0063d022"/>
   </style:style>
-  <style:style style:name="P338" style:family="paragraph" style:parent-style-name="Heading_20_3">
+  <style:style style:name="P346" style:family="paragraph" style:parent-style-name="Heading_20_3">
    <style:text-properties officeooo:paragraph-rsid="00fb6b92"/>
   </style:style>
-  <style:style style:name="P339" style:family="paragraph" style:parent-style-name="Heading_20_3">
-   <style:text-properties officeooo:rsid="00c6886f" officeooo:paragraph-rsid="00c6886f"/>
-  </style:style>
-  <style:style style:name="P340" style:family="paragraph" style:parent-style-name="Heading_20_3">
+  <style:style style:name="P347" style:family="paragraph" style:parent-style-name="Heading_20_3">
    <style:text-properties officeooo:rsid="011bfd3c" officeooo:paragraph-rsid="011bfd3c"/>
   </style:style>
-  <style:style style:name="P341" style:family="paragraph" style:parent-style-name="Heading_20_3">
-   <style:text-properties officeooo:paragraph-rsid="00931d47"/>
-  </style:style>
-  <style:style style:name="P342" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
-   <style:text-properties officeooo:paragraph-rsid="006e58f1"/>
-  </style:style>
-  <style:style style:name="P343" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
-   <style:text-properties officeooo:rsid="00840f80" officeooo:paragraph-rsid="00840f80"/>
-  </style:style>
-  <style:style style:name="P344" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
-   <style:text-properties officeooo:paragraph-rsid="011cd839"/>
-  </style:style>
-  <style:style style:name="P345" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
-   <style:text-properties fo:font-weight="normal" officeooo:paragraph-rsid="011cd839" style:font-weight-asian="normal" style:font-weight-complex="normal"/>
-  </style:style>
-  <style:style style:name="P346" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
-   <style:text-properties fo:font-weight="normal" officeooo:paragraph-rsid="011e9cc8" style:font-weight-asian="normal" style:font-weight-complex="normal"/>
-  </style:style>
-  <style:style style:name="P347" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
-   <style:text-properties fo:font-weight="normal" officeooo:rsid="011f7d97" officeooo:paragraph-rsid="011f7d97" style:font-weight-asian="normal" style:font-weight-complex="normal"/>
-  </style:style>
-  <style:style style:name="P348" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
-   <style:text-properties fo:font-weight="normal" officeooo:paragraph-rsid="011f7d97" style:font-weight-asian="normal" style:font-weight-complex="normal"/>
+  <style:style style:name="P348" style:family="paragraph" style:parent-style-name="Heading_20_3">
+   <style:text-properties officeooo:rsid="00c6886f" officeooo:paragraph-rsid="00c6886f"/>
   </style:style>
   <style:style style:name="P349" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
-   <style:text-properties officeooo:paragraph-rsid="011e9cc8"/>
+   <style:text-properties fo:font-weight="bold" officeooo:rsid="011cd839" officeooo:paragraph-rsid="011cd839" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
   </style:style>
   <style:style style:name="P350" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
-   <style:text-properties officeooo:rsid="011f7d97" officeooo:paragraph-rsid="011f7d97"/>
+   <style:text-properties fo:font-weight="normal" officeooo:rsid="011f7d97" officeooo:paragraph-rsid="011e9cc8" style:font-weight-asian="normal" style:font-weight-complex="normal"/>
+  </style:style>
+  <style:style style:name="P351" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
+   <style:text-properties fo:font-weight="normal" officeooo:rsid="011f7d97" officeooo:paragraph-rsid="011f7d97" style:font-weight-asian="normal" style:font-weight-complex="normal"/>
   </style:style>
   <style:style style:name="T1" style:family="text">
    <style:text-properties officeooo:rsid="000be205"/>
@@ -2383,6 +2386,9 @@
   <style:style style:name="T305" style:family="text">
    <style:text-properties officeooo:rsid="011f7d97"/>
   </style:style>
+  <style:style style:name="T306" style:family="text">
+   <style:text-properties officeooo:rsid="0120f340"/>
+  </style:style>
   <style:style style:name="Sect1" style:family="section">
    <style:section-properties style:editable="false">
     <style:columns fo:column-count="1" fo:column-gap="0cm"/>
@@ -2430,7 +2436,7 @@
  <office:master-styles>
   <style:master-page style:name="Standard" style:page-layout-name="pm1">
    <style:footer>
-    <text:p text:style-name="Footer"><text:page-number text:select-page="current">30</text:page-number><text:tab/><text:tab/><text:modification-date style:data-style-name="N84">2020-09-29</text:modification-date>, <text:modification-time style:data-style-name="N41">18:18:28</text:modification-time></text:p>
+    <text:p text:style-name="Footer"><text:page-number text:select-page="current">10</text:page-number><text:tab/><text:tab/><text:modification-date style:data-style-name="N84">2020-09-30</text:modification-date>, <text:modification-time style:data-style-name="N41">13:13:21</text:modification-time></text:p>
    </style:footer>
   </style:master-page>
   <style:master-page style:name="First_20_Page" style:display-name="First Page" style:page-layout-name="pm2" style:next-style-name="Standard"/>
@@ -2445,10 +2451,10 @@
     <text:sequence-decl text:display-outline-level="0" text:name="Text"/>
     <text:sequence-decl text:display-outline-level="0" text:name="Drawing"/>
    </text:sequence-decls>
-   <text:p text:style-name="P319">Make Experiments!</text:p>
-   <text:p text:style-name="P305">Run-script generation for earth system models</text:p>
-   <text:p text:style-name="P306">Release @version@</text:p>
-   <text:p text:style-name="P280">Karl-Hermann Wieners<text:line-break/><text:span text:style-name="T251">Max-Planck-Institut für Meteorologie<text:line-break/>Hamburg</text:span></text:p>
+   <text:p text:style-name="P326">Make Experiments!</text:p>
+   <text:p text:style-name="P316">Run-script generation for earth system models</text:p>
+   <text:p text:style-name="P317">Release @version@</text:p>
+   <text:p text:style-name="P290">Karl-Hermann Wieners<text:line-break/><text:span text:style-name="T251">Max-Planck-Institut für Meteorologie<text:line-break/>Hamburg</text:span></text:p>
    <text:table-of-content text:style-name="Sect1" text:protected="true" text:name="Table of Contents1">
     <text:table-of-content-source text:outline-level="10">
      <text:index-title-template text:style-name="Contents_20_Heading">Table of Contents</text:index-title-template>
@@ -2535,262 +2541,262 @@
     </text:table-of-content-source>
     <text:index-body>
      <text:index-title text:style-name="Sect1" text:name="Table of Contents1_Head">
-      <text:p text:style-name="P281">Table of Contents</text:p>
+      <text:p text:style-name="P291">Table of Contents</text:p>
      </text:index-title>
-     <text:p text:style-name="P283"><text:a xlink:type="simple" xlink:href="#__RefHeading__2518_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">1 <text:s/>Introduction<text:tab/>4</text:a></text:p>
-     <text:p text:style-name="P284"><text:a xlink:type="simple" xlink:href="#__RefHeading__2520_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">1.1 <text:s/>Example: ECHAM experiment setup<text:tab/>4</text:a></text:p>
-     <text:p text:style-name="P285"><text:a xlink:type="simple" xlink:href="#__RefHeading__2522_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">1.1.1 <text:s/>Experiments are defined by custom and default settings<text:tab/>4</text:a></text:p>
-     <text:p text:style-name="P285"><text:a xlink:type="simple" xlink:href="#__RefHeading__2524_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">1.1.2 <text:s/>Job templates are completed by settings to create scripts<text:tab/>5</text:a></text:p>
-     <text:p text:style-name="P285"><text:a xlink:type="simple" xlink:href="#__RefHeading__2526_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">1.1.3 <text:s/>Generating scripts only refers to the custom settings&apos; file<text:tab/>7</text:a></text:p>
-     <text:p text:style-name="P283"><text:a xlink:type="simple" xlink:href="#__RefHeading__2528_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2 <text:s/>Details on experiment definition<text:tab/>7</text:a></text:p>
-     <text:p text:style-name="P284"><text:a xlink:type="simple" xlink:href="#__RefHeading__2530_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.1 <text:s/>Design<text:tab/>8</text:a></text:p>
-     <text:p text:style-name="P284"><text:a xlink:type="simple" xlink:href="#__RefHeading__2532_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.2 <text:s/>Tools<text:tab/>8</text:a></text:p>
-     <text:p text:style-name="P284"><text:a xlink:type="simple" xlink:href="#__RefHeading__2534_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.3 <text:s/>Format of .config files<text:tab/>10</text:a></text:p>
-     <text:p text:style-name="P285"><text:a xlink:type="simple" xlink:href="#__RefHeading__1669_1438093122" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.3.1 <text:s/>Variables<text:tab/>10</text:a></text:p>
-     <text:p text:style-name="P285"><text:a xlink:type="simple" xlink:href="#__RefHeading__2536_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.3.2 <text:s/>Sections<text:tab/>11</text:a></text:p>
-     <text:p text:style-name="P285"><text:a xlink:type="simple" xlink:href="#__RefHeading__2538_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.3.3 <text:s/>Special variables and sections<text:tab/>11</text:a></text:p>
-     <text:p text:style-name="P285"><text:a xlink:type="simple" xlink:href="#__RefHeading__2540_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.3.4 <text:s/>Variable interpolation<text:tab/>13</text:a></text:p>
-     <text:p text:style-name="P285"><text:a xlink:type="simple" xlink:href="#__RefHeading__2542_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.3.5 <text:s/>Evaluation of interpolation<text:tab/>14</text:a></text:p>
-     <text:p text:style-name="P285"><text:a xlink:type="simple" xlink:href="#__RefHeading__2544_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.3.6 <text:s/>Special expressions<text:tab/>15</text:a></text:p>
-     <text:p text:style-name="P284"><text:a xlink:type="simple" xlink:href="#__RefHeading__2546_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.4 <text:s/>Format of .tmpl files<text:tab/>16</text:a></text:p>
-     <text:p text:style-name="P285"><text:a xlink:type="simple" xlink:href="#__RefHeading__2548_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.4.1 <text:s/>Placeholders<text:tab/>16</text:a></text:p>
-     <text:p text:style-name="P285"><text:a xlink:type="simple" xlink:href="#__RefHeading__2550_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.4.2 <text:s/>Variables in sections<text:tab/>17</text:a></text:p>
-     <text:p text:style-name="P285"><text:a xlink:type="simple" xlink:href="#__RefHeading__2552_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.4.3 <text:s/>Expressions<text:tab/>17</text:a></text:p>
-     <text:p text:style-name="P285"><text:a xlink:type="simple" xlink:href="#__RefHeading__2554_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.4.4 <text:s/>Loops<text:tab/>19</text:a></text:p>
-     <text:p text:style-name="P285"><text:a xlink:type="simple" xlink:href="#__RefHeading__2556_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.4.5 <text:s/>Conditions<text:tab/>19</text:a></text:p>
-     <text:p text:style-name="P285"><text:a xlink:type="simple" xlink:href="#__RefHeading__2558_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.4.6 <text:s/>Comments<text:tab/>20</text:a></text:p>
-     <text:p text:style-name="P285"><text:a xlink:type="simple" xlink:href="#__RefHeading___Toc3658_1790556471" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.4.7 <text:s/>Block statements and block comments<text:tab/>20</text:a></text:p>
-     <text:p text:style-name="P284"><text:a xlink:type="simple" xlink:href="#__RefHeading__2560_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.5 <text:s/>Standard experiments<text:tab/>20</text:a></text:p>
-     <text:p text:style-name="P284"><text:a xlink:type="simple" xlink:href="#__RefHeading__2562_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.6 <text:s/>Standard options<text:tab/>21</text:a></text:p>
-     <text:p text:style-name="P285"><text:a xlink:type="simple" xlink:href="#__RefHeading___Toc3660_1790556471" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.6.1 <text:s/>Options set due to model configuration<text:tab/>21</text:a></text:p>
-     <text:p text:style-name="P284"><text:a xlink:type="simple" xlink:href="#__RefHeading__1508_1711940803" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.7 <text:s/>Generating jobs<text:tab/>22</text:a></text:p>
-     <text:p text:style-name="P285"><text:a xlink:type="simple" xlink:href="#__RefHeading__2566_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.7.1 <text:s/></text:a><text:a xlink:type="simple" xlink:href="#__RefHeading__2566_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link"><text:span text:style-name="T53">C</text:span></text:a><text:a xlink:type="simple" xlink:href="#__RefHeading__2566_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link"><text:span text:style-name="T53">hanging the model job list</text:span></text:a><text:a xlink:type="simple" xlink:href="#__RefHeading__2566_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link"><text:tab/>22</text:a></text:p>
-     <text:p text:style-name="P285"><text:a xlink:type="simple" xlink:href="#__RefHeading__2568_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.7.2 <text:s/>Pre-defined job variables<text:tab/>23</text:a></text:p>
-     <text:p text:style-name="P285"><text:a xlink:type="simple" xlink:href="#__RefHeading__2570_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.7.3 <text:s/>Overriding namelist settings in derived jobs<text:tab/>23</text:a></text:p>
-     <text:p text:style-name="P285"><text:a xlink:type="simple" xlink:href="#__RefHeading__2572_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.7.4 <text:s/>Native script variables<text:tab/>24</text:a></text:p>
-     <text:p text:style-name="P285"><text:a xlink:type="simple" xlink:href="#__RefHeading__2574_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.7.5 <text:s/>Initializing native script variables<text:tab/>25</text:a></text:p>
-     <text:p text:style-name="P285"><text:a xlink:type="simple" xlink:href="#__RefHeading__2576_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.7.6 <text:s/>Re-generation of scripts and backup<text:tab/>26</text:a></text:p>
-     <text:p text:style-name="P284"><text:a xlink:type="simple" xlink:href="#__RefHeading__2564_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.8 <text:s/>Standard environments<text:tab/>27</text:a></text:p>
-     <text:p text:style-name="P284"><text:a xlink:type="simple" xlink:href="#__RefHeading__1883_1672291846" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.9 <text:s/>Defining namelists and other configuration files<text:tab/>27</text:a></text:p>
-     <text:p text:style-name="P285"><text:a xlink:type="simple" xlink:href="#__RefHeading__2578_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.9.1 <text:s/>Formatting the namelist information<text:tab/>28</text:a></text:p>
-     <text:p text:style-name="P285"><text:a xlink:type="simple" xlink:href="#__RefHeading__2580_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.9.2 <text:s/></text:a><text:a xlink:type="simple" xlink:href="#__RefHeading__2580_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link"><text:span text:style-name="T53">S</text:span></text:a><text:a xlink:type="simple" xlink:href="#__RefHeading__2580_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link"><text:span text:style-name="T53">uppressing namelist groups or variables</text:span></text:a><text:a xlink:type="simple" xlink:href="#__RefHeading__2580_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link"><text:tab/>28</text:a></text:p>
-     <text:p text:style-name="P285"><text:soft-page-break/><text:a xlink:type="simple" xlink:href="#__RefHeading__2714_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.9.3 <text:s/>Using the namelist text<text:tab/>29</text:a></text:p>
-     <text:p text:style-name="P285"><text:a xlink:type="simple" xlink:href="#__RefHeading___Toc3662_1790556471" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.9.4 <text:s/>Using native script variables in namelists<text:tab/>30</text:a></text:p>
-     <text:p text:style-name="P285"><text:a xlink:type="simple" xlink:href="#__RefHeading__2584_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.9.5 <text:s/>Non-namelist configuration files<text:tab/>31</text:a></text:p>
-     <text:p text:style-name="P284"><text:a xlink:type="simple" xlink:href="#__RefHeading__2831_1132221942" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.10 <text:s/></text:a><text:a xlink:type="simple" xlink:href="#__RefHeading__2831_1132221942" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link"><text:span text:style-name="T53">D</text:span></text:a><text:a xlink:type="simple" xlink:href="#__RefHeading__2831_1132221942" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link"><text:span text:style-name="T53">efining input files for an experiment</text:span></text:a><text:a xlink:type="simple" xlink:href="#__RefHeading__2831_1132221942" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link"><text:tab/>31</text:a></text:p>
-     <text:p text:style-name="P285"><text:a xlink:type="simple" xlink:href="#__RefHeading__2833_1132221942" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.10.1 <text:s/>Overriding input files for certain jobs<text:tab/>32</text:a></text:p>
+     <text:p text:style-name="P293"><text:a xlink:type="simple" xlink:href="#__RefHeading__2518_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">1 <text:s/>Introduction<text:tab/>4</text:a></text:p>
+     <text:p text:style-name="P294"><text:a xlink:type="simple" xlink:href="#__RefHeading__2520_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">1.1 <text:s/>Example: ECHAM experiment setup<text:tab/>4</text:a></text:p>
+     <text:p text:style-name="P295"><text:a xlink:type="simple" xlink:href="#__RefHeading__2522_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">1.1.1 <text:s/>Experiments are defined by custom and default settings<text:tab/>4</text:a></text:p>
+     <text:p text:style-name="P295"><text:a xlink:type="simple" xlink:href="#__RefHeading__2524_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">1.1.2 <text:s/>Job templates are completed by settings to create scripts<text:tab/>5</text:a></text:p>
+     <text:p text:style-name="P295"><text:a xlink:type="simple" xlink:href="#__RefHeading__2526_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">1.1.3 <text:s/>Generating scripts only refers to the custom settings&apos; file<text:tab/>7</text:a></text:p>
+     <text:p text:style-name="P293"><text:a xlink:type="simple" xlink:href="#__RefHeading__2528_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2 <text:s/>Details on experiment definition<text:tab/>7</text:a></text:p>
+     <text:p text:style-name="P294"><text:a xlink:type="simple" xlink:href="#__RefHeading__2530_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.1 <text:s/>Design<text:tab/>8</text:a></text:p>
+     <text:p text:style-name="P294"><text:a xlink:type="simple" xlink:href="#__RefHeading__2532_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.2 <text:s/>Tools<text:tab/>8</text:a></text:p>
+     <text:p text:style-name="P294"><text:a xlink:type="simple" xlink:href="#__RefHeading__2534_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.3 <text:s/>Format of .config files<text:tab/>10</text:a></text:p>
+     <text:p text:style-name="P295"><text:a xlink:type="simple" xlink:href="#__RefHeading__1669_1438093122" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.3.1 <text:s/>Variables<text:tab/>10</text:a></text:p>
+     <text:p text:style-name="P295"><text:a xlink:type="simple" xlink:href="#__RefHeading__2536_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.3.2 <text:s/>Sections<text:tab/>11</text:a></text:p>
+     <text:p text:style-name="P295"><text:a xlink:type="simple" xlink:href="#__RefHeading__2538_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.3.3 <text:s/>Special variables and sections<text:tab/>11</text:a></text:p>
+     <text:p text:style-name="P295"><text:a xlink:type="simple" xlink:href="#__RefHeading__2540_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.3.4 <text:s/>Variable interpolation<text:tab/>13</text:a></text:p>
+     <text:p text:style-name="P295"><text:a xlink:type="simple" xlink:href="#__RefHeading__2542_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.3.5 <text:s/>Evaluation of interpolation<text:tab/>14</text:a></text:p>
+     <text:p text:style-name="P295"><text:a xlink:type="simple" xlink:href="#__RefHeading__2544_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.3.6 <text:s/>Special expressions<text:tab/>15</text:a></text:p>
+     <text:p text:style-name="P294"><text:a xlink:type="simple" xlink:href="#__RefHeading__2546_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.4 <text:s/>Format of .tmpl files<text:tab/>16</text:a></text:p>
+     <text:p text:style-name="P295"><text:a xlink:type="simple" xlink:href="#__RefHeading__2548_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.4.1 <text:s/>Placeholders<text:tab/>16</text:a></text:p>
+     <text:p text:style-name="P295"><text:a xlink:type="simple" xlink:href="#__RefHeading__2550_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.4.2 <text:s/>Variables in sections<text:tab/>17</text:a></text:p>
+     <text:p text:style-name="P295"><text:a xlink:type="simple" xlink:href="#__RefHeading__2552_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.4.3 <text:s/>Expressions<text:tab/>17</text:a></text:p>
+     <text:p text:style-name="P295"><text:a xlink:type="simple" xlink:href="#__RefHeading__2554_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.4.4 <text:s/>Loops<text:tab/>19</text:a></text:p>
+     <text:p text:style-name="P295"><text:a xlink:type="simple" xlink:href="#__RefHeading__2556_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.4.5 <text:s/>Conditions<text:tab/>19</text:a></text:p>
+     <text:p text:style-name="P295"><text:a xlink:type="simple" xlink:href="#__RefHeading__2558_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.4.6 <text:s/>Comments<text:tab/>20</text:a></text:p>
+     <text:p text:style-name="P295"><text:a xlink:type="simple" xlink:href="#__RefHeading___Toc3658_1790556471" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.4.7 <text:s/>Block statements and block comments<text:tab/>20</text:a></text:p>
+     <text:p text:style-name="P294"><text:a xlink:type="simple" xlink:href="#__RefHeading__2560_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.5 <text:s/>Standard experiments<text:tab/>20</text:a></text:p>
+     <text:p text:style-name="P294"><text:a xlink:type="simple" xlink:href="#__RefHeading__2562_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.6 <text:s/>Standard options<text:tab/>21</text:a></text:p>
+     <text:p text:style-name="P295"><text:a xlink:type="simple" xlink:href="#__RefHeading___Toc3660_1790556471" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.6.1 <text:s/>Options set due to model configuration<text:tab/>21</text:a></text:p>
+     <text:p text:style-name="P294"><text:a xlink:type="simple" xlink:href="#__RefHeading__1508_1711940803" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.7 <text:s/>Generating jobs<text:tab/>22</text:a></text:p>
+     <text:p text:style-name="P295"><text:a xlink:type="simple" xlink:href="#__RefHeading__2566_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.7.1 <text:s/></text:a><text:a xlink:type="simple" xlink:href="#__RefHeading__2566_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link"><text:span text:style-name="T53">C</text:span></text:a><text:a xlink:type="simple" xlink:href="#__RefHeading__2566_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link"><text:span text:style-name="T53">hanging the model job list</text:span></text:a><text:a xlink:type="simple" xlink:href="#__RefHeading__2566_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link"><text:tab/>22</text:a></text:p>
+     <text:p text:style-name="P295"><text:a xlink:type="simple" xlink:href="#__RefHeading__2568_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.7.2 <text:s/>Pre-defined job variables<text:tab/>23</text:a></text:p>
+     <text:p text:style-name="P295"><text:a xlink:type="simple" xlink:href="#__RefHeading__2570_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.7.3 <text:s/>Overriding namelist settings in derived jobs<text:tab/>23</text:a></text:p>
+     <text:p text:style-name="P295"><text:a xlink:type="simple" xlink:href="#__RefHeading__2572_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.7.4 <text:s/>Native script variables<text:tab/>24</text:a></text:p>
+     <text:p text:style-name="P295"><text:a xlink:type="simple" xlink:href="#__RefHeading__2574_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.7.5 <text:s/>Initializing native script variables<text:tab/>25</text:a></text:p>
+     <text:p text:style-name="P295"><text:a xlink:type="simple" xlink:href="#__RefHeading__2576_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.7.6 <text:s/>Re-generation of scripts and backup<text:tab/>26</text:a></text:p>
+     <text:p text:style-name="P294"><text:a xlink:type="simple" xlink:href="#__RefHeading__2564_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.8 <text:s/>Standard environments<text:tab/>27</text:a></text:p>
+     <text:p text:style-name="P294"><text:a xlink:type="simple" xlink:href="#__RefHeading__1883_1672291846" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.9 <text:s/>Defining namelists and other configuration files<text:tab/>27</text:a></text:p>
+     <text:p text:style-name="P295"><text:a xlink:type="simple" xlink:href="#__RefHeading__2578_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.9.1 <text:s/>Formatting the namelist information<text:tab/>28</text:a></text:p>
+     <text:p text:style-name="P295"><text:a xlink:type="simple" xlink:href="#__RefHeading__2580_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.9.2 <text:s/></text:a><text:a xlink:type="simple" xlink:href="#__RefHeading__2580_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link"><text:span text:style-name="T53">S</text:span></text:a><text:a xlink:type="simple" xlink:href="#__RefHeading__2580_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link"><text:span text:style-name="T53">uppressing namelist groups or variables</text:span></text:a><text:a xlink:type="simple" xlink:href="#__RefHeading__2580_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link"><text:tab/>28</text:a></text:p>
+     <text:p text:style-name="P295"><text:soft-page-break/><text:a xlink:type="simple" xlink:href="#__RefHeading__2714_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.9.3 <text:s/>Using the namelist text<text:tab/>29</text:a></text:p>
+     <text:p text:style-name="P295"><text:a xlink:type="simple" xlink:href="#__RefHeading___Toc3662_1790556471" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.9.4 <text:s/>Using native script variables in namelists<text:tab/>30</text:a></text:p>
+     <text:p text:style-name="P295"><text:a xlink:type="simple" xlink:href="#__RefHeading__2584_1114405012" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.9.5 <text:s/>Non-namelist configuration files<text:tab/>31</text:a></text:p>
+     <text:p text:style-name="P294"><text:a xlink:type="simple" xlink:href="#__RefHeading__2831_1132221942" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.10 <text:s/></text:a><text:a xlink:type="simple" xlink:href="#__RefHeading__2831_1132221942" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link"><text:span text:style-name="T53">D</text:span></text:a><text:a xlink:type="simple" xlink:href="#__RefHeading__2831_1132221942" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link"><text:span text:style-name="T53">efining input files for an experiment</text:span></text:a><text:a xlink:type="simple" xlink:href="#__RefHeading__2831_1132221942" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link"><text:tab/>31</text:a></text:p>
+     <text:p text:style-name="P295"><text:a xlink:type="simple" xlink:href="#__RefHeading__2833_1132221942" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2.10.1 <text:s/>Overriding input files for certain jobs<text:tab/>32</text:a></text:p>
     </text:index-body>
    </text:table-of-content>
    <text:p text:style-name="P86"/>
-   <text:h text:style-name="P282" text:outline-level="1"><text:bookmark-start text:name="__RefHeading__2518_1114405012"/>Introduction<text:bookmark-end text:name="__RefHeading__2518_1114405012"/></text:h>
+   <text:h text:style-name="P292" text:outline-level="1"><text:bookmark-start text:name="__RefHeading__2518_1114405012"/>Introduction<text:bookmark-end text:name="__RefHeading__2518_1114405012"/></text:h>
    <text:p text:style-name="Text_20_body">Running a numerical earth system model experiment requires a number of preparatory and processing steps like staging input data files, providing namelists and other configuration data, housekeeping duties like model-time management, post-processing and storing <text:span text:style-name="T1">of </text:span>output data. These steps are usually put into scripts or another kind of job description that is finally executed on some high-performance computing system.</text:p>
    <text:p text:style-name="P1">The <text:span text:style-name="T172">Make Experiments! (</text:span>mkexp<text:span text:style-name="T172">)</text:span> toolbox provides a generic interface to setting up such a<text:span text:style-name="T1">n experiment</text:span>. At the heart of this <text:span text:style-name="T1">lies</text:span> the so-called .config file. This is a simple <text:span text:style-name="T1">text </text:span>file that contains the model settings for your experiment in a way that is <text:span text:style-name="T1">largely </text:span>independent of the job description that is later used to run it.</text:p>
    <text:p text:style-name="P4">To make this an easy task, MPI-M&apos;s models are delivered with a number of standard experiment types. Your own .config file will chose one of these, thus inheriting their settings for use in your experiment. Typically, it will also override or amend these settings for the purpose of your experiment.</text:p>
    <text:p text:style-name="P2">While the .config fil<text:span text:style-name="T2">e contains all necessary settings, there is much more to the actual job description. Therefore, the standard experiment types also provide templates (.tmpl files) for the jobs to run, that are then converted to the final job step descriptions, using the .config file settings. Besides, the .config file contains a &apos;jobs&apos; section, where the job control flow and parameters of the job description itself may be adjusted, e.g. requiring more resources or disabling certain job steps.</text:span></text:p>
    <text:h text:style-name="Heading_20_2" text:outline-level="2"><text:bookmark-start text:name="__RefHeading__2520_1114405012"/>Example: <text:span text:style-name="T3">ECHAM experiment setup</text:span><text:bookmark-end text:name="__RefHeading__2520_1114405012"/></text:h>
    <text:p text:style-name="P32">To illustrate the way <text:span text:style-name="T9">mkexp</text:span> works, let us look at the way that experiments with ECHAM, MPI-M&apos;s atmospheric circulation model, are set up.</text:p>
-   <text:h text:style-name="P289" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2522_1114405012"/>Experiments are defined by custom and default settings<text:bookmark-end text:name="__RefHeading__2522_1114405012"/></text:h>
+   <text:h text:style-name="P299" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2522_1114405012"/>Experiments are defined by custom and default settings<text:bookmark-end text:name="__RefHeading__2522_1114405012"/></text:h>
    <text:p text:style-name="P3">ECHAM comes with five <text:span text:style-name="T221">pre-defined </text:span>experiment types, amip-LR, amip-MR, amip-HR, sstClim-LR and sstClim-MR. <text:span text:style-name="T3">To set up an experiment based on one of these, like amip-LR, all you have to do is create your own experiment configuration file within ECHAM&apos;s run subdirectory, e.g. &apos;joe1234.config&apos;, setting amip-LR as experiment type and providing an experiment description with the header comment:</text:span></text:p>
-   <text:p text:style-name="P109"><text:soft-page-break/># Standard AMIP experiment as baseline for further experiments (LR)</text:p>
-   <text:p text:style-name="P109"/>
-   <text:p text:style-name="P109">EXP_TYPE = amip-LR</text:p>
+   <text:p text:style-name="P112"><text:soft-page-break/># Standard AMIP experiment as baseline for further experiments (LR)</text:p>
+   <text:p text:style-name="P112"/>
+   <text:p text:style-name="P112">EXP_TYPE = amip-LR</text:p>
    <text:p text:style-name="P3">For each <text:span text:style-name="T4">experiment type</text:span>, you will find a .config file in the run/standard_experiments subdirectory. For instance, <text:span text:style-name="T220">&apos;</text:span>amip-LR.config<text:span text:style-name="T220">&apos;</text:span> includes these settings</text:p>
-   <text:p text:style-name="P108"># Default definitions for amip-LR experiments </text:p>
-   <text:p text:style-name="P107"/>
-   <text:p text:style-name="P107">RES = 63 </text:p>
+   <text:p text:style-name="P111"># Default definitions for amip-LR experiments </text:p>
+   <text:p text:style-name="P110"/>
+   <text:p text:style-name="P110">RES = 63 </text:p>
    <text:p text:style-name="Preformatted_20_Text"/>
    <text:p text:style-name="Preformatted_20_Text">[namelists] </text:p>
-   <text:p text:style-name="P107"/>
-   <text:p text:style-name="P107"><text:s text:c="2"/>[[namelist.echam]] </text:p>
+   <text:p text:style-name="P110"/>
+   <text:p text:style-name="P110"><text:s text:c="2"/>[[namelist.echam]] </text:p>
    <text:p text:style-name="Preformatted_20_Text"><text:s text:c="3"/>[[[runctl]]] </text:p>
    <text:p text:style-name="Preformatted_20_Text"><text:s text:c="6"/>lamip = true</text:p>
-   <text:p text:style-name="P110"/>
-   <text:p text:style-name="P110"><text:s text:c="2"/>[[namelist.jsbach]] </text:p>
-   <text:p text:style-name="P110"><text:s text:c="4"/>[[[jsbach_ctl]]] </text:p>
-   <text:p text:style-name="P110"><text:s text:c="6"/>use_dynveg <text:s/>= false </text:p>
+   <text:p text:style-name="P113"/>
+   <text:p text:style-name="P113"><text:s text:c="2"/>[[namelist.jsbach]] </text:p>
+   <text:p text:style-name="P113"><text:s text:c="4"/>[[[jsbach_ctl]]] </text:p>
+   <text:p text:style-name="P113"><text:s text:c="6"/>use_dynveg <text:s/>= false </text:p>
    <text:p text:style-name="P5">As you can see, settings are simple name = value pairs that may be organized in sections. Sections are defined by a bracketed section name. They may contain subsections, where the number of brackets define<text:span text:style-name="T170">s</text:span> the hierarchy depth. The pre-defined sections [namelists] and [jobs] are used for special purposes within <text:span text:style-name="T9">mkexp</text:span>.</text:p>
    <text:p text:style-name="P5"><text:span text:style-name="T220">Some s</text:span>ettings apply to all <text:span text:style-name="T220">ECHAM </text:span>experiment types. <text:span text:style-name="T220">They</text:span> go into a file named <text:span text:style-name="T220">&apos;</text:span>DEFAULT.config<text:span text:style-name="T220">&apos;</text:span>. <text:span text:style-name="T9">mkexp</text:span> will <text:span text:style-name="T220">always </text:span>read this file <text:span text:style-name="T220">first, </text:span>before applying <text:span text:style-name="T220">any </text:span>settings from <text:span text:style-name="T220">a specific experiment type like &apos;amip-LR.config&apos;.</text:span> <text:span text:style-name="T220">Such settings might be default paths for input data, as in</text:span></text:p>
-   <text:p text:style-name="P114"># <text:span text:style-name="T220">Default definitions for all </text:span>ECHAM experiment<text:span text:style-name="T220">s</text:span></text:p>
-   <text:p text:style-name="P114"/>
-   <text:p text:style-name="P114">ATMO_INPUT_ROOT = /pool/data/ECHAM6/input/r0004 </text:p>
-   <text:p text:style-name="P114">LAND_INPUT_ROOT = /pool/data/JSBACH/input/r0004 </text:p>
+   <text:p text:style-name="P117"># <text:span text:style-name="T220">Default definitions for all </text:span>ECHAM experiment<text:span text:style-name="T220">s</text:span></text:p>
+   <text:p text:style-name="P117"/>
+   <text:p text:style-name="P117">ATMO_INPUT_ROOT = /pool/data/ECHAM6/input/r0004 </text:p>
+   <text:p text:style-name="P117">LAND_INPUT_ROOT = /pool/data/JSBACH/input/r0004 </text:p>
    <text:p text:style-name="P6">The final configuration is then merged from all of these three sources, where the experiment configuration may override <text:span text:style-name="T50">or amend </text:span>settings from the experiment type, and the type config may in turn change the model defaults.</text:p>
-   <text:h text:style-name="P290" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2524_1114405012"/>Job templates are completed by settings to create scripts<text:bookmark-end text:name="__RefHeading__2524_1114405012"/></text:h>
+   <text:h text:style-name="P300" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2524_1114405012"/>Job templates are completed by settings to create scripts<text:bookmark-end text:name="__RefHeading__2524_1114405012"/></text:h>
    <text:p text:style-name="P6"><text:span text:style-name="T220">Now the experiment configuration is finalized, the </text:span>settings are used to fill in <text:span text:style-name="T220">a kind of job description forms, so called </text:span><text:span text:style-name="T9">templates</text:span><text:span text:style-name="T220">, </text:span>from which eventually the <text:span text:style-name="T220">actual </text:span>job description files are created. As the structure of<text:span text:style-name="T220"> </text:span>jobs is largely independent of the model resolution, all amip- experiment types share the same set of template files. One of them is <text:span text:style-name="T241">&apos;</text:span>amip.run.tmpl<text:span text:style-name="T241">&apos;</text:span>, also within the run/standard_experiments subdirectory. <text:soft-page-break/><text:span text:style-name="T6">The excerpt below shows that t</text:span>his looks mostly like a shell script, but contains <text:span text:style-name="T171">placeholders</text:span> that are filled using the .config file information:</text:p>
-   <text:p text:style-name="P114">#! /bin/bash</text:p>
-   <text:p text:style-name="P114"/>
-   <text:p text:style-name="P114"># Job file to run ECHAM 6 </text:p>
-   <text:p text:style-name="P114"/>
-   <text:p text:style-name="P120">EXP=<text:span text:style-name="T156">%{EXP_ID}</text:span> # experiment identifier </text:p>
-   <text:p text:style-name="P114"/>
-   <text:p text:style-name="P114">RES=<text:span text:style-name="T156">%{RES}</text:span> <text:span text:style-name="T171"># experiment truncation</text:span></text:p>
-   <text:p text:style-name="P114"/>
-   <text:p text:style-name="P120"># absolute paths to directories with initial data: </text:p>
-   <text:p text:style-name="P120">ATMO_DATA=<text:span text:style-name="T156">%{ATMO_INPUT_ROOT}</text:span> </text:p>
-   <text:p text:style-name="P120">ATMO_MAP_DATA=$ATMO_DATA/T${RES} </text:p>
-   <text:p text:style-name="P120"/>
-   <text:p text:style-name="P120"># absolute path to directory with initial data for JSBACH: </text:p>
-   <text:p text:style-name="P120">LAND_MAP_DATA=<text:span text:style-name="T156">%{LAND_INPUT_ROOT}</text:span>/T${RES} </text:p>
-   <text:p text:style-name="P115"/>
-   <text:p text:style-name="P115"># </text:p>
-   <text:p text:style-name="P114"># ECHAM6 namelist </text:p>
-   <text:p text:style-name="P114"># </text:p>
-   <text:p text:style-name="P114">cat &gt; namelist.echam &lt;&lt; EOF </text:p>
-   <text:p text:style-name="P114"><text:span text:style-name="T156">%{NAMELIST_ECHAM}</text:span> </text:p>
-   <text:p text:style-name="P114">EOF </text:p>
-   <text:p text:style-name="P114"/>
-   <text:p text:style-name="P114"># </text:p>
-   <text:p text:style-name="P114"># JSBACH namelist</text:p>
-   <text:p text:style-name="P114"># </text:p>
-   <text:p text:style-name="P114">cat &gt; namelist.jsbach &lt;&lt; EOF </text:p>
-   <text:p text:style-name="P114"><text:span text:style-name="T156">%{NAMELIST_JSBACH}</text:span> </text:p>
-   <text:p text:style-name="P114">EOF </text:p>
+   <text:p text:style-name="P117">#! /bin/bash</text:p>
+   <text:p text:style-name="P117"/>
+   <text:p text:style-name="P117"># Job file to run ECHAM 6 </text:p>
+   <text:p text:style-name="P117"/>
+   <text:p text:style-name="P123">EXP=<text:span text:style-name="T156">%{EXP_ID}</text:span> # experiment identifier </text:p>
+   <text:p text:style-name="P117"/>
+   <text:p text:style-name="P117">RES=<text:span text:style-name="T156">%{RES}</text:span> <text:span text:style-name="T171"># experiment truncation</text:span></text:p>
+   <text:p text:style-name="P117"/>
+   <text:p text:style-name="P123"># absolute paths to directories with initial data: </text:p>
+   <text:p text:style-name="P123">ATMO_DATA=<text:span text:style-name="T156">%{ATMO_INPUT_ROOT}</text:span> </text:p>
+   <text:p text:style-name="P123">ATMO_MAP_DATA=$ATMO_DATA/T${RES} </text:p>
+   <text:p text:style-name="P123"/>
+   <text:p text:style-name="P123"># absolute path to directory with initial data for JSBACH: </text:p>
+   <text:p text:style-name="P123">LAND_MAP_DATA=<text:span text:style-name="T156">%{LAND_INPUT_ROOT}</text:span>/T${RES} </text:p>
+   <text:p text:style-name="P118"/>
+   <text:p text:style-name="P118"># </text:p>
+   <text:p text:style-name="P117"># ECHAM6 namelist </text:p>
+   <text:p text:style-name="P117"># </text:p>
+   <text:p text:style-name="P117">cat &gt; namelist.echam &lt;&lt; EOF </text:p>
+   <text:p text:style-name="P117"><text:span text:style-name="T156">%{NAMELIST_ECHAM}</text:span> </text:p>
+   <text:p text:style-name="P117">EOF </text:p>
+   <text:p text:style-name="P117"/>
+   <text:p text:style-name="P117"># </text:p>
+   <text:p text:style-name="P117"># JSBACH namelist</text:p>
+   <text:p text:style-name="P117"># </text:p>
+   <text:p text:style-name="P117">cat &gt; namelist.jsbach &lt;&lt; EOF </text:p>
+   <text:p text:style-name="P117"><text:span text:style-name="T156">%{NAMELIST_JSBACH}</text:span> </text:p>
+   <text:p text:style-name="P117">EOF </text:p>
    <text:p text:style-name="P7"><text:span text:style-name="T221">T</text:span>h<text:span text:style-name="T221">e</text:span>se <text:span text:style-name="T221">&apos;</text:span>%{...}<text:span text:style-name="T221">&apos;</text:span> construct<text:span text:style-name="T7">s</text:span> correspond to the configuration settings shown in the previous section. The value for <text:span text:style-name="T241">the setting </text:span>given <text:span text:style-name="T221">by the variable name between &apos;%{&apos; and &apos;}&apos;</text:span> is pasted into the template, replacing the placeholder. The special names &apos;NAMELIST_ECHAM&apos; and &apos;NAMELIST_JSBACH&apos; contain the contents of the &apos;namelists&apos; subsections, with each setting taken to be a Fortran namelist setting, and formatted accordingly. &apos;EXP_ID&apos; is taken to be the base filename of the experiment&apos;s .config file. The result of this operation is then written to the final job script, in our case <text:span text:style-name="T221">&apos;</text:span>joe1234.run<text:span text:style-name="T221">&apos;</text:span>:</text:p>
-   <text:p text:style-name="P115"><text:soft-page-break/>#! /bin/bash</text:p>
-   <text:p text:style-name="P115"/>
-   <text:p text:style-name="P115"># Job file to run ECHAM 6 </text:p>
-   <text:p text:style-name="P115"/>
-   <text:p text:style-name="P120">EXP=<text:span text:style-name="T156">joe1234</text:span> # experiment identifier </text:p>
-   <text:p text:style-name="P115"/>
-   <text:p text:style-name="P115">RES=<text:span text:style-name="T157">63</text:span><text:span text:style-name="T6"> # experiment truncation</text:span></text:p>
-   <text:p text:style-name="P115"/>
-   <text:p text:style-name="P115">#<text:span text:style-name="T6"> absolute paths to directories with initial data: </text:span></text:p>
-   <text:p text:style-name="P120">ATMO_DATA=<text:span text:style-name="T158">/pool/data/ECHAM6/input/r0004</text:span><text:span text:style-name="T5"> </text:span></text:p>
-   <text:p text:style-name="P120">ATMO_MAP_DATA=$ATMO_DATA/T${RES} </text:p>
-   <text:p text:style-name="P120"/>
-   <text:p text:style-name="P120"># absolute path to directory with initial data for JSBACH: </text:p>
-   <text:p text:style-name="P120">LAND_MAP_DATA=<text:span text:style-name="T158">/pool/data/JSBACH/input/r0004</text:span>/T${RES} </text:p>
-   <text:p text:style-name="P120"/>
-   <text:p text:style-name="P120">#</text:p>
-   <text:p text:style-name="P115"># ECHAM6 namelist </text:p>
-   <text:p text:style-name="P115"># </text:p>
-   <text:p text:style-name="P115">cat &gt; namelist.echam &lt;&lt; EOF </text:p>
-   <text:p text:style-name="P122"><text:span text:style-name="T6">&amp;</text:span>runctl </text:p>
-   <text:p text:style-name="P122"><text:s text:c="4"/>lamip = .true.</text:p>
-   <text:p text:style-name="P123">/</text:p>
-   <text:p text:style-name="P115">EOF </text:p>
-   <text:p text:style-name="P115"/>
-   <text:p text:style-name="P115"># </text:p>
-   <text:p text:style-name="P115"># JSBACH namelist</text:p>
-   <text:p text:style-name="P115"># </text:p>
-   <text:p text:style-name="P115">cat &gt; namelist.jsbach &lt;&lt; EOF </text:p>
-   <text:p text:style-name="P123"><text:span text:style-name="T6">&amp;</text:span>jsbach_ctl </text:p>
-   <text:p text:style-name="P123"><text:s text:c="4"/>use_dynveg = .false.</text:p>
-   <text:p text:style-name="P123">/</text:p>
-   <text:p text:style-name="P115">EOF </text:p>
+   <text:p text:style-name="P118"><text:soft-page-break/>#! /bin/bash</text:p>
+   <text:p text:style-name="P118"/>
+   <text:p text:style-name="P118"># Job file to run ECHAM 6 </text:p>
+   <text:p text:style-name="P118"/>
+   <text:p text:style-name="P123">EXP=<text:span text:style-name="T156">joe1234</text:span> # experiment identifier </text:p>
+   <text:p text:style-name="P118"/>
+   <text:p text:style-name="P118">RES=<text:span text:style-name="T157">63</text:span><text:span text:style-name="T6"> # experiment truncation</text:span></text:p>
+   <text:p text:style-name="P118"/>
+   <text:p text:style-name="P118">#<text:span text:style-name="T6"> absolute paths to directories with initial data: </text:span></text:p>
+   <text:p text:style-name="P123">ATMO_DATA=<text:span text:style-name="T158">/pool/data/ECHAM6/input/r0004</text:span><text:span text:style-name="T5"> </text:span></text:p>
+   <text:p text:style-name="P123">ATMO_MAP_DATA=$ATMO_DATA/T${RES} </text:p>
+   <text:p text:style-name="P123"/>
+   <text:p text:style-name="P123"># absolute path to directory with initial data for JSBACH: </text:p>
+   <text:p text:style-name="P123">LAND_MAP_DATA=<text:span text:style-name="T158">/pool/data/JSBACH/input/r0004</text:span>/T${RES} </text:p>
+   <text:p text:style-name="P123"/>
+   <text:p text:style-name="P123">#</text:p>
+   <text:p text:style-name="P118"># ECHAM6 namelist </text:p>
+   <text:p text:style-name="P118"># </text:p>
+   <text:p text:style-name="P118">cat &gt; namelist.echam &lt;&lt; EOF </text:p>
+   <text:p text:style-name="P125"><text:span text:style-name="T6">&amp;</text:span>runctl </text:p>
+   <text:p text:style-name="P125"><text:s text:c="4"/>lamip = .true.</text:p>
+   <text:p text:style-name="P126">/</text:p>
+   <text:p text:style-name="P118">EOF </text:p>
+   <text:p text:style-name="P118"/>
+   <text:p text:style-name="P118"># </text:p>
+   <text:p text:style-name="P118"># JSBACH namelist</text:p>
+   <text:p text:style-name="P118"># </text:p>
+   <text:p text:style-name="P118">cat &gt; namelist.jsbach &lt;&lt; EOF </text:p>
+   <text:p text:style-name="P126"><text:span text:style-name="T6">&amp;</text:span>jsbach_ctl </text:p>
+   <text:p text:style-name="P126"><text:s text:c="4"/>use_dynveg = .false.</text:p>
+   <text:p text:style-name="P126">/</text:p>
+   <text:p text:style-name="P118">EOF </text:p>
    <text:h text:style-name="Heading_20_3" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2526_1114405012"/><text:span text:style-name="T221">G</text:span>enerat<text:span text:style-name="T221">ing scripts only refers to the custom settings&apos; file</text:span><text:bookmark-end text:name="__RefHeading__2526_1114405012"/></text:h>
    <text:p text:style-name="P13"><text:span text:style-name="T220">So, as soon as</text:span> <text:span text:style-name="T220">you have set up &apos;</text:span>joe1234.config<text:span text:style-name="T220">&apos;</text:span>, you may create the job scripts that are needed to run your experiment. Still within ECHAM&apos;s <text:span text:style-name="T222">&apos;</text:span>run<text:span text:style-name="T222">&apos;</text:span> subdirectory, type the following into your terminal:</text:p>
    <text:p text:style-name="Preformatted_20_Text">../util/mkexp/mkexp joe1234.config</text:p>
    <text:p text:style-name="P14">This will <text:span text:style-name="T172">read all configuration information and </text:span>create all job scripts that are defined within your experiment&apos;s setup, <text:span text:style-name="T172">using their respective templates as shown in the previous section</text:span>. <text:span text:style-name="T9">mkexp</text:span> will put these <text:span text:style-name="T172">scripts </text:span>in <text:span text:style-name="T172">a common</text:span> directory defined by the .config variable <text:span text:style-name="T222">&apos;</text:span>SCRIPT_DIR<text:span text:style-name="T222">&apos;</text:span>, and <text:span text:style-name="T222">print</text:span> the name of this directory on your terminal.</text:p>
-   <text:h text:style-name="P286" text:outline-level="1"><text:bookmark-start text:name="__RefHeading__2528_1114405012"/>Details on <text:span text:style-name="T240">experiment</text:span> <text:span text:style-name="T240">definition</text:span><text:bookmark-end text:name="__RefHeading__2528_1114405012"/></text:h>
+   <text:h text:style-name="P296" text:outline-level="1"><text:bookmark-start text:name="__RefHeading__2528_1114405012"/>Details on <text:span text:style-name="T240">experiment</text:span> <text:span text:style-name="T240">definition</text:span><text:bookmark-end text:name="__RefHeading__2528_1114405012"/></text:h>
    <text:p text:style-name="P15">With the introductory example of the previous section in mind, this section will give some more detailed information on specific aspects of <text:span text:style-name="T9">mkexp</text:span><text:span text:style-name="T53">.</text:span></text:p>
-   <text:h text:style-name="P307" text:outline-level="2"><text:bookmark-start text:name="__RefHeading__2530_1114405012"/><text:soft-page-break/>Design<text:bookmark-end text:name="__RefHeading__2530_1114405012"/></text:h>
+   <text:h text:style-name="P318" text:outline-level="2"><text:bookmark-start text:name="__RefHeading__2530_1114405012"/><text:soft-page-break/>Design<text:bookmark-end text:name="__RefHeading__2530_1114405012"/></text:h>
    <text:p text:style-name="P34">Experiment definition with <text:span text:style-name="T9">mkexp</text:span> <text:span text:style-name="T202">is organized</text:span> <text:span text:style-name="T202">in</text:span> three levels.</text:p>
    <text:p text:style-name="P34">The first level is the <text:span text:style-name="T9">mkexp</text:span> toolbox. It provides the front end to create an executable job description from a generic experiment configuration, <text:span text:style-name="T201">but does not contain any model specific information. Instead a basic set of conventions is defined that should be applicable to a very large range of model systems. When this document uses the term </text:span><text:span text:style-name="T18">mkexp</text:span><text:span text:style-name="T59">, it refers to this system level.</text:span></text:p>
    <text:p text:style-name="P34"><text:span text:style-name="T201">At a second level, a model needs to provide a number of files containing the information needed by </text:span><text:span text:style-name="T17">mkexp</text:span><text:span text:style-name="T201">: the required job steps and their interaction, the basic contents of job scripts, model specific information, and building blocks that may be combined to define a specific experiment. This is called the </text:span><text:span text:style-name="T17">model setup</text:span><text:span text:style-name="T58">. The files must maintain the naming conventions prescribed by </text:span><text:span text:style-name="T17">mkexp</text:span><text:span text:style-name="T58">.</text:span></text:p>
    <text:p text:style-name="P35"><text:span text:style-name="T53">Finally, the third level is the actual experiment definition. Here the user decides which of the building blocks from the previous level are needed, and </text:span><text:span text:style-name="T90">defines</text:span><text:span text:style-name="T53"> experiment specific settings that override or amend the information from the model setup. It is also essential to supply an experiment description and a – possibly unique – experiment identifier. All this is called the </text:span><text:span text:style-name="T9">user setup</text:span><text:span text:style-name="T53">.</text:span></text:p>
    <text:p text:style-name="P36"><text:span text:style-name="T53">All levels should make a clear distinction </text:span><text:span text:style-name="T60">between </text:span><text:span text:style-name="T53">the .config files, containing the experiment&apos;s configuration information, </text:span><text:span text:style-name="T60">and </text:span><text:span text:style-name="T53">the .tmpl files, containing the actual job description and job control syntax.</text:span></text:p>
-   <text:h text:style-name="P308" text:outline-level="2"><text:bookmark-start text:name="__RefHeading__2532_1114405012"/>Tools<text:bookmark-end text:name="__RefHeading__2532_1114405012"/></text:h>
+   <text:h text:style-name="P319" text:outline-level="2"><text:bookmark-start text:name="__RefHeading__2532_1114405012"/>Tools<text:bookmark-end text:name="__RefHeading__2532_1114405012"/></text:h>
    <text:p text:style-name="P87"><text:span text:style-name="T172">The </text:span><text:span text:style-name="T32">mkexp</text:span><text:span text:style-name="T172"> package provides a number of tools for working with script configurations and setups.</text:span></text:p>
    <text:p text:style-name="Preformatted_20_List_20_Heading">mkexp <text:span text:style-name="T270">[-m] [-g] </text:span><text:span text:style-name="T23">file</text:span><text:span text:style-name="T71">.</text:span><text:span text:style-name="T53">config</text:span> [<text:span text:style-name="T9">name</text:span>=<text:span text:style-name="T9">value</text:span> ...]</text:p>
-   <text:p text:style-name="P222"><text:span text:style-name="T172">This is the main tool for generating an experiment setup. It </text:span>takes <text:span text:style-name="T223">the given</text:span> <text:span text:style-name="T223">user setup</text:span> and <text:span text:style-name="T242">the model setup that is referenced by the user setup </text:span>to generate <text:span text:style-name="T223">the</text:span> <text:span text:style-name="T223">job description files or</text:span> scripts that <text:span text:style-name="T242">are required to run a model experiment as specified in </text:span><text:span text:style-name="T21">file.</text:span><text:span text:style-name="T71">config</text:span><text:span text:style-name="T223">.</text:span></text:p>
-   <text:p text:style-name="P226">When running, <text:span text:style-name="T9">mkexp</text:span><text:span text:style-name="T53"> creates three directories, one each for the job scripts, run-time data, and output data, as defined by the setup. The names of these are printed, plus warnings if they already exist.</text:span></text:p>
-   <text:p text:style-name="P225">mkexp<text:span text:style-name="T53"> allows to override </text:span><text:span text:style-name="T69">or amend </text:span><text:span text:style-name="T53">the .config file settings on the command line </text:span><text:soft-page-break/><text:span text:style-name="T69">by defining or re-defining a variable </text:span><text:span text:style-name="T224">name</text:span><text:span text:style-name="T69"> set to </text:span><text:span text:style-name="T224">value</text:span><text:span text:style-name="T69">. Section variables are referenced as </text:span><text:span text:style-name="T224">sectionname</text:span><text:span text:style-name="T69">.</text:span><text:span text:style-name="T224">variablename</text:span><text:span text:style-name="T69">. Any periods in the variable name have to be duplicated, e.g. to set &apos;.remove&apos; in section &apos;jobs&apos; to &apos;post&apos;, use &apos;jobs...remove=post&apos;. Note that three periods will always be read as &apos;.&apos; followed by &apos;..&apos;, thus it is not possible to use variable names th</text:span><text:span text:style-name="T91">at</text:span><text:span text:style-name="T69"> </text:span><text:span text:style-name="T224">end</text:span><text:span text:style-name="T69"> </text:span><text:span text:style-name="T91">i</text:span><text:span text:style-name="T69">n a period.</text:span></text:p>
-   <text:p text:style-name="P241"><text:span text:style-name="T69">W</text:span><text:span text:style-name="T53">hen given the &apos;-m&apos; or &apos;--no-make-dirs&apos; option, only the </text:span><text:span text:style-name="T70">script</text:span><text:span text:style-name="T53"> directory is created while creation of the </text:span><text:span text:style-name="T70">run-time and outpu</text:span><text:span text:style-name="T53">t directories is skipped.</text:span></text:p>
-   <text:p text:style-name="P243">With &apos;-g&apos; or &apos;--getexp&apos;, instead of a .config file, <text:span text:style-name="T9">mkexp</text:span><text:span text:style-name="T53"> expects a dump generated by </text:span><text:span text:style-name="T9">getexp -vv</text:span><text:span text:style-name="T53"> (see below). The experiment setup is regenerated from this dump, overriding any model setup.</text:span></text:p>
-   <text:p text:style-name="P253"><text:span text:style-name="T69">g</text:span><text:span text:style-name="T53">etexp [-v ...] </text:span><text:span text:style-name="T102">[-R]</text:span><text:span text:style-name="T53"> </text:span><text:span text:style-name="T108">[-k </text:span><text:span text:style-name="T39">key</text:span><text:span text:style-name="T108">] </text:span><text:span text:style-name="T9">file</text:span><text:span text:style-name="T53">.config [</text:span><text:span text:style-name="T9">name</text:span><text:span text:style-name="T53">=</text:span><text:span text:style-name="T9">value ...</text:span><text:span text:style-name="T53">]</text:span></text:p>
-   <text:p text:style-name="P223">getexp<text:span text:style-name="T53"> reads the experiment setup the same way </text:span><text:span text:style-name="T91">as</text:span><text:span text:style-name="T53"> </text:span>mkexp<text:span text:style-name="T53">, but does not generate job scripts. Instead it prints the experiment name and directories to be generated in a shell-readable form. It is intended for debugging or passing setup information to utility scripts.</text:span></text:p>
-   <text:p text:style-name="P227"><text:span text:style-name="T53">When given the &apos;-v&apos; </text:span><text:span text:style-name="T102">or &apos;--</text:span><text:span text:style-name="T53">verbose</text:span><text:span text:style-name="T102">&apos;</text:span><text:span text:style-name="T53"> option, all </text:span><text:span text:style-name="T9">global</text:span><text:span text:style-name="T53"> configuration variables and their values are printed in alphabetical order. </text:span><text:span text:style-name="T102">When given twice, the whole configuration is dumped </text:span><text:span text:style-name="T107">to the screen</text:span><text:span text:style-name="T102">. </text:span><text:span text:style-name="T107">Save this to a file for use with </text:span><text:span text:style-name="T38">mkexp -g</text:span><text:span text:style-name="T107">.</text:span></text:p>
-   <text:p text:style-name="P213">When given the &apos;-R&apos; or &apos;--readme&apos; option, the header comment text is printed.</text:p>
-   <text:p text:style-name="P246">When given the &apos;-k&apos; or &apos;--key&apos; option, only the configured value for <text:span text:style-name="T9">key</text:span> is printed. Section variables may be referenced as described above for <text:span text:style-name="T9">name</text:span>=<text:span text:style-name="T9">value</text:span><text:span text:style-name="T53">. </text:span><text:span text:style-name="T110">This option may be used more than once to print additional values.</text:span><text:span text:style-name="T53"> </text:span></text:p>
-   <text:p text:style-name="P265">diffexp <text:span text:style-name="T22">file</text:span><text:span text:style-name="T23">1</text:span><text:span text:style-name="T225">.config </text:span><text:span text:style-name="T22">file2</text:span><text:span text:style-name="T70">.</text:span><text:span text:style-name="T71">config</text:span></text:p>
-   <text:p text:style-name="P210">For an easy comparison of the whole set of generated scripts for two different experiments, this tool takes the directories defined in each configuration, locates the job scripts corresponding to each other (e.g. exp0001.run and exp0002.run), equalizes all occurrences of the experiment name in the scripts and then uses the diff tool to show differences. The environment variable &apos;DIFF&apos; may be set to an alternative tool to be called instead.</text:p>
-   <text:p text:style-name="P254">rmexp <text:span text:style-name="T24">file</text:span><text:span text:style-name="T226">.config</text:span><text:span text:style-name="T72"> [</text:span><text:span text:style-name="T24">name</text:span><text:span text:style-name="T72">=</text:span><text:span text:style-name="T24">value ...</text:span><text:span text:style-name="T72">]</text:span></text:p>
-   <text:p text:style-name="P229">This allows <text:span text:style-name="T229">interactive </text:span>remov<text:span text:style-name="T229">al for </text:span>all data of an experiment without having to deal with path names, as these are read from the configuration.</text:p>
-   <text:p text:style-name="P267"><text:span text:style-name="T271">cp</text:span>exp <text:span text:style-name="T24">file</text:span><text:span text:style-name="T226">.config</text:span><text:span text:style-name="T72"> </text:span><text:span text:style-name="T37">new_name</text:span><text:span text:style-name="T103"> </text:span><text:span text:style-name="T72">[</text:span><text:span text:style-name="T24">name</text:span><text:span text:style-name="T72">=</text:span><text:span text:style-name="T24">value ...</text:span><text:span text:style-name="T72">]</text:span></text:p>
-   <text:p text:style-name="P244"><text:span text:style-name="T272">Replicates all data </text:span>of an experiment <text:span text:style-name="T271">to a new experiment name; also updates text files by rewriting references to the old name</text:span>.</text:p>
-   <text:p text:style-name="P268"><text:span text:style-name="T281">du</text:span>exp <text:span text:style-name="T24">file</text:span><text:span text:style-name="T226">.config</text:span><text:span text:style-name="T72"> [</text:span><text:span text:style-name="T24">name</text:span><text:span text:style-name="T72">=</text:span><text:span text:style-name="T24">value ...</text:span><text:span text:style-name="T72">]</text:span></text:p>
-   <text:p text:style-name="P248"><text:span text:style-name="T113">Shows disk usage for all data that has been created by</text:span><text:span text:style-name="T72"> </text:span><text:span text:style-name="T113">an</text:span><text:span text:style-name="T72"> experiment.</text:span></text:p>
-   <text:p text:style-name="P270"><text:soft-page-break/><text:span text:style-name="T292">upexp </text:span><text:span text:style-name="Variable"><text:span text:style-name="T292">file</text:span></text:span><text:span text:style-name="T292">.config </text:span><text:span text:style-name="T72">[</text:span><text:span text:style-name="Variable">name</text:span><text:span text:style-name="T72">=</text:span><text:span text:style-name="Variable">value</text:span><text:span text:style-name="Variable"><text:span text:style-name="T24"> </text:span></text:span><text:span text:style-name="T24">...</text:span><text:span text:style-name="T72">]</text:span></text:p>
-   <text:p text:style-name="P215">Update generated scripts for the given experiment with the same mkexp version, environment and command line, as saved in the corresponding &apos;update&apos; script.</text:p>
-   <text:p text:style-name="P269">edit<text:span text:style-name="T291">exp</text:span> [<text:span text:style-name="Variable">file</text:span>]</text:p>
-   <text:p text:style-name="P249">Reads <text:span text:style-name="T290">the</text:span> update script <text:span text:style-name="Variable">file</text:span> (&apos;update&apos; by default) and <text:span text:style-name="T290">launches a program to edit the </text:span>corresponding config file. <text:span text:style-name="T290">The program is taken from the environment variables &apos;VISUAL&apos; or &apos;EDITOR&apos; if defined, otherwise </text:span><text:span text:style-name="T42">vi</text:span><text:span text:style-name="T290"> is launched.</text:span></text:p>
-   <text:p text:style-name="P267"><text:span text:style-name="T289">getconfig</text:span> <text:span text:style-name="T289">[</text:span><text:span text:style-name="Variable">file</text:span><text:span text:style-name="T226">]</text:span></text:p>
-   <text:p text:style-name="P249">Documentation tool for experiments that were created using command line assignments. Reads <text:span text:style-name="T292">the</text:span> update script <text:span text:style-name="Variable">file</text:span> (&apos;update&apos; by default) and prints the corresponding config file with command line settings from the update script included.</text:p>
+   <text:p text:style-name="P232"><text:span text:style-name="T172">This is the main tool for generating an experiment setup. It </text:span>takes <text:span text:style-name="T223">the given</text:span> <text:span text:style-name="T223">user setup</text:span> and <text:span text:style-name="T242">the model setup that is referenced by the user setup </text:span>to generate <text:span text:style-name="T223">the</text:span> <text:span text:style-name="T223">job description files or</text:span> scripts that <text:span text:style-name="T242">are required to run a model experiment as specified in </text:span><text:span text:style-name="T21">file.</text:span><text:span text:style-name="T71">config</text:span><text:span text:style-name="T223">.</text:span></text:p>
+   <text:p text:style-name="P236">When running, <text:span text:style-name="T9">mkexp</text:span><text:span text:style-name="T53"> creates three directories, one each for the job scripts, run-time data, and output data, as defined by the setup. The names of these are printed, plus warnings if they already exist.</text:span></text:p>
+   <text:p text:style-name="P235">mkexp<text:span text:style-name="T53"> allows to override </text:span><text:span text:style-name="T69">or amend </text:span><text:span text:style-name="T53">the .config file settings on the command line </text:span><text:soft-page-break/><text:span text:style-name="T69">by defining or re-defining a variable </text:span><text:span text:style-name="T224">name</text:span><text:span text:style-name="T69"> set to </text:span><text:span text:style-name="T224">value</text:span><text:span text:style-name="T69">. Section variables are referenced as </text:span><text:span text:style-name="T224">sectionname</text:span><text:span text:style-name="T69">.</text:span><text:span text:style-name="T224">variablename</text:span><text:span text:style-name="T69">. Any periods in the variable name have to be duplicated, e.g. to set &apos;.remove&apos; in section &apos;jobs&apos; to &apos;post&apos;, use &apos;jobs...remove=post&apos;. Note that three periods will always be read as &apos;.&apos; followed by &apos;..&apos;, thus it is not possible to use variable names th</text:span><text:span text:style-name="T91">at</text:span><text:span text:style-name="T69"> </text:span><text:span text:style-name="T224">end</text:span><text:span text:style-name="T69"> </text:span><text:span text:style-name="T91">i</text:span><text:span text:style-name="T69">n a period.</text:span></text:p>
+   <text:p text:style-name="P251"><text:span text:style-name="T69">W</text:span><text:span text:style-name="T53">hen given the &apos;-m&apos; or &apos;--no-make-dirs&apos; option, only the </text:span><text:span text:style-name="T70">script</text:span><text:span text:style-name="T53"> directory is created while creation of the </text:span><text:span text:style-name="T70">run-time and outpu</text:span><text:span text:style-name="T53">t directories is skipped.</text:span></text:p>
+   <text:p text:style-name="P253">With &apos;-g&apos; or &apos;--getexp&apos;, instead of a .config file, <text:span text:style-name="T9">mkexp</text:span><text:span text:style-name="T53"> expects a dump generated by </text:span><text:span text:style-name="T9">getexp -vv</text:span><text:span text:style-name="T53"> (see below). The experiment setup is regenerated from this dump, overriding any model setup.</text:span></text:p>
+   <text:p text:style-name="P263"><text:span text:style-name="T69">g</text:span><text:span text:style-name="T53">etexp [-v ...] </text:span><text:span text:style-name="T102">[-R]</text:span><text:span text:style-name="T53"> </text:span><text:span text:style-name="T108">[-k </text:span><text:span text:style-name="T39">key</text:span><text:span text:style-name="T108">] </text:span><text:span text:style-name="T9">file</text:span><text:span text:style-name="T53">.config [</text:span><text:span text:style-name="T9">name</text:span><text:span text:style-name="T53">=</text:span><text:span text:style-name="T9">value ...</text:span><text:span text:style-name="T53">]</text:span></text:p>
+   <text:p text:style-name="P233">getexp<text:span text:style-name="T53"> reads the experiment setup the same way </text:span><text:span text:style-name="T91">as</text:span><text:span text:style-name="T53"> </text:span>mkexp<text:span text:style-name="T53">, but does not generate job scripts. Instead it prints the experiment name and directories to be generated in a shell-readable form. It is intended for debugging or passing setup information to utility scripts.</text:span></text:p>
+   <text:p text:style-name="P237"><text:span text:style-name="T53">When given the &apos;-v&apos; </text:span><text:span text:style-name="T102">or &apos;--</text:span><text:span text:style-name="T53">verbose</text:span><text:span text:style-name="T102">&apos;</text:span><text:span text:style-name="T53"> option, all </text:span><text:span text:style-name="T9">global</text:span><text:span text:style-name="T53"> configuration variables and their values are printed in alphabetical order. </text:span><text:span text:style-name="T102">When given twice, the whole configuration is dumped </text:span><text:span text:style-name="T107">to the screen</text:span><text:span text:style-name="T102">. </text:span><text:span text:style-name="T107">Save this to a file for use with </text:span><text:span text:style-name="T38">mkexp -g</text:span><text:span text:style-name="T107">.</text:span></text:p>
+   <text:p text:style-name="P223">When given the &apos;-R&apos; or &apos;--readme&apos; option, the header comment text is printed.</text:p>
+   <text:p text:style-name="P256">When given the &apos;-k&apos; or &apos;--key&apos; option, only the configured value for <text:span text:style-name="T9">key</text:span> is printed. Section variables may be referenced as described above for <text:span text:style-name="T9">name</text:span>=<text:span text:style-name="T9">value</text:span><text:span text:style-name="T53">. </text:span><text:span text:style-name="T110">This option may be used more than once to print additional values.</text:span><text:span text:style-name="T53"> </text:span></text:p>
+   <text:p text:style-name="P275">diffexp <text:span text:style-name="T22">file</text:span><text:span text:style-name="T23">1</text:span><text:span text:style-name="T225">.config </text:span><text:span text:style-name="T22">file2</text:span><text:span text:style-name="T70">.</text:span><text:span text:style-name="T71">config</text:span></text:p>
+   <text:p text:style-name="P220">For an easy comparison of the whole set of generated scripts for two different experiments, this tool takes the directories defined in each configuration, locates the job scripts corresponding to each other (e.g. exp0001.run and exp0002.run), equalizes all occurrences of the experiment name in the scripts and then uses the diff tool to show differences. The environment variable &apos;DIFF&apos; may be set to an alternative tool to be called instead.</text:p>
+   <text:p text:style-name="P264">rmexp <text:span text:style-name="T24">file</text:span><text:span text:style-name="T226">.config</text:span><text:span text:style-name="T72"> [</text:span><text:span text:style-name="T24">name</text:span><text:span text:style-name="T72">=</text:span><text:span text:style-name="T24">value ...</text:span><text:span text:style-name="T72">]</text:span></text:p>
+   <text:p text:style-name="P239">This allows <text:span text:style-name="T229">interactive </text:span>remov<text:span text:style-name="T229">al for </text:span>all data of an experiment without having to deal with path names, as these are read from the configuration.</text:p>
+   <text:p text:style-name="P277"><text:span text:style-name="T271">cp</text:span>exp <text:span text:style-name="T306">[-n] </text:span><text:span text:style-name="T24">file</text:span><text:span text:style-name="T226">.config</text:span><text:span text:style-name="T72"> </text:span><text:span text:style-name="T37">new_name</text:span><text:span text:style-name="T103"> </text:span><text:span text:style-name="T72">[</text:span><text:span text:style-name="T24">name</text:span><text:span text:style-name="T72">=</text:span><text:span text:style-name="T24">value ...</text:span><text:span text:style-name="T72">]</text:span></text:p>
+   <text:p text:style-name="P254"><text:span text:style-name="T272">Replicates all data </text:span>of an experiment <text:span text:style-name="T271">to a new experiment name; also updates text files by rewriting references to the old name</text:span>. <text:span text:style-name="T306">With &apos;-n&apos;, shows what would be done instead of actually doing it</text:span></text:p>
+   <text:p text:style-name="P278"><text:soft-page-break/><text:span text:style-name="T281">du</text:span>exp <text:span text:style-name="T24">file</text:span><text:span text:style-name="T226">.config</text:span><text:span text:style-name="T72"> [</text:span><text:span text:style-name="T24">name</text:span><text:span text:style-name="T72">=</text:span><text:span text:style-name="T24">value ...</text:span><text:span text:style-name="T72">]</text:span></text:p>
+   <text:p text:style-name="P258"><text:span text:style-name="T113">Shows disk usage for all data that has been created by</text:span><text:span text:style-name="T72"> </text:span><text:span text:style-name="T113">an</text:span><text:span text:style-name="T72"> experiment.</text:span></text:p>
+   <text:p text:style-name="P280"><text:span text:style-name="T292">upexp </text:span><text:span text:style-name="Variable"><text:span text:style-name="T292">file</text:span></text:span><text:span text:style-name="T292">.config </text:span><text:span text:style-name="T72">[</text:span><text:span text:style-name="Variable">name</text:span><text:span text:style-name="T72">=</text:span><text:span text:style-name="Variable">value</text:span><text:span text:style-name="Variable"><text:span text:style-name="T24"> </text:span></text:span><text:span text:style-name="T24">...</text:span><text:span text:style-name="T72">]</text:span></text:p>
+   <text:p text:style-name="P225">Update generated scripts for the given experiment with the same mkexp version, environment and command line, as saved in the corresponding &apos;update&apos; script.</text:p>
+   <text:p text:style-name="P279">edit<text:span text:style-name="T291">exp</text:span> [<text:span text:style-name="Variable">file</text:span>]</text:p>
+   <text:p text:style-name="P259">Reads <text:span text:style-name="T290">the</text:span> update script <text:span text:style-name="Variable">file</text:span> (&apos;update&apos; by default) and <text:span text:style-name="T290">launches a program to edit the </text:span>corresponding config file. <text:span text:style-name="T290">The program is taken from the environment variables &apos;VISUAL&apos; or &apos;EDITOR&apos; if defined, otherwise </text:span><text:span text:style-name="T42">vi</text:span><text:span text:style-name="T290"> is launched.</text:span></text:p>
+   <text:p text:style-name="P277"><text:span text:style-name="T289">getconfig</text:span> <text:span text:style-name="T289">[</text:span><text:span text:style-name="Variable">file</text:span><text:span text:style-name="T226">]</text:span></text:p>
+   <text:p text:style-name="P259">Documentation tool for experiments that were created using command line assignments. Reads <text:span text:style-name="T292">the</text:span> update script <text:span text:style-name="Variable">file</text:span> (&apos;update&apos; by default) and prints the corresponding config file with command line settings from the update script included.</text:p>
    <text:p text:style-name="Preformatted_20_List_20_Heading"><text:span text:style-name="T299">setconfig</text:span> <text:span text:style-name="T300">[-d </text:span><text:span text:style-name="Variable"><text:span text:style-name="T300">key</text:span></text:span><text:span text:style-name="T300">] [-H </text:span><text:span text:style-name="Variable"><text:span text:style-name="T300">text</text:span></text:span><text:span text:style-name="T300">] [-a </text:span><text:span text:style-name="Variable"><text:span text:style-name="T301">file</text:span></text:span>.<text:span text:style-name="T301">config] [</text:span><text:span text:style-name="Variable">file</text:span>.<text:span text:style-name="T301">config</text:span><text:span text:style-name="T72"> [</text:span><text:span text:style-name="Variable"><text:span text:style-name="T226">name</text:span></text:span><text:span text:style-name="T72">=</text:span><text:span text:style-name="Variable"><text:span text:style-name="T226">value</text:span></text:span><text:span text:style-name="Variable"><text:span text:style-name="T24"> </text:span></text:span><text:span text:style-name="T24">...</text:span><text:span text:style-name="T72">]</text:span><text:span text:style-name="T121">]</text:span></text:p>
-   <text:p text:style-name="P251"><text:span text:style-name="T299">Filter tool to alter configuration files via command line. Reads </text:span><text:span text:style-name="Variable"><text:span text:style-name="T299">file</text:span></text:span><text:span text:style-name="T299">.config (standard input by default or if </text:span><text:span text:style-name="Variable"><text:span text:style-name="T299">file</text:span></text:span><text:span text:style-name="T299">.config = &apos;-&apos;) and prints the filtered configuration to standard output. Add or alter variables by </text:span><text:span text:style-name="T43">name</text:span><text:span text:style-name="T299">=</text:span><text:span text:style-name="T43">value </text:span><text:span text:style-name="T299">as described before. With &apos;-d&apos; or &apos;--delete&apos;, the variable </text:span><text:span text:style-name="Variable"><text:span text:style-name="T299">key</text:span></text:span><text:span text:style-name="T299"> is removed from the configuration. </text:span><text:span text:style-name="T120">With &apos;-H&apos; or &apos;--header&apos;, </text:span><text:span text:style-name="Variable"><text:span text:style-name="T300">text</text:span></text:span> <text:span text:style-name="T300">is appended to the configuration&apos;s header comment. For files given with &apos;-a&apos; or &apos;--add&apos;, all settings are merged with </text:span><text:span text:style-name="Variable"><text:span text:style-name="T299">file</text:span></text:span><text:span text:style-name="T299">.config.</text:span></text:p>
-   <text:h text:style-name="P312" text:outline-level="2"><text:bookmark-start text:name="__RefHeading__2534_1114405012"/><text:span text:style-name="T178">F</text:span>ormat of .config files<text:bookmark-end text:name="__RefHeading__2534_1114405012"/></text:h>
+   <text:p text:style-name="P261"><text:span text:style-name="T299">Filter tool to alter configuration files via command line. Reads </text:span><text:span text:style-name="Variable"><text:span text:style-name="T299">file</text:span></text:span><text:span text:style-name="T299">.config (standard input by default or if </text:span><text:span text:style-name="Variable"><text:span text:style-name="T299">file</text:span></text:span><text:span text:style-name="T299">.config = &apos;-&apos;) and prints the filtered configuration to standard output. Add or alter variables by </text:span><text:span text:style-name="T43">name</text:span><text:span text:style-name="T299">=</text:span><text:span text:style-name="T43">value </text:span><text:span text:style-name="T299">as described before. With &apos;-d&apos; or &apos;--delete&apos;, the variable </text:span><text:span text:style-name="Variable"><text:span text:style-name="T299">key</text:span></text:span><text:span text:style-name="T299"> is removed from the configuration. </text:span><text:span text:style-name="T120">With &apos;-H&apos; or &apos;--header&apos;, </text:span><text:span text:style-name="Variable"><text:span text:style-name="T300">text</text:span></text:span> <text:span text:style-name="T300">is appended to the configuration&apos;s header comment. For files given with &apos;-a&apos; or &apos;--add&apos;, all settings are merged with </text:span><text:span text:style-name="Variable"><text:span text:style-name="T299">file</text:span></text:span><text:span text:style-name="T299">.config.</text:span></text:p>
+   <text:h text:style-name="P323" text:outline-level="2"><text:bookmark-start text:name="__RefHeading__2534_1114405012"/><text:span text:style-name="T178">F</text:span>ormat of .config files<text:bookmark-end text:name="__RefHeading__2534_1114405012"/></text:h>
    <text:p text:style-name="P15">The .config files are simple text files containing a dictionary of variables with their respective values. They may be structured using sections and comments. <text:span text:style-name="T173">For reading these files, </text:span><text:span text:style-name="T12">mkexp</text:span><text:span text:style-name="T173"> uses the </text:span><text:span text:style-name="T12">configobj</text:span><text:span text:style-name="T173"> Python library. All settings found in the .config files are handled as Python variables internally.</text:span></text:p>
    <text:h text:style-name="Heading_20_3" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__1669_1438093122"/>Variables<text:bookmark-end text:name="__RefHeading__1669_1438093122"/></text:h>
    <text:p text:style-name="P18">A <text:span text:style-name="T174">configuration variable is set by simply assigning a text value to a name, as in</text:span></text:p>
    <text:p text:style-name="Preformatted_20_Text">NAME = Joe User</text:p>
-   <text:p text:style-name="P19">Note that <text:span text:style-name="T175">spaces before and after the &apos;equals&apos; sign are always ignored. The value starts with the first non-space character. Spaces and additional equals after this are part of the value. In the case above, the variable NAME is set to &apos;Joe User&apos;. To include leading spaces, you may enclose the actual value in single or double quote characters as in</text:span></text:p>
-   <text:p text:style-name="Preformatted_20_Text"><text:soft-page-break/>SEPARATOR = &apos; <text:s text:c="7"/>&apos;</text:p>
+   <text:p text:style-name="P19">Note that <text:span text:style-name="T175">spaces before and after the &apos;equals&apos; sign are always ignored. The value starts with the first non-space character. Spaces and additional equals after this are part of </text:span><text:soft-page-break/><text:span text:style-name="T175">the value. In the case above, the variable NAME is set to &apos;Joe User&apos;. To include leading spaces, you may enclose the actual value in single or double quote characters as in</text:span></text:p>
+   <text:p text:style-name="Preformatted_20_Text">SEPARATOR = &apos; <text:s text:c="7"/>&apos;</text:p>
    <text:p text:style-name="P20">Comma separated values are taken to be a list of string values. Thus</text:p>
    <text:p text:style-name="Preformatted_20_Text">PATH = /bin, /usr/bin, /usr/local/bin</text:p>
    <text:p text:style-name="P21">will set PATH to [&apos;/bin&apos;, &apos;/usr/bin&apos;, &apos;/usr/local/bin&apos;].</text:p>
    <text:h text:style-name="Heading_20_3" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2536_1114405012"/>Sections<text:bookmark-end text:name="__RefHeading__2536_1114405012"/></text:h>
    <text:p text:style-name="P22">Variable assignments may be contained in <text:span text:style-name="T9">sections</text:span><text:span text:style-name="T53">. They </text:span><text:span text:style-name="T55">group</text:span><text:span text:style-name="T53"> a set of variables that may be treated </text:span><text:span text:style-name="T92">in a way </text:span><text:span text:style-name="T53">different fro</text:span><text:span text:style-name="T92">m</text:span><text:span text:style-name="T53"> the global variables. Sections are created by a section name on a line by itself, enclosed by brackets. Any variables defined later in the .config file belong to this section:</text:span></text:p>
-   <text:p text:style-name="P138">[section1]</text:p>
-   <text:p text:style-name="P138"><text:s text:c="4"/>description = This is the first section</text:p>
+   <text:p text:style-name="P141">[section1]</text:p>
+   <text:p text:style-name="P141"><text:s text:c="4"/>description = This is the first section</text:p>
    <text:p text:style-name="P22">will be stored as a dictionary section1 with section1[&apos;description&apos;] set to &apos;This is the first section&apos;.</text:p>
    <text:p text:style-name="P22">Sections may be nested to arbitrary depth by incrementing the number of bracket pairs <text:span text:style-name="T176">as in</text:span></text:p>
    <text:p text:style-name="Preformatted_20_Text">[section1]</text:p>
    <text:p text:style-name="Preformatted_20_Text"><text:s text:c="4"/>description = This is the first section</text:p>
    <text:p text:style-name="Preformatted_20_Text"><text:s text:c="4"/>[[subsection1a]]</text:p>
    <text:p text:style-name="Preformatted_20_Text"><text:s text:c="8"/>description = This is the first sub section of the first section</text:p>
-   <text:p text:style-name="P133"><text:s text:c="4"/>[[subsection1<text:span text:style-name="T176">b</text:span>]]</text:p>
-   <text:p text:style-name="P133"><text:s text:c="8"/>description = This is the <text:span text:style-name="T176">second</text:span> sub section of the first section</text:p>
-   <text:p text:style-name="P132">[section2]</text:p>
-   <text:p text:style-name="P132"><text:s text:c="4"/>description = This is the second section </text:p>
+   <text:p text:style-name="P136"><text:s text:c="4"/>[[subsection1<text:span text:style-name="T176">b</text:span>]]</text:p>
+   <text:p text:style-name="P136"><text:s text:c="8"/>description = This is the <text:span text:style-name="T176">second</text:span> sub section of the first section</text:p>
+   <text:p text:style-name="P135">[section2]</text:p>
+   <text:p text:style-name="P135"><text:s text:c="4"/>description = This is the second section </text:p>
    <text:p text:style-name="P23"><text:span text:style-name="T227">A s</text:span>ection <text:span text:style-name="T227">is</text:span> closed by the beginning of a new section of the same level, by a section <text:span text:style-name="T227">of </text:span>l<text:span text:style-name="T227">ower</text:span> <text:span text:style-name="T227">nesting </text:span>depth, <text:span text:style-name="T227">or the end of the .config file</text:span>. Thus, section1 will contain &apos;description&apos; and two dictionaries &apos;subsection1&apos; and &apos;subsection2&apos;, each of those containing their own &apos;description&apos;. &apos;section2&apos; then is a top-level dictionary, again with its own &apos;description&apos; variable.</text:p>
-   <text:p text:style-name="P23">Note that indentation may be used to make the file more legible but is completely ignored when the file is loaded. The number of brackets is the only way to define the level of a section. This means that all variables in a section must be defined before any subsections. Otherwise, the variable <text:s/>would be<text:span text:style-name="T177">long</text:span> to the respective subsection.</text:p>
-   <text:p text:style-name="P22">Fortran scholars will also want to note that names are case-sensitive, i.e. the variable <text:soft-page-break/>&apos;NAME&apos; is quite different from &apos;name&apos;. Usually, setups use upper-case names for global variables and lower-case names for sections and their variables.</text:p>
+   <text:p text:style-name="P23">Note that indentation may be used to make the file more legible but is completely ignored when the file is loaded. The number of brackets is the only way to define the level of a section. This means that all variables in a section must be defined before any <text:soft-page-break/>subsections. Otherwise, the variable <text:s/>would be<text:span text:style-name="T177">long</text:span> to the respective subsection.</text:p>
+   <text:p text:style-name="P22">Fortran scholars will also want to note that names are case-sensitive, i.e. the variable &apos;NAME&apos; is quite different from &apos;name&apos;. Usually, setups use upper-case names for global variables and lower-case names for sections and their variables.</text:p>
    <text:h text:style-name="Heading_20_3" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2538_1114405012"/>Special <text:span text:style-name="T219">v</text:span>ariables <text:span text:style-name="T219">and sections</text:span><text:bookmark-end text:name="__RefHeading__2538_1114405012"/></text:h>
    <text:p text:style-name="P39"><text:span text:style-name="T53">There are a number of special variables that influence the way </text:span>mkexp<text:span text:style-name="T53"> works. They must be present in one of the .config files, unless noted otherwise below. </text:span><text:span text:style-name="T57">They are listed here for a first overview. Their exact meaning is explained in more detail in the upcoming sections.</text:span></text:p>
    <text:p text:style-name="P40"><text:span text:style-name="T57">T</text:span><text:span text:style-name="T53">he first set of variables is usually defined in the model setup:</text:span></text:p>
-   <text:p text:style-name="P187">SCRIPT_DIR</text:p>
-   <text:p text:style-name="P201"><text:span text:style-name="T56">D</text:span><text:span text:style-name="T53">irectory where the generated job descriptions are stored. This directory and its parents are created by </text:span><text:span text:style-name="T9">mkexp</text:span><text:span text:style-name="T53"> if they do not exist.</text:span></text:p>
-   <text:p text:style-name="P188">WORK_DIR</text:p>
-   <text:p text:style-name="P204">Directory where the experiment is run. The jobs will use this for providing input data and configuration files needed for model execution. This directory and its parents are created if they do not exist.</text:p>
-   <text:p text:style-name="P189">DATA_DIR</text:p>
-   <text:p text:style-name="P204">Directory for storing output data. When a model run finishes, output will be stored there for further processing. Will also be created when non-existent.</text:p>
-   <text:p text:style-name="P193">VERSION_</text:p>
-   <text:p text:style-name="P211">Each .config file in the model setup <text:span text:style-name="T257">should</text:span> set this variable to a suitable value, e.g. version control information. The values are collected in a variable &apos;VERSIONS_&apos; which is usually written to the resulting job descriptions.</text:p>
-   <text:p text:style-name="P194">SETUP_OPTIONS (<text:span text:style-name="T9">optional</text:span>)</text:p>
-   <text:p text:style-name="P208">Subset of the model&apos;s standard options that should be applied to <text:span text:style-name="T266">all</text:span> experiment<text:span text:style-name="T266">s using the same model version</text:span>. </text:p>
+   <text:p text:style-name="P197">SCRIPT_DIR</text:p>
+   <text:p text:style-name="P211"><text:span text:style-name="T56">D</text:span><text:span text:style-name="T53">irectory where the generated job descriptions are stored. This directory and its parents are created by </text:span><text:span text:style-name="T9">mkexp</text:span><text:span text:style-name="T53"> if they do not exist.</text:span></text:p>
+   <text:p text:style-name="P198">WORK_DIR</text:p>
+   <text:p text:style-name="P214">Directory where the experiment is run. The jobs will use this for providing input data and configuration files needed for model execution. This directory and its parents are created if they do not exist.</text:p>
+   <text:p text:style-name="P199">DATA_DIR</text:p>
+   <text:p text:style-name="P214">Directory for storing output data. When a model run finishes, output will be stored there for further processing. Will also be created when non-existent.</text:p>
+   <text:p text:style-name="P203">VERSION_</text:p>
+   <text:p text:style-name="P221">Each .config file in the model setup <text:span text:style-name="T257">should</text:span> set this variable to a suitable value, e.g. version control information. The values are collected in a variable &apos;VERSIONS_&apos; which is usually written to the resulting job descriptions.</text:p>
+   <text:p text:style-name="P204">SETUP_OPTIONS (<text:span text:style-name="T9">optional</text:span>)</text:p>
+   <text:p text:style-name="P218">Subset of the model&apos;s standard options that should be applied to <text:span text:style-name="T266">all</text:span> experiment<text:span text:style-name="T266">s using the same model version</text:span>. </text:p>
    <text:p text:style-name="P41">There is a second set of variables that belongs in the user setup:</text:p>
-   <text:p text:style-name="P191">EXP_TYPE</text:p>
-   <text:p text:style-name="P206">Selects one of the standard experiments that are pre-defined in the model setup as basis of the current experiment definition.</text:p>
-   <text:p text:style-name="P192">ENVIRONMENT</text:p>
-   <text:p text:style-name="P203">Selects one of the standard host environments that are available for the model.</text:p>
-   <text:p text:style-name="P197"><text:span text:style-name="T53">EXP_OPTIONS (</text:span><text:span text:style-name="T9">optional</text:span><text:span text:style-name="T53">)</text:span></text:p>
-   <text:p text:style-name="P207">Subset of the model&apos;s standard options that should be applied to the current experiment definition.</text:p>
-   <text:p text:style-name="P198">EXP_ID (<text:span text:style-name="T9">optional</text:span>)</text:p>
-   <text:p text:style-name="P220"><text:soft-page-break/>Name of the experiment to be created. If not set, this will be set to the base name of the user&apos;s .config file, e.g. &apos;joe1234&apos; in the introductory example. All job description files will carry this as the first part of their name. For almost all model setups, this will be used in the definitions of SCRIPT_DIR, WORK_DIR, and DATA_DIR.</text:p>
-   <text:p text:style-name="P186">EXP_DESCRIPTION <text:span text:style-name="T200">(</text:span><text:span text:style-name="T16">optional</text:span><text:span text:style-name="T200">)</text:span></text:p>
-   <text:p text:style-name="P205">Extensive description of the experiment to be created. If not set, this will contain all text in the header comment of the user&apos;s .config file. The leading comment characters, <text:span text:style-name="T286">as well as </text:span>leading and trailing empty lines <text:span text:style-name="T286">or comment boilerplate </text:span>are removed. Note that <text:span text:style-name="T243">both header comment and </text:span>EXP_DESCRIPTION may reference any other global variable defined in the experiment configuration <text:span text:style-name="T243">(see section </text:span><text:span text:style-name="T243"><text:bookmark-ref text:reference-format="chapter" text:ref-name="__RefHeading__2540_1114405012">2.3.4</text:bookmark-ref></text:span><text:span text:style-name="T243">)</text:span>.</text:p>
-   <text:p text:style-name="P205">The contents of this variable is written to a &apos;README&apos; file in SCRIPT_DIR.</text:p>
+   <text:p text:style-name="P201">EXP_TYPE</text:p>
+   <text:p text:style-name="P216">Selects one of the standard experiments that are pre-defined in the model setup as basis of the current experiment definition.</text:p>
+   <text:p text:style-name="P202">ENVIRONMENT</text:p>
+   <text:p text:style-name="P213">Selects one of the standard host environments that are available for the model.</text:p>
+   <text:p text:style-name="P207"><text:span text:style-name="T53">EXP_OPTIONS (</text:span><text:span text:style-name="T9">optional</text:span><text:span text:style-name="T53">)</text:span></text:p>
+   <text:p text:style-name="P217"><text:soft-page-break/>Subset of the model&apos;s standard options that should be applied to the current experiment definition.</text:p>
+   <text:p text:style-name="P208">EXP_ID (<text:span text:style-name="T9">optional</text:span>)</text:p>
+   <text:p text:style-name="P230">Name of the experiment to be created. If not set, this will be set to the base name of the user&apos;s .config file, e.g. &apos;joe1234&apos; in the introductory example. All job description files will carry this as the first part of their name. For almost all model setups, this will be used in the definitions of SCRIPT_DIR, WORK_DIR, and DATA_DIR.</text:p>
+   <text:p text:style-name="P196">EXP_DESCRIPTION <text:span text:style-name="T200">(</text:span><text:span text:style-name="T16">optional</text:span><text:span text:style-name="T200">)</text:span></text:p>
+   <text:p text:style-name="P215">Extensive description of the experiment to be created. If not set, this will contain all text in the header comment of the user&apos;s .config file. The leading comment characters, <text:span text:style-name="T286">as well as </text:span>leading and trailing empty lines <text:span text:style-name="T286">or comment boilerplate </text:span>are removed. Note that <text:span text:style-name="T243">both header comment and </text:span>EXP_DESCRIPTION may reference any other global variable defined in the experiment configuration <text:span text:style-name="T243">(see section </text:span><text:span text:style-name="T243"><text:bookmark-ref text:reference-format="chapter" text:ref-name="__RefHeading__2540_1114405012">2.3.4</text:bookmark-ref></text:span><text:span text:style-name="T243">)</text:span>.</text:p>
+   <text:p text:style-name="P215">The contents of this variable is written to a &apos;README&apos; file in SCRIPT_DIR.</text:p>
    <text:p text:style-name="P38"><text:span text:style-name="T53">Another set of variables is automatically added to the job specific experiment configuration. </text:span><text:span text:style-name="T68">These are considered read-only</text:span><text:span text:style-name="T53"> </text:span><text:span text:style-name="T61">and may not be altered</text:span><text:span text:style-name="T53">.</text:span></text:p>
-   <text:p text:style-name="P185">JOB</text:p>
-   <text:p text:style-name="P202">A dictionary of system settings pertaining to the current job.</text:p>
-   <text:p text:style-name="P190">VARIABLES_</text:p>
-   <text:p text:style-name="P209">List of all names that were recognized as native variables of the current job. May be used to maintain a variable definition list in the generated script.</text:p>
-   <text:p text:style-name="P199"><text:span text:style-name="T65">m</text:span><text:span text:style-name="T53">kexp_input</text:span></text:p>
-   <text:p text:style-name="P212">Descriptive string for script headers. It is set to &apos;Generated by … mkexp …&apos; where the ellipses are filled with version information.</text:p>
-   <text:p text:style-name="P193">VERSIONS_</text:p>
-   <text:p text:style-name="P211">List of all &apos;VERSION_&apos; strings that were found in the different .config files.</text:p>
+   <text:p text:style-name="P195">JOB</text:p>
+   <text:p text:style-name="P212">A dictionary of system settings pertaining to the current job.</text:p>
+   <text:p text:style-name="P200">VARIABLES_</text:p>
+   <text:p text:style-name="P219">List of all names that were recognized as native variables of the current job. May be used to maintain a variable definition list in the generated script.</text:p>
+   <text:p text:style-name="P209"><text:span text:style-name="T65">m</text:span><text:span text:style-name="T53">kexp_input</text:span></text:p>
+   <text:p text:style-name="P222">Descriptive string for script headers. It is set to &apos;Generated by … mkexp …&apos; where the ellipses are filled with version information.</text:p>
+   <text:p text:style-name="P203">VERSIONS_</text:p>
+   <text:p text:style-name="P221">List of all &apos;VERSION_&apos; strings that were found in the different .config files.</text:p>
    <text:p text:style-name="P68">These special sections are usually pre-defined in the model setup, but are commonly altered by the user.</text:p>
    <text:p text:style-name="List_20_Heading">[jobs]</text:p>
-   <text:p text:style-name="P221">This section defines the job description set needed for an experiment. It also provides job specific settings. Details are given in section <text:bookmark-ref text:reference-format="chapter" text:ref-name="__RefHeading__1508_1711940803">2.7</text:bookmark-ref>, &apos;<text:bookmark-ref text:reference-format="text" text:ref-name="__RefHeading__1508_1711940803">Generating jobs</text:bookmark-ref>&apos;.</text:p>
+   <text:p text:style-name="P231">This section defines the job description set needed for an experiment. It also provides job specific settings. Details are given in section <text:bookmark-ref text:reference-format="chapter" text:ref-name="__RefHeading__1508_1711940803">2.7</text:bookmark-ref>, &apos;<text:bookmark-ref text:reference-format="text" text:ref-name="__RefHeading__1508_1711940803">Generating jobs</text:bookmark-ref>&apos;.</text:p>
    <text:p text:style-name="List_20_Heading">[namelists]</text:p>
-   <text:p text:style-name="P221">Information that is contained in model configuration or namelist files is set in this section. For further details see section <text:bookmark-ref text:reference-format="chapter" text:ref-name="__RefHeading__1883_1672291846">2.9</text:bookmark-ref>, <text:span text:style-name="T232">&apos;</text:span><text:span text:style-name="T232"><text:bookmark-ref text:reference-format="text" text:ref-name="__RefHeading__1883_1672291846">Defining namelists and other configuration files</text:bookmark-ref></text:span><text:span text:style-name="T232">&apos;.</text:span></text:p>
-   <text:p text:style-name="P200">[files]</text:p>
-   <text:p text:style-name="P235">All input files that are needed for an experiment and <text:span text:style-name="T254">information</text:span> to provide them go into this section. <text:span text:style-name="T254">See section </text:span><text:span text:style-name="T254"><text:bookmark-ref text:reference-format="chapter" text:ref-name="__RefHeading__2831_1132221942">2.10</text:bookmark-ref></text:span><text:span text:style-name="T254">, &apos;</text:span><text:span text:style-name="T254"><text:bookmark-ref text:reference-format="text" text:ref-name="__RefHeading__2831_1132221942">Defining input files for an experiment</text:bookmark-ref></text:span><text:span text:style-name="T254">&apos;.</text:span></text:p>
-   <text:h text:style-name="Heading_20_3" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2540_1114405012"/><text:soft-page-break/>Variable interpolation<text:bookmark-end text:name="__RefHeading__2540_1114405012"/></text:h>
+   <text:p text:style-name="P231">Information that is contained in model configuration or namelist files is set in this section. For further details see section <text:bookmark-ref text:reference-format="chapter" text:ref-name="__RefHeading__1883_1672291846">2.9</text:bookmark-ref>, <text:span text:style-name="T232">&apos;</text:span><text:span text:style-name="T232"><text:bookmark-ref text:reference-format="text" text:ref-name="__RefHeading__1883_1672291846">Defining namelists and other configuration files</text:bookmark-ref></text:span><text:span text:style-name="T232">&apos;.</text:span></text:p>
+   <text:p text:style-name="P210"><text:soft-page-break/>[files]</text:p>
+   <text:p text:style-name="P245">All input files that are needed for an experiment and <text:span text:style-name="T254">information</text:span> to provide them go into this section. <text:span text:style-name="T254">See section </text:span><text:span text:style-name="T254"><text:bookmark-ref text:reference-format="chapter" text:ref-name="__RefHeading__2831_1132221942">2.10</text:bookmark-ref></text:span><text:span text:style-name="T254">, &apos;</text:span><text:span text:style-name="T254"><text:bookmark-ref text:reference-format="text" text:ref-name="__RefHeading__2831_1132221942">Defining input files for an experiment</text:bookmark-ref></text:span><text:span text:style-name="T254">&apos;.</text:span></text:p>
+   <text:h text:style-name="Heading_20_3" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2540_1114405012"/>Variable interpolation<text:bookmark-end text:name="__RefHeading__2540_1114405012"/></text:h>
    <text:p text:style-name="P76">The value of a .config variable may reference the value of another variable by prefixing its name with <text:span text:style-name="T233">a </text:span>dollar sign. <text:span text:style-name="T233">This is called </text:span><text:span text:style-name="T26">interpolation</text:span><text:span text:style-name="T79"> of variables. E.g.</text:span></text:p>
-   <text:p text:style-name="P170"># joe1234.config</text:p>
-   <text:p text:style-name="P176">WORK_ROOT = /scratch/joe</text:p>
+   <text:p text:style-name="P173"># joe1234.config</text:p>
+   <text:p text:style-name="P179">WORK_ROOT = /scratch/joe</text:p>
    <text:p text:style-name="Preformatted_20_Text">WORK_DIR = $WORK_ROOT/experiments/<text:span text:style-name="T234">$EXP_ID</text:span></text:p>
    <text:p text:style-name="P78">will set &apos;WORK_DIR&apos; to &apos;/scratch/joe/experiments/joe1234&apos;.</text:p>
    <text:p text:style-name="P77">Interpolation only works for variables of the current section or its ancestor sections.</text:p>
@@ -2803,20 +2809,20 @@
    <text:p text:style-name="P77">because &apos;size&apos; is not defined in &apos;jobs&apos;, nor on the global level.</text:p>
    <text:p text:style-name="P79">As in shell scripts, the variable name must be enclosed in braces if the interpolation continues with a word character (alphanumerical or underscore), or if the variable name contains a space (which is perfectly legal):</text:p>
    <text:p text:style-name="Preformatted_20_Text">WORK_DIR = /tmp/$EXP_ID_test <text:s text:c="3"/><text:span text:style-name="T234"># ERROR: missing option &quot;EXP_ID_test&quot;</text:span></text:p>
-   <text:p text:style-name="P171"><text:span text:style-name="T234">WORK_DIR = /tmp/</text:span><text:span text:style-name="T163">${EXP_ID}_test</text:span><text:span text:style-name="T234"> <text:s/># OK</text:span></text:p>
-   <text:p text:style-name="P170"/>
-   <text:p text:style-name="P170">SPACY <text:span text:style-name="T235">VAR</text:span> = Whew! </text:p>
-   <text:p text:style-name="P170"><text:span text:style-name="T235">MESSAGE</text:span> = He said: $SPACY VAR <text:s text:c="2"/><text:span text:style-name="T235"># ERROR: missing option </text:span>&quot;<text:span text:style-name="T235">SPACY</text:span>&quot;</text:p>
-   <text:p text:style-name="P172">MESSAGE = <text:span text:style-name="T234">He said: </text:span><text:span text:style-name="T163">$</text:span><text:span text:style-name="T156">{</text:span><text:span text:style-name="T163">SPACY VAR</text:span><text:span text:style-name="T156">}</text:span> # OK</text:p>
+   <text:p text:style-name="P174"><text:span text:style-name="T234">WORK_DIR = /tmp/</text:span><text:span text:style-name="T163">${EXP_ID}_test</text:span><text:span text:style-name="T234"> <text:s/># OK</text:span></text:p>
+   <text:p text:style-name="P173"/>
+   <text:p text:style-name="P173">SPACY <text:span text:style-name="T235">VAR</text:span> = Whew! </text:p>
+   <text:p text:style-name="P173"><text:span text:style-name="T235">MESSAGE</text:span> = He said: $SPACY VAR <text:s text:c="2"/><text:span text:style-name="T235"># ERROR: missing option </text:span>&quot;<text:span text:style-name="T235">SPACY</text:span>&quot;</text:p>
+   <text:p text:style-name="P175">MESSAGE = <text:span text:style-name="T234">He said: </text:span><text:span text:style-name="T163">$</text:span><text:span text:style-name="T156">{</text:span><text:span text:style-name="T163">SPACY VAR</text:span><text:span text:style-name="T156">}</text:span> # OK</text:p>
    <text:p text:style-name="P79">The user<text:span text:style-name="T244">&apos;</text:span>s <text:span text:style-name="T9">environment variables</text:span> may be referenced as global variables in a .config file. Thus a user may write something like</text:p>
    <text:p text:style-name="Preformatted_20_Text">SCRIPT_ROOT = $HOME/experiments/$EXP_ID</text:p>
    <text:p text:style-name="P79">setting &apos;SCRIPT_ROOT&apos; to a subdirectory of the user&apos;s home directory.</text:p>
-   <text:h text:style-name="Heading_20_3" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2542_1114405012"/>Evaluation of interpolation<text:bookmark-end text:name="__RefHeading__2542_1114405012"/></text:h>
-   <text:p text:style-name="P80">While interpolation looks a lot like in shell scripts, there is a major difference: interpolation is – as in Makefiles – only evaluated when the final value is written or <text:soft-page-break/>passed on. This has the advantage that the model setup may define settings based on variables that are only defined later in the user setup.</text:p>
-   <text:p text:style-name="P173"># model setup</text:p>
-   <text:p text:style-name="P273"><text:span text:style-name="T236">MODEL</text:span>_<text:span text:style-name="T236">DIR</text:span> = $HOME/<text:span text:style-name="T236">$MODEL_SUBDIR</text:span></text:p>
-   <text:p text:style-name="P174"># user setup</text:p>
-   <text:p text:style-name="P174">MODEL_SUBDIR = echam</text:p>
+   <text:h text:style-name="Heading_20_3" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2542_1114405012"/><text:soft-page-break/>Evaluation of interpolation<text:bookmark-end text:name="__RefHeading__2542_1114405012"/></text:h>
+   <text:p text:style-name="P80">While interpolation looks a lot like in shell scripts, there is a major difference: interpolation is – as in Makefiles – only evaluated when the final value is written or passed on. This has the advantage that the model setup may define settings based on variables that are only defined later in the user setup.</text:p>
+   <text:p text:style-name="P176"># model setup</text:p>
+   <text:p text:style-name="P283"><text:span text:style-name="T236">MODEL</text:span>_<text:span text:style-name="T236">DIR</text:span> = $HOME/<text:span text:style-name="T236">$MODEL_SUBDIR</text:span></text:p>
+   <text:p text:style-name="P177"># user setup</text:p>
+   <text:p text:style-name="P177">MODEL_SUBDIR = echam</text:p>
    <text:p text:style-name="P81">Here, as the model setup is read before the user setup, &apos;MODEL_SUBDIR&apos; is not set when &apos;MODEL_ROOT&apos; is defined. <text:span text:style-name="T237">This works, because i</text:span>nterpolation of &apos;MODEL_ROOT&apos;s value is postponed until all levels of setup have been read.</text:p>
    <text:p text:style-name="P81">The disadvantage is that there may be no incremental adding of values to a given variable because this would cause circular dependencies. Imagine</text:p>
    <text:p text:style-name="Preformatted_20_Text">SUBMODELS = $SUBMODELS jsbach</text:p>
@@ -2824,32 +2830,32 @@
    <text:p text:style-name="Preformatted_20_Text">Oops: interpolation loop detected in value &quot;SUBMODELS&quot; while reading key &apos;SUBMODELS&apos;</text:p>
    <text:h text:style-name="Heading_20_3" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2544_1114405012"/>Special expressions<text:bookmark-end text:name="__RefHeading__2544_1114405012"/></text:h>
    <text:p text:style-name="P83">For some applications, simply including some other variable is not enough. You might want to compute a time limit from a given constant divided by the number of computing nodes, or convert a time stamp to a list of values. For these purposes, <text:span text:style-name="T9">mkexp</text:span><text:span text:style-name="T53"> includes some special expressions, that are evaluated when interpolation occurs.</text:span></text:p>
-   <text:p text:style-name="P255"><text:span text:style-name="T9">variable</text:span><text:span text:style-name="T53"> = </text:span><text:span text:style-name="T148">eval(</text:span><text:span text:style-name="T9">expression</text:span><text:span text:style-name="T148">)</text:span><text:span text:style-name="T53"><text:line-break/></text:span><text:span text:style-name="T9">variable</text:span><text:span text:style-name="T53"> = </text:span><text:span text:style-name="T148">evals(</text:span><text:span text:style-name="T9">expression</text:span><text:span text:style-name="T148">)</text:span></text:p>
-   <text:p text:style-name="P247"><text:span text:style-name="T83">I</text:span><text:span text:style-name="T112">nterpret </text:span><text:span text:style-name="T41">expression</text:span><text:span text:style-name="T112"> as a valid Python expression and assign the result to </text:span><text:span text:style-name="T41">variable</text:span><text:span text:style-name="T112"> as a string. </text:span><text:span text:style-name="T111">The modules </text:span><text:span text:style-name="T286">&apos;</text:span>os<text:span text:style-name="T286">&apos;</text:span>, <text:span text:style-name="T286">&apos;</text:span>re<text:span text:style-name="T286">&apos;</text:span> and <text:span text:style-name="T286">&apos;</text:span>time<text:span text:style-name="T286">&apos;</text:span> <text:span text:style-name="T111">may be used in </text:span><text:span text:style-name="T40">expression</text:span><text:span text:style-name="T111">.</text:span></text:p>
-   <text:p text:style-name="P231"><text:span text:style-name="T53">When the result is a list, </text:span><text:span text:style-name="T9">eval</text:span><text:span text:style-name="T53"> will return a list of strings, while </text:span><text:span text:style-name="T9">evals</text:span><text:span text:style-name="T53"> will return a single string, where elements are joined by a comma and a space.</text:span></text:p>
-   <text:p text:style-name="P230"><text:span text:style-name="T53">Note that interpolation does not work for list values; if you need this, consider to set the original variable </text:span><text:span text:style-name="T80">to a string containing a Python list expression</text:span><text:span text:style-name="T53">, and </text:span><text:span text:style-name="T80">then </text:span><text:span text:style-name="T53">use </text:span><text:span text:style-name="T9">eval</text:span><text:span text:style-name="T53"> </text:span><text:span text:style-name="T93">a</text:span><text:span text:style-name="T53">round the interpolation expression:</text:span></text:p>
-   <text:p text:style-name="P274"><text:soft-page-break/>DATE_<text:span text:style-name="T245">STRING</text:span> = &apos;[2010, 10, 20]&apos; # need quotes here!</text:p>
-   <text:p text:style-name="P274">DATE_<text:span text:style-name="T245">LIST</text:span> = eval($DATE_<text:span text:style-name="T246">STRING</text:span>) # becomes a 3 element list</text:p>
-   <text:p text:style-name="P256">variable<text:span text:style-name="T53"> = </text:span><text:span text:style-name="T148">read(</text:span>file_name<text:span text:style-name="T148">)</text:span></text:p>
-   <text:p text:style-name="P224"><text:span text:style-name="T53">Read the contents of the file </text:span>file_name<text:span text:style-name="T53"> and assign its contents to </text:span>variable<text:span text:style-name="T53"> as a string.</text:span></text:p>
-   <text:p text:style-name="P257"><text:span text:style-name="T27">variable</text:span><text:span text:style-name="T81"> = </text:span><text:span text:style-name="T150">split_date(</text:span><text:span text:style-name="T27">timestamp</text:span><text:span text:style-name="T150">)</text:span></text:p>
-   <text:p text:style-name="P232"><text:span text:style-name="T238">T</text:span>ake <text:span text:style-name="T9">timestamp</text:span><text:span text:style-name="T53"> and split it into a list of numerical date/time elements. </text:span><text:span text:style-name="T9">tim</text:span><text:span text:style-name="T28">e</text:span><text:span text:style-name="T9">stamp</text:span><text:span text:style-name="T53"> </text:span><text:span text:style-name="T82">must have </text:span><text:span text:style-name="T53">an ISO-like format (date elements separated by &apos;-&apos;; &apos;T&apos; or space as date/time separator; time elements separated by &apos;:</text:span><text:span text:style-name="T82">&apos;; </text:span><text:span text:style-name="T53">trailing time elements </text:span><text:span text:style-name="T83">and their separators </text:span><text:span text:style-name="T82">are optional</text:span><text:span text:style-name="T53">; time zone indicator is not supported). </text:span><text:span text:style-name="T95">Unlike ISO, </text:span><text:span text:style-name="T31">split_date</text:span><text:span text:style-name="T95"> also</text:span><text:span text:style-name="T53"> </text:span><text:span text:style-name="T95">allows the date to be in the form YYYYMMDD</text:span><text:span text:style-name="T53">. </text:span><text:span text:style-name="T83">Unset fields default to zero.</text:span></text:p>
-   <text:p text:style-name="P258"><text:span text:style-name="T9">variable</text:span><text:span text:style-name="T53"> = </text:span><text:span text:style-name="T148">sec2time(</text:span><text:span text:style-name="T9">second_of_day</text:span><text:span text:style-name="T148">)</text:span></text:p>
-   <text:p text:style-name="P216">Take integer <text:span text:style-name="T9">second_of_day</text:span> (from 0 to 86399) and return the corresponding time stamp as string of the form HH:MM:SS.</text:p>
-   <text:p text:style-name="P259"><text:span text:style-name="T9">variable</text:span> = &apos;<text:span text:style-name="T156">add_years</text:span>(<text:span text:style-name="T9">datestamp</text:span>, <text:span text:style-name="T9">offset</text:span>)&apos;</text:p>
-   <text:p text:style-name="P233">Take integer <text:span text:style-name="T9">offset</text:span><text:span text:style-name="T53"> (may be negative), add it to the year portion of </text:span><text:span text:style-name="T9">datestamp</text:span><text:span text:style-name="T53"> and return the resulting date string.</text:span></text:p>
-   <text:p text:style-name="P260"><text:span text:style-name="T9">variable</text:span> = &apos;<text:span text:style-name="T156">add_</text:span><text:span text:style-name="T164">days</text:span>(<text:span text:style-name="T9">datestamp</text:span>, <text:span text:style-name="T9">offset</text:span>)&apos;</text:p>
-   <text:p text:style-name="P234"><text:span text:style-name="T53">Take integer </text:span><text:span text:style-name="T9">offset</text:span><text:span text:style-name="T53"> (may be negative), add it to the </text:span><text:span text:style-name="T96">day</text:span><text:span text:style-name="T53"> portion of </text:span><text:span text:style-name="T9">datestamp</text:span><text:span text:style-name="T53"> and return the resulting date string. </text:span><text:span text:style-name="T96">Year and month portions will be set as appropriate, assuming a Proleptic Gregorian calendar with year 0.</text:span></text:p>
+   <text:p text:style-name="P265"><text:span text:style-name="T9">variable</text:span><text:span text:style-name="T53"> = </text:span><text:span text:style-name="T148">eval(</text:span><text:span text:style-name="T9">expression</text:span><text:span text:style-name="T148">)</text:span><text:span text:style-name="T53"><text:line-break/></text:span><text:span text:style-name="T9">variable</text:span><text:span text:style-name="T53"> = </text:span><text:span text:style-name="T148">evals(</text:span><text:span text:style-name="T9">expression</text:span><text:span text:style-name="T148">)</text:span></text:p>
+   <text:p text:style-name="P257"><text:span text:style-name="T83">I</text:span><text:span text:style-name="T112">nterpret </text:span><text:span text:style-name="T41">expression</text:span><text:span text:style-name="T112"> as a valid Python expression and assign the result to </text:span><text:span text:style-name="T41">variable</text:span><text:span text:style-name="T112"> as a string. </text:span><text:span text:style-name="T111">The modules </text:span><text:span text:style-name="T286">&apos;</text:span>os<text:span text:style-name="T286">&apos;</text:span>, <text:span text:style-name="T286">&apos;</text:span>re<text:span text:style-name="T286">&apos;</text:span> and <text:span text:style-name="T286">&apos;</text:span>time<text:span text:style-name="T286">&apos;</text:span> <text:span text:style-name="T111">may be used in </text:span><text:span text:style-name="T40">expression</text:span><text:span text:style-name="T111">.</text:span></text:p>
+   <text:p text:style-name="P241"><text:span text:style-name="T53">When the result is a list, </text:span><text:span text:style-name="T9">eval</text:span><text:span text:style-name="T53"> will return a list of strings, while </text:span><text:span text:style-name="T9">evals</text:span><text:span text:style-name="T53"> will return a single string, where elements are joined by a comma and a space.</text:span></text:p>
+   <text:p text:style-name="P240"><text:span text:style-name="T53">Note that interpolation does not work for list values; if you need this, consider to </text:span><text:soft-page-break/><text:span text:style-name="T53">set the original variable </text:span><text:span text:style-name="T80">to a string containing a Python list expression</text:span><text:span text:style-name="T53">, and </text:span><text:span text:style-name="T80">then </text:span><text:span text:style-name="T53">use </text:span><text:span text:style-name="T9">eval</text:span><text:span text:style-name="T53"> </text:span><text:span text:style-name="T93">a</text:span><text:span text:style-name="T53">round the interpolation expression:</text:span></text:p>
+   <text:p text:style-name="P284">DATE_<text:span text:style-name="T245">STRING</text:span> = &apos;[2010, 10, 20]&apos; # need quotes here!</text:p>
+   <text:p text:style-name="P284">DATE_<text:span text:style-name="T245">LIST</text:span> = eval($DATE_<text:span text:style-name="T246">STRING</text:span>) # becomes a 3 element list</text:p>
+   <text:p text:style-name="P266">variable<text:span text:style-name="T53"> = </text:span><text:span text:style-name="T148">read(</text:span>file_name<text:span text:style-name="T148">)</text:span></text:p>
+   <text:p text:style-name="P234"><text:span text:style-name="T53">Read the contents of the file </text:span>file_name<text:span text:style-name="T53"> and assign its contents to </text:span>variable<text:span text:style-name="T53"> as a string.</text:span></text:p>
+   <text:p text:style-name="P267"><text:span text:style-name="T27">variable</text:span><text:span text:style-name="T81"> = </text:span><text:span text:style-name="T150">split_date(</text:span><text:span text:style-name="T27">timestamp</text:span><text:span text:style-name="T150">)</text:span></text:p>
+   <text:p text:style-name="P242"><text:span text:style-name="T238">T</text:span>ake <text:span text:style-name="T9">timestamp</text:span><text:span text:style-name="T53"> and split it into a list of numerical date/time elements. </text:span><text:span text:style-name="T9">tim</text:span><text:span text:style-name="T28">e</text:span><text:span text:style-name="T9">stamp</text:span><text:span text:style-name="T53"> </text:span><text:span text:style-name="T82">must have </text:span><text:span text:style-name="T53">an ISO-like format (date elements separated by &apos;-&apos;; &apos;T&apos; or space as date/time separator; time elements separated by &apos;:</text:span><text:span text:style-name="T82">&apos;; </text:span><text:span text:style-name="T53">trailing time elements </text:span><text:span text:style-name="T83">and their separators </text:span><text:span text:style-name="T82">are optional</text:span><text:span text:style-name="T53">; time zone indicator is not supported). </text:span><text:span text:style-name="T95">Unlike ISO, </text:span><text:span text:style-name="T31">split_date</text:span><text:span text:style-name="T95"> also</text:span><text:span text:style-name="T53"> </text:span><text:span text:style-name="T95">allows the date to be in the form YYYYMMDD</text:span><text:span text:style-name="T53">. </text:span><text:span text:style-name="T83">Unset fields default to zero.</text:span></text:p>
+   <text:p text:style-name="P268"><text:span text:style-name="T9">variable</text:span><text:span text:style-name="T53"> = </text:span><text:span text:style-name="T148">sec2time(</text:span><text:span text:style-name="T9">second_of_day</text:span><text:span text:style-name="T148">)</text:span></text:p>
+   <text:p text:style-name="P226">Take integer <text:span text:style-name="T9">second_of_day</text:span> (from 0 to 86399) and return the corresponding time stamp as string of the form HH:MM:SS.</text:p>
+   <text:p text:style-name="P269"><text:span text:style-name="T9">variable</text:span> = &apos;<text:span text:style-name="T156">add_years</text:span>(<text:span text:style-name="T9">datestamp</text:span>, <text:span text:style-name="T9">offset</text:span>)&apos;</text:p>
+   <text:p text:style-name="P243">Take integer <text:span text:style-name="T9">offset</text:span><text:span text:style-name="T53"> (may be negative), add it to the year portion of </text:span><text:span text:style-name="T9">datestamp</text:span><text:span text:style-name="T53"> and return the resulting date string.</text:span></text:p>
+   <text:p text:style-name="P270"><text:span text:style-name="T9">variable</text:span> = &apos;<text:span text:style-name="T156">add_</text:span><text:span text:style-name="T164">days</text:span>(<text:span text:style-name="T9">datestamp</text:span>, <text:span text:style-name="T9">offset</text:span>)&apos;</text:p>
+   <text:p text:style-name="P244"><text:span text:style-name="T53">Take integer </text:span><text:span text:style-name="T9">offset</text:span><text:span text:style-name="T53"> (may be negative), add it to the </text:span><text:span text:style-name="T96">day</text:span><text:span text:style-name="T53"> portion of </text:span><text:span text:style-name="T9">datestamp</text:span><text:span text:style-name="T53"> and return the resulting date string. </text:span><text:span text:style-name="T96">Year and month portions will be set as appropriate, assuming a Proleptic Gregorian calendar with year 0.</text:span></text:p>
    <text:h text:style-name="Heading_20_2" text:outline-level="2"><text:bookmark-start text:name="__RefHeading__2546_1114405012"/>Format of .tmpl files<text:bookmark-end text:name="__RefHeading__2546_1114405012"/></text:h>
    <text:p text:style-name="P24">The .tmpl files are also text files mostly written in the syntax of the job description that <text:span text:style-name="T9">mkexp</text:span> is meant to create. Currently this is usually the ksh or bash shell script syntax, but may also be any other interpreted language, like Perl or Python, or even a configuration or namelist file. The main difference are placeholders and structured comments that are embedded in the program text. These are evaluated or expanded using the information that comes with the .config files, to create the final text files, defining the jobs to be run on the target system.</text:p>
-   <text:p text:style-name="P24">The expansion of .tmpl files into the job description uses the <text:span text:style-name="T9">Jinja</text:span> Python library. It provides a default set of facilities that can be used to expand any textual template. The proposed default syntax was slightly customized to fit the needs of <text:span text:style-name="T9">mkexp</text:span>.</text:p>
-   <text:h text:style-name="Heading_20_3" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2548_1114405012"/><text:soft-page-break/>Placeholders<text:bookmark-end text:name="__RefHeading__2548_1114405012"/></text:h>
+   <text:p text:style-name="P24">The expansion of .tmpl files into the job description uses the <text:span text:style-name="T9">Jinja</text:span> Python library. It provides a default set of facilities that can be used to expand any textual template. The <text:soft-page-break/>proposed default syntax was slightly customized to fit the needs of <text:span text:style-name="T9">mkexp</text:span>.</text:p>
+   <text:h text:style-name="Heading_20_3" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2548_1114405012"/>Placeholders<text:bookmark-end text:name="__RefHeading__2548_1114405012"/></text:h>
    <text:p text:style-name="P25">The simplest interaction in a template is replacing a template&apos;s placeholder by a value from a .config file. <text:span text:style-name="T179">Any name enclosed by &apos;%{&apos; and &apos;}&apos; is taken to be a configuration variable, like in the snippets below:</text:span></text:p>
    <text:p text:style-name="Preformatted_20_Text">#! /bin/ksh</text:p>
    <text:p text:style-name="Preformatted_20_Text"><text:span text:style-name="T180">#</text:span> This script was <text:span text:style-name="T180">crea</text:span>ted by %{NAME}</text:p>
    <text:p text:style-name="P33">Here, the placehol<text:span text:style-name="T228">d</text:span>er requests the &apos;NAME&apos; variable which was set to &apos;Joe User&apos; in the example .config file <text:span text:style-name="T228">of section </text:span><text:span text:style-name="T228"><text:bookmark-ref text:reference-format="chapter" text:ref-name="__RefHeading__1669_1438093122">2.3.1</text:bookmark-ref></text:span>. This value is now looked up in the <text:span text:style-name="T228">configuration</text:span> and used to textually replace the placeholder expression, yield<text:span text:style-name="T228">ing</text:span> the final text:</text:p>
-   <text:p text:style-name="P135">#! /bin/ksh</text:p>
-   <text:p text:style-name="P134"><text:span text:style-name="T181"># </text:span>This script was <text:span text:style-name="T181">crea</text:span>ted by <text:span text:style-name="T179">Joe User</text:span></text:p>
+   <text:p text:style-name="P138">#! /bin/ksh</text:p>
+   <text:p text:style-name="P137"><text:span text:style-name="T181"># </text:span>This script was <text:span text:style-name="T181">crea</text:span>ted by <text:span text:style-name="T179">Joe User</text:span></text:p>
    <text:h text:style-name="Heading_20_3" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2550_1114405012"/><text:span text:style-name="T183">V</text:span>ariables in sections<text:bookmark-end text:name="__RefHeading__2550_1114405012"/></text:h>
    <text:p text:style-name="P26">To request a variable within a section, simply prepend the section name to the variable name, using &apos;.&apos; as separator, as in</text:p>
    <text:p text:style-name="Preformatted_20_Text"># %{section1.description}</text:p>
@@ -2866,44 +2872,44 @@
    <text:p text:style-name="Preformatted_20_Text">LITERAL_BOOLEANS=%{false} <text:s/># Always lower-case!</text:p>
    <text:p text:style-name="Preformatted_20_Text">ARITHMETIC=%{2 + 2 * 2 – 2 / 2} <text:s/># is 5</text:p>
    <text:p text:style-name="Preformatted_20_Text">STRING_TOGETHER=%{NAME ~ &apos;, employee number &apos; ~ 42} <text:s/># Converts <text:span text:style-name="T183">42</text:span> to string</text:p>
-   <text:p text:style-name="P137">LIST_ELEMENT=%{PATH[0]} <text:s/># indices start with 0</text:p>
-   <text:p text:style-name="P137">LIST_SUBLIST=%{PATH[1:3]}</text:p>
+   <text:p text:style-name="P140">LIST_ELEMENT=%{PATH[0]} <text:s/># indices start with 0</text:p>
+   <text:p text:style-name="P140">LIST_SUBLIST=%{PATH[1:3]}</text:p>
    <text:p text:style-name="Preformatted_20_Text">FILTERED_STRING=%{NAME | <text:span text:style-name="T183">lower()} <text:s/># is &apos;joe user&apos;</text:span></text:p>
    <text:p text:style-name="P96">The last example allows for <text:span text:style-name="T199">a </text:span>number of predefined filters instead of &apos;lower&apos;. These are described in the <text:span text:style-name="T9">Jinja</text:span> documentation (List of Builtin Filters). <text:span text:style-name="T261">Besides, </text:span><text:span text:style-name="T9">mkexp</text:span> defines <text:s/><text:span text:style-name="T264">a number of </text:span>additional filters:</text:p>
-   <text:p text:style-name="P261">split<text:span text:style-name="T189">(</text:span><text:span text:style-name="T48">s</text:span><text:span text:style-name="T151">, </text:span><text:span text:style-name="T48">m</text:span><text:span text:style-name="T151">=-1)</text:span></text:p>
-   <text:p text:style-name="P217">cuts <text:span text:style-name="T263">the input </text:span>string <text:span text:style-name="T263">at all occurrences of </text:span><text:span text:style-name="T34">s</text:span><text:span text:style-name="T263">, returning</text:span> a list of substrings. <text:span text:style-name="T262">If </text:span><text:span text:style-name="T33">m</text:span><text:span text:style-name="T262"> is positive or zero, it cuts only at the first </text:span><text:span text:style-name="T33">m</text:span><text:span text:style-name="T262"> occurrences; the last element contains the remaining substring:</text:span></text:p>
+   <text:p text:style-name="P271">split<text:span text:style-name="T189">(</text:span><text:span text:style-name="T48">s</text:span><text:span text:style-name="T151">, </text:span><text:span text:style-name="T48">m</text:span><text:span text:style-name="T151">=-1)</text:span></text:p>
+   <text:p text:style-name="P227">cuts <text:span text:style-name="T263">the input </text:span>string <text:span text:style-name="T263">at all occurrences of </text:span><text:span text:style-name="T34">s</text:span><text:span text:style-name="T263">, returning</text:span> a list of substrings. <text:span text:style-name="T262">If </text:span><text:span text:style-name="T33">m</text:span><text:span text:style-name="T262"> is positive or zero, it cuts only at the first </text:span><text:span text:style-name="T33">m</text:span><text:span text:style-name="T262"> occurrences; the last element contains the remaining substring:</text:span></text:p>
    <text:p text:style-name="Preformatted_20_Text_20_Indented">%{ &apos;A B C&apos; | <text:span text:style-name="T156">split</text:span><text:span text:style-name="T189">(&apos; &apos;) }<text:tab/><text:tab/>→</text:span><text:span text:style-name="T192"> </text:span><text:span text:style-name="T191">[&apos;A&apos;, &apos;B&apos;, &apos;C&apos;]</text:span></text:p>
-   <text:p text:style-name="P277"><text:span text:style-name="T191">%{ &apos;A B C&apos; | split(&apos; &apos;, </text:span><text:span text:style-name="T166">1</text:span><text:span text:style-name="T191">) } <text:tab/></text:span><text:span text:style-name="T192">→ </text:span><text:span text:style-name="T191">[&apos;A&apos;, </text:span><text:span text:style-name="T166">&apos;B C&apos;</text:span><text:span text:style-name="T191">]</text:span></text:p>
-   <text:p text:style-name="P236"/>
-   <text:p text:style-name="P131">filter<text:span text:style-name="T189">()</text:span></text:p>
-   <text:p text:style-name="P237">removes empty elements from <text:span text:style-name="T263">the input</text:span> list:</text:p>
-   <text:p text:style-name="P278"><text:span text:style-name="T191">%{ [&apos;A&apos;, &apos;&apos;, &apos;C&apos;] | </text:span><text:span text:style-name="T166">filter</text:span><text:span text:style-name="T191">() }<text:tab/>→</text:span><text:span text:style-name="T189"> [&apos;A&apos;, &apos;C&apos;]</text:span></text:p>
-   <text:p text:style-name="P262">match<text:span text:style-name="T189">(</text:span><text:span text:style-name="T48">regexp</text:span><text:span text:style-name="T189">, </text:span><text:span text:style-name="T48">default</text:span><text:span text:style-name="T189">=&apos;&apos;)</text:span></text:p>
-   <text:p text:style-name="P238"><text:span text:style-name="T189">returns the input string</text:span><text:span text:style-name="T151">, if </text:span><text:span text:style-name="T48">regexp</text:span><text:span text:style-name="T151"> matches somewhere in it. If </text:span><text:span text:style-name="T48">regexp</text:span><text:span text:style-name="T151"> contains matching groups (parentheses), the substring matching the first group is returned. If no match is found, the </text:span><text:span text:style-name="T48">default</text:span><text:span text:style-name="T151"> string is returned:</text:span></text:p>
-   <text:p text:style-name="P278"><text:span text:style-name="T151">%{ &apos;Douglas Adams&apos; | </text:span><text:span text:style-name="T148">match</text:span><text:span text:style-name="T151">(&apos;Adam&apos;) }<text:tab/><text:tab/>→ &apos;Douglas Adams&apos;</text:span></text:p>
-   <text:p text:style-name="P278"><text:span text:style-name="T151">%{ &apos;Douglas Adams&apos; | match(</text:span><text:span text:style-name="T148">&apos;Eve&apos;</text:span><text:span text:style-name="T151">) }<text:tab/><text:tab/>→ &apos;&apos;</text:span></text:p>
-   <text:p text:style-name="P278"><text:span text:style-name="T151">%{ &apos;Douglas Adams&apos; | match(&apos;Abel&apos;, </text:span><text:span text:style-name="T148">&apos;Cain&apos;</text:span><text:span text:style-name="T151">) }<text:tab/>→ &apos;Cain&apos;</text:span></text:p>
-   <text:p text:style-name="P278"><text:span text:style-name="T151">%{ &apos;Douglas Adams&apos; | match(&apos;l</text:span><text:span text:style-name="T148">(.*)</text:span><text:span text:style-name="T151">m&apos;) }<text:tab/><text:tab/>→ &apos;as Ada&apos;</text:span></text:p>
-   <text:p text:style-name="P264"><text:span text:style-name="T148">wordwrap</text:span><text:span text:style-name="T151">(width=79, break_long_words=true, break_on_hyphens=true, <text:s text:c="2"/><text:line-break/> <text:s text:c="8"/>wrapstring=none)</text:span></text:p>
-   <text:p text:style-name="P240"><text:span text:style-name="T151">replaces the </text:span><text:span text:style-name="T152">builtin </text:span><text:span text:style-name="T49">Jinja </text:span><text:span text:style-name="T152">filter &apos;wordwrap&apos; <text:s/>by a private version that allows to suppress breaks on hyphens:</text:span></text:p>
-   <text:p text:style-name="P275"><text:soft-page-break/>%{&apos;long-hyphenated-text&apos;|<text:span text:style-name="T156">wordwrap</text:span>(15, false)}</text:p>
-   <text:p text:style-name="P279"><text:span text:style-name="T152">→</text:span><text:span text:style-name="T151"> &apos;long- </text:span></text:p>
-   <text:p text:style-name="P276"><text:s text:c="3"/>hyphenated-text&apos;</text:p>
-   <text:p text:style-name="P279"/>
-   <text:p text:style-name="P275">%{&apos;long-hyphenated-text&apos;|wordwrap(15, false, <text:span text:style-name="T156">false</text:span>)} </text:p>
-   <text:p text:style-name="P279"><text:span text:style-name="T152">→</text:span><text:span text:style-name="T151"> &apos;long-</text:span><text:span text:style-name="T152">hyphenated-text&apos;</text:span></text:p>
+   <text:p text:style-name="P287"><text:span text:style-name="T191">%{ &apos;A B C&apos; | split(&apos; &apos;, </text:span><text:span text:style-name="T166">1</text:span><text:span text:style-name="T191">) } <text:tab/></text:span><text:span text:style-name="T192">→ </text:span><text:span text:style-name="T191">[&apos;A&apos;, </text:span><text:span text:style-name="T166">&apos;B C&apos;</text:span><text:span text:style-name="T191">]</text:span></text:p>
+   <text:p text:style-name="P246"/>
+   <text:p text:style-name="P134">filter<text:span text:style-name="T189">()</text:span></text:p>
+   <text:p text:style-name="P247">removes empty elements from <text:span text:style-name="T263">the input</text:span> list:</text:p>
+   <text:p text:style-name="P288"><text:span text:style-name="T191">%{ [&apos;A&apos;, &apos;&apos;, &apos;C&apos;] | </text:span><text:span text:style-name="T166">filter</text:span><text:span text:style-name="T191">() }<text:tab/>→</text:span><text:span text:style-name="T189"> [&apos;A&apos;, &apos;C&apos;]</text:span></text:p>
+   <text:p text:style-name="P272">match<text:span text:style-name="T189">(</text:span><text:span text:style-name="T48">regexp</text:span><text:span text:style-name="T189">, </text:span><text:span text:style-name="T48">default</text:span><text:span text:style-name="T189">=&apos;&apos;)</text:span></text:p>
+   <text:p text:style-name="P248"><text:span text:style-name="T189">returns the input string</text:span><text:span text:style-name="T151">, if </text:span><text:span text:style-name="T48">regexp</text:span><text:span text:style-name="T151"> matches somewhere in it. If </text:span><text:span text:style-name="T48">regexp</text:span><text:span text:style-name="T151"> contains matching groups (parentheses), the substring matching the first group is returned. If no match is found, the </text:span><text:span text:style-name="T48">default</text:span><text:span text:style-name="T151"> string is returned:</text:span></text:p>
+   <text:p text:style-name="P288"><text:span text:style-name="T151">%{ &apos;Douglas Adams&apos; | </text:span><text:span text:style-name="T148">match</text:span><text:span text:style-name="T151">(&apos;Adam&apos;) }<text:tab/><text:tab/>→ &apos;Douglas Adams&apos;</text:span></text:p>
+   <text:p text:style-name="P288"><text:span text:style-name="T151">%{ &apos;Douglas Adams&apos; | match(</text:span><text:span text:style-name="T148">&apos;Eve&apos;</text:span><text:span text:style-name="T151">) }<text:tab/><text:tab/>→ &apos;&apos;</text:span></text:p>
+   <text:p text:style-name="P288"><text:span text:style-name="T151">%{ &apos;Douglas Adams&apos; | match(&apos;Abel&apos;, </text:span><text:span text:style-name="T148">&apos;Cain&apos;</text:span><text:span text:style-name="T151">) }<text:tab/>→ &apos;Cain&apos;</text:span></text:p>
+   <text:p text:style-name="P288"><text:span text:style-name="T151">%{ &apos;Douglas Adams&apos; | match(&apos;l</text:span><text:span text:style-name="T148">(.*)</text:span><text:span text:style-name="T151">m&apos;) }<text:tab/><text:tab/>→ &apos;as Ada&apos;</text:span></text:p>
+   <text:p text:style-name="P274"><text:span text:style-name="T148">wordwrap</text:span><text:span text:style-name="T151">(width=79, break_long_words=true, break_on_hyphens=true, <text:s text:c="2"/><text:line-break/> <text:s text:c="8"/>wrapstring=none)</text:span></text:p>
+   <text:p text:style-name="P250"><text:span text:style-name="T151">replaces the </text:span><text:span text:style-name="T152">builtin </text:span><text:span text:style-name="T49">Jinja </text:span><text:span text:style-name="T152">filter &apos;wordwrap&apos; <text:s/>by a private version that allows to suppress breaks on hyphens:</text:span></text:p>
+   <text:p text:style-name="P285"><text:soft-page-break/>%{&apos;long-hyphenated-text&apos;|<text:span text:style-name="T156">wordwrap</text:span>(15, false)}</text:p>
+   <text:p text:style-name="P289"><text:span text:style-name="T152">→</text:span><text:span text:style-name="T151"> &apos;long- </text:span></text:p>
+   <text:p text:style-name="P286"><text:s text:c="3"/>hyphenated-text&apos;</text:p>
+   <text:p text:style-name="P289"/>
+   <text:p text:style-name="P285">%{&apos;long-hyphenated-text&apos;|wordwrap(15, false, <text:span text:style-name="T156">false</text:span>)} </text:p>
+   <text:p text:style-name="P289"><text:span text:style-name="T152">→</text:span><text:span text:style-name="T151"> &apos;long-</text:span><text:span text:style-name="T152">hyphenated-text&apos;</text:span></text:p>
    <text:h text:style-name="Heading_20_3" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2554_1114405012"/>Loops<text:bookmark-end text:name="__RefHeading__2554_1114405012"/></text:h>
    <text:p text:style-name="P28">Text in a template may be used repeatedly, like a classical &apos;for&apos; loop. Loops are defined by structured comments <text:span text:style-name="T247">i.e. lines </text:span>beginning with &apos;#%&apos;. <text:span text:style-name="T247">They </text:span>start with &apos;#% for … <text:span text:style-name="T186">in …:</text:span>&apos; and end in &apos;#% endfor&apos;:</text:p>
    <text:p text:style-name="Preformatted_20_Text"><text:span text:style-name="T156">#% for</text:span> countdown <text:span text:style-name="T156">in</text:span> [3, 2, 1, &apos;<text:span text:style-name="T247">liftoff</text:span>&apos;]<text:span text:style-name="T156">:</text:span></text:p>
    <text:p text:style-name="Preformatted_20_Text">echo %{countdown}</text:p>
-   <text:p text:style-name="P121">#% endfor</text:p>
+   <text:p text:style-name="P124">#% endfor</text:p>
    <text:p text:style-name="P28">will <text:span text:style-name="T184">be expanded by </text:span><text:span text:style-name="T30">mkexp</text:span><text:span text:style-name="T184"> to </text:span>yield</text:p>
    <text:p text:style-name="Preformatted_20_Text">echo 3</text:p>
    <text:p text:style-name="Preformatted_20_Text">echo 2</text:p>
    <text:p text:style-name="Preformatted_20_Text">echo 1</text:p>
    <text:p text:style-name="Preformatted_20_Text">echo <text:span text:style-name="T247">liftoff</text:span></text:p>
    <text:p text:style-name="P31"><text:span text:style-name="T186">You may of course use expressions in the loop definition. </text:span>For classical, index based loops, there is a &apos;range&apos; function as in Python, <text:span text:style-name="T186">and the size of a list is queried with the &apos;length&apos; filter</text:span>.</text:p>
-   <text:p text:style-name="P136">#% for index in <text:span text:style-name="T156">range(1, </text:span><text:span text:style-name="T159">PATH|length()</text:span><text:span text:style-name="T156">)</text:span> <text:s/><text:span text:style-name="T186"># PATH was defined in </text:span><text:span text:style-name="T186"><text:bookmark-ref text:reference-format="chapter" text:ref-name="__RefHeading__1669_1438093122">2.3.1</text:bookmark-ref></text:span></text:p>
+   <text:p text:style-name="P139">#% for index in <text:span text:style-name="T156">range(1, </text:span><text:span text:style-name="T159">PATH|length()</text:span><text:span text:style-name="T156">)</text:span> <text:s/><text:span text:style-name="T186"># PATH was defined in </text:span><text:span text:style-name="T186"><text:bookmark-ref text:reference-format="chapter" text:ref-name="__RefHeading__1669_1438093122">2.3.1</text:bookmark-ref></text:span></text:p>
    <text:p text:style-name="Preformatted_20_Text"><text:span text:style-name="T186">echo</text:span> %<text:span text:style-name="T187">{index}: </text:span>%{<text:span text:style-name="T186">PATH[</text:span>index<text:span text:style-name="T186">]</text:span>} <text:s/></text:p>
    <text:p text:style-name="Preformatted_20_Text">#% endfor</text:p>
    <text:p text:style-name="Text_20_body">Note that <text:span text:style-name="T185">indexing of lists starts at 0,</text:span> <text:span text:style-name="T185">i.e. the first element of the PATH list is skipped. Besides, </text:span>the stop index <text:span text:style-name="T187">is</text:span> not included, i.e. <text:span text:style-name="T186">as PATH has a length of 3, </text:span>the last looping has index <text:span text:style-name="T185">2</text:span>:</text:p>
@@ -2913,12 +2919,12 @@
    <text:p text:style-name="P29">A template may contain alternative parts <text:span text:style-name="T187">that are selected depending on the .config data</text:span>, <text:span text:style-name="T187">similar to an &apos;if&apos; statement. This is useful for e.g. skipping certain parts of the script template that are not applicable to runs of a given resolution but required for others. They are also implemented as structured comments, starting with &apos;#% if …:&apos; and ending in &apos;#% endif&apos;, with optional &apos;#% elif …:&apos; and &apos;#% else:&apos; parts.</text:span></text:p>
    <text:p text:style-name="P30"><text:soft-page-break/><text:span text:style-name="T187">For testing, you may use expressions with comparisons (==, !=, &gt;, &gt;=, &lt;, &lt;=), querying a certain list element (… in …), and logical operators (and, or, not). Sub-expressions may be parenthesized to change the order of evaluation. Besides, </text:span><text:span text:style-name="T14">Jinja</text:span><text:span text:style-name="T187"> provides a number of named tests that use the &apos;… is …&apos; Syntax.</text:span></text:p>
    <text:p text:style-name="Preformatted_20_Text"><text:span text:style-name="T156">#% if </text:span><text:span text:style-name="T190">PATH|length()</text:span><text:span text:style-name="T188"> </text:span><text:span text:style-name="T160">is divisibleby 3:</text:span></text:p>
-   <text:p text:style-name="P154">diff3 %{PATH[:3]|join(&apos; &apos;)}</text:p>
-   <text:p text:style-name="P124">#% elif <text:span text:style-name="T190">PATH|length()</text:span> is even:</text:p>
-   <text:p text:style-name="P137">diff %{PATH[:2]|join(&apos; &apos;)}</text:p>
-   <text:p text:style-name="P121">#% else:</text:p>
+   <text:p text:style-name="P157">diff3 %{PATH[:3]|join(&apos; &apos;)}</text:p>
+   <text:p text:style-name="P127">#% elif <text:span text:style-name="T190">PATH|length()</text:span> is even:</text:p>
+   <text:p text:style-name="P140">diff %{PATH[:2]|join(&apos; &apos;)}</text:p>
+   <text:p text:style-name="P124">#% else:</text:p>
    <text:p text:style-name="Preformatted_20_Text">echo <text:span text:style-name="T197">cannot handle PATH</text:span></text:p>
-   <text:p text:style-name="P121">#% endif</text:p>
+   <text:p text:style-name="P124">#% endif</text:p>
    <text:p text:style-name="P37">If PATH is defined as in the examples above, this will result in</text:p>
    <text:p text:style-name="Preformatted_20_Text">diff3 /bin /usr/bin /usr/local/bin</text:p>
    <text:p text:style-name="P30"><text:span text:style-name="T187"><text:s/>For a list of available tests, see the </text:span><text:span text:style-name="T15">Jinja</text:span><text:span text:style-name="T198"> documentation.</text:span></text:p>
@@ -2926,10 +2932,10 @@
    <text:p text:style-name="P61"><text:span text:style-name="T9">Jinj</text:span>a also allows template comments that are removed when the template is expanded. This is implemented as another kind of structured comment starting with <text:span text:style-name="T248">&apos;#%</text:span>#&apos;:</text:p>
    <text:p text:style-name="Preformatted_20_Text"># This comment will make it to the expanded script</text:p>
    <text:p text:style-name="Preformatted_20_Text">#%# This one will not make it <text:span text:style-name="T207">and is for template documentation only</text:span></text:p>
-   <text:h text:style-name="P302" text:outline-level="3"><text:bookmark-start text:name="__RefHeading___Toc3658_1790556471"/>Block statements and block comments<text:bookmark-end text:name="__RefHeading___Toc3658_1790556471"/></text:h>
+   <text:h text:style-name="P312" text:outline-level="3"><text:bookmark-start text:name="__RefHeading___Toc3658_1790556471"/>Block statements and block comments<text:bookmark-end text:name="__RefHeading___Toc3658_1790556471"/></text:h>
    <text:p text:style-name="P100">For templates that contain more <text:span text:style-name="T9">Jinja</text:span><text:span text:style-name="T53"> code than actual output lines, a variant of the standard </text:span><text:span text:style-name="T9">Jinja </text:span><text:span text:style-name="T53">block synta</text:span><text:span text:style-name="T109">x i</text:span><text:span text:style-name="T53">s available for both statements and comments</text:span><text:span text:style-name="T53"><text:note text:id="ftn1" text:note-class="footnote"><text:note-citation>1</text:note-citation><text:note-body>
-       <text:p text:style-name="P314">The standard <text:span text:style-name="T9">Jinja</text:span><text:span text:style-name="T53"> comment syntax &apos;{#&apos; collides with the Bourne shell idiom for variable size, &apos;$⁠</text:span><text:span text:style-name="T154">{#</text:span><text:span text:style-name="T151">var</text:span><text:span text:style-name="T53">}&apos;. </text:span><text:span text:style-name="T109">Standard b</text:span><text:span text:style-name="T53">lock statement syntax &apos;{%&apos; gives problems when </text:span><text:span text:style-name="T109">mkexp </text:span><text:span text:style-name="T53">template variables </text:span><text:span text:style-name="T109">&apos;%{var}&apos; </text:span><text:span text:style-name="T53">are used </text:span><text:span text:style-name="T109">in</text:span><text:span text:style-name="T53"> shell variable </text:span><text:span text:style-name="T109">expansions</text:span><text:span text:style-name="T53">, like &apos;$</text:span><text:span text:style-name="T154">{%</text:span><text:span text:style-name="T53">{</text:span><text:span text:style-name="T109">var}:-default}&apos;</text:span></text:p></text:note-body></text:note></text:span><text:span text:style-name="T53">. Block statements begin with &apos;{%__mkexp__&apos; and end with &apos;%}&apos;, block comments begin with &apos;{#__mkexp__&apos; and end with &apos;#}&apos;.</text:span></text:p>
-   <text:h text:style-name="P313" text:outline-level="2"><text:bookmark-start text:name="__RefHeading__2560_1114405012"/>Standard experiment<text:span text:style-name="T51">s</text:span><text:bookmark-end text:name="__RefHeading__2560_1114405012"/></text:h>
+       <text:p text:style-name="P325">The standard <text:span text:style-name="T9">Jinja</text:span><text:span text:style-name="T53"> comment syntax &apos;{#&apos; collides with the Bourne shell idiom for variable size, &apos;$⁠</text:span><text:span text:style-name="T154">{#</text:span><text:span text:style-name="T151">var</text:span><text:span text:style-name="T53">}&apos;. </text:span><text:span text:style-name="T109">Standard b</text:span><text:span text:style-name="T53">lock statement syntax &apos;{%&apos; gives problems when </text:span><text:span text:style-name="T109">mkexp </text:span><text:span text:style-name="T53">template variables </text:span><text:span text:style-name="T109">&apos;%{var}&apos; </text:span><text:span text:style-name="T53">are used </text:span><text:span text:style-name="T109">in</text:span><text:span text:style-name="T53"> shell variable </text:span><text:span text:style-name="T109">expansions</text:span><text:span text:style-name="T53">, like &apos;$</text:span><text:span text:style-name="T154">{%</text:span><text:span text:style-name="T53">{</text:span><text:span text:style-name="T109">var}:-default}&apos;</text:span></text:p></text:note-body></text:note></text:span><text:span text:style-name="T53">. Block statements begin with &apos;{%__mkexp__&apos; and end with &apos;%}&apos;, block comments begin with &apos;{#__mkexp__&apos; and end with &apos;#}&apos;.</text:span></text:p>
+   <text:h text:style-name="P324" text:outline-level="2"><text:bookmark-start text:name="__RefHeading__2560_1114405012"/>Standard experiment<text:span text:style-name="T51">s</text:span><text:bookmark-end text:name="__RefHeading__2560_1114405012"/></text:h>
    <text:p text:style-name="P16">When generating an experiment setup, <text:span text:style-name="T9">mkexp</text:span> expects the .config and .tmpl files to reside in a subdirectory of the current working directory, called &apos;standard_experiments&apos;.</text:p>
    <text:p text:style-name="P10"><text:span text:style-name="T8">The definition of a standard experiment type </text:span><text:span text:style-name="T10">typename</text:span><text:span text:style-name="T8"> may consist of a configuration </text:span><text:soft-page-break/><text:span text:style-name="T8">in </text:span><text:span text:style-name="T10">typename</text:span><text:span text:style-name="T8">.config and a number of </text:span><text:span text:style-name="T10">typename</text:span><text:span text:style-name="T8">.</text:span><text:span text:style-name="T10">jobname</text:span><text:span text:style-name="T8">.tmpl files, one for each subsection </text:span><text:span text:style-name="T10">jobname</text:span><text:span text:style-name="T8"> of the jobs section. Before reading </text:span><text:span text:style-name="T10">typename</text:span><text:span text:style-name="T8">.config, the special DEFAULT.config is loaded, containing the model default settings. Both .config and .tmpl files may be missing; the default is to read only DEFAULT.config or the corresponding DEFAULT.</text:span><text:span text:style-name="T10">jobname</text:span><text:span text:style-name="T8">.tmpl file instead.</text:span></text:p>
    <text:p text:style-name="P11"><text:span text:style-name="T52">The name of a</text:span>n experiment type may <text:span text:style-name="T52">be of the form </text:span><text:span text:style-name="T11">experimentkind</text:span><text:span text:style-name="T54">‑</text:span><text:span text:style-name="T11">experimentquality</text:span><text:span text:style-name="T54">, as in amip‑LR above. In this case, the experiment type is supposed to be of a certain </text:span><text:span text:style-name="T11">quality</text:span><text:span text:style-name="T54">, like a given model resolution (LR), but to share the overall experiment structure with all types of the same </text:span><text:span text:style-name="T11">kind</text:span><text:span text:style-name="T54"> (amip). Therefore, the .config files take the full name, </text:span><text:span text:style-name="T11">experimentkind</text:span><text:span text:style-name="T54">‑</text:span><text:span text:style-name="T11">experimentquality</text:span><text:span text:style-name="T54">.config, whereas the templates are defined as </text:span><text:span text:style-name="T11">experimentkind</text:span><text:span text:style-name="T54">.</text:span><text:span text:style-name="T11">jobname</text:span><text:span text:style-name="T54">.tmpl, independent of the requested quality.</text:span></text:p>
@@ -2938,107 +2944,107 @@
    <text:p text:style-name="P11">Besides the standard experiment types, <text:span text:style-name="T9">mkexp</text:span> also supports option sets that are independent of the experiment type chosen.</text:p>
    <text:p text:style-name="P11">Usually these option sets contain a number of settings needed for a certain technical aspect, e.g. for changing the output interval or aggregation method for output data, or providing resolution dependent model settings. They reside in a subdirectory &apos;standard_options&apos; of the current working directory, each in their respective <text:span text:style-name="T9">optionname</text:span>.config file.</text:p>
    <text:p text:style-name="P11">Within the experiment&apos;s .config file, options are selected by setting the variable EXP_OPTIONS to the list of required option names. These settings are loaded after the experiment type configuration but before the user defined experiment configuration.</text:p>
-   <text:h text:style-name="P301" text:outline-level="3"><text:bookmark-start text:name="__RefHeading___Toc3660_1790556471"/><text:span text:style-name="T268">O</text:span>ptions set due to model configuration <text:bookmark-end text:name="__RefHeading___Toc3660_1790556471"/></text:h>
+   <text:h text:style-name="P311" text:outline-level="3"><text:bookmark-start text:name="__RefHeading___Toc3660_1790556471"/><text:span text:style-name="T268">O</text:span>ptions set due to model configuration <text:bookmark-end text:name="__RefHeading___Toc3660_1790556471"/></text:h>
    <text:p text:style-name="P97">Some options may need to be set <text:span text:style-name="T267">for all experiments that use a given </text:span>model configuration. <text:span text:style-name="T267">If e.g. a part of the model is disabled at build time, the corresponding option set should also be disabled for all experiments.</text:span></text:p>
    <text:p text:style-name="P98">For this, the build process may write an optional file &apos;SETUP.config&apos; <text:s/>that is read before any type or user configuration. If this file contains the variable SETUP_OPTIONS, the <text:soft-page-break/>options listed there will be loaded before loading the EXP_OPTIONS list. Do not override SETUP_OPTIONS in the user configuration unless you know what you are doing!</text:p>
-   <text:h text:style-name="P310" text:outline-level="2"><text:bookmark-start text:name="__RefHeading__1508_1711940803"/>Generating <text:span text:style-name="T215">j</text:span>obs<text:bookmark-end text:name="__RefHeading__1508_1711940803"/></text:h>
+   <text:h text:style-name="P321" text:outline-level="2"><text:bookmark-start text:name="__RefHeading__1508_1711940803"/>Generating <text:span text:style-name="T215">j</text:span>obs<text:bookmark-end text:name="__RefHeading__1508_1711940803"/></text:h>
    <text:p text:style-name="P42">When<text:span text:style-name="T203"> </text:span>running <text:span text:style-name="T9">mkexp</text:span><text:span text:style-name="T124">, </text:span><text:span text:style-name="T125">the special configuration section [jobs]</text:span><text:span text:style-name="T46"> </text:span><text:span text:style-name="T125">is read and evaluated. Each of its subsections, e.g. [[run]], defines a job definition file or job script to be created.</text:span></text:p>
-   <text:p text:style-name="P155"># <text:span text:style-name="T204">model setup: experiment type &apos;control&apos;</text:span></text:p>
-   <text:p text:style-name="P142">[jobs]</text:p>
-   <text:p text:style-name="P142"><text:s text:c="2"/>[[pre]]</text:p>
-   <text:p text:style-name="P142"><text:s text:c="2"/>[[run]]</text:p>
-   <text:p text:style-name="P142"><text:s text:c="2"/>[[post]]</text:p>
+   <text:p text:style-name="P158"># <text:span text:style-name="T204">model setup: experiment type &apos;control&apos;</text:span></text:p>
+   <text:p text:style-name="P145">[jobs]</text:p>
+   <text:p text:style-name="P145"><text:s text:c="2"/>[[pre]]</text:p>
+   <text:p text:style-name="P145"><text:s text:c="2"/>[[run]]</text:p>
+   <text:p text:style-name="P145"><text:s text:c="2"/>[[post]]</text:p>
    <text:p text:style-name="P43"><text:span text:style-name="T125">For each of </text:span><text:span text:style-name="T127">the jobs defined in the model setup above</text:span><text:span text:style-name="T125">, there </text:span><text:span text:style-name="T127">must</text:span><text:span text:style-name="T125"> be a template file in the model setup, </text:span><text:span text:style-name="T127">e.g. for [[run]] </text:span><text:span text:style-name="T125">either as &apos;control.run.tmpl&apos; or &apos;DEFAULT.run.tmpl&apos;. </text:span><text:span text:style-name="T126">The corresponding</text:span><text:span text:style-name="T125"> file is expanded to its final form using the </text:span><text:span text:style-name="T126">full</text:span><text:span text:style-name="T125"> experiment configuration, </text:span><text:span text:style-name="T126">as described before</text:span><text:span text:style-name="T125">. Besides, the </text:span><text:span text:style-name="T126">job specific </text:span><text:span text:style-name="T125">variable</text:span><text:span text:style-name="T126">s</text:span><text:span text:style-name="T125"> </text:span><text:span text:style-name="T126">are set and passed according to their respective template</text:span><text:span text:style-name="T125">.</text:span></text:p>
    <text:p text:style-name="P43"><text:span text:style-name="T128">The resulting job scripts are </text:span><text:span text:style-name="T127">written to the directory defined by SCRIPT_DIR, </text:span><text:span text:style-name="T128">e.g. </text:span><text:span text:style-name="T127">as &apos;joe1234.run&apos;, </text:span><text:span text:style-name="T128">and marked as being executable. </text:span><text:span text:style-name="T134">Besides, as mentioned before, the contents of the special variable EXP_DESCRIPTION is written to a README file in that same directory. </text:span><text:span text:style-name="T137">Also, an update script is created that allows to re-generate all output files with identical environment and command line settings by simply running &apos;./update&apos; from the script directory.</text:span></text:p>
    <text:h text:style-name="Heading_20_3" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2566_1114405012"/><text:span text:style-name="T128">C</text:span><text:span text:style-name="T124">hanging the model job list</text:span><text:bookmark-end text:name="__RefHeading__2566_1114405012"/></text:h>
    <text:p text:style-name="P44"><text:span text:style-name="T125">U</text:span><text:span text:style-name="T124">sually, the job list is defined in the model setup. The user may chose to add </text:span><text:span text:style-name="T130">jobs </text:span><text:span text:style-name="T124">and delete jobs from this list as appropriate. While adding a job is straightforward, removing a job uses a special section variable &apos;.remove&apos; (note the leading period). It </text:span><text:span text:style-name="T130">is</text:span><text:span text:style-name="T124"> defined in the [jobs] section and contains a list of the jobs to be suppressed.</text:span></text:p>
-   <text:p text:style-name="P142"><text:soft-page-break/># joe1234.config</text:p>
-   <text:p text:style-name="P142">EXP_TYPE = control</text:p>
-   <text:p text:style-name="P142">[jobs]</text:p>
-   <text:p text:style-name="P142"><text:s text:c="2"/>.remove = post, pre</text:p>
-   <text:p text:style-name="P142"><text:s text:c="2"/>[[my_pre]]</text:p>
-   <text:p text:style-name="P142"><text:s text:c="2"/>[[my_post]]</text:p>
+   <text:p text:style-name="P145"><text:soft-page-break/># joe1234.config</text:p>
+   <text:p text:style-name="P145">EXP_TYPE = control</text:p>
+   <text:p text:style-name="P145">[jobs]</text:p>
+   <text:p text:style-name="P145"><text:s text:c="2"/>.remove = post, pre</text:p>
+   <text:p text:style-name="P145"><text:s text:c="2"/>[[my_pre]]</text:p>
+   <text:p text:style-name="P145"><text:s text:c="2"/>[[my_post]]</text:p>
    <text:p text:style-name="P49">This way, the &apos;pre&apos; and &apos;post&apos; jobs will not be created in favor of two new jobs, &apos;my_pre&apos; and &apos;my_post&apos;. In this case, the user setup must provide two templates &apos;joe1234.my_pre.tmpl&apos; and &apos;joe1234.my_post.tmpl&apos;, together with the .config file.</text:p>
    <text:p text:style-name="P45">Alternatively, you may want to introduce a new &apos;my_p<text:span text:style-name="T205">ost</text:span>&apos; job, that is basically the same as the old &apos;p<text:span text:style-name="T205">ost</text:span>&apos; job but uses a slightly different configuration. This may be done using the special section variable &apos;.extends&apos;.</text:p>
-   <text:p text:style-name="P142">[jobs]</text:p>
-   <text:p text:style-name="P156"><text:span text:style-name="T124"><text:s text:c="2"/>[[my_p</text:span><text:span text:style-name="T129">ost</text:span><text:span text:style-name="T124">]]</text:span></text:p>
-   <text:p text:style-name="P156"><text:span text:style-name="T124"><text:s text:c="4"/>.</text:span><text:span text:style-name="T128">extends</text:span><text:span text:style-name="T124"> = p</text:span><text:span text:style-name="T129">ost</text:span></text:p>
-   <text:p text:style-name="P143"><text:s text:c="4"/>command = $HOME/bin/my_special_command</text:p>
+   <text:p text:style-name="P145">[jobs]</text:p>
+   <text:p text:style-name="P159"><text:span text:style-name="T124"><text:s text:c="2"/>[[my_p</text:span><text:span text:style-name="T129">ost</text:span><text:span text:style-name="T124">]]</text:span></text:p>
+   <text:p text:style-name="P159"><text:span text:style-name="T124"><text:s text:c="4"/>.</text:span><text:span text:style-name="T128">extends</text:span><text:span text:style-name="T124"> = p</text:span><text:span text:style-name="T129">ost</text:span></text:p>
+   <text:p text:style-name="P146"><text:s text:c="4"/>command = $HOME/bin/my_special_command</text:p>
    <text:p text:style-name="P50">With this configuration, an additional &apos;joe1234.my_post&apos; is created based on the existing &apos;post&apos; template. A dedicated &apos;joe1234.my_post.tmpl&apos; file is not needed here. The &apos;command&apos; setting is <text:span text:style-name="T206">made available </text:span>to <text:span text:style-name="T206">the template via the</text:span> &apos;JOB&apos; dictionary.</text:p>
-   <text:h text:style-name="P292" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2568_1114405012"/>Pre-defined job variables<text:bookmark-end text:name="__RefHeading__2568_1114405012"/></text:h>
+   <text:h text:style-name="P302" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2568_1114405012"/>Pre-defined job variables<text:bookmark-end text:name="__RefHeading__2568_1114405012"/></text:h>
    <text:p text:style-name="P55">While <text:span text:style-name="T9">mkexp</text:span> in general does not impose any naming convention on the variable names used in the job sections and leaves the details to the respective model setup, there are a few exceptions.</text:p>
-   <text:p text:style-name="P195">tasks</text:p>
-   <text:p text:style-name="P218">The total number of parallel (MPI) tasks that will be started when running the model. If a job section does not define &apos;tasks&apos;, its value defaults to &apos;nodes&apos; times &apos;tasks_per_node&apos;. Some models require that &apos;tasks&apos; may explicitly be set to some artificial value to trigger the testing mode.</text:p>
-   <text:p text:style-name="P196">nodes</text:p>
-   <text:p text:style-name="P218">Number of computing nodes required on the computing system. Needed if &apos;tasks&apos; is not set.</text:p>
-   <text:p text:style-name="P196">tasks_per_node</text:p>
-   <text:p text:style-name="P218">Number of parallel (MPI) tasks on a single node. Needed if &apos;tasks&apos; is not set.</text:p>
-   <text:h text:style-name="P291" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2570_1114405012"/>Overriding namelist settings in derived jobs<text:bookmark-end text:name="__RefHeading__2570_1114405012"/></text:h>
+   <text:p text:style-name="P205">tasks</text:p>
+   <text:p text:style-name="P228">The total number of parallel (MPI) tasks that will be started when running the model. If a job section does not define &apos;tasks&apos;, its value defaults to &apos;nodes&apos; times &apos;tasks_per_node&apos;. Some models require that &apos;tasks&apos; may explicitly be set to some artificial value to trigger the testing mode.</text:p>
+   <text:p text:style-name="P206">nodes</text:p>
+   <text:p text:style-name="P228">Number of computing nodes required on the computing system. Needed if &apos;tasks&apos; is not set.</text:p>
+   <text:p text:style-name="P206">tasks_per_node</text:p>
+   <text:p text:style-name="P228">Number of parallel (MPI) tasks on a single node. Needed if &apos;tasks&apos; is not set.</text:p>
+   <text:h text:style-name="P301" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2570_1114405012"/>Overriding namelist settings in derived jobs<text:bookmark-end text:name="__RefHeading__2570_1114405012"/></text:h>
    <text:p text:style-name="P50">There is special provision to change namelist files settings for a specific job. Consider <text:soft-page-break/>this setting from the introductory example.</text:p>
-   <text:p text:style-name="P157">[namelists]</text:p>
-   <text:p text:style-name="P111"><text:s text:c="2"/>[[namelist.jsbach]]</text:p>
-   <text:p text:style-name="P111"><text:s text:c="4"/>[[[jsbach_ctl]]]</text:p>
-   <text:p text:style-name="P111"><text:s text:c="6"/>use_dynveg = false</text:p>
+   <text:p text:style-name="P160">[namelists]</text:p>
+   <text:p text:style-name="P114"><text:s text:c="2"/>[[namelist.jsbach]]</text:p>
+   <text:p text:style-name="P114"><text:s text:c="4"/>[[[jsbach_ctl]]]</text:p>
+   <text:p text:style-name="P114"><text:s text:c="6"/>use_dynveg = false</text:p>
    <text:p text:style-name="P46"><text:span text:style-name="T124">If – for some reason – your experiments needs &apos;use_dynveg&apos; set to &apos;true&apos; for the first year only, you may create an additional &apos;run_first&apos; job, </text:span><text:span text:style-name="T130">with a job specific namelists subsection that – apart from the addition</text:span><text:span text:style-name="T132">al</text:span><text:span text:style-name="T130"> brackets – has the same structure as</text:span><text:span text:style-name="T124"> </text:span><text:span text:style-name="T130">the global namelists section.</text:span></text:p>
-   <text:p text:style-name="P157">[jobs]</text:p>
-   <text:p text:style-name="P157"><text:s text:c="2"/>[[run_first]]</text:p>
-   <text:p text:style-name="P157"><text:s text:c="4"/>.extends = run</text:p>
-   <text:p text:style-name="P157"><text:s text:c="4"/><text:span text:style-name="T156">[[[namelists]]</text:span><text:span text:style-name="T165">]</text:span></text:p>
-   <text:p text:style-name="P111"><text:s text:c="6"/><text:span text:style-name="T205">[[</text:span>[[namelist.jsbach]]<text:span text:style-name="T205">]]</text:span></text:p>
-   <text:p text:style-name="P111"><text:s text:c="8"/><text:span text:style-name="T205">[[</text:span>[[[jsbach_ctl]]]<text:span text:style-name="T205">]]</text:span></text:p>
-   <text:p text:style-name="P111"><text:span text:style-name="T124"><text:s text:c="10"/>use_dynveg = </text:span><text:span text:style-name="T129">true</text:span></text:p>
+   <text:p text:style-name="P160">[jobs]</text:p>
+   <text:p text:style-name="P160"><text:s text:c="2"/>[[run_first]]</text:p>
+   <text:p text:style-name="P160"><text:s text:c="4"/>.extends = run</text:p>
+   <text:p text:style-name="P160"><text:s text:c="4"/><text:span text:style-name="T156">[[[namelists]]</text:span><text:span text:style-name="T165">]</text:span></text:p>
+   <text:p text:style-name="P114"><text:s text:c="6"/><text:span text:style-name="T205">[[</text:span>[[namelist.jsbach]]<text:span text:style-name="T205">]]</text:span></text:p>
+   <text:p text:style-name="P114"><text:s text:c="8"/><text:span text:style-name="T205">[[</text:span>[[[jsbach_ctl]]]<text:span text:style-name="T205">]]</text:span></text:p>
+   <text:p text:style-name="P114"><text:span text:style-name="T124"><text:s text:c="10"/>use_dynveg = </text:span><text:span text:style-name="T129">true</text:span></text:p>
    <text:p text:style-name="P46"><text:span text:style-name="T130">This</text:span><text:span text:style-name="T124"> will result in a &apos;joe1234.run_first&apos; file that is identical to &apos;joe1234.run&apos; except for the &apos;use_dynveg&apos; setting.</text:span></text:p>
-   <text:h text:style-name="P291" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2572_1114405012"/>Native script variables<text:bookmark-end text:name="__RefHeading__2572_1114405012"/></text:h>
+   <text:h text:style-name="P301" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2572_1114405012"/>Native script variables<text:bookmark-end text:name="__RefHeading__2572_1114405012"/></text:h>
    <text:p text:style-name="P48"><text:span text:style-name="T124">While the definition of .config variables may use</text:span><text:span text:style-name="T131"> variable references like</text:span><text:span text:style-name="T124"> $NAME or ${NAME} to include the </text:span><text:span text:style-name="T131">verbatim </text:span><text:span text:style-name="T124">value of other .config variables, this may not always be what you want. If you want to create a job </text:span><text:span text:style-name="T131">script</text:span><text:span text:style-name="T124"> that is supposed to be &apos;user-serviceable&apos; for certain applications, the users will not appreciate having to change the same value several times in the same script. </text:span><text:span text:style-name="T131">Instead they will want to have a single, native script variable that is used throughout the job script, and that may be re-defined on a single line.</text:span></text:p>
    <text:p text:style-name="P52">To allow this, <text:span text:style-name="T9">mkexp</text:span> locates all expressions like $${NAME} in the configuration values, and re-formats them to the syntax of the current job script:</text:p>
-   <text:p text:style-name="P142"># joe1234.config</text:p>
-   <text:p text:style-name="P142">NAME = Joe User</text:p>
+   <text:p text:style-name="P145"># joe1234.config</text:p>
+   <text:p text:style-name="P145">NAME = Joe User</text:p>
    <text:p text:style-name="Preformatted_20_Text_20_Interrupt">MESSAGE = This experiment was generated by $${NAME}</text:p>
-   <text:p text:style-name="P148">#%# joe1234.job.tmpl</text:p>
-   <text:p text:style-name="P142">#! /bin/sh</text:p>
-   <text:p text:style-name="P146">NAME=&apos;%{NAME}&apos;</text:p>
-   <text:p text:style-name="P142">echo %{MESSAGE}</text:p>
+   <text:p text:style-name="P151">#%# joe1234.job.tmpl</text:p>
+   <text:p text:style-name="P145">#! /bin/sh</text:p>
+   <text:p text:style-name="P149">NAME=&apos;%{NAME}&apos;</text:p>
+   <text:p text:style-name="P145">echo %{MESSAGE}</text:p>
    <text:p text:style-name="P52">By default, <text:span text:style-name="T207">native variables are formatted as </text:span>shell script, namely ${NAME}:</text:p>
-   <text:p text:style-name="P145"><text:soft-page-break/>#! /bin/sh</text:p>
-   <text:p text:style-name="P148">NAME=&apos;Joe User&apos;</text:p>
-   <text:p text:style-name="P144">echo This experiment was generated by ${NAME}</text:p>
+   <text:p text:style-name="P148"><text:soft-page-break/>#! /bin/sh</text:p>
+   <text:p text:style-name="P151">NAME=&apos;Joe User&apos;</text:p>
+   <text:p text:style-name="P147">echo This experiment was generated by ${NAME}</text:p>
    <text:p text:style-name="P53"><text:span text:style-name="T214">T</text:span>o support variable reference<text:span text:style-name="T213">s for other script languages, a</text:span> job specific variable &apos;.var_format&apos; may be defined. <text:span text:style-name="T213">It defines an output format string where any occurrence of &apos;%s&apos; will be replaced by the respective variable name. </text:span>For a Python based script, <text:span text:style-name="T207">this may look like:</text:span></text:p>
-   <text:p text:style-name="P147"># joe1234.config</text:p>
-   <text:p text:style-name="P147">NAME = Joe User</text:p>
-   <text:p text:style-name="P147">MESSAGE = This experiment was generated by $${NAME}</text:p>
-   <text:p text:style-name="P159">[jobs]</text:p>
+   <text:p text:style-name="P150"># joe1234.config</text:p>
+   <text:p text:style-name="P150">NAME = Joe User</text:p>
+   <text:p text:style-name="P150">MESSAGE = This experiment was generated by $${NAME}</text:p>
+   <text:p text:style-name="P162">[jobs]</text:p>
    <text:p text:style-name="Preformatted_20_Text"><text:s text:c="2"/>[[job]]</text:p>
    <text:p text:style-name="Preformatted_20_Text_20_Interrupt"><text:s text:c="4"/>.var_format = <text:span text:style-name="T210">&quot;</text:span><text:span text:style-name="T208">&apos; + str(</text:span>%s<text:span text:style-name="T212">)</text:span> <text:span text:style-name="T208">+ &apos;</text:span><text:span text:style-name="T210">&quot;</text:span></text:p>
-   <text:p text:style-name="P148">#%# joe1234.job.tmpl</text:p>
-   <text:p text:style-name="P160">#! /usr/bin/env python </text:p>
+   <text:p text:style-name="P151">#%# joe1234.job.tmpl</text:p>
+   <text:p text:style-name="P163">#! /usr/bin/env python </text:p>
    <text:p text:style-name="Preformatted_20_Text">NAME = &apos;%{NAME}&apos; </text:p>
    <text:p text:style-name="Preformatted_20_Text">print<text:span text:style-name="T249">(</text:span>&apos;%{MESSAGE}&apos;<text:span text:style-name="T249">)</text:span> </text:p>
    <text:p text:style-name="P62">This setup will expand to</text:p>
-   <text:p text:style-name="P160">#! /usr/bin/env python </text:p>
-   <text:p text:style-name="P160">NAME = &apos;<text:span text:style-name="T212">Joe User</text:span>&apos; </text:p>
-   <text:p text:style-name="P161">print<text:span text:style-name="T249">(</text:span>&apos;<text:span text:style-name="T124">This experiment was generated by </text:span><text:span text:style-name="T133">&apos; + str(</text:span><text:span text:style-name="T124">NAME) </text:span><text:span text:style-name="T133">+ &apos;</text:span>&apos;<text:span text:style-name="T249">)</text:span></text:p>
-   <text:h text:style-name="P298" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2574_1114405012"/>Initializing native script variables<text:bookmark-end text:name="__RefHeading__2574_1114405012"/></text:h>
+   <text:p text:style-name="P163">#! /usr/bin/env python </text:p>
+   <text:p text:style-name="P163">NAME = &apos;<text:span text:style-name="T212">Joe User</text:span>&apos; </text:p>
+   <text:p text:style-name="P164">print<text:span text:style-name="T249">(</text:span>&apos;<text:span text:style-name="T124">This experiment was generated by </text:span><text:span text:style-name="T133">&apos; + str(</text:span><text:span text:style-name="T124">NAME) </text:span><text:span text:style-name="T133">+ &apos;</text:span>&apos;<text:span text:style-name="T249">)</text:span></text:p>
+   <text:h text:style-name="P308" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2574_1114405012"/>Initializing native script variables<text:bookmark-end text:name="__RefHeading__2574_1114405012"/></text:h>
    <text:p text:style-name="P64">In the previous section, the native variables were initialized by an addition<text:span text:style-name="T216">al script line. While this is sufficient for a small number of variables, it may be difficult to maintain these initialization lines for a more complex setup with changing requirements.</text:span></text:p>
    <text:p text:style-name="P64"><text:span text:style-name="T217">To allow a self-maintaining variable list based on the current configuration, </text:span><text:span text:style-name="T20">mkexp</text:span><text:span text:style-name="T217"> maintains the special variable VARIABLES_. When generating output for</text:span></text:p>
-   <text:p text:style-name="P149">NAME = Joe User</text:p>
-   <text:p text:style-name="P150">EMAIL = joe@domain.tld</text:p>
-   <text:p text:style-name="P162"><text:span text:style-name="T124">MESSAGE = This experiment was generated by $${NAME} </text:span><text:span text:style-name="T135">&lt;$${EMAIL}&gt;</text:span></text:p>
+   <text:p text:style-name="P152">NAME = Joe User</text:p>
+   <text:p text:style-name="P153">EMAIL = joe@domain.tld</text:p>
+   <text:p text:style-name="P165"><text:span text:style-name="T124">MESSAGE = This experiment was generated by $${NAME} </text:span><text:span text:style-name="T135">&lt;$${EMAIL}&gt;</text:span></text:p>
    <text:p text:style-name="P65"><text:span text:style-name="T45">mkexp</text:span><text:span text:style-name="T124"> will parse all values, recognize &apos;NAME&apos; and &apos;EMAIL&apos; as native variables, and </text:span><text:span text:style-name="T136">will </text:span><text:span text:style-name="T124">put their names in the VARIABLES_ list. Now we may use the &apos;for&apos; template directive to generate an additional line for each member of VARIABLES_. To query the value for a given variable name, </text:span><text:span text:style-name="T45">mkexp</text:span><text:span text:style-name="T124"> provides the &apos;context&apos; function, such that the template</text:span></text:p>
-   <text:p text:style-name="P149"><text:soft-page-break/>#! /bin/sh</text:p>
-   <text:p text:style-name="P150">#%# for <text:span text:style-name="T156">variable</text:span> in <text:span text:style-name="T156">VARIABLES_</text:span>:</text:p>
-   <text:p text:style-name="P150">%{<text:span text:style-name="T156">variable</text:span>}=&apos;%{<text:span text:style-name="T156">context(variable)</text:span>}&apos;</text:p>
-   <text:p text:style-name="P150">#%# endfor</text:p>
-   <text:p text:style-name="P150">echo <text:span text:style-name="T209">&quot;</text:span>%{MESSAGE}<text:span text:style-name="T209">&quot;</text:span></text:p>
+   <text:p text:style-name="P152"><text:soft-page-break/>#! /bin/sh</text:p>
+   <text:p text:style-name="P153">#%# for <text:span text:style-name="T156">variable</text:span> in <text:span text:style-name="T156">VARIABLES_</text:span>:</text:p>
+   <text:p text:style-name="P153">%{<text:span text:style-name="T156">variable</text:span>}=&apos;%{<text:span text:style-name="T156">context(variable)</text:span>}&apos;</text:p>
+   <text:p text:style-name="P153">#%# endfor</text:p>
+   <text:p text:style-name="P153">echo <text:span text:style-name="T209">&quot;</text:span>%{MESSAGE}<text:span text:style-name="T209">&quot;</text:span></text:p>
    <text:p text:style-name="P54">eventually yields</text:p>
-   <text:p text:style-name="P149">#! /bin/sh</text:p>
-   <text:p text:style-name="P162"><text:span text:style-name="T143">EMAIL</text:span><text:span text:style-name="T147">=&apos;</text:span><text:span text:style-name="T143">joe@domain.tld</text:span><text:span text:style-name="T147">&apos;</text:span></text:p>
-   <text:p text:style-name="P162"><text:span text:style-name="T142">NAME</text:span><text:span text:style-name="T146">=</text:span><text:span text:style-name="T147">&apos;</text:span><text:span text:style-name="T142">Joe User</text:span><text:span text:style-name="T147">&apos;</text:span></text:p>
-   <text:p text:style-name="P162"><text:span text:style-name="T135">echo </text:span><text:span text:style-name="T211">&quot;This experiment was generated by ${NAME} &lt;${EMAIL}&gt;&quot;</text:span></text:p>
+   <text:p text:style-name="P152">#! /bin/sh</text:p>
+   <text:p text:style-name="P165"><text:span text:style-name="T143">EMAIL</text:span><text:span text:style-name="T147">=&apos;</text:span><text:span text:style-name="T143">joe@domain.tld</text:span><text:span text:style-name="T147">&apos;</text:span></text:p>
+   <text:p text:style-name="P165"><text:span text:style-name="T142">NAME</text:span><text:span text:style-name="T146">=</text:span><text:span text:style-name="T147">&apos;</text:span><text:span text:style-name="T142">Joe User</text:span><text:span text:style-name="T147">&apos;</text:span></text:p>
+   <text:p text:style-name="P165"><text:span text:style-name="T135">echo </text:span><text:span text:style-name="T211">&quot;This experiment was generated by ${NAME} &lt;${EMAIL}&gt;&quot;</text:span></text:p>
    <text:p text:style-name="P67">Note that the order of variable names is not necessarily the order in which they were defined in the .config file.</text:p>
    <text:h text:style-name="Heading_20_3" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2576_1114405012"/>Re-generation of <text:span text:style-name="T215">s</text:span>cripts and <text:span text:style-name="T215">b</text:span>ackup<text:bookmark-end text:name="__RefHeading__2576_1114405012"/></text:h>
    <text:p text:style-name="P63">Even the simplest user setup may contain an error. In this case, it is considered good practice to fix this error in the user setup, and to rerun <text:span text:style-name="T9">mkexp.</text:span><text:span text:style-name="T53"> If you want to be really good, you might even start a new experiment from the previous one&apos;s restart data.</text:span></text:p>
    <text:p text:style-name="P91"><text:span text:style-name="T63">A</text:span><text:span text:style-name="T53">s a convenient short-cut, </text:span><text:span text:style-name="T9">mkexp</text:span><text:span text:style-name="T53"> provides the script &apos;update&apos; in the script directory. It may be called instead of going back to the &apos;run&apos; and re-running </text:span><text:span text:style-name="T9">mkexp </text:span><text:span text:style-name="T53">directly. The update script records all command line settings and environment settings that were used for running </text:span><text:span text:style-name="T9">mkexp</text:span><text:span text:style-name="T53"> so that &apos;./update&apos; reg</text:span><text:span text:style-name="T98">e</text:span><text:span text:style-name="T53">nerates the scripts exactly as they were created, without having to re-construct the exact settings. Like mkexp, update allows to set or change variables on the command line, e.g.</text:span></text:p>
-   <text:p text:style-name="P139">./update FINAL_DATE=2015-12-31</text:p>
+   <text:p text:style-name="P142">./update FINAL_DATE=2015-12-31</text:p>
    <text:p text:style-name="P91">may be used to regenerate scripts with a new final date. Note that these settings are also recorded, i.e. running just &apos;./update&apos; the next time will again set FINAL_DATE.</text:p>
    <text:p text:style-name="P63"><text:span text:style-name="T53">Of course, there is also the possibility to </text:span><text:span text:style-name="T63">change</text:span><text:span text:style-name="T53"> the </text:span><text:span text:style-name="T19">generated</text:span><text:span text:style-name="T62"> </text:span><text:span text:style-name="T53">job scripts directly, and then go on. This is fine as long as the required setting is using a native variable or is otherwise easily editable. On the other hand, </text:span><text:span text:style-name="T64">facing</text:span><text:span text:style-name="T53"> the next </text:span><text:span text:style-name="T64">change,</text:span><text:span text:style-name="T53"> this might not be the case, so eventually you </text:span><text:span text:style-name="T62">may</text:span><text:span text:style-name="T53"> need to re-generate the whole thing. What now about those manual changes to the job scripts?</text:span></text:p>
    <text:p text:style-name="P63"><text:span text:style-name="T53">Whenever </text:span><text:span text:style-name="T9">mkexp</text:span><text:span text:style-name="T53"> sees existing job scripts while trying to generate the new description, it will automatically create backup files. They are placed in a subdirectory of SCRIPT_DIR, named &apos;backup&apos;. </text:span><text:span text:style-name="T62">Also, the scripts for each regeneration are bundled in their own subdirectory, named after the current date-time stamp. </text:span><text:span text:style-name="T63">This way you may </text:span><text:soft-page-break/><text:span text:style-name="T63">easily compare old and new scripts to evaluate and possibly transfer any manual changes </text:span><text:span text:style-name="T98">after a necessary regeneration</text:span><text:span text:style-name="T63">.</text:span></text:p>
@@ -3047,63 +3053,63 @@
    <text:p text:style-name="P13">For this, a standard environment, like a standard experiment, consists of a .config file and a corresponding template. The <text:span text:style-name="T9">environmentname</text:span>.config file contains settings like directory paths or a description of machine capacities for job control</text:p>
    <text:p text:style-name="P13">The actual job control headers needed to run a certain job step are saved as <text:span text:style-name="T9">environmentname</text:span>.tmpl. This template will be filled using configuration information from both experiment, options, and environment. <text:span text:style-name="T172">The resulting job header</text:span> is usually included at the beginning of the experiment&apos;s job script templates.</text:p>
    <text:p text:style-name="P9">An experiment configuration <text:span text:style-name="T218">may</text:span> <text:span text:style-name="T218">set</text:span> the special variable E<text:span text:style-name="T218">NVIRONMENT</text:span> to the name of <text:span text:style-name="T218">the host </text:span>e<text:span text:style-name="T218">nvironment</text:span> to use. <text:span text:style-name="T218">If it is not set, or empty, the &apos;DEFAULT&apos; environment settings will be used.</text:span></text:p>
-   <text:h text:style-name="P311" text:outline-level="2"><text:bookmark-start text:name="__RefHeading__1883_1672291846"/>Defining namelists and other configuration files<text:bookmark-end text:name="__RefHeading__1883_1672291846"/></text:h>
+   <text:h text:style-name="P322" text:outline-level="2"><text:bookmark-start text:name="__RefHeading__1883_1672291846"/>Defining namelists and other configuration files<text:bookmark-end text:name="__RefHeading__1883_1672291846"/></text:h>
    <text:p text:style-name="P72"><text:span text:style-name="T75">Most models need at least one Fortran namelist file or another form of configuration file to run. </text:span><text:span text:style-name="T76">The special section [namelists] </text:span><text:span text:style-name="T75">is designed to </text:span><text:span text:style-name="T76">contain all information that goes into </text:span><text:span text:style-name="T75">these</text:span><text:span text:style-name="T76"> files. Each </text:span><text:span text:style-name="T73">immediate </text:span><text:span text:style-name="T76">subsection defines settings for a single file that will </text:span><text:span text:style-name="T75">by default be </text:span><text:span text:style-name="T76">formatted as a Fortran namelist. </text:span><text:span text:style-name="T75">For </text:span><text:span text:style-name="T76">example,</text:span></text:p>
-   <text:p text:style-name="P163"><text:soft-page-break/>[namelists]</text:p>
-   <text:p text:style-name="P175"/>
-   <text:p text:style-name="P163"><text:s text:c="2"/>[[<text:span text:style-name="T230">namelist.echam</text:span>]] </text:p>
-   <text:p text:style-name="P163"><text:s text:c="4"/>[[[runctl]]] </text:p>
-   <text:p text:style-name="P163"><text:s text:c="6"/>lamip = true</text:p>
-   <text:p text:style-name="P163"><text:s text:c="6"/><text:span text:style-name="T239">nproma = 48</text:span></text:p>
-   <text:p text:style-name="P167"><text:s text:c="6"/>earth_angular_velocity = 7.3e-5</text:p>
-   <text:p text:style-name="P167"><text:s text:c="6"/>out_expname = joe1234</text:p>
-   <text:p text:style-name="P167"><text:s text:c="6"/><text:span text:style-name="T231">dt_stop = 2009, 1, 1, 0, 0, 0</text:span></text:p>
+   <text:p text:style-name="P166"><text:soft-page-break/>[namelists]</text:p>
+   <text:p text:style-name="P178"/>
+   <text:p text:style-name="P166"><text:s text:c="2"/>[[<text:span text:style-name="T230">namelist.echam</text:span>]] </text:p>
+   <text:p text:style-name="P166"><text:s text:c="4"/>[[[runctl]]] </text:p>
+   <text:p text:style-name="P166"><text:s text:c="6"/>lamip = true</text:p>
+   <text:p text:style-name="P166"><text:s text:c="6"/><text:span text:style-name="T239">nproma = 48</text:span></text:p>
+   <text:p text:style-name="P170"><text:s text:c="6"/>earth_angular_velocity = 7.3e-5</text:p>
+   <text:p text:style-name="P170"><text:s text:c="6"/>out_expname = joe1234</text:p>
+   <text:p text:style-name="P170"><text:s text:c="6"/><text:span text:style-name="T231">dt_stop = 2009, 1, 1, 0, 0, 0</text:span></text:p>
    <text:p text:style-name="P69"><text:span text:style-name="T53">defines </text:span><text:span text:style-name="T74">a single </text:span><text:span text:style-name="T53">namelist file, </text:span><text:span text:style-name="T77">&apos;namelist.echam&apos;</text:span><text:span text:style-name="T53">, </text:span><text:span text:style-name="T75">containing a single namelist group with four variables of different types. Note </text:span><text:span text:style-name="T94">that you do not </text:span><text:span text:style-name="T75">need to use quotes for strings nor periods for logical values.</text:span></text:p>
-   <text:h text:style-name="P294" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2578_1114405012"/>Formatting the namelist information<text:bookmark-end text:name="__RefHeading__2578_1114405012"/></text:h>
+   <text:h text:style-name="P304" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2578_1114405012"/>Formatting the namelist information<text:bookmark-end text:name="__RefHeading__2578_1114405012"/></text:h>
    <text:p text:style-name="P101"><text:span text:style-name="T73">The </text:span><text:span text:style-name="T74">names of the </text:span><text:span text:style-name="T73">subsections of each namelist file entry, i.e. the second level subsections under the immediate subsections of [namelists], are taken as namelist group </text:span><text:span text:style-name="T74">name</text:span><text:span text:style-name="T73">s, and their variables are formatted as fields of this namelist </text:span><text:span text:style-name="T74">group</text:span><text:span text:style-name="T73">. </text:span><text:span text:style-name="T74">In the example above, there is a single namelist group &apos;runctl&apos;, which will be converted to the Fortran namelist convention. </text:span><text:span text:style-name="T230">The values of the group&apos;s fields are checked to determine whether they are numerical, logical, or string values. Logical and string values will then be formatted using periods or quotes, respectively.</text:span></text:p>
    <text:p text:style-name="P75"><text:span text:style-name="T250">In the example above, the first four fields are single values of logical, integer, floating point, and string type.</text:span><text:span text:style-name="T77"> The fifth is a list of integer values, that will be passed as such to the namelist file:</text:span></text:p>
-   <text:p text:style-name="P130">&amp;runctl</text:p>
-   <text:p text:style-name="P169"><text:s text:c="4"/>lamip = <text:span text:style-name="T156">.true.</text:span></text:p>
-   <text:p text:style-name="P169"><text:s text:c="4"/><text:span text:style-name="T230">nproma = </text:span><text:span text:style-name="T161">48</text:span></text:p>
-   <text:p text:style-name="P168"><text:s text:c="4"/>earth_angular_velocity = <text:span text:style-name="T156">7.3e-5</text:span></text:p>
-   <text:p text:style-name="P168"><text:s text:c="4"/>out_expname = <text:span text:style-name="T162">&apos;</text:span><text:span text:style-name="T156">joe1234</text:span><text:span text:style-name="T162">&apos;</text:span></text:p>
-   <text:p text:style-name="P168"><text:span text:style-name="T77"><text:s text:c="4"/>dt_stop = </text:span><text:span text:style-name="T149">2009, 1, 1, 0, 0, 0</text:span></text:p>
-   <text:p text:style-name="P151">/</text:p>
+   <text:p text:style-name="P133">&amp;runctl</text:p>
+   <text:p text:style-name="P172"><text:s text:c="4"/>lamip = <text:span text:style-name="T156">.true.</text:span></text:p>
+   <text:p text:style-name="P172"><text:s text:c="4"/><text:span text:style-name="T230">nproma = </text:span><text:span text:style-name="T161">48</text:span></text:p>
+   <text:p text:style-name="P171"><text:s text:c="4"/>earth_angular_velocity = <text:span text:style-name="T156">7.3e-5</text:span></text:p>
+   <text:p text:style-name="P171"><text:s text:c="4"/>out_expname = <text:span text:style-name="T162">&apos;</text:span><text:span text:style-name="T156">joe1234</text:span><text:span text:style-name="T162">&apos;</text:span></text:p>
+   <text:p text:style-name="P171"><text:span text:style-name="T77"><text:s text:c="4"/>dt_stop = </text:span><text:span text:style-name="T149">2009, 1, 1, 0, 0, 0</text:span></text:p>
+   <text:p text:style-name="P154">/</text:p>
    <text:p text:style-name="P102">Please note that both group and field names are converted to lower case! Two fields named &apos;key&apos; and &apos;Key&apos; will result in two &apos;key = …&apos; lines, and will cause trouble. We recommend using lower case for all group and field names.</text:p>
-   <text:h text:style-name="P303" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2580_1114405012"/><text:span text:style-name="T75">S</text:span><text:span text:style-name="T53">uppressing namelist groups or variables</text:span><text:bookmark-end text:name="__RefHeading__2580_1114405012"/></text:h>
+   <text:h text:style-name="P313" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2580_1114405012"/><text:span text:style-name="T75">S</text:span><text:span text:style-name="T53">uppressing namelist groups or variables</text:span><text:bookmark-end text:name="__RefHeading__2580_1114405012"/></text:h>
    <text:p text:style-name="P106"><text:span text:style-name="T53">If you want to </text:span><text:span text:style-name="T117">disable</text:span><text:span text:style-name="T53"> a namelist group defined on a higher setup level, you may set the special </text:span><text:span text:style-name="T117">group </text:span><text:span text:style-name="T53">variable &apos;.hide&apos; to </text:span><text:span text:style-name="T117">&apos;</text:span><text:span text:style-name="T53">true</text:span><text:span text:style-name="T117">&apos;</text:span><text:span text:style-name="T53">. </text:span><text:span text:style-name="T117">As you may suspect, setting &apos;.hide&apos; to &apos;false&apos; for namelist groups that were hidden on a higher setup level will re-enable the</text:span><text:span text:style-name="T118">m</text:span><text:span text:style-name="T117">.</text:span></text:p>
    <text:p text:style-name="P60"><text:soft-page-break/>The namelist group section also honors the special variable &apos;.remove&apos; which may be set to a list of names. Any variables listed in the &apos;.remove&apos; variable will be deleted from the namelist group definition.</text:p>
    <text:p text:style-name="P84"><text:span text:style-name="T53">While &apos;.remove&apos; is useful to </text:span><text:span text:style-name="T84">suppress</text:span><text:span text:style-name="T53"> default settings that must not be present for the experiment setup, currently there is no way to resurrect a removed setting in a later setup level. </text:span><text:span text:style-name="T85">Therefore, its use in model setups is strongly discouraged.</text:span></text:p>
-   <text:h text:style-name="P340" text:outline-level="3">Comments in namelists</text:h>
-   <text:p text:style-name="P316">In general, <text:span text:style-name="T302">&apos;#&apos; </text:span>comments in namelist or group sections will by converted to Fortran 90 <text:span text:style-name="T302">&apos;!&apos; </text:span>comments. In-line comments for <text:span text:style-name="T302">individual</text:span> settings are also recognized.</text:p>
-   <text:p text:style-name="P344"><text:span text:style-name="T167"># Run time settings</text:span></text:p>
-   <text:p text:style-name="P344">[[[runctl]]]</text:p>
-   <text:p text:style-name="P344"><text:s text:c="4"/>lamip = true <text:span text:style-name="T167"># Use AMIP conventions</text:span></text:p>
-   <text:p text:style-name="P344"><text:span text:style-name="T167"><text:s text:c="4"/># Block size for optimization</text:span></text:p>
+   <text:h text:style-name="P314" text:outline-level="3">Comments in namelists</text:h>
+   <text:p text:style-name="P107">In general, <text:span text:style-name="T302">&apos;#&apos; </text:span>comments in namelist or group sections will by converted to Fortran 90 <text:span text:style-name="T302">&apos;!&apos; </text:span>comments. In-line comments for <text:span text:style-name="T302">individual</text:span> settings are also recognized.</text:p>
+   <text:p text:style-name="P349"># Run time settings</text:p>
+   <text:p text:style-name="P188">[[[runctl]]]</text:p>
+   <text:p text:style-name="P188"><text:s text:c="4"/>lamip = true <text:span text:style-name="T167"># Use AMIP conventions</text:span></text:p>
+   <text:p text:style-name="P349"><text:s text:c="4"/># Block size for optimization</text:p>
    <text:p text:style-name="Preformatted_20_Text_20_Interrupt"><text:s text:c="4"/><text:span text:style-name="T239">nproma = 48</text:span></text:p>
-   <text:p text:style-name="P345"><text:span text:style-name="T167">! Run time settings</text:span></text:p>
-   <text:p text:style-name="P345">&amp;runctl</text:p>
-   <text:p text:style-name="P345"><text:s text:c="4"/>lamip = .true. <text:span text:style-name="T167">! Use AMIP conventions</text:span></text:p>
-   <text:p text:style-name="P344"><text:span text:style-name="T167"><text:s text:c="4"/>! Block size for optimization</text:span></text:p>
-   <text:p text:style-name="P345"><text:s text:c="4"/><text:span text:style-name="T230">nproma = 48</text:span></text:p>
-   <text:p text:style-name="P317">In addition, <text:span text:style-name="T9">mkexp</text:span><text:span text:style-name="T53"> </text:span><text:span text:style-name="T122">recognises namelist settings </text:span><text:span text:style-name="T53">that were commented out. </text:span><text:span text:style-name="T122">For these, the formatting of values as described before is also carried out within the comment.</text:span></text:p>
+   <text:p text:style-name="P349">! Run time settings</text:p>
+   <text:p text:style-name="P189">&amp;runctl</text:p>
+   <text:p text:style-name="P189"><text:s text:c="4"/>lamip = .true. <text:span text:style-name="T167">! Use AMIP conventions</text:span></text:p>
+   <text:p text:style-name="P349"><text:s text:c="4"/>! Block size for optimization</text:p>
+   <text:p text:style-name="P189"><text:s text:c="4"/><text:span text:style-name="T230">nproma = 48</text:span></text:p>
+   <text:p text:style-name="P108">In addition, <text:span text:style-name="T9">mkexp</text:span><text:span text:style-name="T53"> </text:span><text:span text:style-name="T122">recognises namelist settings </text:span><text:span text:style-name="T53">that were commented out. </text:span><text:span text:style-name="T122">For these, the formatting of values as described before is also carried out within the comment.</text:span></text:p>
    <text:p text:style-name="Preformatted_20_Text_20_Interrupt"><text:s text:c="4"/><text:span text:style-name="T167"># </text:span>lamip = true <text:span text:style-name="T194"># Use AMIP conventions</text:span></text:p>
-   <text:p text:style-name="P345"><text:s text:c="4"/><text:span text:style-name="T156">!</text:span> lamip = <text:span text:style-name="T156">.true.</text:span> <text:span text:style-name="T167">! </text:span><text:span text:style-name="T303">Use AMIP conventions</text:span></text:p>
-   <text:p text:style-name="P318">There is one hitch: if the last setting in a group is commented, the <text:span text:style-name="T44">configobj </text:span>library <text:span text:style-name="T304">will take this line to be a group comment for the following group. To work around this, </text:span><text:span text:style-name="T44">mkexp</text:span><text:span text:style-name="T123"> recognises a special namelist variable &apos;.end&apos; to keep the commented setting with the first group.</text:span></text:p>
-   <text:p text:style-name="P350"><text:soft-page-break/>[[[parctl]]]</text:p>
-   <text:p text:style-name="P349"><text:s text:c="4"/><text:span text:style-name="T304"># nprocb = 48 </text:span><text:span text:style-name="T195"># </text:span><text:span text:style-name="T196">E</text:span><text:span text:style-name="T195">nd</text:span><text:span text:style-name="T196">s</text:span><text:span text:style-name="T195"> up with &apos;runctl&apos; </text:span><text:span text:style-name="T196">instead</text:span></text:p>
+   <text:p text:style-name="P189"><text:s text:c="4"/><text:span text:style-name="T156">!</text:span> lamip = <text:span text:style-name="T156">.true.</text:span> <text:span text:style-name="T167">! </text:span><text:span text:style-name="T303">Use AMIP conventions</text:span></text:p>
+   <text:p text:style-name="P109">There is one hitch: if the last setting in a group is commented, the <text:span text:style-name="T44">configobj </text:span>library <text:span text:style-name="T304">will take this line to be a group comment for the following group. To work around this, </text:span><text:span text:style-name="T44">mkexp</text:span><text:span text:style-name="T123"> recognises a special namelist variable &apos;.end&apos; to keep the commented setting with the first group.</text:span></text:p>
+   <text:p text:style-name="P194">[[[parctl]]]</text:p>
+   <text:p text:style-name="P193"><text:s text:c="4"/><text:span text:style-name="T304"># nprocb = 48 </text:span><text:span text:style-name="T195"># </text:span><text:span text:style-name="T196">E</text:span><text:span text:style-name="T195">nd</text:span><text:span text:style-name="T196">s</text:span><text:span text:style-name="T195"> up with &apos;runctl&apos; </text:span><text:span text:style-name="T196">instead</text:span></text:p>
    <text:p text:style-name="Preformatted_20_Text">[[[runctl]]]</text:p>
-   <text:p text:style-name="P346"><text:s text:c="4"/><text:span text:style-name="T305"># </text:span>lamip = true <text:span text:style-name="T305"># Stays with &apos;runctl&apos;</text:span></text:p>
-   <text:p text:style-name="P346"><text:s text:c="4"/><text:span text:style-name="T156">.</text:span><text:span text:style-name="T169">end = </text:span></text:p>
+   <text:p text:style-name="P190"><text:s text:c="4"/><text:span text:style-name="T305"># </text:span>lamip = true <text:span text:style-name="T305"># Stays with &apos;runctl&apos;</text:span></text:p>
+   <text:p text:style-name="P190"><text:s text:c="4"/><text:span text:style-name="T156">.</text:span><text:span text:style-name="T169">end = </text:span></text:p>
    <text:p text:style-name="Preformatted_20_Text_20_Interrupt">[[[dynctl]]]</text:p>
-   <text:p text:style-name="P349"><text:span text:style-name="T189">&amp;</text:span><text:span text:style-name="T196">parctl</text:span></text:p>
-   <text:p text:style-name="P349"><text:span text:style-name="T196">/</text:span></text:p>
-   <text:p text:style-name="P349"><text:span text:style-name="T196">! </text:span><text:span text:style-name="T195">nprocb = 48 ! </text:span><text:span text:style-name="T196">E</text:span><text:span text:style-name="T195">nd</text:span><text:span text:style-name="T196">s</text:span><text:span text:style-name="T195"> up with &apos;runctl&apos; </text:span><text:span text:style-name="T196">instead</text:span></text:p>
-   <text:p text:style-name="P347">&amp;runctl</text:p>
-   <text:p text:style-name="P348"><text:span text:style-name="T305"><text:s text:c="4"/>! lamip = .true. ! Stays with &apos;runctl&apos;</text:span></text:p>
-   <text:p text:style-name="P348">/</text:p>
-   <text:p text:style-name="P347">&amp;dynctl</text:p>
-   <text:h text:style-name="P299" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2714_1114405012"/><text:span text:style-name="T53">Using the namelist text</text:span><text:bookmark-end text:name="__RefHeading__2714_1114405012"/></text:h>
+   <text:p text:style-name="P193"><text:soft-page-break/><text:span text:style-name="T189">&amp;</text:span><text:span text:style-name="T196">parctl</text:span></text:p>
+   <text:p text:style-name="P350">/</text:p>
+   <text:p text:style-name="P193"><text:span text:style-name="T196">! </text:span><text:span text:style-name="T195">nprocb = 48 ! </text:span><text:span text:style-name="T196">E</text:span><text:span text:style-name="T195">nd</text:span><text:span text:style-name="T196">s</text:span><text:span text:style-name="T195"> up with &apos;runctl&apos; </text:span><text:span text:style-name="T196">instead</text:span></text:p>
+   <text:p text:style-name="P191">&amp;runctl</text:p>
+   <text:p text:style-name="P191"><text:s text:c="4"/>! lamip = .true. ! Stays with &apos;runctl&apos;</text:p>
+   <text:p text:style-name="P192">/</text:p>
+   <text:p text:style-name="P191">&amp;dynctl</text:p>
+   <text:h text:style-name="P305" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2714_1114405012"/>Using the namelist text<text:bookmark-end text:name="__RefHeading__2714_1114405012"/></text:h>
    <text:p text:style-name="P70"><text:span text:style-name="T75">T</text:span><text:span text:style-name="T77">he </text:span><text:span text:style-name="T66">formatted namelist text </text:span><text:span text:style-name="T53">is </text:span><text:span text:style-name="T77">stor</text:span><text:span text:style-name="T53">ed </text:span><text:span text:style-name="T77">in</text:span><text:span text:style-name="T53"> a global variable </text:span><text:span text:style-name="T77">that may be used by a template placeholder</text:span><text:span text:style-name="T53">. </text:span><text:span text:style-name="T75">This way, </text:span><text:span text:style-name="T53">all job information </text:span><text:span text:style-name="T77">available </text:span><text:span text:style-name="T75">is written to</text:span><text:span text:style-name="T53"> a single script or description file, </text:span><text:span text:style-name="T75">and </text:span><text:span text:style-name="T53">native script variables </text:span><text:span text:style-name="T75">may be used</text:span><text:span text:style-name="T53"> in the namelist definitions.</text:span></text:p>
    <text:p text:style-name="P72"><text:span text:style-name="T66">The name of </text:span><text:span text:style-name="T77">this </text:span><text:span text:style-name="T66">variable</text:span><text:span text:style-name="T67"> </text:span><text:span text:style-name="T77">is</text:span><text:span text:style-name="T66"> generated from </text:span><text:span text:style-name="T77">its</text:span><text:span text:style-name="T66"> </text:span><text:span text:style-name="T67">respective</text:span><text:span text:style-name="T66"> file name, </text:span><text:span text:style-name="T77">like</text:span><text:span text:style-name="T66"> &apos;namelist.echam&apos;, by </text:span><text:span text:style-name="T76">converting all letters to upper case </text:span><text:span text:style-name="T66">(</text:span><text:span text:style-name="T76">namelist.echam →</text:span><text:span text:style-name="T66"> </text:span><text:span text:style-name="T76">NAMELIST.ECHAM</text:span><text:span text:style-name="T66">) </text:span><text:span text:style-name="T67">and </text:span><text:span text:style-name="T66">replacing non-word characters by an underscore (NAMELIST.ECHAM → NAMELIST_ECHAM).</text:span></text:p>
    <text:p text:style-name="Preformatted_20_Text"># joe1234.config</text:p>
@@ -3111,76 +3117,76 @@
    <text:p text:style-name="Preformatted_20_Text"><text:s text:c="2"/><text:span text:style-name="T156">[[namelist.echam]]</text:span></text:p>
    <text:p text:style-name="Preformatted_20_Text"><text:s text:c="4"/>[[[runctl]]]</text:p>
    <text:p text:style-name="Preformatted_20_Text_20_Interrupt"><text:s text:c="6"/>out_expname = $${EXP_ID}</text:p>
-   <text:p text:style-name="P164">#! /bin/sh</text:p>
+   <text:p text:style-name="P167">#! /bin/sh</text:p>
    <text:p text:style-name="Preformatted_20_Text">EXP_ID=%{EXP_ID}</text:p>
-   <text:p text:style-name="P116">cat &gt; namelist.echam &lt;&lt; EOF</text:p>
-   <text:p text:style-name="P125">%{NAMELIST_ECHAM}</text:p>
-   <text:p text:style-name="P116">EOF</text:p>
+   <text:p text:style-name="P119">cat &gt; namelist.echam &lt;&lt; EOF</text:p>
+   <text:p text:style-name="P128">%{NAMELIST_ECHAM}</text:p>
+   <text:p text:style-name="P119">EOF</text:p>
    <text:p text:style-name="P71">which expand to</text:p>
-   <text:p text:style-name="P164"><text:soft-page-break/>#! /bin/sh</text:p>
+   <text:p text:style-name="P167">#! /bin/sh</text:p>
    <text:p text:style-name="Preformatted_20_Text">EXP_ID=joe1234</text:p>
-   <text:p text:style-name="P116">cat &gt; namelist.echam &lt;&lt; EOF</text:p>
-   <text:p text:style-name="P129">&amp;runctl</text:p>
-   <text:p text:style-name="P121"><text:s text:c="4"/>out_expname = &apos;${EXP_ID}&apos;</text:p>
-   <text:p text:style-name="P129">/</text:p>
-   <text:p text:style-name="P116">EOF</text:p>
+   <text:p text:style-name="P119">cat &gt; namelist.echam &lt;&lt; EOF</text:p>
+   <text:p text:style-name="P132">&amp;runctl</text:p>
+   <text:p text:style-name="P124"><text:s text:c="4"/>out_expname = &apos;${EXP_ID}&apos;</text:p>
+   <text:p text:style-name="P132">/</text:p>
+   <text:p text:style-name="P119">EOF</text:p>
    <text:p text:style-name="P73"><text:span text:style-name="T77">Note how this setup uses the native script variable &apos;EXP_ID&apos; to set the </text:span><text:span text:style-name="T73">namelist contents.</text:span></text:p>
    <text:p text:style-name="P103"><text:span text:style-name="T53">As an option, the namelist text may be formatted using the global function &apos;format_namelist&apos;, </text:span><text:span text:style-name="T116">taking the namelist section as argument.</text:span></text:p>
-   <text:p text:style-name="P165">#! /bin/sh</text:p>
-   <text:p text:style-name="P183">EXP_ID=%{EXP_ID}</text:p>
-   <text:p text:style-name="P118">cat &gt; namelist.echam &lt;&lt; EOF</text:p>
-   <text:p text:style-name="P127">%{<text:span text:style-name="T295">format_namelist(namelists[&apos;namelist.echam&apos;])</text:span>}</text:p>
-   <text:p text:style-name="P140">EOF</text:p>
+   <text:p text:style-name="P168"><text:soft-page-break/>#! /bin/sh</text:p>
+   <text:p text:style-name="P186">EXP_ID=%{EXP_ID}</text:p>
+   <text:p text:style-name="P121">cat &gt; namelist.echam &lt;&lt; EOF</text:p>
+   <text:p text:style-name="P130">%{<text:span text:style-name="T295">format_namelist(namelists[&apos;namelist.echam&apos;])</text:span>}</text:p>
+   <text:p text:style-name="P143">EOF</text:p>
    <text:p text:style-name="P104"><text:span text:style-name="T116">T</text:span><text:span text:style-name="T53">he result will be the same as </text:span><text:span text:style-name="T116">in the original example</text:span><text:span text:style-name="T53">.</text:span></text:p>
    <text:p text:style-name="P104"><text:span text:style-name="T116">Additionally, </text:span><text:span text:style-name="T115">&apos;format_namelist&apos; can take the name of a group within the namelist as a second argument, allowing to format groups individually.</text:span></text:p>
-   <text:p text:style-name="P166">#! /bin/sh</text:p>
-   <text:p text:style-name="P184">EXP_ID=%{EXP_ID}</text:p>
-   <text:p text:style-name="P119">cat &gt; namelist.echam &lt;&lt; EOF</text:p>
-   <text:p text:style-name="P128">%<text:span text:style-name="T189">{</text:span><text:span text:style-name="T193">format_namelist(namelists[&apos;namelist.echam&apos;]</text:span><text:span text:style-name="T295">, &apos;runctl&apos;</text:span><text:span text:style-name="T193">)</text:span><text:span text:style-name="T189">}</text:span></text:p>
-   <text:p text:style-name="P141">EOF</text:p>
+   <text:p text:style-name="P169">#! /bin/sh</text:p>
+   <text:p text:style-name="P187">EXP_ID=%{EXP_ID}</text:p>
+   <text:p text:style-name="P122">cat &gt; namelist.echam &lt;&lt; EOF</text:p>
+   <text:p text:style-name="P131">%<text:span text:style-name="T189">{</text:span><text:span text:style-name="T193">format_namelist(namelists[&apos;namelist.echam&apos;]</text:span><text:span text:style-name="T295">, &apos;runctl&apos;</text:span><text:span text:style-name="T193">)</text:span><text:span text:style-name="T189">}</text:span></text:p>
+   <text:p text:style-name="P144">EOF</text:p>
    <text:p text:style-name="P58">In this special case the result will still be the same, as &apos;runctl&apos; is the only group within &apos;namelist.echam&apos;.</text:p>
    <text:p text:style-name="P74"><text:span text:style-name="T78">As </text:span><text:span text:style-name="T114">shown </text:span><text:span text:style-name="T78">in the example</text:span><text:span text:style-name="T114">s</text:span><text:span text:style-name="T78"> above, the script template is responsible for writing the namelist text to an actual file. </text:span><text:span text:style-name="T77">While in general the namelist file takes the same name as the .config subsection defining it, </text:span><text:span text:style-name="T25">mkexp</text:span><text:span text:style-name="T77"> </text:span><text:span text:style-name="T114">will not</text:span><text:span text:style-name="T77"> enforce this. The template needs to be set up accordingly.</text:span></text:p>
-   <text:h text:style-name="P300" text:outline-level="3"><text:bookmark-start text:name="__RefHeading___Toc3662_1790556471"/>Using native script variables in namelists<text:bookmark-end text:name="__RefHeading___Toc3662_1790556471"/></text:h>
+   <text:h text:style-name="P310" text:outline-level="3"><text:bookmark-start text:name="__RefHeading___Toc3662_1790556471"/>Using native script variables in namelists<text:bookmark-end text:name="__RefHeading___Toc3662_1790556471"/></text:h>
    <text:p text:style-name="P92">When using native script variables in a namelist, it may be necessary to suppress the conversion of values to namelist conventions. Consider</text:p>
-   <text:p text:style-name="P178">[namelists]</text:p>
-   <text:p text:style-name="P178"><text:s text:c="2"/><text:span text:style-name="T255">[[namelist.echam]]</text:span></text:p>
-   <text:p text:style-name="P178"><text:s text:c="4"/><text:span text:style-name="T255">[[[runctl]]]</text:span></text:p>
+   <text:p text:style-name="P181">[namelists]</text:p>
+   <text:p text:style-name="P181"><text:s text:c="2"/><text:span text:style-name="T255">[[namelist.echam]]</text:span></text:p>
+   <text:p text:style-name="P181"><text:s text:c="4"/><text:span text:style-name="T255">[[[runctl]]]</text:span></text:p>
    <text:p text:style-name="Preformatted_20_Text_20_Interrupt"><text:s text:c="6"/><text:span text:style-name="T255">dt_stop = $$final_date</text:span></text:p>
-   <text:p text:style-name="P152"><text:soft-page-break/>final_date=&apos;2015, 12, 31, 23, 52, 30&apos;</text:p>
-   <text:p text:style-name="P117">cat &gt; namelist.echam &lt;&lt; EOF</text:p>
-   <text:p text:style-name="P126">%{NAMELIST_ECHAM}</text:p>
-   <text:p text:style-name="P153">EOF</text:p>
+   <text:p text:style-name="P155">final_date=&apos;2015, 12, 31, 23, 52, 30&apos;</text:p>
+   <text:p text:style-name="P120">cat &gt; namelist.echam &lt;&lt; EOF</text:p>
+   <text:p text:style-name="P129">%{NAMELIST_ECHAM}</text:p>
+   <text:p text:style-name="P156">EOF</text:p>
    <text:p text:style-name="P92">When the text for NAMELIST_ECHAM is generated, <text:span text:style-name="T9">mkexp</text:span><text:span text:style-name="T53"> converts the value of &apos;dt_stop&apos; to a string surrounded by single quotes (see &apos;EXP_ID&apos; in the previous example</text:span><text:span text:style-name="T115">s</text:span><text:span text:style-name="T53">), as &apos;$$final_date&apos; cannot be </text:span><text:span text:style-name="T100">recognized</text:span><text:span text:style-name="T53"> as a numer</text:span><text:span text:style-name="T100">ic</text:span><text:span text:style-name="T53"> or logical value. In the namelist context however it is </text:span><text:span text:style-name="T100">needed</text:span><text:span text:style-name="T53"> as a</text:span><text:span text:style-name="T100">n unquoted</text:span><text:span text:style-name="T53"> list of integers. </text:span><text:span text:style-name="T99">To fix this, simply use the special syntax &apos;raw(…)&apos; </text:span><text:span text:style-name="T100">around the value:</text:span></text:p>
-   <text:p text:style-name="Preformatted_20_Text"><text:span text:style-name="T100"><text:s text:c="6"/></text:span><text:span text:style-name="T98">dt_stop = </text:span><text:span text:style-name="T100">raw(</text:span><text:span text:style-name="T98">$$final_date</text:span><text:span text:style-name="T100">)</text:span></text:p>
+   <text:p text:style-name="Preformatted_20_Text"><text:soft-page-break/><text:span text:style-name="T100"><text:s text:c="6"/></text:span><text:span text:style-name="T98">dt_stop = </text:span><text:span text:style-name="T100">raw(</text:span><text:span text:style-name="T98">$$final_date</text:span><text:span text:style-name="T100">)</text:span></text:p>
    <text:p text:style-name="P57">which disables the conversion to a valid namelist value, leaving the correct formatting of the native variable to the script.</text:p>
-   <text:h text:style-name="P297" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2584_1114405012"/>Non-namelist configuration files<text:bookmark-end text:name="__RefHeading__2584_1114405012"/></text:h>
+   <text:h text:style-name="P307" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2584_1114405012"/>Non-namelist configuration files<text:bookmark-end text:name="__RefHeading__2584_1114405012"/></text:h>
    <text:p text:style-name="P85"><text:span text:style-name="T88">A [namelists] subsection may not only define a Fortran namelist file but also a custom format configuration file. </text:span><text:span text:style-name="T86">F</text:span><text:span text:style-name="T53">or any </text:span><text:span text:style-name="T88">of these</text:span><text:span text:style-name="T87"> files, the special section variable &apos;.use_template&apos; m</text:span><text:span text:style-name="T101">ay</text:span><text:span text:style-name="T87"> be set to &apos;true&apos;, </text:span><text:span text:style-name="T101">if </text:span><text:span text:style-name="T88">the model setup provid</text:span><text:span text:style-name="T101">es</text:span><text:span text:style-name="T88"> a template &apos;</text:span><text:span text:style-name="T29">subsection</text:span><text:span text:style-name="T88">.tmpl&apos;, </text:span><text:span text:style-name="T101">or to an arbitrary template name, replacing </text:span><text:span text:style-name="T35">subsection,</text:span><text:span text:style-name="T101"> if a template is applicable to more than one section</text:span><text:span text:style-name="T88">. This template is expanded using the subsection&apos;s variables to create a suitably formatted text. </text:span><text:span text:style-name="T89">As for genuine namelists, the result is stored in a global variable.</text:span></text:p>
    <text:h text:style-name="Heading_20_2" text:outline-level="2"><text:bookmark-start text:name="__RefHeading__2831_1132221942"/><text:span text:style-name="T89">D</text:span><text:span text:style-name="T53">efining input files for an experiment</text:span><text:bookmark-end text:name="__RefHeading__2831_1132221942"/></text:h>
    <text:p text:style-name="P89"><text:span text:style-name="T53">While the namelist files determine the model properties, the model state </text:span><text:span text:style-name="T97">also </text:span><text:span text:style-name="T53">depends on input files for initial and boundary conditions or assimilation data. These files are defined in the [files] special section.</text:span></text:p>
    <text:p text:style-name="P99"><text:span text:style-name="T53">Each </text:span><text:span text:style-name="T106">sub</text:span><text:span text:style-name="T53">section may define </text:span><text:span text:style-name="T105">or override </text:span><text:span text:style-name="T53">one of two special variables:</text:span></text:p>
    <text:p text:style-name="List_20_Heading"><text:span text:style-name="T53">.</text:span><text:span text:style-name="T104">base_dir</text:span></text:p>
-   <text:p text:style-name="P214">file names are taken to be relative to this directory</text:p>
+   <text:p text:style-name="P224">file names are taken to be relative to this directory</text:p>
    <text:p text:style-name="List_20_Heading"><text:span text:style-name="T53">.</text:span><text:span text:style-name="T104">sub_dir</text:span></text:p>
-   <text:p text:style-name="P242"><text:span text:style-name="T105">file names are taken to be relative to this subdirectory of </text:span><text:span text:style-name="T53">&apos;.base_dir&apos;</text:span></text:p>
+   <text:p text:style-name="P252"><text:span text:style-name="T105">file names are taken to be relative to this subdirectory of </text:span><text:span text:style-name="T53">&apos;.base_dir&apos;</text:span></text:p>
    <text:p text:style-name="P66"><text:span text:style-name="T140">For expanding the resulting file path</text:span><text:span text:style-name="T124">, </text:span><text:span text:style-name="T45">mkexp</text:span><text:span text:style-name="T124"> provides </text:span><text:span text:style-name="T141">two</text:span><text:span text:style-name="T140"> global function</text:span><text:span text:style-name="T141">s</text:span><text:span text:style-name="T140">:</text:span></text:p>
-   <text:p text:style-name="P263"><text:span text:style-name="T124">get_file</text:span><text:span text:style-name="T146">(</text:span><text:span text:style-name="T47">section</text:span><text:span text:style-name="T146">, </text:span><text:span text:style-name="T47">name</text:span><text:span text:style-name="T146">)</text:span></text:p>
-   <text:p text:style-name="P219">returns the full path for file <text:span text:style-name="T9">name</text:span> as given in the <text:span text:style-name="T9">section</text:span> object. Note that <text:span text:style-name="T9">section</text:span> <text:soft-page-break/>is given as object reference, but <text:span text:style-name="Variable">name</text:span> is given as a string. <text:span text:style-name="T294">If the value of </text:span><text:span text:style-name="Variable"><text:span text:style-name="T294">name</text:span></text:span><text:span text:style-name="T294"> is an absolute file name, it will override .base_dir and .sub_dir. If it contains native script variables, they are expanded to their top-level configuration values; if none is found, the native script variables are formatted as described before.</text:span></text:p>
-   <text:p text:style-name="P271"><text:span text:style-name="T156">get_dir</text:span>(<text:span text:style-name="T9">section</text:span><text:span text:style-name="T53">)</text:span></text:p>
-   <text:p text:style-name="P219"><text:span text:style-name="T53">returns the </text:span><text:span text:style-name="T294">directory for the </text:span><text:span text:style-name="T53">given </text:span><text:span text:style-name="T9">section</text:span><text:span text:style-name="T53"> object</text:span></text:p>
-   <text:p text:style-name="P89"><text:span text:style-name="T104">Other than that, t</text:span><text:span text:style-name="T97">here are no restrictions on the content structure of this section, and the job script templates are responsible for converting this content into a suitable script text.</text:span></text:p>
-   <text:h text:style-name="P293" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2833_1132221942"/>Overriding <text:span text:style-name="T253">input file</text:span>s <text:span text:style-name="T253">for certain</text:span> jobs<text:bookmark-end text:name="__RefHeading__2833_1132221942"/></text:h>
+   <text:p text:style-name="P273"><text:span text:style-name="T124">get_file</text:span><text:span text:style-name="T146">(</text:span><text:span text:style-name="T47">section</text:span><text:span text:style-name="T146">, </text:span><text:span text:style-name="T47">name</text:span><text:span text:style-name="T146">)</text:span></text:p>
+   <text:p text:style-name="P229">returns the full path for file <text:span text:style-name="T9">name</text:span> as given in the <text:span text:style-name="T9">section</text:span> object. Note that <text:span text:style-name="T9">section</text:span> is given as object reference, but <text:span text:style-name="Variable">name</text:span> is given as a string. <text:span text:style-name="T294">If the value of </text:span><text:span text:style-name="Variable"><text:span text:style-name="T294">name</text:span></text:span><text:span text:style-name="T294"> is an absolute file name, it will override .base_dir and .sub_dir. If it contains native script variables, they are expanded to their top-level configuration values; if none is found, the native script variables are formatted as described before.</text:span></text:p>
+   <text:p text:style-name="P281"><text:span text:style-name="T156">get_dir</text:span>(<text:span text:style-name="T9">section</text:span><text:span text:style-name="T53">)</text:span></text:p>
+   <text:p text:style-name="P229"><text:span text:style-name="T53">returns the </text:span><text:span text:style-name="T294">directory for the </text:span><text:span text:style-name="T53">given </text:span><text:span text:style-name="T9">section</text:span><text:span text:style-name="T53"> object</text:span></text:p>
+   <text:p text:style-name="P89"><text:span text:style-name="T104">Other than that, t</text:span><text:span text:style-name="T97">here are no restrictions on the content structure of this section, and the job script templates are responsible for converting this content into a suitable </text:span><text:soft-page-break/><text:span text:style-name="T97">script text.</text:span></text:p>
+   <text:h text:style-name="P303" text:outline-level="3"><text:bookmark-start text:name="__RefHeading__2833_1132221942"/>Overriding <text:span text:style-name="T253">input file</text:span>s <text:span text:style-name="T253">for certain</text:span> jobs<text:bookmark-end text:name="__RefHeading__2833_1132221942"/></text:h>
    <text:p text:style-name="P51"><text:span text:style-name="T254">As for namelists, t</text:span>here is special provision to change <text:span text:style-name="T253">the [</text:span>files<text:span text:style-name="T253">]</text:span> settings for a specific job. <text:span text:style-name="T253">Let us assume</text:span> <text:span text:style-name="T253">that a model run continues a previous run and reads that run&apos;s state from a restart file that may be defined like this:</text:span></text:p>
-   <text:p text:style-name="P158">[<text:span text:style-name="T253">files</text:span>]</text:p>
-   <text:p text:style-name="P112"><text:s text:c="2"/>[[<text:span text:style-name="T253">echam</text:span>]]</text:p>
-   <text:p text:style-name="P112"><text:s text:c="4"/>[[[<text:span text:style-name="T253">restart</text:span>]]]</text:p>
-   <text:p text:style-name="P112"><text:s text:c="6"/><text:span text:style-name="T253">restart_myexp_echam.nc = restart_myexp_echam_18491231.nc</text:span></text:p>
+   <text:p text:style-name="P161">[<text:span text:style-name="T253">files</text:span>]</text:p>
+   <text:p text:style-name="P115"><text:s text:c="2"/>[[<text:span text:style-name="T253">echam</text:span>]]</text:p>
+   <text:p text:style-name="P115"><text:s text:c="4"/>[[[<text:span text:style-name="T253">restart</text:span>]]]</text:p>
+   <text:p text:style-name="P115"><text:s text:c="6"/><text:span text:style-name="T253">restart_myexp_echam.nc = restart_myexp_echam_18491231.nc</text:span></text:p>
    <text:p text:style-name="P90">The first run <text:span text:style-name="T254">will instead pick up its state from another experiment. This is done with </text:span><text:span text:style-name="T130"><text:s/>a job specific </text:span><text:span text:style-name="T139">&apos;file</text:span><text:span text:style-name="T130">s</text:span><text:span text:style-name="T139">&apos;</text:span><text:span text:style-name="T130"> subsection that – apart from the addition</text:span><text:span text:style-name="T132">al</text:span><text:span text:style-name="T130"> brackets – has the same structure as</text:span><text:span text:style-name="T129"> </text:span><text:span text:style-name="T130">the global </text:span><text:span text:style-name="T139">&apos;files&apos;</text:span><text:span text:style-name="T130"> section.</text:span></text:p>
-   <text:p text:style-name="P158">[jobs]</text:p>
-   <text:p text:style-name="P158"><text:s text:c="2"/>[[run_first]]</text:p>
-   <text:p text:style-name="P158"><text:s text:c="4"/><text:span text:style-name="T156">[[[</text:span><text:span text:style-name="T165">file</text:span><text:span text:style-name="T156">s]</text:span><text:span text:style-name="T165">]</text:span><text:span text:style-name="T156">]</text:span></text:p>
-   <text:p text:style-name="P112"><text:s text:c="6"/><text:span text:style-name="T205">[[</text:span>[[<text:span text:style-name="T254">echam</text:span>]]<text:span text:style-name="T205">]]</text:span></text:p>
-   <text:p text:style-name="P112"><text:s text:c="8"/><text:span text:style-name="T205">[[</text:span>[[[<text:span text:style-name="T254">restart</text:span>]]]<text:span text:style-name="T205">]]</text:span></text:p>
-   <text:p text:style-name="P113"><text:span text:style-name="T124"><text:s text:c="10"/></text:span><text:span text:style-name="T138">restart_myexp_echam.nc = restart_</text:span><text:span text:style-name="T144">another</text:span><text:span text:style-name="T145">exp</text:span><text:span text:style-name="T138">_echam_18491231.nc</text:span></text:p>
+   <text:p text:style-name="P161">[jobs]</text:p>
+   <text:p text:style-name="P161"><text:s text:c="2"/>[[run_first]]</text:p>
+   <text:p text:style-name="P161"><text:s text:c="4"/><text:span text:style-name="T156">[[[</text:span><text:span text:style-name="T165">file</text:span><text:span text:style-name="T156">s]</text:span><text:span text:style-name="T165">]</text:span><text:span text:style-name="T156">]</text:span></text:p>
+   <text:p text:style-name="P115"><text:s text:c="6"/><text:span text:style-name="T205">[[</text:span>[[<text:span text:style-name="T254">echam</text:span>]]<text:span text:style-name="T205">]]</text:span></text:p>
+   <text:p text:style-name="P115"><text:s text:c="8"/><text:span text:style-name="T205">[[</text:span>[[[<text:span text:style-name="T254">restart</text:span>]]]<text:span text:style-name="T205">]]</text:span></text:p>
+   <text:p text:style-name="P116"><text:span text:style-name="T124"><text:s text:c="10"/></text:span><text:span text:style-name="T138">restart_myexp_echam.nc = restart_</text:span><text:span text:style-name="T144">another</text:span><text:span text:style-name="T145">exp</text:span><text:span text:style-name="T138">_echam_18491231.nc</text:span></text:p>
    <text:p text:style-name="P47"><text:span text:style-name="T130">This</text:span><text:span text:style-name="T138"> will result in a &apos;.run_first&apos; </text:span><text:span text:style-name="T139">script</text:span><text:span text:style-name="T138"> tha</text:span><text:span text:style-name="T139">t gets the model state from &apos;anotherexp&apos;, while the &apos;.run&apos; script</text:span><text:span text:style-name="T138"> </text:span><text:span text:style-name="T139">uses &apos;myexp&apos;.</text:span></text:p>
   </office:text>
  </office:body>
diff --git a/doc/mkexp.pdf b/doc/mkexp.pdf
index 4e79489dae3c51689bd804815f2bd20e63e63904..b620ac9302cc05c6ee4aba03bf83af2d6f353c11 100644
GIT binary patch
delta 96718
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
DoqX(I

delta 96747
zcmYJZV{~pyur(apHg;?$JGO1xw(-QaZQIF?xntY5?c_V>+<V{eXOC5LR?QltS6BC#
zVfQc%w=nTi0Hsc=Ax5OjFZ4=KH#hY}vH+x4&0<(ArC=9NmjIolotf&(i3Hd%WQ?k%
z$;;?+<A*ID?17V{n<0@AUDmR;<FjcW0typ3!l`z)%OFSJp|@wNYjyU(tq*5%a$@Zv
zQ>Q~%^YbVZ7_>3;EUJ{$4;j!HEjQM=YFXHtBU5h+Kx&O=m)WnC0O|Q@($E<h(S$y=
z4F6>s_}i2aW3qw@fwAb^452$IRy<ysND^h_IbVSr8EIf6%9>?}%M3*|o76;RH^GY<
zp~mgj=0@f73}5gkjxvdPPvfMk_aEnG8BD11)sYNo*nW~hfh<mkA*n+Tg^lJEajo_d
z%!a?(fJq~8sx`fMd(+m?BYCv~vyx}38ag=iTZzR@m*8Vp2ODu&>visz`!^+}VUDtu
z7n2-v&k{qb6mzl}Fl=s;ru}}Gp}jpPRi+iK7ViPXO@~Q>luQ^KsC7#K4YyDGrb-Lm
z3-O)%E&Um4K!KvXeFm1qLDKBn1+W*2FUArhGJzGnA7%mCS>UUMA5h&)helFDFKW^?
zFbptL(i^aly8Qt=lK;&cIv-~J1P56k64J<BK^r*8qr&5|Z2$p`3&YpPk%L4AN?3EY
zjS#0bEu+SUm%={BU<NU#A$QN)&E5{Y^N&lNyU_ww&jtHV58vne!g1bhQX&XDfS}h<
zesI~>6|Z$1pX2la^SbS1?<Gy2AXlHDC!P)|C#eVAXb`-$?=^~G^C`z+<xpN`AWR&f
z3fso-c$9hC!*UA^IQ_JwaJSiu)p_O?-kBd5+#H67**$PGk;E(}YTtY~xV`6a?K;Ap
z_@jI$;~Wg2l0wybykt$vg8=6OKzm)fjN{L8i-v;61@0A~#JaqbzV<EYK@opZ)IEI*
z<*%^oRG5pajM~+2<M^+atw)+$Fv5H{-?pr5^*nL~v*_c01zQVTLmqVhwOJN5HRHa5
zpj?nP53E|0gEk`>NSJ`*G2tYcF~px1-oCpf(UaudHUt_(jkS~6aPz1K^kG1?Ll0bp
zVIfu%yn4JP5q_*5BA_tf-|U7e+3njq1ms&OvY6N$IwEoT<;0ryILZg9=L<1V8cNl<
z!Z$Cs*Epo`&ydw#f>*W=q(X7CL>1!d5ax)mrp+F#LXHdxt*^%Hl_k{H{JIq~k#mO4
zTJ1INBQ3KvqL$4Fd$<Ax#Es<$E0fa^w7Ly!z6o@>@k6<)<)GLmD%N#8m3xI8-lKTA
zA#4}G<X*d35qo{%b&K2k1i}wYdrW`$R0)?cTzAji=FF0wahgCuwZD6HIXkUqP##VQ
zkP?--!0yye{+bu|%Q1GuvcHPCFJ~}?(Onhlc|(Uw+c7nmBD9+Ue1L@U#WP2mD$3ej
z<oYm>yNw=%3RCtxV)M+7gxwXF2s1DZxkb=*V3k8JB_S?)!F4h<K>SU+&wX;saL4?_
zB5s-mvUG2oyT|*q30i|YgzV~!Z&CQrY81FU#cjD>?re9x^I{uw*o=~j?PJUd0WZp&
z^fi2WTl)Z|;7A++^ye4j)#4|1`CO=bW6GxM##LL&|Fu^2b`j@RDd+x@anH6s^fhx2
zN1CIN>hi>klFKe|2U~$M{MDg(O2eBYUcHD)Z(X=M51;L+tbO2wc~dP&HXY&?0NNiE
zKv_$Zb8M_>tBIj#I_k{TNxL@tl%xX1rI`<$uKj0{xh>iTAbb(q83p0f8>XgULpKLY
z2h;GR!hjM-t>rl8ixZq%n#_hcLCK+}=x(<)<?cwrrMdzhNm~b7S_`X`Msia@|5!}_
zsEE7&>Og?=DQJWgjVGR+jX)|aE^{BP%(%e>>DhfBA@?V&n4pCXF;9;cGW|S<49HnK
zCSnHY;Q((JP#70vli3s(L_xN8{oCH;3oUpd5X;yc`o~HSt<hu=wfVZWljzkq%Cqzx
z3kr2u6jg%5cw&`ra`o>Y*ZQ8XMaqwe8y9j%BO%AaKFF3EkghYgRFCrI?oGYw{<WUe
zvo753Dcb1=&q7rS4Dga^o{5#;cncXdjLxxkqFkClfcSeYDV28f%dzEFv7@GNHlQ9X
zHx#hAj{=uM*ZR)#Iuy%Tf-&vH*zdHp`DAO9*vZ5x8`%+EpZtNvxw2EBM^ndaap^i6
zx@M7APvWogP(OYyEFyS%$GZ!)zzbk$lzpu<rS*~vw@e$!i|MYY)N^IX+yPVQ+rqk#
zLXuk*fS#i#WoEI&Ji4hN(;5vbsgi#t(v|&|WgFe{?lSF2?zvx_9<P|HPecj@O8COl
zPEl2@vwU}^rhCk+2#MCqmpO*D!Q0m(k+@|5#;D%X{<;X_Jx_5c8&`Fh>Y3>z+aXLv
zXLINty`A1p<+}j$3EO@{E%LGsg5O>5!)3`Xz;M_r{X1aGVnw!1OT%8aCErzjd$^Ld
zT#j#e2Ibzhm-3#>DLdh_0QM~J&C5r*Wc%9d{<=p0N4MGkgH9|@>~((~r{Z-0E8YA8
z8qUUIxxWWjVn&+#mZ_QdMkdoHxatahi`t0B97pct1-tDXxkG(Rnu3gm2Vl*!Ou8Ki
zAdOLjm%QK-S?sz$^%!*tr3#^SaF&|{3s1Gruf(?L@9v+@T<u7^-Y;4!rR)}AXK4v{
zcA={^|6pAMbg;rN+_0{dE^pl*M6wlY)vAKwoJURciKM9mk0%FUl4o@YUR#gGLBDi$
z39sT@s4tOv-!Jff8VdY=LqQo60=H@dgu}qP3~b-gJg-VY7m+;SXeoOXjjA!x?Wzqf
zYT6h+!2GV@VBQH5Sw>A~L1y2H({n*Y8h*z_cc#-(E{A9#-(84e>-+MH6eO_|P`PTG
zrrDNJ9ehtqTelbK0c&@zshAK74cY!R3a(O7h!a?akgM#fY{DByr>IwC@ST$j7|;NT
z$Zb}GUoJfhyf+%v){%iGz+BsAGw?$-g2xd~0%#hW=;}ug{7k!tNTZi&`6g6%xu`ir
zk{?L;(u~~G1qjh#-X6=^PxYT1-yCF=u6DJr>fUyNC<L5klpXST2w<pp5)R&vu~HN@
zN{L!jA6cv#uS1~Rgx@Vf^;V()lzO81Qs*UcFtcQ>^*DDdu*y;Hrmuk*AXCJynJcSR
zaxG)eePZfd<aiY^X@wkQHQUs$>S*jl1HXb6ja%3g@&u|;eR1}paDRKKS1hrL0#bG3
zT=O2*4INR%U3`y-8~U1nI2zWHLFm+T8I2}eMiR%B8wMxaUj(~TmRD;4B0fY5;Oy3&
ztnrr0bk)g>yfc+7loiur_BbQoq^5(Ou5DZFYtxRpR1#KNEV^_vAB<I+3{$k6w2t|?
zy=?3>81^U0$2F}3n_N<=HCDr$GwnvysD8`_aN_#tQTN{FLwRmf*`@wZ?Vj4&?(1}s
zY_Bu+VL1b>t+^NqX-o3}(ND)zsu8DnP2c&(3#15gV_s)N@Q8(Itgm62JbWW)2Nu<w
zW&{nc7GaxAf{6~f$m8WMx3h_HC59@tKQuxe2o&(^!$;fM>ef)i`PsSl(HlGk)>kfN
z6kISaN`}S1_pb5id&rZJ8E&$Z6*l<RysT<-{LvD9XlepFHP<fyoAaO8x1d&=&r44H
zB&};0E&H^vmvxi$Fx%pmiNgxEP<mFjBi}C)Tm3ssMsuAJFWJeXtp{cuHwo9Nl^Y2&
z8<`VJnU~a$tX*u!4XIoc$3V8g@?<K0ubxa8#o!9s@!-SUI`G&0!FiFWZk0h{MDz@K
z4mOlIE3oIZc<QsrH!pxoijQC3ocioPpi7KK-~Y^BXh|Ee(tuRys0~J>k(+NcF3d}*
zB98C?lN>xRZN^6huZz}M;R5fom7CMOAw6m0l9Fv9%~|UC$<w`^Pc|Q<OYxT+$M*$2
z#J+5lAmbVNtq+b%?To$4H);25uClRBEhY<gUnBdOKCt?;hcF-vZ{%Q6?4iARaKg^d
z@b1VOI42R@cEDdfi0k?6V#RL<rd>!@!SGewhBi}1>>MSH2;SN3StbR90!7l1-wA2s
zU&tZw`_Y!W2amPfvRemHpaJ(ThwBmdn%^Am>@HWGZ87%Mf{2x(H4$Cxcq~_12;cPU
z!><#~`u+5i<Sfuoxvz8utml33^VP#^!QR1e9lNGXPJn&q`jEYdSSWH^rLusAOG;aV
zhMF#owFFHwt$+SGnRdEa#o5eD-W#~{>Zzb@o;8jq2VstFo+)PWFLz!(V;8_=zN^lm
z0!yZC2*QC>OgP=%_yXpORIEdKznp~MyVP9d31G#vBd-qLtjab&9(t#b?WJtsyMwDO
zIkiC4+5!Eo{!7eUBRw?r<XSj$U?;_Q8~(rq4)0now<?#5t$icW^|Z`qZRb~oUD9CU
zPT5rYXv8$xb0JaZf1?hexCZQvD-R9IN>C<LpZ2K;Ya{tij9P8^^b)z}<JQNX$?tcH
zzF%01{=QyKjv7sax5R8Jc%|S@*l0#}2z%C0jsh^%LV^`y=1mA{X1kZp|Kt+Yhm0B2
z5rj+(a1L4CMe0~1o{?Oh=u~e~GW3bp({MC#xO{K`U{-M4kku`?apn~VD{i%6>+GTG
zKw8-HXzoSC_IQ*FPkX6`Vbx75D}2X?l~o2N!m@6{?iC)!Il(KsAY+}l<6C8W85{}M
z<iTW~6&nA$2(%;k0yr68+vzG);_7;+E!!(5_!$8D5I^=hf3tcf)wYf&(tf%=?+1_S
zUMC#h?nfpzMkY=_<rm8B7LE>HCgM6f%GVIzUT^B$kCv-?5D(rrM&udd;?nY>3Ko2t
z#D&ZDd|O@&gRoPVHd8d~zHhqDJGGXpI;vJw=OF9$YM_4r0DdjFqeoaQ9T|NzdbV=a
zx0Ggm<6G<Ky*fblAkOP+kKPxg{oWn0{m!j+P*I?XUZ`z)7n)->Y}{=F&Otnljd>|2
zIX@JsyL*X&X1Z&z?zw8feloOv-=$+pTk~#hHGr2qqE%Jay#=zHF5@>X@#yC`>K;Xw
zrw6eDuyZmzpa(*8`nd-G6D{>X_R{JWQCAoaRFfCms2~J$8QGEvrW^9B;J7OmrV6aT
zOG;tEu@;{W`I%Ylh(Lo~xs@=Nolq5SFgkB31knMV6DkC#&bCg#{t0hr;SW{Uu2YfZ
zj+e|Yk)-sOrOjc!6qwArR*p>dmxnp8ep(_m<{e=#K*%QH&FGdUs3CU6UajGl4UZ36
zDEQv!lI$KW!j*|d9c7i-3u()56vsGkE+yQGk)fsMC$3>=M`>JbCM+(N)EM072QkpQ
z#tmiqy_EC&*=8dY1QF!Fk}dNgAWEzQ%TNHVF7jf~T&%w_ZFfZbBFQ?kEHX9|$me})
z*e<E-dOyhM13@m|WxoVvFYn$3`OsoKF?vv>DeXd7PSFsJKdpguZD5$-iN${DJwTP^
zp#F-UD-mVaP_sP~##U9-^(}XC>!2&y3to5(ocJhB9AM^2q?<%}{v(bQcTTaC6o+gA
zVD5r}dzj!eh@kKkQD|99Qr-wih%!TO9;&n;j?BcDy}_RqRe#op2^aRMOu}WX;1TBZ
z5&;q=wpMdP>ciE<&)H3YusPgT&9=w$3Sn~IU1(3~*@%8n2>attiOC2htKmR!oJ#l1
z(Gq>U6&Abzv06984oybo)SB4l<iJu3C=2lH3Nyg%CXErH#xx#@-n%evDxMn(GP>?>
z_HO_$f<;lhqxf?tF1@%6+wUuCR;+=5L+<8gWN2<>5I&t|LqVIM+{+SeN`M|O(kQW)
zY&%TIgxPRpyToHXxKxv^)kk?XM55_`n`4205<Qbf+w}M`$+gVD9E@o;mN-fQxL4Zz
zZ2&zQsGvkzTAOgCfyu53vTacINw}Ve6FW#1B9>7XP#HS=zH?%;Ec<Rpf|`}B&oU*E
zZi&UoTIMITPt~ua-ZHKNRYAC$-s!T(Ty&HUG0`HOb((15H{Lf8qa<O7jWL>1K1`H{
zQ?(5V8~0ul9@S-IAIVe_Oag)oxPZgAMDi2nYAv*r@0=7OkpbwmoG@<JTE!e5DL4$=
z^IESBFIl|2If#$UvVznkRsvfu54ZT6BKjGMDxa|G>u5t4%`;)qU!1)Tbt#lkS)m-h
zke4VH7({fdBs$Ge`<0|CRf6;mJ-If1Gl3`2D8)gx%(v{Zt{6ODK^F)BqB0Zu^OKna
z^QqG6QK`OyF-@^|dh0J`uEg+#znV>kpLP0-uTdIj%;$aZ_J?pHMumvV^inqi(YKQx
zpUPXskK6~-rmN3YwhG_q)oc_0gcvJhTWN(4<P`09Is_-789gZlB(^Z7QD17Z)HavZ
z4I{5zcm)<N4RN^MwyI44$nR4ddDrVy+ixemqC(6KrzOQ|Mu9T}sZ&Iso2hQb4*!1X
z<TmUV=>(Q+ORrUNI=hrmzutqvfHa<Z6k9QqC`=#+Fkhvr$V_RP*fi>D-`t;>e2n49
zGc!)-)f948G6ScaEpN^H;Gzr4+DX7Z$(Ueh8z$f@v{8EX2;pl0>S0>YyN(kOB3%?y
zn+8B5$=%axGR@d)G@OgpD8Z4sI1B@lHsw@SAbC1MB(6enVr#v9Oxsx9<~l+%b(WOg
zU8-i$h)A>=jGIuGZNz=(Uis!4iP6xi``a}NoKK4tPKl0x$kcar3N9%P5cr0?4u>WW
zd=^6@vCCR3>dET?g+<wlhWdj{7qTQs;9Il_o&ne4JA^sFAmPwZQ`jmlAc})9s=4U9
z`5HF}p2&Xb!qZW=DqW7iF_M7zx1@I*G^}uabCa2sB3JCt4k+KCcKpLt&!RP{p^e#?
z21mYz!I$Z{teC4z*kH28hhyFBFH=0o7?O12Y)83>PXj_gMumH46G7ReKRY5VACKkU
zF{MFLL!q^Q0DM0Ec!*7yI!UwqhJ6+L-kOV@<mAB={v^sMvI#XKaWN6RK;)-<2#X;9
z54RyuK1_1mgRbp4vY2-+gdZefRYFXeqk{xOq2T3?Za*Spvn$>kl>WYhM-@hPaT(T?
zS#N_LH)I7M=CHRzMsEo|0KwY+84{6HWq}f$wJ_yGq769%;bhjTJ!Z<5StGOx2nkmC
zlw4O=bbyK?yrY_{A8qGqFjm|T1f|JLDxfb!YWj7mtjeC)ut?r@+ke(r65-B4YA^@C
zhK;=`|Bk%TvJH78Omv9h%?R4BfmMs9w!N0f00E#gKL!z(sBQ9sE`rDiMhurApxpwD
zoAT$@{|L;tc?4#n-4NTG)?fy1wP>DYzBmXP)0dI>h<mdUxeu8YI3Jmj1mrI$vGBne
ze-T=jDv!>UpMQu8%R?QtN~)JZk_09xK<Acc5{tK{YHiu%ZPbyaV+72UFE)pWnZq-H
z)9H;Us?FAa;cnNmkSo8a>1Hu9MTQ_!k^~QcU5yQ?kWMrvGL-!ahc2ieX;5yy$d%V%
z4S5o~S}pNwo7~u~h=P7>fDn1ohx|TfS;hzu!HYgdPb2T48hx)5SjW#RJWV+bU`*sU
ziB@5)J+e*EJK*9!q>I(p3cb{xUXJOQPrHW*wLns!VA}fdI%qsZzK!LsFJwm!`_Lof
zW_s99CTIGn5#&A(5heV^oxo_y<=a#AAp3Ik9)`OF-Q)S|ugsPS_fQ8HDhC2MXCtfE
zrRt_xbR}jA<<4@2*0akx;Uh^Wz_pR@FD;z)DfIXL);|1q<b3yRTVAn1?~D%A8F2}m
zYx={7%lCA3`8nU_T+6z=F2|SK<a@`nO`bD>3e=h`=IO0W4A>R5Vo(<1m$ad<A{ZFv
z$7|D5w>-wvNiW2UOF(aZ+5Uq8dNOI<Yu@X^MFQipdeYRH{CtJ3i?vELI$k(N9k6mQ
zP{Y@c=XM^$4+u$)%SPHBA_!U%5;iO_OA;Qo2q5mG6}k7OZ1#^oK0+Rf0aQI5jewmc
z=4rtx9U_qh3~QRt*K|By52@nzbKLNHD$l3m?;C7Q9mCg$1OA{sewK_XJTdqc$Jc|C
zxZWSrSNBgbIKb!o-Roz)mxEi!`rbp?UZ*M|QRs}m9Y`>ml!ak1I)c8qPl^$W`yG<}
zC!jezP2<iL4A}n$!?J{tC<N?i2XmI__B+rWPD3Q$J?sWYOzThFJ~DaxAZYHxi9KQ6
zOdO%R#_}`Q673)e!(DL7@&UIUO^G>l!Z0<uAOR3g)V?E<DG_8m)N5RpjyawEXnq#M
zF*!j~2lB`RxZS`s;}%dPgP8+IA38_!JRnfo;Ygx5|2V2RBy#lndq06MFq&pD>6-UA
zs?^)5(ATu1<ZHy={Jsh@F|>!oW%j`|`n2wm_jgBY6My8d*uh8&VDsSc_TVGGDuJm@
zEv`Bkv}Tl&U&zY$*X#2XEW%vmcSPxIU5y+Jn6vA?vU;PLX+!+{fZvOGIe)9{SOHj=
zC{goX4*2rNFWP}B0|eGQNK!kpiWcAbA=vfj8eHF9r95_B7mku;l0%4GXH~xq`qG2d
z#QZrzwB)HPBp1$!{Jrc8W2}+{|4O5%7BxC#sh(s!<J^iQ{D5Szi&lbq7J+Js6Pu#4
zkTwEA<V+K@pdsVwD&zG5q9L&$s{t>!Sjbi{Jh4zC34Q0#2fFys1gBrruf44EZfVjJ
zYJ(FcgSzlna>#J*;s}SU;K=9aIEJ&^cCch~t4H{tMB6FGgv&CGM==JVj6!i(vNc^K
zfXsZkKC#sx7(jV-c{mnZ3#2}mgIQOldmJs{ZW9RpXR>@Z$(YY63XJhrCm>ASENO52
zfIF{lcJK(5tRp{C&rjOE!ULzV|HuK9&@X!S5{WaQoZ72`xv{M89KQz&za&hJ_|Uel
z8%RZx=x;~3qax=lb)-NOjWPdK>HIocv}FT<vYes^Qa>vv$Q`}%=AZDEPDd(*qin1;
z?<uRujJpIO4&#yEpE7r>^?-{ur8t3z=gq(4e)qFQgItyzo+^^RfNJsH8K}u%lA%R3
zujZ5FG$1g$i*O>hIa3y}m6*kWB~+nE$=t`~QWvZ=Gbp<Zn;JZNG$_qSyhsVCQTu{Q
zO`anyO;bZx_dh<)tEA$nReS1kbqWYhp7#xaMqp@o#?@7`iG!$*qW~LbGd>H0qb`dk
z84avNyXb=!D(l{nR0G1sAdq7`4XCvviD3iP?IKGZ^T_DX3$(6*A~nfN(=_Uy+et+c
z=RJWk7rgk+c677X6;#XJsM>{7p%yR)R1>njay!zP5hZ2n&&A}3T@X_y=eq82ceGA8
z!~&BB7gCH!GCt{j$$*n(6T;yeUK}qZkMop(lZHir;?c-;zJkM!Y_swyu_QdT=a@v-
zs80uatgfsA)ly|*bWzevGg{UtHp!lrY1|K|uVNqy>UdLZK!epx&)C?gYGYWMyGlB+
zt#)CTuu|&#MvI;8uhG2(2bPg<AMnB9xfev|#q29Eb6*U>5WuF$?5wJU6;Dy}@)|Zu
zyc<W$YjC6#ss~XAA!?suP@z4QFdicaM!gLEZ>kzrs7HL3kTJuvKkoU<5$rWin)Md+
zhC+>j9byp)yXaYe$-$g24ezDIB_jlR8r~%hD{Wwm-vz3wg(v251`hEB8s=2xoGYq8
z&_R1@rN=lvuK}#^RddaXdi5PDkFiKHwk@9c1VI{?9FM)?seY88#)&c5HCEkMo+rBU
z606OeWW&4UgNbG^k4ISQPKRx<5UDd-=)K7*MI~KM8}^md9aRDstt^RDDSI~CqN0sc
z9zIx{rCn-hw;h#dUnfS5=(K}2Vb~)<5GBJLIIIR`;eeGWos`?4$sof)N6ZQX8*zA}
zM4?S|gPT_cB_8x1puhCsFz$%>q`3yev*v;a6qzMPO*JlNBJ=37QtCE;BFt3&{<uP7
zO0Bvb1GzI%B~PwoD9TZ??Hk6IFt8lZNplT?u4U`%+4gIp1=mrt5|Uzc&?zJNwh*M?
zq(;R>)B>*S$M4ijVG-KUWKC+X*EQ6dG>?(#@3~o8KV>J$mTqlj(F^u04Xxyz*wXj=
z6QviPEqvqBJmr#jzb}B@8Q9r7#`Jns<&e0_)|2bi_Ju<-Mh6}a197(=KSRW%#IpXT
zX3mdF@-JOg_|R<G$LA}J-&nzb=2){WxiEEZ+5!^y3{%`zi}hU=Op6zieWR%V+1z)k
zF={SlTNoY9K}%%~jbbZ@ofH`{QJ1xFOq742;6YCn3N@_U8nTCihx1Hrt`X|VJ^e+y
zgH}3TCRPFOBt_sCL|kWGw1f3=(~i*KInii!_2ip*JmCnNMEC#Pq5Tcfco%|_qe1+_
z>H!epYA_gy1$52!w`oQ<+*Tt>goi1F(3o(d`S(({qSE~;Q@-JPi@Rn*Fk_>Xsyx!H
z)w!X4XSSUlW#bq{z+AQT1B2IK$3Nk^m4qFYOd^esTS|befy_JO*!_>PRajN_52CB>
z;7WILG-96MFilx)CGxtdrtVD}qa&TEBLIqxgop0bzV${tIx6ONfDgYsZ<n1$*a97V
zsasg0D3jD3C2nn{)nvMU)}9wxs9i7ZQE-WjBVLNR7I^1l`K@3H1w7t8<^=JjguJs`
z$>Su&=9u_!veTj9uOZwuG9?_kNqsw-^jV>2-RO~&dnk(Z@xu{p$rjxW1zTGU9za#K
z4NwQWz?B9Y!r8kxgkI%)aIOsc;N>&%)O3-Z-Hz?oVkZi+r}7`~TP!Oq8bQ@5dEJKh
zHC4}8ja-ZvKvv}-E60l9#%bE>tI!-23cIaQ^C*}5$v!)tF<l<GE!(PFp!fr}pTM<G
z8Uf}dq@O#|i!!B5h$5#|w}XYKCje-%b%9D>$YPBTYXkZOcMWndDsEFsc87B~l~>7j
zcbKJ=i9ervsZb${BJtx`ft@G&2JT~H8WHo8XL)#Bf&Aiy{nSY^6H!{3a6s{@nHuUB
zjy&@9JksX%RG<6A?)wSl=*;(xVq{)X{dDiMH(IB$SUXMT+zP<RX&YT*4p1Dmu~(Pg
zyr}I|t%)y5Ewi0%&RAd8&yUj{7WKOHb^A78QQLWYxgdT){-+J5tGqam$@r|Ym4j!a
zakO-w3p)LBw&&-`d;Okz@|NQIeGq8S{ti;N2-`1?kj``q01truWE-;T!YTag^yA)h
zPM<#}EppO=ueF`)$ppcD58z{vA*}8A$9zEUBU<O{Q;Mj*1&)31>vfS=D(+W}-;jNN
zFZ@Wo_ktOJiR!0C_wh-zpZ>~p?NwbnB*<qE5DYc(vE{x*3y1FQ^d~0Xqwy`>5&4&p
zne;%~m74HBKDY{0J_(cBxS7Yj%1$C-<{qT7d&75!CEdPwK<wSrZ(`?v62GW_fnz7$
zZF!LA{YUW2M5yghz}F?sb%SEYKiY0G!v@8-{hZ!FBIWi8n@c&Y3W0Nwsgczj`<GJK
zjP5<$D_=J=`-n`*W(GW}FP|j<SdwS2Z0Rc<6)A(za>hug@Ly?g8O3#d*=s)kEwGvQ
z(I?Ip&r!R3&lyJJy&w4ze!#PZvHbpLNWCS20pVmx`XuQEWD-RW$oZoV$YMs&7=rLd
zZny+Uc+HV$=!E0>C6oL9%ED$F5)~S>WJ`q815GH4*k@mpxs^eJ_iH+)Q2*l)aYS56
zh)!*xtx$n73R_k@9zR-e+jgEx?DHuKRzJ7st!h&9BLkOFQ=6Ek^C_uOlecKBByHYb
zTp2U@iBc&C;IGnRopSs7etQ^scsNMg+Qo5&uiA}_cO?^nF^d&#6)ig*&<3VLjcp99
zW*$z`T#e3;z^c5CVT#MdRaJmUvO7u$j-~b5lsM2(wV)!mB%vs=o(691XSNjSNk<+^
z;IARTYp?oce=Z2~cuZLg1CpF71!H)iZ%8V^@9W1206~7YS|NhkD;7127mGXuAZclR
zKFvda(wKWt5eK$I0|n{vpc!-@rZ)j`PLz4{At$}iC0RD3{4;MW^q>-;dgSR^t)fP5
zA{%1JyIe=RK~de+iHZoAbH4x8Z2n#AZp#d8y*6LknH_Szu9AVlzBOC<(ZE(uQ)>?Y
zEv*;`z<sCIGGWq=vsFxmwaWrZ=YU}uk&01B2C4%)Axk!KIHhJVLqi+k<D##v#PuUK
zb*h%#0l6!*qBnvny4HOO><==oPy!;hlN!f7eZ)u5&EZi)#^~`giCZh~7~|_4hKbP^
zX95E6<a&~chq>4afTm;&7q^b|vVm8@dH5;-n2pmuT}H47+BIK5+))PKdQkXO(66?O
zCkrn*F#NTeMXYq(J6H3D`102lyYW19aQ?ukfTuUxCc%El>1T73Z@angan#;%A8pZ;
zmVQr5#DS%@%B78W1RbH<0#)(yMsmS65S1$d8GKup3PoA~T_Bz|@^23BsBGUvB__)Q
z&_oeIZwAQ+Xh!^Tkq1^vFXEaaSQfC>?s9+5LpHifbk1pU_BJ;R>tB~OOr4Nzcru5a
zKAoyqN~>GyaC;$vcBh40MJ@K|!I!QvxH(+^tAyh?(s3(+%o|-AgmIT+v9G72zJOYz
z+!@h5J16_A&1aKvyTNn8{Y#=7|Jxx8P-d<}&1=2^&cW+#a|Gl>lVM@8Zu6VP&`#Ep
z*JNlhUT=KqsO60B;>f)BMP?uMQITU!5AxV!W~>oMs!-Y^=AHY6gsnAQ_M)o?^$6j&
zN!3BOtl*IOQYJzdz*_;K*2~v>_cyy=9edSgwQ_u3jZkE*$IP)DkZlq}B0#U0;weDZ
zJGUC9`X8r&kxMfEFR3S@?M{JV?>xT5W$MlCgLyFBjZ}ApByCDhfP_K5V!cl(1qcaY
zxqqVNcLly|P&Vl`t;Oj^;GZ<w9b!<6w&I3HNfe_H>Zg46n{I_<C08{?PKNnHqu6Iv
z$OFpf{T<hKxJ|8Uyq+fc3+a@d%fMpsPGU)>bW-(zrbLO0&*LH|rkA5hfuP8y<HTWR
zT8wR8k?SgtWQuB0XpwmW`ng@07QZ9|svbZ}(=ln{vfW0oyIw29L~8Ne*HZK36WXfe
zOgd=!1(~N;s-&*N8HY&HiAg$1y$^agz51ljXLOcLlaVWXv=siPwTsWDR?-hfiy*I$
zYIM&5jhs&V91+7-Z1UW;j{DwQ{qKF)`jHg;l&&BGg^h?}_E^~3b_n7i{AIw;oiYH;
z6W#1JR0%+EcuV#}2oA5#@kxP5)D!f{_L;=0lRy*aek5^2!W+{8hmip5x95iMr55m%
zV7|`C7Q=N22Dze8FY1GMR>bme1UmD<29cca*rVm5xq$@b>vWNm?x&D^5xsDTiO<FK
zr}C-gqN#y|@~y1T``N*N5CD4OT?^k6;=)4tL|=T*Zq=*H;)uByjw?1b=>cf=d)V23
z5Y1atAC&X|f&7yt3rX&4@PD%C-gb*0b-ae;is^>JjJ;0hzLm}X$5pb7gF6$+$M-L@
z0x|Z^sqzowzeQp<=DWjk9;jX}bl9&u14b!5&$EXA%$pmGI@Mw!QJl)i7X5c{+?M$f
zTfJW=vKVkGyEvGeOBKi$@%<|VpmYcOpLp|g&%zu&Zh4shv?t!xa6QNtlqseK5Knj(
z#_;_AA6kC@pTHxYIi%_7r2p;7=feYP@$ACsBhOsaLqW+u&lCK}QZwrRoi1>{i5Q9O
zjjUjp8Ce*U<Z0D_bCODFl>rRg{y2Pq9x6sfOXGfjrQDtrP<X@l&m-fv&(}Nn@TZk_
zaKUh79vEwf{Ju&}OVj=XbAQD>j>&h^<jC{dW;ZE!j9Cm>O*$YJ+VhIIU?Gc;Y^WF{
zq5*t@+u%0=G*!PgqVpK`0`w@aJ#&F9px*9AiwGqW{R7?R)Li!~#Uu|pcuEWp0?mTO
zPE#+nUHi!B9-1`TyK%ye-4XwY7Fe$1$bOqU1LVk{Z>gjjItBoP?Sd<h3)3mO(A^!Z
zE(Vds!0ft36?|8+AWMx`CAjhJyqxzUVG~4MQ0${~x;|HETjn#IGXckQfML6Dp;s$J
z=E=5=aSO9Ni*s&9NoO___f<y$FHE(cA6a>YkjFZcnaC0db+qdq>7ti5;w)^t?<F??
z4}3E;asiR!_Y*(>JrC{CJ`^`)-TEWPq8+Qw3^xYB+oOrbx}roVYGZ4z6>|Ns`O3R0
z&TogP17zEF=_oL8&-ZF&Ibj}rA?Vs@wECCr*wmJ2c0%mI_%EzTWYCAc_yE4jC{ml2
zbd}(|H%P{PmcQzIPl3JZqF}J;iTDDbopKAtVePhQCm4W@-`8A9`b6#SPk*+IJ}g{z
z#X2v@zMi_*maF{;P9ZTcv)Po`eK=98L7AG&K%zDHDU%U{U~|laTdcI7rNxNQM8M|$
zT4aV6Iws=&JwOqd@m>okjUees#MjWNJ7{YJ%@W3vsc(dV^Z)z#xd8uJOecqtgm9#_
zF}9hU_5Do$HppFFj#%HEMgLx!_?XnY?*jY}aq02nZ7e8uF%8FF68LqJIlDaKAXrg7
zeNq?$HO~ZV?HZw`<e_QH<~AJ4ys;Kz#m6r?$pp|FN7C%noJz>qG4Iejy<^Ep-b7+p
zPDoc7j%b~p+YuQj`>~`e1{%Pxjq0SThK9Kl38UO<^Djn1O4L%Yf9xchOO74Uo-Hmb
zCUKb(cxqkoMB?x1O)b?`SP27ZGTErH7F9`wH7C?c5^=xCe8j9bb$~aHaO}-Z3BHJM
zX?TmlG7i|4Wu<$K1R{Cr{QZ`=yoVQ&YKt<_Brd5uG-xTWklS(6x;X(4iI&i@3R<X5
z@P}^4?oTX&8^uDS1W0j=Ta>LxV0I9FjK<(H$)a>h`)GAi<X2M%8?y1I$YBWhXj*`>
z+lVGCs4r%*@#-kL{?5~EzB?k(4#glxR2BtP^s<$4!8*y#l(6VSFTI98+JjMunF3Dr
zx>fFxyWrz`77D2yT&aLQP}F+P-R9<;Ny}GO%U@;6?0NxHC!NnY@~f<U)1w9rF`mgC
z3vaP<RbFRo7+3rB3s3XM(px$)Gwj&z4O8?lZH?S04d%Ye7N>4*Rnx;wlDArHD|ZR6
zMwUs%i9(B@8r1$rPz1{rD#rx2NFyn98ugbyWqOJrMn{HWj&uO2^%plVIkBu&0<}<&
zsu)ZC1LwJp)uKwa9vZDqu10&U&ARo!6%>@3D{9pzChmM$(g{@FOdnB42OamM$E7jL
zHBsZZFiHql9ja`5>uxqZCZ?GkO4c^o5Ix#6w_P+x`ECX2bfkotD%52CuChJLYuu2B
z-TwF?ur~oPyQcuWrBj1QgaC?;#9W5oV$i^0Q*EiFWGif@-EFgKy2j10yjfg7h*@?U
zP|h0GWFC&pC&_kVt#vJImKGmhT)H6q1Azsy*eM;F`CWJcl{Yy2$uKS0`{n!`!)&tZ
z>F-vm8bWgJ47OQY{B5A5v$IpEcJIMu4PFgJrLwT{J!63CsyBCSW8=<ZP6QjeKe7+W
z`-#`R0$1#)Df#Rly%-hq5BmD$e%+LU;hn~U+?b2YkAC!hyRLgRDaItZYXfW?Ryiym
z0xodv7YHK4d;r1ZpoCndDU#lJvuE<K-x8e3@{**99lY^WXYC>bOfh_tIwh#WeA3GY
zB<ka|M&*DY9hlo3X)Uf?*^cV9Cn*1}@XDzv@@89iZ@}Uzg;A|(YS6W^=kMwCjB(x<
zLCLw+kZPqT%Kl!B$%!LFCcuuh0$DFk+NIaJ9wA)MA1wfm4~B83-$s-<>&n$5z4`Id
zF$3ElI58dbtPCS6HEG&$0qUMUWMQ+B4(_jxyIue`p0>F?dGyc}_{xf5g(vLn<S)Oi
zGEQ-XY~yTOpM_@wJ{sQ==qv%@@99Am7cOzoI(CX6+#yguX@JgJ<Btdf4v+2I{WP%C
zQUI&qX2xjTwfOo%)pXnKyj|>Jp&v!cPQc_FtJyP0;<^N;j%y4|Az|wd;2V|BQ`PPj
zUmfse=)Z^QwuQBMYu)qs82Y6@sISor-vq5LzWJNvi&{m!&lrxSW7N&V)N^ilZsMbd
zeqcsLU4Y27zwL3mCywD$#uc2pco*0ATzb#El7=XrO)Yc#@#QWgucB5U1kDFs{)^<_
z7%*n2o;cFQ5zKFqr+)!qca!}8!~kmj1%&zu&*E@=eg4HO5QFb*u>7F;m3DxDSi<%c
z@kc)XAJ^yO4#EFK5ycz#b3A@m{J-?VJWp}AEKBI4@!-01d1~*c3f97T-5_Qzm|qq4
z!TgH8zyYk_y~?AoxfQ1rt~*Nzhhomhm@6*H0KQJ3)ZG0pz6+}VtJpn}DI}``fqSrG
zT|PU){Hyq1;_~>wy1{>_{!!&Gkm|SJm-m$PZzJ-BV0xU&zLEc{SCe@`%zIfL22l78
zg06HM#P=ZoKRqeQTScCJm;7IWgd;1c|Eo|_<vpThuR8BPz5hU_JkAOK52A53^Zy_}
zT}A(d$azQVK7~8`6=lAOhAn){e7f>KgP+nW-bT6b_e8%U{EY1NB3!<pB>m%ohi7K`
zzo~@fH%HPBn=n8+ij)JT=cTT^sbE}5qC!Sck#S4Y@^;EC2+_>GlRf=uVA}Ni`y4q@
zNQttka%7NML0LBgX80j0jFkTV@#v_RV((klt)tI!?!Gab@8{xZ<wowOpJM;<EiP^4
zC2g!-you?$<pq%2vvVkkBfk6fvQrDh;hIv%;gI*&7ag#0MR>#Cv$>=1XBAGnFdQ9D
z%i)Q>&d|Fv?SP*5NimxB@y=d|nW1#fEb8Tuh*Ul%AZ*9si>_8}^lXy4p{Z8_v#4J1
zsb+|JcmB3w6f*XMK@jYI=lI$42l9lfr#hg=xK?Su2sn>ObgEn`n(LPxCzw>gm~3o?
zg|lLHyB*-9>ABgg?z1UUhb#4@oDV;ly29q1?X!LxgTYHHZ^tuc9lDUp#Mae5&s=3C
zc;d)M)dBRP=fFMynDb^sW^`f`3izd6eT{UT<dS#Ggf$H<BOqgK=hsCFb(f83s;dnJ
zCv4r`0A5RydpRULS!tB1sf^c?T?;3Qps_(=kS9PhaDwZItmh~Tv$(zD;kca}Cb#-{
zD=jlOT-%1+!S?DykDCcEkOb*_pXFdBA9Pbvqx$u8+hZ!y2`p=9Nuhi@YG^F%?=w`7
z5yll$;e1h};3B+g8ptXq3v~fwH&|Ic$E+_;l^7Egf+T%XPbieoXubhTn;?4ODhfeR
zb~RvqRO0ce?Uu!)4Uy+jr|MNNJfR#ozc`4wb)9%%yWhH;BV(GdkPQ`uv~NOec^xuf
zyT8MNCF~BLT%65jTfyReC7o`Xx^mJaMbsAQiafMfxvX6hwf_okcP!KTC|yOFJ~^@U
zP&=7LSn}>P+JE?1t}esou)fjb*t@%5r2^pMyuGNkViH|gS^F7pq#AS}Yo%4vlaoe2
zT>$|DxLd>cB%$UV!vW`k<LmxSX)Qo&XBr~Pf->a+?lz}OL}rXUf2-eQHJhtIiy;YC
zlq?g9#>B_`JZruNF~{kV=8P+8u?g(UT2gO<ToWXc&esn12T44F`vYonm!p!)XcJIK
z0e{O)Q7_SNDQOl6`B!<qq^VBA1cN?PiR$$u)wRCa4^ufLN{JB5T55+Cwd}I7sGo!c
zKN<MG94Mpu3J3<T>l7zn5+U7AdD=XjjtpVsNMT+@)^;~7-9RTej;&Q4h&3SuNDmJw
z2^=RR80I(+ugT@52(O^Bj*NwgZ4^)|im^r_ODv<<`}za*%<WnW_AG#Z#CRr!Aj<h}
zfKORN(gzI@*dMP{VF*{T%UHb9H!Gy5gIs)pQ$A+f+GyNAu5^MPPmJp_B@mEXeZPz5
z=evcEth0M4q!y$hqqOCUSj3G+UF(?(lNM~c4qK4Nl0u@+Jl<gfXOFh`%>XEYqk8w!
zo@aKTI$PnbF;ZSQhv0m%lv=NH;z?JW5jj@~)PKopWYstK;AAYhFz)<28V`bZhBUoW
z%0|U2tBmUiE*5-^Ulm_^l;8<W1*bH#PF7d@Gr5F}1ChY4o{RWYHoliw@NVsBnP892
zXXN&dRsvglRekBaeCUpdng!@*_d>xmm=YO3+pH}jxA>;?)woY(In<)~wOAYEf5p`U
zbIWaW?nfY8H9j3cx(4*-aTojMxfpfq_VXvYSio}vbJ&NLq+-l#!tMPj)c42P0?GCS
z!N;&DvlDgFF&7Cd(>6r2nr;1k2G+l!hsDUt)VQ`TL%B8)TcN<P)e^9Maho?%^C5gN
zP#Fd!5xj!$tMVmKJ1^v@-dBbF9BgT#R@g1Z<IaCMoStioI8fqV<ND^{SHU8fW{`<d
zf!kRx_6STCL2`(O(*!gN#FGuXEr~yj9?>b;D$Bn3mMcjF`KE|_x_i?w|Ld9Z_n{@Z
zIQXs@RnOT0d!=x-LODR^&)%xV8kQ0sx@Y`eW$hm5FfV_T^~);5;^`%Mdjh_kUT4E(
zEpW@V_#?Cna}29KS;jALzch2Hy}p)UN6lm+I8zliF>E=DJT5%Xe5q?hsr1sKMN=;t
zhz2{&TfKP<6C}%_030{TwBYzXs4QXJfU}LMGIU{~f)-6UIeCCdZdC_WJWTAYhRbhg
zZ1kkD0zNgFK-CrkCrM(8Nh#D!tzkO`uM6dp;`!%7Y*Rusym2{vFtg#g!)_MfO4eiF
zsH~7wXt}d)okEZW3}jE8Tys*=6oY8eLCIkO2DeGL^b|uIF}t*RLuktg2<0?f5}i5v
z-}oelVs(TU@dSXJv%I{#D?G5w%o75*JZM&r5=m<!22S<_Ck|JiCX8%;=d32Y*yekG
zNgwwSF2KW~EL%{PAYFAw!F;VH#fIVOLd7rX4Jy_cD;>Yd%Ui2{DgTVyi&|N<w`f;&
z)(lZ&J1!3o$jMc2b$k!%=_3^&ygtM}yxtKcTIUWnCLRD2VZ$$7pu{J_4j-bU$@}<7
z7sP=-TT;V*pTxP7XyTh01{^`4TmW^dC&K7POV{Q(FIewbg@+IahBQu|<xpxjvA<_;
z=D^Cw>*6T}e+lwpY1&bDj{DMt38)BZc=|O?TrVwkRU_4Xg)01-YX9~dK0>p`f;>t_
z#*ddgcV7Xv%GA;YC84E1A>4m#<4;SFLsA8`gkX@QPUkX1)(B~RoQ9&aH}^jb$o$XL
zz39bnszUbcP{byMuls-ow<P=+HxZ&X1pgpmUmIeoA>e+~1*t~$ZXd;wh#@)YI3s9P
z%^lWs>@i1oUz>sFb!~h;FTqdgfl6G%#)Fgo9KQqN^LWwoy(d=1$ip>V>=s$%$ftdT
zp8I*jO<G0XxN#2E*1fFybcGILgNkCMG<niPVjss5$3l4)Hc*PK&FG&LESCfRjsnl;
zw(uxDrOZJxP~L?#RYsIR#x*?4rUUX>8iNi-0|FgQg0H+-P*$CLP6jiwDX$?DSdZs%
z%zOZRDr0Jfo8?lOL#Cx!$+=!nu&&K%c*|bj5c`wPV=cUcu;Gy@uA8pnN2kN+$WN`8
zOPGY1Ev`%Xgpya23Ocv@slNPPdrp5SQ+<_O8`QDh;L>V4jkf0r=F2Cz151pzEt;Qr
zpO<rFYMT|N)x)Z&C|TfVF4l~H$`I-`AI<<@?TU>IUlVTt1exq$1+tNBP2C_%?vt2p
z{pLy2zo1^BLL1Yrf4I8qh0h>if{qVa@ck41aEMwwOOTN<AlSQ45vl5fYFN2=85Z$P
zO9X`-_YJl27c%ah+{jRJj6m$!L?cgD)nxG;^l*M}Ze;d|?Dk~k$8aa)BU<;AmVg7|
zT3Qz<I7jmb|4zY%tydZb9d_CKS_ImSwk7CRC@`A;m{7L;QMDB8>w!h}(k(g%J9S)J
ze1-^XlNCMKQrCclmJYhscmJBa<cy*6LBNUIu*SwaQ2qoZgtsTQIMJbf3vwx?bEq=$
zx1xyrdF1HrAOzXCzL8Pasg9p!+xQU%eD~XXA}^dpZ9I)6@q9(p{51bg{Tbj#)44p`
zDbxQIHg#cj_mDpZ_)hs=*WJAdFnRZE+4kgb=$rdFd*qK8P>=j~vP=R9z=AL_B}EIU
z1D@sj?Bx&+`w!_F`iBBuhXMSFQfY}QN-x#;2$vaWb0sQib#_*cArtltKiyC-_G_tC
zT^jJ}-fvI(41k}7BmO%~$G4}lv=@7ZWke12cKS5?f9%+A#0*3XJAR*g<WstpxTBpt
z5igw|#l!TNFM^amBis6IuXmtfT^+rMfQD_d*b({8*%$Q*nNXfLHajA|LFFICu}-uz
zK@CXrV8~cT=O8kk)va5A&&T!A!^XtRRDUtsN=mLwNm9hr4f$8*JOjUmK)@e6TI+Zn
z@qmxcog*hyd&7!bEPlT0x(i#GY^}wm`l0><gsd{T!9X26I>QuHR&j#rj4~Jy09z-c
zyT1tT{r%qSPY2%JhKE~cT*i)v)vr3r<2^;i{!P!e)TrO6BD=e}7%*Cfw`KX<E=@;0
zGVL&>>lIKwz0#WqeLr*G7m%w&Mfq?itU}{cRVwZnGk5m<O)M%%D8kCAO)x`H(Dr-5
zIByP0q9NT@sefV%Dak7aaL#L80j*|r1lmTPDv%>7PpQKf;z%?xnYKKjLGwj!51CCE
z!X=pxxl{a~Fw~W1K$v|eFawd=Yeto-<2tHUs&n7Bm!X$ej1mx<;*qx=f(!9J*=Nmi
z$O`KTNqdq;l|Kn~EdC&G*MtYf<rma}pw(~LzhPD^ISE!oe`z16dSd!21GKT;!XXhJ
z1`y#|UVWT*Qn`r?0>USJl0l`U`U3F!xH>I1#f4KNqQKpVgzz234m4?`$mnH=udiz7
zCrJm?^ecSM<OzO$T@G<}t0E08FvCK-Qd%hiQ~Km5DV9%V;f>;I7SE40bIUEWEp{tG
zA4EjRkl682OA&l$>}*4b0_1Q}#Q9Q+fWp+G@gimub4@_0bjWd%fK2FgW)Q<6p`~QV
zFimd-@<$Tfg2_ZHuzh{UD`N5^;<=Pck(ukF+;2k)D&4%ZR(M~r<aRR8Sf6+6{|w1R
z!wk*_fHmM^N;WeEF9#rpKU)&^Izl}UjE~7k;tA@4#fpb4jVeY;07#XhjRWge6e;G>
zc+#DWWueIDq}P5efVpZaAdYBPaJCm~MalbwlXY7%uIu>dsDLH~hPP90k-uXKse`Y7
z*VjqKTW}$e!KkI~XamrS@+;t`=7)iRYi}7_)nDfPd|ggeBxKqTV#!ULdx>~*)U_(o
zUU<GIt+M*A15h3R0>pap?pPHB4iz)1Y=f{7Ddl1scXqmR@UlW%b%Xb028&h02`$;y
zaHVR}Ktq0@5RA&cCjf51g$Tb5y?11)^F018$K|iWZ0y`n;XvC&|N7fpoi6s8t3qbW
z6-d?c`x%KGJ-I2DrE&Bc7_}OWp7%%tf2{1&!YP9upEx0R0l*8M5b~SUUp=@9Dlw*l
z_lzk9h3cLv;S0mT@#&7Y6ej}M4wr$+9px;JW!xy)byZ%i_Cb!WF>RyDzYrRDQ-TP%
z>XWv;nkyB9WgMc)O4`IoC%P1}mKW!eDmKi5+)>h15ho}$CYYsB-W0s@rBt=gvkiL+
zO4x;+!~U2M8_<uMy5yNcGG?&ZesapVCvSSlgo(W$H<xDmpc*L9(BprbQTq9)H>=$t
zF84=@%>CsD<6F}Q<mN0X)h<iW3})$_yp~}*IBk?ND}`3ptt;x-9XRim3k+|PId#iC
z$=)D1U|9C&kpgd0U8%8?ejwbny=p#m%hiRw<+f9!4G`tzwinO4ddinx2i}{9AB`y0
zl|E&7q}hip6fM0<t6N27%ccp93vt8q`veCFkrY)q9l`)soz3E&R!M>toHkT$WMmnS
zJI_&9E>zABk3_N_8@L0}mcVrqrHNQeWE7brK*1kESYAacRkWiQJ|s*3cM6;wL<d<|
zoWqMFR+6e1CSbzxIDb9Z3DooQqf|+mt00JUopbV2;rD23C2hWTl$o=ElFF?elFA_t
zRqJm@)MqzAH;Q>)ri|b3UBdGYKTXcvYch>lbbrjQd^Y3;#prU;;5!fou{{4jp58e)
z@FwUMj&0kvZQI^pW83`2wl~hk_QrOyF*des<9puse)s;@Ra4b9GgVW4>YUR(r6z$)
zDD;z^_ko@-lpbSIRk({69e1RnP+8@ugQQXW-uSt>vX1M3<~QIPKxsWpXCb0kiXoNe
zQYWmU5z;q{<0_QDm13eFKOhw^!u3%Qpjp%7Wo&A1*s)@~GJ8vuwr_J_tkkZN<~)Ak
zpzHsO(+bM`iHUrIg?kAa-k(8)QhtY(fMz0&1#gD!9L0D&2>KfVMWAn(@sCC@JFa~c
zr#7a)Yt<fbZB@Wl5cghRi}6oyX=cK|_|4&m8fLsdeUAVhuSg|Z!afrf+~~=)uPfZr
zi8`H%6J>6y3L|8QwOE?^ZfWkgRG=}Yo|2fU)-#=&N}wo#^{p8LgSFwl3SA~cUTvkS
z*?jrE-0?-_fQFvtqXow9ugA)A2&<gPF$M79)ICR_=n?D2{?zdIJ`q`EAeRBn4fK9X
z-~#6wUlvLK*S*Y?q)$`_M$N_0KYTSxoDqKmT>ItFOcJ%W4yPR%b8U~$kj-*ty~Z#J
zGQM28gDtQEmoA#IC>jl1cO7)$^S^9amZRo2%%X8zL&~Qr<m_&5b?{9w2~0=S!z<yO
zxf>KIRx(Hc%BMxH{zSE9mjG7I8bRhc8y7bto6PY#7MW&@qPp$+YdO0%k@Y^BZ@0U_
zrLHkF6dIS1ue-FZlhx|vZmIMzX3eF$X{&%gsdU{_NBsbG2CGoJ&ym8f#nQJvJG&WK
zN)~X@Tp1RXbBM=ST6nGYADS+Qe{N;p#Weh_LPg$zMsi!S27{#~(`gCvJ}x{9lbN9_
zXJgG8zDGQ@RmJN6ssd%27PJqT5`>w@k6AYk#3SqR%e8b4=_YR0%|}+cVmarobA}6*
zn3DmdQ-R9rO_XsClZx;_7<bB5U(?jp$0JqZD7qA?<y9Fy=kDl}T{ZIi`ckR7yxhNS
zx}oHNY;bSNZF!|)Oq+QBz8wJxlBlSAZlmQyeUSdy>u6lM-Cty%e}{3_Q^XqANFDnM
z?u=UDV=Z&tOtfeea*TH9HajJx?}rSu&eUbN$Va6sydV)Jb+B$7ACD$>?n-OjatHRb
z^$QrGRVX=o?kB<K4y7Vk_N+&1VNc1{*8PS+ntF=`*mCQM(M8Kh)z1ei(R5?LI?!N#
z2=fq+h=u+wy`1|zq}Br^dt-U)+Gndg(5~@O9_L^0XzJp!wH+)_fhn2Bwp*N>xV{})
zqqSdaYPKu59*dhcHlzRLrzGji`o}g|UlvM6De4{LN2yx#@2Z@|6JH3IgrnxU?E@;n
z7p#(?&#mCAV^Qs*NOW!gMuA0WU_6b5fiX3Cg5=cytmDT7a!D)1OCs{~b#5t!!N*D|
z208YmhTS5pEqmj&TVgRQr~^l0d9!<e^CZ`FREv-n=<9?b|4b1SW1Y3I(U~7OX+$p8
z4$T2Z@U+0HIQ00HC*1?MsgB+#p{EYOD8Jve&lF~6O|V6U^1)=uf2B0J@>xpg3H!s7
zIZAmS1N`Attd{2@HOY$tO4_1)bx?l6y>jSz-OCfBBY1dO=0`)fwA8?dC4ZyBqb8+k
z>f`KNT40vB|BcHCHq42G#_+P~3|HQ4=G@V51>f(4+frVP@^$sn8dq#(rK%;s9-1;H
zuX*M4lD73nkI3+mg3*Qe)LRtNO5f2r<ZAiWz+*W1PjdEr5H5$_roNHCgz9Z_=>w8h
zC`fI{JBn}tt)#JU@LC@M3;tM78m2g${~f_t1GIM=L&~_})7LF<{3_r@NeNrJ<JLCL
zHA|0DvYyWDYZGQUA`F67(=Ztr3O7QYP$X&;*<Lr4Zx8JPZQ$hDIwVtYGz-siXumS?
zUJ9r(vac}2RSY}&i;R}87HZA<snMR*8#WkX*f$(TW-+tJ+c&PiL<u?gh|rhzYX(HW
zciTJA)GAlnfgo-)3151j!DZjWo62SXDO)Ula%VjUY&$|xH3AM4R%8LVBvB>oVVzx`
zoa-?`bYArSf>Vgw)+th^4-v=TfGsBMm6_K&yGFbmDQ&_5ntE$Uw|DFp!<{>}5x@I0
z+_KJ)CS*)kse5?w0ld9me|peH82}aJ`RoG=(VsmVgGRgNi$XAFo!8z5&?R78uGZh*
z=SCmt+70>vuAKp%L6g8tl>7Q2_D5T2Yx9@?EB^dH1g)*kjya~*SIU5F<(pQNy))}8
zGrP5~i?yfU)qpnNd~NKtsDkzLzP%wJ)W4ATZ>H%Vub}a8(|M-=`w)FnKm}6ybCIH<
zKi9^8i_@;hT@UBEKh_KFM7m{KV~hxqlxUy#;fasY1unfm1sK-<p2E`S8EnUCLp_rC
zf%44b3-?&v`iT_?*W_ES|Cd<O;q#jL8(g?J?B)Nk<J|v0JI>C=!;%uBC=N`<aJ2r{
zzF;(W+^0}HU({)Awc_YYwUeC^Mj+-Oi!g#Tg#G=ls(Gq<md?=>A7b3QiCa;rkzgc9
zQB{=};Qu~TJODVjYiD9r)lEK33U7b?XNcIo#pnFI8(eRl;dU%rt<x6v|1y2sA5_v)
z%>V8<)fHT<z1pR=%NOq16b80?gzXmP#&d<PH1vYlCjKkaDa6$`wcU4XVVBQBGq_ou
z$5(G9v_<NMQwF%AE$t7*U`t1h5KK}v{z9eQ*F~*cYe#Q{-{+UNmrV@0kMM7kb_O@t
zYal7%^}CMTO^#Zdi<OsL+l&64C)qyROeiak88_ptQw0ZD!>ljwwZIV~5`D{|yF+Ja
zK2dL(Bs`-YcfB=jUEi>t{n~ag`MliPSI=wq^3XwFHVp2{Pjg--rhraIpPp0bTHO?@
zW*vO2xG;;Own4D3Zi&+<BdX<tYc6c%Y}w?OhX`1NPf@rJt|&P(85*)dJ7PbO`-UXC
zudi2wZIk-Y{FdPt1%Sw#Vu~dOI=99DCPtB}h;z=+tOEKPM%cgGqLX1xBVNeh&eKMD
zfZc!@5g+JwEX`zK#h~!2Q)$PbB{%^ak9m@DR-|rDo`#<5@4i9A6njFv@_RD>%6m=b
zrIR+GmtJz6VS=f)X`goADZGX}Xol5)pDn>||JL+sncd?<0z7-$iq0V{|G|ZsN0eqN
zr}Jm;lP&U!L>#MbySso;LUPKgbdwubb!dU?*V&$jV(g#6*Mf-N?5NjEGQ&+iM=Ew9
z%0Zw&R=uv2IYq}z)WT>4EZ8nrMxq;z*%+$BKzl;D%j2A@^HAUGTcL^@#fMPKSy<lO
zFA=4=b8$y(1AjIQ<3t2@q~{Hy4c~A!NCgb$=7{#_fq*(mFGb84w@n1M;(3S(GUd?O
z9LQzFogVnw=3?Y}@y+$e98Ykz$^&p#JGDs2jG>d*O0+VHR?cXUGjay*tmN6A_MQ2h
zM17r<wB!`}H{PoyPkjiOtvB#1FRG>;IWme?7c@;?fMO+!ijSx?JQXYv`KWgyd&SqR
z@lgH3U-OqFv>$p0oz+dBx}O_&tv%*sD)||bb^*eeD1xs8teVg^3#3<3?GebxvlHKs
zf1RHkKU0fuZSb7zr}sGuJ|1CG4nX?_X$%YZ7tuJYCM2ac$cIv6M3x!OdNc|(L36uK
z4TA{M0H^u`v1YN_7uhDBu;i+&!@+MAM8PPam4Q^3Fh^ZOQH^F`p6KuFz)ps&^r+j`
za=u8bhm;>}9C=Xyk<r}f5U<h9fmHVF3YVrtI3cwwsIEI1GQTMmH22?w%L%VEKChz!
z<xAmnjK)K!T(N(GlZ}+}3%`xi<M0Gp1xiaLfGr}zs{;5%a?;X=XK~MF%a^)Yu}H@C
z9&Ps9@5%pEpXp+gj!X#xR9R_8F*>+Q7IGd_^{VtT#@Pv&pNkv$p(~PV6W+T9g{*wO
zU5?HXVePm}hvDc+P^~1bOH!Vm{fYT5{sBGX*RsnYB~x`-jI7T{kfxuGJGK^&IgXZf
zz|!m*f8t!Q{RB^*_3D~Y-gI-dt*bZJLZiH|kz=X3_L9DEmNoB^&?H-}V=(UY<5b9m
zHSCjq>QhXHI^d2i=~V~<j-aGV=gF|SS0Qy89N%~;bGh5jX5Hu3#DJ=()vIwrlEsMv
zqIUB180#R;=#XWxJ3svIQzN%us=!_w;K78|3QIW=pTb*G%c|P{fIS~gi_<)tU{(f`
zOG*2zY*y@+8#gW@Q@RWLH5x0aB@e4s=YF3n2i0ljxaTr4FRXRk_$TQlTQl(*Q<T?L
z{<s#*az^uEcB1KAOFqO(erc*)Q?{u$<MWWzUxH8JzqXX^%YnCQ_SN@TQVJw#pbAw4
z>B9#q5FD4atV*y2JG`*Iw)vMJBZi!g5h*`iL5H(l?H^+#w^Bn7RZtE+261qlH`}nV
zFw>$!=dI3aY}ZG7<u>ilkJ+RRzsg&d(ik>mNQ!d-kJxI99P%Z_8VOC?m_b4&bd%IM
zlKxWXeNe`stO9JjhO5;*eYG+wV05pIGQ^wyOb?v$i3%W~d6Z@e5DlgEp??AwpiPEc
zBHr<O$OvENXYVXmR<hy{ue^e<f0Wr2t6w!nd$YMWuYvnKyoR8rz2HY^k&du;M#xiZ
zyf1{64@4N8GZ;hQ%H=t9l0x5lI^g^7p1sQ=wG?b!F$4y#H@OHGyw!gJ_WO-++IVl7
z8)BMX`aa!TByZ<fCI;OQ$RNjHB^5gks8kW`<D9dG2~%QeuxpP*d9GgFyeAte%1(_|
zywjjY^S{XO2$^qmcvvUo!GC1s*Y}?tZRPm*!V1mB3rNS<9M~S5Ky1dW6i%gn`fL_s
z3Z<a@FshY)N9?^1D*j~(RQ;yDWM!(qFCe?c*Bu@?HT;(7Q8eAG7GE-+>(3zB4nDs>
z#6&J+0BY?2hU0mM3trFh%dYpOxX${4*1XPu9JY-%_J<#{pVNLHt!EK*eeN|0rkuUY
z3&J6mu|$%P*_)rBh?}eSKCj5ER(2@2x%g7(`_v1>lADb7Ob-PB31!~pyE)hUgmS`y
z$T8ifIR)<Sbb|CN3Z9ySBqmM4LY60kg4+Rnmf>aUmvl#FQNa*{7c8JM2X0(SD^qlj
zX>#=kh$U(XA!=h#hY9jhE5orp{1<h^AUVpvs=Zz2E1CI}72i$YEQHFL=+>@r!?6%_
zJmd!FaVO028#A1Nq})jX<KjoUR~%l-DH61*a3NGn)P21@qN!%jwFyz#qNCDKyjvya
z#X}XBS$ac%CYX4<x%&02&hs_wWu2!jvLEBPWuo2>``!y35dK5q-ZeQPZ=>6!??+se
zLV_q?dV-y&56Ck={SFf9Icjl?Ap94zg+_D(sD2(2MeBwG`Av)xs}Bga{_3?02Fe}7
zN-uegp^Vk_2P*7JWtHR<Ui9)1_4>3TR`z~F#Yh#HKE+$D=7qj?Oqk6HoUB6%LGx;d
zH)0*oD$@AT{8`g(r}|0x^$%5pNY?QtcW;#y+)d{gD0a07Uo%&R`C8zgY-XAGzUmfV
znr*rYbfqT1RTZvEdILaNqMfq!QEc21l(@0|SS!|A(f4-^x}guJqw*}yeT=_3;$f{>
zz{Fd6>gbplJ28Uc-*b<ea>qeehD)W-esVa=<6_CLn5G^Lm(PXFuSH!K_2z8;h^VAX
z<QURU+FQF6dsUH#|46fBMU<h#xZ1k-gsUf-Yl&AN>sCV`*Qw@E=eXYjr2bA7+i<1l
zDRRfipAMeMR5U%*(ImxHT4aZ><`4?iT5LX*SJXmPwZ7zE%RR$=#hm!FO`5A27k%Es
ztGYdN6T3q{U!_Z7<IY&seoh+NxwPD&Z1BUU<{z9T$f1*-Aba@zQDBPnKM$5z|J%MS
zWxpJN?L|3A9`4C`c^=CJ{MduZgrKru>YKyr^*&dqm^RmP6_G3e9j8t<^ChLCcHVQ?
zQ3@qK(+KC>!XCqGT);)Juf}8EQRAl$+1&tD0h6Q@-izURquFF<3#NQ8zD?!nE8?iO
zeAuQ3N@vq^e-P@<kY4GGbLj~nM#zc9Z-f9+?II4|N>RtAQtV6MqPsDcDsmt+;;Y=V
zz1eN!S%$gEH5O4BSGlk&%UqdrSR1K-lfb5cf!?nX!KB99s{XLpPOfobT>c+^*{l5U
z7Z2)%2Jys+E4%;k{|4G6+QNk2pZEERhnnrD|N0&~WtD{+;f{wDg-4Ax@!nGMOM8KO
zzldQdX2F58*{9E(FFc2vf4r*7zR<Sl@7mT8k3V&>?m{v1KNHNM{Wy|N61WpDq5`&R
zBJNm*wNE1+mv4RELh@da51${tDb3#o5%acS_-T<pIa4EOdgOp#Im6!#bQ9My?c%S_
z{z;ZypocRL_YT78WsTSDZ-q(f@aJSHcLTwSeJTO^y%ul#h%`WHz9+M|ccw|q*Yg4Z
zswKw1@W0}Nh%P)BCvS?Pt{8wPAH%_U)6@HVW+2wv6E7=#GncSGyJJVR>lH**l=;h_
zK21YSwqv0wAe!N?QU`sSPcPdZU0HA5S0=>A>agL`L0s3{=?rmx&!^p+U^nVQzOZn2
zmoP8;ltX*R>1V|0edn*@%q>7KES>w74(pW+3ljdNE){J;r|?YJv=w+Z%G=t?@3BGo
z0c|<GW^^2>r>F*ccCAI(8lyLCa5hzQgNo(2E?K*0zED-a4k_el5)|Qpd7o}1On#z>
z2hx?PS*6H$n%fLh$hCo|O7f=-J!xa_Pbid;mDlb7e)n$p-CO*6+TbO3JiVXdsP{*6
z_F^;Q?v)ya{s-nfiYKsRU6-v3Pi`XV;rWut{#(pts~EviBX!~V+UN>a$V!8bC0MVh
zu3Q%Nu{>^3q=X%*7rg5RdM4KGOjpPH<WpvQda}yl!9G#nXfZYOU~Mavkqm*1b=^)I
zG8nCoQzf=fk`u%P>k*8MqxPgi2HOzS@Uw%GKhido@-)mfL<x98(Z7fu0~Jm8=VPdT
zW}zs(A|ckqJtPeZyuwZOEf}Uz+8^^jpip$nck1v{h5EM7;1%Ni6Cp`xELI33@qoYw
zLnrg~0!M%Vn*t?dD`?yBT5{Jm#v~L8CL>n)F&^$(#6m8>CzYuBo6_4-Bf$BRfcK$M
zE-e=p$z}MTDlXs|zf+?s5k>v6JBj*i!@8pz>#ukLO^)Ojav7LWshL$DkY>o>^%qsD
z=GeeF*!pDc(lI-Sw~C}f9)`fx46Wv;Y+Yrb&BB(D%qg1Rbju%aCP3t9Sq2ArCL&q9
zvtbh9wcPjtRk9H$+KmI(xbsCqvt)?Q3V)9yPdpy+Y!ndGva`yf)n-W%g%i<Nop$p1
zok>H^y3wdtJaG%smvVnE@fdkv;EXK?ky_j=kt=l{FY$&E;1;DQ4LfVEo67$SGbC+Z
zUqUxhd}+EpdaQD4{3B9jsP-Opb-yTTL`FcNCkvui`p@<epTmY47+NYWnAN;H2`jX-
zoP0pZNg~joF61OzpR56eV@6A>BW2qHZ9N4w5x2WYlpSJQL=7J-wUIg{c8~`$>$*?P
z%6IuPu2NU)uH$e=`aQI7fkt-9I6ur*&N$JjDU>%{drs&+U^%L`n^x1c@+;LhymY8Q
zuW`*#(SWf+<#VIpid9Vpnlnl3tKbS2CiQfJkq$_-{HY8|h75Y3bYg;98X8*Wlo*|V
zvkZ<brx*BmGt~DS9jkh3j<p%Kta>_Zv;Ie;yX+*9om^|rKxKFCes*v?k6DiOnin2n
z{<c1sGmn7;-#KLXl2q2+<R%ruXpdM#e7MnW;sQ^xdQQ$^b*4BiX^%*5CHI#H^4S5a
zi#Wi(&eSD^9HX@9PD+gyFNT|uKXTGDkwTlEb4+A+)8Y5yStE;&aNUA5**2bqf#b-<
zr<N{ck%da#6!t6KU4K=Xa3LEl(R{pHtoiIfr_Uw^RFP3yBDr1quX`s>5vi>gX%-`8
zp;HsSjbb|!%1>^CMyfp3SN3~HrilH5iVVQP>ZYNfqPtA%7J$tP3SBkG@JCxDXbYm!
zX%&F2`bcE9?6j6+XMc730yAdJulJY__$^UQy6&w{rj{==R8GzcBugYBgl2!M|FZIK
zp-y)Q|DboKSOh|@v$j>E3O?o)EmH${%n1(ay9e4YDLnQ}<Ij01O!jB?DwY0gHUfqi
zJnOn<mfEG`DZ!UG2bC&BTcwR8=ANnB8N<;R7}zu$t2<99>e){>stjGC&}H$5eOX2v
zMzT7UPsGHw&(Bkf;3K*mR&te|PSx+*aWG?~r<@eBQWqkEj~F3@78f}Q+)+oH=HwL*
zbb-Y4DHa`qDf$^GIaNn-_tgys41oIMKd*1ri<2?A-~897>5@;tboP{&o_^I{8*<v6
zM8y?M$#3t_mx79HbPKLC$rO5UvJE`MBHSr#@V}zx3eIb)L^ST0j$R2=vBxE3RTF9=
za`9E#Sf$}wWD#2P2qc+Z30c$_wL3nx1|ErMI*CPBRzVo<I4s|)^t{Yz%Roc;aQzZ(
zfxGR<MASq{*+fZsS3$Yl(YJ^>F#&p>o9q0H!Oq-F_K4Gute79iBs98QaOS@ympguX
zsqhJKoS1vk+f!%Wsh-g>U%Xwl{W-Bzau$x`k-H-;Pz$@*&@CP-hSN*~*GX1EfOkqo
zl8Z0m+3JVvv~=%Rv3EEfR03SplkX_A*LF52oU+Lj-22B}-N=j79)G${A><%7tFxL7
z=n7PKIXBZ%3C+GW8lTlax+Bl1!C})vul_vx&++Gktzz)?r)jB3J$$065uSwFIPs9i
ztxI}hC6})pQ<=$t_ES!Gw65r!z$Z{D=hW_MTiD5UakCjQW>1wwwh#!O>0Wc1pBbem
zq2(G62F3Oj%p*S2$*!$>^I}~vc(UErf@QtG6-ZCK<5=-|hQ50K4K^kyut{4=*0#Zr
zNZxAdt8PVO*nFKXyOs21F1>kxvq2+7GS#F(qk*ly<j-#XL^zal9DNud-5O$vpjHv7
zF!0lbsfYW5Cfc=x@Bw&-s%<;tYK&4(1=aDO4JPt(2QHU8Xibks*795BAj3`2v%h>i
zv`Um5DpZMFA13`)yKR|?+vo`2E73Pm1fQsHyz6IZnpzRhOnEq$VOJuCu8n2T4FyIe
zeIETHHzKOa2p=fQi~M8wjwCm4)a^QeKr{L$QwV2+Q2mX?FW~zv#_2$F<&>G{aZ*;P
zw>aO;oBuPtXH6yRgU=uR)HbjsA_D|b^4PH%&jF@aMRvvd8YDd)z~JtydeyVS-lbME
zT?5_1{1`-(;oqJ4?^TG#ChR?@w15ere`-~+uR_02?h`x0JXn5sw-PUa<0zI&XQA7`
z@YO=?gkGuY09Fi9aNQ76;cg%tDQ{llUK#ZZTcnhr*^|wIr{}DUxI(qz_;7Lq!uc`+
z;-gC-0>2mL^qh7vP`E~vZk#zcR8-Ic=#|aI|0foq(HyD6CUJ<(-`TfmD=eV+n8=@q
z_@6jP1&cp@kActpr47%4hUR&vH|q=PjK^9HE+x4a4UwJw|GIqHcz9BpOhkc8J=vHG
zE|i{`x)av|{^dQy*upY<Vi#YQMDa03_yd%&&V%bREJjNC#?D_188<(-Vi_~!Tl^k1
z$EOqxzWm<z=lgm+>>S_NblmZojDUdmuk6X|D<#+0xAXP)(I4ymH9gv`Pj|NqhwF+)
zsXc!G4bLmyKCb%p*MHe!-l7LMlU>(Uwka{%w&drm2Ma)Q73O4Q3WvWL;`3B5+U0I@
z)l_#Kh0Y4orjMyQm0JG`SNF`ml~?Dqxuf1iBv}#e=r9p#Ta8txuNvFgnkZM9AGa{c
zpvp|B-Fj6PRCCf!OnqNqP+-^U^UM8wseoF#L9k~Jix0j{lH7iz@5&xnDBLoOa;sSA
zgtvj8gF^sAw(GJs{LW1CkmFt#Q0OQ!8aDj7n?StXT|?|>6kTgSWxvtBe4@*(1k-C5
zskV!li_O^LI_V5P!Ds2y9s7%6jG%M_tc@hA;G`WK9Y#H+i(fA_ZBr*1z=~^Gn7#2S
zu|Q*KyEOcPT@FeAFb4z7^(l!))`*K&-CC^7p8aMxMv)5li5TktW*IuwPSj4~ILo3y
zdI!y?vVJ~7a`r5tS*Afv4gaZ%6ZbP3l>=J+l{5N}IK6C88qrSnlsIBFMtERG&uoov
z>>{+zk=6I+?DhqbxR#?|(g9iKi_MK8_c#OTI_r(wG%_n4S05B$xITR;QSt8*jJH^N
zb*ZbCzQc!DpbDh%Inu7Y)E=CMq1v-`y)v@jY0f9?Z=^#5v@XIgh&hsK+b(y}7^Hlp
z>@^JoxU|6Jgq2t(f7;u(aglVdle<Kl-`uFgx82e<t_p7d8Tz-62gdu$(E^e0VEn`+
zVukF&VZddhcJB58gI%%^02^sXr@||^Ra$6}8kB&;n?noojXw^#9JhghBrnrVmL8t$
zylJWuxdo+i$Ngrl9Ury4??tajT0u=eV@Lwjw;#K{nb?V1^ze7tT{HiKK~)gnh2JPM
zAwi||F=HVG#p_iqr-ll5P`6UjPeVguib^Rw=qAtDaMo0Sxq2}8`FtHYllXTSW8+kz
zURxs?O+=k+L;4tuuZ9(J43vQg2gZekTe@CYHxGlq`Q5)R$&Hv+E8a?z7#Mu!>V#P>
zxj=yl<W0MansxDDa*kXIBQ;~o@Gid5uttG=jp^DsT)82brzjsB>Qt9`E!n;NTf(4k
zRGZL@iHkZwj?N$F_q&em?%S~d)_#!5PZ`0y%k<BZY;pG1PmtXHcv!m1IylJrx-;Wy
zL;E_^-9>OFEeWI*oo0iSXT$_69_&dn9<Gd`0R;#*mv=Jo=+fOA*OETbxawJ<(Z4bQ
zXw9oFB=b|n*$GjoQ7L~OWte`S)F#@Spie}{4~;$mM7$Ep7>pkF@Ko?SDeMMl6Ubh3
z5qV8~w(vi%{X2M9Q{5?R8SPOR+c7r!)8Ku^(L0LLdLGpTWj!;mga$pE2?IGXJ#o=H
zhu~2L9|_pKQc~T}bB&SSbae&#yR};Lj-fBBb1zwN$qrHz87(3%D?GiJsI!R>Uh0mE
zxkGaSec}s5G`h3e_L+vXmY*!_3R8E{)7_tu*Q=RuQRNRgvL=nkxbGu^t7C>4V#H@-
z<(3pgBcu{&0Vw6^z0u7+2N~~E#O*WjisADJC~Rd~s)#NOG!44KrDL;fpzUzmm;xS!
ze(4BYt!dQ;^WZ{KnNvyW159d3!RPGQtJ+{dM`Wg5=oRl!XjbM@2Y|<V&XRWL6QN#W
zXqul>7o2Ku4^;?5O^5`k2!8b|&K-Qf(mI6GAIgteT*FyIqk7=*W5ev?5-pV>>oA+<
z5M;rt-&oDerJ<(cPz25;?-M?YW^ZFs*+*$ZWVU-!Ls+z*MUEHNgVREig42<Nry&JU
z^j$H7QL_Rit!!Z#s|9uNEI%)$V=9aUxyDBe!rjTM)q_58iX680T@XmgZj^vi?m#&B
zUg42m%~%|6(g+ozCBH!wY=Z)G6o`|CGp?5wdvZFkWnV#9(J8o2OhbPB?4u~iEoak(
zjUw1x>XG)TnZJ)@N~LtR;i>b*Q6vJ8)JJ??0b|1#q7=vV1a8R)0(CVqIX+uUn|&if
zhm)Tq$e<Bh7aciwOc%`t>5=VnCwL~PNT7r(5-a88+a;tB;c^fb!FC~7b*%B=@uO?w
zc1vJLF}XO=XQ3|r&A(GMs96TAnP0zW@jd?16B23U9@$^liYWRczhh<&Zqfk<M=}ea
zT*WI6bdP`g$dUv6#4et%kU$|+()JC0Kl`ROMsg3Xzj1(hG*N8VMi_4TRcZ=@s+($P
z?dBkBWkprrM_NXbEbFW{{a_d>m(U96TM9XQkaQ>C`Qv45WxWJKSX~MmSn7(if}RBr
zC*30W2S@AIU5e)YsN*9~=;#E{M0^u>Ctg4BTDFf533q0Jow^BD^J=CeRZ#5#3;%pt
z0-@%pjQA5t$wEm^)TghWE$D7Rk6S%HBI2*x-dc`A*W#1Vg2hS0<T^sq(4n#0Sw=k%
zuNBifeFa1k`*oG505qQ*-DcGr1vfwVUnmgWC4IBoTL)hF`QG>XnR_t+*dvS0SB#eA
z94BSP6)}U}Se1sR-q*K(_frv>HP>cf0nrOI)?Qawp53nW378Bj8)djbKn%}N!^QmZ
zOzlwi(-{ep&+GMcXw7|fKEVKw#2fqy83#Xm=FHS6Wp-KZ&l0cgp=&Zaj0#<uQ`JVf
zY!7(SWulur582EtX}lqz|E&29b^O@BHJzF)dvS9>)3s#9el)Z@brAWAu7tNHt6_E<
zm)z+@@K|{*$FU<E?PJv1=<58(B_qfG2@DT8ddj(-0mbT#h7?qFTSmJlzCyt?@BC_d
zpnz~j<w|`q7O8z$UPyFmF;cxoe;3`R)b8tY^Lz1v(nhO~n_&>(?JH4nkA&y@wyOmT
z^M{1pRNdbO344H?HAX6rh%cH7adNC5f%ndbeZ~?d7;~?R=;Xhc5#m<C*zK@^sIot0
z^#a)tYO`cbTq)I>^HlZx8r<yA4h!jw*;5W@^jL)UE$l&s$r)!(T)Xj1d_VkeUQM6t
z0i3ymnX8+Nxv_mpb}uXfJJ<h1McgTZb`pSW%mWun_y2)JdiL<K#vPmfV~qa~5_yhq
zCwQc3P_DAKhX)mQ+B3Fv`)Hzd-cAZT0!Epi3sT!d=Bgim^m{&^o)$badiT&hUY|zS
zKlkmOng6o)o=%R|Wn3HW4GjM`GdN%SwTJdk<FUsfea5<GwVma&Vl8kntow4)qey>z
zwa{a5%=yvg=x6w9t4`1EG1RphB+nUzV7i&%`})#oRBMBo;>*p***+H#EqFoE)8#sB
z`P>1-3D3uWEHbx(w*_w12AGPC<{u7zUi<?WV_47GdQ3=#>Fww~zuTVCbyRocgWF1j
zr-PqHDURlc5Nr1NJ_Pn7T8~H96N+D(yMB%ML2IFjFdO#oT`{B=xAGyLJwkcCGQwVt
z2>dB``{uMUYlTxBss95jzM1`GI$vreg4f$O>0qwg{x2}|6WBl8{5<y68C2YBA?BEe
z3)zN&d%n8cqZ>Pclu56bhiz~H<-+eyi}~$heatS)MibO*AqC_mN<=>i)Tib+G&ZDe
zRxC&@`rmrdXExxkhRT6Ks2WKUrXdF2zU5`xzcok4zR}pIj*6l}rI*M&!_}IUEnR6E
zMs!vzLm>x`{%Jr9eZqr9HuX~A<pV*3iQylg=Tka2S|Z6Y^ioz9(-h~wJLGEhNL6Au
z_VO)pfI!;fp#sh^N01hM`@<S!f3O4>+H<=yH;w<sz>s!W@3(72AlX3D5h9H}xZ>>3
z&G{k+WGM4&u#l0bcSl3pwJ=&_n<j?+pA(wbU5+0MF>zYkYx}z`M?z@2vOQe-=~wCU
zvLAx%w5_n34HtFgmAQPCVkBsjg+B$9q3!4tkAd^@A>hkXZGACoQ@mlTaiex@w}Y*&
z^QJQdvQ}S1;KihS95=6GOJ9sZ%Sb0&^Y(IorZ%`twrB_q0s;1m(BfeScT2Z;CA31n
z3f!p++G$nwn;O4yV!*kgzL&3Bx{$2`l9DJg7NvfJs?Z|E3Hp`i2j#9Dh-TUaSn|xI
zDWyI6Gk|9P@N$CSJdSt&BY5LbE(tqRIFFNNggfV%$~q7V#L2Qj-!9Pwv4$L1j@m=c
z;rGo<GWei$pUrO%b-L3->vJO$U3Ht_X-M1?!tz6%6DXUe>%cfZ?gaFC*NZ48OdOC8
z1mw*sga_T3M$l^)j#&1(zN&rjsC&%@WJ<&p7T^y>1`lPJa}se|o7{^IXv`Fx+G1cM
z`O1yfFxW8bR}Dn&CX2vfZLv2$ta66mF;qxs>o3d$0d#IE@=#r@M44lmvf4;{b;o(y
zd!A0}m2_R6M2chrIZc9ROwtY#1d=#pZBz-st6vR~4X~BedL2RA&Ni_aC-Oj+3q^o;
z2H44DDc%R^4i)mwH5_n-kM%(l!z2qR<@;BQz%*vqnMA;^!&H_S7WM^At`u<PB$00#
z4Bd#mxyjn=Vr~`EA6JsVw~DC48z~hKdHNSMX#7Mqy#Iob(V$!%*qB@>=c0keBCON!
zgI^GPP<4@~;^p!#<B<uXm=hljI8VKt1A@%D*aZ}lJlcc=^^S~>_BM!U`n@K`W(*6P
zzx2D^if}5rLm?`@c_KjYrd6>2vX+RdPbcycPj;}Ps;+CNoGA#yK9VLMP(c<N@%`*i
zW$&lPeVCQ;>nD&h6GDEIMhQLPOF1yp%s?nL<D=+)kk9?BW@|l1Gmp^U?)g2x1~jw&
zRFo~L-^ljDyh2WSKpJ55(HP#@TSg)i#f>VY#V`<>QW7uFYLb#zXl-#RN&iS$I0WW>
z)>$TEH`m96c7Hp3UZ|Q&C>P6$vvtDS@xKO)8+yi_k;y#K9ML$ql*TgQz8hl@SAt)R
zDfoyAs5DOfRoz5|{lvCq*QT;r0r*rlPeTYX2N8X9Q7cXz%=cC7nPfS0NatH1nt7P2
z=__So^F>8`e6jGyeHpqj3_?UK!Fxd8;70odRdeT*QdsvQ<Z+FhLQ@fzpjdW&#%$A2
zGWQ7n+|fBAaY9CiD0wxX=FRVHP!p8tg|@#1rs3a>vD=64u=~=zt8|Rv0lXLVgu`?T
zZM4_mqHC{bhLNhSTV40QDf6FWvo60_&xC#|@!Lf&5w^$`{?rNa`@^?~UY<O2LidKL
z%72GZsL5Xa$HrA_cEAs=>!6>_MfR2`ou946U5?b)Vi~R2bU^QxvQI})HoVs3cX<Z;
zproK?2_t8l)ZtP3j#&LL0+1a~jlq@cs}85~j^V8ND_^jvIVjSHi9fQ1%n3e!1U-Xv
zvOi=cNpDAD$ZuBAH7_OVc~q*;k7-=C0!1i*cRXx=w7F@vbk@r9$^J(sh9fTw$D>iB
z8CQr*VpgYBSx0qJl{LTOIw&nXa%Z6iJ4eLJ>{*WP`@`A3*aAD$BESiAR(wF(pv%I^
zgpd~NEj*SC#vfQ6RVgcuxthRR^XZj}Gs87a@R9~zpLqbufysz>WqpK339=h$=A{lx
zu5ze<+FK*)G7g4yVt!JJD?B3|PfoS5)PSi-s!?HCGlHvm5)cBFc332(QA!`jPLS(V
z#`t6XIM~;3(cLXQ0YHuiLEq{&|9OkYpFbt*dD)g<aoH~j{k3wm%*y_2`4((6a}AF6
zCP)gQdl6JQN$Z>eMSVYys|MlOZFcg->^}=NLP9me-<+D26EF$<k^}~MrICWwaF`cu
z{G#Y~efbJ34ypE2q~lUk+(3oT;V^y?3T)!U){4mMha`0+eBf5_?~c0VB&jrUA>zNt
zR$B4YPO}CVwCJ{9x5I(bBBz<Vxt{sEdJ!C8>=#8TyQ(H3yw$F29~F6ogO)C4mc}Z0
z%M>`zq;#+RnNbvkdX8K#2fqP$XcWv2QLdgCGg>-3=Gjl1gb0+FQZUKf&5O$;mKZ!k
z)I>3NH_)UKd;nUFl|K;=>5A*IaM;Di=Q41z{BZW^SqOIqGd3iT$vcw8#s?ZY3!+EI
znJX9u-k5Kzo2Zz9PHpmC?HB~FT@6M(jg&5k`~jUkSm!N|Vv|dDY`JrM1yY<3{hwKs
zUGU<cZvj=C3M`?Kut!d4OGxs?SivN*8fY`v2DQ$CSwQOV&b{k(5;H<ZJ+CVgj4T%T
zN%29@wFcxa_DMn}53O7{4dZ^ANsrsHPO)o%NxHhsVKl9{;~s^UKP^n8kl|tfO|;16
z0Q=nz5e-X#db62j=JJqA60W1?^J%%tB8%<RIPOiBLwLl@AAO^Z5GPl)VQB;BRChm@
zw-DPBENn37#?bXsyObB`UVG5BNMXY-NXMdf%l}pMU_Ic$I9O7!Jj4Ongo{6@|1npy
zyds`DlF?*A;eie<7=7H-;0Hes(uV?fAtIT--f6X*7o?_|;v)VPg)uC>Es42DT>VS<
zc8~sg?CCW<M%XZTp6nI+`YOBXy^T8yc)i_!e4YE@!>Qxhx_K<zDa<?@bSm`yISB5&
zi0oCkE4**-wUf=HDf|WO-*+aw-tWI7QYKiY<`uajhwUR0Pb6^HBR>+@`+<ol69tlY
zbL>xrGK=W5R6Kj#@3tT1$^iO1()UUP{$%e*+x4<r6{oR^s5<NKBz7jyG<MTN(H3fh
z;@u}|=;~*M78do$y>Q-;y_)be9WVqlLApJmq+Jc7nUdBWBSL^crW86hM3&IJhPcl0
zOEPgmjS!_#)ZX8sC()neIpfpZ<*4uVY7W1gb8%^cBTYzddyGvf^;XIEPKW3h45V<D
z7sGFtuUpb6@TVb*q|KDjPSefqR1vgr8AP?Pg$a95-B&p1y<EOpbjcB)sNZ_xJy5)l
z_E=O|!<ST^B69$Kc6>Eu<vqzHx<aG5h<AywR}0i3UN2D>E-lrm<ulPnGxO47@x2`l
z>=Q8*t%+G(T=Xzh+J6w0e``yLy@J%G3I*~`M)H%EwNU581?zH-#&DH3{M=N3swv+=
zX7ct$VDP)S4<vHtQXZU!;V%S{IS|2N?7>(2;M*hU+0Oy{DOZdS4>m-?03Z2LAd0Kx
zUj)1za{`8&`2tW(ROzrakUe$YC3^9pT&}xuDChHWdF4oQT@1sdhvx5cu7e`>{)r#F
zDj*O4=uAZM1^e+W*fxHH84?3|;6paOtUnH~>7jjLm$z}y!Nvr5<%YbC%+O4w_KEoV
z8iH?XkyC-ceZNfLxN;77>y%h9tQc@jLlYVE8&{c+ae|CP2>azp?({Cb8EM7-^nlaA
z8oq>vk*P%683;{puO@=Z2gQMRmLA7B_5^SWDq~cJA28{bP<TCxhRgi)`k`e-T1Ux1
zp*@7MXRAkdlZgh63uoXZe}{;yC}EF?kqRefXn+R5w1~|*+_nv5CoeAZlH)>CzHhML
zR!;DZOGY1$5shq-S;^sqts?lP#d)+#yJV5rx)l@d9U)(7WTPArNcohhohApPM~Ebu
zTqBCG%7DtCUduq2p>C;%I_`+83V;W*_4878)UYa&eL6k=Py+h{LD2Tn)4<PA%zQPZ
z!$kln9`=M03qEvqRD_Yt(GN#E+~1Kb<^33K%W+Bm36Yrofyo&}1zQ@pRLwB$rtAnq
zpc&{FcJynAU3u7c&oNL#nuCG1g!!Dakk=rhRpxs9bTN?zUyWRe5kJ#dMs9*;JO4-D
z17jRM+X+?^rB6!JOo@-YYDNR6kTKzT#)TZ<)m6n+Ob13|ZU}eWSC7$1Ag|_kqLz2c
z$4a3unJv%cEtICFTy|4eUjP<v&@Lwl^7Ae?j4r%9*!$eEqLk#zH0nKGX?4U|Jifce
zO2u)`iqa7Z)A)hGH$9cA^E1){(#?ks^9akew=lL6gTF4>Xh~9nItWwC($Qz!lYIrC
za;I)JsoMUlgqYOVS4&=PQEgatCD5ut0m!e}{nC0T75#69OBIs6q-qX}hj-W~c=^OM
z-@m|g^#}6dNJJY{-FBe7GMi3&DK1r&zW2%6br}UKX8CZsR{KBki9Kdq7H7lD@vxM&
zum>^fSSwz42{VoMU!l(mw~+=Bb}2saf%Gx0-<A204j)Q)t)bbsY<F8Rvw8N%pDX$@
zpN~s7sm5ocRhANOqIjbi+co6{?|iTJDy+?@x>|;^$A&^`^Stv*O<B}LC0+l|C)lTp
zF*;x0OM)JS-Yr}%^yjynk6^K7-mz?QR+)XA>+lmS>t12$a@pBW647Qj@7!p>ZDKD^
zhkK`m&pv6E;4V!=%zK>^BG~`1OuRP^z5;P728=h_49ccq`>n#iDt6XJ8<I|q19fQv
zpUrqN0ZtRHA{*}qCxq$g>B(U4RDGD*Wai1U=5dCOAp7Z#O%{Dh&sYJv)uj{Jr{bAx
zkgv(KA)$+hxk5Nm^Shj<FsVL}VE}q|)_9Jw0RmOYRjHf`ia1zu9PYVm9h+(<kb?Tq
z-$fIf8XE|Q{FfwF-21oqI!azFEme!P<sjK*#U(FVD=ScK6Als(u`t$QOU^}GNU^i2
zu-BurZm=ZwRG(k7@CNnF-K3|N6y8#ylqPGI)z(5U!{J~gDitAX2v!d$3-KfKY5L|V
zX$=UE+IY|k-XzcOS!n$z=_fPBP{M=wZHu3W21aO%t%Qd?kdcu^Q~L+KF$x6)4C4cJ
zkp8A!lv${QShZ%7*8q9D1Q~Q5?aoRLN`u8ZqzPBUs~?>4vh8W8{VHw#?{1q<9|5L@
zZu?$QRn$<jT(HeqcQYMOLGK4!0uGa=+5Sz51qCc&f_@G>w$Cys{Fx4mr(ylU<Gdbt
zD-sdlCo~UBr8vs#M~5-vuV80-(n5fGSXAWI(acA_*E4!R{+l@$88mBCX9nkwLsW_T
z@gqM!4lP*3joB*Vv(2m=Py4U&i6cz{VozJZZoy}#b?%t1ga95$Mn#&S`Lkp6uwxkK
zl%uwCzv%uBJ#nSF?}>LV!q$XAIQ^rd6|reNPOou^Zeej((QTnn{TISHXXxU7{AQFP
zqm;vLRlt!yn-{J48{3O@$-yP)si?YHy#~Ddn;ccS<xYjAJ@U3^I%Lq!0)fRWf&CyU
z%(TEbZ=k+<xXUgeSzWwWbxiC0ZyR~M%!+sY_*Ne)wJCDvv=jO-m)1aKr}mD0>*xEw
z-caQ&&FxP)qtDuqt1>T>3B?iMw~zr1ByjabMc|NbD_xO~S5co;w>~)t>RU?m9Nu~V
zI3SYWj!R(dl#<<Lc$I|@H!jhO9N}#LX5GEP$&Hb0WV8*WSd(#ovgn`YX{jSAF0SJT
zKaoE+w@$&T%XjJc{=@DnesuY_ktky^_1taEBUY-zvAv}tL-oeT;s5{AY}Xt9+8ZAU
z2M^*BZtgj0>JGBcJ~`gB4+!1UKJ8TcL4E#Os;&KnvWz|B=m_&+`R4r$DXhSHTg2Q&
zZBUoqIpRWk9DQxo6+8HUcS+1-N?(`Jc@!?eHkz)L(UA6U(!f=m6!)~KGq$EH?|SXO
zqd4l+*$*Rw9Bxnvm&cT~WI)gSUEDYHEhH@TlK6hV`d;uePyb)ARRF+)@vx`V0HQ#N
z-ek-}8*1;2(e8gjp_**Ey%oad<<r0x7ytiAg~&R|B2SIqUs|WSKC6QK+tBQ$@^oou
zuT{yznn=C=9{|b=pg%&7(3Jkq`{gm882DVc5f&y3H~Rkk@5=@pL?p$OuK2-Y;c($=
z78x9&@5k0`ogv%qv22`wNdfwcih!M3%xE-lAy$)dOGWKdz<raP{FV2a90Oc$^+dPs
z_23CN*JO<MHa8V()d$1are^yG-R!m7=xeAsn>rYJf>&I;#7C?wzfwteo-`OX3m^QM
zpj83Y>%4KV(`4j^ZSFN7e~fP8#<4CvTxdEpZyCUeY|nS)OA?e!hQ{F^0*1|a7xOwd
zYkaDK?~nh%h_~wMQAHh0VQB2SO15SLJ$(j>i37{aN=(`&VM%Mrj5NQC0*74Z4A=NF
z5Tno8-V2im|DkRZj7v9?+Wt&q6U6R2_^Y*?>}eyxe<?G4VjO&0nX~ag0y%L>RSZH~
zf||nVofx=o#T(`S`B5SbNX3hOB>gpzopnj^YzIG66M_JNQBkH$#qeyWt;zFCS9x*t
zaDD&rOOk^(k0Jlw_an<%XfMNcuT9E*>ySZeQ6js%MXbm&R=6D#41&@A3>Wc$h0Y6G
z{bhvL?qM06(|12}oEco#XSe22@}OJZJE6&tN=vqrqNtRUm${M+Xt&DA9Sed+d>;hw
zCgf1lZt^cBef>RdvxweUQ0%`FNo{`O$bC$E5lA`9r|(poYrmZ|>wLi?rvWP>9=pvH
zUg@bEs-M8|`=Y-10wsP{4s}YzIZrQ9IP>&k2>;BXqrw`IJu??l6TWGLA(@sPo-bOO
zVvlgj#u0*nTNug$Pz%PeR7+Qpw8B7eK{cz`!lG<)gu9cM$v5RAmaj>Z-zmJ&9a&)7
zrC}WwUxeXjc^3Oa>`QnDt6OXt>({!nHGa03rg}R+VK6SkKty-uZkqn<-ADN9hktBS
zwdqn-Fk)8B^(09N$2zxajIa!>Asfno*$&cmu&DX$@(rONploq}n#O8SrNtjQxNyr3
z`MY3%1~vuXsMN7_W_tgNe2-+~XVjTL^l7Y==G+;)47EInw?<-eM3?~b!(M`5-E#=Y
z3X*u7?1rw?r7IcQ42l{8q|5^hHQsvx9Gl?^sYUX!fU5hP#cxHnq7@{PxpIXtL<S-m
z7}4@T^DJ^?09Gw331tvf4=0SaDgICJgA$6!&xj?+TB<pf2De|Q8=;aRk)Eq1q{bs?
z6&4g;2as&OWJ9yumpD%n<V43_|2mk%?xgM<Ey1H9=|I3T_BGPgZ9!&DTJinuQulSX
zu{l%G8eh_oV#$5AaJqK8ee&u$FrGZ;uW8U(SpVBJpl{!}@qEdAYs$lKRVT~5z2GQ3
zF(emVRn9e9V3{shl&LV56M=Mu!3F!FOT*CWw!rN+&FC4GS#D6-zY@c?f?G*?a35bO
zK>8dWrdpL5F86M%Y#Ucd0`D7L*=G<uKn8=Jhq|Vv)5&pwp<@b5z|B*78%N5iIwjMz
z<8Z751Q3EW%0xnJ2lf0DMc)n@aEijPCfs3a6H{o$Gi(cotEVQa|1n2OLtFHR2p>OA
z8daB3zMS!pq@`|KrV^Rs$D5=DTqiu+XWK^M0YbKdk&caL(CE_~UgYm$P;1ogdsi3U
zDqed=nD1@Yx<XljIgj|iTE8ly*~eO;w9gyBfGZRE@>i^W)kv%G4gcGxgNq3Br-6G-
z10Sz7BtH6Jhjcs|s9m{&5rT0t<sqqR%b^ZUe$$MlKmyTl_NV@&Thf%EqV$B8s=tgN
zN|8IWS8+TPG9p#(d15bnlAi>kQKrwibeg9na1tHhL*5(8?upJnMO0-ZmKp_ApGbLw
z0AAyY*-RXAwkL3ND5=)m0gI%3s5?eDe64XF!w};VwHjxQ^|;tYFynQuxk9C}xZ2e~
z&B7~J0qMxUIfq?inmAzvf3f`AxhrF=9Jx@mgjyoPjhHA>TnNID#t?Q9)0WxdFR*aP
z3JJAtpfZx$A+<Esbc>G13^>U#JkPrLfZN{+vlRW^6z%E~rNun~@ZzRj|8nF&e<PFY
z8`AtC%f>entFbV)F>IWdgO@qz(W`jb<An<u-euFOk{i3`=(Zo-V=N#}#C0sYJ$mv?
zJc=?j{w3#sp%gw+8xE5njQZ4oN&@q+x)_@5gcTYL0+9Xf``8G_M0>WVG8MI+1V*>;
zC||PX>XKsS3+fxYo|kdw4m9M=QStYfWh3pd1W`g2T0FF%FTHRwgqboMs+*LD(X=$g
zP@zp&5t(|)Fx0QtF~=1=;|oRtzkWZCTaHe5ce;4ZRV^<Ci-w~rgVICLZitV3jUUnM
zCs5}(o+cY0*mMoE&k%F*q}}$`0zqPT?&h%`y4+zIxxN6o%`N=D`E^X???Uy-%>61m
zF2OEITTLZNcoOsO_=B9rL$_Qw|D8e#3sVs+nKvsVPw0I~?!N`FMIX2g&n=1OhT%?v
zE>wXU1~eRw;kux|9+mhQ28(MO#~W=IuHyr3A?o>I`7`ypKElh?>hTW@0Iz(a!Ac}Y
zIB(mSCf6duHLyoQTNX~L#j8I)`n9GD6g`K(i#Vnh5=|2J5>Yf0dM{Wj%`S&ajCx!9
zIxHk>+>j8JS#U-Ad9X>|G#(f>OA5-S=Wwy2xcStPin}zixY>x*%g$@-NO#bF{$r{<
zzxyRh74Y6nxRRH(^&k2C4%Ea^vD?NdVJ3GT{G-yu+usp@-<9sym{tK|O+yT+m|<y^
zhT*O_;Hdhl`nT&V+}1G)IN$>>258i3V{=JOTiQJ2JeE|n3WupdyseeYBkWPTGF6`%
ziI`DL40f#S{RPesVzX*{GTIlk8Fb6`KYkQB8WFCiyFEcFHEpB)0Qz?u-%Z5of`ERf
zvt;TP8r!l?w$=AKw?p@nr^U--1vv(WyFEcio8tcudO(H0=9tdD<H`Frhf35_4cV$s
zGCKHY=RQ*2kG%@-{^|u|_s+BHqs0X)7ZvaPFdj?qF84~{lbotTpT~jwZD^Wnxc1bt
z*K`aYoLXV2F(3yd2Ni;#wl9Ap@a61DYjvB2svWSW?<Ck2Oo1Z4|7}TI7wyglh~tk?
zMAfB{t_9rBs-RoTV4{QCtzohh92**c<A8_ze(2sMjtXy*KS4=)f&N**-nOA6RQ<xT
z4GaK?>mslK9LnE+`GK~)igEZ2cl~jY!!Q0zOATlm|Md?*fZ;#G&yIh?V!E0!m(%>2
z=DVlE1qLZc`f>GiFh8&m_!0CS;xRvAzI!@ckVt-Qew2@yr&Iah{3M^_1y(+Req4Pl
zA4f6pW9BpY#QE;&a6uyZ{`_%-#Lo!y^N=5!uOt2A1tgzHKdwHKXJFx7`tv{)o(cSG
zfHVGSe$v<R0^&c?kE<!oF+afl>x}+9!0heKKIju`pxH^gN7IS-NIR}Q;YGJ-|1|s#
zK{-F*laap@lZ%Q912s4^lbDJ_f6Hzxw-MdzD|#J36SDYdHXt-0O=|*p=R`mjL3W7^
z7*2qA<KIuQ_$oFZGtxB-_zHJ4Gfh?(>v4Fh*b*1H{QC62Mc|Lw%mo&w<;5+({QK$e
ze_H+<uZZQBAD`Yno;J9sWwqPIE+79|{(RGm6wAjCFQCN+LLTxa6#jk_e{Tx(RRDkh
zZD7?}8LjZY#n0(Ceg{q)ffMk*6$k#T`28VQX@wSt#M#o}xA<Re`^QgD?;lU!cU3YD
zH6N%XU&WhOE2tw5IE0Z}ZtB`sTV8`oQsLNFX{8LR2vilUmms}z_^t420?HD2T@Mtr
zdRY}Di`l3iuF0YpT(>kre+?%~34C^1Tv*CzjuL#1Nd|Fp0|lU7NAs-cYU;g%8sdTt
zE_fa4iiYUjSG^6!J0ESUa2Rbg0Tx{B#}EI&JMPa?yr6yG@y!dG>1|gp;&rz#Qu=qt
z{=B|~FYOL50^Jt|JVUyu(hOntXXOV!YaA#=BP(12gCC^v_oJ`=fBErUca2(I3|Cqu
zrRCwJX|bY00Hnj_zX9P$t#v4JvlrdBLr|KGKnqHicrWV;ua1UXcO4fVCc1r1MoC8C
z7JD|?WZZsiX!znbHiy=_*1eeHw#&`0UisT$M#)#wQI8Fw-B#O{8$u;JnBCNd87fEd
zWjC3Sp@=iP%&YVMe~R`aBX}dqp^li$c9oa)%gM}UKb*{LPEIP}u@MX+n8oP`TZm`F
z#NKRAYr-^4XM|f1zX-ac#5R2$ripF!*^BVLgNa^KXm&fzG${?nL6%YiONW4R#e0Vj
zweY>qHh>p77Q6ZcZk6L9##1e1!xoW&WmJ=5G@J!eOr8Q&e<@ru&bS!RB^YU30IBDc
z%it%dn5QgSDUSm{nj%@p+r-4ywx~kWvLw3Ikq~cp<;ocgFdNj}G*beB;J5XZhRenU
z*S?DCLU2-T!hr1WyTU+&9ky!6C_WBjuS)uf$`O8Z*RUYPablO&gW-yo^6j~?{U|NY
z9yl5LY~|Aie?{nah%L%kcPZ<eAotjxUAP%w2%sk5VV^#~`FC`k-Wo|V^Ce6`v_cpa
zBF!(x-1V)57LiHOq$Y*pkx|+5P2`gi8786yd}1XdoD6*nb}_PSb!5m{fd2+|k3^w0
zI*I|2jLeLlcbFo~v3#vI9X6-4l9_t~Yd^W?p~UWDe_pa?Vn?p{pmtDjbk{k(8>~D=
zZs=doRTv}^#}F+!coHwT2eG-w8H8~~XRu^yhR|09h%>VwX*b%gINFCr5#&&OZb1yf
zScwwk$!qlH)NAXSh;sItI(99h;zJnXaHXzOWR^zr`=}Bfy9Zw6Vpqaq07-%%AoG~1
zA~lm;f6ZCyN6mw&ZY%=Ag?Rb4D+EiR%%}+GiI$^A>nRZnk{5a!^3s+7W4Se~9TK8r
zibOBQ&>|pLUMqan{4J2Vw2vI{CZm_^Z^b>B5~T{FX+&W8bs|iLL0GT^!z?O7!xDmh
zAjHjyp%f$KY>71DHl?{n3nWTkrMYbO!!(!8e<?H<Yt}dU1{$gEF{8MytFiR-c9RYZ
z{#PmSH@?VMB)cQ(3KqJ0OsTGsHgV&7WcL)Ci6c<ub|jP?rnAG_u$$EhO|vn^@x>uL
zVTe*zV{$ubbBgZ@{AM-EaJBjj@2n^2j`T*P;3>HxUFM&soIEh?l=4?$qada{q)JfB
ze_?qWsbWbS2;UOWvii10i&EOgk#Wa~3_k7=c}HmX-LS)~kM6sA+t5~%%JMz#R>(r}
z_Eia+0dHQ3X5~sra9(qtmImwlf5b~7YC)hWaRZ^(DFo<s`-Zj^n_WYIHbW4wd{%B;
zDO!kCiW*o>iD8{9dUuth)}gP9J8Sd+f8qOi57ot;`}yYP1YUY~L|{T_@?bTbxw-Dz
zu0v~vAT<VysNV^i*v(22=pazDJuzY2$VO6}XBIt`6Z#Z3i^bjMS$HmRY;N7Dm&681
z_e35Ntxgr8mcCF*6e`mfolwY~O1rk8Z`n!|%_%R9tcarJj5l-8km94(nDJXuf7iY>
zbNghCZNysp?N0A;iigTw)LF_SP(EtyR`?Bt6!W4Xx9lFEi+8bh4u&%KCBFiOW%g&l
zu*^Dxp>O)(zabPl-Mi-m3Po>)k3*sE-fsql#&+-c2o!ehc@GNJW_~Xq%(wam7;M%3
zqkv${!CJKhfh7e$je**uRL8X6e~5qzS=`9jpTR$cb#c?F{G;KY%GIx1dmCBXEW%K<
z^$DD0eK~5AoSGz6yQgqr4LRVdRzVxsy~?^F*Hc%St?g)1J8Q$AP~W6CLEFltiZOF`
zD8(G5S{I#WP&uwsEtSq4+pd_+*#WOCD9Gg@3mYv<ST#okM{-@|SC1;ifA}mIr=%uS
zed9gTShTSMo2Z3cu&k5;c*#iAjKC5x9Al3CWk*uBT^ny}@NxDG0`)@khoBEFNF6Tw
zo_RQF@pm<8z#B!7^8=s^xRuX3_-nR6*mTo<h4-e_w3h6M1tE{_>g;*mIUTjwQnt(0
zuR!y}7>SQjdgH)=!xV7bf7Xzrj_(EK-1yW)y@P4tKne0eHLsL!kJP(r3#*QZ5KkC<
zn>((|?hM|xmvN(cyd{udSKD?ui!$}O&nR{kZU{_J>DSPaSPZfV0h5E!t*=ehx;{CT
z48q`G)DdLnI@*1sYzQEm-78LFxPOivX0NlF?H5px9kPY<Mlci{fAa$ATN1~&pId>e
z7%=5@3diNxWfPBP^XUbatOM&#ESaXd8s~us`O7F-)I2oHnIpr_+Yqf}xRoPB(;z21
zs9o!7?#<&zW!<tx^f+-ObX(?Kx%qrV1{v+hLNRQG#mA9Yrv(qsKD?JTAvS5XRxY|R
zMU@VQEz5``v)rOSfBqr86C>sgMl#YJ-)h;iKK_VJXyVfv3zYIqJAu+EZ26&BOzr8@
z0~Oe({Po^{ueyf(^!fzcsY7bSUd{@lS?pd@%FYJm8DHh}Fef@9on<7s{0z2j1lNp}
zPzSOa6`#%#H}w^$miAfJ&AxL;Jc9q$5GtQIC+12e6`jWFe>R=Q`(<XM*FbPe^sxT>
zVDs;KKONtWv`(oYDyjkJMf1lHs^rUBNGQ(-M4vw3Az|CIY_>CukIWm(u|wd|IUl9>
zuo#_qo5xH=sU|eKQz)-R7AeZ0qJ1VYGaS_%T10>!@8x4Ng<GBv-YcT;D5t!07)}0_
z&NV#72L@9kf3UVwUEA64H>!ZbrdB6uVK;Tz$Pt7$9i~T0jGzY7hTW?3Xn^rMse~G}
zA`0B8k|e#}D<ZfjcxHv_bJ$LqS0BSL8*TcxaWExrjxsVmj|bIX;^#FhtSY10PXpVk
z4Y+AD{RXP*uJnAaC$<D|qplOki|RV)4%uj^ObAuBfBnZ3JJ{EaKSLm|50Of#wiYVW
zb`eoL`H%M7rmjr2Q|}>y6W|RxF1bvrMA*!c0}JJKqw7c6J*=%78x5D`K~f$TXTds1
zoV*qH$?yRF&ecgZ_>^DumRWpUl6&f6jJ>AnWBsYyY0;l?=G_`xClYX~(+KD|1EmM1
zWkDFjf1i)b+Y+4l+>JNM(t|0j_YywUJ?PGUAG_UN1k-ljQ3iW4+{#}o(6xn&>^RFO
zb^knqylX|f6%uMHHC9;nrorkB5<q4pHwMpW{GA@R5ISCZ9Y20=E?x0=Hg=6DJ6wxz
z@5%7kLGuNv4J-x3WfT5P{`~u|fAP1x2($c(e|P<Ek;_l<k4KzY{uAF?-y!*V`CHJh
z9&D8Je_4P7C614uW)o;+ke=sG#-`gRU9|seq`59}eEc+<z(hVYo`MTU_|fzh;4)Oc
z$YYk7PVkQgMd@koToaP^sBBCNw+3D4gY|!PFxB0UFP524@VaODdA6MELlPgA?-oOc
zTj^1MLr<?y^*5%(!F;&aK1+{t{imrmB=J%CZqb`bx@-C~zp3sxn%Qzb!D}C-r@3=Y
zNZO;aalFzY4(Nk$_u|HnS4IAG0_mRQ=h^cN3=(_tzhC|js(V*ylaap@4Kz3)Fd%PY
zY6>$jF*cL`mO_78OON9=48G5=@VP)ziF()q0s~1L7uZ|d0eUEU>jPM{1-h60`z1xa
zZ7bPrF~CeBQ6$C3M^d}uEQil;{|o|uj5B8#CN0m?@aea=pS~IX4m)D_^vB!n{moe1
z8trtp!~3tpx2qha9^QZd`2sMji@d?&|I9F5q@7RtBFumM%ln77$NSs&4J!u+tdyAH
zA_0F1m{0ieDl~EhE0zCBJ95GmTqX%_KFN!C9LZsol|7Fv2L=hO@<U4EvdpLPB5w52
z%;q8{;)k*na&^*p?h9^7B)F0WNK0}(oltXHUc@*{uL^Bgx&Uu5<;t|1!(K9<xfRSB
z4VWMbicEh-()pCQj<esTGh?Mk6nDb=-DlkhrK4M^V<VKz1h-jdk*ZbC%Uam1EAL3{
z?E*{>NTJAur&b4bQRr9^76MoB{=wa@Z>7T+u6-*7%Un5T!W|#84Ikx5oV~j27BI9B
zOoIgedvrcid;OW6nzg1|L~3^ABLq%#k=I>CL4kkS8mzaVVJeFx$z)=E(|7!Es>6eL
z#bcfdeKG}~>_kM0C4X9>K`d)TQBZ8JL9h*>-Uj5pnY?ejk;^D)LcQxZA<w4qTNwk)
ze9Ga43fklobx$!AmZs{KUh^u;ILeWOj8Vn-WC8^fJN#K@F!4g!n9)Abkwm0{G9JXy
zMXi4x?5NL<uc-$q@R}DPl@p+}R2ZjLX$=w((cV8Ev9KzlWM&}%gq)<1An-U`1%5`u
zYh-*ChE{2fkW2U!L@EV$0s5g91$fJ=T-4)0sCST6umw$s>0ElCv};DwEe!e14m?E8
zK2byRm%v*^_EsWijJi@rai)T%%zOBcw}^jx&w?!D4~LQVwN2(2vE+1K@IizGSnvYF
zLdTHlMKqOJSE`NK7c(aWrdo0;vxQ1LcoNvXw6oG|;1YF|=$LhukYTK@e_sKctm=wk
zSz4o07!TCOm^;uLMz1Sr1ulHlhFXs!R(jlJR3QAL^mI{NDQet7dD<<;{!$So;wpcq
z#46SZR36Vy5l>z1-U6sw+}d%%sX=ACH8V5pg@<wD29?|LlLW;8pYnPxDY=yi!IgF)
zS4$IqE2z4HqLFF4izk5dax+4*3e8-QiFXOt;@@S6BH|@K`hq=`6#<zSX_<4PabEP7
zYK(AbF@S!7F{Aje1;!Zn{}mWDN{fHrK`BYa;z%q<8$1~#sOJo!)|(@C_*~~{3KN7M
z5iC0*%oNfa-VYf%IKq+;8K~~$eoU5!-<E!D@w~2~!@EBjIkeMTyn6UruvYClMqF9&
zd^p$B#$lUWS1-FQUR<0~80Sdb6p-8-b4zrH(`DH&QluytoXe5MrDP7>u+)FlwRY0D
zCqE(LQO8}iw42m>y}#`HcC=fN+-g+dMZ`<9JB!7(pDWp>@2^@4!?rB0Q1;&|E?Jk5
zYL7*fe~c(vyDg${=SV4yX|E9$tgu=Ex)%YkfCt{`ca~bZgJFEy*VZ&9;WEmrtLRoF
zDMHSTP4LvM<x+-a)2i5}Q}KV>T})PpO8Qj`A~ugwwd=xsoo$ts5zDi6v6Mh#gWerG
zS(fW#n_*=bwsT`Sh;F-^3~n(CVnPHVYcV3Qa958NwNhGed{h%*-EQyPtQ;fD(BR&1
zDZ73GOFs4mO?mn3Ba@}VGlizQWU5yq?=A3H+QTBO?qA%^V`EUDc%grHl@Z}=?Ceq_
zzq!_q*NOmhTw6L&wKqn-REz4@7h9Hs-In~Gnzqo*FLfB&nmpG;OgR}LW+m%p)JTeE
z%N2#C?FFkC>ADr{xpi!Kfv8^@Wf9_g&lXywGCf8EO+}kf6q4QP6uU^6t6=6ml~SoN
z8G>lcyF;Hvfg!e&X*_=$UT7i1x5B7L4|2gdG+Pb1H=*Q8PaXK_E?0R|N&$En78ZM0
zNe=WKE;5Hvn|2i;7(rQ1w5knE_<fS2upX#!7u}CL1kQa>25ZmoywlasJKa4_Z0a$X
zTE!=EZfx=A)s__}hO>J9O8#Z<Iyn-97LQrEvOzp7=&#m~z;}O*jb>4NTHwobRXqR_
zQl>`rX#C@)qO~eIjw;)C9=FTlf=b!kk?%AgCMZ@GQ%2ve_vH59IK=AP?&AjmRrOX!
z#eC;!nH*dUvegZ~?sW<WM;w@nTc{L+K9cVk)(AN=JiQ!ovDBLH+9IgEa%@13oMjth
zTRU-m6Zu~O*o}YdrjxI38;f8O4q@u+zR`(I3nzKBb4TYi=)Gewk~01t;jxVGr17t%
zxz>LPTh~M8lR59QkI8U!&cX3r5cp31?ObgayxLG0Nt~UK&JOM0AHE}zXJLlVDD}f2
zhmXO8P9T>36~2rx{5kx{`ZdIA!gwKSP1O9YLr!s(c&C4}szXoWCC*b(7o+e{Uz<qJ
z-?|4f%h&16WV3CIo%-4kb+%29oNSYLr?Y+A7&~U$7#uvG*e22Qx9)+=@^yM`O}33z
z)KhfzA^L2c{sFR2;-60U?ZX^j<&X4YWP0C3PBe!0^%tc*`v<)Kk$*bf*M~X2${*<^
z{U3y&KTI7CMRxTk`fShs0n$J5Pp5mi9#z=m|NZbUY4sa!laap@4K*<!Fd%PYY6>wq
zGdGi8pF)3HNslbI4ZhE>=yQPSh@_;FfI$PjOb77I$pAS7xg`!@*aqT@|9(jARVAtV
zIf(~vrmKsaJ}x39t23N_d;9lE@sIK5j3=kz>`uS_^X;#HIQ^2|sMD|idb@qSS$$fp
zKikvSKTdyq>JzBb*AE|XRX0@dfSdAgg{LBZx~YE~p}r&PPkLwrPCY>LkJW}gFJC{t
zeSW=t-w|&d+b|c;g5_D?<-4eWtkzSp+MfMftOmFeD32=H%o5S-=Tt12vzd#PX8|M%
z#bphJwhF~|`I{A@o2o>81Q0m_;?=-IdDcu(H5g@BDXIs3Dz--f|MQ^fstn%wdlZxS
z>7jod67si!)=x|U<VabW!UAt%3@OFxQSs+zhEt(YvP%97=`Y5=q~&il3zV3npA*#z
zw!pVh2TwKuBtXQJCQNw6Vi>C?RuJH4XMlRj+VRe7=Xc7&0stgP2vwwxA(l<VCs<|i
z5oiR}@SfkX99{tbRSpzWOk8Qb;_TbGGAw`O$wrHz{7<4iny>B>o@@)pokU5+OIfw>
z2X<a?q^LJy7@KwFx0+)P$xKXH+}4%V6h-`>TL*GAMHAi7&V$z4<*e7@HK-e0W7x8r
zbgyhQ?$T{|f`|JqS`6M8dZuOPp-}13dX43^TC%y0;R!gSe)!u5ega(RLp?6<%ZGou
z@kcP1clc1B;kUT}zr0@FF}`FvG#~K1=tKc@A&?x1T#rZ<Uzz$_JugHb8ZQupzEjer
zE@1hkS}s{Z)Ehq1<=uQJ6gs-t541_e621>4Pxf^9;G+nxGU|aQa#MVk_u;E#N?c7`
zaA2zTC>JOKYrFJET9F8Q*Htav7>IweLPmyHh%VZQ@|Fd|atYFzuY&Ee)<=>UmmSx@
zU;X{-yRjR=Z=5KLPV%fs2x7ugGG+;ec70Lrm4Qu0jn#s7XR3Os1dkR*P78qof@mDd
zSeEnBu|39t<`@X3CvQj4gPqX>pN;F{BA(4Mv?7zf-bHNo71{6|78pu6*ouEk4lI0b
zXre(iTzKoOer3_-qqxAOP^n&~dn6q|qqXnC%aYhRSR>;JV;N3&Ln9iv&5AbU4}y(%
z9le$LJ99MU5F6tzOV^oA-AEa;&)dccs7AJP0XB=y_1&ZbOe*XYhU2zhCjE-7Yzw1?
zfEU)%+f2U<>1|KGY{?@Ia6NwwYN!FbD?sFigWx{ka?%7F16x0rj7-=!QM0ZaQb~eO
zDU?6oGR3!TTGsLuy?&S7B$q+EO5XiO5<@DQW=rr%ydjnX8pPW8xiLCM;vi%QY{eku
zpp@!9WQ4#uyT^=E{aq(@(HPkl(vn(BX;Y3HzM5WX&C|*j(M>p{{2PCwEqDdEO}jPm
zr~3>VqbzrAdvM&S+W;vYoq%fgpzM}`${3PF`{Ltyr!Cv3+inZQ8?Y~Z$g`<KbStGv
zN@=diC3G8Lo45+QL$)<+{lQ)A7{XAStJCZ{;@26HT99PV+Lfb#R45@<F*wAXXP`c2
z>!iV6&V+Vomp2ARt-^m{qnJCw-fn&?dY&mL+g*OuguM_YU~;{yE8f?qv`m-Vi=D21
zGDZtt$*s&c-j%#KRC~+6*BgLL7czBm;Up)MR+zx_cw1Q1TGGoq9M7kH8^DWB9@Xz`
z!)UHSznp!K+c2*T`pU-%QyX&mldJ|uAsZoa=2bv=&XK`Y=DUAn@MQPo0kxHG%9uBz
z*IjEOBx5ZRlr7g5l2OiT({dL_-eoukqS2mBi|J_{0?i$f*1#?JT8-sc;idunkWreP
zhO@@Yyq)0rdz+JKLX$p`Yd9>mShofCkw?l4>Xc_(XG@0=GI&y2+Tk*H%~Xp{Qy0p_
zTQa!QyA1YVuA6@cX-?j4k85I7uhV3mB-5m4Kdt3{gA*}Ka2=b(jfV-};oB$tG|f5s
zXu)kijt?Zxxf_j^>{o0r_2UhF>Blu!iyQyr7H`B!wx?;<nQPb8byZq%pU-hbFy!^B
zrwv0q%+rc^R@}8!$BpLyt#cow0Kzgbwr!B(q&#UnkxYLpq)x^Z4wA$i4hE?qNAodS
zFM-@c?^cf-nkLSQhKy4KU;Oy2eZ)g5nGO?hqHY?h{-I0lH=9F*c?+)5a|Qn2V4<x(
zn-LabU+K)~ziP~g%87M7stVP=J<VaDeS&T`r9^W$Vo>E}#Q^n<OSIz0)%jU9eC@z`
zBEz+yiNk+=O60B&;PsIzdhr|AH`tQK!vbya2rLPcZyc|9TsZH}i;ioF+~l-j%fVa*
zQHq1cDy6zmG>OnT4#s>`1$yA8gw!b87dcUD)>pCx?gd!h3`843z*>VIpA5LQw9R03
zI1%(5Q_lxr*+LCep+0Cc(CghbLu#J6A+WIECvSg$a<3&93k!b&z=P=m!+IOZFYni}
z&FI(^n)RgrV8$RT_c9$B#vH9`He;Y03|+@C0Vtz1Ucn7J52kB%)Gl5TabGs<;?e1z
zZLa{d<%#edfUxZP_}>SEcvEf*LC=R9wb9y)H^i}I(2fTja(#<m0cX#ZqUXtLQpz5{
zWYvFYME_QpU^s|dyVg{ox#E)^bQ^Z$s&C<|iM8j9(6s9r!oz($lHPgq6C65Z)hPGq
zYIvB9EqARA;lg&2D_cZk%_0%S(dA_0)(GLITJDwM$&{AAUjQ-QH!te3qh?zE?eNY`
zkbG;m)bcY~Akr40$kP7Ml@%IR&|G_?T%&)pa!!kB4-ek&?qPH5;#a3?HlJCoCgk18
zqD@zCrKN5!Ojh0J=yJ~6)~fjh-@6mhqn#HW`?t5k{#8!7a0_>(>H0L@2Xk#n8zK}y
ze5A`aS903M7*RPPSe>5dOW|@btk&&FL@ysgZ100Nw~VXyqm}Ya7v72IId5NLlsJFf
z#z;Mj<fZv~qM2S)H7O!eOa<eJVeFk`$HogTS|<>F+hNsSf82+pd%~T=AsB&=@kpb4
zY`6%_@%DNNfJRSnb&wa=_>f)=<4`k(UGYbEu^y*uk>5%X+kO$uZWpW0UP)eU|Ni+;
zqVlZF={MH;-3d-VMhF*YPCuuQR{noajh{|`iS})XNls&!n#Z@F^V5{Ua!MxYnRh~)
z)n{9b;c_^)CDX^JDMJ>CMZT84dM-cH$EPVn6`AD|9%7m4<I|KOi>$svVB_ZUGktuT
zGE|XSzVe6oWcv6tWym63mT$x1-dujB4^MN3Dl*G=%Mm_>K0ZwuvPdZM7rB4_naj`g
z@oCCXMP~U%{ztC4{7fI8rVLf&>-2_uz7h|{N(VKy$Alg+%bznyZ7A{!_Z<Hy@g@1`
zh7JOKycqCwgs0F~Jf{qy3TFA0dv1?Nq+-vakMb+ir>7Z1Bl0EsfTuQ1JZqYmpCp>4
z@z<O|{9EJ~ZkXFcEuK^P>8^h#*3WpV<lK>eHPq;zk_Yc*>6v#@{Tl;bk{?zp6eYXJ
z;!!mb`Wg*$20_2bFWmF&iV|OvAJ?0zb9g`xN9a@7AF})@L%^R_)jvMX?1>VyJx)!6
zt+AlkGh@gii*)ObawSry&olByV3uywQRkEC)6<Nh5&05*hy|f2m4O|n+(UazTgm4P
z5}QSS;htB9D6uF1`_q2_U$Ajmlaap@lRK&m0XdUMs$G8(WS7hUgG_+TW_~}Us0U@s
za`&KdtI9TcM3K}XC0}*b)9-Kpn-u=J#a&^Vt-j9FZ~uP#`=6%&rYCCp?dP|T&$k7x
zW(t0}`swpu)1O~<(rWtr>1LniVV$<xD-TaFdWO4t=~+FLS58^{4q)Q<Q(5brT|a+$
zdw#zCxEX%{>}CX)MlesroB_-eKMklO{YCXH)QdItWxWFJ6j=)Dq3`B-fWs4YGy0=}
zaZZ7psDdGY_1C2ZP(XiY{uzRT-CFg1_nUW=omDXJ_~}r#;~u&?FvR$cB_&KAgQJbo
z%aP{M94Htk-qe7JISj`i^sDm-?8B06(v!9b|Brtgz-n&#10L~fy@Xr*soeU{&mRs9
z?IRhz>YFyJrH>2T)J!<fBOJEK2Ap=pfk^{f^jyK+)MM4*re6rB-Xq)x!OiPM-;|-B
zXsjiCx)GnT*aJs5cx%xvK4O9NED9#`o~v1I8fbtB1%CA`Lb$+AxEMmTJV00@#zMZ9
zs2G18w;CX@u-wc&0>qKnglM!uZJ$k$W_v_!Y;~*4L-TY=f}bTh(t{83v|2TSzR<Lb
z<6CS$3I@9WLO+CJk8yk}p$kjW)S}UtOW^2HbTiIwz04#$3?wYquni>IZKQ{BSRLc!
zX}}8rxf$)|39>VxIy$<Y)Z*jUI;Y5`_&tBvK2{SGiax_hN83X;7HMXPSQI${=-ETv
z$zmaBWag2*_cei9sE=q`TF2)lK3E0tk^LYKa==1KU3j8&Gy~JU=cNnO=v?ZpDAXCa
z;L3q{>NQK!I&vnB)vPDFk9CJJhS5fz(wk@}Qw?Vjqd)3pXYK9{EeegrD2FjZ!w!E;
z@^*5wySfcezm$f%@l;d~NKq>#HERI_tQ|Ta!CDox#|m;>C$#sy(ZOLh9cYC4VAKGf
zDw4JF)5K4reuWha3xIaoS$8-aECM}C>`@~@ZVS62g=_y^&zgqDlDl`rVLw4|zLc*v
z3VH#Ljm;<)F|RQFHd!U|oENZUz`TE6Q?jLkp)tpoHX93-w3Kv^Puf#)E4G-D;d5jk
zsD$~_hajMAcS5pMy%JYL<(o&Er5z=^a#wp4wZpVSMY|lT*`s!q)Mm)s-cd9I#h`O_
z-z&CxJ<1AeRZi-f7iOJffrCOPSQdP(>Y4U2Myl4?s6Y%I!<WiCKb8eQkx_r`K$ct}
zSs+$u4%mwcO_Y%>rwV?4P=6(>5m)0*)y>S#eN-Jt6f{7~K(KnQl%<#Ow_@(Dm+(nU
zG%LbxGNw*mbVs>Cscq4yOjv-tIVgc^CLV#%gpQ|@!;8a`b-Tu;lv-A(%btt$gNsKh
zgB)a2vSI7rT)Sl>){UvLyl8(T09(xQk^bBi#Dh#I(Fr&6(GXh6+&a^yiIIIm*F`4g
z00@6(lCfvqOB0HdC?g&1didDuxHKKnG}U25vl{b0N#{mAtRYagAJd=-^NyCZebW9e
z?)(7V=T(RsBmR9{!<9rUHJrBL-Z;JBUh*9ye#Z^hoxF#Mt*NFNhx~sB=G}Z?=#IAQ
zbJtSZBy0S4R|_bEnTf^KX}TMz2t<3)3n!MNB|UV!O%-<;k+bpPn4GEhSNEBx`QUrm
zTnP0k%(SgNG?9jKz89ysg$*375&s)-yKd9G(}oK-1;|ojb9b>ab7T68rnzA_+8+s$
z!$*rGj&=!l*PU-^|D-W(-!WHRxOz@he6oe<@&^}<RL|0IS|x=?UV~-x)NY$LMAO4J
z=qX&SsHAYq0`LcTlgqDhe_CtfJtETefba}a9G3Nf96aN<8S*Z{x#OLa-GE_}3q<es
z6quc&=iK0r&gq_<(4%v@9ug8RGr?WQ6S{YFCT81vzI$?Hr)R%gk6`K|_}VGlalfA0
zbU{+j=HRC7(RN)!WL&dlSteLmVJS?ooRG9EBQ0HTkIb0-onTwpe_ht|Gfv!ie3-Jh
zSu1tNBF{Is491j^PQ+++no<M4u-vqt_sh*TGki)mC{ts)%ICVF<pZ$+sT<p-0Tu^7
z2}+5^yi+=B7Hw-*=LBt6ZyLJZo#yg3KpZ6O&&MJs=ctGgqcd_LBlTs=cx@g(@;PTO
zle4vFnaD)FPljQjf1Tbn<q0zyCUyhM3bySBzIu@U%{7vWCLQj}(PEdjlwr0<-f`nu
z7FH+A%1Lrw_%iUFJ(M`!EsP*&rP=7eL=Erk#^o`T5aFTI26mR)uvvIT^1>zohmkdA
zchX*3k<IowPGWH6yy-f`OMt?zWg)#}51mt^GC^;tHgl8*e-g)U1I*@SKsl=^FJYMa
z`fmdA0J72Qw&it6?%S2`o~~y?Q=0?yb28Tcd#C7KTeozwd+(r{lXXGAR{Cjl7Vv5~
zqFDglw^E(a<>HpEGB;TVb|)qSxRRKU*5foG%FAuAeO(U2R~st7SFZ&!E^z&Rq-VkQ
z)UYM>X=}&be<}Y~7Qa2g#f$Xl7<{I~-VS^&(MNg<9M1*2NbZ)+{zfz#uM4iaE=n(c
z+J67_FEr#;x#@Qt^@mAMzr4-#-z&oGreD)f@6m++On+nhT485q>?BbdSHZ9OYNQY)
z8NKKZWb^RZ7Dwk)V_TAZx*91INGSN$U~e_XPx9$%f21HFGroaSUnco<HBu;$HCCYU
zbBv$l)73~pKxTYJJCZSel22D71p)ab`Lwtd`zO9^nos@dRn5$?xW}4Y(37qjq(e5q
z6>Gw&_lrDV4HYV6#&@UQFY<gfRH%^OkO#%`@dAToPwWBd&#?mezu*_`6MG_Jvd1nO
z$z^O$f0mC|V}%4+&;$MVh#`8C=HEl{3YgKoK4Z2b&sRf*3i)+;v)F5ytqJaIwj^J3
zZLC1CE%-%y?0ZJc_IP`iYek-~h6)+d6nyK>n7_#L)li{AeqA2oOMqk#VBtTRFUi-n
zGFBk}7yP0<&QC%t{sF7c{8QxlYN${ld-6X{2LA``vFQAhk-rm@&9e*vH<Q}4XMa_x
z^y-#0hZFF<aAsO9l}h#esx;~h$KMbCJu3X~7I)Ui*}{1~{`RlK-@ZHkN8YI8Z$BSy
z9|!00)ilA`9Y6kg{L@PxK_5SU`thP)tJN3vQqy{J7j;|BMP1hu4n34xAwA9O2`<Xe
z>-&1L7jvhtH~I>C)eDi(dC08(qJN&NS?Dbe1j0PQttUg&dE~LebOGeyq84O9wmtDQ
z7k7PyeZx4@w@fL#z2a5?X=~+)$_qI#Kt!KBiAm4v6sa^ws&&3tCK>(~Cp5(1Zq&JQ
zz{qnw4M+WUnMa0YBPcg{lFW3F%1kVuv?lS{EPYbZePwa}{p0(?^W*SCQ-9IUoR^KF
zMG!1?9|RqC5Cw<Vg_?sR9my<=mgW#d{Qy2P^NRuxR%6zBmQ~J#Z7bp^8N=sK*6~cQ
z!SaYue}yB5)yz82l(&JC7iwChmd+A*c!i;;X@mS!JCz*JT)&jc3f#U{?S!5Mn9>3R
zyank@vznD{Sv2t#jrwFdR)0Ozr}1aA(Wl5e`j{1lHCY#X7csez_6iSphz(_*d6Ybv
zTUMtP5>bj`H~_NnSq21~9J-*qo~A;snn*qZ8(|PsG$RtP!6>3?)#|(tkuBtgXFxTG
zLXA)HDx72rTk&JmWk<Xg=JQm_*QCH``DiFYR4xcVJu0@Xqo@TuHGdH2WEv(rbmp>j
zfH$VV3~#nEF}Mb!5L<kdF+E7z$lM@h@mTS;X4o&d%bG3SE1Ym2*h>owhIzwt*O4F-
zcLra_hu~Ggri)+_cz$tIntC$w_UIRlsgWh*j-XIN7{3+hyLQIw`}*-qYaxoKTxn$`
z8Gu$sIm^oO`l--lV1I!wooQ~;(Y^U|lVjvnA;%g&Eq`|gG{9oO7=4F3W~(+m62PpY
ziKOi(P~gC6ue5!dM?99E%uRbeJF9QtQ3f6s>u`>PJLaSQ7JfO~mW*N1FqSjgY_a<5
za$Z!63)ZqCJ}|i~+7IRA=C+jfGP3pyGO|9ZVJ{=2kjRKP<9}i_N!&g36-9y?)K}${
zM?O5}8x1o*O)NMaxgL<#J<WNxH{V&x;m0i|nrhBOcZn^=u9LfH^jUS$Ppu_56tF8`
z3QGeI?NT^OA?Ue@3p+fri7N$y1f9bgBfp4Eb`dtD$QX<Xx^k+@kgeFH4pcSrWNcKS
zkP5)+fMBLNQh&w+_2ZZGKBDxN`x0m(Bjj%rXf-!SEO;^##5eMGs8zJKT~Y~AJC_G~
zlcnCG!<2Fuqm=nQ$&bDh><t+!X{<~~j3Od&e@R(Afwq`-nu(_)X6+oBadGS~rF}hH
zj6Z$hp;f;EV9mL?2FPV5Em2`V!3BLOh+YUsuz_*j<A0_f{6SJf-LZH&lrZVEDWRnq
zQ6tLxrbHqS;dsQD#fYrO674LX7L0er@@CyarXofX%eZWk;YF+&R%6Il0X7&WAf7rz
zlv;?$IaQIqskl$zBC|o>Wrzs%aTS6vDxPMkP*{~>!=|ju8`%1DM`~cMx>Bi%FJ$J8
z1!D3$`+sdK;n|9r-GObKu4~AX%SY=ahoS^wQC7Y$0gDQ2MBim5iS%*-QiK<&iFGQI
zuTtU>L!vxeRMD@%bG!OAby$q%P*mMjTgC2k%(lA`P_*Ud!7Y69kXD0?f(UYxPXIxL
zLNI}epWp<-8vIANivWeW;yB?j1e^%SG{FiK6@NY>CiDDvW~lK{PxL?rA0%*`MbHGP
z;;8Kd5KKrrd<yniGld&@+9WfR@XnU0z<`!@4rk58Bq|C}Jr>^wWHeDq!~_`+isQJ3
z_Tk;Yc0ntfyg^v~KIj_#KIpb68AEL}u_L&$)kuGU-I)**b;NYciujiU>oz`<gYZ1G
zrhhxkk|7-#5jmY+m(C_|{c_khcHYJ9L1S?kt3DT5gYQ*wqS3%gN%xh5a4(me1yNUV
zkgp*EKX=4Yrxm+LD>0ZQVLfxdE5@KY)y3Y5&Z1q)hoXg6NM+L(F=c|SFq*VXvxc^z
zEyvGKVXj~)M(y%OBSuP?&Wv!(?GQ$XMt^rIC=XSK`}F8o-QkcchSZJZCRj)+8Gtt1
z6-v@;I}1L^3ncxwU~w!}3Rp~_QgJh~^sAzviK<9ew3lsm!V#+3G-I>vrZn9q(Cd&*
z`n;fQiyqlTfggHxiJho=ZYiVezj_RbZM_VQ5O$5aFN!I3+V0yfeZp~d9#1Nxq<?Mi
z_GTwLg*}jS?Q2v<FN?<5zC$j2ZL#BM&zpS&l0}z$XWt8PbMjTNZEM|E)p6`TM{z7g
zDDHALQk7m@Z1H4o46+jx^asmNb`=@ELCI8R+LY)$CH)K<*uS50EzqGdJ2d|emD`$t
z03ipIIcjHK<Kx2GnuR`HO|0N@RDU-DA8;C^E`Ln=nesUAYpr*suVn!>su#H>Fa<p4
z8?W~L;tt`*tAe6tdE{%o?(I{!M|?<ZOlfp^b1$GV{OIz0DW?#p+?`H2@&#Qo2B0IR
zMhW&PlYJ8g#S}1A5C|>P)dfW3Ds4(~*`TjmT;J-K<;$O;87Q}F3f8@_e1F~1?&`52
zM16(k89?j`S(z^s3n6h5G%DSH4L}JCEC6GZYOr)CRskCf0eTL^Lm-5XdA{Q;T;EPh
z)vnrJU`DZz5DrTj=4pR>e~bS89zfZN?jhR_RNMyb5*>%VH-Qe^z6TcD0l8N}22gZ;
zW02i8zxM6J1a?1*6!)$*K7VL7_FziO2*?^Wqq!GHPO$;=h{jSJZecruod`HNV5qJD
zji>9HmIT%4w-kl@SJ%pQAGY#{!pqvhLwutZnO`ZC5A8s!;)e%ni0~%UT<{|&MNO_N
zpqFpY=}anQOGCw~T|<~-hOIpJO9Vr=rp0C^ZDwhkdq{=ARe~K9cz@vO{-edUx=Fpp
zri&1hEsP9Y-f)Z!<-3eC`*fqJWwjt1oJcT(T`$OdPK2HG-NTP#;=vybwVXH)Pzal4
z0%~z#6f;K_WgwOmKrmW|LNc_c2q&20ePBJT;H?7}^0HuK7RNQrGF2*Mf6Uvo#syUI
zOr`E*S-b}@k$m1AjDJirH)ew3=?LWq(^BPyyvoqgbzO0Wvu&=6Iw{rxuY+T;<{#e<
z3OD{;X#VBT2X#CFzW8>W(O&rLugAacn?mYrn%izf)w4<EdTc)k#K!<G*EXmDU>g{_
zQ#8CvC0JuB{uPML1ws*Ygu<1|rvJ<Q?JY4b%kL74ToejJi+{wxvRW~wS1M-s2TG=#
z#%>W!--t_4JxjF%=M1ePM@!zD&%<Rp4GQUW)MV9As0v1Ao&8iwvY{O>Wv9I`$Bl8I
zzU*VIV@Ba)(V5uCo#f>u#m(Tz(eGPcf3lU^x4hWNbEN?le^ay(Z8pBZj>L{UlAJt%
zq!{p`stN)29e>)WkpyeOM~5!f3>+Hheb=K6kV_6U2bJuC;uN3PlDSG$#|R20PGm?d
zQoTl1kCL%(G_p7fU{%;_(`egS=DC)HOo4gDPfv|xevnt){+gXhC=K%OextSM)+*rY
zKtK4eB3s=KFx&W?=oV@e@{YPpV5olic7SQZqAxuCdVkDM9-q?0>H+5+{(ZQ8hi0-U
zSp0GOiF@H;&dRY7eUIk#i~NpD5t{!dnwl5hQVeM`9kGk!`JU$U(|7@Km*}U}ZZJQx
z5c$EQ&trbl{O~kf5J^snzV~PeWBPG^cp5IqBqM$2-pMn~4^P7dLNZaebbmFb?y~I1
z(=)+H-D&8zvWfG<({Mo~X%c;)-v*EA$NAxDxFD1K{CtO)X^H$e=Le?A6y2;7_3?DF
z{6t;W!aHu5;%Dj4M{8BKG^_PHOQZRj{&)fLpXjI6W9=fv#0{n{|Arf#WjUUn3AX0{
zaQq)z>0uC)k-r}SIg_!!O@F{1g``{rMZ&Af%ER0m40CAaHVe$5q5Cp_e<HMo*2=P9
zW3XLWnaWVa7hh}=A8`5K+wT{FKa-h0<Ym?Hv0nc8*W2I!a{0}FBQAgZ=k50SHqH3e
zvcSi5`TXbQuZO&VynO!q*Q;2!ceo0*sjIkc|M>jd+vD@?m*Q!BPJi*IRd^coCa+S!
zO)U72Ftm!KCGo@3TMeZ8Fil}#p#^4I>e${FCzhP(;(dG9Bq9F$h!TUwD|G#_%~$`g
z-HD_x6^S8dd-v`Hw9g+P`dgLL@-z3UglX=Tw)*+s<`bYg0!W~(z`Cth_+fW-QifR!
zwEcq~MqMdd4<@_rEq|!pf8GWDRabR)C?Op>J@3{^bOpo)GhI)5-o2&f4a^l#_-Oz!
z2hfR-Q2^Aw+FI1x(p}hTUGVaI6q8iLw*agkn!o1T%7uACM{Ektz-IM4lM*teDPy;C
z;7hZ;*$2`#WxY$~t!FW><_$N!=O);_Kll&iA?Pl_+eu6JO@9wmrKXi|*iaRB1X|~u
zqBOMC#C_fg793s^;G);J^oKg4_Xj1p%~{YzAP?cDX53;fjwFo3!&1kwEhr5t+g#O7
z>nVJnxXK4z@5>!UUbiJ#6t8-r$lP8^jaJjat?0S9UhqusLyV;xChVxkF(5*aUXwiA
zesoxIi_7Hc?th(0xBCW*TRejxd%N9V0HY!-+IPn1oKUxj*de<Qt%bh3ls;C+f(EOh
z8RGWwjs~*@by=05xj{xN#sI=J$_(p%GxLyACK%)Pqy<X+`0oz)ZFFo0BzK4B2Hc^f
zP3W-Y2CDVaMs)$h<c)#(7tgWz=AKzk0P<vEJ^vb9P=Cs}A-7=@wxV<8Mzg%&r#<R6
z24f-<tO^D%MFOd3Ou}0Gd?C;#YGb>eHi&c(4c_0E)%QG`n%f=~fvT8Ld1&uN*h&uO
z5oQ?y4#I;8X%zuAKF_#|q1J)X<bD)<t#&nw<wofAJ}x#nCFJ<k`k_n{&ohlgLp$-0
zkkcvpb$^eB_F0~dcf<%_0l50B_im(9vZ4N~(4CA=tN9DUg~;oo@w7?j_5@Td?mk9$
zA)=;SBSA=vMQtG+s3z!9FiTvrilTtm>K&?^pJ_}G>euv@M;Tq~iC>8X%vAsbBIQ6H
zV>Ui1xk*Eb(-LU~?o9B6yEWTmWJp_f_&lwXtAG4Vuc-q<%8hN5v#jamu^}O@c|@1b
z;#ukEw-}-Kz{;I0WX$%n(lx2Rh*7L*7rsz3Y%D`OYg(}s>U2&DXBDB1UG5%l@K`3~
zITGdmEKkS-(viNENv~zyp{`n}$)Qd|lGJNmaw|8C<FhG97KyohF9pt!jJHFc0<%EV
z0e>Oq{tSgf1H)Xm5_p{Q=#ddn?y^joOWcB%$;JE@V}cQOl4o#*b5K6by`mpDTvA)c
zyFn{p;yX<hkPik=0)bp5aZ^iG4k=NRIWi-bNr{bO!1gLDD!d`(jOwa!9?V^yc~ujD
zBaBRDt*br3a^1|NJ`<UvVbqhN08p=*zklQ_f%B{-g~Z&h-cUa-NipY7d?DvR1A%^l
zF_oBdjht?*u@cmJV-CAI#5bA9C#Xe=`(RZ~hO&y^h=QF=uD67{9l~pcD#I-#?X@!{
zsVP1F=ca=&tr)^;Y5Ofen5kLU67Z{CD!hTv*w9$FHet=a6!ytPHg?1hA!2|y(|_;^
z#ATzibQsI38&oc7)OHg5O+`S9fx<<A#SAJuhZAio{*{hnzE##VYGk^cBHW|wnjCfB
zA<OzMWnkg%ZUWZRaVVf;S8OSpV&w5IV_;6mx@Rt1iJ{>ZOKtt2uAJ5j*4FO|KP&s$
zeaXX-PeN^(Hp+L-HxMQTb&GXezJLC_#5*-!qKQMAJqDjPQEIqgzyb$9%dt1B>ch8@
zI;*VH$J|@x=JP0vBcduIrgaM+jorxV*S9LNn+Mz1)5+`Km3tO7Io!)+kVJ}He2&CE
zg=A8f*+dhg3G!JFF99+XFfV4Us<L1<yXX<*LL|X<m}0`}SBs8<@u3@mfs^mWe1BhW
zFQk6=o=p(h48-?f&W?MOk+oa$gwf<fMIO&~mnYp*WmPsJSzh3TRf*Z+u%y|_Zj`A9
z?-ZD-ZNQcZDst+is4g1OzF`Y14+=r|d#|^bI5E@!b+zhVOm~hrd}-)oyq8G%yy)a}
z=H<lPSS`9HB;(oI_eXRJPi-sY-8-I9t4F0NPMhasrmb@R_L`?Lw59$%KFLN@x#%{#
z(Gf}mb|@$7Q8j)&*0+hRb~!G}ojInm7mKON`;#ZfLRZ8*%3%FlbhK7XYG8K7t+>PL
z3d^$xdZ?~s%bptUH=0mSBC`@p<>p#vMPc5s?<hB~3_zYpGaTahEI;3w8gDFPv@y10
z|GMn{2G&?pVa5Q!<1czMb(6lwAp*O*li|lIe?I|5I8l<0lMp=ksW^<t?=WY1!qadn
zZG)@`r+;duUh@NMrNjnMH!F$Lm2@C1T%YT<d6N-TUe>ci4s~1dORa^W!Y5so96i?L
z{iU`}p0KEtBBa4^0nHl{^00p>9K!4|+MCYF&QeNyfe6>T&u(H@|1KW37lD5?yTi68
zf5_dz;C1(6@L&2T?S-5BU~k16Ey=kGccO-9dJP=XQU<PPHd_L{%ceNp4O(5nx>g-i
z&qYVkae7Ycy<-oojEWSVcbq(qTf7nTXm%vx$?)tI+@9ziI8Oz*7WBpv&C?UuQ*|6H
zqCSQ29dAj){}38l<sQqO=>Zc1U|z~TfA4RMM$XxUpJklxQaZp8GbYU?OA_#T^U7Kk
z*`WY#^zre9)<G?vi&kf~o}VvurkqrLDy-*95!X!z;G^?{4;gjt3`v^@*VLZ$y(D#4
z>5X5l*Wvia%zaMv-cVz*p5Y*EYgzby^Xv*gX<CNACx{8vbZFm9?DS)g+QKxEf6o_w
zMAA$gk&>wai#`g?=F@9Ola!=8diEy+A6q;Uh~Y+v@gP)(I`tL>8Z=DvGeI$*WCt=6
zxQYy9Y+<4L=UlZe8jW=}l{H_AoF>Tr9kz@W(7h(PQYQ@~ojKzCWO~r5M&6-CkM8yi
z5djX(Qe*Kq_YR&9kHm<oIF*YPK4$Ko6qLI2*lY(k5LR&e)A)A|gJ12x`q5o{rPBb7
z<)4f~w2`f+z$#W+?MXpqEiYKHB~#Kbm;VFSfoCI=LCPNiIFn(@Lw`%F>^2hKpI_m1
zpnLR|4UOS+yFHLyk^@<U*-a7%nSseBe}Ae<uaYIJ&plk|Ys*qes>i3VN=IDf^!MBU
zCISEKVy|kNjl9m&U%$Tn{N425_(e>A{r-0Uc(V>Zc`vVa`uO+sk6letO&`Dgaud5)
zR%LGDeZ8ognAeNMHh;b9o3QHze(&qW+@xK7`f69HQ~ynx^)h28YH~Lz@o5u&#joqd
zhi^t<GmQsP`Io*aM~@r5#P(f0sh7bSs$T1SlVX()`y3`=V;v3+%hl_}-o#@y?JCR2
zC+@~Pp_4Yo>lxa#QBU~@kMAf+OWN{CAJXH;u-*qwv4`%k2!DwyTcuB$yRZNH`2Owr
z@%BU4R90V?##A_5t5q#Q!xsf|NC$IL7EK)%8up}~>vGc@t^ZRy%UaU|eF;_kBifpp
z9X{<r<;r5qgJe>7PdXsG_Pp(0dg@}#4Q8>mD+UGZp({0M5FMAiugapgB{PuYh2`^^
z$>>oK?MmhShJS9swO(0CyQ@A}39PVl9irpueJI8)S&W>dgTO{XidKFn`zYGJJ(Duq
zt2>ioQ8k9fKX6Y57qyTQR16=Lw1OR!#8w=oL!fGSm(=(i@4{(VMXd~DNJPYh5Q+ET
z3*@}n+To`YuqQK0z&gpN)HzCK^jB4kxXW`X-l5_;3xC&->_HW*1t%q!T;SE^;EQ-w
zP^}vaB^1;!5?FANn3GOs(F=9k0Ucc&W8TlUs}}?K-zp8|fBexO;Q@wv3WCM>DlAjP
zMC=W1&m0F4#lhVQhH;gtV}t_kXEYtUojEQo0ACd5R=J?{vghqmgoim!=IU*PXN6c5
zkDOPQpnvcBkuA5ux)bt+N0Mw7v%ulixW0J@i@_P1B;Y7O^58N$xLsOc))B#cv^@xo
zEA0)QM_xw#64DlQ-wUKO2g{xvRzvD2r%y#AV%*^4p2f0rerQlNU(M0m%4FNoOHg;9
z<`a?5Oio0-V{~Rs7p|LhY}>YNn;qM>ojkE^r(-7_+qP}HW9#Jo&fa7Hs~W3nR{dCG
zjahTmecgl%!~tfBfw+3mWW_H1C_Rcw0XjDvb%2YG-V=&b1C$0-rGg`{2PAR6GF7a~
zZA04T>3J#ROR1OMLpLN#4ojz_CA?6}@<m?EQ;gsnt0iel%*$JUV4RtOy=nc=u^TM*
zb3IrH<@AO%!`reLXJ8YFN}B=prEYAr4;qNWCuSvY*do_2WRj7aJ=`WE4h&~e_m~sB
zHUQm^GoQ;F+?m(|U*s+sNsbImxdnFAIlMqDQe_mcd<~A%WT3#ifDKp>1AS9u3}IK~
zZ7i~QokfVfrA3+`OEr;53s_vgWgF8u4(bS7648PKwC??f!)`_~%pWOukw@u;A<0RF
z#V#OC(4oJ*qd335Z|U@bG2o^G9@NQ!@&TcJ7I$V=CE0{`cfOCkFa{PSCx0jce6}`f
z<=)B<kRMhQ)keW%KlsmsPcY9=wF+u90*hI6ab9tF21juYV~tZYNsC+<a`3sR#<mA8
z)r~sM^f8qKiP>z4-cFd@%h?^|Ux30@woxHMtO#&shFoBUj#U|84^)3$4%9uP!2`x#
zFYW~$f#7|aPWCVrJe)_{5vVu{+17u1IERQMjt-vc)cNn1$k1Ck;WhtrB6R*5r5bIx
zBuvU|D{&9Itbw_NwPJC_%bZ?!QNdUs>oGgCe!6nmr9!u;fTAp6$A{L5a9)F>*fU*_
z32Qlq7EXM=BjhSoH~f|cfGbm@QUPvJDLp72ab8Eleb`MhG<np(S4Z7bzwK1l3e9Tq
zR2X%>Q*v1@%Q{n1lSNyD4Y}QAhj2#wg^==N?|Z%AdO`5;<7Pc1IUE#jZ%lHh`~58V
z4RH?hLC73w(*t4u@P5*lh1)u?hxVcU!kh1fj9cTym*E^|YGO5a-52^qlmZCi;%3q2
zN22kx-iU!(|5Y&-0lQaC9Gbe+!sUY)N$7jvZSfe0i(JpiD#Jv+K==1O@%RJ>MbG&~
zLn2J^rME=!PTQYs{Fh*yE2#`P*#;Bead~uPl*CeZysF%bTRKrduAm9ScCD-IOCvR!
zr-)nH2x-Tk!*7i8&q2-pdJteUM`$F;o=9CEBmFd8!Ux&|OVxP$iP%-Z%cv0k*t@*9
z$Ev=&O3Kvsh_eu?bS#yc3eI|c+RW2XrIH)W3;yQ|VwrIpkp342xg@&aH}yXb%7Z&Q
zYPCo_ykQIald$N}Y;}wezS#xza>pki+VsV<bPv?i<9K}Z-hzUP)DpnQ%n}Y|8_2@Y
ztz=bv+bpVXPA!A<_+=|*rs_uOxMHTHkg1M5VJ4-}QR*QAA-h>Z=Fo86>J4>S(I{Gs
zLfDssw{VeCdUny?GwdlH`ZW%!#=6)*&ZyR61g&KX$YXE^Xjqwi_@w?RzY$29e=fPa
zNNm=wJn_FU1*N)<@I!!?1~GJt-R(Qis*q7MLQBo&Ca8^MCl(1`ufM$2=P+qWWQeg?
zDc8t!`d+Esez&5B;UY!D13AmFYm%T-u0}=tkr^GvWjJxkZ{E^XuExx8lpLHWd->Mn
zlrHZUI%Dg#J2koWYV_{##RIXCHC2za=3!krqlly;2=O$H)D(a{-C7q`2Wu??4GQwB
z-|?V^JVk^RG_w!MM=rZd(W3BiVPJxWC_ZO<ayUvTuNnZ{DrMQWk0ceNKzT&C;;i38
z?cXka(cNh?>TZRkr)z$ij*kmTX%fA>N8Lf{AW-K?Rdt8!xVceIBCbf0^}qF@jR7+6
z^VIL;g4)4$hY*0I5or+QtHvi#cPKi1%dA|wUmH8XX-BhftC#l^XRP^SLihV6jB(O>
zSa4RR-s^Ui?62yUz%`v7C#@?P*-ENj_NP2+S}Rk&0G@d=7uNAj`ZQU<4Q+H$$8&sr
z#>?3Q`}*Y5I$9oba)V>kc}yf3H1}MJ;5$B!#ad(?s3YJ%12C75?-9U$vbteukKyt)
z1=lB%D&?oD+;@aK$pmZ<KwcmO4Zr;Yt9CuVXZY)Z9e)=Hw&8<U3+}CytmttP9~^Ea
z=|@wz=TACs@`_*RNh|P(U_SsXW|DY4N#lF`wP(vo81bOl-PaR`HKFi1u;Czxw07}5
z@Brv(_!WlwQ+z^&{eLbKT+B)J3u1r^@&B@-eAixi^&Zjyq}5csQTikhP1rTle}d_-
zq*))ID(a7g?PN{96tEbvkEb;??!Kz+=dc5L1U(4Q-)(C-kBpj}3IhZ`iN#sg-VeSQ
z`|IU-<m!H4!|>sL4I!@wc8C88$m-?8>Gz+;?f~^lwq+~(&fG_|Yd%h&M}P)D;M2p$
z@8hq?q@0J57_6E{84qvMynhc(;;;;PX;o%#&=q3i7w-z_Bc=xkh?YW5%y5n_i5jQ7
zT9OuU?}e(E-XhAFrD-+7%ARjnRdcn!sM{imzc^Ede{OqcfOwQk1fv8V^E3&RfSBF`
zkjLXu9>yn-#-y0s#Lo|DIsipy_Z~<kMm7C;UHa=UFRZ1Z&9oPJT@1jU?S&KeYkoJ~
zQ-K*9JvaX`Maz*1NRHt4F8AN1JBnN=(YvC70hjKKv%5A~jH{MTve>?qo?FTWpx_ur
z@d_V&6wL!-f>skX68lb<m`gEVOmr-Ff2~Fm-`=4=cE=8)@j2nMsQ`*H$s7wXIQbtn
zG4?V#^U&skFe<XTK(W8rL=h3=9MF@|i0;+b$LnWZTNmHP@NP9#e2hyX-jEcnt}U((
zTcUq}Kr6+g3jS{%rR7HujKNat#01q8T`K-Llb%*oF#a|VaUW4P1M38G^W))Uioi2T
z7V6mSeo&;sXASP9OMn(FS1=U0y7NQbxMqF2E{R57V2h~ktf`YDZxF6v+=Dwjwq`_E
z0@%hakk^pSB5WigH)OkeEZ@~jkjh2WL8S^3>!Zr^p9eN@QzlQQTFCQ8Vr{<zQXhV<
z<s{HWdfwKPV3FrJ6Cq7qkO1o`k!jQx3T+6sV!>2BLE4ezzkq%GLJlYtlm6LPs*X#N
zjWo@f3=WDvi9_|=8@NL=Yh!b(nJy<>Jy80qB?YKc9cv{?*)rS0Oejc(l;uQyRoXiB
z@d#LZMD<{`;cLRjZp)`n(JDS(!>;$OasfVil2UWvRL|kGt{SI`ee~pULBinF<|j&{
zMu`|rk{r!T#DFm=^5C<;w*u|@=D-n_pq115bxCvKGS=ZHdAeRd*<TbbLS`9Heym8!
z#?28AudV6E3AUMigBmG7i}eh#xw<vUCgX}Trx~@h+|yY;)UFf-Mk_2KWMeqyya^_G
z(t$Jn!WzNLHbdql6X|$3MzrSA;>7F2xZyWCHq)$w`hdxG7Y{ApKWL!g(;4Wd-C<sM
zhMzrQv>;f8Prc5dvygQvWsQ17@zq2wVWg9*8J9_edO%2Alo*oCLe3oH{_Xu%w9wVb
zBl?Lzzr^(&<CNfOpU{^6;cGQ7xUk2RYSI+ca;n0ZtwVb7w0Azx%kCE>M@A~vqe+{v
zaNz9N<N!QjfPBio4J|`>wtIsTlB9JOLRKa$EBf_+4S-6TTKJlFOX$rQXW@xP7c;9M
z?%Q>HEai3v!Go!p2__(KWy&3I47PU*TKTOgj)-+YEV|Vx=~gwg7UedVO22x=FeiBQ
zD<M~?JsMtRAtqtj0N+!sP*PK1@u5Z2Ts7FDy8)_v4|@{b&X7#5pD8s7v$pM7eC@zx
zl<Sm3x6fFOQtDJq*RJvl?oT7EIx_mjcR;KB!NOeW&>E7=1bN(lE>^>psDK&(O}N2e
z!P^Bmi_&vUE$!gVWjq4o75+*)eA8e}6h#a!^oGO}SESsModaR?Z8wcQhJ^zQ`x4tJ
z9|0_qx)7clpD&pj_Fl@uv(2Gw$nsAOWKt7h8||U+&4JM+HT*~;&jRUk9VEdXf*suB
zia+bXt>B<>b;Rh9RfGPny>a9HEt-p>LddCCI2LSD3-tV5Jn6`ezO-<nMl(=EqL?au
zDukdZc88O0J8{u2i>GgPa^nn9VOJuDX9uYKJ*VC4vLGBTC73Ep-t_qAF@eh%O}sYA
z0K`MDv@0CJW1*8o(oE*?kYXv5j(0~kBsNsm*eY^DgIVBQYrb!eHfHtU)qrPjVwMCF
z`Tf>&?rGJ4A+c)CFUr1%%OjGLe%5h{D*81hv&Hm@=t8pI(Aufo?@2QUE;*~+jUFJ)
zj{Zh|LtWZ3U!i6h6@}QpL#G0-x=TFn!F|5GaW-%}*lH=#MusZk__+~KE6QvsBWkz#
z$9b6X_Oxvy8Q+@#OJ>Hwu2f}HHOjv%v_a}@NUVkAQM+omW@ks~CJedvwPx_;tBj9v
zkS~_18?{bzCOq0R#0xUzHrB{=%?cnvb51Rj&puzp-&IBKSp#;fpjxt9SC4cmBdhwA
z61AxfV$i&0F>Q;sI{<%x&Hy#xjJaoONHg;VR>O`c`+_=9CD(0J@B9(Vs5=?ts6a1#
z1T#?i$7`ji3oG7c>e#9tO@et0<POup-K$X<tOAsroSzCbxW0XOplV|p$PK^@ayu!%
zlR@_A;~uBYv_yB%%_)rm)x4r|+1yT~xrG8=iCe7i)0ojbR2rFHL(OIb9ot5))}<}r
z^eh3C#9Wu2|Igix*rB8gk@Myobn*?ce(#ixLuZf8(9SZQt(lUzsJ3q>>zJFIfJ_{<
z3pLSMeT915hI+!yrz!8O#Srk^9{?1$3AF!B1@k2Ot0!l}H>L2iCm^z_s#8&Af83c6
z5Q?0yyGTg=r44_N_Ugs5uyOs`y$(_(jqkuo`qv&7>gg0yCRD6iuFg5G%h&4GlhHxd
z9S#XvQC=>lr~UTDpZlApBK$3<^CrNaNI(mU(o6|KF9_kZK$iS&FA%`s<IOC))EXl0
z%sxf&HUO@OLwZ}rleJHtMYOG*#{<uwqE4Vr{auaC*V9Y88<<FS^EamE-0$;tn{{DK
zI`b-c=6aEnX<1q3@1Sz9kI;xM!MfUmEe1VA7HqG{j_y~G5O4K6l$Px=n<p*c?~IlA
z->D=(F~Yk~HSO1a6b)c!P<=&YKV8CothDCMVyEiaZRnP5s;UV()q>#0Lc7Q{+77IN
zV0{PRgAvP1!|@SO>L<{9LsRLHy?LYE`C$0*n71c!T&ro*?}DUGg8oXk<;oEp%A=&<
z&11cA8-a217yZ#w>f*JggD7D!qZ@8YEYDAC#(fJe#H7IfK?a~(^60a&6)%adO+>lK
za9a9b?>|5?wMrEKXJhVl`wy!4d4(sKWQ`zOx%Lq5Vnnv5hv>!Z$Lsz1aRwDdp!F=|
z`|$sdA)nEWKQpqINQLhE^n+)P;Fqg=dsy)5zObVteO~@%`~VBd5YGR9#$P|Jq}(0|
zSg!wT{l&`2p5(kG0vL-OXhrIJR)4|mg|BRt`~?eaHv!MsB85F_7_W_P5Dz-4bNsA4
zWaKy}{3wfK(L#EcQ03KBG4%tP^!vCrIz6BO3{0Hvvg`T1j*RGkJG|O^8PWHATpZkA
z3_y6X!aCfi)&Af!UWQ?Ik1p~Awx*2X-Tl|Lr#SWZ>^^*o0X+h*p&xCNr=F{5k1eo`
zyoX%+Inm(8p&9tyeZxOzLVt#PS4ob_v%s`tt{@+VNzZ%^zINhm;Cp6J&;h({mf3p@
zk~y!`8}b_@_W;AMjUTCPZEYNZx-jHFW={7kQP6+CLPZ@$`alnWElNN@EN}^9?^k9d
z5SJ@Z(fa=g0dSiIIrk_CH4bipNn&+1MCbRw)$-4jh5B#^8WqCK{}@PKcl`MX2ykly
zionVv-!($_nREIWT#&*Q-~);ahAz~cgUTHQSx)knu=T0m?-hma5}Uh4cbveep)FW{
z@j$93zv~L2aD*2E7aPQ)@QY-=K3Bi|gGL@08E$M80jM%bNy|9v%<*tHoSG832Nl4A
zp>cKqfiX*!+OspI>Aya~HFu#sZJ7PakrPJ$ZEP?+5h)WQCLF8?b=%uMYcBPMWuy7j
zOD-A*Y;RXR=2BA>D?MC*!pwm~=gjE-J}GU*M$$qn^Uk(W&U9#T5;JaEnNsS3rtrH)
z>MhoV8_>8-i6kceGRT)=lS-8rFw!P;H0Vw(H1^VJ%X6D&4-2c7Gi&H*BnBc}sBUJ#
z(m@Wgz-*#5&MsUR<q{bWl?7io-BzX|wXRCr*5P<{Yf79)d_`ZE+zk9T#cJ7`%ci<!
zc=f(PN;CmfU)-*6aEVRyYbz2yq68cLg>_+T9uO11DQx{ng8@eUJWOZ9PL5#xX#xO0
zSGR(x3C#G*fYgnwissM)zNJbJkIfY6l!uF%q?7Dxt+|9uON--0+Q25`pg^+q7bm(c
z#C5gUAHDY}sG6X(s|+*f3KG>}4=z`dZP;NWCd3bOIbQ%mgMB>B(T970iD_6+^A8AS
zKR}PTH!n!)KttiqGO^*K&mSEl9dTAWXc`*>z<uEjNM=&e9N<VyL}}yNm>@bY_L3SO
zBSw!idF=`gNgg>rFQM7?uV=)8?S4wy8J~zcGI?*~Zrb;(%CW@0Df`e$Ia34AJ3t<S
z9CJhu4~+y_6OeaoBKyKuiXZ<H4aDFH1AGeVlfgRrlMmqln%(yHEv$D&IC@i}%Q1aM
z<(u88JEY{C2YV?FopW&$K8l9-sEZF8i6^;)(#>3KO)T#Vb5C3jxHr~jird==V!57^
zn9IiTNV}>Frsekzx#^YN&d8gfTK!Sl#Y=qW`==K;=q;N-vY`+hDCw14SZ^t#0LgBW
z`9Y9Zhpo8myM`Ldoxbbbd8SfA0WL4mW5S@LK`)WPqgG<efhZ-e2v7sV<YQ+{pjEVr
z1IM`)>19Sp&C}EDmO&OLIgzMD`lPDkE}(@fO;v`@Gh7a#2e5(#*4x^*cvNLp!<C{n
z5y^?7do%Fd+ET0dx*zftrRc6A09w#2h55@OX?!-cNCY2N(f9NO3;dR-Sn`2N&S3YH
z`*)O*Ojo?qT!_`0R^sxT6*^#kk#%<Rq13=XQzMa}VyLd|BxdSqe%7vPQ6}GIgM=I<
zC6yB?>#jrCSyD+fVb_&xVTjtCE0$xIOfnVV?BZK4YKE@zr4(ryH&eg*0kIq7j1iu5
zoNFaBsvnhBLS%`RSLLASNS3_$?1(N-Dt=VtSO%NFE)&i-z|2g<p;e0Fbs8e9yVw;A
z5?pW2AeOh9wRq=6^W3FKC?z(yBuTDOcX9NY9S8!mZPgR@{vzury)-2#s)p-7VQP!D
zRn#U$4YJlzedwuzb;yU705)5#oud9;bS){xUNofW{FSm?&$hEr=B6>zceip9o3WA>
zg{E=dc97OI$VWP@(AJ_#w;$4KI#!rQa#Lz4uC-`UM#E33ZYs6<Fl0(d9AoW%qWq51
zEUfvR&^`BMPgkuV`}YZ7I=O0CEDLJmFyMY1H@5@o`?*WL(k~&68Bl%>`ijONJ%=w=
zi+fFtT`G61qWaYIS>=YDW`D?KtGjML>eJjLh6Ay_Ze&`VGO_SFPbB^OfXmuLif>5m
zjxJ&`%6`KR?`;vj*uq05y~$hva(FaEK2_QYhhiFQ8NFlNyp6#ZFYD{#+F*&COy$PU
zEv#_O1J#FYMZeR;7{E4{(2m^v?3{^`8RVMmqcX8EdC#=Yhwjw9hiS&xVO}<LTNAl{
z$w@uj?e-z8nl-!v7i6}hC)EO{w=*_=<Sr1z|6GQw#?E!FO0%AiVd3n+*ks41uD0bW
zh2n6LqqeNNA(10<gCo#X-P!ZWepV5qV+!b~#V3*U^ISNj02B@3W;<j3)Y^(G7;^s}
zrbj}OmnOg00yTG2rp~Y!=AXIzo~!XH1BZ3OSfZWg4(kKYz7bjp$SN=?4EtmkZLu5G
zB83+)Nbt+V!%Xd_bKjILbqzDHcWYt@t$WDWR0f{w#l(rn^scrCFSZWnQ<s3@i;l}#
zQSTH{h>62n1N6;8zZ4-UywSGHZE)d554^d6Z(6JC)Ir6dFd@F+xj?u;W;qAuSm?vk
zB9YH>2umm;vR~&uG8VyK>pkveUjun|aBU;=)btS!G~Nj$tFWpFcEZt!G!eC}WS@1c
zy88cN&&JLbfy!U=kXMe^vvbrTToDuTi>Rj-9&`+L1H2wiHH=v5-I?UYZ;lNQ04Tgy
zxx60rhS(DyHV>{|o{S*~uYD$)gYX8xaMi%zxB6J`Z10ej5DzV4yU+SW=;sSZh+a<Z
zJ8mfQx8zzmXde5F&C^K@TR4g&^zfE9$w8D`t9rgaDD>{kK91D29>ZXC{N%sEL@w4R
z0P`Urfci0j{ueQi4qVH@)W~h@$b_o9Fro7Ji)Zsy^a|anA1zFA4*?#7`W6)Q84Lf-
zdn12$Y+B{N;9uo0q2GH&akU3W6+HQZegGf;KOMIV4&-v!zCqF3dA;j$r`#<aC_)Qe
z(fK05R*#)&|3E_~6Q6^4jGgfRiwCB38^i}lGW}l%IwRwZFPDiW?*GJ|&K{TeZ!dwu
zu~-Cc%IhQUY)S7Z(1*_>g%DT-43|(F9xe%H_MG?p#wTqQ-gRpu#J_+ao{geLE)mpw
zfBY^lvFz_W+Ro)E<9jSS|AC9Ud#Ux);Fk&zNpG)uF>K{9YNf)$K26db9Ns!D<tP%O
z31pA*#idqGI|Nkj6LPXY@_UsX7yyI=Hh*;PN8e4mtmyxfQs|z*{9<QJvO4(z4affY
zfo;vGTj2fSF}WpzvVc6bYl8JSG4ZE`y+(#$Oa!_e?z#55A(Jk6+r}ZmH1H~;$49S>
zR4pz0t-kg7bh{(J7l*Tj*4}r1G5h%z7uWMy{;u#M?)n2XIk<h@vt4<=J@1(5aR=zx
zl&U_z-pg6CP&2CG{L}yxW`9b3uM;B|_XlBkKpeZ&G(aF$D(-wB8s=VCOVJMEAb#-6
zY=5eHVpHf@HXr>FfuIG@0ud)==s-h_WAgMgb#`lTePI~<0(YpxX3UppX2EkQZ&{sH
zraIvl9q_9|xTCOVEjKr21h#kC0y_38;?9ih$K^1bl^HF4MLLo4o)^FXyCwf#97TwN
z#M1@07OmU=$O`N&1bq9*eSznGEyfZ|0w<Z8ReR)f!KMgN9v#_hrW6OQ5*z*cdsE1>
zZ!OmVd9W{<#h4ZVZ8{8Pqn7EgwJ1>xH{&Ot>SndCj1QqZ>C6nQ-+dSp*SScX6<x{0
zyhsauv%Wh&y?#u*wyq}t@bv?n@(RGKYj<1=ai96w6KxbSHBr37wd_jRu96<o)Wrh*
zEji<1*=CJrTXiZcRG41G^r#nl+Nq+e@vQ^im13ul(UYQ($hw41>ZF~HKQrbsxWvWi
zc$d7bTxjfH?VMz>9YgkrC5!Akn^%w2%&HR9!-(^O$6Kbujke_kK$MlxK!o(H)TqFi
zk=4C`q%|Sbp(8*ynM&YJ6WKNEMM}pA2{)6j=POu<P$HDL+@JgKnfxH?Wtr%kP01+t
zhZ`+0yRc4~$X_;gr!o#S7PZM?`nK%6k*g`E+ry`2IF}6V`6HvA99K@(eku6Dp7axo
z^jf_wW@#`aDj>uHl1U52=)hY}MEs*{2mhAgc%m%MMQW&Y-fsK~Gu;<*9mBQ;CNmgh
zK1f-C@8PC~0|ozQ^%R9CZ1h+@p$j6NC09p+86;5XE8hDpwdP%VlOPRkr7WZnDohSE
zyBdY#It7e+wm5Re$Xfb*FpNqlaEi&R)p`V`dvL3K|Fp^qfbee*;}i83NG5PQ%K23~
z8}5Gr=het?D5T)&CTY}rZH!kfm*wte%wwzH!9?ARn<B<SyUs31XG4pvsT;?G&D>G=
zR|p3L{gUDr%F10>GnqwUZH+5vRYNWF_GmmDr()I>1L{8NwuLLWHUVrPsX`-WHr}v@
zA`E=Xv{LynAoLL96vdRdhVVd-YwRqebUJDHSA*g>c9a(0ec2znm<JO+op*s@Ws73T
z;8@-!(-S$tO08UOZvAn4b3bpb${F*`^)sv{?>9wJwgahG3z;oTn%lvL(*Uq7?vKHC
zqQ&#xH4@xi11<`^>VJa~g6CB20aomcDU2Xcn@cFH02t0x1tmvpUWyplWob#2;#v2q
zwX}p|c+@hXc_c8%`9OcA^;)%M+_TPZG_^VE^O6=Os>6aWTFZ+}cHNiGhfRT7Bxaq*
zBNOmYZ5N(-0h<i81uSPlap;;%s$?5Su^$4ACd@ty)5I7^0|=~G5BVFqi`S@0kG~8n
zc*_?eKyeyN_&3bBW(!aRj8-y11s#}oRVpQH>%Oz`)+gKNg_3#hr#55V>hU4@h}N=@
zdK*jPI-R-f+6y6{vTSQWbfWj@s$z1N${dg_R-FOS)&mVm3RVs<(W7U6RE~NKyE~!&
z;{M8&(}T|W#<mqTRkDYfA>?Qg=Rk44^R_V-prJZhDr>y&`E%s4FAD7O0%4$Xb%whB
z0^MMPX~c}5+ve!|Z=I>H)><r#pLy9>LJbM}Q?kZ3IaCN4{`}Rs2V!K>M>h0Ck#{PJ
zdO)lWQOiI*%6;NuPBLVRRK79o)=9srq%|4l@RVn5O|Kpm0XX31F=>@Zrs~ceQC$)P
z5a}H;4+#O>+@2GTzsBSH=}6EOnR)j`(%65yTcc&z=CB5Lr=vU1wApdd%hpH@1}0zQ
zeYb_Jz!mwH&H>MB=FQy~G9e2c8}JZflP^Xfk>1=9TN;8h2+7lFFGnC&u~Q$MlQmG$
z>HB*xl?GE52^uTDY%DwS`tUH|_G9A=fI)BjqP;OfgTZ|+W|}1v85B(Y?#u6F={n-(
zmxs}?=7<oW)AEm~`$_HBMr^yeU_4JT*N+1RNuO>x4r-thk31aEa}jz9FF5%9ck5*@
zzu;IyC)_==3{4Rmv+HUu>E6LLE?Ks{OmcP=h%xU!iV@~WXDl`e7qSq)NJmO&fRR+R
zh!QlHWcTP8TcYAvsLz`1zd?~BS^ptR55hz8&0|=7w$2aJ_(CdXZGjkVh5Jh7o`RDd
zKU?XQm#i!Giss0?VY3pyZ|D8SrSj^HoB~3D`n5IFI$rzJYr_*0O7EELN}X}ti$S)S
zJ}@RvwhR4)wb=vk3Sm7LPPkkxfSV0Yr~t;wBaNF{rwY_?77Vi5eQ(1v|N7D<rK_ar
zC4soc;beh=$CPXG#K{y?nOB48(zAw*ZtoN36@FSV8dv8*R^%XUvCwX}*|xoo?Co(8
zz5hSn&`3tAa6)lo@?7WJFW4uZyOQs}NaZ^lDJi}=JMcS!=v6GvmxpH`fTx3~of$iM
zTWJP}j{bTXS3>)XiwdX*vlVux=h2UI<Pbe7_K1|jgF#7_S9&|vYt`<Nn}Fonoz|$a
z7@m;x(KKnhLPgIicu6-F8$tUWr0xW{b%yfAl3#)|ZhU5Y1_&j4c84)7gyBt9W_EsQ
zLNDijko>I|^dFkmjQ!iRfT>$JmT$FWi*tx7c2setmEUJ`?vE$>-GyYe<E}k>6+7<j
z?_?hcL%Z#OFaf@<z<2d$^|@MP_JO5@2i2s`=u8ye#4UgP6Lyn>yWbcR_BZS8qMlf6
z6rz%nFQI-dw}t-=VLp7n+a|N^WU{C#VW-s9=;jNcC73<fY$gYUr_x>nPt)cdnl5I?
z6OnW;Q=I<R5{GjP7(k3$wZoku<{Y~(<0BFg|1jiikV{Pa?JOKD>$v;jfu16zCq4y*
zbvJQ%@0Y{B#W4Pi)x#CA&%9T<M)Bm{{x>e)I<A@j_x}bl?+-Yj3;b^a60@m>O@A%L
z-2axek0;tmYxyL+<8>&#6~9}{y@ER23C=UiJ3SEoxapn$4sLpMH0^AnFc}TEUxe~X
zPW>&y+uub4qi5a`6vEPx<kRf!{cDZyXHnY@6r*|`OkcBSQij6gU|6i%M=5lvd1k9{
ziPq{%gstm!ac01O=~n~ZZPqVf@}#zV4Pe(K<OhD``eW0oWhAxqPY_|eXM0DR0uG|e
zH|@Wr5Y>=<t-Wwf&-+ju93xu15ilvrpfLcg_qkM5J}<=a4y=dZ!O{U}2kpMG9N3s%
zXZ$Gek|3V`g+#-of`@QHo0-HD<_zfs8+?GwEje3{gZDcqoph7jAfMLnG<IQTdyDn4
zvTezD%R>YdcGn@Q80sUcBwq6gZnKZ=J$b!_B&$bU@M(xTphCx_s7HH%pK&x8`A~Ej
z`5Ebfa+xAL_^E{_Fqip^_HWU-u!<K-ZtE~x)JSTYVGj2emgTQyG7=1GH|-6E<QDaD
z=f4xA3(&47l;o-0^z_{35gv5jE)|QzRfOOn%<OD2S6!x-<y=wbQJ8>O!f1KF1*K4K
z{Nm7I(j%q;YY8)9!X#6GnbIQBVTMz8Ni6cN9U>FWZmYu1)r-G?jaF#Bzc15ppHs>L
zG}r2&#w=2!x-1sns9#%mEE2h-HeMn0J$9a8$Yc`^iA_}Km?x&S1qdIv^z*|~Q#>ka
zrzfcOpgC23zOO(3aAY%r&sYYup7NgZfjYD;T53q6mR8VVg^UzHHNC&e@}d}r1AWqD
zd<0%H(`F!~1+-*rzBIe}sejfT{Y2F%^^s$Os}0vb$^2j6gHTm7@0w=@pWCnFs+=Ps
z68&%Q7leDC-_>%Ad-w)_P_saSoXbQ~q?#rWXB(QhuWaW2Xzb(Z{=qZr{`DFyJn8&r
z`nt`$wCWV=9CJ$&&|f`NSI2&v-Eh=dpQ$;Bu8Z!u-LDqe%VQ`DS#+%)>}wXQAwEW|
ztB8q~wb=k2Z)-A)RiRv9OmR~-FqJkm)1BKns1vCv^MzA`o1b>b@Yo*w8+BmzMwQQQ
z*0{V@EKyt9#h`8uSvDfO!<0n@XRbRGo5Mr44&F!r^|>knkdg=*xwMJUU?AKI`D#&U
zFVSOqFrE6RlYC46NL{sRRFgC6K1Q&QW@f5#8jWkKY7>!CN|}Itml#b}4L^S=5_)i}
zSz`~Jhq~^MKiqGs@)Q*w>9?QLzW8JNnjV)hK`hnw_$s!d{;|A$;O6seRSXF4JGYt-
zlm6J2cq&>WV7xTOd)-#Gz>4o)UXno&^-;)1<3r=$4f^Ch?-06)TYI)a!^^N1zUf<I
z+df|nUznDXS6j9-?Zx2TQM|_ndYNphGW(~F%Y%zVz~ab8K$=;McO%b(pbZOku}T|6
zF876M=nJfE1TGuGRXMrS9y~%lR&stid2KeN(~V&RfYysNL@rww<WVdjR%=9L%?FYB
zeUjSsGw_&^ORsQcl&((lE|H?nA@6rj8Z?@3?AFYq$Vqgw-X<=ZJ&~BPuP`|F<x4);
ztsJ<QE|=-duZ#z!OvtDxWO;CzzlOGH^>SiG$s~k`OI>{H6FT$9YlUJ_LrZx=;QHb%
z?$V5X0Amld@X%w@lY=%Fx<y=QU!p06luc?ZAfs1z&ch0V8|7T)j$Oyq!Ueq&%Q-@Q
z@<Bbl`503qVz;p#@XnY}pDk~@(qvbleaK_yrqyv-DH-2YPB!P%Y?L~)*9SfHP|8?f
zqEHriSoCR654ynR;YUQG25P)!lkO^*vqT6t0Bo93|K-pkH@A`6%5H=7{X{+AyLg#^
z=JuAN)`deIj<jBJf$e1V)}Gh~PmO*aa>MYa;)bx^Zc5t8=<Q*qS*w!ZH-c~HKKA$1
z=5LG*2B%5V`#aG}Pwqna2r@yA2HppYwYq1$oWm7tnMhOd%H$0*o;?_=dp0Fa1&E_7
zfN44RJjvu4NM$O%`*99BZzcM&5X&{H64<bs*t$^s4uXppmc7mdh>l~O{Ul$KoVd=V
ztB+t>a?cv)ykK9?kO7i@EE)NAuPEoJrUOfAaPsR$hUllS#K5ZaioPoQjAB)N5W#Ji
z+3#U_RdJlC5%bjGOEdHBpC5(%gu6OifD4>*0q3PI%6Be_v*;cW|4(prUt(|0lp9w?
z;embU)OvzJ?b}ObJkK(mnVKI~z7slj76iSke4#QLMtxFCY;q#y2ho(GD<grRLjSoy
z2GO-cnu;EkPsNy;%9AndE=AasLjC@>PB|AkhxJ7$S0Xz71ra(qpp{FTW6ZP}kQBZ|
zCFE6G+s{{Q4k`p*?gF8j-7z)}9ZHR|uL1425{I7Hj6`CR@##C$Tyiv?M8CYTSD}DV
zZWsCxL-@^IlSdfR&kd+cL?J}HIz}p{eBHoWc8rg?M&IZ7y*w57Pp35YOa>v3$CqgW
zyL>Ku;1*ZD#wcMcNK_@ql2m2~0Of%C(WJN=OJ)B>-g%y<G~FC(9}l>V@Ynjw29qtf
zckCCEqVU;UC-)pdpV8z$lzsjUcums1BYrq@*Lo~P$@aS?&NlOXW7EMFq5U{{P@mCf
z)6j}9oI@@4i*X--dUF0J$Ty7_9Wx=J*LZaw>ltzIx#b{C8WGW*2nu8jcysLR!IA$@
z9T&l1iZ$}yu@@}Kd;yJ0Wh5&Q`}`9i<M91pD%!8JgDKH3>|^y-Gxq>$*$w%V^&L!L
z*sL{yAm%W_*l*thz>ys<CH@AjHzpAC-@E{mf>?%Xis+}6fxV2~_XDye*f9*UOm*+3
zg9h3Wlqx%v|3bhC#2Q6?<tcna7{az={jZV&_X!KkoP_-;3aI^$-rl31;2co2Y_#@2
zdOLv^&Mq(?YL{yp+NsXlGfiZXDBaV9cM!0dkv7cG(Sd|jXcYJ7^V78@BtTq1@4>S9
zoH?)i`}OHUp%idB;qdnLyz%*I>$11NT0Y_7^?mSgU!owLxBdNg#a%Vv%vE{8NPpn^
za{&$;!xm5@&G5v%iQ$a5Sx`GrGHKM$sc=By(MEp~0d8xEE!+GO9@L-w0PYtCW!0|L
zmF;=O7~vjHBMt@LbIQ2eoXr*&9&|f|j&JbQetK*5Pyn$GPloBTO+Znln_vJXU^6kP
zy}NVItlLz06b;TtYUtQz`CGas6lDo$Ke(&ph!>zYfme-o4(k=HI`~1$n6umc@%1&a
zasPRxy%Js6_Oc!gAFNctdvfD1r(WKFvM;#U;H1eDGuW?Zk=dk(#M7&3eMWwY)JY*1
z$56~P+l#Yq$jx6S4WUYL6gV*Oo2^V{%Mi<%q})v{V<c)r`$+z)Qs^671r45s;p22q
z#se_?7&M6fSRUlwJL`ZwQ3yK&QHy=AsQ2yZA<a>V*jdc=h$2U|4+9(KhvmZ#ip1G1
zu_NF2haC}`FQOoY*J{cx_F#-RPR#O&yPhqxJQ6dLZK9aTZ5GZVHNAHt*b*0;QKvm{
zT93rhBwQdmZr;x2m?yNFQz8JXdl2@_<cGz_i%x=<m4Zt02jeWZ!19w2JBOujtinQ6
zboP(VO>R+aikqmd9i<-#G*K$w6~B3i8D0Q>;G6nzebb^x<iaV+JYtz6L4Pb=1%YLn
zqlQZ4s@oVf)agftDd-A-5W82eMl)<V)vk;rHL>-O?g`Cvl`l|$6oHF1$u>HeA`t+i
z;4#efmZV5}spMaRrWppdIl)BUS3|Xk#<Z_<yn3TG!__EPeb_C50TTo^>t3|SXG#|u
zi#pN#P^r$UFh68zGFwMM=*<P@f~I^!B~MFyOG0!0YShsOzCnBPI?Hb!6^a;khTnED
z8!F@^B6DTR8u<|+Hz3H5G9vAnegkla`z2{=8fv^+JJ)c&SVLRr=ES<Ep-QiC&gchm
zbm;j{Y4>)$>I?V-cU=K)?|R(tl+eTLj3{)o$%C#nGF+dJyg4apye1~ttzInfUC;w2
z?F>GsG0e)a9kZLFI~<(LjO{=ri34xGdDtZ$K5d3pCrpH&>xacX%?Ji`Gyq_PifeX4
z28MiafR-?1FB`)YJBezLO+TVuB<aO<7j+ayHlgin9@X%P?K}e^f?h-?r%WcCOqr#a
z2%n3%5JjxyJ)Mq=;2{#k$6hK&Pv;&J)QEu>{)n(pG~&pWGkU(WHba$tD5<!Ff-r4b
z3U)f7<xWNy#~&^lkR6Q-$N<<RT!TmaIZPjrVGWcI3M?AmSD>_?AIZ_3Dgy!eSAH|A
za*|sueFSabWp+a6tdd5*wXR|d(|9`4pC6^MV4z=5e?%$N+oEGYw(~sJ4GTZNfYmhJ
zeDhSBV1~roJ2tuhcDY!pl3Iu|^2*9zP4`?*gG`NlNcC%^!4%A4a18+OTB}#_H?g&V
zpX$P?fkEYNCRDbbj535T!z0C|l@yGtT1L9pBH!@`b4;<mMKuBKH>+;{yHb#FW(Yj-
z%!!83AAzO6{#j&mZ<Ka<Ljg!m#Q}!>SXrZRxNftxKNCmwp}@m0V5&*OM-2_LaJpLl
z-tzX60Bi^4j~XJM$S@$S+`c6h^6M7Nj5HnJsQ^-}f?BDg0U?I34gDJ&9_2R%1Yc|F
z+b5#ss@^5M$!T)VghEn@-hS~C#hUzr#lhL1#D5&ZZ<76@zSKU-tv^P7syhd>UWNAU
zD)XPcC!*hINL9me+GYZBOyO#!Px&grnr?Vq>RM*J*YA<E><xgShpx$MyyBkO3O_8E
zR%zbF)?Do9dCIm|CBeo;NoJ}D_?j40dA3Q=3hDY4hxG;+l+Bd#J{5CKN%?eT(d~=|
z{0T3ZBd_7~o{*tQMB^K#viN{W*yYY4&3N*8PLJDU^o{!9TKDhE-HpIzTShgP3M!Xd
z4rxN?8>SD^;W+?DbHXN3MmlXuQl^&!s#KyHE3kB6|0r#H3<;N!u%47Oii{Lff(ZG`
z>>*6qzc$(E>D3C+`;b6SY$D7+j7&DC8^QrZSZwiJfl1Nf3-k#;!HGNu0=*L8;;BoB
z_<)ebxsb8X5SXMKRkKbo;NA845D0u!KPxel<@r*N7$-nn8j(NhSVL}t^34=v>IJoK
zfA8JBFhkI=s!Me`KI>N13#$~9HVIaN!EeN)1v2;=SZmlJhwinABuU|@1n)BAqb!-l
zaN0Ts(frEL0v4S25%z7C%NAgsPbtbMV!qL|Ml^Pt$1VR$GDF~9=y?hy2^eL<5=xuO
zD?%yt;%2~EY7Tizrn{HBuaV|sl>XIq8@mD?wu9o-qh)P~gN}QXSf4oyZeIy4Ck;E?
zW1#&%gk@cnA=|5%I_+7(PBkPl_ih?Oh(wd>No<BjrTPnYizkvL(FC}0_{W5RM;nHc
z&}WZDxy=xDy!-z3c}odT4%KEb&8)zG#(q{jWEp_WgSsTT>KpiyuqG1ANoacgWV|<6
z4Q!C%QIg9N>J=*9%<k6KO4^MsIV@_1<Y&PH88g>^%&KOegmL=-W2t6f&{SQ&oTKr0
zt?l;Ny?ZhDJ1zC&w~BQ~vCD|&+QAdtHafv9eEw^(ZlJ<x)n93l(kDle-#Cb;D|^LL
zvpT{K7gRL|&&Qg!?j>!jqrW?U;SYrZbSIB*1oP}Vq99V|e-y4K+q|{j4Jxdyv8+l6
z1`lsys64!-u01(l5H^80<!O5ez^G|OV899hsVLeur0(b1(T4nSC5tgsRH&w6Lpx)R
z7XzP$5k?Q#+=&n0FjQzNr-TZxZ5Ftt9L;%*ck(9gi@lb(Z+K{cj>C@^Oy!Rk%!Po!
z*IU@0z$*^h$6IaO#z|Pq!0EuxHRo^4uhvze%DwwinCNku(k3s9$`o)@wq91i*T*g3
z<KyKPsQ=AbLxfTh=l~xw(5qKf;g(L8k?OP;+uhAuBUJoGiUhco7{DIb<qs0I&KVpf
zur8k4s07nL!ol7r!0nH%SSKfl>MH~pmmW(P<DL&v>LRoGa4(n+C6@CL2=MecXS$0f
zMfV_uE2NGGz_=5i@Pgiy*&C;^YZ3rZ+hw)s@KX#D4n_EW=i0~<198OMENj4QzraU0
zo>NmJN!lH2zAs~&XN%1A_sD&+%KNcPa>pHZ;;m5`&RV?WeYpww^7T#~7s!4H#!ORu
z_+}|Q73AJajr81xWNnGbopI51&S2B87h}Y|vL2hBbu`Lly@I~r)nIv+X0ZYMeC6~>
zp(B_J)88kP_t-bUHFVlV7D$+`&GG29?4QV3MdOIc=s%+kVD|HH8}3niBmPM**E<&{
zEVyMTN=e{_A<udhfu0wL?<4G2GUk=MT<r(|EO3^~8rCqEg;Vyq-^)@cZAlB4s(gv!
z!^x^~(uw{?pRw60F!WL|t?mOBOpmBw#5Dt(8%KyD%0hzg2>Bp8%qxW&oe(WdB#e%^
ze+<zy<2u=B*kqKeem|B<`IEhpAgb(Jj+vkkOu*Vr$+`K;V#@9%!wT*QH?cb!<c<P&
zFMCboDMC?mC2DH)=)N1S<8nM{bA>U2b6xRS#g^9<ifP##l&Q7Z&anfA_n3l)m`2-S
z`WA*!X%r0Ki-1)cwR*r4_-CW}9P!9|ble{P*dk->`}wj&#B9JWh`ks2t^`8Q20}Nm
z;W}XQ&#l;-)R~aoV(Ch436(;m>7d`^szJ)Ik6=7^UZrk}Aq?13wl%}<J7GsCmYMR|
zT4MA&YJUCOUO{X|*zgAopQmPbXW42yQUx9-^c0wmMNu_J#Ze?B9hjaFN%!wS|097Q
zGT+_@=*#+6O83qZ+x|%s9>+A+D836$T@d)9zK%O|72`yPj1g;VQi`3+Uf3;s@m^74
z#0#M>U%q6kbX9L6+d%~24rH?y%Zj}eZ5NnmPgKjs?JS+McUlAV@}4&;*Hq_pa72gY
zuHm|$O+NQ!XJF6Ou)Hr`@gOcT6|L=_E1=X<T9=dlmR!SlA}cpCW}MiJ<S59ig6(K|
zyRRR<;bR=PGHLeYsyfmA>n9T2fi|#$Y0z~)I-qQl?a%MF{vPlJ9(POgtBVcKO|WI;
zl~y4sby$(P+<*q8fxki%BPE3LNlXy41hcl76tC_lkDs<SrS(uIByrOnUOPUvo=C>k
zH;~tsWr%|c5FOMv@szqLX?bSdi1lRfl{CX>y2r^q$B5;!jp3rT=&%_z?fdra7H+`t
z{GCL1nour}p`vnbeS*>OPDTnDQm+#QOOk3*sR#uHdeZ>->mtlv4sM@;R_JL5Nc>YG
z@k&B5sj{C(EH8>SZhLZcvd2oFpEO=lsZ~mcOijbzEjcI;FQy>2w#7}`SfyHMoR@4H
z{QZj~#Ma_*wgA0*!D)h3`50;;12H;VQ~&vVEpYg86_SQ!qW;NC(K9FpgR98eyz+@|
zb-5<ASmy{(zzkIwXQ@14a+SpnB{dm10s;D7XT2mi7OB7@D$JWsymnghg0&YMq$cN5
z6`FO3!Gbw`_TKP^r_yrAHkUT6k9otbiFM0p?cX$2Evb-uMiXqsYil6O!-~@!PO;jP
z!3cdj_xX$PVa-;^RW`f0`)y^$Ft-!hSt!KxazhOO$}8<{);Sdq<1_TJ3$%f2(vl}P
zcfakN$bKw$rc36})dH+8-tnJuYH$oQOV)Ig&ZMi2gEA@shwy_ZdvD4|KVwuAnA{O&
zb}$7&v3+i1JFU7J{pe##Rky6F0mqY1O?;Io5_<?^3H&bHokktQKqTJH-axy&KR5>(
z$yZQ-x2Np_;DVSm%8&rC{iU%o5SM?Du&WKWxVzVOTw1Ui@tl+XeyepN8d>0L3_GE$
z;r<!aXlCQ`e@{E$*;lQ@xQesH&o(m~A6NoKP1Gjwz_MIs)qO=$jSMZBLG!btuOD0;
zM&?-;NfRRT?GOo9vz8oIR^B462hGFUm~4Om+VE+C7?+JarHswVj0rqyhVR8FE}E_G
zQZ0O{|Ex!vIe*?QZjiw~*~jg&(Ic)W`1C-><*M?nQRyk}fq*gE{Ra|1&1QOrI8iT4
zjOcX&e%#44P1mz_Y6R)CVB%D@%uxhy2mA}XQNv=`cUM0KRf{UIQxgt2^7y-9RRnUt
zgsJMYI2TPf42lY9snUHmQbE;ucxM1=&Vt^04P$?OM;6Z71ns_mYET)x$nx}dcP^9A
zKuwI9YvO%PoVmIYBjBHdNo0;a^FTffj8uzZPnYLDOR3!REg<F;V<8NmqQ<KlhcMcB
z^zBR+2#=U7JYK0!G*|cpi&C+D)pH*(<LZ0uT#F&Pk(FDg_i!q+Zp@<9Y)klSrcrS7
z^APXZgDkmD#Mb;w&St}fT)guU&HR%-$pCH=WvuU!LQKXb$7=Rd&IWqV%Ug!u)8V1h
zwz=oZ-`%&$&h0yj5TO)<D>KqgKU;FRm5Xz{oJw%>U0S`AlBe}8VT4t)Y0d)Rqd6W1
zMqV`?dYW5~I*S1%I^YK{z+bQt{cZWn%a5qw2pCqu*?40-xky<URa%}LImN<NS^kI|
ziVh(?3HFS~Q3!&(LTYkJc;F}{La}O>+0H3r-m4Tf*K%mRiD`M^;oSfH89I9=zKE*6
z$MN-QUH`h&(2*K!hi5t)wU`A^A89mTDn?DFE4OUt|D9&W69rIq8J}1y1cIwQu}1&n
zurX;#eCVWht<G5cq7Qnp_mSR9Q0<FuV~mq1|AF%B6Az;8Whe#zPJM;^<#0OeW>d21
z35;{S*f*8TufiheDr&G9RV^oIz7Jtz2k@m#>ZxY;0$2XUc)Dk<w8sf(+e`Z>eID)a
z3F|=wWDS}1XNFZezP*Ozwd3%{Mq}kXyDc+&9uILvkMc8g=H|BJU?M|zv!&m@zx=O9
zO?rUiQ7)sWps)o8t7!{{o$+&(*vsqOt}H&fwqNG+=D)VVXvD2=c-GrXCqLgKhl=EI
z-mv-`)x}wPM*x7xweR^>K>p|1f5E8_-!Eb?z6`3wjCB3>->?}z;h5ZD{MNQs1c;ag
z$fv=4{XF>iTsasIHE!l!FJXNCw=i1bZIf5I!vES>iE~7q54oM(pIiERz*u;A*CBS}
z|J#J5^3CT1HAnK}!{U}AQQY!3=LdovNU${Hf7u`bFh?3NBCr_Xa1`mMwv_*q4Pqrk
zky3&_S}{%9UPAC=?sWF<GI`M7KjX>Rtt+W+$q7BnP#sLHrX_QUJim{8bBhQFys@|i
z1>MhnKF!4SeC5B}`xv+He0|=&KJI~ZoqKb>|GOaABFI|>cGLfU+W;c~O6p2~cR6P`
zPWo>Am@($=1G@yc2zx>J6{LX(F#G-T@=d|WTNu-wjQL{6SWtL4w2UtwIb#)N70AKd
z4u&F}qnb~W=YDOKn@Ms`-lv*LX)9%<@Zo#J-6Ba|q0&)fK7Ic^odWXi1e!;et)1-<
zJ%gr(l>~uVapf*FG&83A2P5C~JqHyvo$nMS{e}?d5jG5<2@OWU7yUsfh41>2PRlne
zD=`AWm!@!^WNyJtZvAzwFW}4D&F{C(+Sqd9Xm~35Ld)$XDz{2{lp3IUWblM5@+eCk
zF)Zk7M{#0hxUKlWih6*2lzXz(hla7R;wCNHBttr2%HFW2f|GLOl7@Ig(lF+r!6RN@
z{|_nFnjs6IiL4V@vYtsQ=VNPxDfXoXzunjlXWr5HX2!@7%?D$4iw0-$h_a9G>joC0
z5!y)EK33{j$$FUm7qSW4Jm5L^lXaIyK#9tTo|w+~_N~k~U}A6h-H7}`(~FO-n{rHI
z(vlo<Or3gDy8Lz%%GXPWW~yR)OJ2>JcDCU3_a9RL^D?PsPGf>xA}87MKWX*f@hZ`M
zXY41Zo*GTExS@aL1@~`nva`vLk=3}eCev3Jv(^W<Md8;-Uh$S#<ip2=sA=mV*0W>T
zsl|)RoTN-4wV@Gfb;n`vU39q=pXSzMjys`dQnKR`=^`zgb$E{=JcS^$zLMD*rQ@=P
z&L6Y@-m82#ot8U{HOf=DP3MLGSS(2ujf7G-6{aL3o#3i9?yud*l1KRwoc;F~-)zVM
zv3cgQLtJ2&_171T1>1WJYw%=1#vrIm2r?r{m-^}r%6Hr5cSy3$@iv0X{G&yE?asAk
z{_xrCE{TEs)!}bcTj9#LZt>!qLcj7V5#OT#Na;8uu=isHNrw-DU#$tS_3F(Dlb3s>
zaIG>07Ewm&F>Mlk)lXVW5&VV_!0AmcDbAAbN5ut;Y(y$4t{G1KrnbiwJiaYtvH0F9
zzhy{QsPgHH(bVtp3++tlPM+IJ$wr8y;}7Ue^TigJCUhlVv5dDFylHIJt$?M9L=Fo8
zrn&+*{`Kj+tI|(ncU{)S)TX2ajt$MjsoS+s9+@%7_bv^iIYo4u8o%o^`^u>ZV61&)
zx@xti{y(0+F-VhO>3VF>?AW$#?AW$#8_(G0j&0lCv2EM7zP<O2`~B;#uIM`1QBj$l
zk$FyXE2pgZq8Dk#FJxCrU>Z8Cp`J&%>Q7{ylP?DZE3};eqQZEtTeF%~<31ejM~^UM
z`{mhQx#fN@>yldiXF}cF^T4QhFfo7ti=aJ--k2N$<TsmOmHd<l2veEBd>drmcZ?GG
zJt{??d&3|*Zm`0^k`qX{4u_O3;sTC53SdAGh1&~TLrb%{NVHXjFkn<30SXH2?##n>
zmPgeLDD_9|2V0e?S11#~1{abYd`^jhJYEa}stCI_qrN}xL&5GeEvs|nB^|K+WH^@H
zyKH735Ajmb?<hlF+UpjxjmTz3xA%gxHD`0x8bc5HX;8=$Ch+$(F%++_!Zs5_bBv4r
zs3Ruux9Ku_17Dtih;QuF)n4DM#{4Ggvtl68%jUk@GHEGss|29^OWW<vKDz(vI|Fw2
z0u(0>PQ=nmzf!6ZHg=WpoE5NOZmrtvbx=cCPQ)Qr4Pq;v`QH0JY~kCOYDGE|yH0!v
zTQy7R)^0DKCiw&}%?d6jUCD=j#ol^pYVqq=DwWcWsgyRV`SuW8f_b2yu3y?pTzeeK
z+Bve_9|AU(*#^zZ#kO-AjvIPJokGn8+f%A<_JtuiBh1i@GWvM$wI#rx>VF$z>Z@*y
zUID++Uq({)K7|}6gYH&}i)c4HC?_&v@7E<!Bfd`0xt|DPNZDd^_SL~OmNeTX^bLF5
zAcd3nqVkl-wITu!#myDLREt3;1bI!X+^bxnMFw!vd+ZZNxXV)lsG%#y18oeSIp`>d
zFSf^hgiua_<|bMZ%_U$eSxq;vO1z!GWx?q-#l*EfK1t9bB}^q|C2gCBD)1fNih`Qu
z@Li@TSsTJ^Tz_}k3+v5!L{J&uTs^$q2C?mC%&_HBTXvjD^d%~5T({paWWaF^wh3at
zjGU>W_+enOJ{7AS8~CMU^k^kX#WpopX&vJ<%oJb^xAk6-@C=v)OS9hTxKEaByb4-^
z%o6W<md#~rb4Hf)S|&joq4&)K8N%`$vn$>WT2`#y{Akp6kEQTwcEwFNrAh8^_Azyv
zZv6P<QNbHSDPAfa`XsA-?&ZLlb{F6*mQP@Ri#rZ_+;bc>R7RV%|9n0^*r>_l=*TZY
zef4w2XdA2civmOv1Q!bT+ko$HuDyIvG}Ym@?t>2}g;wn~!@>nS+UFcylTX>I@Y|+u
zVEdxj5u>0u>|F(%n3y45rJQFKlEzN26mnF@Z!0*K)I@XJD2?+!m}#heztlPyT)LO4
zS?C^w`_WcgGMl$QlUd>NzaH|}zWDu8v>ZN^1F~$|u?M8Sc5Po-RE=y%V@Gl9UM!cT
zjqWgXoVtz9cia4)oh9MBkE*0c=!cXmz`2F=+>B`x1y3BhrT@X6)|h}CU{~8|oAP93
z47Gdv$^H2&o)dH9SE>v+&-)<LV|l6hVEaDfgKzpd`!4vTW7mFmT$ddjskK}pg?gkf
zpjaQ);{))U=w<P2fa=Zr>9Rq?m<+UvpIWxoU~l|Fpjsof0W+$K$$7r0kW?T<?b(x_
zV)t9Gtt1x;@UaH$55r$8XbsTlEs!JCGPN8Rk3|%a>3Mk{vU&E_WPm}Vu=oKnYvc6R
zvaOL*#zXI9lIR|Pby%U0O61;+UF`x1T&<`k<pBhHdUg;rUh8`V_QPH<yqlp{-I@JL
zo^AcW?o@rY2_m~KdIWALnu9fFGdDs$g7GZ}170ZiD_<AMI}{4Q9XTV>xAkA`QE#WC
zbIUij$HKWfkhJ#A5Tsn1|6>iuH)Y5De=I{Wc{an`Qq-INFkSi&96%q**Wo`n*eIl<
zL<f-Whg1JW4en(9Gqd#rd|V|!{@<h-9LN7U(pZ={(`>Q+MNFS9@Vz&sx9xp$qUZ2%
zaFZ;8c9s~YM5on=gcdNYX+B@^iIijb+S^|oYrt+|>~E+$#Km%qU+>Sol5-<s-UC#a
zoFQjvfS#`_`31lP4%^rLP3y%-CQFk0-C;=_KnCEK0loNmSKHWKR@y+lD~iSVFd}as
z7uQO_u3<~~2>`FePrz}Hq`5Cs;995iAB43C35RKJe9YSE&))XRGvAGXc>+iKm)XNk
zjLT`KCHc2IISW|N<r+Q$FxPV~qXzI+{eMkq872z&CN_y_0wo@#KlMq>Gv4Aw@k=eB
zMsX}#=%)n$`5#WqXzTQcR^Z!1R%nTLa-Iz7G6oPG0|;iq8~F!S^%qt?uV*|;bH}Fv
zKd*kURQm{tJySOxYKX3it!vrH^YhaVYA<U!b5uzIJ6Bwalrm^5kGKvcI~Y%Y_!iu&
zJ{Kkh<GyTO`(q6>MRkb@DEg{)LH%F48||pe%gyq(a-9uE-T$(j(sIMPN(wyu@Vw>P
z2zOeA0z4*f2%FsZAtn%2Bz`2d=zP*o1{~Z|adR3qdtj@`>#aR!8wDh*hORxsNC%r?
z5&_$0g2;yv^uFd?wq)}r+GIM=+-TfRNf+TaSV`bBViUC4yG7jxBis!m8tliEALwqh
zcFP6A#C?axB=6+f`XfET4$L(6Y9sMX79$#9fSaSPG(6&TkGpl#Lh_-UH+TozyG9b*
zE)8`Mu}v*slhNpWs+(V7UDv;;^RkbOjW9-ZaB99y2+htZ=A75jZjyjtb3^Sm_)6)Q
z=Bi@!eh(7geteNqiq2F-6gOQPH^zxdw&n+=B(AUEW|7JCoCim-)G(KkN=lu&2;<(f
z0hA*bW|`fQJ<cZ23vv5&fludFVe2zqlL|0OVqA)Tq*okGT##R5*3^9$+f|r#8j4R(
ztbB3MS`*}LXPxrYavK1N<q!0RwxV~Ei5V!4;r4sQlwGN>F<#lZ0%yT`n!98(y}P-l
zR+`Yc+T3LgNILokx&^0Meuz%kM|?S=fLUvM;#OYL`})~HViYf!)~k3O@z)&7j!_CF
z2EnGx4;^CdYJC)}TFJi*cv<aGCwN<M^#UQxJoy=mmQAZS2<T({u@uxxOK9zFX5P>3
z4wW`r32P}g8KD*{PfYCvFS3=1iNQ>7Bdt}^4SXFA6ZlM4gHqWfJ!bh}l6-psfRVoL
zqVk?PI;M@a_^R98-1Pz3QZs~du13w^&qy!cJj}t^5y72;MVR#hj_fr*M{@hNqSPWK
zY#A;e=cU?sYt%zN?o(NJ+ZU1vbXYP~sVM)b`)?TpN|+crTO-bDZ>2&%3~df|=cRRV
zQfJt*JJ6Y{G`$SoX#E*U!H3yjfUFK2+3Wmi91>ZdSTlC%TKo@@Xh$o)JYslhUMojS
zuptow!cgGg2#PQ6)+<Jj6_(WjK_hFIvO5H1V7jRah}_4IiiBM3cN~elFR$m6F=Rf#
zJ2Vm~0K(vO86BDN+n<CIR34@UvRJTQ1*_Wrv3(E^|6B}Boz=_4%j%y*t`g`>{ks3L
zXJ!vFMB@3aQ~T^qj0Jvfn%GC$1w=zyaRl}g%N7Z(aG=>WkEn)({2UV24uypm-|D~;
z4a^2OeYqEjwpHL0YruVRFgfU-M^=R0%L&y%g+LV$){G?mG=EliX;2hxs>)JP4zA&t
z(55VoplHzw-rJv7>>$*3K&x-J%nxvU>wMFfqMw*~s@^bcaaQT4nWT6$y6D)r*93t9
zkjN7)wsbmq@qQ@cVbO!r#~_Cmb(w_k*f%@G@>7^kr+m$ldLf(<n){1*hn(WT3Psdi
zTXg^C+M#6KmZpSC&!)mEN-}skD;I;Zxcl@qB6f4HE^Bplz|WUCpxo!y`R7lZ;KQ!k
z{A`3oja>JAb2Dg^UCrr|Yk>8ZSkMRuf)diXtUgYxwfl$Nhhn#|pIIOXH}uL9Wh-#^
z!SdIvvwQM&#~s5Tlgf78RlkFMnbwa4USNCpKBw}57!DU)26bE|iOyNwP1EQUt)0&H
zr)Hd!KUTJf6Isjj0OHW;`Palnu23GfhoJ;*3(HRoVa1Y)CB_FzW5Oz0W4+3uRvi+T
zU&cF}UR+GN-~trh&nPXUr;U4rh+3%Yv^Yu41NgZ@jbq1}d!(H2fqld{?<E*%U6i%-
zox1^uWAGl1llc07>F6aS1705W>qC|i6IWNaN|mk42s<pl0AFc09uxl<YigS=UQlHO
zOi|wrN^>XVNANBICB0^EYJa&E=t!(0k8(}fOm>G0^I&iM)mkt#%On>d8=!pk;IY6^
zXnN)rm1FNh_-jMq;FWHv&f;vS9zEGikVcPbz)<X>8UAx)5g%B)pYI#|pGhECU^}8c
zptuLHz5uNlEbPORGuhj8e!9(o7MZOoF5;86+SQa7L3DMJ5e<1DV@;i?Os00A<u2x7
zyd%}(nMxv&AT*!u+(SG)QG$4L&IPA&e;&Mi*#DrxK3qAitl<s?wG8hN?GNW2f}^Dc
z6?a>i<JdTL(CDQ3@0_CDk3lb;vj?kDLO^`;wuQS!-2Wcnc%$*8{MV3s*vCBWui;V1
zGY$L#`)6DhhfkHyalTXvl1Scw+Mlp{mG>@eW~idtSNynh-~XY46o0PzkGYibzxbxK
zja^pO%p|sfz;(k!HvaExH7rvF4>oqqpDe}a3)#&<{V;w()QU{t{HIC>o{RB+@c|<%
zd)fdIup@{dK^hw|uo!^A@DD%W&BNF4vklY$a=jSDA4~5XI?5|gh?RkF0_)4lAIlxj
znz4(f67H^%QbkS^h%E>hybLbZYM2Mk4;?;%Dp+&jVi<j0&vtd-7!<WD2pBR;5j9ps
z{Kp&<dDcpJ`DH4aSxaE0v2FH2gk<Ktl<7Tx7=p&4rNG+39uKfpg!7~tCb|kt_w!bY
z(*s2AtNh?{W`Euv_Z7^l=GHL_WC?MKY<JGD%NUQDqY63`>Yfm|lm8Is+}9z0-Llpv
z_gtdqm;L-FVO4&}m%tOUxRiBUR2yV4;F&AkYOQkr+Q@@!9fwvXO=I@aDf&0d<AMM`
zfHO5es0dUvGy{O}yMe>e+>C{v9*6x@{Q%zKd`VVda4wv|2T44SJg<0y^_ETtDal_i
z`t-=&D*|%}!;_%kQ&8Lp5qsu}Tm~f-q`OE{R>>vBAf$;zY;$eQ``|64N_R64;DZtp
zIo{-<P|JFt74Vmx6<@yg<7<H;RcEd|Dgrg`nG7e}M-tF;7|sMK6zW}!gYoCPOb@tw
zjuiQf)}rG&svTNVb-1z4NUHyoQcPKQc^^_zSwmJ3gRT7P@fF1_hL);s*hZ8!Bn*ak
zJ2oc7Cpn0}J@Y0CQLeo<62Xo2LgQ&^t{-8oGxgL#aGORlhqK^7!@(+#FM@@8F_H$8
zgC)GXo(^ywGeiPy-95n?z)!^szp5N=Bm{bP1w3H!JPkZ^tom4ouy~R`p+pTr6BTTJ
z|I3Cr1*d#4JdVSddF!?V0j}ddZfrg-d-ex|n1<phL{TL;Y5nR96Ixh?D3pP{0|Q_+
zBeAL@7HxP=!-W4^A1^j8!#5B))?6mG)Wa{3&js*B#@MXWDB2y<i#T)0&a8mT2ZM0f
zelN5MW_&0@i-_Ew4gUwZ=8GL?cZ%k#aKxV>t7~?v^*+lpFb5T*FKANKZfu3X)nd=}
zaQ=<oOm`?rx4MJ08Od^qGrt^Uf-iJC0~`x*3`$oaV=e=&g!w)Nvhk+Cw4Sgk+|)SV
z0|tm1$Z#Vroixe7SkH{feLGGjfg#*p$=OXMzIByCA0DFTxZ_xDq>~F%UUpG2<~6J@
zmx^sJxXUP2Fa1+ADU^e=^7_kDW9ZiK-t*jU;9uU(g@MghkM*nOYqSMut*EcxHXLm>
zm&U|5AOQ`P(9$WJQ;JP@yjeMi4U)2ZJQxsy?X6tFG8RNqa78s7$#U*9-0v;$2nY58
zH^NB5v!Sb)J<N%>iT9ZD4k?SeMk8i<y^Kek2-)u~yRKGs<6T&Gl1wex>cTX{m?>2l
zCabF;e(tfdty^rYFQfV)0UH<j*JyOfxXZPVgXO9(otX+Y2tj6dl7bxZ>gl3?egL4p
zdk19s7nD?ugI(2?Vwkc{Fxo-KfrjAGT)<g;KhsJbH3?S>#2p47qvwhzJFeMqIw~F8
z4ww-2E}Z^PGj#VU?<!5--1kxo;!i4+r!$I8D1fcF*t;uZiBD=~Oe+IKwv8J(m)%U0
zH^1ytx$moGRO*l8UL|IkgvQ0{s4W1beBgq0zqw(!waZnC*cDHs8>N_9IgV@PU^ygn
zb9g`p=Ani2%7J)inX<C7LCs{*gw9wJ{c>Gn2mW*&`(2l-_OjP;6yw)(;tTDj^QA*o
z4MijpC;`v(;RiQ5Sx4J|?iumoCfUiKCZ=^WKWk~C8FAj4Wj4Ev`qi7o%ou=|?qCVH
zbTL~>nKq$jfl~Pz$UgxyY9UlcAw<Djl_?xXxFwK5#|3s-gYVjth7E#6$F)G#(sIm_
z2Awxl2gU7=mj2Dvzwp+vFF;5!Y@v_JnM0h{usDN1b91P1@O*baWK*cswl>mC0N()p
z&3(eyB&IP4&g?5md@WGe+y1m$3Se@;tV6t?Cx+!-d3W~S#G{VMyCpLpp?!Ede<M>>
z5_~R0WEIZx8O)zXG<j_r(>q`29Q<Fvmk~{SkwzGMJ@n2mC~kU1Mn?4A#TJAfGwV)!
zj8*Bd#qDEwj%UIca%7<u35uS^$Y@8*$d*ChDpcJuJ|l%EEn??|b?#4720QHl<m&h?
zABt93CSK`rcN?EAh2p6Oa$+3Wp}#uo+*Q8+=+8uF4n@2?_F1|%e&QS8^Z3_8HE=S)
zOM<ZyezG=E-@0AZp6pfz`ZOQLol1GWBc&w4jJVs&t0f{0zP^lG`H{yyhYs~bn?P!j
zxucTq&lP+#eQPcrFO1Z4!Gi|??T7Xi2;%RwguRyS-S4~`tK4LgY^W>M@(GhR@Xemp
zYPKw8H#3&cx{PP`oGwdbg^#q>MH2JBjU{dBEk9DVZXOeZO%Jzqm`77GNO|mYIZmSH
z9}|VdZ}d^*G&hIk)JLm)7fcdzY)V<>QWv^@S1UW!eHXA*RVl5UwKM(zY&o>N+8QCe
zIjPJ@P_78Lji&XD3%M7uki6i;G{4mzHS{xW7$7+&YkvGE1}E`UKaBI%!NhU-!g;jJ
zXD{h5(o1I#AN^=~m0P%Oqr5Tys=tWb_UpOt$v^f*x3$7_O$@I6P^0gA4K&IgL|4`n
z2F|%&`~bdS?LAdnK7!m@5vYL~fx(~_z<2-8U9<epU9)hoq#4lwI|Foxjo<d8%1qRI
zKL7oqhx7~BKB>}X?yuOs9TC_AJ{InGZeg|k-c~k7PBIlItS*;mbN{u3`;>(=9zEo8
zkdOAJQ299k=Z50RK>4&V(e1RSxO<*tu$cWhW`r5GDp?KMd6~)G$;q`BP}#5qO{{Y2
ztnm}6cL2uu_E0uT;{Z(W1=)TKZU0$oAA-d2H70n?3?x{_S@-}S=6!+fg$~NqIiT>q
z)c(9P?k&Ud-jUU~-9z{PH3W}9=w827v>Gy`ujX@FYHNpwOZb&q_ZPhMGL4PbVWXqA
z4G0!dFpy0KlIrVv9uX3`Nc#}^?_=g^cIgpM<sQ-=X_|X$hB5$%>%=(?m!iBa&&8|b
z=KS)J<`P<ev!39aD7;^DHRwwC#8AkMR}5(xFwAGVeqTCsGjfcMtJA>B!P936kvLvu
z*`V9-C-c|$ec`5ImkeGnrOetEYVN5nBwoVOCB4d@@s%^IDKjIuyAT?8u|1u45$++s
zJk$u#*2Th<Doj8XsX7MSHnw}bF7{6f7sjgrOe@m#pS-|d-G}?1*o(Ia4+gW@1c9AN
z8my)8a>qWXGvD}WFO3MjS@$h}@O3N6GeTr)s%e={Sutgxem~{d1R7Gg;mcy@nDqY2
zE|Zm`p*trP4aRZc{D}<+i~Ev6l7QjH1$iTKaT+-#r$+;9s@D}qBBuncam}!Vi66}}
z1O#lPdNA0T1-5fC6uUzeM%cw-mvz+y4?=b<^cTjI45wJ5b^@Vn9wt%v>T~jmhHf|z
zBmP2I4o`&;qjdqQ#}JCQ(#6PwldDMtK7ukR0B!bi>jm00yOeKa{{A>)_sWx&Kx=|d
zoy>Zi0AdHQA-AgQj_g3fz<4DI9qesd!GrMiS)m})+X%<p-8P2xlNR#umnq@PnwXBJ
zP{xll?JLF0JNPjaxaW$Aj}eVJ8+edsyPG;pY}7@E$TGRaX4kUX?=wfRCL2Bk<^<}?
z#0<VJp$`kG!nGxIOK}U8m_VO6L4h0Ka|-%n&%^=R26}INKvf8!2HOKT?TX)+I3s2p
zhcvUtpnfQWVzD_y4Spq3617D}^ymr}MZ^NxrL=emosmey&<9(CyD3j|aE<C2(9f?|
zzMEOMDPUdZvCd!TNS+J6HW=q{7H^|@Xf>NpimK9Ta1MFV+^0yM`bsqkj>c2{4k+ZR
z!dU@ujR*6LC}m*flzUOm+%?Fvu@Ho#f3D*B9~NELiN6tn>A<cK<Lj0tl$%Cdwy6{d
zHJA#eBbZeClk=?~C(Yg$$gr2R7#6lkq_c4Nv5wQEBOlp{9;We=M9sz(fmCLC-T`;)
zFlbwD+LTEwlf=abK$Qlkj!BbJBS7JAI~f5O=p=ofqiEF-vJ9;JOgE&cPI<kBR#O$K
zhn-;yFx2v_NGNQo+;`f;y>an-q$61#N+HnX&dI0dBl6e#aYd<1b^A*Dzwj42B052w
z>lPuFqHE(2!X~gJZfR0~>**hs(;VyOlSWFxU<jrimD5WJP(4!L!tPO5(p6E;$F2jU
z`<ox^&Nyx>4aid45*Us?v)XIRmIMPUGAPH(`40@>r|_gcWQU+5XpSc2p#FlviQ+Eg
zy%V=LZjT^{cSSi_UnIQL-VJwY#BGdSep+i9ah+R$+Vv4A{!-37gXh1HgPQV_l-4Nl
zW+hJcD)X6du~egGYEy2Ar=?W}r6~er3{D{VMF106Xa{pBowd_%<<*e9sw~+fvnZ46
z!q!SsZMZb*vO+fJ3K+_P&a?nkJ!!rmLU&{%Qy0IgE_QWT5z6efx~ZG;l(_jO=pkq1
zwJIaSO9b*-TTq$dc<jleP`CnGil{<i7^#Bzgrbj3i9x@PVP)6r6QguDH<tjDA-eq(
z&VmF9Dm?kgeSQuFT(R~!r_Z!s>EjN8vZ{2gEdj?m9DjF{68W3Gina!hgF-kiKcpAf
z?az;uI6#|B1!00v=*W0Ea(G>-MG#5IaTt*j{5Zvp=cxl0|8V`5YB}(7RUsMR*%DO-
zK|`{(f>?T1<PBT|!?nH505$<=Z+;=e&$?Mf1pWpG5ih-#pW;?;PoB1i*`b(-<f4>r
zVb9yNCWx)<T8ON%;Xs4)rDLkqDq7fgb#)szBp0+kWDN>}33m{cr<UZiC)RwrjEM8b
zlkv}deta5w)<jg0pMZulNVObh)Xx$uSBzTK@Nq2|jFKsD{}qX48H^6V#q{lc8s6(N
zar1%a#_FBBBaa<XFHVIee}%Y5IL2Pykj9$rHyEb&>SUUN>&e2KYAEq8nXA+c(-;Vm
zYXzzHt|U5HUaWzRGtjZWNnFO*=BJ#+S?5837#SFac4E{}-zXG_fHsRt5n**z6|69E
zTK0|%2H}COr}?AT3Wft1DjK$G@y1-YM{D0YUB+SeFCJQnOlmYd88WVEf_I*f(dsci
z7$y-~0<OsPs&~M85}=#U`PqSPM$?59LpH-_u!Z$LED`!$zdmo;xsg0rI{xS^O#Pg)
zL2``r&tpmRte<`5@~T!c;x1*#KOIrlNoaLgopEGNyC}m`RNDZwd{ObUlT4p^{0Mqb
zvGsDohaFhN_1e-aKha$+?flt$Dr&H_(E`QmrmcBtfX3LwF2!a^R;HrxXDsYWX624j
zBcgDsokW_zZ`G~qFy3?&-Ana?eL{k3t(|^7W_VZKo*&GriOxL{#fs}ZJ(7<vW>wYX
z4$dcOllNA3;XVSoku*-f!dhZI_P)fNK_embjXNZ6>1GMD-vbo&DVuGz#TF)jLlgVL
zsSf<z-)AGFlW%4Rz~htiXW&L#TL#xnLKnSAe3@+?v$jY%UFkf}>F?&%X7raY>C?V9
zvWM}eYh8<87|0qfR6-ZXwaDDMm<8XXhED_rp2_WD{kH+m#zt(q3*JQj+x8^HlW^G|
zAnh0~pDUx?YFphUMVT~f<Z<?dTZJp686p)Iw$ED4HCAa1HK1LD{t7T472fO6VVH?e
z%{o>2aj*0}yK$&)ldk&oxhGkT%QAM$-u~}(XJlh^z*dVYz}ZhYcgroL=#cgpnHX1e
zr>JP8ye@#>LnT8Vc6A7!dAW`RXK~>MOV@8+NNajXhE%mQ>{ne-+3fk2=T#mfi(S#p
zY3yE%1U}?xpiL7xghjTVebOBNvd#kqOs3KsqAKja1TID0Tk<Vmw~Hp&SY$@%oXqU>
zY?Dg2Hdcf2-0X4xV5~##^{9#ThjdcYgr-YEFJ%K-_G`5NL`kl~mb6_=zEz4)f3p5Y
z1&1!^{FF3S(45O0%0`V0`!MOWA>gbB_k4oOnXXGw`T0q^ahRZ4n5eD0c!AaTLs;qN
z=>DYeSz1;4dAV0-_}BbJEH-dTGjjJ`dj{5pgQ^ziOksTRTwBvk2NL^>6oZB*30Dkt
z>;#oX;l9o*izn@G_4D~UkVK~cBEHE9_S=Yx8*c6V`vWwkx0b+Es<Y>2WcNRcW<Su4
zmQ&gP3nl+QfiycSOBxb8upFSq?6D4PI39N-q_fjDFKS+wz`+u>JM-g(CnLdRtv;n^
zI^b_2+YT>VF4~gF%hA=0+*~hw%g8j&sqf3%N$XAT`L~3<%FEkI>&C$pw-+1S?8fz-
z^2<{op25rOQJCV|S%LTwIqnjYz^6-qVhHq9S<OO-ncYG$?+hv&2`xZ5$KUY%?r!hu
z+vCHdOtF(cT<o;3PVBE_oI~bp+%9ob&IL4{EO$THV>dt8QmD+p3-o81%wMR(P#S&p
zTgUr~ZRAx%9$-X@;8W%^#6xXAP*{U#aFQ+4@!vMHUE~hY9`7BB6iB1F!PC-BWRxhZ
zBtR2e8$`+<X!&xXL%#uA1=Uu<JQX1*ZuQK?teMz%Nii&|mZN8+JT7uX2d6KRwdt;N
ztk^S3AkJQUBz+a^d`fvmIzIR0=S`oJm4W`W^-8RAX3hP_BO#M?sZpxZ^Jo8xSFpv<
zN47~OeGKe>GXmR2N3JqPr5|UgHEPjoqsyFsBJg-iqNut^-|YYjO+s2@fGbPu+ZLs2
z9z^Wj&XxjP8BRG92a^Y?>C*A&%H98oTeVd)8D*NJa;R7M<Lb9UTZGb}?l;HM(;Kuo
zNHLcWASJC+n_qqq-+9AON?BFJFW*HS0mmyTt&A}1hMGgRLa6v_;%R1~H%utSmeg$8
zPVs^p)&kqR3b6tj&p>?npB7vzmpaVc<Xi05iKyg1R7})!5=IwYBUkKbenfkcdOnIQ
zqZ|*x2UYj$fr@gt)>*<hmPgiQS=Uai!l+X`E0u2*vcYH4r?F(Chw@qQC}Fn3K{XU~
z{KNgce7I4U;x_>3s%1!!xT7xTkK-W7qNpIM<OA5mgGhk*I5o;bTE29s<zQvQ8=269
zA9zeh*j?``6>9(D22RQ_b>>}r={}<-`1Q4Z3*&fUYD|hyr?GV+=F?dH>+;OhU@2e+
ztW;vKrOgBg>GyUODb)5qvd(2u9hb{8xDByX{*jmaiDJpEzo>NGqhEL2@NintA~o9U
z9y`xhQJDeK?-@3gYHe<}xT{vmP@8^%#PJztpJ-F#MGtmGbf!;St%^meaB@$BJ%BCg
zhaD8<*axbQ;y+3sU8i^c3B|Q)q}aYPt0<AdTBzfR(p77#lMPyw{{&7(Xk8go4mRiN
zi5t-|rKU5&t2H+o<C>Jx*r$D!C*~O^h>8lx8~FYmrEb&Njw?E0_Rg!;_sPX(uyi>U
ztu84bI-agqPfHO8lf2xa#t71I&QkZ^MXwD?j}rr&y?zSXExXUUIbI*|xToxc8m4jY
z?MR?-<BH<s6$R#KPMl%PLMJ2xIoNW+U9}-LC<O@eKkNCT{&^{Ty`g$>=5VbIn>md7
zZNh+7af><~aBrDBhFx3EsKp=Y5(;vQzw4p69*d`aB#ty-k4VwQ&Qs8VBP0ypG^War
z_ns#a4KKeNO!su1$F<k&uVLI4q}^@0xiU&(s6N%S#12Q>mf_wO9qKc$8?HWT0X7!;
zn*Stex1y-Es=4Q+KIRGEj8J*}@ZuIk24ewK6{ta+5BsZiU)jMLi&40`9Sp}y#REXR
z*|VJ0s>9Bmyxaj42XRU%Hx56<BpMtCY=;G+rLf?k)dy>#$9PgtcKVy24=}ztqgbqA
zMk3JxxRMaDiLXYdnR+^=@p`)Q{oPlHdk+lc=1#zIMgHZ8=HDtzQ6JFkI5Z&Yz6t;&
zoz|c4=ghKyHB=wMS^_S!zEVU@Igj5t5MqjNpUb`!=+~*%@>NJHh>qRS86dH0=%2(_
z*cU@!w9gJNRvSqx6J=C&!e&00*vBg2;JsAwM7G1NL`WCScMo3p&ERUIfVv!pt~LDG
z+RtXM7&C9rNjo9=hFjuyWXG6TVJQjSjf^fmG1-7$%zK%6daCl8GleaJp^xAIDAL8h
z3>T)0Xc|N;JrA|}%FF*&iYLn7%@m}vIXHP@wt}gO7rzj20|57FFg^a~d{3k11%?A=
zP2=DNwg$AAD(LJy*F}K4Bd)h~@({I&IJ6FD57V`wZt4bhg25y7Z*B3lZQOSLBQD(J
zVIe57>XDr~tEll?Uh{rwT-Nk<SB?+gSPN9yyb7R&qm7>I0{WE~8r(^8n_1tU-Aok3
zJUh9zK8xHp`RSLG4xbYOZeU~x2Z9MaMQgK{{tbB1>GQ_4fSD<>u(<05nfyV0HTUnz
zhezuBCunfp3sJtV#mNa;{2Ta^cJc;eVnl^YB)%{NM=&$}E|>8^p!VlWas}DK!pPkE
z>YGXH_upyw-LbyuF<=7&V`K2Ty87PU`Z`CCAN>)jwTyLOjUNguRP&FY6eNGi&9(J+
z{Q<z@PwN1y|Bu$WZ&!XyNb|?f1D2q6(hmY-#2WTSy2fe-um%?=aA<67==JU7&6CN|
zE|5n95Uq`@za3CsW<8gG#N0B%BR{yo4ctA%pLMQ*AChSh1Ep_@dj<n=My?;6RUny`
z9|$*~r1s8ku3M4;U<0Rj4hN7w(LeAyK;(cC04Rt5*#1r*s6oRIM;#;RA3=gg`h637
z3%Jklu8lvwvz^m`P45?`&pdaGPDHOXrmsAAoCid&6~~`EcY@5g!yR84{?o0I_n>Xv
zOB;cn+^4N!{8J0V7XsAn6kh*W0{p5U6{ypD0y1M?j>hKK8Pn|}89JSBlG|&FCn3O%
zUy0i^!H|i!I@(8`yJ#z-mpW@pW6Q@YcZ>U2Ey3e8#hcKLlRp2cuFQ4Ncm4d2hn3BZ
zlGs0t;7(r>Nncx%{}#>`JdW*)OWuA#O8N`g&BMjH5#TR(LudU(P`G{dTi|pH!NSn&
zdk+8dCX|}s(T?(4=*G|L-@9L~0EN;!S33Nsx#W$nWmqGfnfs94onwBpoe86m-8h>6
ztdALh?B3A$Hxl#t@4~~!2K5+_lMpi{e&N)EQ~qx}ZV>Wo;ofd|Ih25J{Egn!{uHXI
z86v|E?c}TPJ-6%tuoV5UHUAW}O~>{RiPBflw<YUWoZE@li%SDLz~z0FQ|BgU`o=t>
zFsVNKV8r;q3j>0i6X$zm(cO|nT*R1$@U$1Vef0<L$6lH~7GO(eoOcEI%lTu@c-xz{
z`>sFtvjB2aZs9ZQO??w~2<UKT`AOOuN$C5M#{jaW{q}Bk=q)9F5c*l%USA*B9@{@i
zKJc6AUtSwN?S?@InEfz4@PRhIh+u(z#u?x6fm-J+049CYIO-d}PsA^Fh^_&iUn6n{
z$8YBDK-q%mKSaZWpYmsP8k!y&KfgX|4|Z19?!MZCzMps=bDn?9l%rm{!NEF!WA=<e
zd-|S|+#jq#wSO<*Rf0ZJzy?sX5GB%KIR<ddUpgEI;GPHp9<2kV)&dB<GX(Ba3x=^a
z`C*a2jZ_k>Uo0jqs6E%#p_t*)<>`C`e(l%cI~o8NZJ}?-wkWmjL)(v3g28%vB&GMd
zBjwsgwn=7zxrV}qIgZ*CIeaLc*6P6C6YB?)<0RW@TlwUd4s7T=xa>19#ospi#lGl$
zIyN+<T8&f#?4FCZqQ?XLTbfw85n3QKCwj)hu7j$Hq4u%rwZA(sL(4Tg2c4z8%7J%w
zw`PFh8GVf-rI*=E40bH9_EyU}lx55#EOB;@xv5Z+vc0x~8vtW@_?p3@gu5V>LcQw4
zJYhspCg+rdEEp`g1Tvy+2>9{!1{5{N96TKTu}~TSH*%`)2tGp`XyQDgI0X|}1+#<4
z?LZN^U`d7C(uMbAr*IghltV{h81>boAcb&~{co31{mkhRE#0&q4CH-pGFTKvuU)gW
z5m#pI)fyk0C%$d@k#D`w2_aTf*V0^Erg(fF&XnlG=}`G4SE6<hn{;nbecaTV(d2L(
z8*fH{6CQ|851-zMk@#sp?y{jKq<O=VcZxe+#J13ACz{0R@v&SyJaQws3=6g%#(ZPN
zJOuV=!wNb?b=3US!n>is$BYa-g7np+8yM2GunR+hh|KZw&RYwI+VnD6%OF)K$=;Z|
z&<E8vtWN|x)@ch-ZRozoHSRCskx-oEcN9o~C=r+8;yGl~xv>4XOrLt{on-<Up-f*B
zexB4kKa>xuq#KzR?t_&i;rDh(Hea0&8!}x=d@nnj{y5<&xdrS5i~hZ2vx(rS2UnQD
zV&m$+G_s-;TNy$2cgR#6I^rlJH;}7VhvB~tID*0IH|pL1>-cS>GLalxH4<UPO@3{_
z5{lsUb|Q%>S^b-I$!MPw^Oi^}oF0?^)mgY1r{pU~b>4Og84HE);uS*guXQz~ve9LU
zaYJN(A`3RF%^tx|(UWJFES=WvzsgT2T{EbYcE->TS0!?D8#&F3U~X_1C~+vN9eW6Y
z&XeU<R#^(#%74cfC(zGg1S@WUKt!bhig{X*YVEgEZ2YGhH4+nL!?QV~WA7+!g7|YB
zydLEqsK6!0*a8?7kHQ~O&>VK{s8b(#_=0Ue&j#jrXC%4(H(Z?NZlqdT>r}#rhr2FG
zGro7+O6t9Cs?<GmWzIgZ0%b*~qe$E4Oqxhph(t8+X2-~dCv0!?ufrvmP8hlXnC|i7
zZb#e+$fayLh0}_kpb_4aE7s<qa(y4a^ROb}6_m!U%~+UTRZsl&<Ax2z^n-tFUuh^X
za^%79kVnQf!jQB>$+cWFsT3Mj-=cLx9BXC)!#>C~eZPnibxG6R^e3Rrf0bzO;nyFM
zHnz!5A8HJ(a=bKH#<9?tRfGKooG&XDWjH(?9i^@gtdZo}^wG$n1QuTNu5E9acpSm=
ziDeepNC*tBrv>F^IFFcyWom{~g8N!)rJfe#*1|m7A)}njm}&!+4<VyiB!Z0OI$rYd
zx4(<V3uNvqN_CIk{*}RW<M6;QNM|f3N|S_#8M;_Hphdu2qV?_1p}S!O2sBY-cTeW*
zv9pCh8l%OL4#cr?z<sMM!!A_!oukZ(rWFrYP>lads3{2hs|X)kPMulpYq4n^*y{Mc
zsVNTIjNpW%?3Q5W+c}9DM7wG19R5`@2r-R)M`{4qX#5F%ec?WXH=E%~TEG=0SE5s@
zhvQp@!#P(S3+0X&4cRUPh&}$>w=W{5xhA3byLhbPjI4|(lMq{GuXZR;SmFa_nV|BD
z=i^Q$`t;U|oBM?6y)X}7Z0l{eg^#eXAZ)Md;<)-rl!{l)^N}}dn__C&g%jeyo?SUt
zAhUlaSgK5CheY5Q;I|n%@oK~+Nx?<yw|(jvn*Ld^Pf}^e*|li^*lWdan@tyRU+LbQ
zBr~ujbC774cd60;3lF-??eOPuRD_$6dn+M8nTtNh#UTutU*YCB&*N|6<5R8v&S~l&
zX0%n(dfzN`CnS-le(>6#$97mT2D6HYO4yEsWEHn_0;+2pFCVV%KH}DR-gzu=Q1n%g
zH86e0ma&~`>MZ&YfX%S4)yaxg-zfHSVz4@A40c#N9H^*nkWXlu7Y4Fn%V2ri*R9d7
zJ-Ia&hqlCh*zoMWyq&F3Y>?R3$6)-v0;){bxzXUn#_F2N$wuaZ5f*V2ziV&BZLTVc
zw~#^~#J?^6RE{hpNnBX(;zDXB0-@wLb|twC&WyyW-XMP7fcgp{0J{>o8}!2h`n#c@
zJvdh+38dA%0`ge06D5(QR)$U+{a>PVH$5%0It<k0)q@3`$7Y$gSw|DA{XKc{f?nVB
z_DXuxFlE#^tuWl`Rii1Ux5ay!d}6O_h9H({y)Y~8y=+OWBquG)_yza6a-iJBIa7-<
zMQmO95iAi#0AHvZkc6X`QE30p;>R3Cjm$<?YF;HTFnba`6*TfYvUE!=VK<e*2$Pnn
ze9(h=8o7?dQ(>~AVNgvKV2QE~xmO!XC9nz400H1Z`deYZ#5lgC^Uy6-kDfD>Sp|f=
zx+6(bt*oi>jsLu<KLWzp@oSjkAYR2-_?X-;<Msj@AW#HuROj)n-Rr{ML9Axv4`3rb
z0-i|6aAMs#5rtwlzwwJg!46YeX=nsjwxuf!QUOcu^^CXd&aNo%yET@9|JDI-q;%7F
zuMEBrW|2fj(epiPJ;5VD(owg=wYF>Ebj=4h*~9d$MFX#jT0eGhEuC-BYWl|>^w-lb
ztV#L-Ku6*c^lkITi_4SnHd3CgR5JR=EcmgabFMB-ysUiEhc)h|5*U!f5GptPN0x&$
ze4($|Z6N(P{jIN27)=HY0)_DHg(!J-OE@*%-6@m$+DSGl@=zJ-3zw@Y*r%P*J2NQf
ziXak?-8c5Z)2n<-eTpQ(b<h<m-^|C1&Z9CNki&I<DQZyvy#MKwU*IA;9$wnm@g2-9
zbcKy{h!w^@nR2X{VGApV*}H#_*uQT1<kQ1*<nVN^i@x39;8XGgCPrA~-wzZf&1w)o
z3NIe5!w5MM>RmMI|4H^r(Y3)r2SJx{cLZ<e>~<#rZk!(!<bf4N9)M|vDnJjbn^Ok^
zIKgQVsI|j47@b-H6NvNvwnbhQdOtkaSO{{(Vx3xzz+eL^>A14FO8V_j^@i?&_6I5^
zV5~R)Q`Pyj6I^s`is_ebe}aw|a3~1<(;5*%<CXpQKFoI_bSK>e!TucooKg0Ihf3m3
zPY)9gKb>~mmOr6wa~hzMZ34SmYZ`F@AkjW)6taj)f;rPRRC~vTrUT2Q=86Qak%$G!
zaW%nGVI<D2D)ZP0$xF;_BGRn^lgQ}3Ni(M4bDt2u*nU>g%F><RrqEpiPGPLaM#Hcd
zh<$n65R??ml3j6c4wuyW-7rtNR{CMlc!zC{e>DNG^+$QU`Kv{qI9=U<$n-B9U|a3!
zIGUwKu<-gwf;nC5cQ_;24Qiso{gD@@yJYY}mQ``VLJC8x<|r^RaofC6`6oO7g}F;7
zGlZko>#@9lSmcR+rW5xuu5aK;LQr8ZgpM*2R^FtX1rg;zQp+x`xoL<)KJwP@QH2vB
z^y~We;2HcUf4sjMwFMUvt$Q{K07XGbo4;AHDo#hQ4w_hJ{9d%)M1H@}@3_5uLsT#(
zfe>n`z}6Ana`||TRW4AuEq|$ME#FA^-!P;Z&VM=bx}kw+?@a>rXpV7b<*~NpM1q{U
z1*DPmMQQXY7yzv00@6x53XL%_4R{-gNg+W03T*?&>;7!<b`f8h-ReA%08~e7o}7h{
zM_&(P-{^@#7heOxX+ShJp2m~T)VAp@((Dll3vF7(!f}U`8xn3x9lcXBD!~sWK>iW0
zUfDs-UEPKX#*!r>rL4O9VOem~9E6Bd{siYvU1d3^{h>kac{I&%=4ntW1&yTnf~G~^
z_xIgF?Sv>|^qeK!8&f6h1XO=^U{h4j*;yG6nq{$uI$7q3rcn)=-}$=?xS-gP=N?W&
z;NCn(4}52}tUulQ6BCc3e15*9wQy^Sz;`Ci>P&R`8@yl6!}Zm>!EF&yJ!6`Xr7aUU
z`(^7unAuATV|7b}pAaFQxUZ5Mq#Jp0r$2@Te@V^tblb?SNVLs11Fph4D!B#ZU7q6z
zJ~$Pyy}!+o&{g%Ut*{)J;v{yt-|0gTSu@N|n50Zb1Etq{Z(N*@Meluk8|KhS$=IIx
zF3-IOBUb*Jk$B>Q^wyAYdj7uZ?}Oz`krVgVREk!OIoTg*tjP?!wIw*bY#@L3T3gfK
zP!Ym(ahCi!*4`?W22d9N$ugxZ<7s$|!9_uNKnGSHRnSeh_iy%EXG7LcIuw=Nh;&!J
zV$K^+8C_#O3a!j`fGR74P0qq)u{XjgI?|5WuT{<LFN&N<hTbKt99aFHiVbasj_fI?
z1VXD3d4LQrQ=XiSmnK_Ao6jcX_$fiYJtLAQN+Jh_MZulw0AL^qV-yr!zLX~OWxgJ5
z>79-PrNjha6P5NQ{H$Y@^rMt~H*BdXxzfEzT}7BfF|EbbBC0I?P2WwWYA7_!N-2V}
zwsp!I$q+fdIT|qx{C!#qMU2Mc*&g@p#S%nc5y{iH7S@!q9N1;80R(RNOwNsY3RV^~
zM$!JOn!?1>7(ifJ!gTuD_&Xu~<+gbt1pEQN+1n-mk>>h&SL~sfFdMq1K?Oev-OUk5
zoA}`2lBoTe;rp+l-UG?YqHh&^!XFeN7+49<O{d8@h@N_<%n-H`Sa-R@(^~v@3V}_J
zC+EIyeCJ1m^yUwBYbyF-m|oPax&$;@-)e_JbYR5s5`aEeYn~c{PdB@^L4aTN5y%Q=
zP)O)n)?6UlFZ|KVO)>z)neuiR*tBkhpbAY;N@Ul*yNYyTQ4pp%1(6uXqItZ8AAdh&
za?%mLA(98?aFj#SVa|v4F&WfRU?1b{ilu9O;W?_tKFlehu5|Nf)7%zq?6FvnA0p{T
z>|aA8LBN6llO@Hc`Ci|f!t|Tz)Tv80?A!`)iF*K6w8AnDcW(|+!L6ALFcr>Q1YTxX
zumDE<P)i*eymzaQd!B6eP9e@k9MSyyR`?Z~AoY2R$<`egWiledYOWS<)*%2%BCu?&
zX;>6w|4l}^cM66e{QEZ2%SjwGryF^N7V3gQ39$DFkEb3lqkT&I&0(S&b~1!zeuCKK
z@D>l#!m#D%#f6vQ)p~x+F@_!?@;OuU9b^^3>zwv4oH31Am5@hPEqOI$4uo;K#@p}s
zjcYZ36<1YHiQ@=IBBDXd`Z!*9te7{YyOggufG0+#dX?{%($Vr7Iiq^4Cw&<+7~%F=
z4p=S*6~BO@VC0NXWAiZ^zz=iq^y>B@@u~Bu``17#oV6}+L1^L@w}^9mbfO?z#HcZP
z%PE8tl@g#NODW9QOWWyG^7>p>F4ts=$A!CP1Uk0H3%<Ek5GOCre1kkOsnoi0M6{4%
z<f0J{VRe$rn*LMt6MN6wmWC;ezvUr04CuuP|AXl^qi#&`Nvx<*LY>KAsonwyxj*gi
zZ`Xvin!x;*cc0?H^kysznbOSnw*p2_DNhN1g;h>cWj3szZ~0kOQZiK2+obKrcmNaP
z&#^F-YN{G!3Uw&622Nhb%}shqaE3O`akVKuZ_)DSXQhVnz#r3s0(FpY#{;lrIzYe5
z>`sGQ%9wUgnsFpVet7TG0nuY7ps6p{mX>&L+AOI<!}4j9;w8k_P)`44>7G)k<hGHc
zKbKA?v!N9uke&PO2m-l@E<)$4vNY-Jcb4tc6J^|&MU^CyZ50r@5bbD^T$!0+jAUTO
z=t+;=y;?M?rdaEHkMP^O1?TkQ9RSYcYqDau4z$qov)_>jC+Teja){}}jRsRYmy3kb
z6M?FbAPse=FerdA5;|Q%C?aaaOZcd9sLT)JAOQWNvCZS<8iKwjenDb#3?Xtp13h|{
zTAr9*iS#p!A2x>>r*nZ&tcqK2(VH4i-igP)j1briWv$H6&S97w2iy-f2O!;|s3=Fc
zWMRhW<(H;Fb3qF$ibsrbojchR343Orz=swq)SdJ)vU?~L<NMib_LVB9EFE3uT`C*W
z)8MLB93uGS_KO+yOh?|6+|U;F;?-G=ezWtG(!lQoY4j|VKN(;<U-48l`vF>9JmUC`
zoBq`5=$gMLZZ1kIY#lT?5Ac=$xYiD`A*Fepbjb%H>M53TcrC?cv1w9Y!<A-N0{uWO
zyIb(JFbuyDXS11s!x%Y(<`|+IXh9~&jr&r91#vrG3y>_$^vo=h?~3QrhFQ8jJ@3^4
zij(Gj(%_7_t`!3IV84H#w7nmSrBtlRVtvS^82}8+cp_s?XLvVo0AAIZun1NNPEroD
zuF2+qSg)yYu3F?_S6pvuz2Ac<y#zowMo(!aPB}I5^M&f{p37H{LWRL;;#sCkLt#gZ
zd4J||_DE|$%@T>ewIm%~5jH45j1zD#IV3zIM|)9_yRlJY>3#B@#ivS+I&)1v>vxd<
z=FL4T&Ap64k269>17`SaX6aj4234afmNrF!i}(FE`AMuVT1x^V;B|-6A<;zg^5|UK
zVn$6+%Ptw}kN~hERV|uR$y11Vkwo`m{L!xF+U%6|J{_}D-bQX;vetLSzbc<EB0iy*
z;}I>I(T#R?OD?o7sF7X02*D1*azDB_B41#onMHpJ#)Fd;03McbYM{oEu(G@r0?5Y;
zb=x<|Ji$9=m0)r$Qm)!_n)u>_+21x74!UKG-mYw(nReJ4^aUTKpuftOvFsT}^28ku
znQrX0-RTk5x#&~6mD4=*-3Pavr_758YHlv(T?dAL57@4|l*B{S$$4@g%M?B?ZDfGC
z%Y`E7M_{^o0FulZPyqV(sj7vJPX(mDO2$-E3*EuZ541(+k(AHhR6HRv-NK9J^w|8U
z0MW&mDBj^GYBak-dQpC)J(E9hg;QbA`&!}J#QI#7zbj!MAW?bSX+-H$e*Q5Y54nKS
zWHL~?&--51zNR1@e%Yp;Z$8Q+9^s3$re@R4^iAjA0mg=aa55cDMqc;0l;C4($D(~o
zruYu#@#yGpm&^zwcq@X49%T}etFS#3oq|DGU4mEm-&;D!a)9Gmaci3&XS&`+<*?i9
zEva8)c`fe3!Nzs2J!vF1e&10hXM8(0G6gJ>P&7w=v=U|E$a4jqRKCOh3b=44@_0;O
z@QPY01|-1$4y&O%3NG`L9<nt?7?t|4FTgaN_dDCzi(Ch?r6(l71gkK&5ece%ON*+j
zU|fW%sY@tn<s3PdXH2F?0*Sm=ud@#5rRkW3XS{3(G9oq_7B%YOg&?l-ByxQujY6*W
znD<#)8>ZjQ8XV}HAQ)jpduCdi5z29Ly-_vD2QbkwyOr?e4CbdocnunGxLKc>i2+jV
zKhQ{is7C$gTP7^Ks?b|FM|SB$*8Ll|;4YUdy%0uDC*&6>;Zsq_K)%FQ2gQcCiJosF
zzjIMZj=FtMnV~qOOC1!gr0MTsdnAAC`Z=l9TV+5q^@#Td^_w-3PO9q~Mx-O!YF-h7
z0MP+_Ut#i4uDAuc9e79VIUNa)D%3U)rV1TS#z?8>E6Q^HQ^|IlI1=f&2#TA<CK2rV
z6=H&hgBE4nC#Z>Cm+`#Ns|Yga6ATqadCJAYyG|D@f=S>7>mT8@6yHX{35Z&S)C>(p
zv2>pplE|N9h|uGwS60gYFq+L1*O^+nfCNK6yvKFjq`+`z`R&31eA=6sJWqJ6qiJDi
z5V0I`O8V2H_nUD&f^biZQ|penqaysLna{-Ir2~?mH}>Y)3Yx%)8D;v3l@UO9&^)-S
zWeSl`9|?CpSEL<Tul=c7+KiP3DzZ<hwT1*tsxf7XZQZA-L=TqoPDF3<$nV$?z*IFU
zQMZlmC}dQ@AeI}r5g39A;zq*zG8O~)6gCAy$Bb>r^PxQMj=Gwhw6Bs>?YCSq^MJu3
z*OQ6xTqnPKdxLo{r!mJYc<TQv>@A?8?7H`17!;5Y1nEWr>FJ;wDN!1f4k<xG8io!*
z1c?!(yQLce6%>$=5(E^al#~Vu|F`e+KJV{&hHtHJ7HhHCXYc#$eeJ!kb8cql+*X*#
z{Kbodj)yU6jVXa_?SZQ3d^M7jCYQ5Dn=^HhDVL`wX)@0Rx`s{;9cX)f3q>ENR8}fu
z8>Fq~Ru+^($`rGCGM+@Ew<AS=SC<4*3VBOa=BU018vq@=hLpuzf0MELb8tGH9;Fnm
zeX!QYpTbY&H@3~?;{Rhmllxj&Lb>yCf<~d{tZQ+mhR>zPaj{P>FmaMmLq7U+(orWR
zXQkpsALW<5)tDfSzx;|&t`ibfj#&_l#g33|uTu%O&uw>ineJtz{FES-jwE|1%{3@r
zG|A+4>3Y$^IIYBXw&`no&S<8?4ZD8!)xN>2wk=tH-?E$f%*?dMtCtfE?s6N=cO2wk
ztXzjx>%Exu(MK2|bDZ=IjC;)|wTi7K*#xf`>K~o0?!6|wU2Df|9I|{!q2WZAQ0z}N
z3ZqX<4IieKvz((x?aSpBDVgJICz+n`nx<lBokv@K_q$itF%DFh92Ho!@8pTwrs~(Q
zPt004hqCXvCaOYt-`w0-^3OX+acQh?6evL}_0&r?$&O7o`UfIV@d1ugg%lNcr7m2H
zO|<_^N3s119B(J#-yggMrNcF~hhe?ibTlVg;@c#P_>GI<-W3VsdnjpM-kgK_rx_H|
zj`e<HY375X55fuO?2iRoMQ8~bA`=8LgOSonMX_mhBD~+AnUl|1a>n<{yw$xQn<|~q
z_Q{pLcZfx{y{ue@<h9$9dER2R{9?-J$WL+nqFRoL4DHmISLIchCr6sVS%uZrENs(N
z%Oi9s8Y<?>4hRQ7x5Exk&{z4WeCv&P!N4AkE#=MJ6&5O)Y*E(OWao%Zl}TYqtjc|2
zd8+*_^7U~c$uIK|lbkAob=1kTs_#Ld{Av@U(2fS=)x88aty~*YqR(^--UYH+BH*tt
z^lgrQmBb|BF7_-S#ptbuxV^9{h;6o+n7(zbUcND_US=g8;b(n&!an69F0UBuERU6a
zD>V2;9@j^WD7)Dxg0O^?md|Gf@<VPc8o^)r=W5h;V>oE6^BfmPND)^mIlBq8f}DaY
z+dAr8-RR&=e9(!~Fj(64nCaJZzi4X<23%QbEz7FZueSV9E!Jgl?v%zhzj1F%j%l{N
z>*vS4Zjf}OH2Kw}zvQv+q5Z~};f6<#D|-Cysi;7*Ep1nGTAqnAKAX+m9nx+@s(y+j
zsj;c|8M%mQZP;vlGhlv&ULRMtDbJ58_}nGWg88I|wB8$eieq-$BsMknezo8AbV4Dq
z$KA+!R%vt1?poNW?D|hSEScDpK1JBqp-m0%s;`1#BgC7I22VWwYzn<L<jH?enl$EX
zmaxJ%Br;X6z7~@U-HIwbNMm$e>=*r9dgfpl>=vH<wDOT)sur<G8#&c_%;oFe5yye0
z6*4%336mf2s|rf`bt-&l8&YyMNLL3`?0riQeR(YRSmdpJ&F^)T#MqM^opLfUU$>_<
zC`QN7#RUy%9k#4G14WMHoXtyhvt5cit!WBBKLxIOPqDJy7d+|x=_5RQ>=}IP_rAtl
zmr>_jCiEfC(PPh#`jOXBQz)H^J2|(1hI>W7aLsbD3)c*S7pd*+jwV;Bx_;xOZ6w`(
zFK59g{PryF$TrD<>}DKxn(ILZzccW34k02#5Q&(F-#3J0PHP2q@%Cb-9nbDfN!%ep
zpM-8m$+&wcq4u-H_Zd&LPYh};^H#_)H4zOb)F)w~-};)AuVK+c+VYBg36#tcf%a^5
zm($%#6y%brr-~@-2<~|9(fCBTk!rfk!A{$b?mu|v*Y>gc>rH1N>|k()@vD~GrMEIZ
zwr<~MKGQOik(1j0ru2C8RE4cOa&$hP!mMhBve2JJQ_H^=YjBb8GF<_<1&zJBZx#qk
z?QH0LHFMAGrq4j{YUnd;x9TLNWZqM&S5dUI5?2&!Zy9~ayo7w))!yV(I!GwkaAaZZ
zGa29!`o*k{LG*ZPe+iradFPSy<CLGoeMH}eE<Z^gH?A<AV*!g3FKd!Vcl7(;xEkXZ
z%yEV13n2^Ybe=D4FW>gS-URdcxJ%)EWf}W*F~r&ov8d5%v_y^6=fPp~D_7`cMebTM
z%k9MKt$D0tR!q%Wuc*jdt%n2O;g32FNusFEcjChBb-_$_)%eP=v|Pj6?L#6GB9apK
zF1Uo4buu$seRhk|H8gMiRjzm})G@&)=PO!sy@8Dn?BK*6{W`M12373zDz=EIoGbVn
z+Dq%<{G|w}Yb!-*djX~QeZOP&>W4AN{zE$(tudts_3m#vkN8e`%HJ^^8n`HGH+~Ut
zQeT-QyFXW*>ap>;3@cG{XHjmtG==aB8*yQRBUc_5RF#4{D}!cF_u#(T4WErDLX+`@
zeiwzDz)|`)^@u71NS`X3I&SM)$VivWHEm^F6RK`be!((eXC)_wH1<tQqMzgIBB5fV
z%+Y%dHwka|b@rdwg>b2d6Qt;`=3$o4ewC`{9m4FoW0NAc{IP7qtfBD}SL{i`%oSg#
z2f>jeRcjsDw~5h?b;F(%RBn#s<{ot%+=i?{u~yqH@-?H<?2PJ&$77PERoeHW^O)|g
zw#G`=ota7A(vA;Fe#CVf`?)3J?Azsjd)X$COT+OzOA<@RHZx^Hs7im!IN?RpvFhVQ
zdg~g?yeCBtel%F?+epdAl(n%eV{<?ESl|Ia^LL}RwpnDGdNg%K2J)Cv$(9S6hl}4w
zaJ<8o=$}Dd>=iHSh@hvM52o%SfHy9@FCuQTlr&q=k~BNo#IoLo#eaF53Zb{295nsv
z7cJ1#@v5G=#dn@v+`yOBk>YgqD@&VU`^_#bT{%Nr*`#r-p!%`aa&*sJg#^hk0na{-
z#KBcT^R}VDqMZPe?}tqcI}sx<W*4v76{A_23kMi<(iZjIy_(?~6eDZI^X@i2v-uhC
ziYdcB+CvULXV@v9rUZX2yEY>g^&l?(w}}ABV|c;x96ut%%xz*SM`LvJroQMy;u%t0
zDu?+E^=_*s>~LA(Y51Vf;+b!>OM-`G;R3acy^P?`)-C#G3hrW=yW*mjI~7xRxLy{z
z=sOFaI&@pOd~2PM8gEW`-?QbdPHdSGs&a*FiJ|;%RfcV;gy73ez3ULB=+h6cku<fx
zMomu&0yWB0)_N=CX`S2KnQhq)xxC~vT)9`S(mwo7`W<WV(%2GHJG+$bk!3^J!!MVY
z7L)$&$pozT&W?oS@mw?6>8)b5BD;)oS5wMsN^f(Pq<6>~Gj2su4P1-&+gJj=(D(CK
z@J2zl1qb-G?=x6ibRBuxLtOjL<y+%w-Jb$Z$+-9w^Tdo~!qvR5KkwGJg|c>BrzDp>
z2tS~`x}M33^$>4Lkz}@mTKBq1TJ%-3rFW~pPz$7`g}tTd?L;1?mBm&kG87*phMb@+
zx6Yhp4!3E#GVf0{oR$P=EM+NnE$_71>UU^9W6MaTTqdUpgS-!8^D<W5Y%zt(f5g$+
zt&Gcxm$`);Kv>M`zcm+XNeOAeuh2f&k_&9FN)0{00{3OF6HM7P9PeE)Li$=iICD%I
z^AG0y-k3O{srRt`X6u^`lcA3^_w`rg9?;2C_Bs@%*SIevs<1{D*J;FPC<-o2k6#Q{
zdo;P1?{#8cfAM1Gv1gX`DEsF-1#YQK@j(oCaAWS8Z_B6pU^Lf?gzo;Pv^C^E&G3Yn
z3zvFZEMo5++<!YLc2UY#v$^f+jY{5Mys|KHgRd{xvai+bwj}=e*ykCTBl)~cheG<M
zDXKSoLeZvvqnlWFc_Pq_JF&W4mhLy-f!%w9WX{KGtL40WOvkD1LB4mDmpg*%gLQ{e
zP{Im^U->V)j8tIq5{*-Px#T}oK}^Re5XvKmZeT2S8Y!6CO>N>h@m!kvdgR%ZYP_`N
zQ_)5Ge5-v>=cq$_LT*I9Z%+iObkG?+qjfom{qa+#^e3Of+X8H5y%(I^e|+BqzjgC2
zRg)wxJylVDKFNqYnYiR_Y%`pDw?`*tG&et<F2!tUDFR;i;!f@u1pfKn#W4a2MnvVX
zvxNp4Yh(B<)G1EHMkH-ILZ^i9oAqu?FXxAplY1uiy#-~S%C9ZtTh_@)7A=5djZJ2p
zV%o=gK}lmWmlD6J+GbpG`Zbf!9zXR#Ps~(FLBnxJV|<)1QuR}(qQH%<=B@gL?G&HN
zciK+xKbgu*Iw?W-;|%j^x3}{&<=;JkAvY3wgt69yecnvGflsv`kn;uXTX@{;au$;e
zgv&nyxhQ^+^L)<Vs4qHl@{<guBei_+MK3*52_F2;t)zJMPSEKd;nF~z)2a`byg9#M
z{pEY01;-2fd-6>SbtL@RI*S(z6Vrt^J)gX1o__ml)X~}WyYocS^_Du=HR%s`9Z{fi
z(|ZBf>SkT~ClMGLeiN>TNt63*s{%T=rNxF|AL~v&6t`N~40unE&h)S)7Dt+F@6A?K
zE1;=6LgQK$kuym`IqN?K1wy-gCns)x%A^Dz<~<co6pOf)h<oS2!z9(9Ff}Dhw1*Do
zEADH^S`J)ixblD-5^U&#A-MN=k&h3Pp>(E!m3C^;{M2$0I3+hig4p=|n*ZK&ah}IP
zz;oR~k&maU0-NGJzvp&aDsL`(-2T|m!>GPH!Sr5hmmrOMM1d!>**b}<!UFm%w0A$)
zC$j%VsebA^A2Jng9=Od?r`O<IR3Qs{l+Bu9n|}+*%U4$vx}?k{AQ;E0{t9uIMSz{v
zvGqqgz*`83=`KZyjszjJiu+Ej>5R7uST3^r#LPI7^=0O~KV{XoOGyl9qT!E<UOXKl
z?AhIIoN8Lj2$S%no3|D+x-8mEEdYz&x>nyYl49eU(O9%e-mBnDaWnaAvKCRAj%wjA
z4ui7v{2O#m&T1?+C~S6^OG}@PobCeGd#uB5Z?s8exX!zL$=*GB?q3nn>2fwCe#T!I
z<_G6tmLEi(a59)g5{)Z7cH6RecUd}p-&Ohkoi~O1PF=-z`xi`FuU2zEq0;W~c2udV
z%wy<8lo~9uW3FpDD{<>T{W(3llkm;6>QO5X-8y#VK1F2_Y0cH*Buyoe$Vsp5<Pvf$
zV~syk^=Kf~@5{{Jc52@P>jUyG(RxSZ-0}m`BALN$uG9;5CZra;c}>c6v~QVuxng=v
zQqX&1pLfC0mTk;MRj?=|tN$}eD$YK43H$d93hfmE(e58c6qAz_xD0(BkTF6lA{_Jh
zB|6@u7kn7V9kCPorGwKWz8iLHeQgMVwa(jOG#TUho_cjLK%VyV2jLRUwda)xPm^Jv
zaresn3HQ>mW8az}X*E|{0)Gx$+|d2T+C8?fSJ;!f=`vleD<7B_?auin>8|3?D~oZ6
z4wk7q0_78qZ{VF@an8tV*EpRYxqr8+tkiGsuJSaIe#FlH%2;u7`z+qhUup6-@cEA#
zZ%@yQD5uY_t=j6})+H~iNeE0ldvG-U(hxYU&vmse5`6>yFh17G3M@2Nsh(<G?)&L<
zTEdc#OM%@`g75B?*L2SDea3R0*S7qf&BHZ+-tjX3Cd|-P&@Vn!P_8$f@E!bI=FQa-
zL0jM$mW;GqhuHg$H=;a#B1p$QjB~WHq)GE)X}e{H_Xg1q?cRJnVWS9_3zc{BV98RF
zsq^~%5wTOR;2xO8oMO`fC8?6o%Pzmt8TDPD<v=&V7E>p)c2*zTa?7v5J`=67_dZV1
z_7Hv}lH2aBZ%3<U$-}}Ac{&V60xN0vLo9}3r#+q0?{{?qA1R0ZL~4W1IJM}hu&NJ;
zTtgo`b<=f}$$oy~E&NH=gM`KINvDa#o=)XNY8SzW=LTsqae@vq*sY)|zX^1hZ+{$p
zefx)VTDW2N{W}HQbz-0F`RA*-RFTx)13T+6t}NyWse)Jdy@eL&SF4W58p7UT`|E{L
zzG~Asb`U7M;SUiV43n`e_*HfgLBWBgx4l;KQGY?HF{D@aal0uoOL?Xk)6dq-HnbK)
zR39yus&~JE+G@1%HgX_oj^M?x(YuN82`<obO`4$Jkr}$Y+IgxwwpvMI!?fi=$!E#n
zkv-3^w>YMt1?k<S{F!2$9|oDB)6mt43!=}smy=YL3u)av^3=<KudR_Oe{6}yirnmR
zTOqkeZSB4~r~Uj$F+C2$=KYQ|-=4?Y*ln-gl}t(Bs@<!uG}Y~*fa{eDOEidb4Stt<
z<2SJv<inlWS?w?iouOCT^Av@a8=H+^9S*Rw0?(@wy}KEIttZ5H;MD9YG(b1#2HK95
z?J$vpY9^{XOjwY>v{!Q$arP-M1RH-tBEMJIiOEx7jb&Ngb!n0FK97gz0_?>_1$K=y
z1G&j7ONIts5=~hQ(LG-Xy_r?iM32-)liaa~G9j5^8Zi+BQ>sc_JYuGt&v!2qnw#i5
z>Ha=ob6bi%-fVhE`RpL;9?Wlj(sW0HX#GyG#_o4$sn`o1?>fT{JCPawq5v#)azEV^
zA^)s<Cs%&8Pb5JySj*FGPwA|0w97z0N`gT6iKLwbYS*Ev>IeUiA$D#<T_U^H-tIzB
zG#~0t?K@}Kz^lSYPzEO5Rj_9c#>_RB#`G%aVWdngh$cI`y{yHeSbhMC1Wy>#n+lsy
ztY+k@TiTS<C_E4U_NK3ooEb|N5=43<dXb1bS>e6(hkJK#eGKcEGc><99t!3}b@0DW
zw2ss8TBP7)E<#j!2)F*w(_k@u?Cw8%ESI1s!a)^=S~e?Of1@h{8IkAJ9{foh#WWnw
zaAR1d?@1D?4`ccgmG9IVl{k3@KQdP^Q?R(pMP-FkLjQ^-LB>=MN#ZFsc)g0?zLh{Z
z=|B`*N2kx}v%nJF@JH{o#MJ_a=jyh%f)$NSm=`}Cp0F8=Tq05Pi1PR(`6cV?qg}mU
z29oAQR~c{!k_GnBgYT&W472j9Ha@i7&mV^F*BY(GwkwVbQBq+#(^*=_Vid18t8jxD
z%tB_D#McS~R^Bd%pUz-Pux~4JZz@<-@|kCg+eh6YWErh^J<&UN)OYATrm{QoU4)<S
z9gVCLN<B%uV%wldR(zq1>Hd~0k38b#+g2*CI%c7>N|U;!;;sisA<r!F`7WY@4n&K3
z6XV2nP~wx;)i&k0`Lv|{);6U6wBL1B%GWYkg+0X_Q1>vUC{2-o`&iE|g;LvT5g{2V
z3O%bZPbV&kf}WKuvhvGXrH5K%{Z()4#A;?7Chkl)_p#SK3ep_iBTo299rZ2DV9_FX
zxZP$xB9-2))!#DRWVH|J#GFJl=&dF@<#wibKyNx9GW&(eU<Fib_5IrY{wwWT2IPbq
z23yuVU+r~^S1-ysV@<HyQK)WcXfaHDZ#a$K;#SEz>pc-FwgTs)b!TG6o6=2IW^2{Y
zTIJRB_ZU*H4%;1hSZdLe-za-q#^)wN`&K?ZU8K8NMD~WNH&WFrRk*W&MD#iDJB`2(
zbM?&wvtz>=Z#UF)_k}Z(Vz)x8XXNhNj}C1($k>ih?{XP$vi5w&@<wYIaDXJ)CgsG4
zkb46X{xKSZ<3EP34=*GR#gay`3WQ2+m}#=!4OyyrDN*gRMRc%HxWRpkHAkZ`^A4p+
zJ1096ceAC*+4xM4#;pJ+nZwC%o{q0N3vypLf1rE3AS_+(eDbJt_nt?sasSBb2BohN
z3%BK~S9O9?XKJEjX4oK2x8h6+zm*MpCU&U5<A&$EZ&7Up4jNW4eGvkEMi&=wBM5E0
zpYtB-^nxeOm2qiv#r7lgb){Z&33TD<x480Zi*^!!&%-?j%7-&fT2CW~B=<!QcFg0S
zv|91VOZcZ2liMXK>+JVh_HZbNiCmkMe3>hdKoB;uB-g{>CXNl=%+%A2aOK^~kLyqs
z|I+L-NIBSSod!G`<U`BQ6egL&8qO}W<mjPhrOhEojUX}0;bbBis@%Cw8Mvt_5|N1;
z7}RzB%=Q3kAYVTwacVT(mOUiVqkh9Exxpttbe|xX%Kq5A8v3YCFJRKYL_)%0=H*AQ
z0_aHb?6neQ+BWvtf^uuD+M4J!iOkf?Hs~O;PtUF#2f48{j;e<{_avxi`WrBJG1bfR
z>U$P)C&w~Hnh!Qyy*%^r;nv>JepySn7ZJ$QR=irexS}YNRH3c<hJK^v@v2Qo>wv-J
z%lF63`LCP|Zih~D?1R73hS^}ZID>;lqvmE79@G|z_;gWWH^xz(nyg-L#r(MDMGoLk
zT{o$7L4`!vE2(I96P-*cLTs<xYkFz_xSC%_u2nb%vuRQ!`u4sulSIR=D2aWG0^v=m
zg`Ta4v7L#UCyngdLh0$HKfo8Vvu62+Yqo}i*p0j@SNfMNU~tu*`NL=W&_ZkKC?7(p
z>Ip>Q%S*-BEE7GdiV<q~kGR#sAX~~xfw2Yw36_0t5$eH@2-TBm0#UQ7>rXbsv)gEc
z<kRLw5;i^_oka|Q<fudvJPPFZ;N_F8&Rl`MA?e}J<vkQfI^l1}+|z8RqjLNUtIyFt
z&jP87H6G2G{tR9w;IO<`wz?X@A{vo=VN$*Qt}DC%TX?8i@xZiaVOIU?>^#36qvb$7
z_o1>|o)h?+D0l&Wx4xK0!lyj3xr|Bnd2{T8h#6hyT2FEq^&0QA4q?$*ok2r8u^HN4
z$taOzgmOVdTYcS^|K?fN+NWzokI~68x9&AQ(RO&l!@yJ886vbX{@jGUNm1)n&6}~j
zFI;tryI3rU#js4}rPWDpU6-N9$QN#U?^ffmz|!Vd<jcZibJ}CWzxrLOGYlx`?3nGw
z^ny}~Yi%8lMr)Mszae5UXfxmw!5oBJj^wFwV;AV2LFrOs0+P71`#Z_2pa*%{0s)sz
zmqR=p(6WLRJ+VoPPUIg&7dx&mlAmY{c_d$&nZ!m0l-~ZV&6j7b_m%NBPb{N~Wd?S(
z_q*Bvi6XONcV8d+_GpGw^Q#AN^}DZ1vdl(8<yzYw?|^6PVx6~t8k^M;2ypN}wGtqg
zy2sS;6}J6}G`5ezjL*Muhxk$r8FX#m@N14jbJlW<R@a<b0i-=x;epJzK*QR)Pd;b6
z+$6DB_4{X|mkwMSv>)1-epDz_Qutxdf})bst<rn@7^!DBSt+ppXwHeF;$Y^3NsR7z
zS=ju0Db2nnvNh4rS)nZse{ndK4WeAlppA@Z#ve34f|}+-ucdX~tQ`brU$*W+C!hF@
zQWxpSf__;J<Y%uvQvVn^tduKMsnHk)ABHYqAMlo1__Oj7->FaRuW2wT+uu5MtS{%6
z-J2BK;k%{xLZinnl(D<6d{Fq<9ezr$!6KTBJnC<`uJycuPH6Gqdiy}vs@@Qz`anF5
z_S3FJWf~oal#hII>WzA|l+zDvgyE`&_d6YOP{VUlPqF*Mnja#Z7>AS)VV+;JQ7`Ya
zV!iwpQWmXsDZS9MmCk}}q^VDRw5ou&-*}oXj4Q&f$2-|>Qd<S@<!4vaxF0k%yM~G`
zzm>lrKO27VWQBrau_SjdKCtjjhQn}l7Wcb>=dL=0nacDm^z)8=Dz9HM*{T@ZJH#@^
zC@HgDvP{%SWja#xr4qZd`W}lNQNKyxIDid`yPlIw<YWrR$sUh!^LTP9lk%vs*|1(K
zW?mWK4#(_v$KFe=$yJ|-i6ib=UEb8ysGJPuN#O`NrH!9=B{B`4<8_CfGF)ks)VnHA
zp09)HkgYIOmynTS!xq*VM6<|T%~5G2Kd6d`3A*G%tQh2uyf#R=VO<D0^}Wk*qX8S$
zwwQ6TTz<f$DEfXCG2LJrw<NQHbgE%^bm6DRW^GlA<Q^}J`eZZESyxZEN3s!D)isxR
zS(xn{KCe*R`Kc4C&0PRb8x6_$sQ565+IlAa1VJ+`TE;fvw~r9Yi7n0ycph&ry+ui0
z)uS>06K72|n@9iag|vFbX6k07GpjI`<V_Y)0((_^T6^Fn&zXG5AG${BT)F-|<MhvE
ztr>lgvxd!1cX9{Jn#=V|9J8(rx_;HD2D^r?6xAs|gX!`(UP{qD9V!|4xfqDscx`^?
znBdb)$Z$Ba78aPr`dT*ocDq67<L#!6$`%3@MOO%H{=!3)ALbeP<}sU<KH1$$tQHr?
zPHuVv8L^Rt8l{Ckr*qSW<1*FQ;H<NSk_K%NT1{6UHD|q_G7>E?@xo|9h*|>vO(|@t
znUr8Ad0+5oS39lWJ!=Cug=!cO(<?+<dR42Xzg+GZr8}G*$~$}11{<-KwPB+r>Fi~H
zk$s#PE3@xWTcMuz$~xaS{XRK0c5UV4k={yYj9Da#c3Fl&+&L{NKj8PY=$oc{f^@IM
zJ>KpfsxfdSCz8E(FY6CAXCJQL^X**vG2URY(4kwKr?+fH?B&L5KxfY@&&tCpYw%k&
zm(aJ!&3%f&!L9xx#cvuee-JHZ@LSZwxwQ-5>4$k@wnpssZWNL?I1j8=yv6#z9y6^Q
zx_?xBd@*<3MRWG>-6g8q9-IAbi`Vl^yN#zFOk_D2{)mzM4ni?i7p6xgTiR~QOoCD@
zTk`fa+71>)X<J=W4+pvx>1!^29qu~={?n>4n%!q*0+qZIHBNQqb;NP>%E_4Bv2aoa
zjgC>WI<aKq$(nd#`pf(;qcbyDGU=h^oVTNV1(vMx0%%Z>MO)=Yzg(PNRE<hS=>2zz
zNDg~HN4boCv&&}lZ#kKNuY|udZo63L%LYaZNHQnw^_v>a7A~OaozFmoA_1hKvsOED
zBwT4^CF0-9*Dn_o^NsK3i&rq84qIjj^NHzkvKd=kk`K7-y?JM%dw-1%d&@8NHLle(
zA!dsya6IY>Cug(XaXuzPFB86HLL;Yi=KaIH7ST!A#>%ggT+{^q{9W`TPJt?DPY5BU
zr|-M+`3E{8bkJh>n|E+`I7qc+|HFl$s}{ZS$P9nsohF3A58x@c5z3vbuu6wfqPKIM
zI?NsvrD)W{*S1JW7T(}wtXMR!uj`KCM5&_~lr~7*OGQ#x_I6(OqdJ<%6`qI1^3ipZ
ztK*_KG#{NIe51P&)SgSmXC*@_1#(_-ru_3r3=zrKC9g_OF_qQAcbKrU`D8bef){rT
zHV!$S7#CZ>i4RTYT09n%ZcBaSae3&K5r-fpb`cjNXw-2QD;w(L#6B3jEPAY2_^J!Z
zX>fzrZi#VBGOdcT{?jdov*%`CU#LDXXG;2&@xGl?v33#DU)H-DhhpzQ2TS?q)K9BC
z92CRwrP%Xl{1Ej@Ta!ykt~-14EWz>J<CN=CjyfC87pijXpo1XL5;7!7xzaDExLhUV
z={K*V*vEH>c3zq>!!xjlOfR*AqaJsYZ_yZQcU_iLm5>Xf5bT?vDI>7+1Bs-ojw+D-
zBsV|39{;rzieW$Lyu1ChD`ib3(!0HJ%K6zkIbmZXF+r2YcQB}mhoF8-R?P6(SUwZ|
zE#RTsF}$;PrWxHZ0U-5+-*-(9Y`zM9R@F=-b!on6d=_r(`EoxG`+MlSFtS$C=jHxY
z{pn@-8jd^FKXa25+r6GLOXwQa)b!`JMv4;AGTqp42s}JB)@?6Rdh~+FJwlD6D>;Zd
zl-11Y>W>1gxZ}>&YHau2G!xyDB;(bey`6n>dN_AR?!v@)foEbExJVm{=It|fp7&`v
z?ZSp4M&QjGG*^FjkYL9co_~7qQ_A8bA62P4A?v}Lt81=*+}T*UZ9#HcRzcfM!{E|K
zlC6T{tM&_GL9Zztr@6O2G-_LUp}3)G*kjf?Cwug>x!Lq_8FBR4wkH{vNjnv*Gowqu
zvqx(h`ndh8ZxL=fyI~>h-rrC3Z-$(8(r$frZSL}PiST`1+#Z2NP{Y2|!CrhTMml~?
z8Em2y;KV{al^(kEkYck{K|kEG7;M(xRX?ZN6EDfe?q`JayyncJs?Q@7G-B)iX+2Y$
zFB74bJeWxP<d<BeCd;Z{6U|VUhzZeeyCAN+)^V49tA<Z&_!33D5f``zPyVtSBbYvP
zy}_dQ4TJ5Rm7&NN^LrP@bOquje$iQ0hs0-oOnAq1q@234hvJKnbTATZ3f-x_T$ZHr
z<(}6Ug9XZ^OSk1PYTiV5^X3Po_G01|n9jN)=u(BemVV<t{ci90jiLwF6ElkiuQ^h%
zm7h`la&Zp@&YA~Z#Xa{Sq$EV+3VaCH2~i0yLL9=ziT$ykWvD|p1IRc~5p)?pn0(`@
zX~?7Ba!Hf*5Cuw7t92T5vw9sjHj7Q_;%0q;6Azbn3d)szhkyTa{a!O!>+!qs$&c#Q
zTc5hPU-)N!ndzR3mo86Th4}Z{m`3nYKJXmK45&C5**W`i&_2TR$kN2B&-zQ=NbTUV
z{O`qwDlp@{R)>O5>xW($$*p`RUc3AUzt$qPOkcRKQaxh6JcF^0&M{buUiV1JuQ=MA
zX`OwBoi9Fn#8{w%%BNS{?Njj`(+#B`TV!#+y^b1+$AFBX%8$AlH+Ehhvib~o5w_)A
z9(p;gJ@2rjKg42h?Um~>ba$m^^flcm5B#W)!FK*#)4*Zp+I!P)_mt0EDK!E*&tgy5
z1K5r(I>w%WkjeocPkTgX-502s`P#o5E>NY)W6#LaGES<4d9gB-l1Cv+angbP3DO<W
zsI%df)pC-emO_#{8dS1_U@9MC$qR>D<3wXigwtOnZjeYSJQ<OfnF(Xhv2T%|FfAit
z{*USv1f37*_aNXphVM;Z$+1ZP5?&CUQ;gy8r`gsAru`(@!*R!x3mYazb|mS}iEWQ~
zClm10hj?CD19X(z{ls*h!zXYDB<WR2>=RkC&YtZY#LnG%(I=9*fjtm0B%hDjy=@n}
zCu2C*$#A(Ywo9DEp7n=(rPOC*E#c;Fhgko<<_xI|bus(G9h$YygpyB1IR+}l8P=sb
zEkhYLmrNp_Xwb#5edubR7kat*2F&;b%9bJa2Hf^p<n+bM)4F#8r>BHH%W^?~m6&J%
z;Vd-*f#gI%p_~X9iVTWEbK+RAgx4G7v4pO_F2R8V616xX2n4Re8}tQtI}n6ynDGH!
zroDgxi(qh@Pe860kZ2J&&N>$4egO#+f#POjL2egOFoXyir~4G-j+2f9YI)`<NDJ5W
z6hw6qf`W=5aq@8>7Z4nRtB(VDUV#76g~b1@+Y}G7xPXR=pc>eofnq5xz@Z|DhL;(j
zbPzQPCV~OHfr}tH5g3RF0$24E#Q0|hT3kdn$mTCswz5I0!bk{21i}f0qX1PT6fJ@>
z7FDozbH58k|A|P{z|e>j15CjQ{g3xHIUw~b5HLan!HEDv0YeBBCIZ39rh#tYR&zj-
z{~d#(;ef_J#>{g;lGF&a2#gbgMu@;UAt(fZN>(072>1EV(4Rj6Trq!!FfhR1{|ss8
z{XGPOLjeE&H)MMS`o~pH1Oy4#LE%Ud7_KD=B#2YU2YmQz3=YBkYpkIyAM^`E3dKOs
zfDb5Kdl3jj1VdwR$3-AMEQAyM=f&y7N%rSA1c5;y@nnD)0XZjwfnj(u2oelN1L*yE
z{e3+!7zRc_&&g0o#9uO#zZC&v80^2ozh!_i3Vlw7gyTB{*do9f{7HagmSDKw#ULIc
zBpQa}D*^Fhp+L3%(>uTrK;+*tFa!dF17|h;Qx6P*p}}}E2oiD*fj@eG>gV6KNCf0B
z1hD^u1u%w!@gsvE5imRl!4M1@jpra>3q#>Y3&CK{ApnJ9;QvaIK9FA|(5k?prvLH~
zP(+@SAz<gx0$LN#888&^8JANE;<*69fFZcPQUGQcUcw<rC<Fl<eEzRVVSp)qv@j?N
zf~N=Ao^u2Y=;6-+h9O}8Exv!k425Ix^8rJ^@h1Vp&~OYMq`<^T6kZ^J9s>F=NP&>x
zV8p*W0s9ALDEjXb|6er&iszsQY7~lB2M{FCT6oTY0X;ZA^l$_Ug(m}Sp)f4I*MK5^
zbYM6deZGxgaC~R}=)v%70|C?!Uh05}5r5Bt{a?g@A_}i<0I=|?@()@t6zbe0u=7QU
zK*Hg8!2z}yJY)d;0YxO9hhPL6gE<Em9C9w72%wJf;YUK?7(53dNH`ROmpU-eT@VBo
zuhNll1b+1c#&G1hNq{`zMF&PAQE<Eh25bRp!=D3*LjB!2*#B}l7>R-XdEUT3+YT^B
zL-0@l^Z*$Ctp`Ry&|tht09y<Ozxn|^{F=dnQ9w@c;0MSJ_`#n9$T5C>pa6cybLI~*
zp6due?;KmAFn@Rk$UpG<y9fbe1OzV<Frau2YBU%H#Y+hUi3Fc_2H;=3>j8RD#Q%`N
z{&y)w0%iR_;s0cCd<X$!BtCZovU5}m$k1>+1OXWaA5{nzi2|0je?tucu6I740E?b;
z5C#ADqVcCaQRnsqfDDN~Z~Gsfq5e1gC=70{3Pg(q7IS=`&;UQ2lR;7Ed`H91cOUv(
zRv}0<@_c5{sJ}=TsEYq931Cq@=R6vNK9_zB<a}l@z;cQ2GzNCQ!vR|QXY>83N(d5z
zK;soWAVY!AH46p}?6?2m_z$Nsm~-TZ0)vtGdMGf^x_GuIFcgcw5JG@yA^6;a0{Hp7
z42d`|LjgAe|8@|lIt+erz<U1Q=KII0jQX?1!Z(JT+YUfbz(xnZ(@_5(OpF5darh}g
z0S*2yX8`<x3!?G2c7W_02LYz%8wj`oI=2Nx0echt0!BdrYR3-_ia=t|MGV|ooXZ^)
z4L&c!K+mB71D_*U6zm+qLVyPUyWUj)ulf;4{5>TYAiw`3u)nwpj6nhk_;)0KWH1!2
zp$^1@MgDu&1JnWr4eWdVZ2$oy0j@nKLqqV<00Sj@&K3p7oR^{hV&s4J^Pd#rV-Cp9
zEq=gm`W%r!!NBs2=OB>&bF2!3W8nWRvj6lmAUs#0Fa*$9co&2r(B}vO1}qQw6T@L>
zBz{2wvU7pJ;b5F$13;<>Fn$-p;VAr@Fo0z-=kx#>{vH~FK%Z|+1R90J4+nvP{zXOT
zfAA9m1MFq-;zq&XVElN1JAW7$hiU}LU=>jis4PI*P+3_t46TS%!a(KZU?_PcQUMJI
zD=J8lN&Nq+a2k_|DmYup+ge*XxIKEnDGF17qY&~6Kt;&G<rL)s#ziA!f%_ggq#O*X
ifK(!rk|J|+H+OaSy5eeWLk2+sE+WZzcoa32$o?NBSn#U=

-- 
GitLab