You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tika.apache.org by ta...@apache.org on 2019/07/11 20:12:03 UTC

[tika] branch master updated: TIKA-2899 -- prevent non-aligned tags in xhtml output...I am not convinced there's anything wrong with this RTF, and I may have just covered up list processing bugs in our parser, but this will guarantee balanced tags...

This is an automated email from the ASF dual-hosted git repository.

tallison pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tika.git


The following commit(s) were added to refs/heads/master by this push:
     new 18f5ce0  TIKA-2899 -- prevent non-aligned tags in xhtml output...I am not convinced there's anything wrong with this RTF, and I may have just covered up list processing bugs in our parser, but this will guarantee balanced tags...
18f5ce0 is described below

commit 18f5ce047c7f5fac7eed47038a4d53b91a204711
Author: TALLISON <ta...@apache.org>
AuthorDate: Thu Jul 11 16:11:49 2019 -0400

    TIKA-2899 -- prevent non-aligned tags in xhtml output...I am not
    convinced there's anything wrong with this RTF, and I may have just
    covered up list processing bugs in our parser, but this will guarantee
    balanced tags...
---
 .../org/apache/tika/parser/rtf/TextExtractor.java  |  80 +-
 .../org/apache/tika/parser/rtf/RTFParserTest.java  |   7 +-
 .../resources/test-documents/testRTFTIKA_2899.rtf  | 836 +++++++++++++++++++++
 3 files changed, 914 insertions(+), 9 deletions(-)

diff --git a/tika-parsers/src/main/java/org/apache/tika/parser/rtf/TextExtractor.java b/tika-parsers/src/main/java/org/apache/tika/parser/rtf/TextExtractor.java
index 06c89b8..afbe273 100644
--- a/tika-parsers/src/main/java/org/apache/tika/parser/rtf/TextExtractor.java
+++ b/tika-parsers/src/main/java/org/apache/tika/parser/rtf/TextExtractor.java
@@ -32,6 +32,7 @@ import java.util.HashMap;
 import java.util.LinkedList;
 import java.util.Locale;
 import java.util.Map;
+import java.util.Stack;
 import java.util.TimeZone;
 
 import org.apache.commons.io.IOUtils;
