fix: 修复 word 中没有 styles.xml 文件会导致报错问题 Closes #10154

This commit is contained in:
wuduoyi 2024-05-09 17:36:10 +08:00
parent da883ee53c
commit 65526a81e9
11 changed files with 1400 additions and 4 deletions

View File

@ -62,7 +62,7 @@
"moment": "^2.19.4",
"moment-timezone": "^0.5.34",
"mpegts.js": "^1.6.10",
"office-viewer": "^0.3.12",
"office-viewer": "^0.3.13",
"prop-types": "^15.6.1",
"qrcode.react": "^3.1.0",
"react-cropper": "^2.1.8",

View File

@ -434,6 +434,7 @@
"SORTBY",
"Sparkline",
"sparklines",
"spreadsheetml",
"sqref",
"SQRT",
"SQRTPI",
@ -503,6 +504,7 @@
"WEEKNUM",
"WEIBULL",
"WEIBULL.DIST",
"wordprocessingml",
"WORKDAY",
"WORKDAY.INTL",
"xfrm",

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>word viewer</title>
<link rel="stylesheet" href="/examples/static/css/app.css" />
<link rel="stylesheet" href="../src/office.css" />
<link rel="stylesheet" href="../scss/office.scss" />
</head>
<body>
<div class="columns">

View File

