@blocknote/xl-odt-exporter 0.47.2 → 0.48.0

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.
@@ -1,1741 +1,523 @@
1
- var I = Object.defineProperty;
2
- var N = (e, t, n) => t in e ? I(e, t, { enumerable: !0, configurable: !0, writable: !0, value: n }) : e[t] = n;
3
- var b = (e, t, n) => N(e, typeof t != "symbol" ? t + "" : t, n);
4
- import { jsxs as x, Fragment as h, jsx as l } from "react/jsx-runtime";
5
- import { mapTableCell as T, Exporter as M, COLORS_DEFAULT as B } from "@blocknote/core";
6
- import { ZipWriter as $, BlobWriter as W, TextReader as v, BlobReader as k } from "@zip.js/zip.js";
7
- import { renderToString as C } from "react-dom/server";
8
- const L = (e) => Array.from({ length: e }, () => /* @__PURE__ */ l("text:tab", {})), g = (e, t, n = "Standard", s = {}, a = {}, o = {}) => {
9
- var m, p;
10
- const y = {
11
- ...a
12
- }, i = { ...o };
13
- if (t.textAlignment && t.textAlignment !== "left") {
14
- const d = {
15
- left: "start",
16
- center: "center",
17
- right: "end",
18
- justify: "justify"
19
- };
20
- y["fo:text-align"] = d[t.textAlignment];
21
- }
22
- const r = t.backgroundColor && t.backgroundColor !== "default" ? (m = e.options.colors[t.backgroundColor]) == null ? void 0 : m.background : void 0;
23
- if (r && (y["fo:background-color"] = r), t.textColor && t.textColor !== "default") {
24
- const d = ((p = e.options.colors[t.textColor]) == null ? void 0 : p.text) ?? t.textColor;
25
- i["fo:color"] = d;
26
- }
27
- return !r && !Object.keys(s).length && !Object.keys(y).length && !Object.keys(i).length ? n || "Standard" : e.registerStyle((d) => /* @__PURE__ */ x(
28
- "style:style",
29
- {
30
- "style:family": "paragraph",
31
- "style:name": d,
32
- "style:parent-style-name": n,
33
- ...s,
34
- children: [
35
- r && /* @__PURE__ */ l(
36
- "loext:graphic-properties",
37
- {
38
- "draw:fill": "solid",
39
- "draw:fill-color": r
40
- }
41
- ),
42
- Object.keys(y).length > 0 && /* @__PURE__ */ l("style:paragraph-properties", { ...y }),
43
- Object.keys(i).length > 0 && /* @__PURE__ */ l("style:text-properties", { ...i })
44
- ]
45
- }
46
- ));
47
- }, A = (e) => {
48
- const t = /* @__PURE__ */ new Map();
49
- return (n) => {
50
- const s = `${n.props.backgroundColor}-${n.props.textColor}-${n.props.textAlignment}`;
51
- if (t.has(s))
52
- return t.get(s);
53
- const a = e.registerStyle((o) => {
54
- var y, i, r;
55
- return /* @__PURE__ */ l("style:style", { "style:family": "table-cell", "style:name": o, children: /* @__PURE__ */ l(
56
- "style:table-cell-properties",
57
- {
58
- "fo:border": "0.5pt solid #000000",
59
- "style:writing-mode": "lr-tb",
60
- "fo:padding-top": "0in",
61
- "fo:padding-left": "0.075in",
62
- "fo:padding-bottom": "0in",
63
- "fo:padding-right": "0.075in",
64
- "fo:background-color": n.props.backgroundColor !== "default" && n.props.backgroundColor ? (i = (y = e.options.colors) == null ? void 0 : y[n.props.backgroundColor]) == null ? void 0 : i.background : void 0,
65
- "fo:color": n.props.textColor !== "default" && n.props.textColor ? (r = e.options.colors[n.props.textColor]) == null ? void 0 : r.text : void 0
66
- }
67
- ) });
68
- });
69
- return t.set(s, a), a;
70
- };
71
- }, P = (e, t) => e.registerStyle((s) => /* @__PURE__ */ l("style:style", { "style:family": "table", "style:name": s, children: /* @__PURE__ */ l(
72
- "style:table-properties",
73
- {
74
- "table:align": "left",
75
- "style:writing-mode": "lr-tb",
76
- "style:width": `${t.width}pt`
77
- }
78
- ) })), S = (e, t) => t <= 0 ? e : /* @__PURE__ */ l("text:list", { children: /* @__PURE__ */ l("text:list-item", { children: S(e, t - 1) }) }), O = {
79
- paragraph: (e, t, n) => {
80
- const s = g(
81
- t,
82
- e.props
83
- );
84
- return /* @__PURE__ */ x("text:p", { "text:style-name": s, children: [
85
- L(n),
86
- t.transformInlineContent(e.content)
87
- ] });
88
- },
89
- heading: (e, t, n) => {
90
- const a = g(
91
- t,
92
- e.props,
93
- "Heading_20_" + e.props.level
94
- );
95
- return /* @__PURE__ */ x(
96
- "text:h",
97
- {
98
- "text:outline-level": `${e.props.level}`,
99
- "text:style-name": a,
100
- children: [
101
- L(n),
102
- t.transformInlineContent(e.content)
103
- ]
104
- }
105
- );
106
- },
107
- quote: (e, t, n) => {
108
- const a = g(
109
- t,
110
- e.props,
111
- "Standard",
112
- {},
113
- {
114
- "fo:border-left": "2pt solid #7D797A",
115
- "fo:padding-left": "0.25in"
116
- },
117
- {
118
- "fo:color": "#7D797A"
119
- }
120
- );
121
- return /* @__PURE__ */ x("text:p", { "text:style-name": a, children: [
122
- L(n),
123
- t.transformInlineContent(e.content)
124
- ] });
125
- },
126
- /**
127
- * Note: we wrap each list item in it's own list element.
128
- * This is not the cleanest solution, it would be nicer to recognize subsequent
129
- * list items and wrap them in the same list element.
130
- *
131
- * However, Word DocX -> ODT export actually does the same thing, so
132
- * for now it seems reasonable.
133
- *
134
- * (LibreOffice does nicely wrap the list items in the same list element)
135
- */
136
- toggleListItem: (e, t) => /* @__PURE__ */ x("text:p", { "text:style-name": "Standard", children: [
137
- "> ",
138
- t.transformInlineContent(e.content)
139
- ] }),
140
- bulletListItem: (e, t, n) => {
141
- const s = g(
142
- t,
143
- e.props,
144
- "Standard",
145
- { "style:list-style-name": "WWNum1" }
146
- );
147
- return /* @__PURE__ */ l("text:list", { "text:style-name": "WWNum1", children: /* @__PURE__ */ l("text:list-item", { children: S(
148
- /* @__PURE__ */ l("text:p", { "text:style-name": s, children: t.transformInlineContent(e.content) }),
149
- n
150
- ) }) });
151
- },
152
- numberedListItem: (e, t, n, s) => {
153
- const a = g(
154
- t,
155
- e.props
156
- ), o = (s || 0) > 1 ? "true" : "false";
157
- return /* @__PURE__ */ l(
158
- "text:list",
159
- {
160
- "text:style-name": "No_20_List",
161
- "text:continue-numbering": o,
162
- children: /* @__PURE__ */ l(
163
- "text:list-item",
164
- {
165
- ...o === "false" && {
166
- "text:start-value": e.props.start
167
- },
168
- children: S(
169
- /* @__PURE__ */ l("text:p", { "text:style-name": a, children: t.transformInlineContent(e.content) }),
170
- n
171
- )
172
- }
173
- )
174
- }
175
- );
176
- },
177
- checkListItem: (e, t) => /* @__PURE__ */ x("text:p", { "text:style-name": "Standard", children: [
178
- e.props.checked ? "☒ " : " ",
179
- t.transformInlineContent(e.content)
180
- ] }),
181
- pageBreak: async () => /* @__PURE__ */ l("text:p", { "text:style-name": "PageBreak" }),
182
- divider: (e, t) => {
183
- const n = g(
184
- t,
185
- e.props,
186
- "Standard",
187
- {},
188
- {
189
- "fo:border-top": "1pt solid #cccccc",
190
- "fo:margin-top": "11pt",
191
- "fo:margin-bottom": "12pt",
192
- "fo:padding-top": "0pt",
193
- "fo:padding-bottom": "0pt"
194
- }
195
- );
196
- return /* @__PURE__ */ l("text:p", { "text:style-name": n });
197
- },
198
- column: (e, t, n, s, a) => {
199
- const y = t.registerStyle((i) => /* @__PURE__ */ l("style:style", { "style:name": i, "style:family": "table-cell", children: /* @__PURE__ */ l(
200
- "style:table-cell-properties",
201
- {
202
- "style:writing-mode": "lr-tb",
203
- "fo:border": "none",
204
- "fo:padding-top": "0in",
205
- "fo:padding-left": "0.075in",
206
- "fo:padding-bottom": "0in",
207
- "fo:padding-right": "0.075in"
208
- }
209
- ) }));
210
- return /* @__PURE__ */ l("table:table-cell", { "table:style-name": y, children: a });
211
- },
212
- columnList: (e, t, n, s, a) => {
213
- const o = e, y = t, i = y.registerStyle((r) => /* @__PURE__ */ l("style:style", { "style:name": r, "style:family": "table", children: /* @__PURE__ */ l(
214
- "style:table-properties",
215
- {
216
- "table:align": "margins",
217
- "style:writing-mode": "lr-tb"
218
- }
219
- ) }));
220
- return /* @__PURE__ */ x("table:table", { "table:name": e.id, "table:style-name": i, children: [
221
- (o.children || []).map((r, m) => {
222
- const p = y.registerStyle((d) => /* @__PURE__ */ l("style:style", { "style:name": d, "style:family": "table-column", children: /* @__PURE__ */ l(
223
- "style:table-column-properties",
224
- {
225
- "style:rel-column-width": `${r.props.width * 100}*`
226
- }
227
- ) }));
228
- return /* @__PURE__ */ l("table:table-column", { "table:style-name": p }, m);
229
- }),
230
- /* @__PURE__ */ l("table:table-row", { children: a })
231
- ] });
232
- },
233
- image: async (e, t) => {
234
- const n = t, { path: s, mimeType: a, ...o } = await n.registerPicture(e.props.url), y = g(
235
- t,
236
- e.props
237
- ), i = e.props.previewWidth || o.width, r = o.height / o.width * i, m = 20, p = /* @__PURE__ */ x("text:p", { "text:style-name": e.props.caption ? "Caption" : y, children: [
238
- /* @__PURE__ */ l(
239
- "draw:frame",
240
- {
241
- "draw:style-name": "Frame",
242
- "style:rel-height": "scale",
243
- "svg:width": `${i}px`,
244
- "svg:height": `${r}px`,
245
- "style:rel-width": e.props.caption ? "100%" : `${i}px`,
246
- ...!e.props.caption && {
247
- "text:anchor-type": "as-char"
248
- },
249
- children: /* @__PURE__ */ l(
250
- "draw:image",
251
- {
252
- "xlink:type": "simple",
253
- "xlink:show": "embed",
254
- "xlink:actuate": "onLoad",
255
- "xlink:href": s,
256
- "draw:mime-type": a
257
- }
258
- )
259
- }
260
- ),
261
- /* @__PURE__ */ l("text:line-break", {}),
262
- /* @__PURE__ */ l("text:span", { "text:style-name": "Caption", children: e.props.caption })
263
- ] });
264
- return e.props.caption ? /* @__PURE__ */ l("text:p", { "text:style-name": y, children: /* @__PURE__ */ l(
265
- "draw:frame",
266
- {
267
- "draw:style-name": "Frame",
268
- "style:rel-height": "scale",
269
- "style:rel-width": `${i}px`,
270
- "svg:width": `${i}px`,
271
- "svg:height": `${r + m}px`,
272
- "text:anchor-type": "as-char",
273
- children: /* @__PURE__ */ l("draw:text-box", { children: p })
274
- }
275
- ) }) : p;
276
- },
277
- table: (e, t) => {
278
- var r;
279
- const a = (e.content.columnWidths.reduce(
280
- (m, p) => (m || 0) + (p || 120),
281
- 0
282
- ) || 0) * 0.75, o = t, y = A(o), i = P(o, { width: a });
283
- return /* @__PURE__ */ x("table:table", { "table:name": e.id, "table:style-name": i, children: [
284
- (r = e.content.rows[0]) == null ? void 0 : r.cells.map((m, p) => {
285
- const u = (e.content.columnWidths[p] || 120) * 0.75, c = o.registerStyle((_) => /* @__PURE__ */ l("style:style", { "style:name": _, "style:family": "table-column", children: /* @__PURE__ */ l(
286
- "style:table-column-properties",
287
- {
288
- "style:column-width": `${u}pt`
289
- }
290
- ) }));
291
- return /* @__PURE__ */ l("table:table-column", { "table:style-name": c }, p);
292
- }),
293
- e.content.rows.map((m, p) => /* @__PURE__ */ l("table:table-row", { children: m.cells.map((d, u) => {
294
- const c = T(d);
295
- return /* @__PURE__ */ l(
296
- "table:table-cell",
297
- {
298
- "table:style-name": y(c),
299
- "office:value-type": "string",
300
- "style:text-align-source": "fix",
301
- "style:paragraph-properties-text-align": c.props.textAlignment,
302
- children: /* @__PURE__ */ l("text:p", { "text:style-name": "Standard", children: t.transformInlineContent(c.content) })
303
- },
304
- `${p}-${u}`
305
- );
306
- }) }, p))
307
- ] });
308
- },
309
- codeBlock: (e) => {
310
- var n;
311
- const t = ((n = e.content[0]) == null ? void 0 : n.text) || "";
312
- return /* @__PURE__ */ x("text:p", { "text:style-name": "Codeblock", children: [
313
- ...t.split(`
314
- `).map((s, a) => /* @__PURE__ */ x(h, { children: [
315
- a !== 0 && /* @__PURE__ */ l("text:line-break", {}),
316
- s
317
- ] }))
318
- ] });
319
- },
320
- file: async (e) => /* @__PURE__ */ x(h, { children: [
321
- /* @__PURE__ */ l("text:p", { "style:style-name": "Standard", children: e.props.url ? /* @__PURE__ */ l(
322
- "text:a",
323
- {
324
- "xlink:type": "simple",
325
- "text:style-name": "Internet_20_link",
326
- "office:target-frame-name": "_top",
327
- "xlink:show": "replace",
328
- "xlink:href": e.props.url,
329
- children: /* @__PURE__ */ l("text:span", { "text:style-name": "Internet_20_link", children: "Open file" })
330
- }
331
- ) : "Open file" }),
332
- e.props.caption && /* @__PURE__ */ l("text:p", { "text:style-name": "Caption", children: e.props.caption })
333
- ] }),
334
- video: (e) => /* @__PURE__ */ x(h, { children: [
335
- /* @__PURE__ */ l("text:p", { "style:style-name": "Standard", children: /* @__PURE__ */ l(
336
- "text:a",
337
- {
338
- "xlink:type": "simple",
339
- "text:style-name": "Internet_20_link",
340
- "office:target-frame-name": "_top",
341
- "xlink:show": "replace",
342
- "xlink:href": e.props.url,
343
- children: /* @__PURE__ */ l("text:span", { "text:style-name": "Internet_20_link", children: "Open video" })
344
- }
345
- ) }),
346
- e.props.caption && /* @__PURE__ */ l("text:p", { "text:style-name": "Caption", children: e.props.caption })
347
- ] }),
348
- audio: (e) => /* @__PURE__ */ x(h, { children: [
349
- /* @__PURE__ */ l("text:p", { "style:style-name": "Standard", children: /* @__PURE__ */ l(
350
- "text:a",
351
- {
352
- "xlink:type": "simple",
353
- "text:style-name": "Internet_20_link",
354
- "office:target-frame-name": "_top",
355
- "xlink:show": "replace",
356
- "xlink:href": e.props.url,
357
- children: /* @__PURE__ */ l("text:span", { "text:style-name": "Internet_20_link", children: "Open audio" })
358
- }
359
- ) }),
360
- e.props.caption && /* @__PURE__ */ l("text:p", { "text:style-name": "Caption", children: e.props.caption })
361
- ] })
362
- }, R = {
363
- link: (e, t) => {
364
- const n = e.content.map((s) => t.transformStyledText(s));
365
- return /* @__PURE__ */ l(
366
- "text:a",
367
- {
368
- "xlink:type": "simple",
369
- "text:style-name": "Internet_20_link",
370
- "office:target-frame-name": "_top",
371
- "xlink:show": "replace",
372
- "xlink:href": e.href,
373
- children: n
374
- }
375
- );
376
- },
377
- text: (e, t) => t.transformStyledText(e)
378
- }, D = {
379
- bold: (e) => e ? { "fo:font-weight": "bold" } : {},
380
- italic: (e) => e ? { "fo:font-style": "italic" } : {},
381
- underline: (e) => e ? { "style:text-underline-style": "solid" } : {},
382
- strike: (e) => e ? { "style:text-line-through-style": "solid" } : {},
383
- textColor: (e, t) => {
384
- var s;
385
- if (!e)
386
- return {};
387
- const n = (s = t.options.colors[e]) == null ? void 0 : s.text;
388
- return n ? { "fo:color": n } : {};
389
- },
390
- backgroundColor: (e, t) => {
391
- var s;
392
- if (!e)
393
- return {};
394
- const n = (s = t.options.colors[e]) == null ? void 0 : s.background;
395
- return n ? { "fo:background-color": n } : {};
396
- },
397
- code: (e) => e ? { "style:font-name": "Courier New" } : {}
398
- }, J = {
399
- blockMapping: O,
400
- inlineContentMapping: R,
401
- styleMapping: D
1
+ import { COLORS_DEFAULT as e, Exporter as t, mapTableCell as n } from "@blocknote/core";
2
+ import { Fragment as r, jsx as i, jsxs as a } from "react/jsx-runtime";
3
+ import { BlobReader as o, BlobWriter as s, TextReader as c, ZipWriter as l } from "@zip.js/zip.js";
4
+ import { renderToString as u } from "react-dom/server";
5
+ //#region src/odt/defaultSchema/blocks.tsx
6
+ var d = (e) => Array.from({ length: e }, () => /* @__PURE__ */ i("text:tab", {})), f = (e, t, n = "Standard", r = {}, o = {}, s = {}) => {
7
+ let c = { ...o }, l = { ...s };
8
+ t.textAlignment && t.textAlignment !== "left" && (c["fo:text-align"] = {
9
+ left: "start",
10
+ center: "center",
11
+ right: "end",
12
+ justify: "justify"
13
+ }[t.textAlignment]);
14
+ let u = t.backgroundColor && t.backgroundColor !== "default" ? e.options.colors[t.backgroundColor]?.background : void 0;
15
+ return u && (c["fo:background-color"] = u), t.textColor && t.textColor !== "default" && (l["fo:color"] = e.options.colors[t.textColor]?.text ?? t.textColor), !u && !Object.keys(r).length && !Object.keys(c).length && !Object.keys(l).length ? n || "Standard" : e.registerStyle((e) => /* @__PURE__ */ a("style:style", {
16
+ "style:family": "paragraph",
17
+ "style:name": e,
18
+ "style:parent-style-name": n,
19
+ ...r,
20
+ children: [
21
+ u && /* @__PURE__ */ i("loext:graphic-properties", {
22
+ "draw:fill": "solid",
23
+ "draw:fill-color": u
24
+ }),
25
+ Object.keys(c).length > 0 && /* @__PURE__ */ i("style:paragraph-properties", { ...c }),
26
+ Object.keys(l).length > 0 && /* @__PURE__ */ i("style:text-properties", { ...l })
27
+ ]
28
+ }));
29
+ }, p = (e) => {
30
+ let t = /* @__PURE__ */ new Map();
31
+ return (n) => {
32
+ let r = `${n.props.backgroundColor}-${n.props.textColor}-${n.props.textAlignment}`;
33
+ if (t.has(r)) return t.get(r);
34
+ let a = e.registerStyle((t) => /* @__PURE__ */ i("style:style", {
35
+ "style:family": "table-cell",
36
+ "style:name": t,
37
+ children: /* @__PURE__ */ i("style:table-cell-properties", {
38
+ "fo:border": "0.5pt solid #000000",
39
+ "style:writing-mode": "lr-tb",
40
+ "fo:padding-top": "0in",
41
+ "fo:padding-left": "0.075in",
42
+ "fo:padding-bottom": "0in",
43
+ "fo:padding-right": "0.075in",
44
+ "fo:background-color": n.props.backgroundColor !== "default" && n.props.backgroundColor ? e.options.colors?.[n.props.backgroundColor]?.background : void 0,
45
+ "fo:color": n.props.textColor !== "default" && n.props.textColor ? e.options.colors[n.props.textColor]?.text : void 0
46
+ })
47
+ }));
48
+ return t.set(r, a), a;
49
+ };
50
+ }, m = (e, t) => e.registerStyle((e) => /* @__PURE__ */ i("style:style", {
51
+ "style:family": "table",
52
+ "style:name": e,
53
+ children: /* @__PURE__ */ i("style:table-properties", {
54
+ "table:align": "left",
55
+ "style:writing-mode": "lr-tb",
56
+ "style:width": `${t.width}pt`
57
+ })
58
+ })), h = (e, t) => t <= 0 ? e : /* @__PURE__ */ i("text:list", { children: /* @__PURE__ */ i("text:list-item", { children: h(e, t - 1) }) }), g = {
59
+ blockMapping: {
60
+ paragraph: (e, t, n) => {
61
+ let r = f(t, e.props);
62
+ return /* @__PURE__ */ a("text:p", {
63
+ "text:style-name": r,
64
+ children: [d(n), t.transformInlineContent(e.content)]
65
+ });
66
+ },
67
+ heading: (e, t, n) => {
68
+ let r = f(t, e.props, "Heading_20_" + e.props.level);
69
+ return /* @__PURE__ */ a("text:h", {
70
+ "text:outline-level": `${e.props.level}`,
71
+ "text:style-name": r,
72
+ children: [d(n), t.transformInlineContent(e.content)]
73
+ });
74
+ },
75
+ quote: (e, t, n) => {
76
+ let r = f(t, e.props, "Standard", {}, {
77
+ "fo:border-left": "2pt solid #7D797A",
78
+ "fo:padding-left": "0.25in"
79
+ }, { "fo:color": "#7D797A" });
80
+ return /* @__PURE__ */ a("text:p", {
81
+ "text:style-name": r,
82
+ children: [d(n), t.transformInlineContent(e.content)]
83
+ });
84
+ },
85
+ toggleListItem: (e, t) => /* @__PURE__ */ a("text:p", {
86
+ "text:style-name": "Standard",
87
+ children: ["> ", t.transformInlineContent(e.content)]
88
+ }),
89
+ bulletListItem: (e, t, n) => {
90
+ let r = f(t, e.props, "Standard", { "style:list-style-name": "WWNum1" });
91
+ return /* @__PURE__ */ i("text:list", {
92
+ "text:style-name": "WWNum1",
93
+ children: /* @__PURE__ */ i("text:list-item", { children: h(/* @__PURE__ */ i("text:p", {
94
+ "text:style-name": r,
95
+ children: t.transformInlineContent(e.content)
96
+ }), n) })
97
+ });
98
+ },
99
+ numberedListItem: (e, t, n, r) => {
100
+ let a = f(t, e.props), o = (r || 0) > 1 ? "true" : "false";
101
+ return /* @__PURE__ */ i("text:list", {
102
+ "text:style-name": "No_20_List",
103
+ "text:continue-numbering": o,
104
+ children: /* @__PURE__ */ i("text:list-item", {
105
+ ...o === "false" && { "text:start-value": e.props.start },
106
+ children: h(/* @__PURE__ */ i("text:p", {
107
+ "text:style-name": a,
108
+ children: t.transformInlineContent(e.content)
109
+ }), n)
110
+ })
111
+ });
112
+ },
113
+ checkListItem: (e, t) => /* @__PURE__ */ a("text:p", {
114
+ "text:style-name": "Standard",
115
+ children: [e.props.checked ? "☒ " : "☐ ", t.transformInlineContent(e.content)]
116
+ }),
117
+ pageBreak: async () => /* @__PURE__ */ i("text:p", { "text:style-name": "PageBreak" }),
118
+ divider: (e, t) => {
119
+ let n = f(t, e.props, "Standard", {}, {
120
+ "fo:border-top": "1pt solid #cccccc",
121
+ "fo:margin-top": "11pt",
122
+ "fo:margin-bottom": "12pt",
123
+ "fo:padding-top": "0pt",
124
+ "fo:padding-bottom": "0pt"
125
+ });
126
+ return /* @__PURE__ */ i("text:p", { "text:style-name": n });
127
+ },
128
+ column: (e, t, n, r, a) => {
129
+ let o = t.registerStyle((e) => /* @__PURE__ */ i("style:style", {
130
+ "style:name": e,
131
+ "style:family": "table-cell",
132
+ children: /* @__PURE__ */ i("style:table-cell-properties", {
133
+ "style:writing-mode": "lr-tb",
134
+ "fo:border": "none",
135
+ "fo:padding-top": "0in",
136
+ "fo:padding-left": "0.075in",
137
+ "fo:padding-bottom": "0in",
138
+ "fo:padding-right": "0.075in"
139
+ })
140
+ }));
141
+ return /* @__PURE__ */ i("table:table-cell", {
142
+ "table:style-name": o,
143
+ children: a
144
+ });
145
+ },
146
+ columnList: (e, t, n, r, o) => {
147
+ let s = e, c = t, l = c.registerStyle((e) => /* @__PURE__ */ i("style:style", {
148
+ "style:name": e,
149
+ "style:family": "table",
150
+ children: /* @__PURE__ */ i("style:table-properties", {
151
+ "table:align": "margins",
152
+ "style:writing-mode": "lr-tb"
153
+ })
154
+ }));
155
+ return /* @__PURE__ */ a("table:table", {
156
+ "table:name": e.id,
157
+ "table:style-name": l,
158
+ children: [(s.children || []).map((e, t) => {
159
+ let n = c.registerStyle((t) => /* @__PURE__ */ i("style:style", {
160
+ "style:name": t,
161
+ "style:family": "table-column",
162
+ children: /* @__PURE__ */ i("style:table-column-properties", { "style:rel-column-width": `${e.props.width * 100}*` })
163
+ }));
164
+ return /* @__PURE__ */ i("table:table-column", { "table:style-name": n }, t);
165
+ }), /* @__PURE__ */ i("table:table-row", { children: o })]
166
+ });
167
+ },
168
+ image: async (e, t) => {
169
+ let { path: n, mimeType: r, ...o } = await t.registerPicture(e.props.url), s = f(t, e.props), c = e.props.previewWidth || o.width, l = o.height / o.width * c, u = /* @__PURE__ */ a("text:p", {
170
+ "text:style-name": e.props.caption ? "Caption" : s,
171
+ children: [
172
+ /* @__PURE__ */ i("draw:frame", {
173
+ "draw:style-name": "Frame",
174
+ "style:rel-height": "scale",
175
+ "svg:width": `${c}px`,
176
+ "svg:height": `${l}px`,
177
+ "style:rel-width": e.props.caption ? "100%" : `${c}px`,
178
+ ...!e.props.caption && { "text:anchor-type": "as-char" },
179
+ children: /* @__PURE__ */ i("draw:image", {
180
+ "xlink:type": "simple",
181
+ "xlink:show": "embed",
182
+ "xlink:actuate": "onLoad",
183
+ "xlink:href": n,
184
+ "draw:mime-type": r
185
+ })
186
+ }),
187
+ /* @__PURE__ */ i("text:line-break", {}),
188
+ /* @__PURE__ */ i("text:span", {
189
+ "text:style-name": "Caption",
190
+ children: e.props.caption
191
+ })
192
+ ]
193
+ });
194
+ return e.props.caption ? /* @__PURE__ */ i("text:p", {
195
+ "text:style-name": s,
196
+ children: /* @__PURE__ */ i("draw:frame", {
197
+ "draw:style-name": "Frame",
198
+ "style:rel-height": "scale",
199
+ "style:rel-width": `${c}px`,
200
+ "svg:width": `${c}px`,
201
+ "svg:height": `${l + 20}px`,
202
+ "text:anchor-type": "as-char",
203
+ children: /* @__PURE__ */ i("draw:text-box", { children: u })
204
+ })
205
+ }) : u;
206
+ },
207
+ table: (e, t) => {
208
+ let r = (e.content.columnWidths.reduce((e, t) => (e || 0) + (t || 120), 0) || 0) * .75, o = t, s = p(o), c = m(o, { width: r });
209
+ return /* @__PURE__ */ a("table:table", {
210
+ "table:name": e.id,
211
+ "table:style-name": c,
212
+ children: [e.content.rows[0]?.cells.map((t, n) => {
213
+ let r = (e.content.columnWidths[n] || 120) * .75, a = o.registerStyle((e) => /* @__PURE__ */ i("style:style", {
214
+ "style:name": e,
215
+ "style:family": "table-column",
216
+ children: /* @__PURE__ */ i("style:table-column-properties", { "style:column-width": `${r}pt` })
217
+ }));
218
+ return /* @__PURE__ */ i("table:table-column", { "table:style-name": a }, n);
219
+ }), e.content.rows.map((e, r) => /* @__PURE__ */ i("table:table-row", { children: e.cells.map((e, a) => {
220
+ let o = n(e);
221
+ return /* @__PURE__ */ i("table:table-cell", {
222
+ "table:style-name": s(o),
223
+ "office:value-type": "string",
224
+ "style:text-align-source": "fix",
225
+ "style:paragraph-properties-text-align": o.props.textAlignment,
226
+ children: /* @__PURE__ */ i("text:p", {
227
+ "text:style-name": "Standard",
228
+ children: t.transformInlineContent(o.content)
229
+ })
230
+ }, `${r}-${a}`);
231
+ }) }, r))]
232
+ });
233
+ },
234
+ codeBlock: (e) => {
235
+ let t = e.content[0]?.text || "";
236
+ return /* @__PURE__ */ i("text:p", {
237
+ "text:style-name": "Codeblock",
238
+ children: [...t.split("\n").map((e, t) => /* @__PURE__ */ a(r, { children: [t !== 0 && /* @__PURE__ */ i("text:line-break", {}), e] }))]
239
+ });
240
+ },
241
+ file: async (e) => /* @__PURE__ */ a(r, { children: [/* @__PURE__ */ i("text:p", {
242
+ "style:style-name": "Standard",
243
+ children: e.props.url ? /* @__PURE__ */ i("text:a", {
244
+ "xlink:type": "simple",
245
+ "text:style-name": "Internet_20_link",
246
+ "office:target-frame-name": "_top",
247
+ "xlink:show": "replace",
248
+ "xlink:href": e.props.url,
249
+ children: /* @__PURE__ */ i("text:span", {
250
+ "text:style-name": "Internet_20_link",
251
+ children: "Open file"
252
+ })
253
+ }) : "Open file"
254
+ }), e.props.caption && /* @__PURE__ */ i("text:p", {
255
+ "text:style-name": "Caption",
256
+ children: e.props.caption
257
+ })] }),
258
+ video: (e) => /* @__PURE__ */ a(r, { children: [/* @__PURE__ */ i("text:p", {
259
+ "style:style-name": "Standard",
260
+ children: /* @__PURE__ */ i("text:a", {
261
+ "xlink:type": "simple",
262
+ "text:style-name": "Internet_20_link",
263
+ "office:target-frame-name": "_top",
264
+ "xlink:show": "replace",
265
+ "xlink:href": e.props.url,
266
+ children: /* @__PURE__ */ i("text:span", {
267
+ "text:style-name": "Internet_20_link",
268
+ children: "Open video"
269
+ })
270
+ })
271
+ }), e.props.caption && /* @__PURE__ */ i("text:p", {
272
+ "text:style-name": "Caption",
273
+ children: e.props.caption
274
+ })] }),
275
+ audio: (e) => /* @__PURE__ */ a(r, { children: [/* @__PURE__ */ i("text:p", {
276
+ "style:style-name": "Standard",
277
+ children: /* @__PURE__ */ i("text:a", {
278
+ "xlink:type": "simple",
279
+ "text:style-name": "Internet_20_link",
280
+ "office:target-frame-name": "_top",
281
+ "xlink:show": "replace",
282
+ "xlink:href": e.props.url,
283
+ children: /* @__PURE__ */ i("text:span", {
284
+ "text:style-name": "Internet_20_link",
285
+ children: "Open audio"
286
+ })
287
+ })
288
+ }), e.props.caption && /* @__PURE__ */ i("text:p", {
289
+ "text:style-name": "Caption",
290
+ children: e.props.caption
291
+ })] })
292
+ },
293
+ inlineContentMapping: {
294
+ link: (e, t) => {
295
+ let n = e.content.map((e) => t.transformStyledText(e));
296
+ return /* @__PURE__ */ i("text:a", {
297
+ "xlink:type": "simple",
298
+ "text:style-name": "Internet_20_link",
299
+ "office:target-frame-name": "_top",
300
+ "xlink:show": "replace",
301
+ "xlink:href": e.href,
302
+ children: n
303
+ });
304
+ },
305
+ text: (e, t) => t.transformStyledText(e)
306
+ },
307
+ styleMapping: {
308
+ bold: (e) => e ? { "fo:font-weight": "bold" } : {},
309
+ italic: (e) => e ? { "fo:font-style": "italic" } : {},
310
+ underline: (e) => e ? { "style:text-underline-style": "solid" } : {},
311
+ strike: (e) => e ? { "style:text-line-through-style": "solid" } : {},
312
+ textColor: (e, t) => {
313
+ if (!e) return {};
314
+ let n = t.options.colors[e]?.text;
315
+ return n ? { "fo:color": n } : {};
316
+ },
317
+ backgroundColor: (e, t) => {
318
+ if (!e) return {};
319
+ let n = t.options.colors[e]?.background;
320
+ return n ? { "fo:background-color": n } : {};
321
+ },
322
+ code: (e) => e ? { "style:font-name": "Courier New" } : {}
323
+ }
402
324
  };
403
- async function H(e) {
404
- {
405
- const t = e.default;
406
- return await (await fetch(t)).arrayBuffer();
407
- }
325
+ //#endregion
326
+ //#region ../../shared/util/fileUtil.ts
327
+ async function _(e) {
328
+ {
329
+ let t = e.default;
330
+ return await (await fetch(t)).arrayBuffer();
331
+ }
408
332
  }
409
- async function U(e) {
410
- if (typeof window < "u") {
411
- const t = await createImageBitmap(e), { width: n, height: s } = t;
412
- return t.close(), { width: n, height: s };
413
- } else {
414
- const t = (await import("image-meta")).imageMeta, n = new Uint8Array(await e.arrayBuffer()), s = t(n);
415
- if (!s.width || !s.height)
416
- throw new Error("Image dimensions not found");
417
- return { width: s.width, height: s.height };
418
- }
333
+ //#endregion
334
+ //#region ../../shared/util/imageUtil.ts
335
+ async function v(e) {
336
+ if (typeof window < "u") {
337
+ let t = await createImageBitmap(e), { width: n, height: r } = t;
338
+ return t.close(), {
339
+ width: n,
340
+ height: r
341
+ };
342
+ } else {
343
+ let t = (await import("image-meta")).imageMeta, n = t(new Uint8Array(await e.arrayBuffer()));
344
+ if (!n.width || !n.height) throw Error("Image dimensions not found");
345
+ return {
346
+ width: n.width,
347
+ height: n.height
348
+ };
349
+ }
419
350
  }
420
- const j = `<?xml version="1.0" encoding="UTF-8"?>
421
- <office:document-styles xmlns:css3t="http://www.w3.org/TR/css3-text/"
422
- xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:xhtml="http://www.w3.org/1999/xhtml"
423
- xmlns:dom="http://www.w3.org/2001/xml-events"
424
- xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0"
425
- xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0"
426
- xmlns:math="http://www.w3.org/1998/Math/MathML"
427
- xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0"
428
- xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0"
429
- xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0"
430
- xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0"
431
- xmlns:officeooo="http://openoffice.org/2009/office"
432
- xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0"
433
- xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0"
434
- xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0"
435
- xmlns:rpt="http://openoffice.org/2005/report"
436
- xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0"
437
- xmlns:tableooo="http://openoffice.org/2009/table"
438
- xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0"
439
- xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2"
440
- xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0"
441
- xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0"
442
- xmlns:dc="http://purl.org/dc/elements/1.1/"
443
- xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0"
444
- xmlns:oooc="http://openoffice.org/2004/calc" xmlns:xlink="http://www.w3.org/1999/xlink"
445
- xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:ooow="http://openoffice.org/2004/writer"
446
- xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0"
447
- xmlns:ooo="http://openoffice.org/2004/office"
448
- xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" office:version="1.3">
449
- <office:font-face-decls>
450
- <style:font-face style:name="Geist Mono" svg:font-family="Geist Mono" />
451
- <style:font-face style:name="Inter 18pt" svg:font-family="Inter 18pt"
452
- style:font-pitch="variable" />
453
- <style:font-face style:name="Liberation Serif"
454
- svg:font-family="&apos;Liberation Serif&apos;" style:font-family-generic="roman"
455
- style:font-pitch="variable" />
456
- <style:font-face style:name="OpenSymbol" svg:font-family="OpenSymbol"
457
- style:font-charset="x-symbol" />
458
- <style:font-face style:name="PingFang SC" svg:font-family="&apos;PingFang SC&apos;"
459
- style:font-family-generic="system" style:font-pitch="variable" />
460
- <style:font-face style:name="Tahoma" svg:font-family="Tahoma"
461
- style:font-family-generic="system" style:font-pitch="variable" />
462
- <style:font-face style:name="Times New Roman (Body CS)"
463
- svg:font-family="&apos;Times New Roman (Body CS)&apos;"
464
- style:font-family-generic="system" style:font-pitch="variable" />
465
- </office:font-face-decls>
466
- <office:styles>
467
- <draw:gradient draw:name="Gradient_20_1" draw:display-name="Gradient 1" draw:style="linear"
468
- draw:start-color="#000000" draw:end-color="#ffffff" draw:start-intensity="100%"
469
- draw:end-intensity="100%" draw:angle="0deg" draw:border="0%">
470
- <loext:gradient-stop svg:offset="0" loext:color-type="rgb" loext:color-value="#000000" />
471
- <loext:gradient-stop svg:offset="1" loext:color-type="rgb" loext:color-value="#ffffff" />
472
- </draw:gradient>
473
- <draw:hatch draw:name="Red_20_90_20_Degrees_20_Crossed_20_1"
474
- draw:display-name="Red 90 Degrees Crossed 1" draw:style="single" draw:color="#3465a4"
475
- draw:distance="0.0079in" draw:rotation="0" />
476
- <style:default-style style:family="graphic">
477
- <style:graphic-properties svg:stroke-color="#3465a4" draw:fill-color="#729fcf"
478
- fo:wrap-option="no-wrap" draw:shadow-offset-x="0.1181in"
479
- draw:shadow-offset-y="0.1181in" draw:start-line-spacing-horizontal="0.1114in"
480
- draw:start-line-spacing-vertical="0.1114in"
481
- draw:end-line-spacing-horizontal="0.1114in"
482
- draw:end-line-spacing-vertical="0.1114in" style:flow-with-text="false" />
483
- <style:paragraph-properties style:text-autospace="ideograph-alpha"
484
- style:line-break="strict" loext:tab-stop-distance="0in" style:writing-mode="lr-tb"
485
- style:font-independent-line-spacing="false">
486
- <style:tab-stops />
487
- </style:paragraph-properties>
488
- <style:text-properties style:font-name="Inter 18pt"
489
- fo:font-family="Inter 18pt" style:font-style-name="Regular"
490
- style:font-pitch="variable" style:font-name-complex="Times New Roman (Body CS)"
491
- style:font-family-complex="&apos;Times New Roman (Body CS)&apos;"
492
- style:font-family-generic-complex="system" style:font-pitch-complex="variable"
493
- style:use-window-font-color="true" loext:opacity="0%"
494
- fo:font-size="12pt" fo:language="en" fo:country="NL"
495
- style:letter-kerning="true" style:font-size-asian="12pt"
496
- style:language-asian="en" style:country-asian="GB"
497
- style:font-size-complex="12pt" style:language-complex="ar"
498
- style:country-complex="SA" />
499
- </style:default-style>
500
- <style:default-style style:family="paragraph">
501
- <style:paragraph-properties fo:hyphenation-ladder-count="no-limit"
502
- fo:hyphenation-keep="auto" loext:hyphenation-keep-type="column"
503
- style:text-autospace="ideograph-alpha" style:punctuation-wrap="hanging"
504
- style:line-break="strict" style:tab-stop-distance="0.139in"
505
- style:writing-mode="page" />
506
- <style:text-properties style:font-name="Inter 18pt"
507
- fo:font-family="Inter 18pt" style:font-style-name="Regular"
508
- style:font-pitch="variable" style:font-name-complex="Times New Roman (Body CS)"
509
- style:font-family-complex="&apos;Times New Roman (Body CS)&apos;"
510
- style:font-family-generic-complex="system" style:font-pitch-complex="variable"
511
- style:use-window-font-color="true" loext:opacity="0%"
512
- fo:font-size="12pt" fo:language="en" fo:country="NL"
513
- style:letter-kerning="true" style:font-size-asian="12pt"
514
- style:language-asian="en" style:country-asian="GB"
515
- style:font-size-complex="12pt" style:language-complex="ar"
516
- style:country-complex="SA" fo:hyphenate="false" fo:hyphenation-remain-char-count="2"
517
- fo:hyphenation-push-char-count="2" loext:hyphenation-no-caps="false"
518
- loext:hyphenation-no-last-word="false" loext:hyphenation-word-char-count="5"
519
- loext:hyphenation-zone="no-limit" />
520
- </style:default-style>
521
- <style:default-style style:family="table">
522
- <style:table-properties table:border-model="collapsing" />
523
- </style:default-style>
524
- <style:default-style style:family="table-row">
525
- <style:table-row-properties fo:keep-together="auto" />
526
- </style:default-style>
527
- <style:style style:name="Standard" style:family="paragraph" style:class="text">
528
- <style:paragraph-properties fo:margin-top="0.0311in" fo:margin-bottom="0.0311in"
529
- style:contextual-spacing="false" fo:line-height="150%" fo:text-align="start"
530
- style:justify-single-word="false" fo:orphans="2" fo:widows="2"
531
- style:writing-mode="lr-tb" />
532
- <style:text-properties style:font-name="Inter 18pt"
533
- fo:font-family="Inter 18pt" style:font-style-name="Regular"
534
- style:font-pitch="variable" style:font-name-complex="Times New Roman (Body CS)"
535
- style:font-family-complex="&apos;Times New Roman (Body CS)&apos;"
536
- style:font-family-generic-complex="system" style:font-pitch-complex="variable" />
537
- </style:style>
538
- <style:style style:name="Heading" style:family="paragraph"
539
- style:parent-style-name="Standard" style:next-style-name="Text_20_body"
540
- style:class="text">
541
- <style:paragraph-properties fo:margin-top="0.1665in" fo:margin-bottom="0.0835in"
542
- style:contextual-spacing="false" fo:keep-with-next="always" />
543
- <style:text-properties style:font-family-generic="swiss"
544
- style:font-pitch="variable" fo:font-size="14pt" style:font-name-asian="PingFang SC"
545
- style:font-family-asian="&apos;PingFang SC&apos;"
546
- style:font-family-generic-asian="system" style:font-pitch-asian="variable"
547
- style:font-size-asian="14pt" style:font-name-complex="Arial Unicode MS1"
548
- style:font-family-complex="&apos;Arial Unicode MS&apos;"
549
- style:font-family-generic-complex="system" style:font-pitch-complex="variable"
550
- style:font-size-complex="14pt" />
551
- </style:style>
552
- <style:style style:name="Text_20_body" style:display-name="Text body"
553
- style:family="paragraph" style:parent-style-name="Standard" style:class="text">
554
- <style:paragraph-properties fo:margin-top="0in" fo:margin-bottom="0.0972in"
555
- style:contextual-spacing="false" fo:line-height="115%" />
556
- </style:style>
557
- <style:style style:name="List" style:family="paragraph"
558
- style:parent-style-name="Text_20_body" style:class="list">
559
- <style:text-properties style:font-size-asian="12pt"
560
- style:font-name-complex="Arial Unicode MS"
561
- style:font-family-complex="&apos;Arial Unicode MS&apos;"
562
- style:font-family-generic-complex="swiss" />
563
- </style:style>
564
- <style:style style:name="Caption" style:family="paragraph"
565
- style:parent-style-name="Standard" style:next-style-name="Standard" style:class="extra">
566
- <style:paragraph-properties fo:margin-top="0in" fo:margin-bottom="0.139in"
567
- style:contextual-spacing="false" fo:line-height="100%" />
568
- <style:text-properties fo:color="#0e2841" loext:opacity="100%" fo:font-size="9pt"
569
- fo:font-style="italic" style:font-size-asian="9pt" style:font-style-asian="italic"
570
- style:font-size-complex="9pt" style:font-style-complex="italic">
571
- <loext:char-complex-color loext:theme-type="dark2" loext:color-type="theme" />
572
- </style:text-properties>
573
- </style:style>
574
- <style:style style:name="Index" style:family="paragraph" style:parent-style-name="Standard"
575
- style:class="index">
576
- <style:paragraph-properties text:number-lines="false" text:line-number="0" />
577
- <style:text-properties style:font-size-asian="12pt"
578
- style:font-name-complex="Arial Unicode MS"
579
- style:font-family-complex="&apos;Arial Unicode MS&apos;"
580
- style:font-family-generic-complex="swiss" />
581
- </style:style>
582
- <style:style style:name="Heading_20_1" style:display-name="Heading 1"
583
- style:family="paragraph" style:parent-style-name="Standard"
584
- style:next-style-name="Standard" loext:linked-style-name="Heading_20_1_20_Char"
585
- style:default-outline-level="1" style:list-style-name="" style:class="text">
586
- <style:text-properties fo:font-size="24pt" fo:font-weight="bold"
587
- style:font-size-asian="24pt" style:font-weight-asian="bold"
588
- style:font-size-complex="24pt" />
589
- </style:style>
590
- <style:style style:name="Heading_20_2" style:display-name="Heading 2"
591
- style:family="paragraph" style:parent-style-name="Standard"
592
- style:next-style-name="Standard" loext:linked-style-name="Heading_20_2_20_Char"
593
- style:default-outline-level="2" style:list-style-name="" style:class="text">
594
- <style:text-properties fo:font-size="18pt" fo:font-weight="bold"
595
- style:font-size-asian="18pt" style:font-weight-asian="bold"
596
- style:font-size-complex="18pt" />
597
- </style:style>
598
- <style:style style:name="Heading_20_3" style:display-name="Heading 3"
599
- style:family="paragraph" style:parent-style-name="Standard"
600
- style:next-style-name="Standard" loext:linked-style-name="Heading_20_3_20_Char"
601
- style:default-outline-level="3" style:list-style-name="" style:class="text">
602
- <style:text-properties fo:font-size="14pt" fo:font-weight="bold"
603
- style:font-size-asian="14pt" style:font-weight-asian="bold"
604
- style:font-size-complex="14pt" />
605
- </style:style>
606
- <style:style style:name="Heading_20_4" style:display-name="Heading 4"
607
- style:family="paragraph" style:parent-style-name="Standard"
608
- style:next-style-name="Standard" loext:linked-style-name="Heading_20_4_20_Char"
609
- style:default-outline-level="4" style:list-style-name="" style:class="text">
610
- <style:paragraph-properties fo:margin-top="0.0555in" fo:margin-bottom="0.028in"
611
- style:contextual-spacing="false" fo:keep-together="always"
612
- fo:keep-with-next="always" />
613
- <style:text-properties fo:color="#0f4761" loext:opacity="100%" fo:font-style="italic"
614
- style:font-name-asian="F2" style:font-family-generic-asian="system"
615
- style:font-pitch-asian="variable" style:font-style-asian="italic"
616
- style:font-name-complex="F2" style:font-family-generic-complex="system"
617
- style:font-pitch-complex="variable" style:font-style-complex="italic">
618
- <loext:char-complex-color loext:theme-type="accent1" loext:color-type="theme">
619
- <loext:transformation loext:type="shade" loext:value="2509" />
620
- </loext:char-complex-color>
621
- </style:text-properties>
622
- </style:style>
623
- <style:style style:name="Heading_20_5" style:display-name="Heading 5"
624
- style:family="paragraph" style:parent-style-name="Standard"
625
- style:next-style-name="Standard" loext:linked-style-name="Heading_20_5_20_Char"
626
- style:default-outline-level="5" style:list-style-name="" style:class="text">
627
- <style:paragraph-properties fo:margin-top="0.0555in" fo:margin-bottom="0.028in"
628
- style:contextual-spacing="false" fo:keep-together="always"
629
- fo:keep-with-next="always" />
630
- <style:text-properties fo:color="#0f4761" loext:opacity="100%"
631
- style:font-name-asian="F2" style:font-family-generic-asian="system"
632
- style:font-pitch-asian="variable" style:font-name-complex="F2"
633
- style:font-family-generic-complex="system" style:font-pitch-complex="variable">
634
- <loext:char-complex-color loext:theme-type="accent1" loext:color-type="theme">
635
- <loext:transformation loext:type="shade" loext:value="2509" />
636
- </loext:char-complex-color>
637
- </style:text-properties>
638
- </style:style>
639
- <style:style style:name="Heading_20_6" style:display-name="Heading 6"
640
- style:family="paragraph" style:parent-style-name="Standard"
641
- style:next-style-name="Standard" loext:linked-style-name="Heading_20_6_20_Char"
642
- style:default-outline-level="6" style:list-style-name="" style:class="text">
643
- <style:paragraph-properties fo:margin-top="0.028in" fo:margin-bottom="0in"
644
- style:contextual-spacing="false" fo:keep-together="always"
645
- fo:keep-with-next="always" />
646
- <style:text-properties fo:color="#595959" loext:opacity="100%" fo:font-style="italic"
647
- style:font-name-asian="F2" style:font-family-generic-asian="system"
648
- style:font-pitch-asian="variable" style:font-style-asian="italic"
649
- style:font-name-complex="F2" style:font-family-generic-complex="system"
650
- style:font-pitch-complex="variable" style:font-style-complex="italic">
651
- <loext:char-complex-color loext:theme-type="dark1" loext:color-type="theme">
652
- <loext:transformation loext:type="tint" loext:value="3490" />
653
- </loext:char-complex-color>
654
- </style:text-properties>
655
- </style:style>
656
- <style:style style:name="Heading_20_7" style:display-name="Heading 7"
657
- style:family="paragraph" style:parent-style-name="Standard"
658
- style:next-style-name="Standard" loext:linked-style-name="Heading_20_7_20_Char"
659
- style:default-outline-level="7" style:list-style-name="" style:class="text">
660
- <style:paragraph-properties fo:margin-top="0.028in" fo:margin-bottom="0in"
661
- style:contextual-spacing="false" fo:keep-together="always"
662
- fo:keep-with-next="always" />
663
- <style:text-properties fo:color="#595959" loext:opacity="100%"
664
- style:font-name-asian="F2" style:font-family-generic-asian="system"
665
- style:font-pitch-asian="variable" style:font-name-complex="F2"
666
- style:font-family-generic-complex="system" style:font-pitch-complex="variable">
667
- <loext:char-complex-color loext:theme-type="dark1" loext:color-type="theme">
668
- <loext:transformation loext:type="tint" loext:value="3490" />
669
- </loext:char-complex-color>
670
- </style:text-properties>
671
- </style:style>
672
- <style:style style:name="Heading_20_8" style:display-name="Heading 8"
673
- style:family="paragraph" style:parent-style-name="Standard"
674
- style:next-style-name="Standard" loext:linked-style-name="Heading_20_8_20_Char"
675
- style:default-outline-level="8" style:list-style-name="" style:class="text">
676
- <style:paragraph-properties fo:margin-top="0.0311in" fo:margin-bottom="0in"
677
- style:contextual-spacing="false" fo:keep-together="always"
678
- fo:keep-with-next="always" />
679
- <style:text-properties fo:color="#272727" loext:opacity="100%" fo:font-style="italic"
680
- style:font-name-asian="F2" style:font-family-generic-asian="system"
681
- style:font-pitch-asian="variable" style:font-style-asian="italic"
682
- style:font-name-complex="F2" style:font-family-generic-complex="system"
683
- style:font-pitch-complex="variable" style:font-style-complex="italic">
684
- <loext:char-complex-color loext:theme-type="dark1" loext:color-type="theme">
685
- <loext:transformation loext:type="tint" loext:value="1529" />
686
- </loext:char-complex-color>
687
- </style:text-properties>
688
- </style:style>
689
- <style:style style:name="Heading_20_9" style:display-name="Heading 9"
690
- style:family="paragraph" style:parent-style-name="Standard"
691
- style:next-style-name="Standard" loext:linked-style-name="Heading_20_9_20_Char"
692
- style:default-outline-level="9" style:list-style-name="" style:class="text">
693
- <style:paragraph-properties fo:margin-top="0.0311in" fo:margin-bottom="0in"
694
- style:contextual-spacing="false" fo:keep-together="always"
695
- fo:keep-with-next="always" />
696
- <style:text-properties fo:color="#272727" loext:opacity="100%"
697
- style:font-name-asian="F2" style:font-family-generic-asian="system"
698
- style:font-pitch-asian="variable" style:font-name-complex="F2"
699
- style:font-family-generic-complex="system" style:font-pitch-complex="variable">
700
- <loext:char-complex-color loext:theme-type="dark1" loext:color-type="theme">
701
- <loext:transformation loext:type="tint" loext:value="1529" />
702
- </loext:char-complex-color>
703
- </style:text-properties>
704
- </style:style>
705
- <style:style style:name="Title" style:family="paragraph" style:parent-style-name="Standard"
706
- style:next-style-name="Standard" loext:linked-style-name="Title_20_Char"
707
- style:class="chapter">
708
- <style:paragraph-properties fo:margin-top="0.0311in" fo:margin-bottom="0.0555in"
709
- style:contextual-spacing="true" fo:line-height="100%" />
710
- <style:text-properties
711
- fo:font-size="28pt" fo:letter-spacing="-0.0071in" style:letter-kerning="true"
712
- style:font-name-asian="F2" style:font-family-generic-asian="system"
713
- style:font-pitch-asian="variable" style:font-size-asian="28pt"
714
- style:font-name-complex="F2" style:font-family-generic-complex="system"
715
- style:font-pitch-complex="variable" style:font-size-complex="28pt" />
716
- </style:style>
717
- <style:style style:name="Subtitle" style:family="paragraph"
718
- style:parent-style-name="Standard" style:next-style-name="Standard"
719
- loext:linked-style-name="Subtitle_20_Char" style:class="chapter">
720
- <style:text-properties fo:color="#595959" loext:opacity="100%" fo:font-size="14pt"
721
- fo:letter-spacing="0.0102in" style:font-name-asian="F2"
722
- style:font-family-generic-asian="system" style:font-pitch-asian="variable"
723
- style:font-size-asian="14pt" style:font-name-complex="F2"
724
- style:font-family-generic-complex="system" style:font-pitch-complex="variable"
725
- style:font-size-complex="14pt">
726
- <loext:char-complex-color loext:theme-type="dark1" loext:color-type="theme">
727
- <loext:transformation loext:type="tint" loext:value="3490" />
728
- </loext:char-complex-color>
729
- </style:text-properties>
730
- </style:style>
731
- <style:style style:name="Quote" style:family="paragraph" style:parent-style-name="Standard"
732
- style:next-style-name="Standard" loext:linked-style-name="Quote_20_Char">
733
- <style:paragraph-properties fo:margin-top="0.111in" fo:margin-bottom="0.0311in"
734
- style:contextual-spacing="false" fo:text-align="center"
735
- style:justify-single-word="false" />
736
- <style:text-properties fo:color="#404040" loext:opacity="100%" fo:font-style="italic"
737
- style:font-style-asian="italic" style:font-style-complex="italic">
738
- <loext:char-complex-color loext:theme-type="dark1" loext:color-type="theme">
739
- <loext:transformation loext:type="tint" loext:value="2509" />
740
- </loext:char-complex-color>
741
- </style:text-properties>
742
- </style:style>
743
- <style:style style:name="List_20_Paragraph" style:display-name="List Paragraph"
744
- style:family="paragraph" style:parent-style-name="Standard">
745
- <style:paragraph-properties fo:margin-left="0.5in" fo:margin-top="0.0311in"
746
- fo:margin-bottom="0.0311in" style:contextual-spacing="true" />
747
- </style:style>
748
- <style:style style:name="Intense_20_Quote" style:display-name="Intense Quote"
749
- style:family="paragraph" style:parent-style-name="Standard"
750
- style:next-style-name="Standard" loext:linked-style-name="Intense_20_Quote_20_Char">
751
- <style:paragraph-properties fo:margin-left="0.6in" fo:margin-right="0.6in"
752
- fo:margin-top="0.25in" fo:margin-bottom="0.25in" style:contextual-spacing="false"
753
- fo:text-align="center" style:justify-single-word="false" fo:padding-left="0in"
754
- fo:padding-right="0in" fo:padding-top="0.139in" fo:padding-bottom="0.139in"
755
- fo:border-left="none" fo:border-right="none" fo:border-top="0.51pt solid #0f4761"
756
- fo:border-bottom="0.51pt solid #0f4761" />
757
- <style:text-properties fo:color="#0f4761" loext:opacity="100%" fo:font-style="italic"
758
- style:font-style-asian="italic" style:font-style-complex="italic">
759
- <loext:char-complex-color loext:theme-type="accent1" loext:color-type="theme">
760
- <loext:transformation loext:type="shade" loext:value="2509" />
761
- </loext:char-complex-color>
762
- </style:text-properties>
763
- </style:style>
764
- <style:style style:name="PageBreak" style:family="paragraph"
765
- style:parent-style-name="Standard">
766
- <style:paragraph-properties fo:break-before="page" />
767
- </style:style>
768
- <style:style style:name="Codeblock" style:family="paragraph"
769
- style:parent-style-name="Standard">
770
- <loext:graphic-properties draw:fill="solid" draw:fill-color="#161616" />
771
- <style:paragraph-properties fo:line-height="100%" fo:background-color="#161616" />
772
- <style:text-properties fo:color="#e1e4e8" loext:opacity="100%"
773
- style:font-name="Geist Mono"
774
- fo:font-family="Geist Mono" />
775
- </style:style>
776
- <style:style style:name="Heading_20_1_20_Char" style:display-name="Heading 1 Char"
777
- style:family="text" style:parent-style-name="Standard"
778
- loext:linked-style-name="Heading_20_1">
779
- <style:text-properties fo:font-size="20pt"
780
- style:font-size-asian="20pt"
781
- style:font-size-complex="20pt" />
782
- </style:style>
783
- <style:style style:name="Heading_20_2_20_Char" style:display-name="Heading 2 Char"
784
- style:family="text" style:parent-style-name="Standard"
785
- loext:linked-style-name="Heading_20_2">
786
- <style:text-properties fo:color="#0f4761" loext:opacity="100%" fo:font-size="16pt"
787
- style:font-size-asian="16pt" style:font-size-complex="16pt">
788
- <loext:char-complex-color loext:theme-type="accent1" loext:color-type="theme">
789
- <loext:transformation loext:type="shade" loext:value="2509" />
790
- </loext:char-complex-color>
791
- </style:text-properties>
792
- </style:style>
793
- <style:style style:name="Heading_20_3_20_Char" style:display-name="Heading 3 Char"
794
- style:family="text" style:parent-style-name="Standard"
795
- loext:linked-style-name="Heading_20_3">
796
- <style:text-properties fo:color="#0f4761" loext:opacity="100%" fo:font-size="14pt"
797
- style:font-name-asian="F2" style:font-family-generic-asian="system"
798
- style:font-pitch-asian="variable" style:font-size-asian="14pt"
799
- style:font-name-complex="F2" style:font-family-generic-complex="system"
800
- style:font-pitch-complex="variable" style:font-size-complex="14pt">
801
- <loext:char-complex-color loext:theme-type="accent1" loext:color-type="theme">
802
- <loext:transformation loext:type="shade" loext:value="2509" />
803
- </loext:char-complex-color>
804
- </style:text-properties>
805
- </style:style>
806
- <style:style style:name="Heading_20_4_20_Char" style:display-name="Heading 4 Char"
807
- style:family="text" style:parent-style-name="Standard"
808
- loext:linked-style-name="Heading_20_4">
809
- <style:text-properties fo:color="#0f4761" loext:opacity="100%" fo:font-style="italic"
810
- style:font-name-asian="F2" style:font-family-generic-asian="system"
811
- style:font-pitch-asian="variable" style:font-style-asian="italic"
812
- style:font-name-complex="F2" style:font-family-generic-complex="system"
813
- style:font-pitch-complex="variable" style:font-style-complex="italic">
814
- <loext:char-complex-color loext:theme-type="accent1" loext:color-type="theme">
815
- <loext:transformation loext:type="shade" loext:value="2509" />
816
- </loext:char-complex-color>
817
- </style:text-properties>
818
- </style:style>
819
- <style:style style:name="Heading_20_5_20_Char" style:display-name="Heading 5 Char"
820
- style:family="text" style:parent-style-name="Standard"
821
- loext:linked-style-name="Heading_20_5">
822
- <style:text-properties fo:color="#0f4761" loext:opacity="100%"
823
- style:font-name-asian="F2" style:font-family-generic-asian="system"
824
- style:font-pitch-asian="variable" style:font-name-complex="F2"
825
- style:font-family-generic-complex="system" style:font-pitch-complex="variable">
826
- <loext:char-complex-color loext:theme-type="accent1" loext:color-type="theme">
827
- <loext:transformation loext:type="shade" loext:value="2509" />
828
- </loext:char-complex-color>
829
- </style:text-properties>
830
- </style:style>
831
- <style:style style:name="Heading_20_6_20_Char" style:display-name="Heading 6 Char"
832
- style:family="text" style:parent-style-name="Standard"
833
- loext:linked-style-name="Heading_20_6">
834
- <style:text-properties fo:color="#595959" loext:opacity="100%" fo:font-style="italic"
835
- style:font-name-asian="F2" style:font-family-generic-asian="system"
836
- style:font-pitch-asian="variable" style:font-style-asian="italic"
837
- style:font-name-complex="F2" style:font-family-generic-complex="system"
838
- style:font-pitch-complex="variable" style:font-style-complex="italic">
839
- <loext:char-complex-color loext:theme-type="dark1" loext:color-type="theme">
840
- <loext:transformation loext:type="tint" loext:value="3490" />
841
- </loext:char-complex-color>
842
- </style:text-properties>
843
- </style:style>
844
- <style:style style:name="Heading_20_7_20_Char" style:display-name="Heading 7 Char"
845
- style:family="text" style:parent-style-name="Standard"
846
- loext:linked-style-name="Heading_20_7">
847
- <style:text-properties fo:color="#595959" loext:opacity="100%"
848
- style:font-name-asian="F2" style:font-family-generic-asian="system"
849
- style:font-pitch-asian="variable" style:font-name-complex="F2"
850
- style:font-family-generic-complex="system" style:font-pitch-complex="variable">
851
- <loext:char-complex-color loext:theme-type="dark1" loext:color-type="theme">
852
- <loext:transformation loext:type="tint" loext:value="3490" />
853
- </loext:char-complex-color>
854
- </style:text-properties>
855
- </style:style>
856
- <style:style style:name="Heading_20_8_20_Char" style:display-name="Heading 8 Char"
857
- style:family="text" style:parent-style-name="Standard"
858
- loext:linked-style-name="Heading_20_8">
859
- <style:text-properties fo:color="#272727" loext:opacity="100%" fo:font-style="italic"
860
- style:font-name-asian="F2" style:font-family-generic-asian="system"
861
- style:font-pitch-asian="variable" style:font-style-asian="italic"
862
- style:font-name-complex="F2" style:font-family-generic-complex="system"
863
- style:font-pitch-complex="variable" style:font-style-complex="italic">
864
- <loext:char-complex-color loext:theme-type="dark1" loext:color-type="theme">
865
- <loext:transformation loext:type="tint" loext:value="1529" />
866
- </loext:char-complex-color>
867
- </style:text-properties>
868
- </style:style>
869
- <style:style style:name="Heading_20_9_20_Char" style:display-name="Heading 9 Char"
870
- style:family="text" style:parent-style-name="Standard"
871
- loext:linked-style-name="Heading_20_9">
872
- <style:text-properties fo:color="#272727" loext:opacity="100%"
873
- style:font-name-asian="F2" style:font-family-generic-asian="system"
874
- style:font-pitch-asian="variable" style:font-name-complex="F2"
875
- style:font-family-generic-complex="system" style:font-pitch-complex="variable">
876
- <loext:char-complex-color loext:theme-type="dark1" loext:color-type="theme">
877
- <loext:transformation loext:type="tint" loext:value="1529" />
878
- </loext:char-complex-color>
879
- </style:text-properties>
880
- </style:style>
881
- <style:style style:name="Title_20_Char" style:display-name="Title Char" style:family="text"
882
- style:parent-style-name="Standard" loext:linked-style-name="Title">
883
- <style:text-properties style:font-name="Inter 18pt" fo:font-size="28pt"
884
- fo:letter-spacing="-0.0071in"
885
- style:letter-kerning="true"
886
- style:font-size-asian="28pt"
887
- style:font-size-complex="28pt" />
888
- </style:style>
889
- <style:style style:name="Subtitle_20_Char" style:display-name="Subtitle Char"
890
- style:family="text" style:parent-style-name="Standard"
891
- loext:linked-style-name="Subtitle">
892
- <style:text-properties fo:color="#595959" loext:opacity="100%" fo:font-size="14pt"
893
- fo:letter-spacing="0.0102in" style:font-name-asian="F2"
894
- style:font-family-generic-asian="system" style:font-pitch-asian="variable"
895
- style:font-size-asian="14pt" style:font-name-complex="F2"
896
- style:font-family-generic-complex="system" style:font-pitch-complex="variable"
897
- style:font-size-complex="14pt">
898
- <loext:char-complex-color loext:theme-type="dark1" loext:color-type="theme">
899
- <loext:transformation loext:type="tint" loext:value="3490" />
900
- </loext:char-complex-color>
901
- </style:text-properties>
902
- </style:style>
903
- <style:style style:name="Quote_20_Char" style:display-name="Quote Char" style:family="text"
904
- style:parent-style-name="Standard" loext:linked-style-name="Quote">
905
- <style:text-properties fo:color="#404040" loext:opacity="100%" fo:font-style="italic"
906
- style:font-style-asian="italic" style:font-style-complex="italic">
907
- <loext:char-complex-color loext:theme-type="dark1" loext:color-type="theme">
908
- <loext:transformation loext:type="tint" loext:value="2509" />
909
- </loext:char-complex-color>
910
- </style:text-properties>
911
- </style:style>
912
- <style:style style:name="Intense_20_Emphasis" style:display-name="Intense Emphasis"
913
- style:family="text" style:parent-style-name="Standard">
914
- <style:text-properties fo:color="#0f4761" loext:opacity="100%" fo:font-style="italic"
915
- style:font-style-asian="italic" style:font-style-complex="italic">
916
- <loext:char-complex-color loext:theme-type="accent1" loext:color-type="theme">
917
- <loext:transformation loext:type="shade" loext:value="2509" />
918
- </loext:char-complex-color>
919
- </style:text-properties>
920
- </style:style>
921
- <style:style style:name="Intense_20_Quote_20_Char" style:display-name="Intense Quote Char"
922
- style:family="text" style:parent-style-name="Standard"
923
- loext:linked-style-name="Intense_20_Quote">
924
- <style:text-properties fo:color="#0f4761" loext:opacity="100%" fo:font-style="italic"
925
- style:font-style-asian="italic" style:font-style-complex="italic">
926
- <loext:char-complex-color loext:theme-type="accent1" loext:color-type="theme">
927
- <loext:transformation loext:type="shade" loext:value="2509" />
928
- </loext:char-complex-color>
929
- </style:text-properties>
930
- </style:style>
931
- <style:style style:name="Intense_20_Reference" style:display-name="Intense Reference"
932
- style:family="text" style:parent-style-name="Standard">
933
- <style:text-properties fo:font-variant="small-caps" fo:color="#0f4761"
934
- loext:opacity="100%" fo:letter-spacing="0.0035in" fo:font-weight="bold"
935
- style:font-weight-asian="bold" style:font-weight-complex="bold">
936
- <loext:char-complex-color loext:theme-type="accent1" loext:color-type="theme">
937
- <loext:transformation loext:type="shade" loext:value="2509" />
938
- </loext:char-complex-color>
939
- </style:text-properties>
940
- </style:style>
941
- <style:style style:name="Internet_20_link" style:display-name="Internet link"
942
- style:family="text" style:parent-style-name="Standard">
943
- <style:text-properties style:font-name="Inter 18pt" style:font-name-asian="Inter 18pt"
944
- style:font-name-complex="Times New Roman (Body CS)" fo:color="#0000ef"
945
- loext:opacity="100%"
946
- style:text-underline-type="single" style:text-underline-style="solid"
947
- style:text-underline-width="auto" style:text-underline-mode="continuous"
948
- style:text-underline-color="font-color" />
949
- </style:style>
950
- <style:style style:name="Unresolved_20_Mention" style:display-name="Unresolved Mention"
951
- style:family="text" style:parent-style-name="Standard">
952
- <style:text-properties fo:color="#605e5c" loext:opacity="100%"
953
- fo:background-color="#e1dfdd" />
954
- </style:style>
955
- <style:style style:name="ListLabel_20_1" style:display-name="ListLabel 1"
956
- style:family="text" />
957
- <style:style style:name="ListLabel_20_2" style:display-name="ListLabel 2"
958
- style:family="text" />
959
- <style:style style:name="ListLabel_20_3" style:display-name="ListLabel 3"
960
- style:family="text" />
961
- <style:style style:name="ListLabel_20_4" style:display-name="ListLabel 4"
962
- style:family="text" />
963
- <style:style style:name="ListLabel_20_5" style:display-name="ListLabel 5"
964
- style:family="text" />
965
- <style:style style:name="ListLabel_20_6" style:display-name="ListLabel 6"
966
- style:family="text" />
967
- <style:style style:name="ListLabel_20_7" style:display-name="ListLabel 7"
968
- style:family="text" />
969
- <style:style style:name="ListLabel_20_8" style:display-name="ListLabel 8"
970
- style:family="text" />
971
- <style:style style:name="ListLabel_20_9" style:display-name="ListLabel 9"
972
- style:family="text" />
973
- <style:style style:name="ListLabel_20_10" style:display-name="ListLabel 10"
974
- style:family="text" />
975
- <style:style style:name="ListLabel_20_11" style:display-name="ListLabel 11"
976
- style:family="text" />
977
- <style:style style:name="ListLabel_20_12" style:display-name="ListLabel 12"
978
- style:family="text" />
979
- <style:style style:name="ListLabel_20_13" style:display-name="ListLabel 13"
980
- style:family="text" />
981
- <style:style style:name="ListLabel_20_14" style:display-name="ListLabel 14"
982
- style:family="text" />
983
- <style:style style:name="ListLabel_20_15" style:display-name="ListLabel 15"
984
- style:family="text" />
985
- <style:style style:name="ListLabel_20_16" style:display-name="ListLabel 16"
986
- style:family="text" />
987
- <style:style style:name="ListLabel_20_17" style:display-name="ListLabel 17"
988
- style:family="text" />
989
- <style:style style:name="ListLabel_20_18" style:display-name="ListLabel 18"
990
- style:family="text" />
991
- <style:style style:name="ListLabel_20_19" style:display-name="ListLabel 19"
992
- style:family="text" />
993
- <style:style style:name="ListLabel_20_20" style:display-name="ListLabel 20"
994
- style:family="text" />
995
- <style:style style:name="ListLabel_20_21" style:display-name="ListLabel 21"
996
- style:family="text" />
997
- <style:style style:name="ListLabel_20_22" style:display-name="ListLabel 22"
998
- style:family="text" />
999
- <style:style style:name="ListLabel_20_23" style:display-name="ListLabel 23"
1000
- style:family="text" />
1001
- <style:style style:name="ListLabel_20_24" style:display-name="ListLabel 24"
1002
- style:family="text" />
1003
- <style:style style:name="ListLabel_20_25" style:display-name="ListLabel 25"
1004
- style:family="text" />
1005
- <style:style style:name="ListLabel_20_26" style:display-name="ListLabel 26"
1006
- style:family="text" />
1007
- <style:style style:name="ListLabel_20_27" style:display-name="ListLabel 27"
1008
- style:family="text" />
1009
- <style:style style:name="ListLabel_20_28" style:display-name="ListLabel 28"
1010
- style:family="text" />
1011
- <style:style style:name="Graphics" style:family="graphic">
1012
- <style:graphic-properties text:anchor-type="paragraph" svg:x="0in" svg:y="0in"
1013
- style:wrap="dynamic" style:number-wrapped-paragraphs="no-limit"
1014
- style:wrap-contour="false" style:vertical-pos="top" style:vertical-rel="paragraph"
1015
- style:horizontal-pos="center" style:horizontal-rel="paragraph" draw:fill="none" />
1016
- </style:style>
1017
- <style:style style:name="Frame" style:family="graphic">
1018
- <style:graphic-properties fo:margin-left="0in" fo:margin-right="0in" fo:margin-top="0in"
1019
- fo:margin-bottom="0in" style:run-through="foreground" style:wrap="dynamic"
1020
- style:number-wrapped-paragraphs="no-limit" style:vertical-pos="from-top"
1021
- style:horizontal-pos="center" style:horizontal-rel="paragraph" fo:padding="0in"
1022
- draw:fill="none"
1023
- draw:stroke="none"
1024
- fo:border="none"
1025
- style:shadow="none" svg:stroke-color="transparent"
1026
- draw:shadow-opacity="100%"
1027
- loext:rel-width-rel="paragraph" />
1028
- </style:style>
1029
- <text:outline-style style:name="Outline">
1030
- <text:outline-level-style text:level="1" style:num-format="">
1031
- <style:list-level-properties
1032
- text:list-level-position-and-space-mode="label-alignment">
1033
- <style:list-level-label-alignment text:label-followed-by="listtab" />
1034
- </style:list-level-properties>
1035
- </text:outline-level-style>
1036
- <text:outline-level-style text:level="2" style:num-format="">
1037
- <style:list-level-properties
1038
- text:list-level-position-and-space-mode="label-alignment">
1039
- <style:list-level-label-alignment text:label-followed-by="listtab" />
1040
- </style:list-level-properties>
1041
- </text:outline-level-style>
1042
- <text:outline-level-style text:level="3" style:num-format="">
1043
- <style:list-level-properties
1044
- text:list-level-position-and-space-mode="label-alignment">
1045
- <style:list-level-label-alignment text:label-followed-by="listtab" />
1046
- </style:list-level-properties>
1047
- </text:outline-level-style>
1048
- <text:outline-level-style text:level="4" style:num-format="">
1049
- <style:list-level-properties
1050
- text:list-level-position-and-space-mode="label-alignment">
1051
- <style:list-level-label-alignment text:label-followed-by="listtab" />
1052
- </style:list-level-properties>
1053
- </text:outline-level-style>
1054
- <text:outline-level-style text:level="5" style:num-format="">
1055
- <style:list-level-properties
1056
- text:list-level-position-and-space-mode="label-alignment">
1057
- <style:list-level-label-alignment text:label-followed-by="listtab" />
1058
- </style:list-level-properties>
1059
- </text:outline-level-style>
1060
- <text:outline-level-style text:level="6" style:num-format="">
1061
- <style:list-level-properties
1062
- text:list-level-position-and-space-mode="label-alignment">
1063
- <style:list-level-label-alignment text:label-followed-by="listtab" />
1064
- </style:list-level-properties>
1065
- </text:outline-level-style>
1066
- <text:outline-level-style text:level="7" style:num-format="">
1067
- <style:list-level-properties
1068
- text:list-level-position-and-space-mode="label-alignment">
1069
- <style:list-level-label-alignment text:label-followed-by="listtab" />
1070
- </style:list-level-properties>
1071
- </text:outline-level-style>
1072
- <text:outline-level-style text:level="8" style:num-format="">
1073
- <style:list-level-properties
1074
- text:list-level-position-and-space-mode="label-alignment">
1075
- <style:list-level-label-alignment text:label-followed-by="listtab" />
1076
- </style:list-level-properties>
1077
- </text:outline-level-style>
1078
- <text:outline-level-style text:level="9" style:num-format="">
1079
- <style:list-level-properties
1080
- text:list-level-position-and-space-mode="label-alignment">
1081
- <style:list-level-label-alignment text:label-followed-by="listtab" />
1082
- </style:list-level-properties>
1083
- </text:outline-level-style>
1084
- <text:outline-level-style text:level="10" style:num-format="">
1085
- <style:list-level-properties
1086
- text:list-level-position-and-space-mode="label-alignment">
1087
- <style:list-level-label-alignment text:label-followed-by="listtab" />
1088
- </style:list-level-properties>
1089
- </text:outline-level-style>
1090
- </text:outline-style>
1091
- <text:list-style style:name="No_20_List" style:display-name="No List">
1092
- <text:list-level-style-number text:level="1" loext:num-list-format="%1%."
1093
- style:num-suffix="." style:num-format="1">
1094
- <style:list-level-properties
1095
- text:list-level-position-and-space-mode="label-alignment">
1096
- <style:list-level-label-alignment text:label-followed-by="listtab"
1097
- text:list-tab-stop-position="0.5in" fo:text-indent="-0.25in"
1098
- fo:margin-left="0.5in" />
1099
- </style:list-level-properties>
1100
- </text:list-level-style-number>
1101
- <text:list-level-style-number text:level="2" loext:num-list-format="%2%."
1102
- style:num-suffix="." style:num-format="1">
1103
- <style:list-level-properties
1104
- text:list-level-position-and-space-mode="label-alignment">
1105
- <style:list-level-label-alignment text:label-followed-by="listtab"
1106
- text:list-tab-stop-position="0.75in" fo:text-indent="-0.25in"
1107
- fo:margin-left="0.75in" />
1108
- </style:list-level-properties>
1109
- </text:list-level-style-number>
1110
- <text:list-level-style-number text:level="3" loext:num-list-format="%3%."
1111
- style:num-suffix="." style:num-format="1">
1112
- <style:list-level-properties
1113
- text:list-level-position-and-space-mode="label-alignment">
1114
- <style:list-level-label-alignment text:label-followed-by="listtab"
1115
- text:list-tab-stop-position="1in" fo:text-indent="-0.25in"
1116
- fo:margin-left="1in" />
1117
- </style:list-level-properties>
1118
- </text:list-level-style-number>
1119
- <text:list-level-style-number text:level="4" loext:num-list-format="%4%."
1120
- style:num-suffix="." style:num-format="1">
1121
- <style:list-level-properties
1122
- text:list-level-position-and-space-mode="label-alignment">
1123
- <style:list-level-label-alignment text:label-followed-by="listtab"
1124
- text:list-tab-stop-position="1.25in" fo:text-indent="-0.25in"
1125
- fo:margin-left="1.25in" />
1126
- </style:list-level-properties>
1127
- </text:list-level-style-number>
1128
- <text:list-level-style-number text:level="5" loext:num-list-format="%5%."
1129
- style:num-suffix="." style:num-format="1">
1130
- <style:list-level-properties
1131
- text:list-level-position-and-space-mode="label-alignment">
1132
- <style:list-level-label-alignment text:label-followed-by="listtab"
1133
- text:list-tab-stop-position="1.5in" fo:text-indent="-0.25in"
1134
- fo:margin-left="1.5in" />
1135
- </style:list-level-properties>
1136
- </text:list-level-style-number>
1137
- <text:list-level-style-number text:level="6" loext:num-list-format="%6%."
1138
- style:num-suffix="." style:num-format="1">
1139
- <style:list-level-properties
1140
- text:list-level-position-and-space-mode="label-alignment">
1141
- <style:list-level-label-alignment text:label-followed-by="listtab"
1142
- text:list-tab-stop-position="1.75in" fo:text-indent="-0.25in"
1143
- fo:margin-left="1.75in" />
1144
- </style:list-level-properties>
1145
- </text:list-level-style-number>
1146
- <text:list-level-style-number text:level="7" loext:num-list-format="%7%."
1147
- style:num-suffix="." style:num-format="1">
1148
- <style:list-level-properties
1149
- text:list-level-position-and-space-mode="label-alignment">
1150
- <style:list-level-label-alignment text:label-followed-by="listtab"
1151
- text:list-tab-stop-position="2in" fo:text-indent="-0.25in"
1152
- fo:margin-left="2in" />
1153
- </style:list-level-properties>
1154
- </text:list-level-style-number>
1155
- <text:list-level-style-number text:level="8" loext:num-list-format="%8%."
1156
- style:num-suffix="." style:num-format="1">
1157
- <style:list-level-properties
1158
- text:list-level-position-and-space-mode="label-alignment">
1159
- <style:list-level-label-alignment text:label-followed-by="listtab"
1160
- text:list-tab-stop-position="2.25in" fo:text-indent="-0.25in"
1161
- fo:margin-left="2.25in" />
1162
- </style:list-level-properties>
1163
- </text:list-level-style-number>
1164
- <text:list-level-style-number text:level="9" loext:num-list-format="%9%."
1165
- style:num-suffix="." style:num-format="1">
1166
- <style:list-level-properties
1167
- text:list-level-position-and-space-mode="label-alignment">
1168
- <style:list-level-label-alignment text:label-followed-by="listtab"
1169
- text:list-tab-stop-position="2.5in" fo:text-indent="-0.25in"
1170
- fo:margin-left="2.5in" />
1171
- </style:list-level-properties>
1172
- </text:list-level-style-number>
1173
- <text:list-level-style-number text:level="10" loext:num-list-format="%10%."
1174
- style:num-suffix="." style:num-format="1">
1175
- <style:list-level-properties
1176
- text:list-level-position-and-space-mode="label-alignment">
1177
- <style:list-level-label-alignment text:label-followed-by="listtab"
1178
- text:list-tab-stop-position="2.75in" fo:text-indent="-0.25in"
1179
- fo:margin-left="2.75in" />
1180
- </style:list-level-properties>
1181
- </text:list-level-style-number>
1182
- </text:list-style>
1183
- <text:list-style style:name="WWNum1">
1184
- <text:list-level-style-bullet text:level="1" text:style-name="ListLabel_20_1"
1185
- loext:num-list-format="•" style:num-suffix="•" text:bullet-char="•">
1186
- <style:list-level-properties
1187
- text:list-level-position-and-space-mode="label-alignment">
1188
- <style:list-level-label-alignment text:label-followed-by="listtab"
1189
- fo:text-indent="-0.25in" fo:margin-left="0.5in" />
1190
- </style:list-level-properties>
1191
- </text:list-level-style-bullet>
1192
- <text:list-level-style-bullet text:level="2" text:style-name="ListLabel_20_2"
1193
- loext:num-list-format="◦" style:num-suffix="◦" text:bullet-char="◦">
1194
- <style:list-level-properties
1195
- text:list-level-position-and-space-mode="label-alignment">
1196
- <style:list-level-label-alignment text:label-followed-by="listtab"
1197
- fo:text-indent="-0.25in" fo:margin-left="1in" />
1198
- </style:list-level-properties>
1199
- </text:list-level-style-bullet>
1200
- <text:list-level-style-bullet text:level="3" text:style-name="ListLabel_20_3"
1201
- loext:num-list-format="▪" style:num-suffix="▪" text:bullet-char="▪">
1202
- <style:list-level-properties
1203
- text:list-level-position-and-space-mode="label-alignment">
1204
- <style:list-level-label-alignment text:label-followed-by="listtab"
1205
- fo:text-indent="-0.25in" fo:margin-left="1.5in" />
1206
- </style:list-level-properties>
1207
- </text:list-level-style-bullet>
1208
- <text:list-level-style-bullet text:level="4" text:style-name="ListLabel_20_4"
1209
- loext:num-list-format="•" style:num-suffix="•" text:bullet-char="•">
1210
- <style:list-level-properties
1211
- text:list-level-position-and-space-mode="label-alignment">
1212
- <style:list-level-label-alignment text:label-followed-by="listtab"
1213
- fo:text-indent="-0.25in" fo:margin-left="2in" />
1214
- </style:list-level-properties>
1215
- </text:list-level-style-bullet>
1216
- <text:list-level-style-bullet text:level="5" text:style-name="ListLabel_20_5"
1217
- loext:num-list-format="◦" style:num-suffix="◦" text:bullet-char="◦">
1218
- <style:list-level-properties
1219
- text:list-level-position-and-space-mode="label-alignment">
1220
- <style:list-level-label-alignment text:label-followed-by="listtab"
1221
- fo:text-indent="-0.25in" fo:margin-left="2.5in" />
1222
- </style:list-level-properties>
1223
- </text:list-level-style-bullet>
1224
- <text:list-level-style-bullet text:level="6" text:style-name="ListLabel_20_6"
1225
- loext:num-list-format="▪" style:num-suffix="▪" text:bullet-char="▪">
1226
- <style:list-level-properties
1227
- text:list-level-position-and-space-mode="label-alignment">
1228
- <style:list-level-label-alignment text:label-followed-by="listtab"
1229
- fo:text-indent="-0.25in" fo:margin-left="3in" />
1230
- </style:list-level-properties>
1231
- </text:list-level-style-bullet>
1232
- <text:list-level-style-bullet text:level="7" text:style-name="ListLabel_20_7"
1233
- loext:num-list-format="•" style:num-suffix="•" text:bullet-char="•">
1234
- <style:list-level-properties
1235
- text:list-level-position-and-space-mode="label-alignment">
1236
- <style:list-level-label-alignment text:label-followed-by="listtab"
1237
- fo:text-indent="-0.25in" fo:margin-left="3.5in" />
1238
- </style:list-level-properties>
1239
- </text:list-level-style-bullet>
1240
- <text:list-level-style-bullet text:level="8" text:style-name="ListLabel_20_8"
1241
- loext:num-list-format="•" style:num-suffix="•" text:bullet-char="•">
1242
- <style:list-level-properties
1243
- text:list-level-position-and-space-mode="label-alignment">
1244
- <style:list-level-label-alignment text:label-followed-by="listtab"
1245
- fo:text-indent="-0.25in" fo:margin-left="4in" />
1246
- </style:list-level-properties>
1247
- </text:list-level-style-bullet>
1248
- <text:list-level-style-bullet text:level="9" text:style-name="ListLabel_20_9"
1249
- loext:num-list-format="•" style:num-suffix="•" text:bullet-char="•">
1250
- <style:list-level-properties
1251
- text:list-level-position-and-space-mode="label-alignment">
1252
- <style:list-level-label-alignment text:label-followed-by="listtab"
1253
- fo:text-indent="-0.25in" fo:margin-left="4.5in" />
1254
- </style:list-level-properties>
1255
- </text:list-level-style-bullet>
1256
- <text:list-level-style-number text:level="10" loext:num-list-format="%10%."
1257
- style:num-suffix="." style:num-format="1">
1258
- <style:list-level-properties
1259
- text:list-level-position-and-space-mode="label-alignment">
1260
- <style:list-level-label-alignment text:label-followed-by="listtab"
1261
- text:list-tab-stop-position="2.75in" fo:text-indent="-0.25in"
1262
- fo:margin-left="2.75in" />
1263
- </style:list-level-properties>
1264
- </text:list-level-style-number>
1265
- </text:list-style>
1266
- <text:list-style style:name="WWNum2">
1267
- <text:list-level-style-bullet text:level="1" text:style-name="ListLabel_20_10"
1268
- loext:num-list-format="•" style:num-suffix="•" text:bullet-char="•">
1269
- <style:list-level-properties
1270
- text:list-level-position-and-space-mode="label-alignment">
1271
- <style:list-level-label-alignment text:label-followed-by="listtab"
1272
- fo:text-indent="-0.25in" fo:margin-left="0.25in" />
1273
- </style:list-level-properties>
1274
- </text:list-level-style-bullet>
1275
- <text:list-level-style-bullet text:level="2" text:style-name="ListLabel_20_11"
1276
- loext:num-list-format="•" style:num-suffix="•" text:bullet-char="•">
1277
- <style:list-level-properties
1278
- text:list-level-position-and-space-mode="label-alignment">
1279
- <style:list-level-label-alignment text:label-followed-by="listtab"
1280
- fo:text-indent="-0.25in" fo:margin-left="0.5in" />
1281
- </style:list-level-properties>
1282
- </text:list-level-style-bullet>
1283
- <text:list-level-style-bullet text:level="3" text:style-name="ListLabel_20_12"
1284
- loext:num-list-format="•" style:num-suffix="•" text:bullet-char="•">
1285
- <style:list-level-properties
1286
- text:list-level-position-and-space-mode="label-alignment">
1287
- <style:list-level-label-alignment text:label-followed-by="listtab"
1288
- fo:text-indent="-0.25in" fo:margin-left="0.75in" />
1289
- </style:list-level-properties>
1290
- </text:list-level-style-bullet>
1291
- <text:list-level-style-bullet text:level="4" text:style-name="ListLabel_20_13"
1292
- loext:num-list-format="•" style:num-suffix="•" text:bullet-char="•">
1293
- <style:list-level-properties
1294
- text:list-level-position-and-space-mode="label-alignment">
1295
- <style:list-level-label-alignment text:label-followed-by="listtab"
1296
- fo:text-indent="-0.25in" fo:margin-left="1in" />
1297
- </style:list-level-properties>
1298
- </text:list-level-style-bullet>
1299
- <text:list-level-style-bullet text:level="5" text:style-name="ListLabel_20_14"
1300
- loext:num-list-format="•" style:num-suffix="•" text:bullet-char="•">
1301
- <style:list-level-properties
1302
- text:list-level-position-and-space-mode="label-alignment">
1303
- <style:list-level-label-alignment text:label-followed-by="listtab"
1304
- fo:text-indent="-0.25in" fo:margin-left="1.25in" />
1305
- </style:list-level-properties>
1306
- </text:list-level-style-bullet>
1307
- <text:list-level-style-bullet text:level="6" text:style-name="ListLabel_20_15"
1308
- loext:num-list-format="•" style:num-suffix="•" text:bullet-char="•">
1309
- <style:list-level-properties
1310
- text:list-level-position-and-space-mode="label-alignment">
1311
- <style:list-level-label-alignment text:label-followed-by="listtab"
1312
- fo:text-indent="-0.25in" fo:margin-left="1.5in" />
1313
- </style:list-level-properties>
1314
- </text:list-level-style-bullet>
1315
- <text:list-level-style-bullet text:level="7" text:style-name="ListLabel_20_16"
1316
- loext:num-list-format="•" style:num-suffix="•" text:bullet-char="•">
1317
- <style:list-level-properties
1318
- text:list-level-position-and-space-mode="label-alignment">
1319
- <style:list-level-label-alignment text:label-followed-by="listtab"
1320
- fo:text-indent="-0.25in" fo:margin-left="1.75in" />
1321
- </style:list-level-properties>
1322
- </text:list-level-style-bullet>
1323
- <text:list-level-style-bullet text:level="8" text:style-name="ListLabel_20_17"
1324
- loext:num-list-format="•" style:num-suffix="•" text:bullet-char="•">
1325
- <style:list-level-properties
1326
- text:list-level-position-and-space-mode="label-alignment">
1327
- <style:list-level-label-alignment text:label-followed-by="listtab"
1328
- fo:text-indent="-0.25in" fo:margin-left="2in" />
1329
- </style:list-level-properties>
1330
- </text:list-level-style-bullet>
1331
- <text:list-level-style-bullet text:level="9" text:style-name="ListLabel_20_18"
1332
- loext:num-list-format="•" style:num-suffix="•" text:bullet-char="•">
1333
- <style:list-level-properties
1334
- text:list-level-position-and-space-mode="label-alignment">
1335
- <style:list-level-label-alignment text:label-followed-by="listtab"
1336
- fo:text-indent="-0.25in" fo:margin-left="2.25in" />
1337
- </style:list-level-properties>
1338
- </text:list-level-style-bullet>
1339
- <text:list-level-style-number text:level="10" loext:num-list-format="%10%."
1340
- style:num-suffix="." style:num-format="1">
1341
- <style:list-level-properties
1342
- text:list-level-position-and-space-mode="label-alignment">
1343
- <style:list-level-label-alignment text:label-followed-by="listtab"
1344
- text:list-tab-stop-position="2.75in" fo:text-indent="-0.25in"
1345
- fo:margin-left="2.75in" />
1346
- </style:list-level-properties>
1347
- </text:list-level-style-number>
1348
- </text:list-style>
1349
- <text:list-style style:name="WWNum3">
1350
- <text:list-level-style-number text:level="1" text:style-name="ListLabel_20_19"
1351
- loext:num-list-format="%1%." style:num-suffix="." style:num-format="1">
1352
- <style:list-level-properties
1353
- text:list-level-position-and-space-mode="label-alignment">
1354
- <style:list-level-label-alignment text:label-followed-by="listtab"
1355
- fo:text-indent="-0.25in" fo:margin-left="0.25in" />
1356
- </style:list-level-properties>
1357
- </text:list-level-style-number>
1358
- <text:list-level-style-number text:level="2" text:style-name="ListLabel_20_20"
1359
- loext:num-list-format="%2%." style:num-suffix="." style:num-format="1">
1360
- <style:list-level-properties
1361
- text:list-level-position-and-space-mode="label-alignment">
1362
- <style:list-level-label-alignment text:label-followed-by="listtab"
1363
- fo:text-indent="-0.25in" fo:margin-left="0.5in" />
1364
- </style:list-level-properties>
1365
- </text:list-level-style-number>
1366
- <text:list-level-style-number text:level="3" text:style-name="ListLabel_20_21"
1367
- loext:num-list-format="%3%." style:num-suffix="." style:num-format="1">
1368
- <style:list-level-properties
1369
- text:list-level-position-and-space-mode="label-alignment">
1370
- <style:list-level-label-alignment text:label-followed-by="listtab"
1371
- fo:text-indent="-0.25in" fo:margin-left="0.75in" />
1372
- </style:list-level-properties>
1373
- </text:list-level-style-number>
1374
- <text:list-level-style-number text:level="4" text:style-name="ListLabel_20_22"
1375
- loext:num-list-format="%4%." style:num-suffix="." style:num-format="1">
1376
- <style:list-level-properties
1377
- text:list-level-position-and-space-mode="label-alignment">
1378
- <style:list-level-label-alignment text:label-followed-by="listtab"
1379
- fo:text-indent="-0.25in" fo:margin-left="1in" />
1380
- </style:list-level-properties>
1381
- </text:list-level-style-number>
1382
- <text:list-level-style-number text:level="5" text:style-name="ListLabel_20_23"
1383
- loext:num-list-format="%5%." style:num-suffix="." style:num-format="1">
1384
- <style:list-level-properties
1385
- text:list-level-position-and-space-mode="label-alignment">
1386
- <style:list-level-label-alignment text:label-followed-by="listtab"
1387
- fo:text-indent="-0.25in" fo:margin-left="1.25in" />
1388
- </style:list-level-properties>
1389
- </text:list-level-style-number>
1390
- <text:list-level-style-number text:level="6" text:style-name="ListLabel_20_24"
1391
- loext:num-list-format="%6%." style:num-suffix="." style:num-format="1">
1392
- <style:list-level-properties
1393
- text:list-level-position-and-space-mode="label-alignment">
1394
- <style:list-level-label-alignment text:label-followed-by="listtab"
1395
- fo:text-indent="-0.25in" fo:margin-left="1.5in" />
1396
- </style:list-level-properties>
1397
- </text:list-level-style-number>
1398
- <text:list-level-style-number text:level="7" text:style-name="ListLabel_20_25"
1399
- loext:num-list-format="%7%." style:num-suffix="." style:num-format="1">
1400
- <style:list-level-properties
1401
- text:list-level-position-and-space-mode="label-alignment">
1402
- <style:list-level-label-alignment text:label-followed-by="listtab"
1403
- fo:text-indent="-0.25in" fo:margin-left="1.75in" />
1404
- </style:list-level-properties>
1405
- </text:list-level-style-number>
1406
- <text:list-level-style-number text:level="8" text:style-name="ListLabel_20_26"
1407
- loext:num-list-format="%8%." style:num-suffix="." style:num-format="1">
1408
- <style:list-level-properties
1409
- text:list-level-position-and-space-mode="label-alignment">
1410
- <style:list-level-label-alignment text:label-followed-by="listtab"
1411
- fo:text-indent="-0.25in" fo:margin-left="2in" />
1412
- </style:list-level-properties>
1413
- </text:list-level-style-number>
1414
- <text:list-level-style-number text:level="9" text:style-name="ListLabel_20_27"
1415
- loext:num-list-format="%9%." style:num-suffix="." style:num-format="1">
1416
- <style:list-level-properties
1417
- text:list-level-position-and-space-mode="label-alignment">
1418
- <style:list-level-label-alignment text:label-followed-by="listtab"
1419
- fo:text-indent="-0.25in" fo:margin-left="2.25in" />
1420
- </style:list-level-properties>
1421
- </text:list-level-style-number>
1422
- <text:list-level-style-number text:level="10" loext:num-list-format="%10%."
1423
- style:num-suffix="." style:num-format="1">
1424
- <style:list-level-properties
1425
- text:list-level-position-and-space-mode="label-alignment">
1426
- <style:list-level-label-alignment text:label-followed-by="listtab"
1427
- text:list-tab-stop-position="2.75in" fo:text-indent="-0.25in"
1428
- fo:margin-left="2.75in" />
1429
- </style:list-level-properties>
1430
- </text:list-level-style-number>
1431
- </text:list-style>
1432
- <text:notes-configuration text:note-class="footnote" style:num-format="1"
1433
- text:start-value="0" text:footnotes-position="page" text:start-numbering-at="document" />
1434
- <text:notes-configuration text:note-class="endnote" style:num-format="i"
1435
- text:start-value="0" />
1436
- <text:linenumbering-configuration text:number-lines="false" text:offset="0.1965in"
1437
- style:num-format="1" text:number-position="left" text:increment="5" />
1438
- <style:default-page-layout>
1439
- <style:page-layout-properties style:layout-grid-standard-mode="true" />
1440
- </style:default-page-layout>
1441
- <loext:theme loext:name="Office">
1442
- <loext:theme-colors loext:name="LibreOffice">
1443
- <loext:color loext:name="dark1" loext:color="#000000" />
1444
- <loext:color loext:name="light1" loext:color="#ffffff" />
1445
- <loext:color loext:name="dark2" loext:color="#000000" />
1446
- <loext:color loext:name="light2" loext:color="#ffffff" />
1447
- <loext:color loext:name="accent1" loext:color="#18a303" />
1448
- <loext:color loext:name="accent2" loext:color="#0369a3" />
1449
- <loext:color loext:name="accent3" loext:color="#a33e03" />
1450
- <loext:color loext:name="accent4" loext:color="#8e03a3" />
1451
- <loext:color loext:name="accent5" loext:color="#c99c00" />
1452
- <loext:color loext:name="accent6" loext:color="#c9211e" />
1453
- <loext:color loext:name="hyperlink" loext:color="#0000ee" />
1454
- <loext:color loext:name="followed-hyperlink" loext:color="#551a8b" />
1455
- </loext:theme-colors>
1456
- </loext:theme>
1457
- </office:styles>
1458
- <office:automatic-styles>
1459
- <style:style style:name="MP1" style:family="paragraph" style:parent-style-name="Header">
1460
- <style:text-properties officeooo:rsid="0008951b" officeooo:paragraph-rsid="0008951b" />
1461
- </style:style>
1462
- <style:style style:name="MP2" style:family="paragraph" style:parent-style-name="Footer">
1463
- <style:text-properties officeooo:rsid="0008951b" officeooo:paragraph-rsid="0008951b" />
1464
- </style:style>
1465
- <style:page-layout style:name="Mpm1">
1466
- <style:page-layout-properties fo:page-width="8.2681in" fo:page-height="11.6929in"
1467
- style:num-format="1" style:print-orientation="portrait" fo:margin-top="1in"
1468
- fo:margin-bottom="1in" fo:margin-left="1in" fo:margin-right="1in"
1469
- style:writing-mode="lr-tb" style:layout-grid-color="#c0c0c0"
1470
- style:layout-grid-lines="38" style:layout-grid-base-height="0.25in"
1471
- style:layout-grid-ruby-height="0in" style:layout-grid-mode="none"
1472
- style:layout-grid-ruby-below="false" style:layout-grid-print="false"
1473
- style:layout-grid-display="false" style:layout-grid-base-width="0.1665in"
1474
- style:layout-grid-snap-to="true" style:footnote-max-height="0in"
1475
- loext:margin-gutter="0in">
1476
- <style:footnote-sep style:width="0.0071in" style:distance-before-sep="0.0398in"
1477
- style:distance-after-sep="0.0398in" style:line-style="solid"
1478
- style:adjustment="left" style:rel-width="25%" style:color="#000000" />
1479
- </style:page-layout-properties>
1480
- <style:header-style>
1481
- <style:header-footer-properties fo:min-height="0in" fo:margin-bottom="0.1965in"
1482
- fo:background-color="transparent" />
1483
- </style:header-style>
1484
- <style:footer-style>
1485
- <style:header-footer-properties fo:min-height="0in" fo:margin-top="0.1965in"
1486
- fo:background-color="transparent" />
1487
- </style:footer-style>
1488
- </style:page-layout>
1489
- <style:style style:name="Mdp1" style:family="drawing-page">
1490
- <style:drawing-page-properties draw:background-size="full" />
1491
- </style:style>
1492
- </office:automatic-styles>
1493
- <office:master-styles>
1494
- <style:master-page style:name="Standard" style:page-layout-name="Mpm1"
1495
- draw:style-name="Mdp1" />
1496
- </office:master-styles>
1497
- </office:document-styles>`;
1498
- class K extends M {
1499
- constructor(n, s, a) {
1500
- const o = {
1501
- colors: B
1502
- };
1503
- super(n, s, { ...o, ...a });
1504
- // "Styles" to be added to the AutomaticStyles section of the ODT file
1505
- // Keyed by the style name
1506
- b(this, "automaticStyles", /* @__PURE__ */ new Map());
1507
- // "Pictures" to be added to the Pictures folder in the ODT file
1508
- // Keyed by the original image URL
1509
- b(this, "pictures", /* @__PURE__ */ new Map());
1510
- b(this, "styleCounter", 0);
1511
- b(this, "options");
1512
- this.schema = n, this.options = { ...o, ...a };
1513
- }
1514
- async loadFonts() {
1515
- const n = await H(
1516
- await import("./Inter_18pt-Regular-byxnNS-8.js")
1517
- ), s = await H(
1518
- await import("./GeistMono-Regular-D4rKXxwr.js")
1519
- );
1520
- return [
1521
- {
1522
- name: "Inter 18pt",
1523
- fileName: "Inter_18pt-Regular.ttf",
1524
- data: new Blob([n], { type: "font/ttf" })
1525
- },
1526
- {
1527
- name: "Geist Mono",
1528
- fileName: "GeistMono-Regular.ttf",
1529
- data: new Blob([s], { type: "font/ttf" })
1530
- }
1531
- ];
1532
- }
1533
- transformStyledText(n) {
1534
- const s = this.mapStyles(n.styles), a = Object.assign({}, ...s);
1535
- if (Object.keys(a).length === 0)
1536
- return n.text;
1537
- const o = `BN_T${++this.styleCounter}`;
1538
- return this.automaticStyles.set(
1539
- o,
1540
- /* @__PURE__ */ l("style:style", { "style:name": o, "style:family": "text", children: /* @__PURE__ */ l("style:text-properties", { ...a }) })
1541
- ), /* @__PURE__ */ l("text:span", { "text:style-name": o, children: n.text });
1542
- }
1543
- async transformBlocks(n, s = 0) {
1544
- const a = [];
1545
- let o = 0;
1546
- for (const y of n)
1547
- if (y.type === "numberedListItem" ? o++ : o = 0, ["columnList", "column"].includes(y.type)) {
1548
- const i = await this.transformBlocks(y.children, 0), r = await this.mapBlock(
1549
- y,
1550
- 0,
1551
- o,
1552
- i
1553
- );
1554
- a.push(r);
1555
- } else {
1556
- const i = await this.transformBlocks(
1557
- y.children,
1558
- s + 1
1559
- ), r = await this.mapBlock(
1560
- y,
1561
- s,
1562
- o,
1563
- i
1564
- );
1565
- a.push(r), i.length > 0 && a.push(...i);
1566
- }
1567
- return a;
1568
- }
1569
- async toODTDocument(n, s) {
1570
- const a = (f) => {
1571
- const z = /<([a-zA-Z0-9:]+)\s+?(?:xml)ns(?::[a-zA-Z0-9]+)?=".*"(.*)>/g;
1572
- let w = "";
1573
- return typeof f == "string" ? w = f : w = new XMLSerializer().serializeToString(f), w.replace(z, "<$1$2>");
1574
- }, o = await this.transformBlocks(n), y = Array.from(this.automaticStyles.values()), i = Array.from(this.pictures.values()), r = await this.loadFonts(), m = a((s == null ? void 0 : s.header) || ""), p = a((s == null ? void 0 : s.footer) || ""), d = /* @__PURE__ */ x(
1575
- "office:document-content",
1576
- {
1577
- "xmlns:office": "urn:oasis:names:tc:opendocument:xmlns:office:1.0",
1578
- "xmlns:text": "urn:oasis:names:tc:opendocument:xmlns:text:1.0",
1579
- "xmlns:table": "urn:oasis:names:tc:opendocument:xmlns:table:1.0",
1580
- "xmlns:draw": "urn:oasis:names:tc:opendocument:xmlns:drawing:1.0",
1581
- "xmlns:xlink": "http://www.w3.org/1999/xlink",
1582
- "xmlns:style": "urn:oasis:names:tc:opendocument:xmlns:style:1.0",
1583
- "xmlns:fo": "urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0",
1584
- "xmlns:svg": "urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0",
1585
- "xmlns:loext": "urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0",
1586
- "office:version": "1.3",
1587
- children: [
1588
- /* @__PURE__ */ l("office:font-face-decls", { children: r.map((f) => /* @__PURE__ */ l(
1589
- "style:font-face",
1590
- {
1591
- "style:name": f.name,
1592
- "svg:font-family": f.name,
1593
- "style:font-pitch": "variable",
1594
- children: /* @__PURE__ */ l("svg:font-face-src", { children: /* @__PURE__ */ l(
1595
- "svg:font-face-uri",
1596
- {
1597
- "xlink:href": `Fonts/${f.fileName}`,
1598
- "xlink:type": "simple",
1599
- "loext:font-style": "normal",
1600
- "loext:font-weight": "normal",
1601
- children: /* @__PURE__ */ l("svg:font-face-format", { "svg:string": "truetype" })
1602
- }
1603
- ) })
1604
- }
1605
- )) }),
1606
- /* @__PURE__ */ l("office:automatic-styles", { children: y }),
1607
- (m || p) && /* @__PURE__ */ l("office:master-styles", { children: /* @__PURE__ */ x(
1608
- "style:master-page",
1609
- {
1610
- "style:name": "Standard",
1611
- "style:page-layout-name": "Mpm1",
1612
- "draw:style-name": "Mdp1",
1613
- children: [
1614
- m && /* @__PURE__ */ l(
1615
- "style:header",
1616
- {
1617
- dangerouslySetInnerHTML: {
1618
- __html: m
1619
- }
1620
- }
1621
- ),
1622
- p && /* @__PURE__ */ l(
1623
- "style:footer",
1624
- {
1625
- dangerouslySetInnerHTML: {
1626
- __html: p
1627
- }
1628
- }
1629
- )
1630
- ]
1631
- }
1632
- ) }),
1633
- /* @__PURE__ */ l("office:body", { children: /* @__PURE__ */ l("office:text", { children: o }) })
1634
- ]
1635
- }
1636
- ), u = /* @__PURE__ */ x(
1637
- "manifest:manifest",
1638
- {
1639
- "xmlns:manifest": "urn:oasis:names:tc:opendocument:xmlns:manifest:1.0",
1640
- "manifest:version": "1.3",
1641
- children: [
1642
- /* @__PURE__ */ l(
1643
- "manifest:file-entry",
1644
- {
1645
- "manifest:media-type": "application/vnd.oasis.opendocument.text",
1646
- "manifest:full-path": "/"
1647
- }
1648
- ),
1649
- /* @__PURE__ */ l(
1650
- "manifest:file-entry",
1651
- {
1652
- "manifest:media-type": "text/xml",
1653
- "manifest:full-path": "content.xml"
1654
- }
1655
- ),
1656
- /* @__PURE__ */ l(
1657
- "manifest:file-entry",
1658
- {
1659
- "manifest:media-type": "text/xml",
1660
- "manifest:full-path": "styles.xml"
1661
- }
1662
- ),
1663
- i.map((f) => /* @__PURE__ */ l(
1664
- "manifest:file-entry",
1665
- {
1666
- "manifest:media-type": f.file.type,
1667
- "manifest:full-path": `Pictures/${f.fileName}`
1668
- }
1669
- )),
1670
- r.map((f) => /* @__PURE__ */ l(
1671
- "manifest:file-entry",
1672
- {
1673
- "manifest:media-type": "application/x-font-ttf",
1674
- "manifest:full-path": `Fonts/${f.fileName}`
1675
- }
1676
- ))
1677
- ]
1678
- }
1679
- ), c = new $(
1680
- new W("application/vnd.oasis.opendocument.text")
1681
- );
1682
- c.add(
1683
- "mimetype",
1684
- new v("application/vnd.oasis.opendocument.text"),
1685
- {
1686
- compressionMethod: 0,
1687
- level: 0,
1688
- dataDescriptor: !1,
1689
- extendedTimestamp: !1
1690
- }
1691
- );
1692
- const _ = C(d), F = C(u);
1693
- return c.add("content.xml", new v(_)), c.add("styles.xml", new v(j)), c.add("META-INF/manifest.xml", new v(F)), r.forEach((f) => {
1694
- c.add(`Fonts/${f.fileName}`, new k(f.data));
1695
- }), i.forEach((f) => {
1696
- c.add(
1697
- `Pictures/${f.fileName}`,
1698
- new k(f.file)
1699
- );
1700
- }), c.close();
1701
- }
1702
- registerStyle(n) {
1703
- const s = `BN_S${++this.styleCounter}`;
1704
- return this.automaticStyles.set(s, n(s)), s;
1705
- }
1706
- async registerPicture(n) {
1707
- const s = {
1708
- "image/apng": "apng",
1709
- "image/avif": "avif",
1710
- "image/bmp": "bmp",
1711
- "image/gif": "gif",
1712
- "image/vnd.microsoft.icon": "ico",
1713
- "image/jpeg": "jpg",
1714
- "image/png": "png",
1715
- "image/svg+xml": "svg",
1716
- "image/tiff": "tiff",
1717
- "image/webp": "webp"
1718
- };
1719
- if (this.pictures.has(n)) {
1720
- const m = this.pictures.get(n);
1721
- return {
1722
- path: `Pictures/${m.fileName}`,
1723
- mimeType: m.file.type,
1724
- height: m.height,
1725
- width: m.width
1726
- };
1727
- }
1728
- const a = await this.resolveFile(n), o = s[a.type] || "png", y = `picture-${this.pictures.size}.${o}`, { width: i, height: r } = await U(a);
1729
- return this.pictures.set(n, {
1730
- file: a,
1731
- fileName: y,
1732
- height: r,
1733
- width: i
1734
- }), { path: `Pictures/${y}`, mimeType: a.type, height: r, width: i };
1735
- }
1736
- }
1737
- export {
1738
- K as ODTExporter,
1739
- J as odtDefaultSchemaMappings
351
+ //#endregion
352
+ //#region src/odt/template/styles.xml?raw
353
+ var y = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<office:document-styles xmlns:css3t=\"http://www.w3.org/TR/css3-text/\"\n xmlns:grddl=\"http://www.w3.org/2003/g/data-view#\" xmlns:xhtml=\"http://www.w3.org/1999/xhtml\"\n xmlns:dom=\"http://www.w3.org/2001/xml-events\"\n xmlns:script=\"urn:oasis:names:tc:opendocument:xmlns:script:1.0\"\n xmlns:form=\"urn:oasis:names:tc:opendocument:xmlns:form:1.0\"\n xmlns:math=\"http://www.w3.org/1998/Math/MathML\"\n xmlns:number=\"urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0\"\n xmlns:field=\"urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0\"\n xmlns:meta=\"urn:oasis:names:tc:opendocument:xmlns:meta:1.0\"\n xmlns:loext=\"urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0\"\n xmlns:officeooo=\"http://openoffice.org/2009/office\"\n xmlns:table=\"urn:oasis:names:tc:opendocument:xmlns:table:1.0\"\n xmlns:chart=\"urn:oasis:names:tc:opendocument:xmlns:chart:1.0\"\n xmlns:svg=\"urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0\"\n xmlns:rpt=\"http://openoffice.org/2005/report\"\n xmlns:dr3d=\"urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0\"\n xmlns:tableooo=\"http://openoffice.org/2009/table\"\n xmlns:draw=\"urn:oasis:names:tc:opendocument:xmlns:drawing:1.0\"\n xmlns:of=\"urn:oasis:names:tc:opendocument:xmlns:of:1.2\"\n xmlns:text=\"urn:oasis:names:tc:opendocument:xmlns:text:1.0\"\n xmlns:style=\"urn:oasis:names:tc:opendocument:xmlns:style:1.0\"\n xmlns:dc=\"http://purl.org/dc/elements/1.1/\"\n xmlns:calcext=\"urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0\"\n xmlns:oooc=\"http://openoffice.org/2004/calc\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\n xmlns:drawooo=\"http://openoffice.org/2010/draw\" xmlns:ooow=\"http://openoffice.org/2004/writer\"\n xmlns:fo=\"urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0\"\n xmlns:ooo=\"http://openoffice.org/2004/office\"\n xmlns:office=\"urn:oasis:names:tc:opendocument:xmlns:office:1.0\" office:version=\"1.3\">\n <office:font-face-decls>\n <style:font-face style:name=\"Geist Mono\" svg:font-family=\"Geist Mono\" />\n <style:font-face style:name=\"Inter 18pt\" svg:font-family=\"Inter 18pt\"\n style:font-pitch=\"variable\" />\n <style:font-face style:name=\"Liberation Serif\"\n svg:font-family=\"&apos;Liberation Serif&apos;\" style:font-family-generic=\"roman\"\n style:font-pitch=\"variable\" />\n <style:font-face style:name=\"OpenSymbol\" svg:font-family=\"OpenSymbol\"\n style:font-charset=\"x-symbol\" />\n <style:font-face style:name=\"PingFang SC\" svg:font-family=\"&apos;PingFang SC&apos;\"\n style:font-family-generic=\"system\" style:font-pitch=\"variable\" />\n <style:font-face style:name=\"Tahoma\" svg:font-family=\"Tahoma\"\n style:font-family-generic=\"system\" style:font-pitch=\"variable\" />\n <style:font-face style:name=\"Times New Roman (Body CS)\"\n svg:font-family=\"&apos;Times New Roman (Body CS)&apos;\"\n style:font-family-generic=\"system\" style:font-pitch=\"variable\" />\n </office:font-face-decls>\n <office:styles>\n <draw:gradient draw:name=\"Gradient_20_1\" draw:display-name=\"Gradient 1\" draw:style=\"linear\"\n draw:start-color=\"#000000\" draw:end-color=\"#ffffff\" draw:start-intensity=\"100%\"\n draw:end-intensity=\"100%\" draw:angle=\"0deg\" draw:border=\"0%\">\n <loext:gradient-stop svg:offset=\"0\" loext:color-type=\"rgb\" loext:color-value=\"#000000\" />\n <loext:gradient-stop svg:offset=\"1\" loext:color-type=\"rgb\" loext:color-value=\"#ffffff\" />\n </draw:gradient>\n <draw:hatch draw:name=\"Red_20_90_20_Degrees_20_Crossed_20_1\"\n draw:display-name=\"Red 90 Degrees Crossed 1\" draw:style=\"single\" draw:color=\"#3465a4\"\n draw:distance=\"0.0079in\" draw:rotation=\"0\" />\n <style:default-style style:family=\"graphic\">\n <style:graphic-properties svg:stroke-color=\"#3465a4\" draw:fill-color=\"#729fcf\"\n fo:wrap-option=\"no-wrap\" draw:shadow-offset-x=\"0.1181in\"\n draw:shadow-offset-y=\"0.1181in\" draw:start-line-spacing-horizontal=\"0.1114in\"\n draw:start-line-spacing-vertical=\"0.1114in\"\n draw:end-line-spacing-horizontal=\"0.1114in\"\n draw:end-line-spacing-vertical=\"0.1114in\" style:flow-with-text=\"false\" />\n <style:paragraph-properties style:text-autospace=\"ideograph-alpha\"\n style:line-break=\"strict\" loext:tab-stop-distance=\"0in\" style:writing-mode=\"lr-tb\"\n style:font-independent-line-spacing=\"false\">\n <style:tab-stops />\n </style:paragraph-properties>\n <style:text-properties style:font-name=\"Inter 18pt\"\n fo:font-family=\"Inter 18pt\" style:font-style-name=\"Regular\"\n style:font-pitch=\"variable\" style:font-name-complex=\"Times New Roman (Body CS)\"\n style:font-family-complex=\"&apos;Times New Roman (Body CS)&apos;\"\n style:font-family-generic-complex=\"system\" style:font-pitch-complex=\"variable\"\n style:use-window-font-color=\"true\" loext:opacity=\"0%\"\n fo:font-size=\"12pt\" fo:language=\"en\" fo:country=\"NL\"\n style:letter-kerning=\"true\" style:font-size-asian=\"12pt\"\n style:language-asian=\"en\" style:country-asian=\"GB\"\n style:font-size-complex=\"12pt\" style:language-complex=\"ar\"\n style:country-complex=\"SA\" />\n </style:default-style>\n <style:default-style style:family=\"paragraph\">\n <style:paragraph-properties fo:hyphenation-ladder-count=\"no-limit\"\n fo:hyphenation-keep=\"auto\" loext:hyphenation-keep-type=\"column\"\n style:text-autospace=\"ideograph-alpha\" style:punctuation-wrap=\"hanging\"\n style:line-break=\"strict\" style:tab-stop-distance=\"0.139in\"\n style:writing-mode=\"page\" />\n <style:text-properties style:font-name=\"Inter 18pt\"\n fo:font-family=\"Inter 18pt\" style:font-style-name=\"Regular\"\n style:font-pitch=\"variable\" style:font-name-complex=\"Times New Roman (Body CS)\"\n style:font-family-complex=\"&apos;Times New Roman (Body CS)&apos;\"\n style:font-family-generic-complex=\"system\" style:font-pitch-complex=\"variable\"\n style:use-window-font-color=\"true\" loext:opacity=\"0%\"\n fo:font-size=\"12pt\" fo:language=\"en\" fo:country=\"NL\"\n style:letter-kerning=\"true\" style:font-size-asian=\"12pt\"\n style:language-asian=\"en\" style:country-asian=\"GB\"\n style:font-size-complex=\"12pt\" style:language-complex=\"ar\"\n style:country-complex=\"SA\" fo:hyphenate=\"false\" fo:hyphenation-remain-char-count=\"2\"\n fo:hyphenation-push-char-count=\"2\" loext:hyphenation-no-caps=\"false\"\n loext:hyphenation-no-last-word=\"false\" loext:hyphenation-word-char-count=\"5\"\n loext:hyphenation-zone=\"no-limit\" />\n </style:default-style>\n <style:default-style style:family=\"table\">\n <style:table-properties table:border-model=\"collapsing\" />\n </style:default-style>\n <style:default-style style:family=\"table-row\">\n <style:table-row-properties fo:keep-together=\"auto\" />\n </style:default-style>\n <style:style style:name=\"Standard\" style:family=\"paragraph\" style:class=\"text\">\n <style:paragraph-properties fo:margin-top=\"0.0311in\" fo:margin-bottom=\"0.0311in\"\n style:contextual-spacing=\"false\" fo:line-height=\"150%\" fo:text-align=\"start\"\n style:justify-single-word=\"false\" fo:orphans=\"2\" fo:widows=\"2\"\n style:writing-mode=\"lr-tb\" />\n <style:text-properties style:font-name=\"Inter 18pt\"\n fo:font-family=\"Inter 18pt\" style:font-style-name=\"Regular\"\n style:font-pitch=\"variable\" style:font-name-complex=\"Times New Roman (Body CS)\"\n style:font-family-complex=\"&apos;Times New Roman (Body CS)&apos;\"\n style:font-family-generic-complex=\"system\" style:font-pitch-complex=\"variable\" />\n </style:style>\n <style:style style:name=\"Heading\" style:family=\"paragraph\"\n style:parent-style-name=\"Standard\" style:next-style-name=\"Text_20_body\"\n style:class=\"text\">\n <style:paragraph-properties fo:margin-top=\"0.1665in\" fo:margin-bottom=\"0.0835in\"\n style:contextual-spacing=\"false\" fo:keep-with-next=\"always\" />\n <style:text-properties style:font-family-generic=\"swiss\"\n style:font-pitch=\"variable\" fo:font-size=\"14pt\" style:font-name-asian=\"PingFang SC\"\n style:font-family-asian=\"&apos;PingFang SC&apos;\"\n style:font-family-generic-asian=\"system\" style:font-pitch-asian=\"variable\"\n style:font-size-asian=\"14pt\" style:font-name-complex=\"Arial Unicode MS1\"\n style:font-family-complex=\"&apos;Arial Unicode MS&apos;\"\n style:font-family-generic-complex=\"system\" style:font-pitch-complex=\"variable\"\n style:font-size-complex=\"14pt\" />\n </style:style>\n <style:style style:name=\"Text_20_body\" style:display-name=\"Text body\"\n style:family=\"paragraph\" style:parent-style-name=\"Standard\" style:class=\"text\">\n <style:paragraph-properties fo:margin-top=\"0in\" fo:margin-bottom=\"0.0972in\"\n style:contextual-spacing=\"false\" fo:line-height=\"115%\" />\n </style:style>\n <style:style style:name=\"List\" style:family=\"paragraph\"\n style:parent-style-name=\"Text_20_body\" style:class=\"list\">\n <style:text-properties style:font-size-asian=\"12pt\"\n style:font-name-complex=\"Arial Unicode MS\"\n style:font-family-complex=\"&apos;Arial Unicode MS&apos;\"\n style:font-family-generic-complex=\"swiss\" />\n </style:style>\n <style:style style:name=\"Caption\" style:family=\"paragraph\"\n style:parent-style-name=\"Standard\" style:next-style-name=\"Standard\" style:class=\"extra\">\n <style:paragraph-properties fo:margin-top=\"0in\" fo:margin-bottom=\"0.139in\"\n style:contextual-spacing=\"false\" fo:line-height=\"100%\" />\n <style:text-properties fo:color=\"#0e2841\" loext:opacity=\"100%\" fo:font-size=\"9pt\"\n fo:font-style=\"italic\" style:font-size-asian=\"9pt\" style:font-style-asian=\"italic\"\n style:font-size-complex=\"9pt\" style:font-style-complex=\"italic\">\n <loext:char-complex-color loext:theme-type=\"dark2\" loext:color-type=\"theme\" />\n </style:text-properties>\n </style:style>\n <style:style style:name=\"Index\" style:family=\"paragraph\" style:parent-style-name=\"Standard\"\n style:class=\"index\">\n <style:paragraph-properties text:number-lines=\"false\" text:line-number=\"0\" />\n <style:text-properties style:font-size-asian=\"12pt\"\n style:font-name-complex=\"Arial Unicode MS\"\n style:font-family-complex=\"&apos;Arial Unicode MS&apos;\"\n style:font-family-generic-complex=\"swiss\" />\n </style:style>\n <style:style style:name=\"Heading_20_1\" style:display-name=\"Heading 1\"\n style:family=\"paragraph\" style:parent-style-name=\"Standard\"\n style:next-style-name=\"Standard\" loext:linked-style-name=\"Heading_20_1_20_Char\"\n style:default-outline-level=\"1\" style:list-style-name=\"\" style:class=\"text\">\n <style:text-properties fo:font-size=\"24pt\" fo:font-weight=\"bold\"\n style:font-size-asian=\"24pt\" style:font-weight-asian=\"bold\"\n style:font-size-complex=\"24pt\" />\n </style:style>\n <style:style style:name=\"Heading_20_2\" style:display-name=\"Heading 2\"\n style:family=\"paragraph\" style:parent-style-name=\"Standard\"\n style:next-style-name=\"Standard\" loext:linked-style-name=\"Heading_20_2_20_Char\"\n style:default-outline-level=\"2\" style:list-style-name=\"\" style:class=\"text\">\n <style:text-properties fo:font-size=\"18pt\" fo:font-weight=\"bold\"\n style:font-size-asian=\"18pt\" style:font-weight-asian=\"bold\"\n style:font-size-complex=\"18pt\" />\n </style:style>\n <style:style style:name=\"Heading_20_3\" style:display-name=\"Heading 3\"\n style:family=\"paragraph\" style:parent-style-name=\"Standard\"\n style:next-style-name=\"Standard\" loext:linked-style-name=\"Heading_20_3_20_Char\"\n style:default-outline-level=\"3\" style:list-style-name=\"\" style:class=\"text\">\n <style:text-properties fo:font-size=\"14pt\" fo:font-weight=\"bold\"\n style:font-size-asian=\"14pt\" style:font-weight-asian=\"bold\"\n style:font-size-complex=\"14pt\" />\n </style:style>\n <style:style style:name=\"Heading_20_4\" style:display-name=\"Heading 4\"\n style:family=\"paragraph\" style:parent-style-name=\"Standard\"\n style:next-style-name=\"Standard\" loext:linked-style-name=\"Heading_20_4_20_Char\"\n style:default-outline-level=\"4\" style:list-style-name=\"\" style:class=\"text\">\n <style:paragraph-properties fo:margin-top=\"0.0555in\" fo:margin-bottom=\"0.028in\"\n style:contextual-spacing=\"false\" fo:keep-together=\"always\"\n fo:keep-with-next=\"always\" />\n <style:text-properties fo:color=\"#0f4761\" loext:opacity=\"100%\" fo:font-style=\"italic\"\n style:font-name-asian=\"F2\" style:font-family-generic-asian=\"system\"\n style:font-pitch-asian=\"variable\" style:font-style-asian=\"italic\"\n style:font-name-complex=\"F2\" style:font-family-generic-complex=\"system\"\n style:font-pitch-complex=\"variable\" style:font-style-complex=\"italic\">\n <loext:char-complex-color loext:theme-type=\"accent1\" loext:color-type=\"theme\">\n <loext:transformation loext:type=\"shade\" loext:value=\"2509\" />\n </loext:char-complex-color>\n </style:text-properties>\n </style:style>\n <style:style style:name=\"Heading_20_5\" style:display-name=\"Heading 5\"\n style:family=\"paragraph\" style:parent-style-name=\"Standard\"\n style:next-style-name=\"Standard\" loext:linked-style-name=\"Heading_20_5_20_Char\"\n style:default-outline-level=\"5\" style:list-style-name=\"\" style:class=\"text\">\n <style:paragraph-properties fo:margin-top=\"0.0555in\" fo:margin-bottom=\"0.028in\"\n style:contextual-spacing=\"false\" fo:keep-together=\"always\"\n fo:keep-with-next=\"always\" />\n <style:text-properties fo:color=\"#0f4761\" loext:opacity=\"100%\"\n style:font-name-asian=\"F2\" style:font-family-generic-asian=\"system\"\n style:font-pitch-asian=\"variable\" style:font-name-complex=\"F2\"\n style:font-family-generic-complex=\"system\" style:font-pitch-complex=\"variable\">\n <loext:char-complex-color loext:theme-type=\"accent1\" loext:color-type=\"theme\">\n <loext:transformation loext:type=\"shade\" loext:value=\"2509\" />\n </loext:char-complex-color>\n </style:text-properties>\n </style:style>\n <style:style style:name=\"Heading_20_6\" style:display-name=\"Heading 6\"\n style:family=\"paragraph\" style:parent-style-name=\"Standard\"\n style:next-style-name=\"Standard\" loext:linked-style-name=\"Heading_20_6_20_Char\"\n style:default-outline-level=\"6\" style:list-style-name=\"\" style:class=\"text\">\n <style:paragraph-properties fo:margin-top=\"0.028in\" fo:margin-bottom=\"0in\"\n style:contextual-spacing=\"false\" fo:keep-together=\"always\"\n fo:keep-with-next=\"always\" />\n <style:text-properties fo:color=\"#595959\" loext:opacity=\"100%\" fo:font-style=\"italic\"\n style:font-name-asian=\"F2\" style:font-family-generic-asian=\"system\"\n style:font-pitch-asian=\"variable\" style:font-style-asian=\"italic\"\n style:font-name-complex=\"F2\" style:font-family-generic-complex=\"system\"\n style:font-pitch-complex=\"variable\" style:font-style-complex=\"italic\">\n <loext:char-complex-color loext:theme-type=\"dark1\" loext:color-type=\"theme\">\n <loext:transformation loext:type=\"tint\" loext:value=\"3490\" />\n </loext:char-complex-color>\n </style:text-properties>\n </style:style>\n <style:style style:name=\"Heading_20_7\" style:display-name=\"Heading 7\"\n style:family=\"paragraph\" style:parent-style-name=\"Standard\"\n style:next-style-name=\"Standard\" loext:linked-style-name=\"Heading_20_7_20_Char\"\n style:default-outline-level=\"7\" style:list-style-name=\"\" style:class=\"text\">\n <style:paragraph-properties fo:margin-top=\"0.028in\" fo:margin-bottom=\"0in\"\n style:contextual-spacing=\"false\" fo:keep-together=\"always\"\n fo:keep-with-next=\"always\" />\n <style:text-properties fo:color=\"#595959\" loext:opacity=\"100%\"\n style:font-name-asian=\"F2\" style:font-family-generic-asian=\"system\"\n style:font-pitch-asian=\"variable\" style:font-name-complex=\"F2\"\n style:font-family-generic-complex=\"system\" style:font-pitch-complex=\"variable\">\n <loext:char-complex-color loext:theme-type=\"dark1\" loext:color-type=\"theme\">\n <loext:transformation loext:type=\"tint\" loext:value=\"3490\" />\n </loext:char-complex-color>\n </style:text-properties>\n </style:style>\n <style:style style:name=\"Heading_20_8\" style:display-name=\"Heading 8\"\n style:family=\"paragraph\" style:parent-style-name=\"Standard\"\n style:next-style-name=\"Standard\" loext:linked-style-name=\"Heading_20_8_20_Char\"\n style:default-outline-level=\"8\" style:list-style-name=\"\" style:class=\"text\">\n <style:paragraph-properties fo:margin-top=\"0.0311in\" fo:margin-bottom=\"0in\"\n style:contextual-spacing=\"false\" fo:keep-together=\"always\"\n fo:keep-with-next=\"always\" />\n <style:text-properties fo:color=\"#272727\" loext:opacity=\"100%\" fo:font-style=\"italic\"\n style:font-name-asian=\"F2\" style:font-family-generic-asian=\"system\"\n style:font-pitch-asian=\"variable\" style:font-style-asian=\"italic\"\n style:font-name-complex=\"F2\" style:font-family-generic-complex=\"system\"\n style:font-pitch-complex=\"variable\" style:font-style-complex=\"italic\">\n <loext:char-complex-color loext:theme-type=\"dark1\" loext:color-type=\"theme\">\n <loext:transformation loext:type=\"tint\" loext:value=\"1529\" />\n </loext:char-complex-color>\n </style:text-properties>\n </style:style>\n <style:style style:name=\"Heading_20_9\" style:display-name=\"Heading 9\"\n style:family=\"paragraph\" style:parent-style-name=\"Standard\"\n style:next-style-name=\"Standard\" loext:linked-style-name=\"Heading_20_9_20_Char\"\n style:default-outline-level=\"9\" style:list-style-name=\"\" style:class=\"text\">\n <style:paragraph-properties fo:margin-top=\"0.0311in\" fo:margin-bottom=\"0in\"\n style:contextual-spacing=\"false\" fo:keep-together=\"always\"\n fo:keep-with-next=\"always\" />\n <style:text-properties fo:color=\"#272727\" loext:opacity=\"100%\"\n style:font-name-asian=\"F2\" style:font-family-generic-asian=\"system\"\n style:font-pitch-asian=\"variable\" style:font-name-complex=\"F2\"\n style:font-family-generic-complex=\"system\" style:font-pitch-complex=\"variable\">\n <loext:char-complex-color loext:theme-type=\"dark1\" loext:color-type=\"theme\">\n <loext:transformation loext:type=\"tint\" loext:value=\"1529\" />\n </loext:char-complex-color>\n </style:text-properties>\n </style:style>\n <style:style style:name=\"Title\" style:family=\"paragraph\" style:parent-style-name=\"Standard\"\n style:next-style-name=\"Standard\" loext:linked-style-name=\"Title_20_Char\"\n style:class=\"chapter\">\n <style:paragraph-properties fo:margin-top=\"0.0311in\" fo:margin-bottom=\"0.0555in\"\n style:contextual-spacing=\"true\" fo:line-height=\"100%\" />\n <style:text-properties\n fo:font-size=\"28pt\" fo:letter-spacing=\"-0.0071in\" style:letter-kerning=\"true\"\n style:font-name-asian=\"F2\" style:font-family-generic-asian=\"system\"\n style:font-pitch-asian=\"variable\" style:font-size-asian=\"28pt\"\n style:font-name-complex=\"F2\" style:font-family-generic-complex=\"system\"\n style:font-pitch-complex=\"variable\" style:font-size-complex=\"28pt\" />\n </style:style>\n <style:style style:name=\"Subtitle\" style:family=\"paragraph\"\n style:parent-style-name=\"Standard\" style:next-style-name=\"Standard\"\n loext:linked-style-name=\"Subtitle_20_Char\" style:class=\"chapter\">\n <style:text-properties fo:color=\"#595959\" loext:opacity=\"100%\" fo:font-size=\"14pt\"\n fo:letter-spacing=\"0.0102in\" style:font-name-asian=\"F2\"\n style:font-family-generic-asian=\"system\" style:font-pitch-asian=\"variable\"\n style:font-size-asian=\"14pt\" style:font-name-complex=\"F2\"\n style:font-family-generic-complex=\"system\" style:font-pitch-complex=\"variable\"\n style:font-size-complex=\"14pt\">\n <loext:char-complex-color loext:theme-type=\"dark1\" loext:color-type=\"theme\">\n <loext:transformation loext:type=\"tint\" loext:value=\"3490\" />\n </loext:char-complex-color>\n </style:text-properties>\n </style:style>\n <style:style style:name=\"Quote\" style:family=\"paragraph\" style:parent-style-name=\"Standard\"\n style:next-style-name=\"Standard\" loext:linked-style-name=\"Quote_20_Char\">\n <style:paragraph-properties fo:margin-top=\"0.111in\" fo:margin-bottom=\"0.0311in\"\n style:contextual-spacing=\"false\" fo:text-align=\"center\"\n style:justify-single-word=\"false\" />\n <style:text-properties fo:color=\"#404040\" loext:opacity=\"100%\" fo:font-style=\"italic\"\n style:font-style-asian=\"italic\" style:font-style-complex=\"italic\">\n <loext:char-complex-color loext:theme-type=\"dark1\" loext:color-type=\"theme\">\n <loext:transformation loext:type=\"tint\" loext:value=\"2509\" />\n </loext:char-complex-color>\n </style:text-properties>\n </style:style>\n <style:style style:name=\"List_20_Paragraph\" style:display-name=\"List Paragraph\"\n style:family=\"paragraph\" style:parent-style-name=\"Standard\">\n <style:paragraph-properties fo:margin-left=\"0.5in\" fo:margin-top=\"0.0311in\"\n fo:margin-bottom=\"0.0311in\" style:contextual-spacing=\"true\" />\n </style:style>\n <style:style style:name=\"Intense_20_Quote\" style:display-name=\"Intense Quote\"\n style:family=\"paragraph\" style:parent-style-name=\"Standard\"\n style:next-style-name=\"Standard\" loext:linked-style-name=\"Intense_20_Quote_20_Char\">\n <style:paragraph-properties fo:margin-left=\"0.6in\" fo:margin-right=\"0.6in\"\n fo:margin-top=\"0.25in\" fo:margin-bottom=\"0.25in\" style:contextual-spacing=\"false\"\n fo:text-align=\"center\" style:justify-single-word=\"false\" fo:padding-left=\"0in\"\n fo:padding-right=\"0in\" fo:padding-top=\"0.139in\" fo:padding-bottom=\"0.139in\"\n fo:border-left=\"none\" fo:border-right=\"none\" fo:border-top=\"0.51pt solid #0f4761\"\n fo:border-bottom=\"0.51pt solid #0f4761\" />\n <style:text-properties fo:color=\"#0f4761\" loext:opacity=\"100%\" fo:font-style=\"italic\"\n style:font-style-asian=\"italic\" style:font-style-complex=\"italic\">\n <loext:char-complex-color loext:theme-type=\"accent1\" loext:color-type=\"theme\">\n <loext:transformation loext:type=\"shade\" loext:value=\"2509\" />\n </loext:char-complex-color>\n </style:text-properties>\n </style:style>\n <style:style style:name=\"PageBreak\" style:family=\"paragraph\"\n style:parent-style-name=\"Standard\">\n <style:paragraph-properties fo:break-before=\"page\" />\n </style:style>\n <style:style style:name=\"Codeblock\" style:family=\"paragraph\"\n style:parent-style-name=\"Standard\">\n <loext:graphic-properties draw:fill=\"solid\" draw:fill-color=\"#161616\" />\n <style:paragraph-properties fo:line-height=\"100%\" fo:background-color=\"#161616\" />\n <style:text-properties fo:color=\"#e1e4e8\" loext:opacity=\"100%\"\n style:font-name=\"Geist Mono\"\n fo:font-family=\"Geist Mono\" />\n </style:style>\n <style:style style:name=\"Heading_20_1_20_Char\" style:display-name=\"Heading 1 Char\"\n style:family=\"text\" style:parent-style-name=\"Standard\"\n loext:linked-style-name=\"Heading_20_1\">\n <style:text-properties fo:font-size=\"20pt\"\n style:font-size-asian=\"20pt\"\n style:font-size-complex=\"20pt\" />\n </style:style>\n <style:style style:name=\"Heading_20_2_20_Char\" style:display-name=\"Heading 2 Char\"\n style:family=\"text\" style:parent-style-name=\"Standard\"\n loext:linked-style-name=\"Heading_20_2\">\n <style:text-properties fo:color=\"#0f4761\" loext:opacity=\"100%\" fo:font-size=\"16pt\"\n style:font-size-asian=\"16pt\" style:font-size-complex=\"16pt\">\n <loext:char-complex-color loext:theme-type=\"accent1\" loext:color-type=\"theme\">\n <loext:transformation loext:type=\"shade\" loext:value=\"2509\" />\n </loext:char-complex-color>\n </style:text-properties>\n </style:style>\n <style:style style:name=\"Heading_20_3_20_Char\" style:display-name=\"Heading 3 Char\"\n style:family=\"text\" style:parent-style-name=\"Standard\"\n loext:linked-style-name=\"Heading_20_3\">\n <style:text-properties fo:color=\"#0f4761\" loext:opacity=\"100%\" fo:font-size=\"14pt\"\n style:font-name-asian=\"F2\" style:font-family-generic-asian=\"system\"\n style:font-pitch-asian=\"variable\" style:font-size-asian=\"14pt\"\n style:font-name-complex=\"F2\" style:font-family-generic-complex=\"system\"\n style:font-pitch-complex=\"variable\" style:font-size-complex=\"14pt\">\n <loext:char-complex-color loext:theme-type=\"accent1\" loext:color-type=\"theme\">\n <loext:transformation loext:type=\"shade\" loext:value=\"2509\" />\n </loext:char-complex-color>\n </style:text-properties>\n </style:style>\n <style:style style:name=\"Heading_20_4_20_Char\" style:display-name=\"Heading 4 Char\"\n style:family=\"text\" style:parent-style-name=\"Standard\"\n loext:linked-style-name=\"Heading_20_4\">\n <style:text-properties fo:color=\"#0f4761\" loext:opacity=\"100%\" fo:font-style=\"italic\"\n style:font-name-asian=\"F2\" style:font-family-generic-asian=\"system\"\n style:font-pitch-asian=\"variable\" style:font-style-asian=\"italic\"\n style:font-name-complex=\"F2\" style:font-family-generic-complex=\"system\"\n style:font-pitch-complex=\"variable\" style:font-style-complex=\"italic\">\n <loext:char-complex-color loext:theme-type=\"accent1\" loext:color-type=\"theme\">\n <loext:transformation loext:type=\"shade\" loext:value=\"2509\" />\n </loext:char-complex-color>\n </style:text-properties>\n </style:style>\n <style:style style:name=\"Heading_20_5_20_Char\" style:display-name=\"Heading 5 Char\"\n style:family=\"text\" style:parent-style-name=\"Standard\"\n loext:linked-style-name=\"Heading_20_5\">\n <style:text-properties fo:color=\"#0f4761\" loext:opacity=\"100%\"\n style:font-name-asian=\"F2\" style:font-family-generic-asian=\"system\"\n style:font-pitch-asian=\"variable\" style:font-name-complex=\"F2\"\n style:font-family-generic-complex=\"system\" style:font-pitch-complex=\"variable\">\n <loext:char-complex-color loext:theme-type=\"accent1\" loext:color-type=\"theme\">\n <loext:transformation loext:type=\"shade\" loext:value=\"2509\" />\n </loext:char-complex-color>\n </style:text-properties>\n </style:style>\n <style:style style:name=\"Heading_20_6_20_Char\" style:display-name=\"Heading 6 Char\"\n style:family=\"text\" style:parent-style-name=\"Standard\"\n loext:linked-style-name=\"Heading_20_6\">\n <style:text-properties fo:color=\"#595959\" loext:opacity=\"100%\" fo:font-style=\"italic\"\n style:font-name-asian=\"F2\" style:font-family-generic-asian=\"system\"\n style:font-pitch-asian=\"variable\" style:font-style-asian=\"italic\"\n style:font-name-complex=\"F2\" style:font-family-generic-complex=\"system\"\n style:font-pitch-complex=\"variable\" style:font-style-complex=\"italic\">\n <loext:char-complex-color loext:theme-type=\"dark1\" loext:color-type=\"theme\">\n <loext:transformation loext:type=\"tint\" loext:value=\"3490\" />\n </loext:char-complex-color>\n </style:text-properties>\n </style:style>\n <style:style style:name=\"Heading_20_7_20_Char\" style:display-name=\"Heading 7 Char\"\n style:family=\"text\" style:parent-style-name=\"Standard\"\n loext:linked-style-name=\"Heading_20_7\">\n <style:text-properties fo:color=\"#595959\" loext:opacity=\"100%\"\n style:font-name-asian=\"F2\" style:font-family-generic-asian=\"system\"\n style:font-pitch-asian=\"variable\" style:font-name-complex=\"F2\"\n style:font-family-generic-complex=\"system\" style:font-pitch-complex=\"variable\">\n <loext:char-complex-color loext:theme-type=\"dark1\" loext:color-type=\"theme\">\n <loext:transformation loext:type=\"tint\" loext:value=\"3490\" />\n </loext:char-complex-color>\n </style:text-properties>\n </style:style>\n <style:style style:name=\"Heading_20_8_20_Char\" style:display-name=\"Heading 8 Char\"\n style:family=\"text\" style:parent-style-name=\"Standard\"\n loext:linked-style-name=\"Heading_20_8\">\n <style:text-properties fo:color=\"#272727\" loext:opacity=\"100%\" fo:font-style=\"italic\"\n style:font-name-asian=\"F2\" style:font-family-generic-asian=\"system\"\n style:font-pitch-asian=\"variable\" style:font-style-asian=\"italic\"\n style:font-name-complex=\"F2\" style:font-family-generic-complex=\"system\"\n style:font-pitch-complex=\"variable\" style:font-style-complex=\"italic\">\n <loext:char-complex-color loext:theme-type=\"dark1\" loext:color-type=\"theme\">\n <loext:transformation loext:type=\"tint\" loext:value=\"1529\" />\n </loext:char-complex-color>\n </style:text-properties>\n </style:style>\n <style:style style:name=\"Heading_20_9_20_Char\" style:display-name=\"Heading 9 Char\"\n style:family=\"text\" style:parent-style-name=\"Standard\"\n loext:linked-style-name=\"Heading_20_9\">\n <style:text-properties fo:color=\"#272727\" loext:opacity=\"100%\"\n style:font-name-asian=\"F2\" style:font-family-generic-asian=\"system\"\n style:font-pitch-asian=\"variable\" style:font-name-complex=\"F2\"\n style:font-family-generic-complex=\"system\" style:font-pitch-complex=\"variable\">\n <loext:char-complex-color loext:theme-type=\"dark1\" loext:color-type=\"theme\">\n <loext:transformation loext:type=\"tint\" loext:value=\"1529\" />\n </loext:char-complex-color>\n </style:text-properties>\n </style:style>\n <style:style style:name=\"Title_20_Char\" style:display-name=\"Title Char\" style:family=\"text\"\n style:parent-style-name=\"Standard\" loext:linked-style-name=\"Title\">\n <style:text-properties style:font-name=\"Inter 18pt\" fo:font-size=\"28pt\"\n fo:letter-spacing=\"-0.0071in\"\n style:letter-kerning=\"true\"\n style:font-size-asian=\"28pt\"\n style:font-size-complex=\"28pt\" />\n </style:style>\n <style:style style:name=\"Subtitle_20_Char\" style:display-name=\"Subtitle Char\"\n style:family=\"text\" style:parent-style-name=\"Standard\"\n loext:linked-style-name=\"Subtitle\">\n <style:text-properties fo:color=\"#595959\" loext:opacity=\"100%\" fo:font-size=\"14pt\"\n fo:letter-spacing=\"0.0102in\" style:font-name-asian=\"F2\"\n style:font-family-generic-asian=\"system\" style:font-pitch-asian=\"variable\"\n style:font-size-asian=\"14pt\" style:font-name-complex=\"F2\"\n style:font-family-generic-complex=\"system\" style:font-pitch-complex=\"variable\"\n style:font-size-complex=\"14pt\">\n <loext:char-complex-color loext:theme-type=\"dark1\" loext:color-type=\"theme\">\n <loext:transformation loext:type=\"tint\" loext:value=\"3490\" />\n </loext:char-complex-color>\n </style:text-properties>\n </style:style>\n <style:style style:name=\"Quote_20_Char\" style:display-name=\"Quote Char\" style:family=\"text\"\n style:parent-style-name=\"Standard\" loext:linked-style-name=\"Quote\">\n <style:text-properties fo:color=\"#404040\" loext:opacity=\"100%\" fo:font-style=\"italic\"\n style:font-style-asian=\"italic\" style:font-style-complex=\"italic\">\n <loext:char-complex-color loext:theme-type=\"dark1\" loext:color-type=\"theme\">\n <loext:transformation loext:type=\"tint\" loext:value=\"2509\" />\n </loext:char-complex-color>\n </style:text-properties>\n </style:style>\n <style:style style:name=\"Intense_20_Emphasis\" style:display-name=\"Intense Emphasis\"\n style:family=\"text\" style:parent-style-name=\"Standard\">\n <style:text-properties fo:color=\"#0f4761\" loext:opacity=\"100%\" fo:font-style=\"italic\"\n style:font-style-asian=\"italic\" style:font-style-complex=\"italic\">\n <loext:char-complex-color loext:theme-type=\"accent1\" loext:color-type=\"theme\">\n <loext:transformation loext:type=\"shade\" loext:value=\"2509\" />\n </loext:char-complex-color>\n </style:text-properties>\n </style:style>\n <style:style style:name=\"Intense_20_Quote_20_Char\" style:display-name=\"Intense Quote Char\"\n style:family=\"text\" style:parent-style-name=\"Standard\"\n loext:linked-style-name=\"Intense_20_Quote\">\n <style:text-properties fo:color=\"#0f4761\" loext:opacity=\"100%\" fo:font-style=\"italic\"\n style:font-style-asian=\"italic\" style:font-style-complex=\"italic\">\n <loext:char-complex-color loext:theme-type=\"accent1\" loext:color-type=\"theme\">\n <loext:transformation loext:type=\"shade\" loext:value=\"2509\" />\n </loext:char-complex-color>\n </style:text-properties>\n </style:style>\n <style:style style:name=\"Intense_20_Reference\" style:display-name=\"Intense Reference\"\n style:family=\"text\" style:parent-style-name=\"Standard\">\n <style:text-properties fo:font-variant=\"small-caps\" fo:color=\"#0f4761\"\n loext:opacity=\"100%\" fo:letter-spacing=\"0.0035in\" fo:font-weight=\"bold\"\n style:font-weight-asian=\"bold\" style:font-weight-complex=\"bold\">\n <loext:char-complex-color loext:theme-type=\"accent1\" loext:color-type=\"theme\">\n <loext:transformation loext:type=\"shade\" loext:value=\"2509\" />\n </loext:char-complex-color>\n </style:text-properties>\n </style:style>\n <style:style style:name=\"Internet_20_link\" style:display-name=\"Internet link\"\n style:family=\"text\" style:parent-style-name=\"Standard\">\n <style:text-properties style:font-name=\"Inter 18pt\" style:font-name-asian=\"Inter 18pt\"\n style:font-name-complex=\"Times New Roman (Body CS)\" fo:color=\"#0000ef\"\n loext:opacity=\"100%\"\n style:text-underline-type=\"single\" style:text-underline-style=\"solid\"\n style:text-underline-width=\"auto\" style:text-underline-mode=\"continuous\"\n style:text-underline-color=\"font-color\" />\n </style:style>\n <style:style style:name=\"Unresolved_20_Mention\" style:display-name=\"Unresolved Mention\"\n style:family=\"text\" style:parent-style-name=\"Standard\">\n <style:text-properties fo:color=\"#605e5c\" loext:opacity=\"100%\"\n fo:background-color=\"#e1dfdd\" />\n </style:style>\n <style:style style:name=\"ListLabel_20_1\" style:display-name=\"ListLabel 1\"\n style:family=\"text\" />\n <style:style style:name=\"ListLabel_20_2\" style:display-name=\"ListLabel 2\"\n style:family=\"text\" />\n <style:style style:name=\"ListLabel_20_3\" style:display-name=\"ListLabel 3\"\n style:family=\"text\" />\n <style:style style:name=\"ListLabel_20_4\" style:display-name=\"ListLabel 4\"\n style:family=\"text\" />\n <style:style style:name=\"ListLabel_20_5\" style:display-name=\"ListLabel 5\"\n style:family=\"text\" />\n <style:style style:name=\"ListLabel_20_6\" style:display-name=\"ListLabel 6\"\n style:family=\"text\" />\n <style:style style:name=\"ListLabel_20_7\" style:display-name=\"ListLabel 7\"\n style:family=\"text\" />\n <style:style style:name=\"ListLabel_20_8\" style:display-name=\"ListLabel 8\"\n style:family=\"text\" />\n <style:style style:name=\"ListLabel_20_9\" style:display-name=\"ListLabel 9\"\n style:family=\"text\" />\n <style:style style:name=\"ListLabel_20_10\" style:display-name=\"ListLabel 10\"\n style:family=\"text\" />\n <style:style style:name=\"ListLabel_20_11\" style:display-name=\"ListLabel 11\"\n style:family=\"text\" />\n <style:style style:name=\"ListLabel_20_12\" style:display-name=\"ListLabel 12\"\n style:family=\"text\" />\n <style:style style:name=\"ListLabel_20_13\" style:display-name=\"ListLabel 13\"\n style:family=\"text\" />\n <style:style style:name=\"ListLabel_20_14\" style:display-name=\"ListLabel 14\"\n style:family=\"text\" />\n <style:style style:name=\"ListLabel_20_15\" style:display-name=\"ListLabel 15\"\n style:family=\"text\" />\n <style:style style:name=\"ListLabel_20_16\" style:display-name=\"ListLabel 16\"\n style:family=\"text\" />\n <style:style style:name=\"ListLabel_20_17\" style:display-name=\"ListLabel 17\"\n style:family=\"text\" />\n <style:style style:name=\"ListLabel_20_18\" style:display-name=\"ListLabel 18\"\n style:family=\"text\" />\n <style:style style:name=\"ListLabel_20_19\" style:display-name=\"ListLabel 19\"\n style:family=\"text\" />\n <style:style style:name=\"ListLabel_20_20\" style:display-name=\"ListLabel 20\"\n style:family=\"text\" />\n <style:style style:name=\"ListLabel_20_21\" style:display-name=\"ListLabel 21\"\n style:family=\"text\" />\n <style:style style:name=\"ListLabel_20_22\" style:display-name=\"ListLabel 22\"\n style:family=\"text\" />\n <style:style style:name=\"ListLabel_20_23\" style:display-name=\"ListLabel 23\"\n style:family=\"text\" />\n <style:style style:name=\"ListLabel_20_24\" style:display-name=\"ListLabel 24\"\n style:family=\"text\" />\n <style:style style:name=\"ListLabel_20_25\" style:display-name=\"ListLabel 25\"\n style:family=\"text\" />\n <style:style style:name=\"ListLabel_20_26\" style:display-name=\"ListLabel 26\"\n style:family=\"text\" />\n <style:style style:name=\"ListLabel_20_27\" style:display-name=\"ListLabel 27\"\n style:family=\"text\" />\n <style:style style:name=\"ListLabel_20_28\" style:display-name=\"ListLabel 28\"\n style:family=\"text\" />\n <style:style style:name=\"Graphics\" style:family=\"graphic\">\n <style:graphic-properties text:anchor-type=\"paragraph\" svg:x=\"0in\" svg:y=\"0in\"\n style:wrap=\"dynamic\" style:number-wrapped-paragraphs=\"no-limit\"\n style:wrap-contour=\"false\" style:vertical-pos=\"top\" style:vertical-rel=\"paragraph\"\n style:horizontal-pos=\"center\" style:horizontal-rel=\"paragraph\" draw:fill=\"none\" />\n </style:style>\n <style:style style:name=\"Frame\" style:family=\"graphic\">\n <style:graphic-properties fo:margin-left=\"0in\" fo:margin-right=\"0in\" fo:margin-top=\"0in\"\n fo:margin-bottom=\"0in\" style:run-through=\"foreground\" style:wrap=\"dynamic\"\n style:number-wrapped-paragraphs=\"no-limit\" style:vertical-pos=\"from-top\"\n style:horizontal-pos=\"center\" style:horizontal-rel=\"paragraph\" fo:padding=\"0in\"\n draw:fill=\"none\"\n draw:stroke=\"none\"\n fo:border=\"none\"\n style:shadow=\"none\" svg:stroke-color=\"transparent\"\n draw:shadow-opacity=\"100%\"\n loext:rel-width-rel=\"paragraph\" />\n </style:style>\n <text:outline-style style:name=\"Outline\">\n <text:outline-level-style text:level=\"1\" style:num-format=\"\">\n <style:list-level-properties\n text:list-level-position-and-space-mode=\"label-alignment\">\n <style:list-level-label-alignment text:label-followed-by=\"listtab\" />\n </style:list-level-properties>\n </text:outline-level-style>\n <text:outline-level-style text:level=\"2\" style:num-format=\"\">\n <style:list-level-properties\n text:list-level-position-and-space-mode=\"label-alignment\">\n <style:list-level-label-alignment text:label-followed-by=\"listtab\" />\n </style:list-level-properties>\n </text:outline-level-style>\n <text:outline-level-style text:level=\"3\" style:num-format=\"\">\n <style:list-level-properties\n text:list-level-position-and-space-mode=\"label-alignment\">\n <style:list-level-label-alignment text:label-followed-by=\"listtab\" />\n </style:list-level-properties>\n </text:outline-level-style>\n <text:outline-level-style text:level=\"4\" style:num-format=\"\">\n <style:list-level-properties\n text:list-level-position-and-space-mode=\"label-alignment\">\n <style:list-level-label-alignment text:label-followed-by=\"listtab\" />\n </style:list-level-properties>\n </text:outline-level-style>\n <text:outline-level-style text:level=\"5\" style:num-format=\"\">\n <style:list-level-properties\n text:list-level-position-and-space-mode=\"label-alignment\">\n <style:list-level-label-alignment text:label-followed-by=\"listtab\" />\n </style:list-level-properties>\n </text:outline-level-style>\n <text:outline-level-style text:level=\"6\" style:num-format=\"\">\n <style:list-level-properties\n text:list-level-position-and-space-mode=\"label-alignment\">\n <style:list-level-label-alignment text:label-followed-by=\"listtab\" />\n </style:list-level-properties>\n </text:outline-level-style>\n <text:outline-level-style text:level=\"7\" style:num-format=\"\">\n <style:list-level-properties\n text:list-level-position-and-space-mode=\"label-alignment\">\n <style:list-level-label-alignment text:label-followed-by=\"listtab\" />\n </style:list-level-properties>\n </text:outline-level-style>\n <text:outline-level-style text:level=\"8\" style:num-format=\"\">\n <style:list-level-properties\n text:list-level-position-and-space-mode=\"label-alignment\">\n <style:list-level-label-alignment text:label-followed-by=\"listtab\" />\n </style:list-level-properties>\n </text:outline-level-style>\n <text:outline-level-style text:level=\"9\" style:num-format=\"\">\n <style:list-level-properties\n text:list-level-position-and-space-mode=\"label-alignment\">\n <style:list-level-label-alignment text:label-followed-by=\"listtab\" />\n </style:list-level-properties>\n </text:outline-level-style>\n <text:outline-level-style text:level=\"10\" style:num-format=\"\">\n <style:list-level-properties\n text:list-level-position-and-space-mode=\"label-alignment\">\n <style:list-level-label-alignment text:label-followed-by=\"listtab\" />\n </style:list-level-properties>\n </text:outline-level-style>\n </text:outline-style>\n <text:list-style style:name=\"No_20_List\" style:display-name=\"No List\">\n <text:list-level-style-number text:level=\"1\" loext:num-list-format=\"%1%.\"\n style:num-suffix=\".\" style:num-format=\"1\">\n <style:list-level-properties\n text:list-level-position-and-space-mode=\"label-alignment\">\n <style:list-level-label-alignment text:label-followed-by=\"listtab\"\n text:list-tab-stop-position=\"0.5in\" fo:text-indent=\"-0.25in\"\n fo:margin-left=\"0.5in\" />\n </style:list-level-properties>\n </text:list-level-style-number>\n <text:list-level-style-number text:level=\"2\" loext:num-list-format=\"%2%.\"\n style:num-suffix=\".\" style:num-format=\"1\">\n <style:list-level-properties\n text:list-level-position-and-space-mode=\"label-alignment\">\n <style:list-level-label-alignment text:label-followed-by=\"listtab\"\n text:list-tab-stop-position=\"0.75in\" fo:text-indent=\"-0.25in\"\n fo:margin-left=\"0.75in\" />\n </style:list-level-properties>\n </text:list-level-style-number>\n <text:list-level-style-number text:level=\"3\" loext:num-list-format=\"%3%.\"\n style:num-suffix=\".\" style:num-format=\"1\">\n <style:list-level-properties\n text:list-level-position-and-space-mode=\"label-alignment\">\n <style:list-level-label-alignment text:label-followed-by=\"listtab\"\n text:list-tab-stop-position=\"1in\" fo:text-indent=\"-0.25in\"\n fo:margin-left=\"1in\" />\n </style:list-level-properties>\n </text:list-level-style-number>\n <text:list-level-style-number text:level=\"4\" loext:num-list-format=\"%4%.\"\n style:num-suffix=\".\" style:num-format=\"1\">\n <style:list-level-properties\n text:list-level-position-and-space-mode=\"label-alignment\">\n <style:list-level-label-alignment text:label-followed-by=\"listtab\"\n text:list-tab-stop-position=\"1.25in\" fo:text-indent=\"-0.25in\"\n fo:margin-left=\"1.25in\" />\n </style:list-level-properties>\n </text:list-level-style-number>\n <text:list-level-style-number text:level=\"5\" loext:num-list-format=\"%5%.\"\n style:num-suffix=\".\" style:num-format=\"1\">\n <style:list-level-properties\n text:list-level-position-and-space-mode=\"label-alignment\">\n <style:list-level-label-alignment text:label-followed-by=\"listtab\"\n text:list-tab-stop-position=\"1.5in\" fo:text-indent=\"-0.25in\"\n fo:margin-left=\"1.5in\" />\n </style:list-level-properties>\n </text:list-level-style-number>\n <text:list-level-style-number text:level=\"6\" loext:num-list-format=\"%6%.\"\n style:num-suffix=\".\" style:num-format=\"1\">\n <style:list-level-properties\n text:list-level-position-and-space-mode=\"label-alignment\">\n <style:list-level-label-alignment text:label-followed-by=\"listtab\"\n text:list-tab-stop-position=\"1.75in\" fo:text-indent=\"-0.25in\"\n fo:margin-left=\"1.75in\" />\n </style:list-level-properties>\n </text:list-level-style-number>\n <text:list-level-style-number text:level=\"7\" loext:num-list-format=\"%7%.\"\n style:num-suffix=\".\" style:num-format=\"1\">\n <style:list-level-properties\n text:list-level-position-and-space-mode=\"label-alignment\">\n <style:list-level-label-alignment text:label-followed-by=\"listtab\"\n text:list-tab-stop-position=\"2in\" fo:text-indent=\"-0.25in\"\n fo:margin-left=\"2in\" />\n </style:list-level-properties>\n </text:list-level-style-number>\n <text:list-level-style-number text:level=\"8\" loext:num-list-format=\"%8%.\"\n style:num-suffix=\".\" style:num-format=\"1\">\n <style:list-level-properties\n text:list-level-position-and-space-mode=\"label-alignment\">\n <style:list-level-label-alignment text:label-followed-by=\"listtab\"\n text:list-tab-stop-position=\"2.25in\" fo:text-indent=\"-0.25in\"\n fo:margin-left=\"2.25in\" />\n </style:list-level-properties>\n </text:list-level-style-number>\n <text:list-level-style-number text:level=\"9\" loext:num-list-format=\"%9%.\"\n style:num-suffix=\".\" style:num-format=\"1\">\n <style:list-level-properties\n text:list-level-position-and-space-mode=\"label-alignment\">\n <style:list-level-label-alignment text:label-followed-by=\"listtab\"\n text:list-tab-stop-position=\"2.5in\" fo:text-indent=\"-0.25in\"\n fo:margin-left=\"2.5in\" />\n </style:list-level-properties>\n </text:list-level-style-number>\n <text:list-level-style-number text:level=\"10\" loext:num-list-format=\"%10%.\"\n style:num-suffix=\".\" style:num-format=\"1\">\n <style:list-level-properties\n text:list-level-position-and-space-mode=\"label-alignment\">\n <style:list-level-label-alignment text:label-followed-by=\"listtab\"\n text:list-tab-stop-position=\"2.75in\" fo:text-indent=\"-0.25in\"\n fo:margin-left=\"2.75in\" />\n </style:list-level-properties>\n </text:list-level-style-number>\n </text:list-style>\n <text:list-style style:name=\"WWNum1\">\n <text:list-level-style-bullet text:level=\"1\" text:style-name=\"ListLabel_20_1\"\n loext:num-list-format=\"•\" style:num-suffix=\"•\" text:bullet-char=\"•\">\n <style:list-level-properties\n text:list-level-position-and-space-mode=\"label-alignment\">\n <style:list-level-label-alignment text:label-followed-by=\"listtab\"\n fo:text-indent=\"-0.25in\" fo:margin-left=\"0.5in\" />\n </style:list-level-properties>\n </text:list-level-style-bullet>\n <text:list-level-style-bullet text:level=\"2\" text:style-name=\"ListLabel_20_2\"\n loext:num-list-format=\"◦\" style:num-suffix=\"◦\" text:bullet-char=\"◦\">\n <style:list-level-properties\n text:list-level-position-and-space-mode=\"label-alignment\">\n <style:list-level-label-alignment text:label-followed-by=\"listtab\"\n fo:text-indent=\"-0.25in\" fo:margin-left=\"1in\" />\n </style:list-level-properties>\n </text:list-level-style-bullet>\n <text:list-level-style-bullet text:level=\"3\" text:style-name=\"ListLabel_20_3\"\n loext:num-list-format=\"▪\" style:num-suffix=\"▪\" text:bullet-char=\"▪\">\n <style:list-level-properties\n text:list-level-position-and-space-mode=\"label-alignment\">\n <style:list-level-label-alignment text:label-followed-by=\"listtab\"\n fo:text-indent=\"-0.25in\" fo:margin-left=\"1.5in\" />\n </style:list-level-properties>\n </text:list-level-style-bullet>\n <text:list-level-style-bullet text:level=\"4\" text:style-name=\"ListLabel_20_4\"\n loext:num-list-format=\"•\" style:num-suffix=\"•\" text:bullet-char=\"•\">\n <style:list-level-properties\n text:list-level-position-and-space-mode=\"label-alignment\">\n <style:list-level-label-alignment text:label-followed-by=\"listtab\"\n fo:text-indent=\"-0.25in\" fo:margin-left=\"2in\" />\n </style:list-level-properties>\n </text:list-level-style-bullet>\n <text:list-level-style-bullet text:level=\"5\" text:style-name=\"ListLabel_20_5\"\n loext:num-list-format=\"◦\" style:num-suffix=\"◦\" text:bullet-char=\"◦\">\n <style:list-level-properties\n text:list-level-position-and-space-mode=\"label-alignment\">\n <style:list-level-label-alignment text:label-followed-by=\"listtab\"\n fo:text-indent=\"-0.25in\" fo:margin-left=\"2.5in\" />\n </style:list-level-properties>\n </text:list-level-style-bullet>\n <text:list-level-style-bullet text:level=\"6\" text:style-name=\"ListLabel_20_6\"\n loext:num-list-format=\"▪\" style:num-suffix=\"▪\" text:bullet-char=\"▪\">\n <style:list-level-properties\n text:list-level-position-and-space-mode=\"label-alignment\">\n <style:list-level-label-alignment text:label-followed-by=\"listtab\"\n fo:text-indent=\"-0.25in\" fo:margin-left=\"3in\" />\n </style:list-level-properties>\n </text:list-level-style-bullet>\n <text:list-level-style-bullet text:level=\"7\" text:style-name=\"ListLabel_20_7\"\n loext:num-list-format=\"•\" style:num-suffix=\"•\" text:bullet-char=\"•\">\n <style:list-level-properties\n text:list-level-position-and-space-mode=\"label-alignment\">\n <style:list-level-label-alignment text:label-followed-by=\"listtab\"\n fo:text-indent=\"-0.25in\" fo:margin-left=\"3.5in\" />\n </style:list-level-properties>\n </text:list-level-style-bullet>\n <text:list-level-style-bullet text:level=\"8\" text:style-name=\"ListLabel_20_8\"\n loext:num-list-format=\"•\" style:num-suffix=\"•\" text:bullet-char=\"•\">\n <style:list-level-properties\n text:list-level-position-and-space-mode=\"label-alignment\">\n <style:list-level-label-alignment text:label-followed-by=\"listtab\"\n fo:text-indent=\"-0.25in\" fo:margin-left=\"4in\" />\n </style:list-level-properties>\n </text:list-level-style-bullet>\n <text:list-level-style-bullet text:level=\"9\" text:style-name=\"ListLabel_20_9\"\n loext:num-list-format=\"•\" style:num-suffix=\"•\" text:bullet-char=\"•\">\n <style:list-level-properties\n text:list-level-position-and-space-mode=\"label-alignment\">\n <style:list-level-label-alignment text:label-followed-by=\"listtab\"\n fo:text-indent=\"-0.25in\" fo:margin-left=\"4.5in\" />\n </style:list-level-properties>\n </text:list-level-style-bullet>\n <text:list-level-style-number text:level=\"10\" loext:num-list-format=\"%10%.\"\n style:num-suffix=\".\" style:num-format=\"1\">\n <style:list-level-properties\n text:list-level-position-and-space-mode=\"label-alignment\">\n <style:list-level-label-alignment text:label-followed-by=\"listtab\"\n text:list-tab-stop-position=\"2.75in\" fo:text-indent=\"-0.25in\"\n fo:margin-left=\"2.75in\" />\n </style:list-level-properties>\n </text:list-level-style-number>\n </text:list-style>\n <text:list-style style:name=\"WWNum2\">\n <text:list-level-style-bullet text:level=\"1\" text:style-name=\"ListLabel_20_10\"\n loext:num-list-format=\"•\" style:num-suffix=\"•\" text:bullet-char=\"•\">\n <style:list-level-properties\n text:list-level-position-and-space-mode=\"label-alignment\">\n <style:list-level-label-alignment text:label-followed-by=\"listtab\"\n fo:text-indent=\"-0.25in\" fo:margin-left=\"0.25in\" />\n </style:list-level-properties>\n </text:list-level-style-bullet>\n <text:list-level-style-bullet text:level=\"2\" text:style-name=\"ListLabel_20_11\"\n loext:num-list-format=\"•\" style:num-suffix=\"•\" text:bullet-char=\"•\">\n <style:list-level-properties\n text:list-level-position-and-space-mode=\"label-alignment\">\n <style:list-level-label-alignment text:label-followed-by=\"listtab\"\n fo:text-indent=\"-0.25in\" fo:margin-left=\"0.5in\" />\n </style:list-level-properties>\n </text:list-level-style-bullet>\n <text:list-level-style-bullet text:level=\"3\" text:style-name=\"ListLabel_20_12\"\n loext:num-list-format=\"•\" style:num-suffix=\"•\" text:bullet-char=\"•\">\n <style:list-level-properties\n text:list-level-position-and-space-mode=\"label-alignment\">\n <style:list-level-label-alignment text:label-followed-by=\"listtab\"\n fo:text-indent=\"-0.25in\" fo:margin-left=\"0.75in\" />\n </style:list-level-properties>\n </text:list-level-style-bullet>\n <text:list-level-style-bullet text:level=\"4\" text:style-name=\"ListLabel_20_13\"\n loext:num-list-format=\"•\" style:num-suffix=\"•\" text:bullet-char=\"•\">\n <style:list-level-properties\n text:list-level-position-and-space-mode=\"label-alignment\">\n <style:list-level-label-alignment text:label-followed-by=\"listtab\"\n fo:text-indent=\"-0.25in\" fo:margin-left=\"1in\" />\n </style:list-level-properties>\n </text:list-level-style-bullet>\n <text:list-level-style-bullet text:level=\"5\" text:style-name=\"ListLabel_20_14\"\n loext:num-list-format=\"•\" style:num-suffix=\"•\" text:bullet-char=\"•\">\n <style:list-level-properties\n text:list-level-position-and-space-mode=\"label-alignment\">\n <style:list-level-label-alignment text:label-followed-by=\"listtab\"\n fo:text-indent=\"-0.25in\" fo:margin-left=\"1.25in\" />\n </style:list-level-properties>\n </text:list-level-style-bullet>\n <text:list-level-style-bullet text:level=\"6\" text:style-name=\"ListLabel_20_15\"\n loext:num-list-format=\"•\" style:num-suffix=\"•\" text:bullet-char=\"•\">\n <style:list-level-properties\n text:list-level-position-and-space-mode=\"label-alignment\">\n <style:list-level-label-alignment text:label-followed-by=\"listtab\"\n fo:text-indent=\"-0.25in\" fo:margin-left=\"1.5in\" />\n </style:list-level-properties>\n </text:list-level-style-bullet>\n <text:list-level-style-bullet text:level=\"7\" text:style-name=\"ListLabel_20_16\"\n loext:num-list-format=\"•\" style:num-suffix=\"•\" text:bullet-char=\"•\">\n <style:list-level-properties\n text:list-level-position-and-space-mode=\"label-alignment\">\n <style:list-level-label-alignment text:label-followed-by=\"listtab\"\n fo:text-indent=\"-0.25in\" fo:margin-left=\"1.75in\" />\n </style:list-level-properties>\n </text:list-level-style-bullet>\n <text:list-level-style-bullet text:level=\"8\" text:style-name=\"ListLabel_20_17\"\n loext:num-list-format=\"•\" style:num-suffix=\"•\" text:bullet-char=\"•\">\n <style:list-level-properties\n text:list-level-position-and-space-mode=\"label-alignment\">\n <style:list-level-label-alignment text:label-followed-by=\"listtab\"\n fo:text-indent=\"-0.25in\" fo:margin-left=\"2in\" />\n </style:list-level-properties>\n </text:list-level-style-bullet>\n <text:list-level-style-bullet text:level=\"9\" text:style-name=\"ListLabel_20_18\"\n loext:num-list-format=\"•\" style:num-suffix=\"•\" text:bullet-char=\"•\">\n <style:list-level-properties\n text:list-level-position-and-space-mode=\"label-alignment\">\n <style:list-level-label-alignment text:label-followed-by=\"listtab\"\n fo:text-indent=\"-0.25in\" fo:margin-left=\"2.25in\" />\n </style:list-level-properties>\n </text:list-level-style-bullet>\n <text:list-level-style-number text:level=\"10\" loext:num-list-format=\"%10%.\"\n style:num-suffix=\".\" style:num-format=\"1\">\n <style:list-level-properties\n text:list-level-position-and-space-mode=\"label-alignment\">\n <style:list-level-label-alignment text:label-followed-by=\"listtab\"\n text:list-tab-stop-position=\"2.75in\" fo:text-indent=\"-0.25in\"\n fo:margin-left=\"2.75in\" />\n </style:list-level-properties>\n </text:list-level-style-number>\n </text:list-style>\n <text:list-style style:name=\"WWNum3\">\n <text:list-level-style-number text:level=\"1\" text:style-name=\"ListLabel_20_19\"\n loext:num-list-format=\"%1%.\" style:num-suffix=\".\" style:num-format=\"1\">\n <style:list-level-properties\n text:list-level-position-and-space-mode=\"label-alignment\">\n <style:list-level-label-alignment text:label-followed-by=\"listtab\"\n fo:text-indent=\"-0.25in\" fo:margin-left=\"0.25in\" />\n </style:list-level-properties>\n </text:list-level-style-number>\n <text:list-level-style-number text:level=\"2\" text:style-name=\"ListLabel_20_20\"\n loext:num-list-format=\"%2%.\" style:num-suffix=\".\" style:num-format=\"1\">\n <style:list-level-properties\n text:list-level-position-and-space-mode=\"label-alignment\">\n <style:list-level-label-alignment text:label-followed-by=\"listtab\"\n fo:text-indent=\"-0.25in\" fo:margin-left=\"0.5in\" />\n </style:list-level-properties>\n </text:list-level-style-number>\n <text:list-level-style-number text:level=\"3\" text:style-name=\"ListLabel_20_21\"\n loext:num-list-format=\"%3%.\" style:num-suffix=\".\" style:num-format=\"1\">\n <style:list-level-properties\n text:list-level-position-and-space-mode=\"label-alignment\">\n <style:list-level-label-alignment text:label-followed-by=\"listtab\"\n fo:text-indent=\"-0.25in\" fo:margin-left=\"0.75in\" />\n </style:list-level-properties>\n </text:list-level-style-number>\n <text:list-level-style-number text:level=\"4\" text:style-name=\"ListLabel_20_22\"\n loext:num-list-format=\"%4%.\" style:num-suffix=\".\" style:num-format=\"1\">\n <style:list-level-properties\n text:list-level-position-and-space-mode=\"label-alignment\">\n <style:list-level-label-alignment text:label-followed-by=\"listtab\"\n fo:text-indent=\"-0.25in\" fo:margin-left=\"1in\" />\n </style:list-level-properties>\n </text:list-level-style-number>\n <text:list-level-style-number text:level=\"5\" text:style-name=\"ListLabel_20_23\"\n loext:num-list-format=\"%5%.\" style:num-suffix=\".\" style:num-format=\"1\">\n <style:list-level-properties\n text:list-level-position-and-space-mode=\"label-alignment\">\n <style:list-level-label-alignment text:label-followed-by=\"listtab\"\n fo:text-indent=\"-0.25in\" fo:margin-left=\"1.25in\" />\n </style:list-level-properties>\n </text:list-level-style-number>\n <text:list-level-style-number text:level=\"6\" text:style-name=\"ListLabel_20_24\"\n loext:num-list-format=\"%6%.\" style:num-suffix=\".\" style:num-format=\"1\">\n <style:list-level-properties\n text:list-level-position-and-space-mode=\"label-alignment\">\n <style:list-level-label-alignment text:label-followed-by=\"listtab\"\n fo:text-indent=\"-0.25in\" fo:margin-left=\"1.5in\" />\n </style:list-level-properties>\n </text:list-level-style-number>\n <text:list-level-style-number text:level=\"7\" text:style-name=\"ListLabel_20_25\"\n loext:num-list-format=\"%7%.\" style:num-suffix=\".\" style:num-format=\"1\">\n <style:list-level-properties\n text:list-level-position-and-space-mode=\"label-alignment\">\n <style:list-level-label-alignment text:label-followed-by=\"listtab\"\n fo:text-indent=\"-0.25in\" fo:margin-left=\"1.75in\" />\n </style:list-level-properties>\n </text:list-level-style-number>\n <text:list-level-style-number text:level=\"8\" text:style-name=\"ListLabel_20_26\"\n loext:num-list-format=\"%8%.\" style:num-suffix=\".\" style:num-format=\"1\">\n <style:list-level-properties\n text:list-level-position-and-space-mode=\"label-alignment\">\n <style:list-level-label-alignment text:label-followed-by=\"listtab\"\n fo:text-indent=\"-0.25in\" fo:margin-left=\"2in\" />\n </style:list-level-properties>\n </text:list-level-style-number>\n <text:list-level-style-number text:level=\"9\" text:style-name=\"ListLabel_20_27\"\n loext:num-list-format=\"%9%.\" style:num-suffix=\".\" style:num-format=\"1\">\n <style:list-level-properties\n text:list-level-position-and-space-mode=\"label-alignment\">\n <style:list-level-label-alignment text:label-followed-by=\"listtab\"\n fo:text-indent=\"-0.25in\" fo:margin-left=\"2.25in\" />\n </style:list-level-properties>\n </text:list-level-style-number>\n <text:list-level-style-number text:level=\"10\" loext:num-list-format=\"%10%.\"\n style:num-suffix=\".\" style:num-format=\"1\">\n <style:list-level-properties\n text:list-level-position-and-space-mode=\"label-alignment\">\n <style:list-level-label-alignment text:label-followed-by=\"listtab\"\n text:list-tab-stop-position=\"2.75in\" fo:text-indent=\"-0.25in\"\n fo:margin-left=\"2.75in\" />\n </style:list-level-properties>\n </text:list-level-style-number>\n </text:list-style>\n <text:notes-configuration text:note-class=\"footnote\" style:num-format=\"1\"\n text:start-value=\"0\" text:footnotes-position=\"page\" text:start-numbering-at=\"document\" />\n <text:notes-configuration text:note-class=\"endnote\" style:num-format=\"i\"\n text:start-value=\"0\" />\n <text:linenumbering-configuration text:number-lines=\"false\" text:offset=\"0.1965in\"\n style:num-format=\"1\" text:number-position=\"left\" text:increment=\"5\" />\n <style:default-page-layout>\n <style:page-layout-properties style:layout-grid-standard-mode=\"true\" />\n </style:default-page-layout>\n <loext:theme loext:name=\"Office\">\n <loext:theme-colors loext:name=\"LibreOffice\">\n <loext:color loext:name=\"dark1\" loext:color=\"#000000\" />\n <loext:color loext:name=\"light1\" loext:color=\"#ffffff\" />\n <loext:color loext:name=\"dark2\" loext:color=\"#000000\" />\n <loext:color loext:name=\"light2\" loext:color=\"#ffffff\" />\n <loext:color loext:name=\"accent1\" loext:color=\"#18a303\" />\n <loext:color loext:name=\"accent2\" loext:color=\"#0369a3\" />\n <loext:color loext:name=\"accent3\" loext:color=\"#a33e03\" />\n <loext:color loext:name=\"accent4\" loext:color=\"#8e03a3\" />\n <loext:color loext:name=\"accent5\" loext:color=\"#c99c00\" />\n <loext:color loext:name=\"accent6\" loext:color=\"#c9211e\" />\n <loext:color loext:name=\"hyperlink\" loext:color=\"#0000ee\" />\n <loext:color loext:name=\"followed-hyperlink\" loext:color=\"#551a8b\" />\n </loext:theme-colors>\n </loext:theme>\n </office:styles>\n <office:automatic-styles>\n <style:style style:name=\"MP1\" style:family=\"paragraph\" style:parent-style-name=\"Header\">\n <style:text-properties officeooo:rsid=\"0008951b\" officeooo:paragraph-rsid=\"0008951b\" />\n </style:style>\n <style:style style:name=\"MP2\" style:family=\"paragraph\" style:parent-style-name=\"Footer\">\n <style:text-properties officeooo:rsid=\"0008951b\" officeooo:paragraph-rsid=\"0008951b\" />\n </style:style>\n <style:page-layout style:name=\"Mpm1\">\n <style:page-layout-properties fo:page-width=\"8.2681in\" fo:page-height=\"11.6929in\"\n style:num-format=\"1\" style:print-orientation=\"portrait\" fo:margin-top=\"1in\"\n fo:margin-bottom=\"1in\" fo:margin-left=\"1in\" fo:margin-right=\"1in\"\n style:writing-mode=\"lr-tb\" style:layout-grid-color=\"#c0c0c0\"\n style:layout-grid-lines=\"38\" style:layout-grid-base-height=\"0.25in\"\n style:layout-grid-ruby-height=\"0in\" style:layout-grid-mode=\"none\"\n style:layout-grid-ruby-below=\"false\" style:layout-grid-print=\"false\"\n style:layout-grid-display=\"false\" style:layout-grid-base-width=\"0.1665in\"\n style:layout-grid-snap-to=\"true\" style:footnote-max-height=\"0in\"\n loext:margin-gutter=\"0in\">\n <style:footnote-sep style:width=\"0.0071in\" style:distance-before-sep=\"0.0398in\"\n style:distance-after-sep=\"0.0398in\" style:line-style=\"solid\"\n style:adjustment=\"left\" style:rel-width=\"25%\" style:color=\"#000000\" />\n </style:page-layout-properties>\n <style:header-style>\n <style:header-footer-properties fo:min-height=\"0in\" fo:margin-bottom=\"0.1965in\"\n fo:background-color=\"transparent\" />\n </style:header-style>\n <style:footer-style>\n <style:header-footer-properties fo:min-height=\"0in\" fo:margin-top=\"0.1965in\"\n fo:background-color=\"transparent\" />\n </style:footer-style>\n </style:page-layout>\n <style:style style:name=\"Mdp1\" style:family=\"drawing-page\">\n <style:drawing-page-properties draw:background-size=\"full\" />\n </style:style>\n </office:automatic-styles>\n <office:master-styles>\n <style:master-page style:name=\"Standard\" style:page-layout-name=\"Mpm1\"\n draw:style-name=\"Mdp1\" />\n </office:master-styles>\n</office:document-styles>", b = class extends t {
354
+ automaticStyles = /* @__PURE__ */ new Map();
355
+ pictures = /* @__PURE__ */ new Map();
356
+ styleCounter = 0;
357
+ options;
358
+ constructor(t, n, r) {
359
+ let i = { colors: e };
360
+ super(t, n, {
361
+ ...i,
362
+ ...r
363
+ }), this.schema = t, this.options = {
364
+ ...i,
365
+ ...r
366
+ };
367
+ }
368
+ async loadFonts() {
369
+ let e = await _(await import("./Inter_18pt-Regular-BmXJYfrM.js")), t = await _(await import("./GeistMono-Regular-D2zmhEYE.js"));
370
+ return [{
371
+ name: "Inter 18pt",
372
+ fileName: "Inter_18pt-Regular.ttf",
373
+ data: new Blob([e], { type: "font/ttf" })
374
+ }, {
375
+ name: "Geist Mono",
376
+ fileName: "GeistMono-Regular.ttf",
377
+ data: new Blob([t], { type: "font/ttf" })
378
+ }];
379
+ }
380
+ transformStyledText(e) {
381
+ let t = this.mapStyles(e.styles), n = Object.assign({}, ...t);
382
+ if (Object.keys(n).length === 0) return e.text;
383
+ let r = `BN_T${++this.styleCounter}`;
384
+ return this.automaticStyles.set(r, /* @__PURE__ */ i("style:style", {
385
+ "style:name": r,
386
+ "style:family": "text",
387
+ children: /* @__PURE__ */ i("style:text-properties", { ...n })
388
+ })), /* @__PURE__ */ i("text:span", {
389
+ "text:style-name": r,
390
+ children: e.text
391
+ });
392
+ }
393
+ async transformBlocks(e, t = 0) {
394
+ let n = [], r = 0;
395
+ for (let i of e) if (i.type === "numberedListItem" ? r++ : r = 0, ["columnList", "column"].includes(i.type)) {
396
+ let e = await this.transformBlocks(i.children, 0), t = await this.mapBlock(i, 0, r, e);
397
+ n.push(t);
398
+ } else {
399
+ let e = await this.transformBlocks(i.children, t + 1), a = await this.mapBlock(i, t, r, e);
400
+ n.push(a), e.length > 0 && n.push(...e);
401
+ }
402
+ return n;
403
+ }
404
+ async toODTDocument(e, t) {
405
+ let n = (e) => {
406
+ let t = /<([a-zA-Z0-9:]+)\s+?(?:xml)ns(?::[a-zA-Z0-9]+)?=".*"(.*)>/g, n = "";
407
+ return n = typeof e == "string" ? e : new XMLSerializer().serializeToString(e), n.replace(t, "<$1$2>");
408
+ }, r = await this.transformBlocks(e), d = Array.from(this.automaticStyles.values()), f = Array.from(this.pictures.values()), p = await this.loadFonts(), m = n(t?.header || ""), h = n(t?.footer || ""), g = /* @__PURE__ */ a("office:document-content", {
409
+ "xmlns:office": "urn:oasis:names:tc:opendocument:xmlns:office:1.0",
410
+ "xmlns:text": "urn:oasis:names:tc:opendocument:xmlns:text:1.0",
411
+ "xmlns:table": "urn:oasis:names:tc:opendocument:xmlns:table:1.0",
412
+ "xmlns:draw": "urn:oasis:names:tc:opendocument:xmlns:drawing:1.0",
413
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
414
+ "xmlns:style": "urn:oasis:names:tc:opendocument:xmlns:style:1.0",
415
+ "xmlns:fo": "urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0",
416
+ "xmlns:svg": "urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0",
417
+ "xmlns:loext": "urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0",
418
+ "office:version": "1.3",
419
+ children: [
420
+ /* @__PURE__ */ i("office:font-face-decls", { children: p.map((e) => /* @__PURE__ */ i("style:font-face", {
421
+ "style:name": e.name,
422
+ "svg:font-family": e.name,
423
+ "style:font-pitch": "variable",
424
+ children: /* @__PURE__ */ i("svg:font-face-src", { children: /* @__PURE__ */ i("svg:font-face-uri", {
425
+ "xlink:href": `Fonts/${e.fileName}`,
426
+ "xlink:type": "simple",
427
+ "loext:font-style": "normal",
428
+ "loext:font-weight": "normal",
429
+ children: /* @__PURE__ */ i("svg:font-face-format", { "svg:string": "truetype" })
430
+ }) })
431
+ })) }),
432
+ /* @__PURE__ */ i("office:automatic-styles", { children: d }),
433
+ (m || h) && /* @__PURE__ */ i("office:master-styles", { children: /* @__PURE__ */ a("style:master-page", {
434
+ "style:name": "Standard",
435
+ "style:page-layout-name": "Mpm1",
436
+ "draw:style-name": "Mdp1",
437
+ children: [m && /* @__PURE__ */ i("style:header", { dangerouslySetInnerHTML: { __html: m } }), h && /* @__PURE__ */ i("style:footer", { dangerouslySetInnerHTML: { __html: h } })]
438
+ }) }),
439
+ /* @__PURE__ */ i("office:body", { children: /* @__PURE__ */ i("office:text", { children: r }) })
440
+ ]
441
+ }), _ = /* @__PURE__ */ a("manifest:manifest", {
442
+ "xmlns:manifest": "urn:oasis:names:tc:opendocument:xmlns:manifest:1.0",
443
+ "manifest:version": "1.3",
444
+ children: [
445
+ /* @__PURE__ */ i("manifest:file-entry", {
446
+ "manifest:media-type": "application/vnd.oasis.opendocument.text",
447
+ "manifest:full-path": "/"
448
+ }),
449
+ /* @__PURE__ */ i("manifest:file-entry", {
450
+ "manifest:media-type": "text/xml",
451
+ "manifest:full-path": "content.xml"
452
+ }),
453
+ /* @__PURE__ */ i("manifest:file-entry", {
454
+ "manifest:media-type": "text/xml",
455
+ "manifest:full-path": "styles.xml"
456
+ }),
457
+ f.map((e) => /* @__PURE__ */ i("manifest:file-entry", {
458
+ "manifest:media-type": e.file.type,
459
+ "manifest:full-path": `Pictures/${e.fileName}`
460
+ })),
461
+ p.map((e) => /* @__PURE__ */ i("manifest:file-entry", {
462
+ "manifest:media-type": "application/x-font-ttf",
463
+ "manifest:full-path": `Fonts/${e.fileName}`
464
+ }))
465
+ ]
466
+ }), v = new l(new s("application/vnd.oasis.opendocument.text"));
467
+ v.add("mimetype", new c("application/vnd.oasis.opendocument.text"), {
468
+ compressionMethod: 0,
469
+ level: 0,
470
+ dataDescriptor: !1,
471
+ extendedTimestamp: !1
472
+ });
473
+ let b = u(g), x = u(_);
474
+ return v.add("content.xml", new c(b)), v.add("styles.xml", new c(y)), v.add("META-INF/manifest.xml", new c(x)), p.forEach((e) => {
475
+ v.add(`Fonts/${e.fileName}`, new o(e.data));
476
+ }), f.forEach((e) => {
477
+ v.add(`Pictures/${e.fileName}`, new o(e.file));
478
+ }), v.close();
479
+ }
480
+ registerStyle(e) {
481
+ let t = `BN_S${++this.styleCounter}`;
482
+ return this.automaticStyles.set(t, e(t)), t;
483
+ }
484
+ async registerPicture(e) {
485
+ let t = {
486
+ "image/apng": "apng",
487
+ "image/avif": "avif",
488
+ "image/bmp": "bmp",
489
+ "image/gif": "gif",
490
+ "image/vnd.microsoft.icon": "ico",
491
+ "image/jpeg": "jpg",
492
+ "image/png": "png",
493
+ "image/svg+xml": "svg",
494
+ "image/tiff": "tiff",
495
+ "image/webp": "webp"
496
+ };
497
+ if (this.pictures.has(e)) {
498
+ let t = this.pictures.get(e);
499
+ return {
500
+ path: `Pictures/${t.fileName}`,
501
+ mimeType: t.file.type,
502
+ height: t.height,
503
+ width: t.width
504
+ };
505
+ }
506
+ let n = await this.resolveFile(e), r = t[n.type] || "png", i = `picture-${this.pictures.size}.${r}`, { width: a, height: o } = await v(n);
507
+ return this.pictures.set(e, {
508
+ file: n,
509
+ fileName: i,
510
+ height: o,
511
+ width: a
512
+ }), {
513
+ path: `Pictures/${i}`,
514
+ mimeType: n.type,
515
+ height: o,
516
+ width: a
517
+ };
518
+ }
1740
519
  };
1741
- //# sourceMappingURL=blocknote-xl-odt-exporter.js.map
520
+ //#endregion
521
+ export { b as ODTExporter, g as odtDefaultSchemaMappings };
522
+
523
+ //# sourceMappingURL=blocknote-xl-odt-exporter.js.map