]> granicus.if.org Git - multimarkdown/commitdiff
ADDED: Continue ODF progress
authorFletcher T. Penney <fletcher@fletcherpenney.net>
Fri, 3 Mar 2017 16:18:10 +0000 (11:18 -0500)
committerFletcher T. Penney <fletcher@fletcherpenney.net>
Fri, 3 Mar 2017 16:18:10 +0000 (11:18 -0500)
Sources/libMultiMarkdown/odf.c
tests/MMD6Tests/Cross-References.fodt [moved from tests/MMD6Tests/Basic Lists.fodt with 86% similarity]
tests/MMD6Tests/Edge Cases 2.fodt [new file with mode: 0644]
tests/MMD6Tests/Edge Cases.fodt [new file with mode: 0644]
tests/MMD6Tests/Emph and Strong Star.fodt [new file with mode: 0644]
tests/MMD6Tests/Emph and Strong UL.fodt [new file with mode: 0644]

index f7ea55b879457d32b7f2281f31de8c3b1877d02a..a4184556a6f0cddeea3f22961ddfc111b2669228 100644 (file)
@@ -476,6 +476,27 @@ void mmd_export_token_odf(DString * out, const char * source, token * t, scratch
                case COLON:
                        print_char(':');
                        break;
+               case DASH_M:
+                       if (!(scratch->extensions & EXT_SMART)) {
+                               print_token(t);
+                       } else {
+                               print_localized(DASH_M);
+                       }
+                       break;
+               case DASH_N:
+                       if (!(scratch->extensions & EXT_SMART)) {
+                               print_token(t);
+                       } else {
+                               print_localized(DASH_N);
+                       }
+                       break;
+               case ELLIPSIS:
+                       if (!(scratch->extensions & EXT_SMART)) {
+                               print_token(t);
+                       } else {
+                               print_localized(ELLIPSIS);
+                       }
+                       break;
                case EMPH_START:
                        print_const("<text:span text:style-name=\"MMD-Italic\">");
                        break;
@@ -506,6 +527,44 @@ void mmd_export_token_odf(DString * out, const char * source, token * t, scratch
                case MARKER_LIST_BULLET:
                case MARKER_LIST_ENUMERATOR:
                        break;
+               case MATH_BRACKET_OPEN:
+                       if (t->mate) {
+                               print_const("<text:span text:style-name=\"math\">\\[");
+                       } else
+                               print_const("\\[");
+                       break;
+               case MATH_BRACKET_CLOSE:
+                       if (t->mate) {
+                               print_const("\\]</text:span>");
+                       } else
+                               print_const("\\]");
+                       break;
+               case MATH_DOLLAR_SINGLE:
+                       if (t->mate) {
+                               (t->start < t->mate->start) ? ( print_const("<text:span text:style-name=\"math\">\\(") ) : ( print_const("\\)</text:span>") );
+                       } else {
+                               print_const("$");
+                       }
+                       break;
+               case MATH_DOLLAR_DOUBLE:
+                       if (t->mate) {
+                               (t->start < t->mate->start) ? ( print_const("<text:span text:style-name=\"math\">\\[") ) : ( print_const("\\]</text:span>") );
+                       } else {
+                               print_const("$$");
+                       }
+                       break;
+               case MATH_PAREN_OPEN:
+                       if (t->mate) {
+                               print_const("<text:span text:style-name=\"math\">\\(");
+                       } else
+                               print_const("\\(");
+                       break;
+               case MATH_PAREN_CLOSE:
+                       if (t->mate) {
+                               print_const("\\)</text:span>");
+                       } else
+                               print_const("\\)");
+                       break;
                case NON_INDENT_SPACE:
                        print_char(' ');
                        break;
@@ -647,6 +706,28 @@ void mmd_export_token_odf(DString * out, const char * source, token * t, scratch
                case STRONG_STOP:
                        print_const("</text:span>");
                        break;
+               case SUBSCRIPT:
+                       if (t->mate) {
+                               (t->start < t->mate->start) ? (print_const("<text:span text:style-name=\"MMD-Subscript\">")) : (print_const("</text:span>"));
+                       } else if (t->len != 1) {
+                               print_const("<text:span text:style-name=\"MMD-Subscript\">");
+                               mmd_export_token_odf(out, source, t->child, scratch);
+                               print_const("</text:span>");
+                       } else {
+                               print_const("~");
+                       }
+                       break;
+               case SUPERSCRIPT:
+                       if (t->mate) {
+                               (t->start < t->mate->start) ? (print_const("<text:span text:style-name=\"MMD-Superscript\">")) : (print_const("</text:span>"));
+                       } else if (t->len != 1) {
+                               print_const("<text:span text:style-name=\"MMD-Superscript\">");
+                               mmd_export_token_odf(out, source, t->child, scratch);
+                               print_const("</text:span>");
+                       } else {
+                               print_const("^");
+                       }       
+                       break;
                case TEXT_EMPTY:
                        break;
                case TEXT_LINEBREAK:
@@ -659,9 +740,16 @@ void mmd_export_token_odf(DString * out, const char * source, token * t, scratch
                        if (t->next)
                                print_char('\n');
                        break;
+               case TEXT_BACKSLASH:
+               case TEXT_BRACE_LEFT:
+               case TEXT_BRACE_RIGHT:
+               case TEXT_HASH:
                case TEXT_NUMBER_POSS_LIST:
+               case TEXT_PERCENT:
                case TEXT_PERIOD:
                case TEXT_PLAIN:
+               case TOC:
+               case UL:
                        print_token(t);
                        break;
                default:
similarity index 86%
rename from tests/MMD6Tests/Basic Lists.fodt
rename to tests/MMD6Tests/Cross-References.fodt
index d6a99464aff5a8dbd39552421d423dfdb9857ef4..da489de8fd72dc871e945c5198f5267856b7427e 100644 (file)
  </office:master-styles>
 <office:body>
 <office:text>
-<text:list text:style-name="L1"><text:list-item>
-<text:p text:style-name="P1">foo</text:p></text:list-item>
-<text:list-item>
-<text:p text:style-name="P1">foo</text:p></text:list-item>
-<text:list-item>
-<text:p text:style-name="P1">foo</text:p></text:list-item>
-</text:list>
+<text:h text:outline-level="1"><text:bookmark text:name="asection"/>A Section <text:bookmark-end text:name="asection"/></text:h>
 
-<text:p text:style-name="Standard">bar</text:p>
+<text:h text:outline-level="1"><text:bookmark text:name="109canstartwithdigit"/>109&amp;*&amp;#()^ Can Start With Digit <text:bookmark-end text:name="109canstartwithdigit"/></text:h>
 
-<text:list text:style-name="L1"><text:list-item>
-<text:p text:style-name="P1">foo</text:p>
-</text:list-item>
-<text:list-item>
-<text:p text:style-name="P1">foo</text:p>
-</text:list-item>
-<text:list-item>
-<text:p text:style-name="P1">foo</text:p>
-</text:list-item>
-</text:list>
+<text:h text:outline-level="1"><text:bookmark text:name="stripoutcharacters"/>Strip out &amp;%^ characters &amp;*^ <text:bookmark-end text:name="stripoutcharacters"/></text:h>
 
-<text:p text:style-name="Standard">bar</text:p>
+<text:p text:style-name="Standard"><text:a xlink:type="simple" xlink:href="#asection">A Section</text:a>.</text:p>
 
-<text:list text:style-name="L1"><text:list-item>
-<text:p text:style-name="P1">foo</text:p>
-</text:list-item>
-<text:list-item>
-<text:p text:style-name="P1">foo</text:p>
-</text:list-item>
-<text:list-item>
-<text:p text:style-name="P1">foo</text:p>
-</text:list-item>
-</text:list>
+<text:h text:outline-level="2"><text:bookmark text:name="1cross-references:specialcharacters"/>1 Cross-References: Special Characters!@#$%&amp;*()&lt;&gt;^ <text:bookmark-end text:name="1cross-references:specialcharacters"/></text:h>
 
 <text:p text:style-name="Standard">5</text:p>
 
-<text:list text:style-name="L2"><text:list-item>
-<text:p text:style-name="P2">foo</text:p></text:list-item>
-<text:list-item>
-<text:p text:style-name="P2">foo</text:p></text:list-item>
-<text:list-item>
-<text:p text:style-name="P2">foo</text:p></text:list-item>
-</text:list>
+<text:p text:style-name="Standard">And now, link to <text:a xlink:type="simple" xlink:href="#1cross-references:specialcharacters">1 Cross-References: Special Characters!@#$%&amp;*()&lt;&gt;^</text:a></text:p>
 
-<text:p text:style-name="Standard">bar</text:p>
+<text:h text:outline-level="1"><text:bookmark text:name="Заголовокпо-русски"/>Заголовок по-русски <text:bookmark-end text:name="Заголовокпо-русски"/></text:h>
 
-<text:list text:style-name="L2"><text:list-item>
-<text:p text:style-name="P2">foo</text:p>
-</text:list-item>
-<text:list-item>
-<text:p text:style-name="P2">foo</text:p>
-</text:list-item>
-<text:list-item>
-<text:p text:style-name="P2">foo</text:p>
-</text:list-item>
-</text:list>
+<text:p text:style-name="Standard">И ссылка на <text:a xlink:type="simple" xlink:href="#Заголовокпо-русски">Заголовок по-русски</text:a>.</text:p>
 
-<text:p text:style-name="Standard">bar</text:p>
-
-<text:list text:style-name="L2"><text:list-item>
-<text:p text:style-name="P2">foo</text:p>
-</text:list-item>
-<text:list-item>
-<text:p text:style-name="P2">foo</text:p>
-</text:list-item>
-<text:list-item>
-<text:p text:style-name="P2">foo</text:p>
-</text:list-item>
-</text:list>
+<text:h text:outline-level="1"><text:bookmark text:name="test的multibyte"/>Test 的 Multibyte <text:bookmark-end text:name="test的multibyte"/></text:h>
 
 <text:p text:style-name="Standard">10</text:p>
-
-<text:list text:style-name="L1"><text:list-item>
-<text:p text:style-name="P1">foo</text:p></text:list-item>
-<text:list-item>
-<text:p text:style-name="P1">foo</text:p></text:list-item>
-<text:list-item>
-<text:p text:style-name="P1">foo</text:p></text:list-item>
-</text:list>
-
-<text:p text:style-name="Standard">bar</text:p>
-
-<text:list text:style-name="L1"><text:list-item>
-<text:p text:style-name="P1">foo</text:p></text:list-item>
-<text:list-item>
-<text:p text:style-name="P1">foo</text:p></text:list-item>
-<text:list-item>
-<text:p text:style-name="P1">foo</text:p></text:list-item>
-</text:list>
-
-<text:p text:style-name="Standard">bar</text:p>
-
-<text:list text:style-name="L1"><text:list-item>
-<text:p text:style-name="P1">foo
-bar</text:p></text:list-item>
-<text:list-item>
-<text:p text:style-name="P1">foo
-bar</text:p></text:list-item>
-<text:list-item>
-<text:p text:style-name="P1">foo
-bar</text:p></text:list-item>
-</text:list>
-
-<text:p text:style-name="Standard">15</text:p>
 </office:text>
 </office:body>
 </office:document>
diff --git a/tests/MMD6Tests/Edge Cases 2.fodt b/tests/MMD6Tests/Edge Cases 2.fodt
new file mode 100644 (file)
index 0000000..f9f28ba
--- /dev/null
@@ -0,0 +1,329 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<office:document xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0"
+     xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0"
+     xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0"
+     xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0"
+     xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0"
+     xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0"
+     xmlns:xlink="http://www.w3.org/1999/xlink"
+     xmlns:dc="http://purl.org/dc/elements/1.1/"
+     xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0"
+     xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0"
+     xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0"
+     xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0"
+     xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0"
+     xmlns:math="http://www.w3.org/1998/Math/MathML"
+     xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0"
+     xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0"
+     xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0"
+     xmlns:ooo="http://openoffice.org/2004/office"
+     xmlns:ooow="http://openoffice.org/2004/writer"
+     xmlns:oooc="http://openoffice.org/2004/calc"
+     xmlns:dom="http://www.w3.org/2001/xml-events"
+     xmlns:xforms="http://www.w3.org/2002/xforms"
+     xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+     xmlns:rpt="http://openoffice.org/2005/report"
+     xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2"
+     xmlns:xhtml="http://www.w3.org/1999/xhtml"
+     xmlns:grddl="http://www.w3.org/2003/g/data-view#"
+     xmlns:tableooo="http://openoffice.org/2009/table"
+     xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0"
+     xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0"
+     xmlns:css3t="http://www.w3.org/TR/css3-text/"
+     office:version="1.2"
+     grddl:transformation="http://docs.oasis-open.org/office/1.2/xslt/odf2rdf.xsl"
+     office:mimetype="application/vnd.oasis.opendocument.text">
+<office:font-face-decls>
+   <style:font-face style:name="Courier New" svg:font-family="'Courier New'"
+                    style:font-adornments="Regular"
+                    style:font-family-generic="modern"
+                    style:font-pitch="fixed"/>
+</office:font-face-decls>
+<office:styles>
+<style:style style:name="Standard" style:family="paragraph" style:class="text">
+      <style:paragraph-properties fo:margin-top="0in" fo:margin-bottom="0.15in"     fo:text-align="justify" style:justify-single-word="false"/>
+   </style:style>
+<style:style style:name="Preformatted_20_Text" style:display-name="Preformatted Text"
+             style:family="paragraph"
+             style:parent-style-name="Standard"
+             style:class="html">
+   <style:paragraph-properties fo:margin-top="0in" fo:margin-bottom="0in" fo:text-align="start"
+                               style:justify-single-word="false"/>
+   <style:text-properties style:font-name="Courier New" fo:font-size="11pt"
+                          style:font-name-asian="Courier New"
+                          style:font-size-asian="11pt"
+                          style:font-name-complex="Courier New"
+                          style:font-size-complex="11pt"/>
+</style:style>
+<style:style style:name="Source_20_Text" style:display-name="Source Text"
+             style:family="text">
+   <style:text-properties style:font-name="Courier New" style:font-name-asian="Courier New"
+                          style:font-name-complex="Courier New"
+                          fo:font-size="11pt"/>
+</style:style>
+<style:style style:name="List" style:family="paragraph"
+             style:parent-style-name="Standard"
+             style:class="list">
+   <style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
+   <style:text-properties style:font-size-asian="12pt"/>
+</style:style>
+<style:style style:name="Quotations" style:family="paragraph"
+             style:parent-style-name="Standard"
+             style:class="html">
+   <style:paragraph-properties fo:margin-left="0.3937in" fo:margin-right="0.3937in" fo:margin-top="0in"
+                               fo:margin-bottom="0.1965in"
+                               fo:text-align="justify"                               style:justify-single-word="false"                               fo:text-indent="0in"
+                               style:auto-text-indent="false"/>
+</style:style>
+<style:style style:name="Table_20_Heading" style:display-name="Table Heading"
+             style:family="paragraph"
+             style:parent-style-name="Table_20_Contents"
+             style:class="extra">
+   <style:paragraph-properties fo:text-align="center" style:justify-single-word="false"
+                               text:number-lines="false"
+                               text:line-number="0"/>
+   <style:text-properties fo:font-weight="bold" style:font-weight-asian="bold"
+                          style:font-weight-complex="bold"/>
+</style:style>
+<style:style style:name="Horizontal_20_Line" style:display-name="Horizontal Line"
+             style:family="paragraph"
+             style:parent-style-name="Standard"
+             style:class="html">
+   <style:paragraph-properties fo:margin-top="0in" fo:margin-bottom="0.1965in"
+                               style:border-line-width-bottom="0.0008in 0.0138in 0.0008in"
+                               fo:padding="0in"
+                               fo:border-left="none"
+                               fo:border-right="none"
+                               fo:border-top="none"
+                               fo:border-bottom="0.0154in double #808080"
+                               text:number-lines="false"
+                               text:line-number="0"
+                               style:join-border="false"/>
+   <style:text-properties fo:font-size="6pt" style:font-size-asian="6pt" style:font-size-complex="6pt"/>
+</style:style>
+<style:style style:name="Footnote_20_anchor" style:display-name="Footnote anchor"              style:family="text">    <style:text-properties style:text-position="super 58%"/> </style:style>
+  <text:notes-configuration text:note-class="footnote" text:default-style-name="Footnote" text:citation-style-name="Footnote_20_Symbol" text:citation-body-style-name="Footnote_20_anchor" text:master-page-name="Footnote" style:num-format="a" text:start-value="0" text:footnotes-position="page" text:start-numbering-at="page"/>
+  <text:notes-configuration text:note-class="endnote" text:default-style-name="Endnote" text:citation-style-name="Endnote_20_Symbol" text:citation-body-style-name="Endnote_20_anchor" text:master-page-name="Endnote" style:num-format="1" text:start-value="0"/>
+</office:styles>
+<office:automatic-styles>   <style:style style:name="MMD-Italic" style:family="text">
+      <style:text-properties fo:font-style="italic" style:font-style-asian="italic"
+                             style:font-style-complex="italic"/>
+   </style:style>
+   <style:style style:name="MMD-Bold" style:family="text">
+      <style:text-properties fo:font-weight="bold" style:font-weight-asian="bold"
+                             style:font-weight-complex="bold"/>
+   </style:style>
+   <style:style style:name="MMD-Superscript" style:family="text">
+      <style:text-properties style:text-position="super 58%"/>
+   </style:style>
+   <style:style style:name="MMD-Subscript" style:family="text">
+      <style:text-properties style:text-position="sub 58%"/>
+   </style:style>
+<style:style style:name="MMD-Table" style:family="paragraph" style:parent-style-name="Standard">
+   <style:paragraph-properties fo:margin-top="0in" fo:margin-bottom="0.05in"/>
+</style:style>
+<style:style style:name="MMD-Table-Center" style:family="paragraph" style:parent-style-name="MMD-Table">
+   <style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
+</style:style>
+<style:style style:name="MMD-Table-Right" style:family="paragraph" style:parent-style-name="MMD-Table">
+   <style:paragraph-properties fo:text-align="right" style:justify-single-word="false"/>
+</style:style>
+<style:style style:name="P2" style:family="paragraph" style:parent-style-name="Standard"
+             style:list-style-name="L2">
+<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
+</style:style>
+<style:style style:name="fr1" style:family="graphic" style:parent-style-name="Frame">
+   <style:graphic-properties style:print-content="true" style:vertical-pos="top"
+                             style:vertical-rel="baseline"
+                             fo:padding="0in"
+                             fo:border="none"
+                             style:shadow="none"/>
+</style:style>
+<style:style style:name="P1" style:family="paragraph" style:parent-style-name="Standard"
+             style:list-style-name="L1"/>
+<text:list-style style:name="L1">
+       <text:list-level-style-bullet text:level="1" text:style-name="Numbering_20_Symbols" style:num-suffix="." text:bullet-char="•">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="0.5in" fo:text-indent="-0.25in" fo:margin-left="0.5in"/>
+               </style:list-level-properties>
+       </text:list-level-style-bullet>
+       <text:list-level-style-bullet text:level="2" text:style-name="Numbering_20_Symbols" style:num-suffix="." text:bullet-char="◦">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="0.75in" fo:text-indent="-0.25in" fo:margin-left="0.75in"/>
+               </style:list-level-properties>
+       </text:list-level-style-bullet>
+       <text:list-level-style-bullet text:level="3" text:style-name="Numbering_20_Symbols" style:num-suffix="." text:bullet-char="▪">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="1in" fo:text-indent="-0.25in" fo:margin-left="1in"/>
+               </style:list-level-properties>
+       </text:list-level-style-bullet>
+       <text:list-level-style-number text:level="4" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="1.25in" fo:text-indent="-0.25in" fo:margin-left="1.25in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="5" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="1.5in" fo:text-indent="-0.25in" fo:margin-left="1.5in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="6" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="1.75in" fo:text-indent="-0.25in" fo:margin-left="1.75in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="7" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="2in" fo:text-indent="-0.25in" fo:margin-left="2in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="8" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="2.25in" fo:text-indent="-0.25in" fo:margin-left="2.25in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="9" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="2.5in" fo:text-indent="-0.25in" fo:margin-left="2.5in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="10" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="2.75in" fo:text-indent="-0.25in" fo:margin-left="2.75in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+</text:list-style>
+<text:list-style style:name="L2">
+       <text:list-level-style-number text:level="1" text:style-name="Standard" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="0.5in" fo:text-indent="-0.25in" fo:margin-left="0.5in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="2" text:style-name="Standard" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="0.75in" fo:text-indent="-0.25in" fo:margin-left="0.75in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="3" text:style-name="Standard" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="1in" fo:text-indent="-0.25in" fo:margin-left="1in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="4" text:style-name="Standard" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="1.25in" fo:text-indent="-0.25in" fo:margin-left="1.25in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="5" text:style-name="Standard" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="1.5in" fo:text-indent="-0.25in" fo:margin-left="1.5in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="6" text:style-name="Standard" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="1.75in" fo:text-indent="-0.25in" fo:margin-left="1.75in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="7" text:style-name="Standard" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="2in" fo:text-indent="-0.25in" fo:margin-left="2in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="8" text:style-name="Standard" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="2.25in" fo:text-indent="-0.25in" fo:margin-left="2.25in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="9" text:style-name="Standard" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="2.5in" fo:text-indent="-0.25in" fo:margin-left="2.5in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="10" text:style-name="Standard" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="2.75in" fo:text-indent="-0.25in" fo:margin-left="2.75in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+</text:list-style>
+</office:automatic-styles>
+ <office:master-styles>
+  <style:master-page style:name="Endnote" >
+    <style:header><text:h text:outline-level="2">Bibliography</text:h></style:header></style:master-page>
+  <style:master-page style:name="Footnote" style:page-layout-name="pm2"/>
+ </office:master-styles>
+<office:body>
+<office:text>
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span>
+<text:span text:style-name="MMD-Bold">b</text:span>, <text:span text:style-name="MMD-Italic">u</text:span>, <text:span text:style-name="MMD-Bold">v</text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">w</text:span></text:span>, <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">x</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">y</text:span></text:span>, <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">z</text:span></text:span>, <text:span text:style-name="MMD-Italic">t <text:span text:style-name="MMD-Bold">w</text:span> t</text:span></text:p>
+</office:text>
+</office:body>
+</office:document>
diff --git a/tests/MMD6Tests/Edge Cases.fodt b/tests/MMD6Tests/Edge Cases.fodt
new file mode 100644 (file)
index 0000000..bd4c8f2
--- /dev/null
@@ -0,0 +1,358 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<office:document xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0"
+     xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0"
+     xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0"
+     xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0"
+     xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0"
+     xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0"
+     xmlns:xlink="http://www.w3.org/1999/xlink"
+     xmlns:dc="http://purl.org/dc/elements/1.1/"
+     xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0"
+     xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0"
+     xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0"
+     xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0"
+     xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0"
+     xmlns:math="http://www.w3.org/1998/Math/MathML"
+     xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0"
+     xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0"
+     xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0"
+     xmlns:ooo="http://openoffice.org/2004/office"
+     xmlns:ooow="http://openoffice.org/2004/writer"
+     xmlns:oooc="http://openoffice.org/2004/calc"
+     xmlns:dom="http://www.w3.org/2001/xml-events"
+     xmlns:xforms="http://www.w3.org/2002/xforms"
+     xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+     xmlns:rpt="http://openoffice.org/2005/report"
+     xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2"
+     xmlns:xhtml="http://www.w3.org/1999/xhtml"
+     xmlns:grddl="http://www.w3.org/2003/g/data-view#"
+     xmlns:tableooo="http://openoffice.org/2009/table"
+     xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0"
+     xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0"
+     xmlns:css3t="http://www.w3.org/TR/css3-text/"
+     office:version="1.2"
+     grddl:transformation="http://docs.oasis-open.org/office/1.2/xslt/odf2rdf.xsl"
+     office:mimetype="application/vnd.oasis.opendocument.text">
+<office:font-face-decls>
+   <style:font-face style:name="Courier New" svg:font-family="'Courier New'"
+                    style:font-adornments="Regular"
+                    style:font-family-generic="modern"
+                    style:font-pitch="fixed"/>
+</office:font-face-decls>
+<office:styles>
+<style:style style:name="Standard" style:family="paragraph" style:class="text">
+      <style:paragraph-properties fo:margin-top="0in" fo:margin-bottom="0.15in"     fo:text-align="justify" style:justify-single-word="false"/>
+   </style:style>
+<style:style style:name="Preformatted_20_Text" style:display-name="Preformatted Text"
+             style:family="paragraph"
+             style:parent-style-name="Standard"
+             style:class="html">
+   <style:paragraph-properties fo:margin-top="0in" fo:margin-bottom="0in" fo:text-align="start"
+                               style:justify-single-word="false"/>
+   <style:text-properties style:font-name="Courier New" fo:font-size="11pt"
+                          style:font-name-asian="Courier New"
+                          style:font-size-asian="11pt"
+                          style:font-name-complex="Courier New"
+                          style:font-size-complex="11pt"/>
+</style:style>
+<style:style style:name="Source_20_Text" style:display-name="Source Text"
+             style:family="text">
+   <style:text-properties style:font-name="Courier New" style:font-name-asian="Courier New"
+                          style:font-name-complex="Courier New"
+                          fo:font-size="11pt"/>
+</style:style>
+<style:style style:name="List" style:family="paragraph"
+             style:parent-style-name="Standard"
+             style:class="list">
+   <style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
+   <style:text-properties style:font-size-asian="12pt"/>
+</style:style>
+<style:style style:name="Quotations" style:family="paragraph"
+             style:parent-style-name="Standard"
+             style:class="html">
+   <style:paragraph-properties fo:margin-left="0.3937in" fo:margin-right="0.3937in" fo:margin-top="0in"
+                               fo:margin-bottom="0.1965in"
+                               fo:text-align="justify"                               style:justify-single-word="false"                               fo:text-indent="0in"
+                               style:auto-text-indent="false"/>
+</style:style>
+<style:style style:name="Table_20_Heading" style:display-name="Table Heading"
+             style:family="paragraph"
+             style:parent-style-name="Table_20_Contents"
+             style:class="extra">
+   <style:paragraph-properties fo:text-align="center" style:justify-single-word="false"
+                               text:number-lines="false"
+                               text:line-number="0"/>
+   <style:text-properties fo:font-weight="bold" style:font-weight-asian="bold"
+                          style:font-weight-complex="bold"/>
+</style:style>
+<style:style style:name="Horizontal_20_Line" style:display-name="Horizontal Line"
+             style:family="paragraph"
+             style:parent-style-name="Standard"
+             style:class="html">
+   <style:paragraph-properties fo:margin-top="0in" fo:margin-bottom="0.1965in"
+                               style:border-line-width-bottom="0.0008in 0.0138in 0.0008in"
+                               fo:padding="0in"
+                               fo:border-left="none"
+                               fo:border-right="none"
+                               fo:border-top="none"
+                               fo:border-bottom="0.0154in double #808080"
+                               text:number-lines="false"
+                               text:line-number="0"
+                               style:join-border="false"/>
+   <style:text-properties fo:font-size="6pt" style:font-size-asian="6pt" style:font-size-complex="6pt"/>
+</style:style>
+<style:style style:name="Footnote_20_anchor" style:display-name="Footnote anchor"              style:family="text">    <style:text-properties style:text-position="super 58%"/> </style:style>
+  <text:notes-configuration text:note-class="footnote" text:default-style-name="Footnote" text:citation-style-name="Footnote_20_Symbol" text:citation-body-style-name="Footnote_20_anchor" text:master-page-name="Footnote" style:num-format="a" text:start-value="0" text:footnotes-position="page" text:start-numbering-at="page"/>
+  <text:notes-configuration text:note-class="endnote" text:default-style-name="Endnote" text:citation-style-name="Endnote_20_Symbol" text:citation-body-style-name="Endnote_20_anchor" text:master-page-name="Endnote" style:num-format="1" text:start-value="0"/>
+</office:styles>
+<office:automatic-styles>   <style:style style:name="MMD-Italic" style:family="text">
+      <style:text-properties fo:font-style="italic" style:font-style-asian="italic"
+                             style:font-style-complex="italic"/>
+   </style:style>
+   <style:style style:name="MMD-Bold" style:family="text">
+      <style:text-properties fo:font-weight="bold" style:font-weight-asian="bold"
+                             style:font-weight-complex="bold"/>
+   </style:style>
+   <style:style style:name="MMD-Superscript" style:family="text">
+      <style:text-properties style:text-position="super 58%"/>
+   </style:style>
+   <style:style style:name="MMD-Subscript" style:family="text">
+      <style:text-properties style:text-position="sub 58%"/>
+   </style:style>
+<style:style style:name="MMD-Table" style:family="paragraph" style:parent-style-name="Standard">
+   <style:paragraph-properties fo:margin-top="0in" fo:margin-bottom="0.05in"/>
+</style:style>
+<style:style style:name="MMD-Table-Center" style:family="paragraph" style:parent-style-name="MMD-Table">
+   <style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
+</style:style>
+<style:style style:name="MMD-Table-Right" style:family="paragraph" style:parent-style-name="MMD-Table">
+   <style:paragraph-properties fo:text-align="right" style:justify-single-word="false"/>
+</style:style>
+<style:style style:name="P2" style:family="paragraph" style:parent-style-name="Standard"
+             style:list-style-name="L2">
+<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
+</style:style>
+<style:style style:name="fr1" style:family="graphic" style:parent-style-name="Frame">
+   <style:graphic-properties style:print-content="true" style:vertical-pos="top"
+                             style:vertical-rel="baseline"
+                             fo:padding="0in"
+                             fo:border="none"
+                             style:shadow="none"/>
+</style:style>
+<style:style style:name="P1" style:family="paragraph" style:parent-style-name="Standard"
+             style:list-style-name="L1"/>
+<text:list-style style:name="L1">
+       <text:list-level-style-bullet text:level="1" text:style-name="Numbering_20_Symbols" style:num-suffix="." text:bullet-char="•">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="0.5in" fo:text-indent="-0.25in" fo:margin-left="0.5in"/>
+               </style:list-level-properties>
+       </text:list-level-style-bullet>
+       <text:list-level-style-bullet text:level="2" text:style-name="Numbering_20_Symbols" style:num-suffix="." text:bullet-char="◦">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="0.75in" fo:text-indent="-0.25in" fo:margin-left="0.75in"/>
+               </style:list-level-properties>
+       </text:list-level-style-bullet>
+       <text:list-level-style-bullet text:level="3" text:style-name="Numbering_20_Symbols" style:num-suffix="." text:bullet-char="▪">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="1in" fo:text-indent="-0.25in" fo:margin-left="1in"/>
+               </style:list-level-properties>
+       </text:list-level-style-bullet>
+       <text:list-level-style-number text:level="4" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="1.25in" fo:text-indent="-0.25in" fo:margin-left="1.25in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="5" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="1.5in" fo:text-indent="-0.25in" fo:margin-left="1.5in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="6" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="1.75in" fo:text-indent="-0.25in" fo:margin-left="1.75in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="7" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="2in" fo:text-indent="-0.25in" fo:margin-left="2in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="8" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="2.25in" fo:text-indent="-0.25in" fo:margin-left="2.25in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="9" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="2.5in" fo:text-indent="-0.25in" fo:margin-left="2.5in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="10" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="2.75in" fo:text-indent="-0.25in" fo:margin-left="2.75in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+</text:list-style>
+<text:list-style style:name="L2">
+       <text:list-level-style-number text:level="1" text:style-name="Standard" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="0.5in" fo:text-indent="-0.25in" fo:margin-left="0.5in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="2" text:style-name="Standard" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="0.75in" fo:text-indent="-0.25in" fo:margin-left="0.75in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="3" text:style-name="Standard" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="1in" fo:text-indent="-0.25in" fo:margin-left="1in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="4" text:style-name="Standard" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="1.25in" fo:text-indent="-0.25in" fo:margin-left="1.25in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="5" text:style-name="Standard" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="1.5in" fo:text-indent="-0.25in" fo:margin-left="1.5in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="6" text:style-name="Standard" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="1.75in" fo:text-indent="-0.25in" fo:margin-left="1.75in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="7" text:style-name="Standard" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="2in" fo:text-indent="-0.25in" fo:margin-left="2in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="8" text:style-name="Standard" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="2.25in" fo:text-indent="-0.25in" fo:margin-left="2.25in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="9" text:style-name="Standard" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="2.5in" fo:text-indent="-0.25in" fo:margin-left="2.5in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="10" text:style-name="Standard" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="2.75in" fo:text-indent="-0.25in" fo:margin-left="2.75in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+</text:list-style>
+</office:automatic-styles>
+ <office:master-styles>
+  <style:master-page style:name="Endnote" >
+    <style:header><text:h text:outline-level="2">Bibliography</text:h></style:header></style:master-page>
+  <style:master-page style:name="Footnote" style:page-layout-name="pm2"/>
+ </office:master-styles>
+<office:body>
+<office:text>
+<text:list text:style-name="L1">
+<text:list-item>
+<text:p text:style-name="Standard">foo
+bar</text:p></text:list-item>
+
+</text:list>
+
+<text:p text:style-name="Standard">foo</text:p>
+
+<text:list text:style-name="L1">
+<text:list-item>
+<text:p text:style-name="Standard">bar</text:p></text:list-item>
+
+</text:list>
+
+<text:p text:style-name="Standard">foo</text:p>
+
+<text:list text:style-name="L2">
+<text:list-item>
+<text:p text:style-name="Standard">bar</text:p></text:list-item>
+
+</text:list>
+
+<text:p text:style-name="Standard">foo</text:p>
+
+<text:list text:style-name="L2">
+<text:list-item>
+<text:p text:style-name="Standard">bar</text:p></text:list-item>
+
+</text:list>
+
+<text:p text:style-name="Standard">foo</text:p>
+
+<text:p text:style-name="Quotations">bar</text:p>
+
+<text:p text:style-name="Standard">5</text:p>
+
+<text:p text:style-name="Standard">foo</text:p>
+
+<text:h text:outline-level="1"><text:bookmark text:name="bar"/>bar<text:bookmark-end text:name="bar"/></text:h>
+
+<text:p text:style-name="Standard">foo
+bar</text:p>
+
+<text:p text:style-name="Standard">The <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">quick</text:span></text:span> brown <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">fox</text:span></text:span> jumped</text:p>
+
+<text:p text:style-name="Standard">The <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">quick</text:span></text:span> brown fox jumped</text:p>
+
+<text:p text:style-name="Standard">The <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">quick</text:span> brown fox</text:span> jumped</text:p>
+
+<text:p text:style-name="Standard">10</text:p>
+
+<text:p text:style-name="Standard">The <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">quick</text:span> brown fox</text:span> jumped</text:p>
+
+<text:p text:style-name="Standard">The <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">quick</text:span> brown <text:span text:style-name="MMD-Italic">fox</text:span></text:span> jumped</text:p>
+
+<text:p text:style-name="Standard">The <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">quick</text:span> brown <text:span text:style-name="MMD-Bold">fox</text:span></text:span> jumped</text:p>
+
+<text:p text:style-name="Standard">This <text:span text:style-name="MMD-Italic">should</text:span> be parsed &#8211; fo***o</text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Italic">test this</text:span>thing</text:p>
+
+<text:p text:style-name="Standard">15</text:p>
+
+<text:p text:style-name="Standard">_test this_thing</text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Bold">test this</text:span>thing</text:p>
+
+<text:p text:style-name="Standard">__test this__thing</text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">test this</text:span></text:span>thing</text:p>
+
+<text:p text:style-name="Standard">___test this___thing</text:p>
+
+<text:p text:style-name="Standard">20</text:p>
+
+<text:p text:style-name="Standard">This is <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">another</text:span> test</text:span> of <text:span text:style-name="MMD-Italic">italics</text:span> and <text:span text:style-name="MMD-Bold">bold</text:span>.</text:p>
+
+<text:p text:style-name="Standard">This is <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">another</text:span> test</text:span> of <text:span text:style-name="MMD-Bold">bold</text:span> and <text:span text:style-name="MMD-Italic">italics</text:span>.</text:p>
+
+<text:p text:style-name="Standard">This is <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">another</text:span> test</text:span> of <text:span text:style-name="MMD-Bold">bold</text:span> and <text:span text:style-name="MMD-Italic">italics</text:span>.</text:p>
+
+<text:p text:style-name="Standard">This is <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">another</text:span> test</text:span> of <text:span text:style-name="MMD-Italic">italics</text:span> and <text:span text:style-name="MMD-Bold">bold</text:span>.</text:p>
+
+<text:p text:style-name="Standard">This is <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">another</text:span> test</text:span> of <text:span text:style-name="MMD-Italic">italics</text:span> and <text:span text:style-name="MMD-Bold">bold</text:span>.</text:p>
+
+<text:p text:style-name="Standard">25</text:p>
+
+<text:p text:style-name="Standard">This is <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">another</text:span> test</text:span> of <text:span text:style-name="MMD-Bold">bold</text:span> and <text:span text:style-name="MMD-Italic">italics</text:span>.</text:p>
+
+<text:p text:style-name="Standard">This is <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">another</text:span> test</text:span> of <text:span text:style-name="MMD-Bold">bold</text:span> and <text:span text:style-name="MMD-Italic">italics</text:span>.</text:p>
+
+<text:p text:style-name="Standard">This is <text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">another</text:span> test</text:span> of <text:span text:style-name="MMD-Italic">italics</text:span> and <text:span text:style-name="MMD-Bold">bold</text:span>.</text:p>
+
+<text:p text:style-name="Standard">*a *a *a *a *a *a *a *a *a *a *a *a *a *a *a *a *a *a *a *a *a *a *a *a *a *a *a *a *a *a *a *a *a *a *a *a *a *a *a *a *a *a</text:p>
+
+<text:p text:style-name="Standard"><text:a xlink:type="simple" xlink:href="http://foo.bar">foo *bar</text:a> foo* <text:span text:style-name="MMD-Italic">bar</text:span></text:p>
+
+<text:p text:style-name="Standard">30</text:p>
+</office:text>
+</office:body>
+</office:document>
diff --git a/tests/MMD6Tests/Emph and Strong Star.fodt b/tests/MMD6Tests/Emph and Strong Star.fodt
new file mode 100644 (file)
index 0000000..b0cfde0
--- /dev/null
@@ -0,0 +1,454 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<office:document xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0"
+     xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0"
+     xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0"
+     xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0"
+     xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0"
+     xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0"
+     xmlns:xlink="http://www.w3.org/1999/xlink"
+     xmlns:dc="http://purl.org/dc/elements/1.1/"
+     xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0"
+     xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0"
+     xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0"
+     xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0"
+     xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0"
+     xmlns:math="http://www.w3.org/1998/Math/MathML"
+     xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0"
+     xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0"
+     xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0"
+     xmlns:ooo="http://openoffice.org/2004/office"
+     xmlns:ooow="http://openoffice.org/2004/writer"
+     xmlns:oooc="http://openoffice.org/2004/calc"
+     xmlns:dom="http://www.w3.org/2001/xml-events"
+     xmlns:xforms="http://www.w3.org/2002/xforms"
+     xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+     xmlns:rpt="http://openoffice.org/2005/report"
+     xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2"
+     xmlns:xhtml="http://www.w3.org/1999/xhtml"
+     xmlns:grddl="http://www.w3.org/2003/g/data-view#"
+     xmlns:tableooo="http://openoffice.org/2009/table"
+     xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0"
+     xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0"
+     xmlns:css3t="http://www.w3.org/TR/css3-text/"
+     office:version="1.2"
+     grddl:transformation="http://docs.oasis-open.org/office/1.2/xslt/odf2rdf.xsl"
+     office:mimetype="application/vnd.oasis.opendocument.text">
+<office:font-face-decls>
+   <style:font-face style:name="Courier New" svg:font-family="'Courier New'"
+                    style:font-adornments="Regular"
+                    style:font-family-generic="modern"
+                    style:font-pitch="fixed"/>
+</office:font-face-decls>
+<office:styles>
+<style:style style:name="Standard" style:family="paragraph" style:class="text">
+      <style:paragraph-properties fo:margin-top="0in" fo:margin-bottom="0.15in"     fo:text-align="justify" style:justify-single-word="false"/>
+   </style:style>
+<style:style style:name="Preformatted_20_Text" style:display-name="Preformatted Text"
+             style:family="paragraph"
+             style:parent-style-name="Standard"
+             style:class="html">
+   <style:paragraph-properties fo:margin-top="0in" fo:margin-bottom="0in" fo:text-align="start"
+                               style:justify-single-word="false"/>
+   <style:text-properties style:font-name="Courier New" fo:font-size="11pt"
+                          style:font-name-asian="Courier New"
+                          style:font-size-asian="11pt"
+                          style:font-name-complex="Courier New"
+                          style:font-size-complex="11pt"/>
+</style:style>
+<style:style style:name="Source_20_Text" style:display-name="Source Text"
+             style:family="text">
+   <style:text-properties style:font-name="Courier New" style:font-name-asian="Courier New"
+                          style:font-name-complex="Courier New"
+                          fo:font-size="11pt"/>
+</style:style>
+<style:style style:name="List" style:family="paragraph"
+             style:parent-style-name="Standard"
+             style:class="list">
+   <style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
+   <style:text-properties style:font-size-asian="12pt"/>
+</style:style>
+<style:style style:name="Quotations" style:family="paragraph"
+             style:parent-style-name="Standard"
+             style:class="html">
+   <style:paragraph-properties fo:margin-left="0.3937in" fo:margin-right="0.3937in" fo:margin-top="0in"
+                               fo:margin-bottom="0.1965in"
+                               fo:text-align="justify"                               style:justify-single-word="false"                               fo:text-indent="0in"
+                               style:auto-text-indent="false"/>
+</style:style>
+<style:style style:name="Table_20_Heading" style:display-name="Table Heading"
+             style:family="paragraph"
+             style:parent-style-name="Table_20_Contents"
+             style:class="extra">
+   <style:paragraph-properties fo:text-align="center" style:justify-single-word="false"
+                               text:number-lines="false"
+                               text:line-number="0"/>
+   <style:text-properties fo:font-weight="bold" style:font-weight-asian="bold"
+                          style:font-weight-complex="bold"/>
+</style:style>
+<style:style style:name="Horizontal_20_Line" style:display-name="Horizontal Line"
+             style:family="paragraph"
+             style:parent-style-name="Standard"
+             style:class="html">
+   <style:paragraph-properties fo:margin-top="0in" fo:margin-bottom="0.1965in"
+                               style:border-line-width-bottom="0.0008in 0.0138in 0.0008in"
+                               fo:padding="0in"
+                               fo:border-left="none"
+                               fo:border-right="none"
+                               fo:border-top="none"
+                               fo:border-bottom="0.0154in double #808080"
+                               text:number-lines="false"
+                               text:line-number="0"
+                               style:join-border="false"/>
+   <style:text-properties fo:font-size="6pt" style:font-size-asian="6pt" style:font-size-complex="6pt"/>
+</style:style>
+<style:style style:name="Footnote_20_anchor" style:display-name="Footnote anchor"              style:family="text">    <style:text-properties style:text-position="super 58%"/> </style:style>
+  <text:notes-configuration text:note-class="footnote" text:default-style-name="Footnote" text:citation-style-name="Footnote_20_Symbol" text:citation-body-style-name="Footnote_20_anchor" text:master-page-name="Footnote" style:num-format="a" text:start-value="0" text:footnotes-position="page" text:start-numbering-at="page"/>
+  <text:notes-configuration text:note-class="endnote" text:default-style-name="Endnote" text:citation-style-name="Endnote_20_Symbol" text:citation-body-style-name="Endnote_20_anchor" text:master-page-name="Endnote" style:num-format="1" text:start-value="0"/>
+</office:styles>
+<office:automatic-styles>   <style:style style:name="MMD-Italic" style:family="text">
+      <style:text-properties fo:font-style="italic" style:font-style-asian="italic"
+                             style:font-style-complex="italic"/>
+   </style:style>
+   <style:style style:name="MMD-Bold" style:family="text">
+      <style:text-properties fo:font-weight="bold" style:font-weight-asian="bold"
+                             style:font-weight-complex="bold"/>
+   </style:style>
+   <style:style style:name="MMD-Superscript" style:family="text">
+      <style:text-properties style:text-position="super 58%"/>
+   </style:style>
+   <style:style style:name="MMD-Subscript" style:family="text">
+      <style:text-properties style:text-position="sub 58%"/>
+   </style:style>
+<style:style style:name="MMD-Table" style:family="paragraph" style:parent-style-name="Standard">
+   <style:paragraph-properties fo:margin-top="0in" fo:margin-bottom="0.05in"/>
+</style:style>
+<style:style style:name="MMD-Table-Center" style:family="paragraph" style:parent-style-name="MMD-Table">
+   <style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
+</style:style>
+<style:style style:name="MMD-Table-Right" style:family="paragraph" style:parent-style-name="MMD-Table">
+   <style:paragraph-properties fo:text-align="right" style:justify-single-word="false"/>
+</style:style>
+<style:style style:name="P2" style:family="paragraph" style:parent-style-name="Standard"
+             style:list-style-name="L2">
+<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
+</style:style>
+<style:style style:name="fr1" style:family="graphic" style:parent-style-name="Frame">
+   <style:graphic-properties style:print-content="true" style:vertical-pos="top"
+                             style:vertical-rel="baseline"
+                             fo:padding="0in"
+                             fo:border="none"
+                             style:shadow="none"/>
+</style:style>
+<style:style style:name="P1" style:family="paragraph" style:parent-style-name="Standard"
+             style:list-style-name="L1"/>
+<text:list-style style:name="L1">
+       <text:list-level-style-bullet text:level="1" text:style-name="Numbering_20_Symbols" style:num-suffix="." text:bullet-char="•">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="0.5in" fo:text-indent="-0.25in" fo:margin-left="0.5in"/>
+               </style:list-level-properties>
+       </text:list-level-style-bullet>
+       <text:list-level-style-bullet text:level="2" text:style-name="Numbering_20_Symbols" style:num-suffix="." text:bullet-char="◦">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="0.75in" fo:text-indent="-0.25in" fo:margin-left="0.75in"/>
+               </style:list-level-properties>
+       </text:list-level-style-bullet>
+       <text:list-level-style-bullet text:level="3" text:style-name="Numbering_20_Symbols" style:num-suffix="." text:bullet-char="▪">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="1in" fo:text-indent="-0.25in" fo:margin-left="1in"/>
+               </style:list-level-properties>
+       </text:list-level-style-bullet>
+       <text:list-level-style-number text:level="4" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="1.25in" fo:text-indent="-0.25in" fo:margin-left="1.25in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="5" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="1.5in" fo:text-indent="-0.25in" fo:margin-left="1.5in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="6" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="1.75in" fo:text-indent="-0.25in" fo:margin-left="1.75in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="7" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="2in" fo:text-indent="-0.25in" fo:margin-left="2in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="8" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="2.25in" fo:text-indent="-0.25in" fo:margin-left="2.25in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="9" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="2.5in" fo:text-indent="-0.25in" fo:margin-left="2.5in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="10" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="2.75in" fo:text-indent="-0.25in" fo:margin-left="2.75in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+</text:list-style>
+<text:list-style style:name="L2">
+       <text:list-level-style-number text:level="1" text:style-name="Standard" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="0.5in" fo:text-indent="-0.25in" fo:margin-left="0.5in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="2" text:style-name="Standard" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="0.75in" fo:text-indent="-0.25in" fo:margin-left="0.75in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="3" text:style-name="Standard" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="1in" fo:text-indent="-0.25in" fo:margin-left="1in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="4" text:style-name="Standard" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="1.25in" fo:text-indent="-0.25in" fo:margin-left="1.25in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="5" text:style-name="Standard" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="1.5in" fo:text-indent="-0.25in" fo:margin-left="1.5in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="6" text:style-name="Standard" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="1.75in" fo:text-indent="-0.25in" fo:margin-left="1.75in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="7" text:style-name="Standard" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="2in" fo:text-indent="-0.25in" fo:margin-left="2in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="8" text:style-name="Standard" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="2.25in" fo:text-indent="-0.25in" fo:margin-left="2.25in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="9" text:style-name="Standard" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="2.5in" fo:text-indent="-0.25in" fo:margin-left="2.5in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="10" text:style-name="Standard" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="2.75in" fo:text-indent="-0.25in" fo:margin-left="2.75in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+</text:list-style>
+</office:automatic-styles>
+ <office:master-styles>
+  <style:master-page style:name="Endnote" >
+    <style:header><text:h text:outline-level="2">Bibliography</text:h></style:header></style:master-page>
+  <style:master-page style:name="Footnote" style:page-layout-name="pm2"/>
+ </office:master-styles>
+<office:body>
+<office:text>
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Italic">foo</text:span></text:p>
+
+<text:p text:style-name="Standard">*<text:span text:style-name="MMD-Italic">foo</text:span></text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Italic">foo</text:span>*</text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Italic">foo bar</text:span></text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Italic">foo</text:span> bar</text:p>
+
+<text:p text:style-name="Standard">5</text:p>
+
+<text:p text:style-name="Standard">foo <text:span text:style-name="MMD-Italic">bar</text:span></text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Bold">foo</text:span></text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Bold">foo bar</text:span></text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Bold">foo</text:span> bar</text:p>
+
+<text:p text:style-name="Standard">foo <text:span text:style-name="MMD-Bold">bar</text:span></text:p>
+
+<text:p text:style-name="Standard">10</text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Italic">foo <text:span text:style-name="MMD-Italic">bar</text:span> foo</text:span></text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Italic">foo <text:span text:style-name="MMD-Bold">bar</text:span> foo</text:span></text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Italic">foo <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">bar</text:span></text:span> foo</text:span></text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Bold">foo <text:span text:style-name="MMD-Italic">bar</text:span> foo</text:span></text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Bold">foo <text:span text:style-name="MMD-Bold">bar</text:span> foo</text:span></text:p>
+
+<text:p text:style-name="Standard">15</text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Bold">foo <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">bar</text:span></text:span> foo</text:span></text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">foo <text:span text:style-name="MMD-Italic">bar</text:span> foo</text:span></text:span></text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">foo <text:span text:style-name="MMD-Bold">bar</text:span> foo</text:span></text:span></text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">foo <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">bar</text:span></text:span> foo</text:span></text:span></text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">foo</text:span></text:span></text:p>
+
+<text:p text:style-name="Standard">20</text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">foo</text:span> bar</text:span></text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">foo</text:span> bar</text:span></text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Italic">foo <text:span text:style-name="MMD-Bold">bar</text:span></text:span></text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Bold">foo <text:span text:style-name="MMD-Italic">bar</text:span></text:span></text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Italic">foo</text:span>bar*</text:p>
+
+<text:p text:style-name="Standard">25</text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Italic">foo <text:span text:style-name="MMD-Italic">bar <text:span text:style-name="MMD-Italic">foo <text:span text:style-name="MMD-Italic">bar</text:span></text:span></text:span></text:span></text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Italic">foo</text:span> bar</text:span> foo</text:span> bar</text:span></text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Italic">foo bar</text:span>bar</text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Bold">foo bar</text:span>bar</text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">foo bar</text:span></text:span>bar</text:p>
+
+<text:p text:style-name="Standard">30</text:p>
+
+<text:p text:style-name="Standard">foo<text:span text:style-name="MMD-Italic">bar</text:span>foo</text:p>
+
+<text:p text:style-name="Standard">foo<text:span text:style-name="MMD-Bold">bar</text:span>foo</text:p>
+
+<text:p text:style-name="Standard">foo<text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">bar</text:span></text:span>foo</text:p>
+
+<text:p text:style-name="Standard">foo<text:span text:style-name="MMD-Italic">bar</text:span>foo</text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Bold">foo <text:span text:style-name="MMD-Italic">foobarfoo</text:span> foo</text:span></text:p>
+
+<text:p text:style-name="Standard">35</text:p>
+
+<text:p text:style-name="Standard">foo<text:span text:style-name="MMD-Bold"><text:span text:style-name="Source_20_Text">*bar*</text:span></text:span></text:p>
+
+<text:p text:style-name="Standard">*(<text:span text:style-name="MMD-Italic">foo</text:span>)</text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Italic">foo</text:span>:</text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Bold">foo</text:span>:</text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">foo</text:span></text:span>:</text:p>
+
+<text:p text:style-name="Standard">40</text:p>
+
+<text:p text:style-name="Standard">foo*bar</text:p>
+
+<text:p text:style-name="Standard">foo<text:span text:style-name="MMD-Italic">bar foo</text:span>bar</text:p>
+
+<text:p text:style-name="Standard">foo**bar</text:p>
+
+<text:p text:style-name="Standard">foo<text:span text:style-name="MMD-Bold">bar foo</text:span>bar</text:p>
+
+<text:p text:style-name="Standard">foo***bar</text:p>
+
+<text:p text:style-name="Standard">45</text:p>
+
+<text:p text:style-name="Standard">foo<text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">bar foo</text:span></text:span>bar</text:p>
+
+<text:p text:style-name="Standard">foo <text:span text:style-name="MMD-Bold">- bar</text:span></text:p>
+
+<text:p text:style-name="Standard">foo <text:span text:style-name="MMD-Bold">1. bar</text:span></text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Bold">foo:</text:span> bar</text:p>
+
+<text:p text:style-name="Standard">*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+*foo
+<text:span text:style-name="MMD-Italic">foo</text:span></text:p>
+</office:text>
+</office:body>
+</office:document>
diff --git a/tests/MMD6Tests/Emph and Strong UL.fodt b/tests/MMD6Tests/Emph and Strong UL.fodt
new file mode 100644 (file)
index 0000000..bb56c4b
--- /dev/null
@@ -0,0 +1,452 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<office:document xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0"
+     xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0"
+     xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0"
+     xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0"
+     xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0"
+     xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0"
+     xmlns:xlink="http://www.w3.org/1999/xlink"
+     xmlns:dc="http://purl.org/dc/elements/1.1/"
+     xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0"
+     xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0"
+     xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0"
+     xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0"
+     xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0"
+     xmlns:math="http://www.w3.org/1998/Math/MathML"
+     xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0"
+     xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0"
+     xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0"
+     xmlns:ooo="http://openoffice.org/2004/office"
+     xmlns:ooow="http://openoffice.org/2004/writer"
+     xmlns:oooc="http://openoffice.org/2004/calc"
+     xmlns:dom="http://www.w3.org/2001/xml-events"
+     xmlns:xforms="http://www.w3.org/2002/xforms"
+     xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+     xmlns:rpt="http://openoffice.org/2005/report"
+     xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2"
+     xmlns:xhtml="http://www.w3.org/1999/xhtml"
+     xmlns:grddl="http://www.w3.org/2003/g/data-view#"
+     xmlns:tableooo="http://openoffice.org/2009/table"
+     xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0"
+     xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0"
+     xmlns:css3t="http://www.w3.org/TR/css3-text/"
+     office:version="1.2"
+     grddl:transformation="http://docs.oasis-open.org/office/1.2/xslt/odf2rdf.xsl"
+     office:mimetype="application/vnd.oasis.opendocument.text">
+<office:font-face-decls>
+   <style:font-face style:name="Courier New" svg:font-family="'Courier New'"
+                    style:font-adornments="Regular"
+                    style:font-family-generic="modern"
+                    style:font-pitch="fixed"/>
+</office:font-face-decls>
+<office:styles>
+<style:style style:name="Standard" style:family="paragraph" style:class="text">
+      <style:paragraph-properties fo:margin-top="0in" fo:margin-bottom="0.15in"     fo:text-align="justify" style:justify-single-word="false"/>
+   </style:style>
+<style:style style:name="Preformatted_20_Text" style:display-name="Preformatted Text"
+             style:family="paragraph"
+             style:parent-style-name="Standard"
+             style:class="html">
+   <style:paragraph-properties fo:margin-top="0in" fo:margin-bottom="0in" fo:text-align="start"
+                               style:justify-single-word="false"/>
+   <style:text-properties style:font-name="Courier New" fo:font-size="11pt"
+                          style:font-name-asian="Courier New"
+                          style:font-size-asian="11pt"
+                          style:font-name-complex="Courier New"
+                          style:font-size-complex="11pt"/>
+</style:style>
+<style:style style:name="Source_20_Text" style:display-name="Source Text"
+             style:family="text">
+   <style:text-properties style:font-name="Courier New" style:font-name-asian="Courier New"
+                          style:font-name-complex="Courier New"
+                          fo:font-size="11pt"/>
+</style:style>
+<style:style style:name="List" style:family="paragraph"
+             style:parent-style-name="Standard"
+             style:class="list">
+   <style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
+   <style:text-properties style:font-size-asian="12pt"/>
+</style:style>
+<style:style style:name="Quotations" style:family="paragraph"
+             style:parent-style-name="Standard"
+             style:class="html">
+   <style:paragraph-properties fo:margin-left="0.3937in" fo:margin-right="0.3937in" fo:margin-top="0in"
+                               fo:margin-bottom="0.1965in"
+                               fo:text-align="justify"                               style:justify-single-word="false"                               fo:text-indent="0in"
+                               style:auto-text-indent="false"/>
+</style:style>
+<style:style style:name="Table_20_Heading" style:display-name="Table Heading"
+             style:family="paragraph"
+             style:parent-style-name="Table_20_Contents"
+             style:class="extra">
+   <style:paragraph-properties fo:text-align="center" style:justify-single-word="false"
+                               text:number-lines="false"
+                               text:line-number="0"/>
+   <style:text-properties fo:font-weight="bold" style:font-weight-asian="bold"
+                          style:font-weight-complex="bold"/>
+</style:style>
+<style:style style:name="Horizontal_20_Line" style:display-name="Horizontal Line"
+             style:family="paragraph"
+             style:parent-style-name="Standard"
+             style:class="html">
+   <style:paragraph-properties fo:margin-top="0in" fo:margin-bottom="0.1965in"
+                               style:border-line-width-bottom="0.0008in 0.0138in 0.0008in"
+                               fo:padding="0in"
+                               fo:border-left="none"
+                               fo:border-right="none"
+                               fo:border-top="none"
+                               fo:border-bottom="0.0154in double #808080"
+                               text:number-lines="false"
+                               text:line-number="0"
+                               style:join-border="false"/>
+   <style:text-properties fo:font-size="6pt" style:font-size-asian="6pt" style:font-size-complex="6pt"/>
+</style:style>
+<style:style style:name="Footnote_20_anchor" style:display-name="Footnote anchor"              style:family="text">    <style:text-properties style:text-position="super 58%"/> </style:style>
+  <text:notes-configuration text:note-class="footnote" text:default-style-name="Footnote" text:citation-style-name="Footnote_20_Symbol" text:citation-body-style-name="Footnote_20_anchor" text:master-page-name="Footnote" style:num-format="a" text:start-value="0" text:footnotes-position="page" text:start-numbering-at="page"/>
+  <text:notes-configuration text:note-class="endnote" text:default-style-name="Endnote" text:citation-style-name="Endnote_20_Symbol" text:citation-body-style-name="Endnote_20_anchor" text:master-page-name="Endnote" style:num-format="1" text:start-value="0"/>
+</office:styles>
+<office:automatic-styles>   <style:style style:name="MMD-Italic" style:family="text">
+      <style:text-properties fo:font-style="italic" style:font-style-asian="italic"
+                             style:font-style-complex="italic"/>
+   </style:style>
+   <style:style style:name="MMD-Bold" style:family="text">
+      <style:text-properties fo:font-weight="bold" style:font-weight-asian="bold"
+                             style:font-weight-complex="bold"/>
+   </style:style>
+   <style:style style:name="MMD-Superscript" style:family="text">
+      <style:text-properties style:text-position="super 58%"/>
+   </style:style>
+   <style:style style:name="MMD-Subscript" style:family="text">
+      <style:text-properties style:text-position="sub 58%"/>
+   </style:style>
+<style:style style:name="MMD-Table" style:family="paragraph" style:parent-style-name="Standard">
+   <style:paragraph-properties fo:margin-top="0in" fo:margin-bottom="0.05in"/>
+</style:style>
+<style:style style:name="MMD-Table-Center" style:family="paragraph" style:parent-style-name="MMD-Table">
+   <style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
+</style:style>
+<style:style style:name="MMD-Table-Right" style:family="paragraph" style:parent-style-name="MMD-Table">
+   <style:paragraph-properties fo:text-align="right" style:justify-single-word="false"/>
+</style:style>
+<style:style style:name="P2" style:family="paragraph" style:parent-style-name="Standard"
+             style:list-style-name="L2">
+<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
+</style:style>
+<style:style style:name="fr1" style:family="graphic" style:parent-style-name="Frame">
+   <style:graphic-properties style:print-content="true" style:vertical-pos="top"
+                             style:vertical-rel="baseline"
+                             fo:padding="0in"
+                             fo:border="none"
+                             style:shadow="none"/>
+</style:style>
+<style:style style:name="P1" style:family="paragraph" style:parent-style-name="Standard"
+             style:list-style-name="L1"/>
+<text:list-style style:name="L1">
+       <text:list-level-style-bullet text:level="1" text:style-name="Numbering_20_Symbols" style:num-suffix="." text:bullet-char="•">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="0.5in" fo:text-indent="-0.25in" fo:margin-left="0.5in"/>
+               </style:list-level-properties>
+       </text:list-level-style-bullet>
+       <text:list-level-style-bullet text:level="2" text:style-name="Numbering_20_Symbols" style:num-suffix="." text:bullet-char="◦">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="0.75in" fo:text-indent="-0.25in" fo:margin-left="0.75in"/>
+               </style:list-level-properties>
+       </text:list-level-style-bullet>
+       <text:list-level-style-bullet text:level="3" text:style-name="Numbering_20_Symbols" style:num-suffix="." text:bullet-char="▪">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="1in" fo:text-indent="-0.25in" fo:margin-left="1in"/>
+               </style:list-level-properties>
+       </text:list-level-style-bullet>
+       <text:list-level-style-number text:level="4" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="1.25in" fo:text-indent="-0.25in" fo:margin-left="1.25in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="5" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="1.5in" fo:text-indent="-0.25in" fo:margin-left="1.5in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="6" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="1.75in" fo:text-indent="-0.25in" fo:margin-left="1.75in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="7" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="2in" fo:text-indent="-0.25in" fo:margin-left="2in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="8" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="2.25in" fo:text-indent="-0.25in" fo:margin-left="2.25in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="9" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="2.5in" fo:text-indent="-0.25in" fo:margin-left="2.5in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="10" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="2.75in" fo:text-indent="-0.25in" fo:margin-left="2.75in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+</text:list-style>
+<text:list-style style:name="L2">
+       <text:list-level-style-number text:level="1" text:style-name="Standard" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="0.5in" fo:text-indent="-0.25in" fo:margin-left="0.5in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="2" text:style-name="Standard" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="0.75in" fo:text-indent="-0.25in" fo:margin-left="0.75in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="3" text:style-name="Standard" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="1in" fo:text-indent="-0.25in" fo:margin-left="1in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="4" text:style-name="Standard" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="1.25in" fo:text-indent="-0.25in" fo:margin-left="1.25in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="5" text:style-name="Standard" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="1.5in" fo:text-indent="-0.25in" fo:margin-left="1.5in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="6" text:style-name="Standard" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="1.75in" fo:text-indent="-0.25in" fo:margin-left="1.75in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="7" text:style-name="Standard" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="2in" fo:text-indent="-0.25in" fo:margin-left="2in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="8" text:style-name="Standard" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="2.25in" fo:text-indent="-0.25in" fo:margin-left="2.25in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="9" text:style-name="Standard" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="2.5in" fo:text-indent="-0.25in" fo:margin-left="2.5in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+       <text:list-level-style-number text:level="10" text:style-name="Standard" style:num-suffix="." style:num-format="1">
+               <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
+                       <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="2.75in" fo:text-indent="-0.25in" fo:margin-left="2.75in"/>
+               </style:list-level-properties>
+       </text:list-level-style-number>
+</text:list-style>
+</office:automatic-styles>
+ <office:master-styles>
+  <style:master-page style:name="Endnote" >
+    <style:header><text:h text:outline-level="2">Bibliography</text:h></style:header></style:master-page>
+  <style:master-page style:name="Footnote" style:page-layout-name="pm2"/>
+ </office:master-styles>
+<office:body>
+<office:text>
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Italic">foo</text:span></text:p>
+
+<text:p text:style-name="Standard">_<text:span text:style-name="MMD-Italic">foo</text:span></text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Italic">foo</text:span>_</text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Italic">foo bar</text:span></text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Italic">foo</text:span> bar</text:p>
+
+<text:p text:style-name="Standard">5</text:p>
+
+<text:p text:style-name="Standard">foo <text:span text:style-name="MMD-Italic">bar</text:span></text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Bold">foo</text:span></text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Bold">foo bar</text:span></text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Bold">foo</text:span> bar</text:p>
+
+<text:p text:style-name="Standard">foo <text:span text:style-name="MMD-Bold">bar</text:span></text:p>
+
+<text:p text:style-name="Standard">10</text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Italic">foo <text:span text:style-name="MMD-Italic">bar</text:span> foo</text:span></text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Italic">foo <text:span text:style-name="MMD-Bold">bar</text:span> foo</text:span></text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Italic">foo <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">bar</text:span></text:span> foo</text:span></text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Bold">foo <text:span text:style-name="MMD-Italic">bar</text:span> foo</text:span></text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Bold">foo <text:span text:style-name="MMD-Bold">bar</text:span> foo</text:span></text:p>
+
+<text:p text:style-name="Standard">15</text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Bold">foo <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">bar</text:span></text:span> foo</text:span></text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">foo <text:span text:style-name="MMD-Italic">bar</text:span> foo</text:span></text:span></text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">foo <text:span text:style-name="MMD-Bold">bar</text:span> foo</text:span></text:span></text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">foo <text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">bar</text:span></text:span> foo</text:span></text:span></text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">foo</text:span></text:span></text:p>
+
+<text:p text:style-name="Standard">20</text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Bold">foo</text:span> bar</text:span></text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">foo</text:span> bar</text:span></text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Italic">foo <text:span text:style-name="MMD-Bold">bar</text:span></text:span></text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Bold">foo <text:span text:style-name="MMD-Italic">bar</text:span></text:span></text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Italic">foo_bar</text:span></text:p>
+
+<text:p text:style-name="Standard">25</text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Italic">foo <text:span text:style-name="MMD-Italic">bar <text:span text:style-name="MMD-Italic">foo <text:span text:style-name="MMD-Italic">bar</text:span></text:span></text:span></text:span></text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Italic"><text:span text:style-name="MMD-Italic">foo</text:span> bar</text:span> foo</text:span> bar</text:span></text:p>
+
+<text:p text:style-name="Standard">_foo bar_bar</text:p>
+
+<text:p text:style-name="Standard">__foo bar__bar</text:p>
+
+<text:p text:style-name="Standard">___foo bar___bar</text:p>
+
+<text:p text:style-name="Standard">30</text:p>
+
+<text:p text:style-name="Standard">foo_bar_foo</text:p>
+
+<text:p text:style-name="Standard">foo__bar__foo</text:p>
+
+<text:p text:style-name="Standard">foo___bar___foo</text:p>
+
+<text:p text:style-name="Standard">foo_bar_foo</text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Bold">foo <text:span text:style-name="MMD-Italic">foobarfoo</text:span> foo</text:span></text:p>
+
+<text:p text:style-name="Standard">35</text:p>
+
+<text:p text:style-name="Standard">foo__<text:span text:style-name="Source_20_Text">_bar_</text:span>__</text:p>
+
+<text:p text:style-name="Standard">_(<text:span text:style-name="MMD-Italic">foo</text:span>)</text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Italic">foo</text:span>:</text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Bold">foo</text:span>:</text:p>
+
+<text:p text:style-name="Standard"><text:span text:style-name="MMD-Bold"><text:span text:style-name="MMD-Italic">foo</text:span></text:span>:</text:p>
+
+<text:p text:style-name="Standard">40</text:p>
+
+<text:p text:style-name="Standard">foo_bar</text:p>
+
+<text:p text:style-name="Standard">foo_bar foo_bar</text:p>
+
+<text:p text:style-name="Standard">foo__bar</text:p>
+
+<text:p text:style-name="Standard">foo__bar foo__bar</text:p>
+
+<text:p text:style-name="Standard">foo___bar</text:p>
+
+<text:p text:style-name="Standard">45</text:p>
+
+<text:p text:style-name="Standard">foo___bar foo___bar</text:p>
+
+<text:p text:style-name="Standard">foo __- bar__</text:p>
+
+<text:p text:style-name="Standard">foo <text:span text:style-name="MMD-Bold">1. bar</text:span></text:p>
+
+<text:p text:style-name="Standard">_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+_foo
+<text:span text:style-name="MMD-Italic">foo</text:span></text:p>
+</office:text>
+</office:body>
+</office:document>