123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938 |
- <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
- <?mso-application progid="Word.Document"?>
- <pkg:package
- xmlns:pkg="http://schemas.microsoft.com/office/2006/xmlPackage">
- <pkg:part pkg:name="/_rels/.rels" pkg:contentType="application/vnd.openxmlformats-package.relationships+xml">
- <pkg:xmlData>
- <Relationships
- xmlns="http://schemas.openxmlformats.org/package/2006/relationships">
- <Relationship Id="rId4" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument" Target="word/document.xml"/>
- <Relationship Id="rId2" Type="http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties" Target="docProps/core.xml"/>
- <Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties" Target="docProps/app.xml"/>
- <Relationship Id="rId3" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties" Target="docProps/custom.xml"/>
- </Relationships>
- </pkg:xmlData>
- </pkg:part>
- <pkg:part pkg:name="/word/_rels/document.xml.rels" pkg:contentType="application/vnd.openxmlformats-package.relationships+xml">
- <pkg:xmlData>
- <Relationships
- xmlns="http://schemas.openxmlformats.org/package/2006/relationships">
- <Relationship Id="rId6" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/fontTable" Target="fontTable.xml"/>
- <Relationship Id="rId5" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme" Target="theme/theme1.xml"/>
- <Relationship Id="rId4" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/endnotes" Target="endnotes.xml"/>
- <Relationship Id="rId3" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/footnotes" Target="footnotes.xml"/>
- <Relationship Id="rId2" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/settings" Target="settings.xml"/>
- <Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles" Target="styles.xml"/>
- </Relationships>
- </pkg:xmlData>
- </pkg:part>
- <pkg:part pkg:name="/word/document.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml">
- <pkg:xmlData>
- <w:document
- xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:o="urn:schemas-microsoft-com:office:office"
- xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
- xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math"
- xmlns:v="urn:schemas-microsoft-com:vml"
- xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing"
- xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing"
- xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
- xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
- xmlns:w10="urn:schemas-microsoft-com:office:word"
- xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
- xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup"
- xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk"
- xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml"
- xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape"
- xmlns:wpsCustomData="http://www.wps.cn/officeDocument/2013/wpsCustomData" mc:Ignorable="w14 w15 wp14">
- <w:body>
- <w:p>
- <w:pPr>
- <w:rPr>
- <w:rFonts w:hint="default"/>
- </w:rPr>
- </w:pPr>
- <w:r>
- <w:rPr>
- <w:rFonts w:hint="default"/>
- </w:rPr>
- <w:t>一、基本信息(在合适的选择项前打“√”)</w:t>
- </w:r>
- </w:p>
- <w:tbl>
- <w:tblPr>
- <w:tblStyle w:val="3"/>
- <w:tblW w:w="5000" w:type="pct"/>
- <w:jc w:val="center"/>
- <w:tblBorders>
- <w:top w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:left w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:bottom w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:right w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:insideH w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:insideV w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- </w:tblBorders>
- <w:tblLayout w:type="autofit"/>
- <w:tblCellMar>
- <w:top w:w="0" w:type="dxa"/>
- <w:left w:w="108" w:type="dxa"/>
- <w:bottom w:w="0" w:type="dxa"/>
- <w:right w:w="108" w:type="dxa"/>
- </w:tblCellMar>
- </w:tblPr>
- <w:tblGrid>
- <w:gridCol w:w="1108"/>
- <w:gridCol w:w="1184"/>
- <w:gridCol w:w="3073"/>
- <w:gridCol w:w="3157"/>
- </w:tblGrid>
- <w:tr>
- <w:tblPrEx>
- <w:tblBorders>
- <w:top w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:left w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:bottom w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:right w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:insideH w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:insideV w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- </w:tblBorders>
- <w:tblCellMar>
- <w:top w:w="0" w:type="dxa"/>
- <w:left w:w="108" w:type="dxa"/>
- <w:bottom w:w="0" w:type="dxa"/>
- <w:right w:w="108" w:type="dxa"/>
- </w:tblCellMar>
- </w:tblPrEx>
- <w:trPr>
- <w:jc w:val="center"/>
- </w:trPr>
- <w:tc>
- <w:tcPr>
- <w:tcW w:w="9962" w:type="dxa"/>
- <w:gridSpan w:val="4"/>
- <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
- <w:noWrap w:val="0"/>
- <w:vAlign w:val="center"/>
- </w:tcPr>
- <w:p>
- <w:pPr>
- <w:rPr>
- <w:rFonts w:hint="default" w:eastAsia="仿宋"/>
- <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
- </w:rPr>
- </w:pPr>
- <w:r>
- <w:rPr>
- <w:rFonts w:hint="default"/>
- </w:rPr>
- <w:t>项目名称(中文):</w:t>
- </w:r>
- <w:r>
- <w:rPr>
- <w:rFonts w:hint="eastAsia"/>
- <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
- </w:rPr>
- <w:t>${projectName}</w:t>
- </w:r>
- </w:p>
- <w:p>
- <w:pPr>
- <w:rPr>
- <w:rFonts w:hint="default" w:eastAsia="仿宋"/>
- <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
- </w:rPr>
- </w:pPr>
- <w:r>
- <w:rPr>
- <w:rFonts w:hint="default"/>
- </w:rPr>
- <w:t>项目名称(英文):</w:t>
- </w:r>
- <w:r>
- <w:rPr>
- <w:rFonts w:hint="eastAsia"/>
- <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
- </w:rPr>
- <w:t>${projectNameEn}</w:t>
- </w:r>
- </w:p>
- </w:tc>
- </w:tr>
- <w:tr>
- <w:tblPrEx>
- <w:tblBorders>
- <w:top w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:left w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:bottom w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:right w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:insideH w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:insideV w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- </w:tblBorders>
- <w:tblCellMar>
- <w:top w:w="0" w:type="dxa"/>
- <w:left w:w="108" w:type="dxa"/>
- <w:bottom w:w="0" w:type="dxa"/>
- <w:right w:w="108" w:type="dxa"/>
- </w:tblCellMar>
- </w:tblPrEx>
- <w:trPr>
- <w:jc w:val="center"/>
- </w:trPr>
- <w:tc>
- <w:tcPr>
- <w:tcW w:w="9962" w:type="dxa"/>
- <w:gridSpan w:val="4"/>
- <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
- <w:noWrap w:val="0"/>
- <w:vAlign w:val="top"/>
- </w:tcPr>
- <w:p>
- <w:pPr>
- <w:rPr>
- <w:rFonts w:hint="default" w:eastAsia="仿宋"/>
- <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
- </w:rPr>
- </w:pPr>
- <w:r>
- <w:rPr>
- <w:rFonts w:hint="default"/>
- </w:rPr>
- <w:t xml:space="preserve">项目类型: </w:t>
- </w:r>
- <w:r>
- <w:rPr>
- <w:rFonts w:hint="eastAsia"/>
- <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
- </w:rPr>
- <w:t>${type}</w:t>
- </w:r>
- </w:p>
- </w:tc>
- </w:tr>
- <w:tr>
- <w:tblPrEx>
- <w:tblBorders>
- <w:top w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:left w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:bottom w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:right w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:insideH w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:insideV w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- </w:tblBorders>
- <w:tblCellMar>
- <w:top w:w="0" w:type="dxa"/>
- <w:left w:w="108" w:type="dxa"/>
- <w:bottom w:w="0" w:type="dxa"/>
- <w:right w:w="108" w:type="dxa"/>
- </w:tblCellMar>
- </w:tblPrEx>
- <w:trPr>
- <w:trHeight w:val="362" w:hRule="atLeast"/>
- <w:jc w:val="center"/>
- </w:trPr>
- <w:tc>
- <w:tcPr>
- <w:tcW w:w="9962" w:type="dxa"/>
- <w:gridSpan w:val="4"/>
- <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
- <w:noWrap w:val="0"/>
- <w:vAlign w:val="center"/>
- </w:tcPr>
- <w:p>
- <w:pPr>
- <w:rPr>
- <w:rFonts w:hint="default" w:eastAsia="仿宋"/>
- <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
- </w:rPr>
- </w:pPr>
- <w:r>
- <w:rPr>
- <w:rFonts w:hint="default"/>
- </w:rPr>
- <w:t xml:space="preserve">项目来源: </w:t>
- </w:r>
- <w:r>
- <w:rPr>
- <w:rFonts w:hint="eastAsia"/>
- <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
- </w:rPr>
- <w:t>${source}</w:t>
- </w:r>
- </w:p>
- </w:tc>
- </w:tr>
- <w:tr>
- <w:tblPrEx>
- <w:tblBorders>
- <w:top w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:left w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:bottom w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:right w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:insideH w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:insideV w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- </w:tblBorders>
- <w:tblCellMar>
- <w:top w:w="0" w:type="dxa"/>
- <w:left w:w="108" w:type="dxa"/>
- <w:bottom w:w="0" w:type="dxa"/>
- <w:right w:w="108" w:type="dxa"/>
- </w:tblCellMar>
- </w:tblPrEx>
- <w:trPr>
- <w:jc w:val="center"/>
- </w:trPr>
- <w:tc>
- <w:tcPr>
- <w:tcW w:w="1351" w:type="dxa"/>
- <w:vMerge w:val="restart"/>
- <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
- <w:noWrap w:val="0"/>
- <w:vAlign w:val="center"/>
- </w:tcPr>
- <w:p>
- <w:pPr>
- <w:rPr>
- <w:rFonts w:hint="default"/>
- </w:rPr>
- </w:pPr>
- <w:r>
- <w:rPr>
- <w:rFonts w:hint="default"/>
- </w:rPr>
- <w:t>项目</w:t>
- </w:r>
- </w:p>
- <w:p>
- <w:pPr>
- <w:rPr/>
- </w:pPr>
- <w:r>
- <w:rPr>
- <w:rFonts w:hint="default"/>
- </w:rPr>
- <w:t>负责人</w:t>
- </w:r>
- </w:p>
- </w:tc>
- <w:tc>
- <w:tcPr>
- <w:tcW w:w="1282" w:type="dxa"/>
- <w:vMerge w:val="restart"/>
- <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
- <w:noWrap w:val="0"/>
- <w:vAlign w:val="center"/>
- </w:tcPr>
- <w:p>
- <w:pPr>
- <w:rPr>
- <w:rFonts w:hint="default" w:eastAsia="仿宋"/>
- <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
- </w:rPr>
- </w:pPr>
- <w:r>
- <w:rPr>
- <w:rFonts w:hint="eastAsia"/>
- <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
- </w:rPr>
- <w:t>${pl}</w:t>
- </w:r>
- </w:p>
- </w:tc>
- <w:tc>
- <w:tcPr>
- <w:tcW w:w="3557" w:type="dxa"/>
- <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
- <w:noWrap w:val="0"/>
- <w:vAlign w:val="top"/>
- </w:tcPr>
- <w:p>
- <w:pPr>
- <w:rPr>
- <w:rFonts w:hint="default" w:eastAsia="仿宋"/>
- <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
- </w:rPr>
- </w:pPr>
- <w:r>
- <w:rPr>
- <w:rFonts w:hint="default"/>
- </w:rPr>
- <w:t xml:space="preserve">职称/职务: </w:t>
- </w:r>
- <w:r>
- <w:rPr>
- <w:rFonts w:hint="eastAsia"/>
- <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
- </w:rPr>
- <w:t>${plDuty}</w:t>
- </w:r>
- </w:p>
- </w:tc>
- <w:tc>
- <w:tcPr>
- <w:tcW w:w="3772" w:type="dxa"/>
- <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
- <w:noWrap w:val="0"/>
- <w:vAlign w:val="top"/>
- </w:tcPr>
- <w:p>
- <w:pPr>
- <w:rPr>
- <w:rFonts w:hint="default" w:eastAsia="仿宋"/>
- <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
- </w:rPr>
- </w:pPr>
- <w:r>
- <w:t>Email:</w:t>
- </w:r>
- <w:r>
- <w:rPr>
- <w:rFonts w:hint="default"/>
- </w:rPr>
- <w:t xml:space="preserve"></w:t>
- </w:r>
- <w:r>
- <w:rPr>
- <w:rFonts w:hint="eastAsia"/>
- <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
- </w:rPr>
- <w:t>${plEmail}</w:t>
- </w:r>
- </w:p>
- </w:tc>
- </w:tr>
- <w:tr>
- <w:tblPrEx>
- <w:tblBorders>
- <w:top w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:left w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:bottom w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:right w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:insideH w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:insideV w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- </w:tblBorders>
- <w:tblCellMar>
- <w:top w:w="0" w:type="dxa"/>
- <w:left w:w="108" w:type="dxa"/>
- <w:bottom w:w="0" w:type="dxa"/>
- <w:right w:w="108" w:type="dxa"/>
- </w:tblCellMar>
- </w:tblPrEx>
- <w:trPr>
- <w:jc w:val="center"/>
- </w:trPr>
- <w:tc>
- <w:tcPr>
- <w:tcW w:w="1351" w:type="dxa"/>
- <w:vMerge w:val="continue"/>
- <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
- <w:noWrap w:val="0"/>
- <w:vAlign w:val="center"/>
- </w:tcPr>
- <w:p>
- <w:pPr>
- <w:rPr/>
- </w:pPr>
- </w:p>
- </w:tc>
- <w:tc>
- <w:tcPr>
- <w:tcW w:w="1282" w:type="dxa"/>
- <w:vMerge w:val="continue"/>
- <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
- <w:noWrap w:val="0"/>
- <w:vAlign w:val="center"/>
- </w:tcPr>
- <w:p>
- <w:pPr>
- <w:rPr/>
- </w:pPr>
- </w:p>
- </w:tc>
- <w:tc>
- <w:tcPr>
- <w:tcW w:w="7329" w:type="dxa"/>
- <w:gridSpan w:val="2"/>
- <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
- <w:noWrap w:val="0"/>
- <w:vAlign w:val="top"/>
- </w:tcPr>
- <w:p>
- <w:pPr>
- <w:rPr>
- <w:rFonts w:hint="default" w:eastAsia="仿宋"/>
- <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
- </w:rPr>
- </w:pPr>
- <w:r>
- <w:rPr>
- <w:rFonts w:hint="default"/>
- </w:rPr>
- <w:t>办公(实验)室电话:</w:t>
- </w:r>
- <w:r>
- <w:rPr>
- <w:rFonts w:hint="eastAsia"/>
- <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
- </w:rPr>
- <w:t>${plPhone}</w:t>
- </w:r>
- </w:p>
- </w:tc>
- </w:tr>
- <w:tr>
- <w:tblPrEx>
- <w:tblBorders>
- <w:top w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:left w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:bottom w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:right w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:insideH w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:insideV w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- </w:tblBorders>
- <w:tblCellMar>
- <w:top w:w="0" w:type="dxa"/>
- <w:left w:w="108" w:type="dxa"/>
- <w:bottom w:w="0" w:type="dxa"/>
- <w:right w:w="108" w:type="dxa"/>
- </w:tblCellMar>
- </w:tblPrEx>
- <w:trPr>
- <w:jc w:val="center"/>
- </w:trPr>
- <w:tc>
- <w:tcPr>
- <w:tcW w:w="1351" w:type="dxa"/>
- <w:vMerge w:val="continue"/>
- <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
- <w:noWrap w:val="0"/>
- <w:vAlign w:val="center"/>
- </w:tcPr>
- <w:p>
- <w:pPr>
- <w:rPr/>
- </w:pPr>
- </w:p>
- </w:tc>
- <w:tc>
- <w:tcPr>
- <w:tcW w:w="1282" w:type="dxa"/>
- <w:vMerge w:val="continue"/>
- <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
- <w:noWrap w:val="0"/>
- <w:vAlign w:val="center"/>
- </w:tcPr>
- <w:p>
- <w:pPr>
- <w:rPr/>
- </w:pPr>
- </w:p>
- </w:tc>
- <w:tc>
- <w:tcPr>
- <w:tcW w:w="7329" w:type="dxa"/>
- <w:gridSpan w:val="2"/>
- <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
- <w:noWrap w:val="0"/>
- <w:vAlign w:val="top"/>
- </w:tcPr>
- <w:p>
- <w:pPr>
- <w:rPr>
- <w:rFonts w:hint="default" w:eastAsia="仿宋"/>
- <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
- </w:rPr>
- </w:pPr>
- <w:r>
- <w:rPr>
- <w:rFonts w:hint="default"/>
- </w:rPr>
- <w:t>实验室地址:</w:t>
- </w:r>
- <w:r>
- <w:rPr>
- <w:rFonts w:hint="eastAsia"/>
- <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
- </w:rPr>
- <w:t>${addr}</w:t>
- </w:r>
- </w:p>
- </w:tc>
- </w:tr>
- <w:tr>
- <w:tblPrEx>
- <w:tblBorders>
- <w:top w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:left w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:bottom w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:right w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:insideH w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:insideV w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- </w:tblBorders>
- <w:tblCellMar>
- <w:top w:w="0" w:type="dxa"/>
- <w:left w:w="108" w:type="dxa"/>
- <w:bottom w:w="0" w:type="dxa"/>
- <w:right w:w="108" w:type="dxa"/>
- </w:tblCellMar>
- </w:tblPrEx>
- <w:trPr>
- <w:jc w:val="center"/>
- </w:trPr>
- <w:tc>
- <w:tcPr>
- <w:tcW w:w="1351" w:type="dxa"/>
- <w:vMerge w:val="restart"/>
- <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
- <w:noWrap w:val="0"/>
- <w:vAlign w:val="center"/>
- </w:tcPr>
- <w:p>
- <w:pPr>
- <w:rPr/>
- </w:pPr>
- <w:r>
- <w:rPr>
- <w:rFonts w:hint="default"/>
- </w:rPr>
- <w:t>联系人</w:t>
- </w:r>
- </w:p>
- </w:tc>
- <w:tc>
- <w:tcPr>
- <w:tcW w:w="1282" w:type="dxa"/>
- <w:vMerge w:val="restart"/>
- <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
- <w:noWrap w:val="0"/>
- <w:vAlign w:val="center"/>
- </w:tcPr>
- <w:p>
- <w:pPr>
- <w:rPr>
- <w:rFonts w:hint="default" w:eastAsia="仿宋"/>
- <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
- </w:rPr>
- </w:pPr>
- <w:r>
- <w:rPr>
- <w:rFonts w:hint="eastAsia"/>
- <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
- </w:rPr>
- <w:t>${lxr}</w:t>
- </w:r>
- </w:p>
- </w:tc>
- <w:tc>
- <w:tcPr>
- <w:tcW w:w="3557" w:type="dxa"/>
- <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
- <w:noWrap w:val="0"/>
- <w:vAlign w:val="top"/>
- </w:tcPr>
- <w:p>
- <w:pPr>
- <w:rPr>
- <w:rFonts w:hint="default" w:eastAsia="仿宋"/>
- <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
- </w:rPr>
- </w:pPr>
- <w:r>
- <w:rPr>
- <w:rFonts w:hint="default"/>
- </w:rPr>
- <w:t>职称/职务:</w:t>
- </w:r>
- <w:r>
- <w:rPr>
- <w:rFonts w:hint="eastAsia"/>
- <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
- </w:rPr>
- <w:t>${lxrDuty}</w:t>
- </w:r>
- </w:p>
- </w:tc>
- <w:tc>
- <w:tcPr>
- <w:tcW w:w="3772" w:type="dxa"/>
- <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
- <w:noWrap w:val="0"/>
- <w:vAlign w:val="top"/>
- </w:tcPr>
- <w:p>
- <w:pPr>
- <w:rPr>
- <w:rFonts w:hint="default" w:eastAsia="仿宋"/>
- <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
- </w:rPr>
- </w:pPr>
- <w:r>
- <w:t>Email:</w:t>
- </w:r>
- <w:r>
- <w:rPr>
- <w:rFonts w:hint="eastAsia"/>
- <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
- </w:rPr>
- <w:t>${lxrEmail}</w:t>
- </w:r>
- </w:p>
- </w:tc>
- </w:tr>
- <w:tr>
- <w:tblPrEx>
- <w:tblBorders>
- <w:top w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:left w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:bottom w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:right w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:insideH w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:insideV w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- </w:tblBorders>
- <w:tblCellMar>
- <w:top w:w="0" w:type="dxa"/>
- <w:left w:w="108" w:type="dxa"/>
- <w:bottom w:w="0" w:type="dxa"/>
- <w:right w:w="108" w:type="dxa"/>
- </w:tblCellMar>
- </w:tblPrEx>
- <w:trPr>
- <w:jc w:val="center"/>
- </w:trPr>
- <w:tc>
- <w:tcPr>
- <w:tcW w:w="1351" w:type="dxa"/>
- <w:vMerge w:val="continue"/>
- <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
- <w:noWrap w:val="0"/>
- <w:vAlign w:val="top"/>
- </w:tcPr>
- <w:p>
- <w:pPr>
- <w:rPr/>
- </w:pPr>
- </w:p>
- </w:tc>
- <w:tc>
- <w:tcPr>
- <w:tcW w:w="1282" w:type="dxa"/>
- <w:vMerge w:val="continue"/>
- <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
- <w:noWrap w:val="0"/>
- <w:vAlign w:val="top"/>
- </w:tcPr>
- <w:p>
- <w:pPr>
- <w:rPr/>
- </w:pPr>
- </w:p>
- </w:tc>
- <w:tc>
- <w:tcPr>
- <w:tcW w:w="7329" w:type="dxa"/>
- <w:gridSpan w:val="2"/>
- <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
- <w:noWrap w:val="0"/>
- <w:vAlign w:val="top"/>
- </w:tcPr>
- <w:p>
- <w:pPr>
- <w:rPr>
- <w:rFonts w:hint="default" w:eastAsia="仿宋"/>
- <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
- </w:rPr>
- </w:pPr>
- <w:r>
- <w:rPr>
- <w:rFonts w:hint="default"/>
- </w:rPr>
- <w:t>电话:</w:t>
- </w:r>
- <w:r>
- <w:rPr>
- <w:rFonts w:hint="eastAsia"/>
- <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
- </w:rPr>
- <w:t>${lxrPhone}</w:t>
- </w:r>
- </w:p>
- </w:tc>
- </w:tr>
- <w:tr>
- <w:tblPrEx>
- <w:tblBorders>
- <w:top w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:left w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:bottom w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:right w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:insideH w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:insideV w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- </w:tblBorders>
- <w:tblCellMar>
- <w:top w:w="0" w:type="dxa"/>
- <w:left w:w="108" w:type="dxa"/>
- <w:bottom w:w="0" w:type="dxa"/>
- <w:right w:w="108" w:type="dxa"/>
- </w:tblCellMar>
- </w:tblPrEx>
- <w:trPr>
- <w:jc w:val="center"/>
- </w:trPr>
- <w:tc>
- <w:tcPr>
- <w:tcW w:w="2633" w:type="dxa"/>
- <w:gridSpan w:val="2"/>
- <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
- <w:noWrap w:val="0"/>
- <w:vAlign w:val="center"/>
- </w:tcPr>
- <w:p>
- <w:pPr>
- <w:rPr/>
- </w:pPr>
- <w:r>
- <w:rPr>
- <w:rFonts w:hint="default"/>
- </w:rPr>
- <w:t>拟申请的有效期限</w:t>
- </w:r>
- </w:p>
- </w:tc>
- <w:tc>
- <w:tcPr>
- <w:tcW w:w="7329" w:type="dxa"/>
- <w:gridSpan w:val="2"/>
- <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
- <w:noWrap w:val="0"/>
- <w:vAlign w:val="top"/>
- </w:tcPr>
- <w:p>
- <w:pPr>
- <w:rPr>
- <w:rFonts w:hint="default" w:eastAsia="仿宋"/>
- <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
- </w:rPr>
- </w:pPr>
- <w:r>
- <w:rPr>
- <w:rFonts w:hint="default"/>
- </w:rPr>
- <w:t xml:space="preserve"></w:t>
- </w:r>
- <w:r>
- <w:rPr>
- <w:rFonts w:hint="eastAsia"/>
- <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
- </w:rPr>
- <w:t>${projectDate}</w:t>
- </w:r>
- </w:p>
- </w:tc>
- </w:tr>
- </w:tbl>
- <w:p/>
- <w:p/>
- <w:p>
- <w:pPr>
- <w:rPr/>
- </w:pPr>
- <w:r>
- <w:rPr>
- <w:rFonts w:hint="default"/>
- </w:rPr>
- <w:t>二、实验人员信息</w:t>
- </w:r>
- </w:p>
- <w:p>
- <w:pPr>
- <w:rPr/>
- </w:pPr>
- <w:r>
- <w:rPr>
- <w:rFonts w:hint="default"/>
- </w:rPr>
- <w:t>所列实验人员必须是经过培训的、具有资质才能开展动物实验工作</w:t>
- </w:r>
- </w:p>
- <w:tbl>
- <w:tblPr>
- <w:tblStyle w:val="3"/>
- <w:tblW w:w="4997" w:type="pct"/>
- <w:tblInd w:w="0" w:type="dxa"/>
- <w:tblBorders>
- <w:top w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:left w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:bottom w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:right w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:insideH w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:insideV w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- </w:tblBorders>
- <w:tblLayout w:type="autofit"/>
- <w:tblCellMar>
- <w:top w:w="0" w:type="dxa"/>
- <w:left w:w="108" w:type="dxa"/>
- <w:bottom w:w="0" w:type="dxa"/>
- <w:right w:w="108" w:type="dxa"/>
- </w:tblCellMar>
- </w:tblPr>
- <w:tblGrid>
- <w:gridCol w:w="1596"/>
- <w:gridCol w:w="2052"/>
- <w:gridCol w:w="4869"/>
- </w:tblGrid>
- <w:tr>
- <w:tblPrEx>
- <w:tblBorders>
- <w:top w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:left w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:bottom w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:right w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:insideH w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:insideV w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- </w:tblBorders>
- <w:tblCellMar>
- <w:top w:w="0" w:type="dxa"/>
- <w:left w:w="108" w:type="dxa"/>
- <w:bottom w:w="0" w:type="dxa"/>
- <w:right w:w="108" w:type="dxa"/>
- </w:tblCellMar>
- </w:tblPrEx>
- <w:trPr>
- <w:trHeight w:val="400" w:hRule="atLeast"/>
- </w:trPr>
- <w:tc>
- <w:tcPr>
- <w:tcW w:w="1822" w:type="dxa"/>
- <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
- <w:noWrap w:val="0"/>
- <w:vAlign w:val="center"/>
- </w:tcPr>
- <w:p>
- <w:pPr>
- <w:rPr/>
- </w:pPr>
- <w:r>
- <w:rPr>
- <w:rFonts w:hint="default"/>
- </w:rPr>
- <w:t>姓名</w:t>
- </w:r>
- </w:p>
- </w:tc>
- <w:tc>
- <w:tcPr>
- <w:tcW w:w="2370" w:type="dxa"/>
- <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
- <w:noWrap w:val="0"/>
- <w:vAlign w:val="center"/>
- </w:tcPr>
- <w:p>
- <w:pPr>
- <w:rPr>
- <w:rFonts w:hint="default"/>
- </w:rPr>
- </w:pPr>
- <w:r>
- <w:rPr>
- <w:rFonts w:hint="default"/>
- </w:rPr>
- <w:t>资质证书编号</w:t>
- </w:r>
- </w:p>
- </w:tc>
- <w:tc>
- <w:tcPr>
- <w:tcW w:w="5764" w:type="dxa"/>
- <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
- <w:noWrap w:val="0"/>
- <w:vAlign w:val="center"/>
- </w:tcPr>
- <w:p>
- <w:pPr>
- <w:rPr/>
- </w:pPr>
- <w:r>
- <w:rPr>
- <w:rFonts w:hint="default"/>
- </w:rPr>
- <w:t>在本项目中的职责</w:t>
- </w:r>
- </w:p>
- </w:tc>
- </w:tr>
- <#list syy as item>
- <w:tr>
- <w:tblPrEx>
- <w:tblBorders>
- <w:top w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:left w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:bottom w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:right w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:insideH w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- <w:insideV w:val="single" w:color="auto" w:sz="4" w:space="0"/>
- </w:tblBorders>
- <w:tblCellMar>
- <w:top w:w="0" w:type="dxa"/>
- <w:left w:w="108" w:type="dxa"/>
- <w:bottom w:w="0" w:type="dxa"/>
- <w:right w:w="108" w:type="dxa"/>
- </w:tblCellMar>
- </w:tblPrEx>
- <w:trPr>
- <w:trHeight w:val="504" w:hRule="atLeast"/>
- </w:trPr>
- <w:tc>
- <w:tcPr>
- <w:tcW w:w="1822" w:type="dxa"/>
- <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
- <w:noWrap w:val="0"/>
- <w:vAlign w:val="top"/>
- </w:tcPr>
- <w:p>
- <w:pPr>
- <w:rPr/>
- </w:pPr>
- <w:r>
- <w:rPr>
- <w:rFonts w:hint="default" w:ascii="宋体" w:hAnsi="宋体" w:eastAsia="仿宋" w:cs="宋体"/>
- <w:color w:val="000000"/>
- <w:szCs w:val="20"/>
- <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
- </w:rPr>
- <w:t>${item.username}</w:t>
- </w:r>
- </w:p>
- </w:tc>
- <w:tc>
- <w:tcPr>
- <w:tcW w:w="2370" w:type="dxa"/>
- <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
- <w:noWrap w:val="0"/>
- <w:vAlign w:val="top"/>
- </w:tcPr>
- <w:p>
- <w:pPr>
- <w:rPr/>
- </w:pPr>
- <w:r>
- <w:rPr>
- <w:rFonts w:hint="default" w:ascii="宋体" w:hAnsi="宋体" w:eastAsia="仿宋" w:cs="宋体"/>
- <w:color w:val="000000"/>
- <w:szCs w:val="20"/>
- <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
- </w:rPr>
- <w:t>${item.certNo}</w:t>
- </w:r>
- </w:p>
- </w:tc>
- <w:tc>
- <w:tcPr>
- <w:tcW w:w="5764" w:type="dxa"/>
- <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
- <w:noWrap w:val="0"/>
- <w:vAlign w:val="top"/>
- </w:tcPr>
- <w:p>
- <w:pPr>
- <w:rPr/>
- </w:pPr>
- <w:r>
- <w:rPr>
- <w:rFonts w:hint="default" w:ascii="宋体" w:hAnsi="宋体" w:eastAsia="仿宋" w:cs="宋体"/>
- <w:color w:val="000000"/>
- <w:szCs w:val="20"/>
- <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
- </w:rPr>
- <w:t>${item.duty}</w:t>
- </w:r>
- </w:p>
- </w:tc>
- </w:tr>
- </#list>
- </w:tbl>
- <w:p/>
- <w:sectPr>
- <w:pgSz w:w="11906" w:h="16838"/>
- <w:pgMar w:top="1440" w:right="1800" w:bottom="1440" w:left="1800" w:header="851" w:footer="992" w:gutter="0"/>
- <w:cols w:space="425" w:num="1"/>
- <w:docGrid w:type="lines" w:linePitch="312" w:charSpace="0"/>
- </w:sectPr>
- </w:body>
- </w:document>
- </pkg:xmlData>
- </pkg:part>
- <pkg:part pkg:name="/docProps/app.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.extended-properties+xml">
- <pkg:xmlData>
- <Properties
- xmlns="http://schemas.openxmlformats.org/officeDocument/2006/extended-properties"
- xmlns:vt="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes">
- <Template>Normal.dotm</Template>
- <Pages>1</Pages>
- <Words>0</Words>
- <Characters>0</Characters>
- <Lines>0</Lines>
- <Paragraphs>0</Paragraphs>
- <TotalTime>2</TotalTime>
- <ScaleCrop>false</ScaleCrop>
- <LinksUpToDate>false</LinksUpToDate>
- <CharactersWithSpaces>0</CharactersWithSpaces>
- <Application>WPS Office_12.1.0.16120_F1E327BC-269C-435d-A152-05C5408002CA</Application>
- <DocSecurity>0</DocSecurity>
- </Properties>
- </pkg:xmlData>
- </pkg:part>
- <pkg:part pkg:name="/docProps/core.xml" pkg:contentType="application/vnd.openxmlformats-package.core-properties+xml">
- <pkg:xmlData>
- <cp:coreProperties
- xmlns:cp="http://schemas.openxmlformats.org/package/2006/metadata/core-properties"
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:dcterms="http://purl.org/dc/terms/"
- xmlns:dcmitype="http://purl.org/dc/dcmitype/"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
- <dcterms:created xsi:type="dcterms:W3CDTF">2024-01-08T02:23:35Z</dcterms:created>
- <dc:creator>SY-0001</dc:creator>
- <cp:lastModifiedBy>樱九</cp:lastModifiedBy>
- <dcterms:modified xsi:type="dcterms:W3CDTF">2024-01-08T02:26:48Z</dcterms:modified>
- </cp:coreProperties>
- </pkg:xmlData>
- </pkg:part>
- <pkg:part pkg:name="/docProps/custom.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.custom-properties+xml">
- <pkg:xmlData>
- <Properties
- xmlns="http://schemas.openxmlformats.org/officeDocument/2006/custom-properties"
- xmlns:vt="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes">
- <property fmtid="{D5CDD505-2E9C-101B-9397-08002B2CF9AE}" pid="2" name="KSOProductBuildVer">
- <vt:lpwstr>2052-12.1.0.16120</vt:lpwstr>
- </property>
- <property fmtid="{D5CDD505-2E9C-101B-9397-08002B2CF9AE}" pid="3" name="ICV">
- <vt:lpwstr>CA3ADD0227CE494483383BB43123B202_13</vt:lpwstr>
- </property>
- </Properties>
- </pkg:xmlData>
- </pkg:part>
- <pkg:part pkg:name="/word/endnotes.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml">
- <pkg:xmlData>
- <w:endnotes
- xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:o="urn:schemas-microsoft-com:office:office"
- xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
- xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math"
- xmlns:v="urn:schemas-microsoft-com:vml"
- xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing"
- xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing"
- xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
- xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
- xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
- xmlns:w10="urn:schemas-microsoft-com:office:word"
- xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup"
- xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk"
- xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml"
- xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape"
- xmlns:wpsCustomData="http://www.wps.cn/officeDocument/2013/wpsCustomData" mc:Ignorable="w14 w15 wp14">
- <w:endnote w:type="separator" w:id="0">
- <w:p>
- <w:pPr>
- <w:spacing w:line="240" w:lineRule="auto"/>
- </w:pPr>
- <w:r>
- <w:separator/>
- </w:r>
- </w:p>
- </w:endnote>
- <w:endnote w:type="continuationSeparator" w:id="1">
- <w:p>
- <w:pPr>
- <w:spacing w:line="240" w:lineRule="auto"/>
- </w:pPr>
- <w:r>
- <w:continuationSeparator/>
- </w:r>
- </w:p>
- </w:endnote>
- </w:endnotes>
- </pkg:xmlData>
- </pkg:part>
- <pkg:part pkg:name="/word/fontTable.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml">
- <pkg:xmlData>
- <w:fonts
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
- xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
- xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" mc:Ignorable="w14">
- <w:font w:name="Times New Roman">
- <w:panose1 w:val="02020603050405020304"/>
- <w:charset w:val="00"/>
- <w:family w:val="roman"/>
- <w:pitch w:val="variable"/>
- <w:sig w:usb0="20007A87" w:usb1="80000000" w:usb2="00000008" w:usb3="00000000" w:csb0="000001FF" w:csb1="00000000"/>
- </w:font>
- <w:font w:name="宋体">
- <w:panose1 w:val="02010600030101010101"/>
- <w:charset w:val="86"/>
- <w:family w:val="auto"/>
- <w:pitch w:val="default"/>
- <w:sig w:usb0="00000203" w:usb1="288F0000" w:usb2="00000006" w:usb3="00000000" w:csb0="00040001" w:csb1="00000000"/>
- </w:font>
- <w:font w:name="Wingdings">
- <w:panose1 w:val="05000000000000000000"/>
- <w:charset w:val="02"/>
- <w:family w:val="auto"/>
- <w:pitch w:val="default"/>
- <w:sig w:usb0="00000000" w:usb1="00000000" w:usb2="00000000" w:usb3="00000000" w:csb0="80000000" w:csb1="00000000"/>
- </w:font>
- <w:font w:name="Arial">
- <w:panose1 w:val="020B0604020202020204"/>
- <w:charset w:val="01"/>
- <w:family w:val="swiss"/>
- <w:pitch w:val="default"/>
- <w:sig w:usb0="E0002EFF" w:usb1="C000785B" w:usb2="00000009" w:usb3="00000000" w:csb0="400001FF" w:csb1="FFFF0000"/>
- </w:font>
- <w:font w:name="黑体">
- <w:panose1 w:val="02010609060101010101"/>
- <w:charset w:val="86"/>
- <w:family w:val="auto"/>
- <w:pitch w:val="default"/>
- <w:sig w:usb0="800002BF" w:usb1="38CF7CFA" w:usb2="00000016" w:usb3="00000000" w:csb0="00040001" w:csb1="00000000"/>
- </w:font>
- <w:font w:name="Courier New">
- <w:panose1 w:val="02070309020205020404"/>
- <w:charset w:val="01"/>
- <w:family w:val="modern"/>
- <w:pitch w:val="default"/>
- <w:sig w:usb0="E0002EFF" w:usb1="C0007843" w:usb2="00000009" w:usb3="00000000" w:csb0="400001FF" w:csb1="FFFF0000"/>
- </w:font>
- <w:font w:name="Symbol">
- <w:panose1 w:val="05050102010706020507"/>
- <w:charset w:val="02"/>
- <w:family w:val="roman"/>
- <w:pitch w:val="default"/>
- <w:sig w:usb0="00000000" w:usb1="00000000" w:usb2="00000000" w:usb3="00000000" w:csb0="80000000" w:csb1="00000000"/>
- </w:font>
- <w:font w:name="Calibri">
- <w:panose1 w:val="020F0502020204030204"/>
- <w:charset w:val="00"/>
- <w:family w:val="swiss"/>
- <w:pitch w:val="default"/>
- <w:sig w:usb0="E4002EFF" w:usb1="C200247B" w:usb2="00000009" w:usb3="00000000" w:csb0="200001FF" w:csb1="00000000"/>
- </w:font>
- <w:font w:name="微软雅黑">
- <w:panose1 w:val="020B0503020204020204"/>
- <w:charset w:val="86"/>
- <w:family w:val="auto"/>
- <w:pitch w:val="default"/>
- <w:sig w:usb0="80000287" w:usb1="2ACF3C50" w:usb2="00000016" w:usb3="00000000" w:csb0="0004001F" w:csb1="00000000"/>
- </w:font>
- <w:font w:name="Tahoma">
- <w:panose1 w:val="020B0604030504040204"/>
- <w:charset w:val="00"/>
- <w:family w:val="auto"/>
- <w:pitch w:val="default"/>
- <w:sig w:usb0="E1002EFF" w:usb1="C000605B" w:usb2="00000029" w:usb3="00000000" w:csb0="200101FF" w:csb1="20280000"/>
- </w:font>
- <w:font w:name="仿宋">
- <w:panose1 w:val="02010609060101010101"/>
- <w:charset w:val="86"/>
- <w:family w:val="auto"/>
- <w:pitch w:val="default"/>
- <w:sig w:usb0="800002BF" w:usb1="38CF7CFA" w:usb2="00000016" w:usb3="00000000" w:csb0="00040001" w:csb1="00000000"/>
- </w:font>
- </w:fonts>
- </pkg:xmlData>
- </pkg:part>
- <pkg:part pkg:name="/word/footnotes.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml">
- <pkg:xmlData>
- <w:footnotes
- xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:o="urn:schemas-microsoft-com:office:office"
- xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
- xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math"
- xmlns:v="urn:schemas-microsoft-com:vml"
- xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing"
- xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing"
- xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
- xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
- xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
- xmlns:w10="urn:schemas-microsoft-com:office:word"
- xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup"
- xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk"
- xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml"
- xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape"
- xmlns:wpsCustomData="http://www.wps.cn/officeDocument/2013/wpsCustomData" mc:Ignorable="w14 w15 wp14">
- <w:footnote w:type="separator" w:id="0">
- <w:p>
- <w:pPr>
- <w:spacing w:line="560" w:lineRule="auto"/>
- </w:pPr>
- <w:r>
- <w:separator/>
- </w:r>
- </w:p>
- </w:footnote>
- <w:footnote w:type="continuationSeparator" w:id="1">
- <w:p>
- <w:pPr>
- <w:spacing w:line="560" w:lineRule="auto"/>
- </w:pPr>
- <w:r>
- <w:continuationSeparator/>
- </w:r>
- </w:p>
- </w:footnote>
- </w:footnotes>
- </pkg:xmlData>
- </pkg:part>
- <pkg:part pkg:name="/word/settings.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml">
- <pkg:xmlData>
- <w:settings
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:o="urn:schemas-microsoft-com:office:office"
- xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
- xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math"
- xmlns:v="urn:schemas-microsoft-com:vml"
- xmlns:w10="urn:schemas-microsoft-com:office:word"
- xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
- xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
- xmlns:sl="http://schemas.openxmlformats.org/schemaLibrary/2006/main"
- xmlns:wpsCustomData="http://www.wps.cn/officeDocument/2013/wpsCustomData" mc:Ignorable="w14">
- <w:zoom w:percent="120"/>
- <w:embedSystemFonts/>
- <w:bordersDoNotSurroundHeader w:val="1"/>
- <w:bordersDoNotSurroundFooter w:val="1"/>
- <w:documentProtection w:enforcement="0"/>
- <w:defaultTabStop w:val="420"/>
- <w:drawingGridVerticalSpacing w:val="156"/>
- <w:displayHorizontalDrawingGridEvery w:val="0"/>
- <w:displayVerticalDrawingGridEvery w:val="2"/>
- <w:characterSpacingControl w:val="compressPunctuation"/>
- <w:footnotePr>
- <w:footnote w:id="0"/>
- <w:footnote w:id="1"/>
- </w:footnotePr>
- <w:endnotePr>
- <w:endnote w:id="0"/>
- <w:endnote w:id="1"/>
- </w:endnotePr>
- <w:compat>
- <w:spaceForUL/>
- <w:balanceSingleByteDoubleByteWidth/>
- <w:doNotLeaveBackslashAlone/>
- <w:ulTrailSpace/>
- <w:doNotExpandShiftReturn/>
- <w:adjustLineHeightInTable/>
- <w:useFELayout/>
- <w:compatSetting w:name="compatibilityMode" w:uri="http://schemas.microsoft.com/office/word" w:val="14"/>
- <w:compatSetting w:name="overrideTableStyleFontSizeAndJustification" w:uri="http://schemas.microsoft.com/office/word" w:val="1"/>
- <w:compatSetting w:name="enableOpenTypeFeatures" w:uri="http://schemas.microsoft.com/office/word" w:val="1"/>
- <w:compatSetting w:name="doNotFlipMirrorIndents" w:uri="http://schemas.microsoft.com/office/word" w:val="1"/>
- </w:compat>
- <w:docVars>
- <w:docVar w:name="commondata" w:val="eyJoZGlkIjoiNDZhNmMyMWI3ZGViNTcxNzkxZDYxOWJmYzE4MTQ1Y2UifQ=="/>
- </w:docVars>
- <w:rsids>
- <w:rsidRoot w:val="00000000"/>
- <w:rsid w:val="038325D2"/>
- <w:rsid w:val="0C61547A"/>
- <w:rsid w:val="22877591"/>
- <w:rsid w:val="460327CE"/>
- <w:rsid w:val="53733096"/>
- <w:rsid w:val="59431BC5"/>
- <w:rsid w:val="634C7460"/>
- <w:rsid w:val="72760055"/>
- </w:rsids>
- <m:mathPr>
- <m:mathFont m:val="Cambria Math"/>
- <m:brkBin m:val="before"/>
- <m:brkBinSub m:val="--"/>
- <m:smallFrac m:val="0"/>
- <m:dispDef/>
- <m:lMargin m:val="0"/>
- <m:rMargin m:val="0"/>
- <m:defJc m:val="centerGroup"/>
- <m:wrapIndent m:val="1440"/>
- <m:intLim m:val="subSup"/>
- <m:naryLim m:val="undOvr"/>
- </m:mathPr>
- <w:themeFontLang w:val="en-US" w:eastAsia="zh-CN"/>
- <w:clrSchemeMapping w:bg1="light1" w:t1="dark1" w:bg2="light2" w:t2="dark2" w:accent1="accent1" w:accent2="accent2" w:accent3="accent3" w:accent4="accent4" w:accent5="accent5" w:accent6="accent6" w:hyperlink="hyperlink" w:followedHyperlink="followedHyperlink"/>
- <w:doNotIncludeSubdocsInStats/>
- </w:settings>
- </pkg:xmlData>
- </pkg:part>
- <pkg:part pkg:name="/word/styles.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml">
- <pkg:xmlData>
- <w:styles
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:o="urn:schemas-microsoft-com:office:office"
- xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
- xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math"
- xmlns:v="urn:schemas-microsoft-com:vml"
- xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
- xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
- xmlns:w10="urn:schemas-microsoft-com:office:word"
- xmlns:sl="http://schemas.openxmlformats.org/schemaLibrary/2006/main"
- xmlns:wpsCustomData="http://www.wps.cn/officeDocument/2013/wpsCustomData" mc:Ignorable="w14">
- <w:docDefaults>
- <w:rPrDefault>
- <w:rPr>
- <w:rFonts w:asciiTheme="minorHAnsi" w:hAnsiTheme="minorHAnsi" w:eastAsiaTheme="minorEastAsia" w:cstheme="minorBidi"/>
- </w:rPr>
- </w:rPrDefault>
- <w:pPrDefault/>
- </w:docDefaults>
- <w:latentStyles w:count="260" w:defQFormat="0" w:defUnhideWhenUsed="1" w:defSemiHidden="1" w:defUIPriority="99" w:defLockedState="0">
- <w:lsdException w:qFormat="1" w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Normal"/>
- <w:lsdException w:qFormat="1" w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="heading 1"/>
- <w:lsdException w:qFormat="1" w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="heading 2"/>
- <w:lsdException w:qFormat="1" w:uiPriority="0" w:name="heading 3"/>
- <w:lsdException w:qFormat="1" w:uiPriority="0" w:name="heading 4"/>
- <w:lsdException w:qFormat="1" w:uiPriority="0" w:name="heading 5"/>
- <w:lsdException w:qFormat="1" w:uiPriority="0" w:name="heading 6"/>
- <w:lsdException w:qFormat="1" w:uiPriority="0" w:name="heading 7"/>
- <w:lsdException w:qFormat="1" w:uiPriority="0" w:name="heading 8"/>
- <w:lsdException w:qFormat="1" w:uiPriority="0" w:name="heading 9"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="index 1"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="index 2"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="index 3"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="index 4"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="index 5"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="index 6"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="index 7"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="index 8"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="index 9"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="toc 1"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="toc 2"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="toc 3"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="toc 4"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="toc 5"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="toc 6"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="toc 7"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="toc 8"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="toc 9"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Normal Indent"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="footnote text"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="annotation text"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="header"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="footer"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="index heading"/>
- <w:lsdException w:qFormat="1" w:uiPriority="0" w:name="caption"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="table of figures"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="envelope address"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="envelope return"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="footnote reference"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="annotation reference"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="line number"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="page number"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="endnote reference"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="endnote text"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="table of authorities"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="macro"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="toa heading"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="List"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="List Bullet"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="List Number"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="List 2"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="List 3"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="List 4"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="List 5"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="List Bullet 2"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="List Bullet 3"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="List Bullet 4"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="List Bullet 5"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="List Number 2"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="List Number 3"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="List Number 4"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="List Number 5"/>
- <w:lsdException w:qFormat="1" w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Title"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Closing"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Signature"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:name="Default Paragraph Font"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Body Text"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Body Text Indent"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="List Continue"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="List Continue 2"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="List Continue 3"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="List Continue 4"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="List Continue 5"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Message Header"/>
- <w:lsdException w:qFormat="1" w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Subtitle"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Salutation"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Date"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Body Text First Indent"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Body Text First Indent 2"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Note Heading"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Body Text 2"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Body Text 3"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Body Text Indent 2"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Body Text Indent 3"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Block Text"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Hyperlink"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="FollowedHyperlink"/>
- <w:lsdException w:qFormat="1" w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Strong"/>
- <w:lsdException w:qFormat="1" w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Emphasis"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Document Map"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Plain Text"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="E-mail Signature"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Normal (Web)"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="HTML Acronym"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="HTML Address"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="HTML Cite"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="HTML Code"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="HTML Definition"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="HTML Keyboard"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="HTML Preformatted"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="HTML Sample"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="HTML Typewriter"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="HTML Variable"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:name="Normal Table"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="annotation subject"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Simple 1"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Simple 2"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Simple 3"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Classic 1"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Classic 2"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Classic 3"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Classic 4"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Colorful 1"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Colorful 2"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Colorful 3"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Columns 1"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Columns 2"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Columns 3"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Columns 4"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Columns 5"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Grid 1"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Grid 2"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Grid 3"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Grid 4"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Grid 5"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Grid 6"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Grid 7"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Grid 8"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table List 1"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table List 2"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table List 3"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table List 4"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table List 5"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table List 6"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table List 7"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table List 8"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table 3D effects 1"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table 3D effects 2"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table 3D effects 3"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Contemporary"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Elegant"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Professional"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Subtle 1"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Subtle 2"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Web 1"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Web 2"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Web 3"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Balloon Text"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Grid"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Theme"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="60" w:semiHidden="0" w:name="Light Shading"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="61" w:semiHidden="0" w:name="Light List"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="62" w:semiHidden="0" w:name="Light Grid"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="63" w:semiHidden="0" w:name="Medium Shading 1"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="64" w:semiHidden="0" w:name="Medium Shading 2"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="65" w:semiHidden="0" w:name="Medium List 1"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="66" w:semiHidden="0" w:name="Medium List 2"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="67" w:semiHidden="0" w:name="Medium Grid 1"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="68" w:semiHidden="0" w:name="Medium Grid 2"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="69" w:semiHidden="0" w:name="Medium Grid 3"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="70" w:semiHidden="0" w:name="Dark List"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="71" w:semiHidden="0" w:name="Colorful Shading"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="72" w:semiHidden="0" w:name="Colorful List"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="73" w:semiHidden="0" w:name="Colorful Grid"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="60" w:semiHidden="0" w:name="Light Shading Accent 1"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="61" w:semiHidden="0" w:name="Light List Accent 1"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="62" w:semiHidden="0" w:name="Light Grid Accent 1"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="63" w:semiHidden="0" w:name="Medium Shading 1 Accent 1"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="64" w:semiHidden="0" w:name="Medium Shading 2 Accent 1"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="65" w:semiHidden="0" w:name="Medium List 1 Accent 1"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="66" w:semiHidden="0" w:name="Medium List 2 Accent 1"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="67" w:semiHidden="0" w:name="Medium Grid 1 Accent 1"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="68" w:semiHidden="0" w:name="Medium Grid 2 Accent 1"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="69" w:semiHidden="0" w:name="Medium Grid 3 Accent 1"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="70" w:semiHidden="0" w:name="Dark List Accent 1"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="71" w:semiHidden="0" w:name="Colorful Shading Accent 1"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="72" w:semiHidden="0" w:name="Colorful List Accent 1"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="73" w:semiHidden="0" w:name="Colorful Grid Accent 1"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="60" w:semiHidden="0" w:name="Light Shading Accent 2"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="61" w:semiHidden="0" w:name="Light List Accent 2"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="62" w:semiHidden="0" w:name="Light Grid Accent 2"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="63" w:semiHidden="0" w:name="Medium Shading 1 Accent 2"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="64" w:semiHidden="0" w:name="Medium Shading 2 Accent 2"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="65" w:semiHidden="0" w:name="Medium List 1 Accent 2"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="66" w:semiHidden="0" w:name="Medium List 2 Accent 2"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="67" w:semiHidden="0" w:name="Medium Grid 1 Accent 2"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="68" w:semiHidden="0" w:name="Medium Grid 2 Accent 2"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="69" w:semiHidden="0" w:name="Medium Grid 3 Accent 2"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="70" w:semiHidden="0" w:name="Dark List Accent 2"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="71" w:semiHidden="0" w:name="Colorful Shading Accent 2"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="72" w:semiHidden="0" w:name="Colorful List Accent 2"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="73" w:semiHidden="0" w:name="Colorful Grid Accent 2"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="60" w:semiHidden="0" w:name="Light Shading Accent 3"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="61" w:semiHidden="0" w:name="Light List Accent 3"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="62" w:semiHidden="0" w:name="Light Grid Accent 3"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="63" w:semiHidden="0" w:name="Medium Shading 1 Accent 3"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="64" w:semiHidden="0" w:name="Medium Shading 2 Accent 3"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="65" w:semiHidden="0" w:name="Medium List 1 Accent 3"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="66" w:semiHidden="0" w:name="Medium List 2 Accent 3"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="67" w:semiHidden="0" w:name="Medium Grid 1 Accent 3"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="68" w:semiHidden="0" w:name="Medium Grid 2 Accent 3"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="69" w:semiHidden="0" w:name="Medium Grid 3 Accent 3"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="70" w:semiHidden="0" w:name="Dark List Accent 3"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="71" w:semiHidden="0" w:name="Colorful Shading Accent 3"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="72" w:semiHidden="0" w:name="Colorful List Accent 3"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="73" w:semiHidden="0" w:name="Colorful Grid Accent 3"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="60" w:semiHidden="0" w:name="Light Shading Accent 4"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="61" w:semiHidden="0" w:name="Light List Accent 4"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="62" w:semiHidden="0" w:name="Light Grid Accent 4"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="63" w:semiHidden="0" w:name="Medium Shading 1 Accent 4"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="64" w:semiHidden="0" w:name="Medium Shading 2 Accent 4"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="65" w:semiHidden="0" w:name="Medium List 1 Accent 4"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="66" w:semiHidden="0" w:name="Medium List 2 Accent 4"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="67" w:semiHidden="0" w:name="Medium Grid 1 Accent 4"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="68" w:semiHidden="0" w:name="Medium Grid 2 Accent 4"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="69" w:semiHidden="0" w:name="Medium Grid 3 Accent 4"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="70" w:semiHidden="0" w:name="Dark List Accent 4"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="71" w:semiHidden="0" w:name="Colorful Shading Accent 4"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="72" w:semiHidden="0" w:name="Colorful List Accent 4"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="73" w:semiHidden="0" w:name="Colorful Grid Accent 4"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="60" w:semiHidden="0" w:name="Light Shading Accent 5"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="61" w:semiHidden="0" w:name="Light List Accent 5"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="62" w:semiHidden="0" w:name="Light Grid Accent 5"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="63" w:semiHidden="0" w:name="Medium Shading 1 Accent 5"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="64" w:semiHidden="0" w:name="Medium Shading 2 Accent 5"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="65" w:semiHidden="0" w:name="Medium List 1 Accent 5"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="66" w:semiHidden="0" w:name="Medium List 2 Accent 5"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="67" w:semiHidden="0" w:name="Medium Grid 1 Accent 5"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="68" w:semiHidden="0" w:name="Medium Grid 2 Accent 5"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="69" w:semiHidden="0" w:name="Medium Grid 3 Accent 5"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="70" w:semiHidden="0" w:name="Dark List Accent 5"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="71" w:semiHidden="0" w:name="Colorful Shading Accent 5"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="72" w:semiHidden="0" w:name="Colorful List Accent 5"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="73" w:semiHidden="0" w:name="Colorful Grid Accent 5"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="60" w:semiHidden="0" w:name="Light Shading Accent 6"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="61" w:semiHidden="0" w:name="Light List Accent 6"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="62" w:semiHidden="0" w:name="Light Grid Accent 6"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="63" w:semiHidden="0" w:name="Medium Shading 1 Accent 6"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="64" w:semiHidden="0" w:name="Medium Shading 2 Accent 6"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="65" w:semiHidden="0" w:name="Medium List 1 Accent 6"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="66" w:semiHidden="0" w:name="Medium List 2 Accent 6"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="67" w:semiHidden="0" w:name="Medium Grid 1 Accent 6"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="68" w:semiHidden="0" w:name="Medium Grid 2 Accent 6"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="69" w:semiHidden="0" w:name="Medium Grid 3 Accent 6"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="70" w:semiHidden="0" w:name="Dark List Accent 6"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="71" w:semiHidden="0" w:name="Colorful Shading Accent 6"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="72" w:semiHidden="0" w:name="Colorful List Accent 6"/>
- <w:lsdException w:unhideWhenUsed="0" w:uiPriority="73" w:semiHidden="0" w:name="Colorful Grid Accent 6"/>
- </w:latentStyles>
- <w:style w:type="paragraph" w:default="1" w:styleId="1">
- <w:name w:val="Normal"/>
- <w:qFormat/>
- <w:uiPriority w:val="0"/>
- <w:pPr>
- <w:widowControl w:val="0"/>
- <w:spacing w:line="560" w:lineRule="auto"/>
- <w:jc w:val="both"/>
- </w:pPr>
- <w:rPr>
- <w:rFonts w:hint="default" w:ascii="Times New Roman" w:hAnsi="Times New Roman" w:eastAsia="仿宋" w:cs="Times New Roman"/>
- <w:sz w:val="28"/>
- <w:szCs w:val="22"/>
- </w:rPr>
- </w:style>
- <w:style w:type="paragraph" w:styleId="2">
- <w:name w:val="heading 2"/>
- <w:basedOn w:val="1"/>
- <w:next w:val="1"/>
- <w:qFormat/>
- <w:uiPriority w:val="0"/>
- <w:pPr>
- <w:keepNext/>
- <w:keepLines/>
- <w:spacing w:beforeAutospacing="0" w:afterAutospacing="0" w:line="560" w:lineRule="auto"/>
- <w:jc w:val="left"/>
- <w:outlineLvl w:val="1"/>
- </w:pPr>
- <w:rPr>
- <w:rFonts w:hint="default" w:ascii="Arial" w:hAnsi="Arial" w:eastAsia="黑体"/>
- <w:b/>
- <w:sz w:val="28"/>
- </w:rPr>
- </w:style>
- <w:style w:type="character" w:default="1" w:styleId="4">
- <w:name w:val="Default Paragraph Font"/>
- <w:semiHidden/>
- <w:uiPriority w:val="0"/>
- </w:style>
- <w:style w:type="table" w:default="1" w:styleId="3">
- <w:name w:val="Normal Table"/>
- <w:semiHidden/>
- <w:uiPriority w:val="0"/>
- <w:tblPr>
- <w:tblCellMar>
- <w:top w:w="0" w:type="dxa"/>
- <w:left w:w="108" w:type="dxa"/>
- <w:bottom w:w="0" w:type="dxa"/>
- <w:right w:w="108" w:type="dxa"/>
- </w:tblCellMar>
- </w:tblPr>
- </w:style>
- </w:styles>
- </pkg:xmlData>
- </pkg:part>
- <pkg:part pkg:name="/word/theme/theme1.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.theme+xml">
- <pkg:xmlData>
- <a:theme
- xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" name="WPS">
- <a:themeElements>
- <a:clrScheme name="WPS">
- <a:dk1>
- <a:sysClr val="windowText" lastClr="000000"/>
- </a:dk1>
- <a:lt1>
- <a:sysClr val="window" lastClr="FFFFFF"/>
- </a:lt1>
- <a:dk2>
- <a:srgbClr val="44546A"/>
- </a:dk2>
- <a:lt2>
- <a:srgbClr val="E7E6E6"/>
- </a:lt2>
- <a:accent1>
- <a:srgbClr val="4874CB"/>
- </a:accent1>
- <a:accent2>
- <a:srgbClr val="EE822F"/>
- </a:accent2>
- <a:accent3>
- <a:srgbClr val="F2BA02"/>
- </a:accent3>
- <a:accent4>
- <a:srgbClr val="75BD42"/>
- </a:accent4>
- <a:accent5>
- <a:srgbClr val="30C0B4"/>
- </a:accent5>
- <a:accent6>
- <a:srgbClr val="E54C5E"/>
- </a:accent6>
- <a:hlink>
- <a:srgbClr val="0026E5"/>
- </a:hlink>
- <a:folHlink>
- <a:srgbClr val="7E1FAD"/>
- </a:folHlink>
- </a:clrScheme>
- <a:fontScheme name="WPS">
- <a:majorFont>
- <a:latin typeface="Calibri Light"/>
- <a:ea typeface=""/>
- <a:cs typeface=""/>
- <a:font script="Jpan" typeface="MS ゴシック"/>
- <a:font script="Hang" typeface="맑은 고딕"/>
- <a:font script="Hans" typeface="宋体"/>
- <a:font script="Hant" typeface="新細明體"/>
- <a:font script="Arab" typeface="Times New Roman"/>
- <a:font script="Hebr" typeface="Times New Roman"/>
- <a:font script="Thai" typeface="Angsana New"/>
- <a:font script="Ethi" typeface="Nyala"/>
- <a:font script="Beng" typeface="Vrinda"/>
- <a:font script="Gujr" typeface="Shruti"/>
- <a:font script="Khmr" typeface="MoolBoran"/>
- <a:font script="Knda" typeface="Tunga"/>
- <a:font script="Guru" typeface="Raavi"/>
- <a:font script="Cans" typeface="Euphemia"/>
- <a:font script="Cher" typeface="Plantagenet Cherokee"/>
- <a:font script="Yiii" typeface="Microsoft Yi Baiti"/>
- <a:font script="Tibt" typeface="Microsoft Himalaya"/>
- <a:font script="Thaa" typeface="MV Boli"/>
- <a:font script="Deva" typeface="Mangal"/>
- <a:font script="Telu" typeface="Gautami"/>
- <a:font script="Taml" typeface="Latha"/>
- <a:font script="Syrc" typeface="Estrangelo Edessa"/>
- <a:font script="Orya" typeface="Kalinga"/>
- <a:font script="Mlym" typeface="Kartika"/>
- <a:font script="Laoo" typeface="DokChampa"/>
- <a:font script="Sinh" typeface="Iskoola Pota"/>
- <a:font script="Mong" typeface="Mongolian Baiti"/>
- <a:font script="Viet" typeface="Times New Roman"/>
- <a:font script="Uigh" typeface="Microsoft Uighur"/>
- <a:font script="Geor" typeface="Sylfaen"/>
- </a:majorFont>
- <a:minorFont>
- <a:latin typeface="Calibri"/>
- <a:ea typeface=""/>
- <a:cs typeface=""/>
- <a:font script="Jpan" typeface="MS 明朝"/>
- <a:font script="Hang" typeface="맑은 고딕"/>
- <a:font script="Hans" typeface="宋体"/>
- <a:font script="Hant" typeface="新細明體"/>
- <a:font script="Arab" typeface="Arial"/>
- <a:font script="Hebr" typeface="Arial"/>
- <a:font script="Thai" typeface="Cordia New"/>
- <a:font script="Ethi" typeface="Nyala"/>
- <a:font script="Beng" typeface="Vrinda"/>
- <a:font script="Gujr" typeface="Shruti"/>
- <a:font script="Khmr" typeface="DaunPenh"/>
- <a:font script="Knda" typeface="Tunga"/>
- <a:font script="Guru" typeface="Raavi"/>
- <a:font script="Cans" typeface="Euphemia"/>
- <a:font script="Cher" typeface="Plantagenet Cherokee"/>
- <a:font script="Yiii" typeface="Microsoft Yi Baiti"/>
- <a:font script="Tibt" typeface="Microsoft Himalaya"/>
- <a:font script="Thaa" typeface="MV Boli"/>
- <a:font script="Deva" typeface="Mangal"/>
- <a:font script="Telu" typeface="Gautami"/>
- <a:font script="Taml" typeface="Latha"/>
- <a:font script="Syrc" typeface="Estrangelo Edessa"/>
- <a:font script="Orya" typeface="Kalinga"/>
- <a:font script="Mlym" typeface="Kartika"/>
- <a:font script="Laoo" typeface="DokChampa"/>
- <a:font script="Sinh" typeface="Iskoola Pota"/>
- <a:font script="Mong" typeface="Mongolian Baiti"/>
- <a:font script="Viet" typeface="Arial"/>
- <a:font script="Uigh" typeface="Microsoft Uighur"/>
- <a:font script="Geor" typeface="Sylfaen"/>
- </a:minorFont>
- </a:fontScheme>
- <a:fmtScheme name="WPS">
- <a:fillStyleLst>
- <a:solidFill>
- <a:schemeClr val="phClr"/>
- </a:solidFill>
- <a:gradFill>
- <a:gsLst>
- <a:gs pos="0">
- <a:schemeClr val="phClr">
- <a:lumOff val="17500"/>
- </a:schemeClr>
- </a:gs>
- <a:gs pos="100000">
- <a:schemeClr val="phClr"/>
- </a:gs>
- </a:gsLst>
- <a:lin ang="2700000" scaled="0"/>
- </a:gradFill>
- <a:gradFill>
- <a:gsLst>
- <a:gs pos="0">
- <a:schemeClr val="phClr">
- <a:hueOff val="-2520000"/>
- </a:schemeClr>
- </a:gs>
- <a:gs pos="100000">
- <a:schemeClr val="phClr"/>
- </a:gs>
- </a:gsLst>
- <a:lin ang="2700000" scaled="0"/>
- </a:gradFill>
- </a:fillStyleLst>
- <a:lnStyleLst>
- <a:ln w="12700" cap="flat" cmpd="sng" algn="ctr">
- <a:solidFill>
- <a:schemeClr val="phClr"/>
- </a:solidFill>
- <a:prstDash val="solid"/>
- <a:miter lim="800000"/>
- </a:ln>
- <a:ln w="12700" cap="flat" cmpd="sng" algn="ctr">
- <a:solidFill>
- <a:schemeClr val="phClr"/>
- </a:solidFill>
- <a:prstDash val="solid"/>
- <a:miter lim="800000"/>
- </a:ln>
- <a:ln w="12700" cap="flat" cmpd="sng" algn="ctr">
- <a:gradFill>
- <a:gsLst>
- <a:gs pos="0">
- <a:schemeClr val="phClr">
- <a:hueOff val="-4200000"/>
- </a:schemeClr>
- </a:gs>
- <a:gs pos="100000">
- <a:schemeClr val="phClr"/>
- </a:gs>
- </a:gsLst>
- <a:lin ang="2700000" scaled="1"/>
- </a:gradFill>
- <a:prstDash val="solid"/>
- <a:miter lim="800000"/>
- </a:ln>
- </a:lnStyleLst>
- <a:effectStyleLst>
- <a:effectStyle>
- <a:effectLst>
- <a:outerShdw blurRad="101600" dist="50800" dir="5400000" algn="ctr" rotWithShape="0">
- <a:schemeClr val="phClr">
- <a:alpha val="60000"/>
- </a:schemeClr>
- </a:outerShdw>
- </a:effectLst>
- </a:effectStyle>
- <a:effectStyle>
- <a:effectLst>
- <a:reflection stA="50000" endA="300" endPos="40000" dist="25400" dir="5400000" sy="-100000" algn="bl" rotWithShape="0"/>
- </a:effectLst>
- </a:effectStyle>
- <a:effectStyle>
- <a:effectLst>
- <a:outerShdw blurRad="57150" dist="19050" dir="5400000" algn="ctr" rotWithShape="0">
- <a:srgbClr val="000000">
- <a:alpha val="63000"/>
- </a:srgbClr>
- </a:outerShdw>
- </a:effectLst>
- </a:effectStyle>
- </a:effectStyleLst>
- <a:bgFillStyleLst>
- <a:solidFill>
- <a:schemeClr val="phClr"/>
- </a:solidFill>
- <a:solidFill>
- <a:schemeClr val="phClr">
- <a:tint val="95000"/>
- <a:satMod val="170000"/>
- </a:schemeClr>
- </a:solidFill>
- <a:gradFill rotWithShape="1">
- <a:gsLst>
- <a:gs pos="0">
- <a:schemeClr val="phClr">
- <a:tint val="93000"/>
- <a:satMod val="150000"/>
- <a:shade val="98000"/>
- <a:lumMod val="102000"/>
- </a:schemeClr>
- </a:gs>
- <a:gs pos="50000">
- <a:schemeClr val="phClr">
- <a:tint val="98000"/>
- <a:satMod val="130000"/>
- <a:shade val="90000"/>
- <a:lumMod val="103000"/>
- </a:schemeClr>
- </a:gs>
- <a:gs pos="100000">
- <a:schemeClr val="phClr">
- <a:shade val="63000"/>
- <a:satMod val="120000"/>
- </a:schemeClr>
- </a:gs>
- </a:gsLst>
- <a:lin ang="5400000" scaled="0"/>
- </a:gradFill>
- </a:bgFillStyleLst>
- </a:fmtScheme>
- </a:themeElements>
- <a:objectDefaults/>
- </a:theme>
- </pkg:xmlData>
- </pkg:part>
- </pkg:package>
|