@ -1,6 +1,6 @@
{
"name": "office-viewer",
"version": "0.3.12",
"version": "0.3.13",
"description": "office 文档在线预览",
"main": "lib/index.js",
"module": "esm/index.js",

View File

@ -34,6 +34,10 @@ import {get} from './util/get';
import {fileTypeFromBuffer} from './util/fileType';
import {OfficeViewer} from './OfficeViewer';
import {RenderOptions} from './RenderOptions';
import {parse} from 'zrender/lib/tool/color';
import {stylesXML} from './word/parse/defaultXML/stylesXML';
import {themeXML} from './word/parse/defaultXML/themeXML';
import {settingsXML} from './word/parse/defaultXML/settingsXML';
/**
*
@ -337,6 +341,9 @@ export default class Word implements OfficeViewer {
this.themes.push(parseTheme(theme));
}
}
if (this.themes.length === 0) {
this.themes.push(parseTheme(themeXML));
}
}
/**
@ -348,6 +355,10 @@ export default class Word implements OfficeViewer {
this.styles = parseStyles(this, this.parser.getXML('/word/styles.xml'));
}
}
// 没有样式表的情况
if (!this.styles) {
this.styles = parseStyles(this, stylesXML);
}
}
/**
@ -362,6 +373,9 @@ export default class Word implements OfficeViewer {
);
}
}
if (!this.settings) {
this.settings = Settings.parse(this, settingsXML);
}
}
/**

View File

@ -35,7 +35,7 @@ export async function createOfficeViewer(
const fileType = fileTypeFromArrayBuffer(docFile);
if (fileType === null || fileType.ext !== 'zip') {
if (fileType === null || (fileType.ext !== 'zip' && fileType.ext !== 'xml')) {
if (fileType?.ext === 'cfb') {
return new UnSupport('不支持加密文件');
}
@ -71,6 +71,11 @@ export async function createOfficeViewer(
}
}
// 目前只有支持 xml 格式
if (fileType?.ext === 'xml') {
isWord = true;
}
if (isWord) {
return new Word(docFile, renderOptions, parser);
} else if (isExcel) {

View File

@ -77,6 +77,13 @@ export function fileTypeFromBuffer(buffer: Uint8Array): FileType | null {
return {ext: 'pdf', mime: 'application/pdf'};
}
if (checkString(buffer, '<?xml ')) {
return {
ext: 'xml',
mime: 'application/xml'
};
}
if (check(buffer, [0xd0, 0xcf, 0x11, 0xe0, 0xa1, 0xb1, 0x1a, 0xe1])) {
// Detected Microsoft Compound File Binary File (MS-CFB) Format.
return {

View File

@ -0,0 +1,109 @@
import {parseXML} from '../../../util/xml';
export const settingsXML =
parseXML(`<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<w:settings xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math"
xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w10="urn:schemas-microsoft-com:office:word"
xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
xmlns:w16cex="http://schemas.microsoft.com/office/word/2018/wordml/cex"
xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid"
xmlns:w16="http://schemas.microsoft.com/office/word/2018/wordml"
xmlns:w16sdtdh="http://schemas.microsoft.com/office/word/2020/wordml/sdtdatahash"
xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex"
xmlns:sl="http://schemas.openxmlformats.org/schemaLibrary/2006/main"
mc:Ignorable="w14 w15 w16se w16cid w16 w16cex w16sdtdh">
<w:zoom w:percent="170" />
<w:bordersDoNotSurroundHeader />
<w:bordersDoNotSurroundFooter />
<w:defaultTabStop w:val="420" />
<w:drawingGridVerticalSpacing w:val="156" />
<w:displayHorizontalDrawingGridEvery w:val="0" />
<w:displayVerticalDrawingGridEvery w:val="2" />
<w:characterSpacingControl w:val="compressPunctuation" />
<w:compat>
<w:spaceForUL />
<w:balanceSingleByteDoubleByteWidth />
<w:doNotLeaveBackslashAlone />
<w:ulTrailSpace />
<w:doNotExpandShiftReturn />
<w:adjustLineHeightInTable />
<w:useFELayout />
<w:compatSetting w:name="compatibilityMode" w:uri="http://schemas.microsoft.com/office/word"
w:val="15" />
<w:compatSetting w:name="overrideTableStyleFontSizeAndJustification"
w:uri="http://schemas.microsoft.com/office/word" w:val="1" />
<w:compatSetting w:name="enableOpenTypeFeatures"
w:uri="http://schemas.microsoft.com/office/word" w:val="1" />
<w:compatSetting w:name="doNotFlipMirrorIndents"
w:uri="http://schemas.microsoft.com/office/word" w:val="1" />
<w:compatSetting w:name="differentiateMultirowTableHeaders"
w:uri="http://schemas.microsoft.com/office/word" w:val="1" />
<w:compatSetting w:name="useWord2013TrackBottomHyphenation"
w:uri="http://schemas.microsoft.com/office/word" w:val="0" />
</w:compat>
<w:rsids>
<w:rsidRoot w:val="006A5323" />
<w:rsid w:val="000A6C4B" />
<w:rsid w:val="001E68A4" />
<w:rsid w:val="001F5721" />
<w:rsid w:val="002017C7" />
<w:rsid w:val="00223735" />
<w:rsid w:val="002415FE" />
<w:rsid w:val="00310664" />
<w:rsid w:val="003273E9" />
<w:rsid w:val="003A1158" />
<w:rsid w:val="003A4403" />
<w:rsid w:val="004251A5" />
<w:rsid w:val="00485792" />
<w:rsid w:val="004A5781" />
<w:rsid w:val="00574DD7" />
<w:rsid w:val="005B6B1F" />
<w:rsid w:val="006A5323" />
<w:rsid w:val="00703A50" />
<w:rsid w:val="00756C94" />
<w:rsid w:val="007932E0" />
<w:rsid w:val="007C06E5" />
<w:rsid w:val="0083191B" />
<w:rsid w:val="008A4BC5" />
<w:rsid w:val="009371BC" />
<w:rsid w:val="00954104" />
<w:rsid w:val="009D35B0" />
<w:rsid w:val="00A275CB" />
<w:rsid w:val="00A70849" />
<w:rsid w:val="00AA7527" />
<w:rsid w:val="00AB20C4" />
<w:rsid w:val="00AE568B" />
<w:rsid w:val="00B06B85" />
<w:rsid w:val="00BA32DF" />
<w:rsid w:val="00C737CD" />
<w:rsid w:val="00E660A5" />
<w:rsid w:val="00FB20FB" />
</w:rsids>
<m:mathPr>
<m:mathFont m:val="Cambria Math" />
<m:brkBin m:val="before" />
<m:brkBinSub m:val="--" />
<m:smallFrac m:val="0" />
<m:dispDef />
<m:lMargin m:val="0" />
<m:rMargin m:val="0" />
<m:defJc m:val="centerGroup" />
<m:wrapIndent m:val="1440" />
<m:intLim m:val="subSup" />
<m:naryLim m:val="undOvr" />
</m:mathPr>
<w:themeFontLang w:val="en-CN" w:eastAsia="zh-CN" />
<w:clrSchemeMapping w:bg1="light1" w:t1="dark1" w:bg2="light2" w:t2="dark2" w:accent1="accent1"
w:accent2="accent2" w:accent3="accent3" w:accent4="accent4" w:accent5="accent5"
w:accent6="accent6" w:hyperlink="hyperlink" w:followedHyperlink="followedHyperlink" />
<w:decimalSymbol w:val="." />
<w:listSeparator w:val="," />
<w14:docId w14:val="7D05306F" />
<w15:chartTrackingRefBased />
<w15:docId w15:val="{3E2DE498-7B91-1143-917B-23A36B6D81E1}" />
</w:settings>`);

View File

@ -0,0 +1,960 @@
import {parseXML} from '../../../util/xml';
export const stylesXML =
parseXML(`<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<w:styles xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
xmlns:w16cex="http://schemas.microsoft.com/office/word/2018/wordml/cex"
xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid"
xmlns:w16="http://schemas.microsoft.com/office/word/2018/wordml"
xmlns:w16sdtdh="http://schemas.microsoft.com/office/word/2020/wordml/sdtdatahash"
xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex"
mc:Ignorable="w14 w15 w16se w16cid w16 w16cex w16sdtdh">
<w:docDefaults>
<w:rPrDefault>
<w:rPr>
<w:rFonts w:asciiTheme="minorHAnsi" w:eastAsiaTheme="minorEastAsia"
w:hAnsiTheme="minorHAnsi" w:cstheme="minorBidi" />
<w:kern w:val="2" />
<w:sz w:val="21" />
<w:szCs w:val="24" />
<w:lang w:val="en-CN" w:eastAsia="zh-CN" w:bidi="ar-SA" />
<w14:ligatures w14:val="standardContextual" />
</w:rPr>
</w:rPrDefault>
<w:pPrDefault />
</w:docDefaults>
<w:latentStyles w:defLockedState="0" w:defUIPriority="99" w:defSemiHidden="0"
w:defUnhideWhenUsed="0" w:defQFormat="0" w:count="376">
<w:lsdException w:name="Normal" w:uiPriority="0" w:qFormat="1" />
<w:lsdException w:name="heading 1" w:uiPriority="9" w:qFormat="1" />
<w:lsdException w:name="heading 2" w:semiHidden="1" w:uiPriority="9" w:unhideWhenUsed="1"
w:qFormat="1" />
<w:lsdException w:name="heading 3" w:semiHidden="1" w:uiPriority="9" w:unhideWhenUsed="1"
w:qFormat="1" />
<w:lsdException w:name="heading 4" w:semiHidden="1" w:uiPriority="9" w:unhideWhenUsed="1"
w:qFormat="1" />
<w:lsdException w:name="heading 5" w:semiHidden="1" w:uiPriority="9" w:unhideWhenUsed="1"
w:qFormat="1" />
<w:lsdException w:name="heading 6" w:semiHidden="1" w:uiPriority="9" w:unhideWhenUsed="1"
w:qFormat="1" />
<w:lsdException w:name="heading 7" w:semiHidden="1" w:uiPriority="9" w:unhideWhenUsed="1"
w:qFormat="1" />
<w:lsdException w:name="heading 8" w:semiHidden="1" w:uiPriority="9" w:unhideWhenUsed="1"
w:qFormat="1" />
<w:lsdException w:name="heading 9" w:semiHidden="1" w:uiPriority="9" w:unhideWhenUsed="1"
w:qFormat="1" />
<w:lsdException w:name="index 1" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="index 2" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="index 3" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="index 4" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="index 5" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="index 6" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="index 7" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="index 8" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="index 9" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="toc 1" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1" />
<w:lsdException w:name="toc 2" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1" />
<w:lsdException w:name="toc 3" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1" />
<w:lsdException w:name="toc 4" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1" />
<w:lsdException w:name="toc 5" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1" />
<w:lsdException w:name="toc 6" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1" />
<w:lsdException w:name="toc 7" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1" />
<w:lsdException w:name="toc 8" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1" />
<w:lsdException w:name="toc 9" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1" />
<w:lsdException w:name="Normal Indent" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="footnote text" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="annotation text" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="header" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="footer" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="index heading" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="caption" w:semiHidden="1" w:uiPriority="35" w:unhideWhenUsed="1"
w:qFormat="1" />
<w:lsdException w:name="table of figures" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="envelope address" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="envelope return" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="footnote reference" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="annotation reference" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="line number" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="page number" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="endnote reference" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="endnote text" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="table of authorities" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="macro" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="toa heading" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="List" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="List Bullet" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="List Number" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="List 2" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="List 3" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="List 4" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="List 5" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="List Bullet 2" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="List Bullet 3" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="List Bullet 4" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="List Bullet 5" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="List Number 2" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="List Number 3" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="List Number 4" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="List Number 5" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Title" w:uiPriority="10" w:qFormat="1" />
<w:lsdException w:name="Closing" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Signature" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Default Paragraph Font" w:semiHidden="1" w:uiPriority="1"
w:unhideWhenUsed="1" />
<w:lsdException w:name="Body Text" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Body Text Indent" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="List Continue" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="List Continue 2" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="List Continue 3" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="List Continue 4" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="List Continue 5" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Message Header" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Subtitle" w:uiPriority="11" w:qFormat="1" />
<w:lsdException w:name="Salutation" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Date" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Body Text First Indent" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Body Text First Indent 2" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Note Heading" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Body Text 2" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Body Text 3" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Body Text Indent 2" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Body Text Indent 3" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Block Text" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Hyperlink" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="FollowedHyperlink" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Strong" w:uiPriority="22" w:qFormat="1" />
<w:lsdException w:name="Emphasis" w:uiPriority="20" w:qFormat="1" />
<w:lsdException w:name="Document Map" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Plain Text" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="E-mail Signature" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="HTML Top of Form" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="HTML Bottom of Form" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Normal (Web)" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="HTML Acronym" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="HTML Address" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="HTML Cite" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="HTML Code" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="HTML Definition" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="HTML Keyboard" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="HTML Preformatted" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="HTML Sample" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="HTML Typewriter" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="HTML Variable" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Normal Table" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="annotation subject" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="No List" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Outline List 1" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Outline List 2" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Outline List 3" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Simple 1" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Simple 2" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Simple 3" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Classic 1" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Classic 2" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Classic 3" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Classic 4" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Colorful 1" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Colorful 2" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Colorful 3" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Columns 1" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Columns 2" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Columns 3" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Columns 4" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Columns 5" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Grid 1" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Grid 2" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Grid 3" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Grid 4" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Grid 5" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Grid 6" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Grid 7" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Grid 8" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table List 1" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table List 2" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table List 3" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table List 4" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table List 5" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table List 6" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table List 7" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table List 8" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table 3D effects 1" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table 3D effects 2" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table 3D effects 3" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Contemporary" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Elegant" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Professional" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Subtle 1" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Subtle 2" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Web 1" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Web 2" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Web 3" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Balloon Text" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Table Grid" w:uiPriority="39" />
<w:lsdException w:name="Table Theme" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Placeholder Text" w:semiHidden="1" />
<w:lsdException w:name="No Spacing" w:uiPriority="1" w:qFormat="1" />
<w:lsdException w:name="Light Shading" w:uiPriority="60" />
<w:lsdException w:name="Light List" w:uiPriority="61" />
<w:lsdException w:name="Light Grid" w:uiPriority="62" />
<w:lsdException w:name="Medium Shading 1" w:uiPriority="63" />
<w:lsdException w:name="Medium Shading 2" w:uiPriority="64" />
<w:lsdException w:name="Medium List 1" w:uiPriority="65" />
<w:lsdException w:name="Medium List 2" w:uiPriority="66" />
<w:lsdException w:name="Medium Grid 1" w:uiPriority="67" />
<w:lsdException w:name="Medium Grid 2" w:uiPriority="68" />
<w:lsdException w:name="Medium Grid 3" w:uiPriority="69" />
<w:lsdException w:name="Dark List" w:uiPriority="70" />
<w:lsdException w:name="Colorful Shading" w:uiPriority="71" />
<w:lsdException w:name="Colorful List" w:uiPriority="72" />
<w:lsdException w:name="Colorful Grid" w:uiPriority="73" />
<w:lsdException w:name="Light Shading Accent 1" w:uiPriority="60" />
<w:lsdException w:name="Light List Accent 1" w:uiPriority="61" />
<w:lsdException w:name="Light Grid Accent 1" w:uiPriority="62" />
<w:lsdException w:name="Medium Shading 1 Accent 1" w:uiPriority="63" />
<w:lsdException w:name="Medium Shading 2 Accent 1" w:uiPriority="64" />
<w:lsdException w:name="Medium List 1 Accent 1" w:uiPriority="65" />
<w:lsdException w:name="Revision" w:semiHidden="1" />
<w:lsdException w:name="List Paragraph" w:uiPriority="34" w:qFormat="1" />
<w:lsdException w:name="Quote" w:uiPriority="29" w:qFormat="1" />
<w:lsdException w:name="Intense Quote" w:uiPriority="30" w:qFormat="1" />
<w:lsdException w:name="Medium List 2 Accent 1" w:uiPriority="66" />
<w:lsdException w:name="Medium Grid 1 Accent 1" w:uiPriority="67" />
<w:lsdException w:name="Medium Grid 2 Accent 1" w:uiPriority="68" />
<w:lsdException w:name="Medium Grid 3 Accent 1" w:uiPriority="69" />
<w:lsdException w:name="Dark List Accent 1" w:uiPriority="70" />
<w:lsdException w:name="Colorful Shading Accent 1" w:uiPriority="71" />
<w:lsdException w:name="Colorful List Accent 1" w:uiPriority="72" />
<w:lsdException w:name="Colorful Grid Accent 1" w:uiPriority="73" />
<w:lsdException w:name="Light Shading Accent 2" w:uiPriority="60" />
<w:lsdException w:name="Light List Accent 2" w:uiPriority="61" />
<w:lsdException w:name="Light Grid Accent 2" w:uiPriority="62" />
<w:lsdException w:name="Medium Shading 1 Accent 2" w:uiPriority="63" />
<w:lsdException w:name="Medium Shading 2 Accent 2" w:uiPriority="64" />
<w:lsdException w:name="Medium List 1 Accent 2" w:uiPriority="65" />
<w:lsdException w:name="Medium List 2 Accent 2" w:uiPriority="66" />
<w:lsdException w:name="Medium Grid 1 Accent 2" w:uiPriority="67" />
<w:lsdException w:name="Medium Grid 2 Accent 2" w:uiPriority="68" />
<w:lsdException w:name="Medium Grid 3 Accent 2" w:uiPriority="69" />
<w:lsdException w:name="Dark List Accent 2" w:uiPriority="70" />
<w:lsdException w:name="Colorful Shading Accent 2" w:uiPriority="71" />
<w:lsdException w:name="Colorful List Accent 2" w:uiPriority="72" />
<w:lsdException w:name="Colorful Grid Accent 2" w:uiPriority="73" />
<w:lsdException w:name="Light Shading Accent 3" w:uiPriority="60" />
<w:lsdException w:name="Light List Accent 3" w:uiPriority="61" />
<w:lsdException w:name="Light Grid Accent 3" w:uiPriority="62" />
<w:lsdException w:name="Medium Shading 1 Accent 3" w:uiPriority="63" />
<w:lsdException w:name="Medium Shading 2 Accent 3" w:uiPriority="64" />
<w:lsdException w:name="Medium List 1 Accent 3" w:uiPriority="65" />
<w:lsdException w:name="Medium List 2 Accent 3" w:uiPriority="66" />
<w:lsdException w:name="Medium Grid 1 Accent 3" w:uiPriority="67" />
<w:lsdException w:name="Medium Grid 2 Accent 3" w:uiPriority="68" />
<w:lsdException w:name="Medium Grid 3 Accent 3" w:uiPriority="69" />
<w:lsdException w:name="Dark List Accent 3" w:uiPriority="70" />
<w:lsdException w:name="Colorful Shading Accent 3" w:uiPriority="71" />
<w:lsdException w:name="Colorful List Accent 3" w:uiPriority="72" />
<w:lsdException w:name="Colorful Grid Accent 3" w:uiPriority="73" />
<w:lsdException w:name="Light Shading Accent 4" w:uiPriority="60" />
<w:lsdException w:name="Light List Accent 4" w:uiPriority="61" />
<w:lsdException w:name="Light Grid Accent 4" w:uiPriority="62" />
<w:lsdException w:name="Medium Shading 1 Accent 4" w:uiPriority="63" />
<w:lsdException w:name="Medium Shading 2 Accent 4" w:uiPriority="64" />
<w:lsdException w:name="Medium List 1 Accent 4" w:uiPriority="65" />
<w:lsdException w:name="Medium List 2 Accent 4" w:uiPriority="66" />
<w:lsdException w:name="Medium Grid 1 Accent 4" w:uiPriority="67" />
<w:lsdException w:name="Medium Grid 2 Accent 4" w:uiPriority="68" />
<w:lsdException w:name="Medium Grid 3 Accent 4" w:uiPriority="69" />
<w:lsdException w:name="Dark List Accent 4" w:uiPriority="70" />
<w:lsdException w:name="Colorful Shading Accent 4" w:uiPriority="71" />
<w:lsdException w:name="Colorful List Accent 4" w:uiPriority="72" />
<w:lsdException w:name="Colorful Grid Accent 4" w:uiPriority="73" />
<w:lsdException w:name="Light Shading Accent 5" w:uiPriority="60" />
<w:lsdException w:name="Light List Accent 5" w:uiPriority="61" />
<w:lsdException w:name="Light Grid Accent 5" w:uiPriority="62" />
<w:lsdException w:name="Medium Shading 1 Accent 5" w:uiPriority="63" />
<w:lsdException w:name="Medium Shading 2 Accent 5" w:uiPriority="64" />
<w:lsdException w:name="Medium List 1 Accent 5" w:uiPriority="65" />
<w:lsdException w:name="Medium List 2 Accent 5" w:uiPriority="66" />
<w:lsdException w:name="Medium Grid 1 Accent 5" w:uiPriority="67" />
<w:lsdException w:name="Medium Grid 2 Accent 5" w:uiPriority="68" />
<w:lsdException w:name="Medium Grid 3 Accent 5" w:uiPriority="69" />
<w:lsdException w:name="Dark List Accent 5" w:uiPriority="70" />
<w:lsdException w:name="Colorful Shading Accent 5" w:uiPriority="71" />
<w:lsdException w:name="Colorful List Accent 5" w:uiPriority="72" />
<w:lsdException w:name="Colorful Grid Accent 5" w:uiPriority="73" />
<w:lsdException w:name="Light Shading Accent 6" w:uiPriority="60" />
<w:lsdException w:name="Light List Accent 6" w:uiPriority="61" />
<w:lsdException w:name="Light Grid Accent 6" w:uiPriority="62" />
<w:lsdException w:name="Medium Shading 1 Accent 6" w:uiPriority="63" />
<w:lsdException w:name="Medium Shading 2 Accent 6" w:uiPriority="64" />
<w:lsdException w:name="Medium List 1 Accent 6" w:uiPriority="65" />
<w:lsdException w:name="Medium List 2 Accent 6" w:uiPriority="66" />
<w:lsdException w:name="Medium Grid 1 Accent 6" w:uiPriority="67" />
<w:lsdException w:name="Medium Grid 2 Accent 6" w:uiPriority="68" />
<w:lsdException w:name="Medium Grid 3 Accent 6" w:uiPriority="69" />
<w:lsdException w:name="Dark List Accent 6" w:uiPriority="70" />
<w:lsdException w:name="Colorful Shading Accent 6" w:uiPriority="71" />
<w:lsdException w:name="Colorful List Accent 6" w:uiPriority="72" />
<w:lsdException w:name="Colorful Grid Accent 6" w:uiPriority="73" />
<w:lsdException w:name="Subtle Emphasis" w:uiPriority="19" w:qFormat="1" />
<w:lsdException w:name="Intense Emphasis" w:uiPriority="21" w:qFormat="1" />
<w:lsdException w:name="Subtle Reference" w:uiPriority="31" w:qFormat="1" />
<w:lsdException w:name="Intense Reference" w:uiPriority="32" w:qFormat="1" />
<w:lsdException w:name="Book Title" w:uiPriority="33" w:qFormat="1" />
<w:lsdException w:name="Bibliography" w:semiHidden="1" w:uiPriority="37"
w:unhideWhenUsed="1" />
<w:lsdException w:name="TOC Heading" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1"
w:qFormat="1" />
<w:lsdException w:name="Plain Table 1" w:uiPriority="41" />
<w:lsdException w:name="Plain Table 2" w:uiPriority="42" />
<w:lsdException w:name="Plain Table 3" w:uiPriority="43" />
<w:lsdException w:name="Plain Table 4" w:uiPriority="44" />
<w:lsdException w:name="Plain Table 5" w:uiPriority="45" />
<w:lsdException w:name="Grid Table Light" w:uiPriority="40" />
<w:lsdException w:name="Grid Table 1 Light" w:uiPriority="46" />
<w:lsdException w:name="Grid Table 2" w:uiPriority="47" />
<w:lsdException w:name="Grid Table 3" w:uiPriority="48" />
<w:lsdException w:name="Grid Table 4" w:uiPriority="49" />
<w:lsdException w:name="Grid Table 5 Dark" w:uiPriority="50" />
<w:lsdException w:name="Grid Table 6 Colorful" w:uiPriority="51" />
<w:lsdException w:name="Grid Table 7 Colorful" w:uiPriority="52" />
<w:lsdException w:name="Grid Table 1 Light Accent 1" w:uiPriority="46" />
<w:lsdException w:name="Grid Table 2 Accent 1" w:uiPriority="47" />
<w:lsdException w:name="Grid Table 3 Accent 1" w:uiPriority="48" />
<w:lsdException w:name="Grid Table 4 Accent 1" w:uiPriority="49" />
<w:lsdException w:name="Grid Table 5 Dark Accent 1" w:uiPriority="50" />
<w:lsdException w:name="Grid Table 6 Colorful Accent 1" w:uiPriority="51" />
<w:lsdException w:name="Grid Table 7 Colorful Accent 1" w:uiPriority="52" />
<w:lsdException w:name="Grid Table 1 Light Accent 2" w:uiPriority="46" />
<w:lsdException w:name="Grid Table 2 Accent 2" w:uiPriority="47" />
<w:lsdException w:name="Grid Table 3 Accent 2" w:uiPriority="48" />
<w:lsdException w:name="Grid Table 4 Accent 2" w:uiPriority="49" />
<w:lsdException w:name="Grid Table 5 Dark Accent 2" w:uiPriority="50" />
<w:lsdException w:name="Grid Table 6 Colorful Accent 2" w:uiPriority="51" />
<w:lsdException w:name="Grid Table 7 Colorful Accent 2" w:uiPriority="52" />
<w:lsdException w:name="Grid Table 1 Light Accent 3" w:uiPriority="46" />
<w:lsdException w:name="Grid Table 2 Accent 3" w:uiPriority="47" />
<w:lsdException w:name="Grid Table 3 Accent 3" w:uiPriority="48" />
<w:lsdException w:name="Grid Table 4 Accent 3" w:uiPriority="49" />
<w:lsdException w:name="Grid Table 5 Dark Accent 3" w:uiPriority="50" />
<w:lsdException w:name="Grid Table 6 Colorful Accent 3" w:uiPriority="51" />
<w:lsdException w:name="Grid Table 7 Colorful Accent 3" w:uiPriority="52" />
<w:lsdException w:name="Grid Table 1 Light Accent 4" w:uiPriority="46" />
<w:lsdException w:name="Grid Table 2 Accent 4" w:uiPriority="47" />
<w:lsdException w:name="Grid Table 3 Accent 4" w:uiPriority="48" />
<w:lsdException w:name="Grid Table 4 Accent 4" w:uiPriority="49" />
<w:lsdException w:name="Grid Table 5 Dark Accent 4" w:uiPriority="50" />
<w:lsdException w:name="Grid Table 6 Colorful Accent 4" w:uiPriority="51" />
<w:lsdException w:name="Grid Table 7 Colorful Accent 4" w:uiPriority="52" />
<w:lsdException w:name="Grid Table 1 Light Accent 5" w:uiPriority="46" />
<w:lsdException w:name="Grid Table 2 Accent 5" w:uiPriority="47" />
<w:lsdException w:name="Grid Table 3 Accent 5" w:uiPriority="48" />
<w:lsdException w:name="Grid Table 4 Accent 5" w:uiPriority="49" />
<w:lsdException w:name="Grid Table 5 Dark Accent 5" w:uiPriority="50" />
<w:lsdException w:name="Grid Table 6 Colorful Accent 5" w:uiPriority="51" />
<w:lsdException w:name="Grid Table 7 Colorful Accent 5" w:uiPriority="52" />
<w:lsdException w:name="Grid Table 1 Light Accent 6" w:uiPriority="46" />
<w:lsdException w:name="Grid Table 2 Accent 6" w:uiPriority="47" />
<w:lsdException w:name="Grid Table 3 Accent 6" w:uiPriority="48" />
<w:lsdException w:name="Grid Table 4 Accent 6" w:uiPriority="49" />
<w:lsdException w:name="Grid Table 5 Dark Accent 6" w:uiPriority="50" />
<w:lsdException w:name="Grid Table 6 Colorful Accent 6" w:uiPriority="51" />
<w:lsdException w:name="Grid Table 7 Colorful Accent 6" w:uiPriority="52" />
<w:lsdException w:name="List Table 1 Light" w:uiPriority="46" />
<w:lsdException w:name="List Table 2" w:uiPriority="47" />
<w:lsdException w:name="List Table 3" w:uiPriority="48" />
<w:lsdException w:name="List Table 4" w:uiPriority="49" />
<w:lsdException w:name="List Table 5 Dark" w:uiPriority="50" />
<w:lsdException w:name="List Table 6 Colorful" w:uiPriority="51" />
<w:lsdException w:name="List Table 7 Colorful" w:uiPriority="52" />
<w:lsdException w:name="List Table 1 Light Accent 1" w:uiPriority="46" />
<w:lsdException w:name="List Table 2 Accent 1" w:uiPriority="47" />
<w:lsdException w:name="List Table 3 Accent 1" w:uiPriority="48" />
<w:lsdException w:name="List Table 4 Accent 1" w:uiPriority="49" />
<w:lsdException w:name="List Table 5 Dark Accent 1" w:uiPriority="50" />
<w:lsdException w:name="List Table 6 Colorful Accent 1" w:uiPriority="51" />
<w:lsdException w:name="List Table 7 Colorful Accent 1" w:uiPriority="52" />
<w:lsdException w:name="List Table 1 Light Accent 2" w:uiPriority="46" />
<w:lsdException w:name="List Table 2 Accent 2" w:uiPriority="47" />
<w:lsdException w:name="List Table 3 Accent 2" w:uiPriority="48" />
<w:lsdException w:name="List Table 4 Accent 2" w:uiPriority="49" />
<w:lsdException w:name="List Table 5 Dark Accent 2" w:uiPriority="50" />
<w:lsdException w:name="List Table 6 Colorful Accent 2" w:uiPriority="51" />
<w:lsdException w:name="List Table 7 Colorful Accent 2" w:uiPriority="52" />
<w:lsdException w:name="List Table 1 Light Accent 3" w:uiPriority="46" />
<w:lsdException w:name="List Table 2 Accent 3" w:uiPriority="47" />
<w:lsdException w:name="List Table 3 Accent 3" w:uiPriority="48" />
<w:lsdException w:name="List Table 4 Accent 3" w:uiPriority="49" />
<w:lsdException w:name="List Table 5 Dark Accent 3" w:uiPriority="50" />
<w:lsdException w:name="List Table 6 Colorful Accent 3" w:uiPriority="51" />
<w:lsdException w:name="List Table 7 Colorful Accent 3" w:uiPriority="52" />
<w:lsdException w:name="List Table 1 Light Accent 4" w:uiPriority="46" />
<w:lsdException w:name="List Table 2 Accent 4" w:uiPriority="47" />
<w:lsdException w:name="List Table 3 Accent 4" w:uiPriority="48" />
<w:lsdException w:name="List Table 4 Accent 4" w:uiPriority="49" />
<w:lsdException w:name="List Table 5 Dark Accent 4" w:uiPriority="50" />
<w:lsdException w:name="List Table 6 Colorful Accent 4" w:uiPriority="51" />
<w:lsdException w:name="List Table 7 Colorful Accent 4" w:uiPriority="52" />
<w:lsdException w:name="List Table 1 Light Accent 5" w:uiPriority="46" />
<w:lsdException w:name="List Table 2 Accent 5" w:uiPriority="47" />
<w:lsdException w:name="List Table 3 Accent 5" w:uiPriority="48" />
<w:lsdException w:name="List Table 4 Accent 5" w:uiPriority="49" />
<w:lsdException w:name="List Table 5 Dark Accent 5" w:uiPriority="50" />
<w:lsdException w:name="List Table 6 Colorful Accent 5" w:uiPriority="51" />
<w:lsdException w:name="List Table 7 Colorful Accent 5" w:uiPriority="52" />
<w:lsdException w:name="List Table 1 Light Accent 6" w:uiPriority="46" />
<w:lsdException w:name="List Table 2 Accent 6" w:uiPriority="47" />
<w:lsdException w:name="List Table 3 Accent 6" w:uiPriority="48" />
<w:lsdException w:name="List Table 4 Accent 6" w:uiPriority="49" />
<w:lsdException w:name="List Table 5 Dark Accent 6" w:uiPriority="50" />
<w:lsdException w:name="List Table 6 Colorful Accent 6" w:uiPriority="51" />
<w:lsdException w:name="List Table 7 Colorful Accent 6" w:uiPriority="52" />
<w:lsdException w:name="Mention" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Smart Hyperlink" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Hashtag" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Unresolved Mention" w:semiHidden="1" w:unhideWhenUsed="1" />
<w:lsdException w:name="Smart Link" w:semiHidden="1" w:unhideWhenUsed="1" />
</w:latentStyles>
<w:style w:type="paragraph" w:default="1" w:styleId="Normal">
<w:name w:val="Normal" />
<w:qFormat />
<w:pPr>
<w:widowControl w:val="0" />
<w:jc w:val="both" />
</w:pPr>
</w:style>
<w:style w:type="paragraph" w:styleId="Heading1">
<w:name w:val="heading 1" />
<w:basedOn w:val="Normal" />
<w:next w:val="Normal" />
<w:link w:val="Heading1Char" />
<w:uiPriority w:val="9" />
<w:qFormat />
<w:rsid w:val="006A5323" />
<w:pPr>
<w:keepNext />
<w:keepLines />
<w:spacing w:before="480" w:after="80" />
<w:outlineLvl w:val="0" />
</w:pPr>
<w:rPr>
<w:rFonts w:asciiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia"
w:hAnsiTheme="majorHAnsi" w:cstheme="majorBidi" />
<w:color w:val="0F4761" w:themeColor="accent1" w:themeShade="BF" />
<w:sz w:val="48" />
<w:szCs w:val="48" />
</w:rPr>
</w:style>
<w:style w:type="paragraph" w:styleId="Heading2">
<w:name w:val="heading 2" />
<w:basedOn w:val="Normal" />
<w:next w:val="Normal" />
<w:link w:val="Heading2Char" />
<w:uiPriority w:val="9" />
<w:semiHidden />
<w:unhideWhenUsed />
<w:qFormat />
<w:rsid w:val="006A5323" />
<w:pPr>
<w:keepNext />
<w:keepLines />
<w:spacing w:before="160" w:after="80" />
<w:outlineLvl w:val="1" />
</w:pPr>
<w:rPr>
<w:rFonts w:asciiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia"
w:hAnsiTheme="majorHAnsi" w:cstheme="majorBidi" />
<w:color w:val="0F4761" w:themeColor="accent1" w:themeShade="BF" />
<w:sz w:val="40" />
<w:szCs w:val="40" />
</w:rPr>
</w:style>
<w:style w:type="paragraph" w:styleId="Heading3">
<w:name w:val="heading 3" />
<w:basedOn w:val="Normal" />
<w:next w:val="Normal" />
<w:link w:val="Heading3Char" />
<w:uiPriority w:val="9" />
<w:semiHidden />
<w:unhideWhenUsed />
<w:qFormat />
<w:rsid w:val="006A5323" />
<w:pPr>
<w:keepNext />
<w:keepLines />
<w:spacing w:before="160" w:after="80" />
<w:outlineLvl w:val="2" />
</w:pPr>
<w:rPr>
<w:rFonts w:asciiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia"
w:hAnsiTheme="majorHAnsi" w:cstheme="majorBidi" />
<w:color w:val="0F4761" w:themeColor="accent1" w:themeShade="BF" />
<w:sz w:val="32" />
<w:szCs w:val="32" />
</w:rPr>
</w:style>
<w:style w:type="paragraph" w:styleId="Heading4">
<w:name w:val="heading 4" />
<w:basedOn w:val="Normal" />
<w:next w:val="Normal" />
<w:link w:val="Heading4Char" />
<w:uiPriority w:val="9" />
<w:semiHidden />
<w:unhideWhenUsed />
<w:qFormat />
<w:rsid w:val="006A5323" />
<w:pPr>
<w:keepNext />
<w:keepLines />
<w:spacing w:before="80" w:after="40" />
<w:outlineLvl w:val="3" />
</w:pPr>
<w:rPr>
<w:rFonts w:cstheme="majorBidi" />
<w:color w:val="0F4761" w:themeColor="accent1" w:themeShade="BF" />
<w:sz w:val="28" />
<w:szCs w:val="28" />
</w:rPr>
</w:style>
<w:style w:type="paragraph" w:styleId="Heading5">
<w:name w:val="heading 5" />
<w:basedOn w:val="Normal" />
<w:next w:val="Normal" />
<w:link w:val="Heading5Char" />
<w:uiPriority w:val="9" />
<w:semiHidden />
<w:unhideWhenUsed />
<w:qFormat />
<w:rsid w:val="006A5323" />
<w:pPr>
<w:keepNext />
<w:keepLines />
<w:spacing w:before="80" w:after="40" />
<w:outlineLvl w:val="4" />
</w:pPr>
<w:rPr>
<w:rFonts w:cstheme="majorBidi" />
<w:color w:val="0F4761" w:themeColor="accent1" w:themeShade="BF" />
<w:sz w:val="24" />
</w:rPr>
</w:style>
<w:style w:type="paragraph" w:styleId="Heading6">
<w:name w:val="heading 6" />
<w:basedOn w:val="Normal" />
<w:next w:val="Normal" />
<w:link w:val="Heading6Char" />
<w:uiPriority w:val="9" />
<w:semiHidden />
<w:unhideWhenUsed />
<w:qFormat />
<w:rsid w:val="006A5323" />
<w:pPr>
<w:keepNext />
<w:keepLines />
<w:spacing w:before="40" />
<w:outlineLvl w:val="5" />
</w:pPr>
<w:rPr>
<w:rFonts w:cstheme="majorBidi" />
<w:b />
<w:bCs />
<w:color w:val="0F4761" w:themeColor="accent1" w:themeShade="BF" />
</w:rPr>
</w:style>
<w:style w:type="paragraph" w:styleId="Heading7">
<w:name w:val="heading 7" />
<w:basedOn w:val="Normal" />
<w:next w:val="Normal" />
<w:link w:val="Heading7Char" />
<w:uiPriority w:val="9" />
<w:semiHidden />
<w:unhideWhenUsed />
<w:qFormat />
<w:rsid w:val="006A5323" />
<w:pPr>
<w:keepNext />
<w:keepLines />
<w:spacing w:before="40" />
<w:outlineLvl w:val="6" />
</w:pPr>
<w:rPr>
<w:rFonts w:cstheme="majorBidi" />
<w:b />
<w:bCs />
<w:color w:val="595959" w:themeColor="text1" w:themeTint="A6" />
</w:rPr>
</w:style>
<w:style w:type="paragraph" w:styleId="Heading8">
<w:name w:val="heading 8" />
<w:basedOn w:val="Normal" />
<w:next w:val="Normal" />
<w:link w:val="Heading8Char" />
<w:uiPriority w:val="9" />
<w:semiHidden />
<w:unhideWhenUsed />
<w:qFormat />
<w:rsid w:val="006A5323" />
<w:pPr>
<w:keepNext />
<w:keepLines />
<w:outlineLvl w:val="7" />
</w:pPr>
<w:rPr>
<w:rFonts w:cstheme="majorBidi" />
<w:color w:val="595959" w:themeColor="text1" w:themeTint="A6" />
</w:rPr>
</w:style>
<w:style w:type="paragraph" w:styleId="Heading9">
<w:name w:val="heading 9" />
<w:basedOn w:val="Normal" />
<w:next w:val="Normal" />
<w:link w:val="Heading9Char" />
<w:uiPriority w:val="9" />
<w:semiHidden />
<w:unhideWhenUsed />
<w:qFormat />
<w:rsid w:val="006A5323" />
<w:pPr>
<w:keepNext />
<w:keepLines />
<w:outlineLvl w:val="8" />
</w:pPr>
<w:rPr>
<w:rFonts w:eastAsiaTheme="majorEastAsia" w:cstheme="majorBidi" />
<w:color w:val="595959" w:themeColor="text1" w:themeTint="A6" />
</w:rPr>
</w:style>
<w:style w:type="character" w:default="1" w:styleId="DefaultParagraphFont">
<w:name w:val="Default Paragraph Font" />
<w:uiPriority w:val="1" />
<w:semiHidden />
<w:unhideWhenUsed />
</w:style>
<w:style w:type="table" w:default="1" w:styleId="TableNormal">
<w:name w:val="Normal Table" />
<w:uiPriority w:val="99" />
<w:semiHidden />
<w:unhideWhenUsed />
<w:tblPr>
<w:tblInd w:w="0" w:type="dxa" />
<w:tblCellMar>
<w:top w:w="0" w:type="dxa" />
<w:left w:w="108" w:type="dxa" />
<w:bottom w:w="0" w:type="dxa" />
<w:right w:w="108" w:type="dxa" />
</w:tblCellMar>
</w:tblPr>
</w:style>
<w:style w:type="numbering" w:default="1" w:styleId="NoList">
<w:name w:val="No List" />
<w:uiPriority w:val="99" />
<w:semiHidden />
<w:unhideWhenUsed />
</w:style>
<w:style w:type="character" w:customStyle="1" w:styleId="Heading1Char">
<w:name w:val="Heading 1 Char" />
<w:basedOn w:val="DefaultParagraphFont" />
<w:link w:val="Heading1" />
<w:uiPriority w:val="9" />
<w:rsid w:val="006A5323" />
<w:rPr>
<w:rFonts w:asciiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia"
w:hAnsiTheme="majorHAnsi" w:cstheme="majorBidi" />
<w:color w:val="0F4761" w:themeColor="accent1" w:themeShade="BF" />
<w:sz w:val="48" />
<w:szCs w:val="48" />
</w:rPr>
</w:style>
<w:style w:type="character" w:customStyle="1" w:styleId="Heading2Char">
<w:name w:val="Heading 2 Char" />
<w:basedOn w:val="DefaultParagraphFont" />
<w:link w:val="Heading2" />
<w:uiPriority w:val="9" />
<w:semiHidden />
<w:rsid w:val="006A5323" />
<w:rPr>
<w:rFonts w:asciiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia"
w:hAnsiTheme="majorHAnsi" w:cstheme="majorBidi" />
<w:color w:val="0F4761" w:themeColor="accent1" w:themeShade="BF" />
<w:sz w:val="40" />
<w:szCs w:val="40" />
</w:rPr>
</w:style>
<w:style w:type="character" w:customStyle="1" w:styleId="Heading3Char">
<w:name w:val="Heading 3 Char" />
<w:basedOn w:val="DefaultParagraphFont" />
<w:link w:val="Heading3" />
<w:uiPriority w:val="9" />
<w:semiHidden />
<w:rsid w:val="006A5323" />
<w:rPr>
<w:rFonts w:asciiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia"
w:hAnsiTheme="majorHAnsi" w:cstheme="majorBidi" />
<w:color w:val="0F4761" w:themeColor="accent1" w:themeShade="BF" />
<w:sz w:val="32" />
<w:szCs w:val="32" />
</w:rPr>
</w:style>
<w:style w:type="character" w:customStyle="1" w:styleId="Heading4Char">
<w:name w:val="Heading 4 Char" />
<w:basedOn w:val="DefaultParagraphFont" />
<w:link w:val="Heading4" />
<w:uiPriority w:val="9" />
<w:semiHidden />
<w:rsid w:val="006A5323" />
<w:rPr>
<w:rFonts w:cstheme="majorBidi" />
<w:color w:val="0F4761" w:themeColor="accent1" w:themeShade="BF" />
<w:sz w:val="28" />
<w:szCs w:val="28" />
</w:rPr>
</w:style>
<w:style w:type="character" w:customStyle="1" w:styleId="Heading5Char">
<w:name w:val="Heading 5 Char" />
<w:basedOn w:val="DefaultParagraphFont" />
<w:link w:val="Heading5" />
<w:uiPriority w:val="9" />
<w:semiHidden />
<w:rsid w:val="006A5323" />
<w:rPr>
<w:rFonts w:cstheme="majorBidi" />
<w:color w:val="0F4761" w:themeColor="accent1" w:themeShade="BF" />
<w:sz w:val="24" />
</w:rPr>
</w:style>
<w:style w:type="character" w:customStyle="1" w:styleId="Heading6Char">
<w:name w:val="Heading 6 Char" />
<w:basedOn w:val="DefaultParagraphFont" />
<w:link w:val="Heading6" />
<w:uiPriority w:val="9" />
<w:semiHidden />
<w:rsid w:val="006A5323" />
<w:rPr>
<w:rFonts w:cstheme="majorBidi" />
<w:b />
<w:bCs />
<w:color w:val="0F4761" w:themeColor="accent1" w:themeShade="BF" />
</w:rPr>
</w:style>
<w:style w:type="character" w:customStyle="1" w:styleId="Heading7Char">
<w:name w:val="Heading 7 Char" />
<w:basedOn w:val="DefaultParagraphFont" />
<w:link w:val="Heading7" />
<w:uiPriority w:val="9" />
<w:semiHidden />
<w:rsid w:val="006A5323" />
<w:rPr>
<w:rFonts w:cstheme="majorBidi" />
<w:b />
<w:bCs />
<w:color w:val="595959" w:themeColor="text1" w:themeTint="A6" />
</w:rPr>
</w:style>
<w:style w:type="character" w:customStyle="1" w:styleId="Heading8Char">
<w:name w:val="Heading 8 Char" />
<w:basedOn w:val="DefaultParagraphFont" />
<w:link w:val="Heading8" />
<w:uiPriority w:val="9" />
<w:semiHidden />
<w:rsid w:val="006A5323" />
<w:rPr>
<w:rFonts w:cstheme="majorBidi" />
<w:color w:val="595959" w:themeColor="text1" w:themeTint="A6" />
</w:rPr>
</w:style>
<w:style w:type="character" w:customStyle="1" w:styleId="Heading9Char">
<w:name w:val="Heading 9 Char" />
<w:basedOn w:val="DefaultParagraphFont" />
<w:link w:val="Heading9" />
<w:uiPriority w:val="9" />
<w:semiHidden />
<w:rsid w:val="006A5323" />
<w:rPr>
<w:rFonts w:eastAsiaTheme="majorEastAsia" w:cstheme="majorBidi" />
<w:color w:val="595959" w:themeColor="text1" w:themeTint="A6" />
</w:rPr>
</w:style>
<w:style w:type="paragraph" w:styleId="Title">
<w:name w:val="Title" />
<w:basedOn w:val="Normal" />
<w:next w:val="Normal" />
<w:link w:val="TitleChar" />
<w:uiPriority w:val="10" />
<w:qFormat />
<w:rsid w:val="006A5323" />
<w:pPr>
<w:spacing w:after="80" />
<w:contextualSpacing />
<w:jc w:val="center" />
</w:pPr>
<w:rPr>
<w:rFonts w:asciiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia"
w:hAnsiTheme="majorHAnsi" w:cstheme="majorBidi" />
<w:spacing w:val="-10" />
<w:kern w:val="28" />
<w:sz w:val="56" />
<w:szCs w:val="56" />
</w:rPr>
</w:style>
<w:style w:type="character" w:customStyle="1" w:styleId="TitleChar">
<w:name w:val="Title Char" />
<w:basedOn w:val="DefaultParagraphFont" />
<w:link w:val="Title" />
<w:uiPriority w:val="10" />
<w:rsid w:val="006A5323" />
<w:rPr>
<w:rFonts w:asciiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia"
w:hAnsiTheme="majorHAnsi" w:cstheme="majorBidi" />
<w:spacing w:val="-10" />
<w:kern w:val="28" />
<w:sz w:val="56" />
<w:szCs w:val="56" />
</w:rPr>
</w:style>
<w:style w:type="paragraph" w:styleId="Subtitle">
<w:name w:val="Subtitle" />
<w:basedOn w:val="Normal" />
<w:next w:val="Normal" />
<w:link w:val="SubtitleChar" />
<w:uiPriority w:val="11" />
<w:qFormat />
<w:rsid w:val="006A5323" />
<w:pPr>
<w:numPr>
<w:ilvl w:val="1" />
</w:numPr>
<w:spacing w:after="160" />
<w:jc w:val="center" />
</w:pPr>
<w:rPr>
<w:rFonts w:asciiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia"
w:hAnsiTheme="majorHAnsi" w:cstheme="majorBidi" />
<w:color w:val="595959" w:themeColor="text1" w:themeTint="A6" />
<w:spacing w:val="15" />
<w:sz w:val="28" />
<w:szCs w:val="28" />
</w:rPr>
</w:style>
<w:style w:type="character" w:customStyle="1" w:styleId="SubtitleChar">
<w:name w:val="Subtitle Char" />
<w:basedOn w:val="DefaultParagraphFont" />
<w:link w:val="Subtitle" />
<w:uiPriority w:val="11" />
<w:rsid w:val="006A5323" />
<w:rPr>
<w:rFonts w:asciiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia"
w:hAnsiTheme="majorHAnsi" w:cstheme="majorBidi" />
<w:color w:val="595959" w:themeColor="text1" w:themeTint="A6" />
<w:spacing w:val="15" />
<w:sz w:val="28" />
<w:szCs w:val="28" />
</w:rPr>
</w:style>
<w:style w:type="paragraph" w:styleId="Quote">
<w:name w:val="Quote" />
<w:basedOn w:val="Normal" />
<w:next w:val="Normal" />
<w:link w:val="QuoteChar" />
<w:uiPriority w:val="29" />
<w:qFormat />
<w:rsid w:val="006A5323" />
<w:pPr>
<w:spacing w:before="160" w:after="160" />
<w:jc w:val="center" />
</w:pPr>
<w:rPr>
<w:i />
<w:iCs />
<w:color w:val="404040" w:themeColor="text1" w:themeTint="BF" />
</w:rPr>
</w:style>
<w:style w:type="character" w:customStyle="1" w:styleId="QuoteChar">
<w:name w:val="Quote Char" />
<w:basedOn w:val="DefaultParagraphFont" />
<w:link w:val="Quote" />
<w:uiPriority w:val="29" />
<w:rsid w:val="006A5323" />
<w:rPr>
<w:i />
<w:iCs />
<w:color w:val="404040" w:themeColor="text1" w:themeTint="BF" />
</w:rPr>
</w:style>
<w:style w:type="paragraph" w:styleId="ListParagraph">
<w:name w:val="List Paragraph" />
<w:basedOn w:val="Normal" />
<w:uiPriority w:val="34" />
<w:qFormat />
<w:rsid w:val="006A5323" />
<w:pPr>
<w:ind w:left="720" />
<w:contextualSpacing />
</w:pPr>
</w:style>
<w:style w:type="character" w:styleId="IntenseEmphasis">
<w:name w:val="Intense Emphasis" />
<w:basedOn w:val="DefaultParagraphFont" />
<w:uiPriority w:val="21" />
<w:qFormat />
<w:rsid w:val="006A5323" />
<w:rPr>
<w:i />
<w:iCs />
<w:color w:val="0F4761" w:themeColor="accent1" w:themeShade="BF" />
</w:rPr>
</w:style>
<w:style w:type="paragraph" w:styleId="IntenseQuote">
<w:name w:val="Intense Quote" />
<w:basedOn w:val="Normal" />
<w:next w:val="Normal" />
<w:link w:val="IntenseQuoteChar" />
<w:uiPriority w:val="30" />
<w:qFormat />
<w:rsid w:val="006A5323" />
<w:pPr>
<w:pBdr>
<w:top w:val="single" w:sz="4" w:space="10" w:color="0F4761" w:themeColor="accent1"
w:themeShade="BF" />
<w:bottom w:val="single" w:sz="4" w:space="10" w:color="0F4761"
w:themeColor="accent1" w:themeShade="BF" />
</w:pBdr>
<w:spacing w:before="360" w:after="360" />
<w:ind w:left="864" w:right="864" />
<w:jc w:val="center" />
</w:pPr>
<w:rPr>
<w:i />
<w:iCs />
<w:color w:val="0F4761" w:themeColor="accent1" w:themeShade="BF" />
</w:rPr>
</w:style>
<w:style w:type="character" w:customStyle="1" w:styleId="IntenseQuoteChar">
<w:name w:val="Intense Quote Char" />
<w:basedOn w:val="DefaultParagraphFont" />
<w:link w:val="IntenseQuote" />
<w:uiPriority w:val="30" />
<w:rsid w:val="006A5323" />
<w:rPr>
<w:i />
<w:iCs />
<w:color w:val="0F4761" w:themeColor="accent1" w:themeShade="BF" />
</w:rPr>
</w:style>
<w:style w:type="character" w:styleId="IntenseReference">
<w:name w:val="Intense Reference" />
<w:basedOn w:val="DefaultParagraphFont" />
<w:uiPriority w:val="32" />
<w:qFormat />
<w:rsid w:val="006A5323" />
<w:rPr>
<w:b />
<w:bCs />
<w:smallCaps />
<w:color w:val="0F4761" w:themeColor="accent1" w:themeShade="BF" />
<w:spacing w:val="5" />
</w:rPr>
</w:style>
</w:styles>`);

View File

@ -0,0 +1,299 @@
import {parseXML} from '../../../util/xml';
export const themeXML =
parseXML(`<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<a:theme xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" name="Office Theme">
<a:themeElements>
<a:clrScheme name="Office">
<a:dk1>
<a:sysClr val="windowText" lastClr="000000" />
</a:dk1>
<a:lt1>
<a:sysClr val="window" lastClr="FFFFFF" />
</a:lt1>
<a:dk2>
<a:srgbClr val="0E2841" />
</a:dk2>
<a:lt2>
<a:srgbClr val="E8E8E8" />
</a:lt2>
<a:accent1>
<a:srgbClr val="156082" />
</a:accent1>
<a:accent2>
<a:srgbClr val="E97132" />
</a:accent2>
<a:accent3>
<a:srgbClr val="196B24" />
</a:accent3>
<a:accent4>
<a:srgbClr val="0F9ED5" />
</a:accent4>
<a:accent5>
<a:srgbClr val="A02B93" />
</a:accent5>
<a:accent6>
<a:srgbClr val="4EA72E" />
</a:accent6>
<a:hlink>
<a:srgbClr val="467886" />
</a:hlink>
<a:folHlink>
<a:srgbClr val="96607D" />
</a:folHlink>
</a:clrScheme>
<a:fontScheme name="Office">
<a:majorFont>
<a:latin typeface="Aptos Display" panose="020F0302020204030204" />
<a:ea typeface="" />
<a:cs typeface="" />
<a:font script="Jpan" typeface="游ゴシック Light" />
<a:font script="Hang" typeface="맑은 고딕" />
<a:font script="Hans" typeface="等线 Light" />
<a:font script="Hant" typeface="新細明體" />
<a:font script="Arab" typeface="Times New Roman" />
<a:font script="Hebr" typeface="Times New Roman" />
<a:font script="Thai" typeface="Angsana New" />
<a:font script="Ethi" typeface="Nyala" />
<a:font script="Beng" typeface="Vrinda" />
<a:font script="Gujr" typeface="Shruti" />
<a:font script="Khmr" typeface="MoolBoran" />
<a:font script="Knda" typeface="Tunga" />
<a:font script="Guru" typeface="Raavi" />
<a:font script="Cans" typeface="Euphemia" />
<a:font script="Cher" typeface="Plantagenet Cherokee" />
<a:font script="Yiii" typeface="Microsoft Yi Baiti" />
<a:font script="Tibt" typeface="Microsoft Himalaya" />
<a:font script="Thaa" typeface="MV Boli" />
<a:font script="Deva" typeface="Mangal" />
<a:font script="Telu" typeface="Gautami" />
<a:font script="Taml" typeface="Latha" />
<a:font script="Syrc" typeface="Estrangelo Edessa" />
<a:font script="Orya" typeface="Kalinga" />
<a:font script="Mlym" typeface="Kartika" />
<a:font script="Laoo" typeface="DokChampa" />
<a:font script="Sinh" typeface="Iskoola Pota" />
<a:font script="Mong" typeface="Mongolian Baiti" />
<a:font script="Viet" typeface="Times New Roman" />
<a:font script="Uigh" typeface="Microsoft Uighur" />
<a:font script="Geor" typeface="Sylfaen" />
<a:font script="Armn" typeface="Arial" />
<a:font script="Bugi" typeface="Leelawadee UI" />
<a:font script="Bopo" typeface="Microsoft JhengHei" />
<a:font script="Java" typeface="Javanese Text" />
<a:font script="Lisu" typeface="Segoe UI" />
<a:font script="Mymr" typeface="Myanmar Text" />
<a:font script="Nkoo" typeface="Ebrima" />
<a:font script="Olck" typeface="Nirmala UI" />
<a:font script="Osma" typeface="Ebrima" />
<a:font script="Phag" typeface="Phagspa" />
<a:font script="Syrn" typeface="Estrangelo Edessa" />
<a:font script="Syrj" typeface="Estrangelo Edessa" />
<a:font script="Syre" typeface="Estrangelo Edessa" />
<a:font script="Sora" typeface="Nirmala UI" />
<a:font script="Tale" typeface="Microsoft Tai Le" />
<a:font script="Talu" typeface="Microsoft New Tai Lue" />
<a:font script="Tfng" typeface="Ebrima" />
</a:majorFont>
<a:minorFont>
<a:latin typeface="Aptos" panose="020F0502020204030204" />
<a:ea typeface="" />
<a:cs typeface="" />
<a:font script="Jpan" typeface="游明朝" />
<a:font script="Hang" typeface="맑은 고딕" />
<a:font script="Hans" typeface="等线" />
<a:font script="Hant" typeface="新細明體" />
<a:font script="Arab" typeface="Arial" />
<a:font script="Hebr" typeface="Arial" />
<a:font script="Thai" typeface="Cordia New" />
<a:font script="Ethi" typeface="Nyala" />
<a:font script="Beng" typeface="Vrinda" />
<a:font script="Gujr" typeface="Shruti" />
<a:font script="Khmr" typeface="DaunPenh" />
<a:font script="Knda" typeface="Tunga" />
<a:font script="Guru" typeface="Raavi" />
<a:font script="Cans" typeface="Euphemia" />
<a:font script="Cher" typeface="Plantagenet Cherokee" />
<a:font script="Yiii" typeface="Microsoft Yi Baiti" />
<a:font script="Tibt" typeface="Microsoft Himalaya" />
<a:font script="Thaa" typeface="MV Boli" />
<a:font script="Deva" typeface="Mangal" />
<a:font script="Telu" typeface="Gautami" />
<a:font script="Taml" typeface="Latha" />
<a:font script="Syrc" typeface="Estrangelo Edessa" />
<a:font script="Orya" typeface="Kalinga" />
<a:font script="Mlym" typeface="Kartika" />
<a:font script="Laoo" typeface="DokChampa" />
<a:font script="Sinh" typeface="Iskoola Pota" />
<a:font script="Mong" typeface="Mongolian Baiti" />
<a:font script="Viet" typeface="Arial" />
<a:font script="Uigh" typeface="Microsoft Uighur" />
<a:font script="Geor" typeface="Sylfaen" />
<a:font script="Armn" typeface="Arial" />
<a:font script="Bugi" typeface="Leelawadee UI" />
<a:font script="Bopo" typeface="Microsoft JhengHei" />
<a:font script="Java" typeface="Javanese Text" />
<a:font script="Lisu" typeface="Segoe UI" />
<a:font script="Mymr" typeface="Myanmar Text" />
<a:font script="Nkoo" typeface="Ebrima" />
<a:font script="Olck" typeface="Nirmala UI" />
<a:font script="Osma" typeface="Ebrima" />
<a:font script="Phag" typeface="Phagspa" />
<a:font script="Syrn" typeface="Estrangelo Edessa" />
<a:font script="Syrj" typeface="Estrangelo Edessa" />
<a:font script="Syre" typeface="Estrangelo Edessa" />
<a:font script="Sora" typeface="Nirmala UI" />
<a:font script="Tale" typeface="Microsoft Tai Le" />
<a:font script="Talu" typeface="Microsoft New Tai Lue" />
<a:font script="Tfng" typeface="Ebrima" />
</a:minorFont>
</a:fontScheme>
<a:fmtScheme name="Office">
<a:fillStyleLst>
<a:solidFill>
<a:schemeClr val="phClr" />
</a:solidFill>
<a:gradFill rotWithShape="1">
<a:gsLst>
<a:gs pos="0">
<a:schemeClr val="phClr">
<a:lumMod val="110000" />
<a:satMod val="105000" />
<a:tint val="67000" />
</a:schemeClr>
</a:gs>
<a:gs pos="50000">
<a:schemeClr val="phClr">
<a:lumMod val="105000" />
<a:satMod val="103000" />
<a:tint val="73000" />
</a:schemeClr>
</a:gs>
<a:gs pos="100000">
<a:schemeClr val="phClr">
<a:lumMod val="105000" />
<a:satMod val="109000" />
<a:tint val="81000" />
</a:schemeClr>
</a:gs>
</a:gsLst>
<a:lin ang="5400000" scaled="0" />
</a:gradFill>
<a:gradFill rotWithShape="1">
<a:gsLst>
<a:gs pos="0">
<a:schemeClr val="phClr">
<a:satMod val="103000" />
<a:lumMod val="102000" />
<a:tint val="94000" />
</a:schemeClr>
</a:gs>
<a:gs pos="50000">
<a:schemeClr val="phClr">
<a:satMod val="110000" />
<a:lumMod val="100000" />
<a:shade val="100000" />
</a:schemeClr>
</a:gs>
<a:gs pos="100000">
<a:schemeClr val="phClr">
<a:lumMod val="99000" />
<a:satMod val="120000" />
<a:shade val="78000" />
</a:schemeClr>
</a:gs>
</a:gsLst>
<a:lin ang="5400000" scaled="0" />
</a:gradFill>
</a:fillStyleLst>
<a:lnStyleLst>
<a:ln w="6350" cap="flat" cmpd="sng" algn="ctr">
<a:solidFill>
<a:schemeClr val="phClr" />
</a:solidFill>
<a:prstDash val="solid" />
<a:miter lim="800000" />
</a:ln>
<a:ln w="12700" cap="flat" cmpd="sng" algn="ctr">
<a:solidFill>
<a:schemeClr val="phClr" />
</a:solidFill>
<a:prstDash val="solid" />
<a:miter lim="800000" />
</a:ln>
<a:ln w="19050" cap="flat" cmpd="sng" algn="ctr">
<a:solidFill>
<a:schemeClr val="phClr" />
</a:solidFill>
<a:prstDash val="solid" />
<a:miter lim="800000" />
</a:ln>
</a:lnStyleLst>
<a:effectStyleLst>
<a:effectStyle>
<a:effectLst />
</a:effectStyle>
<a:effectStyle>
<a:effectLst />
</a:effectStyle>
<a:effectStyle>
<a:effectLst>
<a:outerShdw blurRad="57150" dist="19050" dir="5400000" algn="ctr"
rotWithShape="0">
<a:srgbClr val="000000">
<a:alpha val="63000" />
</a:srgbClr>
</a:outerShdw>
</a:effectLst>
</a:effectStyle>
</a:effectStyleLst>
<a:bgFillStyleLst>
<a:solidFill>
<a:schemeClr val="phClr" />
</a:solidFill>
<a:solidFill>
<a:schemeClr val="phClr">
<a:tint val="95000" />
<a:satMod val="170000" />
</a:schemeClr>
</a:solidFill>
<a:gradFill rotWithShape="1">
<a:gsLst>
<a:gs pos="0">
<a:schemeClr val="phClr">
<a:tint val="93000" />
<a:satMod val="150000" />
<a:shade val="98000" />
<a:lumMod val="102000" />
</a:schemeClr>
</a:gs>
<a:gs pos="50000">
<a:schemeClr val="phClr">
<a:tint val="98000" />
<a:satMod val="130000" />
<a:shade val="90000" />
<a:lumMod val="103000" />
</a:schemeClr>
</a:gs>
<a:gs pos="100000">
<a:schemeClr val="phClr">
<a:shade val="63000" />
<a:satMod val="120000" />
</a:schemeClr>
</a:gs>
</a:gsLst>
<a:lin ang="5400000" scaled="0" />
</a:gradFill>
</a:bgFillStyleLst>
</a:fmtScheme>
</a:themeElements>
<a:objectDefaults />
<a:extraClrSchemeLst />
<a:extLst>
<a:ext uri="{05A4C25C-085E-4340-85A3-A5531E510DB2}">
<thm15:themeFamily xmlns:thm15="http://schemas.microsoft.com/office/thememl/2012/main"
name="Office Theme" id="{62F939B6-93AF-4DB8-9C6B-D6C7DFDC589F}"
vid="{4A3C46E8-61CC-4603-A589-7422A47A8E4A}" />
</a:ext>
</a:extLst>
</a:theme>`);