Expose table cell margins (#277)

* expose

* 0.0.192

* fix: cell margin default

* published
main
bokuweb 2021-04-14 17:27:11 +09:00 committed by GitHub
parent ee41237378
commit 0f13916e02
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
43 changed files with 153 additions and 143 deletions

2
Cargo.lock generated
View File

@ -160,7 +160,7 @@ checksum = "0e25ea47919b1560c4e3b7fe0aaab9becf5b84a10325ddf7db0f0ba5e1026499"
[[package]]
name = "docx-rs"
version = "0.2.10"
version = "0.2.12"
dependencies = [
"image",
"insta",

View File

@ -1,6 +1,6 @@
[package]
name = "docx-rs"
version = "0.2.10"
version = "0.2.12"
authors = ["bokuweb <bokuweb12@gmail.com>"]
repository = "https://github.com/bokuweb/docx-rs"
edition = "2018"

View File

@ -126,9 +126,9 @@ mod tests {
assert_eq!(
str::from_utf8(&b).unwrap(),
r#"<w:tbl><w:tblPr><w:tblW w:w="0" w:type="dxa" /><w:jc w:val="left" /><w:tblBorders><w:top w:val="single" w:sz="2" w:space="0" w:color="000000" /><w:left w:val="single" w:sz="2" w:space="0" w:color="000000" /><w:bottom w:val="single" w:sz="2" w:space="0" w:color="000000" /><w:right w:val="single" w:sz="2" w:space="0" w:color="000000" /><w:insideH w:val="single" w:sz="2" w:space="0" w:color="000000" /><w:insideV w:val="single" w:sz="2" w:space="0" w:color="000000" /></w:tblBorders><w:tblCellMar>
<w:top w:w="55" w:type="dxa" />
<w:top w:w="0" w:type="dxa" />
<w:left w:w="55" w:type="dxa" />
<w:bottom w:w="55" w:type="dxa" />
<w:bottom w:w="0" w:type="dxa" />
<w:right w:w="55" w:type="dxa" />
</w:tblCellMar></w:tblPr><w:tblGrid /><w:tr><w:trPr /></w:tr></w:tbl>"#
);
@ -142,9 +142,9 @@ mod tests {
assert_eq!(
str::from_utf8(&b).unwrap(),
r#"<w:tbl><w:tblPr><w:tblW w:w="0" w:type="dxa" /><w:jc w:val="left" /><w:tblBorders><w:top w:val="single" w:sz="2" w:space="0" w:color="000000" /><w:left w:val="single" w:sz="2" w:space="0" w:color="000000" /><w:bottom w:val="single" w:sz="2" w:space="0" w:color="000000" /><w:right w:val="single" w:sz="2" w:space="0" w:color="000000" /><w:insideH w:val="single" w:sz="2" w:space="0" w:color="000000" /><w:insideV w:val="single" w:sz="2" w:space="0" w:color="000000" /></w:tblBorders><w:tblCellMar>
<w:top w:w="55" w:type="dxa" />
<w:top w:w="0" w:type="dxa" />
<w:left w:w="55" w:type="dxa" />
<w:bottom w:w="55" w:type="dxa" />
<w:bottom w:w="0" w:type="dxa" />
<w:right w:w="55" w:type="dxa" />
</w:tblCellMar></w:tblPr><w:tblGrid>
<w:gridCol w:w="100" w:type="dxa" />
@ -158,7 +158,7 @@ mod tests {
let t = Table::new(vec![]).set_grid(vec![100, 200, 300]);
assert_eq!(
serde_json::to_string(&t).unwrap(),
r#"{"rows":[],"grid":[100,200,300],"hasNumbering":false,"property":{"width":{"width":0,"widthType":"Auto"},"justification":"left","borders":{"top":{"borderType":"single","size":2,"color":"000000","position":"top","space":0},"left":{"borderType":"single","size":2,"color":"000000","position":"left","space":0},"bottom":{"borderType":"single","size":2,"color":"000000","position":"bottom","space":0},"right":{"borderType":"single","size":2,"color":"000000","position":"right","space":0},"insideH":{"borderType":"single","size":2,"color":"000000","position":"insideH","space":0},"insideV":{"borderType":"single","size":2,"color":"000000","position":"insideV","space":0}},"margins":{"top":{"val":55,"widthType":"DXA"},"left":{"val":55,"widthType":"DXA"},"bottom":{"val":55,"widthType":"DXA"},"right":{"val":55,"widthType":"DXA"}},"indent":null,"style":null,"layout":null}}"#
r#"{"rows":[],"grid":[100,200,300],"hasNumbering":false,"property":{"width":{"width":0,"widthType":"Auto"},"justification":"left","borders":{"top":{"borderType":"single","size":2,"color":"000000","position":"top","space":0},"left":{"borderType":"single","size":2,"color":"000000","position":"left","space":0},"bottom":{"borderType":"single","size":2,"color":"000000","position":"bottom","space":0},"right":{"borderType":"single","size":2,"color":"000000","position":"right","space":0},"insideH":{"borderType":"single","size":2,"color":"000000","position":"insideH","space":0},"insideV":{"borderType":"single","size":2,"color":"000000","position":"insideV","space":0}},"margins":{"top":{"val":0,"widthType":"DXA"},"left":{"val":55,"widthType":"DXA"},"bottom":{"val":0,"widthType":"DXA"},"right":{"val":55,"widthType":"DXA"}},"indent":null,"style":null,"layout":null}}"#
);
}
}

View File

@ -38,9 +38,15 @@ pub struct TableCellMargins {
impl Default for TableCellMargins {
fn default() -> TableCellMargins {
TableCellMargins {
top: CellMargin::default(),
top: CellMargin {
val: 0,
width_type: WidthType::DXA,
},
left: CellMargin::default(),
bottom: CellMargin::default(),
bottom: CellMargin {
val: 0,
width_type: WidthType::DXA,
},
right: CellMargin::default(),
}
}
@ -108,9 +114,9 @@ mod tests {
assert_eq!(
str::from_utf8(&b).unwrap(),
r#"<w:tblCellMar>
<w:top w:w="55" w:type="dxa" />
<w:top w:w="0" w:type="dxa" />
<w:left w:w="55" w:type="dxa" />
<w:bottom w:w="55" w:type="dxa" />
<w:bottom w:w="0" w:type="dxa" />
<w:right w:w="55" w:type="dxa" />
</w:tblCellMar>"#
);

View File

@ -145,9 +145,9 @@ mod tests {
assert_eq!(
str::from_utf8(&b).unwrap(),
r#"<w:tblPr><w:tblW w:w="0" w:type="dxa" /><w:jc w:val="left" /><w:tblBorders><w:top w:val="single" w:sz="2" w:space="0" w:color="000000" /><w:left w:val="single" w:sz="2" w:space="0" w:color="000000" /><w:bottom w:val="single" w:sz="2" w:space="0" w:color="000000" /><w:right w:val="single" w:sz="2" w:space="0" w:color="000000" /><w:insideH w:val="single" w:sz="2" w:space="0" w:color="000000" /><w:insideV w:val="single" w:sz="2" w:space="0" w:color="000000" /></w:tblBorders><w:tblCellMar>
<w:top w:w="55" w:type="dxa" />
<w:top w:w="0" w:type="dxa" />
<w:left w:w="55" w:type="dxa" />
<w:bottom w:w="55" w:type="dxa" />
<w:bottom w:w="0" w:type="dxa" />
<w:right w:w="55" w:type="dxa" />
</w:tblCellMar></w:tblPr>"#
);
@ -158,7 +158,7 @@ mod tests {
let p = TableProperty::new().indent(100);
assert_eq!(
serde_json::to_string(&p).unwrap(),
r#"{"width":{"width":0,"widthType":"Auto"},"justification":"left","borders":{"top":{"borderType":"single","size":2,"color":"000000","position":"top","space":0},"left":{"borderType":"single","size":2,"color":"000000","position":"left","space":0},"bottom":{"borderType":"single","size":2,"color":"000000","position":"bottom","space":0},"right":{"borderType":"single","size":2,"color":"000000","position":"right","space":0},"insideH":{"borderType":"single","size":2,"color":"000000","position":"insideH","space":0},"insideV":{"borderType":"single","size":2,"color":"000000","position":"insideV","space":0}},"margins":{"top":{"val":55,"widthType":"DXA"},"left":{"val":55,"widthType":"DXA"},"bottom":{"val":55,"widthType":"DXA"},"right":{"val":55,"widthType":"DXA"}},"indent":{"width":100,"widthType":"DXA"},"style":null,"layout":null}"#
r#"{"width":{"width":0,"widthType":"Auto"},"justification":"left","borders":{"top":{"borderType":"single","size":2,"color":"000000","position":"top","space":0},"left":{"borderType":"single","size":2,"color":"000000","position":"left","space":0},"bottom":{"borderType":"single","size":2,"color":"000000","position":"bottom","space":0},"right":{"borderType":"single","size":2,"color":"000000","position":"right","space":0},"insideH":{"borderType":"single","size":2,"color":"000000","position":"insideH","space":0},"insideV":{"borderType":"single","size":2,"color":"000000","position":"insideV","space":0}},"margins":{"top":{"val":0,"widthType":"DXA"},"left":{"val":55,"widthType":"DXA"},"bottom":{"val":0,"widthType":"DXA"},"right":{"val":55,"widthType":"DXA"}},"indent":{"width":100,"widthType":"DXA"},"style":null,"layout":null}"#
);
}
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -43,6 +43,15 @@ export type TableRowJSON = {
property: TableRowPropertyJSON;
};
export type TableCellMarginJSON = { val: number; widthType: WidthType };
export type TableCellMarginsJSON = {
top: TableCellMarginJSON;
left: TableCellMarginJSON;
bottom: TableCellMarginJSON;
right: TableCellMarginJSON;
};
export type TablePropertyJSON = {
width: {
width: number;
@ -57,12 +66,7 @@ export type TablePropertyJSON = {
insideH: BorderJSON;
insideV: BorderJSON;
} | null;
margins: {
top: { val: number; widthType: WidthType };
left: { val: number; widthType: WidthType };
bottom: { val: number; widthType: WidthType };
right: { val: number; widthType: WidthType };
} | null;
margins: TableCellMarginsJSON | null;
indent: {
width: number;
widthType: WidthType;

View File

@ -19,9 +19,9 @@ export type TableProperty = {
export const createDefaultTableCellMargins = () => {
return {
top: { val: 55, type: "DXA" },
top: { val: 0, type: "DXA" },
left: { val: 55, type: "DXA" },
bottom: { val: 55, type: "DXA" },
bottom: { val: 0, type: "DXA" },
right: { val: 55, type: "DXA" },
} as const;
};

View File

@ -1,6 +1,6 @@
{
"name": "docx-wasm",
"version": "0.0.191",
"version": "0.0.193",
"main": "dist/node/index.js",
"browser": "dist/web/index.js",
"author": "bokuweb <bokuweb12@gmail.com>",

View File

@ -564,7 +564,7 @@ Object {
"layout": null,
"margins": Object {
"bottom": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
"left": Object {
@ -576,7 +576,7 @@ Object {
"widthType": "DXA",
},
"top": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
},
@ -693,7 +693,7 @@ Object {
"layout": null,
"margins": Object {
"bottom": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
"left": Object {
@ -705,7 +705,7 @@ Object {
"widthType": "DXA",
},
"top": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
},
@ -786,7 +786,7 @@ Object {
"layout": null,
"margins": Object {
"bottom": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
"left": Object {
@ -798,7 +798,7 @@ Object {
"widthType": "DXA",
},
"top": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
},
@ -915,7 +915,7 @@ Object {
"layout": null,
"margins": Object {
"bottom": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
"left": Object {
@ -927,7 +927,7 @@ Object {
"widthType": "DXA",
},
"top": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
},
@ -1923,7 +1923,7 @@ Object {
"layout": null,
"margins": Object {
"bottom": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
"left": Object {
@ -1935,7 +1935,7 @@ Object {
"widthType": "DXA",
},
"top": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
},
@ -2091,7 +2091,7 @@ Object {
"layout": null,
"margins": Object {
"bottom": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
"left": Object {
@ -2103,7 +2103,7 @@ Object {
"widthType": "DXA",
},
"top": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
},
@ -4301,7 +4301,7 @@ Object {
"layout": null,
"margins": Object {
"bottom": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
"left": Object {
@ -4313,7 +4313,7 @@ Object {
"widthType": "DXA",
},
"top": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
},
@ -4430,7 +4430,7 @@ Object {
"layout": null,
"margins": Object {
"bottom": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
"left": Object {
@ -4442,7 +4442,7 @@ Object {
"widthType": "DXA",
},
"top": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
},
@ -4523,7 +4523,7 @@ Object {
"layout": null,
"margins": Object {
"bottom": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
"left": Object {
@ -4535,7 +4535,7 @@ Object {
"widthType": "DXA",
},
"top": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
},
@ -4652,7 +4652,7 @@ Object {
"layout": null,
"margins": Object {
"bottom": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
"left": Object {
@ -4664,7 +4664,7 @@ Object {
"widthType": "DXA",
},
"top": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
},
@ -7015,7 +7015,7 @@ Object {
"layout": null,
"margins": Object {
"bottom": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
"left": Object {
@ -7027,7 +7027,7 @@ Object {
"widthType": "DXA",
},
"top": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
},
@ -7144,7 +7144,7 @@ Object {
"layout": null,
"margins": Object {
"bottom": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
"left": Object {
@ -7156,7 +7156,7 @@ Object {
"widthType": "DXA",
},
"top": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
},
@ -7237,7 +7237,7 @@ Object {
"layout": null,
"margins": Object {
"bottom": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
"left": Object {
@ -7249,7 +7249,7 @@ Object {
"widthType": "DXA",
},
"top": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
},
@ -7366,7 +7366,7 @@ Object {
"layout": null,
"margins": Object {
"bottom": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
"left": Object {
@ -7378,7 +7378,7 @@ Object {
"widthType": "DXA",
},
"top": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
},
@ -7502,7 +7502,7 @@ Object {
"layout": null,
"margins": Object {
"bottom": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
"left": Object {
@ -7514,7 +7514,7 @@ Object {
"widthType": "DXA",
},
"top": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
},
@ -10463,7 +10463,7 @@ Object {
"layout": null,
"margins": Object {
"bottom": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
"left": Object {
@ -10475,7 +10475,7 @@ Object {
"widthType": "DXA",
},
"top": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
},
@ -10592,7 +10592,7 @@ Object {
"layout": null,
"margins": Object {
"bottom": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
"left": Object {
@ -10604,7 +10604,7 @@ Object {
"widthType": "DXA",
},
"top": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
},
@ -10685,7 +10685,7 @@ Object {
"layout": null,
"margins": Object {
"bottom": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
"left": Object {
@ -10697,7 +10697,7 @@ Object {
"widthType": "DXA",
},
"top": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
},
@ -10814,7 +10814,7 @@ Object {
"layout": null,
"margins": Object {
"bottom": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
"left": Object {
@ -10826,7 +10826,7 @@ Object {
"widthType": "DXA",
},
"top": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
},
@ -10943,7 +10943,7 @@ Object {
"layout": null,
"margins": Object {
"bottom": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
"left": Object {
@ -10955,7 +10955,7 @@ Object {
"widthType": "DXA",
},
"top": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
},
@ -11072,7 +11072,7 @@ Object {
"layout": null,
"margins": Object {
"bottom": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
"left": Object {
@ -11084,7 +11084,7 @@ Object {
"widthType": "DXA",
},
"top": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
},
@ -11201,7 +11201,7 @@ Object {
"layout": null,
"margins": Object {
"bottom": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
"left": Object {
@ -11213,7 +11213,7 @@ Object {
"widthType": "DXA",
},
"top": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
},
@ -11330,7 +11330,7 @@ Object {
"layout": null,
"margins": Object {
"bottom": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
"left": Object {
@ -11342,7 +11342,7 @@ Object {
"widthType": "DXA",
},
"top": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
},
@ -11459,7 +11459,7 @@ Object {
"layout": null,
"margins": Object {
"bottom": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
"left": Object {
@ -11471,7 +11471,7 @@ Object {
"widthType": "DXA",
},
"top": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
},
@ -11588,7 +11588,7 @@ Object {
"layout": null,
"margins": Object {
"bottom": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
"left": Object {
@ -11600,7 +11600,7 @@ Object {
"widthType": "DXA",
},
"top": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
},
@ -11717,7 +11717,7 @@ Object {
"layout": null,
"margins": Object {
"bottom": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
"left": Object {
@ -11729,7 +11729,7 @@ Object {
"widthType": "DXA",
},
"top": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
},
@ -11813,7 +11813,7 @@ Object {
"layout": null,
"margins": Object {
"bottom": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
"left": Object {
@ -11825,7 +11825,7 @@ Object {
"widthType": "DXA",
},
"top": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
},
@ -12728,7 +12728,7 @@ Object {
"layout": null,
"margins": Object {
"bottom": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
"left": Object {
@ -12740,7 +12740,7 @@ Object {
"widthType": "DXA",
},
"top": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
},
@ -12857,7 +12857,7 @@ Object {
"layout": null,
"margins": Object {
"bottom": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
"left": Object {
@ -12869,7 +12869,7 @@ Object {
"widthType": "DXA",
},
"top": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
},
@ -12974,7 +12974,7 @@ Object {
"layout": null,
"margins": Object {
"bottom": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
"left": Object {
@ -12986,7 +12986,7 @@ Object {
"widthType": "DXA",
},
"top": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
},
@ -13103,7 +13103,7 @@ Object {
"layout": null,
"margins": Object {
"bottom": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
"left": Object {
@ -13115,7 +13115,7 @@ Object {
"widthType": "DXA",
},
"top": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
},
@ -13226,7 +13226,7 @@ Object {
"layout": null,
"margins": Object {
"bottom": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
"left": Object {
@ -13238,7 +13238,7 @@ Object {
"widthType": "DXA",
},
"top": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
},
@ -13321,7 +13321,7 @@ Object {
"layout": null,
"margins": Object {
"bottom": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
"left": Object {
@ -13333,7 +13333,7 @@ Object {
"widthType": "DXA",
},
"top": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
},
@ -13927,7 +13927,7 @@ Object {
"layout": null,
"margins": Object {
"bottom": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
"left": Object {
@ -13939,7 +13939,7 @@ Object {
"widthType": "DXA",
},
"top": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
},
@ -14056,7 +14056,7 @@ Object {
"layout": null,
"margins": Object {
"bottom": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
"left": Object {
@ -14068,7 +14068,7 @@ Object {
"widthType": "DXA",
},
"top": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
},
@ -14149,7 +14149,7 @@ Object {
"layout": null,
"margins": Object {
"bottom": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
"left": Object {
@ -14161,7 +14161,7 @@ Object {
"widthType": "DXA",
},
"top": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
},
@ -14278,7 +14278,7 @@ Object {
"layout": null,
"margins": Object {
"bottom": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
"left": Object {
@ -14290,7 +14290,7 @@ Object {
"widthType": "DXA",
},
"top": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
},
@ -14407,7 +14407,7 @@ Object {
"layout": null,
"margins": Object {
"bottom": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
"left": Object {
@ -14419,7 +14419,7 @@ Object {
"widthType": "DXA",
},
"top": Object {
"val": 55,
"val": 0,
"widthType": "DXA",
},
},
@ -14453,9 +14453,9 @@ exports[`writer should write cell shading 2`] = `
"<?xml version=\\"1.0\\" encoding=\\"UTF-8\\" standalone=\\"yes\\"?>
<w:document xmlns:o=\\"urn:schemas-microsoft-com:office:office\\" xmlns:r=\\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\\" xmlns:v=\\"urn:schemas-microsoft-com:vml\\" xmlns:w=\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\" xmlns:w10=\\"urn:schemas-microsoft-com:office:word\\" xmlns:wp=\\"http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing\\" xmlns:wps=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingShape\\" xmlns:wpg=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingGroup\\" xmlns:mc=\\"http://schemas.openxmlformats.org/markup-compatibility/2006\\" xmlns:wp14=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing\\" xmlns:w14=\\"http://schemas.microsoft.com/office/word/2010/wordml\\" xmlns:w15=\\"http://schemas.microsoft.com/office/word/2012/wordml\\" mc:Ignorable=\\"w14 wp14\\">
<w:body><w:tbl><w:tblPr><w:tblW w:w=\\"0\\" w:type=\\"dxa\\" /><w:jc w:val=\\"left\\" /><w:tblBorders><w:top w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:left w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:bottom w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:right w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:insideH w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:insideV w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /></w:tblBorders><w:tblCellMar>
<w:top w:w=\\"55\\" w:type=\\"dxa\\" />
<w:top w:w=\\"0\\" w:type=\\"dxa\\" />
<w:left w:w=\\"55\\" w:type=\\"dxa\\" />
<w:bottom w:w=\\"55\\" w:type=\\"dxa\\" />
<w:bottom w:w=\\"0\\" w:type=\\"dxa\\" />
<w:right w:w=\\"55\\" w:type=\\"dxa\\" />
</w:tblCellMar><w:tblInd w:w=\\"0\\" w:type=\\"dxa\\" /></w:tblPr><w:tblGrid /><w:tr><w:trPr /><w:tc><w:tcPr><w:tcBorders><w:top w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:left w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:bottom w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:right w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:insideH w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:insideV w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /></w:tcBorders><w:shd w:val=\\"clear\\" w:color=\\"auto\\" w:fill=\\"FF0000\\" /></w:tcPr><w:p w14:paraId=\\"00000001\\"><w:pPr><w:rPr /></w:pPr><w:r><w:rPr><w:rFonts /></w:rPr><w:t xml:space=\\"preserve\\">Hello!!</w:t></w:r></w:p></w:tc></w:tr></w:tbl><w:sectPr><w:pgSz w:w=\\"11906\\" w:h=\\"16838\\" /><w:pgMar w:top=\\"1985\\" w:right=\\"1701\\" w:bottom=\\"1701\\" w:left=\\"1701\\" w:header=\\"851\\" w:footer=\\"992\\" w:gutter=\\"0\\" /><w:headerReference w:type=\\"default\\" r:id=\\"rId4\\" /><w:cols w:space=\\"425\\" /><w:docGrid w:type=\\"lines\\" w:linePitch=\\"360\\" /></w:sectPr></w:body>
</w:document>"
@ -14610,14 +14610,14 @@ exports[`writer should write nested table 2`] = `
"<?xml version=\\"1.0\\" encoding=\\"UTF-8\\" standalone=\\"yes\\"?>
<w:document xmlns:o=\\"urn:schemas-microsoft-com:office:office\\" xmlns:r=\\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\\" xmlns:v=\\"urn:schemas-microsoft-com:vml\\" xmlns:w=\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\" xmlns:w10=\\"urn:schemas-microsoft-com:office:word\\" xmlns:wp=\\"http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing\\" xmlns:wps=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingShape\\" xmlns:wpg=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingGroup\\" xmlns:mc=\\"http://schemas.openxmlformats.org/markup-compatibility/2006\\" xmlns:wp14=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing\\" xmlns:w14=\\"http://schemas.microsoft.com/office/word/2010/wordml\\" xmlns:w15=\\"http://schemas.microsoft.com/office/word/2012/wordml\\" mc:Ignorable=\\"w14 wp14\\">
<w:body><w:tbl><w:tblPr><w:tblW w:w=\\"0\\" w:type=\\"dxa\\" /><w:jc w:val=\\"left\\" /><w:tblBorders><w:top w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:left w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:bottom w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:right w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:insideH w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:insideV w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /></w:tblBorders><w:tblCellMar>
<w:top w:w=\\"55\\" w:type=\\"dxa\\" />
<w:top w:w=\\"0\\" w:type=\\"dxa\\" />
<w:left w:w=\\"55\\" w:type=\\"dxa\\" />
<w:bottom w:w=\\"55\\" w:type=\\"dxa\\" />
<w:bottom w:w=\\"0\\" w:type=\\"dxa\\" />
<w:right w:w=\\"55\\" w:type=\\"dxa\\" />
</w:tblCellMar><w:tblInd w:w=\\"0\\" w:type=\\"dxa\\" /></w:tblPr><w:tblGrid /><w:tr><w:trPr /><w:tc><w:tcPr><w:tcBorders><w:top w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:left w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:bottom w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:right w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:insideH w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:insideV w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /></w:tcBorders></w:tcPr><w:tbl><w:tblPr><w:tblW w:w=\\"0\\" w:type=\\"dxa\\" /><w:jc w:val=\\"left\\" /><w:tblBorders><w:top w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:left w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:bottom w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:right w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:insideH w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:insideV w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /></w:tblBorders><w:tblCellMar>
<w:top w:w=\\"55\\" w:type=\\"dxa\\" />
<w:top w:w=\\"0\\" w:type=\\"dxa\\" />
<w:left w:w=\\"55\\" w:type=\\"dxa\\" />
<w:bottom w:w=\\"55\\" w:type=\\"dxa\\" />
<w:bottom w:w=\\"0\\" w:type=\\"dxa\\" />
<w:right w:w=\\"55\\" w:type=\\"dxa\\" />
</w:tblCellMar><w:tblInd w:w=\\"0\\" w:type=\\"dxa\\" /></w:tblPr><w:tblGrid /><w:tr><w:trPr /><w:tc><w:tcPr><w:tcBorders><w:top w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:left w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:bottom w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:right w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:insideH w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:insideV w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /></w:tcBorders></w:tcPr><w:p w14:paraId=\\"00000001\\"><w:pPr><w:rPr /></w:pPr><w:r><w:rPr><w:rFonts /></w:rPr><w:t xml:space=\\"preserve\\">Hello world!!</w:t></w:r></w:p></w:tc></w:tr></w:tbl><w:p w14:paraId=\\"00000001\\"><w:pPr><w:rPr /></w:pPr></w:p></w:tc></w:tr></w:tbl><w:sectPr><w:pgSz w:w=\\"11906\\" w:h=\\"16838\\" /><w:pgMar w:top=\\"1985\\" w:right=\\"1701\\" w:bottom=\\"1701\\" w:left=\\"1701\\" w:header=\\"851\\" w:footer=\\"992\\" w:gutter=\\"0\\" /><w:headerReference w:type=\\"default\\" r:id=\\"rId4\\" /><w:cols w:space=\\"425\\" /><w:docGrid w:type=\\"lines\\" w:linePitch=\\"360\\" /></w:sectPr></w:body>
</w:document>"
@ -14720,9 +14720,9 @@ exports[`writer should write table layout 2`] = `
"<?xml version=\\"1.0\\" encoding=\\"UTF-8\\" standalone=\\"yes\\"?>
<w:document xmlns:o=\\"urn:schemas-microsoft-com:office:office\\" xmlns:r=\\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\\" xmlns:v=\\"urn:schemas-microsoft-com:vml\\" xmlns:w=\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\" xmlns:w10=\\"urn:schemas-microsoft-com:office:word\\" xmlns:wp=\\"http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing\\" xmlns:wps=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingShape\\" xmlns:wpg=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingGroup\\" xmlns:mc=\\"http://schemas.openxmlformats.org/markup-compatibility/2006\\" xmlns:wp14=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing\\" xmlns:w14=\\"http://schemas.microsoft.com/office/word/2010/wordml\\" xmlns:w15=\\"http://schemas.microsoft.com/office/word/2012/wordml\\" mc:Ignorable=\\"w14 wp14\\">
<w:body><w:tbl><w:tblPr><w:tblW w:w=\\"0\\" w:type=\\"dxa\\" /><w:jc w:val=\\"left\\" /><w:tblBorders><w:top w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:left w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:bottom w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:right w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:insideH w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:insideV w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /></w:tblBorders><w:tblCellMar>
<w:top w:w=\\"55\\" w:type=\\"dxa\\" />
<w:top w:w=\\"0\\" w:type=\\"dxa\\" />
<w:left w:w=\\"55\\" w:type=\\"dxa\\" />
<w:bottom w:w=\\"55\\" w:type=\\"dxa\\" />
<w:bottom w:w=\\"0\\" w:type=\\"dxa\\" />
<w:right w:w=\\"55\\" w:type=\\"dxa\\" />
</w:tblCellMar><w:tblInd w:w=\\"0\\" w:type=\\"dxa\\" /><w:tblLayout w:type=\\"fixed\\" /></w:tblPr><w:tblGrid /><w:tr><w:trPr /><w:tc><w:tcPr><w:tcBorders><w:top w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:left w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:bottom w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:right w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:insideH w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:insideV w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /></w:tcBorders></w:tcPr><w:p w14:paraId=\\"00000001\\"><w:pPr><w:rPr /></w:pPr><w:r><w:rPr><w:rFonts /></w:rPr><w:t xml:space=\\"preserve\\">Hello!!</w:t></w:r></w:p></w:tc></w:tr></w:tbl><w:sectPr><w:pgSz w:w=\\"11906\\" w:h=\\"16838\\" /><w:pgMar w:top=\\"1985\\" w:right=\\"1701\\" w:bottom=\\"1701\\" w:left=\\"1701\\" w:header=\\"851\\" w:footer=\\"992\\" w:gutter=\\"0\\" /><w:headerReference w:type=\\"default\\" r:id=\\"rId4\\" /><w:cols w:space=\\"425\\" /><w:docGrid w:type=\\"lines\\" w:linePitch=\\"360\\" /></w:sectPr></w:body>
</w:document>"
@ -14775,9 +14775,9 @@ exports[`writer should write tl2br and tr2bl cells 2`] = `
"<?xml version=\\"1.0\\" encoding=\\"UTF-8\\" standalone=\\"yes\\"?>
<w:document xmlns:o=\\"urn:schemas-microsoft-com:office:office\\" xmlns:r=\\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\\" xmlns:v=\\"urn:schemas-microsoft-com:vml\\" xmlns:w=\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\" xmlns:w10=\\"urn:schemas-microsoft-com:office:word\\" xmlns:wp=\\"http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing\\" xmlns:wps=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingShape\\" xmlns:wpg=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingGroup\\" xmlns:mc=\\"http://schemas.openxmlformats.org/markup-compatibility/2006\\" xmlns:wp14=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing\\" xmlns:w14=\\"http://schemas.microsoft.com/office/word/2010/wordml\\" xmlns:w15=\\"http://schemas.microsoft.com/office/word/2012/wordml\\" mc:Ignorable=\\"w14 wp14\\">
<w:body><w:tbl><w:tblPr><w:tblW w:w=\\"0\\" w:type=\\"dxa\\" /><w:jc w:val=\\"left\\" /><w:tblBorders><w:top w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:left w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:bottom w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:right w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:insideH w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:insideV w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /></w:tblBorders><w:tblCellMar>
<w:top w:w=\\"55\\" w:type=\\"dxa\\" />
<w:top w:w=\\"0\\" w:type=\\"dxa\\" />
<w:left w:w=\\"55\\" w:type=\\"dxa\\" />
<w:bottom w:w=\\"55\\" w:type=\\"dxa\\" />
<w:bottom w:w=\\"0\\" w:type=\\"dxa\\" />
<w:right w:w=\\"55\\" w:type=\\"dxa\\" />
</w:tblCellMar><w:tblInd w:w=\\"0\\" w:type=\\"dxa\\" /></w:tblPr><w:tblGrid /><w:tr><w:trPr /><w:tc><w:tcPr><w:tcBorders><w:top w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:left w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:bottom w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:right w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:insideH w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:insideV w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:tl2br w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /></w:tcBorders></w:tcPr><w:p w14:paraId=\\"00000002\\"><w:pPr><w:rPr /></w:pPr><w:r><w:rPr><w:rFonts /></w:rPr><w:t xml:space=\\"preserve\\">Hello!!</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcBorders><w:top w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:left w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:bottom w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:right w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:insideH w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:insideV w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:tr2bl w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /></w:tcBorders></w:tcPr><w:p w14:paraId=\\"00000003\\"><w:pPr><w:rPr /></w:pPr><w:r><w:rPr><w:rFonts /></w:rPr><w:t xml:space=\\"preserve\\">Hello!!</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcBorders><w:top w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:left w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:bottom w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:right w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:insideH w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:insideV w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:tl2br w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:tr2bl w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /></w:tcBorders></w:tcPr><w:p w14:paraId=\\"00000004\\"><w:pPr><w:rPr /></w:pPr><w:r><w:rPr><w:rFonts /></w:rPr><w:t xml:space=\\"preserve\\">Hello!!</w:t></w:r></w:p></w:tc></w:tr></w:tbl><w:sectPr><w:pgSz w:w=\\"11906\\" w:h=\\"16838\\" /><w:pgMar w:top=\\"1985\\" w:right=\\"1701\\" w:bottom=\\"1701\\" w:left=\\"1701\\" w:header=\\"851\\" w:footer=\\"992\\" w:gutter=\\"0\\" /><w:headerReference w:type=\\"default\\" r:id=\\"rId4\\" /><w:cols w:space=\\"425\\" /><w:docGrid w:type=\\"lines\\" w:linePitch=\\"360\\" /></w:sectPr></w:body>
</w:document>"