@@ -57,6 +58,11 @@ import org.xml.sax.SAXException;
 final class TextExtractor {
 
     private static final char SPACE = ' ';
+    private static final String P = "p";
+    private static final String LI = "li";
+    private static final String OL = "ol";
+    private static final String UL = "ul";
+
     private static final Charset ASCII = Charset.forName("US-ASCII");
     private static final Charset WINDOWS_1252 = getCharset("WINDOWS-1252");
     private static final Charset MAC_ROMAN = getCharset("MacRoman");
@@ -309,6 +315,22 @@ final class TextExtractor {
     // Used when extracting CREATION date:
     private int year, month, day, hour, minute;
 
+    //This keeps track of the following elements as they are
+    //written to the handler: p, li, ol, ul
+    //This tries to prevent malformed tag orders in the RTF
+    //e.g. <p></li></ol></p>
+    //from generating malformed xml tags. (TIKA-2899)
+    //This may conceal problems with our parser.
+    //TODO:
+    // 1) do we need to add all elements, a, b, i, etc.
+    // 2) are we doing the right thing by ignoring an element
+    //    if its match doesn't pop off the stack...or should
+    //    we pop all at the first failure.
+    private Stack<String> paragraphStack = new Stack<>();
+    //this is an arbitrary limit on the size of the stack
+    //to defend against DoS with memory consumption
+    private int maxStackSize = 1000;
+
     public TextExtractor(XHTMLContentHandler out, Metadata metadata,
                          RTFEmbObjHandler embObjHandler) {
         this.metadata = metadata;
@@ -481,6 +503,11 @@ final class TextExtractor {
         }
 
         endParagraph(false);
+
+        //close out whatever tags were left
+        while (paragraphStack.size() > 0) {
+            end(paragraphStack.pop());
+        }
         out.endDocument();
     }
 
@@ -590,9 +617,11 @@ final class TextExtractor {
                 startList(groupState.list);
             }
             if (inList()) {
-                out.startElement("li");
+                start("li");
+                pushParagraphTag(LI);
             } else {
-                out.startElement("p");
+                start("p");
+                pushParagraphTag(P);
             }
 
             // Ensure <b><i> order
@@ -606,6 +635,14 @@ final class TextExtractor {
         }
     }
 
+    private void pushParagraphTag(String tag) {
+        if (paragraphStack.size() < maxStackSize) {
+            paragraphStack.push(tag);
+        } else {
+            //ignore.  Something is very, very wrong...
+        }
+    }
+
     private void endParagraph(boolean preserveStyles) throws IOException, SAXException, TikaException {
         pushText();
         //maintain consecutive new lines
@@ -622,13 +659,30 @@ final class TextExtractor {
                 groupState.bold = preserveStyles;
             }
             if (inList()) {
-                out.endElement("li");
+                if (paragraphStack.size() > 0) {
+                    String lastP = paragraphStack.pop();
+                    if (lastP.equals(LI)) {
+                        end(LI);
+                    } else {
+                        pushParagraphTag(lastP);
+                    }
+                } else {
+                    //there should have been a starting li
+                }
             } else {
-                out.endElement("p");
+                if (paragraphStack.size() > 0) {
+                    String lastP = paragraphStack.pop();
+                    if (P.equals(lastP)) {
+                        end(P);
+                    } else {
+                        pushParagraphTag(lastP);
+                    }
+                }
             }
 
             if (preserveStyles && (groupState.bold || groupState.italic)) {
-                start("p");
+                start(P);
+                pushParagraphTag(P);
                 if (groupState.bold) {
                     start("b");
                 }
@@ -995,7 +1049,15 @@ final class TextExtractor {
      */
     private void endList(int listID) throws IOException, SAXException, TikaException {
         if (!ignoreLists) {
-            out.endElement(isUnorderedList(listID) ? "ul" : "ol");
+            String xl = isUnorderedList(listID) ? UL : OL;
+            if (paragraphStack.size() > 0) {
+                String p = paragraphStack.pop();
+                if (xl.equals(p)) {
+                    end(xl);
+                }
+            } else {
+                //stack as empty, the list was never started
+            }
         }
     }
 
@@ -1010,7 +1072,9 @@ final class TextExtractor {
      */
     private void startList(int listID) throws IOException, SAXException, TikaException {
         if (!ignoreLists) {
-            out.startElement(isUnorderedList(listID) ? "ul" : "ol");
+            String xl = isUnorderedList(listID) ? UL : OL;
+            start(xl);
+            pushParagraphTag(xl);
         }
     }
 
@@ -1453,7 +1517,7 @@ final class TextExtractor {
             // inlined, but fail to record them in metadata
             // as a field value.
         } else if (fieldState == 3) {
-            out.endElement("a");
+            end("a");
             fieldState = 0;
         }
     }
diff --git a/tika-parsers/src/test/java/org/apache/tika/parser/rtf/RTFParserTest.java b/tika-parsers/src/test/java/org/apache/tika/parser/rtf/RTFParserTest.java
index 6654245..34c2208 100644
--- a/tika-parsers/src/test/java/org/apache/tika/parser/rtf/RTFParserTest.java
+++ b/tika-parsers/src/test/java/org/apache/tika/parser/rtf/RTFParserTest.java
@@ -55,7 +55,6 @@ import org.apache.tika.sax.BodyContentHandler;
 import org.apache.tika.sax.RecursiveParserWrapperHandler;
 import org.apache.tika.sax.WriteOutContentHandler;
 import org.junit.Test;
-import org.xml.sax.ContentHandler;
 
 /**
  * Junit test class for the Tika {@link RTFParser}
@@ -573,6 +572,12 @@ public class RTFParserTest extends TikaTest {
                 getXML("testRTFTIKA_2883.rtf").xml);
     }
 
+    @Test
+    public void testTIKA2899() throws Exception {
+        assertContains("this Agreement on today",
+                getXML("testRTFTIKA_2899.rtf").xml);
+    }
+
     private Result getResult(String filename) throws Exception {
         File file = getResourceAsFile("/test-documents/" + filename);
 
diff --git a/tika-parsers/src/test/resources/test-documents/testRTFTIKA_2899.rtf b/tika-parsers/src/test/resources/test-documents/testRTFTIKA_2899.rtf
new file mode 100644
index 0000000..2c21515
--- /dev/null
+++ b/tika-parsers/src/test/resources/test-documents/testRTFTIKA_2899.rtf
@@ -0,0 +1,836 @@
+{\rtf1\adeflang1025\ansi\ansicpg1252\uc1\adeff0\deff0\stshfdbch31505\stshfloch31506\stshfhich31506\stshfbi0\deflang1033\deflangfe1033\themelang1033\themelangfe0\themelangcs0{\fonttbl{\f0\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\f1\fbidi \fswiss\fcharset0\fprq2{\*\panose 020b0604020202020204}Arial;}
+{\f3\fbidi \froman\fcharset2\fprq2{\*\panose 05050102010706020507}Symbol;}{\f34\fbidi \froman\fcharset0\fprq2{\*\panose 02040503050406030204}Cambria Math;}{\f37\fbidi \fswiss\fcharset0\fprq2{\*\panose 020f0502020204030204}Calibri;}
+{\f43\fbidi \fswiss\fcharset0\fprq2{\*\panose 00000000000000000000}Tahoma;}{\flomajor\f31500\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}
+{\fdbmajor\f31501\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\fhimajor\f31502\fbidi \froman\fcharset0\fprq2{\*\panose 02040503050406030204}Cambria;}
+{\fbimajor\f31503\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\flominor\f31504\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}
+{\fdbminor\f31505\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\fhiminor\f31506\fbidi \fswiss\fcharset0\fprq2{\*\panose 020f0502020204030204}Calibri;}
+{\fbiminor\f31507\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\f46\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\f47\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}
+{\f49\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\f50\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\f51\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\f52\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}
+{\f53\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\f54\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\f56\fbidi \fswiss\fcharset238\fprq2 Arial CE;}{\f57\fbidi \fswiss\fcharset204\fprq2 Arial Cyr;}
+{\f59\fbidi \fswiss\fcharset161\fprq2 Arial Greek;}{\f60\fbidi \fswiss\fcharset162\fprq2 Arial Tur;}{\f61\fbidi \fswiss\fcharset177\fprq2 Arial (Hebrew);}{\f62\fbidi \fswiss\fcharset178\fprq2 Arial (Arabic);}
+{\f63\fbidi \fswiss\fcharset186\fprq2 Arial Baltic;}{\f64\fbidi \fswiss\fcharset163\fprq2 Arial (Vietnamese);}{\f386\fbidi \froman\fcharset238\fprq2 Cambria Math CE;}{\f387\fbidi \froman\fcharset204\fprq2 Cambria Math Cyr;}
+{\f389\fbidi \froman\fcharset161\fprq2 Cambria Math Greek;}{\f390\fbidi \froman\fcharset162\fprq2 Cambria Math Tur;}{\f393\fbidi \froman\fcharset186\fprq2 Cambria Math Baltic;}{\f394\fbidi \froman\fcharset163\fprq2 Cambria Math (Vietnamese);}
+{\f416\fbidi \fswiss\fcharset238\fprq2 Calibri CE;}{\f417\fbidi \fswiss\fcharset204\fprq2 Calibri Cyr;}{\f419\fbidi \fswiss\fcharset161\fprq2 Calibri Greek;}{\f420\fbidi \fswiss\fcharset162\fprq2 Calibri Tur;}
+{\f421\fbidi \fswiss\fcharset177\fprq2 Calibri (Hebrew);}{\f422\fbidi \fswiss\fcharset178\fprq2 Calibri (Arabic);}{\f423\fbidi \fswiss\fcharset186\fprq2 Calibri Baltic;}{\f424\fbidi \fswiss\fcharset163\fprq2 Calibri (Vietnamese);}
+{\f476\fbidi \fswiss\fcharset238\fprq2 Tahoma CE;}{\f477\fbidi \fswiss\fcharset204\fprq2 Tahoma Cyr;}{\f479\fbidi \fswiss\fcharset161\fprq2 Tahoma Greek;}{\f480\fbidi \fswiss\fcharset162\fprq2 Tahoma Tur;}
+{\f481\fbidi \fswiss\fcharset177\fprq2 Tahoma (Hebrew);}{\f482\fbidi \fswiss\fcharset178\fprq2 Tahoma (Arabic);}{\f483\fbidi \fswiss\fcharset186\fprq2 Tahoma Baltic;}{\f484\fbidi \fswiss\fcharset163\fprq2 Tahoma (Vietnamese);}
+{\f485\fbidi \fswiss\fcharset222\fprq2 Tahoma (Thai);}{\flomajor\f31508\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\flomajor\f31509\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}
+{\flomajor\f31511\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\flomajor\f31512\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\flomajor\f31513\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}
+{\flomajor\f31514\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\flomajor\f31515\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\flomajor\f31516\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}
+{\fdbmajor\f31518\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\fdbmajor\f31519\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\fdbmajor\f31521\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}
+{\fdbmajor\f31522\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\fdbmajor\f31523\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\fdbmajor\f31524\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}
+{\fdbmajor\f31525\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\fdbmajor\f31526\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\fhimajor\f31528\fbidi \froman\fcharset238\fprq2 Cambria CE;}
+{\fhimajor\f31529\fbidi \froman\fcharset204\fprq2 Cambria Cyr;}{\fhimajor\f31531\fbidi \froman\fcharset161\fprq2 Cambria Greek;}{\fhimajor\f31532\fbidi \froman\fcharset162\fprq2 Cambria Tur;}
+{\fhimajor\f31535\fbidi \froman\fcharset186\fprq2 Cambria Baltic;}{\fhimajor\f31536\fbidi \froman\fcharset163\fprq2 Cambria (Vietnamese);}{\fbimajor\f31538\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}
+{\fbimajor\f31539\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\fbimajor\f31541\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\fbimajor\f31542\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}
+{\fbimajor\f31543\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\fbimajor\f31544\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\fbimajor\f31545\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}
+{\fbimajor\f31546\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\flominor\f31548\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\flominor\f31549\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}
+{\flominor\f31551\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\flominor\f31552\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\flominor\f31553\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}
+{\flominor\f31554\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\flominor\f31555\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\flominor\f31556\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}
+{\fdbminor\f31558\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\fdbminor\f31559\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\fdbminor\f31561\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}
+{\fdbminor\f31562\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\fdbminor\f31563\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\fdbminor\f31564\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}
+{\fdbminor\f31565\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\fdbminor\f31566\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\fhiminor\f31568\fbidi \fswiss\fcharset238\fprq2 Calibri CE;}
+{\fhiminor\f31569\fbidi \fswiss\fcharset204\fprq2 Calibri Cyr;}{\fhiminor\f31571\fbidi \fswiss\fcharset161\fprq2 Calibri Greek;}{\fhiminor\f31572\fbidi \fswiss\fcharset162\fprq2 Calibri Tur;}
+{\fhiminor\f31573\fbidi \fswiss\fcharset177\fprq2 Calibri (Hebrew);}{\fhiminor\f31574\fbidi \fswiss\fcharset178\fprq2 Calibri (Arabic);}{\fhiminor\f31575\fbidi \fswiss\fcharset186\fprq2 Calibri Baltic;}
+{\fhiminor\f31576\fbidi \fswiss\fcharset163\fprq2 Calibri (Vietnamese);}{\fbiminor\f31578\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\fbiminor\f31579\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}
+{\fbiminor\f31581\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\fbiminor\f31582\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\fbiminor\f31583\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}
+{\fbiminor\f31584\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\fbiminor\f31585\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\fbiminor\f31586\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}}
+{\colortbl;\red0\green0\blue0;\red0\green0\blue255;\red0\green255\blue255;\red0\green255\blue0;\red255\green0\blue255;\red255\green0\blue0;\red255\green255\blue0;\red255\green255\blue255;\red0\green0\blue128;\red0\green128\blue128;\red0\green128\blue0;
+\red128\green0\blue128;\red128\green0\blue0;\red128\green128\blue0;\red128\green128\blue128;\red192\green192\blue192;\red0\green0\blue0;\red0\green0\blue0;\red255\green255\blue255;\red0\green176\blue80;}{\*\defchp 
+\fs22\loch\af31506\hich\af31506\dbch\af31505 }{\*\defpap \ql \li0\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 }\noqfpromote {\stylesheet{\ql \li0\ri0\sa200\sl276\slmult1
+\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af0\afs22\alang1025 \ltrch\fcs0 \fs22\lang1033\langfe1033\loch\f31506\hich\af31506\dbch\af31505\cgrid\langnp1033\langfenp1033 \snext0 \sqformat \spriority0 Normal;}{\*
+\cs10 \additive \ssemihidden \sunhideused \spriority1 Default Paragraph Font;}{\*
+\ts11\tsrowd\trftsWidthB3\trpaddl108\trpaddr108\trpaddfl3\trpaddft3\trpaddfb3\trpaddfr3\tblind0\tblindtype3\tsvertalt\tsbrdrt\tsbrdrl\tsbrdrb\tsbrdrr\tsbrdrdgl\tsbrdrdgr\tsbrdrh\tsbrdrv \ql \li0\ri0\sa200\sl276\slmult1
+\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af0\afs22\alang1025 \ltrch\fcs0 \fs22\lang1033\langfe1033\loch\f31506\hich\af31506\dbch\af31505\cgrid\langnp1033\langfenp1033 \snext11 \ssemihidden \sunhideused 
+Normal Table;}{\s15\ql \li0\ri0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af43\afs16\alang1025 \ltrch\fcs0 \fs16\lang1033\langfe1033\loch\f43\hich\af43\dbch\af31505\cgrid\langnp1033\langfenp1033 
+\sbasedon0 \snext15 \slink16 \ssemihidden \sunhideused \styrsid14506027 Balloon Text;}{\*\cs16 \additive \rtlch\fcs1 \af43\afs16 \ltrch\fcs0 \f43\fs16 \sbasedon10 \slink15 \slocked \ssemihidden \styrsid14506027 Balloon Text Char;}{\*\cs17 \additive 
+\rtlch\fcs1 \af0\afs16 \ltrch\fcs0 \fs16 \sbasedon10 \styrsid5143407 annotation reference;}{\s18\ql \li0\ri0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af0\afs20\alang1025 \ltrch\fcs0 
+\fs20\lang1033\langfe1033\loch\f0\hich\af0\dbch\af31505\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext18 \slink19 \styrsid5143407 annotation text;}{\*\cs19 \additive \rtlch\fcs1 \af0\afs20 \ltrch\fcs0 \f0\fs20 
+\sbasedon10 \slink18 \slocked \styrsid5143407 Comment Text Char;}}{\*\listtable{\list\listtemplateid0\listsimple{\listlevel\levelnfc23\levelnfcn23\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext
+\'02\'00\'b7;}{\levelnumbers\'01;}\f3\fs22\cf1 }{\listname ;}\listid114701392}{\list\listtemplateid0\listsimple{\listlevel\levelnfc23\levelnfcn23\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'00\'b7;}{\levelnumbers
+\'01;}\f3\fs22\cf1 }{\listname ;}\listid248829613}{\list\listtemplateid0\listsimple{\listlevel\levelnfc23\levelnfcn23\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'00\'b7;}{\levelnumbers\'01;}\f3\fs22\cf1 }
+{\listname ;}\listid359482802}{\list\listtemplateid0\listsimple{\listlevel\levelnfc23\levelnfcn23\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'00\'b7;}{\levelnumbers\'01;}\f3\fs22\cf1 }{\listname 
+;}\listid390506479}{\list\listtemplateid0\listsimple{\listlevel\levelnfc23\levelnfcn23\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'00\'b7;}{\levelnumbers\'01;}\f3\fs22\cf1 }{\listname ;}\listid456951786}
+{\list\listtemplateid0\listsimple{\listlevel\levelnfc23\levelnfcn23\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'00\'b7;}{\levelnumbers\'01;}\f3\fs22\cf1 }{\listname ;}\listid475372494}{\list\listtemplateid0
+\listsimple{\listlevel\levelnfc0\levelnfcn0\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'00.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0\afs22 \ltrch\fcs0 \f0\fs22\cf1 }{\listname ;}\listid487198226}
+{\list\listtemplateid0\listsimple{\listlevel\levelnfc23\levelnfcn23\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'00\'b7;}{\levelnumbers\'01;}\f3\fs22\cf1 }{\listname ;}\listid664038103}{\list\listtemplateid0
+\listsimple{\listlevel\levelnfc23\levelnfcn23\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'00\'b7;}{\levelnumbers\'01;}\f3\fs22\cf1 }{\listname ;}\listid749641708}{\list\listtemplateid0\listsimple{\listlevel
+\levelnfc23\levelnfcn23\leveljc2\leveljcn2\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'00\'b7;}{\levelnumbers\'01;}\f3\fs22\cf1 }{\listname ;}\listid893341160}}{\*\listoverridetable{\listoverride\listid664038103
+\listoverridecount0\ls1}{\listoverride\listid456951786\listoverridecount0\ls2}{\listoverride\listid390506479\listoverridecount0\ls3}{\listoverride\listid893341160\listoverridecount0\ls4}{\listoverride\listid749641708\listoverridecount0\ls5}
+{\listoverride\listid359482802\listoverridecount0\ls6}{\listoverride\listid475372494\listoverridecount0\ls7}{\listoverride\listid487198226\listoverridecount0\ls8}{\listoverride\listid114701392\listoverridecount0\ls9}{\listoverride\listid248829613
+\listoverridecount0\ls10}}{\*\pgptbl {\pgp\ipgp0\itap0\li0\ri0\sb0\sa0}}{\*\rsidtbl \rsid93205\rsid142059\rsid538225\rsid1137112\rsid1265598\rsid1653031\rsid1780878\rsid1911151\rsid2303571\rsid2318709\rsid2433324\rsid2433506\rsid2447484\rsid2643746
+\rsid2777279\rsid3422018\rsid3571603\rsid3943339\rsid4222925\rsid4462969\rsid4603150\rsid5143407\rsid5585236\rsid6321265\rsid6553754\rsid6754112\rsid6760993\rsid6762709\rsid6906291\rsid7028776\rsid7299295\rsid7890424\rsid8223111\rsid8333058\rsid8586060
+\rsid8653689\rsid9064672\rsid9121708\rsid9191359\rsid9191874\rsid9251852\rsid9271536\rsid9512838\rsid10172572\rsid10245669\rsid10375923\rsid10569601\rsid10705869\rsid10751230\rsid10961388\rsid11757447\rsid12020691\rsid12073802\rsid12155930\rsid12334496
+\rsid12410227\rsid12469438\rsid12737173\rsid12910673\rsid12917016\rsid13532285\rsid13662512\rsid13779093\rsid13832229\rsid14240175\rsid14433885\rsid14442077\rsid14506027\rsid14555815\rsid14891872\rsid15153987\rsid15735628\rsid15800804\rsid15860534
+\rsid15889462\rsid16086146\rsid16265548\rsid16546006\rsid16650633}{\mmathPr\mmathFont34\mbrkBin0\mbrkBinSub0\msmallFrac0\mdispDef1\mlMargin0\mrMargin0\mdefJc1\mwrapIndent1440\mintLim0\mnaryLim1}{\info{\author Christine.Heine}
+{\operator Pailvan, Pandurang Gokul}{\creatim\yr2019\mo7\dy3\hr17\min4}{\revtim\yr2019\mo7\dy3\hr17\min4}{\printim\yr2011\mo10\dy4\hr10\min17}{\version2}{\edmins0}{\nofpages6}{\nofwords3598}{\nofchars20512}{\nofcharsws24062}{\vern107}}{\*\userprops 
+{\propname creator}\proptype30{\staticval XMLmind XSL-FO Converter Professional Edition 4.4.0}}{\*\xmlnstbl {\xmlns1 http://schemas.microsoft.com/office/word/2003/wordml}}\paperw12240\paperh15840\margl720\margr720\margt720\margb1814\gutter0\ltrsect 
+\facingp\widowctrl\ftnbj\aenddoc\revisions\trackmoves0\trackformatting1\donotembedsysfont0\relyonvml0\donotembedlingdata1\grfdocevents0\validatexml0\showplaceholdtext0\ignoremixedcontent0\saveinvalidxml0\showxmlerrors0\horzdoc\dghspace120\dgvspace120
+\dghorigin1701\dgvorigin1984\dghshow0\dgvshow3\jcompress\viewkind1\viewscale124\rsidroot8653689 \fet0{\*\wgrffmtfilter 2450}\ilfomacatclnup0{\*\ftnsep \ltrpar \pard\plain \ltrpar
+\ql \li0\ri0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af0\afs22\alang1025 \ltrch\fcs0 \fs22\lang1033\langfe1033\loch\af31506\hich\af31506\dbch\af31505\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af0 
+\ltrch\fcs0 \insrsid2447484 \chftnsep 
+\par }}{\*\ftnsepc \ltrpar \pard\plain \ltrpar\ql \li0\ri0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af0\afs22\alang1025 \ltrch\fcs0 
+\fs22\lang1033\langfe1033\loch\af31506\hich\af31506\dbch\af31505\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid2447484 \chftnsepc 
+\par }}{\*\aftnsep \ltrpar \pard\plain \ltrpar\ql \li0\ri0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af0\afs22\alang1025 \ltrch\fcs0 
+\fs22\lang1033\langfe1033\loch\af31506\hich\af31506\dbch\af31505\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid2447484 \chftnsep 
+\par }}{\*\aftnsepc \ltrpar \pard\plain \ltrpar\ql \li0\ri0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af0\afs22\alang1025 \ltrch\fcs0 
+\fs22\lang1033\langfe1033\loch\af31506\hich\af31506\dbch\af31505\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid2447484 \chftnsepc 
+\par }}\ltrpar \sectd \ltrsect\pgnrestart\linex0\cols2\colsx440\titlepg\sectdefaultcl\sftnbj {\headerl \ltrpar \pard\plain \ltrpar\ql \li0\ri0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 \rtlch\fcs1 \af0\afs22\alang1025 \ltrch\fcs0 
+\fs22\lang1033\langfe1033\loch\af31506\hich\af31506\dbch\af31505\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af0\afs24 \ltrch\fcs0 \f0\fs24\insrsid11757447 
+\par }}{\headerr \ltrpar \pard\plain \ltrpar\ql \li0\ri0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 \rtlch\fcs1 \af0\afs22\alang1025 \ltrch\fcs0 \fs22\lang1033\langfe1033\loch\af31506\hich\af31506\dbch\af31505\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 
+\af0\afs24 \ltrch\fcs0 \f0\fs24\insrsid11757447 
+\par }}{\footerl \ltrpar \pard\plain \ltrpar\ql \li0\ri0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 \rtlch\fcs1 \af0\afs22\alang1025 \ltrch\fcs0 \fs22\lang1033\langfe1033\loch\af31506\hich\af31506\dbch\af31505\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 
+\af0\afs24 \ltrch\fcs0 \f0\fs24\ul\cf1\insrsid11757447 \hich\af0\dbch\af31505\loch\f0                             \hich\af0\dbch\af31505\loch\f0 
+                                                                                                                                                                                                                                                               
+\hich\af0\dbch\af31505\loch\f0  \hich\af0\dbch\af31505\loch\f0 
+                                                                                                                                                                                                                                                               
+\hich\af0\dbch\af31505\loch\f0  \hich\af0\dbch\af31505\loch\f0                                                                         }{\rtlch\fcs1 \af0\afs24 \ltrch\fcs0 \f0\fs24\insrsid11757447 
+\par \ltrrow}\trowd \irow0\irowband0\ltrrow\ts11\tsrowd\trftsWidth1\tblind0\tblindtype3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth6750\clshdrawnil \cellx6750\clvertalt\clbrdrt\brdrnone 
+\clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth450\clshdrawnil \cellx7200\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth3600\clshdrawnil \cellx10800
+\pard \ltrpar\ql \li0\ri0\keepn\nowidctlpar\intbl\wrapdefault\faauto\rin0\lin0 {\rtlch\fcs1 \af1\afs12 \ltrch\fcs0 \f1\fs12\cf1\insrsid11757447 \hich\af1\dbch\af31505\loch\f1 Personal Line of Credit - WI}{\rtlch\fcs1 \af0\afs24 \ltrch\fcs0 
+\f0\fs24\insrsid11757447 \cell \cell \cell }\pard \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\intbl\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch\fcs1 \af0\afs24 \ltrch\fcs0 \f0\fs24\insrsid11757447 \trowd \irow0\irowband0\ltrrow
+\ts11\tsrowd\trftsWidth1\tblind0\tblindtype3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth6750\clshdrawnil \cellx6750\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone 
+\clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth450\clshdrawnil \cellx7200\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth3600\clshdrawnil \cellx10800\row \ltrrow}\pard \ltrpar
+\ql \li0\ri0\keepn\nowidctlpar\intbl\wrapdefault\faauto\rin0\lin0 {\rtlch\fcs1 \af1\afs12 \ltrch\fcs0 \f1\fs12\cf1\insrsid11757447 \hich\af1\dbch\af31505\loch\f1 \hich\f1 Bankers Systems\'99}{\rtlch\fcs1 \af0\afs24 \ltrch\fcs0 \f0\fs24\insrsid11757447 
+\cell \cell }\pard \ltrpar\qr \li0\ri0\keepn\nowidctlpar\intbl\wrapdefault\faauto\rin0\lin0 {\rtlch\fcs1 \af1\afs12 \ltrch\fcs0 \f1\fs12\cf1\insrsid11757447 \hich\af1\dbch\af31505\loch\f1 05/2011}{\rtlch\fcs1 \af0\afs24 \ltrch\fcs0 
+\f0\fs24\insrsid11757447 \cell }\pard \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\intbl\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch\fcs1 \af0\afs24 \ltrch\fcs0 \f0\fs24\insrsid11757447 \trowd \irow1\irowband1\ltrrow
+\ts11\tsrowd\trftsWidth1\tblind0\tblindtype3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth6750\clshdrawnil \cellx6750\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone 
+\clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth450\clshdrawnil \cellx7200\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth3600\clshdrawnil \cellx10800\row \ltrrow
+}\trowd \irow2\irowband2\lastrow \ltrrow\ts11\tsrowd\trftsWidth1\tblind0\tblindtype3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth3150\clshdrawnil \cellx3150\clvertalt\clbrdrt\brdrnone 
+\clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth450\clshdrawnil \cellx3600\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth3150\clshdrawnil \cellx6750
+\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth450\clshdrawnil \cellx7200\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone 
+\cltxlrtb\clftsWidth3\clwWidth3600\clshdrawnil \cellx10800\pard \ltrpar\ql \li0\ri0\keepn\nowidctlpar\intbl\wrapdefault\faauto\rin0\lin0 {\rtlch\fcs1 \af1\afs12 \ltrch\fcs0 \f1\fs12\cf1\insrsid11757447 \hich\af1\dbch\af31505\loch\f1 \hich\f1 
+Wolters Kluwer Financial Service \'a9\loch\f1  2002, 2010}{\rtlch\fcs1 \af0\afs24 \ltrch\fcs0 \f0\fs24\insrsid11757447 \cell \cell }\pard \ltrpar\qc \li0\ri0\keepn\nowidctlpar\intbl\wrapdefault\faauto\rin0\lin0 {\rtlch\fcs1 \af1\afs12 \ltrch\fcs0 
+\f1\fs12\cf1\insrsid11757447 \hich\af1\dbch\af31505\loch\f1 201110034.1.0.2102-N20110815Y}{\rtlch\fcs1 \af0\afs24 \ltrch\fcs0 \f0\fs24\insrsid11757447 \cell }\pard \ltrpar\ql \li0\ri0\keepn\nowidctlpar\intbl\wrapdefault\faauto\rin0\lin0 {\rtlch\fcs1 
+\af0\afs24 \ltrch\fcs0 \f0\fs24\insrsid11757447 \cell }\pard \ltrpar\qr \li0\ri0\keepn\nowidctlpar\intbl\wrapdefault\faauto\rin0\lin0 {\rtlch\fcs1 \af1\afs12 \ltrch\fcs0 \f1\fs12\cf1\insrsid11757447 \~\~\~\~\hich\af1\dbch\af31505\loch\f1 Page \chpgn 
+\hich\af1\dbch\af31505\loch\f1  of }{\field{\*\fldinst {\rtlch\fcs1 \af1\afs12 \ltrch\fcs0 \f1\fs12\cf1\insrsid11757447 \hich\af1\dbch\af31505\loch\f1 NUMPAGES}}{\fldrslt {\rtlch\fcs1 \af1\afs12 \ltrch\fcs0 
+\f1\fs12\cf1\lang1024\langfe1024\noproof\insrsid10961388 \hich\af1\dbch\af31505\loch\f1 6}}}\sectd \ltrsect\linex0\endnhere\sectdefaultcl\sftnbj {\rtlch\fcs1 \af0\afs24 \ltrch\fcs0 \f0\fs24\insrsid11757447 \cell }\pard \ltrpar
+\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\intbl\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch\fcs1 \af0\afs24 \ltrch\fcs0 \f0\fs24\insrsid11757447 \trowd \irow2\irowband2\lastrow \ltrrow\ts11\tsrowd\trftsWidth1\tblind0\tblindtype3 
+\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth3150\clshdrawnil \cellx3150\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone 
+\cltxlrtb\clftsWidth3\clwWidth450\clshdrawnil \cellx3600\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth3150\clshdrawnil \cellx6750\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb
+\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth450\clshdrawnil \cellx7200\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth3600\clshdrawnil \cellx10800\row }}{\footerr \ltrpar 
+\pard\plain \ltrpar\ql \li0\ri0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 \rtlch\fcs1 \af0\afs22\alang1025 \ltrch\fcs0 \fs22\lang1033\langfe1033\loch\af31506\hich\af31506\dbch\af31505\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af0\afs24 \ltrch\fcs0 
+\f0\fs24\ul\cf1\insrsid11757447 \hich\af0\dbch\af31505\loch\f0 
+                                                                                                                                                                                                                                                               
+\hich\af0\dbch\af31505\loch\f0  \hich\af0\dbch\af31505\loch\f0 
+                                                                                                                                                                                                                                                               
+\hich\af0\dbch\af31505\loch\f0  \hich\af0\dbch\af31505\loch\f0                                                                                                     }{\rtlch\fcs1 \af0\afs24 \ltrch\fcs0 \f0\fs24\insrsid11757447 
+\par \ltrrow}\trowd \irow0\irowband0\ltrrow\ts11\tsrowd\trftsWidth1\tblind0\tblindtype3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth6750\clshdrawnil \cellx6750\clvertalt\clbrdrt\brdrnone 
+\clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth450\clshdrawnil \cellx7200\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth3600\clshdrawnil \cellx10800
+\pard \ltrpar\ql \li0\ri0\keepn\nowidctlpar\intbl\wrapdefault\faauto\rin0\lin0 {\rtlch\fcs1 \af1\afs12 \ltrch\fcs0 \f1\fs12\cf1\insrsid11757447 \hich\af1\dbch\af31505\loch\f1 Personal Line of Credit - WI}{\rtlch\fcs1 \af0\afs24 \ltrch\fcs0 
+\f0\fs24\insrsid11757447 \cell \cell \cell }\pard \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\intbl\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch\fcs1 \af0\afs24 \ltrch\fcs0 \f0\fs24\insrsid11757447 \trowd \irow0\irowband0\ltrrow
+\ts11\tsrowd\trftsWidth1\tblind0\tblindtype3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth6750\clshdrawnil \cellx6750\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone 
+\clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth450\clshdrawnil \cellx7200\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth3600\clshdrawnil \cellx10800\row \ltrrow}\pard \ltrpar
+\ql \li0\ri0\keepn\nowidctlpar\intbl\wrapdefault\faauto\rin0\lin0 {\rtlch\fcs1 \af1\afs12 \ltrch\fcs0 \f1\fs12\cf1\insrsid11757447 \hich\af1\dbch\af31505\loch\f1 \hich\f1 Bankers Systems\'99}{\rtlch\fcs1 \af0\afs24 \ltrch\fcs0 \f0\fs24\insrsid11757447 
+\cell \cell }\pard \ltrpar\qr \li0\ri0\keepn\nowidctlpar\intbl\wrapdefault\faauto\rin0\lin0 {\rtlch\fcs1 \af1\afs12 \ltrch\fcs0 \f1\fs12\cf1\insrsid11757447 \hich\af1\dbch\af31505\loch\f1 05/2011}{\rtlch\fcs1 \af0\afs24 \ltrch\fcs0 
+\f0\fs24\insrsid11757447 \cell }\pard \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\intbl\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch\fcs1 \af0\afs24 \ltrch\fcs0 \f0\fs24\insrsid11757447 \trowd \irow1\irowband1\ltrrow
+\ts11\tsrowd\trftsWidth1\tblind0\tblindtype3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth6750\clshdrawnil \cellx6750\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone 
+\clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth450\clshdrawnil \cellx7200\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth3600\clshdrawnil \cellx10800\row \ltrrow
+}\trowd \irow2\irowband2\lastrow \ltrrow\ts11\tsrowd\trftsWidth1\tblind0\tblindtype3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth3150\clshdrawnil \cellx3150\clvertalt\clbrdrt\brdrnone 
+\clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth450\clshdrawnil \cellx3600\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth3150\clshdrawnil \cellx6750
+\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth450\clshdrawnil \cellx7200\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone 
+\cltxlrtb\clftsWidth3\clwWidth3600\clshdrawnil \cellx10800\pard \ltrpar\ql \li0\ri0\keepn\nowidctlpar\intbl\wrapdefault\faauto\rin0\lin0 {\rtlch\fcs1 \af1\afs12 \ltrch\fcs0 \f1\fs12\cf1\insrsid11757447 \hich\af1\dbch\af31505\loch\f1 \hich\f1 
+Wolters Kluwer Financial Service \'a9\loch\f1  2002, 2010}{\rtlch\fcs1 \af0\afs24 \ltrch\fcs0 \f0\fs24\insrsid11757447 \cell \cell }\pard \ltrpar\qc \li0\ri0\keepn\nowidctlpar\intbl\wrapdefault\faauto\rin0\lin0 {\rtlch\fcs1 \af1\afs12 \ltrch\fcs0 
+\f1\fs12\cf1\insrsid11757447 \hich\af1\dbch\af31505\loch\f1 201110034.1.0.2102-N20110815Y}{\rtlch\fcs1 \af0\afs24 \ltrch\fcs0 \f0\fs24\insrsid11757447 \cell }\pard \ltrpar\ql \li0\ri0\keepn\nowidctlpar\intbl\wrapdefault\faauto\rin0\lin0 {\rtlch\fcs1 
+\af0\afs24 \ltrch\fcs0 \f0\fs24\insrsid11757447 \cell }\pard \ltrpar\qr \li0\ri0\keepn\nowidctlpar\intbl\wrapdefault\faauto\rin0\lin0 {\rtlch\fcs1 \af1\afs12 \ltrch\fcs0 \f1\fs12\cf1\insrsid11757447 \~\~\~\~\hich\af1\dbch\af31505\loch\f1 Page \chpgn 
+\hich\af1\dbch\af31505\loch\f1  of }{\field{\*\fldinst {\rtlch\fcs1 \af1\afs12 \ltrch\fcs0 \f1\fs12\cf1\insrsid11757447 \hich\af1\dbch\af31505\loch\f1 NUMPAGES}}{\fldrslt {\rtlch\fcs1 \af1\afs12 \ltrch\fcs0 
+\f1\fs12\cf1\lang1024\langfe1024\noproof\insrsid10961388 \hich\af1\dbch\af31505\loch\f1 5}}}\sectd \ltrsect\linex0\endnhere\sectdefaultcl\sftnbj {\rtlch\fcs1 \af0\afs24 \ltrch\fcs0 \f0\fs24\insrsid11757447 \cell }\pard \ltrpar
+\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\intbl\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch\fcs1 \af0\afs24 \ltrch\fcs0 \f0\fs24\insrsid11757447 \trowd \irow2\irowband2\lastrow \ltrrow\ts11\tsrowd\trftsWidth1\tblind0\tblindtype3 
+\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth3150\clshdrawnil \cellx3150\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone 
+\cltxlrtb\clftsWidth3\clwWidth450\clshdrawnil \cellx3600\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth3150\clshdrawnil \cellx6750\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb
+\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth450\clshdrawnil \cellx7200\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth3600\clshdrawnil \cellx10800\row }}{\footerf \ltrpar 
+\pard\plain \ltrpar\ql \li0\ri0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 \rtlch\fcs1 \af0\afs22\alang1025 \ltrch\fcs0 \fs22\lang1033\langfe1033\loch\af31506\hich\af31506\dbch\af31505\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af0\afs24 \ltrch\fcs0 
+\f0\fs24\ul\cf1\insrsid11757447 \hich\af0\dbch\af31505\loch\f0                                                                          \hich\af0\dbch\af31505\loch\f0 
+                                                                                                                                                                                                                                                               
+\hich\af0\dbch\af31505\loch\f0  \hich\af0\dbch\af31505\loch\f0 
+                                                                                                                                                                                                                                                               
+\hich\af0\dbch\af31505\loch\f0  \hich\af0\dbch\af31505\loch\f0                            }{\rtlch\fcs1 \af0\afs24 \ltrch\fcs0 \f0\fs24\insrsid11757447 
+\par \ltrrow}\trowd \irow0\irowband0\ltrrow\ts11\tsrowd\trftsWidth1\tblind0\tblindtype3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth6750\clshdrawnil \cellx6750\clvertalt\clbrdrt\brdrnone 
+\clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth450\clshdrawnil \cellx7200\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth3600\clshdrawnil \cellx10800
+\pard \ltrpar\ql \li0\ri0\keepn\nowidctlpar\intbl\wrapdefault\faauto\rin0\lin0 {\rtlch\fcs1 \af1\afs12 \ltrch\fcs0 \f1\fs12\cf1\insrsid11757447 \hich\af1\dbch\af31505\loch\f1 Personal Line of Credit - WI}{\rtlch\fcs1 \af0\afs24 \ltrch\fcs0 
+\f0\fs24\insrsid11757447 \cell \cell \cell }\pard \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\intbl\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch\fcs1 \af0\afs24 \ltrch\fcs0 \f0\fs24\insrsid11757447 \trowd \irow0\irowband0\ltrrow
+\ts11\tsrowd\trftsWidth1\tblind0\tblindtype3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth6750\clshdrawnil \cellx6750\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone 
+\clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth450\clshdrawnil \cellx7200\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth3600\clshdrawnil \cellx10800\row \ltrrow}\pard \ltrpar
+\ql \li0\ri0\keepn\nowidctlpar\intbl\wrapdefault\faauto\rin0\lin0 {\rtlch\fcs1 \af1\afs12 \ltrch\fcs0 \f1\fs12\cf1\insrsid11757447 \hich\af1\dbch\af31505\loch\f1 \hich\f1 Bankers Systems\'99}{\rtlch\fcs1 \af0\afs24 \ltrch\fcs0 \f0\fs24\insrsid11757447 
+\cell \cell }\pard \ltrpar\qr \li0\ri0\keepn\nowidctlpar\intbl\wrapdefault\faauto\rin0\lin0 {\rtlch\fcs1 \af1\afs12 \ltrch\fcs0 \f1\fs12\cf1\insrsid11757447 \hich\af1\dbch\af31505\loch\f1 05/2011}{\rtlch\fcs1 \af0\afs24 \ltrch\fcs0 
+\f0\fs24\insrsid11757447 \cell }\pard \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\intbl\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch\fcs1 \af0\afs24 \ltrch\fcs0 \f0\fs24\insrsid11757447 \trowd \irow1\irowband1\ltrrow
+\ts11\tsrowd\trftsWidth1\tblind0\tblindtype3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth6750\clshdrawnil \cellx6750\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone 
+\clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth450\clshdrawnil \cellx7200\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth3600\clshdrawnil \cellx10800\row \ltrrow
+}\trowd \irow2\irowband2\lastrow \ltrrow\ts11\tsrowd\trftsWidth1\tblind0\tblindtype3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth3150\clshdrawnil \cellx3150\clvertalt\clbrdrt\brdrnone 
+\clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth450\clshdrawnil \cellx3600\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth3150\clshdrawnil \cellx6750
+\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth450\clshdrawnil \cellx7200\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone 
+\cltxlrtb\clftsWidth3\clwWidth3600\clshdrawnil \cellx10800\pard \ltrpar\ql \li0\ri0\keepn\nowidctlpar\intbl\wrapdefault\faauto\rin0\lin0 {\rtlch\fcs1 \af1\afs12 \ltrch\fcs0 \f1\fs12\cf1\insrsid11757447 \hich\af1\dbch\af31505\loch\f1 \hich\f1 
+Wolters Kluwer Financial Service \'a9\loch\f1  2002, 2010}{\rtlch\fcs1 \af0\afs24 \ltrch\fcs0 \f0\fs24\insrsid11757447 \cell \cell }\pard \ltrpar\qc \li0\ri0\keepn\nowidctlpar\intbl\wrapdefault\faauto\rin0\lin0 {\rtlch\fcs1 \af1\afs12 \ltrch\fcs0 
+\f1\fs12\cf1\insrsid11757447 \hich\af1\dbch\af31505\loch\f1 201110034.1.0.2102-N20110815Y}{\rtlch\fcs1 \af0\afs24 \ltrch\fcs0 \f0\fs24\insrsid11757447 \cell }\pard \ltrpar\ql \li0\ri0\keepn\nowidctlpar\intbl\wrapdefault\faauto\rin0\lin0 {\rtlch\fcs1 
+\af0\afs24 \ltrch\fcs0 \f0\fs24\insrsid11757447 \cell }\pard \ltrpar\qr \li0\ri0\keepn\nowidctlpar\intbl\wrapdefault\faauto\rin0\lin0 {\rtlch\fcs1 \af1\afs12 \ltrch\fcs0 \f1\fs12\cf1\insrsid11757447 \~\~\~\~\hich\af1\dbch\af31505\loch\f1 Page \chpgn 
+\hich\af1\dbch\af31505\loch\f1  of }{\field{\*\fldinst {\rtlch\fcs1 \af1\afs12 \ltrch\fcs0 \f1\fs12\cf1\insrsid11757447 \hich\af1\dbch\af31505\loch\f1 NUMPAGES}}{\fldrslt {\rtlch\fcs1 \af1\afs12 \ltrch\fcs0 
+\f1\fs12\cf1\lang1024\langfe1024\noproof\insrsid10961388 \hich\af1\dbch\af31505\loch\f1 6}}}\sectd \ltrsect\linex0\endnhere\sectdefaultcl\sftnbj {\rtlch\fcs1 \af0\afs24 \ltrch\fcs0 \f0\fs24\insrsid11757447 \cell }\pard \ltrpar
+\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\intbl\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch\fcs1 \af0\afs24 \ltrch\fcs0 \f0\fs24\insrsid11757447 \trowd \irow2\irowband2\lastrow \ltrrow\ts11\tsrowd\trftsWidth1\tblind0\tblindtype3 
+\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth3150\clshdrawnil \cellx3150\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone 
+\cltxlrtb\clftsWidth3\clwWidth450\clshdrawnil \cellx3600\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth3150\clshdrawnil \cellx6750\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb
+\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth450\clshdrawnil \cellx7200\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone \cltxlrtb\clftsWidth3\clwWidth3600\clshdrawnil \cellx10800\row }}{\*\pnseclvl1
+\pnucrm\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl2\pnucltr\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl3\pndec\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl4\pnlcltr\pnstart1\pnindent720\pnhang {\pntxta )}}{\*\pnseclvl5
+\pndec\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl6\pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl7\pnlcrm\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl8\pnlcltr\pnstart1\pnindent720\pnhang 
+{\pntxtb (}{\pntxta )}}{\*\pnseclvl9\pnlcrm\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}\pard\plain \ltrpar\qc \li0\ri0\sb120\sl380\slmult0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 \cbpat8 \rtlch\fcs1 \af0\afs22\alang1025 \ltrch\fcs0 
+\fs22\lang1033\langfe1033\loch\af31506\hich\af31506\dbch\af31505\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \ab\af1\afs36 \ltrch\fcs0 \b\f1\fs36\cf1\chshdng0\chcfpat0\chcbpat8\insrsid14506027 \hich\af1\dbch\af31505\loch\f1 Premier }{\rtlch\fcs1 
+\ab\af1\afs36 \ltrch\fcs0 \b\f1\fs36\cf1\chshdng0\chcfpat0\chcbpat8\insrsid8653689 \hich\af1\dbch\af31505\loch\f1 Line of Credit}{\rtlch\fcs1 \af0\afs24 \ltrch\fcs0 \f0\fs24\insrsid8653689 
+\par }\pard \ltrpar\ql \li0\ri0\sb120\sl240\slmult0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 \cbpat8 {\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\ul\cf1\chshdng0\chcfpat0\chcbpat8\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 
+                                                                                                                                                                                                                                                               
+\hich\af0\dbch\af31505\loch\f0  \hich\af0\dbch\af31505\loch\f0 
+                                                                                                                                                                                                                                                               
+\hich\af0\dbch\af31505\loch\f0  \hich\af0\dbch\af31505\loch\f0                                                                                                     }{\rtlch\fcs1 \af0\afs24 \ltrch\fcs0 \f0\fs24\insrsid8653689 
+\par }\pard \ltrpar\ql \li0\ri0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 {\rtlch\fcs1 \af0\afs12 \ltrch\fcs0 \f0\fs12\insrsid8653689 
+\par \ltrrow}\trowd \irow0\irowband0\lastrow \ltrrow\ts11\trleft-108\trftsWidth1\trftsWidthB3\trftsWidthA3\trpaddl108\trpaddr108\trpaddfl3\trpaddft3\trpaddfb3\trpaddfr3\tblrsid4603150\tblind0\tblindtype3 \clvertalt\clbrdrt\brdrtbl \clbrdrl\brdrtbl \clbrdrb
+\brdrtbl \clbrdrr\brdrtbl \cltxlrtb\clftsWidth3\clwWidth1295\clshdrawnil \cellx1187\clvertalt\clbrdrt\brdrtbl \clbrdrl\brdrtbl \clbrdrb\brdrtbl \clbrdrr\brdrtbl \cltxlrtb\clftsWidth3\clwWidth1225\clshdrawnil \cellx2412\clvertalt\clbrdrt\brdrtbl \clbrdrl
+\brdrtbl \clbrdrb\brdrtbl \clbrdrr\brdrtbl \cltxlrtb\clftsWidth3\clwWidth2660\clshdrawnil \cellx5072\pard \ltrpar\ql \li0\ri0\sb120\sl240\slmult0\keepn\nowidctlpar\intbl\wrapdefault\faauto\rin0\lin0 {\rtlch\fcs1 \ab\af0 \ltrch\fcs0 
+\b\f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 Lender}{\rtlch\fcs1 \af0\afs12 \ltrch\fcs0 \f0\fs12\insrsid8653689 
+\par }\pard \ltrpar\ql \li0\ri0\sb120\sl240\slmult0\nowidctlpar\intbl\wrapdefault\faauto\rin0\lin0 {\rtlch\fcs1 \ab\af0\afs26 \ltrch\fcs0 \b\f0\fs26\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0  }{\rtlch\fcs1 \af0\afs12 \ltrch\fcs0 
+\f0\fs12\insrsid8653689 
+\par }\pard \ltrpar\ql \li0\ri0\sb40\sl240\slmult0\nowidctlpar\intbl\wrapdefault\faauto\rin0\lin0 {\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf6\insrsid4603150\charrsid13532285 \hich\af0\dbch\af31505\loch\f0 __________}{\rtlch\fcs1 \af0\afs12 \ltrch\fcs0 
+\f0\fs12\cf6\insrsid8653689\charrsid13532285 
+\par }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf6\insrsid4603150\charrsid13532285 \hich\af0\dbch\af31505\loch\f0 __________}{\rtlch\fcs1 \af0\afs12 \ltrch\fcs0 \f0\fs12\cf6\insrsid8653689\charrsid13532285 \cell }\pard \ltrpar\ql \li0\ri0\sb120\sl240\slmult0
+\keepn\nowidctlpar\intbl\wrapdefault\faauto\rin0\lin0 {\rtlch\fcs1 \ab\af0 \ltrch\fcs0 \b\f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 Borrower}{\rtlch\fcs1 \af0\afs12 \ltrch\fcs0 \f0\fs12\insrsid8653689 
+\par }\pard \ltrpar\ql \li0\ri0\sb120\sl240\slmult0\nowidctlpar\intbl\wrapdefault\faauto\rin0\lin0 {\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf6\insrsid4603150\charrsid13532285 \hich\af0\dbch\af31505\loch\f0 __________}{\rtlch\fcs1 \af0\afs12 \ltrch\fcs0 
+\f0\fs12\cf6\insrsid8653689\charrsid13532285 
+\par }\pard \ltrpar\ql \li0\ri0\sb40\sl240\slmult0\nowidctlpar\intbl\wrapdefault\faauto\rin0\lin0 {\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf6\insrsid4603150\charrsid13532285 \hich\af0\dbch\af31505\loch\f0 __________}{\rtlch\fcs1 \af0 \ltrch\fcs0 
+\f0\cf6\insrsid8653689\charrsid13532285 
+\par }\pard \ltrpar\ql \li0\ri0\sb40\sl240\slmult0\nowidctlpar\intbl\wrapdefault\faauto\rin0\lin0\pararsid4603150 {\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf6\insrsid4603150\charrsid13532285 \hich\af0\dbch\af31505\loch\f0 __________
+\par }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf6\insrsid4603150\charrsid538225 \hich\af0\dbch\af31505\loch\f0 __________
+\par \hich\af0\dbch\af31505\loch\f0 __________
+\par }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf6\insrsid4603150\charrsid13532285 \hich\af0\dbch\af31505\loch\f0 __________
+\par }\pard \ltrpar\ql \li0\ri0\sb40\sl240\slmult0\nowidctlpar\intbl\wrapdefault\faauto\rin0\lin0 {\rtlch\fcs1 \af0\afs12 \ltrch\fcs0 \f0\fs12\insrsid8653689 \cell }\pard \ltrpar\ql \li0\ri0\sb120\sl240\slmult0
+\keepn\nowidctlpar\intbl\wrapdefault\faauto\rin0\lin0 {\rtlch\fcs1 \ab\af0 \ltrch\fcs0 \b\f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 Summary}{\rtlch\fcs1 \af0\afs12 \ltrch\fcs0 \f0\fs12\insrsid8653689 
+\par }\pard \ltrpar\ql \li0\ri0\sb120\sl240\slmult0\nowidctlpar\intbl\wrapdefault\faauto\rin0\lin0 {\rtlch\fcs1 \ab\af0 \ltrch\fcs0 \b\f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 Loan Number:}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \~}{
+\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf6\insrsid4603150\charrsid13532285 \hich\af0\dbch\af31505\loch\f0 __________}{\rtlch\fcs1 \af0\afs12 \ltrch\fcs0 \f0\fs12\insrsid8653689 
+\par }{\rtlch\fcs1 \ab\af0 \ltrch\fcs0 \b\f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 Agreement Date}{\rtlch\fcs1 \ab\af0 \ltrch\fcs0 \b\f0\cf6\insrsid8653689\charrsid13532285 \hich\af0\dbch\af31505\loch\f0 :}{\rtlch\fcs1 \af0 \ltrch\fcs0 
+\f0\cf6\insrsid4603150\charrsid13532285 \hich\af0\dbch\af31505\loch\f0  ________}{\rtlch\fcs1 \af0\afs12 \ltrch\fcs0 \f0\fs12\insrsid8653689 
+\par }{\rtlch\fcs1 \ab\af0 \ltrch\fcs0 \b\f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 Credit Limit:}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \~}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf6\insrsid4603150\charrsid13532285 
+\hich\af0\dbch\af31505\loch\f0 ___________}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 
+\par }{\rtlch\fcs1 \af0\afs12 \ltrch\fcs0 \f0\fs12\insrsid142059\charrsid142059 \cell }\pard \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\intbl\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch\fcs1 \af0\afs12 \ltrch\fcs0 
+\f0\fs12\insrsid8653689 \trowd \irow0\irowband0\lastrow \ltrrow\ts11\trleft-108\trftsWidth1\trftsWidthB3\trftsWidthA3\trpaddl108\trpaddr108\trpaddfl3\trpaddft3\trpaddfb3\trpaddfr3\tblrsid4603150\tblind0\tblindtype3 \clvertalt\clbrdrt\brdrtbl \clbrdrl
+\brdrtbl \clbrdrb\brdrtbl \clbrdrr\brdrtbl \cltxlrtb\clftsWidth3\clwWidth1295\clshdrawnil \cellx1187\clvertalt\clbrdrt\brdrtbl \clbrdrl\brdrtbl \clbrdrb\brdrtbl \clbrdrr\brdrtbl \cltxlrtb\clftsWidth3\clwWidth1225\clshdrawnil \cellx2412\clvertalt\clbrdrt
+\brdrtbl \clbrdrl\brdrtbl \clbrdrb\brdrtbl \clbrdrr\brdrtbl \cltxlrtb\clftsWidth3\clwWidth2660\clshdrawnil \cellx5072\row }\pard \ltrpar\ql \li0\ri0\sb120\sl240\slmult0\keepn\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 \cbpat1 {\rtlch\fcs1 
+\ab\ai\af1\afs24 \ltrch\fcs0 \b\i\f1\fs24\cf8\chshdng0\chcfpat0\chcbpat1\insrsid8653689 {\*\bkmkstart d15e115}\hich\af1\dbch\af31505\loch\f1 Truth-in-Lending Disclosure}{\rtlch\fcs1 \af0\afs12 \ltrch\fcs0 \f0\fs12\insrsid8653689 
+\par }\pard \ltrpar\ql \li0\ri0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 {\rtlch\fcs1 \af0\afs12 \ltrch\fcs0 \f0\fs12\insrsid8653689 {\*\bkmkend d15e115}
+\par \ltrrow}\trowd \irow0\irowband0\ltrrow\ts11\trleft0\trftsWidth1\tblind20\tblindtype3 \clvertalt\clbrdrt\brdrs\brdrw5\brdrcf1 \clbrdrl\brdrs\brdrw5\brdrcf1 \clbrdrb\brdrnone \clbrdrr\brdrs\brdrw5\brdrcf1 
+\clcbpat8\cltxlrtb\clftsWidth3\clwWidth5180\clpadl20\clpadt20\clpadb20\clpadr20\clpadfl3\clpadft3\clpadfb3\clpadfr3\clcbpatraw8 \cellx5180\pard \ltrpar\ql \li0\ri0\sb120\sl240\slmult0\keepn\nowidctlpar\intbl\wrapdefault\faauto\rin0\lin0 {\rtlch\fcs1 
+\ab\af0 \ltrch\fcs0 \b\f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 INTEREST RATE AND INTEREST CHARGES}{\rtlch\fcs1 \af0\afs12 \ltrch\fcs0 \f0\fs12\insrsid8653689 \cell }\pard \ltrpar\ql \li0\ri0\sa200\sl276\slmult1
+\widctlpar\intbl\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch\fcs1 \af0\afs12 \ltrch\fcs0 \f0\fs12\insrsid8653689 \trowd \irow0\irowband0\ltrrow\ts11\trleft0\trftsWidth1\tblind20\tblindtype3 \clvertalt\clbrdrt\brdrs\brdrw5\brdrcf1 
+\clbrdrl\brdrs\brdrw5\brdrcf1 \clbrdrb\brdrnone \clbrdrr\brdrs\brdrw5\brdrcf1 \clcbpat8\cltxlrtb\clftsWidth3\clwWidth5180\clpadl20\clpadt20\clpadb20\clpadr20\clpadfl3\clpadft3\clpadfb3\clpadfr3\clcbpatraw8 \cellx5180\row \ltrrow
+}\trowd \irow1\irowband1\ltrrow\ts11\trleft0\trftsWidth1\tblind20\tblindtype3 \clvertalt\clbrdrt\brdrs\brdrw5\brdrcf1 \clbrdrl\brdrs\brdrw5\brdrcf1 \clbrdrb\brdrs\brdrw5\brdrcf1 \clbrdrr\brdrs\brdrw5\brdrcf1 
+\clcbpat8\cltxlrtb\clftsWidth3\clwWidth1381\clpadl20\clpadt20\clpadb20\clpadr20\clpadfl3\clpadft3\clpadfb3\clpadfr3\clcbpatraw8 \cellx1381\clvertalt\clbrdrt\brdrs\brdrw5\brdrcf1 \clbrdrl\brdrnone \clbrdrb\brdrs\brdrw5\brdrcf1 \clbrdrr
+\brdrs\brdrw5\brdrcf1 \clcbpat8\cltxlrtb\clftsWidth3\clwWidth3799\clpadl20\clpadt20\clpadb20\clpadr20\clpadfl3\clpadft3\clpadfb3\clpadfr3\clcbpatraw8 \cellx5180\pard \ltrpar\ql \li0\ri0\sb120\sl240\slmult0
+\keepn\nowidctlpar\intbl\wrapdefault\faauto\rin0\lin0 {\rtlch\fcs1 \ab\af0 \ltrch\fcs0 \b\f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 Annual Percentage Rate (APR) for All Transactions}{\rtlch\fcs1 \af0\afs12 \ltrch\fcs0 \f0\fs12\insrsid8653689 
+\cell }{\rtlch\fcs1 \ab\af0\afs32 \ltrch\fcs0 \b\f0\fs32\ul\ulc1\insrsid2433324\charrsid2433324 \hich\af0\dbch\af31505\loch\f0 _}{\rtlch\fcs1 \ab\af0\afs32 \ltrch\fcs0 \b\f0\fs32\ul\ulc1\insrsid2433324 \hich\af0\dbch\af31505\loch\f0 ___}{\rtlch\fcs1 
+\ab\af0\afs32 \ltrch\fcs0 \b\f0\fs32\ul\insrsid2433324\charrsid2433324 \hich\af0\dbch\af31505\loch\f0 %}{\rtlch\fcs1 \af0\afs12 \ltrch\fcs0 \f0\fs12\insrsid8653689\charrsid2433324 
+\par }\pard \ltrpar\ql \fi-320\li320\ri0\sl240\slmult0\nowidctlpar\intbl\wrapdefault\faauto\rin0\lin320\pararsid16265548 {\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 .0\tab }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 
+\hich\af0\dbch\af31505\loch\f0 This APR will vary with the market based on}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid14506027 \hich\af0\dbch\af31505\loch\f0  }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid16265548 \hich\af0\dbch\af31505\loch\f0 
+a Prime Rate.}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 \cell }\pard \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\intbl\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 
+\f0\fs2\insrsid8653689 \trowd \irow1\irowband1\ltrrow\ts11\trleft0\trftsWidth1\tblind20\tblindtype3 \clvertalt\clbrdrt\brdrs\brdrw5\brdrcf1 \clbrdrl\brdrs\brdrw5\brdrcf1 \clbrdrb\brdrs\brdrw5\brdrcf1 \clbrdrr\brdrs\brdrw5\brdrcf1 
+\clcbpat8\cltxlrtb\clftsWidth3\clwWidth1381\clpadl20\clpadt20\clpadb20\clpadr20\clpadfl3\clpadft3\clpadfb3\clpadfr3\clcbpatraw8 \cellx1381\clvertalt\clbrdrt\brdrs\brdrw5\brdrcf1 \clbrdrl\brdrnone \clbrdrb\brdrs\brdrw5\brdrcf1 \clbrdrr
+\brdrs\brdrw5\brdrcf1 \clcbpat8\cltxlrtb\clftsWidth3\clwWidth3799\clpadl20\clpadt20\clpadb20\clpadr20\clpadfl3\clpadft3\clpadfb3\clpadfr3\clcbpatraw8 \cellx5180\row \ltrrow}\trowd \irow2\irowband2\lastrow \ltrrow
+\ts11\trleft0\trftsWidth1\tblind20\tblindtype3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrs\brdrw5\brdrcf1 \clbrdrb\brdrs\brdrw5\brdrcf1 \clbrdrr\brdrs\brdrw5\brdrcf1 
+\clcbpat8\cltxlrtb\clftsWidth3\clwWidth1381\clpadl20\clpadt20\clpadb20\clpadr20\clpadfl3\clpadft3\clpadfb3\clpadfr3\clcbpatraw8 \cellx1381\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrs\brdrw5\brdrcf1 \clbrdrr\brdrs\brdrw5\brdrcf1 
+\clcbpat8\cltxlrtb\clftsWidth3\clwWidth3799\clpadl20\clpadt20\clpadb20\clpadr20\clpadfl3\clpadft3\clpadfb3\clpadfr3\clcbpatraw8 \cellx5180\pard \ltrpar\ql \li0\ri0\sb120\sl240\slmult0\keepn\nowidctlpar\intbl\wrapdefault\faauto\rin0\lin0 {\rtlch\fcs1 
+\ab\af0 \ltrch\fcs0 \b\f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 Paying Interest}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 \cell }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 
+You will be charged interest from the transaction date.}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 \cell }\pard \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\intbl\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch\fcs1 
+\af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 \trowd \irow2\irowband2\lastrow \ltrrow\ts11\trleft0\trftsWidth1\tblind20\tblindtype3 \clvertalt\clbrdrt\brdrnone \clbrdrl\brdrs\brdrw5\brdrcf1 \clbrdrb\brdrs\brdrw5\brdrcf1 \clbrdrr\brdrs\brdrw5\brdrcf1 
+\clcbpat8\cltxlrtb\clftsWidth3\clwWidth1381\clpadl20\clpadt20\clpadb20\clpadr20\clpadfl3\clpadft3\clpadfb3\clpadfr3\clcbpatraw8 \cellx1381\clvertalt\clbrdrt\brdrnone \clbrdrl\brdrnone \clbrdrb\brdrs\brdrw5\brdrcf1 \clbrdrr\brdrs\brdrw5\brdrcf1 
+\clcbpat8\cltxlrtb\clftsWidth3\clwWidth3799\clpadl20\clpadt20\clpadb20\clpadr20\clpadfl3\clpadft3\clpadfb3\clpadfr3\clcbpatraw8 \cellx5180\row }\pard \ltrpar\ql \li0\ri0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 {\rtlch\fcs1 \af0\afs12 \ltrch\fcs0 
+\f0\fs12\insrsid8653689 
+\par \ltrrow}\trowd \irow0\irowband0\ltrrow\ts11\trleft2\trbrdrt\brdrs\brdrw5\brdrcf1 \trbrdrl\brdrs\brdrw5\brdrcf1 \trbrdrr\brdrs\brdrw5\brdrcf1 \trftsWidth1\trftsWidthB3\trftsWidthA3\tblind22\tblindtype3 \clvertalt\clbrdrt\brdrs\brdrw5\brdrcf1 \clbrdrl
+\brdrs\brdrw5\brdrcf1 \clbrdrb\brdrnone \clbrdrr\brdrs\brdrw5\brdrcf1 \clcbpat8\cltxlrtb\clftsWidth3\clwWidth5180\clpadl20\clpadt20\clpadb20\clpadr20\clpadfl3\clpadft3\clpadfb3\clpadfr3\clcbpatraw8 \cellx5182\pard \ltrpar\ql \li0\ri0\sb120\sl240\slmult0
+\keepn\nowidctlpar\intbl\wrapdefault\faauto\rin0\lin0 {\rtlch\fcs1 \ab\af0 \ltrch\fcs0 \b\f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 FEES}{\rtlch\fcs1 \af0\afs12 \ltrch\fcs0 \f0\fs12\insrsid8653689 \cell }\pard \ltrpar
+\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\intbl\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch\fcs1 \af0\afs12 \ltrch\fcs0 \f0\fs12\insrsid8653689 \trowd \irow0\irowband0\ltrrow\ts11\trleft2\trbrdrt\brdrs\brdrw5\brdrcf1 \trbrdrl
+\brdrs\brdrw5\brdrcf1 \trbrdrr\brdrs\brdrw5\brdrcf1 \trftsWidth1\trftsWidthB3\trftsWidthA3\tblind22\tblindtype3 \clvertalt\clbrdrt\brdrs\brdrw5\brdrcf1 \clbrdrl\brdrs\brdrw5\brdrcf1 \clbrdrb\brdrnone \clbrdrr\brdrs\brdrw5\brdrcf1 
+\clcbpat8\cltxlrtb\clftsWidth3\clwWidth5180\clpadl20\clpadt20\clpadb20\clpadr20\clpadfl3\clpadft3\clpadfb3\clpadfr3\clcbpatraw8 \cellx5182\row \ltrrow}\trowd \irow1\irowband1\ltrrow\ts11\trleft2\trbrdrl\brdrs\brdrw5\brdrcf1 \trbrdrr\brdrs\brdrw5\brdrcf1 
+\trftsWidth1\trftsWidthB3\trftsWidthA3\tblind22\tblindtype3 \clvertalt\clbrdrt\brdrs\brdrw5\brdrcf1 \clbrdrl\brdrs\brdrw5\brdrcf1 \clbrdrb\brdrnone \clbrdrr\brdrs\brdrw5\brdrcf1 
+\clcbpat8\cltxlrtb\clftsWidth3\clwWidth1381\clpadl20\clpadt20\clpadb20\clpadr20\clpadfl3\clpadft3\clpadfb3\clpadfr3\clcbpatraw8 \cellx1383\clvertalt\clbrdrt\brdrs\brdrw5\brdrcf1 \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrs\brdrw5\brdrcf1 
+\clcbpat8\cltxlrtb\clftsWidth3\clwWidth3799\clpadl20\clpadt20\clpadb20\clpadr20\clpadfl3\clpadft3\clpadfb3\clpadfr3\clcbpatraw8 \cellx5182\pard \ltrpar\ql \li0\ri0\sb120\sl240\slmult0\keepn\nowidctlpar\intbl\wrapdefault\faauto\rin0\lin0 {\rtlch\fcs1 
+\ab\af0 \ltrch\fcs0 \b\f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 Annual Fee}{\rtlch\fcs1 \af0\afs12 \ltrch\fcs0 \f0\fs12\insrsid8653689 \cell }{\rtlch\fcs1 \ab\af0 \ltrch\fcs0 \b\f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 None}{
+\rtlch\fcs1 \af0\afs12 \ltrch\fcs0 \f0\fs12\insrsid8653689 \cell }\pard \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\intbl\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch\fcs1 \af0\afs12 \ltrch\fcs0 \f0\fs12\insrsid8653689 
+\trowd \irow1\irowband1\ltrrow\ts11\trleft2\trbrdrl\brdrs\brdrw5\brdrcf1 \trbrdrr\brdrs\brdrw5\brdrcf1 \trftsWidth1\trftsWidthB3\trftsWidthA3\tblind22\tblindtype3 \clvertalt\clbrdrt\brdrs\brdrw5\brdrcf1 \clbrdrl\brdrs\brdrw5\brdrcf1 \clbrdrb\brdrnone 
+\clbrdrr\brdrs\brdrw5\brdrcf1 \clcbpat8\cltxlrtb\clftsWidth3\clwWidth1381\clpadl20\clpadt20\clpadb20\clpadr20\clpadfl3\clpadft3\clpadfb3\clpadfr3\clcbpatraw8 \cellx1383\clvertalt\clbrdrt\brdrs\brdrw5\brdrcf1 \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr
+\brdrs\brdrw5\brdrcf1 \clcbpat8\cltxlrtb\clftsWidth3\clwWidth3799\clpadl20\clpadt20\clpadb20\clpadr20\clpadfl3\clpadft3\clpadfb3\clpadfr3\clcbpatraw8 \cellx5182\row \ltrrow}\trowd \irow2\irowband2\ltrrow
+\ts11\trleft2\trftsWidth1\trftsWidthB3\trftsWidthA3\trpaddl108\trpaddr108\trpaddfl3\trpaddft3\trpaddfb3\trpaddfr3\tblrsid14506027\tblind22\tblindtype3 \clvertalt\clbrdrt\brdrtbl \clbrdrl\brdrtbl \clbrdrb\brdrtbl \clbrdrr\brdrtbl 
+\cltxlrtb\clftsWidth3\clwWidth1381\clshdrawnil \cellx1383\clvertalt\clbrdrt\brdrtbl \clbrdrl\brdrtbl \clbrdrb\brdrtbl \clbrdrr\brdrtbl \cltxlrtb\clftsWidth3\clwWidth3799\clshdrawnil \cellx5182\pard \ltrpar\ql \li0\ri0\sb120\sl240\slmult0
+\keepn\nowidctlpar\intbl\wrapdefault\faauto\rin0\lin0 {\rtlch\fcs1 \ab\af0 \ltrch\fcs0 \b\f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 Penalty Fees}{\rtlch\fcs1 \af0\afs12 \ltrch\fcs0 \f0\fs12\insrsid8653689 \cell }\pard \ltrpar
+\ql \li0\ri0\keepn\nowidctlpar\intbl\wrapdefault\faauto\rin0\lin0 {\rtlch\fcs1 \af0\afs12 \ltrch\fcs0 \f0\fs12\insrsid8653689 \cell }\pard \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\intbl\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {
+\rtlch\fcs1 \af0\afs12 \ltrch\fcs0 \f0\fs12\insrsid8653689 \trowd \irow2\irowband2\ltrrow\ts11\trleft2\trftsWidth1\trftsWidthB3\trftsWidthA3\trpaddl108\trpaddr108\trpaddfl3\trpaddft3\trpaddfb3\trpaddfr3\tblrsid14506027\tblind22\tblindtype3 \clvertalt
+\clbrdrt\brdrtbl \clbrdrl\brdrtbl \clbrdrb\brdrtbl \clbrdrr\brdrtbl \cltxlrtb\clftsWidth3\clwWidth1381\clshdrawnil \cellx1383\clvertalt\clbrdrt\brdrtbl \clbrdrl\brdrtbl \clbrdrb\brdrtbl \clbrdrr\brdrtbl \cltxlrtb\clftsWidth3\clwWidth3799\clshdrawnil 
+\cellx5182\row \ltrrow}\trowd \irow3\irowband3\ltrrow\ts11\trleft2\trftsWidth1\trftsWidthB3\trftsWidthA3\trpaddl108\trpaddr108\trpaddfl3\trpaddft3\trpaddfb3\trpaddfr3\tblrsid14506027\tblind22\tblindtype3 \clvertalt\clbrdrt\brdrtbl \clbrdrl\brdrtbl 
+\clbrdrb\brdrs\brdrw10 \clbrdrr\brdrtbl \cltxlrtb\clftsWidth3\clwWidth1381\clshdrawnil \cellx1383\clvertalt\clbrdrt\brdrtbl \clbrdrl\brdrtbl \clbrdrb\brdrs\brdrw10 \clbrdrr\brdrtbl \cltxlrtb\clftsWidth3\clwWidth3799\clshdrawnil \cellx5182{\pntext
+\pard\plain\ltrpar \intbl\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f3\fs22\cf1\insrsid8653689 \loch\af3\dbch\af31505\hich\f3 \'b7\tab}\pard \ltrpar\ql \fi-40\li320\ri0\sb40\sl240\slmult0\keepn\nowidctlpar\intbl\wrapdefault{\*\pn \pnlvlblt\ilvl0\ls1\pnrnot0
+\pncf1\pnf3\pnfs22\pnstart1\pnindent360\pnsp120 {\pntxta \'b7}}\faauto\ls1\rin0\lin320 {\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 .0}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 Late Payment}{
+\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 \cell }\pard \ltrpar\ql \li0\ri0\sb120\sl240\slmult0\keepn\nowidctlpar\intbl\brdrb\brdrs\brdrw30\brsp20 \wrapdefault\faauto\rin0\lin0 {\rtlch\fcs1 \ab\af0 \ltrch\fcs0 \b\f0\cf6\insrsid8586060 
+
+\par }\pard \ltrpar\ql \li0\ri0\sb120\sl240\slmult0\keepn\nowidctlpar\intbl\wrapdefault\faauto\rin0\lin0 {\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\cf6\insrsid8653689\charrsid2433324 \cell }\pard \ltrpar\ql \li0\ri0\sa200\sl276\slmult1
+\widctlpar\intbl\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 \trowd \irow3\irowband3\ltrrow
+\ts11\trleft2\trftsWidth1\trftsWidthB3\trftsWidthA3\trpaddl108\trpaddr108\trpaddfl3\trpaddft3\trpaddfb3\trpaddfr3\tblrsid14506027\tblind22\tblindtype3 \clvertalt\clbrdrt\brdrtbl \clbrdrl\brdrtbl \clbrdrb\brdrs\brdrw10 \clbrdrr\brdrtbl 
+\cltxlrtb\clftsWidth3\clwWidth1381\clshdrawnil \cellx1383\clvertalt\clbrdrt\brdrtbl \clbrdrl\brdrtbl \clbrdrb\brdrs\brdrw10 \clbrdrr\brdrtbl \cltxlrtb\clftsWidth3\clwWidth3799\clshdrawnil \cellx5182\row \ltrrow}\trowd \irow4\irowband4\lastrow \ltrrow
+\ts11\trleft2\trbrdrl\brdrs\brdrw5\brdrcf1 \trbrdrb\brdrs\brdrw5\brdrcf1 \trbrdrr\brdrs\brdrw5\brdrcf1 \trftsWidth1\trftsWidthB3\trftsWidthA3\tblind22\tblindtype3 \clvertalt\clbrdrt\brdrs\brdrw5\brdrcf1 \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr
+\brdrnone \clcbpat8\cltxlrtb\clftsWidth3\clwWidth1381\clpadl20\clpadt20\clpadb20\clpadr20\clpadfl3\clpadft3\clpadfb3\clpadfr3\clcbpatraw8 \cellx1383\clvertalt\clbrdrt\brdrs\brdrw5\brdrcf1 \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone 
+\clcbpat8\cltxlrtb\clftsWidth3\clwWidth3799\clpadl20\clpadt20\clpadb20\clpadr20\clpadfl3\clpadft3\clpadfb3\clpadfr3\clcbpatraw8 \cellx5182\pard \ltrpar\ql \li0\ri0\keepn\nowidctlpar\intbl\wrapdefault\faauto\rin0\lin0 {\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 
+\f0\fs2\insrsid8653689 \cell \cell }\pard \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\intbl\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 \trowd \irow4\irowband4\lastrow \ltrrow
+\ts11\trleft2\trbrdrl\brdrs\brdrw5\brdrcf1 \trbrdrb\brdrs\brdrw5\brdrcf1 \trbrdrr\brdrs\brdrw5\brdrcf1 \trftsWidth1\trftsWidthB3\trftsWidthA3\tblind22\tblindtype3 \clvertalt\clbrdrt\brdrs\brdrw5\brdrcf1 \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr
+\brdrnone \clcbpat8\cltxlrtb\clftsWidth3\clwWidth1381\clpadl20\clpadt20\clpadb20\clpadr20\clpadfl3\clpadft3\clpadfb3\clpadfr3\clcbpatraw8 \cellx1383\clvertalt\clbrdrt\brdrs\brdrw5\brdrcf1 \clbrdrl\brdrnone \clbrdrb\brdrnone \clbrdrr\brdrnone 
+\clcbpat8\cltxlrtb\clftsWidth3\clwWidth3799\clpadl20\clpadt20\clpadb20\clpadr20\clpadfl3\clpadft3\clpadfb3\clpadfr3\clcbpatraw8 \cellx5182\row }\pard \ltrpar\qc \li0\ri0\sb120\sl240\slmult0\keepn\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 \cbpat8 {
+\rtlch\fcs1 \ab\af0 \ltrch\fcs0 \b\f0\cf1\chshdng0\chcfpat0\chcbpat8\insrsid8586060 
+\par }{\rtlch\fcs1 \ab\af0 \ltrch\fcs0 \b\f0\cf1\chshdng0\chcfpat0\chcbpat8\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 How We Calculate Your Balance}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par }\pard \ltrpar\ql \li0\ri0\sb120\sl240\slmult0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 \cbpat8 {\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\chshdng0\chcfpat0\chcbpat8\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 We use a method called "}{\rtlch\fcs1 
+\af0 \ltrch\fcs0 \f0\cf1\chshdng0\chcfpat0\chcbpat8\insrsid93205 \hich\af0\dbch\af31505\loch\f0 average }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\chshdng0\chcfpat0\chcbpat8\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 daily balance." See }{\rtlch\fcs1 \af0 
+\ltrch\fcs0 \f0\cf1\chshdng0\chcfpat0\chcbpat8\insrsid10375923 \hich\af0\dbch\af31505\loch\f0 Interest}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\chshdng0\chcfpat0\chcbpat8\insrsid93205 \hich\af0\dbch\af31505\loch\f0  section below}{\rtlch\fcs1 \af0 
+\ltrch\fcs0 \f0\cf1\chshdng0\chcfpat0\chcbpat8\insrsid8653689 \hich\af0\dbch\af31505\loch\f0  for more details.}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par }\pard \ltrpar\qc \li0\ri0\sb120\sl240\slmult0\keepn\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 \cbpat8 {\rtlch\fcs1 \ab\af0 \ltrch\fcs0 \b\f0\cf1\chshdng0\chcfpat0\chcbpat8\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 Billing Rights}{\rtlch\fcs1 
+\af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par }\pard \ltrpar\ql \li0\ri0\sb120\sl240\slmult0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 \cbpat8 {\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\chshdng0\chcfpat0\chcbpat8\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 
+Information on your rights to dispute transactions and how to exercise those rights is provided in }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\chshdng0\chcfpat0\chcbpat8\insrsid93205 \hich\af0\dbch\af31505\loch\f0 this }{\rtlch\fcs1 \af0 \ltrch\fcs0 
+\f0\cf1\chshdng0\chcfpat0\chcbpat8\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 account agreement.}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par }\pard \ltrpar\ql \li0\ri0\sl240\slmult0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 \cbpat8 {\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\ul\cf1\chshdng0\chcfpat0\chcbpat8\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 
+                                                                                                                                     \hich\af0\dbch\af31505\loch\f0 
+                                                                                                                                                                                                                                                               
+\hich\af0\dbch\af31505\loch\f0  \hich\af0\dbch\af31505\loch\f0 
+                                                                                                                                                                                                                               }{\rtlch\fcs1 \af0\afs2 
+\ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par }\pard \ltrpar\ql \li0\ri0\sb120\sl240\slmult0\keepn\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 \cbpat1 {\rtlch\fcs1 \ab\ai\af1\afs24 \ltrch\fcs0 \b\i\f1\fs24\cf8\chshdng0\chcfpat0\chcbpat1\insrsid8653689 {\*\bkmkstart d15e213}
+\hich\af1\dbch\af31505\loch\f1 General Provisions}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par }\pard \ltrpar\ql \li0\ri0\sb120\sl240\slmult0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 {\rtlch\fcs1 \ab\af1 \ltrch\fcs0 \b\f1\cf1\insrsid8653689 {\*\bkmkstart d15e216}{\*\bkmkend d15e213}\hich\af1\dbch\af31505\loch\f1 Definitions. }{\rtlch\fcs1 
+\af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 In this Agreement, these terms have the following meanings. The pronouns }{\rtlch\fcs1 \ai\af0 \ltrch\fcs0 \i\f0\cf1\insrsid8653689 \loch\af0\dbch\af31505\hich\f0 \'93\loch\f0 
+\hich\f0 you\'94}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0  and }{\rtlch\fcs1 \ai\af0 \ltrch\fcs0 \i\f0\cf1\insrsid8653689 \loch\af0\dbch\af31505\hich\f0 \'93\loch\f0 \hich\f0 your\'94}{\rtlch\fcs1 \af0 
+\ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0  refer to all Borrowers signing this Agreement, jointly and individually, and each other person or legal entity that agrees to pay this Agre\hich\af0\dbch\af31505\loch\f0 ement. }{
+\rtlch\fcs1 \ai\af0 \ltrch\fcs0 \i\f0\cf1\insrsid8653689 \loch\af0\dbch\af31505\hich\f0 \'93\loch\f0 \hich\f0 We\'94}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 , }{\rtlch\fcs1 \ai\af0 \ltrch\fcs0 
+\i\f0\cf1\insrsid8653689 \loch\af0\dbch\af31505\hich\f0 \'93\loch\f0 \hich\f0 us\'94}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0  and }{\rtlch\fcs1 \ai\af0 \ltrch\fcs0 \i\f0\cf1\insrsid8653689 
+\loch\af0\dbch\af31505\hich\f0 \'93\loch\f0 \hich\f0 our\'94}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0  refer to the Lender, or any person or legal entity that acquires an interest in th
+\hich\af0\dbch\af31505\loch\f0 e Line of Credit. Agreement refers to this Personal Line of Credit agreement, and any extensions, renewals, modifications or substitutions of it. }{\rtlch\fcs1 \ai\af0 \ltrch\fcs0 \i\f0\cf1\insrsid8653689 
+\loch\af0\dbch\af31505\hich\f0 \'93\loch\f0 \hich\f0 Billing Cycle\'94}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0  means the interval between the days or dates of regular periodic statements. }{\rtlch\fcs1 \ai\af0 
+\ltrch\fcs0 \i\f0\cf1\insrsid8653689 \loch\af0\dbch\af31505\hich\f0 \'93\loch\f0 \hich\f0 Credit Limit\'94}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0  me\hich\af0\dbch\af31505\loch\f0 
+ans the maximum amount of principal we will permit you to owe us under this Line of Credit, at any one time. Your Credit Limit is stated at the top of this Agreement. }{\rtlch\fcs1 \ai\af0 \ltrch\fcs0 \i\f0\cf1\insrsid8653689 
+\loch\af0\dbch\af31505\hich\f0 \'93\loch\f0 \hich\f0 Line of Credit\'94}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0  refers to this transaction generally, including obligations and duties a
+\hich\af0\dbch\af31505\loch\f0 rising from the terms of all documents prepared or submitted for this transaction such as applications, security agreements, disclosures and this Agreement. }{\rtlch\fcs1 \ai\af0 \ltrch\fcs0 \i\f0\cf1\insrsid8653689 
+\loch\af0\dbch\af31505\hich\f0 \'93\loch\f0 \hich\f0 Loan Account Balance\'94}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0  means the sum of the unpaid principal balance advanced under the terms of th
+\hich\af0\dbch\af31505\loch\f0 is Agreement, interest or other finance charges, fees and other charges that are due, and other amounts advanced to you or others under the terms of this Line of Credit. }{\rtlch\fcs1 \ai\af0 \ltrch\fcs0 
+\i\f0\cf1\insrsid8653689 \loch\af0\dbch\af31505\hich\f0 \'93\loch\f0 \hich\f0 Minimum Payment\'94}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0  means the minimum payment amount required under the Minimum Payment 
+\hich\af0\dbch\af31505\loch\f0 section. }{\rtlch\fcs1 \ai\af0 \ltrch\fcs0 \i\f0\cf1\insrsid8653689 \loch\af0\dbch\af31505\hich\f0 \'93\loch\f0 \hich\f0 Payment Date\'94}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 
+ is the payment due date as provided on your periodic statements. }{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 {\*\bkmkend d15e216}\hich\af0\dbch\af31505\loch\f0 Other important terms are defined throughout this Agreement.}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par }{\rtlch\fcs1 \ab\af1 \ltrch\fcs0 \b\f1\cf1\insrsid8653689 {\*\bkmkstart d15e285}\hich\af1\dbch\af31505\loch\f1 Promise to Pay. }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 
+You promise to pay us or our order, at our address, or at such other locati\hich\af0\dbch\af31505\loch\f0 
+on as we may designate, so much of the Credit Limit as may be advanced under this Agreement, plus interest or other finance charges, fees, charges, costs and expenses as described in this Line of Credit.}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 
+\f0\fs2\insrsid8653689 
+\par }{\rtlch\fcs1 \ab\af1 \ltrch\fcs0 \b\f1\cf1\insrsid8653689 {\*\bkmkstart d15e290}{\*\bkmkend d15e285}\hich\af1\dbch\af31505\loch\f1 Agreement Term. }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 You may request advanc
+\hich\af0\dbch\af31505\loch\f0 es from the Agreement Date until this Agreement is terminated.}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par }\pard \ltrpar\ql \li0\ri0\sb120\sl240\slmult0\keepn\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 \cbpat1 {\rtlch\fcs1 \ab\ai\af1\afs24 \ltrch\fcs0 \b\i\f1\fs24\cf8\chshdng0\chcfpat0\chcbpat1\insrsid8653689 {\*\bkmkstart d15e295}{\*\bkmkend d15e290}
+\hich\af1\dbch\af31505\loch\f1 Advances}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par }\pard \ltrpar\ql \li0\ri0\sb120\sl240\slmult0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 {\rtlch\fcs1 \ab\af1 \ltrch\fcs0 \b\f1\cf1\insrsid8653689 {\*\bkmkstart d15e298}{\*\bkmkend d15e295}\hich\af1\dbch\af31505\loch\f1 Advance Methods. }{
+\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 You may request advances by the following methods:}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par {\*\bkmkend d15e298}{\pntext\pard\plain\ltrpar \rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f3\fs22\cf1\insrsid8653689 \loch\af3\dbch\af31505\hich\f3 \'b7\tab}}\pard \ltrpar\ql \fi-40\li320\ri0\sb40\sl240\slmult0\nowidctlpar\wrapdefault{\*\pn 
+\pnlvlblt\ilvl0\ls2\pnrnot0\pncf1\pnf3\pnfs22\pnstart1\pnindent360\pnsp120 {\pntxta \'b7}}\faauto\ls2\rin0\lin320\itap0 {\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 .0}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 
+\hich\af0\dbch\af31505\loch\f0 You write a }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid10375923 \hich\af0\dbch\af31505\loch\f0 cash advance }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 check}{\rtlch\fcs1 
+\af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689\charrsid5585236 
+\par {\pntext\pard\plain\ltrpar \rtlch\fcs1 \af0\afs22 \ltrch\fcs0 \f3\fs22\cf1\insrsid5585236 \loch\af3\dbch\af31505\hich\f3 \'b7\tab}}\pard \ltrpar\ql \fi-40\li320\ri0\sb40\sl240\slmult0\nowidctlpar\wrapdefault{\*\pn \pnlvlblt\ilvl0\ls2\pnrnot0
+\pncf1\pnf3\pnfs22\pnstart1\pnindent360\pnsp120 {\pntxta \'b7}}\faauto\ls2\rin0\lin320\itap0\pararsid15800804 {\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\insrsid5585236 \hich\af0\dbch\af31505\loch\f0 Make a withdrawal}{\rtlch\fcs1 \ai\af0\afs2 \ltrch\fcs0 
+\i\f0\fs2\cf1\insrsid8653689\charrsid15800804 
+\par }\pard \ltrpar\ql \li0\ri0\sb120\sl240\slmult0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 {\rtlch\fcs1 \ai\af0 \ltrch\fcs0 \f0\cf1\insrsid8653689\charrsid10375923 \hich\af0\dbch\af31505\loch\f0 We will make }{\rtlch\fcs1 \ai\af0 \ltrch\fcs0 
+\f0\cf1\insrsid10375923\charrsid10375923 \hich\af0\dbch\af31505\loch\f0 th}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid10375923 \hich\af0\dbch\af31505\loch\f0 e advance }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 
+by advancing the amount directly to you, depositing it in your }{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid5585236 \hich\af31506\dbch\af31505\loch\f31506 deposit account with us}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 
+\hich\af0\dbch\af31505\loch\f0 , or by paying a designated third person or account. We will record the amount as an advance and increase your Loan Account Balance.}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par }{\rtlch\fcs1 \ab\af1 \ltrch\fcs0 \b\f1\cf1\insrsid8653689 {\*\bkmkstart d15e321}\hich\af1\dbch\af31505\loch\f1 Advan\hich\af1\dbch\af31505\loch\f1 ce Limitations. }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 
+Your ability to request and access advances is subject to the following limitations:}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par }\pard \ltrpar\ql \li0\ri0\sb120\sl240\slmult0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0\pararsid15800804 {\rtlch\fcs1 \af0 \ltrch\fcs0 \b\cf1\insrsid14433885 {\*\bkmkend d15e321}\hich\af31506\dbch\af31505\loch\f31506 Refusal to honor}{\rtlch\fcs1 
+\af0 \ltrch\fcs0 \b\cf1\insrsid14433885\charrsid8223111 \hich\af31506\dbch\af31505\loch\f31506  }{\rtlch\fcs1 \af0 \ltrch\fcs0 \b\cf1\insrsid10375923 \hich\af31506\dbch\af31505\loch\f31506 Cash Advance }{\rtlch\fcs1 \af0 \ltrch\fcs0 
+\b\cf1\insrsid14433885\charrsid8223111 \hich\af31506\dbch\af31505\loch\f31506 Checks.}{\rtlch\fcs1 \af0 \ltrch\fcs0 \cf1\insrsid14433885 \hich\af31506\dbch\af31505\loch\f31506   We shall not be responsible for any refusal by anyone to honor your }{
+\rtlch\fcs1 \af0 \ltrch\fcs0 \cf1\insrsid10375923 \hich\af31506\dbch\af31505\loch\f31506 cash advance c}{\rtlch\fcs1 \af0 \ltrch\fcs0 \cf1\insrsid14433885 \hich\af31506\dbch\af31505\loch\f31506 hecks.
+\par }{\rtlch\fcs1 \af0 \ltrch\fcs0 \b\cf1\insrsid14433885\charrsid10375923 \hich\af31506\dbch\af31505\loch\f31506 Lost or stolen }{\rtlch\fcs1 \af0 \ltrch\fcs0 \b\cf1\insrsid10375923\charrsid10375923 \hich\af31506\dbch\af31505\loch\f31506 cash 
+\hich\af31506\dbch\af31505\loch\f31506 advance checks}{\rtlch\fcs1 \af0 \ltrch\fcs0 \b\cf1\insrsid14433885\charrsid10375923 .}{\rtlch\fcs1 \af0 \ltrch\fcs0 \cf1\insrsid14433885 \hich\af31506\dbch\af31505\loch\f31506   }{\rtlch\fcs1 \af0 \ltrch\fcs0 
+\f0\cf1\insrsid14433885\charrsid15800804 \hich\af0\dbch\af31505\loch\f0 You shall immediately report the loss or theft of any }{\rtlch\fcs1 \af0 \ltrch\fcs0 \cf1\insrsid10375923 \hich\af31506\dbch\af31505\loch\f31506 cash advance checks}{\rtlch\fcs1 \af0 
+\ltrch\fcs0 \f0\cf1\insrsid14433885\charrsid15800804 \hich\af0\dbch\af31505\loch\f0  to Associated Bank, }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\insrsid2303571\charrsid9191359 \hich\af0\dbch\af31505\loch\f0 Attn: Cashiering Department,}{\rtlch\fcs1 \af0 
+\ltrch\fcs0 \f0\cf1\insrsid2303571 \hich\af0\dbch\af31505\loch\f0  }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid14433885\charrsid15800804 \hich\af0\dbch\af31505\loch\f0 1305 Main Street, Stevens Point, Wisconsin 54481 (800)}{\rtlch\fcs1 \af0 \ltrch\fcs0 
+\f0\cf1\insrsid10172572 \hich\af0\dbch\af31505\loch\f0  }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\insrsid15735628\charrsid9191359 \hich\af0\dbch\af31505\loch\f0 236-8866}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\insrsid14433885\charrsid9191359 .}{\rtlch\fcs1 \af0 
+\ltrch\fcs0 \f0\cf1\insrsid14433885\charrsid15800804 \hich\af0\dbch\af31505\loch\f0   }{\rtlch\fcs1 \af0 \ltrch\fcs0 \b\f0\cf1\insrsid14433885\charrsid15800804 \hich\af0\dbch\af31505\loch\f0 PLEASE NOTE:}{\rtlch\fcs1 \af0 \ltrch\fcs0 
+\f0\cf1\insrsid14433885\charrsid15800804 \hich\af0\dbch\af31505\loch\f0  Do not use your }{\rtlch\fcs1 \af0 \ltrch\fcs0 \cf1\insrsid10375923 \hich\af31506\dbch\af31505\loch\f31506 cash advance checks}{\rtlch\fcs1 \af0 \ltrch\fcs0 
+\f0\cf1\insrsid14433885\charrsid15800804 \hich\af0\dbch\af31505\loch\f0  after you have notified us of loss, theft, or unauthorized use even if they are returned to you.}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid14433885 
+\par }{\rtlch\fcs1 \ab\af0 \ltrch\fcs0 \b\f0\insrsid10375923\charrsid10375923 \hich\af0\dbch\af31505\loch\f0 Credit Reviews. }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\insrsid10375923\charrsid10375923 \hich\af0\dbch\af31505\loch\f0 
+We will periodically review your credit bureau and other services to make sure that you have not had a material change in y\hich\af0\dbch\af31505\loch\f0 
+our financial circumstances and are able to meet the repayment requirements under this Line of Credit.}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\insrsid10375923 
+\par }{\rtlch\fcs1 \ab\af1 \ltrch\fcs0 \b\f1\cf1\insrsid10375923 \hich\af1\dbch\af31505\loch\f1 Advance Amount. }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid10375923 \hich\af0\dbch\af31505\loch\f0 
+When you request an advance, we will, subject to the limitations contained in this Agreement, advance exactly the amount you request.}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\insrsid10375923\charrsid10375923 
+\par }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 Whe\hich\af0\dbch\af31505\loch\f0 n we add the amount of the advance(s) to your Loan Account Balance we will immediately begin to apply the }{\rtlch\fcs1 \af0 
+\ltrch\fcs0 \f0\cf1\insrsid13779093 \hich\af0\dbch\af31505\loch\f0 interest}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid12155930 \hich\af0\dbch\af31505\loch\f0  }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 
+charge in effect from time to time to the entire unpaid balance, including the advance(s).}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par }\pard \ltrpar\ql \li288\ri0\sb120\sl240\slmult0\nowidctlpar\wrapdefault\faauto\rin0\lin288\itap0 {\rtlch\fcs1 \ab\af1 \ltrch\fcs0 \b\f1\cf1\insrsid8653689 {\*\bkmkstart d15e335}\hich\af1\dbch\af31505\loch\f1 Credit Limit. }{\rtlch\fcs1 \af0 \ltrch\fcs0 
+\f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 
+Subject to the terms and conditions of this Agreement, you may borrow on this Line of Credit up to the Credit Limit. You agree not to request or obtain an advance that will cause the unpaid principal of your Loan Account Balance to exceed the Credit Limit
+.\hich\af0\dbch\af31505\loch\f0 
+ You understand that we will not ordinarily grant a request for an advance that would cause the unpaid principal of your Loan Account Balance to be greater than the Credit Limit, but that we may, at our option, grant such a request without obligating ours
+\hich\af0\dbch\af31505\loch\f0 e\hich\af0\dbch\af31505\loch\f0 
+lves to do so in the future. Your Credit Limit will not be increased if you overdraw the Line of Credit. If you exceed the Credit Limit, you agree to immediately pay the amount by which the unpaid principal of your Loan Account Balance exceeds the Credit 
+\hich\af0\dbch\af31505\loch\f0 L\hich\af0\dbch\af31505\loch\f0 imit, even if we have not yet billed you.}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par }\pard \ltrpar\ql \li0\ri0\sb120\sl240\slmult0\keepn\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 \cbpat1 {\rtlch\fcs1 \ab\ai\af1\afs24 \ltrch\fcs0 \b\i\f1\fs24\cf8\chshdng0\chcfpat0\chcbpat1\insrsid6762709 {\*\bkmkstart d15e340}{\*\bkmkend d15e335}
+\hich\af1\dbch\af31505\loch\f1 Interest}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par }\pard \ltrpar\ql \li0\ri0\sb120\sl240\slmult0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0\pararsid9251852 {\rtlch\fcs1 \ab\af1 \ltrch\fcs0 \b\f1\cf1\insrsid8653689 {\*\bkmkstart d15e343}{\*\bkmkend d15e340}\hich\af1\dbch\af31505\loch\f1 
+Computation of }{\rtlch\fcs1 \ab\af1 \ltrch\fcs0 \b\f1\cf1\insrsid13779093 \hich\af1\dbch\af31505\loch\f1 Interest}{\rtlch\fcs1 \ab\af1 \ltrch\fcs0 \b\f1\cf1\insrsid12155930 \hich\af1\dbch\af31505\loch\f1  }{\rtlch\fcs1 \ab\af1 \ltrch\fcs0 
+\b\f1\cf1\insrsid8653689 \hich\af1\dbch\af31505\loch\f1 Charges. }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid12155930\charrsid9251852 \hich\af0\dbch\af31505\loch\f0  }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid13779093 \hich\af0\dbch\af31505\loch\f0 
+Interest }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689\charrsid9251852 \hich\af0\dbch\af31505\loch\f0 charges begin to accrue immediately when we make an advance to you. }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid13779093 
+\hich\af0\dbch\af31505\loch\f0 Interest}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid12155930\charrsid9251852 \hich\af0\dbch\af31505\loch\f0  }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689\charrsid9251852 \hich\af0\dbch\af31505\loch\f0 
+charges will be computed as follows:}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\insrsid8653689\charrsid9251852 
+\par }\pard \ltrpar\ql \li0\ri0\sb120\sa200\sl240\slmult0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid9251852 {\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\insrsid12155930\charrsid9251852 {\*\bkmkstart d15e353}{\*\bkmkend d15e343}
+\hich\af0\dbch\af31505\loch\f0 To figure the }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\insrsid6906291 \hich\af0\dbch\af31505\loch\f0 interest }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\insrsid12155930\charrsid9251852 \hich\af0\dbch\af31505\loch\f0 
+charge for each Billing Cycle, a daily periodic rate is multiplied by the Average Daily Balance of your L\hich\af0\dbch\af31505\loch\f0 oan Account Balance. We then multiply that amount by the number of days in the Billing Cycle. To figure the }{
+\rtlch\fcs1 \af0 \ltrch\fcs0 \i\f0\insrsid12155930\charrsid9251852 \loch\af0\dbch\af31505\hich\f0 \'93\loch\f0 \hich\f0 Average Daily Balance\'94}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\insrsid12155930\charrsid9251852 \hich\af0\dbch\af31505\loch\f0 
+, we first take your\hich\af0\dbch\af31505\loch\f0  Loan Account Balance at the beginning of each day, add any new advances, and subtract any payments or credits that apply to debt repayment, and subtract any unpaid}{\rtlch\fcs1 \af0 \ltrch\fcs0 
+\f0\insrsid6762709 \hich\af0\dbch\af31505\loch\f0  interest or other}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\insrsid12155930\charrsid9251852 \hich\af0\dbch\af31505\loch\f0  finance charges, fees and charges. This gives us the daily balance. Then,
+\hich\af0\dbch\af31505\loch\f0  we add up all the daily balances for the}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\insrsid12155930\charrsid15800804 \hich\af0\dbch\af31505\loch\f0 
+ Billing Cycle and divide the total by the number of days in the Billing Cycle. This gives us the Average Daily Balance.}{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid12155930\charrsid2643746 \hich\af31506\dbch\af31505\loch\f31506  }{\rtlch\fcs1 \af0 \ltrch\fcs0 
+\f0\cf1\insrsid12155930 
+\par }\pard \ltrpar\ql \li0\ri0\sb120\sl240\slmult0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 {\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 The periodic rate used in calculating the interest charge is }{\rtlch\fcs1 
+\af0 \ltrch\fcs0 \f0\cf6\insrsid9251852\charrsid538225 \hich\af0\dbch\af31505\loch\f0 _______}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\insrsid9251852\charrsid9251852 \hich\af0\dbch\af31505\loch\f0 %}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 
+\hich\af0\dbch\af31505\loch\f0  and the corresponding A\hich\af0\dbch\af31505\loch\f0 nnual Percentage Rate is }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf20\insrsid10375923 \hich\af0\dbch\af31505\loch\f0 _____}{\rtlch\fcs1 \af0 \ltrch\fcs0 
+\f0\insrsid10375923\charrsid9191359 \hich\af0\dbch\af31505\loch\f0 %.}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0  The annual percentage rate includes interest and not other costs.
+\par }{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid2303571 
+\par }\pard \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid14891872 {\rtlch\fcs1 \ab\af1 \ltrch\fcs0 \b\f1\cf1\insrsid8653689\charrsid9191359 {\*\bkmkstart d15e369}{\*\bkmkend d15e353}
+\hich\af1\dbch\af31505\loch\f1 Variable Rate.}{\rtlch\fcs1 \ab\af1 \ltrch\fcs0 \b\f1\cf1\insrsid2303571\charrsid9191359 \hich\af1\dbch\af31505\loch\f1  }{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid2303571\charrsid9191359 \hich\af31506\dbch\af31505\loch\f31506 
+The annual percentage rate may change and will be based on the value of an index. The index is the base rate on corporate loans\hich\af31506\dbch\af31505\loch\f31506 
+ posted by at least 75% of the 30 largest U.S. banks known as the Wall Street Journal U.S. Prime Rate }{\rtlch\fcs1 \af0 \ltrch\fcs0 \i\insrsid2303571\charrsid9191359 \hich\af31506\dbch\af31505\loch\f31506 \hich\f31506 (\'93\loch\f31506 \hich\f31506 Index
+\'94\loch\f31506 )}{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid2303571\charrsid9191359 \hich\af31506\dbch\af31505\loch\f31506 . To determine the annual percentage rate we add a __________ percentage point margin to the value of the Index. }{\rtlch\fcs1 \af0 
+\ltrch\fcs0 \insrsid8653689\charrsid9191359 
+\par }\pard \ltrpar\ql \li288\ri0\sb120\sl240\slmult0\nowidctlpar\wrapdefault\faauto\rin0\lin288\itap0\pararsid15800804 {\rtlch\fcs1 \ab\af1 \ltrch\fcs0 \b\f1\cf1\insrsid8653689 {\*\bkmkstart d15e373}{\*\bkmkend d15e369}\hich\af1\dbch\af31505\loch\f1 
+Rate Changes. }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 
+The annual percentage rate may increase if the Index rate increases. An Index rate increase will result in a higher interest charge and it may have the effect of increasing your periodic Minimum Payment. A decrease in the Index rate will have the opposite
+\hich\af0\dbch\af31505\loch\f0  \hich\af0\dbch\af31505\loch\f0 effect as an increase. The annual percentage rate can increase or decrease monthly. }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\insrsid13832229\charrsid15800804 \hich\af0\dbch\af31505\loch\f0 
+The index rate will be determined as of the last day (or nearest preceding day reported) of any billing cycle based on the Prime Rate reported in the Wall Street Journal on\hich\af0\dbch\af31505\loch\f0  the second Tuesday of}{\rtlch\fcs1 \af0 
+\ltrch\fcs0 \f0\insrsid6760993\charrsid15800804 \hich\af0\dbch\af31505\loch\f0  the month preceding the month}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\insrsid13832229\charrsid15800804 \hich\af0\dbch\af31505\loch\f0  in which the billing cycle begins. }{
+\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\insrsid11757447\charrsid15800804 \hich\af0\dbch\af31505\loch\f0 Following a}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\insrsid8653689\charrsid15800804 \hich\af0\dbch\af31505\loch\f0 n Index rate increase }{\rtlch\fcs1 \af0 
+\ltrch\fcs0 \f0\insrsid6760993\charrsid15800804 \hich\af0\dbch\af31505\loch\f0 or decrea}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid6760993 \hich\af0\dbch\af31505\loch\f0 se}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid11757447 
+\hich\af0\dbch\af31505\loch\f0 , the change to your Annual Percentage Rate }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 will take effect}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid3571603 
+\hich\af0\dbch\af31505\loch\f0  }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\insrsid2303571\charrsid9191359 \hich\af0\dbch\af31505\loch\f0 on the first day of each billing cycle.}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid2303571 \hich\af0\dbch\af31505\loch\f0  }
+{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid6760993 \hich\af0\dbch\af31505\loch\f0 W}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 e will ignore any chan\hich\af0\dbch\af31505\loch\f0 
+ges in the Index rate that occur between annual percentage rate adjustments.}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid3571603\charrsid12737173 
+\par }{\rtlch\fcs1 \ab\af1 \ltrch\fcs0 \b\f1\cf1\insrsid8653689 {\*\bkmkstart d15e392}{\*\bkmkend d15e373}\hich\af1\dbch\af31505\loch\f1 Rate Change Limitations. }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 
+Annual percentage rate changes are subject to the following limitations.}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par }\pard \ltrpar\ql \li576\ri0\sb120\sl240\slmult0\nowidctlpar\wrapdefault\faauto\rin0\lin576\itap0 {\rtlch\fcs1 \ab\af1 \ltrch\fcs0 \b\f1\cf1\insrsid8653689 {\*\bkmkstart d15e408}{\*\bkmkend d15e392}\hich\af1\dbch\af31505\loch\f1 Lifetime Cap. }{
+\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 The maximum Annual Percentage Rate that\hich\af0\dbch\af31505\loch\f0 
+ can apply during the term of this Line of Credit is 18% or the maximum annual percentage rate allowed by applicable law, whichever is less.}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par }\pard \ltrpar\ql \li0\ri0\sb120\sl240\slmult0\keepn\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 \cbpat1 {\rtlch\fcs1 \ab\ai\af1\afs24 \ltrch\fcs0 \b\i\f1\fs24\cf8\chshdng0\chcfpat0\chcbpat1\insrsid8653689 {\*\bkmkstart d15e419}{\*\bkmkend d15e408}
+\hich\af1\dbch\af31505\loch\f1 Fees and Charges}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par }\pard \ltrpar\ql \li0\ri0\sb120\sl240\slmult0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 {\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 {\*\bkmkend d15e419}\hich\af0\dbch\af31505\loch\f0 You agree to pay the following additio
+\hich\af0\dbch\af31505\loch\f0 nal fees and charges:}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par {\pntext\pard\plain\ltrpar \rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f3\fs22\cf1\insrsid8653689 \loch\af3\dbch\af31505\hich\f3 \'b7\tab}}\pard \ltrpar\ql \fi-40\li320\ri0\sb40\sl240\slmult0\nowidctlpar\wrapdefault{\*\pn \pnlvlblt\ilvl0\ls3\pnrnot0
+\pncf1\pnf3\pnfs22\pnstart1\pnindent360\pnsp120 {\pntxta \'b7}}\faauto\ls3\rin0\lin320\itap0\pararsid7299295 {\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 .}{\rtlch\fcs1 \af0 \ltrch\fcs0 \b\insrsid4222925\charrsid4222925 
+\hich\af31506\dbch\af31505\loch\f31506  }{\rtlch\fcs1 \af0 \ltrch\fcs0 \b\insrsid4222925 \hich\af31506\dbch\af31505\loch\f31506 Late and Returned Item Fees.}{\rtlch\fcs1 \af0 \ltrch\fcs0 \b\insrsid3571603 \hich\af31506\dbch\af31505\loch\f31506  }{
+\rtlch\fcs1 \af0\afs20 \ltrch\fcs0 \f0\fs20\cf1\lang1024\langfe1024\noproof\insrsid4222925\charrsid9251852 \hich\af0\dbch\af31505\loch\f0 
+If you fail to pay us at least the Minimum Payment within 10 days after the Payment Due Date as shown on your monthly statement, your Account will be subject to a Late Payment Fee in the}{\rtlch\fcs1 \af0\afs20 \ltrch\fcs0 
+\f0\fs20\cf1\lang1024\langfe1024\noproof\insrsid3571603 \hich\af0\dbch\af31505\loch\f0  }{\rtlch\fcs1 \af0\afs20 \ltrch\fcs0 \f0\fs20\cf1\lang1024\langfe1024\noproof\insrsid4222925\charrsid9251852 \hich\af0\dbch\af31505\loch\f0 amount of $18.00.}{
+\rtlch\fcs1 \af0\afs20 \ltrch\fcs0 \f0\fs20\cf1\lang1024\langfe1024\noproof\insrsid3571603 \hich\af0\dbch\af31505\loch\f0  }{\rtlch\fcs1 \af0\afs20 \ltrch\fcs0 \f0\fs20\cf1\lang1024\langfe1024\noproof\insrsid4222925\charrsid9251852 
+\hich\af0\dbch\af31505\loch\f0 We may collect a charge of $}{\rtlch\fcs1 \af0\afs20 \ltrch\fcs0 \f0\fs20\cf1\lang1024\langfe1024\noproof\insrsid4222925\charrsid13532285 \hich\af0\dbch\af31505\loch\f0 15.00}{\rtlch\fcs1 \af0\afs20 \ltrch\fcs0 
+\f0\fs20\cf1\lang1024\langfe1024\noproof\insrsid4222925\charrsid9251852 \hich\af0\dbch\af31505\loch\f0  for any check presented for payment to us which is returned unpaid or if an}{\rtlch\fcs1 \af1\afs20 \ltrch\fcs0 
+\f1\fs20\cf1\lang1024\langfe1024\noproof\insrsid4222925 \hich\af1\dbch\af31505\loch\f1  }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\lang1024\langfe1024\noproof\insrsid4222925\charrsid9251852 \hich\af0\dbch\af31505\loch\f0 
+Automatic Payment/Automated Clearing House (ACH) debit is returned unpaid.}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\insrsid7299295\charrsid9251852 
+\par {\pntext\pard\plain\ltrpar \rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f3\fs22\cf1\insrsid7299295 \loch\af3\dbch\af31505\hich\f3 \'b7\tab}}\pard \ltrpar\ql \fi-40\li320\ri0\sb40\sl240\slmult0\nowidctlpar\wrapdefault{\*\pn \pnlvlblt\ilvl0\ls3\pnrnot0
+\pncf1\pnf3\pnfs22\pnstart1\pnindent360\pnsp120 {\pntxta \'b7}}\faauto\ls3\rin0\lin320\itap0\pararsid7299295 {\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid7299295 \hich\af0\dbch\af31505\loch\f0  }{\rtlch\fcs1 \af0 \ltrch\fcs0 
+\b\insrsid7299295\charrsid7299295 \hich\af31506\dbch\af31505\loch\f31506 Debt /Loan Protection Charges, }{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid7299295\charrsid15860534 \hich\af31506\dbch\af31505\loch\f31506 
+At your option and if eligible, you may participate in the Debt}{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid14555815 \hich\af31506\dbch\af31505\loch\f31506 /Loan}{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid7299295\charrsid15860534 
+\hich\af31506\dbch\af31505\loch\f31506  Protection program arranged by us.  If you participate, a charge at a rate disclosed to you in a separate agreement will be posted to your account each month that you have a balance.}{\rtlch\fcs1 \af0\afs2 
+\ltrch\fcs0 \f0\fs2\insrsid7299295\charrsid7299295 
+\par }\pard \ltrpar\ql \li320\ri0\sb40\sl240\slmult0\nowidctlpar\wrapdefault\faauto\rin0\lin320\itap0\pararsid7299295 {\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid7299295 
+\par }\pard \ltrpar\ql \li0\ri0\sb120\sl240\slmult0\keepn\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 \cbpat1 {\rtlch\fcs1 \ab\ai\af1\afs24 \ltrch\fcs0 \b\i\f1\fs24\cf8\chshdng0\chcfpat0\chcbpat1\insrsid8653689 {\*\bkmkstart d15e442}
+\hich\af1\dbch\af31505\loch\f1 Payment Terms}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par }\pard \ltrpar\ql \li0\ri0\sb120\sl240\slmult0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 {\rtlch\fcs1 \ab\af1 \ltrch\fcs0 \b\f1\cf1\insrsid8653689 {\*\bkmkstart d15e445}{\*\bkmkend d15e442}\hich\af1\dbch\af31505\loch\f1 Payment Date. }{\rtlch\fcs1 
+\af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 During the term of this Agreement, a Minimum Payment will be due on or before the Payment Date for any Billing Cycle in which there is an outstanding }{\rtlch\fcs1 \af0 \ltrch\fcs0 
+\insrsid14891872\charrsid9191359 \hich\af31506\dbch\af31505\loch\f31506 Loan Account Balance}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\insrsid8653689\charrsid9191359 .}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0  }{
+\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid3571603 
+\par }{\rtlch\fcs1 \ab\af1 \ltrch\fcs0 \b\f1\cf1\insrsid8653689 {\*\bkmkstart d15e454}{\*\bkmkend d15e445}\hich\af1\dbch\af31505\loch\f1 Minimum Payment. }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 On or 
+\hich\af0\dbch\af31505\loch\f0 before each Payment Date, you agree to make a payment of at least the Minimum Payment amount.
+\par }\pard \ltrpar\ql \li0\ri0\sb120\sl240\slmult0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0\pararsid13532285 {\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid6321265\charrsid13532285 \hich\af0\dbch\af31505\loch\f0 
+The Minimum Payment will equal the following:}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid6321265\charrsid13532285 
+\par }\pard \ltrpar\ql \li0\ri0\sb120\sa200\sl240\slmult0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0\pararsid13532285 {\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid6321265\charrsid13532285 \hich\af0\dbch\af31505\loch\f0 The amount of }{\rtlch\fcs1 \af0 
+\ltrch\fcs0 \f0\cf1\insrsid6762709 \hich\af0\dbch\af31505\loch\f0 interest}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid6321265\charrsid13532285 \hich\af0\dbch\af31505\loch\f0 
+ on the last day of the Billing Cycle plus late charges, over credit limit amounts, other fees\hich\af0\dbch\af31505\loch\f0  and charges }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid7299295\charrsid13532285 \hich\af0\dbch\af31505\loch\f0 
+(including Debt/Loan Protection if applicable) }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid6321265\charrsid13532285 \hich\af0\dbch\af31505\loch\f0 or $50.00, whichever is greater. If the Loan Account Balance is less than }{\rtlch\fcs1 \af0 \ltrch\fcs0 
+\f0\insrsid6321265\charrsid9191359 \hich\af0\dbch\af31505\loch\f0 $50}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\insrsid16650633\charrsid9191359 .00,}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid6321265\charrsid13532285 \hich\af0\dbch\af31505\loch\f0 
+ the entire Loan Account Balance will be due.
+\par }\pard \ltrpar\ql \li0\ri0\sb120\sl240\slmult0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0\pararsid13532285 {\rtlch\fcs1 \af1 \ltrch\fcs0 \b\f1\insrsid6321265\charrsid7028776 \hich\af1\dbch\af31505\loch\f1 
+Your Minimum Payment May be Significantly Increased:}{\rtlch\fcs1 \af0 \ltrch\fcs0 \b\insrsid6321265\charrsid10569601 \hich\af31506\dbch\af31505\loch\f31506  }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\insrsid6321265\charrsid9191359 \hich\af0\dbch\af31505\loch\f0 
+Upon }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\insrsid12737173\charrsid9191359 \hich\af0\dbch\af31505\loch\f0 termination }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\insrsid11757447\charrsid9191359 \hich\af0\dbch\af31505\loch\f0 by you or us}{\rtlch\fcs1 \af0 
+\ltrch\fcs0 \f0\insrsid6321265\charrsid9191359 \hich\af0\dbch\af31505\loch\f0 , your Minimum Payment }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\insrsid14891872\charrsid9191359 \hich\af0\dbch\af31505\loch\f0 will}{\rtlch\fcs1 \af0 \ltrch\fcs0 
+\f0\insrsid6321265\charrsid9191359 \hich\af0\dbch\af31505\loch\f0  be increased to 3% of the Loan Account Balance on the last day of the billing cycle}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\insrsid14555815\charrsid9191359 \hich\af0\dbch\af31505\loch\f0 
+ plus other charges}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\insrsid6321265\charrsid9191359 .}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\insrsid14891872\charrsid9191359 \hich\af0\dbch\af31505\loch\f0  }{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 
+\f0\fs2\insrsid6321265\charrsid9191359 
+\par }\pard \ltrpar\ql \li0\ri0\sb120\sl240\slmult0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 {\rtlch\fcs1 \ab\af1 \ltrch\fcs0 \b\f1\cf1\insrsid8653689 {\*\bkmkstart d15e478}{\*\bkmkend d15e454}\hich\af1\dbch\af31505\loch\f1 Additional Payment Terms. }{
+\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 I\hich\af0\dbch\af31505\loch\f0 
+f your Loan Account Balance on a Payment Date is less than the Minimum Payment amount, you must pay only the amount necessary to reduce your Loan Account Balance to zero or to any required Minimum Balance. }{\rtlch\fcs1 \af0 \ltrch\fcs0 
+\f0\cf1\insrsid6321265 \hich\af0\dbch\af31505\loch\f0 Y}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 ou can pay off all or part of what you owe at any\hich\af0\dbch\af31505\loch\f0 
+ time. If you pay more than the Minimum Payment amount, you must continue to make your periodic Minimum Payments as otherwise required by this Agreement.}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 {\*\bkmkend d15e478}\hich\af0\dbch\af31505\loch\f0 Unless otherwise agreed or required by applicable law, payments and other credits will be appli\hich\af0\dbch\af31505\loch\f0 
+ed first to any charges you owe other than principal and }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid15153987 \hich\af0\dbch\af31505\loch\f0 interest }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 
+charges, then to any }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid15153987 \hich\af0\dbch\af31505\loch\f0 interest }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 charges that are due,\hich\af0\dbch\af31505\loch\f0 
+ and finally to principal. No late charge will be assessed on any payment when the only delinquency is due to late fees assessed on earlier payments and the payment is otherwise a full payment.}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+
+\par }\pard \ltrpar\ql \li0\ri0\sb120\sl240\slmult0\keepn\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 \cbpat1 {\rtlch\fcs1 \ab\ai\af1\afs24 \ltrch\fcs0 \b\i\f1\fs24\cf8\chshdng0\chcfpat0\chcbpat1\insrsid8653689 {\*\bkmkstart d15e488}
+\hich\af1\dbch\af31505\loch\f1 Additional Terms}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par }\pard \ltrpar\ql \li0\ri0\sb120\sl240\slmult0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 {\rtlch\fcs1 \ab\af1 \ltrch\fcs0 \b\f1\cf1\insrsid8653689 {\*\bkmkstart d15e491}{\*\bkmkend d15e488}\hich\af1\dbch\af31505\loch\f1 Commissions. }{\rtlch\fcs1 
+\af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 You underst\hich\af0\dbch\af31505\loch\f0 
+and and agree that we (or our affiliate) will earn commissions or fees on any insurance products, and may earn such fees on other services that you buy through us or our affiliate.
+\par }{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid5143407 
+\par }{\rtlch\fcs1 \ab\af1 \ltrch\fcs0 \b\f1\cf1\insrsid8653689 {\*\bkmkstart d15e502}{\*\bkmkend d15e491}\hich\af1\dbch\af31505\loch\f1 Default. }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 
+To the extent permitted by law, you will be in defa\hich\af0\dbch\af31505\loch\f0 ult if any of the following occur:}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par {\*\bkmkend d15e502}{\pntext\pard\plain\ltrpar \rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f3\fs22\cf1\insrsid8653689 \loch\af3\dbch\af31505\hich\f3 \'b7\tab}}\pard \ltrpar\ql \fi-40\li320\ri0\sb40\sl240\slmult0\nowidctlpar\wrapdefault{\*\pn 
+\pnlvlblt\ilvl0\ls4\pnrnot0\pncf1\pnf3\pnfs22\pnstart1\pnindent360\pnsp120 {\pntxta \'b7}}\faauto\ls4\rin0\lin320\itap0 {\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 .0}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 
+\hich\af0\dbch\af31505\loch\f0 You fail to make a full payment when due on two or more occasions within any 12-month period.}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689\charrsid3571603 
+\par {\pntext\pard\plain\ltrpar \rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f3\fs22\cf1\insrsid8586060 \loch\af3\dbch\af31505\hich\f3 \'b7\tab}}\pard \ltrpar\ql \fi-40\li320\ri0\sb40\sl240\slmult0\nowidctlpar\wrapdefault{\*\pn \pnlvlblt\ilvl0\ls4\pnrnot0
+\pncf1\pnf3\pnfs22\pnstart1\pnindent360\pnsp120 {\pntxta \'b7}}\faauto\ls4\rin0\lin320\itap0\pararsid8586060 {\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8586060 \hich\af0\dbch\af31505\loch\f0  Y}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8586060 
+\hich\af0\dbch\af31505\loch\f0 You fail to }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689\charrsid8586060 \hich\af0\dbch\af31505\loch\f0 observe any other covenant, the breach of which materially impairs your prospect to pay amounts due.}{
+\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid5143407 
+\par }\pard \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid13532285 {\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid5143407\charrsid5143407 
+\par }\pard \ltrpar\ql \li0\ri0\sb120\sl240\slmult0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 {\rtlch\fcs1 \ab\af1 \ltrch\fcs0 \b\f1\cf1\insrsid8653689 {\*\bkmkstart d15e523}\hich\af1\dbch\af31505\loch\f1 Notice of Default and Right to Cure. }{
+\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 If we believe you are in default and }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid2433506 \hich\af0\dbch\af31505\loch\f0 if }{\rtlch\fcs1 \af0 \ltrch\fcs0 
+\f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 
+you have a right to cure the default under the Wisconsin Consumer Act, we will give you a written notice of the default and right to cure. You may cure your default, except if twice during the preceding 12 months, you defaulted under this same Agreement, 
+\hich\af0\dbch\af31505\loch\f0 w\hich\af0\dbch\af31505\loch\f0 e properly notified you of the defaults and right to cure, and you cured these prior defaults. You may cure the default within 15 days after we mail or personally deliver this notice to you. }
+{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid2433506 \hich\af31506\dbch\af31505\loch\f31506 If you have a right to cure under the Wisconsin Consumer Act, the\hich\af31506\dbch\af31505\loch\f31506 n}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid2433506 
+\hich\af0\dbch\af31505\loch\f0  u}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 
+ntil this 15-day period ends, we may not exercise our remedies, except for those which the Wisconsin Consumer Act permits during this time.}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par }{\rtlch\fcs1 \ab\af1 \ltrch\fcs0 \b\f1\cf1\insrsid8653689 {\*\bkmkstart d15e543}{\*\bkmkend d15e523}\hich\af1\dbch\af31505\loch\f1 Remedies. }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 
+After you default, and after we give any notice and opportunity to cure when required und\hich\af0\dbch\af31505\loch\f0 er the Wisconsin Consumer Act, we may at our option, to the extent permitted by law, do any of the following:}{\rtlch\fcs1 \af0\afs2 
+\ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par {\*\bkmkend d15e543}{\pntext\pard\plain\ltrpar \rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f3\fs22\cf1\insrsid8653689 \loch\af3\dbch\af31505\hich\f3 \'b7\tab}}\pard \ltrpar\ql \fi-40\li320\ri0\sb40\sl240\slmult0\nowidctlpar\wrapdefault{\*\pn 
+\pnlvlblt\ilvl0\ls5\pnrnot0\pncf1\pnf3\pnfs22\pnstart1\pnindent360\pnsp120 {\pntxta \'b7}}\faauto\ls5\rin0\lin320\itap0 {\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 .0}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 
+\hich\af0\dbch\af31505\loch\f0 We may terminate this Line of Credit and make all or any part of the amount owing by the terms of this Agreement due.}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par {\pntext\pard\plain\ltrpar \rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f3\fs22\cf1\insrsid8653689 \loch\af3\dbch\af31505\hich\f3 \'b7\tab}}\pard \ltrpar\ql \fi-40\li320\ri0\sb40\sl240\slmult0\nowidctlpar\wrapdefault{\*\pn \pnlvlblt\ilvl0\ls5\pnrnot0
+\pncf1\pnf3\pnfs22\pnstart1\pnindent360\pnsp120 {\pntxta \'b7}}\faauto\ls5\rin0\lin320\itap0 {\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 .0}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 We may temp
+\hich\af0\dbch\af31505\loch\f0 orarily or permanently prohibit any additional advances.}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par {\pntext\pard\plain\ltrpar \rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f3\fs22\cf1\insrsid8653689 \loch\af3\dbch\af31505\hich\f3 \'b7\tab}}\pard \ltrpar\ql \fi-40\li320\ri0\sb40\sl240\slmult0\nowidctlpar\wrapdefault{\*\pn \pnlvlblt\ilvl0\ls5\pnrnot0
+\pncf1\pnf3\pnfs22\pnstart1\pnindent360\pnsp120 {\pntxta \'b7}}\faauto\ls5\rin0\lin320\itap0 {\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 .0}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 
+We may make amounts advanced on your behalf due, and we may add these amounts to the Loan Account Balance. }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid2433506 \hich\af0\dbch\af31505\loch\f0 W}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 
+\hich\af0\dbch\af31505\loch\f0 e will give you written notice of your nonperformance and then you will have a reasona\hich\af0\dbch\af31505\loch\f0 ble opportunity to perform before we add these amounts to the Loan Account Balance.}{\rtlch\fcs1 \af0\afs2 
+\ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par {\pntext\pard\plain\ltrpar \rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f3\fs22\cf1\insrsid8653689 \loch\af3\dbch\af31505\hich\f3 \'b7\tab}}\pard \ltrpar\ql \fi-40\li320\ri0\sb40\sl240\slmult0\nowidctlpar\wrapdefault{\*\pn \pnlvlblt\ilvl0\ls5\pnrnot0
+\pncf1\pnf3\pnfs22\pnstart1\pnindent360\pnsp120 {\pntxta \'b7}}\faauto\ls5\rin0\lin320\itap0 {\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 .0}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 
+We may use any and all remedies we have under applicable law or any agreement securing this Agreement.}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par }\pard \ltrpar\ql \li0\ri0\sb120\sl240\slmult0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 {\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 Except as otherwise required by law, by choosing a remedy we do 
+\hich\af0\dbch\af31505\loch\f0 
+not give up our right to use another remedy. We do not waive a default if we choose not to use a remedy. By electing not to use any remedy, we do not waive our right to later consider the event a default and to use any remedies if the default continues or
+\hich\af0\dbch\af31505\loch\f0  \hich\af0\dbch\af31505\loch\f0 occurs again.}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par }{\rtlch\fcs1 \ab\af1 \ltrch\fcs0 \b\f1\cf1\insrsid8653689 {\*\bkmkstart d15e605}\hich\af1\dbch\af31505\loch\f1 Default Charges and Attorneys' Fees. }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 
+If you default, you agree to pay }{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid12073802 \hich\af31506\dbch\af31505\loch\f31506 reasonable attorneys\hich\f31506 \rquote \loch\f31506  fees and charges or if required by the Wisconsin Consumer Act, }{\rtlch\fcs1 
+\af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 our statutory fees and charges and statutory attorneys' fees when and to the ext\hich\af0\dbch\af31505\loch\f0 
+ent authorized by the Wisconsin Consumer Act. Fees and charges include, but are not limited to, the disposition of any Property under }{\rtlch\fcs1 \ai\af0 \ltrch\fcs0 \i\f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 Wis. Stat. Ann.}{\rtlch\fcs1 
+\af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 \hich\f0  \'a7\loch\f0  422.413, as amended. To the extent permitted by the United States Bankruptcy Code, this section applies \hich\af0\dbch\af31505\loch\f0 
+when anyone obligated under this Agreement is subject to a voluntary or involuntary bankruptcy proceeding under a court exercising jurisdiction under the United States Bankruptcy Code.}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par }{\rtlch\fcs1 \ab\af1 \ltrch\fcs0 \b\f1\cf1\insrsid8653689 {\*\bkmkstart d15e615}{\*\bkmkend d15e605}\hich\af1\dbch\af31505\loch\f1 Set-Off. }{\rtlch\fcs1 \ab\af0 \ltrch\fcs0 \b\f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 
+We may set off any amount due and payable under \hich\af0\dbch\af31505\loch\f0 the terms of this Agreement against your right to receive money from us, unless prohibited by applicable law.}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par }{\rtlch\fcs1 \ab\af1 \ltrch\fcs0 \b\f1\cf1\insrsid8653689 {\*\bkmkstart d15e621}{\*\bkmkend d15e615}\hich\af1\dbch\af31505\loch\f1 Amendments. }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 
+To the extent permitted by law, we may change any term of this Agreement upon appropriate advance notice as required by \hich\af0\dbch\af31505\loch\f0 applicable law.}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par }{\rtlch\fcs1 \ab\af1 \ltrch\fcs0 \b\f1\cf1\insrsid8653689 {\*\bkmkstart d15e630}{\*\bkmkend d15e621}\hich\af1\dbch\af31505\loch\f1 Termination}{\rtlch\fcs1 \ab\af1 \ltrch\fcs0 \b\f1\cf1\insrsid7028776 \hich\af1\dbch\af31505\loch\f1 
+ and Suspension of Credit}{\rtlch\fcs1 \ab\af1 \ltrch\fcs0 \b\f1\cf1\insrsid8653689 \hich\af1\dbch\af31505\loch\f1 . }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 Either you }{\rtlch\fcs1 \af0 \ltrch\fcs0 
+\f0\insrsid4462969\charrsid9191359 \hich\af0\dbch\af31505\loch\f0 or your spouse}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid4462969 \hich\af0\dbch\af31505\loch\f0  }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 
+or we may, unless prohibited by law, terminate this Line of Credit }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid7028776 \hich\af0\dbch\af31505\loch\f0 or suspend further credit advances }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 
+\hich\af0\dbch\af31505\loch\f0 at any time by giving written notice to the other. Termination }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid3943339 \hich\af0\dbch\af31505\loch\f0 or suspension of credit }{\rtlch\fcs1 \af0 \ltrch\fcs0 
+\f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 by one Borrower terminates the Line of Credit for all Borrowers. Termination will not affect your obligation to repay advances}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid12737173 .}{\rtlch\fcs1 \af0 
+\ltrch\fcs0 \f0\cf1\insrsid3571603 \hich\af0\dbch\af31505\loch\f0  }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 {\*\bkmkend d15e630}\hich\af0\dbch\af31505\loch\f0 Upon termination}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid3943339 
+\hich\af0\dbch\af31505\loch\f0  or suspension of \hich\af0\dbch\af31505\loch\f0 credit}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 
+, you will return to us any remaining access devices in your possession that were issued or used in connection with the Line of Credit.
+\par }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\insrsid10245669\charrsid13532285 \hich\af0\dbch\af31505\loch\f0 In order to reinstate your credit privileges under the original terms of this Agreement, you must send us a writte\hich\af0\dbch\af31505\loch\f0 
+n request to that effect. Your credit privileges will only be reinstated if we determine that the condition which caused us to prohibit additional extensions and/or reduce the Credit Limit no longer exists. If credit report fees are incurred in making thi
+\hich\af0\dbch\af31505\loch\f0 s\hich\af0\dbch\af31505\loch\f0 
+ determination, we may (if allowed by applicable law) charge you such fees. If credit privileges were suspended at your request, they need not be reinstated unless all Borrowers request reinstatement.}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\insrsid10245669 
+
+\par }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\insrsid4462969\charrsid9191359 \hich\af0\dbch\af31505\loch\f0 If your spouse terminates this Line of Credit, we may d\hich\af0\dbch\af31505\loch\f0 
+eclare the entire Loan Account Balance due and payable upon receipt of the notice of termination, notwithstanding }{\rtlch\fcs1 \ab\ai\af0 \ltrch\fcs0 \b\i\f0\insrsid4462969\charrsid9191359 \hich\af0\dbch\af31505\loch\f0 Wis. Stat. Ann. }{\rtlch\fcs1 
+\ab\af0 \ltrch\fcs0 \b\f0\insrsid4462969\charrsid9191359 \loch\af0\dbch\af31505\hich\f0 \'a7\loch\f0  425.103 and}{\rtlch\fcs1 \ab\ai\af0 \ltrch\fcs0 \b\i\f0\insrsid4462969\charrsid9191359 \hich\af0\dbch\af31505\loch\f0 . }{\rtlch\fcs1 \ab\af0 
+\ltrch\fcs0 \b\f0\insrsid4462969\charrsid9191359 \loch\af0\dbch\af31505\hich\f0 \'a7\loch\f0  425.105, as amended.}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid10245669\charrsid9191359 
+\par }{\rtlch\fcs1 \ab\af1 \ltrch\fcs0 \b\f1\cf1\insrsid8653689 {\*\bkmkstart d15e641}\hich\af1\dbch\af31505\loch\f1 Waivers and Consent. }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 
+To the extent not prohibited by law and subject to any requi\hich\af0\dbch\af31505\loch\f0 
+red notice and opportunity to cure a default for the failure to make a required payment, you waive protest, presentment for payment, demand, notice of acceleration, notice of intent to accelerate and notice of dishonor. }{\rtlch\fcs1 \ab\af0 \ltrch\fcs0 
+\b\f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 In addition, }{\rtlch\fcs1 \ab\af0 \ltrch\fcs0 \b\f0\cf1\insrsid13662512 \hich\af0\dbch\af31505\loch\f0 if applicable, }{\rtlch\fcs1 \ab\af0 \ltrch\fcs0 \b\f0\cf1\insrsid8653689 
+\hich\af0\dbch\af31505\loch\f0 subject to }{\rtlch\fcs1 \ab\ai\af0 \ltrch\fcs0 \b\i\f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 Wis. Stat. Ann. }{\rtlch\fcs1 \ab\af0 \ltrch\fcs0 \b\f0\cf1\insrsid8653689 \loch\af0\dbch\af31505\hich\f0 \'a7
+\loch\f0  422.407, as amended, you will not assert your claims or defenses, arising out of the Line of Credit, against any person to whom we assign our rights under the Line of Credit (the assignee) if the assignee: is unrelated to us, a
+\hich\af0\dbch\af31505\loch\f0 
+cquires the Line of Credit in good faith and for value, gives you a notice of the assignment, and has not received notice from you of your claims or defenses within 12 months after the assignee mailed you the notice of assignment.}{\rtlch\fcs1 \af0 
+\ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0  No delay or forbearance o\hich\af0\dbch\af31505\loch\f0 
+n our part in exercising any of our rights or remedies will be construed as a waiver by us, unless such waiver is in writing and is signed by us.}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par }\pard \ltrpar\ql \li0\ri0\sb120\sl240\slmult0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0\pararsid538225 {\rtlch\fcs1 \ab\af1 \ltrch\fcs0 \b\f1\cf1\insrsid8653689 {\*\bkmkstart d15e652}{\*\bkmkend d15e641}\hich\af1\dbch\af31505\loch\f1 
+Periodic Statements. }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 If you have an outstanding balance on your account or have any account acti\hich\af0\dbch\af31505\loch\f0 
+vity, we will send you a periodic statement at the end of each Billing Cycle. This periodic statement will reflect, among other things, credit advances, interest charges, other fees and charges, payments made, other credits, your previous account balance 
+\hich\af0\dbch\af31505\loch\f0 a\hich\af0\dbch\af31505\loch\f0 nd your new account balance. The periodic statement will also identify your Minimum Payment for the cycle, the Payment Date and any other specific payment requirements.}{\rtlch\fcs1 \af0\afs2 
+\ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par }{\rtlch\fcs1 \ab\af1 \ltrch\fcs0 \b\f1\cf1\insrsid8653689 {\*\bkmkstart d15e661}{\*\bkmkend d15e652}\hich\af1\dbch\af31505\loch\f1 Joint and Individual Liability and Successors. }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 
+\hich\af0\dbch\af31505\loch\f0 
+Your obligation to pay this Line of Credit is independent of the obligation of any other person who has also agreed to pay it. We may sue you alone, or anyone else who is obligated on this Line of Credit, or any number of you together, to collect on this 
+\hich\af0\dbch\af31505\loch\f0 L\hich\af0\dbch\af31505\loch\f0 
+ine of Credit. Extending this Line of Credit or new obligations under this Line of Credit will not affect your duty under this Line of Credit and you will still be obligated to pay this Line of Credit. The duties and benefits of this Line of Credit will b
+\hich\af0\dbch\af31505\loch\f0 i\hich\af0\dbch\af31505\loch\f0 nd and benefit the successors and assigns of you and us.}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par }\pard \ltrpar\ql \li0\ri0\sb120\sl240\slmult0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 {\rtlch\fcs1 \ab\af1 \ltrch\fcs0 \b\f1\cf1\insrsid8653689 {\*\bkmkstart d15e669}{\*\bkmkend d15e661}\hich\af1\dbch\af31505\loch\f1 Integration and Severability. 
+}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 This Agreement is the complete and final expression of our agreement. If any provision of this Agreement is unenforceable, then the unenforceable provision
+\hich\af0\dbch\af31505\loch\f0  will be severed and the remaining provisions will still be enforceable, unless}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid13662512 \hich\af0\dbch\af31505\loch\f0  }{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid13662512 
+\hich\af31506\dbch\af31505\loch\f31506 if applicable as}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0  otherwise provided by the Wisconsin Consumer Act.}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+
+\par }{\rtlch\fcs1 \ab\af1 \ltrch\fcs0 \b\f1\cf1\insrsid8653689 {\*\bkmkstart d15e674}{\*\bkmkend d15e669}\hich\af1\dbch\af31505\loch\f1 Interpretation. }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 
+Whenever used, the singular includes the plural and the plural includes the sin\hich\af0\dbch\af31505\loch\f0 gular. The section headings are for convenience only and are not to be used to interpret or define the terms of this Agreement.}{\rtlch\fcs1 
+\af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par }\pard \ltrpar\ql \li0\ri0\sb120\sl240\slmult0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0\pararsid538225 {\rtlch\fcs1 \ab\af1 \ltrch\fcs0 \b\f1\cf1\insrsid8653689 {\*\bkmkstart d15e680}{\*\bkmkend d15e674}\hich\af1\dbch\af31505\loch\f1 
+Notice, Financial Reports and Additional Documents. }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 Any notice will be given by delivering it or mailing it by fir\hich\af0\dbch\af31505\loch\f0 
+st class mail to the appropriate party's address above, or to any other address designated in writing. For any notice that is required by the Wisconsin Consumer Act, we will send any notices to only one address if all Borrowers reside at that address and 
+\hich\af0\dbch\af31505\loch\f0 t\hich\af0\dbch\af31505\loch\f0 
+he notice is addressed to each of these Borrowers, and we will also send separate notices to any other Borrower who resides at a different address. You will inform us in writing of any change in your name, address or other application information. You wil
+\hich\af0\dbch\af31505\loch\f0 l\hich\af0\dbch\af31505\loch\f0  provide us any financial statement or information we request. All financial statements and information you give us will be correct and complete. Time is of the essence.}{\rtlch\fcs1 
+\af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par }{\rtlch\fcs1 \ab\af1 \ltrch\fcs0 \b\f1\cf1\insrsid8653689 {\*\bkmkstart d15e685}{\*\bkmkend d15e680}\hich\af1\dbch\af31505\loch\f1 Credit Information. }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 
+You agree to supply us with whatever information we \hich\af0\dbch\af31505\loch\f0 
+reasonably feel we need to decide whether to continue this Line of Credit. We will make requests for this information without undue frequency, and will give you reasonable time in which to }{\rtlch\fcs1 \af0 \ltrch\fcs0 
+\f0\cf1\insrsid8653689\charrsid538225 \hich\af0\dbch\af31505\loch\f0 supply the information.}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid13532285\charrsid538225 
+\par }\pard \ltrpar\ql \li0\ri0\sb120\sa200\sl240\slmult0\widctlpar\wrapdefault\faauto\rin0\lin0\itap0\pararsid538225 {\rtlch\fcs1 \ab\af1 \ltrch\fcs0 \b\f1\cf1\insrsid8653689\charrsid538225 {\*\bkmkstart d15e690}{\*\bkmkend d15e685}
+\hich\af1\dbch\af31505\loch\f1 Applicable}{\rtlch\fcs1 \ab\af1 \ltrch\fcs0 \b\f1\cf1\insrsid8653689 \hich\af1\dbch\af31505\loch\f1  Law. }{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid10751230\charrsid10751230 \hich\af31506\dbch\af31505\loch\f31506  }{
+\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\insrsid13532285\charrsid13532285 \hich\af0\dbch\af31505\loch\f0 This Agreeme\hich\af0\dbch\af31505\loch\f0 
+nt shall be governed by federal law applicable to the Lender and, to the extent not preempted by federal law, the laws of the State of Wisconsin without giving effect to the conflicts of laws principles thereof and to the extent required for loans of $25,
+0\hich\af0\dbch\af31505\loch\f0 00 or less, by the Wisconsin Consumer Act}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\insrsid16086146 .}{\rtlch\fcs1 \af0\afs20 \ltrch\fcs0 \f0\fs20\cf1\insrsid13532285\charrsid13532285 
+\par }\pard \ltrpar\ql \li0\ri0\sb120\sa200\sl240\slmult0\keepn\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0\pararsid16086146 \cbpat1 {\rtlch\fcs1 \ab\ai\af1 \ltrch\fcs0 \b\i\f1\cf8\chshdng0\chcfpat0\chcbpat1\insrsid16086146 {\*\bkmkstart d15e706}
+{\*\bkmkend d15e690}\hich\af1\dbch\af31505\loch\f1 Notices}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \fs2\insrsid16086146 
+\par }\pard \ltrpar\qc \li0\ri0\sb120\sl280\slmult0\keepn\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 {\rtlch\fcs1 \ab\af0\afs26 \ltrch\fcs0 \b\f0\fs26\cf1\insrsid8653689 {\*\bkmkend d15e706}\hich\af0\dbch\af31505\loch\f0 
+Your Billing Rights: Keep this Document for Future Use}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par }\pard \ltrpar\ql \li0\ri0\sb120\sl240\slmult0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 {\rtlch\fcs1 \ab\af0 \ltrch\fcs0 \b\f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 
+This notice tells you about your rights and our responsibilities under the Fair Credit Billing Act.}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par }\pard \ltrpar\qc \li0\ri0\sb120\sl260\slmult0\keepn\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 {\rtlch\fcs1 \ab\af0\afs24 \ltrch\fcs0 \b\f0\fs24\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 What To Do If You Find a Mistake on Your Statement}{
+\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par }\pard \ltrpar\ql \li0\ri0\sb120\sl240\slmult0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 {\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 
+If you think there is an error on your statement, write to us at the address listed on your bill.}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 In your\hich\af0\dbch\af31505\loch\f0  letter, give us the following information:}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par {\pntext\pard\plain\ltrpar \rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f3\fs22\cf1\insrsid8653689 \loch\af3\dbch\af31505\hich\f3 \'b7\tab}}\pard \ltrpar\ql \fi-40\li320\ri0\sb40\sl240\slmult0\nowidctlpar\wrapdefault{\*\pn \pnlvlblt\ilvl0\ls6\pnrnot0
+\pncf1\pnf3\pnfs22\pnstart1\pnindent360\pnsp120 {\pntxta \'b7}}\faauto\ls6\rin0\lin320\itap0 {\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 .0}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 
+Account information: Your name and account number.}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par {\pntext\pard\plain\ltrpar \rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f3\fs22\cf1\insrsid8653689 \loch\af3\dbch\af31505\hich\f3 \'b7\tab}}\pard \ltrpar\ql \fi-40\li320\ri0\sb40\sl240\slmult0\nowidctlpar\wrapdefault{\*\pn \pnlvlblt\ilvl0\ls6\pnrnot0
+\pncf1\pnf3\pnfs22\pnstart1\pnindent360\pnsp120 {\pntxta \'b7}}\faauto\ls6\rin0\lin320\itap0 {\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 .0}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 
+Dollar amount: The dollar amount of the suspected error.}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par {\pntext\pard\plain\ltrpar \rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f3\fs22\cf1\insrsid8653689 \loch\af3\dbch\af31505\hich\f3 \'b7\tab}}\pard \ltrpar\ql \fi-40\li320\ri0\sb40\sl240\slmult0\nowidctlpar\wrapdefault{\*\pn \pnlvlblt\ilvl0\ls6\pnrnot0
+\pncf1\pnf3\pnfs22\pnstart1\pnindent360\pnsp120 {\pntxta \'b7}}\faauto\ls6\rin0\lin320\itap0 {\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 .0}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 
+Description of problem: If you think there is an error on your bill, describe what you believe is wrong and why you believe it is a mistake.}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par }\pard \ltrpar\ql \li0\ri0\sb120\sl240\slmult0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 {\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 You must contact us:}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 
+\f0\fs2\insrsid8653689 
+\par {\pntext\pard\plain\ltrpar \rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f3\fs22\cf1\insrsid8653689 \loch\af3\dbch\af31505\hich\f3 \'b7\tab}}\pard \ltrpar\ql \fi-40\li320\ri0\sb40\sl240\slmult0\nowidctlpar\wrapdefault{\*\pn \pnlvlblt\ilvl0\ls7\pnrnot0
+\pncf1\pnf3\pnfs22\pnstart1\pnindent360\pnsp120 {\pntxta \'b7}}\faauto\ls7\rin0\lin320\itap0 {\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 .0}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 
+Within 60 days after the error appeared on your statement.}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par {\pntext\pard\plain\ltrpar \rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f3\fs22\cf1\insrsid8653689 \loch\af3\dbch\af31505\hich\f3 \'b7\tab}}\pard \ltrpar\ql \fi-40\li320\ri0\sb40\sl240\slmult0\nowidctlpar\wrapdefault{\*\pn \pnlvlblt\ilvl0\ls7\pnrnot0
+\pncf1\pnf3\pnfs22\pnstart1\pnindent360\pnsp120 {\pntxta \'b7}}\faauto\ls7\rin0\lin320\itap0 {\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 .0}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 
+At least 3 business days before an automated payment is scheduled, if you want to stop payment on the amount you think is wrong.}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par }\pard \ltrpar\ql \li0\ri0\sb120\sl240\slmult0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 {\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 
+You must notify us of any potential errors in writing. You may call us, but if you do we are not required to investigate any po\hich\af0\dbch\af31505\loch\f0 tential errors and you may have to pay the amount in question.}{\rtlch\fcs1 \af0\afs2 
+\ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par }\pard \ltrpar\qc \li0\ri0\sb120\sl260\slmult0\keepn\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0\pararsid7028776 {\rtlch\fcs1 \ab\af0\afs24 \ltrch\fcs0 \b\f0\fs24\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 
+What Will Happen After We Receive Your Letter}{\rtlch\fcs1 \ab\af0 \ltrch\fcs0 \b\f0\cf1\insrsid538225 
+\par }\pard \ltrpar\ql \li0\ri0\sb120\sl240\slmult0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 {\rtlch\fcs1 \ab\af0 \ltrch\fcs0 \b\f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 When we receive your letter, we must do two things:}{\rtlch\fcs1 
+\af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par {\pntext\pard\plain\ltrpar \rtlch\fcs1 \af0\afs22 \ltrch\fcs0 \fs22\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 1.\tab}}\pard \ltrpar\ql \fi-40\li320\ri0\sb40\sl240\slmult0\nowidctlpar\wrapdefault{\*\pn \pnlvlbody\ilvl0\ls8\pnrnot0
+\pndec\pncf1\pnfs22\pnstart1\pnindent360\pnsp120 {\pntxta .}}\faauto\ls8\rin0\lin320\itap0 {\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 .0}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 
+Within 30 days of receiving your letter, we must tell you that we received your letter. W\hich\af0\dbch\af31505\loch\f0 e will also tell you if we have already corrected the error.}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par {\pntext\pard\plain\ltrpar \rtlch\fcs1 \af0\afs22 \ltrch\fcs0 \fs22\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 2.\tab}}\pard \ltrpar\ql \fi-40\li320\ri0\sb40\sl240\slmult0\nowidctlpar\wrapdefault{\*\pn \pnlvlbody\ilvl0\ls8\pnrnot0
+\pndec\pncf1\pnfs22\pnstart1\pnindent360\pnsp120 {\pntxta .}}\faauto\ls8\rin0\lin320\itap0 {\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 .0}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 
+Within 90 days of receiving your letter, we must either correct the error or explain to you why we believe the bill is correct.}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par }\pard \ltrpar\ql \li0\ri0\sb120\sl240\slmult0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 {\rtlch\fcs1 \ab\af0 \ltrch\fcs0 \b\f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 While we investigate whether or not there has been an error:}{
+\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par {\pntext\pard\plain\ltrpar \rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f3\fs22\cf1\insrsid8653689 \loch\af3\dbch\af31505\hich\f3 \'b7\tab}}\pard \ltrpar\ql \fi-40\li320\ri0\sb40\sl240\slmult0\nowidctlpar\wrapdefault{\*\pn \pnlvlblt\ilvl0\ls9\pnrnot0
+\pncf1\pnf3\pnfs22\pnstart1\pnindent360\pnsp120 {\pntxta \'b7}}\faauto\ls9\rin0\lin320\itap0 {\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 .0}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 
+We cannot try to collect the amount in question, or report you as delinquent on that amount.}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par {\pntext\pard\plain\ltrpar \rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f3\fs22\cf1\insrsid8653689 \loch\af3\dbch\af31505\hich\f3 \'b7\tab}}\pard \ltrpar\ql \fi-40\li320\ri0\sb40\sl240\slmult0\nowidctlpar\wrapdefault{\*\pn \pnlvlblt\ilvl0\ls9\pnrnot0
+\pncf1\pnf3\pnfs22\pnstart1\pnindent360\pnsp120 {\pntxta \'b7}}\faauto\ls9\rin0\lin320\itap0 {\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 .0}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 
+The charge in question may remain on your statement, and we may continue to charge you interest on that amount.}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par {\pntext\pard\plain\ltrpar \rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f3\fs22\cf1\insrsid8653689 \loch\af3\dbch\af31505\hich\f3 \'b7\tab}}\pard \ltrpar\ql \fi-40\li320\ri0\sb40\sl240\slmult0\nowidctlpar\wrapdefault{\*\pn \pnlvlblt\ilvl0\ls9\pnrnot0
+\pncf1\pnf3\pnfs22\pnstart1\pnindent360\pnsp120 {\pntxta \'b7}}\faauto\ls9\rin0\lin320\itap0 {\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 .0}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 
+While you do not have to pay the amount in question, you are responsible for the remainder of your balance.}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par {\pntext\pard\plain\ltrpar \rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f3\fs22\cf1\insrsid8653689 \loch\af3\dbch\af31505\hich\f3 \'b7\tab}}\pard \ltrpar\ql \fi-40\li320\ri0\sb40\sl240\slmult0\nowidctlpar\wrapdefault{\*\pn \pnlvlblt\ilvl0\ls9\pnrnot0
+\pncf1\pnf3\pnfs22\pnstart1\pnindent360\pnsp120 {\pntxta \'b7}}\faauto\ls9\rin0\lin320\itap0 {\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 .0}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 
+We can apply any unpaid amount against your credit limit.}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par }\pard \ltrpar\ql \li0\ri0\sb120\sl240\slmult0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 {\rtlch\fcs1 \ab\af0 \ltrch\fcs0 \b\f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 After we finish our investigation, one of two things will happen:}{
+\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par {\pntext\pard\plain\ltrpar \rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f3\fs22\cf1\insrsid8653689 \loch\af3\dbch\af31505\hich\f3 \'b7\tab}}\pard \ltrpar\ql \fi-40\li320\ri0\sb40\sl240\slmult0\nowidctlpar\wrapdefault{\*\pn \pnlvlblt\ilvl0\ls10\pnrnot0
+\pncf1\pnf3\pnfs22\pnstart1\pnindent360\pnsp120 {\pntxta \'b7}}\faauto\ls10\rin0\lin320\itap0 {\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 .0}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 If we made a m
+\hich\af0\dbch\af31505\loch\f0 istake: You will not have to pay the amount in question or any interest or other fees related to that amount.}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par {\pntext\pard\plain\ltrpar \rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f3\fs22\cf1\insrsid8653689 \loch\af3\dbch\af31505\hich\f3 \'b7\tab}}\pard \ltrpar\ql \fi-40\li320\ri0\sb40\sl240\slmult0\nowidctlpar\wrapdefault{\*\pn \pnlvlblt\ilvl0\ls10\pnrnot0
+\pncf1\pnf3\pnfs22\pnstart1\pnindent360\pnsp120 {\pntxta \'b7}}\faauto\ls10\rin0\lin320\itap0 {\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 .0}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 
+If we do not believe there was a mistake: You will have to pay the amount in question, along with applicable interest and fees. We will send \hich\af0\dbch\af31505\loch\f0 
+you a statement of the amount you owe and the date payment is due. We may then report you as delinquent if you do not pay the amount we think you owe.}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par }\pard \ltrpar\ql \li0\ri0\sb120\sl240\slmult0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 {\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 
+If you receive our explanation but still believe your bill is wrong, you must write to us within 10 days \hich\af0\dbch\af31505\loch\f0 
+telling us that you still refuse to pay. If you do so, we cannot report you as delinquent without also reporting that you are questioning your bill. We must tell you the name of anyone to whom we reported you as delinquent, and we must let those organizat
+\hich\af0\dbch\af31505\loch\f0 i\hich\af0\dbch\af31505\loch\f0 ons know when the matter has been settled between us.}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 If we do not follow all of the rules above, you do not have to pay the first }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\insrsid8653689\charrsid9191359 
+\hich\af0\dbch\af31505\loch\f0 $50}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\insrsid9191874\charrsid9191359 .00}{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0  of the amount you question even if your bill is correct.}{
+\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par }\pard \ltrpar\qc \li0\ri0\sb120\sl280\slmult0\keepn\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 {\rtlch\fcs1 \ab\af0\afs26 \ltrch\fcs0 \b\f0\fs26\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 NOTICE TO COSIGNER}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 
+\f0\fs2\insrsid8653689 
+\par }\pard \ltrpar\ql \li0\ri0\sb120\sl240\slmult0\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 {\rtlch\fcs1 \ab\af0 \ltrch\fcs0 \b\f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 
+You (the cosigner) are being asked to guaranty this debt. Think carefully before you do. If the borrower doesn't pay the debt, you will have to. Be sure you can afford to pay if you have to, and that you want to accept this responsibility.}{\rtlch\fcs1 
+\af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par }{\rtlch\fcs1 \ab\af0 \ltrch\fcs0 \b\f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 You may have to \hich\af0\dbch\af31505\loch\f0 pay up to the full amount of the debt if the borrower does not pay. You also may have to pay late fees}{\rtlch\fcs1 
+\ab\af0 \ltrch\fcs0 \b\f0\cf1\insrsid12334496 \hich\af0\dbch\af31505\loch\f0  }{\rtlch\fcs1 \ab\af0 \ltrch\fcs0 \b\f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 which increase this amount.}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+
+\par }{\rtlch\fcs1 \ab\af0 \ltrch\fcs0 \b\f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 The creditor can collect this debt from you without first trying to collect from the borrower. The creditor can use the same \hich\af0\dbch\af31505\loch\f0 
+collection methods against you that can be used against the borrower, such as suing you, garnishing your wages, etc. If this debt is ever in default, that fact may become part of }{\rtlch\fcs1 \ab\ai\af0 \ltrch\fcs0 \b\i\f0\cf1\insrsid8653689 
+\hich\af0\dbch\af31505\loch\f0 your}{\rtlch\fcs1 \ab\af0 \ltrch\fcs0 \b\f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0  credit record.}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par }{\rtlch\fcs1 \ab\af0 \ltrch\fcs0 \b\f0\cf1\insrsid8653689 \hich\af0\dbch\af31505\loch\f0 This notice is not the contract that makes you liable for\hich\af0\dbch\af31505\loch\f0  the debt.}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par }\pard \ltrpar\ql \li0\ri0\sb120\sl240\slmult0\keepn\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 \cbpat1 {\rtlch\fcs1 \ab\ai\af1\afs24 \ltrch\fcs0 \b\i\f1\fs24\cf8\chshdng0\chcfpat0\chcbpat1\insrsid8653689 {\*\bkmkstart d15e823}
+\hich\af1\dbch\af31505\loch\f1 Signatures}{\rtlch\fcs1 \af0\afs2 \ltrch\fcs0 \f0\fs2\insrsid8653689 
+\par }\pard \ltrpar\ql \li0\ri0\sb120\sl240\slmult0\keepn\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0 \cbpat8 {\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\chshdng0\chcfpat0\chcbpat8\insrsid8653689 {\*\bkmkend d15e823}\hich\af0\dbch\af31505\loch\f0 
+By signing under seal, you agree to the terms of this Agreement. You also acknowledge receipt of a copy of this Agreement on today's date.
+\par }{\rtlch\fcs1 \af0 \ltrch\fcs0 \f0\cf1\chshdng0\chcfpat0\chcbpat8\insrsid9064672 
+\par }{\rtlch\fcs1 \af0 \ltrch\fcs0 \b\f0\cf1\chshdng0\chcfpat0\chcbpat8\insrsid9064672 
+\par }\pard \ltrpar\ql \li0\ri0\sb120\sl240\slmult0\keepn\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0\pararsid9064672 \cbpat8 {\rtlch\fcs1 \af0\afs24 \ltrch\fcs0 \f0\fs24\insrsid8653689 
+\par }{\rtlch\fcs1 \af0\afs24 \ltrch\fcs0 \f0\fs24\insrsid9064672 
+\par 
+\par 
+\par 
+\par 
+\par 
+\par 
+\par 
+\par 
+\par 
+\par 
+\par 
+\par 
+\par 
+\par 
+\par 
+\par 
+\par 
+\par }{\*\themedata 504b030414000600080000002100e9de0fbfff0000001c020000130000005b436f6e74656e745f54797065735d2e786d6cac91cb4ec3301045f748fc83e52d4a
+9cb2400825e982c78ec7a27cc0c8992416c9d8b2a755fbf74cd25442a820166c2cd933f79e3be372bd1f07b5c3989ca74aaff2422b24eb1b475da5df374fd9ad
+5689811a183c61a50f98f4babebc2837878049899a52a57be670674cb23d8e90721f90a4d2fa3802cb35762680fd800ecd7551dc18eb899138e3c943d7e503b6
+b01d583deee5f99824e290b4ba3f364eac4a430883b3c092d4eca8f946c916422ecab927f52ea42b89a1cd59c254f919b0e85e6535d135a8de20f20b8c12c3b0
+0c895fcf6720192de6bf3b9e89ecdbd6596cbcdd8eb28e7c365ecc4ec1ff1460f53fe813d3cc7f5b7f020000ffff0300504b030414000600080000002100a5d6
+a7e7c0000000360100000b0000005f72656c732f2e72656c73848fcf6ac3300c87ef85bd83d17d51d2c31825762fa590432fa37d00e1287f68221bdb1bebdb4f
+c7060abb0884a4eff7a93dfeae8bf9e194e720169aaa06c3e2433fcb68e1763dbf7f82c985a4a725085b787086a37bdbb55fbc50d1a33ccd311ba548b6309512
+0f88d94fbc52ae4264d1c910d24a45db3462247fa791715fd71f989e19e0364cd3f51652d73760ae8fa8c9ffb3c330cc9e4fc17faf2ce545046e37944c69e462
+a1a82fe353bd90a865aad41ed0b5b8f9d6fd010000ffff0300504b0304140006000800000021006b799616830000008a0000001c0000007468656d652f746865
+6d652f7468656d654d616e616765722e786d6c0ccc4d0ac3201040e17da17790d93763bb284562b2cbaebbf600439c1a41c7a0d29fdbd7e5e38337cedf14d59b
+4b0d592c9c070d8a65cd2e88b7f07c2ca71ba8da481cc52c6ce1c715e6e97818c9b48d13df49c873517d23d59085adb5dd20d6b52bd521ef2cdd5eb9246a3d8b
+4757e8d3f729e245eb2b260a0238fd010000ffff0300504b03041400060008000000210096b5ade296060000501b0000160000007468656d652f7468656d652f
+7468656d65312e786d6cec594f6fdb3614bf0fd87720746f6327761a07758ad8b19b2d4d1bc46e871e698996d850a240d2497d1bdae38001c3ba618715d86d87
+615b8116d8a5fb34d93a6c1dd0afb0475292c5585e9236d88aad3e2412f9e3fbff1e1fa9abd7eec70c1d1221294fda5efd72cd4324f1794093b0eddd1ef62fad
+79482a9c0498f184b4bd2991deb58df7dfbb8ad755446282607d22d771db8b944ad79796a40fc3585ee62949606ecc458c15bc8a702910f808e8c66c69b9565b
+5d8a314d3c94e018c8de1a8fa94fd05093f43672e23d06af89927ac06762a049136785c10607758d9053d965021d62d6f6804fc08f86e4bef210c352c144dbab
+999fb7b4717509af678b985ab0b6b4ae6f7ed9ba6c4170b06c788a705430adf71bad2b5b057d03606a1ed7ebf5babd7a41cf00b0ef83a6569632cd467faddec9
+699640f6719e76b7d6ac355c7c89feca9cccad4ea7d36c65b258a206641f1b73f8b5da6a6373d9c11b90c537e7f08dce66b7bbeae00dc8e257e7f0fd2badd586
+8b37a088d1e4600ead1ddaef67d40bc898b3ed4af81ac0d76a197c86826828a24bb318f3442d8ab518dfe3a20f000d6458d104a9694ac6d88728eee2782428d6
+0cf03ac1a5193be4cbb921cd0b495fd054b5bd0f530c1931a3f7eaf9f7af9e3f45c70f9e1d3ff8e9f8e1c3e3073f5a42ceaa6d9c84e5552fbffdeccfc71fa33f
+9e7ef3f2d117d57859c6fffac327bffcfc793510d26726ce8b2f9ffcf6ecc98baf3efdfdbb4715f04d814765f890c644a29be408edf3181433567125272371be
+15c308d3f28acd249438c19a4b05fd9e8a1cf4cd296699771c393ac4b5e01d01e5a30a787d72cf1178108989a2159c77a2d801ee72ce3a5c545a6147f32a9979
+3849c26ae66252c6ed637c58c5bb8b13c7bfbd490a75330f4b47f16e441c31f7184e140e494214d273fc80900aedee52ead87597fa824b3e56e82e451d4c2b4d
+32a423279a668bb6690c7e9956e90cfe766cb37b077538abd27a8b1cba48c80acc2a841f12e698f13a9e281c57911ce298950d7e03aba84ac8c154f8655c4f2a
+f074481847bd804859b5e696007d4b4edfc150b12addbecba6b18b148a1e54d1bc81392f23b7f84137c2715a851dd0242a633f900710a218ed715505dfe56e86
+e877f0034e16bafb0e258ebb4faf06b769e888340b103d3311da9750aa9d0a1cd3e4efca31a3508f6d0c5c5c398602f8e2ebc71591f5b616e24dd893aa3261fb
+44f95d843b5974bb5c04f4edafb95b7892ec1108f3f98de75dc97d5772bdff7cc95d94cf672db4b3da0a6557f70db629362d72bcb0431e53c6066acac80d699a
+6409fb44d08741bdce9c0e4971624a2378cceaba830b05366b90e0ea23aaa241845368b0eb9e2612ca8c742851ca251ceccc70256d8d87265dd96361531f186c
+3d9058edf2c00eafe8e1fc5c509031bb4d680e9f39a3154de0accc56ae644441edd76156d7429d995bdd88664a9dc3ad50197c38af1a0c16d684060441db0256
+5e85f3b9660d0713cc48a0ed6ef7dedc2dc60b17e92219e180643ed27acffba86e9c94c78ab90980d8a9f0913ee49d62b512b79626fb06dccee2a432bbc60276
+b9f7dec44b7904cfbca4f3f6443ab2a49c9c2c41476dafd55c6e7ac8c769db1bc399161ee314bc2e75cf8759081743be1236ec4f4d6693e5336fb672c5dc24a8
+c33585b5fb9cc24e1d4885545b58463634cc5416022cd19cacfccb4d30eb45296023fd35a458598360f8d7a4003bbaae25e331f155d9d9a5116d3bfb9a95523e
+51440ca2e0088dd844ec6370bf0e55d027a012ae264c45d02f708fa6ad6da6dce29c255df9f6cae0ec38666984b372ab5334cf640b37795cc860de4ae2816e95
+b21be5ceaf8a49f90b52a51cc6ff3355f47e0237052b81f6800fd7b802239daf6d8f0b1571a8426944fdbe80c6c1d40e8816b88b8569082ab84c36ff0539d4ff
+6dce591a26ade1c0a7f669880485fd484582903d284b26fa4e2156cff62e4b9265844c4495c495a9157b440e091bea1ab8aaf7760f4510eaa69a6465c0e04ec6
+9ffb9e65d028d44d4e39df9c1a52ecbd3607fee9cec7263328e5d661d3d0e4f62f44acd855ed7ab33cdf7bcb8ae889599bd5c8b3029895b6825696f6af29c239
+b75a5bb1e6345e6ee6c28117e73586c1a2214ae1be07e93fb0ff51e133fb65426fa843be0fb515c187064d0cc206a2fa926d3c902e907670048d931db4c1a449
+59d366ad93b65abe595f70a75bf03d616c2dd959fc7d4e6317cd99cbcec9c58b34766661c7d6766ca1a9c1b327531486c6f941c638c67cd22a7f75e2a37be0e8
+2db8df9f30254d30c1372581a1f51c983c80e4b71ccdd28dbf000000ffff0300504b0304140006000800000021000dd1909fb60000001b010000270000007468
+656d652f7468656d652f5f72656c732f7468656d654d616e616765722e786d6c2e72656c73848f4d0ac2301484f78277086f6fd3ba109126dd88d0add40384e4
+350d363f2451eced0dae2c082e8761be9969bb979dc9136332de3168aa1a083ae995719ac16db8ec8e4052164e89d93b64b060828e6f37ed1567914b284d2624
+52282e3198720e274a939cd08a54f980ae38a38f56e422a3a641c8bbd048f7757da0f19b017cc524bd62107bd5001996509affb3fd381a89672f1f165dfe5141
+73d9850528a2c6cce0239baa4c04ca5bbabac4df000000ffff0300504b01022d0014000600080000002100e9de0fbfff0000001c020000130000000000000000
+0000000000000000005b436f6e74656e745f54797065735d2e786d6c504b01022d0014000600080000002100a5d6a7e7c0000000360100000b00000000000000
+000000000000300100005f72656c732f2e72656c73504b01022d00140006000800000021006b799616830000008a0000001c0000000000000000000000000019
+0200007468656d652f7468656d652f7468656d654d616e616765722e786d6c504b01022d001400060008000000210096b5ade296060000501b00001600000000
+000000000000000000d60200007468656d652f7468656d652f7468656d65312e786d6c504b01022d00140006000800000021000dd1909fb60000001b01000027
+00000000000000000000000000a00900007468656d652f7468656d652f5f72656c732f7468656d654d616e616765722e786d6c2e72656c73504b050600000000050005005d0100009b0a00000000}
+{\*\colorschememapping 3c3f786d6c2076657273696f6e3d22312e302220656e636f64696e673d225554462d3822207374616e64616c6f6e653d22796573223f3e0d0a3c613a636c724d
+617020786d6c6e733a613d22687474703a2f2f736368656d61732e6f70656e786d6c666f726d6174732e6f72672f64726177696e676d6c2f323030362f6d6169
+6e22206267313d226c743122207478313d22646b3122206267323d226c743222207478323d22646b322220616363656e74313d22616363656e74312220616363
+656e74323d22616363656e74322220616363656e74333d22616363656e74332220616363656e74343d22616363656e74342220616363656e74353d22616363656e74352220616363656e74363d22616363656e74362220686c696e6b3d22686c696e6b2220666f6c486c696e6b3d22666f6c486c696e6b222f3e}
+{\*\latentstyles\lsdstimax376\lsdlockeddef0\lsdsemihiddendef0\lsdunhideuseddef0\lsdqformatdef0\lsdprioritydef99{\lsdlockedexcept \lsdqformat1 \lsdpriority0 \lsdlocked0 Normal;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 1;
+\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 2;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 3;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 4;
+\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 5;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 6;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 7;
+\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 8;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 9;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 1;
+\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 2;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 3;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 4;
+\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 5;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 6;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 7;
+\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 8;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 9;\lsdsemihidden1 \lsdunhideused1 \lsdpriority0 \lsdlocked0 annotation text;
+\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority35 \lsdlocked0 caption;\lsdsemihidden1 \lsdunhideused1 \lsdpriority0 \lsdlocked0 annotation reference;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 table of authorities;
+\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Bullet;\lsdqformat1 \lsdpriority10 \lsdlocked0 Title;\lsdsemihidden1 \lsdunhideused1 \lsdpriority1 \lsdlocked0 Default Paragraph Font;
+\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Continue 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Continue 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Continue 4;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Continue 5;
+\lsdqformat1 \lsdpriority11 \lsdlocked0 Subtitle;\lsdqformat1 \lsdpriority22 \lsdlocked0 Strong;\lsdqformat1 \lsdpriority20 \lsdlocked0 Emphasis;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Web 2;
+\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Web 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Balloon Text;\lsdsemihidden1 \lsdunhideused1 \lsdpriority59 \lsdlocked0 Table Grid;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Theme;
+\lsdsemihidden1 \lsdlocked0 Placeholder Text;\lsdqformat1 \lsdpriority1 \lsdlocked0 No Spacing;\lsdpriority60 \lsdlocked0 Light Shading;\lsdpriority61 \lsdlocked0 Light List;\lsdpriority62 \lsdlocked0 Light Grid;
+\lsdpriority63 \lsdlocked0 Medium Shading 1;\lsdpriority64 \lsdlocked0 Medium Shading 2;\lsdpriority65 \lsdlocked0 Medium List 1;\lsdpriority66 \lsdlocked0 Medium List 2;\lsdpriority67 \lsdlocked0 Medium Grid 1;\lsdpriority68 \lsdlocked0 Medium Grid 2;
+\lsdpriority69 \lsdlocked0 Medium Grid 3;\lsdpriority70 \lsdlocked0 Dark List;\lsdpriority71 \lsdlocked0 Colorful Shading;\lsdpriority72 \lsdlocked0 Colorful List;\lsdpriority73 \lsdlocked0 Colorful Grid;\lsdpriority60 \lsdlocked0 Light Shading Accent 1;
+\lsdpriority61 \lsdlocked0 Light List Accent 1;\lsdpriority62 \lsdlocked0 Light Grid Accent 1;\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 1;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 1;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 1;
+\lsdsemihidden1 \lsdlocked0 Revision;\lsdqformat1 \lsdpriority34 \lsdlocked0 List Paragraph;\lsdqformat1 \lsdpriority29 \lsdlocked0 Quote;\lsdqformat1 \lsdpriority30 \lsdlocked0 Intense Quote;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 1;
+\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 1;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 1;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 1;\lsdpriority70 \lsdlocked0 Dark List Accent 1;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 1;
+\lsdpriority72 \lsdlocked0 Colorful List Accent 1;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 1;\lsdpriority60 \lsdlocked0 Light Shading Accent 2;\lsdpriority61 \lsdlocked0 Light List Accent 2;\lsdpriority62 \lsdlocked0 Light Grid Accent 2;
+\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 2;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 2;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 2;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 2;
+\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 2;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 2;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 2;\lsdpriority70 \lsdlocked0 Dark List Accent 2;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 2;
+\lsdpriority72 \lsdlocked0 Colorful List Accent 2;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 2;\lsdpriority60 \lsdlocked0 Light Shading Accent 3;\lsdpriority61 \lsdlocked0 Light List Accent 3;\lsdpriority62 \lsdlocked0 Light Grid Accent 3;
+\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 3;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 3;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 3;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 3;
+\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 3;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 3;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 3;\lsdpriority70 \lsdlocked0 Dark List Accent 3;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 3;
+\lsdpriority72 \lsdlocked0 Colorful List Accent 3;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 3;\lsdpriority60 \lsdlocked0 Light Shading Accent 4;\lsdpriority61 \lsdlocked0 Light List Accent 4;\lsdpriority62 \lsdlocked0 Light Grid Accent 4;
+\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 4;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 4;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 4;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 4;
+\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 4;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 4;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 4;\lsdpriority70 \lsdlocked0 Dark List Accent 4;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 4;
+\lsdpriority72 \lsdlocked0 Colorful List Accent 4;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 4;\lsdpriority60 \lsdlocked0 Light Shading Accent 5;\lsdpriority61 \lsdlocked0 Light List Accent 5;\lsdpriority62 \lsdlocked0 Light Grid Accent 5;
+\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 5;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 5;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 5;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 5;
+\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 5;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 5;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 5;\lsdpriority70 \lsdlocked0 Dark List Accent 5;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 5;
+\lsdpriority72 \lsdlocked0 Colorful List Accent 5;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 5;\lsdpriority60 \lsdlocked0 Light Shading Accent 6;\lsdpriority61 \lsdlocked0 Light List Accent 6;\lsdpriority62 \lsdlocked0 Light Grid Accent 6;
+\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 6;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 6;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 6;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 6;
+\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 6;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 6;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 6;\lsdpriority70 \lsdlocked0 Dark List Accent 6;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 6;
+\lsdpriority72 \lsdlocked0 Colorful List Accent 6;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 6;\lsdqformat1 \lsdpriority19 \lsdlocked0 Subtle Emphasis;\lsdqformat1 \lsdpriority21 \lsdlocked0 Intense Emphasis;
+\lsdqformat1 \lsdpriority31 \lsdlocked0 Subtle Reference;\lsdqformat1 \lsdpriority32 \lsdlocked0 Intense Reference;\lsdqformat1 \lsdpriority33 \lsdlocked0 Book Title;\lsdsemihidden1 \lsdunhideused1 \lsdpriority37 \lsdlocked0 Bibliography;
+\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority39 \lsdlocked0 TOC Heading;\lsdpriority41 \lsdlocked0 Plain Table 1;\lsdpriority42 \lsdlocked0 Plain Table 2;\lsdpriority43 \lsdlocked0 Plain Table 3;\lsdpriority44 \lsdlocked0 Plain Table 4;
+\lsdpriority45 \lsdlocked0 Plain Table 5;\lsdpriority40 \lsdlocked0 Grid Table Light;\lsdpriority46 \lsdlocked0 Grid Table 1 Light;\lsdpriority47 \lsdlocked0 Grid Table 2;\lsdpriority48 \lsdlocked0 Grid Table 3;\lsdpriority49 \lsdlocked0 Grid Table 4;
+\lsdpriority50 \lsdlocked0 Grid Table 5 Dark;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful;\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful;\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 1;\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 1;
+\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 1;\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 1;\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 1;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 1;
+\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 1;\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 2;\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 2;\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 2;
+\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 2;\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 2;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 2;\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 2;
+\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 3;\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 3;\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 3;\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 3;
+\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 3;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 3;\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 3;\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 4;
+\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 4;\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 4;\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 4;\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 4;
+\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 4;\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 4;\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 5;\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 5;
+\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 5;\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 5;\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 5;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 5;
+\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 5;\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 6;\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 6;\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 6;
+\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 6;\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 6;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 6;\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 6;
+\lsdpriority46 \lsdlocked0 List Table 1 Light;\lsdpriority47 \lsdlocked0 List Table 2;\lsdpriority48 \lsdlocked0 List Table 3;\lsdpriority49 \lsdlocked0 List Table 4;\lsdpriority50 \lsdlocked0 List Table 5 Dark;
+\lsdpriority51 \lsdlocked0 List Table 6 Colorful;\lsdpriority52 \lsdlocked0 List Table 7 Colorful;\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 1;\lsdpriority47 \lsdlocked0 List Table 2 Accent 1;\lsdpriority48 \lsdlocked0 List Table 3 Accent 1;
+\lsdpriority49 \lsdlocked0 List Table 4 Accent 1;\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 1;\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 1;\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 1;
+\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 2;\lsdpriority47 \lsdlocked0 List Table 2 Accent 2;\lsdpriority48 \lsdlocked0 List Table 3 Accent 2;\lsdpriority49 \lsdlocked0 List Table 4 Accent 2;
+\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 2;\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 2;\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 2;\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 3;
+\lsdpriority47 \lsdlocked0 List Table 2 Accent 3;\lsdpriority48 \lsdlocked0 List Table 3 Accent 3;\lsdpriority49 \lsdlocked0 List Table 4 Accent 3;\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 3;
+\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 3;\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 3;\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 4;\lsdpriority47 \lsdlocked0 List Table 2 Accent 4;
+\lsdpriority48 \lsdlocked0 List Table 3 Accent 4;\lsdpriority49 \lsdlocked0 List Table 4 Accent 4;\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 4;\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 4;
+\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 4;\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 5;\lsdpriority47 \lsdlocked0 List Table 2 Accent 5;\lsdpriority48 \lsdlocked0 List Table 3 Accent 5;
+\lsdpriority49 \lsdlocked0 List Table 4 Accent 5;\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 5;\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 5;\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 5;
+\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 6;\lsdpriority47 \lsdlocked0 List Table 2 Accent 6;\lsdpriority48 \lsdlocked0 List Table 3 Accent 6;\lsdpriority49 \lsdlocked0 List Table 4 Accent 6;
+\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 6;\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 6;\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 6;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Mention;
+\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Smart Hyperlink;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Hashtag;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Unresolved Mention;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Smart Link;}}{\*\datastore 01050000
+02000000180000004d73786d6c322e534158584d4c5265616465722e362e30000000000000000000000e0000
+d0cf11e0a1b11ae1000000000000000000000000000000003e000300feff0900060000000000000000000000010000000100000000000000001000000200000001000000feffffff0000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
+ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
+ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
+ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
+fffffffffffffffffdffffff04000000feffffff05000000fefffffffeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
+ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
+ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
+ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
+ffffffffffffffffffffffffffffffff52006f006f007400200045006e00740072007900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016000500ffffffffffffffff010000000c6ad98892f1d411a65f0040963251e500000000000000000000000080a4
+77459331d50103000000c0020000000000004d0073006f004400610074006100530074006f0072006500000000000000000000000000000000000000000000000000000000000000000000000000000000001a000101ffffffffffffffff02000000000000000000000000000000000000000000000080a477459331d501
+80a477459331d50100000000000000000000000047004b00db00c1004700cc00de00c500d10055003400d2005300d00041004d00c200570032005800dd00c0003d003d000000000000000000000000000000000032000101ffffffffffffffff03000000000000000000000000000000000000000000000080a477459331
+d50180a477459331d5010000000000000000000000004900740065006d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000201ffffffff04000000ffffffff000000000000000000000000000000000000000000000000
+000000000000000000000000000000000e0100000000000001000000020000000300000004000000feffffff060000000700000008000000090000000a000000feffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
+ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
+ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
+ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
+ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff3c3f786d6c2076657273696f6e3d22312e302220656e636f64696e673d225554462d3822207374616e64616c6f6e653d226e6f223f3e3c623a536f75726365732053656c65637465645374796c653d225c4150412e58534c22205374796c
+654e616d653d224150412220786d6c6e733a623d22687474703a2f2f736368656d61732e6f70656e786d6c666f726d6174732e6f72672f6f6666696365446f63756d656e742f323030362f6269626c696f6772617068792220786d6c6e733d22687474703a2f2f736368656d61732e6f70656e786d6c666f726d6174732e
+6f72672f6f6666696365446f63756d656e742f323030362f6269626c696f677261706879223e3c2f623a536f75726365733e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003c3f786d6c2076657273696f6e3d22312e302220656e636f6469
+6e673d225554462d3822207374616e64616c6f6e653d226e6f223f3e0d0a3c64733a6461746173746f72654974656d2064733a6974656d49443d227b31414531414531382d413543462d343743352d423234422d3030304338393637313746367d2220786d6c6e733a64733d22687474703a2f2f736368656d61732e6f70
+656e786d6c666f726d6174732e6f72672f6f6666696365446f63756d656e742f323030362f637573500072006f007000650072007400690065007300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016000200ffffffffffffffffffffffff000000000000
+0000000000000000000000000000000000000000000000000000000000000500000055010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff00000000
+00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff0000
+000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff
+000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000746f6d586d6c223e3c64733a736368656d61526566733e3c64733a736368656d615265662064733a7572693d22687474703a2f2f736368656d61732e6f70656e786d6c666f726d6174732e6f7267
+2f6f6666696365446f63756d656e742f323030362f6269626c696f677261706879222f3e3c2f64733a736368656d61526566733e3c2f64733a6461746173746f72654974656d3e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
+000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
+000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
+00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000105000000000000}}
\ No newline at end of file