@adobe/helix-md2docx 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/CODE_OF_CONDUCT.md +74 -0
- package/CONTRIBUTING.md +74 -0
- package/LICENSE.txt +264 -0
- package/README.md +33 -0
- package/package.json +70 -0
- package/src/cli/convert2docx.js +96 -0
- package/src/index.d.ts +13 -0
- package/src/index.js +13 -0
- package/src/mdast2docx/all.js +31 -0
- package/src/mdast2docx/default-numbering.js +79 -0
- package/src/mdast2docx/handlers/break.js +22 -0
- package/src/mdast2docx/handlers/characterStyle.js +29 -0
- package/src/mdast2docx/handlers/code.js +27 -0
- package/src/mdast2docx/handlers/heading.js +32 -0
- package/src/mdast2docx/handlers/html.js +35 -0
- package/src/mdast2docx/handlers/image.js +90 -0
- package/src/mdast2docx/handlers/index.js +56 -0
- package/src/mdast2docx/handlers/inlineCode.js +21 -0
- package/src/mdast2docx/handlers/link.js +63 -0
- package/src/mdast2docx/handlers/list.js +39 -0
- package/src/mdast2docx/handlers/listItem.js +16 -0
- package/src/mdast2docx/handlers/paragraph.js +52 -0
- package/src/mdast2docx/handlers/paragraphStyle.js +21 -0
- package/src/mdast2docx/handlers/root.js +16 -0
- package/src/mdast2docx/handlers/table.js +54 -0
- package/src/mdast2docx/handlers/tableCell.js +51 -0
- package/src/mdast2docx/handlers/tableRow.js +28 -0
- package/src/mdast2docx/handlers/text.js +24 -0
- package/src/mdast2docx/handlers/thematicBreak.js +24 -0
- package/src/mdast2docx/hast-table-handler.js +145 -0
- package/src/mdast2docx/index.d.ts +21 -0
- package/src/mdast2docx/index.js +88 -0
- package/src/mdast2docx/mdast-download-images.js +92 -0
- package/src/mdast2docx/mdast-sanitize-html.js +112 -0
- package/src/mdast2docx/template/[Content_Types].xml +41 -0
- package/src/mdast2docx/template/docProps/app.xml +20 -0
- package/src/mdast2docx/template/docProps/core.xml +12 -0
- package/src/mdast2docx/template/word/_rels/document.xml.rels +51 -0
- package/src/mdast2docx/template/word/_rels/settings.xml.rels +7 -0
- package/src/mdast2docx/template/word/document.xml +1116 -0
- package/src/mdast2docx/template/word/endnotes.xml +56 -0
- package/src/mdast2docx/template/word/fontTable.xml +58 -0
- package/src/mdast2docx/template/word/footer1.xml +39 -0
- package/src/mdast2docx/template/word/footer2.xml +39 -0
- package/src/mdast2docx/template/word/footer3.xml +39 -0
- package/src/mdast2docx/template/word/footnotes.xml +56 -0
- package/src/mdast2docx/template/word/header1.xml +39 -0
- package/src/mdast2docx/template/word/header2.xml +39 -0
- package/src/mdast2docx/template/word/header3.xml +39 -0
- package/src/mdast2docx/template/word/media/image1.png +0 -0
- package/src/mdast2docx/template/word/numbering.xml +277 -0
- package/src/mdast2docx/template/word/settings.xml +91 -0
- package/src/mdast2docx/template/word/styles.xml +1084 -0
- package/src/mdast2docx/template/word/theme/theme1.xml +296 -0
- package/src/mdast2docx/template/word/webSettings.xml +40 -0
- package/src/mdast2docx/template.docx +0 -0
- package/src/mdast2docx/utils.js +22 -0
|
@@ -0,0 +1,277 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
2
|
+
<w:numbering xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas"
|
|
3
|
+
xmlns:cx="http://schemas.microsoft.com/office/drawing/2014/chartex"
|
|
4
|
+
xmlns:cx1="http://schemas.microsoft.com/office/drawing/2015/9/8/chartex"
|
|
5
|
+
xmlns:cx2="http://schemas.microsoft.com/office/drawing/2015/10/21/chartex"
|
|
6
|
+
xmlns:cx3="http://schemas.microsoft.com/office/drawing/2016/5/9/chartex"
|
|
7
|
+
xmlns:cx4="http://schemas.microsoft.com/office/drawing/2016/5/10/chartex"
|
|
8
|
+
xmlns:cx5="http://schemas.microsoft.com/office/drawing/2016/5/11/chartex"
|
|
9
|
+
xmlns:cx6="http://schemas.microsoft.com/office/drawing/2016/5/12/chartex"
|
|
10
|
+
xmlns:cx7="http://schemas.microsoft.com/office/drawing/2016/5/13/chartex"
|
|
11
|
+
xmlns:cx8="http://schemas.microsoft.com/office/drawing/2016/5/14/chartex"
|
|
12
|
+
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
13
|
+
xmlns:aink="http://schemas.microsoft.com/office/drawing/2016/ink"
|
|
14
|
+
xmlns:am3d="http://schemas.microsoft.com/office/drawing/2017/model3d"
|
|
15
|
+
xmlns:o="urn:schemas-microsoft-com:office:office"
|
|
16
|
+
xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
|
|
17
|
+
xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math"
|
|
18
|
+
xmlns:v="urn:schemas-microsoft-com:vml"
|
|
19
|
+
xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing"
|
|
20
|
+
xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing"
|
|
21
|
+
xmlns:w10="urn:schemas-microsoft-com:office:word"
|
|
22
|
+
xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
|
|
23
|
+
xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
|
|
24
|
+
xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
|
|
25
|
+
xmlns:w16cex="http://schemas.microsoft.com/office/word/2018/wordml/cex"
|
|
26
|
+
xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid"
|
|
27
|
+
xmlns:w16="http://schemas.microsoft.com/office/word/2018/wordml"
|
|
28
|
+
xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex"
|
|
29
|
+
xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup"
|
|
30
|
+
xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk"
|
|
31
|
+
xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml"
|
|
32
|
+
xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape"
|
|
33
|
+
mc:Ignorable="w14 w15 w16se w16cid w16 w16cex wp14">
|
|
34
|
+
<w:abstractNum w:abstractNumId="0" w15:restartNumberingAfterBreak="0">
|
|
35
|
+
<w:nsid w:val="35FB1DBE"/>
|
|
36
|
+
<w:multiLevelType w:val="hybridMultilevel"/>
|
|
37
|
+
<w:tmpl w:val="876E2DFE"/>
|
|
38
|
+
<w:lvl w:ilvl="0" w:tplc="E48C6844">
|
|
39
|
+
<w:start w:val="1"/>
|
|
40
|
+
<w:numFmt w:val="bullet"/>
|
|
41
|
+
<w:lvlText w:val="-"/>
|
|
42
|
+
<w:lvlJc w:val="left"/>
|
|
43
|
+
<w:pPr>
|
|
44
|
+
<w:ind w:left="283" w:hanging="283"/>
|
|
45
|
+
</w:pPr>
|
|
46
|
+
</w:lvl>
|
|
47
|
+
<w:lvl w:ilvl="1" w:tplc="58564EE6">
|
|
48
|
+
<w:start w:val="1"/>
|
|
49
|
+
<w:numFmt w:val="bullet"/>
|
|
50
|
+
<w:lvlText w:val="-"/>
|
|
51
|
+
<w:lvlJc w:val="left"/>
|
|
52
|
+
<w:pPr>
|
|
53
|
+
<w:ind w:left="566" w:hanging="283"/>
|
|
54
|
+
</w:pPr>
|
|
55
|
+
</w:lvl>
|
|
56
|
+
<w:lvl w:ilvl="2" w:tplc="30B047D6">
|
|
57
|
+
<w:start w:val="1"/>
|
|
58
|
+
<w:numFmt w:val="bullet"/>
|
|
59
|
+
<w:lvlText w:val="-"/>
|
|
60
|
+
<w:lvlJc w:val="left"/>
|
|
61
|
+
<w:pPr>
|
|
62
|
+
<w:ind w:left="850" w:hanging="283"/>
|
|
63
|
+
</w:pPr>
|
|
64
|
+
</w:lvl>
|
|
65
|
+
<w:lvl w:ilvl="3" w:tplc="5F3A9EE0">
|
|
66
|
+
<w:start w:val="1"/>
|
|
67
|
+
<w:numFmt w:val="bullet"/>
|
|
68
|
+
<w:lvlText w:val="-"/>
|
|
69
|
+
<w:lvlJc w:val="left"/>
|
|
70
|
+
<w:pPr>
|
|
71
|
+
<w:ind w:left="1133" w:hanging="283"/>
|
|
72
|
+
</w:pPr>
|
|
73
|
+
</w:lvl>
|
|
74
|
+
<w:lvl w:ilvl="4" w:tplc="5D1EBF56">
|
|
75
|
+
<w:start w:val="1"/>
|
|
76
|
+
<w:numFmt w:val="bullet"/>
|
|
77
|
+
<w:lvlText w:val="-"/>
|
|
78
|
+
<w:lvlJc w:val="left"/>
|
|
79
|
+
<w:pPr>
|
|
80
|
+
<w:ind w:left="1417" w:hanging="283"/>
|
|
81
|
+
</w:pPr>
|
|
82
|
+
</w:lvl>
|
|
83
|
+
<w:lvl w:ilvl="5" w:tplc="CADE275C">
|
|
84
|
+
<w:start w:val="1"/>
|
|
85
|
+
<w:numFmt w:val="bullet"/>
|
|
86
|
+
<w:lvlText w:val="-"/>
|
|
87
|
+
<w:lvlJc w:val="left"/>
|
|
88
|
+
<w:pPr>
|
|
89
|
+
<w:ind w:left="1700" w:hanging="283"/>
|
|
90
|
+
</w:pPr>
|
|
91
|
+
</w:lvl>
|
|
92
|
+
<w:lvl w:ilvl="6" w:tplc="60A61DEA">
|
|
93
|
+
<w:numFmt w:val="decimal"/>
|
|
94
|
+
<w:lvlText w:val=""/>
|
|
95
|
+
<w:lvlJc w:val="left"/>
|
|
96
|
+
</w:lvl>
|
|
97
|
+
<w:lvl w:ilvl="7" w:tplc="F8A69EFC">
|
|
98
|
+
<w:numFmt w:val="decimal"/>
|
|
99
|
+
<w:lvlText w:val=""/>
|
|
100
|
+
<w:lvlJc w:val="left"/>
|
|
101
|
+
</w:lvl>
|
|
102
|
+
<w:lvl w:ilvl="8" w:tplc="B726AA04">
|
|
103
|
+
<w:numFmt w:val="decimal"/>
|
|
104
|
+
<w:lvlText w:val=""/>
|
|
105
|
+
<w:lvlJc w:val="left"/>
|
|
106
|
+
</w:lvl>
|
|
107
|
+
</w:abstractNum>
|
|
108
|
+
<w:abstractNum w:abstractNumId="1" w15:restartNumberingAfterBreak="0">
|
|
109
|
+
<w:nsid w:val="464A45AC"/>
|
|
110
|
+
<w:multiLevelType w:val="hybridMultilevel"/>
|
|
111
|
+
<w:tmpl w:val="4FFA8F44"/>
|
|
112
|
+
<w:lvl w:ilvl="0" w:tplc="9F10D3C2">
|
|
113
|
+
<w:start w:val="1"/>
|
|
114
|
+
<w:numFmt w:val="bullet"/>
|
|
115
|
+
<w:lvlText w:val="●"/>
|
|
116
|
+
<w:lvlJc w:val="left"/>
|
|
117
|
+
<w:pPr>
|
|
118
|
+
<w:ind w:left="720" w:hanging="360"/>
|
|
119
|
+
</w:pPr>
|
|
120
|
+
</w:lvl>
|
|
121
|
+
<w:lvl w:ilvl="1" w:tplc="6EFE638C">
|
|
122
|
+
<w:start w:val="1"/>
|
|
123
|
+
<w:numFmt w:val="bullet"/>
|
|
124
|
+
<w:lvlText w:val="○"/>
|
|
125
|
+
<w:lvlJc w:val="left"/>
|
|
126
|
+
<w:pPr>
|
|
127
|
+
<w:ind w:left="1440" w:hanging="360"/>
|
|
128
|
+
</w:pPr>
|
|
129
|
+
</w:lvl>
|
|
130
|
+
<w:lvl w:ilvl="2" w:tplc="69181ABA">
|
|
131
|
+
<w:start w:val="1"/>
|
|
132
|
+
<w:numFmt w:val="bullet"/>
|
|
133
|
+
<w:lvlText w:val="■"/>
|
|
134
|
+
<w:lvlJc w:val="left"/>
|
|
135
|
+
<w:pPr>
|
|
136
|
+
<w:ind w:left="2160" w:hanging="360"/>
|
|
137
|
+
</w:pPr>
|
|
138
|
+
</w:lvl>
|
|
139
|
+
<w:lvl w:ilvl="3" w:tplc="9A0E8D54">
|
|
140
|
+
<w:start w:val="1"/>
|
|
141
|
+
<w:numFmt w:val="bullet"/>
|
|
142
|
+
<w:lvlText w:val="●"/>
|
|
143
|
+
<w:lvlJc w:val="left"/>
|
|
144
|
+
<w:pPr>
|
|
145
|
+
<w:ind w:left="2880" w:hanging="360"/>
|
|
146
|
+
</w:pPr>
|
|
147
|
+
</w:lvl>
|
|
148
|
+
<w:lvl w:ilvl="4" w:tplc="794CFEB8">
|
|
149
|
+
<w:start w:val="1"/>
|
|
150
|
+
<w:numFmt w:val="bullet"/>
|
|
151
|
+
<w:lvlText w:val="○"/>
|
|
152
|
+
<w:lvlJc w:val="left"/>
|
|
153
|
+
<w:pPr>
|
|
154
|
+
<w:ind w:left="3600" w:hanging="360"/>
|
|
155
|
+
</w:pPr>
|
|
156
|
+
</w:lvl>
|
|
157
|
+
<w:lvl w:ilvl="5" w:tplc="A11EA384">
|
|
158
|
+
<w:start w:val="1"/>
|
|
159
|
+
<w:numFmt w:val="bullet"/>
|
|
160
|
+
<w:lvlText w:val="■"/>
|
|
161
|
+
<w:lvlJc w:val="left"/>
|
|
162
|
+
<w:pPr>
|
|
163
|
+
<w:ind w:left="4320" w:hanging="360"/>
|
|
164
|
+
</w:pPr>
|
|
165
|
+
</w:lvl>
|
|
166
|
+
<w:lvl w:ilvl="6" w:tplc="8684D7A6">
|
|
167
|
+
<w:start w:val="1"/>
|
|
168
|
+
<w:numFmt w:val="bullet"/>
|
|
169
|
+
<w:lvlText w:val="●"/>
|
|
170
|
+
<w:lvlJc w:val="left"/>
|
|
171
|
+
<w:pPr>
|
|
172
|
+
<w:ind w:left="5040" w:hanging="360"/>
|
|
173
|
+
</w:pPr>
|
|
174
|
+
</w:lvl>
|
|
175
|
+
<w:lvl w:ilvl="7" w:tplc="BBCAEC96">
|
|
176
|
+
<w:start w:val="1"/>
|
|
177
|
+
<w:numFmt w:val="bullet"/>
|
|
178
|
+
<w:lvlText w:val="●"/>
|
|
179
|
+
<w:lvlJc w:val="left"/>
|
|
180
|
+
<w:pPr>
|
|
181
|
+
<w:ind w:left="5760" w:hanging="360"/>
|
|
182
|
+
</w:pPr>
|
|
183
|
+
</w:lvl>
|
|
184
|
+
<w:lvl w:ilvl="8" w:tplc="B9C65A48">
|
|
185
|
+
<w:start w:val="1"/>
|
|
186
|
+
<w:numFmt w:val="bullet"/>
|
|
187
|
+
<w:lvlText w:val="●"/>
|
|
188
|
+
<w:lvlJc w:val="left"/>
|
|
189
|
+
<w:pPr>
|
|
190
|
+
<w:ind w:left="6480" w:hanging="360"/>
|
|
191
|
+
</w:pPr>
|
|
192
|
+
</w:lvl>
|
|
193
|
+
</w:abstractNum>
|
|
194
|
+
<w:abstractNum w:abstractNumId="2" w15:restartNumberingAfterBreak="0">
|
|
195
|
+
<w:nsid w:val="70D32A1B"/>
|
|
196
|
+
<w:multiLevelType w:val="hybridMultilevel"/>
|
|
197
|
+
<w:tmpl w:val="1ACEBF42"/>
|
|
198
|
+
<w:lvl w:ilvl="0" w:tplc="E9368106">
|
|
199
|
+
<w:start w:val="1"/>
|
|
200
|
+
<w:numFmt w:val="decimal"/>
|
|
201
|
+
<w:lvlText w:val="%1."/>
|
|
202
|
+
<w:lvlJc w:val="left"/>
|
|
203
|
+
<w:pPr>
|
|
204
|
+
<w:ind w:left="566" w:hanging="283"/>
|
|
205
|
+
</w:pPr>
|
|
206
|
+
</w:lvl>
|
|
207
|
+
<w:lvl w:ilvl="1" w:tplc="657A9322">
|
|
208
|
+
<w:start w:val="1"/>
|
|
209
|
+
<w:numFmt w:val="lowerLetter"/>
|
|
210
|
+
<w:lvlText w:val="%2"/>
|
|
211
|
+
<w:lvlJc w:val="left"/>
|
|
212
|
+
<w:pPr>
|
|
213
|
+
<w:ind w:left="1133" w:hanging="283"/>
|
|
214
|
+
</w:pPr>
|
|
215
|
+
</w:lvl>
|
|
216
|
+
<w:lvl w:ilvl="2" w:tplc="06D204FE">
|
|
217
|
+
<w:start w:val="1"/>
|
|
218
|
+
<w:numFmt w:val="lowerRoman"/>
|
|
219
|
+
<w:lvlText w:val="%3"/>
|
|
220
|
+
<w:lvlJc w:val="left"/>
|
|
221
|
+
<w:pPr>
|
|
222
|
+
<w:ind w:left="1700" w:hanging="283"/>
|
|
223
|
+
</w:pPr>
|
|
224
|
+
</w:lvl>
|
|
225
|
+
<w:lvl w:ilvl="3" w:tplc="CA584530">
|
|
226
|
+
<w:start w:val="1"/>
|
|
227
|
+
<w:numFmt w:val="decimal"/>
|
|
228
|
+
<w:lvlText w:val="%4."/>
|
|
229
|
+
<w:lvlJc w:val="left"/>
|
|
230
|
+
<w:pPr>
|
|
231
|
+
<w:ind w:left="2267" w:hanging="283"/>
|
|
232
|
+
</w:pPr>
|
|
233
|
+
</w:lvl>
|
|
234
|
+
<w:lvl w:ilvl="4" w:tplc="947279C2">
|
|
235
|
+
<w:start w:val="1"/>
|
|
236
|
+
<w:numFmt w:val="lowerLetter"/>
|
|
237
|
+
<w:lvlText w:val="%5"/>
|
|
238
|
+
<w:lvlJc w:val="left"/>
|
|
239
|
+
<w:pPr>
|
|
240
|
+
<w:ind w:left="2834" w:hanging="283"/>
|
|
241
|
+
</w:pPr>
|
|
242
|
+
</w:lvl>
|
|
243
|
+
<w:lvl w:ilvl="5" w:tplc="7E367B2C">
|
|
244
|
+
<w:start w:val="1"/>
|
|
245
|
+
<w:numFmt w:val="lowerRoman"/>
|
|
246
|
+
<w:lvlText w:val="%6"/>
|
|
247
|
+
<w:lvlJc w:val="left"/>
|
|
248
|
+
<w:pPr>
|
|
249
|
+
<w:ind w:left="3401" w:hanging="283"/>
|
|
250
|
+
</w:pPr>
|
|
251
|
+
</w:lvl>
|
|
252
|
+
<w:lvl w:ilvl="6" w:tplc="B6B85522">
|
|
253
|
+
<w:numFmt w:val="decimal"/>
|
|
254
|
+
<w:lvlText w:val=""/>
|
|
255
|
+
<w:lvlJc w:val="left"/>
|
|
256
|
+
</w:lvl>
|
|
257
|
+
<w:lvl w:ilvl="7" w:tplc="7004DD56">
|
|
258
|
+
<w:numFmt w:val="decimal"/>
|
|
259
|
+
<w:lvlText w:val=""/>
|
|
260
|
+
<w:lvlJc w:val="left"/>
|
|
261
|
+
</w:lvl>
|
|
262
|
+
<w:lvl w:ilvl="8" w:tplc="AF46A910">
|
|
263
|
+
<w:numFmt w:val="decimal"/>
|
|
264
|
+
<w:lvlText w:val=""/>
|
|
265
|
+
<w:lvlJc w:val="left"/>
|
|
266
|
+
</w:lvl>
|
|
267
|
+
</w:abstractNum>
|
|
268
|
+
<w:num w:numId="1">
|
|
269
|
+
<w:abstractNumId w:val="1"/>
|
|
270
|
+
</w:num>
|
|
271
|
+
<w:num w:numId="2">
|
|
272
|
+
<w:abstractNumId w:val="2"/>
|
|
273
|
+
</w:num>
|
|
274
|
+
<w:num w:numId="3">
|
|
275
|
+
<w:abstractNumId w:val="0"/>
|
|
276
|
+
</w:num>
|
|
277
|
+
</w:numbering>
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
2
|
+
<w:settings xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
3
|
+
xmlns:o="urn:schemas-microsoft-com:office:office"
|
|
4
|
+
xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
|
|
5
|
+
xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math"
|
|
6
|
+
xmlns:v="urn:schemas-microsoft-com:vml"
|
|
7
|
+
xmlns:w10="urn:schemas-microsoft-com:office:word"
|
|
8
|
+
xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
|
|
9
|
+
xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
|
|
10
|
+
xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
|
|
11
|
+
xmlns:w16cex="http://schemas.microsoft.com/office/word/2018/wordml/cex"
|
|
12
|
+
xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid"
|
|
13
|
+
xmlns:w16="http://schemas.microsoft.com/office/word/2018/wordml"
|
|
14
|
+
xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex"
|
|
15
|
+
xmlns:sl="http://schemas.openxmlformats.org/schemaLibrary/2006/main"
|
|
16
|
+
mc:Ignorable="w14 w15 w16se w16cid w16 w16cex">
|
|
17
|
+
<w:zoom w:percent="182"/>
|
|
18
|
+
<w:displayBackgroundShape/>
|
|
19
|
+
<w:proofState w:spelling="clean" w:grammar="clean"/>
|
|
20
|
+
<w:attachedTemplate r:id="rId1"/>
|
|
21
|
+
<w:defaultTabStop w:val="720"/>
|
|
22
|
+
<w:characterSpacingControl w:val="doNotCompress"/>
|
|
23
|
+
<w:hdrShapeDefaults>
|
|
24
|
+
<o:shapedefaults v:ext="edit" spidmax="2049"/>
|
|
25
|
+
</w:hdrShapeDefaults>
|
|
26
|
+
<w:footnotePr>
|
|
27
|
+
<w:footnote w:id="-1"/>
|
|
28
|
+
<w:footnote w:id="0"/>
|
|
29
|
+
</w:footnotePr>
|
|
30
|
+
<w:endnotePr>
|
|
31
|
+
<w:endnote w:id="-1"/>
|
|
32
|
+
<w:endnote w:id="0"/>
|
|
33
|
+
</w:endnotePr>
|
|
34
|
+
<w:compat>
|
|
35
|
+
<w:compatSetting w:name="compatibilityMode" w:uri="http://schemas.microsoft.com/office/word"
|
|
36
|
+
w:val="15"/>
|
|
37
|
+
<w:compatSetting w:name="overrideTableStyleFontSizeAndJustification"
|
|
38
|
+
w:uri="http://schemas.microsoft.com/office/word" w:val="1"/>
|
|
39
|
+
<w:compatSetting w:name="enableOpenTypeFeatures"
|
|
40
|
+
w:uri="http://schemas.microsoft.com/office/word" w:val="1"/>
|
|
41
|
+
<w:compatSetting w:name="doNotFlipMirrorIndents"
|
|
42
|
+
w:uri="http://schemas.microsoft.com/office/word" w:val="1"/>
|
|
43
|
+
<w:compatSetting w:name="differentiateMultirowTableHeaders"
|
|
44
|
+
w:uri="http://schemas.microsoft.com/office/word" w:val="1"/>
|
|
45
|
+
<w:compatSetting w:name="useWord2013TrackBottomHyphenation"
|
|
46
|
+
w:uri="http://schemas.microsoft.com/office/word" w:val="0"/>
|
|
47
|
+
</w:compat>
|
|
48
|
+
<w:rsids>
|
|
49
|
+
<w:rsidRoot w:val="00235843"/>
|
|
50
|
+
<w:rsid w:val="001A1CCC"/>
|
|
51
|
+
<w:rsid w:val="00235843"/>
|
|
52
|
+
<w:rsid w:val="003327EF"/>
|
|
53
|
+
<w:rsid w:val="003E591D"/>
|
|
54
|
+
<w:rsid w:val="004E2A95"/>
|
|
55
|
+
<w:rsid w:val="006E467F"/>
|
|
56
|
+
<w:rsid w:val="00706BFD"/>
|
|
57
|
+
<w:rsid w:val="009C2929"/>
|
|
58
|
+
<w:rsid w:val="00A133DC"/>
|
|
59
|
+
<w:rsid w:val="00BE7E4B"/>
|
|
60
|
+
<w:rsid w:val="00D52A4F"/>
|
|
61
|
+
<w:rsid w:val="00FA7969"/>
|
|
62
|
+
</w:rsids>
|
|
63
|
+
<m:mathPr>
|
|
64
|
+
<m:mathFont m:val="Cambria Math"/>
|
|
65
|
+
<m:brkBin m:val="before"/>
|
|
66
|
+
<m:brkBinSub m:val="--"/>
|
|
67
|
+
<m:smallFrac m:val="0"/>
|
|
68
|
+
<m:dispDef/>
|
|
69
|
+
<m:lMargin m:val="0"/>
|
|
70
|
+
<m:rMargin m:val="0"/>
|
|
71
|
+
<m:defJc m:val="centerGroup"/>
|
|
72
|
+
<m:wrapIndent m:val="1440"/>
|
|
73
|
+
<m:intLim m:val="subSup"/>
|
|
74
|
+
<m:naryLim m:val="undOvr"/>
|
|
75
|
+
</m:mathPr>
|
|
76
|
+
<w:themeFontLang w:val="en-CH" w:eastAsia="ja-JP"/>
|
|
77
|
+
<w:clrSchemeMapping w:bg1="light1" w:t1="dark1" w:bg2="light2" w:t2="dark2" w:accent1="accent1"
|
|
78
|
+
w:accent2="accent2" w:accent3="accent3" w:accent4="accent4"
|
|
79
|
+
w:accent5="accent5" w:accent6="accent6" w:hyperlink="hyperlink"
|
|
80
|
+
w:followedHyperlink="followedHyperlink"/>
|
|
81
|
+
<w:shapeDefaults>
|
|
82
|
+
<o:shapedefaults v:ext="edit" spidmax="2049"/>
|
|
83
|
+
<o:shapelayout v:ext="edit">
|
|
84
|
+
<o:idmap v:ext="edit" data="1"/>
|
|
85
|
+
</o:shapelayout>
|
|
86
|
+
</w:shapeDefaults>
|
|
87
|
+
<w:decimalSymbol w:val="."/>
|
|
88
|
+
<w:listSeparator w:val=","/>
|
|
89
|
+
<w14:docId w14:val="584220EB"/>
|
|
90
|
+
<w15:docId w15:val="{E94252B6-D2A8-C84E-A468-3A104CCECA45}"/>
|
|
91
|
+
</w:settings>
|