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
62fa9a5a
Commit
62fa9a5a
authored
Oct 11, 2020
by
qinhu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
报告-导出
parent
f3cce5c9
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
796 additions
and
15 deletions
+796
-15
pom.xml
cement-business/pom.xml
+13
-1
ReportController.java
.../wise/sc/cement/business/controller/ReportController.java
+45
-10
EntrustServiceImpl.java
...e/sc/cement/business/service/impl/EntrustServiceImpl.java
+4
-4
WordUtil.java
...c/main/java/cn/wise/sc/cement/business/util/WordUtil.java
+94
-0
report.ftl
cement-business/src/main/resources/templates/report.ftl
+637
-0
report1.ftl
cement-business/src/main/resources/templates/report1.ftl
+3
-0
No files found.
cement-business/pom.xml
View file @
62fa9a5a
...
...
@@ -97,7 +97,11 @@
<artifactId>
hutool-all
</artifactId>
<version>
4.6.8
</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.freemarker/freemarker -->
<dependency>
<groupId>
org.freemarker
</groupId>
<artifactId>
freemarker
</artifactId>
</dependency>
<!-- JwtUtil类需要jjwt -->
<dependency>
<groupId>
io.jsonwebtoken
</groupId>
...
...
@@ -163,6 +167,14 @@
<include>
*
</include>
</includes>
</resource>
<resource>
<directory>
src/main/resources/templates
</directory>
<filtering>
true
</filtering>
<includes>
<include>
*
</include>
</includes>
<targetPath>
/templates
</targetPath>
</resource>
<resource>
<directory>
src/main/java/cn/wise/sc/cement/business/mapper/xml
</directory>
<filtering>
true
</filtering>
...
...
cement-business/src/main/java/cn/wise/sc/cement/business/controller/ReportController.java
View file @
62fa9a5a
package
cn
.
wise
.
sc
.
cement
.
business
.
controller
;
import
cn.wise.sc.cement.business.entity.EntrustReport
;
import
cn.wise.sc.cement.business.model.BaseResponse
;
import
cn.wise.sc.cement.business.model.PageQuery
;
import
cn.wise.sc.cement.business.model.ReportDetailVo
;
import
cn.wise.sc.cement.business.model.vo.EntrustVo
;
import
cn.wise.sc.cement.business.service.IEntrustService
;
import
cn.wise.sc.cement.business.util.
Page
Util
;
import
cn.wise.sc.cement.business.util.
Word
Util
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
io.swagger.annotations.Api
;
import
io.swagger.annotations.ApiImplicitParam
;
import
io.swagger.annotations.ApiImplicitParams
;
...
...
@@ -20,8 +18,10 @@ import org.springframework.web.bind.annotation.PathVariable;
import
org.springframework.web.bind.annotation.PostMapping
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RestController
;
import
java.util.List
;
import
java.util.stream.Collectors
;
import
javax.servlet.http.HttpServletResponse
;
import
java.util.HashMap
;
import
java.util.Map
;
import
java.util.Set
;
/**
* @description: 报告管理
...
...
@@ -39,6 +39,7 @@ public class ReportController {
public
ReportController
(
IEntrustService
iEntrustService
)
{
this
.
iEntrustService
=
iEntrustService
;
}
@ApiOperation
(
value
=
"报告分页列表"
)
...
...
@@ -74,14 +75,48 @@ public class ReportController {
@GetMapping
(
"/{entrustId}"
)
@ApiOperation
(
"获取报告详情"
)
public
BaseResponse
<
ReportDetailVo
>
getReportDetail
(
@PathVariable
(
"entrustId"
)
Integer
entrustId
,
PageQuery
pageQuery
)
{
public
void
getReportDetail
(
@PathVariable
(
"entrustId"
)
Integer
entrustId
,
HttpServletResponse
response
)
{
ReportDetailVo
rts
=
iEntrustService
.
getReportDetail
(
entrustId
);
if
(
rts
==
null
)
{
return
BaseResponse
.
errorMsg
(
"没找到相关数据!"
);
}
else
{
return
BaseResponse
.
okData
(
rts
);
Map
<
String
,
Object
>
beanParams
=
new
HashMap
<>();
beanParams
.
put
(
"sendName"
,
rts
.
getSendName
());
beanParams
.
put
(
"sender"
,
rts
.
getSender
());
beanParams
.
put
(
"sendDate"
,
rts
.
getSendDate
());
beanParams
.
put
(
"sampleNum"
,
rts
.
getSampleNum
());
beanParams
.
put
(
"sampleNames"
,
set2String
(
rts
.
getSampleNames
()));
beanParams
.
put
(
"teamNames"
,
set2String
(
rts
.
getTeamNames
()));
beanParams
.
put
(
"methodNames"
,
set2StringN
(
rts
.
getMethodNames
()));
beanParams
.
put
(
"equipmentNames"
,
set2StringN
(
rts
.
getEquipmentNames
()));
beanParams
.
put
(
"projectName"
,
rts
.
getProjectName
());
beanParams
.
put
(
"printDate"
,
rts
.
getPrintDate
());
WordUtil
.
writeWordReport
(
rts
.
getProjectName
()
+
"(报告)"
,
"report.ftl"
,
beanParams
,
response
);
}
private
String
set2String
(
Set
<
String
>
source
)
{
if
(
source
.
size
()
==
0
)
{
return
""
;
}
StringBuilder
strBuilder
=
new
StringBuilder
();
for
(
String
target
:
source
)
{
strBuilder
.
append
(
"、"
).
append
(
target
);
}
return
strBuilder
.
replace
(
0
,
1
,
""
).
toString
();
}
private
String
set2StringN
(
Set
<
String
>
source
)
{
if
(
source
.
size
()
==
0
)
{
return
""
;
}
StringBuilder
strBuilder
=
new
StringBuilder
();
for
(
String
target
:
source
)
{
strBuilder
.
append
(
" "
).
append
(
target
);
}
return
strBuilder
.
replace
(
0
,
5
,
""
).
toString
();
}
}
cement-business/src/main/java/cn/wise/sc/cement/business/service/impl/EntrustServiceImpl.java
View file @
62fa9a5a
...
...
@@ -1917,7 +1917,7 @@ public class EntrustServiceImpl extends ServiceImpl<EntrustMapper, Entrust> impl
for
(
String
idStr
:
teamSplit
)
{
int
id
=
Integer
.
parseInt
(
idStr
);
teams
.
forEach
(
opt
->
{
if
(
opt
.
getId
()
==
id
)
{
if
(
opt
.
getId
()
==
id
&&
"1"
.
equals
(
opt
.
getQualifications
())
)
{
if
(
StrUtil
.
isBlank
(
arg
.
getTeamName
()))
{
arg
.
setTeamName
(
opt
.
getName
());
}
else
{
...
...
@@ -1929,9 +1929,9 @@ public class EntrustServiceImpl extends ServiceImpl<EntrustMapper, Entrust> impl
String
methodNumbers
=
arg
.
getMethodNumbers
();
String
[]
methodSplit
=
methodNumbers
.
split
(
"、"
);
for
(
String
idStr
:
methodSplit
)
{
int
id
=
Integer
.
parseInt
(
idStr
)
;
String
id
=
Integer
.
parseInt
(
idStr
)
+
""
;
methods
.
forEach
(
opt
->
{
if
(
opt
.
getId
()
==
id
)
{
if
(
id
.
equals
(
opt
.
getNumber
())
)
{
if
(
StrUtil
.
isBlank
(
arg
.
getMethodName
()))
{
arg
.
setMethodName
(
opt
.
getName
()
+
" "
+
opt
.
getStandard
());
}
else
{
...
...
@@ -2146,7 +2146,7 @@ public class EntrustServiceImpl extends ServiceImpl<EntrustMapper, Entrust> impl
}
//关联检测依据
if
(
StrUtil
.
isNotBlank
(
arg
.
getMethodName
()))
{
String
[]
methodSplits
=
arg
.
getMethodN
umbers
().
split
(
"、"
);
String
[]
methodSplits
=
arg
.
getMethodN
ame
().
split
(
"、"
);
for
(
String
methodName
:
methodSplits
)
{
rts
.
getMethodNames
().
add
(
methodName
);
}
...
...
cement-business/src/main/java/cn/wise/sc/cement/business/util/WordUtil.java
0 → 100644
View file @
62fa9a5a
package
cn
.
wise
.
sc
.
cement
.
business
.
util
;
import
freemarker.template.Configuration
;
import
freemarker.template.Template
;
import
javax.servlet.ServletOutputStream
;
import
javax.servlet.http.HttpServletResponse
;
import
java.io.File
;
import
java.io.FileInputStream
;
import
java.io.FileOutputStream
;
import
java.io.IOException
;
import
java.io.OutputStreamWriter
;
import
java.io.Writer
;
import
java.net.URLEncoder
;
import
java.nio.charset.StandardCharsets
;
import
java.util.Map
;
/**
* @description:
* @author: qh
* @create: 2020-10-10 15:22
**/
public
class
WordUtil
{
/**
* 模板路径
*/
private
static
final
String
FTL_FP
=
"/templates/"
;
private
static
Configuration
configuration
;
static
{
configuration
=
new
Configuration
(
Configuration
.
DEFAULT_INCOMPATIBLE_IMPROVEMENTS
);
configuration
.
setDefaultEncoding
(
"utf-8"
);
//读配置文件
// path = PropertiesUtil.get("FILE_PATH")+"/";
}
public
static
Boolean
writeWordReport
(
String
templeName
,
String
templateFileName
,
Map
<
String
,
Object
>
beanParams
,
HttpServletResponse
response
)
{
Writer
out
=
null
;
File
file
=
null
;
try
{
configuration
.
setClassForTemplateLoading
(
WordUtil
.
class
,
FTL_FP
);
Template
template
=
configuration
.
getTemplate
(
templateFileName
,
"UTF-8"
);
//将文件输出到response,返回给客户端
String
filePath
;
filePath
=
""
;
File
file1
=
new
File
(
filePath
);
if
(!
file1
.
exists
())
{
file1
.
mkdirs
();
}
//变量替换
//输出文件
file
=
new
File
(
filePath
+
templeName
);
FileOutputStream
fos
=
new
FileOutputStream
(
file
);
out
=
new
OutputStreamWriter
(
fos
,
StandardCharsets
.
UTF_8
);
template
.
process
(
beanParams
,
out
);
FileInputStream
in
=
new
FileInputStream
(
file
);
byte
[]
buffer
=
new
byte
[
in
.
available
()];
in
.
read
(
buffer
);
in
.
close
();
response
.
reset
();
ServletOutputStream
outputStream
=
response
.
getOutputStream
();
response
.
setCharacterEncoding
(
StandardCharsets
.
UTF_8
.
toString
());
response
.
setContentType
(
"application/octet-stream"
);
templeName
=
new
String
((
templeName
).
getBytes
(
StandardCharsets
.
UTF_8
),
StandardCharsets
.
ISO_8859_1
);
response
.
setHeader
(
"Content-Disposition"
,
"attachment;filename="
+
templeName
+
".xls"
);
outputStream
.
write
(
buffer
);
outputStream
.
flush
();
outputStream
.
close
();
return
true
;
}
catch
(
Exception
e
)
{
e
.
printStackTrace
();
return
false
;
}
finally
{
try
{
if
(
out
!=
null
)
{
out
.
close
();
file
.
delete
();
}
}
catch
(
IOException
e
)
{
e
.
printStackTrace
();
}
}
}
}
cement-business/src/main/resources/templates/report.ftl
0 → 100644
View file @
62fa9a5a
<?xml version="1.0"?>
<?mso-application progid="Excel.Sheet"?>
<Workbook
xmlns=
"urn:schemas-microsoft-com:office:spreadsheet"
xmlns:o=
"urn:schemas-microsoft-com:office:office"
xmlns:x=
"urn:schemas-microsoft-com:office:excel"
xmlns:ss=
"urn:schemas-microsoft-com:office:spreadsheet"
xmlns:html=
"http://www.w3.org/TR/REC-html40"
>
<DocumentProperties
xmlns=
"urn:schemas-microsoft-com:office:office"
>
<Version>
16.00
</Version>
</DocumentProperties>
<OfficeDocumentSettings
xmlns=
"urn:schemas-microsoft-com:office:office"
>
<AllowPNG/>
</OfficeDocumentSettings>
<ExcelWorkbook
xmlns=
"urn:schemas-microsoft-com:office:excel"
>
<WindowHeight>
10420
</WindowHeight>
<WindowWidth>
19420
</WindowWidth>
<WindowTopX>
32767
</WindowTopX>
<WindowTopY>
32767
</WindowTopY>
<ProtectStructure>
False
</ProtectStructure>
<ProtectWindows>
False
</ProtectWindows>
</ExcelWorkbook>
<Styles>
<Style
ss:ID=
"Default"
ss:Name=
"Normal"
>
<Alignment
ss:Vertical=
"Bottom"
/>
<Borders/>
<Font
ss:FontName=
"等线"
x:CharSet=
"134"
ss:Size=
"11"
ss:Color=
"#000000"
/>
<Interior/>
<NumberFormat/>
<Protection/>
</Style>
<Style
ss:ID=
"m1730788861296"
>
<Alignment
ss:Horizontal=
"Left"
ss:Vertical=
"Center"
ss:WrapText=
"1"
/>
<Borders>
<Border
ss:Position=
"Bottom"
ss:LineStyle=
"Continuous"
ss:Weight=
"2"
/>
<Border
ss:Position=
"Left"
ss:LineStyle=
"Continuous"
ss:Weight=
"2"
/>
<Border
ss:Position=
"Right"
ss:LineStyle=
"Continuous"
ss:Weight=
"2"
/>
<Border
ss:Position=
"Top"
ss:LineStyle=
"Continuous"
ss:Weight=
"2"
/>
</Borders>
<Font
ss:FontName=
"宋体"
x:CharSet=
"134"
ss:Size=
"12"
ss:Color=
"#000000"
/>
<NumberFormat
ss:Format=
"Long Date"
/>
</Style>
<Style
ss:ID=
"m1730788861316"
>
<Alignment
ss:Horizontal=
"Left"
ss:Vertical=
"Center"
ss:WrapText=
"1"
/>
<Borders>
<Border
ss:Position=
"Bottom"
ss:LineStyle=
"Continuous"
ss:Weight=
"2"
/>
<Border
ss:Position=
"Left"
ss:LineStyle=
"Continuous"
ss:Weight=
"2"
/>
<Border
ss:Position=
"Right"
ss:LineStyle=
"Continuous"
ss:Weight=
"2"
/>
<Border
ss:Position=
"Top"
ss:LineStyle=
"Continuous"
ss:Weight=
"2"
/>
</Borders>
<Font
ss:FontName=
"宋体"
x:CharSet=
"134"
ss:Size=
"12"
ss:Color=
"#000000"
/>
</Style>
<Style
ss:ID=
"m1730788861436"
>
<Alignment
ss:Horizontal=
"Center"
ss:Vertical=
"Center"
ss:WrapText=
"1"
/>
<Borders>
<Border
ss:Position=
"Bottom"
ss:LineStyle=
"Continuous"
ss:Weight=
"2"
/>
<Border
ss:Position=
"Left"
ss:LineStyle=
"Continuous"
ss:Weight=
"2"
/>
<Border
ss:Position=
"Right"
ss:LineStyle=
"Continuous"
ss:Weight=
"2"
/>
<Border
ss:Position=
"Top"
ss:LineStyle=
"Continuous"
ss:Weight=
"2"
/>
</Borders>
<Font
ss:FontName=
"宋体"
x:CharSet=
"134"
ss:Size=
"12"
ss:Color=
"#000000"
/>
</Style>
<Style
ss:ID=
"m1730788859424"
>
<Alignment
ss:Horizontal=
"Left"
ss:Vertical=
"Center"
ss:WrapText=
"1"
/>
<Borders>
<Border
ss:Position=
"Bottom"
ss:LineStyle=
"Continuous"
ss:Weight=
"2"
/>
<Border
ss:Position=
"Left"
ss:LineStyle=
"Continuous"
ss:Weight=
"2"
/>
<Border
ss:Position=
"Right"
ss:LineStyle=
"Continuous"
ss:Weight=
"2"
/>
<Border
ss:Position=
"Top"
ss:LineStyle=
"Continuous"
ss:Weight=
"2"
/>
</Borders>
<Font
ss:FontName=
"宋体"
x:CharSet=
"134"
ss:Size=
"12"
ss:Color=
"#000000"
/>
</Style>
<Style
ss:ID=
"m1730788859444"
>
<Alignment
ss:Horizontal=
"Left"
ss:Vertical=
"Center"
ss:WrapText=
"1"
/>
<Borders>
<Border
ss:Position=
"Bottom"
ss:LineStyle=
"Continuous"
ss:Weight=
"2"
/>
<Border
ss:Position=
"Left"
ss:LineStyle=
"Continuous"
ss:Weight=
"2"
/>
<Border
ss:Position=
"Right"
ss:LineStyle=
"Continuous"
ss:Weight=
"2"
/>
<Border
ss:Position=
"Top"
ss:LineStyle=
"Continuous"
ss:Weight=
"2"
/>
</Borders>
<Font
ss:FontName=
"宋体"
x:CharSet=
"134"
ss:Size=
"12"
ss:Color=
"#000000"
/>
</Style>
<Style
ss:ID=
"m1730788859464"
>
<Alignment
ss:Horizontal=
"Left"
ss:Vertical=
"Center"
ss:WrapText=
"1"
/>
<Borders>
<Border
ss:Position=
"Bottom"
ss:LineStyle=
"Continuous"
ss:Weight=
"2"
/>
<Border
ss:Position=
"Left"
ss:LineStyle=
"Continuous"
ss:Weight=
"2"
/>
<Border
ss:Position=
"Right"
ss:LineStyle=
"Continuous"
ss:Weight=
"2"
/>
<Border
ss:Position=
"Top"
ss:LineStyle=
"Continuous"
ss:Weight=
"2"
/>
</Borders>
<Font
ss:FontName=
"宋体"
x:CharSet=
"134"
ss:Size=
"12"
ss:Color=
"#000000"
/>
</Style>
<Style
ss:ID=
"m1730788859484"
>
<Alignment
ss:Horizontal=
"Left"
ss:Vertical=
"Center"
ss:WrapText=
"1"
/>
<Borders>
<Border
ss:Position=
"Bottom"
ss:LineStyle=
"Continuous"
ss:Weight=
"2"
/>
<Border
ss:Position=
"Left"
ss:LineStyle=
"Continuous"
ss:Weight=
"2"
/>
<Border
ss:Position=
"Right"
ss:LineStyle=
"Continuous"
ss:Weight=
"2"
/>
<Border
ss:Position=
"Top"
ss:LineStyle=
"Continuous"
ss:Weight=
"2"
/>
</Borders>
<Font
ss:FontName=
"宋体"
x:CharSet=
"134"
ss:Size=
"12"
ss:Color=
"#000000"
/>
</Style>
<Style
ss:ID=
"m1730788859504"
>
<Alignment
ss:Horizontal=
"Left"
ss:Vertical=
"Center"
ss:WrapText=
"1"
/>
<Borders>
<Border
ss:Position=
"Bottom"
ss:LineStyle=
"Continuous"
ss:Weight=
"2"
/>
<Border
ss:Position=
"Left"
ss:LineStyle=
"Continuous"
ss:Weight=
"2"
/>
<Border
ss:Position=
"Right"
ss:LineStyle=
"Continuous"
ss:Weight=
"2"
/>
<Border
ss:Position=
"Top"
ss:LineStyle=
"Continuous"
ss:Weight=
"2"
/>
</Borders>
<Font
ss:FontName=
"宋体"
x:CharSet=
"134"
ss:Size=
"12"
ss:Color=
"#000000"
/>
</Style>
<Style
ss:ID=
"m1730788859524"
>
<Alignment
ss:Horizontal=
"Left"
ss:Vertical=
"Center"
ss:WrapText=
"1"
/>
<Borders>
<Border
ss:Position=
"Bottom"
ss:LineStyle=
"Continuous"
ss:Weight=
"2"
/>
<Border
ss:Position=
"Left"
ss:LineStyle=
"Continuous"
ss:Weight=
"2"
/>
<Border
ss:Position=
"Right"
ss:LineStyle=
"Continuous"
ss:Weight=
"2"
/>
<Border
ss:Position=
"Top"
ss:LineStyle=
"Continuous"
ss:Weight=
"2"
/>
</Borders>
<Font
ss:FontName=
"宋体"
x:CharSet=
"134"
ss:Size=
"12"
ss:Color=
"#000000"
/>
</Style>
<Style
ss:ID=
"s63"
>
<Alignment
ss:Horizontal=
"Center"
ss:Vertical=
"Center"
/>
<Font
ss:FontName=
"宋体"
x:CharSet=
"134"
ss:Size=
"12"
ss:Color=
"#000000"
/>
</Style>
<Style
ss:ID=
"s66"
>
<Alignment
ss:Horizontal=
"Left"
ss:Vertical=
"Center"
/>
<Font
ss:FontName=
"宋体"
x:CharSet=
"134"
ss:Size=
"12"
ss:Color=
"#000000"
/>
</Style>
<Style
ss:ID=
"s68"
>
<Alignment
ss:Horizontal=
"Center"
ss:Vertical=
"Center"
ss:WrapText=
"1"
/>
<Borders>
<Border
ss:Position=
"Bottom"
ss:LineStyle=
"Continuous"
ss:Weight=
"2"
/>
<Border
ss:Position=
"Left"
ss:LineStyle=
"Continuous"
ss:Weight=
"2"
/>
<Border
ss:Position=
"Right"
ss:LineStyle=
"Continuous"
ss:Weight=
"2"
/>
<Border
ss:Position=
"Top"
ss:LineStyle=
"Continuous"
ss:Weight=
"2"
/>
</Borders>
<Font
ss:FontName=
"宋体"
x:CharSet=
"134"
ss:Size=
"12"
ss:Color=
"#000000"
/>
</Style>
<Style
ss:ID=
"s70"
>
<Alignment
ss:Horizontal=
"Left"
ss:Vertical=
"Center"
ss:WrapText=
"1"
/>
<Borders>
<Border
ss:Position=
"Bottom"
ss:LineStyle=
"Continuous"
ss:Weight=
"2"
/>
<Border
ss:Position=
"Right"
ss:LineStyle=
"Continuous"
ss:Weight=
"2"
/>
<Border
ss:Position=
"Top"
ss:LineStyle=
"Continuous"
ss:Weight=
"2"
/>
</Borders>
<Font
ss:FontName=
"宋体"
x:CharSet=
"134"
ss:Size=
"12"
ss:Color=
"#000000"
/>
</Style>
<Style
ss:ID=
"s72"
>
<Alignment
ss:Horizontal=
"Center"
ss:Vertical=
"Center"
ss:WrapText=
"1"
/>
<Borders>
<Border
ss:Position=
"Bottom"
ss:LineStyle=
"Continuous"
ss:Weight=
"2"
/>
<Border
ss:Position=
"Right"
ss:LineStyle=
"Continuous"
ss:Weight=
"2"
/>
<Border
ss:Position=
"Top"
ss:LineStyle=
"Continuous"
ss:Weight=
"2"
/>
</Borders>
<Font
ss:FontName=
"宋体"
x:CharSet=
"134"
ss:Size=
"12"
ss:Color=
"#000000"
/>
</Style>
<Style
ss:ID=
"s74"
>
<Alignment
ss:Horizontal=
"Center"
ss:Vertical=
"Center"
ss:WrapText=
"1"
/>
<Borders>
<Border
ss:Position=
"Bottom"
ss:LineStyle=
"Continuous"
ss:Weight=
"2"
/>
<Border
ss:Position=
"Left"
ss:LineStyle=
"Continuous"
ss:Weight=
"2"
/>
<Border
ss:Position=
"Right"
ss:LineStyle=
"Continuous"
ss:Weight=
"2"
/>
</Borders>
<Font
ss:FontName=
"宋体"
x:CharSet=
"134"
ss:Size=
"12"
ss:Color=
"#000000"
/>
</Style>
<Style
ss:ID=
"s77"
>
<Alignment
ss:Horizontal=
"Left"
ss:Vertical=
"Center"
ss:WrapText=
"1"
/>
<Borders>
<Border
ss:Position=
"Bottom"
ss:LineStyle=
"Continuous"
ss:Weight=
"2"
/>
<Border
ss:Position=
"Right"
ss:LineStyle=
"Continuous"
ss:Weight=
"2"
/>
</Borders>
<Font
ss:FontName=
"宋体"
x:CharSet=
"134"
ss:Size=
"12"
ss:Color=
"#000000"
/>
<NumberFormat
ss:Format=
"Long Date"
/>
</Style>
<Style
ss:ID=
"s79"
>
<Alignment
ss:Horizontal=
"Center"
ss:Vertical=
"Center"
ss:WrapText=
"1"
/>
<Borders>
<Border
ss:Position=
"Bottom"
ss:LineStyle=
"Continuous"
ss:Weight=
"2"
/>
<Border
ss:Position=
"Right"
ss:LineStyle=
"Continuous"
ss:Weight=
"2"
/>
</Borders>
<Font
ss:FontName=
"宋体"
x:CharSet=
"134"
ss:Size=
"12"
ss:Color=
"#000000"
/>
</Style>
<Style
ss:ID=
"s81"
>
<Alignment
ss:Horizontal=
"Left"
ss:Vertical=
"Center"
ss:WrapText=
"1"
/>
<Borders>
<Border
ss:Position=
"Bottom"
ss:LineStyle=
"Continuous"
ss:Weight=
"2"
/>
<Border
ss:Position=
"Right"
ss:LineStyle=
"Continuous"
ss:Weight=
"2"
/>
</Borders>
<Font
ss:FontName=
"宋体"
x:CharSet=
"134"
ss:Size=
"12"
ss:Color=
"#000000"
/>
</Style>
<Style
ss:ID=
"s111"
>
<Alignment
ss:Horizontal=
"Right"
ss:Vertical=
"Center"
/>
<Font
ss:FontName=
"宋体"
x:CharSet=
"134"
ss:Size=
"12"
ss:Color=
"#000000"
/>
</Style>
<Style
ss:ID=
"s114"
>
<Alignment
ss:Horizontal=
"Center"
ss:Vertical=
"Center"
/>
<Font
ss:FontName=
"等线"
x:CharSet=
"134"
ss:Size=
"10.5"
ss:Color=
"#000000"
ss:Bold=
"1"
/>
</Style>
<Style
ss:ID=
"s117"
>
<Alignment
ss:Horizontal=
"Center"
ss:Vertical=
"Center"
/>
<Font
ss:FontName=
"宋体"
x:CharSet=
"134"
ss:Size=
"18"
ss:Color=
"#000000"
ss:Bold=
"1"
/>
</Style>
<Style
ss:ID=
"s123"
>
<Alignment
ss:Horizontal=
"Center"
ss:Vertical=
"Bottom"
/>
<Font
ss:FontName=
"宋体"
x:CharSet=
"134"
ss:Size=
"48"
ss:Bold=
"1"
/>
</Style>
<Style
ss:ID=
"s124"
>
<Alignment
ss:Horizontal=
"Center"
ss:Vertical=
"Bottom"
/>
<Font
ss:FontName=
"宋体"
x:CharSet=
"134"
ss:Size=
"48"
ss:Bold=
"1"
/>
</Style>
<Style
ss:ID=
"s125"
>
<Alignment
ss:Horizontal=
"Center"
ss:Vertical=
"Bottom"
/>
<Font
ss:FontName=
"楷体_GB2312"
x:CharSet=
"134"
x:Family=
"Modern"
ss:Size=
"12"
/>
</Style>
<Style
ss:ID=
"s126"
>
<Alignment
ss:Horizontal=
"Right"
ss:Vertical=
"Bottom"
/>
<Font
ss:FontName=
"宋体"
x:CharSet=
"134"
ss:Size=
"18"
/>
</Style>
<Style
ss:ID=
"s127"
>
<Alignment
ss:Horizontal=
"Left"
ss:Vertical=
"Bottom"
/>
<Font
ss:FontName=
"Times New Roman"
x:Family=
"Roman"
ss:Size=
"18"
/>
<NumberFormat
ss:Format=
"Short Date"
/>
</Style>
<Style
ss:ID=
"s128"
>
<Alignment
ss:Horizontal=
"Left"
ss:Vertical=
"Bottom"
/>
</Style>
<Style
ss:ID=
"s129"
>
<Font
ss:FontName=
"Times New Roman"
x:Family=
"Roman"
ss:Size=
"12"
/>
</Style>
<Style
ss:ID=
"s130"
>
<Font
ss:FontName=
"宋体"
x:CharSet=
"134"
ss:Size=
"18"
/>
</Style>
<Style
ss:ID=
"s131"
>
<Alignment
ss:Horizontal=
"Left"
ss:Vertical=
"Bottom"
/>
<Font
ss:FontName=
"Times New Roman"
x:Family=
"Roman"
ss:Size=
"18"
/>
<NumberFormat
ss:Format=
"@"
/>
</Style>
<Style
ss:ID=
"s132"
>
<Alignment
ss:Horizontal=
"Center"
ss:Vertical=
"Bottom"
/>
<Font
ss:FontName=
"Times New Roman"
x:Family=
"Roman"
ss:Size=
"18"
/>
<NumberFormat
ss:Format=
"@"
/>
</Style>
<Style
ss:ID=
"s133"
>
<Font
ss:FontName=
"楷体_GB2312"
x:CharSet=
"134"
x:Family=
"Modern"
ss:Size=
"18"
/>
</Style>
<Style
ss:ID=
"s134"
>
<Alignment
ss:Horizontal=
"Left"
ss:Vertical=
"Bottom"
/>
<Font
ss:FontName=
"楷体_GB2312"
x:CharSet=
"134"
x:Family=
"Modern"
ss:Size=
"18"
/>
<NumberFormat
ss:Format=
"Long Date"
/>
</Style>
<Style
ss:ID=
"s135"
>
<Alignment
ss:Horizontal=
"Left"
ss:Vertical=
"Bottom"
/>
<Font
ss:FontName=
"宋体"
x:CharSet=
"134"
ss:Size=
"18"
/>
<NumberFormat
ss:Format=
"@"
/>
</Style>
<Style
ss:ID=
"s136"
>
<Font
ss:FontName=
"楷体_GB2312"
x:CharSet=
"134"
x:Family=
"Modern"
ss:Size=
"12"
/>
</Style>
<Style
ss:ID=
"s137"
>
<Alignment
ss:Horizontal=
"Center"
ss:Vertical=
"Bottom"
/>
<Font
ss:FontName=
"Times New Roman"
x:Family=
"Roman"
ss:Size=
"22"
/>
</Style>
<Style
ss:ID=
"s141"
>
<Alignment
ss:Horizontal=
"Center"
ss:Vertical=
"Center"
/>
<Font
ss:FontName=
"宋体"
x:CharSet=
"134"
ss:Size=
"18"
/>
</Style>
<Style
ss:ID=
"s142"
>
<Alignment
ss:Horizontal=
"Center"
ss:Vertical=
"Center"
/>
<Font
ss:FontName=
"Times New Roman"
x:Family=
"Roman"
ss:Size=
"18"
/>
</Style>
<Style
ss:ID=
"s143"
>
<Font
ss:FontName=
"Times New Roman"
x:Family=
"Roman"
ss:Size=
"18"
/>
</Style>
<Style
ss:ID=
"s144"
>
<Alignment
ss:Horizontal=
"Left"
ss:Vertical=
"Bottom"
/>
<Font
ss:FontName=
"宋体"
x:CharSet=
"134"
ss:Size=
"18"
/>
</Style>
<Style
ss:ID=
"s145"
>
<Alignment
ss:Horizontal=
"Center"
ss:Vertical=
"Bottom"
/>
<Font
ss:FontName=
"宋体"
x:CharSet=
"134"
ss:Size=
"18"
/>
</Style>
<Style
ss:ID=
"s146"
>
<Alignment
ss:Horizontal=
"Center"
ss:Vertical=
"Bottom"
/>
<Font
ss:FontName=
"Times New Roman"
x:Family=
"Roman"
ss:Size=
"18"
/>
</Style>
<Style
ss:ID=
"s147"
>
<Alignment
ss:Horizontal=
"Left"
ss:Vertical=
"Bottom"
/>
<Font
ss:FontName=
"楷体_GB2312"
x:CharSet=
"134"
x:Family=
"Modern"
ss:Size=
"18"
/>
</Style>
<Style
ss:ID=
"s148"
>
<Alignment
ss:Horizontal=
"Left"
ss:Vertical=
"Center"
/>
<Font
ss:FontName=
"宋体"
x:CharSet=
"134"
ss:Size=
"14"
/>
</Style>
<Style
ss:ID=
"s149"
>
<Alignment
ss:Horizontal=
"Center"
ss:Vertical=
"Center"
/>
<Font
ss:FontName=
"宋体"
x:CharSet=
"134"
ss:Size=
"14"
/>
</Style>
<Style
ss:ID=
"s150"
>
<Alignment
ss:Horizontal=
"Center"
ss:Vertical=
"Center"
/>
<Font
ss:FontName=
"Times New Roman"
x:Family=
"Roman"
ss:Size=
"14"
/>
</Style>
<Style
ss:ID=
"s151"
>
<Alignment
ss:Vertical=
"Center"
/>
</Style>
<Style
ss:ID=
"s152"
>
<Alignment
ss:Horizontal=
"Center"
ss:Vertical=
"Bottom"
/>
<Font
ss:FontName=
"Times New Roman"
x:Family=
"Roman"
ss:Size=
"14"
/>
</Style>
<Style
ss:ID=
"s153"
>
<Alignment
ss:Horizontal=
"Center"
ss:Vertical=
"Bottom"
/>
<Font
ss:FontName=
"宋体"
x:CharSet=
"134"
ss:Size=
"14"
/>
</Style>
<Style
ss:ID=
"s154"
>
<Alignment
ss:Vertical=
"Top"
/>
</Style>
<Style
ss:ID=
"s155"
>
<NumberFormat
ss:Format=
"Short Date"
/>
</Style>
</Styles>
<Worksheet
ss:Name=
"封面"
>
<Table
ss:ExpandedColumnCount=
"11"
x:FullColumns=
"1"
x:FullRows=
"1"
ss:DefaultColumnWidth=
"52"
ss:DefaultRowHeight=
"14"
>
<Column
ss:Index=
"2"
ss:AutoFitWidth=
"0"
ss:Width=
"99"
/>
<Column
ss:AutoFitWidth=
"0"
ss:Width=
"81"
/>
<Column
ss:AutoFitWidth=
"0"
ss:Width=
"104.5"
/>
<Column
ss:AutoFitWidth=
"0"
ss:Width=
"63"
/>
<Column
ss:AutoFitWidth=
"0"
ss:Width=
"72.5"
/>
<Row
ss:AutoFitHeight=
"0"
ss:Height=
"24.875"
ss:Span=
"3"
/>
<Row
ss:Index=
"5"
ss:Height=
"62.5"
>
<Cell
ss:MergeAcross=
"5"
ss:StyleID=
"s123"
><ss:Data
ss:Type=
"String"
xmlns=
"http://www.w3.org/TR/REC-html40"
><B>
检
<Font
html:Face=
"Times New Roman"
x:Family=
"Roman"
>
</Font><Font>
测
</Font><Font
html:Face=
"Times New Roman"
x:Family=
"Roman"
>
</Font><Font>
报
</Font><Font
html:Face=
"Times New Roman"
x:Family=
"Roman"
>
</Font><Font>
告
</Font></B></ss:Data></Cell>
</Row>
<Row
ss:AutoFitHeight=
"0"
ss:Height=
"16.5"
>
<Cell
ss:StyleID=
"s124"
/>
<Cell
ss:StyleID=
"s125"
/>
<Cell
ss:StyleID=
"s124"
/>
<Cell
ss:StyleID=
"s124"
/>
<Cell
ss:StyleID=
"s124"
/>
<Cell
ss:StyleID=
"s124"
/>
</Row>
<Row
ss:AutoFitHeight=
"0"
ss:Height=
"24.875"
>
<Cell
ss:Index=
"3"
ss:StyleID=
"s126"
><Data
ss:Type=
"String"
>
报告编号:
</Data></Cell>
<Cell
ss:StyleID=
"s127"
/>
</Row>
<Row
ss:AutoFitHeight=
"0"
ss:Height=
"24.875"
>
<Cell
ss:Index=
"2"
ss:StyleID=
"s128"
/>
<Cell
ss:StyleID=
"s128"
/>
<Cell
ss:StyleID=
"s128"
/>
</Row>
<Row
ss:AutoFitHeight=
"0"
ss:Height=
"24.875"
>
<Cell
ss:Index=
"2"
ss:StyleID=
"s128"
/>
<Cell
ss:StyleID=
"s128"
/>
<Cell
ss:StyleID=
"s128"
/>
</Row>
<Row
ss:AutoFitHeight=
"0"
ss:Height=
"24.875"
/>
<Row
ss:AutoFitHeight=
"0"
ss:Height=
"24.875"
>
<Cell
ss:Index=
"8"
ss:StyleID=
"s133"
/>
</Row>
<Row
ss:AutoFitHeight=
"0"
ss:Height=
"24.875"
>
<Cell
ss:StyleID=
"s129"
><Data
ss:Type=
"String"
>
</Data></Cell>
</Row>
<Row
ss:AutoFitHeight=
"0"
ss:Height=
"24.875"
ss:Span=
"1"
/>
<Row
ss:Index=
"15"
ss:AutoFitHeight=
"0"
ss:Height=
"24.875"
>
<Cell
ss:Index=
"8"
ss:StyleID=
"s130"
/>
<Cell
ss:StyleID=
"s130"
/>
<Cell
ss:StyleID=
"s130"
/>
</Row>
<Row
ss:AutoFitHeight=
"0"
ss:Height=
"24.875"
ss:StyleID=
"s130"
>
<Cell
ss:Index=
"2"
ss:StyleID=
"s126"
/>
<Cell
ss:StyleID=
"s126"
/>
</Row>
<Row
ss:AutoFitHeight=
"0"
ss:Height=
"24.875"
ss:StyleID=
"s130"
>
<Cell
ss:Index=
"2"
ss:StyleID=
"s126"
/>
<Cell
ss:StyleID=
"s126"
/>
<Cell
ss:Index=
"5"
ss:StyleID=
"s131"
/>
<Cell
ss:StyleID=
"s132"
/>
<Cell
ss:Index=
"8"
ss:StyleID=
"s133"
/>
<Cell
ss:StyleID=
"s141"
/>
<Cell
ss:StyleID=
"s141"
/>
<Cell
ss:StyleID=
"s142"
/>
</Row>
<Row
ss:AutoFitHeight=
"0"
ss:Height=
"24.875"
ss:StyleID=
"s130"
>
<Cell
ss:Index=
"2"
ss:StyleID=
"s126"
><Data
ss:Type=
"String"
>
送样单位:
</Data></Cell>
<Cell
ss:StyleID=
"s133"
><Data
ss:Type=
"String"
>
${sendName}
</Data></Cell>
<Cell
ss:Index=
"8"
ss:StyleID=
"s133"
/>
</Row>
<Row
ss:AutoFitHeight=
"0"
ss:Height=
"24.875"
ss:StyleID=
"s130"
>
<Cell
ss:Index=
"2"
ss:StyleID=
"s126"
/>
<Cell
ss:StyleID=
"s126"
/>
<Cell
ss:StyleID=
"s133"
/>
<Cell
ss:Index=
"8"
ss:StyleID=
"s133"
/>
</Row>
<Row
ss:AutoFitHeight=
"0"
ss:Height=
"24.875"
ss:StyleID=
"s130"
>
<Cell
ss:Index=
"2"
ss:StyleID=
"s126"
><Data
ss:Type=
"String"
>
样品名称:
</Data></Cell>
<Cell
ss:StyleID=
"s133"
><Data
ss:Type=
"String"
>
${sampleNames}
</Data></Cell>
<Cell
ss:StyleID=
"s134"
/>
<Cell
ss:Index=
"6"
ss:StyleID=
"s131"
/>
<Cell
ss:StyleID=
"s143"
/>
<Cell
ss:StyleID=
"s133"
/>
</Row>
<Row
ss:AutoFitHeight=
"0"
ss:Height=
"20.25"
ss:StyleID=
"s130"
>
<Cell
ss:Index=
"2"
ss:StyleID=
"s126"
/>
<Cell
ss:StyleID=
"s126"
/>
<Cell
ss:StyleID=
"s134"
/>
<Cell
ss:Index=
"6"
ss:StyleID=
"s131"
/>
<Cell
ss:StyleID=
"s143"
/>
<Cell
ss:StyleID=
"s133"
/>
</Row>
<Row
ss:AutoFitHeight=
"0"
ss:Height=
"24.875"
ss:StyleID=
"s130"
>
<Cell
ss:Index=
"2"
ss:StyleID=
"s126"
><Data
ss:Type=
"String"
>
检测类别:
</Data></Cell>
<Cell
ss:StyleID=
"s133"
><Data
ss:Type=
"String"
>
委托
</Data></Cell>
<Cell
ss:Index=
"6"
ss:StyleID=
"s131"
/>
<Cell
ss:StyleID=
"s144"
/>
<Cell
ss:StyleID=
"s133"
/>
<Cell
ss:StyleID=
"s144"
/>
<Cell
ss:StyleID=
"s145"
/>
<Cell
ss:StyleID=
"s146"
/>
</Row>
<Row
ss:AutoFitHeight=
"0"
ss:Height=
"24.875"
ss:StyleID=
"s130"
>
<Cell
ss:Index=
"2"
ss:StyleID=
"s126"
/>
<Cell
ss:StyleID=
"s126"
/>
<Cell
ss:Index=
"5"
ss:StyleID=
"s135"
><Data
ss:Type=
"String"
>
</Data></Cell>
<Cell
ss:StyleID=
"s132"
/>
<Cell
ss:StyleID=
"s146"
/>
<Cell
ss:StyleID=
"s147"
/>
<Cell
ss:StyleID=
"s145"
/>
<Cell
ss:StyleID=
"s145"
/>
<Cell
ss:StyleID=
"s146"
/>
</Row>
<Row
ss:AutoFitHeight=
"0"
ss:Height=
"24.875"
ss:StyleID=
"s130"
>
<Cell
ss:StyleID=
"Default"
/>
<Cell
ss:StyleID=
"Default"
/>
<Cell
ss:StyleID=
"Default"
/>
<Cell
ss:StyleID=
"Default"
/>
<Cell
ss:StyleID=
"Default"
/>
<Cell
ss:StyleID=
"Default"
/>
<Cell
ss:Index=
"8"
ss:StyleID=
"s147"
/>
<Cell
ss:StyleID=
"s145"
/>
<Cell
ss:StyleID=
"s145"
/>
<Cell
ss:StyleID=
"s146"
/>
</Row>
<Row
ss:AutoFitHeight=
"0"
ss:Height=
"24.875"
>
<Cell
ss:Index=
"7"
ss:StyleID=
"s148"
/>
<Cell
ss:StyleID=
"s147"
/>
<Cell
ss:StyleID=
"s149"
/>
<Cell
ss:StyleID=
"s149"
/>
<Cell
ss:StyleID=
"s150"
/>
</Row>
<Row
ss:AutoFitHeight=
"0"
ss:Height=
"24.75"
>
<Cell
ss:Index=
"2"
ss:StyleID=
"s136"
/>
<Cell
ss:Index=
"7"
ss:StyleID=
"s130"
/>
<Cell
ss:StyleID=
"s149"
/>
<Cell
ss:StyleID=
"s149"
/>
<Cell
ss:StyleID=
"s149"
/>
<Cell
ss:StyleID=
"s150"
/>
</Row>
<Row
ss:AutoFitHeight=
"0"
ss:Height=
"34.5"
>
<Cell
ss:MergeAcross=
"5"
ss:StyleID=
"s137"
><ss:Data
ss:Type=
"String"
xmlns=
"http://www.w3.org/TR/REC-html40"
>
<Font
html:Face=
"黑体"
x:CharSet=
"134"
x:Family=
"Modern"
>
中国水泥发展中心物化检测所
</Font></ss:Data></Cell>
<Cell
ss:StyleID=
"s150"
/>
<Cell
ss:StyleID=
"s149"
/>
<Cell
ss:StyleID=
"s149"
/>
<Cell
ss:StyleID=
"s149"
/>
<Cell
ss:StyleID=
"s150"
/>
</Row>
<Row
ss:AutoFitHeight=
"0"
ss:Height=
"24.875"
>
<Cell
ss:Index=
"7"
ss:StyleID=
"s150"
/>
<Cell
ss:StyleID=
"s149"
/>
<Cell
ss:StyleID=
"s149"
/>
<Cell
ss:StyleID=
"s149"
/>
<Cell
ss:StyleID=
"s150"
/>
</Row>
<Row
ss:AutoFitHeight=
"0"
ss:Height=
"24.875"
>
<Cell
ss:Index=
"7"
ss:StyleID=
"s150"
/>
<Cell
ss:StyleID=
"s149"
/>
<Cell
ss:StyleID=
"s149"
/>
<Cell
ss:StyleID=
"s149"
/>
<Cell
ss:StyleID=
"s150"
/>
</Row>
<Row
ss:AutoFitHeight=
"0"
ss:Height=
"15"
>
<Cell
ss:Index=
"7"
ss:StyleID=
"s150"
/>
<Cell
ss:StyleID=
"s149"
/>
<Cell
ss:StyleID=
"s149"
/>
<Cell
ss:StyleID=
"s149"
/>
<Cell
ss:StyleID=
"s150"
/>
</Row>
<Row
ss:AutoFitHeight=
"0"
ss:Height=
"20.125"
ss:StyleID=
"s151"
>
<Cell
ss:StyleID=
"Default"
/>
<Cell
ss:StyleID=
"Default"
/>
<Cell
ss:StyleID=
"Default"
/>
<Cell
ss:StyleID=
"Default"
/>
<Cell
ss:StyleID=
"Default"
/>
<Cell
ss:StyleID=
"Default"
/>
<Cell
ss:StyleID=
"s150"
/>
<Cell
ss:StyleID=
"s149"
/>
<Cell
ss:StyleID=
"s149"
/>
<Cell
ss:StyleID=
"s149"
/>
<Cell
ss:StyleID=
"s150"
/>
</Row>
<Row
ss:AutoFitHeight=
"0"
ss:Height=
"20.125"
>
<Cell
ss:Index=
"7"
ss:StyleID=
"s152"
/>
<Cell
ss:StyleID=
"s153"
/>
<Cell
ss:StyleID=
"s153"
/>
<Cell
ss:StyleID=
"s153"
/>
<Cell
ss:StyleID=
"s152"
/>
</Row>
<Row
ss:AutoFitHeight=
"0"
ss:Height=
"20.125"
ss:StyleID=
"s154"
>
<Cell
ss:StyleID=
"Default"
/>
<Cell
ss:StyleID=
"Default"
/>
<Cell
ss:StyleID=
"Default"
/>
<Cell
ss:StyleID=
"Default"
/>
<Cell
ss:StyleID=
"Default"
/>
<Cell
ss:StyleID=
"Default"
/>
</Row>
</Table>
<WorksheetOptions
xmlns=
"urn:schemas-microsoft-com:office:excel"
>
<PageSetup>
<Header
x:Margin=
"0.3"
/>
<Footer
x:Margin=
"0.3"
/>
<PageMargins
x:Bottom=
"0.75"
x:Left=
"0.7"
x:Right=
"0.7"
x:Top=
"0.75"
/>
</PageSetup>
<Zoom>
70
</Zoom>
<Selected/>
<Panes>
<Pane>
<Number>
3
</Number>
<ActiveRow>
21
</ActiveRow>
<ActiveCol>
2
</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>
False
</ProtectObjects>
<ProtectScenarios>
False
</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
<Worksheet
ss:Name=
"首页"
>
<Table
ss:ExpandedColumnCount=
"4"
x:FullColumns=
"1"
x:FullRows=
"1"
ss:DefaultColumnWidth=
"52"
ss:DefaultRowHeight=
"14"
>
<Column
ss:AutoFitWidth=
"0"
ss:Width=
"76.5"
/>
<Column
ss:AutoFitWidth=
"0"
ss:Width=
"298.5"
/>
<Row
ss:AutoFitHeight=
"0"
ss:Height=
"15"
>
<Cell
ss:MergeAcross=
"3"
ss:StyleID=
"s63"
><Data
ss:Type=
"String"
>
中国水泥发展中心物化检测所
</Data></Cell>
</Row>
<Row
ss:AutoFitHeight=
"0"
ss:Height=
"23"
>
<Cell
ss:MergeAcross=
"3"
ss:StyleID=
"s117"
><Data
ss:Type=
"String"
>
检 测 报 告
</Data></Cell>
</Row>
<Row
ss:Height=
"15.5"
>
<Cell
ss:StyleID=
"s66"
><ss:Data
ss:Type=
"String"
xmlns=
"http://www.w3.org/TR/REC-html40"
><Font
html:Color=
"#000000"
>
报告编号:
</Font><Font
html:Face=
"等线"
x:CharSet=
"134"
html:Size=
"10.5"
html:Color=
"#000000"
>
</Font></ss:Data></Cell>
<Cell
ss:Index=
"4"
><Data
ss:Type=
"String"
>
第1页
</Data></Cell>
</Row>
<Row
ss:Height=
"15.5"
>
<Cell
ss:StyleID=
"s68"
><Data
ss:Type=
"String"
>
送样单位
</Data></Cell>
<Cell
ss:StyleID=
"s70"
><Data
ss:Type=
"String"
>
${sendName}
</Data></Cell>
<Cell
ss:StyleID=
"s72"
><Data
ss:Type=
"String"
>
送样人
</Data></Cell>
<Cell
ss:StyleID=
"s70"
><Data
ss:Type=
"String"
>
${sender}
</Data></Cell>
</Row>
<Row
ss:Height=
"15.5"
>
<Cell
ss:StyleID=
"s74"
><Data
ss:Type=
"String"
>
送样日期
</Data></Cell>
<Cell
ss:StyleID=
"s77"
><Data
ss:Type=
"String"
>
${sendDate}
</Data></Cell>
<Cell
ss:StyleID=
"s79"
><Data
ss:Type=
"String"
>
样品数量
</Data></Cell>
<Cell
ss:StyleID=
"s81"
><Data
ss:Type=
"String"
>
${sampleNum}件
</Data></Cell>
</Row>
<Row
ss:Height=
"15.5"
>
<Cell
ss:StyleID=
"s74"
><Data
ss:Type=
"String"
>
样品名称
</Data></Cell>
<Cell
ss:MergeAcross=
"2"
ss:StyleID=
"m1730788859424"
><Data
ss:Type=
"String"
>
${sampleNames}
</Data></Cell>
</Row>
<Row
ss:Height=
"15.5"
>
<Cell
ss:StyleID=
"s74"
><Data
ss:Type=
"String"
>
检测类别
</Data></Cell>
<Cell
ss:MergeAcross=
"2"
ss:StyleID=
"m1730788859444"
><Data
ss:Type=
"String"
>
委托
</Data></Cell>
</Row>
<Row
ss:AutoFitHeight=
"0"
ss:Height=
"30"
>
<Cell
ss:StyleID=
"s74"
><Data
ss:Type=
"String"
>
检测项目
</Data></Cell>
<Cell
ss:MergeAcross=
"2"
ss:StyleID=
"m1730788859464"
><Data
ss:Type=
"String"
>
${teamNames}
</Data></Cell>
</Row>
<Row
ss:AutoFitHeight=
"0"
ss:Height=
"127.5"
>
<Cell
ss:StyleID=
"s74"
><Data
ss:Type=
"String"
>
检测依据
</Data></Cell>
<Cell
ss:MergeAcross=
"2"
ss:StyleID=
"m1730788859484"
><Data
ss:Type=
"String"
>
${methodNames}
</Data></Cell>
</Row>
<Row
ss:AutoFitHeight=
"0"
ss:Height=
"30"
>
<Cell
ss:MergeDown=
"1"
ss:StyleID=
"m1730788861436"
><Data
ss:Type=
"String"
>
主要仪器设备
(编号)
</Data></Cell>
<Cell
ss:MergeAcross=
"2"
ss:MergeDown=
"1"
ss:StyleID=
"m1730788859504"
><Data
ss:Type=
"String"
>
${equipmentNames}
</Data></Cell>
</Row>
<Row
ss:AutoFitHeight=
"0"
ss:Height=
"94.5"
/>
<Row
ss:Height=
"15.5"
>
<Cell
ss:StyleID=
"s74"
><Data
ss:Type=
"String"
>
项目名称
</Data></Cell>
<Cell
ss:MergeAcross=
"2"
ss:StyleID=
"m1730788859524"
><Data
ss:Type=
"String"
>
${projectName}
</Data></Cell>
</Row>
<Row
ss:Height=
"15.5"
>
<Cell
ss:StyleID=
"s74"
><Data
ss:Type=
"String"
>
签发日期
</Data></Cell>
<Cell
ss:MergeAcross=
"2"
ss:StyleID=
"m1730788861296"
><Data
ss:Type=
"String"
>
${printDate}
</Data></Cell>
</Row>
<Row
ss:Height=
"15.5"
>
<Cell
ss:StyleID=
"s74"
><Data
ss:Type=
"String"
>
备注
</Data></Cell>
<Cell
ss:MergeAcross=
"2"
ss:StyleID=
"m1730788861316"
/>
</Row>
<Row
ss:Height=
"15"
>
<Cell
ss:StyleID=
"s111"
><Data
ss:Type=
"String"
>
编制:
</Data></Cell>
<Cell
ss:StyleID=
"s63"
><Data
ss:Type=
"String"
>
审核:
</Data></Cell>
<Cell
ss:StyleID=
"s66"
><Data
ss:Type=
"String"
>
批准:
</Data></Cell>
</Row>
<Row>
<Cell
ss:StyleID=
"s114"
/>
</Row>
</Table>
<WorksheetOptions
xmlns=
"urn:schemas-microsoft-com:office:excel"
>
<PageSetup>
<Header
x:Margin=
"0.3"
/>
<Footer
x:Margin=
"0.3"
/>
<PageMargins
x:Bottom=
"0.75"
x:Left=
"0.7"
x:Right=
"0.7"
x:Top=
"0.75"
/>
</PageSetup>
<Print>
<ValidPrinterInfo/>
<PaperSizeIndex>
9
</PaperSizeIndex>
<HorizontalResolution>
600
</HorizontalResolution>
<VerticalResolution>
600
</VerticalResolution>
</Print>
<Panes>
<Pane>
<Number>
3
</Number>
<ActiveRow>
4
</ActiveRow>
<ActiveCol>
5
</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>
False
</ProtectObjects>
<ProtectScenarios>
False
</ProtectScenarios>
</WorksheetOptions>
</Worksheet>
</Workbook>
cement-business/src/main/resources/templates/report1.ftl
0 → 100644
View file @
62fa9a5a
<?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: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:body><w:p
w14:paraId=
"5EF2F4A7"
w14:textId=
"66ACC37B"
w:rsidR=
"00E74DC9"
w:rsidRPr=
"00644ADE"
w:rsidRDefault=
"002D25D3"
w:rsidP=
"002D25D3"
><w:pPr><w:jc
w:val=
"center"
/><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr></w:pPr><w:r
w:rsidRPr=
"00644ADE"
><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
w:hint=
"eastAsia"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr><w:t>
中国水泥发展中心物化检测所
</w:t></w:r></w:p><w:p
w14:paraId=
"3CD7A115"
w14:textId=
"77777777"
w:rsidR=
"00644ADE"
w:rsidRDefault=
"002D25D3"
w:rsidP=
"00644ADE"
><w:pPr><w:jc
w:val=
"center"
/><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
/><w:b/><w:bCs/><w:sz
w:val=
"36"
/><w:szCs
w:val=
"36"
/></w:rPr></w:pPr><w:r
w:rsidRPr=
"00644ADE"
><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
w:hint=
"eastAsia"
/><w:b/><w:bCs/><w:sz
w:val=
"36"
/><w:szCs
w:val=
"36"
/></w:rPr><w:t>
检 测 报 告
</w:t></w:r></w:p><w:p
w14:paraId=
"4B2369EB"
w14:textId=
"052CF6DA"
w:rsidR=
"002D25D3"
w:rsidRPr=
"00644ADE"
w:rsidRDefault=
"002D25D3"
w:rsidP=
"00644ADE"
><w:pPr><w:jc
w:val=
"left"
/><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
w:hint=
"eastAsia"
/><w:b/><w:bCs/><w:sz
w:val=
"36"
/><w:szCs
w:val=
"36"
/></w:rPr></w:pPr><w:r
w:rsidRPr=
"00644ADE"
><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
w:hint=
"eastAsia"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr><w:t>
报告编号:
</w:t></w:r><w:r
w:rsidR=
"00644ADE"
w:rsidRPr=
"00644ADE"
><w:rPr><w:rFonts
w:hint=
"eastAsia"
/></w:rPr><w:t
xml:space=
"preserve"
>
</w:t></w:r></w:p><w:tbl><w:tblPr><w:tblStyle
w:val=
"a3"
/><w:tblW
w:w=
"8222"
w:type=
"dxa"
/><w:tblInd
w:w=
"-5"
w:type=
"dxa"
/><w:tblLook
w:val=
"04A0"
w:firstRow=
"1"
w:lastRow=
"0"
w:firstColumn=
"1"
w:lastColumn=
"0"
w:noHBand=
"0"
w:noVBand=
"1"
/></w:tblPr><w:tblGrid><w:gridCol
w:w=
"1701"
/><w:gridCol
w:w=
"3544"
/><w:gridCol
w:w=
"1276"
/><w:gridCol
w:w=
"1701"
/></w:tblGrid><w:tr
w:rsidR=
"008C003B"
w14:paraId=
"180DD316"
w14:textId=
"77777777"
w:rsidTr=
"00644ADE"
><w:tc><w:tcPr><w:tcW
w:w=
"1701"
w:type=
"dxa"
/></w:tcPr><w:p
w14:paraId=
"22AC0A26"
w14:textId=
"74AB427E"
w:rsidR=
"002D25D3"
w:rsidRPr=
"00644ADE"
w:rsidRDefault=
"002D25D3"
w:rsidP=
"002D25D3"
><w:pPr><w:jc
w:val=
"center"
/><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
w:hint=
"eastAsia"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr></w:pPr><w:r
w:rsidRPr=
"00644ADE"
><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
w:hint=
"eastAsia"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr><w:t>
送样单位
</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW
w:w=
"3544"
w:type=
"dxa"
/></w:tcPr><w:p
w14:paraId=
"3D0E143E"
w14:textId=
"47790230"
w:rsidR=
"002D25D3"
w:rsidRPr=
"00644ADE"
w:rsidRDefault=
"00B528BD"
w:rsidP=
"002D25D3"
><w:pPr><w:jc
w:val=
"left"
/><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
w:hint=
"eastAsia"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr></w:pPr><w:r><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr><w:t>
${sendName}
</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW
w:w=
"1276"
w:type=
"dxa"
/></w:tcPr><w:p
w14:paraId=
"602B7074"
w14:textId=
"16ADA88C"
w:rsidR=
"002D25D3"
w:rsidRPr=
"00644ADE"
w:rsidRDefault=
"002D25D3"
w:rsidP=
"002D25D3"
><w:pPr><w:jc
w:val=
"center"
/><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
w:hint=
"eastAsia"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr></w:pPr><w:r
w:rsidRPr=
"00644ADE"
><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
w:hint=
"eastAsia"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr><w:t>
送样人
</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW
w:w=
"1701"
w:type=
"dxa"
/></w:tcPr><w:p
w14:paraId=
"7D85FB7D"
w14:textId=
"46C35F97"
w:rsidR=
"002D25D3"
w:rsidRPr=
"00644ADE"
w:rsidRDefault=
"00B528BD"
w:rsidP=
"002D25D3"
><w:pPr><w:jc
w:val=
"left"
/><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
w:hint=
"eastAsia"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr></w:pPr><w:r><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr><w:t>
${sender}
</w:t></w:r></w:p></w:tc></w:tr><w:tr
w:rsidR=
"008C003B"
w14:paraId=
"67723B19"
w14:textId=
"77777777"
w:rsidTr=
"00644ADE"
><w:tc><w:tcPr><w:tcW
w:w=
"1701"
w:type=
"dxa"
/></w:tcPr><w:p
w14:paraId=
"6567C363"
w14:textId=
"00BB8FB1"
w:rsidR=
"002D25D3"
w:rsidRPr=
"00644ADE"
w:rsidRDefault=
"002D25D3"
w:rsidP=
"002D25D3"
><w:pPr><w:jc
w:val=
"center"
/><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
w:hint=
"eastAsia"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr></w:pPr><w:r
w:rsidRPr=
"00644ADE"
><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
w:hint=
"eastAsia"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr><w:t>
送样日期
</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW
w:w=
"3544"
w:type=
"dxa"
/></w:tcPr><w:p
w14:paraId=
"58BFA958"
w14:textId=
"061E7D2F"
w:rsidR=
"002D25D3"
w:rsidRPr=
"00644ADE"
w:rsidRDefault=
"00B528BD"
w:rsidP=
"002D25D3"
><w:pPr><w:jc
w:val=
"left"
/><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
w:hint=
"eastAsia"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr></w:pPr><w:r><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr><w:t>
${sendDate}
</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW
w:w=
"1276"
w:type=
"dxa"
/></w:tcPr><w:p
w14:paraId=
"4BD082E3"
w14:textId=
"529AF015"
w:rsidR=
"002D25D3"
w:rsidRPr=
"00644ADE"
w:rsidRDefault=
"002D25D3"
w:rsidP=
"002D25D3"
><w:pPr><w:jc
w:val=
"center"
/><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
w:hint=
"eastAsia"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr></w:pPr><w:r
w:rsidRPr=
"00644ADE"
><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
w:hint=
"eastAsia"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr><w:t>
样品数量
</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW
w:w=
"1701"
w:type=
"dxa"
/></w:tcPr><w:p
w14:paraId=
"193A2A37"
w14:textId=
"07E9EB00"
w:rsidR=
"002D25D3"
w:rsidRPr=
"00644ADE"
w:rsidRDefault=
"00B528BD"
w:rsidP=
"002D25D3"
><w:pPr><w:jc
w:val=
"left"
/><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
w:hint=
"eastAsia"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr></w:pPr><w:r><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr><w:t>
${sampleNum}件
</w:t></w:r></w:p></w:tc></w:tr><w:tr
w:rsidR=
"002D25D3"
w14:paraId=
"0729EC86"
w14:textId=
"77777777"
w:rsidTr=
"00644ADE"
><w:trPr><w:trHeight
w:val=
"679"
/></w:trPr><w:tc><w:tcPr><w:tcW
w:w=
"1701"
w:type=
"dxa"
/><w:vAlign
w:val=
"center"
/></w:tcPr><w:p
w14:paraId=
"245213FD"
w14:textId=
"40F07E1B"
w:rsidR=
"002D25D3"
w:rsidRPr=
"00644ADE"
w:rsidRDefault=
"002D25D3"
w:rsidP=
"00644ADE"
><w:pPr><w:jc
w:val=
"center"
/><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
w:hint=
"eastAsia"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr></w:pPr><w:r
w:rsidRPr=
"00644ADE"
><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
w:hint=
"eastAsia"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr><w:t>
样品名称
</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW
w:w=
"6521"
w:type=
"dxa"
/><w:gridSpan
w:val=
"3"
/></w:tcPr><w:p
w14:paraId=
"4C7A3401"
w14:textId=
"2C48EC37"
w:rsidR=
"00644ADE"
w:rsidRPr=
"00644ADE"
w:rsidRDefault=
"00B528BD"
w:rsidP=
"00644ADE"
><w:pPr><w:jc
w:val=
"left"
/><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
w:hint=
"eastAsia"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr></w:pPr><w:r><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr><w:t>
${sampleNames}
</w:t></w:r></w:p></w:tc></w:tr><w:tr
w:rsidR=
"002D25D3"
w14:paraId=
"766C4BA1"
w14:textId=
"77777777"
w:rsidTr=
"00644ADE"
><w:tc><w:tcPr><w:tcW
w:w=
"1701"
w:type=
"dxa"
/></w:tcPr><w:p
w14:paraId=
"6E638234"
w14:textId=
"1326CFD6"
w:rsidR=
"002D25D3"
w:rsidRPr=
"00644ADE"
w:rsidRDefault=
"002D25D3"
w:rsidP=
"002D25D3"
><w:pPr><w:jc
w:val=
"center"
/><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
w:hint=
"eastAsia"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr></w:pPr><w:r
w:rsidRPr=
"00644ADE"
><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
w:hint=
"eastAsia"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr><w:t>
检测类别
</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW
w:w=
"6521"
w:type=
"dxa"
/><w:gridSpan
w:val=
"3"
/></w:tcPr><w:p
w14:paraId=
"3495EB2F"
w14:textId=
"755A0240"
w:rsidR=
"002D25D3"
w:rsidRPr=
"00644ADE"
w:rsidRDefault=
"002D25D3"
w:rsidP=
"002D25D3"
><w:pPr><w:jc
w:val=
"left"
/><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
w:hint=
"eastAsia"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr></w:pPr><w:r
w:rsidRPr=
"00644ADE"
><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
w:hint=
"eastAsia"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr><w:t>
委托
</w:t></w:r></w:p></w:tc></w:tr><w:tr
w:rsidR=
"002D25D3"
w14:paraId=
"38F3E835"
w14:textId=
"77777777"
w:rsidTr=
"00644ADE"
><w:trPr><w:trHeight
w:val=
"1051"
/></w:trPr><w:tc><w:tcPr><w:tcW
w:w=
"1701"
w:type=
"dxa"
/><w:vAlign
w:val=
"center"
/></w:tcPr><w:p
w14:paraId=
"339E4C5C"
w14:textId=
"68B44A5B"
w:rsidR=
"002D25D3"
w:rsidRPr=
"00644ADE"
w:rsidRDefault=
"002D25D3"
w:rsidP=
"00644ADE"
><w:pPr><w:jc
w:val=
"center"
/><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
w:hint=
"eastAsia"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr></w:pPr><w:r
w:rsidRPr=
"00644ADE"
><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
w:hint=
"eastAsia"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr><w:t>
检测项目
</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW
w:w=
"6521"
w:type=
"dxa"
/><w:gridSpan
w:val=
"3"
/></w:tcPr><w:p
w14:paraId=
"5947F7A2"
w14:textId=
"21AFBEE3"
w:rsidR=
"002D25D3"
w:rsidRPr=
"00644ADE"
w:rsidRDefault=
"00B528BD"
w:rsidP=
"00644ADE"
><w:pPr><w:jc
w:val=
"left"
/><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
w:hint=
"eastAsia"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr></w:pPr><w:r><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr><w:t>
${teamNames}
</w:t></w:r></w:p></w:tc></w:tr><w:tr
w:rsidR=
"002D25D3"
w14:paraId=
"22C097DF"
w14:textId=
"77777777"
w:rsidTr=
"00644ADE"
><w:trPr><w:trHeight
w:val=
"3817"
/></w:trPr><w:tc><w:tcPr><w:tcW
w:w=
"1701"
w:type=
"dxa"
/><w:vAlign
w:val=
"center"
/></w:tcPr><w:p
w14:paraId=
"001FFCD8"
w14:textId=
"2BF0634E"
w:rsidR=
"002D25D3"
w:rsidRPr=
"00644ADE"
w:rsidRDefault=
"002D25D3"
w:rsidP=
"00644ADE"
><w:pPr><w:jc
w:val=
"center"
/><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
w:hint=
"eastAsia"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr></w:pPr><w:r
w:rsidRPr=
"00644ADE"
><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
w:hint=
"eastAsia"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr><w:t>
检测依据
</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW
w:w=
"6521"
w:type=
"dxa"
/><w:gridSpan
w:val=
"3"
/></w:tcPr><w:p
w14:paraId=
"6EF75D3B"
w14:textId=
"06E15D21"
w:rsidR=
"002D25D3"
w:rsidRPr=
"00644ADE"
w:rsidRDefault=
"00B528BD"
w:rsidP=
"002D25D3"
><w:pPr><w:jc
w:val=
"left"
/><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
w:hint=
"eastAsia"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr></w:pPr><w:r><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr><w:t>
${methodNames}
</w:t></w:r></w:p></w:tc></w:tr><w:tr
w:rsidR=
"002D25D3"
w14:paraId=
"07FA5A77"
w14:textId=
"77777777"
w:rsidTr=
"00644ADE"
><w:trPr><w:trHeight
w:val=
"3997"
/></w:trPr><w:tc><w:tcPr><w:tcW
w:w=
"1701"
w:type=
"dxa"
/><w:vAlign
w:val=
"center"
/></w:tcPr><w:p
w14:paraId=
"16679A00"
w14:textId=
"77777777"
w:rsidR=
"002D25D3"
w:rsidRPr=
"00644ADE"
w:rsidRDefault=
"002D25D3"
w:rsidP=
"002D25D3"
><w:pPr><w:jc
w:val=
"center"
/><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr></w:pPr><w:r
w:rsidRPr=
"00644ADE"
><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
w:hint=
"eastAsia"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr><w:t>
主要仪器设备
</w:t></w:r></w:p><w:p
w14:paraId=
"518F0E2B"
w14:textId=
"3EB2D99B"
w:rsidR=
"002D25D3"
w:rsidRPr=
"00644ADE"
w:rsidRDefault=
"002D25D3"
w:rsidP=
"002D25D3"
><w:pPr><w:jc
w:val=
"center"
/><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
w:hint=
"eastAsia"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr></w:pPr><w:r
w:rsidRPr=
"00644ADE"
><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
w:hint=
"eastAsia"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr><w:t>
(编号
</w:t></w:r><w:r
w:rsidRPr=
"00644ADE"
><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr><w:t>
)
</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW
w:w=
"6521"
w:type=
"dxa"
/><w:gridSpan
w:val=
"3"
/></w:tcPr><w:p
w14:paraId=
"2D2F3B15"
w14:textId=
"4946E079"
w:rsidR=
"002D25D3"
w:rsidRPr=
"00644ADE"
w:rsidRDefault=
"00B528BD"
w:rsidP=
"002D25D3"
><w:pPr><w:jc
w:val=
"left"
/><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
w:hint=
"eastAsia"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr></w:pPr><w:r><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr><w:t>
${equipmentNames}
</w:t></w:r></w:p></w:tc></w:tr><w:tr
w:rsidR=
"002D25D3"
w14:paraId=
"343C9214"
w14:textId=
"77777777"
w:rsidTr=
"00644ADE"
><w:tc><w:tcPr><w:tcW
w:w=
"1701"
w:type=
"dxa"
/></w:tcPr><w:p
w14:paraId=
"2A6D45CC"
w14:textId=
"77653747"
w:rsidR=
"002D25D3"
w:rsidRPr=
"00644ADE"
w:rsidRDefault=
"002D25D3"
w:rsidP=
"002D25D3"
><w:pPr><w:jc
w:val=
"center"
/><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
w:hint=
"eastAsia"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr></w:pPr><w:r
w:rsidRPr=
"00644ADE"
><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
w:hint=
"eastAsia"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr><w:t>
项目名称
</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW
w:w=
"6521"
w:type=
"dxa"
/><w:gridSpan
w:val=
"3"
/></w:tcPr><w:p
w14:paraId=
"477A2725"
w14:textId=
"78C2DB56"
w:rsidR=
"002D25D3"
w:rsidRPr=
"00644ADE"
w:rsidRDefault=
"00B528BD"
w:rsidP=
"002D25D3"
><w:pPr><w:jc
w:val=
"left"
/><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
w:hint=
"eastAsia"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr></w:pPr><w:r><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr><w:t>
${projectName}
</w:t></w:r></w:p></w:tc></w:tr><w:tr
w:rsidR=
"002D25D3"
w14:paraId=
"4FFC33AC"
w14:textId=
"77777777"
w:rsidTr=
"00644ADE"
><w:trPr><w:trHeight
w:val=
"121"
/></w:trPr><w:tc><w:tcPr><w:tcW
w:w=
"1701"
w:type=
"dxa"
/></w:tcPr><w:p
w14:paraId=
"77DDFF4B"
w14:textId=
"2CA14737"
w:rsidR=
"002D25D3"
w:rsidRPr=
"00644ADE"
w:rsidRDefault=
"002D25D3"
w:rsidP=
"002D25D3"
><w:pPr><w:jc
w:val=
"center"
/><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
w:hint=
"eastAsia"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr></w:pPr><w:r
w:rsidRPr=
"00644ADE"
><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
w:hint=
"eastAsia"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr><w:t>
签发日期
</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW
w:w=
"6521"
w:type=
"dxa"
/><w:gridSpan
w:val=
"3"
/></w:tcPr><w:p
w14:paraId=
"6FB6B9A0"
w14:textId=
"79201571"
w:rsidR=
"002D25D3"
w:rsidRPr=
"00644ADE"
w:rsidRDefault=
"00B528BD"
w:rsidP=
"002D25D3"
><w:pPr><w:jc
w:val=
"left"
/><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
w:hint=
"eastAsia"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr></w:pPr><w:r><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr><w:t>
${printDate}
</w:t></w:r></w:p></w:tc></w:tr><w:tr
w:rsidR=
"002D25D3"
w14:paraId=
"0F4A4F82"
w14:textId=
"77777777"
w:rsidTr=
"00644ADE"
><w:trPr><w:trHeight
w:val=
"367"
/></w:trPr><w:tc><w:tcPr><w:tcW
w:w=
"1701"
w:type=
"dxa"
/></w:tcPr><w:p
w14:paraId=
"33DED93F"
w14:textId=
"6A36D845"
w:rsidR=
"002D25D3"
w:rsidRPr=
"00644ADE"
w:rsidRDefault=
"002D25D3"
w:rsidP=
"002D25D3"
><w:pPr><w:jc
w:val=
"center"
/><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
w:hint=
"eastAsia"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr></w:pPr><w:r
w:rsidRPr=
"00644ADE"
><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
w:hint=
"eastAsia"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr><w:t>
备注
</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW
w:w=
"6521"
w:type=
"dxa"
/><w:gridSpan
w:val=
"3"
/></w:tcPr><w:p
w14:paraId=
"1D4F8913"
w14:textId=
"0129AC4E"
w:rsidR=
"002D25D3"
w:rsidRPr=
"00644ADE"
w:rsidRDefault=
"002D25D3"
w:rsidP=
"002D25D3"
><w:pPr><w:jc
w:val=
"left"
/><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
w:hint=
"eastAsia"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr></w:pPr></w:p></w:tc></w:tr></w:tbl><w:tbl><w:tblPr><w:tblW
w:w=
"6908"
w:type=
"dxa"
/><w:tblLook
w:val=
"04A0"
w:firstRow=
"1"
w:lastRow=
"0"
w:firstColumn=
"1"
w:lastColumn=
"0"
w:noHBand=
"0"
w:noVBand=
"1"
/></w:tblPr><w:tblGrid><w:gridCol
w:w=
"1636"
/><w:gridCol
w:w=
"4036"
/><w:gridCol
w:w=
"1236"
/></w:tblGrid><w:tr
w:rsidR=
"00644ADE"
w:rsidRPr=
"00644ADE"
w14:paraId=
"6ADDFBD0"
w14:textId=
"77777777"
w:rsidTr=
"00644ADE"
><w:trPr><w:trHeight
w:val=
"403"
/></w:trPr><w:tc><w:tcPr><w:tcW
w:w=
"1636"
w:type=
"dxa"
/><w:tcBorders><w:top
w:val=
"nil"
/><w:left
w:val=
"nil"
/><w:bottom
w:val=
"nil"
/><w:right
w:val=
"nil"
/></w:tcBorders><w:shd
w:val=
"clear"
w:color=
"auto"
w:fill=
"auto"
/><w:noWrap/><w:vAlign
w:val=
"bottom"
/><w:hideMark/></w:tcPr><w:p
w14:paraId=
"27422F36"
w14:textId=
"77777777"
w:rsidR=
"00644ADE"
w:rsidRPr=
"00644ADE"
w:rsidRDefault=
"00644ADE"
w:rsidP=
"00644ADE"
><w:pPr><w:widowControl/><w:jc
w:val=
"right"
/><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
w:cs=
"宋体"
/><w:kern
w:val=
"0"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr></w:pPr><w:r
w:rsidRPr=
"00644ADE"
><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
w:cs=
"宋体"
w:hint=
"eastAsia"
/><w:kern
w:val=
"0"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr><w:t>
编制:
</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW
w:w=
"4036"
w:type=
"dxa"
/><w:tcBorders><w:top
w:val=
"nil"
/><w:left
w:val=
"nil"
/><w:bottom
w:val=
"nil"
/><w:right
w:val=
"nil"
/></w:tcBorders><w:shd
w:val=
"clear"
w:color=
"auto"
w:fill=
"auto"
/><w:noWrap/><w:vAlign
w:val=
"bottom"
/><w:hideMark/></w:tcPr><w:p
w14:paraId=
"3119E224"
w14:textId=
"77777777"
w:rsidR=
"00644ADE"
w:rsidRPr=
"00644ADE"
w:rsidRDefault=
"00644ADE"
w:rsidP=
"00644ADE"
><w:pPr><w:widowControl/><w:jc
w:val=
"center"
/><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
w:cs=
"宋体"
w:hint=
"eastAsia"
/><w:kern
w:val=
"0"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr></w:pPr><w:r
w:rsidRPr=
"00644ADE"
><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
w:cs=
"宋体"
w:hint=
"eastAsia"
/><w:kern
w:val=
"0"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr><w:t>
审核:
</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW
w:w=
"1236"
w:type=
"dxa"
/><w:tcBorders><w:top
w:val=
"nil"
/><w:left
w:val=
"nil"
/><w:bottom
w:val=
"nil"
/><w:right
w:val=
"nil"
/></w:tcBorders><w:shd
w:val=
"clear"
w:color=
"auto"
w:fill=
"auto"
/><w:noWrap/><w:vAlign
w:val=
"bottom"
/><w:hideMark/></w:tcPr><w:p
w14:paraId=
"49054968"
w14:textId=
"77777777"
w:rsidR=
"00644ADE"
w:rsidRPr=
"00644ADE"
w:rsidRDefault=
"00644ADE"
w:rsidP=
"00644ADE"
><w:pPr><w:widowControl/><w:jc
w:val=
"left"
/><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
w:cs=
"宋体"
w:hint=
"eastAsia"
/><w:kern
w:val=
"0"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr></w:pPr><w:r
w:rsidRPr=
"00644ADE"
><w:rPr><w:rFonts
w:ascii=
"宋体"
w:eastAsia=
"宋体"
w:hAnsi=
"宋体"
w:cs=
"宋体"
w:hint=
"eastAsia"
/><w:kern
w:val=
"0"
/><w:sz
w:val=
"24"
/><w:szCs
w:val=
"24"
/></w:rPr><w:t>
批准:
</w:t></w:r></w:p></w:tc></w:tr></w:tbl><w:p
w14:paraId=
"3E2782D1"
w14:textId=
"77777777"
w:rsidR=
"002D25D3"
w:rsidRPr=
"002D25D3"
w:rsidRDefault=
"002D25D3"
w:rsidP=
"002D25D3"
><w:pPr><w:jc
w:val=
"center"
/><w:rPr><w:rFonts
w:hint=
"eastAsia"
/><w:b/><w:bCs/></w:rPr></w:pPr></w:p><w:sectPr
w:rsidR=
"002D25D3"
w:rsidRPr=
"002D25D3"
><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:docGrid
w:type=
"lines"
w:linePitch=
"312"
/></w:sectPr></w:body></w:document></pkg:xmlData></pkg:part><pkg:part
pkg:name=
"/word/_rels/document.xml.rels"
pkg:contentType=
"application/vnd.openxmlformats-package.relationships+xml"
pkg:padding=
"256"
><pkg:xmlData><Relationships
xmlns=
"http://schemas.openxmlformats.org/package/2006/relationships"
><Relationship
Id=
"rId3"
Type=
"http://schemas.openxmlformats.org/officeDocument/2006/relationships/webSettings"
Target=
"webSettings.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"
/><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/fontTable"
Target=
"fontTable.xml"
/></Relationships></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"
panose=
"020F0302020204030204"
/><a:ea
typeface=
""
/><a:cs
typeface=
""
/><a:font
script=
"Jpan"
typeface=
"游ゴシック Light"
/><a:font
script=
"Hang"
typeface=
"맑은 고딕"
/><a:font
script=
"Hans"
typeface=
"等线 Light"
/><a:font
script=
"Hant"
typeface=
"新細明體"
/><a:font
script=
"Arab"
typeface=
"Times New Roman"
/><a:font
script=
"Hebr"
typeface=
"Times New Roman"
/><a:font
script=
"Thai"
typeface=
"Angsana New"
/><a:font
script=
"Ethi"
typeface=
"Nyala"
/><a:font
script=
"Beng"
typeface=
"Vrinda"
/><a:font
script=
"Gujr"
typeface=
"Shruti"
/><a:font
script=
"Khmr"
typeface=
"MoolBoran"
/><a:font
script=
"Knda"
typeface=
"Tunga"
/><a:font
script=
"Guru"
typeface=
"Raavi"
/><a:font
script=
"Cans"
typeface=
"Euphemia"
/><a:font
script=
"Cher"
typeface=
"Plantagenet Cherokee"
/><a:font
script=
"Yiii"
typeface=
"Microsoft Yi Baiti"
/><a:font
script=
"Tibt"
typeface=
"Microsoft Himalaya"
/><a:font
script=
"Thaa"
typeface=
"MV Boli"
/><a:font
script=
"Deva"
typeface=
"Mangal"
/><a:font
script=
"Telu"
typeface=
"Gautami"
/><a:font
script=
"Taml"
typeface=
"Latha"
/><a:font
script=
"Syrc"
typeface=
"Estrangelo Edessa"
/><a:font
script=
"Orya"
typeface=
"Kalinga"
/><a:font
script=
"Mlym"
typeface=
"Kartika"
/><a:font
script=
"Laoo"
typeface=
"DokChampa"
/><a:font
script=
"Sinh"
typeface=
"Iskoola Pota"
/><a:font
script=
"Mong"
typeface=
"Mongolian Baiti"
/><a:font
script=
"Viet"
typeface=
"Times New Roman"
/><a:font
script=
"Uigh"
typeface=
"Microsoft Uighur"
/><a:font
script=
"Geor"
typeface=
"Sylfaen"
/><a:font
script=
"Armn"
typeface=
"Arial"
/><a:font
script=
"Bugi"
typeface=
"Leelawadee UI"
/><a:font
script=
"Bopo"
typeface=
"Microsoft JhengHei"
/><a:font
script=
"Java"
typeface=
"Javanese Text"
/><a:font
script=
"Lisu"
typeface=
"Segoe UI"
/><a:font
script=
"Mymr"
typeface=
"Myanmar Text"
/><a:font
script=
"Nkoo"
typeface=
"Ebrima"
/><a:font
script=
"Olck"
typeface=
"Nirmala UI"
/><a:font
script=
"Osma"
typeface=
"Ebrima"
/><a:font
script=
"Phag"
typeface=
"Phagspa"
/><a:font
script=
"Syrn"
typeface=
"Estrangelo Edessa"
/><a:font
script=
"Syrj"
typeface=
"Estrangelo Edessa"
/><a:font
script=
"Syre"
typeface=
"Estrangelo Edessa"
/><a:font
script=
"Sora"
typeface=
"Nirmala UI"
/><a:font
script=
"Tale"
typeface=
"Microsoft Tai Le"
/><a:font
script=
"Talu"
typeface=
"Microsoft New Tai Lue"
/><a:font
script=
"Tfng"
typeface=
"Ebrima"
/></a:majorFont><a:minorFont><a:latin
typeface=
"等线"
panose=
"020F0502020204030204"
/><a:ea
typeface=
""
/><a:cs
typeface=
""
/><a:font
script=
"Jpan"
typeface=
"游明朝"
/><a:font
script=
"Hang"
typeface=
"맑은 고딕"
/><a:font
script=
"Hans"
typeface=
"等线"
/><a:font
script=
"Hant"
typeface=
"新細明體"
/><a:font
script=
"Arab"
typeface=
"Arial"
/><a:font
script=
"Hebr"
typeface=
"Arial"
/><a:font
script=
"Thai"
typeface=
"Cordia New"
/><a:font
script=
"Ethi"
typeface=
"Nyala"
/><a:font
script=
"Beng"
typeface=
"Vrinda"
/><a:font
script=
"Gujr"
typeface=
"Shruti"
/><a:font
script=
"Khmr"
typeface=
"DaunPenh"
/><a:font
script=
"Knda"
typeface=
"Tunga"
/><a:font
script=
"Guru"
typeface=
"Raavi"
/><a:font
script=
"Cans"
typeface=
"Euphemia"
/><a:font
script=
"Cher"
typeface=
"Plantagenet Cherokee"
/><a:font
script=
"Yiii"
typeface=
"Microsoft Yi Baiti"
/><a:font
script=
"Tibt"
typeface=
"Microsoft Himalaya"
/><a:font
script=
"Thaa"
typeface=
"MV Boli"
/><a:font
script=
"Deva"
typeface=
"Mangal"
/><a:font
script=
"Telu"
typeface=
"Gautami"
/><a:font
script=
"Taml"
typeface=
"Latha"
/><a:font
script=
"Syrc"
typeface=
"Estrangelo Edessa"
/><a:font
script=
"Orya"
typeface=
"Kalinga"
/><a:font
script=
"Mlym"
typeface=
"Kartika"
/><a:font
script=
"Laoo"
typeface=
"DokChampa"
/><a:font
script=
"Sinh"
typeface=
"Iskoola Pota"
/><a:font
script=
"Mong"
typeface=
"Mongolian Baiti"
/><a:font
script=
"Viet"
typeface=
"Arial"
/><a:font
script=
"Uigh"
typeface=
"Microsoft Uighur"
/><a:font
script=
"Geor"
typeface=
"Sylfaen"
/><a:font
script=
"Armn"
typeface=
"Arial"
/><a:font
script=
"Bugi"
typeface=
"Leelawadee UI"
/><a:font
script=
"Bopo"
typeface=
"Microsoft JhengHei"
/><a:font
script=
"Java"
typeface=
"Javanese Text"
/><a:font
script=
"Lisu"
typeface=
"Segoe UI"
/><a:font
script=
"Mymr"
typeface=
"Myanmar Text"
/><a:font
script=
"Nkoo"
typeface=
"Ebrima"
/><a:font
script=
"Olck"
typeface=
"Nirmala UI"
/><a:font
script=
"Osma"
typeface=
"Ebrima"
/><a:font
script=
"Phag"
typeface=
"Phagspa"
/><a:font
script=
"Syrn"
typeface=
"Estrangelo Edessa"
/><a:font
script=
"Syrj"
typeface=
"Estrangelo Edessa"
/><a:font
script=
"Syre"
typeface=
"Estrangelo Edessa"
/><a:font
script=
"Sora"
typeface=
"Nirmala UI"
/><a:font
script=
"Tale"
typeface=
"Microsoft Tai Le"
/><a:font
script=
"Talu"
typeface=
"Microsoft New Tai Lue"
/><a:font
script=
"Tfng"
typeface=
"Ebrima"
/></a:minorFont></a:fontScheme><a:fmtScheme
name=
"Office"
><a:fillStyleLst><a:solidFill><a:schemeClr
val=
"phClr"
/></a:solidFill><a:gradFill
rotWithShape=
"1"
><a:gsLst><a:gs
pos=
"0"
><a:schemeClr
val=
"phClr"
><a:lumMod
val=
"110000"
/><a:satMod
val=
"105000"
/><a:tint
val=
"67000"
/></a:schemeClr></a:gs><a:gs
pos=
"50000"
><a:schemeClr
val=
"phClr"
><a:lumMod
val=
"105000"
/><a:satMod
val=
"103000"
/><a:tint
val=
"73000"
/></a:schemeClr></a:gs><a:gs
pos=
"100000"
><a:schemeClr
val=
"phClr"
><a:lumMod
val=
"105000"
/><a:satMod
val=
"109000"
/><a:tint
val=
"81000"
/></a:schemeClr></a:gs></a:gsLst><a:lin
ang=
"5400000"
scaled=
"0"
/></a:gradFill><a:gradFill
rotWithShape=
"1"
><a:gsLst><a:gs
pos=
"0"
><a:schemeClr
val=
"phClr"
><a:satMod
val=
"103000"
/><a:lumMod
val=
"102000"
/><a:tint
val=
"94000"
/></a:schemeClr></a:gs><a:gs
pos=
"50000"
><a:schemeClr
val=
"phClr"
><a:satMod
val=
"110000"
/><a:lumMod
val=
"100000"
/><a:shade
val=
"100000"
/></a:schemeClr></a:gs><a:gs
pos=
"100000"
><a:schemeClr
val=
"phClr"
><a:lumMod
val=
"99000"
/><a:satMod
val=
"120000"
/><a:shade
val=
"78000"
/></a:schemeClr></a:gs></a:gsLst><a:lin
ang=
"5400000"
scaled=
"0"
/></a:gradFill></a:fillStyleLst><a:lnStyleLst><a:ln
w=
"6350"
cap=
"flat"
cmpd=
"sng"
algn=
"ctr"
><a:solidFill><a:schemeClr
val=
"phClr"
/></a:solidFill><a:prstDash
val=
"solid"
/><a:miter
lim=
"800000"
/></a:ln><a:ln
w=
"12700"
cap=
"flat"
cmpd=
"sng"
algn=
"ctr"
><a:solidFill><a:schemeClr
val=
"phClr"
/></a:solidFill><a:prstDash
val=
"solid"
/><a:miter
lim=
"800000"
/></a:ln><a:ln
w=
"19050"
cap=
"flat"
cmpd=
"sng"
algn=
"ctr"
><a:solidFill><a:schemeClr
val=
"phClr"
/></a:solidFill><a:prstDash
val=
"solid"
/><a:miter
lim=
"800000"
/></a:ln></a:lnStyleLst><a:effectStyleLst><a:effectStyle><a:effectLst/></a:effectStyle><a:effectStyle><a:effectLst/></a:effectStyle><a:effectStyle><a:effectLst><a:outerShdw
blurRad=
"57150"
dist=
"19050"
dir=
"5400000"
algn=
"ctr"
rotWithShape=
"0"
><a:srgbClr
val=
"000000"
><a:alpha
val=
"63000"
/></a:srgbClr></a:outerShdw></a:effectLst></a:effectStyle></a:effectStyleLst><a:bgFillStyleLst><a:solidFill><a:schemeClr
val=
"phClr"
/></a:solidFill><a:solidFill><a:schemeClr
val=
"phClr"
><a:tint
val=
"95000"
/><a:satMod
val=
"170000"
/></a:schemeClr></a:solidFill><a:gradFill
rotWithShape=
"1"
><a:gsLst><a:gs
pos=
"0"
><a:schemeClr
val=
"phClr"
><a:tint
val=
"93000"
/><a:satMod
val=
"150000"
/><a:shade
val=
"98000"
/><a:lumMod
val=
"102000"
/></a:schemeClr></a:gs><a:gs
pos=
"50000"
><a:schemeClr
val=
"phClr"
><a:tint
val=
"98000"
/><a:satMod
val=
"130000"
/><a:shade
val=
"90000"
/><a:lumMod
val=
"103000"
/></a:schemeClr></a:gs><a:gs
pos=
"100000"
><a:schemeClr
val=
"phClr"
><a:shade
val=
"63000"
/><a:satMod
val=
"120000"
/></a:schemeClr></a:gs></a:gsLst><a:lin
ang=
"5400000"
scaled=
"0"
/></a:gradFill></a:bgFillStyleLst></a:fmtScheme></a:themeElements><a:objectDefaults/><a:extraClrSchemeLst/><a:extLst><a:ext
uri=
"{05A4C25C-085E-4340-85A3-A5531E510DB2}"
><thm15:themeFamily
xmlns:thm15=
"http://schemas.microsoft.com/office/thememl/2012/main"
name=
"Office Theme"
id=
"{62F939B6-93AF-4DB8-9C6B-D6C7DFDC589F}"
vid=
"{4A3C46E8-61CC-4603-A589-7422A47A8E4A}"
/></a:ext></a:extLst></a:theme></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: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:sl=
"http://schemas.openxmlformats.org/schemaLibrary/2006/main"
mc:Ignorable=
"w14 w15 w16se w16cid w16 w16cex"
><w:zoom
w:percent=
"110"
/><w:bordersDoNotSurroundHeader/><w:bordersDoNotSurroundFooter/><w:proofState
w:spelling=
"clean"
w:grammar=
"clean"
/><w:defaultTabStop
w:val=
"420"
/><w:drawingGridVerticalSpacing
w:val=
"156"
/><w:displayHorizontalDrawingGridEvery
w:val=
"0"
/><w:displayVerticalDrawingGridEvery
w:val=
"2"
/><w:characterSpacingControl
w:val=
"compressPunctuation"
/><w:compat><w:spaceForUL/><w:balanceSingleByteDoubleByteWidth/><w:doNotLeaveBackslashAlone/><w:ulTrailSpace/><w:doNotExpandShiftReturn/><w:adjustLineHeightInTable/><w:useFELayout/><w:compatSetting
w:name=
"compatibilityMode"
w:uri=
"http://schemas.microsoft.com/office/word"
w:val=
"15"
/><w:compatSetting
w:name=
"overrideTableStyleFontSizeAndJustification"
w:uri=
"http://schemas.microsoft.com/office/word"
w:val=
"1"
/><w:compatSetting
w:name=
"enableOpenTypeFeatures"
w:uri=
"http://schemas.microsoft.com/office/word"
w:val=
"1"
/><w:compatSetting
w:name=
"doNotFlipMirrorIndents"
w:uri=
"http://schemas.microsoft.com/office/word"
w:val=
"1"
/><w:compatSetting
w:name=
"differentiateMultirowTableHeaders"
w:uri=
"http://schemas.microsoft.com/office/word"
w:val=
"1"
/><w:compatSetting
w:name=
"useWord2013TrackBottomHyphenation"
w:uri=
"http://schemas.microsoft.com/office/word"
w:val=
"0"
/></w:compat><w:rsids><w:rsidRoot
w:val=
"00A01312"
/><w:rsid
w:val=
"00070EC8"
/><w:rsid
w:val=
"002D25D3"
/><w:rsid
w:val=
"00371A14"
/><w:rsid
w:val=
"00644ADE"
/><w:rsid
w:val=
"007570C4"
/><w:rsid
w:val=
"00767648"
/><w:rsid
w:val=
"008C003B"
/><w:rsid
w:val=
"008E2AA1"
/><w:rsid
w:val=
"00A01312"
/><w:rsid
w:val=
"00B528BD"
/><w:rsid
w:val=
"00E74DC9"
/></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:shapeDefaults><o:shapedefaults
v:ext=
"edit"
spidmax=
"1026"
/><o:shapelayout
v:ext=
"edit"
><o:idmap
v:ext=
"edit"
data=
"1"
/></o:shapelayout></w:shapeDefaults><w:decimalSymbol
w:val=
"."
/><w:listSeparator
w:val=
","
/><w14:docId
w14:val=
"71ECAC3C"
/><w15:chartTrackingRefBased/><w15:docId
w15:val=
"{42CD0AE4-A76A-451E-A969-6A547C999A20}"
/></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:r=
"http://schemas.openxmlformats.org/officeDocument/2006/relationships"
xmlns:w=
"http://schemas.openxmlformats.org/wordprocessingml/2006/main"
xmlns:w14=
"http://schemas.microsoft.com/office/word/2010/wordml"
xmlns:w15=
"http://schemas.microsoft.com/office/word/2012/wordml"
xmlns:w16cex=
"http://schemas.microsoft.com/office/word/2018/wordml/cex"
xmlns:w16cid=
"http://schemas.microsoft.com/office/word/2016/wordml/cid"
xmlns:w16=
"http://schemas.microsoft.com/office/word/2018/wordml"
xmlns:w16se=
"http://schemas.microsoft.com/office/word/2015/wordml/symex"
mc:Ignorable=
"w14 w15 w16se w16cid w16 w16cex"
><w:docDefaults><w:rPrDefault><w:rPr><w:rFonts
w:asciiTheme=
"minorHAnsi"
w:eastAsiaTheme=
"minorEastAsia"
w:hAnsiTheme=
"minorHAnsi"
w:cstheme=
"minorBidi"
/><w:kern
w:val=
"2"
/><w:sz
w:val=
"21"
/><w:szCs
w:val=
"22"
/><w:lang
w:val=
"en-US"
w:eastAsia=
"zh-CN"
w:bidi=
"ar-SA"
/></w:rPr></w:rPrDefault><w:pPrDefault/></w:docDefaults><w:latentStyles
w:defLockedState=
"0"
w:defUIPriority=
"99"
w:defSemiHidden=
"0"
w:defUnhideWhenUsed=
"0"
w:defQFormat=
"0"
w:count=
"376"
><w:lsdException
w:name=
"Normal"
w:uiPriority=
"0"
w:qFormat=
"1"
/><w:lsdException
w:name=
"heading 1"
w:uiPriority=
"9"
w:qFormat=
"1"
/><w:lsdException
w:name=
"heading 2"
w:semiHidden=
"1"
w:uiPriority=
"9"
w:unhideWhenUsed=
"1"
w:qFormat=
"1"
/><w:lsdException
w:name=
"heading 3"
w:semiHidden=
"1"
w:uiPriority=
"9"
w:unhideWhenUsed=
"1"
w:qFormat=
"1"
/><w:lsdException
w:name=
"heading 4"
w:semiHidden=
"1"
w:uiPriority=
"9"
w:unhideWhenUsed=
"1"
w:qFormat=
"1"
/><w:lsdException
w:name=
"heading 5"
w:semiHidden=
"1"
w:uiPriority=
"9"
w:unhideWhenUsed=
"1"
w:qFormat=
"1"
/><w:lsdException
w:name=
"heading 6"
w:semiHidden=
"1"
w:uiPriority=
"9"
w:unhideWhenUsed=
"1"
w:qFormat=
"1"
/><w:lsdException
w:name=
"heading 7"
w:semiHidden=
"1"
w:uiPriority=
"9"
w:unhideWhenUsed=
"1"
w:qFormat=
"1"
/><w:lsdException
w:name=
"heading 8"
w:semiHidden=
"1"
w:uiPriority=
"9"
w:unhideWhenUsed=
"1"
w:qFormat=
"1"
/><w:lsdException
w:name=
"heading 9"
w:semiHidden=
"1"
w:uiPriority=
"9"
w:unhideWhenUsed=
"1"
w:qFormat=
"1"
/><w:lsdException
w:name=
"index 1"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"index 2"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"index 3"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"index 4"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"index 5"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"index 6"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"index 7"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"index 8"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"index 9"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"toc 1"
w:semiHidden=
"1"
w:uiPriority=
"39"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"toc 2"
w:semiHidden=
"1"
w:uiPriority=
"39"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"toc 3"
w:semiHidden=
"1"
w:uiPriority=
"39"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"toc 4"
w:semiHidden=
"1"
w:uiPriority=
"39"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"toc 5"
w:semiHidden=
"1"
w:uiPriority=
"39"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"toc 6"
w:semiHidden=
"1"
w:uiPriority=
"39"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"toc 7"
w:semiHidden=
"1"
w:uiPriority=
"39"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"toc 8"
w:semiHidden=
"1"
w:uiPriority=
"39"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"toc 9"
w:semiHidden=
"1"
w:uiPriority=
"39"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Normal Indent"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"footnote text"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"annotation text"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"header"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"footer"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"index heading"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"caption"
w:semiHidden=
"1"
w:uiPriority=
"35"
w:unhideWhenUsed=
"1"
w:qFormat=
"1"
/><w:lsdException
w:name=
"table of figures"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"envelope address"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"envelope return"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"footnote reference"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"annotation reference"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"line number"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"page number"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"endnote reference"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"endnote text"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"table of authorities"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"macro"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"toa heading"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"List"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"List Bullet"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"List Number"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"List 2"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"List 3"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"List 4"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"List 5"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"List Bullet 2"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"List Bullet 3"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"List Bullet 4"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"List Bullet 5"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"List Number 2"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"List Number 3"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"List Number 4"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"List Number 5"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Title"
w:uiPriority=
"10"
w:qFormat=
"1"
/><w:lsdException
w:name=
"Closing"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Signature"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Default Paragraph Font"
w:semiHidden=
"1"
w:uiPriority=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Body Text"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Body Text Indent"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"List Continue"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"List Continue 2"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"List Continue 3"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"List Continue 4"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"List Continue 5"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Message Header"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Subtitle"
w:uiPriority=
"11"
w:qFormat=
"1"
/><w:lsdException
w:name=
"Salutation"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Date"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Body Text First Indent"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Body Text First Indent 2"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Note Heading"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Body Text 2"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Body Text 3"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Body Text Indent 2"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Body Text Indent 3"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Block Text"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Hyperlink"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"FollowedHyperlink"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Strong"
w:uiPriority=
"22"
w:qFormat=
"1"
/><w:lsdException
w:name=
"Emphasis"
w:uiPriority=
"20"
w:qFormat=
"1"
/><w:lsdException
w:name=
"Document Map"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Plain Text"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"E-mail Signature"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"HTML Top of Form"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"HTML Bottom of Form"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Normal (Web)"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"HTML Acronym"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"HTML Address"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"HTML Cite"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"HTML Code"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"HTML Definition"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"HTML Keyboard"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"HTML Preformatted"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"HTML Sample"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"HTML Typewriter"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"HTML Variable"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Normal Table"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"annotation subject"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"No List"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Outline List 1"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Outline List 2"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Outline List 3"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Table Simple 1"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Table Simple 2"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Table Simple 3"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Table Classic 1"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Table Classic 2"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Table Classic 3"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Table Classic 4"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Table Colorful 1"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Table Colorful 2"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Table Colorful 3"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Table Columns 1"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Table Columns 2"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Table Columns 3"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Table Columns 4"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Table Columns 5"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Table Grid 1"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Table Grid 2"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Table Grid 3"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Table Grid 4"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Table Grid 5"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Table Grid 6"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Table Grid 7"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Table Grid 8"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Table List 1"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Table List 2"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Table List 3"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Table List 4"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Table List 5"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Table List 6"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Table List 7"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Table List 8"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Table 3D effects 1"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Table 3D effects 2"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Table 3D effects 3"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Table Contemporary"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Table Elegant"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Table Professional"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Table Subtle 1"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Table Subtle 2"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Table Web 1"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Table Web 2"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Table Web 3"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Balloon Text"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Table Grid"
w:uiPriority=
"39"
/><w:lsdException
w:name=
"Table Theme"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Placeholder Text"
w:semiHidden=
"1"
/><w:lsdException
w:name=
"No Spacing"
w:uiPriority=
"1"
w:qFormat=
"1"
/><w:lsdException
w:name=
"Light Shading"
w:uiPriority=
"60"
/><w:lsdException
w:name=
"Light List"
w:uiPriority=
"61"
/><w:lsdException
w:name=
"Light Grid"
w:uiPriority=
"62"
/><w:lsdException
w:name=
"Medium Shading 1"
w:uiPriority=
"63"
/><w:lsdException
w:name=
"Medium Shading 2"
w:uiPriority=
"64"
/><w:lsdException
w:name=
"Medium List 1"
w:uiPriority=
"65"
/><w:lsdException
w:name=
"Medium List 2"
w:uiPriority=
"66"
/><w:lsdException
w:name=
"Medium Grid 1"
w:uiPriority=
"67"
/><w:lsdException
w:name=
"Medium Grid 2"
w:uiPriority=
"68"
/><w:lsdException
w:name=
"Medium Grid 3"
w:uiPriority=
"69"
/><w:lsdException
w:name=
"Dark List"
w:uiPriority=
"70"
/><w:lsdException
w:name=
"Colorful Shading"
w:uiPriority=
"71"
/><w:lsdException
w:name=
"Colorful List"
w:uiPriority=
"72"
/><w:lsdException
w:name=
"Colorful Grid"
w:uiPriority=
"73"
/><w:lsdException
w:name=
"Light Shading Accent 1"
w:uiPriority=
"60"
/><w:lsdException
w:name=
"Light List Accent 1"
w:uiPriority=
"61"
/><w:lsdException
w:name=
"Light Grid Accent 1"
w:uiPriority=
"62"
/><w:lsdException
w:name=
"Medium Shading 1 Accent 1"
w:uiPriority=
"63"
/><w:lsdException
w:name=
"Medium Shading 2 Accent 1"
w:uiPriority=
"64"
/><w:lsdException
w:name=
"Medium List 1 Accent 1"
w:uiPriority=
"65"
/><w:lsdException
w:name=
"Revision"
w:semiHidden=
"1"
/><w:lsdException
w:name=
"List Paragraph"
w:uiPriority=
"34"
w:qFormat=
"1"
/><w:lsdException
w:name=
"Quote"
w:uiPriority=
"29"
w:qFormat=
"1"
/><w:lsdException
w:name=
"Intense Quote"
w:uiPriority=
"30"
w:qFormat=
"1"
/><w:lsdException
w:name=
"Medium List 2 Accent 1"
w:uiPriority=
"66"
/><w:lsdException
w:name=
"Medium Grid 1 Accent 1"
w:uiPriority=
"67"
/><w:lsdException
w:name=
"Medium Grid 2 Accent 1"
w:uiPriority=
"68"
/><w:lsdException
w:name=
"Medium Grid 3 Accent 1"
w:uiPriority=
"69"
/><w:lsdException
w:name=
"Dark List Accent 1"
w:uiPriority=
"70"
/><w:lsdException
w:name=
"Colorful Shading Accent 1"
w:uiPriority=
"71"
/><w:lsdException
w:name=
"Colorful List Accent 1"
w:uiPriority=
"72"
/><w:lsdException
w:name=
"Colorful Grid Accent 1"
w:uiPriority=
"73"
/><w:lsdException
w:name=
"Light Shading Accent 2"
w:uiPriority=
"60"
/><w:lsdException
w:name=
"Light List Accent 2"
w:uiPriority=
"61"
/><w:lsdException
w:name=
"Light Grid Accent 2"
w:uiPriority=
"62"
/><w:lsdException
w:name=
"Medium Shading 1 Accent 2"
w:uiPriority=
"63"
/><w:lsdException
w:name=
"Medium Shading 2 Accent 2"
w:uiPriority=
"64"
/><w:lsdException
w:name=
"Medium List 1 Accent 2"
w:uiPriority=
"65"
/><w:lsdException
w:name=
"Medium List 2 Accent 2"
w:uiPriority=
"66"
/><w:lsdException
w:name=
"Medium Grid 1 Accent 2"
w:uiPriority=
"67"
/><w:lsdException
w:name=
"Medium Grid 2 Accent 2"
w:uiPriority=
"68"
/><w:lsdException
w:name=
"Medium Grid 3 Accent 2"
w:uiPriority=
"69"
/><w:lsdException
w:name=
"Dark List Accent 2"
w:uiPriority=
"70"
/><w:lsdException
w:name=
"Colorful Shading Accent 2"
w:uiPriority=
"71"
/><w:lsdException
w:name=
"Colorful List Accent 2"
w:uiPriority=
"72"
/><w:lsdException
w:name=
"Colorful Grid Accent 2"
w:uiPriority=
"73"
/><w:lsdException
w:name=
"Light Shading Accent 3"
w:uiPriority=
"60"
/><w:lsdException
w:name=
"Light List Accent 3"
w:uiPriority=
"61"
/><w:lsdException
w:name=
"Light Grid Accent 3"
w:uiPriority=
"62"
/><w:lsdException
w:name=
"Medium Shading 1 Accent 3"
w:uiPriority=
"63"
/><w:lsdException
w:name=
"Medium Shading 2 Accent 3"
w:uiPriority=
"64"
/><w:lsdException
w:name=
"Medium List 1 Accent 3"
w:uiPriority=
"65"
/><w:lsdException
w:name=
"Medium List 2 Accent 3"
w:uiPriority=
"66"
/><w:lsdException
w:name=
"Medium Grid 1 Accent 3"
w:uiPriority=
"67"
/><w:lsdException
w:name=
"Medium Grid 2 Accent 3"
w:uiPriority=
"68"
/><w:lsdException
w:name=
"Medium Grid 3 Accent 3"
w:uiPriority=
"69"
/><w:lsdException
w:name=
"Dark List Accent 3"
w:uiPriority=
"70"
/><w:lsdException
w:name=
"Colorful Shading Accent 3"
w:uiPriority=
"71"
/><w:lsdException
w:name=
"Colorful List Accent 3"
w:uiPriority=
"72"
/><w:lsdException
w:name=
"Colorful Grid Accent 3"
w:uiPriority=
"73"
/><w:lsdException
w:name=
"Light Shading Accent 4"
w:uiPriority=
"60"
/><w:lsdException
w:name=
"Light List Accent 4"
w:uiPriority=
"61"
/><w:lsdException
w:name=
"Light Grid Accent 4"
w:uiPriority=
"62"
/><w:lsdException
w:name=
"Medium Shading 1 Accent 4"
w:uiPriority=
"63"
/><w:lsdException
w:name=
"Medium Shading 2 Accent 4"
w:uiPriority=
"64"
/><w:lsdException
w:name=
"Medium List 1 Accent 4"
w:uiPriority=
"65"
/><w:lsdException
w:name=
"Medium List 2 Accent 4"
w:uiPriority=
"66"
/><w:lsdException
w:name=
"Medium Grid 1 Accent 4"
w:uiPriority=
"67"
/><w:lsdException
w:name=
"Medium Grid 2 Accent 4"
w:uiPriority=
"68"
/><w:lsdException
w:name=
"Medium Grid 3 Accent 4"
w:uiPriority=
"69"
/><w:lsdException
w:name=
"Dark List Accent 4"
w:uiPriority=
"70"
/><w:lsdException
w:name=
"Colorful Shading Accent 4"
w:uiPriority=
"71"
/><w:lsdException
w:name=
"Colorful List Accent 4"
w:uiPriority=
"72"
/><w:lsdException
w:name=
"Colorful Grid Accent 4"
w:uiPriority=
"73"
/><w:lsdException
w:name=
"Light Shading Accent 5"
w:uiPriority=
"60"
/><w:lsdException
w:name=
"Light List Accent 5"
w:uiPriority=
"61"
/><w:lsdException
w:name=
"Light Grid Accent 5"
w:uiPriority=
"62"
/><w:lsdException
w:name=
"Medium Shading 1 Accent 5"
w:uiPriority=
"63"
/><w:lsdException
w:name=
"Medium Shading 2 Accent 5"
w:uiPriority=
"64"
/><w:lsdException
w:name=
"Medium List 1 Accent 5"
w:uiPriority=
"65"
/><w:lsdException
w:name=
"Medium List 2 Accent 5"
w:uiPriority=
"66"
/><w:lsdException
w:name=
"Medium Grid 1 Accent 5"
w:uiPriority=
"67"
/><w:lsdException
w:name=
"Medium Grid 2 Accent 5"
w:uiPriority=
"68"
/><w:lsdException
w:name=
"Medium Grid 3 Accent 5"
w:uiPriority=
"69"
/><w:lsdException
w:name=
"Dark List Accent 5"
w:uiPriority=
"70"
/><w:lsdException
w:name=
"Colorful Shading Accent 5"
w:uiPriority=
"71"
/><w:lsdException
w:name=
"Colorful List Accent 5"
w:uiPriority=
"72"
/><w:lsdException
w:name=
"Colorful Grid Accent 5"
w:uiPriority=
"73"
/><w:lsdException
w:name=
"Light Shading Accent 6"
w:uiPriority=
"60"
/><w:lsdException
w:name=
"Light List Accent 6"
w:uiPriority=
"61"
/><w:lsdException
w:name=
"Light Grid Accent 6"
w:uiPriority=
"62"
/><w:lsdException
w:name=
"Medium Shading 1 Accent 6"
w:uiPriority=
"63"
/><w:lsdException
w:name=
"Medium Shading 2 Accent 6"
w:uiPriority=
"64"
/><w:lsdException
w:name=
"Medium List 1 Accent 6"
w:uiPriority=
"65"
/><w:lsdException
w:name=
"Medium List 2 Accent 6"
w:uiPriority=
"66"
/><w:lsdException
w:name=
"Medium Grid 1 Accent 6"
w:uiPriority=
"67"
/><w:lsdException
w:name=
"Medium Grid 2 Accent 6"
w:uiPriority=
"68"
/><w:lsdException
w:name=
"Medium Grid 3 Accent 6"
w:uiPriority=
"69"
/><w:lsdException
w:name=
"Dark List Accent 6"
w:uiPriority=
"70"
/><w:lsdException
w:name=
"Colorful Shading Accent 6"
w:uiPriority=
"71"
/><w:lsdException
w:name=
"Colorful List Accent 6"
w:uiPriority=
"72"
/><w:lsdException
w:name=
"Colorful Grid Accent 6"
w:uiPriority=
"73"
/><w:lsdException
w:name=
"Subtle Emphasis"
w:uiPriority=
"19"
w:qFormat=
"1"
/><w:lsdException
w:name=
"Intense Emphasis"
w:uiPriority=
"21"
w:qFormat=
"1"
/><w:lsdException
w:name=
"Subtle Reference"
w:uiPriority=
"31"
w:qFormat=
"1"
/><w:lsdException
w:name=
"Intense Reference"
w:uiPriority=
"32"
w:qFormat=
"1"
/><w:lsdException
w:name=
"Book Title"
w:uiPriority=
"33"
w:qFormat=
"1"
/><w:lsdException
w:name=
"Bibliography"
w:semiHidden=
"1"
w:uiPriority=
"37"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"TOC Heading"
w:semiHidden=
"1"
w:uiPriority=
"39"
w:unhideWhenUsed=
"1"
w:qFormat=
"1"
/><w:lsdException
w:name=
"Plain Table 1"
w:uiPriority=
"41"
/><w:lsdException
w:name=
"Plain Table 2"
w:uiPriority=
"42"
/><w:lsdException
w:name=
"Plain Table 3"
w:uiPriority=
"43"
/><w:lsdException
w:name=
"Plain Table 4"
w:uiPriority=
"44"
/><w:lsdException
w:name=
"Plain Table 5"
w:uiPriority=
"45"
/><w:lsdException
w:name=
"Grid Table Light"
w:uiPriority=
"40"
/><w:lsdException
w:name=
"Grid Table 1 Light"
w:uiPriority=
"46"
/><w:lsdException
w:name=
"Grid Table 2"
w:uiPriority=
"47"
/><w:lsdException
w:name=
"Grid Table 3"
w:uiPriority=
"48"
/><w:lsdException
w:name=
"Grid Table 4"
w:uiPriority=
"49"
/><w:lsdException
w:name=
"Grid Table 5 Dark"
w:uiPriority=
"50"
/><w:lsdException
w:name=
"Grid Table 6 Colorful"
w:uiPriority=
"51"
/><w:lsdException
w:name=
"Grid Table 7 Colorful"
w:uiPriority=
"52"
/><w:lsdException
w:name=
"Grid Table 1 Light Accent 1"
w:uiPriority=
"46"
/><w:lsdException
w:name=
"Grid Table 2 Accent 1"
w:uiPriority=
"47"
/><w:lsdException
w:name=
"Grid Table 3 Accent 1"
w:uiPriority=
"48"
/><w:lsdException
w:name=
"Grid Table 4 Accent 1"
w:uiPriority=
"49"
/><w:lsdException
w:name=
"Grid Table 5 Dark Accent 1"
w:uiPriority=
"50"
/><w:lsdException
w:name=
"Grid Table 6 Colorful Accent 1"
w:uiPriority=
"51"
/><w:lsdException
w:name=
"Grid Table 7 Colorful Accent 1"
w:uiPriority=
"52"
/><w:lsdException
w:name=
"Grid Table 1 Light Accent 2"
w:uiPriority=
"46"
/><w:lsdException
w:name=
"Grid Table 2 Accent 2"
w:uiPriority=
"47"
/><w:lsdException
w:name=
"Grid Table 3 Accent 2"
w:uiPriority=
"48"
/><w:lsdException
w:name=
"Grid Table 4 Accent 2"
w:uiPriority=
"49"
/><w:lsdException
w:name=
"Grid Table 5 Dark Accent 2"
w:uiPriority=
"50"
/><w:lsdException
w:name=
"Grid Table 6 Colorful Accent 2"
w:uiPriority=
"51"
/><w:lsdException
w:name=
"Grid Table 7 Colorful Accent 2"
w:uiPriority=
"52"
/><w:lsdException
w:name=
"Grid Table 1 Light Accent 3"
w:uiPriority=
"46"
/><w:lsdException
w:name=
"Grid Table 2 Accent 3"
w:uiPriority=
"47"
/><w:lsdException
w:name=
"Grid Table 3 Accent 3"
w:uiPriority=
"48"
/><w:lsdException
w:name=
"Grid Table 4 Accent 3"
w:uiPriority=
"49"
/><w:lsdException
w:name=
"Grid Table 5 Dark Accent 3"
w:uiPriority=
"50"
/><w:lsdException
w:name=
"Grid Table 6 Colorful Accent 3"
w:uiPriority=
"51"
/><w:lsdException
w:name=
"Grid Table 7 Colorful Accent 3"
w:uiPriority=
"52"
/><w:lsdException
w:name=
"Grid Table 1 Light Accent 4"
w:uiPriority=
"46"
/><w:lsdException
w:name=
"Grid Table 2 Accent 4"
w:uiPriority=
"47"
/><w:lsdException
w:name=
"Grid Table 3 Accent 4"
w:uiPriority=
"48"
/><w:lsdException
w:name=
"Grid Table 4 Accent 4"
w:uiPriority=
"49"
/><w:lsdException
w:name=
"Grid Table 5 Dark Accent 4"
w:uiPriority=
"50"
/><w:lsdException
w:name=
"Grid Table 6 Colorful Accent 4"
w:uiPriority=
"51"
/><w:lsdException
w:name=
"Grid Table 7 Colorful Accent 4"
w:uiPriority=
"52"
/><w:lsdException
w:name=
"Grid Table 1 Light Accent 5"
w:uiPriority=
"46"
/><w:lsdException
w:name=
"Grid Table 2 Accent 5"
w:uiPriority=
"47"
/><w:lsdException
w:name=
"Grid Table 3 Accent 5"
w:uiPriority=
"48"
/><w:lsdException
w:name=
"Grid Table 4 Accent 5"
w:uiPriority=
"49"
/><w:lsdException
w:name=
"Grid Table 5 Dark Accent 5"
w:uiPriority=
"50"
/><w:lsdException
w:name=
"Grid Table 6 Colorful Accent 5"
w:uiPriority=
"51"
/><w:lsdException
w:name=
"Grid Table 7 Colorful Accent 5"
w:uiPriority=
"52"
/><w:lsdException
w:name=
"Grid Table 1 Light Accent 6"
w:uiPriority=
"46"
/><w:lsdException
w:name=
"Grid Table 2 Accent 6"
w:uiPriority=
"47"
/><w:lsdException
w:name=
"Grid Table 3 Accent 6"
w:uiPriority=
"48"
/><w:lsdException
w:name=
"Grid Table 4 Accent 6"
w:uiPriority=
"49"
/><w:lsdException
w:name=
"Grid Table 5 Dark Accent 6"
w:uiPriority=
"50"
/><w:lsdException
w:name=
"Grid Table 6 Colorful Accent 6"
w:uiPriority=
"51"
/><w:lsdException
w:name=
"Grid Table 7 Colorful Accent 6"
w:uiPriority=
"52"
/><w:lsdException
w:name=
"List Table 1 Light"
w:uiPriority=
"46"
/><w:lsdException
w:name=
"List Table 2"
w:uiPriority=
"47"
/><w:lsdException
w:name=
"List Table 3"
w:uiPriority=
"48"
/><w:lsdException
w:name=
"List Table 4"
w:uiPriority=
"49"
/><w:lsdException
w:name=
"List Table 5 Dark"
w:uiPriority=
"50"
/><w:lsdException
w:name=
"List Table 6 Colorful"
w:uiPriority=
"51"
/><w:lsdException
w:name=
"List Table 7 Colorful"
w:uiPriority=
"52"
/><w:lsdException
w:name=
"List Table 1 Light Accent 1"
w:uiPriority=
"46"
/><w:lsdException
w:name=
"List Table 2 Accent 1"
w:uiPriority=
"47"
/><w:lsdException
w:name=
"List Table 3 Accent 1"
w:uiPriority=
"48"
/><w:lsdException
w:name=
"List Table 4 Accent 1"
w:uiPriority=
"49"
/><w:lsdException
w:name=
"List Table 5 Dark Accent 1"
w:uiPriority=
"50"
/><w:lsdException
w:name=
"List Table 6 Colorful Accent 1"
w:uiPriority=
"51"
/><w:lsdException
w:name=
"List Table 7 Colorful Accent 1"
w:uiPriority=
"52"
/><w:lsdException
w:name=
"List Table 1 Light Accent 2"
w:uiPriority=
"46"
/><w:lsdException
w:name=
"List Table 2 Accent 2"
w:uiPriority=
"47"
/><w:lsdException
w:name=
"List Table 3 Accent 2"
w:uiPriority=
"48"
/><w:lsdException
w:name=
"List Table 4 Accent 2"
w:uiPriority=
"49"
/><w:lsdException
w:name=
"List Table 5 Dark Accent 2"
w:uiPriority=
"50"
/><w:lsdException
w:name=
"List Table 6 Colorful Accent 2"
w:uiPriority=
"51"
/><w:lsdException
w:name=
"List Table 7 Colorful Accent 2"
w:uiPriority=
"52"
/><w:lsdException
w:name=
"List Table 1 Light Accent 3"
w:uiPriority=
"46"
/><w:lsdException
w:name=
"List Table 2 Accent 3"
w:uiPriority=
"47"
/><w:lsdException
w:name=
"List Table 3 Accent 3"
w:uiPriority=
"48"
/><w:lsdException
w:name=
"List Table 4 Accent 3"
w:uiPriority=
"49"
/><w:lsdException
w:name=
"List Table 5 Dark Accent 3"
w:uiPriority=
"50"
/><w:lsdException
w:name=
"List Table 6 Colorful Accent 3"
w:uiPriority=
"51"
/><w:lsdException
w:name=
"List Table 7 Colorful Accent 3"
w:uiPriority=
"52"
/><w:lsdException
w:name=
"List Table 1 Light Accent 4"
w:uiPriority=
"46"
/><w:lsdException
w:name=
"List Table 2 Accent 4"
w:uiPriority=
"47"
/><w:lsdException
w:name=
"List Table 3 Accent 4"
w:uiPriority=
"48"
/><w:lsdException
w:name=
"List Table 4 Accent 4"
w:uiPriority=
"49"
/><w:lsdException
w:name=
"List Table 5 Dark Accent 4"
w:uiPriority=
"50"
/><w:lsdException
w:name=
"List Table 6 Colorful Accent 4"
w:uiPriority=
"51"
/><w:lsdException
w:name=
"List Table 7 Colorful Accent 4"
w:uiPriority=
"52"
/><w:lsdException
w:name=
"List Table 1 Light Accent 5"
w:uiPriority=
"46"
/><w:lsdException
w:name=
"List Table 2 Accent 5"
w:uiPriority=
"47"
/><w:lsdException
w:name=
"List Table 3 Accent 5"
w:uiPriority=
"48"
/><w:lsdException
w:name=
"List Table 4 Accent 5"
w:uiPriority=
"49"
/><w:lsdException
w:name=
"List Table 5 Dark Accent 5"
w:uiPriority=
"50"
/><w:lsdException
w:name=
"List Table 6 Colorful Accent 5"
w:uiPriority=
"51"
/><w:lsdException
w:name=
"List Table 7 Colorful Accent 5"
w:uiPriority=
"52"
/><w:lsdException
w:name=
"List Table 1 Light Accent 6"
w:uiPriority=
"46"
/><w:lsdException
w:name=
"List Table 2 Accent 6"
w:uiPriority=
"47"
/><w:lsdException
w:name=
"List Table 3 Accent 6"
w:uiPriority=
"48"
/><w:lsdException
w:name=
"List Table 4 Accent 6"
w:uiPriority=
"49"
/><w:lsdException
w:name=
"List Table 5 Dark Accent 6"
w:uiPriority=
"50"
/><w:lsdException
w:name=
"List Table 6 Colorful Accent 6"
w:uiPriority=
"51"
/><w:lsdException
w:name=
"List Table 7 Colorful Accent 6"
w:uiPriority=
"52"
/><w:lsdException
w:name=
"Mention"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Smart Hyperlink"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Hashtag"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Unresolved Mention"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/><w:lsdException
w:name=
"Smart Link"
w:semiHidden=
"1"
w:unhideWhenUsed=
"1"
/></w:latentStyles><w:style
w:type=
"paragraph"
w:default=
"1"
w:styleId=
"a"
><w:name
w:val=
"Normal"
/><w:qFormat/><w:pPr><w:widowControl
w:val=
"0"
/><w:jc
w:val=
"both"
/></w:pPr></w:style><w:style
w:type=
"paragraph"
w:styleId=
"1"
><w:name
w:val=
"heading 1"
/><w:basedOn
w:val=
"a"
/><w:next
w:val=
"a"
/><w:link
w:val=
"10"
/><w:uiPriority
w:val=
"9"
/><w:qFormat/><w:rsid
w:val=
"00644ADE"
/><w:pPr><w:keepNext/><w:keepLines/><w:spacing
w:before=
"340"
w:after=
"330"
w:line=
"578"
w:lineRule=
"auto"
/><w:outlineLvl
w:val=
"0"
/></w:pPr><w:rPr><w:b/><w:bCs/><w:kern
w:val=
"44"
/><w:sz
w:val=
"44"
/><w:szCs
w:val=
"44"
/></w:rPr></w:style><w:style
w:type=
"character"
w:default=
"1"
w:styleId=
"a0"
><w:name
w:val=
"Default Paragraph Font"
/><w:uiPriority
w:val=
"1"
/><w:semiHidden/><w:unhideWhenUsed/></w:style><w:style
w:type=
"table"
w:default=
"1"
w:styleId=
"a1"
><w:name
w:val=
"Normal Table"
/><w:uiPriority
w:val=
"99"
/><w:semiHidden/><w:unhideWhenUsed/><w:tblPr><w:tblInd
w:w=
"0"
w:type=
"dxa"
/><w:tblCellMar><w:top
w:w=
"0"
w:type=
"dxa"
/><w:left
w:w=
"108"
w:type=
"dxa"
/><w:bottom
w:w=
"0"
w:type=
"dxa"
/><w:right
w:w=
"108"
w:type=
"dxa"
/></w:tblCellMar></w:tblPr></w:style><w:style
w:type=
"numbering"
w:default=
"1"
w:styleId=
"a2"
><w:name
w:val=
"No List"
/><w:uiPriority
w:val=
"99"
/><w:semiHidden/><w:unhideWhenUsed/></w:style><w:style
w:type=
"table"
w:styleId=
"a3"
><w:name
w:val=
"Table Grid"
/><w:basedOn
w:val=
"a1"
/><w:uiPriority
w:val=
"39"
/><w:rsid
w:val=
"002D25D3"
/><w:tblPr><w:tblBorders><w:top
w:val=
"single"
w:sz=
"4"
w:space=
"0"
w:color=
"auto"
/><w:left
w:val=
"single"
w:sz=
"4"
w:space=
"0"
w:color=
"auto"
/><w:bottom
w:val=
"single"
w:sz=
"4"
w:space=
"0"
w:color=
"auto"
/><w:right
w:val=
"single"
w:sz=
"4"
w:space=
"0"
w:color=
"auto"
/><w:insideH
w:val=
"single"
w:sz=
"4"
w:space=
"0"
w:color=
"auto"
/><w:insideV
w:val=
"single"
w:sz=
"4"
w:space=
"0"
w:color=
"auto"
/></w:tblBorders></w:tblPr></w:style><w:style
w:type=
"paragraph"
w:styleId=
"a4"
><w:name
w:val=
"No Spacing"
/><w:uiPriority
w:val=
"1"
/><w:qFormat/><w:rsid
w:val=
"00644ADE"
/><w:pPr><w:widowControl
w:val=
"0"
/><w:jc
w:val=
"both"
/></w:pPr></w:style><w:style
w:type=
"character"
w:customStyle=
"1"
w:styleId=
"10"
><w:name
w:val=
"标题 1 字符"
/><w:basedOn
w:val=
"a0"
/><w:link
w:val=
"1"
/><w:uiPriority
w:val=
"9"
/><w:rsid
w:val=
"00644ADE"
/><w:rPr><w:b/><w:bCs/><w:kern
w:val=
"44"
/><w:sz
w:val=
"44"
/><w:szCs
w:val=
"44"
/></w:rPr></w:style></w:styles></pkg:xmlData></pkg:part><pkg:part
pkg:name=
"/word/webSettings.xml"
pkg:contentType=
"application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml"
><pkg:xmlData><w:webSettings
xmlns:mc=
"http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:r=
"http://schemas.openxmlformats.org/officeDocument/2006/relationships"
xmlns:w=
"http://schemas.openxmlformats.org/wordprocessingml/2006/main"
xmlns:w14=
"http://schemas.microsoft.com/office/word/2010/wordml"
xmlns:w15=
"http://schemas.microsoft.com/office/word/2012/wordml"
xmlns:w16cex=
"http://schemas.microsoft.com/office/word/2018/wordml/cex"
xmlns:w16cid=
"http://schemas.microsoft.com/office/word/2016/wordml/cid"
xmlns:w16=
"http://schemas.microsoft.com/office/word/2018/wordml"
xmlns:w16se=
"http://schemas.microsoft.com/office/word/2015/wordml/symex"
mc:Ignorable=
"w14 w15 w16se w16cid w16 w16cex"
><w:divs><w:div
w:id=
"258485310"
><w:bodyDiv
w:val=
"1"
/><w:marLeft
w:val=
"0"
/><w:marRight
w:val=
"0"
/><w:marTop
w:val=
"0"
/><w:marBottom
w:val=
"0"
/><w:divBdr><w:top
w:val=
"none"
w:sz=
"0"
w:space=
"0"
w:color=
"auto"
/><w:left
w:val=
"none"
w:sz=
"0"
w:space=
"0"
w:color=
"auto"
/><w:bottom
w:val=
"none"
w:sz=
"0"
w:space=
"0"
w:color=
"auto"
/><w:right
w:val=
"none"
w:sz=
"0"
w:space=
"0"
w:color=
"auto"
/></w:divBdr></w:div><w:div
w:id=
"1379739808"
><w:bodyDiv
w:val=
"1"
/><w:marLeft
w:val=
"0"
/><w:marRight
w:val=
"0"
/><w:marTop
w:val=
"0"
/><w:marBottom
w:val=
"0"
/><w:divBdr><w:top
w:val=
"none"
w:sz=
"0"
w:space=
"0"
w:color=
"auto"
/><w:left
w:val=
"none"
w:sz=
"0"
w:space=
"0"
w:color=
"auto"
/><w:bottom
w:val=
"none"
w:sz=
"0"
w:space=
"0"
w:color=
"auto"
/><w:right
w:val=
"none"
w:sz=
"0"
w:space=
"0"
w:color=
"auto"
/></w:divBdr></w:div></w:divs><w:optimizeForBrowser/><w:allowPNG/></w:webSettings></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"
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"
mc:Ignorable=
"w14 w15 w16se w16cid w16 w16cex"
><w:font
w:name=
"等线"
><w:altName
w:val=
"DengXian"
/><w:panose1
w:val=
"02010600030101010101"
/><w:charset
w:val=
"86"
/><w:family
w:val=
"auto"
/><w:pitch
w:val=
"variable"
/><w:sig
w:usb0=
"A00002BF"
w:usb1=
"38CF7CFA"
w:usb2=
"00000016"
w:usb3=
"00000000"
w:csb0=
"0004000F"
w:csb1=
"00000000"
/></w:font><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=
"E0002EFF"
w:usb1=
"C000785B"
w:usb2=
"00000009"
w:usb3=
"00000000"
w:csb0=
"000001FF"
w:csb1=
"00000000"
/></w:font><w:font
w:name=
"宋体"
><w:altName
w:val=
"SimSun"
/><w:panose1
w:val=
"02010600030101010101"
/><w:charset
w:val=
"86"
/><w:family
w:val=
"auto"
/><w:pitch
w:val=
"variable"
/><w:sig
w:usb0=
"00000003"
w:usb1=
"288F0000"
w:usb2=
"00000016"
w:usb3=
"00000000"
w:csb0=
"00040001"
w:csb1=
"00000000"
/></w:font><w:font
w:name=
"等线 Light"
><w:panose1
w:val=
"02010600030101010101"
/><w:charset
w:val=
"86"
/><w:family
w:val=
"auto"
/><w:pitch
w:val=
"variable"
/><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=
"/docProps/core.xml"
pkg:contentType=
"application/vnd.openxmlformats-package.core-properties+xml"
pkg:padding=
"256"
><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"
><dc:title/><dc:subject/><dc:creator>
tiger
</dc:creator><cp:keywords/><dc:description/><cp:lastModifiedBy>
tiger
</cp:lastModifiedBy><cp:revision>
2
</cp:revision><dcterms:created
xsi:type=
"dcterms:W3CDTF"
>
2020-10-10T07:07:00Z
</dcterms:created><dcterms:modified
xsi:type=
"dcterms:W3CDTF"
>
2020-10-10T07:07:00Z
</dcterms:modified></cp:coreProperties></pkg:xmlData></pkg:part><pkg:part
pkg:name=
"/docProps/app.xml"
pkg:contentType=
"application/vnd.openxmlformats-officedocument.extended-properties+xml"
pkg:padding=
"256"
><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><TotalTime>
6
</TotalTime><Pages>
1
</Pages><Words>
22
</Words><Characters>
130
</Characters><Application>
Microsoft Office Word
</Application><DocSecurity>
0
</DocSecurity><Lines>
1
</Lines><Paragraphs>
1
</Paragraphs><ScaleCrop>
false
</ScaleCrop><Company/><LinksUpToDate>
false
</LinksUpToDate><CharactersWithSpaces>
151
</CharactersWithSpaces><SharedDoc>
false
</SharedDoc><HyperlinksChanged>
false
</HyperlinksChanged><AppVersion>
16.0000
</AppVersion></Properties></pkg:xmlData></pkg:part></pkg:package>
\ 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