markdown_to_word 0.1.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (39) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +15 -0
  3. data/.travis.yml +18 -0
  4. data/Gemfile +4 -0
  5. data/LICENSE +20 -0
  6. data/README.md +49 -0
  7. data/Rakefile +8 -0
  8. data/bin/m2w +14 -0
  9. data/lib/markdown_to_word.rb +18 -0
  10. data/lib/markdown_to_word/default.docx +0 -0
  11. data/lib/markdown_to_word/document.rb +35 -0
  12. data/lib/markdown_to_word/template/[Content_Types].xml +16 -0
  13. data/lib/markdown_to_word/template/_rels/.rels +7 -0
  14. data/lib/markdown_to_word/template/docProps/app.xml +2 -0
  15. data/lib/markdown_to_word/template/docProps/core.xml +2 -0
  16. data/lib/markdown_to_word/template/docProps/thumbnail.jpeg +0 -0
  17. data/lib/markdown_to_word/template/word/_rels/document.xml.rels +10 -0
  18. data/lib/markdown_to_word/template/word/document.xml +127 -0
  19. data/lib/markdown_to_word/template/word/fontTable.xml +64 -0
  20. data/lib/markdown_to_word/template/word/numbering.xml +229 -0
  21. data/lib/markdown_to_word/template/word/settings.xml +63 -0
  22. data/lib/markdown_to_word/template/word/styles.xml +504 -0
  23. data/lib/markdown_to_word/template/word/stylesWithEffects.xml +504 -0
  24. data/lib/markdown_to_word/template/word/theme/theme1.xml +318 -0
  25. data/lib/markdown_to_word/template/word/webSettings.xml +5 -0
  26. data/lib/markdown_to_word/version.rb +3 -0
  27. data/markdown_to_word.gemspec +29 -0
  28. data/script/bootstrap +3 -0
  29. data/script/build-template +19 -0
  30. data/script/cibuild +9 -0
  31. data/script/console +3 -0
  32. data/spec/fixtures/ol.md +4 -0
  33. data/spec/fixtures/ul.md +4 -0
  34. data/spec/markdown_to_word_bin_spec.rb +18 -0
  35. data/spec/markdown_to_word_conversion_spec.rb +21 -0
  36. data/spec/markdown_to_word_document_spec.rb +32 -0
  37. data/spec/markdown_to_word_spec.rb +15 -0
  38. data/spec/spec_helper.rb +25 -0
  39. metadata +201 -0
@@ -0,0 +1,504 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
+ <w:styles xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:mo="http://schemas.microsoft.com/office/mac/office/2008/main" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:mv="urn:schemas-microsoft-com:mac:vml" 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: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 wp14">
3
+ <w:docDefaults>
4
+ <w:rPrDefault>
5
+ <w:rPr>
6
+ <w:rFonts w:asciiTheme="minorHAnsi" w:eastAsiaTheme="minorEastAsia" w:hAnsiTheme="minorHAnsi" w:cstheme="minorBidi"/>
7
+ <w:sz w:val="24"/>
8
+ <w:szCs w:val="24"/>
9
+ <w:lang w:val="en-US" w:eastAsia="ja-JP" w:bidi="ar-SA"/>
10
+ </w:rPr>
11
+ </w:rPrDefault>
12
+ <w:pPrDefault/>
13
+ </w:docDefaults>
14
+ <w:latentStyles w:defLockedState="0" w:defUIPriority="99" w:defSemiHidden="1" w:defUnhideWhenUsed="1" w:defQFormat="0" w:count="276">
15
+ <w:lsdException w:name="Normal" w:semiHidden="0" w:uiPriority="0" w:unhideWhenUsed="0" w:qFormat="1"/>
16
+ <w:lsdException w:name="heading 1" w:semiHidden="0" w:uiPriority="9" w:unhideWhenUsed="0" w:qFormat="1"/>
17
+ <w:lsdException w:name="heading 2" w:uiPriority="9" w:qFormat="1"/>
18
+ <w:lsdException w:name="heading 3" w:uiPriority="9" w:qFormat="1"/>
19
+ <w:lsdException w:name="heading 4" w:uiPriority="9" w:qFormat="1"/>
20
+ <w:lsdException w:name="heading 5" w:uiPriority="9" w:qFormat="1"/>
21
+ <w:lsdException w:name="heading 6" w:uiPriority="9" w:qFormat="1"/>
22
+ <w:lsdException w:name="heading 7" w:uiPriority="9" w:qFormat="1"/>
23
+ <w:lsdException w:name="heading 8" w:uiPriority="9" w:qFormat="1"/>
24
+ <w:lsdException w:name="heading 9" w:uiPriority="9" w:qFormat="1"/>
25
+ <w:lsdException w:name="toc 1" w:uiPriority="39"/>
26
+ <w:lsdException w:name="toc 2" w:uiPriority="39"/>
27
+ <w:lsdException w:name="toc 3" w:uiPriority="39"/>
28
+ <w:lsdException w:name="toc 4" w:uiPriority="39"/>
29
+ <w:lsdException w:name="toc 5" w:uiPriority="39"/>
30
+ <w:lsdException w:name="toc 6" w:uiPriority="39"/>
31
+ <w:lsdException w:name="toc 7" w:uiPriority="39"/>
32
+ <w:lsdException w:name="toc 8" w:uiPriority="39"/>
33
+ <w:lsdException w:name="toc 9" w:uiPriority="39"/>
34
+ <w:lsdException w:name="caption" w:uiPriority="35" w:qFormat="1"/>
35
+ <w:lsdException w:name="Title" w:semiHidden="0" w:uiPriority="10" w:unhideWhenUsed="0" w:qFormat="1"/>
36
+ <w:lsdException w:name="Default Paragraph Font" w:uiPriority="1"/>
37
+ <w:lsdException w:name="Subtitle" w:semiHidden="0" w:uiPriority="11" w:unhideWhenUsed="0" w:qFormat="1"/>
38
+ <w:lsdException w:name="Strong" w:semiHidden="0" w:uiPriority="22" w:unhideWhenUsed="0" w:qFormat="1"/>
39
+ <w:lsdException w:name="Emphasis" w:semiHidden="0" w:uiPriority="20" w:unhideWhenUsed="0" w:qFormat="1"/>
40
+ <w:lsdException w:name="Table Grid" w:semiHidden="0" w:uiPriority="59" w:unhideWhenUsed="0"/>
41
+ <w:lsdException w:name="Placeholder Text" w:unhideWhenUsed="0"/>
42
+ <w:lsdException w:name="No Spacing" w:semiHidden="0" w:uiPriority="1" w:unhideWhenUsed="0" w:qFormat="1"/>
43
+ <w:lsdException w:name="Light Shading" w:semiHidden="0" w:uiPriority="60" w:unhideWhenUsed="0"/>
44
+ <w:lsdException w:name="Light List" w:semiHidden="0" w:uiPriority="61" w:unhideWhenUsed="0"/>
45
+ <w:lsdException w:name="Light Grid" w:semiHidden="0" w:uiPriority="62" w:unhideWhenUsed="0"/>
46
+ <w:lsdException w:name="Medium Shading 1" w:semiHidden="0" w:uiPriority="63" w:unhideWhenUsed="0"/>
47
+ <w:lsdException w:name="Medium Shading 2" w:semiHidden="0" w:uiPriority="64" w:unhideWhenUsed="0"/>
48
+ <w:lsdException w:name="Medium List 1" w:semiHidden="0" w:uiPriority="65" w:unhideWhenUsed="0"/>
49
+ <w:lsdException w:name="Medium List 2" w:semiHidden="0" w:uiPriority="66" w:unhideWhenUsed="0"/>
50
+ <w:lsdException w:name="Medium Grid 1" w:semiHidden="0" w:uiPriority="67" w:unhideWhenUsed="0"/>
51
+ <w:lsdException w:name="Medium Grid 2" w:semiHidden="0" w:uiPriority="68" w:unhideWhenUsed="0"/>
52
+ <w:lsdException w:name="Medium Grid 3" w:semiHidden="0" w:uiPriority="69" w:unhideWhenUsed="0"/>
53
+ <w:lsdException w:name="Dark List" w:semiHidden="0" w:uiPriority="70" w:unhideWhenUsed="0"/>
54
+ <w:lsdException w:name="Colorful Shading" w:semiHidden="0" w:uiPriority="71" w:unhideWhenUsed="0"/>
55
+ <w:lsdException w:name="Colorful List" w:semiHidden="0" w:uiPriority="72" w:unhideWhenUsed="0"/>
56
+ <w:lsdException w:name="Colorful Grid" w:semiHidden="0" w:uiPriority="73" w:unhideWhenUsed="0"/>
57
+ <w:lsdException w:name="Light Shading Accent 1" w:semiHidden="0" w:uiPriority="60" w:unhideWhenUsed="0"/>
58
+ <w:lsdException w:name="Light List Accent 1" w:semiHidden="0" w:uiPriority="61" w:unhideWhenUsed="0"/>
59
+ <w:lsdException w:name="Light Grid Accent 1" w:semiHidden="0" w:uiPriority="62" w:unhideWhenUsed="0"/>
60
+ <w:lsdException w:name="Medium Shading 1 Accent 1" w:semiHidden="0" w:uiPriority="63" w:unhideWhenUsed="0"/>
61
+ <w:lsdException w:name="Medium Shading 2 Accent 1" w:semiHidden="0" w:uiPriority="64" w:unhideWhenUsed="0"/>
62
+ <w:lsdException w:name="Medium List 1 Accent 1" w:semiHidden="0" w:uiPriority="65" w:unhideWhenUsed="0"/>
63
+ <w:lsdException w:name="Revision" w:unhideWhenUsed="0"/>
64
+ <w:lsdException w:name="List Paragraph" w:semiHidden="0" w:uiPriority="34" w:unhideWhenUsed="0" w:qFormat="1"/>
65
+ <w:lsdException w:name="Quote" w:semiHidden="0" w:uiPriority="29" w:unhideWhenUsed="0" w:qFormat="1"/>
66
+ <w:lsdException w:name="Intense Quote" w:semiHidden="0" w:uiPriority="30" w:unhideWhenUsed="0" w:qFormat="1"/>
67
+ <w:lsdException w:name="Medium List 2 Accent 1" w:semiHidden="0" w:uiPriority="66" w:unhideWhenUsed="0"/>
68
+ <w:lsdException w:name="Medium Grid 1 Accent 1" w:semiHidden="0" w:uiPriority="67" w:unhideWhenUsed="0"/>
69
+ <w:lsdException w:name="Medium Grid 2 Accent 1" w:semiHidden="0" w:uiPriority="68" w:unhideWhenUsed="0"/>
70
+ <w:lsdException w:name="Medium Grid 3 Accent 1" w:semiHidden="0" w:uiPriority="69" w:unhideWhenUsed="0"/>
71
+ <w:lsdException w:name="Dark List Accent 1" w:semiHidden="0" w:uiPriority="70" w:unhideWhenUsed="0"/>
72
+ <w:lsdException w:name="Colorful Shading Accent 1" w:semiHidden="0" w:uiPriority="71" w:unhideWhenUsed="0"/>
73
+ <w:lsdException w:name="Colorful List Accent 1" w:semiHidden="0" w:uiPriority="72" w:unhideWhenUsed="0"/>
74
+ <w:lsdException w:name="Colorful Grid Accent 1" w:semiHidden="0" w:uiPriority="73" w:unhideWhenUsed="0"/>
75
+ <w:lsdException w:name="Light Shading Accent 2" w:semiHidden="0" w:uiPriority="60" w:unhideWhenUsed="0"/>
76
+ <w:lsdException w:name="Light List Accent 2" w:semiHidden="0" w:uiPriority="61" w:unhideWhenUsed="0"/>
77
+ <w:lsdException w:name="Light Grid Accent 2" w:semiHidden="0" w:uiPriority="62" w:unhideWhenUsed="0"/>
78
+ <w:lsdException w:name="Medium Shading 1 Accent 2" w:semiHidden="0" w:uiPriority="63" w:unhideWhenUsed="0"/>
79
+ <w:lsdException w:name="Medium Shading 2 Accent 2" w:semiHidden="0" w:uiPriority="64" w:unhideWhenUsed="0"/>
80
+ <w:lsdException w:name="Medium List 1 Accent 2" w:semiHidden="0" w:uiPriority="65" w:unhideWhenUsed="0"/>
81
+ <w:lsdException w:name="Medium List 2 Accent 2" w:semiHidden="0" w:uiPriority="66" w:unhideWhenUsed="0"/>
82
+ <w:lsdException w:name="Medium Grid 1 Accent 2" w:semiHidden="0" w:uiPriority="67" w:unhideWhenUsed="0"/>
83
+ <w:lsdException w:name="Medium Grid 2 Accent 2" w:semiHidden="0" w:uiPriority="68" w:unhideWhenUsed="0"/>
84
+ <w:lsdException w:name="Medium Grid 3 Accent 2" w:semiHidden="0" w:uiPriority="69" w:unhideWhenUsed="0"/>
85
+ <w:lsdException w:name="Dark List Accent 2" w:semiHidden="0" w:uiPriority="70" w:unhideWhenUsed="0"/>
86
+ <w:lsdException w:name="Colorful Shading Accent 2" w:semiHidden="0" w:uiPriority="71" w:unhideWhenUsed="0"/>
87
+ <w:lsdException w:name="Colorful List Accent 2" w:semiHidden="0" w:uiPriority="72" w:unhideWhenUsed="0"/>
88
+ <w:lsdException w:name="Colorful Grid Accent 2" w:semiHidden="0" w:uiPriority="73" w:unhideWhenUsed="0"/>
89
+ <w:lsdException w:name="Light Shading Accent 3" w:semiHidden="0" w:uiPriority="60" w:unhideWhenUsed="0"/>
90
+ <w:lsdException w:name="Light List Accent 3" w:semiHidden="0" w:uiPriority="61" w:unhideWhenUsed="0"/>
91
+ <w:lsdException w:name="Light Grid Accent 3" w:semiHidden="0" w:uiPriority="62" w:unhideWhenUsed="0"/>
92
+ <w:lsdException w:name="Medium Shading 1 Accent 3" w:semiHidden="0" w:uiPriority="63" w:unhideWhenUsed="0"/>
93
+ <w:lsdException w:name="Medium Shading 2 Accent 3" w:semiHidden="0" w:uiPriority="64" w:unhideWhenUsed="0"/>
94
+ <w:lsdException w:name="Medium List 1 Accent 3" w:semiHidden="0" w:uiPriority="65" w:unhideWhenUsed="0"/>
95
+ <w:lsdException w:name="Medium List 2 Accent 3" w:semiHidden="0" w:uiPriority="66" w:unhideWhenUsed="0"/>
96
+ <w:lsdException w:name="Medium Grid 1 Accent 3" w:semiHidden="0" w:uiPriority="67" w:unhideWhenUsed="0"/>
97
+ <w:lsdException w:name="Medium Grid 2 Accent 3" w:semiHidden="0" w:uiPriority="68" w:unhideWhenUsed="0"/>
98
+ <w:lsdException w:name="Medium Grid 3 Accent 3" w:semiHidden="0" w:uiPriority="69" w:unhideWhenUsed="0"/>
99
+ <w:lsdException w:name="Dark List Accent 3" w:semiHidden="0" w:uiPriority="70" w:unhideWhenUsed="0"/>
100
+ <w:lsdException w:name="Colorful Shading Accent 3" w:semiHidden="0" w:uiPriority="71" w:unhideWhenUsed="0"/>
101
+ <w:lsdException w:name="Colorful List Accent 3" w:semiHidden="0" w:uiPriority="72" w:unhideWhenUsed="0"/>
102
+ <w:lsdException w:name="Colorful Grid Accent 3" w:semiHidden="0" w:uiPriority="73" w:unhideWhenUsed="0"/>
103
+ <w:lsdException w:name="Light Shading Accent 4" w:semiHidden="0" w:uiPriority="60" w:unhideWhenUsed="0"/>
104
+ <w:lsdException w:name="Light List Accent 4" w:semiHidden="0" w:uiPriority="61" w:unhideWhenUsed="0"/>
105
+ <w:lsdException w:name="Light Grid Accent 4" w:semiHidden="0" w:uiPriority="62" w:unhideWhenUsed="0"/>
106
+ <w:lsdException w:name="Medium Shading 1 Accent 4" w:semiHidden="0" w:uiPriority="63" w:unhideWhenUsed="0"/>
107
+ <w:lsdException w:name="Medium Shading 2 Accent 4" w:semiHidden="0" w:uiPriority="64" w:unhideWhenUsed="0"/>
108
+ <w:lsdException w:name="Medium List 1 Accent 4" w:semiHidden="0" w:uiPriority="65" w:unhideWhenUsed="0"/>
109
+ <w:lsdException w:name="Medium List 2 Accent 4" w:semiHidden="0" w:uiPriority="66" w:unhideWhenUsed="0"/>
110
+ <w:lsdException w:name="Medium Grid 1 Accent 4" w:semiHidden="0" w:uiPriority="67" w:unhideWhenUsed="0"/>
111
+ <w:lsdException w:name="Medium Grid 2 Accent 4" w:semiHidden="0" w:uiPriority="68" w:unhideWhenUsed="0"/>
112
+ <w:lsdException w:name="Medium Grid 3 Accent 4" w:semiHidden="0" w:uiPriority="69" w:unhideWhenUsed="0"/>
113
+ <w:lsdException w:name="Dark List Accent 4" w:semiHidden="0" w:uiPriority="70" w:unhideWhenUsed="0"/>
114
+ <w:lsdException w:name="Colorful Shading Accent 4" w:semiHidden="0" w:uiPriority="71" w:unhideWhenUsed="0"/>
115
+ <w:lsdException w:name="Colorful List Accent 4" w:semiHidden="0" w:uiPriority="72" w:unhideWhenUsed="0"/>
116
+ <w:lsdException w:name="Colorful Grid Accent 4" w:semiHidden="0" w:uiPriority="73" w:unhideWhenUsed="0"/>
117
+ <w:lsdException w:name="Light Shading Accent 5" w:semiHidden="0" w:uiPriority="60" w:unhideWhenUsed="0"/>
118
+ <w:lsdException w:name="Light List Accent 5" w:semiHidden="0" w:uiPriority="61" w:unhideWhenUsed="0"/>
119
+ <w:lsdException w:name="Light Grid Accent 5" w:semiHidden="0" w:uiPriority="62" w:unhideWhenUsed="0"/>
120
+ <w:lsdException w:name="Medium Shading 1 Accent 5" w:semiHidden="0" w:uiPriority="63" w:unhideWhenUsed="0"/>
121
+ <w:lsdException w:name="Medium Shading 2 Accent 5" w:semiHidden="0" w:uiPriority="64" w:unhideWhenUsed="0"/>
122
+ <w:lsdException w:name="Medium List 1 Accent 5" w:semiHidden="0" w:uiPriority="65" w:unhideWhenUsed="0"/>
123
+ <w:lsdException w:name="Medium List 2 Accent 5" w:semiHidden="0" w:uiPriority="66" w:unhideWhenUsed="0"/>
124
+ <w:lsdException w:name="Medium Grid 1 Accent 5" w:semiHidden="0" w:uiPriority="67" w:unhideWhenUsed="0"/>
125
+ <w:lsdException w:name="Medium Grid 2 Accent 5" w:semiHidden="0" w:uiPriority="68" w:unhideWhenUsed="0"/>
126
+ <w:lsdException w:name="Medium Grid 3 Accent 5" w:semiHidden="0" w:uiPriority="69" w:unhideWhenUsed="0"/>
127
+ <w:lsdException w:name="Dark List Accent 5" w:semiHidden="0" w:uiPriority="70" w:unhideWhenUsed="0"/>
128
+ <w:lsdException w:name="Colorful Shading Accent 5" w:semiHidden="0" w:uiPriority="71" w:unhideWhenUsed="0"/>
129
+ <w:lsdException w:name="Colorful List Accent 5" w:semiHidden="0" w:uiPriority="72" w:unhideWhenUsed="0"/>
130
+ <w:lsdException w:name="Colorful Grid Accent 5" w:semiHidden="0" w:uiPriority="73" w:unhideWhenUsed="0"/>
131
+ <w:lsdException w:name="Light Shading Accent 6" w:semiHidden="0" w:uiPriority="60" w:unhideWhenUsed="0"/>
132
+ <w:lsdException w:name="Light List Accent 6" w:semiHidden="0" w:uiPriority="61" w:unhideWhenUsed="0"/>
133
+ <w:lsdException w:name="Light Grid Accent 6" w:semiHidden="0" w:uiPriority="62" w:unhideWhenUsed="0"/>
134
+ <w:lsdException w:name="Medium Shading 1 Accent 6" w:semiHidden="0" w:uiPriority="63" w:unhideWhenUsed="0"/>
135
+ <w:lsdException w:name="Medium Shading 2 Accent 6" w:semiHidden="0" w:uiPriority="64" w:unhideWhenUsed="0"/>
136
+ <w:lsdException w:name="Medium List 1 Accent 6" w:semiHidden="0" w:uiPriority="65" w:unhideWhenUsed="0"/>
137
+ <w:lsdException w:name="Medium List 2 Accent 6" w:semiHidden="0" w:uiPriority="66" w:unhideWhenUsed="0"/>
138
+ <w:lsdException w:name="Medium Grid 1 Accent 6" w:semiHidden="0" w:uiPriority="67" w:unhideWhenUsed="0"/>
139
+ <w:lsdException w:name="Medium Grid 2 Accent 6" w:semiHidden="0" w:uiPriority="68" w:unhideWhenUsed="0"/>
140
+ <w:lsdException w:name="Medium Grid 3 Accent 6" w:semiHidden="0" w:uiPriority="69" w:unhideWhenUsed="0"/>
141
+ <w:lsdException w:name="Dark List Accent 6" w:semiHidden="0" w:uiPriority="70" w:unhideWhenUsed="0"/>
142
+ <w:lsdException w:name="Colorful Shading Accent 6" w:semiHidden="0" w:uiPriority="71" w:unhideWhenUsed="0"/>
143
+ <w:lsdException w:name="Colorful List Accent 6" w:semiHidden="0" w:uiPriority="72" w:unhideWhenUsed="0"/>
144
+ <w:lsdException w:name="Colorful Grid Accent 6" w:semiHidden="0" w:uiPriority="73" w:unhideWhenUsed="0"/>
145
+ <w:lsdException w:name="Subtle Emphasis" w:semiHidden="0" w:uiPriority="19" w:unhideWhenUsed="0" w:qFormat="1"/>
146
+ <w:lsdException w:name="Intense Emphasis" w:semiHidden="0" w:uiPriority="21" w:unhideWhenUsed="0" w:qFormat="1"/>
147
+ <w:lsdException w:name="Subtle Reference" w:semiHidden="0" w:uiPriority="31" w:unhideWhenUsed="0" w:qFormat="1"/>
148
+ <w:lsdException w:name="Intense Reference" w:semiHidden="0" w:uiPriority="32" w:unhideWhenUsed="0" w:qFormat="1"/>
149
+ <w:lsdException w:name="Book Title" w:semiHidden="0" w:uiPriority="33" w:unhideWhenUsed="0" w:qFormat="1"/>
150
+ <w:lsdException w:name="Bibliography" w:uiPriority="37"/>
151
+ <w:lsdException w:name="TOC Heading" w:uiPriority="39" w:qFormat="1"/>
152
+ </w:latentStyles>
153
+ <w:style w:type="paragraph" w:default="1" w:styleId="Normal">
154
+ <w:name w:val="Normal"/>
155
+ <w:qFormat/>
156
+ <w:rsid w:val="00E01725"/>
157
+ <w:pPr>
158
+ <w:overflowPunct w:val="0"/>
159
+ <w:autoSpaceDE w:val="0"/>
160
+ <w:autoSpaceDN w:val="0"/>
161
+ <w:adjustRightInd w:val="0"/>
162
+ </w:pPr>
163
+ <w:rPr>
164
+ <w:rFonts w:ascii="Arial" w:eastAsia="Times New Roman" w:hAnsi="Arial" w:cs="Times New Roman"/>
165
+ <w:sz w:val="18"/>
166
+ <w:szCs w:val="20"/>
167
+ </w:rPr>
168
+ </w:style>
169
+ <w:style w:type="paragraph" w:styleId="Heading1">
170
+ <w:name w:val="heading 1"/>
171
+ <w:basedOn w:val="Normal"/>
172
+ <w:next w:val="Heading2"/>
173
+ <w:link w:val="Heading1Char"/>
174
+ <w:uiPriority w:val="9"/>
175
+ <w:qFormat/>
176
+ <w:rsid w:val="00E01725"/>
177
+ <w:pPr>
178
+ <w:keepNext/>
179
+ <w:keepLines/>
180
+ <w:spacing w:after="240"/>
181
+ <w:outlineLvl w:val="0"/>
182
+ </w:pPr>
183
+ <w:rPr>
184
+ <w:rFonts w:eastAsiaTheme="majorEastAsia" w:cstheme="majorBidi"/>
185
+ <w:b/>
186
+ <w:bCs/>
187
+ <w:caps/>
188
+ <w:sz w:val="28"/>
189
+ <w:szCs w:val="28"/>
190
+ <w:lang w:eastAsia="ja-JP"/>
191
+ </w:rPr>
192
+ </w:style>
193
+ <w:style w:type="paragraph" w:styleId="Heading2">
194
+ <w:name w:val="heading 2"/>
195
+ <w:basedOn w:val="Normal"/>
196
+ <w:next w:val="Normal"/>
197
+ <w:link w:val="Heading2Char"/>
198
+ <w:uiPriority w:val="9"/>
199
+ <w:unhideWhenUsed/>
200
+ <w:qFormat/>
201
+ <w:rsid w:val="00E01725"/>
202
+ <w:pPr>
203
+ <w:keepNext/>
204
+ <w:keepLines/>
205
+ <w:spacing w:before="240" w:after="120"/>
206
+ <w:outlineLvl w:val="1"/>
207
+ </w:pPr>
208
+ <w:rPr>
209
+ <w:rFonts w:eastAsiaTheme="majorEastAsia" w:cstheme="majorBidi"/>
210
+ <w:b/>
211
+ <w:bCs/>
212
+ <w:caps/>
213
+ <w:sz w:val="20"/>
214
+ <w:lang w:eastAsia="ja-JP"/>
215
+ </w:rPr>
216
+ </w:style>
217
+ <w:style w:type="paragraph" w:styleId="Heading3">
218
+ <w:name w:val="heading 3"/>
219
+ <w:basedOn w:val="Normal"/>
220
+ <w:next w:val="Normal"/>
221
+ <w:link w:val="Heading3Char"/>
222
+ <w:uiPriority w:val="9"/>
223
+ <w:unhideWhenUsed/>
224
+ <w:qFormat/>
225
+ <w:rsid w:val="00E01725"/>
226
+ <w:pPr>
227
+ <w:keepNext/>
228
+ <w:keepLines/>
229
+ <w:spacing w:before="200" w:line="276" w:lineRule="auto"/>
230
+ <w:outlineLvl w:val="2"/>
231
+ </w:pPr>
232
+ <w:rPr>
233
+ <w:rFonts w:eastAsiaTheme="majorEastAsia" w:cstheme="majorBidi"/>
234
+ <w:b/>
235
+ <w:bCs/>
236
+ <w:caps/>
237
+ <w:szCs w:val="18"/>
238
+ <w:lang w:eastAsia="ja-JP"/>
239
+ </w:rPr>
240
+ </w:style>
241
+ <w:style w:type="paragraph" w:styleId="Heading4">
242
+ <w:name w:val="heading 4"/>
243
+ <w:basedOn w:val="Normal"/>
244
+ <w:next w:val="Normal"/>
245
+ <w:link w:val="Heading4Char"/>
246
+ <w:uiPriority w:val="9"/>
247
+ <w:unhideWhenUsed/>
248
+ <w:qFormat/>
249
+ <w:rsid w:val="00E01725"/>
250
+ <w:pPr>
251
+ <w:keepNext/>
252
+ <w:keepLines/>
253
+ <w:spacing w:before="200"/>
254
+ <w:outlineLvl w:val="3"/>
255
+ </w:pPr>
256
+ <w:rPr>
257
+ <w:rFonts w:eastAsiaTheme="majorEastAsia" w:cstheme="majorBidi"/>
258
+ <w:i/>
259
+ <w:iCs/>
260
+ <w:caps/>
261
+ <w:szCs w:val="18"/>
262
+ <w:lang w:eastAsia="ja-JP"/>
263
+ </w:rPr>
264
+ </w:style>
265
+ <w:style w:type="paragraph" w:styleId="Heading5">
266
+ <w:name w:val="heading 5"/>
267
+ <w:basedOn w:val="Heading4"/>
268
+ <w:next w:val="Normal"/>
269
+ <w:link w:val="Heading5Char"/>
270
+ <w:uiPriority w:val="9"/>
271
+ <w:unhideWhenUsed/>
272
+ <w:qFormat/>
273
+ <w:rsid w:val="005C665D"/>
274
+ <w:pPr>
275
+ <w:spacing w:after="300"/>
276
+ <w:jc w:val="both"/>
277
+ <w:outlineLvl w:val="4"/>
278
+ </w:pPr>
279
+ <w:rPr>
280
+ <w:rFonts w:ascii="Times New Roman" w:hAnsi="Times New Roman"/>
281
+ <w:b/>
282
+ <w:iCs w:val="0"/>
283
+ <w:sz w:val="28"/>
284
+ <w:szCs w:val="26"/>
285
+ </w:rPr>
286
+ </w:style>
287
+ <w:style w:type="paragraph" w:styleId="Heading6">
288
+ <w:name w:val="heading 6"/>
289
+ <w:basedOn w:val="Normal"/>
290
+ <w:next w:val="Normal"/>
291
+ <w:link w:val="Heading6Char"/>
292
+ <w:uiPriority w:val="9"/>
293
+ <w:unhideWhenUsed/>
294
+ <w:qFormat/>
295
+ <w:rsid w:val="00B268BF"/>
296
+ <w:pPr>
297
+ <w:keepNext/>
298
+ <w:keepLines/>
299
+ <w:spacing w:before="200"/>
300
+ <w:jc w:val="both"/>
301
+ <w:outlineLvl w:val="5"/>
302
+ </w:pPr>
303
+ <w:rPr>
304
+ <w:rFonts w:ascii="Times New Roman" w:eastAsiaTheme="majorEastAsia" w:hAnsi="Times New Roman" w:cstheme="majorBidi"/>
305
+ <w:i/>
306
+ <w:iCs/>
307
+ <w:color w:val="000000" w:themeColor="text1"/>
308
+ <w:sz w:val="28"/>
309
+ <w:szCs w:val="24"/>
310
+ <w:lang w:eastAsia="ja-JP"/>
311
+ </w:rPr>
312
+ </w:style>
313
+ <w:style w:type="character" w:default="1" w:styleId="DefaultParagraphFont">
314
+ <w:name w:val="Default Paragraph Font"/>
315
+ <w:uiPriority w:val="1"/>
316
+ <w:semiHidden/>
317
+ <w:unhideWhenUsed/>
318
+ </w:style>
319
+ <w:style w:type="table" w:default="1" w:styleId="TableNormal">
320
+ <w:name w:val="Normal Table"/>
321
+ <w:uiPriority w:val="99"/>
322
+ <w:semiHidden/>
323
+ <w:unhideWhenUsed/>
324
+ <w:tblPr>
325
+ <w:tblInd w:w="0" w:type="dxa"/>
326
+ <w:tblCellMar>
327
+ <w:top w:w="0" w:type="dxa"/>
328
+ <w:left w:w="108" w:type="dxa"/>
329
+ <w:bottom w:w="0" w:type="dxa"/>
330
+ <w:right w:w="108" w:type="dxa"/>
331
+ </w:tblCellMar>
332
+ </w:tblPr>
333
+ </w:style>
334
+ <w:style w:type="numbering" w:default="1" w:styleId="NoList">
335
+ <w:name w:val="No List"/>
336
+ <w:uiPriority w:val="99"/>
337
+ <w:semiHidden/>
338
+ <w:unhideWhenUsed/>
339
+ </w:style>
340
+ <w:style w:type="character" w:customStyle="1" w:styleId="h2">
341
+ <w:name w:val="h2"/>
342
+ <w:uiPriority w:val="1"/>
343
+ <w:rsid w:val="00556BF4"/>
344
+ <w:rPr>
345
+ <w:rFonts w:asciiTheme="majorHAnsi" w:hAnsiTheme="majorHAnsi"/>
346
+ <w:b/>
347
+ <w:sz w:val="32"/>
348
+ </w:rPr>
349
+ </w:style>
350
+ <w:style w:type="paragraph" w:customStyle="1" w:styleId="h1">
351
+ <w:name w:val="h1"/>
352
+ <w:basedOn w:val="Heading1"/>
353
+ <w:next w:val="Normal"/>
354
+ <w:qFormat/>
355
+ <w:rsid w:val="00AA70B5"/>
356
+ </w:style>
357
+ <w:style w:type="character" w:customStyle="1" w:styleId="h4">
358
+ <w:name w:val="h4"/>
359
+ <w:basedOn w:val="h3"/>
360
+ <w:uiPriority w:val="1"/>
361
+ <w:rsid w:val="00556BF4"/>
362
+ <w:rPr>
363
+ <w:rFonts w:asciiTheme="majorHAnsi" w:hAnsiTheme="majorHAnsi"/>
364
+ <w:b/>
365
+ <w:sz w:val="24"/>
366
+ </w:rPr>
367
+ </w:style>
368
+ <w:style w:type="character" w:customStyle="1" w:styleId="h3">
369
+ <w:name w:val="h3"/>
370
+ <w:basedOn w:val="h2"/>
371
+ <w:uiPriority w:val="1"/>
372
+ <w:qFormat/>
373
+ <w:rsid w:val="00556BF4"/>
374
+ <w:rPr>
375
+ <w:rFonts w:asciiTheme="majorHAnsi" w:hAnsiTheme="majorHAnsi"/>
376
+ <w:b/>
377
+ <w:sz w:val="28"/>
378
+ </w:rPr>
379
+ </w:style>
380
+ <w:style w:type="table" w:customStyle="1" w:styleId="NormalTable">
381
+ <w:name w:val="NormalTable"/>
382
+ <w:basedOn w:val="TableNormal"/>
383
+ <w:uiPriority w:val="99"/>
384
+ <w:rsid w:val="00CC0462"/>
385
+ <w:tblPr>
386
+ <w:tblInd w:w="0" w:type="dxa"/>
387
+ <w:tblBorders>
388
+ <w:top w:val="single" w:sz="4" w:space="0" w:color="auto"/>
389
+ <w:left w:val="single" w:sz="4" w:space="0" w:color="auto"/>
390
+ <w:bottom w:val="single" w:sz="4" w:space="0" w:color="auto"/>
391
+ <w:right w:val="single" w:sz="4" w:space="0" w:color="auto"/>
392
+ <w:insideH w:val="single" w:sz="4" w:space="0" w:color="auto"/>
393
+ <w:insideV w:val="single" w:sz="4" w:space="0" w:color="auto"/>
394
+ </w:tblBorders>
395
+ <w:tblCellMar>
396
+ <w:top w:w="0" w:type="dxa"/>
397
+ <w:left w:w="108" w:type="dxa"/>
398
+ <w:bottom w:w="0" w:type="dxa"/>
399
+ <w:right w:w="108" w:type="dxa"/>
400
+ </w:tblCellMar>
401
+ </w:tblPr>
402
+ </w:style>
403
+ <w:style w:type="character" w:customStyle="1" w:styleId="Heading1Char">
404
+ <w:name w:val="Heading 1 Char"/>
405
+ <w:basedOn w:val="DefaultParagraphFont"/>
406
+ <w:link w:val="Heading1"/>
407
+ <w:uiPriority w:val="9"/>
408
+ <w:rsid w:val="00E01725"/>
409
+ <w:rPr>
410
+ <w:rFonts w:ascii="Arial" w:eastAsiaTheme="majorEastAsia" w:hAnsi="Arial" w:cstheme="majorBidi"/>
411
+ <w:b/>
412
+ <w:bCs/>
413
+ <w:caps/>
414
+ <w:sz w:val="28"/>
415
+ <w:szCs w:val="28"/>
416
+ </w:rPr>
417
+ </w:style>
418
+ <w:style w:type="character" w:customStyle="1" w:styleId="Heading6Char">
419
+ <w:name w:val="Heading 6 Char"/>
420
+ <w:basedOn w:val="DefaultParagraphFont"/>
421
+ <w:link w:val="Heading6"/>
422
+ <w:uiPriority w:val="9"/>
423
+ <w:rsid w:val="00B268BF"/>
424
+ <w:rPr>
425
+ <w:rFonts w:ascii="Times New Roman" w:eastAsiaTheme="majorEastAsia" w:hAnsi="Times New Roman" w:cstheme="majorBidi"/>
426
+ <w:i/>
427
+ <w:iCs/>
428
+ <w:color w:val="000000" w:themeColor="text1"/>
429
+ <w:sz w:val="28"/>
430
+ </w:rPr>
431
+ </w:style>
432
+ <w:style w:type="character" w:customStyle="1" w:styleId="Heading5Char">
433
+ <w:name w:val="Heading 5 Char"/>
434
+ <w:basedOn w:val="DefaultParagraphFont"/>
435
+ <w:link w:val="Heading5"/>
436
+ <w:uiPriority w:val="9"/>
437
+ <w:rsid w:val="005C665D"/>
438
+ <w:rPr>
439
+ <w:rFonts w:ascii="Times New Roman" w:eastAsiaTheme="majorEastAsia" w:hAnsi="Times New Roman" w:cstheme="majorBidi"/>
440
+ <w:bCs/>
441
+ <w:i/>
442
+ <w:sz w:val="28"/>
443
+ <w:szCs w:val="26"/>
444
+ </w:rPr>
445
+ </w:style>
446
+ <w:style w:type="character" w:customStyle="1" w:styleId="Heading4Char">
447
+ <w:name w:val="Heading 4 Char"/>
448
+ <w:basedOn w:val="DefaultParagraphFont"/>
449
+ <w:link w:val="Heading4"/>
450
+ <w:uiPriority w:val="9"/>
451
+ <w:rsid w:val="00E01725"/>
452
+ <w:rPr>
453
+ <w:rFonts w:ascii="Arial" w:eastAsiaTheme="majorEastAsia" w:hAnsi="Arial" w:cstheme="majorBidi"/>
454
+ <w:i/>
455
+ <w:iCs/>
456
+ <w:caps/>
457
+ <w:sz w:val="18"/>
458
+ <w:szCs w:val="18"/>
459
+ </w:rPr>
460
+ </w:style>
461
+ <w:style w:type="character" w:customStyle="1" w:styleId="Heading3Char">
462
+ <w:name w:val="Heading 3 Char"/>
463
+ <w:basedOn w:val="DefaultParagraphFont"/>
464
+ <w:link w:val="Heading3"/>
465
+ <w:uiPriority w:val="9"/>
466
+ <w:rsid w:val="00E01725"/>
467
+ <w:rPr>
468
+ <w:rFonts w:ascii="Arial" w:eastAsiaTheme="majorEastAsia" w:hAnsi="Arial" w:cstheme="majorBidi"/>
469
+ <w:b/>
470
+ <w:bCs/>
471
+ <w:caps/>
472
+ <w:sz w:val="18"/>
473
+ <w:szCs w:val="18"/>
474
+ </w:rPr>
475
+ </w:style>
476
+ <w:style w:type="character" w:customStyle="1" w:styleId="Heading2Char">
477
+ <w:name w:val="Heading 2 Char"/>
478
+ <w:basedOn w:val="DefaultParagraphFont"/>
479
+ <w:link w:val="Heading2"/>
480
+ <w:uiPriority w:val="9"/>
481
+ <w:rsid w:val="00E01725"/>
482
+ <w:rPr>
483
+ <w:rFonts w:ascii="Arial" w:eastAsiaTheme="majorEastAsia" w:hAnsi="Arial" w:cstheme="majorBidi"/>
484
+ <w:b/>
485
+ <w:bCs/>
486
+ <w:caps/>
487
+ <w:sz w:val="20"/>
488
+ <w:szCs w:val="20"/>
489
+ </w:rPr>
490
+ </w:style>
491
+ <w:style w:type="paragraph" w:styleId="ListParagraph">
492
+ <w:name w:val="List Paragraph"/>
493
+ <w:basedOn w:val="Normal"/>
494
+ <w:uiPriority w:val="34"/>
495
+ <w:qFormat/>
496
+ <w:rsid w:val="00E01725"/>
497
+ <w:pPr>
498
+ <w:numPr>
499
+ <w:numId w:val="1"/>
500
+ </w:numPr>
501
+ <w:spacing w:before="240" w:after="240"/>
502
+ </w:pPr>
503
+ </w:style>
504
+ </w:styles>