feat: Support doc_id (#120)
parent
4aa875b43f
commit
aceb32f918
|
@ -0,0 +1,12 @@
|
||||||
|
use docx_rs::*;
|
||||||
|
|
||||||
|
pub fn main() -> Result<(), DocxError> {
|
||||||
|
let path = std::path::Path::new("./output/doc_id.docx");
|
||||||
|
let file = std::fs::File::create(&path).unwrap();
|
||||||
|
Docx::new()
|
||||||
|
.add_paragraph(Paragraph::new().add_run(Run::new().add_text("World")))
|
||||||
|
.doc_id("2F0CF1F9-607F-5941-BF59-8A81BE87AAAA")
|
||||||
|
.build()
|
||||||
|
.pack(file)?;
|
||||||
|
Ok(())
|
||||||
|
}
|
|
@ -0,0 +1,23 @@
|
||||||
|
use serde::{Deserialize, Serialize};
|
||||||
|
|
||||||
|
use crate::documents::BuildXML;
|
||||||
|
use crate::xml_builder::*;
|
||||||
|
|
||||||
|
#[derive(Debug, Clone, Deserialize, PartialEq, Serialize)]
|
||||||
|
pub struct DocId {
|
||||||
|
id: String,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl DocId {
|
||||||
|
pub fn new(id: impl Into<String>) -> DocId {
|
||||||
|
DocId { id: id.into() }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl BuildXML for DocId {
|
||||||
|
fn build(&self) -> Vec<u8> {
|
||||||
|
let b = XMLBuilder::new();
|
||||||
|
let id = format!("{{{}}}", self.id);
|
||||||
|
b.doc_id(&id).build()
|
||||||
|
}
|
||||||
|
}
|
|
@ -16,6 +16,7 @@ mod default_tab_stop;
|
||||||
mod delete;
|
mod delete;
|
||||||
mod delete_text;
|
mod delete_text;
|
||||||
mod doc_defaults;
|
mod doc_defaults;
|
||||||
|
mod doc_id;
|
||||||
mod drawing;
|
mod drawing;
|
||||||
mod font;
|
mod font;
|
||||||
mod grid_span;
|
mod grid_span;
|
||||||
|
@ -97,6 +98,7 @@ pub use default_tab_stop::*;
|
||||||
pub use delete::*;
|
pub use delete::*;
|
||||||
pub use delete_text::*;
|
pub use delete_text::*;
|
||||||
pub use doc_defaults::*;
|
pub use doc_defaults::*;
|
||||||
|
pub use doc_id::*;
|
||||||
pub use drawing::*;
|
pub use drawing::*;
|
||||||
pub use font::*;
|
pub use font::*;
|
||||||
pub use grid_span::*;
|
pub use grid_span::*;
|
||||||
|
|
|
@ -178,6 +178,11 @@ impl Docx {
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn doc_id(mut self, id: &str) -> Self {
|
||||||
|
self.settings = self.settings.doc_id(id);
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
pub fn build(&mut self) -> XMLDocx {
|
pub fn build(&mut self) -> XMLDocx {
|
||||||
self.update_comments();
|
self.update_comments();
|
||||||
let (image_ids, images) = self.create_images();
|
let (image_ids, images) = self.create_images();
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
use super::{DefaultTabStop, Zoom};
|
use super::*;
|
||||||
|
|
||||||
use crate::documents::BuildXML;
|
use crate::documents::BuildXML;
|
||||||
use crate::xml_builder::*;
|
use crate::xml_builder::*;
|
||||||
|
|
||||||
|
@ -9,12 +10,18 @@ use serde::Serialize;
|
||||||
pub struct Settings {
|
pub struct Settings {
|
||||||
default_tab_stop: DefaultTabStop,
|
default_tab_stop: DefaultTabStop,
|
||||||
zoom: Zoom,
|
zoom: Zoom,
|
||||||
|
doc_id: Option<DocId>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Settings {
|
impl Settings {
|
||||||
pub fn new() -> Settings {
|
pub fn new() -> Settings {
|
||||||
Default::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn doc_id(mut self, id: impl Into<String>) -> Self {
|
||||||
|
self.doc_id = Some(DocId::new(id.into()));
|
||||||
|
self
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Default for Settings {
|
impl Default for Settings {
|
||||||
|
@ -22,6 +29,7 @@ impl Default for Settings {
|
||||||
Self {
|
Self {
|
||||||
default_tab_stop: DefaultTabStop::new(709),
|
default_tab_stop: DefaultTabStop::new(709),
|
||||||
zoom: Zoom::new(100),
|
zoom: Zoom::new(100),
|
||||||
|
doc_id: None,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -33,6 +41,7 @@ impl BuildXML for Settings {
|
||||||
.open_settings()
|
.open_settings()
|
||||||
.add_child(&self.default_tab_stop)
|
.add_child(&self.default_tab_stop)
|
||||||
.add_child(&self.zoom)
|
.add_child(&self.zoom)
|
||||||
|
.add_optional_child(&self.doc_id)
|
||||||
.close()
|
.close()
|
||||||
.build()
|
.build()
|
||||||
}
|
}
|
||||||
|
@ -53,7 +62,7 @@ mod tests {
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
str::from_utf8(&b).unwrap(),
|
str::from_utf8(&b).unwrap(),
|
||||||
r#"<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
r#"<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||||
<w:settings xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:defaultTabStop w:val="709" /><w:zoom w:percent="100" /></w:settings>"#
|
<w:settings xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"><w:defaultTabStop w:val="709" /><w:zoom w:percent="100" /></w:settings>"#
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -264,6 +264,8 @@ impl XMLBuilder {
|
||||||
open!(open_level_override, "w:lvlOverride", "w:ilvl");
|
open!(open_level_override, "w:lvlOverride", "w:ilvl");
|
||||||
closed_with_str!(start_override, "w:startOverride");
|
closed_with_str!(start_override, "w:startOverride");
|
||||||
|
|
||||||
|
closed!(doc_id, "w15:docId", "w15:val");
|
||||||
|
|
||||||
// CommentExtended
|
// CommentExtended
|
||||||
// w15:commentEx w15:paraId="00000001" w15:paraIdParent="57D1BD7C" w15:done="0"
|
// w15:commentEx w15:paraId="00000001" w15:paraIdParent="57D1BD7C" w15:done="0"
|
||||||
pub(crate) fn comment_extended(
|
pub(crate) fn comment_extended(
|
||||||
|
|
|
@ -4,30 +4,22 @@ use super::XmlEvent;
|
||||||
impl XMLBuilder {
|
impl XMLBuilder {
|
||||||
pub(crate) fn open_settings(mut self) -> Self {
|
pub(crate) fn open_settings(mut self) -> Self {
|
||||||
self.writer
|
self.writer
|
||||||
.write(XmlEvent::start_element("w:settings").attr(
|
.write(
|
||||||
|
XmlEvent::start_element("w:settings")
|
||||||
|
.attr(
|
||||||
"xmlns:w",
|
"xmlns:w",
|
||||||
"http://schemas.openxmlformats.org/wordprocessingml/2006/main",
|
"http://schemas.openxmlformats.org/wordprocessingml/2006/main",
|
||||||
))
|
)
|
||||||
|
.attr(
|
||||||
|
"xmlns:w14",
|
||||||
|
"http://schemas.microsoft.com/office/word/2010/wordml",
|
||||||
|
)
|
||||||
|
.attr(
|
||||||
|
"xmlns:w15",
|
||||||
|
"http://schemas.microsoft.com/office/word/2012/wordml",
|
||||||
|
),
|
||||||
|
)
|
||||||
.expect("should write to buf");
|
.expect("should write to buf");
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(test)]
|
|
||||||
mod tests {
|
|
||||||
|
|
||||||
use super::*;
|
|
||||||
#[cfg(test)]
|
|
||||||
use pretty_assertions::assert_eq;
|
|
||||||
use std::str;
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn test_declaration() {
|
|
||||||
let b = XMLBuilder::new();
|
|
||||||
let r = b.open_settings().close().build();
|
|
||||||
assert_eq!(
|
|
||||||
str::from_utf8(&r).unwrap(),
|
|
||||||
r#"<w:settings xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" />"#
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
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
|
@ -29,6 +29,7 @@ import("../js").then((w) => {
|
||||||
)
|
)
|
||||||
.addCommentEnd(new w.CommentEnd(2))
|
.addCommentEnd(new w.CommentEnd(2))
|
||||||
)
|
)
|
||||||
|
.docId("12345678-1234-1234-1234-1234567890AB")
|
||||||
.build();
|
.build();
|
||||||
saveAs(new Blob([buf]), "hello.docx");
|
saveAs(new Blob([buf]), "hello.docx");
|
||||||
});
|
});
|
||||||
|
|
|
@ -15,6 +15,7 @@ import { AbstractNumbering } from "./abstract-numbering";
|
||||||
import { Numbering } from "./numbering";
|
import { Numbering } from "./numbering";
|
||||||
import { BookmarkStart } from "./bookmark-start";
|
import { BookmarkStart } from "./bookmark-start";
|
||||||
import { BookmarkEnd } from "./bookmark-end";
|
import { BookmarkEnd } from "./bookmark-end";
|
||||||
|
import { Settings } from "./settings";
|
||||||
import { DocxJSON } from "./json";
|
import { DocxJSON } from "./json";
|
||||||
|
|
||||||
import * as wasm from "./pkg";
|
import * as wasm from "./pkg";
|
||||||
|
@ -51,6 +52,7 @@ export class Docx {
|
||||||
hasNumberings = false;
|
hasNumberings = false;
|
||||||
abstractNumberings: AbstractNumbering[] = [];
|
abstractNumberings: AbstractNumbering[] = [];
|
||||||
numberings: Numbering[] = [];
|
numberings: Numbering[] = [];
|
||||||
|
settings: Settings = new Settings();
|
||||||
|
|
||||||
addParagraph(p: Paragraph) {
|
addParagraph(p: Paragraph) {
|
||||||
if (p.hasNumberings) {
|
if (p.hasNumberings) {
|
||||||
|
@ -78,6 +80,11 @@ export class Docx {
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
docId(id: string) {
|
||||||
|
this.settings.docId(id);
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
buildRun(r: Run) {
|
buildRun(r: Run) {
|
||||||
let run = wasm.createRun();
|
let run = wasm.createRun();
|
||||||
r.children.forEach((child) => {
|
r.children.forEach((child) => {
|
||||||
|
@ -437,6 +444,7 @@ export class Docx {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
let docx = wasm.createDocx();
|
let docx = wasm.createDocx();
|
||||||
|
|
||||||
this.children.forEach((child) => {
|
this.children.forEach((child) => {
|
||||||
if (child instanceof Paragraph) {
|
if (child instanceof Paragraph) {
|
||||||
let p = this.buildParagraph(child);
|
let p = this.buildParagraph(child);
|
||||||
|
@ -492,6 +500,10 @@ export class Docx {
|
||||||
docx = docx.add_numbering(num);
|
docx = docx.add_numbering(num);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
if (this.settings._docId) {
|
||||||
|
docx = docx.doc_id(this.settings._docId);
|
||||||
|
}
|
||||||
|
|
||||||
const buf = docx.build(this.hasNumberings);
|
const buf = docx.build(this.hasNumberings);
|
||||||
docx.free();
|
docx.free();
|
||||||
return buf;
|
return buf;
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
export class Settings {
|
||||||
|
_docId: string | null = null;
|
||||||
|
|
||||||
|
docId(id: string) {
|
||||||
|
this._docId = id;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
}
|
|
@ -33,6 +33,11 @@ impl Docx {
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn doc_id(mut self, id: &str) -> Docx {
|
||||||
|
self.0 = self.0.doc_id(id);
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
pub fn build(&mut self, has_numberings: bool) -> Result<Vec<u8>, JsValue> {
|
pub fn build(&mut self, has_numberings: bool) -> Result<Vec<u8>, JsValue> {
|
||||||
let buf = Vec::new();
|
let buf = Vec::new();
|
||||||
let mut cur = std::io::Cursor::new(buf);
|
let mut cur = std::io::Cursor::new(buf);
|
||||||
|
|
|
@ -1,2 +1,10 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||||
<w:settings xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:zoom w:percent="100"/><w:defaultTabStop w:val="709"/><w:compat><w:doNotExpandShiftReturn/></w:compat><w:compat></w:compat><w:themeFontLang w:val="" w:eastAsia="" w:bidi=""/></w:settings>
|
<w:settings xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main">
|
||||||
|
<w:zoom w:percent="100"/>
|
||||||
|
<w:defaultTabStop w:val="709"/>
|
||||||
|
<w:compat>
|
||||||
|
<w:doNotExpandShiftReturn/>
|
||||||
|
</w:compat>
|
||||||
|
<w:compat></w:compat>
|
||||||
|
<w:themeFontLang w:val="" w:eastAsia="" w:bidi=""/>
|
||||||
|
</w:settings>
|
|
@ -1,2 +1,8 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||||
<w:settings xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:zoom w:percent="100"/><w:defaultTabStop w:val="709"/><w:compat><w:doNotExpandShiftReturn/></w:compat></w:settings>
|
<w:settings xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main">
|
||||||
|
<w:zoom w:percent="100"/>
|
||||||
|
<w:defaultTabStop w:val="709"/>
|
||||||
|
<w:compat>
|
||||||
|
<w:doNotExpandShiftReturn/>
|
||||||
|
</w:compat>
|
||||||
|
</w:settings>
|
|
@ -1,2 +1,8 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||||
<w:settings xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:zoom w:percent="100"/><w:defaultTabStop w:val="709"/><w:compat><w:doNotExpandShiftReturn/></w:compat></w:settings>
|
<w:settings xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main">
|
||||||
|
<w:zoom w:percent="100"/>
|
||||||
|
<w:defaultTabStop w:val="709"/>
|
||||||
|
<w:compat>
|
||||||
|
<w:doNotExpandShiftReturn/>
|
||||||
|
</w:compat>
|
||||||
|
</w:settings>
|
|
@ -1,2 +1,11 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||||
<w:settings xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:zoom w:percent="100"/><w:trackRevisions/><w:defaultTabStop w:val="709"/><w:compat><w:doNotExpandShiftReturn/></w:compat><w:compat></w:compat><w:themeFontLang w:val="" w:eastAsia="" w:bidi=""/></w:settings>
|
<w:settings xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main">
|
||||||
|
<w:zoom w:percent="100"/>
|
||||||
|
<w:trackRevisions/>
|
||||||
|
<w:defaultTabStop w:val="709"/>
|
||||||
|
<w:compat>
|
||||||
|
<w:doNotExpandShiftReturn/>
|
||||||
|
</w:compat>
|
||||||
|
<w:compat></w:compat>
|
||||||
|
<w:themeFontLang w:val="" w:eastAsia="" w:bidi=""/>
|
||||||
|
</w:settings>
|
|
@ -1,2 +1,73 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||||
<w:settings xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" xmlns:w16cex="http://schemas.microsoft.com/office/word/2018/wordml/cex" xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid" xmlns:w16="http://schemas.microsoft.com/office/word/2018/wordml" xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex" xmlns:sl="http://schemas.openxmlformats.org/schemaLibrary/2006/main" mc:Ignorable="w14 w15 w16se w16cid w16 w16cex"><w:zoom w:percent="100"/><w:bordersDoNotSurroundHeader/><w:bordersDoNotSurroundFooter/><w:proofState w:spelling="clean" w:grammar="clean"/><w:defaultTabStop w:val="840"/><w:displayHorizontalDrawingGridEvery w:val="0"/><w:displayVerticalDrawingGridEvery w:val="2"/><w:characterSpacingControl w:val="compressPunctuation"/><w:compat><w:spaceForUL/><w:balanceSingleByteDoubleByteWidth/><w:doNotLeaveBackslashAlone/><w:ulTrailSpace/><w:doNotExpandShiftReturn/><w:adjustLineHeightInTable/><w:useFELayout/><w:compatSetting w:name="compatibilityMode" w:uri="http://schemas.microsoft.com/office/word" w:val="15"/><w:compatSetting w:name="overrideTableStyleFontSizeAndJustification" w:uri="http://schemas.microsoft.com/office/word" w:val="1"/><w:compatSetting w:name="enableOpenTypeFeatures" w:uri="http://schemas.microsoft.com/office/word" w:val="1"/><w:compatSetting w:name="doNotFlipMirrorIndents" w:uri="http://schemas.microsoft.com/office/word" w:val="1"/><w:compatSetting w:name="differentiateMultirowTableHeaders" w:uri="http://schemas.microsoft.com/office/word" w:val="1"/><w:compatSetting w:name="useWord2013TrackBottomHyphenation" w:uri="http://schemas.microsoft.com/office/word" w:val="0"/></w:compat><w:rsids><w:rsidRoot w:val="00233F76"/><w:rsid w:val="00233F76"/><w:rsid w:val="00723E87"/><w:rsid w:val="00733037"/></w:rsids><m:mathPr><m:mathFont m:val="Cambria Math"/><m:brkBin m:val="before"/><m:brkBinSub m:val="--"/><m:smallFrac m:val="0"/><m:dispDef/><m:lMargin m:val="0"/><m:rMargin m:val="0"/><m:defJc m:val="centerGroup"/><m:wrapIndent m:val="1440"/><m:intLim m:val="subSup"/><m:naryLim m:val="undOvr"/></m:mathPr><w:themeFontLang w:val="en-US" w:eastAsia="ja-JP"/><w:clrSchemeMapping w:bg1="light1" w:t1="dark1" w:bg2="light2" w:t2="dark2" w:accent1="accent1" w:accent2="accent2" w:accent3="accent3" w:accent4="accent4" w:accent5="accent5" w:accent6="accent6" w:hyperlink="hyperlink" w:followedHyperlink="followedHyperlink"/><w:shapeDefaults><o:shapedefaults v:ext="edit" spidmax="1026"><v:textbox inset="5.85pt,.7pt,5.85pt,.7pt"/></o:shapedefaults><o:shapelayout v:ext="edit"><o:idmap v:ext="edit" data="1"/></o:shapelayout></w:shapeDefaults><w:decimalSymbol w:val="."/><w:listSeparator w:val=","/><w14:docId w14:val="60E98D2C"/><w15:chartTrackingRefBased/><w15:docId w15:val="{8F5B3778-2951-4948-B303-34F78B79254F}"/></w:settings>
|
<w:settings xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||||
|
xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||||
|
xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
|
||||||
|
xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math"
|
||||||
|
xmlns:v="urn:schemas-microsoft-com:vml"
|
||||||
|
xmlns:w10="urn:schemas-microsoft-com:office:word"
|
||||||
|
xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
|
||||||
|
xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
|
||||||
|
xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
|
||||||
|
xmlns:w16cex="http://schemas.microsoft.com/office/word/2018/wordml/cex"
|
||||||
|
xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid"
|
||||||
|
xmlns:w16="http://schemas.microsoft.com/office/word/2018/wordml"
|
||||||
|
xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex"
|
||||||
|
xmlns:sl="http://schemas.openxmlformats.org/schemaLibrary/2006/main" mc:Ignorable="w14 w15 w16se w16cid w16 w16cex">
|
||||||
|
<w:zoom w:percent="100"/>
|
||||||
|
<w:bordersDoNotSurroundHeader/>
|
||||||
|
<w:bordersDoNotSurroundFooter/>
|
||||||
|
<w:proofState w:spelling="clean" w:grammar="clean"/>
|
||||||
|
<w:defaultTabStop w:val="840"/>
|
||||||
|
<w:displayHorizontalDrawingGridEvery w:val="0"/>
|
||||||
|
<w:displayVerticalDrawingGridEvery w:val="2"/>
|
||||||
|
<w:characterSpacingControl w:val="compressPunctuation"/>
|
||||||
|
<w:compat>
|
||||||
|
<w:spaceForUL/>
|
||||||
|
<w:balanceSingleByteDoubleByteWidth/>
|
||||||
|
<w:doNotLeaveBackslashAlone/>
|
||||||
|
<w:ulTrailSpace/>
|
||||||
|
<w:doNotExpandShiftReturn/>
|
||||||
|
<w:adjustLineHeightInTable/>
|
||||||
|
<w:useFELayout/>
|
||||||
|
<w:compatSetting w:name="compatibilityMode" w:uri="http://schemas.microsoft.com/office/word" w:val="15"/>
|
||||||
|
<w:compatSetting w:name="overrideTableStyleFontSizeAndJustification" w:uri="http://schemas.microsoft.com/office/word" w:val="1"/>
|
||||||
|
<w:compatSetting w:name="enableOpenTypeFeatures" w:uri="http://schemas.microsoft.com/office/word" w:val="1"/>
|
||||||
|
<w:compatSetting w:name="doNotFlipMirrorIndents" w:uri="http://schemas.microsoft.com/office/word" w:val="1"/>
|
||||||
|
<w:compatSetting w:name="differentiateMultirowTableHeaders" w:uri="http://schemas.microsoft.com/office/word" w:val="1"/>
|
||||||
|
<w:compatSetting w:name="useWord2013TrackBottomHyphenation" w:uri="http://schemas.microsoft.com/office/word" w:val="0"/>
|
||||||
|
</w:compat>
|
||||||
|
<w:rsids>
|
||||||
|
<w:rsidRoot w:val="00233F76"/>
|
||||||
|
<w:rsid w:val="00233F76"/>
|
||||||
|
<w:rsid w:val="00723E87"/>
|
||||||
|
<w:rsid w:val="00733037"/>
|
||||||
|
</w:rsids>
|
||||||
|
<m:mathPr>
|
||||||
|
<m:mathFont m:val="Cambria Math"/>
|
||||||
|
<m:brkBin m:val="before"/>
|
||||||
|
<m:brkBinSub m:val="--"/>
|
||||||
|
<m:smallFrac m:val="0"/>
|
||||||
|
<m:dispDef/>
|
||||||
|
<m:lMargin m:val="0"/>
|
||||||
|
<m:rMargin m:val="0"/>
|
||||||
|
<m:defJc m:val="centerGroup"/>
|
||||||
|
<m:wrapIndent m:val="1440"/>
|
||||||
|
<m:intLim m:val="subSup"/>
|
||||||
|
<m:naryLim m:val="undOvr"/>
|
||||||
|
</m:mathPr>
|
||||||
|
<w:themeFontLang w:val="en-US" w:eastAsia="ja-JP"/>
|
||||||
|
<w:clrSchemeMapping w:bg1="light1" w:t1="dark1" w:bg2="light2" w:t2="dark2" w:accent1="accent1" w:accent2="accent2" w:accent3="accent3" w:accent4="accent4" w:accent5="accent5" w:accent6="accent6" w:hyperlink="hyperlink" w:followedHyperlink="followedHyperlink"/>
|
||||||
|
<w:shapeDefaults>
|
||||||
|
<o:shapedefaults v:ext="edit" spidmax="1026">
|
||||||
|
<v:textbox inset="5.85pt,.7pt,5.85pt,.7pt"/>
|
||||||
|
</o:shapedefaults>
|
||||||
|
<o:shapelayout v:ext="edit">
|
||||||
|
<o:idmap v:ext="edit" data="1"/>
|
||||||
|
</o:shapelayout>
|
||||||
|
</w:shapeDefaults>
|
||||||
|
<w:decimalSymbol w:val="."/>
|
||||||
|
<w:listSeparator w:val=","/>
|
||||||
|
<w14:docId w14:val="60E98D2C"/>
|
||||||
|
<w15:chartTrackingRefBased/>
|
||||||
|
<w15:docId w15:val="{8F5B3778-2951-4948-B303-34F78B79254F}"/>
|
||||||
|
</w:settings>
|
|
@ -1 +1,16 @@
|
||||||
<w:settings xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape" mc:Ignorable="w14 w15 wp14"/>
|
<w:settings xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas"
|
||||||
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||||
|
xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||||
|
xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
|
||||||
|
xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math"
|
||||||
|
xmlns:v="urn:schemas-microsoft-com:vml"
|
||||||
|
xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing"
|
||||||
|
xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing"
|
||||||
|
xmlns:w10="urn:schemas-microsoft-com:office:word"
|
||||||
|
xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
|
||||||
|
xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
|
||||||
|
xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
|
||||||
|
xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup"
|
||||||
|
xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk"
|
||||||
|
xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml"
|
||||||
|
xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape" mc:Ignorable="w14 w15 wp14"/>
|
||||||
|
|
|
@ -1 +1,67 @@
|
||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?><w:settings xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" xmlns:sl="http://schemas.openxmlformats.org/schemaLibrary/2006/main" mc:Ignorable="w14 w15"><w:trackRevisions w:val="false" /><w:zoom w:percent="100" /><w:bordersDoNotSurroundHeader /><w:bordersDoNotSurroundFooter /><w:defaultTabStop w:val="840" /><w:displayHorizontalDrawingGridEvery w:val="0" /><w:displayVerticalDrawingGridEvery w:val="2" /><w:characterSpacingControl w:val="compressPunctuation" /><w:compat><w:spaceForUL /><w:balanceSingleByteDoubleByteWidth /><w:doNotLeaveBackslashAlone /><w:ulTrailSpace /><w:doNotExpandShiftReturn /><w:adjustLineHeightInTable /><w:useFELayout /><w:compatSetting w:name="compatibilityMode" w:uri="http://schemas.microsoft.com/office/word" w:val="15" /><w:compatSetting w:name="overrideTableStyleFontSizeAndJustification" w:uri="http://schemas.microsoft.com/office/word" w:val="1" /><w:compatSetting w:name="enableOpenTypeFeatures" w:uri="http://schemas.microsoft.com/office/word" w:val="1" /><w:compatSetting w:name="doNotFlipMirrorIndents" w:uri="http://schemas.microsoft.com/office/word" w:val="1" /><w:compatSetting w:name="differentiateMultirowTableHeaders" w:uri="http://schemas.microsoft.com/office/word" w:val="1" /></w:compat><m:mathPr><m:mathFont m:val="Cambria Math" /><m:brkBin m:val="before" /><m:brkBinSub m:val="--" /><m:smallFrac m:val="0" /><m:dispDef /><m:lMargin m:val="0" /><m:rMargin m:val="0" /><m:defJc m:val="centerGroup" /><m:wrapIndent m:val="1440" /><m:intLim m:val="subSup" /><m:naryLim m:val="undOvr" /></m:mathPr><w:themeFontLang w:val="en-US" w:eastAsia="ja-JP" /><w:clrSchemeMapping w:bg1="light1" w:t1="dark1" w:bg2="light2" w:t2="dark2" w:accent1="accent1" w:accent2="accent2" w:accent3="accent3" w:accent4="accent4" w:accent5="accent5" w:accent6="accent6" w:hyperlink="hyperlink" w:followedHyperlink="followedHyperlink" /><w:shapeDefaults><o:shapedefaults v:ext="edit" spidmax="1026"><v:textbox inset="5.85pt,.7pt,5.85pt,.7pt" /></o:shapedefaults><o:shapelayout v:ext="edit"><o:idmap v:ext="edit" data="1" /></o:shapelayout></w:shapeDefaults><w:decimalSymbol w:val="." /><w:listSeparator w:val="," /><w15:chartTrackingRefBased /><w14:docId w14:val="2629B307" /><w15:docId w15:val="{08a45a55-dfcc-4396-aedc-f7a5bfb7db65}" /><w:rsids><w:rsidRoot w:val="2629B307" /><w:rsid w:val="2629B307" /><w:rsid w:val="370DCFF3" /></w:rsids></w:settings>
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||||
|
<w:settings xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||||
|
xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||||
|
xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
|
||||||
|
xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math"
|
||||||
|
xmlns:v="urn:schemas-microsoft-com:vml"
|
||||||
|
xmlns:w10="urn:schemas-microsoft-com:office:word"
|
||||||
|
xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
|
||||||
|
xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
|
||||||
|
xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
|
||||||
|
xmlns:sl="http://schemas.openxmlformats.org/schemaLibrary/2006/main" mc:Ignorable="w14 w15">
|
||||||
|
<w:trackRevisions w:val="false" />
|
||||||
|
<w:zoom w:percent="100" />
|
||||||
|
<w:bordersDoNotSurroundHeader />
|
||||||
|
<w:bordersDoNotSurroundFooter />
|
||||||
|
<w:defaultTabStop w:val="840" />
|
||||||
|
<w:displayHorizontalDrawingGridEvery w:val="0" />
|
||||||
|
<w:displayVerticalDrawingGridEvery w:val="2" />
|
||||||
|
<w:characterSpacingControl w:val="compressPunctuation" />
|
||||||
|
<w:compat>
|
||||||
|
<w:spaceForUL />
|
||||||
|
<w:balanceSingleByteDoubleByteWidth />
|
||||||
|
<w:doNotLeaveBackslashAlone />
|
||||||
|
<w:ulTrailSpace />
|
||||||
|
<w:doNotExpandShiftReturn />
|
||||||
|
<w:adjustLineHeightInTable />
|
||||||
|
<w:useFELayout />
|
||||||
|
<w:compatSetting w:name="compatibilityMode" w:uri="http://schemas.microsoft.com/office/word" w:val="15" />
|
||||||
|
<w:compatSetting w:name="overrideTableStyleFontSizeAndJustification" w:uri="http://schemas.microsoft.com/office/word" w:val="1" />
|
||||||
|
<w:compatSetting w:name="enableOpenTypeFeatures" w:uri="http://schemas.microsoft.com/office/word" w:val="1" />
|
||||||
|
<w:compatSetting w:name="doNotFlipMirrorIndents" w:uri="http://schemas.microsoft.com/office/word" w:val="1" />
|
||||||
|
<w:compatSetting w:name="differentiateMultirowTableHeaders" w:uri="http://schemas.microsoft.com/office/word" w:val="1" />
|
||||||
|
</w:compat>
|
||||||
|
<m:mathPr>
|
||||||
|
<m:mathFont m:val="Cambria Math" />
|
||||||
|
<m:brkBin m:val="before" />
|
||||||
|
<m:brkBinSub m:val="--" />
|
||||||
|
<m:smallFrac m:val="0" />
|
||||||
|
<m:dispDef />
|
||||||
|
<m:lMargin m:val="0" />
|
||||||
|
<m:rMargin m:val="0" />
|
||||||
|
<m:defJc m:val="centerGroup" />
|
||||||
|
<m:wrapIndent m:val="1440" />
|
||||||
|
<m:intLim m:val="subSup" />
|
||||||
|
<m:naryLim m:val="undOvr" />
|
||||||
|
</m:mathPr>
|
||||||
|
<w:themeFontLang w:val="en-US" w:eastAsia="ja-JP" />
|
||||||
|
<w:clrSchemeMapping w:bg1="light1" w:t1="dark1" w:bg2="light2" w:t2="dark2" w:accent1="accent1" w:accent2="accent2" w:accent3="accent3" w:accent4="accent4" w:accent5="accent5" w:accent6="accent6" w:hyperlink="hyperlink" w:followedHyperlink="followedHyperlink" />
|
||||||
|
<w:shapeDefaults>
|
||||||
|
<o:shapedefaults v:ext="edit" spidmax="1026">
|
||||||
|
<v:textbox inset="5.85pt,.7pt,5.85pt,.7pt" />
|
||||||
|
</o:shapedefaults>
|
||||||
|
<o:shapelayout v:ext="edit">
|
||||||
|
<o:idmap v:ext="edit" data="1" />
|
||||||
|
</o:shapelayout>
|
||||||
|
</w:shapeDefaults>
|
||||||
|
<w:decimalSymbol w:val="." />
|
||||||
|
<w:listSeparator w:val="," />
|
||||||
|
<w15:chartTrackingRefBased />
|
||||||
|
<w14:docId w14:val="2629B307" />
|
||||||
|
<w15:docId w15:val="{08a45a55-dfcc-4396-aedc-f7a5bfb7db65}" />
|
||||||
|
<w:rsids>
|
||||||
|
<w:rsidRoot w:val="2629B307" />
|
||||||
|
<w:rsid w:val="2629B307" />
|
||||||
|
<w:rsid w:val="370DCFF3" />
|
||||||
|
</w:rsids>
|
||||||
|
</w:settings>
|
|
@ -1,2 +1,65 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||||
<w:settings xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" xmlns:w16cex="http://schemas.microsoft.com/office/word/2018/wordml/cex" xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid" xmlns:w16="http://schemas.microsoft.com/office/word/2018/wordml" xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex" xmlns:sl="http://schemas.openxmlformats.org/schemaLibrary/2006/main" mc:Ignorable="w14 w15 w16se w16cid w16 w16cex"><w:zoom w:percent="100"/><w:bordersDoNotSurroundHeader/><w:bordersDoNotSurroundFooter/><w:proofState w:grammar="clean"/><w:defaultTabStop w:val="840"/><w:displayHorizontalDrawingGridEvery w:val="0"/><w:displayVerticalDrawingGridEvery w:val="2"/><w:characterSpacingControl w:val="compressPunctuation"/><w:compat><w:spaceForUL/><w:balanceSingleByteDoubleByteWidth/><w:doNotLeaveBackslashAlone/><w:ulTrailSpace/><w:doNotExpandShiftReturn/><w:adjustLineHeightInTable/><w:useFELayout/><w:compatSetting w:name="compatibilityMode" w:uri="http://schemas.microsoft.com/office/word" w:val="15"/><w:compatSetting w:name="overrideTableStyleFontSizeAndJustification" w:uri="http://schemas.microsoft.com/office/word" w:val="1"/><w:compatSetting w:name="enableOpenTypeFeatures" w:uri="http://schemas.microsoft.com/office/word" w:val="1"/><w:compatSetting w:name="doNotFlipMirrorIndents" w:uri="http://schemas.microsoft.com/office/word" w:val="1"/><w:compatSetting w:name="differentiateMultirowTableHeaders" w:uri="http://schemas.microsoft.com/office/word" w:val="1"/><w:compatSetting w:name="useWord2013TrackBottomHyphenation" w:uri="http://schemas.microsoft.com/office/word" w:val="0"/></w:compat><w:rsids><w:rsidRoot w:val="00EB01C9"/><w:rsid w:val="00723E87"/><w:rsid w:val="00733037"/><w:rsid w:val="00EB01C9"/></w:rsids><m:mathPr><m:mathFont m:val="Cambria Math"/><m:brkBin m:val="before"/><m:brkBinSub m:val="--"/><m:smallFrac m:val="0"/><m:dispDef/><m:lMargin m:val="0"/><m:rMargin m:val="0"/><m:defJc m:val="centerGroup"/><m:wrapIndent m:val="1440"/><m:intLim m:val="subSup"/><m:naryLim m:val="undOvr"/></m:mathPr><w:themeFontLang w:val="en-US" w:eastAsia="ja-JP"/><w:clrSchemeMapping w:bg1="light1" w:t1="dark1" w:bg2="light2" w:t2="dark2" w:accent1="accent1" w:accent2="accent2" w:accent3="accent3" w:accent4="accent4" w:accent5="accent5" w:accent6="accent6" w:hyperlink="hyperlink" w:followedHyperlink="followedHyperlink"/><w:decimalSymbol w:val="."/><w:listSeparator w:val=","/><w14:docId w14:val="26329629"/><w15:chartTrackingRefBased/><w15:docId w15:val="{12AE9574-6206-9C46-ACD5-3687B20B4F92}"/></w:settings>
|
<w:settings xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||||
|
xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||||
|
xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
|
||||||
|
xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math"
|
||||||
|
xmlns:v="urn:schemas-microsoft-com:vml"
|
||||||
|
xmlns:w10="urn:schemas-microsoft-com:office:word"
|
||||||
|
xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
|
||||||
|
xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
|
||||||
|
xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
|
||||||
|
xmlns:w16cex="http://schemas.microsoft.com/office/word/2018/wordml/cex"
|
||||||
|
xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid"
|
||||||
|
xmlns:w16="http://schemas.microsoft.com/office/word/2018/wordml"
|
||||||
|
xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex"
|
||||||
|
xmlns:sl="http://schemas.openxmlformats.org/schemaLibrary/2006/main" mc:Ignorable="w14 w15 w16se w16cid w16 w16cex">
|
||||||
|
<w:zoom w:percent="100"/>
|
||||||
|
<w:bordersDoNotSurroundHeader/>
|
||||||
|
<w:bordersDoNotSurroundFooter/>
|
||||||
|
<w:proofState w:grammar="clean"/>
|
||||||
|
<w:defaultTabStop w:val="840"/>
|
||||||
|
<w:displayHorizontalDrawingGridEvery w:val="0"/>
|
||||||
|
<w:displayVerticalDrawingGridEvery w:val="2"/>
|
||||||
|
<w:characterSpacingControl w:val="compressPunctuation"/>
|
||||||
|
<w:compat>
|
||||||
|
<w:spaceForUL/>
|
||||||
|
<w:balanceSingleByteDoubleByteWidth/>
|
||||||
|
<w:doNotLeaveBackslashAlone/>
|
||||||
|
<w:ulTrailSpace/>
|
||||||
|
<w:doNotExpandShiftReturn/>
|
||||||
|
<w:adjustLineHeightInTable/>
|
||||||
|
<w:useFELayout/>
|
||||||
|
<w:compatSetting w:name="compatibilityMode" w:uri="http://schemas.microsoft.com/office/word" w:val="15"/>
|
||||||
|
<w:compatSetting w:name="overrideTableStyleFontSizeAndJustification" w:uri="http://schemas.microsoft.com/office/word" w:val="1"/>
|
||||||
|
<w:compatSetting w:name="enableOpenTypeFeatures" w:uri="http://schemas.microsoft.com/office/word" w:val="1"/>
|
||||||
|
<w:compatSetting w:name="doNotFlipMirrorIndents" w:uri="http://schemas.microsoft.com/office/word" w:val="1"/>
|
||||||
|
<w:compatSetting w:name="differentiateMultirowTableHeaders" w:uri="http://schemas.microsoft.com/office/word" w:val="1"/>
|
||||||
|
<w:compatSetting w:name="useWord2013TrackBottomHyphenation" w:uri="http://schemas.microsoft.com/office/word" w:val="0"/>
|
||||||
|
</w:compat>
|
||||||
|
<w:rsids>
|
||||||
|
<w:rsidRoot w:val="00EB01C9"/>
|
||||||
|
<w:rsid w:val="00723E87"/>
|
||||||
|
<w:rsid w:val="00733037"/>
|
||||||
|
<w:rsid w:val="00EB01C9"/>
|
||||||
|
</w:rsids>
|
||||||
|
<m:mathPr>
|
||||||
|
<m:mathFont m:val="Cambria Math"/>
|
||||||
|
<m:brkBin m:val="before"/>
|
||||||
|
<m:brkBinSub m:val="--"/>
|
||||||
|
<m:smallFrac m:val="0"/>
|
||||||
|
<m:dispDef/>
|
||||||
|
<m:lMargin m:val="0"/>
|
||||||
|
<m:rMargin m:val="0"/>
|
||||||
|
<m:defJc m:val="centerGroup"/>
|
||||||
|
<m:wrapIndent m:val="1440"/>
|
||||||
|
<m:intLim m:val="subSup"/>
|
||||||
|
<m:naryLim m:val="undOvr"/>
|
||||||
|
</m:mathPr>
|
||||||
|
<w:themeFontLang w:val="en-US" w:eastAsia="ja-JP"/>
|
||||||
|
<w:clrSchemeMapping w:bg1="light1" w:t1="dark1" w:bg2="light2" w:t2="dark2" w:accent1="accent1" w:accent2="accent2" w:accent3="accent3" w:accent4="accent4" w:accent5="accent5" w:accent6="accent6" w:hyperlink="hyperlink" w:followedHyperlink="followedHyperlink"/>
|
||||||
|
<w:decimalSymbol w:val="."/>
|
||||||
|
<w:listSeparator w:val=","/>
|
||||||
|
<w14:docId w14:val="26329629"/>
|
||||||
|
<w15:chartTrackingRefBased/>
|
||||||
|
<w15:docId w15:val="{12AE9574-6206-9C46-ACD5-3687B20B4F92}"/>
|
||||||
|
</w:settings>
|
|
@ -1,2 +1,10 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||||
<w:settings xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:zoom w:percent="100"/><w:defaultTabStop w:val="709"/><w:compat><w:doNotExpandShiftReturn/></w:compat><w:compat></w:compat><w:themeFontLang w:val="" w:eastAsia="" w:bidi=""/></w:settings>
|
<w:settings xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main">
|
||||||
|
<w:zoom w:percent="100"/>
|
||||||
|
<w:defaultTabStop w:val="709"/>
|
||||||
|
<w:compat>
|
||||||
|
<w:doNotExpandShiftReturn/>
|
||||||
|
</w:compat>
|
||||||
|
<w:compat></w:compat>
|
||||||
|
<w:themeFontLang w:val="" w:eastAsia="" w:bidi=""/>
|
||||||
|
</w:settings>
|
|
@ -0,0 +1,2 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||||
|
<Types xmlns="http://schemas.openxmlformats.org/package/2006/content-types"><Default Extension="rels" ContentType="application/vnd.openxmlformats-package.relationships+xml"/><Default Extension="xml" ContentType="application/xml"/><Override PartName="/word/document.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml"/><Override PartName="/word/styles.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml"/><Override PartName="/word/settings.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml"/><Override PartName="/word/webSettings.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml"/><Override PartName="/word/fontTable.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml"/><Override PartName="/word/theme/theme1.xml" ContentType="application/vnd.openxmlformats-officedocument.theme+xml"/><Override PartName="/docProps/core.xml" ContentType="application/vnd.openxmlformats-package.core-properties+xml"/><Override PartName="/docProps/app.xml" ContentType="application/vnd.openxmlformats-officedocument.extended-properties+xml"/></Types>
|
|
@ -0,0 +1,2 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||||
|
<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"><Relationship Id="rId3" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties" Target="docProps/app.xml"/><Relationship Id="rId2" Type="http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties" Target="docProps/core.xml"/><Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument" Target="word/document.xml"/></Relationships>
|
|
@ -0,0 +1,2 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||||
|
<Properties xmlns="http://schemas.openxmlformats.org/officeDocument/2006/extended-properties" xmlns:vt="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes"><Template>Normal.dotm</Template><TotalTime>1</TotalTime><Pages>1</Pages><Words>0</Words><Characters>1</Characters><Application>Microsoft Office Word</Application><DocSecurity>0</DocSecurity><Lines>1</Lines><Paragraphs>1</Paragraphs><ScaleCrop>false</ScaleCrop><Company></Company><LinksUpToDate>false</LinksUpToDate><CharactersWithSpaces>1</CharactersWithSpaces><SharedDoc>false</SharedDoc><HyperlinksChanged>false</HyperlinksChanged><AppVersion>16.0000</AppVersion></Properties>
|
|
@ -0,0 +1,2 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||||
|
<cp:coreProperties xmlns:cp="http://schemas.openxmlformats.org/package/2006/metadata/core-properties" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:dcmitype="http://purl.org/dc/dcmitype/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><dc:title></dc:title><dc:subject></dc:subject><dc:creator>植木智之</dc:creator><cp:keywords></cp:keywords><dc:description></dc:description><cp:lastModifiedBy>植木智之</cp:lastModifiedBy><cp:revision>1</cp:revision><dcterms:created xsi:type="dcterms:W3CDTF">2020-08-14T13:10:00Z</dcterms:created><dcterms:modified xsi:type="dcterms:W3CDTF">2020-08-14T13:11:00Z</dcterms:modified></cp:coreProperties>
|
|
@ -0,0 +1,2 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||||
|
<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"><Relationship Id="rId3" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/webSettings" Target="webSettings.xml"/><Relationship Id="rId2" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/settings" Target="settings.xml"/><Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles" Target="styles.xml"/><Relationship Id="rId5" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme" Target="theme/theme1.xml"/><Relationship Id="rId4" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/fontTable" Target="fontTable.xml"/></Relationships>
|
|
@ -0,0 +1,53 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||||
|
<w:document xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas"
|
||||||
|
xmlns:cx="http://schemas.microsoft.com/office/drawing/2014/chartex"
|
||||||
|
xmlns:cx1="http://schemas.microsoft.com/office/drawing/2015/9/8/chartex"
|
||||||
|
xmlns:cx2="http://schemas.microsoft.com/office/drawing/2015/10/21/chartex"
|
||||||
|
xmlns:cx3="http://schemas.microsoft.com/office/drawing/2016/5/9/chartex"
|
||||||
|
xmlns:cx4="http://schemas.microsoft.com/office/drawing/2016/5/10/chartex"
|
||||||
|
xmlns:cx5="http://schemas.microsoft.com/office/drawing/2016/5/11/chartex"
|
||||||
|
xmlns:cx6="http://schemas.microsoft.com/office/drawing/2016/5/12/chartex"
|
||||||
|
xmlns:cx7="http://schemas.microsoft.com/office/drawing/2016/5/13/chartex"
|
||||||
|
xmlns:cx8="http://schemas.microsoft.com/office/drawing/2016/5/14/chartex"
|
||||||
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||||
|
xmlns:aink="http://schemas.microsoft.com/office/drawing/2016/ink"
|
||||||
|
xmlns:am3d="http://schemas.microsoft.com/office/drawing/2017/model3d"
|
||||||
|
xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||||
|
xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
|
||||||
|
xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math"
|
||||||
|
xmlns:v="urn:schemas-microsoft-com:vml"
|
||||||
|
xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing"
|
||||||
|
xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing"
|
||||||
|
xmlns:w10="urn:schemas-microsoft-com:office:word"
|
||||||
|
xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
|
||||||
|
xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
|
||||||
|
xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
|
||||||
|
xmlns:w16cex="http://schemas.microsoft.com/office/word/2018/wordml/cex"
|
||||||
|
xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid"
|
||||||
|
xmlns:w16="http://schemas.microsoft.com/office/word/2018/wordml"
|
||||||
|
xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex"
|
||||||
|
xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup"
|
||||||
|
xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk"
|
||||||
|
xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml"
|
||||||
|
xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape" mc:Ignorable="w14 w15 w16se w16cid w16 w16cex wp14">
|
||||||
|
<w:body>
|
||||||
|
<w:p w:rsidR="00013A78" w:rsidRDefault="00013A78">
|
||||||
|
<w:pPr>
|
||||||
|
<w:sectPr w:rsidR="00013A78" w:rsidSect="00733037">
|
||||||
|
<w:pgSz w:w="11900" w:h="16840"/>
|
||||||
|
<w:pgMar w:top="1985" w:right="1701" w:bottom="1701" w:left="1701" w:header="851" w:footer="992" w:gutter="0"/>
|
||||||
|
<w:cols w:space="425"/>
|
||||||
|
<w:docGrid w:type="lines" w:linePitch="360"/>
|
||||||
|
</w:sectPr>
|
||||||
|
</w:pPr>
|
||||||
|
</w:p>
|
||||||
|
<w:p w:rsidR="006A55A7" w:rsidRDefault="00013A78"/>
|
||||||
|
<w:sectPr w:rsidR="006A55A7" w:rsidSect="00013A78">
|
||||||
|
<w:type w:val="continuous"/>
|
||||||
|
<w:pgSz w:w="11900" w:h="16840"/>
|
||||||
|
<w:pgMar w:top="1985" w:right="1701" w:bottom="1701" w:left="1701" w:header="851" w:footer="992" w:gutter="0"/>
|
||||||
|
<w:cols w:space="425"/>
|
||||||
|
<w:docGrid w:type="lines" w:linePitch="360"/>
|
||||||
|
</w:sectPr>
|
||||||
|
</w:body>
|
||||||
|
</w:document>
|
|
@ -0,0 +1,2 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||||
|
<w:fonts xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" xmlns:w16cex="http://schemas.microsoft.com/office/word/2018/wordml/cex" xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid" xmlns:w16="http://schemas.microsoft.com/office/word/2018/wordml" xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex" mc:Ignorable="w14 w15 w16se w16cid w16 w16cex"><w:font w:name="游明朝"><w:panose1 w:val="02020400000000000000"/><w:charset w:val="80"/><w:family w:val="roman"/><w:pitch w:val="variable"/><w:sig w:usb0="800002E7" w:usb1="2AC7FCFF" w:usb2="00000012" w:usb3="00000000" w:csb0="0002009F" w:csb1="00000000"/></w:font><w:font w:name="Times New Roman"><w:panose1 w:val="02020603050405020304"/><w:charset w:val="00"/><w:family w:val="roman"/><w:pitch w:val="variable"/><w:sig w:usb0="E0002EFF" w:usb1="C000785B" w:usb2="00000009" w:usb3="00000000" w:csb0="000001FF" w:csb1="00000000"/></w:font><w:font w:name="游ゴシック Light"><w:panose1 w:val="020B0300000000000000"/><w:charset w:val="80"/><w:family w:val="swiss"/><w:pitch w:val="variable"/><w:sig w:usb0="E00002FF" w:usb1="2AC7FDFF" w:usb2="00000016" w:usb3="00000000" w:csb0="0002009F" w:csb1="00000000"/></w:font></w:fonts>
|
|
@ -0,0 +1,64 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||||
|
<w:settings xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||||
|
xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||||
|
xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
|
||||||
|
xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math"
|
||||||
|
xmlns:v="urn:schemas-microsoft-com:vml"
|
||||||
|
xmlns:w10="urn:schemas-microsoft-com:office:word"
|
||||||
|
xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
|
||||||
|
xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
|
||||||
|
xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
|
||||||
|
xmlns:w16cex="http://schemas.microsoft.com/office/word/2018/wordml/cex"
|
||||||
|
xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid"
|
||||||
|
xmlns:w16="http://schemas.microsoft.com/office/word/2018/wordml"
|
||||||
|
xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex"
|
||||||
|
xmlns:sl="http://schemas.openxmlformats.org/schemaLibrary/2006/main" mc:Ignorable="w14 w15 w16se w16cid w16 w16cex">
|
||||||
|
<w:zoom w:percent="100"/>
|
||||||
|
<w:bordersDoNotSurroundHeader/>
|
||||||
|
<w:bordersDoNotSurroundFooter/>
|
||||||
|
<w:proofState w:grammar="clean"/>
|
||||||
|
<w:defaultTabStop w:val="840"/>
|
||||||
|
<w:displayHorizontalDrawingGridEvery w:val="0"/>
|
||||||
|
<w:displayVerticalDrawingGridEvery w:val="2"/>
|
||||||
|
<w:characterSpacingControl w:val="compressPunctuation"/>
|
||||||
|
<w:compat>
|
||||||
|
<w:spaceForUL/>
|
||||||
|
<w:balanceSingleByteDoubleByteWidth/>
|
||||||
|
<w:doNotLeaveBackslashAlone/>
|
||||||
|
<w:ulTrailSpace/>
|
||||||
|
<w:doNotExpandShiftReturn/>
|
||||||
|
<w:adjustLineHeightInTable/>
|
||||||
|
<w:useFELayout/>
|
||||||
|
<w:compatSetting w:name="compatibilityMode" w:uri="http://schemas.microsoft.com/office/word" w:val="15"/>
|
||||||
|
<w:compatSetting w:name="overrideTableStyleFontSizeAndJustification" w:uri="http://schemas.microsoft.com/office/word" w:val="1"/>
|
||||||
|
<w:compatSetting w:name="enableOpenTypeFeatures" w:uri="http://schemas.microsoft.com/office/word" w:val="1"/>
|
||||||
|
<w:compatSetting w:name="doNotFlipMirrorIndents" w:uri="http://schemas.microsoft.com/office/word" w:val="1"/>
|
||||||
|
<w:compatSetting w:name="differentiateMultirowTableHeaders" w:uri="http://schemas.microsoft.com/office/word" w:val="1"/>
|
||||||
|
<w:compatSetting w:name="useWord2013TrackBottomHyphenation" w:uri="http://schemas.microsoft.com/office/word" w:val="0"/>
|
||||||
|
</w:compat>
|
||||||
|
<w:rsids>
|
||||||
|
<w:rsidRoot w:val="00013A78"/>
|
||||||
|
<w:rsid w:val="00013A78"/>
|
||||||
|
<w:rsid w:val="00723E87"/>
|
||||||
|
<w:rsid w:val="00733037"/>
|
||||||
|
</w:rsids>
|
||||||
|
<m:mathPr>
|
||||||
|
<m:mathFont m:val="Cambria Math"/>
|
||||||
|
<m:brkBin m:val="before"/>
|
||||||
|
<m:brkBinSub m:val="--"/>
|
||||||
|
<m:smallFrac m:val="0"/>
|
||||||
|
<m:dispDef/>
|
||||||
|
<m:lMargin m:val="0"/>
|
||||||
|
<m:rMargin m:val="0"/>
|
||||||
|
<m:defJc m:val="centerGroup"/>
|
||||||
|
<m:wrapIndent m:val="1440"/>
|
||||||
|
<m:intLim m:val="subSup"/>
|
||||||
|
<m:naryLim m:val="undOvr"/>
|
||||||
|
</m:mathPr>
|
||||||
|
<w:themeFontLang w:val="en-US" w:eastAsia="ja-JP"/>
|
||||||
|
<w:clrSchemeMapping w:bg1="light1" w:t1="dark1" w:bg2="light2" w:t2="dark2" w:accent1="accent1" w:accent2="accent2" w:accent3="accent3" w:accent4="accent4" w:accent5="accent5" w:accent6="accent6" w:hyperlink="hyperlink" w:followedHyperlink="followedHyperlink"/>
|
||||||
|
<w:decimalSymbol w:val="."/>
|
||||||
|
<w:listSeparator w:val=","/>
|
||||||
|
<w15:chartTrackingRefBased/>
|
||||||
|
<w15:docId w15:val="{2BED6720-EC8D-9843-92E3-5DA6C8F98CDB}"/>
|
||||||
|
</w:settings>
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,2 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||||
|
<w:webSettings xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" xmlns:w16cex="http://schemas.microsoft.com/office/word/2018/wordml/cex" xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid" xmlns:w16="http://schemas.microsoft.com/office/word/2018/wordml" xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex" mc:Ignorable="w14 w15 w16se w16cid w16 w16cex"><w:optimizeForBrowser/><w:allowPNG/></w:webSettings>
|
|
@ -0,0 +1,66 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||||
|
<w:settings xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||||
|
xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||||
|
xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
|
||||||
|
xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math"
|
||||||
|
xmlns:v="urn:schemas-microsoft-com:vml"
|
||||||
|
xmlns:w10="urn:schemas-microsoft-com:office:word"
|
||||||
|
xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
|
||||||
|
xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
|
||||||
|
xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
|
||||||
|
xmlns:w16cex="http://schemas.microsoft.com/office/word/2018/wordml/cex"
|
||||||
|
xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid"
|
||||||
|
xmlns:w16="http://schemas.microsoft.com/office/word/2018/wordml"
|
||||||
|
xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex"
|
||||||
|
xmlns:sl="http://schemas.openxmlformats.org/schemaLibrary/2006/main" mc:Ignorable="w14 w15 w16se w16cid w16 w16cex">
|
||||||
|
<w:zoom w:percent="100"/>
|
||||||
|
<w:bordersDoNotSurroundHeader/>
|
||||||
|
<w:bordersDoNotSurroundFooter/>
|
||||||
|
<w:proofState w:spelling="clean" w:grammar="clean"/>
|
||||||
|
<w:defaultTabStop w:val="840"/>
|
||||||
|
<w:displayHorizontalDrawingGridEvery w:val="0"/>
|
||||||
|
<w:displayVerticalDrawingGridEvery w:val="2"/>
|
||||||
|
<w:characterSpacingControl w:val="compressPunctuation"/>
|
||||||
|
<w:compat>
|
||||||
|
<w:spaceForUL/>
|
||||||
|
<w:balanceSingleByteDoubleByteWidth/>
|
||||||
|
<w:doNotLeaveBackslashAlone/>
|
||||||
|
<w:ulTrailSpace/>
|
||||||
|
<w:doNotExpandShiftReturn/>
|
||||||
|
<w:adjustLineHeightInTable/>
|
||||||
|
<w:useFELayout/>
|
||||||
|
<w:compatSetting w:name="compatibilityMode" w:uri="http://schemas.microsoft.com/office/word" w:val="15"/>
|
||||||
|
<w:compatSetting w:name="overrideTableStyleFontSizeAndJustification" w:uri="http://schemas.microsoft.com/office/word" w:val="1"/>
|
||||||
|
<w:compatSetting w:name="enableOpenTypeFeatures" w:uri="http://schemas.microsoft.com/office/word" w:val="1"/>
|
||||||
|
<w:compatSetting w:name="doNotFlipMirrorIndents" w:uri="http://schemas.microsoft.com/office/word" w:val="1"/>
|
||||||
|
<w:compatSetting w:name="differentiateMultirowTableHeaders" w:uri="http://schemas.microsoft.com/office/word" w:val="1"/>
|
||||||
|
<w:compatSetting w:name="useWord2013TrackBottomHyphenation" w:uri="http://schemas.microsoft.com/office/word" w:val="0"/>
|
||||||
|
</w:compat>
|
||||||
|
<w:rsids>
|
||||||
|
<w:rsidRoot w:val="00DA410F"/>
|
||||||
|
<w:rsid w:val="00723E87"/>
|
||||||
|
<w:rsid w:val="00733037"/>
|
||||||
|
<w:rsid w:val="00A64FDE"/>
|
||||||
|
<w:rsid w:val="00DA410F"/>
|
||||||
|
</w:rsids>
|
||||||
|
<m:mathPr>
|
||||||
|
<m:mathFont m:val="Cambria Math"/>
|
||||||
|
<m:brkBin m:val="before"/>
|
||||||
|
<m:brkBinSub m:val="--"/>
|
||||||
|
<m:smallFrac m:val="0"/>
|
||||||
|
<m:dispDef/>
|
||||||
|
<m:lMargin m:val="0"/>
|
||||||
|
<m:rMargin m:val="0"/>
|
||||||
|
<m:defJc m:val="centerGroup"/>
|
||||||
|
<m:wrapIndent m:val="1440"/>
|
||||||
|
<m:intLim m:val="subSup"/>
|
||||||
|
<m:naryLim m:val="undOvr"/>
|
||||||
|
</m:mathPr>
|
||||||
|
<w:themeFontLang w:val="en-US" w:eastAsia="ja-JP"/>
|
||||||
|
<w:clrSchemeMapping w:bg1="light1" w:t1="dark1" w:bg2="light2" w:t2="dark2" w:accent1="accent1" w:accent2="accent2" w:accent3="accent3" w:accent4="accent4" w:accent5="accent5" w:accent6="accent6" w:hyperlink="hyperlink" w:followedHyperlink="followedHyperlink"/>
|
||||||
|
<w:decimalSymbol w:val="."/>
|
||||||
|
<w:listSeparator w:val=","/>
|
||||||
|
<w14:docId w14:val="129E143C"/>
|
||||||
|
<w15:chartTrackingRefBased/>
|
||||||
|
<w15:docId w15:val="{62548882-EF19-5048-97CA-F048BC622BD7}"/>
|
||||||
|
</w:settings>
|
Loading…
Reference in New Issue