Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
T
tianjin-cement
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
竹天卫
tianjin-cement
Commits
529867a9
Commit
529867a9
authored
Apr 01, 2021
by
竹天卫
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
word 模板导出
parent
b0deefc5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
201 additions
and
11 deletions
+201
-11
EntrustController.java
...wise/sc/cement/business/controller/EntrustController.java
+13
-0
IEntrustService.java
...a/cn/wise/sc/cement/business/service/IEntrustService.java
+2
-1
EntrustServiceImpl.java
...e/sc/cement/business/service/impl/EntrustServiceImpl.java
+27
-0
ExcelUtil.java
.../main/java/cn/wise/sc/cement/business/util/ExcelUtil.java
+65
-7
checkTeam.ftl
cement-business/src/main/resources/templates/checkTeam.ftl
+94
-3
No files found.
cement-business/src/main/java/cn/wise/sc/cement/business/controller/EntrustController.java
View file @
529867a9
...
@@ -21,6 +21,7 @@ import org.slf4j.Logger;
...
@@ -21,6 +21,7 @@ import org.slf4j.Logger;
import
org.slf4j.LoggerFactory
;
import
org.slf4j.LoggerFactory
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.web.bind.annotation.*
;
import
org.springframework.web.bind.annotation.*
;
import
org.springframework.web.multipart.MultipartFile
;
import
javax.servlet.http.HttpServletResponse
;
import
javax.servlet.http.HttpServletResponse
;
import
java.time.LocalDateTime
;
import
java.time.LocalDateTime
;
...
@@ -843,6 +844,18 @@ public class EntrustController {
...
@@ -843,6 +844,18 @@ public class EntrustController {
}
}
@ApiOperation
(
"测试xml转word"
)
@PostMapping
(
"/testXml2Word"
)
public
void
testXml2Word
(
MultipartFile
file
,
HttpServletResponse
response
)
{
try
{
entrustService
.
testXml2Word
(
file
,
response
);
}
catch
(
Exception
e
)
{
log
.
debug
(
"测试xml转word{}"
,
e
);
}
}
}
}
...
...
cement-business/src/main/java/cn/wise/sc/cement/business/service/IEntrustService.java
View file @
529867a9
...
@@ -6,6 +6,7 @@ import cn.wise.sc.cement.business.model.query.*;
...
@@ -6,6 +6,7 @@ import cn.wise.sc.cement.business.model.query.*;
import
cn.wise.sc.cement.business.model.vo.*
;
import
cn.wise.sc.cement.business.model.vo.*
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.extension.service.IService
;
import
com.baomidou.mybatisplus.extension.service.IService
;
import
org.springframework.web.multipart.MultipartFile
;
import
javax.servlet.http.HttpServletResponse
;
import
javax.servlet.http.HttpServletResponse
;
import
java.util.List
;
import
java.util.List
;
...
@@ -178,6 +179,6 @@ public interface IEntrustService extends IService<Entrust> {
...
@@ -178,6 +179,6 @@ public interface IEntrustService extends IService<Entrust> {
String
fileName
,
HttpServletResponse
response
);
String
fileName
,
HttpServletResponse
response
);
void
testXml2Word
(
MultipartFile
file
,
HttpServletResponse
response
);
}
}
cement-business/src/main/java/cn/wise/sc/cement/business/service/impl/EntrustServiceImpl.java
View file @
529867a9
...
@@ -37,9 +37,12 @@ import org.springframework.beans.factory.annotation.Value;
...
@@ -37,9 +37,12 @@ import org.springframework.beans.factory.annotation.Value;
import
org.springframework.stereotype.Service
;
import
org.springframework.stereotype.Service
;
import
org.springframework.transaction.annotation.Propagation
;
import
org.springframework.transaction.annotation.Propagation
;
import
org.springframework.transaction.annotation.Transactional
;
import
org.springframework.transaction.annotation.Transactional
;
import
org.springframework.web.multipart.MultipartFile
;
import
javax.annotation.Resource
;
import
javax.annotation.Resource
;
import
javax.servlet.http.HttpServletResponse
;
import
javax.servlet.http.HttpServletResponse
;
import
java.io.FileInputStream
;
import
java.io.InputStream
;
import
java.math.BigDecimal
;
import
java.math.BigDecimal
;
import
java.text.SimpleDateFormat
;
import
java.text.SimpleDateFormat
;
import
java.time.LocalDate
;
import
java.time.LocalDate
;
...
@@ -6332,4 +6335,28 @@ public class EntrustServiceImpl extends ServiceImpl<EntrustMapper, Entrust> impl
...
@@ -6332,4 +6335,28 @@ public class EntrustServiceImpl extends ServiceImpl<EntrustMapper, Entrust> impl
}
}
}
}
/**
* 测试xml转word
* @param file
* @param response
*/
@Override
public
void
testXml2Word
(
MultipartFile
file
,
HttpServletResponse
response
){
try
{
InputStream
in
=
file
.
getInputStream
();
ExcelUtil
.
readData
((
FileInputStream
)
in
);
}
catch
(
Exception
e
)
{
e
.
printStackTrace
();
}
}
}
}
cement-business/src/main/java/cn/wise/sc/cement/business/util/ExcelUtil.java
View file @
529867a9
...
@@ -20,13 +20,9 @@ import org.apache.poi.xssf.usermodel.XSSFSheet;
...
@@ -20,13 +20,9 @@ import org.apache.poi.xssf.usermodel.XSSFSheet;
import
org.apache.poi.xssf.usermodel.XSSFWorkbook
;
import
org.apache.poi.xssf.usermodel.XSSFWorkbook
;
import
javax.servlet.http.HttpServletResponse
;
import
javax.servlet.http.HttpServletResponse
;
import
java.io.ByteArrayOutputStream
;
import
java.io.*
;
import
java.io.File
;
import
java.text.DecimalFormat
;
import
java.io.FileOutputStream
;
import
java.util.*
;
import
java.io.IOException
;
import
java.io.OutputStream
;
import
java.util.Arrays
;
import
java.util.List
;
/**
/**
* excel工具类
* excel工具类
...
@@ -459,6 +455,68 @@ public class ExcelUtil {
...
@@ -459,6 +455,68 @@ public class ExcelUtil {
return
wb
;
return
wb
;
}
}
/**
* 读取文件
* @param fis
* @return
* @throws Exception
*/
@SuppressWarnings
(
"resource"
)
public
static
List
<
Map
<
Integer
,
String
>>
readData
(
FileInputStream
fis
)
throws
Exception
{
XSSFWorkbook
hwb
=
new
XSSFWorkbook
(
fis
);
List
<
Map
<
Integer
,
String
>>
usermap
=
new
ArrayList
<>();
// 获取第一个sheet页
XSSFSheet
sheetAt
=
hwb
.
getSheetAt
(
0
);
if
(
sheetAt
==
null
)
{
return
usermap
;
}
// 遍历行里面的单元格内容.
for
(
int
i
=
1
;
i
<=
sheetAt
.
getLastRowNum
();
i
++)
{
// User user = new User();
Map
<
Integer
,
String
>
map
=
new
HashMap
<
Integer
,
String
>();
// 得到每一行
XSSFRow
row
=
sheetAt
.
getRow
(
i
);
// 如果为空就跳出
if
(
row
==
null
)
{
continue
;
}
// 遍历列
for
(
int
j
=
0
;
j
<
row
.
getLastCellNum
();
j
++)
{
// 遍历列里面的内容
XSSFCell
cell
=
row
.
getCell
(
j
);
if
(
cell
==
null
)
{
map
.
put
(
j
,
null
);
}
try
{
map
.
put
(
j
,
cell
.
getStringCellValue
());
}
catch
(
Exception
e
)
{
map
.
put
(
j
,
new
DecimalFormat
(
"#0"
).
format
(
cell
.
getNumericCellValue
()).
toString
());
}
}
usermap
.
add
(
map
);
}
return
usermap
;
}
public
static
void
main
(
String
[]
args
)
throws
IOException
{
public
static
void
main
(
String
[]
args
)
throws
IOException
{
//指定数据存放的位置
//指定数据存放的位置
OutputStream
outputStream
=
new
FileOutputStream
(
"D:\\test.xlsx"
);
OutputStream
outputStream
=
new
FileOutputStream
(
"D:\\test.xlsx"
);
...
...
cement-business/src/main/resources/templates/checkTeam.ftl
View file @
529867a9
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<?mso-application progid="Word.Document"?>
<?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:padding=
"512"
><pkg:xmlData><Relationships
xmlns=
"http://schemas.openxmlformats.org/package/2006/relationships"
><Relationship
Id=
"rId3"
Type=
"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties"
Target=
"docProps/app.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/officeDocument"
Target=
"word/document.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:cx=
"http://schemas.microsoft.com/office/drawing/2014/chartex"
xmlns:cx1=
"http://schemas.microsoft.com/office/drawing/2015/9/8/chartex"
xmlns:cx2=
"http://schemas.microsoft.com/office/drawing/2015/10/21/chartex"
xmlns:cx3=
"http://schemas.microsoft.com/office/drawing/2016/5/9/chartex"
xmlns:cx4=
"http://schemas.microsoft.com/office/drawing/2016/5/10/chartex"
xmlns:cx5=
"http://schemas.microsoft.com/office/drawing/2016/5/11/chartex"
xmlns:cx6=
"http://schemas.microsoft.com/office/drawing/2016/5/12/chartex"
xmlns:cx7=
"http://schemas.microsoft.com/office/drawing/2016/5/13/chartex"
xmlns:cx8=
"http://schemas.microsoft.com/office/drawing/2016/5/14/chartex"
xmlns:mc=
"http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:aink=
"http://schemas.microsoft.com/office/drawing/2016/ink"
xmlns:am3d=
"http://schemas.microsoft.com/office/drawing/2017/model3d"
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:w10=
"urn:schemas-microsoft-com:office:word"
xmlns:w=
"http://schemas.openxmlformats.org/wordprocessingml/2006/main"
xmlns:w14=
"http://schemas.microsoft.com/office/word/2010/wordml"
xmlns:w15=
"http://schemas.microsoft.com/office/word/2012/wordml"
xmlns:w16cex=
"http://schemas.microsoft.com/office/word/2018/wordml/cex"
xmlns:w16cid=
"http://schemas.microsoft.com/office/word/2016/wordml/cid"
xmlns:w16=
"http://schemas.microsoft.com/office/word/2018/wordml"
xmlns:w16se=
"http://schemas.microsoft.com/office/word/2015/wordml/symex"
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"
mc:Ignorable=
"w14 w15 w16se w16cid w16 w16cex wp14"
>
<w:wordDocument
xmlns:aml=
"http://schemas.microsoft.com/aml/2001/core"
<w:body><w:p><w:pPr><w:jc
w:val=
"right"
/><w:rPr><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr></w:pPr></w:p><w:p><w:pPr><w:jc
w:val=
"center"
/><w:rPr><w:b/><w:bCs/><w:sz
w:val=
"28"
/><w:szCs
w:val=
"28"
/></w:rPr></w:pPr><w:r><w:rPr><w:rFonts
w:hint=
"eastAsia"
/><w:b/><w:bCs/><w:sz
w:val=
"28"
/><w:szCs
w:val=
"28"
/><w:lang
w:val=
"en-US"
w:eastAsia=
"zh-CN"
/></w:rPr><w:t>
检测通知单
</w:t></w:r></w:p><w:tbl><w:tblPr><w:tblStyle
w:val=
"6"
/><w:tblW
w:w=
"6283"
w:type=
"pct"
/><w:tblInd
w:w=
"-1059"
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=
"fixed"
/><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=
"2100"
/><w:gridCol
w:w=
"2610"
/><w:gridCol
w:w=
"1910"
/><w:gridCol
w:w=
"1600"
/><w:gridCol
w:w=
"2490"
/></w:tblGrid>
xmlns:wpc=
"http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas"
xmlns:cx=
"http://schemas.microsoft.com/office/drawing/2014/chartex"
xmlns:cx1=
"http://schemas.microsoft.com/office/drawing/2015/9/8/chartex"
xmlns:cx2=
"http://schemas.microsoft.com/office/drawing/2015/10/21/chartex"
xmlns:cx3=
"http://schemas.microsoft.com/office/drawing/2016/5/9/chartex"
xmlns:cx4=
"http://schemas.microsoft.com/office/drawing/2016/5/10/chartex"
xmlns:cx5=
"http://schemas.microsoft.com/office/drawing/2016/5/11/chartex"
xmlns:cx6=
"http://schemas.microsoft.com/office/drawing/2016/5/12/chartex"
xmlns:cx7=
"http://schemas.microsoft.com/office/drawing/2016/5/13/chartex"
xmlns:cx8=
"http://schemas.microsoft.com/office/drawing/2016/5/14/chartex"
xmlns:dt=
"uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
xmlns:mc=
"http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:aink=
"http://schemas.microsoft.com/office/drawing/2016/ink"
xmlns:am3d=
"http://schemas.microsoft.com/office/drawing/2017/model3d"
xmlns:o=
"urn:schemas-microsoft-com:office:office"
xmlns:v=
"urn:schemas-microsoft-com:vml"
xmlns:w10=
"urn:schemas-microsoft-com:office:word"
xmlns:w=
"http://schemas.microsoft.com/office/word/2003/wordml"
xmlns:wx=
"http://schemas.microsoft.com/office/word/2003/auxHint"
xmlns:wne=
"http://schemas.microsoft.com/office/word/2006/wordml"
xmlns:wsp=
"http://schemas.microsoft.com/office/word/2003/wordml/sp2"
xmlns:sl=
"http://schemas.microsoft.com/schemaLibrary/2003/core"
xmlns:st1=
"Tencent"
w:macrosPresent=
"no"
w:embeddedObjPresent=
"no"
w:ocxPresent=
"no"
xml:space=
"preserve"
><w:ignoreSubtree
w:val=
"http://schemas.microsoft.com/office/word/2003/wordml/sp2"
/>
<o:SmartTagType
o:namespaceuri=
"Tencent"
o:url=
"http://rtx.tencent.com"
o:name=
"RTX"
/>
<o:DocumentProperties>
<o:Title>
文件编号:317
</o:Title>
<o:Author>
qql
</o:Author>
<o:LastAuthor>
tiger
</o:LastAuthor>
<o:Revision>
2
</o:Revision>
<o:TotalTime>
2
</o:TotalTime>
<o:LastPrinted>
2017-07-21T03:48:00Z
</o:LastPrinted>
<o:Created>
2020-10-16T01:39:00Z
</o:Created>
<o:LastSaved>
2020-10-16T01:39:00Z
</o:LastSaved>
<o:Pages>
2
</o:Pages>
<o:Words>
254
</o:Words>
<o:Characters>
1449
</o:Characters>
<o:Company>
tcdri
</o:Company>
<o:Lines>
12
</o:Lines>
<o:Paragraphs>
3
</o:Paragraphs>
<o:CharactersWithSpaces>
1700
</o:CharactersWithSpaces>
<o:Version>
16
</o:Version>
</o:DocumentProperties>
<w:fonts>
<w:defaultFonts
w:ascii=
"Times New Roman"
w:fareast=
"宋体"
w:h-ansi=
"Times New Roman"
w:cs=
"Times New Roman"
/>
<w:font
w:name=
"Times New Roman"
>
<w:panose-1
w:val=
"02020603050405020304"
/>
<w:charset
w:val=
"00"
/>
<w:family
w:val=
"Roman"
/>
<w:pitch
w:val=
"variable"
/>
<w:sig
w:usb-0=
"E0002EFF"
w:usb-1=
"C000785B"
w:usb-2=
"00000009"
w:usb-3=
"00000000"
w:csb-0=
"000001FF"
w:csb-1=
"00000000"
/>
</w:font>
<w:font
w:name=
"宋体"
>
<w:altName
w:val=
"SimSun"
/>
<w:panose-1
w:val=
"02010600030101010101"
/>
<w:charset
w:val=
"86"
/>
<w:family
w:val=
"auto"
/>
<w:pitch
w:val=
"variable"
/>
<w:sig
w:usb-0=
"00000003"
w:usb-1=
"288F0000"
w:usb-2=
"00000016"
w:usb-3=
"00000000"
w:csb-0=
"00040001"
w:csb-1=
"00000000"
/>
</w:font>
<w:font
w:name=
"Cambria Math"
>
<w:panose-1
w:val=
"02040503050406030204"
/>
<w:charset
w:val=
"00"
/>
<w:family
w:val=
"Roman"
/>
<w:pitch
w:val=
"variable"
/>
<w:sig
w:usb-0=
"00000003"
w:usb-1=
"00000000"
w:usb-2=
"00000000"
w:usb-3=
"00000000"
w:csb-0=
"00000001"
w:csb-1=
"00000000"
/>
</w:font>
<w:font
w:name=
"Wingdings 2"
>
<w:panose-1
w:val=
"05020102010507070707"
/>
<w:charset
w:val=
"02"
/>
<w:family
w:val=
"Roman"
/>
<w:pitch
w:val=
"variable"
/>
<w:sig
w:usb-0=
"00000000"
w:usb-1=
"10000000"
w:usb-2=
"00000000"
w:usb-3=
"00000000"
w:csb-0=
"80000000"
w:csb-1=
"00000000"
/>
</w:font>
<w:font
w:name=
"@宋体"
>
<w:panose-1
w:val=
"02010600030101010101"
/>
<w:charset
w:val=
"86"
/>
<w:family
w:val=
"auto"
/>
<w:pitch
w:val=
"variable"
/>
<w:sig
w:usb-0=
"00000003"
w:usb-1=
"288F0000"
w:usb-2=
"00000016"
w:usb-3=
"00000000"
w:csb-0=
"00040001"
w:csb-1=
"00000000"
/>
</w:font>
</w:fonts>
<w:body>
<wx:sect>
<w:p><w:pPr><w:jc
w:val=
"right"
/><w:rPr><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr></w:pPr></w:p><w:p><w:pPr><w:jc
w:val=
"center"
/><w:rPr><w:b/><w:bCs/><w:sz
w:val=
"28"
/><w:szCs
w:val=
"28"
/></w:rPr></w:pPr><w:r><w:rPr><w:rFonts
w:hint=
"eastAsia"
/><w:b/><w:bCs/><w:sz
w:val=
"28"
/><w:szCs
w:val=
"28"
/><w:lang
w:val=
"en-US"
w:eastAsia=
"zh-CN"
/></w:rPr><w:t>
检测通知单
</w:t></w:r></w:p><w:tbl><w:tblPr><w:tblStyle
w:val=
"6"
/><w:tblW
w:w=
"6283"
w:type=
"pct"
/><w:tblInd
w:w=
"-1059"
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=
"fixed"
/><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=
"2100"
/><w:gridCol
w:w=
"2610"
/><w:gridCol
w:w=
"1910"
/><w:gridCol
w:w=
"1600"
/><w:gridCol
w:w=
"2490"
/></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:tc><w:tcPr><w:tcW
w:w=
"980"
w:type=
"pct"
/><w:shd
w:val=
"clear"
w:color=
"auto"
w:fill=
"auto"
/><w:vAlign
w:val=
"center"
/></w:tcPr><w:p><w:pPr><w:jc
w:val=
"left"
/><w:rPr><w:rFonts
w:hint=
"default"
w:ascii=
"宋体"
w:hAnsi=
"宋体"
w:eastAsia=
"宋体"
/><w:sz
w:val=
"18"
/><w:szCs
w:val=
"18"
/><w:lang
w:val=
"en-US"
w:eastAsia=
"zh-CN"
/></w:rPr></w:pPr><w:r><w:rPr><w:rFonts
w:hint=
"eastAsia"
w:ascii=
"宋体"
w:hAnsi=
"宋体"
w:eastAsia=
"宋体"
/><w:sz
w:val=
"18"
/><w:szCs
w:val=
"18"
/><w:lang
w:val=
"en-US"
w:eastAsia=
"zh-CN"
/></w:rPr><w:t
xml:space=
"preserve"
>
检测人:
</w:t></w:r><w:r><w:rPr><w:rFonts
w:hint=
"eastAsia"
w:ascii=
"宋体"
w:hAnsi=
"宋体"
w:eastAsia=
"宋体"
/><w:sz
w:val=
"18"
/><w:szCs
w:val=
"18"
/></w:rPr><w:t>
${userName}
</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW
w:w=
"1218"
w:type=
"pct"
/><w:shd
w:val=
"clear"
w:color=
"auto"
w:fill=
"auto"
/><w:vAlign
w:val=
"center"
/></w:tcPr><w:p><w:pPr><w:jc
w:val=
"left"
/><w:rPr><w:rFonts
w:hint=
"default"
w:ascii=
"宋体"
w:hAnsi=
"宋体"
w:eastAsia=
"宋体"
/><w:sz
w:val=
"18"
/><w:szCs
w:val=
"18"
/><w:lang
w:val=
"en-US"
w:eastAsia=
"zh-CN"
/></w:rPr></w:pPr><w:r><w:rPr><w:rFonts
w:hint=
"eastAsia"
w:ascii=
"宋体"
w:hAnsi=
"宋体"
w:eastAsia=
"宋体"
/><w:sz
w:val=
"18"
/><w:szCs
w:val=
"18"
/><w:lang
w:val=
"en-US"
w:eastAsia=
"zh-CN"
/></w:rPr><w:t>
要求完成日期:
</w:t></w:r><w:r><w:rPr><w:rFonts
w:hint=
"eastAsia"
w:ascii=
"宋体"
w:hAnsi=
"宋体"
w:eastAsia=
"宋体"
/><w:sz
w:val=
"18"
/><w:szCs
w:val=
"18"
/></w:rPr><w:t>
${finishDate}
</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW
w:w=
"891"
w:type=
"pct"
/><w:shd
w:val=
"clear"
w:color=
"auto"
w:fill=
"auto"
/><w:vAlign
w:val=
"center"
/></w:tcPr><w:p><w:pPr><w:jc
w:val=
"left"
/><w:rPr><w:rFonts
w:hint=
"default"
w:ascii=
"宋体"
w:hAnsi=
"宋体"
w:eastAsia=
"宋体"
/><w:sz
w:val=
"18"
/><w:szCs
w:val=
"18"
/><w:lang
w:val=
"en-US"
w:eastAsia=
"zh-CN"
/></w:rPr></w:pPr><w:r><w:rPr><w:rFonts
w:hint=
"eastAsia"
w:ascii=
"宋体"
w:hAnsi=
"宋体"
w:eastAsia=
"宋体"
/><w:sz
w:val=
"18"
/><w:szCs
w:val=
"18"
/><w:lang
w:val=
"en-US"
w:eastAsia=
"zh-CN"
/></w:rPr><w:t>
发样日期:
</w:t></w:r><w:r><w:rPr><w:rFonts
w:hint=
"eastAsia"
w:ascii=
"宋体"
w:hAnsi=
"宋体"
w:eastAsia=
"宋体"
/><w:sz
w:val=
"18"
/><w:szCs
w:val=
"18"
/></w:rPr><w:t>
${pfTime}
</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW
w:w=
"746"
w:type=
"pct"
/><w:shd
w:val=
"clear"
w:color=
"auto"
w:fill=
"auto"
/><w:vAlign
w:val=
"center"
/></w:tcPr><w:p><w:pPr><w:jc
w:val=
"left"
/><w:rPr><w:rFonts
w:hint=
"default"
w:ascii=
"宋体"
w:hAnsi=
"宋体"
w:eastAsia=
"宋体"
/><w:sz
w:val=
"18"
/><w:szCs
w:val=
"18"
/><w:lang
w:val=
"en-US"
w:eastAsia=
"zh-CN"
/></w:rPr></w:pPr><w:r><w:rPr><w:rFonts
w:hint=
"eastAsia"
w:ascii=
"宋体"
w:hAnsi=
"宋体"
w:eastAsia=
"宋体"
/><w:sz
w:val=
"18"
/><w:szCs
w:val=
"18"
/><w:lang
w:val=
"en-US"
w:eastAsia=
"zh-CN"
/></w:rPr><w:t>
签发:
</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW
w:w=
"1162"
w:type=
"pct"
/><w:shd
w:val=
"clear"
w:color=
"auto"
w:fill=
"auto"
/><w:vAlign
w:val=
"center"
/></w:tcPr><w:p><w:pPr><w:jc
w:val=
"left"
/><w:rPr><w:rFonts
w:hint=
"default"
w:ascii=
"宋体"
w:hAnsi=
"宋体"
w:eastAsia=
"宋体"
/><w:sz
w:val=
"18"
/><w:szCs
w:val=
"18"
/><w:lang
w:val=
"en-US"
w:eastAsia=
"zh-CN"
/></w:rPr></w:pPr><w:r><w:rPr><w:rFonts
w:hint=
"eastAsia"
w:ascii=
"宋体"
w:hAnsi=
"宋体"
w:eastAsia=
"宋体"
/><w:sz
w:val=
"18"
/><w:szCs
w:val=
"18"
/><w:lang
w:val=
"en-US"
w:eastAsia=
"zh-CN"
/></w:rPr><w:t>
签收:
</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:tc><w:tcPr><w:tcW
w:w=
"980"
w:type=
"pct"
/><w:shd
w:val=
"clear"
w:color=
"auto"
w:fill=
"auto"
/><w:vAlign
w:val=
"center"
/></w:tcPr><w:p><w:pPr><w:jc
w:val=
"left"
/><w:rPr><w:rFonts
w:hint=
"default"
w:ascii=
"宋体"
w:hAnsi=
"宋体"
w:eastAsia=
"宋体"
/><w:sz
w:val=
"18"
/><w:szCs
w:val=
"18"
/><w:lang
w:val=
"en-US"
w:eastAsia=
"zh-CN"
/></w:rPr></w:pPr><w:r><w:rPr><w:rFonts
w:hint=
"eastAsia"
w:ascii=
"宋体"
w:hAnsi=
"宋体"
w:eastAsia=
"宋体"
/><w:sz
w:val=
"18"
/><w:szCs
w:val=
"18"
/><w:lang
w:val=
"en-US"
w:eastAsia=
"zh-CN"
/></w:rPr><w:t
xml:space=
"preserve"
>
检测人:
</w:t></w:r><w:r><w:rPr><w:rFonts
w:hint=
"eastAsia"
w:ascii=
"宋体"
w:hAnsi=
"宋体"
w:eastAsia=
"宋体"
/><w:sz
w:val=
"18"
/><w:szCs
w:val=
"18"
/></w:rPr><w:t>
${userName}
</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW
w:w=
"1218"
w:type=
"pct"
/><w:shd
w:val=
"clear"
w:color=
"auto"
w:fill=
"auto"
/><w:vAlign
w:val=
"center"
/></w:tcPr><w:p><w:pPr><w:jc
w:val=
"left"
/><w:rPr><w:rFonts
w:hint=
"default"
w:ascii=
"宋体"
w:hAnsi=
"宋体"
w:eastAsia=
"宋体"
/><w:sz
w:val=
"18"
/><w:szCs
w:val=
"18"
/><w:lang
w:val=
"en-US"
w:eastAsia=
"zh-CN"
/></w:rPr></w:pPr><w:r><w:rPr><w:rFonts
w:hint=
"eastAsia"
w:ascii=
"宋体"
w:hAnsi=
"宋体"
w:eastAsia=
"宋体"
/><w:sz
w:val=
"18"
/><w:szCs
w:val=
"18"
/><w:lang
w:val=
"en-US"
w:eastAsia=
"zh-CN"
/></w:rPr><w:t>
要求完成日期:
</w:t></w:r><w:r><w:rPr><w:rFonts
w:hint=
"eastAsia"
w:ascii=
"宋体"
w:hAnsi=
"宋体"
w:eastAsia=
"宋体"
/><w:sz
w:val=
"18"
/><w:szCs
w:val=
"18"
/></w:rPr><w:t>
${finishDate}
</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW
w:w=
"891"
w:type=
"pct"
/><w:shd
w:val=
"clear"
w:color=
"auto"
w:fill=
"auto"
/><w:vAlign
w:val=
"center"
/></w:tcPr><w:p><w:pPr><w:jc
w:val=
"left"
/><w:rPr><w:rFonts
w:hint=
"default"
w:ascii=
"宋体"
w:hAnsi=
"宋体"
w:eastAsia=
"宋体"
/><w:sz
w:val=
"18"
/><w:szCs
w:val=
"18"
/><w:lang
w:val=
"en-US"
w:eastAsia=
"zh-CN"
/></w:rPr></w:pPr><w:r><w:rPr><w:rFonts
w:hint=
"eastAsia"
w:ascii=
"宋体"
w:hAnsi=
"宋体"
w:eastAsia=
"宋体"
/><w:sz
w:val=
"18"
/><w:szCs
w:val=
"18"
/><w:lang
w:val=
"en-US"
w:eastAsia=
"zh-CN"
/></w:rPr><w:t>
发样日期:
</w:t></w:r><w:r><w:rPr><w:rFonts
w:hint=
"eastAsia"
w:ascii=
"宋体"
w:hAnsi=
"宋体"
w:eastAsia=
"宋体"
/><w:sz
w:val=
"18"
/><w:szCs
w:val=
"18"
/></w:rPr><w:t>
${pfTime}
</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW
w:w=
"746"
w:type=
"pct"
/><w:shd
w:val=
"clear"
w:color=
"auto"
w:fill=
"auto"
/><w:vAlign
w:val=
"center"
/></w:tcPr><w:p><w:pPr><w:jc
w:val=
"left"
/><w:rPr><w:rFonts
w:hint=
"default"
w:ascii=
"宋体"
w:hAnsi=
"宋体"
w:eastAsia=
"宋体"
/><w:sz
w:val=
"18"
/><w:szCs
w:val=
"18"
/><w:lang
w:val=
"en-US"
w:eastAsia=
"zh-CN"
/></w:rPr></w:pPr><w:r><w:rPr><w:rFonts
w:hint=
"eastAsia"
w:ascii=
"宋体"
w:hAnsi=
"宋体"
w:eastAsia=
"宋体"
/><w:sz
w:val=
"18"
/><w:szCs
w:val=
"18"
/><w:lang
w:val=
"en-US"
w:eastAsia=
"zh-CN"
/></w:rPr><w:t>
签发:
</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW
w:w=
"1162"
w:type=
"pct"
/><w:shd
w:val=
"clear"
w:color=
"auto"
w:fill=
"auto"
/><w:vAlign
w:val=
"center"
/></w:tcPr><w:p><w:pPr><w:jc
w:val=
"left"
/><w:rPr><w:rFonts
w:hint=
"default"
w:ascii=
"宋体"
w:hAnsi=
"宋体"
w:eastAsia=
"宋体"
/><w:sz
w:val=
"18"
/><w:szCs
w:val=
"18"
/><w:lang
w:val=
"en-US"
w:eastAsia=
"zh-CN"
/></w:rPr></w:pPr><w:r><w:rPr><w:rFonts
w:hint=
"eastAsia"
w:ascii=
"宋体"
w:hAnsi=
"宋体"
w:eastAsia=
"宋体"
/><w:sz
w:val=
"18"
/><w:szCs
w:val=
"18"
/><w:lang
w:val=
"en-US"
w:eastAsia=
"zh-CN"
/></w:rPr><w:t>
签收:
</w:t></w:r></w:p></w:tc></w:tr>
...
@@ -14,4 +102,7 @@
...
@@ -14,4 +102,7 @@
<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=
"692"
w:hRule=
"atLeast"
/></w:trPr><w:tc><w:tcPr><w:tcW
w:w=
"980"
w:type=
"pct"
/><w:shd
w:val=
"clear"
w:color=
"auto"
w:fill=
"auto"
/><w:vAlign
w:val=
"center"
/></w:tcPr><w:p><w:pPr><w:jc
w:val=
"left"
/><w:rPr><w:rFonts
w:ascii=
"宋体"
w:hAnsi=
"宋体"
w:eastAsia=
"宋体"
/><w:sz
w:val=
"18"
/><w:szCs
w:val=
"18"
/></w:rPr></w:pPr><w:r><w:rPr><w:rFonts
w:hint=
"eastAsia"
w:ascii=
"宋体"
w:hAnsi=
"宋体"
w:eastAsia=
"宋体"
/><w:sz
w:val=
"18"
/><w:szCs
w:val=
"18"
/></w:rPr><w:t>
${projectName}
</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW
w:w=
"1218"
w:type=
"pct"
/><w:shd
w:val=
"clear"
w:color=
"auto"
w:fill=
"auto"
/><w:vAlign
w:val=
"center"
/></w:tcPr><w:p><w:pPr><w:jc
w:val=
"left"
/><w:rPr><w:rFonts
w:ascii=
"宋体"
w:hAnsi=
"宋体"
w:eastAsia=
"宋体"
/><w:sz
w:val=
"18"
/><w:szCs
w:val=
"18"
/></w:rPr></w:pPr><w:r><w:rPr><w:rFonts
w:hint=
"eastAsia"
w:ascii=
"宋体"
w:hAnsi=
"宋体"
w:eastAsia=
"宋体"
/><w:sz
w:val=
"18"
/><w:szCs
w:val=
"18"
/></w:rPr><w:t>
${projectCode}
</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW
w:w=
"891"
w:type=
"pct"
/><w:shd
w:val=
"clear"
w:color=
"auto"
w:fill=
"auto"
/><w:vAlign
w:val=
"center"
/></w:tcPr><w:p><w:pPr><w:jc
w:val=
"left"
/><w:rPr><w:rFonts
w:ascii=
"宋体"
w:hAnsi=
"宋体"
w:eastAsia=
"宋体"
/><w:sz
w:val=
"18"
/><w:szCs
w:val=
"18"
/></w:rPr></w:pPr><w:r><w:rPr><w:rFonts
w:hint=
"eastAsia"
w:ascii=
"宋体"
w:hAnsi=
"宋体"
w:eastAsia=
"宋体"
/><w:sz
w:val=
"18"
/><w:szCs
w:val=
"18"
/></w:rPr><w:t>
${item.name}
</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW
w:w=
"746"
w:type=
"pct"
/><w:shd
w:val=
"clear"
w:color=
"auto"
w:fill=
"auto"
/><w:vAlign
w:val=
"center"
/></w:tcPr><w:p><w:pPr><w:jc
w:val=
"left"
/><w:rPr><w:rFonts
w:ascii=
"宋体"
w:hAnsi=
"宋体"
w:eastAsia=
"宋体"
/><w:sz
w:val=
"18"
/><w:szCs
w:val=
"18"
/></w:rPr></w:pPr><w:r><w:rPr><w:rFonts
w:hint=
"eastAsia"
w:ascii=
"宋体"
w:hAnsi=
"宋体"
w:eastAsia=
"宋体"
/><w:sz
w:val=
"18"
/><w:szCs
w:val=
"18"
/></w:rPr><w:t>
${item.parallelCode}
</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW
w:w=
"1162"
w:type=
"pct"
/><w:shd
w:val=
"clear"
w:color=
"auto"
w:fill=
"auto"
/><w:vAlign
w:val=
"center"
/></w:tcPr><w:p><w:pPr><w:jc
w:val=
"left"
/><w:rPr><w:rFonts
w:ascii=
"宋体"
w:hAnsi=
"宋体"
w:eastAsia=
"宋体"
/><w:sz
w:val=
"18"
/><w:szCs
w:val=
"18"
/></w:rPr></w:pPr><w:r><w:rPr><w:rFonts
w:hint=
"eastAsia"
w:ascii=
"宋体"
w:hAnsi=
"宋体"
w:eastAsia=
"宋体"
/><w:sz
w:val=
"18"
/><w:szCs
w:val=
"18"
/></w:rPr><w:t>
${item.teamName}
</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=
"692"
w:hRule=
"atLeast"
/></w:trPr><w:tc><w:tcPr><w:tcW
w:w=
"980"
w:type=
"pct"
/><w:shd
w:val=
"clear"
w:color=
"auto"
w:fill=
"auto"
/><w:vAlign
w:val=
"center"
/></w:tcPr><w:p><w:pPr><w:jc
w:val=
"left"
/><w:rPr><w:rFonts
w:ascii=
"宋体"
w:hAnsi=
"宋体"
w:eastAsia=
"宋体"
/><w:sz
w:val=
"18"
/><w:szCs
w:val=
"18"
/></w:rPr></w:pPr><w:r><w:rPr><w:rFonts
w:hint=
"eastAsia"
w:ascii=
"宋体"
w:hAnsi=
"宋体"
w:eastAsia=
"宋体"
/><w:sz
w:val=
"18"
/><w:szCs
w:val=
"18"
/></w:rPr><w:t>
${projectName}
</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW
w:w=
"1218"
w:type=
"pct"
/><w:shd
w:val=
"clear"
w:color=
"auto"
w:fill=
"auto"
/><w:vAlign
w:val=
"center"
/></w:tcPr><w:p><w:pPr><w:jc
w:val=
"left"
/><w:rPr><w:rFonts
w:ascii=
"宋体"
w:hAnsi=
"宋体"
w:eastAsia=
"宋体"
/><w:sz
w:val=
"18"
/><w:szCs
w:val=
"18"
/></w:rPr></w:pPr><w:r><w:rPr><w:rFonts
w:hint=
"eastAsia"
w:ascii=
"宋体"
w:hAnsi=
"宋体"
w:eastAsia=
"宋体"
/><w:sz
w:val=
"18"
/><w:szCs
w:val=
"18"
/></w:rPr><w:t>
${projectCode}
</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW
w:w=
"891"
w:type=
"pct"
/><w:shd
w:val=
"clear"
w:color=
"auto"
w:fill=
"auto"
/><w:vAlign
w:val=
"center"
/></w:tcPr><w:p><w:pPr><w:jc
w:val=
"left"
/><w:rPr><w:rFonts
w:ascii=
"宋体"
w:hAnsi=
"宋体"
w:eastAsia=
"宋体"
/><w:sz
w:val=
"18"
/><w:szCs
w:val=
"18"
/></w:rPr></w:pPr><w:r><w:rPr><w:rFonts
w:hint=
"eastAsia"
w:ascii=
"宋体"
w:hAnsi=
"宋体"
w:eastAsia=
"宋体"
/><w:sz
w:val=
"18"
/><w:szCs
w:val=
"18"
/></w:rPr><w:t>
${item.name}
</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW
w:w=
"746"
w:type=
"pct"
/><w:shd
w:val=
"clear"
w:color=
"auto"
w:fill=
"auto"
/><w:vAlign
w:val=
"center"
/></w:tcPr><w:p><w:pPr><w:jc
w:val=
"left"
/><w:rPr><w:rFonts
w:ascii=
"宋体"
w:hAnsi=
"宋体"
w:eastAsia=
"宋体"
/><w:sz
w:val=
"18"
/><w:szCs
w:val=
"18"
/></w:rPr></w:pPr><w:r><w:rPr><w:rFonts
w:hint=
"eastAsia"
w:ascii=
"宋体"
w:hAnsi=
"宋体"
w:eastAsia=
"宋体"
/><w:sz
w:val=
"18"
/><w:szCs
w:val=
"18"
/></w:rPr><w:t>
${item.parallelCode}
</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW
w:w=
"1162"
w:type=
"pct"
/><w:shd
w:val=
"clear"
w:color=
"auto"
w:fill=
"auto"
/><w:vAlign
w:val=
"center"
/></w:tcPr><w:p><w:pPr><w:jc
w:val=
"left"
/><w:rPr><w:rFonts
w:ascii=
"宋体"
w:hAnsi=
"宋体"
w:eastAsia=
"宋体"
/><w:sz
w:val=
"18"
/><w:szCs
w:val=
"18"
/></w:rPr></w:pPr><w:r><w:rPr><w:rFonts
w:hint=
"eastAsia"
w:ascii=
"宋体"
w:hAnsi=
"宋体"
w:eastAsia=
"宋体"
/><w:sz
w:val=
"18"
/><w:szCs
w:val=
"18"
/></w:rPr><w:t>
${item.teamName}
</w:t></w:r></w:p></w:tc></w:tr>
<!-- </#list> -->
<!-- </#list> -->
</w:tbl><w:p><w:pPr><w:jc
w:val=
"left"
/><w:rPr><w:rFonts
w:hint=
"eastAsia"
/><w:b/><w:bCs/><w:sz
w:val=
"28"
/><w:szCs
w:val=
"28"
/></w:rPr></w:pPr><w:bookmarkStart
w:id=
"0"
w:name=
"_GoBack"
/><w:bookmarkEnd
w:id=
"0"
/></w:p><w:sectPr><w:headerReference
r:id=
"rId3"
w:type=
"default"
/><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=
"/customXml/_rels/item1.xml.rels"
pkg:contentType=
"application/vnd.openxmlformats-package.relationships+xml"
><pkg:xmlData><Relationships
xmlns=
"http://schemas.openxmlformats.org/package/2006/relationships"
><Relationship
Id=
"rId1"
Type=
"http://schemas.openxmlformats.org/officeDocument/2006/relationships/customXmlProps"
Target=
"itemProps1.xml"
/></Relationships></pkg:xmlData></pkg:part><pkg:part
pkg:name=
"/customXml/item1.xml"
pkg:contentType=
"application/xml"
><pkg:xmlData><s:customData
xmlns=
"http://www.wps.cn/officeDocument/2013/wpsCustomData"
xmlns:s=
"http://www.wps.cn/officeDocument/2013/wpsCustomData"
><customSectProps><customSectPr/></customSectProps></s:customData></pkg:xmlData></pkg:part><pkg:part
pkg:name=
"/customXml/itemProps1.xml"
pkg:contentType=
"application/vnd.openxmlformats-officedocument.customXmlProperties+xml"
><pkg:xmlData><ds:datastoreItem
ds:itemID=
"{B1977F7D-205B-4081-913C-38D41E755F92}"
xmlns:ds=
"http://schemas.openxmlformats.org/officeDocument/2006/customXml"
><ds:schemaRefs><ds:schemaRef
ds:uri=
"http://www.wps.cn/officeDocument/2013/wpsCustomData"
/></ds:schemaRefs></ds:datastoreItem></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>
45
</Words><Characters>
261
</Characters><Lines>
2
</Lines><Paragraphs>
1
</Paragraphs><TotalTime>
6
</TotalTime><ScaleCrop>
false
</ScaleCrop><LinksUpToDate>
false
</LinksUpToDate><CharactersWithSpaces>
305
</CharactersWithSpaces><Application>
WPS Office_11.1.0.10314_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"
>
2020-11-20T06:35:00Z
</dcterms:created><dc:creator>
秦虎
</dc:creator><cp:lastModifiedBy>
竹天卫
</cp:lastModifiedBy><dcterms:modified
xsi:type=
"dcterms:W3CDTF"
>
2021-02-24T08:17:18Z
</dcterms:modified><cp:revision>
15
</cp:revision></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-11.1.0.10314
</vt:lpwstr></property></Properties></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=
"00000003"
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=
"C000247B"
w:usb2=
"00000009"
w:usb3=
"00000000"
w:csb0=
"200001FF"
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=
"A00002BF"
w:usb1=
"38CF7CFA"
w:usb2=
"00000016"
w:usb3=
"00000000"
w:csb0=
"0004000F"
w:csb1=
"00000000"
/></w:font></w:fonts></pkg:xmlData></pkg:part><pkg:part
pkg:name=
"/word/header1.xml"
pkg:contentType=
"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml"
><pkg:xmlData><w:hdr
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:w10=
"urn:schemas-microsoft-com:office:word"
xmlns:w=
"http://schemas.openxmlformats.org/wordprocessingml/2006/main"
xmlns:w14=
"http://schemas.microsoft.com/office/word/2010/wordml"
xmlns:w15=
"http://schemas.microsoft.com/office/word/2012/wordml"
xmlns: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:p><w:pPr><w:pStyle
w:val=
"4"
/><w:jc
w:val=
"both"
/><w:rPr><w:color
w:val=
"767171"
/><w:sz
w:val=
"21"
/><w:szCs
w:val=
"21"
/></w:rPr></w:pPr><w:r><w:rPr><w:rFonts
w:hint=
"eastAsia"
/><w:color
w:val=
"767171"
/><w:sz
w:val=
"21"
/><w:szCs
w:val=
"21"
/></w:rPr><w:t
xml:space=
"preserve"
>
管理记录
</w:t></w:r><w:r><w:rPr><w:color
w:val=
"767171"
/><w:sz
w:val=
"21"
/><w:szCs
w:val=
"21"
/></w:rPr><w:t
xml:space=
"preserve"
>
</w:t></w:r><w:r><w:rPr><w:rFonts
w:hint=
"eastAsia"
/><w:color
w:val=
"767171"
/><w:sz
w:val=
"21"
/><w:szCs
w:val=
"21"
/></w:rPr><w:t
xml:space=
"preserve"
>
服务和供应品的采购
</w:t></w:r><w:r><w:rPr><w:color
w:val=
"767171"
/><w:sz
w:val=
"21"
/><w:szCs
w:val=
"21"
/></w:rPr><w:t
xml:space=
"preserve"
>
</w:t></w:r><w:r><w:rPr><w:rFonts
w:hint=
"eastAsia"
/><w:color
w:val=
"767171"
/><w:sz
w:val=
"21"
/><w:szCs
w:val=
"21"
/></w:rPr><w:t
xml:space=
"preserve"
>
</w:t></w:r><w:r><w:rPr><w:color
w:val=
"767171"
/><w:sz
w:val=
"21"
/><w:szCs
w:val=
"21"
/></w:rPr><w:t
xml:space=
"preserve"
>
</w:t></w:r><w:r><w:rPr><w:rFonts
w:hint=
"eastAsia"
/><w:color
w:val=
"767171"
/><w:sz
w:val=
"21"
/><w:szCs
w:val=
"21"
/></w:rPr><w:t>
采购计划
</w:t></w:r><w:r><w:rPr><w:color
w:val=
"767171"
/><w:sz
w:val=
"21"
/><w:szCs
w:val=
"21"
/></w:rPr><w:tab/></w:r><w:r><w:rPr><w:rFonts
w:hint=
"eastAsia"
/><w:color
w:val=
"767171"
/><w:sz
w:val=
"21"
/><w:szCs
w:val=
"21"
/></w:rPr><w:t>
第
</w:t></w:r><w:r><w:rPr><w:color
w:val=
"767171"
/><w:sz
w:val=
"21"
/><w:szCs
w:val=
"21"
/></w:rPr><w:fldChar
w:fldCharType=
"begin"
/></w:r><w:r><w:rPr><w:color
w:val=
"767171"
/><w:sz
w:val=
"21"
/><w:szCs
w:val=
"21"
/></w:rPr><w:instrText
xml:space=
"preserve"
>
</w:instrText></w:r><w:r><w:rPr><w:rFonts
w:hint=
"eastAsia"
/><w:color
w:val=
"767171"
/><w:sz
w:val=
"21"
/><w:szCs
w:val=
"21"
/></w:rPr><w:instrText
xml:space=
"preserve"
>
PAGE \* MERGEFORMAT
</w:instrText></w:r><w:r><w:rPr><w:color
w:val=
"767171"
/><w:sz
w:val=
"21"
/><w:szCs
w:val=
"21"
/></w:rPr><w:instrText
xml:space=
"preserve"
>
</w:instrText></w:r><w:r><w:rPr><w:color
w:val=
"767171"
/><w:sz
w:val=
"21"
/><w:szCs
w:val=
"21"
/></w:rPr><w:fldChar
w:fldCharType=
"separate"
/></w:r><w:r><w:rPr><w:color
w:val=
"767171"
/><w:sz
w:val=
"21"
/><w:szCs
w:val=
"21"
/></w:rPr><w:t>
1
</w:t></w:r><w:r><w:rPr><w:color
w:val=
"767171"
/><w:sz
w:val=
"21"
/><w:szCs
w:val=
"21"
/></w:rPr><w:fldChar
w:fldCharType=
"end"
/></w:r><w:r><w:rPr><w:rFonts
w:hint=
"eastAsia"
/><w:color
w:val=
"767171"
/><w:sz
w:val=
"21"
/><w:szCs
w:val=
"21"
/></w:rPr><w:t>
页 共
</w:t></w:r><w:r><w:rPr><w:color
w:val=
"767171"
/><w:sz
w:val=
"21"
/><w:szCs
w:val=
"21"
/></w:rPr><w:fldChar
w:fldCharType=
"begin"
/></w:r><w:r><w:rPr><w:color
w:val=
"767171"
/><w:sz
w:val=
"21"
/><w:szCs
w:val=
"21"
/></w:rPr><w:instrText
xml:space=
"preserve"
>
</w:instrText></w:r><w:r><w:rPr><w:rFonts
w:hint=
"eastAsia"
/><w:color
w:val=
"767171"
/><w:sz
w:val=
"21"
/><w:szCs
w:val=
"21"
/></w:rPr><w:instrText
xml:space=
"preserve"
>
NUMPAGES \* MERGEFORMAT
</w:instrText></w:r><w:r><w:rPr><w:color
w:val=
"767171"
/><w:sz
w:val=
"21"
/><w:szCs
w:val=
"21"
/></w:rPr><w:instrText
xml:space=
"preserve"
>
</w:instrText></w:r><w:r><w:rPr><w:color
w:val=
"767171"
/><w:sz
w:val=
"21"
/><w:szCs
w:val=
"21"
/></w:rPr><w:fldChar
w:fldCharType=
"separate"
/></w:r><w:r><w:rPr><w:color
w:val=
"767171"
/><w:sz
w:val=
"21"
/><w:szCs
w:val=
"21"
/></w:rPr><w:t>
1
</w:t></w:r><w:r><w:rPr><w:color
w:val=
"767171"
/><w:sz
w:val=
"21"
/><w:szCs
w:val=
"21"
/></w:rPr><w:fldChar
w:fldCharType=
"end"
/></w:r><w:r><w:rPr><w:rFonts
w:hint=
"eastAsia"
/><w:color
w:val=
"767171"
/><w:sz
w:val=
"21"
/><w:szCs
w:val=
"21"
/></w:rPr><w:t>
页
</w:t></w:r></w:p></w:hdr></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"
mc:Ignorable=
"w14"
><w:zoom
w:percent=
"100"
/><w:doNotDisplayPageBoundaries
w:val=
"1"
/><w:bordersDoNotSurroundHeader
w:val=
"0"
/><w:bordersDoNotSurroundFooter
w:val=
"0"
/><w:doNotTrackMoves/><w:documentProtection
w:enforcement=
"0"
/><w:defaultTabStop
w:val=
"420"
/><w:drawingGridVerticalSpacing
w:val=
"156"
/><w:displayHorizontalDrawingGridEvery
w:val=
"1"
/><w:displayVerticalDrawingGridEvery
w:val=
"1"
/><w:noPunctuationKerning
w:val=
"1"
/><w:characterSpacingControl
w:val=
"compressPunctuation"
/><w:compat><w:spaceForUL/><w:balanceSingleByteDoubleByteWidth/><w:doNotLeaveBackslashAlone/><w:ulTrailSpace/><w:doNotExpandShiftReturn/><w:adjustLineHeightInTable/><w:doNotWrapTextWithPunct/><w:doNotUseEastAsianBreakRules/><w:useFELayout/><w:useNormalStyleForList/><w:doNotUseIndentAsNumberingTabStop/><w:useAltKinsokuLineBreakRules/><w:allowSpaceOfSameStyleInTable/><w:doNotSuppressIndentation/><w:doNotAutofitConstrainedTables/><w:autofitToFirstFixedWidthCell/><w:displayHangulFixedWidth/><w:splitPgBreakAndParaMark/><w:doNotVertAlignCellWithSp/><w:doNotBreakConstrainedForcedTable/><w:doNotVertAlignInTxbx/><w:useAnsiKerningPairs/><w:cachedColBalance/><w:compatSetting
w:name=
"compatibilityMode"
w:uri=
"http://schemas.microsoft.com/office/word"
w:val=
"11"
/></w:compat><w:rsids><w:rsidRoot
w:val=
"00E97D80"
/><w:rsid
w:val=
"00026FEE"
/><w:rsid
w:val=
"00037DD6"
/><w:rsid
w:val=
"00155055"
/><w:rsid
w:val=
"00226AA7"
/><w:rsid
w:val=
"003B5F03"
/><w:rsid
w:val=
"003C2257"
/><w:rsid
w:val=
"005648F3"
/><w:rsid
w:val=
"00583DE2"
/><w:rsid
w:val=
"00616EC1"
/><w:rsid
w:val=
"006375F5"
/><w:rsid
w:val=
"006F0C3E"
/><w:rsid
w:val=
"008E1D11"
/><w:rsid
w:val=
"00983816"
/><w:rsid
w:val=
"009A4833"
/><w:rsid
w:val=
"009F4577"
/><w:rsid
w:val=
"00AD1C5A"
/><w:rsid
w:val=
"00B034E4"
/><w:rsid
w:val=
"00B56F6F"
/><w:rsid
w:val=
"00BE1308"
/><w:rsid
w:val=
"00C11DA6"
/><w:rsid
w:val=
"00C551D5"
/><w:rsid
w:val=
"00C67E52"
/><w:rsid
w:val=
"00CC6EF0"
/><w:rsid
w:val=
"00D87243"
/><w:rsid
w:val=
"00DF4A77"
/><w:rsid
w:val=
"00E97D80"
/><w:rsid
w:val=
"00EB05E8"
/><w:rsid
w:val=
"00FF4979"
/><w:rsid
w:val=
"21510825"
/><w:rsid
w:val=
"23274956"
/><w:rsid
w:val=
"3F271E72"
/><w:rsid
w:val=
"4B1516C0"
/><w:rsid
w:val=
"51BB7559"
/><w:rsid
w:val=
"63A94D32"
/><w:rsid
w:val=
"663E7B0D"
/><w:rsid
w:val=
"6C493F3B"
/><w:rsid
w:val=
"6D962B54"
/><w:rsid
w:val=
"700E71DD"
/></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"
mc:Ignorable=
"w14"
><w:docDefaults><w:rPrDefault><w:rPr><w:rFonts
w:ascii=
"Times New Roman"
w:hAnsi=
"Times New Roman"
w:eastAsia=
"宋体"
w:cs=
"Times New Roman"
/></w:rPr></w:rPrDefault></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=
"9"
w:semiHidden=
"0"
w:name=
"heading 1"
/><w:lsdException
w:qFormat=
"1"
w:uiPriority=
"9"
w:name=
"heading 2"
/><w:lsdException
w:qFormat=
"1"
w:uiPriority=
"9"
w:name=
"heading 3"
/><w:lsdException
w:qFormat=
"1"
w:uiPriority=
"9"
w:name=
"heading 4"
/><w:lsdException
w:qFormat=
"1"
w:uiPriority=
"9"
w:name=
"heading 5"
/><w:lsdException
w:qFormat=
"1"
w:uiPriority=
"9"
w:name=
"heading 6"
/><w:lsdException
w:qFormat=
"1"
w:uiPriority=
"9"
w:name=
"heading 7"
/><w:lsdException
w:qFormat=
"1"
w:uiPriority=
"9"
w:name=
"heading 8"
/><w:lsdException
w:qFormat=
"1"
w:uiPriority=
"9"
w:name=
"heading 9"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"index 1"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"index 2"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"index 3"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"index 4"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"index 5"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"index 6"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"index 7"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"index 8"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"index 9"
/><w:lsdException
w:uiPriority=
"39"
w:name=
"toc 1"
/><w:lsdException
w:uiPriority=
"39"
w:name=
"toc 2"
/><w:lsdException
w:uiPriority=
"39"
w:name=
"toc 3"
/><w:lsdException
w:uiPriority=
"39"
w:name=
"toc 4"
/><w:lsdException
w:uiPriority=
"39"
w:name=
"toc 5"
/><w:lsdException
w:uiPriority=
"39"
w:name=
"toc 6"
/><w:lsdException
w:uiPriority=
"39"
w:name=
"toc 7"
/><w:lsdException
w:uiPriority=
"39"
w:name=
"toc 8"
/><w:lsdException
w:uiPriority=
"39"
w:name=
"toc 9"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Normal Indent"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"footnote text"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"annotation text"
/><w:lsdException
w:uiPriority=
"99"
w:semiHidden=
"0"
w:name=
"header"
/><w:lsdException
w:uiPriority=
"99"
w:semiHidden=
"0"
w:name=
"footer"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"index heading"
/><w:lsdException
w:qFormat=
"1"
w:uiPriority=
"35"
w:name=
"caption"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"table of figures"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"envelope address"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"envelope return"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"footnote reference"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"annotation reference"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"line number"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"page number"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"endnote reference"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"endnote text"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"table of authorities"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"macro"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"toa heading"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"List"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"List Bullet"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"List Number"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"List 2"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"List 3"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"List 4"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"List 5"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"List Bullet 2"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"List Bullet 3"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"List Bullet 4"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"List Bullet 5"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"List Number 2"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"List Number 3"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"List Number 4"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"List Number 5"
/><w:lsdException
w:qFormat=
"1"
w:unhideWhenUsed=
"0"
w:uiPriority=
"10"
w:semiHidden=
"0"
w:name=
"Title"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Closing"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Signature"
/><w:lsdException
w:uiPriority=
"1"
w:name=
"Default Paragraph Font"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Body Text"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Body Text Indent"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"List Continue"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"List Continue 2"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"List Continue 3"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"List Continue 4"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"List Continue 5"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Message Header"
/><w:lsdException
w:qFormat=
"1"
w:unhideWhenUsed=
"0"
w:uiPriority=
"11"
w:semiHidden=
"0"
w:name=
"Subtitle"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Salutation"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Date"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Body Text First Indent"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Body Text First Indent 2"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Note Heading"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Body Text 2"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Body Text 3"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Body Text Indent 2"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Body Text Indent 3"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Block Text"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Hyperlink"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"FollowedHyperlink"
/><w:lsdException
w:qFormat=
"1"
w:unhideWhenUsed=
"0"
w:uiPriority=
"22"
w:semiHidden=
"0"
w:name=
"Strong"
/><w:lsdException
w:qFormat=
"1"
w:unhideWhenUsed=
"0"
w:uiPriority=
"20"
w:semiHidden=
"0"
w:name=
"Emphasis"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Document Map"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Plain Text"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"E-mail Signature"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Normal (Web)"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"HTML Acronym"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"HTML Address"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"HTML Cite"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"HTML Code"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"HTML Definition"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"HTML Keyboard"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"HTML Preformatted"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"HTML Sample"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"HTML Typewriter"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"HTML Variable"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Normal Table"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"annotation subject"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Table Simple 1"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Table Simple 2"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Table Simple 3"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Table Classic 1"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Table Classic 2"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Table Classic 3"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Table Classic 4"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Table Colorful 1"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Table Colorful 2"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Table Colorful 3"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Table Columns 1"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Table Columns 2"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Table Columns 3"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Table Columns 4"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Table Columns 5"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Table Grid 1"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Table Grid 2"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Table Grid 3"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Table Grid 4"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Table Grid 5"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Table Grid 6"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Table Grid 7"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Table Grid 8"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Table List 1"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Table List 2"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Table List 3"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Table List 4"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Table List 5"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Table List 6"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Table List 7"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Table List 8"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Table 3D effects 1"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Table 3D effects 2"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Table 3D effects 3"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Table Contemporary"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Table Elegant"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Table Professional"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Table Subtle 1"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Table Subtle 2"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Table Web 1"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Table Web 2"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Table Web 3"
/><w:lsdException
w:uiPriority=
"99"
w:name=
"Balloon Text"
/><w:lsdException
w:unhideWhenUsed=
"0"
w:uiPriority=
"39"
w:semiHidden=
"0"
w:name=
"Table Grid"
/><w:lsdException
w:uiPriority=
"99"
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:jc
w:val=
"both"
/></w:pPr><w:rPr><w:rFonts
w:ascii=
"等线"
w:hAnsi=
"等线"
w:eastAsia=
"等线"
w:cs=
"Times New Roman"
/><w:kern
w:val=
"2"
/><w:sz
w:val=
"21"
/><w:szCs
w:val=
"22"
/><w:lang
w:val=
"en-US"
w:eastAsia=
"zh-CN"
w:bidi=
"ar-SA"
/></w:rPr></w:style><w:style
w:type=
"character"
w:default=
"1"
w:styleId=
"8"
><w:name
w:val=
"Default Paragraph Font"
/><w:semiHidden/><w:unhideWhenUsed/><w:uiPriority
w:val=
"1"
/></w:style><w:style
w:type=
"table"
w:default=
"1"
w:styleId=
"6"
><w:name
w:val=
"Normal Table"
/><w:semiHidden/><w:unhideWhenUsed/><w:uiPriority
w:val=
"99"
/><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:style
w:type=
"paragraph"
w:styleId=
"2"
><w:name
w:val=
"Balloon Text"
/><w:basedOn
w:val=
"1"
/><w:link
w:val=
"11"
/><w:semiHidden/><w:unhideWhenUsed/><w:uiPriority
w:val=
"99"
/><w:rPr><w:sz
w:val=
"18"
/><w:szCs
w:val=
"18"
/></w:rPr></w:style><w:style
w:type=
"paragraph"
w:styleId=
"3"
><w:name
w:val=
"footer"
/><w:basedOn
w:val=
"1"
/><w:link
w:val=
"10"
/><w:unhideWhenUsed/><w:uiPriority
w:val=
"99"
/><w:pPr><w:tabs><w:tab
w:val=
"center"
w:pos=
"4153"
/><w:tab
w:val=
"right"
w:pos=
"8306"
/></w:tabs><w:snapToGrid
w:val=
"0"
/><w:jc
w:val=
"left"
/></w:pPr><w:rPr><w:sz
w:val=
"18"
/><w:szCs
w:val=
"18"
/></w:rPr></w:style><w:style
w:type=
"paragraph"
w:styleId=
"4"
><w:name
w:val=
"header"
/><w:basedOn
w:val=
"1"
/><w:link
w:val=
"9"
/><w:unhideWhenUsed/><w:uiPriority
w:val=
"99"
/><w:pPr><w:pBdr><w:bottom
w:val=
"single"
w:color=
"auto"
w:sz=
"6"
w:space=
"1"
/></w:pBdr><w:tabs><w:tab
w:val=
"center"
w:pos=
"4153"
/><w:tab
w:val=
"right"
w:pos=
"8306"
/></w:tabs><w:snapToGrid
w:val=
"0"
/><w:jc
w:val=
"center"
/></w:pPr><w:rPr><w:sz
w:val=
"18"
/><w:szCs
w:val=
"18"
/></w:rPr></w:style><w:style
w:type=
"paragraph"
w:styleId=
"5"
><w:name
w:val=
"HTML Preformatted"
/><w:basedOn
w:val=
"1"
/><w:semiHidden/><w:unhideWhenUsed/><w:uiPriority
w:val=
"99"
/><w:pPr><w:tabs><w:tab
w:val=
"left"
w:pos=
"916"
/><w:tab
w:val=
"left"
w:pos=
"1832"
/><w:tab
w:val=
"left"
w:pos=
"2748"
/><w:tab
w:val=
"left"
w:pos=
"3664"
/><w:tab
w:val=
"left"
w:pos=
"4580"
/><w:tab
w:val=
"left"
w:pos=
"5496"
/><w:tab
w:val=
"left"
w:pos=
"6412"
/><w:tab
w:val=
"left"
w:pos=
"7328"
/><w:tab
w:val=
"left"
w:pos=
"8244"
/><w:tab
w:val=
"left"
w:pos=
"9160"
/><w:tab
w:val=
"left"
w:pos=
"10076"
/><w:tab
w:val=
"left"
w:pos=
"10992"
/><w:tab
w:val=
"left"
w:pos=
"11908"
/><w:tab
w:val=
"left"
w:pos=
"12824"
/><w:tab
w:val=
"left"
w:pos=
"13740"
/><w:tab
w:val=
"left"
w:pos=
"14656"
/></w:tabs><w:jc
w:val=
"left"
/></w:pPr><w:rPr><w:rFonts
w:hint=
"eastAsia"
w:ascii=
"宋体"
w:hAnsi=
"宋体"
w:eastAsia=
"宋体"
w:cs=
"宋体"
/><w:kern
w:val=
"0"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/><w:lang
w:val=
"en-US"
w:eastAsia=
"zh-CN"
w:bidi=
"ar"
/></w:rPr></w:style><w:style
w:type=
"table"
w:styleId=
"7"
><w:name
w:val=
"Table Grid"
/><w:basedOn
w:val=
"6"
/><w:uiPriority
w:val=
"39"
/><w:tblPr><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:tblPr></w:style><w:style
w:type=
"character"
w:customStyle=
"1"
w:styleId=
"9"
><w:name
w:val=
"页眉 字符"
/><w:link
w:val=
"4"
/><w:uiPriority
w:val=
"99"
/><w:rPr><w:sz
w:val=
"18"
/><w:szCs
w:val=
"18"
/></w:rPr></w:style><w:style
w:type=
"character"
w:customStyle=
"1"
w:styleId=
"10"
><w:name
w:val=
"页脚 字符"
/><w:link
w:val=
"3"
/><w:qFormat/><w:uiPriority
w:val=
"99"
/><w:rPr><w:sz
w:val=
"18"
/><w:szCs
w:val=
"18"
/></w:rPr></w:style><w:style
w:type=
"character"
w:customStyle=
"1"
w:styleId=
"11"
><w:name
w:val=
"批注框文本 字符"
/><w:link
w:val=
"2"
/><w:semiHidden/><w:uiPriority
w:val=
"99"
/><w:rPr><w:sz
w:val=
"18"
/><w:szCs
w:val=
"18"
/></w:rPr></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=
"Office 主题"
><a:themeElements><a:clrScheme
name=
"Office"
><a:dk1><a:sysClr
val=
"windowText"
lastClr=
"000000"
/></a:dk1><a:lt1><a:sysClr
val=
"window"
lastClr=
"FFFFFF"
/></a:lt1><a:dk2><a:srgbClr
val=
"44546A"
/></a:dk2><a:lt2><a:srgbClr
val=
"E7E6E6"
/></a:lt2><a:accent1><a:srgbClr
val=
"4472C4"
/></a:accent1><a:accent2><a:srgbClr
val=
"ED7D31"
/></a:accent2><a:accent3><a:srgbClr
val=
"A5A5A5"
/></a:accent3><a:accent4><a:srgbClr
val=
"FFC000"
/></a:accent4><a:accent5><a:srgbClr
val=
"5B9BD5"
/></a:accent5><a:accent6><a:srgbClr
val=
"70AD47"
/></a:accent6><a:hlink><a:srgbClr
val=
"0563C1"
/></a:hlink><a:folHlink><a:srgbClr
val=
"954F72"
/></a:folHlink></a:clrScheme><a:fontScheme
name=
"Office"
><a:majorFont><a:latin
typeface=
"等线 Light"
/><a:ea
typeface=
""
/><a:cs
typeface=
""
/><a:font
script=
"Jpan"
typeface=
"游ゴシック Light"
/><a:font
script=
"Hang"
typeface=
"맑은 고딕"
/><a:font
script=
"Hans"
typeface=
"等线 Light"
/><a:font
script=
"Hant"
typeface=
"新細明體"
/><a:font
script=
"Arab"
typeface=
"Times New Roman"
/><a:font
script=
"Hebr"
typeface=
"Times New Roman"
/><a:font
script=
"Thai"
typeface=
"Angsana New"
/><a:font
script=
"Ethi"
typeface=
"Nyala"
/><a:font
script=
"Beng"
typeface=
"Vrinda"
/><a:font
script=
"Gujr"
typeface=
"Shruti"
/><a:font
script=
"Khmr"
typeface=
"MoolBoran"
/><a:font
script=
"Knda"
typeface=
"Tunga"
/><a:font
script=
"Guru"
typeface=
"Raavi"
/><a:font
script=
"Cans"
typeface=
"Euphemia"
/><a:font
script=
"Cher"
typeface=
"Plantagenet Cherokee"
/><a:font
script=
"Yiii"
typeface=
"Microsoft Yi Baiti"
/><a:font
script=
"Tibt"
typeface=
"Microsoft Himalaya"
/><a:font
script=
"Thaa"
typeface=
"MV Boli"
/><a:font
script=
"Deva"
typeface=
"Mangal"
/><a:font
script=
"Telu"
typeface=
"Gautami"
/><a:font
script=
"Taml"
typeface=
"Latha"
/><a:font
script=
"Syrc"
typeface=
"Estrangelo Edessa"
/><a:font
script=
"Orya"
typeface=
"Kalinga"
/><a:font
script=
"Mlym"
typeface=
"Kartika"
/><a:font
script=
"Laoo"
typeface=
"DokChampa"
/><a:font
script=
"Sinh"
typeface=
"Iskoola Pota"
/><a:font
script=
"Mong"
typeface=
"Mongolian Baiti"
/><a:font
script=
"Viet"
typeface=
"Times New Roman"
/><a:font
script=
"Uigh"
typeface=
"Microsoft Uighur"
/><a:font
script=
"Geor"
typeface=
"Sylfaen"
/></a:majorFont><a:minorFont><a:latin
typeface=
"等线"
/><a:ea
typeface=
""
/><a:cs
typeface=
""
/><a:font
script=
"Jpan"
typeface=
"游明朝"
/><a:font
script=
"Hang"
typeface=
"맑은 고딕"
/><a:font
script=
"Hans"
typeface=
"等线"
/><a:font
script=
"Hant"
typeface=
"新細明體"
/><a:font
script=
"Arab"
typeface=
"Arial"
/><a:font
script=
"Hebr"
typeface=
"Arial"
/><a:font
script=
"Thai"
typeface=
"Cordia New"
/><a:font
script=
"Ethi"
typeface=
"Nyala"
/><a:font
script=
"Beng"
typeface=
"Vrinda"
/><a:font
script=
"Gujr"
typeface=
"Shruti"
/><a:font
script=
"Khmr"
typeface=
"DaunPenh"
/><a:font
script=
"Knda"
typeface=
"Tunga"
/><a:font
script=
"Guru"
typeface=
"Raavi"
/><a:font
script=
"Cans"
typeface=
"Euphemia"
/><a:font
script=
"Cher"
typeface=
"Plantagenet Cherokee"
/><a:font
script=
"Yiii"
typeface=
"Microsoft Yi Baiti"
/><a:font
script=
"Tibt"
typeface=
"Microsoft Himalaya"
/><a:font
script=
"Thaa"
typeface=
"MV Boli"
/><a:font
script=
"Deva"
typeface=
"Mangal"
/><a:font
script=
"Telu"
typeface=
"Gautami"
/><a:font
script=
"Taml"
typeface=
"Latha"
/><a:font
script=
"Syrc"
typeface=
"Estrangelo Edessa"
/><a:font
script=
"Orya"
typeface=
"Kalinga"
/><a:font
script=
"Mlym"
typeface=
"Kartika"
/><a:font
script=
"Laoo"
typeface=
"DokChampa"
/><a:font
script=
"Sinh"
typeface=
"Iskoola Pota"
/><a:font
script=
"Mong"
typeface=
"Mongolian Baiti"
/><a:font
script=
"Viet"
typeface=
"Arial"
/><a:font
script=
"Uigh"
typeface=
"Microsoft Uighur"
/><a:font
script=
"Geor"
typeface=
"Sylfaen"
/></a:minorFont></a:fontScheme><a:fmtScheme
name=
"Office"
><a:fillStyleLst><a:solidFill><a:schemeClr
val=
"phClr"
/></a:solidFill><a:gradFill
rotWithShape=
"1"
><a:gsLst><a:gs
pos=
"0"
><a:schemeClr
val=
"phClr"
><a:lumMod
val=
"110000"
/><a:satMod
val=
"105000"
/><a:tint
val=
"67000"
/></a:schemeClr></a:gs><a:gs
pos=
"50000"
><a:schemeClr
val=
"phClr"
><a:lumMod
val=
"105000"
/><a:satMod
val=
"103000"
/><a:tint
val=
"73000"
/></a:schemeClr></a:gs><a:gs
pos=
"100000"
><a:schemeClr
val=
"phClr"
><a:lumMod
val=
"105000"
/><a:satMod
val=
"109000"
/><a:tint
val=
"81000"
/></a:schemeClr></a:gs></a:gsLst><a:lin
ang=
"5400000"
scaled=
"0"
/></a:gradFill><a:gradFill
rotWithShape=
"1"
><a:gsLst><a:gs
pos=
"0"
><a:schemeClr
val=
"phClr"
><a:satMod
val=
"103000"
/><a:lumMod
val=
"102000"
/><a:tint
val=
"94000"
/></a:schemeClr></a:gs><a:gs
pos=
"50000"
><a:schemeClr
val=
"phClr"
><a:satMod
val=
"110000"
/><a:lumMod
val=
"100000"
/><a:shade
val=
"100000"
/></a:schemeClr></a:gs><a:gs
pos=
"100000"
><a:schemeClr
val=
"phClr"
><a:lumMod
val=
"99000"
/><a:satMod
val=
"120000"
/><a:shade
val=
"78000"
/></a:schemeClr></a:gs></a:gsLst><a:lin
ang=
"5400000"
scaled=
"0"
/></a:gradFill></a:fillStyleLst><a:lnStyleLst><a:ln
w=
"6350"
cap=
"flat"
cmpd=
"sng"
algn=
"ctr"
><a:solidFill><a:schemeClr
val=
"phClr"
/></a:solidFill><a:prstDash
val=
"solid"
/><a:miter
lim=
"800000"
/></a:ln><a:ln
w=
"12700"
cap=
"flat"
cmpd=
"sng"
algn=
"ctr"
><a:solidFill><a:schemeClr
val=
"phClr"
/></a:solidFill><a:prstDash
val=
"solid"
/><a:miter
lim=
"800000"
/></a:ln><a:ln
w=
"19050"
cap=
"flat"
cmpd=
"sng"
algn=
"ctr"
><a:solidFill><a:schemeClr
val=
"phClr"
/></a:solidFill><a:prstDash
val=
"solid"
/><a:miter
lim=
"800000"
/></a:ln></a:lnStyleLst><a:effectStyleLst><a:effectStyle><a:effectLst/></a:effectStyle><a:effectStyle><a:effectLst/></a:effectStyle><a:effectStyle><a:effectLst><a:outerShdw
blurRad=
"57150"
dist=
"19050"
dir=
"5400000"
algn=
"ctr"
rotWithShape=
"0"
><a:srgbClr
val=
"000000"
><a:alpha
val=
"63000"
/></a:srgbClr></a:outerShdw></a:effectLst></a:effectStyle></a:effectStyleLst><a:bgFillStyleLst><a:solidFill><a:schemeClr
val=
"phClr"
/></a:solidFill><a:solidFill><a:schemeClr
val=
"phClr"
><a:tint
val=
"95000"
/><a:satMod
val=
"170000"
/></a:schemeClr></a:solidFill><a:gradFill
rotWithShape=
"1"
><a:gsLst><a:gs
pos=
"0"
><a:schemeClr
val=
"phClr"
><a:tint
val=
"93000"
/><a:satMod
val=
"150000"
/><a:shade
val=
"98000"
/><a:lumMod
val=
"102000"
/></a:schemeClr></a:gs><a:gs
pos=
"50000"
><a:schemeClr
val=
"phClr"
><a:tint
val=
"98000"
/><a:satMod
val=
"130000"
/><a:shade
val=
"90000"
/><a:lumMod
val=
"103000"
/></a:schemeClr></a:gs><a:gs
pos=
"100000"
><a:schemeClr
val=
"phClr"
><a:shade
val=
"63000"
/><a:satMod
val=
"120000"
/></a:schemeClr></a:gs></a:gsLst><a:lin
ang=
"5400000"
scaled=
"0"
/></a:gradFill></a:bgFillStyleLst></a:fmtScheme></a:themeElements><a:objectDefaults/></a:theme></pkg:xmlData></pkg:part></pkg:package>
</w:tbl><w:p><w:pPr><w:jc
w:val=
"left"
/><w:rPr><w:rFonts
w:hint=
"eastAsia"
/><w:b/><w:bCs/><w:sz
w:val=
"28"
/><w:szCs
w:val=
"28"
/></w:rPr></w:pPr><w:bookmarkStart
w:id=
"0"
w:name=
"_GoBack"
/><w:bookmarkEnd
w:id=
"0"
/></w:p>
\ No newline at end of file
</wx:sect>
</w:body>
</w:wordDocument>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment