paper1-nomal.ftl 137 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235
  1. <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
  2. <?mso-application progid="Word.Document"?>
  3. <pkg:package
  4. xmlns:pkg="http://schemas.microsoft.com/office/2006/xmlPackage">
  5. <pkg:part pkg:name="/_rels/.rels" pkg:contentType="application/vnd.openxmlformats-package.relationships+xml" pkg:padding="512">
  6. <pkg:xmlData>
  7. <Relationships
  8. xmlns="http://schemas.openxmlformats.org/package/2006/relationships">
  9. <Relationship Id="rId3" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties" Target="docProps/app.xml"/>
  10. <Relationship Id="rId2" Type="http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties" Target="docProps/core.xml"/>
  11. <Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument" Target="word/document.xml"/>
  12. <Relationship Id="rId4" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties" Target="docProps/custom.xml"/>
  13. </Relationships>
  14. </pkg:xmlData>
  15. </pkg:part>
  16. <pkg:part pkg:name="/word/_rels/document.xml.rels" pkg:contentType="application/vnd.openxmlformats-package.relationships+xml" pkg:padding="256">
  17. <pkg:xmlData>
  18. <Relationships
  19. xmlns="http://schemas.openxmlformats.org/package/2006/relationships">
  20. <Relationship Id="rId3" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/settings" Target="settings.xml"/>
  21. <Relationship Id="rId7" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme" Target="theme/theme1.xml"/>
  22. <Relationship Id="rId2" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles" Target="styles.xml"/>
  23. <Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/customXml" Target="../customXml/item1.xml"/>
  24. <Relationship Id="rId6" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/fontTable" Target="fontTable.xml"/>
  25. <Relationship Id="rId5" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/image" Target="media/image1.jpeg"/>
  26. <Relationship Id="rId4" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/webSettings" Target="webSettings.xml"/>
  27. </Relationships>
  28. </pkg:xmlData>
  29. </pkg:part>
  30. <pkg:part pkg:name="/word/document.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml">
  31. <pkg:xmlData>
  32. <w:document mc:Ignorable="w14 w15 wp14"
  33. xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas"
  34. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  35. xmlns:o="urn:schemas-microsoft-com:office:office"
  36. xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
  37. xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math"
  38. xmlns:v="urn:schemas-microsoft-com:vml"
  39. xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing"
  40. xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing"
  41. xmlns:w10="urn:schemas-microsoft-com:office:word"
  42. xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
  43. xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
  44. xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
  45. xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup"
  46. xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk"
  47. xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml"
  48. xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape">
  49. <w:body>
  50. <w:p w:rsidR="00AF659B" w:rsidRDefault="00044EDE">
  51. <w:pPr>
  52. <w:widowControl/>
  53. <w:ind w:firstLine="480"/>
  54. <w:rPr>
  55. <w:rFonts w:ascii="黑体" w:eastAsia="黑体"/>
  56. </w:rPr>
  57. </w:pPr>
  58. <w:bookmarkStart w:id="0" w:name="_GoBack"/>
  59. <w:bookmarkEnd w:id="0"/>
  60. <w:r>
  61. <w:rPr>
  62. <w:rFonts w:ascii="黑体" w:eastAsia="黑体" w:hint="eastAsia"/>
  63. </w:rPr>
  64. <w:t>绝密★启用前</w:t>
  65. </w:r>
  66. </w:p>
  67. <w:p w:rsidR="00AF659B" w:rsidRDefault="00044EDE">
  68. <w:pPr>
  69. <w:widowControl/>
  70. <w:ind w:firstLine="683"/>
  71. <w:jc w:val="center"/>
  72. <w:rPr>
  73. <w:rFonts w:ascii="方正书宋简体" w:eastAsia="方正书宋简体"/>
  74. <w:b/>
  75. <w:spacing w:val="10"/>
  76. <w:sz w:val="32"/>
  77. </w:rPr>
  78. </w:pPr>
  79. <w:r>
  80. <w:rPr>
  81. <w:rFonts w:ascii="方正书宋简体" w:eastAsia="方正书宋简体" w:hint="eastAsia"/>
  82. <w:b/>
  83. <w:spacing w:val="10"/>
  84. <w:sz w:val="32"/>
  85. </w:rPr>
  86. <w:t>20 年 月湖北省高等教育自学考试</w:t>
  87. </w:r>
  88. </w:p>
  89. <w:p w:rsidR="00AF659B" w:rsidRDefault="00044EDE">
  90. <w:pPr>
  91. <w:widowControl/>
  92. <w:ind w:firstLine="920"/>
  93. <w:jc w:val="center"/>
  94. <w:rPr>
  95. <w:rFonts w:ascii="方正书宋简体" w:eastAsia="方正书宋简体"/>
  96. <w:spacing w:val="10"/>
  97. <w:sz w:val="44"/>
  98. </w:rPr>
  99. </w:pPr>
  100. <w:r>
  101. <w:rPr>
  102. <w:rFonts w:ascii="方正书宋简体" w:eastAsia="方正书宋简体" w:hint="eastAsia"/>
  103. <w:spacing w:val="10"/>
  104. <w:sz w:val="44"/>
  105. </w:rPr>
  106. <w:t xml:space="preserve">${name!''} </w:t>
  107. </w:r>
  108. <w:r>
  109. <w:rPr>
  110. <w:rFonts w:ascii="方正书宋简体" w:eastAsia="方正书宋简体" w:hint="eastAsia"/>
  111. <w:b/>
  112. <w:spacing w:val="10"/>
  113. <w:sz w:val="44"/>
  114. </w:rPr>
  115. <w:t>试卷</w:t>
  116. </w:r>
  117. </w:p>
  118. <w:p w:rsidR="00AF659B" w:rsidRDefault="00044EDE">
  119. <w:pPr>
  120. <w:widowControl/>
  121. <w:ind w:firstLine="600"/>
  122. <w:jc w:val="center"/>
  123. <w:rPr>
  124. <w:rFonts w:ascii="华文中宋" w:eastAsia="华文中宋"/>
  125. <w:spacing w:val="10"/>
  126. <w:sz w:val="28"/>
  127. </w:rPr>
  128. </w:pPr>
  129. <w:r>
  130. <w:rPr>
  131. <w:rFonts w:ascii="华文中宋" w:eastAsia="华文中宋" w:hint="eastAsia"/>
  132. <w:spacing w:val="10"/>
  133. <w:sz w:val="28"/>
  134. </w:rPr>
  135. <w:t>(课程代码 ${code!''})</w:t>
  136. </w:r>
  137. </w:p>
  138. <w:p w:rsidR="00AF659B" w:rsidRDefault="00044EDE">
  139. <w:pPr>
  140. <w:widowControl/>
  141. <w:spacing w:afterLines="50" w:after="156" w:line="360" w:lineRule="auto"/>
  142. <w:ind w:firstLineChars="200" w:firstLine="480"/>
  143. <w:rPr>
  144. <w:rFonts w:ascii="黑体" w:eastAsia="黑体" w:hAnsi="宋体"/>
  145. <w:sz w:val="24"/>
  146. <w:szCs w:val="21"/>
  147. </w:rPr>
  148. </w:pPr>
  149. <w:r>
  150. <w:rPr>
  151. <w:rFonts w:ascii="黑体" w:eastAsia="黑体" w:hAnsi="宋体" w:hint="eastAsia"/>
  152. <w:sz w:val="24"/>
  153. <w:szCs w:val="21"/>
  154. </w:rPr>
  155. <w:t>本试卷共 页,${bigQs!''}大题,${smallQs!''}小题,满分100分;考试时间为150分钟。</w:t>
  156. </w:r>
  157. </w:p>
  158. <w:p w:rsidR="00AF659B" w:rsidRDefault="00044EDE">
  159. <w:pPr>
  160. <w:widowControl/>
  161. <w:spacing w:afterLines="50" w:after="156" w:line="360" w:lineRule="auto"/>
  162. <w:ind w:firstLineChars="200" w:firstLine="480"/>
  163. <w:rPr>
  164. <w:rFonts w:ascii="黑体" w:eastAsia="黑体" w:hAnsi="宋体"/>
  165. <w:sz w:val="24"/>
  166. <w:szCs w:val="21"/>
  167. </w:rPr>
  168. </w:pPr>
  169. <w:r>
  170. <w:rPr>
  171. <w:rFonts w:ascii="黑体" w:eastAsia="黑体" w:hAnsi="宋体" w:hint="eastAsia"/>
  172. <w:sz w:val="24"/>
  173. <w:szCs w:val="21"/>
  174. </w:rPr>
  175. <w:t>注意事项:</w:t>
  176. </w:r>
  177. </w:p>
  178. <w:p w:rsidR="00AF659B" w:rsidRDefault="00044EDE">
  179. <w:pPr>
  180. <w:widowControl/>
  181. <w:spacing w:afterLines="50" w:after="156" w:line="360" w:lineRule="auto"/>
  182. <w:ind w:firstLineChars="200" w:firstLine="480"/>
  183. <w:rPr>
  184. <w:rFonts w:ascii="黑体" w:eastAsia="黑体" w:hAnsi="宋体"/>
  185. <w:sz w:val="24"/>
  186. <w:szCs w:val="21"/>
  187. </w:rPr>
  188. </w:pPr>
  189. <w:r>
  190. <w:rPr>
  191. <w:rFonts w:ascii="黑体" w:eastAsia="黑体" w:hAnsi="宋体" w:hint="eastAsia"/>
  192. <w:sz w:val="24"/>
  193. <w:szCs w:val="21"/>
  194. </w:rPr>
  195. <w:tab/>
  196. <w:t>1.答题前,考生先将自己的准考证号、姓名、课程代码、课程名称填写清楚,并认真核准条形码上的信息,在答题卡上指定的位置粘贴条形码。</w:t>
  197. </w:r>
  198. </w:p>
  199. <w:p w:rsidR="00AF659B" w:rsidRDefault="00044EDE">
  200. <w:pPr>
  201. <w:widowControl/>
  202. <w:spacing w:afterLines="50" w:after="156" w:line="360" w:lineRule="auto"/>
  203. <w:ind w:firstLineChars="200" w:firstLine="480"/>
  204. <w:rPr>
  205. <w:rFonts w:ascii="黑体" w:eastAsia="黑体" w:hAnsi="宋体"/>
  206. <w:sz w:val="24"/>
  207. <w:szCs w:val="21"/>
  208. </w:rPr>
  209. </w:pPr>
  210. <w:r>
  211. <w:rPr>
  212. <w:rFonts w:ascii="黑体" w:eastAsia="黑体" w:hAnsi="宋体" w:hint="eastAsia"/>
  213. <w:sz w:val="24"/>
  214. <w:szCs w:val="21"/>
  215. </w:rPr>
  216. <w:t>2.选择题的作答:考生必须使用2B铅笔,在答题卡对应的题号上填涂选择项。应使用正确填涂方法:</w:t>
  217. </w:r>
  218. <w:r>
  219. <w:rPr>
  220. <w:rFonts w:ascii="黑体" w:eastAsia="黑体" w:hAnsi="宋体" w:hint="eastAsia"/>
  221. <w:noProof/>
  222. <w:sz w:val="24"/>
  223. <w:szCs w:val="21"/>
  224. </w:rPr>
  225. <w:drawing>
  226. <wp:inline distT="0" distB="0" distL="114300" distR="114300">
  227. <wp:extent cx="387985" cy="250190"/>
  228. <wp:effectExtent l="0" t="0" r="12065" b="16510"/>
  229. <wp:docPr id="2" name="图片 2" descr="湖北自考评卷考生答题须知"/>
  230. <wp:cNvGraphicFramePr>
  231. <a:graphicFrameLocks noChangeAspect="1"
  232. xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main"/>
  233. </wp:cNvGraphicFramePr>
  234. <a:graphic
  235. xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main">
  236. <a:graphicData uri="http://schemas.openxmlformats.org/drawingml/2006/picture">
  237. <pic:pic
  238. xmlns:pic="http://schemas.openxmlformats.org/drawingml/2006/picture">
  239. <pic:nvPicPr>
  240. <pic:cNvPr id="2" name="图片 2" descr="湖北自考评卷考生答题须知"/>
  241. <pic:cNvPicPr>
  242. <a:picLocks noChangeAspect="1"/>
  243. </pic:cNvPicPr>
  244. </pic:nvPicPr>
  245. <pic:blipFill>
  246. <a:blip r:embed="rId5"/>
  247. <a:stretch>
  248. <a:fillRect/>
  249. </a:stretch>
  250. </pic:blipFill>
  251. <pic:spPr>
  252. <a:xfrm>
  253. <a:off x="0" y="0"/>
  254. <a:ext cx="387985" cy="250190"/>
  255. </a:xfrm>
  256. <a:prstGeom prst="rect">
  257. <a:avLst/>
  258. </a:prstGeom>
  259. <a:noFill/>
  260. <a:ln>
  261. <a:noFill/>
  262. </a:ln>
  263. </pic:spPr>
  264. </pic:pic>
  265. </a:graphicData>
  266. </a:graphic>
  267. </wp:inline>
  268. </w:drawing>
  269. </w:r>
  270. <w:r>
  271. <w:rPr>
  272. <w:rFonts w:ascii="黑体" w:eastAsia="黑体" w:hAnsi="宋体" w:hint="eastAsia"/>
  273. <w:sz w:val="24"/>
  274. <w:szCs w:val="21"/>
  275. </w:rPr>
  276. <w:t>,将选择项涂满涂黑。 若需对答案进行修改,用橡皮擦擦除干净后再重新填涂。答在试卷、草稿纸上无效。</w:t>
  277. </w:r>
  278. </w:p>
  279. <w:p w:rsidR="00AF659B" w:rsidRDefault="00044EDE">
  280. <w:pPr>
  281. <w:widowControl/>
  282. <w:spacing w:afterLines="50" w:after="156" w:line="360" w:lineRule="auto"/>
  283. <w:ind w:firstLineChars="200" w:firstLine="480"/>
  284. <w:rPr>
  285. <w:rFonts w:ascii="黑体" w:eastAsia="黑体" w:hAnsi="宋体"/>
  286. <w:sz w:val="24"/>
  287. <w:szCs w:val="21"/>
  288. </w:rPr>
  289. </w:pPr>
  290. <w:r>
  291. <w:rPr>
  292. <w:rFonts w:ascii="黑体" w:eastAsia="黑体" w:hAnsi="宋体" w:hint="eastAsia"/>
  293. <w:sz w:val="24"/>
  294. <w:szCs w:val="21"/>
  295. </w:rPr>
  296. <w:t>3.非选择题的作答:必须使用黑色墨水签字笔作答。答题时要求依试题顺序作答,首先在“大题号”列依次注明大题号,在“小题号”列依次注明小题号,按题号顺序依次在答题卡规定的区域内作答,超出“非选择题答题区”的部分作答无效。答在试卷、草稿纸上无效。</w:t>
  297. </w:r>
  298. </w:p>
  299. <w:p w:rsidR="00AF659B" w:rsidRDefault="00044EDE">
  300. <w:pPr>
  301. <w:widowControl/>
  302. <w:spacing w:afterLines="50" w:after="156" w:line="360" w:lineRule="auto"/>
  303. <w:ind w:firstLineChars="200" w:firstLine="480"/>
  304. <w:rPr>
  305. <w:rFonts w:ascii="黑体" w:eastAsia="黑体" w:hAnsi="宋体"/>
  306. <w:sz w:val="24"/>
  307. <w:szCs w:val="21"/>
  308. </w:rPr>
  309. </w:pPr>
  310. <w:r>
  311. <w:rPr>
  312. <w:rFonts w:ascii="黑体" w:eastAsia="黑体" w:hAnsi="宋体" w:hint="eastAsia"/>
  313. <w:sz w:val="24"/>
  314. <w:szCs w:val="21"/>
  315. </w:rPr>
  316. <w:t>4.考生必须保持答题卡的清洁。考试结束后,请将本试卷和答题卡一并上交。</w:t>
  317. </w:r>
  318. </w:p>
  319. <w:p w:rsidR="00AF659B" w:rsidRDefault="00AF659B">
  320. <w:pPr>
  321. <w:widowControl/>
  322. <w:ind w:firstLine="520"/>
  323. <w:rPr>
  324. <w:rFonts w:ascii="黑体" w:eastAsia="黑体"/>
  325. <w:spacing w:val="10"/>
  326. </w:rPr>
  327. </w:pPr>
  328. </w:p>
  329. <w:p w:rsidR="00AF659B" w:rsidRDefault="00044EDE">
  330. <w:pPr>
  331. <w:widowControl/>
  332. <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
  333. <w:rPr>
  334. <w:rFonts w:ascii="黑体" w:eastAsia="黑体"/>
  335. <w:b/>
  336. <w:spacing w:val="10"/>
  337. <w:u w:val="single"/>
  338. </w:rPr>
  339. </w:pPr>
  340. <w:r>
  341. <w:rPr>
  342. <w:rFonts w:ascii="黑体" w:eastAsia="黑体" w:hint="eastAsia"/>
  343. <w:b/>
  344. <w:spacing w:val="10"/>
  345. <w:u w:val="single"/>
  346. </w:rPr>
  347. <w:t xml:space="preserve"></w:t>
  348. </w:r>
  349. </w:p>
  350. <w:p w:rsidR="00AF659B" w:rsidRDefault="00AF659B">
  351. <w:pPr>
  352. <w:widowControl/>
  353. <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
  354. <w:rPr>
  355. <w:rFonts w:ascii="黑体" w:eastAsia="黑体"/>
  356. <w:b/>
  357. <w:spacing w:val="10"/>
  358. <w:u w:val="single"/>
  359. </w:rPr>
  360. </w:pPr>
  361. </w:p>
  362. <w:p w:rsidR="00AF659B" w:rsidRDefault="00AF659B">
  363. <w:pPr>
  364. <w:widowControl/>
  365. <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
  366. <w:rPr>
  367. <w:rFonts w:ascii="黑体" w:eastAsia="黑体"/>
  368. <w:b/>
  369. <w:spacing w:val="10"/>
  370. <w:u w:val="single"/>
  371. </w:rPr>
  372. </w:pPr>
  373. </w:p>
  374. <!-- 循环显示题目 -->
  375. <#list columnsType as objType>
  376. <w:p w:rsidR="00AF659B" w:rsidRDefault="00044EDE">
  377. <w:pPr>
  378. <w:widowControl/>
  379. <w:jc w:val="left"/>
  380. <w:rPr>
  381. <w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:cs="宋体"/>
  382. <w:kern w:val="0"/>
  383. <w:sz w:val="24"/>
  384. </w:rPr>
  385. </w:pPr>
  386. <w:r>
  387. <w:rPr>
  388. <w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:cs="宋体"/>
  389. <w:b/>
  390. <w:bCs/>
  391. <w:color w:val="0E2D5F"/>
  392. <w:kern w:val="0"/>
  393. <w:sz w:val="18"/>
  394. <w:szCs w:val="18"/>
  395. <w:shd w:val="clear" w:color="auto" w:fill="E0ECFF"/>
  396. </w:rPr>
  397. <w:t>${objType.sortNo!''}</w:t>
  398. </w:r>
  399. <w:r>
  400. <w:rPr>
  401. <w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:cs="宋体" w:hint="eastAsia"/>
  402. <w:b/>
  403. <w:bCs/>
  404. <w:color w:val="0E2D5F"/>
  405. <w:kern w:val="0"/>
  406. <w:sz w:val="18"/>
  407. <w:szCs w:val="18"/>
  408. <w:shd w:val="clear" w:color="auto" w:fill="E0ECFF"/>
  409. </w:rPr>
  410. <w:t>、</w:t>
  411. </w:r>
  412. <w:r>
  413. <w:rPr>
  414. <w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:cs="宋体"/>
  415. <w:b/>
  416. <w:bCs/>
  417. <w:color w:val="0E2D5F"/>
  418. <w:kern w:val="0"/>
  419. <w:sz w:val="18"/>
  420. <w:szCs w:val="18"/>
  421. <w:shd w:val="clear" w:color="auto" w:fill="E0ECFF"/>
  422. </w:rPr>
  423. <w:t>${objType.typeName!''}</w:t>
  424. </w:r>
  425. <w:r>
  426. <w:rPr>
  427. <w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:cs="宋体" w:hint="eastAsia"/>
  428. <w:b/>
  429. <w:bCs/>
  430. <w:color w:val="0E2D5F"/>
  431. <w:kern w:val="0"/>
  432. <w:sz w:val="18"/>
  433. <w:szCs w:val="18"/>
  434. <w:shd w:val="clear" w:color="auto" w:fill="E0ECFF"/>
  435. </w:rPr>
  436. <w:t>(本大题共</w:t>
  437. </w:r>
  438. <w:r>
  439. <w:rPr>
  440. <w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:cs="宋体"/>
  441. <w:b/>
  442. <w:bCs/>
  443. <w:color w:val="0E2D5F"/>
  444. <w:kern w:val="0"/>
  445. <w:sz w:val="18"/>
  446. <w:szCs w:val="18"/>
  447. <w:shd w:val="clear" w:color="auto" w:fill="E0ECFF"/>
  448. </w:rPr>
  449. <w:t>${objType.questionSum!''}</w:t>
  450. </w:r>
  451. <w:r>
  452. <w:rPr>
  453. <w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:cs="宋体" w:hint="eastAsia"/>
  454. <w:b/>
  455. <w:bCs/>
  456. <w:color w:val="0E2D5F"/>
  457. <w:kern w:val="0"/>
  458. <w:sz w:val="18"/>
  459. <w:szCs w:val="18"/>
  460. <w:shd w:val="clear" w:color="auto" w:fill="E0ECFF"/>
  461. </w:rPr>
  462. <w:t>小题,每题</w:t>
  463. </w:r>
  464. <w:r>
  465. <w:rPr>
  466. <w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:cs="宋体"/>
  467. <w:b/>
  468. <w:bCs/>
  469. <w:color w:val="0E2D5F"/>
  470. <w:kern w:val="0"/>
  471. <w:sz w:val="18"/>
  472. <w:szCs w:val="18"/>
  473. <w:shd w:val="clear" w:color="auto" w:fill="E0ECFF"/>
  474. </w:rPr>
  475. <w:t>${objType.score!''}</w:t>
  476. </w:r>
  477. <w:r>
  478. <w:rPr>
  479. <w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:cs="宋体" w:hint="eastAsia"/>
  480. <w:b/>
  481. <w:bCs/>
  482. <w:color w:val="0E2D5F"/>
  483. <w:kern w:val="0"/>
  484. <w:sz w:val="18"/>
  485. <w:szCs w:val="18"/>
  486. <w:shd w:val="clear" w:color="auto" w:fill="E0ECFF"/>
  487. </w:rPr>
  488. <w:t>分,共</w:t>
  489. </w:r>
  490. <w:r>
  491. <w:rPr>
  492. <w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:cs="宋体"/>
  493. <w:b/>
  494. <w:bCs/>
  495. <w:color w:val="0E2D5F"/>
  496. <w:kern w:val="0"/>
  497. <w:sz w:val="18"/>
  498. <w:szCs w:val="18"/>
  499. <w:shd w:val="clear" w:color="auto" w:fill="E0ECFF"/>
  500. </w:rPr>
  501. <w:t>${objType.questionScores!''}</w:t>
  502. </w:r>
  503. <w:r>
  504. <w:rPr>
  505. <w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:cs="宋体" w:hint="eastAsia"/>
  506. <w:b/>
  507. <w:bCs/>
  508. <w:color w:val="0E2D5F"/>
  509. <w:kern w:val="0"/>
  510. <w:sz w:val="18"/>
  511. <w:szCs w:val="18"/>
  512. <w:shd w:val="clear" w:color="auto" w:fill="E0ECFF"/>
  513. </w:rPr>
  514. <w:t>分)</w:t>
  515. </w:r>
  516. </w:p>
  517. <w:p w:rsidR="00AF659B" w:rsidRDefault="00414EBF">
  518. <w:pPr>
  519. <w:ind w:firstLine="360"/>
  520. <w:rPr>
  521. <w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:cs="宋体"/>
  522. <w:b/>
  523. <w:bCs/>
  524. <w:color w:val="0E2D5F"/>
  525. <w:kern w:val="0"/>
  526. <w:sz w:val="18"/>
  527. <w:szCs w:val="18"/>
  528. </w:rPr>
  529. </w:pPr>
  530. <w:r>
  531. <w:rPr>
  532. <w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:cs="宋体"/>
  533. <w:b/>
  534. <w:bCs/>
  535. <w:color w:val="0E2D5F"/>
  536. <w:kern w:val="0"/>
  537. <w:sz w:val="18"/>
  538. <w:szCs w:val="18"/>
  539. </w:rPr>
  540. <w:t>${objType.remark!''}</w:t>
  541. </w:r>
  542. </w:p>
  543. <#list columns as obj>
  544. <#if objType.typeId == obj.typeId>
  545. <w:p w:rsidR="00AF659B" w:rsidRDefault="00044EDE">
  546. <w:pPr>
  547. <w:ind w:firstLine="360"/>
  548. <w:rPr>
  549. <w:sz w:val="24"/>
  550. </w:rPr>
  551. </w:pPr>
  552. <w:r>
  553. <w:rPr>
  554. <w:sz w:val="24"/>
  555. </w:rPr>
  556. <w:t>${obj.serialNumber!''}.</w:t>
  557. </w:r>
  558. <w:r w:rsidR="00414EBF">
  559. <w:rPr>
  560. <w:sz w:val="24"/>
  561. </w:rPr>
  562. <w:t>${obj.bodySummary!''}</w:t>
  563. </w:r>
  564. </w:p>
  565. <#if obj.typeId == 117>
  566. <w:p w:rsidR="00AF659B" w:rsidRDefault="00044EDE">
  567. <w:pPr>
  568. <w:pStyle w:val="a7"/>
  569. <w:ind w:left="360" w:firstLineChars="0" w:firstLine="0"/>
  570. <w:rPr>
  571. <w:sz w:val="24"/>
  572. </w:rPr>
  573. </w:pPr>
  574. <w:r>
  575. <w:rPr>
  576. <w:sz w:val="24"/>
  577. </w:rPr>
  578. <w:t>A</w:t>
  579. </w:r>
  580. <w:r>
  581. <w:rPr>
  582. <w:rFonts w:hint="eastAsia"/>
  583. <w:sz w:val="24"/>
  584. </w:rPr>
  585. <w:t>.</w:t>
  586. </w:r>
  587. <w:r>
  588. <w:rPr>
  589. <w:sz w:val="24"/>
  590. </w:rPr>
  591. <w:t>${obj.singleSummary1!''}</w:t>
  592. </w:r>
  593. </w:p>
  594. <w:p w:rsidR="00AF659B" w:rsidRDefault="00044EDE">
  595. <w:pPr>
  596. <w:pStyle w:val="a7"/>
  597. <w:ind w:left="360" w:firstLineChars="0" w:firstLine="0"/>
  598. <w:rPr>
  599. <w:sz w:val="24"/>
  600. </w:rPr>
  601. </w:pPr>
  602. <w:r>
  603. <w:rPr>
  604. <w:sz w:val="24"/>
  605. </w:rPr>
  606. <w:t>B</w:t>
  607. </w:r>
  608. <w:r>
  609. <w:rPr>
  610. <w:rFonts w:hint="eastAsia"/>
  611. <w:sz w:val="24"/>
  612. </w:rPr>
  613. <w:t>.</w:t>
  614. </w:r>
  615. <w:r>
  616. <w:rPr>
  617. <w:sz w:val="24"/>
  618. </w:rPr>
  619. <w:t>${obj.singleSummary2!''}</w:t>
  620. </w:r>
  621. </w:p>
  622. <w:p w:rsidR="00AF659B" w:rsidRDefault="00044EDE">
  623. <w:pPr>
  624. <w:pStyle w:val="a7"/>
  625. <w:ind w:left="360" w:firstLineChars="0" w:firstLine="0"/>
  626. <w:rPr>
  627. <w:sz w:val="24"/>
  628. </w:rPr>
  629. </w:pPr>
  630. <w:r>
  631. <w:rPr>
  632. <w:sz w:val="24"/>
  633. </w:rPr>
  634. <w:t>C</w:t>
  635. </w:r>
  636. <w:r>
  637. <w:rPr>
  638. <w:rFonts w:hint="eastAsia"/>
  639. <w:sz w:val="24"/>
  640. </w:rPr>
  641. <w:t>.</w:t>
  642. </w:r>
  643. <w:r>
  644. <w:rPr>
  645. <w:sz w:val="24"/>
  646. </w:rPr>
  647. <w:t>${obj.singleSummary3!''}</w:t>
  648. </w:r>
  649. </w:p>
  650. <w:p w:rsidR="00AF659B" w:rsidRDefault="00044EDE">
  651. <w:pPr>
  652. <w:pStyle w:val="a7"/>
  653. <w:ind w:left="360" w:firstLineChars="0" w:firstLine="0"/>
  654. <w:rPr>
  655. <w:sz w:val="24"/>
  656. </w:rPr>
  657. </w:pPr>
  658. <w:r>
  659. <w:rPr>
  660. <w:sz w:val="24"/>
  661. </w:rPr>
  662. <w:t>D</w:t>
  663. </w:r>
  664. <w:r>
  665. <w:rPr>
  666. <w:rFonts w:hint="eastAsia"/>
  667. <w:sz w:val="24"/>
  668. </w:rPr>
  669. <w:t>.</w:t>
  670. </w:r>
  671. <w:r>
  672. <w:rPr>
  673. <w:sz w:val="24"/>
  674. </w:rPr>
  675. <w:t>${obj.singleSummary4!''}</w:t>
  676. </w:r>
  677. </w:p>
  678. </#if>
  679. <#if obj.typeId == 118>
  680. <w:p w:rsidR="00AF659B" w:rsidRDefault="00044EDE">
  681. <w:pPr>
  682. <w:pStyle w:val="a7"/>
  683. <w:ind w:left="360" w:firstLineChars="0" w:firstLine="0"/>
  684. <w:rPr>
  685. <w:sz w:val="24"/>
  686. </w:rPr>
  687. </w:pPr>
  688. <w:r>
  689. <w:rPr>
  690. <w:sz w:val="24"/>
  691. </w:rPr>
  692. <w:t>A</w:t>
  693. </w:r>
  694. <w:r>
  695. <w:rPr>
  696. <w:rFonts w:hint="eastAsia"/>
  697. <w:sz w:val="24"/>
  698. </w:rPr>
  699. <w:t>.</w:t>
  700. </w:r>
  701. <w:r>
  702. <w:rPr>
  703. <w:sz w:val="24"/>
  704. </w:rPr>
  705. <w:t>${obj.summary1!''}</w:t>
  706. </w:r>
  707. </w:p>
  708. <w:p w:rsidR="00AF659B" w:rsidRDefault="00044EDE">
  709. <w:pPr>
  710. <w:pStyle w:val="a7"/>
  711. <w:ind w:left="360" w:firstLineChars="0" w:firstLine="0"/>
  712. <w:rPr>
  713. <w:sz w:val="24"/>
  714. </w:rPr>
  715. </w:pPr>
  716. <w:r>
  717. <w:rPr>
  718. <w:sz w:val="24"/>
  719. </w:rPr>
  720. <w:t>B</w:t>
  721. </w:r>
  722. <w:r>
  723. <w:rPr>
  724. <w:rFonts w:hint="eastAsia"/>
  725. <w:sz w:val="24"/>
  726. </w:rPr>
  727. <w:t>.</w:t>
  728. </w:r>
  729. <w:r>
  730. <w:rPr>
  731. <w:sz w:val="24"/>
  732. </w:rPr>
  733. <w:t>${obj.summary2!''}</w:t>
  734. </w:r>
  735. </w:p>
  736. <w:p w:rsidR="00AF659B" w:rsidRDefault="00044EDE">
  737. <w:pPr>
  738. <w:pStyle w:val="a7"/>
  739. <w:ind w:left="360" w:firstLineChars="0" w:firstLine="0"/>
  740. <w:rPr>
  741. <w:sz w:val="24"/>
  742. </w:rPr>
  743. </w:pPr>
  744. <w:r>
  745. <w:rPr>
  746. <w:sz w:val="24"/>
  747. </w:rPr>
  748. <w:t>C</w:t>
  749. </w:r>
  750. <w:r>
  751. <w:rPr>
  752. <w:rFonts w:hint="eastAsia"/>
  753. <w:sz w:val="24"/>
  754. </w:rPr>
  755. <w:t>.</w:t>
  756. </w:r>
  757. <w:r>
  758. <w:rPr>
  759. <w:sz w:val="24"/>
  760. </w:rPr>
  761. <w:t>${obj.summary3!''}</w:t>
  762. </w:r>
  763. </w:p>
  764. <w:p w:rsidR="00AF659B" w:rsidRDefault="00044EDE">
  765. <w:pPr>
  766. <w:pStyle w:val="a7"/>
  767. <w:ind w:left="360" w:firstLineChars="0" w:firstLine="0"/>
  768. <w:rPr>
  769. <w:sz w:val="24"/>
  770. </w:rPr>
  771. </w:pPr>
  772. <w:r>
  773. <w:rPr>
  774. <w:sz w:val="24"/>
  775. </w:rPr>
  776. <w:t>D</w:t>
  777. </w:r>
  778. <w:r>
  779. <w:rPr>
  780. <w:rFonts w:hint="eastAsia"/>
  781. <w:sz w:val="24"/>
  782. </w:rPr>
  783. <w:t>.</w:t>
  784. </w:r>
  785. <w:r>
  786. <w:rPr>
  787. <w:sz w:val="24"/>
  788. </w:rPr>
  789. <w:t>${obj.summary4!''}</w:t>
  790. </w:r>
  791. </w:p>
  792. <w:p w:rsidR="00AF659B" w:rsidRDefault="00044EDE">
  793. <w:pPr>
  794. <w:pStyle w:val="a7"/>
  795. <w:ind w:left="360" w:firstLineChars="0" w:firstLine="0"/>
  796. <w:rPr>
  797. <w:sz w:val="24"/>
  798. </w:rPr>
  799. </w:pPr>
  800. <w:r>
  801. <w:rPr>
  802. <w:sz w:val="24"/>
  803. </w:rPr>
  804. <w:t>E</w:t>
  805. </w:r>
  806. <w:r>
  807. <w:rPr>
  808. <w:rFonts w:hint="eastAsia"/>
  809. <w:sz w:val="24"/>
  810. </w:rPr>
  811. <w:t>.</w:t>
  812. </w:r>
  813. <w:r>
  814. <w:rPr>
  815. <w:sz w:val="24"/>
  816. </w:rPr>
  817. <w:t>${obj.summary5!''}</w:t>
  818. </w:r>
  819. </w:p>
  820. </#if>
  821. <w:p w:rsidR="00AF659B" w:rsidRDefault="00044EDE">
  822. <w:pPr>
  823. <w:ind w:firstLine="360"/>
  824. <w:rPr>
  825. <w:sz w:val="24"/>
  826. </w:rPr>
  827. </w:pPr>
  828. <w:r>
  829. <w:rPr>
  830. <w:sz w:val="24"/>
  831. </w:rPr>
  832. </w:r>
  833. <w:r>
  834. <w:rPr>
  835. <w:sz w:val="24"/>
  836. </w:rPr>
  837. </w:r>
  838. </w:p>
  839. </#if>
  840. </#list>
  841. <w:p w:rsidR="00AF659B" w:rsidRDefault="00044EDE">
  842. <w:pPr>
  843. <w:ind w:firstLine="360"/>
  844. <w:rPr>
  845. <w:sz w:val="24"/>
  846. </w:rPr>
  847. </w:pPr>
  848. <w:r>
  849. <w:rPr>
  850. <w:sz w:val="24"/>
  851. </w:rPr>
  852. </w:r>
  853. <w:r>
  854. <w:rPr>
  855. <w:sz w:val="24"/>
  856. </w:rPr>
  857. </w:r>
  858. </w:p>
  859. </#list>
  860. <w:sectPr w:rsidR="00AF659B">
  861. <w:pgSz w:w="11906" w:h="16838"/>
  862. <w:pgMar w:top="1440" w:right="1800" w:bottom="1440" w:left="1800" w:header="851" w:footer="992" w:gutter="0"/>
  863. <w:cols w:space="425"/>
  864. <w:docGrid w:type="lines" w:linePitch="312"/>
  865. </w:sectPr>
  866. </w:body>
  867. </w:document>
  868. </pkg:xmlData>
  869. </pkg:part>
  870. <pkg:part pkg:name="/word/media/image1.jpeg" pkg:contentType="image/jpeg" pkg:compression="store">
  871. <pkg:binaryData>/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDAAgGBgcGBQgHBwcJCQgKDBQNDAsLDBkSEw8UHRofHh0a
  872. HBwgJC4nICIsIxwcKDcpLDAxNDQ0Hyc5PTgyPC4zNDL/2wBDAQkJCQwLDBgNDRgyIRwhMjIyMjIy
  873. MjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjL/wAARCAAaACkDASIA
  874. AhEBAxEB/8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQA
  875. AAF9AQIDAAQRBRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3
  876. ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWm
  877. p6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEA
  878. AwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSEx
  879. BhJBUQdhcRMiMoEIFEKRobHBCSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElK
  880. U1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3
  881. uLm6wsPExcbHyMnK0tPU1dbX2Nna4uPk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwD1L4he
  882. M5PBGhwajHZLdmW4EOxpNmMqxznB9K82/wCGhLr/AKFyH/wLP/xNdD8fP+RJsf8AsIJ/6A9fO1Js
  883. Z7R/w0Jdf9C5D/4Fn/4mj/hoS6/6FyH/AMCz/wDE14vRSuFj6n+HHj6Xx3bahNLp6WZtJEQBZd+7
  884. cCfQY6V29eL/ALPX/IO1/wD67xf+gmvaKpCPPPjF4f1XxF4VtLTSLN7udLxZGRWUEKFYZ5I9RXif
  885. /CrfG/8A0L0//f2P/wCKr6vopWHc+UP+FW+N/wDoXp/+/sf/AMVR/wAKt8b/APQvT/8Af2P/AOKr
  886. 6voosFzy34LeGda8NWOsJrNg9o080bRh2U7gFIPQmvUqKKYj/9k=</pkg:binaryData>
  887. </pkg:part>
  888. <pkg:part pkg:name="/word/theme/theme1.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.theme+xml">
  889. <pkg:xmlData>
  890. <a:theme name="Office 主题​​"
  891. xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main">
  892. <a:themeElements>
  893. <a:clrScheme name="Office">
  894. <a:dk1>
  895. <a:sysClr val="windowText" lastClr="000000"/>
  896. </a:dk1>
  897. <a:lt1>
  898. <a:sysClr val="window" lastClr="FFFFFF"/>
  899. </a:lt1>
  900. <a:dk2>
  901. <a:srgbClr val="1F497D"/>
  902. </a:dk2>
  903. <a:lt2>
  904. <a:srgbClr val="EEECE1"/>
  905. </a:lt2>
  906. <a:accent1>
  907. <a:srgbClr val="4F81BD"/>
  908. </a:accent1>
  909. <a:accent2>
  910. <a:srgbClr val="C0504D"/>
  911. </a:accent2>
  912. <a:accent3>
  913. <a:srgbClr val="9BBB59"/>
  914. </a:accent3>
  915. <a:accent4>
  916. <a:srgbClr val="8064A2"/>
  917. </a:accent4>
  918. <a:accent5>
  919. <a:srgbClr val="4BACC6"/>
  920. </a:accent5>
  921. <a:accent6>
  922. <a:srgbClr val="F79646"/>
  923. </a:accent6>
  924. <a:hlink>
  925. <a:srgbClr val="0000FF"/>
  926. </a:hlink>
  927. <a:folHlink>
  928. <a:srgbClr val="800080"/>
  929. </a:folHlink>
  930. </a:clrScheme>
  931. <a:fontScheme name="Office">
  932. <a:majorFont>
  933. <a:latin typeface="Cambria"/>
  934. <a:ea typeface=""/>
  935. <a:cs typeface=""/>
  936. <a:font script="Jpan" typeface="MS ゴシック"/>
  937. <a:font script="Hang" typeface="맑은 고딕"/>
  938. <a:font script="Hans" typeface="宋体"/>
  939. <a:font script="Hant" typeface="新細明體"/>
  940. <a:font script="Arab" typeface="Times New Roman"/>
  941. <a:font script="Hebr" typeface="Times New Roman"/>
  942. <a:font script="Thai" typeface="Angsana New"/>
  943. <a:font script="Ethi" typeface="Nyala"/>
  944. <a:font script="Beng" typeface="Vrinda"/>
  945. <a:font script="Gujr" typeface="Shruti"/>
  946. <a:font script="Khmr" typeface="MoolBoran"/>
  947. <a:font script="Knda" typeface="Tunga"/>
  948. <a:font script="Guru" typeface="Raavi"/>
  949. <a:font script="Cans" typeface="Euphemia"/>
  950. <a:font script="Cher" typeface="Plantagenet Cherokee"/>
  951. <a:font script="Yiii" typeface="Microsoft Yi Baiti"/>
  952. <a:font script="Tibt" typeface="Microsoft Himalaya"/>
  953. <a:font script="Thaa" typeface="MV Boli"/>
  954. <a:font script="Deva" typeface="Mangal"/>
  955. <a:font script="Telu" typeface="Gautami"/>
  956. <a:font script="Taml" typeface="Latha"/>
  957. <a:font script="Syrc" typeface="Estrangelo Edessa"/>
  958. <a:font script="Orya" typeface="Kalinga"/>
  959. <a:font script="Mlym" typeface="Kartika"/>
  960. <a:font script="Laoo" typeface="DokChampa"/>
  961. <a:font script="Sinh" typeface="Iskoola Pota"/>
  962. <a:font script="Mong" typeface="Mongolian Baiti"/>
  963. <a:font script="Viet" typeface="Times New Roman"/>
  964. <a:font script="Uigh" typeface="Microsoft Uighur"/>
  965. <a:font script="Geor" typeface="Sylfaen"/>
  966. </a:majorFont>
  967. <a:minorFont>
  968. <a:latin typeface="Calibri"/>
  969. <a:ea typeface=""/>
  970. <a:cs typeface=""/>
  971. <a:font script="Jpan" typeface="MS 明朝"/>
  972. <a:font script="Hang" typeface="맑은 고딕"/>
  973. <a:font script="Hans" typeface="宋体"/>
  974. <a:font script="Hant" typeface="新細明體"/>
  975. <a:font script="Arab" typeface="Arial"/>
  976. <a:font script="Hebr" typeface="Arial"/>
  977. <a:font script="Thai" typeface="Cordia New"/>
  978. <a:font script="Ethi" typeface="Nyala"/>
  979. <a:font script="Beng" typeface="Vrinda"/>
  980. <a:font script="Gujr" typeface="Shruti"/>
  981. <a:font script="Khmr" typeface="DaunPenh"/>
  982. <a:font script="Knda" typeface="Tunga"/>
  983. <a:font script="Guru" typeface="Raavi"/>
  984. <a:font script="Cans" typeface="Euphemia"/>
  985. <a:font script="Cher" typeface="Plantagenet Cherokee"/>
  986. <a:font script="Yiii" typeface="Microsoft Yi Baiti"/>
  987. <a:font script="Tibt" typeface="Microsoft Himalaya"/>
  988. <a:font script="Thaa" typeface="MV Boli"/>
  989. <a:font script="Deva" typeface="Mangal"/>
  990. <a:font script="Telu" typeface="Gautami"/>
  991. <a:font script="Taml" typeface="Latha"/>
  992. <a:font script="Syrc" typeface="Estrangelo Edessa"/>
  993. <a:font script="Orya" typeface="Kalinga"/>
  994. <a:font script="Mlym" typeface="Kartika"/>
  995. <a:font script="Laoo" typeface="DokChampa"/>
  996. <a:font script="Sinh" typeface="Iskoola Pota"/>
  997. <a:font script="Mong" typeface="Mongolian Baiti"/>
  998. <a:font script="Viet" typeface="Arial"/>
  999. <a:font script="Uigh" typeface="Microsoft Uighur"/>
  1000. <a:font script="Geor" typeface="Sylfaen"/>
  1001. </a:minorFont>
  1002. </a:fontScheme>
  1003. <a:fmtScheme name="Office">
  1004. <a:fillStyleLst>
  1005. <a:solidFill>
  1006. <a:schemeClr val="phClr"/>
  1007. </a:solidFill>
  1008. <a:gradFill rotWithShape="1">
  1009. <a:gsLst>
  1010. <a:gs pos="0">
  1011. <a:schemeClr val="phClr">
  1012. <a:tint val="50000"/>
  1013. <a:satMod val="300000"/>
  1014. </a:schemeClr>
  1015. </a:gs>
  1016. <a:gs pos="35000">
  1017. <a:schemeClr val="phClr">
  1018. <a:tint val="37000"/>
  1019. <a:satMod val="300000"/>
  1020. </a:schemeClr>
  1021. </a:gs>
  1022. <a:gs pos="100000">
  1023. <a:schemeClr val="phClr">
  1024. <a:tint val="15000"/>
  1025. <a:satMod val="350000"/>
  1026. </a:schemeClr>
  1027. </a:gs>
  1028. </a:gsLst>
  1029. <a:lin ang="16200000" scaled="1"/>
  1030. </a:gradFill>
  1031. <a:gradFill rotWithShape="1">
  1032. <a:gsLst>
  1033. <a:gs pos="0">
  1034. <a:schemeClr val="phClr">
  1035. <a:shade val="51000"/>
  1036. <a:satMod val="130000"/>
  1037. </a:schemeClr>
  1038. </a:gs>
  1039. <a:gs pos="80000">
  1040. <a:schemeClr val="phClr">
  1041. <a:shade val="93000"/>
  1042. <a:satMod val="130000"/>
  1043. </a:schemeClr>
  1044. </a:gs>
  1045. <a:gs pos="100000">
  1046. <a:schemeClr val="phClr">
  1047. <a:shade val="94000"/>
  1048. <a:satMod val="135000"/>
  1049. </a:schemeClr>
  1050. </a:gs>
  1051. </a:gsLst>
  1052. <a:lin ang="16200000" scaled="0"/>
  1053. </a:gradFill>
  1054. </a:fillStyleLst>
  1055. <a:lnStyleLst>
  1056. <a:ln w="9525" cap="flat" cmpd="sng" algn="ctr">
  1057. <a:solidFill>
  1058. <a:schemeClr val="phClr">
  1059. <a:shade val="95000"/>
  1060. <a:satMod val="105000"/>
  1061. </a:schemeClr>
  1062. </a:solidFill>
  1063. <a:prstDash val="solid"/>
  1064. </a:ln>
  1065. <a:ln w="25400" cap="flat" cmpd="sng" algn="ctr">
  1066. <a:solidFill>
  1067. <a:schemeClr val="phClr"/>
  1068. </a:solidFill>
  1069. <a:prstDash val="solid"/>
  1070. </a:ln>
  1071. <a:ln w="38100" cap="flat" cmpd="sng" algn="ctr">
  1072. <a:solidFill>
  1073. <a:schemeClr val="phClr"/>
  1074. </a:solidFill>
  1075. <a:prstDash val="solid"/>
  1076. </a:ln>
  1077. </a:lnStyleLst>
  1078. <a:effectStyleLst>
  1079. <a:effectStyle>
  1080. <a:effectLst>
  1081. <a:outerShdw blurRad="40000" dist="20000" dir="5400000" rotWithShape="0">
  1082. <a:srgbClr val="000000">
  1083. <a:alpha val="38000"/>
  1084. </a:srgbClr>
  1085. </a:outerShdw>
  1086. </a:effectLst>
  1087. </a:effectStyle>
  1088. <a:effectStyle>
  1089. <a:effectLst>
  1090. <a:outerShdw blurRad="40000" dist="23000" dir="5400000" rotWithShape="0">
  1091. <a:srgbClr val="000000">
  1092. <a:alpha val="35000"/>
  1093. </a:srgbClr>
  1094. </a:outerShdw>
  1095. </a:effectLst>
  1096. </a:effectStyle>
  1097. <a:effectStyle>
  1098. <a:effectLst>
  1099. <a:outerShdw blurRad="40000" dist="23000" dir="5400000" rotWithShape="0">
  1100. <a:srgbClr val="000000">
  1101. <a:alpha val="35000"/>
  1102. </a:srgbClr>
  1103. </a:outerShdw>
  1104. </a:effectLst>
  1105. <a:scene3d>
  1106. <a:camera prst="orthographicFront">
  1107. <a:rot lat="0" lon="0" rev="0"/>
  1108. </a:camera>
  1109. <a:lightRig rig="threePt" dir="t">
  1110. <a:rot lat="0" lon="0" rev="1200000"/>
  1111. </a:lightRig>
  1112. </a:scene3d>
  1113. <a:sp3d>
  1114. <a:bevelT w="63500" h="25400"/>
  1115. </a:sp3d>
  1116. </a:effectStyle>
  1117. </a:effectStyleLst>
  1118. <a:bgFillStyleLst>
  1119. <a:solidFill>
  1120. <a:schemeClr val="phClr"/>
  1121. </a:solidFill>
  1122. <a:gradFill rotWithShape="1">
  1123. <a:gsLst>
  1124. <a:gs pos="0">
  1125. <a:schemeClr val="phClr">
  1126. <a:tint val="40000"/>
  1127. <a:satMod val="350000"/>
  1128. </a:schemeClr>
  1129. </a:gs>
  1130. <a:gs pos="40000">
  1131. <a:schemeClr val="phClr">
  1132. <a:tint val="45000"/>
  1133. <a:shade val="99000"/>
  1134. <a:satMod val="350000"/>
  1135. </a:schemeClr>
  1136. </a:gs>
  1137. <a:gs pos="100000">
  1138. <a:schemeClr val="phClr">
  1139. <a:shade val="20000"/>
  1140. <a:satMod val="255000"/>
  1141. </a:schemeClr>
  1142. </a:gs>
  1143. </a:gsLst>
  1144. <a:path path="circle">
  1145. <a:fillToRect l="50000" t="-80000" r="50000" b="180000"/>
  1146. </a:path>
  1147. </a:gradFill>
  1148. <a:gradFill rotWithShape="1">
  1149. <a:gsLst>
  1150. <a:gs pos="0">
  1151. <a:schemeClr val="phClr">
  1152. <a:tint val="80000"/>
  1153. <a:satMod val="300000"/>
  1154. </a:schemeClr>
  1155. </a:gs>
  1156. <a:gs pos="100000">
  1157. <a:schemeClr val="phClr">
  1158. <a:shade val="30000"/>
  1159. <a:satMod val="200000"/>
  1160. </a:schemeClr>
  1161. </a:gs>
  1162. </a:gsLst>
  1163. <a:path path="circle">
  1164. <a:fillToRect l="50000" t="50000" r="50000" b="50000"/>
  1165. </a:path>
  1166. </a:gradFill>
  1167. </a:bgFillStyleLst>
  1168. </a:fmtScheme>
  1169. </a:themeElements>
  1170. <a:objectDefaults/>
  1171. <a:extraClrSchemeLst/>
  1172. </a:theme>
  1173. </pkg:xmlData>
  1174. </pkg:part>
  1175. <pkg:part pkg:name="/word/settings.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml">
  1176. <pkg:xmlData>
  1177. <w:settings mc:Ignorable="w14 w15"
  1178. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  1179. xmlns:o="urn:schemas-microsoft-com:office:office"
  1180. xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
  1181. xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math"
  1182. xmlns:v="urn:schemas-microsoft-com:vml"
  1183. xmlns:w10="urn:schemas-microsoft-com:office:word"
  1184. xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
  1185. xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
  1186. xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
  1187. xmlns:sl="http://schemas.openxmlformats.org/schemaLibrary/2006/main">
  1188. <w:zoom w:percent="100"/>
  1189. <w:doNotDisplayPageBoundaries/>
  1190. <w:bordersDoNotSurroundHeader/>
  1191. <w:bordersDoNotSurroundFooter/>
  1192. <w:defaultTabStop w:val="420"/>
  1193. <w:drawingGridVerticalSpacing w:val="156"/>
  1194. <w:displayHorizontalDrawingGridEvery w:val="0"/>
  1195. <w:displayVerticalDrawingGridEvery w:val="2"/>
  1196. <w:characterSpacingControl w:val="compressPunctuation"/>
  1197. <w:compat>
  1198. <w:spaceForUL/>
  1199. <w:balanceSingleByteDoubleByteWidth/>
  1200. <w:doNotLeaveBackslashAlone/>
  1201. <w:ulTrailSpace/>
  1202. <w:doNotExpandShiftReturn/>
  1203. <w:adjustLineHeightInTable/>
  1204. <w:useFELayout/>
  1205. <w:compatSetting w:name="compatibilityMode" w:uri="http://schemas.microsoft.com/office/word" w:val="14"/>
  1206. <w:compatSetting w:name="overrideTableStyleFontSizeAndJustification" w:uri="http://schemas.microsoft.com/office/word" w:val="1"/>
  1207. <w:compatSetting w:name="enableOpenTypeFeatures" w:uri="http://schemas.microsoft.com/office/word" w:val="1"/>
  1208. <w:compatSetting w:name="doNotFlipMirrorIndents" w:uri="http://schemas.microsoft.com/office/word" w:val="1"/>
  1209. </w:compat>
  1210. <w:rsids>
  1211. <w:rsidRoot w:val="000E491E"/>
  1212. <w:rsid w:val="0000087C"/>
  1213. <w:rsid w:val="00003673"/>
  1214. <w:rsid w:val="00011215"/>
  1215. <w:rsid w:val="00016532"/>
  1216. <w:rsid w:val="000234D8"/>
  1217. <w:rsid w:val="0002792F"/>
  1218. <w:rsid w:val="000340BD"/>
  1219. <w:rsid w:val="000349F0"/>
  1220. <w:rsid w:val="000405DF"/>
  1221. <w:rsid w:val="00043DBB"/>
  1222. <w:rsid w:val="00044EDE"/>
  1223. <w:rsid w:val="00046468"/>
  1224. <w:rsid w:val="0005789C"/>
  1225. <w:rsid w:val="00071BA1"/>
  1226. <w:rsid w:val="00075EC9"/>
  1227. <w:rsid w:val="00077CAC"/>
  1228. <w:rsid w:val="0008433C"/>
  1229. <w:rsid w:val="000926FB"/>
  1230. <w:rsid w:val="00094457"/>
  1231. <w:rsid w:val="000950AC"/>
  1232. <w:rsid w:val="000A5B04"/>
  1233. <w:rsid w:val="000C3C54"/>
  1234. <w:rsid w:val="000E08C4"/>
  1235. <w:rsid w:val="000E389B"/>
  1236. <w:rsid w:val="000E491E"/>
  1237. <w:rsid w:val="000F0681"/>
  1238. <w:rsid w:val="000F63C3"/>
  1239. <w:rsid w:val="00134D69"/>
  1240. <w:rsid w:val="0014597C"/>
  1241. <w:rsid w:val="00145C58"/>
  1242. <w:rsid w:val="00162C50"/>
  1243. <w:rsid w:val="0018097F"/>
  1244. <w:rsid w:val="00193CFF"/>
  1245. <w:rsid w:val="001B5AEF"/>
  1246. <w:rsid w:val="001E10AB"/>
  1247. <w:rsid w:val="001E6042"/>
  1248. <w:rsid w:val="001F4D6E"/>
  1249. <w:rsid w:val="001F5CCE"/>
  1250. <w:rsid w:val="0020436B"/>
  1251. <w:rsid w:val="00210054"/>
  1252. <w:rsid w:val="0021486B"/>
  1253. <w:rsid w:val="002418B0"/>
  1254. <w:rsid w:val="0024745E"/>
  1255. <w:rsid w:val="00255BFB"/>
  1256. <w:rsid w:val="00263FAE"/>
  1257. <w:rsid w:val="00267A3F"/>
  1258. <w:rsid w:val="0027192C"/>
  1259. <w:rsid w:val="00273D58"/>
  1260. <w:rsid w:val="002743BB"/>
  1261. <w:rsid w:val="00274886"/>
  1262. <w:rsid w:val="0028158A"/>
  1263. <w:rsid w:val="0028186E"/>
  1264. <w:rsid w:val="00285444"/>
  1265. <w:rsid w:val="00293306"/>
  1266. <w:rsid w:val="00293D48"/>
  1267. <w:rsid w:val="002A56CC"/>
  1268. <w:rsid w:val="002A6FBA"/>
  1269. <w:rsid w:val="002B233A"/>
  1270. <w:rsid w:val="002B6CA6"/>
  1271. <w:rsid w:val="002D471D"/>
  1272. <w:rsid w:val="002F46A7"/>
  1273. <w:rsid w:val="00306920"/>
  1274. <w:rsid w:val="00317CAB"/>
  1275. <w:rsid w:val="00324E91"/>
  1276. <w:rsid w:val="003334BC"/>
  1277. <w:rsid w:val="00334B9C"/>
  1278. <w:rsid w:val="003517D5"/>
  1279. <w:rsid w:val="003532D0"/>
  1280. <w:rsid w:val="00365790"/>
  1281. <w:rsid w:val="00372C15"/>
  1282. <w:rsid w:val="00380738"/>
  1283. <w:rsid w:val="00380E34"/>
  1284. <w:rsid w:val="003A26AC"/>
  1285. <w:rsid w:val="003D51DF"/>
  1286. <w:rsid w:val="003D5F45"/>
  1287. <w:rsid w:val="003F282B"/>
  1288. <w:rsid w:val="003F510A"/>
  1289. <w:rsid w:val="00414EBF"/>
  1290. <w:rsid w:val="00426201"/>
  1291. <w:rsid w:val="004348DC"/>
  1292. <w:rsid w:val="00434EE9"/>
  1293. <w:rsid w:val="0045085B"/>
  1294. <w:rsid w:val="00457AD5"/>
  1295. <w:rsid w:val="0048206F"/>
  1296. <w:rsid w:val="004A02C3"/>
  1297. <w:rsid w:val="004A6765"/>
  1298. <w:rsid w:val="004B1EDB"/>
  1299. <w:rsid w:val="004B5EFF"/>
  1300. <w:rsid w:val="004C1E25"/>
  1301. <w:rsid w:val="004C40C8"/>
  1302. <w:rsid w:val="004E3E3D"/>
  1303. <w:rsid w:val="004F15E2"/>
  1304. <w:rsid w:val="004F3625"/>
  1305. <w:rsid w:val="004F3ED2"/>
  1306. <w:rsid w:val="00520506"/>
  1307. <w:rsid w:val="005258C0"/>
  1308. <w:rsid w:val="0053189A"/>
  1309. <w:rsid w:val="0053611C"/>
  1310. <w:rsid w:val="00566050"/>
  1311. <w:rsid w:val="00582558"/>
  1312. <w:rsid w:val="005C5E8F"/>
  1313. <w:rsid w:val="005C74C7"/>
  1314. <w:rsid w:val="005D0C75"/>
  1315. <w:rsid w:val="006067BF"/>
  1316. <w:rsid w:val="00617E9F"/>
  1317. <w:rsid w:val="006275B8"/>
  1318. <w:rsid w:val="006307A1"/>
  1319. <w:rsid w:val="00642830"/>
  1320. <w:rsid w:val="00645D62"/>
  1321. <w:rsid w:val="00652820"/>
  1322. <w:rsid w:val="00653E87"/>
  1323. <w:rsid w:val="00654206"/>
  1324. <w:rsid w:val="006679C0"/>
  1325. <w:rsid w:val="00675D63"/>
  1326. <w:rsid w:val="00690449"/>
  1327. <w:rsid w:val="006B3548"/>
  1328. <w:rsid w:val="006B7062"/>
  1329. <w:rsid w:val="006C39D2"/>
  1330. <w:rsid w:val="006E71F8"/>
  1331. <w:rsid w:val="006F6CEA"/>
  1332. <w:rsid w:val="007144D3"/>
  1333. <w:rsid w:val="00730BE6"/>
  1334. <w:rsid w:val="00736D0E"/>
  1335. <w:rsid w:val="00737E4E"/>
  1336. <w:rsid w:val="007761BD"/>
  1337. <w:rsid w:val="00776B7C"/>
  1338. <w:rsid w:val="00783503"/>
  1339. <w:rsid w:val="00783BED"/>
  1340. <w:rsid w:val="007945A3"/>
  1341. <w:rsid w:val="007A513C"/>
  1342. <w:rsid w:val="007F26F3"/>
  1343. <w:rsid w:val="008002D8"/>
  1344. <w:rsid w:val="00807EC4"/>
  1345. <w:rsid w:val="008147C5"/>
  1346. <w:rsid w:val="0081514D"/>
  1347. <w:rsid w:val="00815589"/>
  1348. <w:rsid w:val="00830291"/>
  1349. <w:rsid w:val="00830556"/>
  1350. <w:rsid w:val="00833F93"/>
  1351. <w:rsid w:val="00836510"/>
  1352. <w:rsid w:val="00836DED"/>
  1353. <w:rsid w:val="00843521"/>
  1354. <w:rsid w:val="00845C45"/>
  1355. <w:rsid w:val="00846D00"/>
  1356. <w:rsid w:val="00852CEA"/>
  1357. <w:rsid w:val="008548C4"/>
  1358. <w:rsid w:val="008548D1"/>
  1359. <w:rsid w:val="00854BF8"/>
  1360. <w:rsid w:val="008616EC"/>
  1361. <w:rsid w:val="0086597F"/>
  1362. <w:rsid w:val="00867410"/>
  1363. <w:rsid w:val="00877193"/>
  1364. <w:rsid w:val="00883276"/>
  1365. <w:rsid w:val="0089466B"/>
  1366. <w:rsid w:val="008971E2"/>
  1367. <w:rsid w:val="008A428F"/>
  1368. <w:rsid w:val="008C4B65"/>
  1369. <w:rsid w:val="008C50E3"/>
  1370. <w:rsid w:val="008D5CB3"/>
  1371. <w:rsid w:val="009131A5"/>
  1372. <w:rsid w:val="00926892"/>
  1373. <w:rsid w:val="009276F1"/>
  1374. <w:rsid w:val="00935474"/>
  1375. <w:rsid w:val="0094631A"/>
  1376. <w:rsid w:val="00947ECE"/>
  1377. <w:rsid w:val="00971FF4"/>
  1378. <w:rsid w:val="00974E82"/>
  1379. <w:rsid w:val="00991189"/>
  1380. <w:rsid w:val="009A2C04"/>
  1381. <w:rsid w:val="009C1327"/>
  1382. <w:rsid w:val="009C7570"/>
  1383. <w:rsid w:val="009D498E"/>
  1384. <w:rsid w:val="009E2F49"/>
  1385. <w:rsid w:val="009E33B2"/>
  1386. <w:rsid w:val="00A01E01"/>
  1387. <w:rsid w:val="00A041F5"/>
  1388. <w:rsid w:val="00A062AD"/>
  1389. <w:rsid w:val="00A117A1"/>
  1390. <w:rsid w:val="00A17D3B"/>
  1391. <w:rsid w:val="00A26198"/>
  1392. <w:rsid w:val="00A26F23"/>
  1393. <w:rsid w:val="00A31F26"/>
  1394. <w:rsid w:val="00A32412"/>
  1395. <w:rsid w:val="00A403C5"/>
  1396. <w:rsid w:val="00A50019"/>
  1397. <w:rsid w:val="00A87FC8"/>
  1398. <w:rsid w:val="00A917A0"/>
  1399. <w:rsid w:val="00A9606B"/>
  1400. <w:rsid w:val="00AA0763"/>
  1401. <w:rsid w:val="00AA475F"/>
  1402. <w:rsid w:val="00AB1115"/>
  1403. <w:rsid w:val="00AB32A3"/>
  1404. <w:rsid w:val="00AB5C2D"/>
  1405. <w:rsid w:val="00AC39D5"/>
  1406. <w:rsid w:val="00AD0E5A"/>
  1407. <w:rsid w:val="00AE01DC"/>
  1408. <w:rsid w:val="00AE57C0"/>
  1409. <w:rsid w:val="00AF659B"/>
  1410. <w:rsid w:val="00B0382A"/>
  1411. <w:rsid w:val="00B04DD2"/>
  1412. <w:rsid w:val="00B33000"/>
  1413. <w:rsid w:val="00B33B71"/>
  1414. <w:rsid w:val="00B35B5A"/>
  1415. <w:rsid w:val="00B55340"/>
  1416. <w:rsid w:val="00B60685"/>
  1417. <w:rsid w:val="00B65FAF"/>
  1418. <w:rsid w:val="00B66264"/>
  1419. <w:rsid w:val="00B707E0"/>
  1420. <w:rsid w:val="00B716BE"/>
  1421. <w:rsid w:val="00B77B89"/>
  1422. <w:rsid w:val="00B85018"/>
  1423. <w:rsid w:val="00B8506B"/>
  1424. <w:rsid w:val="00B869D8"/>
  1425. <w:rsid w:val="00B905F8"/>
  1426. <w:rsid w:val="00B914BF"/>
  1427. <w:rsid w:val="00B930F2"/>
  1428. <w:rsid w:val="00BA468B"/>
  1429. <w:rsid w:val="00BB2686"/>
  1430. <w:rsid w:val="00BB5A68"/>
  1431. <w:rsid w:val="00BB68AC"/>
  1432. <w:rsid w:val="00BC400F"/>
  1433. <w:rsid w:val="00BE1111"/>
  1434. <w:rsid w:val="00BE5B76"/>
  1435. <w:rsid w:val="00BE651B"/>
  1436. <w:rsid w:val="00BE6AD4"/>
  1437. <w:rsid w:val="00BE7788"/>
  1438. <w:rsid w:val="00BF11C4"/>
  1439. <w:rsid w:val="00C03C12"/>
  1440. <w:rsid w:val="00C062B9"/>
  1441. <w:rsid w:val="00C10278"/>
  1442. <w:rsid w:val="00C17426"/>
  1443. <w:rsid w:val="00C259DB"/>
  1444. <w:rsid w:val="00C46DE6"/>
  1445. <w:rsid w:val="00C64E4B"/>
  1446. <w:rsid w:val="00C70EDF"/>
  1447. <w:rsid w:val="00C748B5"/>
  1448. <w:rsid w:val="00C957C0"/>
  1449. <w:rsid w:val="00CA3146"/>
  1450. <w:rsid w:val="00CA4E2E"/>
  1451. <w:rsid w:val="00CA6A7C"/>
  1452. <w:rsid w:val="00CB3E96"/>
  1453. <w:rsid w:val="00CB6291"/>
  1454. <w:rsid w:val="00CB6A14"/>
  1455. <w:rsid w:val="00CB7CC0"/>
  1456. <w:rsid w:val="00CC25F2"/>
  1457. <w:rsid w:val="00CC40B0"/>
  1458. <w:rsid w:val="00CC5D4A"/>
  1459. <w:rsid w:val="00CC5D90"/>
  1460. <w:rsid w:val="00CC5FB1"/>
  1461. <w:rsid w:val="00CE09D4"/>
  1462. <w:rsid w:val="00CE6169"/>
  1463. <w:rsid w:val="00CF1A10"/>
  1464. <w:rsid w:val="00D11CFF"/>
  1465. <w:rsid w:val="00D150BD"/>
  1466. <w:rsid w:val="00D36A0B"/>
  1467. <w:rsid w:val="00D43EEF"/>
  1468. <w:rsid w:val="00D4785B"/>
  1469. <w:rsid w:val="00D56411"/>
  1470. <w:rsid w:val="00D61282"/>
  1471. <w:rsid w:val="00D621A3"/>
  1472. <w:rsid w:val="00D7687B"/>
  1473. <w:rsid w:val="00D76C7C"/>
  1474. <w:rsid w:val="00D77FE9"/>
  1475. <w:rsid w:val="00D95D2F"/>
  1476. <w:rsid w:val="00DC2F7E"/>
  1477. <w:rsid w:val="00DC6253"/>
  1478. <w:rsid w:val="00E02293"/>
  1479. <w:rsid w:val="00E17B6F"/>
  1480. <w:rsid w:val="00E225A4"/>
  1481. <w:rsid w:val="00E46ABA"/>
  1482. <w:rsid w:val="00E76A99"/>
  1483. <w:rsid w:val="00EA5B71"/>
  1484. <w:rsid w:val="00EB1216"/>
  1485. <w:rsid w:val="00EC51B6"/>
  1486. <w:rsid w:val="00EE7C69"/>
  1487. <w:rsid w:val="00EF1BFD"/>
  1488. <w:rsid w:val="00F106A2"/>
  1489. <w:rsid w:val="00F156A6"/>
  1490. <w:rsid w:val="00F23D4E"/>
  1491. <w:rsid w:val="00F30A00"/>
  1492. <w:rsid w:val="00F37AEE"/>
  1493. <w:rsid w:val="00F45EBB"/>
  1494. <w:rsid w:val="00F52CAC"/>
  1495. <w:rsid w:val="00F82241"/>
  1496. <w:rsid w:val="00FB22AD"/>
  1497. <w:rsid w:val="00FD599D"/>
  1498. <w:rsid w:val="00FE3E65"/>
  1499. <w:rsid w:val="04E41531"/>
  1500. <w:rsid w:val="1F044770"/>
  1501. <w:rsid w:val="236C701D"/>
  1502. <w:rsid w:val="2DAB5C2F"/>
  1503. <w:rsid w:val="4DD3211B"/>
  1504. <w:rsid w:val="623533F6"/>
  1505. <w:rsid w:val="66E06120"/>
  1506. </w:rsids>
  1507. <m:mathPr>
  1508. <m:mathFont m:val="Cambria Math"/>
  1509. <m:brkBin m:val="before"/>
  1510. <m:brkBinSub m:val="--"/>
  1511. <m:smallFrac m:val="0"/>
  1512. <m:dispDef/>
  1513. <m:lMargin m:val="0"/>
  1514. <m:rMargin m:val="0"/>
  1515. <m:defJc m:val="centerGroup"/>
  1516. <m:wrapIndent m:val="1440"/>
  1517. <m:intLim m:val="subSup"/>
  1518. <m:naryLim m:val="undOvr"/>
  1519. </m:mathPr>
  1520. <w:themeFontLang w:val="en-US" w:eastAsia="zh-CN"/>
  1521. <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"/>
  1522. <w:shapeDefaults>
  1523. <o:shapedefaults v:ext="edit" spidmax="1026"/>
  1524. <o:shapelayout v:ext="edit">
  1525. <o:idmap v:ext="edit" data="1"/>
  1526. </o:shapelayout>
  1527. </w:shapeDefaults>
  1528. <w:decimalSymbol w:val="."/>
  1529. <w:listSeparator w:val=","/>
  1530. <w15:docId w15:val="{337B1F9C-D281-484F-BBCC-8C27FBA253F7}"/>
  1531. </w:settings>
  1532. </pkg:xmlData>
  1533. </pkg:part>
  1534. <pkg:part pkg:name="/word/styles.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml">
  1535. <pkg:xmlData>
  1536. <w:styles mc:Ignorable="w14 w15"
  1537. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  1538. xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
  1539. xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
  1540. xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
  1541. xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml">
  1542. <w:docDefaults>
  1543. <w:rPrDefault>
  1544. <w:rPr>
  1545. <w:rFonts w:ascii="Times New Roman" w:eastAsia="宋体" w:hAnsi="Times New Roman" w:cs="Times New Roman"/>
  1546. <w:lang w:val="en-US" w:eastAsia="zh-CN" w:bidi="ar-SA"/>
  1547. </w:rPr>
  1548. </w:rPrDefault>
  1549. <w:pPrDefault/>
  1550. </w:docDefaults>
  1551. <w:latentStyles w:defLockedState="0" w:defUIPriority="99" w:defSemiHidden="0" w:defUnhideWhenUsed="0" w:defQFormat="0" w:count="371">
  1552. <w:lsdException w:name="Normal" w:uiPriority="0" w:qFormat="1"/>
  1553. <w:lsdException w:name="heading 1" w:uiPriority="9" w:qFormat="1"/>
  1554. <w:lsdException w:name="heading 2" w:semiHidden="1" w:uiPriority="9" w:unhideWhenUsed="1" w:qFormat="1"/>
  1555. <w:lsdException w:name="heading 3" w:semiHidden="1" w:uiPriority="9" w:unhideWhenUsed="1" w:qFormat="1"/>
  1556. <w:lsdException w:name="heading 4" w:semiHidden="1" w:uiPriority="9" w:unhideWhenUsed="1" w:qFormat="1"/>
  1557. <w:lsdException w:name="heading 5" w:semiHidden="1" w:uiPriority="9" w:unhideWhenUsed="1" w:qFormat="1"/>
  1558. <w:lsdException w:name="heading 6" w:semiHidden="1" w:uiPriority="9" w:unhideWhenUsed="1" w:qFormat="1"/>
  1559. <w:lsdException w:name="heading 7" w:semiHidden="1" w:uiPriority="9" w:unhideWhenUsed="1" w:qFormat="1"/>
  1560. <w:lsdException w:name="heading 8" w:semiHidden="1" w:uiPriority="9" w:unhideWhenUsed="1" w:qFormat="1"/>
  1561. <w:lsdException w:name="heading 9" w:semiHidden="1" w:uiPriority="9" w:unhideWhenUsed="1" w:qFormat="1"/>
  1562. <w:lsdException w:name="index 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1563. <w:lsdException w:name="index 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1564. <w:lsdException w:name="index 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1565. <w:lsdException w:name="index 4" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1566. <w:lsdException w:name="index 5" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1567. <w:lsdException w:name="index 6" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1568. <w:lsdException w:name="index 7" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1569. <w:lsdException w:name="index 8" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1570. <w:lsdException w:name="index 9" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1571. <w:lsdException w:name="toc 1" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1"/>
  1572. <w:lsdException w:name="toc 2" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1"/>
  1573. <w:lsdException w:name="toc 3" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1"/>
  1574. <w:lsdException w:name="toc 4" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1"/>
  1575. <w:lsdException w:name="toc 5" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1"/>
  1576. <w:lsdException w:name="toc 6" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1"/>
  1577. <w:lsdException w:name="toc 7" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1"/>
  1578. <w:lsdException w:name="toc 8" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1"/>
  1579. <w:lsdException w:name="toc 9" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1"/>
  1580. <w:lsdException w:name="Normal Indent" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1581. <w:lsdException w:name="footnote text" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1582. <w:lsdException w:name="annotation text" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1583. <w:lsdException w:name="header" w:unhideWhenUsed="1"/>
  1584. <w:lsdException w:name="footer" w:unhideWhenUsed="1"/>
  1585. <w:lsdException w:name="index heading" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1586. <w:lsdException w:name="caption" w:semiHidden="1" w:uiPriority="35" w:unhideWhenUsed="1" w:qFormat="1"/>
  1587. <w:lsdException w:name="table of figures" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1588. <w:lsdException w:name="envelope address" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1589. <w:lsdException w:name="envelope return" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1590. <w:lsdException w:name="footnote reference" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1591. <w:lsdException w:name="annotation reference" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1592. <w:lsdException w:name="line number" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1593. <w:lsdException w:name="page number" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1594. <w:lsdException w:name="endnote reference" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1595. <w:lsdException w:name="endnote text" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1596. <w:lsdException w:name="table of authorities" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1597. <w:lsdException w:name="macro" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1598. <w:lsdException w:name="toa heading" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1599. <w:lsdException w:name="List" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1600. <w:lsdException w:name="List Bullet" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1601. <w:lsdException w:name="List Number" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1602. <w:lsdException w:name="List 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1603. <w:lsdException w:name="List 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1604. <w:lsdException w:name="List 4" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1605. <w:lsdException w:name="List 5" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1606. <w:lsdException w:name="List Bullet 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1607. <w:lsdException w:name="List Bullet 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1608. <w:lsdException w:name="List Bullet 4" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1609. <w:lsdException w:name="List Bullet 5" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1610. <w:lsdException w:name="List Number 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1611. <w:lsdException w:name="List Number 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1612. <w:lsdException w:name="List Number 4" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1613. <w:lsdException w:name="List Number 5" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1614. <w:lsdException w:name="Title" w:uiPriority="10" w:qFormat="1"/>
  1615. <w:lsdException w:name="Closing" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1616. <w:lsdException w:name="Signature" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1617. <w:lsdException w:name="Default Paragraph Font" w:semiHidden="1" w:uiPriority="1" w:unhideWhenUsed="1" w:qFormat="1"/>
  1618. <w:lsdException w:name="Body Text" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1619. <w:lsdException w:name="Body Text Indent" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1620. <w:lsdException w:name="List Continue" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1621. <w:lsdException w:name="List Continue 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1622. <w:lsdException w:name="List Continue 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1623. <w:lsdException w:name="List Continue 4" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1624. <w:lsdException w:name="List Continue 5" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1625. <w:lsdException w:name="Message Header" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1626. <w:lsdException w:name="Subtitle" w:uiPriority="11" w:qFormat="1"/>
  1627. <w:lsdException w:name="Salutation" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1628. <w:lsdException w:name="Date" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1629. <w:lsdException w:name="Body Text First Indent" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1630. <w:lsdException w:name="Body Text First Indent 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1631. <w:lsdException w:name="Note Heading" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1632. <w:lsdException w:name="Body Text 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1633. <w:lsdException w:name="Body Text 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1634. <w:lsdException w:name="Body Text Indent 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1635. <w:lsdException w:name="Body Text Indent 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1636. <w:lsdException w:name="Block Text" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1637. <w:lsdException w:name="Hyperlink" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1638. <w:lsdException w:name="FollowedHyperlink" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1639. <w:lsdException w:name="Strong" w:uiPriority="22" w:qFormat="1"/>
  1640. <w:lsdException w:name="Emphasis" w:uiPriority="20" w:qFormat="1"/>
  1641. <w:lsdException w:name="Document Map" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1642. <w:lsdException w:name="Plain Text" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1643. <w:lsdException w:name="E-mail Signature" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1644. <w:lsdException w:name="HTML Top of Form" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1645. <w:lsdException w:name="HTML Bottom of Form" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1646. <w:lsdException w:name="Normal (Web)" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1647. <w:lsdException w:name="HTML Acronym" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1648. <w:lsdException w:name="HTML Address" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1649. <w:lsdException w:name="HTML Cite" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1650. <w:lsdException w:name="HTML Code" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1651. <w:lsdException w:name="HTML Definition" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1652. <w:lsdException w:name="HTML Keyboard" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1653. <w:lsdException w:name="HTML Preformatted" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1654. <w:lsdException w:name="HTML Sample" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1655. <w:lsdException w:name="HTML Typewriter" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1656. <w:lsdException w:name="HTML Variable" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1657. <w:lsdException w:name="Normal Table" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1658. <w:lsdException w:name="annotation subject" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1659. <w:lsdException w:name="No List" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1660. <w:lsdException w:name="Outline List 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1661. <w:lsdException w:name="Outline List 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1662. <w:lsdException w:name="Outline List 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1663. <w:lsdException w:name="Table Simple 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1664. <w:lsdException w:name="Table Simple 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1665. <w:lsdException w:name="Table Simple 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1666. <w:lsdException w:name="Table Classic 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1667. <w:lsdException w:name="Table Classic 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1668. <w:lsdException w:name="Table Classic 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1669. <w:lsdException w:name="Table Classic 4" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1670. <w:lsdException w:name="Table Colorful 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1671. <w:lsdException w:name="Table Colorful 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1672. <w:lsdException w:name="Table Colorful 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1673. <w:lsdException w:name="Table Columns 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1674. <w:lsdException w:name="Table Columns 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1675. <w:lsdException w:name="Table Columns 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1676. <w:lsdException w:name="Table Columns 4" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1677. <w:lsdException w:name="Table Columns 5" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1678. <w:lsdException w:name="Table Grid 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1679. <w:lsdException w:name="Table Grid 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1680. <w:lsdException w:name="Table Grid 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1681. <w:lsdException w:name="Table Grid 4" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1682. <w:lsdException w:name="Table Grid 5" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1683. <w:lsdException w:name="Table Grid 6" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1684. <w:lsdException w:name="Table Grid 7" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1685. <w:lsdException w:name="Table Grid 8" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1686. <w:lsdException w:name="Table List 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1687. <w:lsdException w:name="Table List 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1688. <w:lsdException w:name="Table List 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1689. <w:lsdException w:name="Table List 4" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1690. <w:lsdException w:name="Table List 5" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1691. <w:lsdException w:name="Table List 6" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1692. <w:lsdException w:name="Table List 7" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1693. <w:lsdException w:name="Table List 8" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1694. <w:lsdException w:name="Table 3D effects 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1695. <w:lsdException w:name="Table 3D effects 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1696. <w:lsdException w:name="Table 3D effects 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1697. <w:lsdException w:name="Table Contemporary" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1698. <w:lsdException w:name="Table Elegant" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1699. <w:lsdException w:name="Table Professional" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1700. <w:lsdException w:name="Table Subtle 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1701. <w:lsdException w:name="Table Subtle 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1702. <w:lsdException w:name="Table Web 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1703. <w:lsdException w:name="Table Web 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1704. <w:lsdException w:name="Table Web 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1705. <w:lsdException w:name="Balloon Text" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1706. <w:lsdException w:name="Table Grid" w:uiPriority="59" w:qFormat="1"/>
  1707. <w:lsdException w:name="Table Theme" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1708. <w:lsdException w:name="Placeholder Text" w:semiHidden="1"/>
  1709. <w:lsdException w:name="Light Shading" w:uiPriority="60"/>
  1710. <w:lsdException w:name="Light List" w:uiPriority="61"/>
  1711. <w:lsdException w:name="Light Grid" w:uiPriority="62"/>
  1712. <w:lsdException w:name="Medium Shading 1" w:uiPriority="63"/>
  1713. <w:lsdException w:name="Medium Shading 2" w:uiPriority="64"/>
  1714. <w:lsdException w:name="Medium List 1" w:uiPriority="65"/>
  1715. <w:lsdException w:name="Medium List 2" w:uiPriority="66"/>
  1716. <w:lsdException w:name="Medium Grid 1" w:uiPriority="67"/>
  1717. <w:lsdException w:name="Medium Grid 2" w:uiPriority="68"/>
  1718. <w:lsdException w:name="Medium Grid 3" w:uiPriority="69"/>
  1719. <w:lsdException w:name="Dark List" w:uiPriority="70"/>
  1720. <w:lsdException w:name="Colorful Shading" w:uiPriority="71"/>
  1721. <w:lsdException w:name="Colorful List" w:uiPriority="72"/>
  1722. <w:lsdException w:name="Colorful Grid" w:uiPriority="73"/>
  1723. <w:lsdException w:name="Light Shading Accent 1" w:uiPriority="60"/>
  1724. <w:lsdException w:name="Light List Accent 1" w:uiPriority="61"/>
  1725. <w:lsdException w:name="Light Grid Accent 1" w:uiPriority="62"/>
  1726. <w:lsdException w:name="Medium Shading 1 Accent 1" w:uiPriority="63"/>
  1727. <w:lsdException w:name="Medium Shading 2 Accent 1" w:uiPriority="64"/>
  1728. <w:lsdException w:name="Medium List 1 Accent 1" w:uiPriority="65"/>
  1729. <w:lsdException w:name="Revision" w:semiHidden="1"/>
  1730. <w:lsdException w:name="List Paragraph" w:uiPriority="34" w:qFormat="1"/>
  1731. <w:lsdException w:name="Medium List 2 Accent 1" w:uiPriority="66"/>
  1732. <w:lsdException w:name="Medium Grid 1 Accent 1" w:uiPriority="67"/>
  1733. <w:lsdException w:name="Medium Grid 2 Accent 1" w:uiPriority="68"/>
  1734. <w:lsdException w:name="Medium Grid 3 Accent 1" w:uiPriority="69"/>
  1735. <w:lsdException w:name="Dark List Accent 1" w:uiPriority="70"/>
  1736. <w:lsdException w:name="Colorful Shading Accent 1" w:uiPriority="71"/>
  1737. <w:lsdException w:name="Colorful List Accent 1" w:uiPriority="72"/>
  1738. <w:lsdException w:name="Colorful Grid Accent 1" w:uiPriority="73"/>
  1739. <w:lsdException w:name="Light Shading Accent 2" w:uiPriority="60"/>
  1740. <w:lsdException w:name="Light List Accent 2" w:uiPriority="61"/>
  1741. <w:lsdException w:name="Light Grid Accent 2" w:uiPriority="62"/>
  1742. <w:lsdException w:name="Medium Shading 1 Accent 2" w:uiPriority="63"/>
  1743. <w:lsdException w:name="Medium Shading 2 Accent 2" w:uiPriority="64"/>
  1744. <w:lsdException w:name="Medium List 1 Accent 2" w:uiPriority="65"/>
  1745. <w:lsdException w:name="Medium List 2 Accent 2" w:uiPriority="66"/>
  1746. <w:lsdException w:name="Medium Grid 1 Accent 2" w:uiPriority="67"/>
  1747. <w:lsdException w:name="Medium Grid 2 Accent 2" w:uiPriority="68"/>
  1748. <w:lsdException w:name="Medium Grid 3 Accent 2" w:uiPriority="69"/>
  1749. <w:lsdException w:name="Dark List Accent 2" w:uiPriority="70"/>
  1750. <w:lsdException w:name="Colorful Shading Accent 2" w:uiPriority="71"/>
  1751. <w:lsdException w:name="Colorful List Accent 2" w:uiPriority="72"/>
  1752. <w:lsdException w:name="Colorful Grid Accent 2" w:uiPriority="73"/>
  1753. <w:lsdException w:name="Light Shading Accent 3" w:uiPriority="60"/>
  1754. <w:lsdException w:name="Light List Accent 3" w:uiPriority="61"/>
  1755. <w:lsdException w:name="Light Grid Accent 3" w:uiPriority="62"/>
  1756. <w:lsdException w:name="Medium Shading 1 Accent 3" w:uiPriority="63"/>
  1757. <w:lsdException w:name="Medium Shading 2 Accent 3" w:uiPriority="64"/>
  1758. <w:lsdException w:name="Medium List 1 Accent 3" w:uiPriority="65"/>
  1759. <w:lsdException w:name="Medium List 2 Accent 3" w:uiPriority="66"/>
  1760. <w:lsdException w:name="Medium Grid 1 Accent 3" w:uiPriority="67"/>
  1761. <w:lsdException w:name="Medium Grid 2 Accent 3" w:uiPriority="68"/>
  1762. <w:lsdException w:name="Medium Grid 3 Accent 3" w:uiPriority="69"/>
  1763. <w:lsdException w:name="Dark List Accent 3" w:uiPriority="70"/>
  1764. <w:lsdException w:name="Colorful Shading Accent 3" w:uiPriority="71"/>
  1765. <w:lsdException w:name="Colorful List Accent 3" w:uiPriority="72"/>
  1766. <w:lsdException w:name="Colorful Grid Accent 3" w:uiPriority="73"/>
  1767. <w:lsdException w:name="Light Shading Accent 4" w:uiPriority="60"/>
  1768. <w:lsdException w:name="Light List Accent 4" w:uiPriority="61"/>
  1769. <w:lsdException w:name="Light Grid Accent 4" w:uiPriority="62"/>
  1770. <w:lsdException w:name="Medium Shading 1 Accent 4" w:uiPriority="63"/>
  1771. <w:lsdException w:name="Medium Shading 2 Accent 4" w:uiPriority="64"/>
  1772. <w:lsdException w:name="Medium List 1 Accent 4" w:uiPriority="65"/>
  1773. <w:lsdException w:name="Medium List 2 Accent 4" w:uiPriority="66"/>
  1774. <w:lsdException w:name="Medium Grid 1 Accent 4" w:uiPriority="67"/>
  1775. <w:lsdException w:name="Medium Grid 2 Accent 4" w:uiPriority="68"/>
  1776. <w:lsdException w:name="Medium Grid 3 Accent 4" w:uiPriority="69"/>
  1777. <w:lsdException w:name="Dark List Accent 4" w:uiPriority="70"/>
  1778. <w:lsdException w:name="Colorful Shading Accent 4" w:uiPriority="71"/>
  1779. <w:lsdException w:name="Colorful List Accent 4" w:uiPriority="72"/>
  1780. <w:lsdException w:name="Colorful Grid Accent 4" w:uiPriority="73"/>
  1781. <w:lsdException w:name="Light Shading Accent 5" w:uiPriority="60"/>
  1782. <w:lsdException w:name="Light List Accent 5" w:uiPriority="61"/>
  1783. <w:lsdException w:name="Light Grid Accent 5" w:uiPriority="62"/>
  1784. <w:lsdException w:name="Medium Shading 1 Accent 5" w:uiPriority="63"/>
  1785. <w:lsdException w:name="Medium Shading 2 Accent 5" w:uiPriority="64"/>
  1786. <w:lsdException w:name="Medium List 1 Accent 5" w:uiPriority="65"/>
  1787. <w:lsdException w:name="Medium List 2 Accent 5" w:uiPriority="66"/>
  1788. <w:lsdException w:name="Medium Grid 1 Accent 5" w:uiPriority="67"/>
  1789. <w:lsdException w:name="Medium Grid 2 Accent 5" w:uiPriority="68"/>
  1790. <w:lsdException w:name="Medium Grid 3 Accent 5" w:uiPriority="69"/>
  1791. <w:lsdException w:name="Dark List Accent 5" w:uiPriority="70"/>
  1792. <w:lsdException w:name="Colorful Shading Accent 5" w:uiPriority="71"/>
  1793. <w:lsdException w:name="Colorful List Accent 5" w:uiPriority="72"/>
  1794. <w:lsdException w:name="Colorful Grid Accent 5" w:uiPriority="73"/>
  1795. <w:lsdException w:name="Light Shading Accent 6" w:uiPriority="60"/>
  1796. <w:lsdException w:name="Light List Accent 6" w:uiPriority="61"/>
  1797. <w:lsdException w:name="Light Grid Accent 6" w:uiPriority="62"/>
  1798. <w:lsdException w:name="Medium Shading 1 Accent 6" w:uiPriority="63"/>
  1799. <w:lsdException w:name="Medium Shading 2 Accent 6" w:uiPriority="64"/>
  1800. <w:lsdException w:name="Medium List 1 Accent 6" w:uiPriority="65"/>
  1801. <w:lsdException w:name="Medium List 2 Accent 6" w:uiPriority="66"/>
  1802. <w:lsdException w:name="Medium Grid 1 Accent 6" w:uiPriority="67"/>
  1803. <w:lsdException w:name="Medium Grid 2 Accent 6" w:uiPriority="68"/>
  1804. <w:lsdException w:name="Medium Grid 3 Accent 6" w:uiPriority="69"/>
  1805. <w:lsdException w:name="Dark List Accent 6" w:uiPriority="70"/>
  1806. <w:lsdException w:name="Colorful Shading Accent 6" w:uiPriority="71"/>
  1807. <w:lsdException w:name="Colorful List Accent 6" w:uiPriority="72"/>
  1808. <w:lsdException w:name="Colorful Grid Accent 6" w:uiPriority="73"/>
  1809. <w:lsdException w:name="Subtle Emphasis" w:uiPriority="19" w:qFormat="1"/>
  1810. <w:lsdException w:name="Intense Emphasis" w:uiPriority="21" w:qFormat="1"/>
  1811. <w:lsdException w:name="Subtle Reference" w:uiPriority="31" w:qFormat="1"/>
  1812. <w:lsdException w:name="Intense Reference" w:uiPriority="32" w:qFormat="1"/>
  1813. <w:lsdException w:name="Book Title" w:uiPriority="33" w:qFormat="1"/>
  1814. <w:lsdException w:name="Bibliography" w:semiHidden="1" w:uiPriority="37" w:unhideWhenUsed="1"/>
  1815. <w:lsdException w:name="TOC Heading" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1" w:qFormat="1"/>
  1816. <w:lsdException w:name="Plain Table 1" w:uiPriority="41"/>
  1817. <w:lsdException w:name="Plain Table 2" w:uiPriority="42"/>
  1818. <w:lsdException w:name="Plain Table 3" w:uiPriority="43"/>
  1819. <w:lsdException w:name="Plain Table 4" w:uiPriority="44"/>
  1820. <w:lsdException w:name="Plain Table 5" w:uiPriority="45"/>
  1821. <w:lsdException w:name="Grid Table Light" w:uiPriority="40"/>
  1822. <w:lsdException w:name="Grid Table 1 Light" w:uiPriority="46"/>
  1823. <w:lsdException w:name="Grid Table 2" w:uiPriority="47"/>
  1824. <w:lsdException w:name="Grid Table 3" w:uiPriority="48"/>
  1825. <w:lsdException w:name="Grid Table 4" w:uiPriority="49"/>
  1826. <w:lsdException w:name="Grid Table 5 Dark" w:uiPriority="50"/>
  1827. <w:lsdException w:name="Grid Table 6 Colorful" w:uiPriority="51"/>
  1828. <w:lsdException w:name="Grid Table 7 Colorful" w:uiPriority="52"/>
  1829. <w:lsdException w:name="Grid Table 1 Light Accent 1" w:uiPriority="46"/>
  1830. <w:lsdException w:name="Grid Table 2 Accent 1" w:uiPriority="47"/>
  1831. <w:lsdException w:name="Grid Table 3 Accent 1" w:uiPriority="48"/>
  1832. <w:lsdException w:name="Grid Table 4 Accent 1" w:uiPriority="49"/>
  1833. <w:lsdException w:name="Grid Table 5 Dark Accent 1" w:uiPriority="50"/>
  1834. <w:lsdException w:name="Grid Table 6 Colorful Accent 1" w:uiPriority="51"/>
  1835. <w:lsdException w:name="Grid Table 7 Colorful Accent 1" w:uiPriority="52"/>
  1836. <w:lsdException w:name="Grid Table 1 Light Accent 2" w:uiPriority="46"/>
  1837. <w:lsdException w:name="Grid Table 2 Accent 2" w:uiPriority="47"/>
  1838. <w:lsdException w:name="Grid Table 3 Accent 2" w:uiPriority="48"/>
  1839. <w:lsdException w:name="Grid Table 4 Accent 2" w:uiPriority="49"/>
  1840. <w:lsdException w:name="Grid Table 5 Dark Accent 2" w:uiPriority="50"/>
  1841. <w:lsdException w:name="Grid Table 6 Colorful Accent 2" w:uiPriority="51"/>
  1842. <w:lsdException w:name="Grid Table 7 Colorful Accent 2" w:uiPriority="52"/>
  1843. <w:lsdException w:name="Grid Table 1 Light Accent 3" w:uiPriority="46"/>
  1844. <w:lsdException w:name="Grid Table 2 Accent 3" w:uiPriority="47"/>
  1845. <w:lsdException w:name="Grid Table 3 Accent 3" w:uiPriority="48"/>
  1846. <w:lsdException w:name="Grid Table 4 Accent 3" w:uiPriority="49"/>
  1847. <w:lsdException w:name="Grid Table 5 Dark Accent 3" w:uiPriority="50"/>
  1848. <w:lsdException w:name="Grid Table 6 Colorful Accent 3" w:uiPriority="51"/>
  1849. <w:lsdException w:name="Grid Table 7 Colorful Accent 3" w:uiPriority="52"/>
  1850. <w:lsdException w:name="Grid Table 1 Light Accent 4" w:uiPriority="46"/>
  1851. <w:lsdException w:name="Grid Table 2 Accent 4" w:uiPriority="47"/>
  1852. <w:lsdException w:name="Grid Table 3 Accent 4" w:uiPriority="48"/>
  1853. <w:lsdException w:name="Grid Table 4 Accent 4" w:uiPriority="49"/>
  1854. <w:lsdException w:name="Grid Table 5 Dark Accent 4" w:uiPriority="50"/>
  1855. <w:lsdException w:name="Grid Table 6 Colorful Accent 4" w:uiPriority="51"/>
  1856. <w:lsdException w:name="Grid Table 7 Colorful Accent 4" w:uiPriority="52"/>
  1857. <w:lsdException w:name="Grid Table 1 Light Accent 5" w:uiPriority="46"/>
  1858. <w:lsdException w:name="Grid Table 2 Accent 5" w:uiPriority="47"/>
  1859. <w:lsdException w:name="Grid Table 3 Accent 5" w:uiPriority="48"/>
  1860. <w:lsdException w:name="Grid Table 4 Accent 5" w:uiPriority="49"/>
  1861. <w:lsdException w:name="Grid Table 5 Dark Accent 5" w:uiPriority="50"/>
  1862. <w:lsdException w:name="Grid Table 6 Colorful Accent 5" w:uiPriority="51"/>
  1863. <w:lsdException w:name="Grid Table 7 Colorful Accent 5" w:uiPriority="52"/>
  1864. <w:lsdException w:name="Grid Table 1 Light Accent 6" w:uiPriority="46"/>
  1865. <w:lsdException w:name="Grid Table 2 Accent 6" w:uiPriority="47"/>
  1866. <w:lsdException w:name="Grid Table 3 Accent 6" w:uiPriority="48"/>
  1867. <w:lsdException w:name="Grid Table 4 Accent 6" w:uiPriority="49"/>
  1868. <w:lsdException w:name="Grid Table 5 Dark Accent 6" w:uiPriority="50"/>
  1869. <w:lsdException w:name="Grid Table 6 Colorful Accent 6" w:uiPriority="51"/>
  1870. <w:lsdException w:name="Grid Table 7 Colorful Accent 6" w:uiPriority="52"/>
  1871. <w:lsdException w:name="List Table 1 Light" w:uiPriority="46"/>
  1872. <w:lsdException w:name="List Table 2" w:uiPriority="47"/>
  1873. <w:lsdException w:name="List Table 3" w:uiPriority="48"/>
  1874. <w:lsdException w:name="List Table 4" w:uiPriority="49"/>
  1875. <w:lsdException w:name="List Table 5 Dark" w:uiPriority="50"/>
  1876. <w:lsdException w:name="List Table 6 Colorful" w:uiPriority="51"/>
  1877. <w:lsdException w:name="List Table 7 Colorful" w:uiPriority="52"/>
  1878. <w:lsdException w:name="List Table 1 Light Accent 1" w:uiPriority="46"/>
  1879. <w:lsdException w:name="List Table 2 Accent 1" w:uiPriority="47"/>
  1880. <w:lsdException w:name="List Table 3 Accent 1" w:uiPriority="48"/>
  1881. <w:lsdException w:name="List Table 4 Accent 1" w:uiPriority="49"/>
  1882. <w:lsdException w:name="List Table 5 Dark Accent 1" w:uiPriority="50"/>
  1883. <w:lsdException w:name="List Table 6 Colorful Accent 1" w:uiPriority="51"/>
  1884. <w:lsdException w:name="List Table 7 Colorful Accent 1" w:uiPriority="52"/>
  1885. <w:lsdException w:name="List Table 1 Light Accent 2" w:uiPriority="46"/>
  1886. <w:lsdException w:name="List Table 2 Accent 2" w:uiPriority="47"/>
  1887. <w:lsdException w:name="List Table 3 Accent 2" w:uiPriority="48"/>
  1888. <w:lsdException w:name="List Table 4 Accent 2" w:uiPriority="49"/>
  1889. <w:lsdException w:name="List Table 5 Dark Accent 2" w:uiPriority="50"/>
  1890. <w:lsdException w:name="List Table 6 Colorful Accent 2" w:uiPriority="51"/>
  1891. <w:lsdException w:name="List Table 7 Colorful Accent 2" w:uiPriority="52"/>
  1892. <w:lsdException w:name="List Table 1 Light Accent 3" w:uiPriority="46"/>
  1893. <w:lsdException w:name="List Table 2 Accent 3" w:uiPriority="47"/>
  1894. <w:lsdException w:name="List Table 3 Accent 3" w:uiPriority="48"/>
  1895. <w:lsdException w:name="List Table 4 Accent 3" w:uiPriority="49"/>
  1896. <w:lsdException w:name="List Table 5 Dark Accent 3" w:uiPriority="50"/>
  1897. <w:lsdException w:name="List Table 6 Colorful Accent 3" w:uiPriority="51"/>
  1898. <w:lsdException w:name="List Table 7 Colorful Accent 3" w:uiPriority="52"/>
  1899. <w:lsdException w:name="List Table 1 Light Accent 4" w:uiPriority="46"/>
  1900. <w:lsdException w:name="List Table 2 Accent 4" w:uiPriority="47"/>
  1901. <w:lsdException w:name="List Table 3 Accent 4" w:uiPriority="48"/>
  1902. <w:lsdException w:name="List Table 4 Accent 4" w:uiPriority="49"/>
  1903. <w:lsdException w:name="List Table 5 Dark Accent 4" w:uiPriority="50"/>
  1904. <w:lsdException w:name="List Table 6 Colorful Accent 4" w:uiPriority="51"/>
  1905. <w:lsdException w:name="List Table 7 Colorful Accent 4" w:uiPriority="52"/>
  1906. <w:lsdException w:name="List Table 1 Light Accent 5" w:uiPriority="46"/>
  1907. <w:lsdException w:name="List Table 2 Accent 5" w:uiPriority="47"/>
  1908. <w:lsdException w:name="List Table 3 Accent 5" w:uiPriority="48"/>
  1909. <w:lsdException w:name="List Table 4 Accent 5" w:uiPriority="49"/>
  1910. <w:lsdException w:name="List Table 5 Dark Accent 5" w:uiPriority="50"/>
  1911. <w:lsdException w:name="List Table 6 Colorful Accent 5" w:uiPriority="51"/>
  1912. <w:lsdException w:name="List Table 7 Colorful Accent 5" w:uiPriority="52"/>
  1913. <w:lsdException w:name="List Table 1 Light Accent 6" w:uiPriority="46"/>
  1914. <w:lsdException w:name="List Table 2 Accent 6" w:uiPriority="47"/>
  1915. <w:lsdException w:name="List Table 3 Accent 6" w:uiPriority="48"/>
  1916. <w:lsdException w:name="List Table 4 Accent 6" w:uiPriority="49"/>
  1917. <w:lsdException w:name="List Table 5 Dark Accent 6" w:uiPriority="50"/>
  1918. <w:lsdException w:name="List Table 6 Colorful Accent 6" w:uiPriority="51"/>
  1919. <w:lsdException w:name="List Table 7 Colorful Accent 6" w:uiPriority="52"/>
  1920. </w:latentStyles>
  1921. <w:style w:type="paragraph" w:default="1" w:styleId="a">
  1922. <w:name w:val="Normal"/>
  1923. <w:qFormat/>
  1924. <w:pPr>
  1925. <w:widowControl w:val="0"/>
  1926. <w:jc w:val="both"/>
  1927. </w:pPr>
  1928. <w:rPr>
  1929. <w:kern w:val="2"/>
  1930. <w:sz w:val="21"/>
  1931. <w:szCs w:val="24"/>
  1932. </w:rPr>
  1933. </w:style>
  1934. <w:style w:type="character" w:default="1" w:styleId="a0">
  1935. <w:name w:val="Default Paragraph Font"/>
  1936. <w:uiPriority w:val="1"/>
  1937. <w:semiHidden/>
  1938. <w:unhideWhenUsed/>
  1939. </w:style>
  1940. <w:style w:type="table" w:default="1" w:styleId="a1">
  1941. <w:name w:val="Normal Table"/>
  1942. <w:uiPriority w:val="99"/>
  1943. <w:semiHidden/>
  1944. <w:unhideWhenUsed/>
  1945. <w:tblPr>
  1946. <w:tblInd w:w="0" w:type="dxa"/>
  1947. <w:tblCellMar>
  1948. <w:top w:w="0" w:type="dxa"/>
  1949. <w:left w:w="108" w:type="dxa"/>
  1950. <w:bottom w:w="0" w:type="dxa"/>
  1951. <w:right w:w="108" w:type="dxa"/>
  1952. </w:tblCellMar>
  1953. </w:tblPr>
  1954. </w:style>
  1955. <w:style w:type="numbering" w:default="1" w:styleId="a2">
  1956. <w:name w:val="No List"/>
  1957. <w:uiPriority w:val="99"/>
  1958. <w:semiHidden/>
  1959. <w:unhideWhenUsed/>
  1960. </w:style>
  1961. <w:style w:type="paragraph" w:styleId="a3">
  1962. <w:name w:val="Balloon Text"/>
  1963. <w:basedOn w:val="a"/>
  1964. <w:link w:val="Char"/>
  1965. <w:uiPriority w:val="99"/>
  1966. <w:semiHidden/>
  1967. <w:unhideWhenUsed/>
  1968. <w:rPr>
  1969. <w:sz w:val="18"/>
  1970. <w:szCs w:val="18"/>
  1971. </w:rPr>
  1972. </w:style>
  1973. <w:style w:type="paragraph" w:styleId="a4">
  1974. <w:name w:val="footer"/>
  1975. <w:basedOn w:val="a"/>
  1976. <w:link w:val="Char0"/>
  1977. <w:uiPriority w:val="99"/>
  1978. <w:unhideWhenUsed/>
  1979. <w:pPr>
  1980. <w:tabs>
  1981. <w:tab w:val="center" w:pos="4153"/>
  1982. <w:tab w:val="right" w:pos="8306"/>
  1983. </w:tabs>
  1984. <w:snapToGrid w:val="0"/>
  1985. <w:jc w:val="left"/>
  1986. </w:pPr>
  1987. <w:rPr>
  1988. <w:sz w:val="18"/>
  1989. <w:szCs w:val="18"/>
  1990. </w:rPr>
  1991. </w:style>
  1992. <w:style w:type="paragraph" w:styleId="a5">
  1993. <w:name w:val="header"/>
  1994. <w:basedOn w:val="a"/>
  1995. <w:link w:val="Char1"/>
  1996. <w:uiPriority w:val="99"/>
  1997. <w:unhideWhenUsed/>
  1998. <w:pPr>
  1999. <w:pBdr>
  2000. <w:bottom w:val="single" w:sz="6" w:space="1" w:color="auto"/>
  2001. </w:pBdr>
  2002. <w:tabs>
  2003. <w:tab w:val="center" w:pos="4153"/>
  2004. <w:tab w:val="right" w:pos="8306"/>
  2005. </w:tabs>
  2006. <w:snapToGrid w:val="0"/>
  2007. <w:jc w:val="center"/>
  2008. </w:pPr>
  2009. <w:rPr>
  2010. <w:sz w:val="18"/>
  2011. <w:szCs w:val="18"/>
  2012. </w:rPr>
  2013. </w:style>
  2014. <w:style w:type="table" w:styleId="a6">
  2015. <w:name w:val="Table Grid"/>
  2016. <w:basedOn w:val="a1"/>
  2017. <w:uiPriority w:val="59"/>
  2018. <w:qFormat/>
  2019. <w:tblPr>
  2020. <w:tblBorders>
  2021. <w:top w:val="single" w:sz="4" w:space="0" w:color="auto"/>
  2022. <w:left w:val="single" w:sz="4" w:space="0" w:color="auto"/>
  2023. <w:bottom w:val="single" w:sz="4" w:space="0" w:color="auto"/>
  2024. <w:right w:val="single" w:sz="4" w:space="0" w:color="auto"/>
  2025. <w:insideH w:val="single" w:sz="4" w:space="0" w:color="auto"/>
  2026. <w:insideV w:val="single" w:sz="4" w:space="0" w:color="auto"/>
  2027. </w:tblBorders>
  2028. </w:tblPr>
  2029. </w:style>
  2030. <w:style w:type="character" w:customStyle="1" w:styleId="Char">
  2031. <w:name w:val="批注框文本 Char"/>
  2032. <w:basedOn w:val="a0"/>
  2033. <w:link w:val="a3"/>
  2034. <w:uiPriority w:val="99"/>
  2035. <w:semiHidden/>
  2036. <w:qFormat/>
  2037. <w:rPr>
  2038. <w:rFonts w:ascii="Times New Roman" w:eastAsia="宋体" w:hAnsi="Times New Roman" w:cs="Times New Roman"/>
  2039. <w:sz w:val="18"/>
  2040. <w:szCs w:val="18"/>
  2041. </w:rPr>
  2042. </w:style>
  2043. <w:style w:type="paragraph" w:styleId="a7">
  2044. <w:name w:val="List Paragraph"/>
  2045. <w:basedOn w:val="a"/>
  2046. <w:uiPriority w:val="34"/>
  2047. <w:qFormat/>
  2048. <w:pPr>
  2049. <w:ind w:firstLineChars="200" w:firstLine="420"/>
  2050. </w:pPr>
  2051. </w:style>
  2052. <w:style w:type="character" w:customStyle="1" w:styleId="Char1">
  2053. <w:name w:val="页眉 Char"/>
  2054. <w:basedOn w:val="a0"/>
  2055. <w:link w:val="a5"/>
  2056. <w:uiPriority w:val="99"/>
  2057. <w:qFormat/>
  2058. <w:rPr>
  2059. <w:rFonts w:ascii="Times New Roman" w:eastAsia="宋体" w:hAnsi="Times New Roman" w:cs="Times New Roman"/>
  2060. <w:sz w:val="18"/>
  2061. <w:szCs w:val="18"/>
  2062. </w:rPr>
  2063. </w:style>
  2064. <w:style w:type="character" w:customStyle="1" w:styleId="Char0">
  2065. <w:name w:val="页脚 Char"/>
  2066. <w:basedOn w:val="a0"/>
  2067. <w:link w:val="a4"/>
  2068. <w:uiPriority w:val="99"/>
  2069. <w:qFormat/>
  2070. <w:rPr>
  2071. <w:rFonts w:ascii="Times New Roman" w:eastAsia="宋体" w:hAnsi="Times New Roman" w:cs="Times New Roman"/>
  2072. <w:sz w:val="18"/>
  2073. <w:szCs w:val="18"/>
  2074. </w:rPr>
  2075. </w:style>
  2076. </w:styles>
  2077. </pkg:xmlData>
  2078. </pkg:part>
  2079. <pkg:part pkg:name="/customXml/itemProps1.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.customXmlProperties+xml" pkg:padding="32">
  2080. <pkg:xmlData pkg:originalXmlStandalone="no">
  2081. <ds:datastoreItem ds:itemID="{B1977F7D-205B-4081-913C-38D41E755F92}"
  2082. xmlns:ds="http://schemas.openxmlformats.org/officeDocument/2006/customXml">
  2083. <ds:schemaRefs>
  2084. <ds:schemaRef ds:uri="http://www.wps.cn/officeDocument/2013/wpsCustomData"/>
  2085. </ds:schemaRefs>
  2086. </ds:datastoreItem>
  2087. </pkg:xmlData>
  2088. </pkg:part>
  2089. <pkg:part pkg:name="/customXml/_rels/item1.xml.rels" pkg:contentType="application/vnd.openxmlformats-package.relationships+xml" pkg:padding="256">
  2090. <pkg:xmlData>
  2091. <Relationships
  2092. xmlns="http://schemas.openxmlformats.org/package/2006/relationships">
  2093. <Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/customXmlProps" Target="itemProps1.xml"/>
  2094. </Relationships>
  2095. </pkg:xmlData>
  2096. </pkg:part>
  2097. <pkg:part pkg:name="/docProps/custom.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.custom-properties+xml" pkg:padding="256">
  2098. <pkg:xmlData>
  2099. <Properties
  2100. xmlns="http://schemas.openxmlformats.org/officeDocument/2006/custom-properties"
  2101. xmlns:vt="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes">
  2102. <property fmtid="{D5CDD505-2E9C-101B-9397-08002B2CF9AE}" pid="2" name="KSOProductBuildVer">
  2103. <vt:lpwstr>2052-11.1.0.8612</vt:lpwstr>
  2104. </property>
  2105. </Properties>
  2106. </pkg:xmlData>
  2107. </pkg:part>
  2108. <pkg:part pkg:name="/docProps/core.xml" pkg:contentType="application/vnd.openxmlformats-package.core-properties+xml" pkg:padding="256">
  2109. <pkg:xmlData>
  2110. <cp:coreProperties
  2111. xmlns:cp="http://schemas.openxmlformats.org/package/2006/metadata/core-properties"
  2112. xmlns:dc="http://purl.org/dc/elements/1.1/"
  2113. xmlns:dcterms="http://purl.org/dc/terms/"
  2114. xmlns:dcmitype="http://purl.org/dc/dcmitype/"
  2115. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  2116. <dc:creator>马涛</dc:creator>
  2117. <cp:lastModifiedBy>zhanqiang@qmth.com.cn</cp:lastModifiedBy>
  2118. <cp:revision>2</cp:revision>
  2119. <dcterms:created xsi:type="dcterms:W3CDTF">2019-05-25T08:44:00Z</dcterms:created>
  2120. <dcterms:modified xsi:type="dcterms:W3CDTF">2019-05-25T08:44:00Z</dcterms:modified>
  2121. </cp:coreProperties>
  2122. </pkg:xmlData>
  2123. </pkg:part>
  2124. <pkg:part pkg:name="/customXml/item1.xml" pkg:contentType="application/xml" pkg:padding="32">
  2125. <pkg:xmlData>
  2126. <s:customData
  2127. xmlns="http://www.wps.cn/officeDocument/2013/wpsCustomData"
  2128. xmlns:s="http://www.wps.cn/officeDocument/2013/wpsCustomData">
  2129. <customSectProps>
  2130. <customSectPr/>
  2131. </customSectProps>
  2132. </s:customData>
  2133. </pkg:xmlData>
  2134. </pkg:part>
  2135. <pkg:part pkg:name="/word/fontTable.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml">
  2136. <pkg:xmlData>
  2137. <w:fonts mc:Ignorable="w14 w15"
  2138. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  2139. xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
  2140. xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
  2141. xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
  2142. xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml">
  2143. <w:font w:name="Times New Roman">
  2144. <w:panose1 w:val="02020603050405020304"/>
  2145. <w:charset w:val="00"/>
  2146. <w:family w:val="roman"/>
  2147. <w:pitch w:val="variable"/>
  2148. <w:sig w:usb0="E0002EFF" w:usb1="C000785B" w:usb2="00000009" w:usb3="00000000" w:csb0="000001FF" w:csb1="00000000"/>
  2149. </w:font>
  2150. <w:font w:name="宋体">
  2151. <w:altName w:val="SimSun"/>
  2152. <w:panose1 w:val="02010600030101010101"/>
  2153. <w:charset w:val="86"/>
  2154. <w:family w:val="auto"/>
  2155. <w:pitch w:val="variable"/>
  2156. <w:sig w:usb0="00000003" w:usb1="288F0000" w:usb2="00000016" w:usb3="00000000" w:csb0="00040001" w:csb1="00000000"/>
  2157. </w:font>
  2158. <w:font w:name="黑体">
  2159. <w:altName w:val="SimHei"/>
  2160. <w:panose1 w:val="02010609060101010101"/>
  2161. <w:charset w:val="86"/>
  2162. <w:family w:val="modern"/>
  2163. <w:pitch w:val="fixed"/>
  2164. <w:sig w:usb0="800002BF" w:usb1="38CF7CFA" w:usb2="00000016" w:usb3="00000000" w:csb0="00040001" w:csb1="00000000"/>
  2165. </w:font>
  2166. <w:font w:name="方正书宋简体">
  2167. <w:altName w:val="宋体"/>
  2168. <w:charset w:val="86"/>
  2169. <w:family w:val="auto"/>
  2170. <w:pitch w:val="default"/>
  2171. <w:sig w:usb0="00000000" w:usb1="00000000" w:usb2="00000010" w:usb3="00000000" w:csb0="00040000" w:csb1="00000000"/>
  2172. </w:font>
  2173. <w:font w:name="华文中宋">
  2174. <w:panose1 w:val="02010600040101010101"/>
  2175. <w:charset w:val="86"/>
  2176. <w:family w:val="auto"/>
  2177. <w:pitch w:val="variable"/>
  2178. <w:sig w:usb0="00000287" w:usb1="080F0000" w:usb2="00000010" w:usb3="00000000" w:csb0="0004009F" w:csb1="00000000"/>
  2179. </w:font>
  2180. <w:font w:name="Cambria">
  2181. <w:panose1 w:val="02040503050406030204"/>
  2182. <w:charset w:val="00"/>
  2183. <w:family w:val="roman"/>
  2184. <w:pitch w:val="variable"/>
  2185. <w:sig w:usb0="E00006FF" w:usb1="420024FF" w:usb2="02000000" w:usb3="00000000" w:csb0="0000019F" w:csb1="00000000"/>
  2186. </w:font>
  2187. <w:font w:name="Calibri">
  2188. <w:panose1 w:val="020F0502020204030204"/>
  2189. <w:charset w:val="00"/>
  2190. <w:family w:val="swiss"/>
  2191. <w:pitch w:val="variable"/>
  2192. <w:sig w:usb0="E0002AFF" w:usb1="C000247B" w:usb2="00000009" w:usb3="00000000" w:csb0="000001FF" w:csb1="00000000"/>
  2193. </w:font>
  2194. </w:fonts>
  2195. </pkg:xmlData>
  2196. </pkg:part>
  2197. <pkg:part pkg:name="/word/webSettings.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml">
  2198. <pkg:xmlData>
  2199. <w:webSettings mc:Ignorable="w14 w15"
  2200. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  2201. xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
  2202. xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
  2203. xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
  2204. xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"/>
  2205. </pkg:xmlData>
  2206. </pkg:part>
  2207. <pkg:part pkg:name="/docProps/app.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.extended-properties+xml" pkg:padding="256">
  2208. <pkg:xmlData>
  2209. <Properties
  2210. xmlns="http://schemas.openxmlformats.org/officeDocument/2006/extended-properties"
  2211. xmlns:vt="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes">
  2212. <Template>Normal.dotm</Template>
  2213. <TotalTime>0</TotalTime>
  2214. <Pages>2</Pages>
  2215. <Words>132</Words>
  2216. <Characters>753</Characters>
  2217. <Application>Microsoft Office Word</Application>
  2218. <DocSecurity>0</DocSecurity>
  2219. <Lines>6</Lines>
  2220. <Paragraphs>1</Paragraphs>
  2221. <ScaleCrop>false</ScaleCrop>
  2222. <Company/>
  2223. <LinksUpToDate>false</LinksUpToDate>
  2224. <CharactersWithSpaces>884</CharactersWithSpaces>
  2225. <SharedDoc>false</SharedDoc>
  2226. <HyperlinksChanged>false</HyperlinksChanged>
  2227. <AppVersion>15.0000</AppVersion>
  2228. </Properties>
  2229. </pkg:xmlData>
  2230. </pkg:part>
  2231. </pkg:package>