thinreports 0.7.6 → 0.8.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (277) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +3 -5
  3. data/.travis.yml +8 -4
  4. data/CHANGELOG.md +220 -0
  5. data/Gemfile +2 -9
  6. data/MIT-LICENSE +1 -1
  7. data/README.md +286 -0
  8. data/Rakefile +38 -8
  9. data/examples/character_spacing/character_spacing.rb +8 -0
  10. data/examples/character_spacing/character_spacing.tlf +1 -0
  11. data/examples/dynamic_image/dynamic_image.rb +31 -0
  12. data/examples/dynamic_image/dynamic_image.tlf +1 -0
  13. data/examples/dynamic_style/dynamic_style.rb +150 -0
  14. data/examples/dynamic_style/dynamic_style.tlf +1 -0
  15. data/examples/dynamic_style/dynamic_style_in_list.tlf +1 -0
  16. data/examples/eudc/eudc.rb +20 -0
  17. data/examples/eudc/eudc.tlf +1 -0
  18. data/examples/helper.rb +50 -0
  19. data/examples/hidden_shapes/hidden_shapes.rb +9 -0
  20. data/examples/hidden_shapes/hidden_shapes.tlf +1 -0
  21. data/examples/list_events/list_events.rb +59 -0
  22. data/examples/list_events/list_events_0_7_7.tlf +1 -0
  23. data/examples/list_events/list_events_0_8.tlf +1 -0
  24. data/examples/list_manual_generation/list_manual_generation.rb +22 -0
  25. data/examples/list_manual_generation/list_manual_generation.tlf +1 -0
  26. data/examples/list_page_number/list_page_number.rb +17 -0
  27. data/examples/list_page_number/list_page_number.tlf +1 -0
  28. data/examples/page_number/page_number.rb +33 -0
  29. data/examples/page_number/page_number.tlf +1 -0
  30. data/examples/password_setting/password_setting.rb +10 -0
  31. data/examples/password_setting/password_setting.tlf +1 -0
  32. data/examples/report_callbacks/report_callbacks.rb +31 -0
  33. data/examples/report_callbacks/report_callbacks.tlf +1 -0
  34. data/examples/single_line_tblock/single_line_tblock.rb +13 -0
  35. data/examples/single_line_tblock/single_line_tblock.tlf +1 -0
  36. data/examples/tblock_overflow/tblock_overflow.rb +20 -0
  37. data/examples/tblock_overflow/tblock_overflow.tlf +1 -0
  38. data/examples/tblock_styles/font_size.tlf +1 -0
  39. data/examples/tblock_styles/tblock_styles.rb +43 -0
  40. data/examples/tblock_styles/tblock_styles.tlf +1 -0
  41. data/examples/text_align/text_align.rb +8 -0
  42. data/examples/text_align/text_align.tlf +1 -0
  43. data/examples/typeB_page_size/B4_ISO.tlf +1 -0
  44. data/examples/typeB_page_size/B4_JIS.tlf +1 -0
  45. data/examples/typeB_page_size/typeB_page_size.rb +17 -0
  46. data/examples/word_wrap/word_wrap.rb +26 -0
  47. data/examples/word_wrap/word_wrap.tlf +1 -0
  48. data/lib/thinreports/config.rb +30 -10
  49. data/lib/thinreports/core/errors.rb +23 -20
  50. data/lib/thinreports/core/events.rb +18 -19
  51. data/lib/thinreports/core/format/base.rb +20 -25
  52. data/lib/thinreports/core/format/builder.rb +19 -27
  53. data/lib/thinreports/core/shape/base/interface.rb +15 -15
  54. data/lib/thinreports/core/shape/base/internal.rb +15 -20
  55. data/lib/thinreports/core/shape/base.rb +4 -5
  56. data/lib/thinreports/core/shape/basic/block_format.rb +3 -4
  57. data/lib/thinreports/core/shape/basic/block_interface.rb +9 -4
  58. data/lib/thinreports/core/shape/basic/block_internal.rb +9 -10
  59. data/lib/thinreports/core/shape/basic/format.rb +11 -10
  60. data/lib/thinreports/core/shape/basic/interface.rb +3 -3
  61. data/lib/thinreports/core/shape/basic/internal.rb +9 -6
  62. data/lib/thinreports/core/shape/basic.rb +1 -1
  63. data/lib/thinreports/core/shape/image_block/format.rb +5 -6
  64. data/lib/thinreports/core/shape/image_block/interface.rb +9 -7
  65. data/lib/thinreports/core/shape/image_block/internal.rb +5 -6
  66. data/lib/thinreports/core/shape/image_block.rb +1 -1
  67. data/lib/thinreports/core/shape/list/configuration.rb +37 -16
  68. data/lib/thinreports/core/shape/list/events.rb +11 -11
  69. data/lib/thinreports/core/shape/list/format.rb +27 -28
  70. data/lib/thinreports/core/shape/list/manager.rb +135 -95
  71. data/lib/thinreports/core/shape/list/page.rb +57 -51
  72. data/lib/thinreports/core/shape/list/page_state.rb +19 -17
  73. data/lib/thinreports/core/shape/list/section_format.rb +14 -15
  74. data/lib/thinreports/core/shape/list/section_interface.rb +15 -16
  75. data/lib/thinreports/core/shape/list/section_internal.rb +7 -8
  76. data/lib/thinreports/core/shape/list/store.rb +10 -11
  77. data/lib/thinreports/core/shape/list.rb +1 -1
  78. data/lib/thinreports/core/shape/manager/format.rb +10 -11
  79. data/lib/thinreports/core/shape/manager/internal.rb +22 -21
  80. data/lib/thinreports/core/shape/manager/target.rb +63 -34
  81. data/lib/thinreports/core/shape/manager.rb +1 -1
  82. data/lib/thinreports/core/shape/page_number/format.rb +25 -0
  83. data/lib/thinreports/core/shape/page_number/interface.rb +27 -0
  84. data/lib/thinreports/core/shape/page_number/internal.rb +57 -0
  85. data/lib/thinreports/core/shape/page_number.rb +15 -0
  86. data/lib/thinreports/core/shape/style/base.rb +29 -29
  87. data/lib/thinreports/core/shape/style/basic.rb +1 -1
  88. data/lib/thinreports/core/shape/style/graphic.rb +10 -25
  89. data/lib/thinreports/core/shape/style/text.rb +41 -31
  90. data/lib/thinreports/core/shape/style.rb +1 -1
  91. data/lib/thinreports/core/shape/text/format.rb +8 -9
  92. data/lib/thinreports/core/shape/text/interface.rb +2 -2
  93. data/lib/thinreports/core/shape/text/internal.rb +6 -7
  94. data/lib/thinreports/core/shape/text.rb +1 -1
  95. data/lib/thinreports/core/shape/text_block/format.rb +17 -17
  96. data/lib/thinreports/core/shape/text_block/formatter/basic.rb +13 -12
  97. data/lib/thinreports/core/shape/text_block/formatter/datetime.rb +8 -9
  98. data/lib/thinreports/core/shape/text_block/formatter/number.rb +11 -12
  99. data/lib/thinreports/core/shape/text_block/formatter/padding.rb +9 -32
  100. data/lib/thinreports/core/shape/text_block/formatter.rb +7 -8
  101. data/lib/thinreports/core/shape/text_block/interface.rb +2 -2
  102. data/lib/thinreports/core/shape/text_block/internal.rb +19 -20
  103. data/lib/thinreports/core/shape/text_block.rb +1 -1
  104. data/lib/thinreports/core/shape.rb +11 -13
  105. data/lib/thinreports/core/utils.rb +33 -32
  106. data/lib/thinreports/generator/base.rb +15 -24
  107. data/lib/thinreports/generator/configuration.rb +10 -9
  108. data/lib/thinreports/generator/pdf/configuration.rb +11 -6
  109. data/lib/thinreports/generator/pdf/document/draw_shape.rb +41 -32
  110. data/lib/thinreports/generator/pdf/document/font.rb +53 -44
  111. data/lib/thinreports/generator/pdf/document/graphics/attributes.rb +34 -25
  112. data/lib/thinreports/generator/pdf/document/graphics/basic.rb +25 -25
  113. data/lib/thinreports/generator/pdf/document/graphics/image.rb +15 -15
  114. data/lib/thinreports/generator/pdf/document/graphics/text.rb +43 -41
  115. data/lib/thinreports/generator/pdf/document/graphics.rb +8 -9
  116. data/lib/thinreports/generator/pdf/document/page.rb +37 -23
  117. data/lib/thinreports/generator/pdf/document/parse_color.rb +9 -10
  118. data/lib/thinreports/generator/pdf/document/parse_svg.rb +14 -15
  119. data/lib/thinreports/generator/pdf/document.rb +28 -28
  120. data/lib/thinreports/generator/pdf/drawer/base.rb +16 -22
  121. data/lib/thinreports/generator/pdf/drawer/list.rb +39 -21
  122. data/lib/thinreports/generator/pdf/drawer/list_section.rb +17 -18
  123. data/lib/thinreports/generator/pdf/drawer/page.rb +37 -26
  124. data/lib/thinreports/generator/pdf/prawn_ext.rb +18 -17
  125. data/lib/thinreports/generator/pdf.rb +28 -31
  126. data/lib/thinreports/generator.rb +6 -8
  127. data/lib/thinreports/layout/base.rb +24 -36
  128. data/lib/thinreports/layout/configuration.rb +11 -9
  129. data/lib/thinreports/layout/format.rb +26 -31
  130. data/lib/thinreports/layout/version.rb +8 -9
  131. data/lib/thinreports/layout.rb +2 -2
  132. data/lib/thinreports/report/base.rb +117 -109
  133. data/lib/thinreports/report/events.rb +5 -5
  134. data/lib/thinreports/report/internal.rb +48 -38
  135. data/lib/thinreports/{core → report}/page.rb +42 -32
  136. data/lib/thinreports/report.rb +10 -14
  137. data/lib/thinreports/version.rb +2 -3
  138. data/lib/thinreports.rb +14 -2
  139. data/test/data/font.ttf +0 -0
  140. data/test/data/layout_block.tlf +1 -0
  141. data/test/data/layout_list.tlf +1 -0
  142. data/test/data/layout_list_noheader.tlf +1 -0
  143. data/test/data/layout_text1.tlf +1 -0
  144. data/test/data/layout_text2.tlf +1 -0
  145. data/test/test_helper.rb +74 -0
  146. data/test/tmp/.gitkeep +0 -0
  147. data/test/unit/core/format/test_base.rb +14 -14
  148. data/test/unit/core/format/test_builder.rb +20 -25
  149. data/test/unit/core/shape/base/test_internal.rb +34 -37
  150. data/test/unit/core/shape/basic/test_basic_format.rb +4 -4
  151. data/test/unit/core/shape/basic/test_basic_interface.rb +15 -13
  152. data/test/unit/core/shape/basic/test_basic_internal.rb +19 -16
  153. data/test/unit/core/shape/basic/test_format.rb +4 -4
  154. data/test/unit/core/shape/basic/test_interface.rb +36 -46
  155. data/test/unit/core/shape/basic/test_internal.rb +29 -18
  156. data/test/unit/core/shape/image_block/test_format.rb +5 -5
  157. data/test/unit/core/shape/image_block/test_interface.rb +17 -16
  158. data/test/unit/core/shape/image_block/test_internal.rb +19 -16
  159. data/test/unit/core/shape/list/test_configuration.rb +50 -33
  160. data/test/unit/core/shape/list/test_events.rb +7 -7
  161. data/test/unit/core/shape/list/test_format.rb +16 -18
  162. data/test/unit/core/shape/list/test_manager.rb +15 -5
  163. data/test/unit/core/shape/list/test_page.rb +80 -22
  164. data/test/unit/core/shape/list/test_page_state.rb +13 -13
  165. data/test/unit/core/shape/list/test_section_format.rb +16 -17
  166. data/test/unit/core/shape/list/test_section_interface.rb +30 -22
  167. data/test/unit/core/shape/list/test_section_internal.rb +21 -19
  168. data/test/unit/core/shape/list/test_store.rb +7 -7
  169. data/test/unit/core/shape/manager/test_format.rb +11 -15
  170. data/test/unit/core/shape/manager/test_internal.rb +9 -9
  171. data/test/unit/core/shape/manager/test_target.rb +85 -57
  172. data/test/unit/core/shape/page_number/test_format.rb +73 -0
  173. data/test/unit/core/shape/page_number/test_interface.rb +33 -0
  174. data/test/unit/core/shape/page_number/test_internal.rb +81 -0
  175. data/test/unit/core/shape/styles/test_base.rb +9 -9
  176. data/test/unit/core/shape/styles/test_basic.rb +5 -5
  177. data/test/unit/core/shape/styles/test_graphic.rb +19 -33
  178. data/test/unit/core/shape/styles/test_text.rb +29 -7
  179. data/test/unit/core/shape/text/test_format.rb +6 -6
  180. data/test/unit/core/shape/text/test_internal.rb +11 -12
  181. data/test/unit/core/shape/text_block/formatter/test_basic.rb +16 -16
  182. data/test/unit/core/shape/text_block/formatter/test_datetime.rb +22 -20
  183. data/test/unit/core/shape/text_block/formatter/test_number.rb +34 -34
  184. data/test/unit/core/shape/text_block/formatter/test_padding.rb +44 -44
  185. data/test/unit/core/shape/text_block/test_format.rb +13 -8
  186. data/test/unit/core/shape/text_block/test_formatter.rb +17 -17
  187. data/test/unit/core/shape/text_block/test_interface.rb +37 -20
  188. data/test/unit/core/shape/text_block/test_internal.rb +38 -38
  189. data/test/unit/core/test_events.rb +10 -8
  190. data/test/unit/core/test_shape.rb +11 -7
  191. data/test/unit/core/test_utils.rb +68 -0
  192. data/test/unit/generator/pdf/document/graphics/test_attributes.rb +10 -4
  193. data/test/unit/generator/pdf/document/graphics/test_text.rb +60 -53
  194. data/test/unit/generator/pdf/document/test_draw_shape.rb +14 -6
  195. data/test/unit/generator/pdf/document/test_font.rb +79 -58
  196. data/test/unit/generator/pdf/document/test_graphics.rb +18 -19
  197. data/test/unit/generator/pdf/document/test_page.rb +68 -43
  198. data/test/unit/generator/pdf/document/test_parse_color.rb +5 -5
  199. data/test/unit/generator/pdf/test_configuration.rb +16 -9
  200. data/test/unit/generator/pdf/test_document.rb +8 -16
  201. data/test/unit/generator/test_base.rb +31 -42
  202. data/test/unit/generator/test_configuration.rb +6 -6
  203. data/test/unit/generator/test_pdf.rb +15 -21
  204. data/test/unit/layout/test_base.rb +34 -79
  205. data/test/unit/layout/test_configuration.rb +12 -37
  206. data/test/unit/layout/test_format.rb +36 -39
  207. data/test/unit/layout/test_version.rb +4 -4
  208. data/test/unit/report/test_base.rb +160 -192
  209. data/test/unit/report/test_events.rb +4 -4
  210. data/test/unit/report/test_internal.rb +102 -82
  211. data/test/unit/test_config.rb +31 -12
  212. data/test/unit/test_layout.rb +7 -7
  213. data/test/unit/test_report.rb +12 -24
  214. data/thinreports.gemspec +23 -26
  215. metadata +118 -181
  216. data/.yardopts +0 -1
  217. data/LICENSE +0 -1
  218. data/README.rdoc +0 -167
  219. data/doc/yardoc_templates/default/layout/html/footer.erb +0 -10
  220. data/lib/thinreports/core/ext/array.rb +0 -19
  221. data/lib/thinreports/core/ext/hash.rb +0 -19
  222. data/lib/thinreports/core/ext/object.rb +0 -25
  223. data/lib/thinreports/core/ext.rb +0 -5
  224. data/lib/thinreports/core/format.rb +0 -14
  225. data/lib/thinreports/core/ordered_hash.rb +0 -39
  226. data/lib/thinreports/core.rb +0 -20
  227. data/lib/thinreports/generator/pdf/drawer.rb +0 -16
  228. data/tasks/doc.rake +0 -13
  229. data/tasks/test.rake +0 -56
  230. data/test/benchmark/basic_estimate.tlf +0 -1
  231. data/test/benchmark/bench_basic_estimate.rb +0 -95
  232. data/test/case/character_spacing/character_spacing.rb +0 -7
  233. data/test/case/character_spacing/character_spacing.tlf +0 -1
  234. data/test/case/dynamic_image/dynamic_image.rb +0 -41
  235. data/test/case/dynamic_image/dynamic_image.tlf +0 -1
  236. data/test/case/dynamic_style/dynamic_style.rb +0 -154
  237. data/test/case/dynamic_style/dynamic_style.tlf +0 -1
  238. data/test/case/dynamic_style/dynamic_style_in_list.tlf +0 -1
  239. data/test/case/eudc/eudc.rb +0 -20
  240. data/test/case/eudc/eudc.tlf +0 -1
  241. data/test/case/helper.rb +0 -29
  242. data/test/case/hidden_shapes/hidden_shapes.rb +0 -13
  243. data/test/case/hidden_shapes/hidden_shapes.tlf +0 -1
  244. data/test/case/list_events/list_events.rb +0 -32
  245. data/test/case/list_events/list_events.tlf +0 -1
  246. data/test/case/list_header_inheriting/list_header_inheriting.rb +0 -17
  247. data/test/case/list_header_inheriting/list_header_inheriting.tlf +0 -1
  248. data/test/case/list_manual_generation/list_manual_generation.rb +0 -22
  249. data/test/case/list_manual_generation/list_manual_generation.tlf +0 -1
  250. data/test/case/single_line_tblock/single_line_tblock.rb +0 -15
  251. data/test/case/single_line_tblock/single_line_tblock.tlf +0 -1
  252. data/test/case/tblock_overflow/tblock_overflow.rb +0 -20
  253. data/test/case/tblock_overflow/tblock_overflow.tlf +0 -1
  254. data/test/case/tblock_styles/tblock_styles.rb +0 -27
  255. data/test/case/tblock_styles/tblock_styles.tlf +0 -1
  256. data/test/case/text_align/text_align.rb +0 -9
  257. data/test/case/text_align/text_align.tlf +0 -1
  258. data/test/unit/core/ext/array_spec.rb +0 -29
  259. data/test/unit/core/ext/hash_spec.rb +0 -29
  260. data/test/unit/core/ext/object_spec.rb +0 -30
  261. data/test/unit/core/ordered_hash_spec.rb +0 -51
  262. data/test/unit/core/shape/base/test_interface.rb +0 -52
  263. data/test/unit/core/utils_spec.rb +0 -56
  264. data/test/unit/data/basic_layout1.tlf +0 -1
  265. data/test/unit/data/basic_layout2.tlf +0 -1
  266. data/test/unit/data/basic_list_layout.tlf +0 -1
  267. data/test/unit/data/basic_list_noheader_layout.tlf +0 -1
  268. data/test/unit/helper.rb +0 -65
  269. /data/{test/case → examples}/dynamic_image/img200x100.png +0 -0
  270. /data/{test/case → examples}/dynamic_image/img50x50.png +0 -0
  271. /data/{test/case → examples}/dynamic_style/image.png +0 -0
  272. /data/{test/case → examples}/eudc/eudc.ttf +0 -0
  273. /data/{resources/fonts → fonts}/IPA_Font_License_Agreement_v1.0.txt +0 -0
  274. /data/{resources/fonts → fonts}/ipag.ttf +0 -0
  275. /data/{resources/fonts → fonts}/ipagp.ttf +0 -0
  276. /data/{resources/fonts → fonts}/ipam.ttf +0 -0
  277. /data/{resources/fonts → fonts}/ipamp.ttf +0 -0
@@ -1,41 +0,0 @@
1
- # coding: utf-8
2
-
3
- require 'open-uri'
4
-
5
- CaseRunner.current :dynamic_image
6
-
7
- image50x50 = CaseRunner.case_resource('img50x50.png')
8
- image200x100 = CaseRunner.case_resource('img200x100.png')
9
- matsukei_logo = open('http://www.matsukei.co.jp/common/image/logo.jpg')
10
-
11
- ThinReports::Report.generate_file(:pdf, CaseRunner.output_file) do |r|
12
- r.use_layout(CaseRunner.layout_file)
13
-
14
- r.start_new_page
15
-
16
- r.page.values(:pos_top_left => image50x50,
17
- :pos_top_center => image50x50,
18
- :pos_top_right => image50x50,
19
- :pos_center_left => image50x50,
20
- :pos_center_center => image50x50,
21
- :pos_center_right => image50x50,
22
- :pos_bottom_left => image50x50,
23
- :pos_bottom_center => image50x50,
24
- :pos_bottom_right => image50x50)
25
-
26
- r.page.item(:overflow).src(image200x100)
27
-
28
- # It cannot do as follows:
29
- #
30
- # r.page.item(:logo1).src(matsukei_logo)
31
- # r.page.item(:logo2).value(matsukei_logo)
32
- #
33
- r.page.item(:logo1).src(matsukei_logo.path)
34
- r.page.item(:logo2).value(matsukei_logo.path)
35
-
36
- r.page.item(:thinreports_logo).src(open('http://www.thinreports.org/media/i/logo.png'))
37
-
38
- r.page.list(:list) do |list|
39
- 3.times { list.add_row :in_list => image50x50 }
40
- end
41
- end
@@ -1 +0,0 @@
1
- {"version":"0.7.0","finger-print":1292141098,"config":{"title":"","option":{},"page":{"paper-type":"A4","orientation":"portrait","margin-top":"20","margin-bottom":"20","margin-left":"20","margin-right":"20"}},"svg":"<svg width=\"595.2\" height=\"841.8\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"none\" viewBox=\"0 0 595.2 841.8\"><g class=\"canvas\"><!--SHAPE{\"type\":\"s-iblock\",\"id\":\"pos_top_left\",\"display\":\"true\",\"desc\":null,\"box\":{\"x\":20,\"y\":51,\"width\":100,\"height\":100},\"position-x\":\"left\",\"position-y\":\"top\",\"svg\":{\"tag\":\"image\",\"attrs\":{\"x\":20,\"y\":51,\"width\":100,\"height\":100}}}SHAPE--><!--LAYOUT<g class=\"s-iblock\" x-display=\"true\" x-id=\"pos_top_left\" x-width=\"100\" x-height=\"100\" x-left=\"20\" x-top=\"51\" x-position-x=\"left\" x-position-y=\"top\"><rect class=\"s-iblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"100\" height=\"100\" x=\"20\" y=\"51\"></rect><image width=\"32\" height=\"32\" class=\"s-iblock-mark\" opacity=\"0.5\" xlink:href=\"assets/icons/x-image-mark.png\" display=\"inline\" x=\"54\" y=\"85\"></image><text class=\"s-iblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"22\" y=\"62\">pos_top_left</text></g>LAYOUT--><rect stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"100\" height=\"100\" x=\"20\" y=\"51\"></rect><!--SHAPE{\"type\":\"s-iblock\",\"id\":\"overflow\",\"display\":\"true\",\"desc\":null,\"box\":{\"x\":20,\"y\":443,\"width\":150,\"height\":100},\"position-x\":\"left\",\"position-y\":\"top\",\"svg\":{\"tag\":\"image\",\"attrs\":{\"x\":20,\"y\":443,\"width\":150,\"height\":100}}}SHAPE--><!--LAYOUT<g class=\"s-iblock\" x-display=\"true\" x-id=\"overflow\" x-width=\"150\" x-height=\"100\" x-left=\"20\" x-top=\"443\" x-position-x=\"left\" x-position-y=\"top\"><rect class=\"s-iblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"150\" height=\"100\" x=\"20\" y=\"443\"></rect><image width=\"32\" height=\"32\" class=\"s-iblock-mark\" opacity=\"0.5\" xlink:href=\"assets/icons/x-image-mark.png\" display=\"inline\" x=\"79\" y=\"477\"></image><text class=\"s-iblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"22\" y=\"454\">overflow</text></g>LAYOUT--><rect stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"150\" height=\"100\" x=\"20\" y=\"443\"></rect><!--SHAPE{\"type\":\"s-iblock\",\"id\":\"logo1\",\"display\":\"true\",\"desc\":null,\"box\":{\"x\":20,\"y\":618.9,\"width\":218.1,\"height\":61.3},\"position-x\":\"center\",\"position-y\":\"center\",\"svg\":{\"tag\":\"image\",\"attrs\":{\"x\":20,\"y\":618.9,\"width\":218.1,\"height\":61.3}}}SHAPE--><!--LAYOUT<g class=\"s-iblock\" x-display=\"true\" x-id=\"logo1\" x-width=\"218.1\" x-height=\"61.3\" x-left=\"20\" x-top=\"618.9\" x-position-x=\"center\" x-position-y=\"center\"><rect class=\"s-iblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"218.1\" height=\"61.3\" x=\"20\" y=\"618.9\"></rect><image width=\"32\" height=\"32\" class=\"s-iblock-mark\" opacity=\"0.5\" xlink:href=\"assets/icons/x-image-mark.png\" display=\"inline\" x=\"113\" y=\"632.9\"></image><text class=\"s-iblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"22\" y=\"629.9\">logo1</text></g>LAYOUT--><rect stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"218.1\" height=\"61.3\" x=\"20\" y=\"618.9\"></rect><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"24\" font-family=\"Times New Roman\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"200\" x-height=\"26\" x-left=\"20\" x-top=\"20\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"200\" height=\"26\" x=\"20\" y=\"20\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"36\">Positioning</text></g><!--SHAPE{\"type\":\"s-iblock\",\"id\":\"pos_top_center\",\"display\":\"true\",\"desc\":null,\"box\":{\"x\":130,\"y\":51,\"width\":100,\"height\":100},\"position-x\":\"center\",\"position-y\":\"top\",\"svg\":{\"tag\":\"image\",\"attrs\":{\"x\":130,\"y\":51,\"width\":100,\"height\":100}}}SHAPE--><!--LAYOUT<g class=\"s-iblock\" x-display=\"true\" x-id=\"pos_top_center\" x-width=\"100\" x-height=\"100\" x-left=\"130\" x-top=\"51\" x-position-x=\"center\" x-position-y=\"top\"><rect class=\"s-iblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"100\" height=\"100\" x=\"130\" y=\"51\"></rect><image width=\"32\" height=\"32\" class=\"s-iblock-mark\" opacity=\"0.5\" xlink:href=\"assets/icons/x-image-mark.png\" display=\"inline\" x=\"164\" y=\"85\"></image><text class=\"s-iblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"132\" y=\"62\">pos_top_center</text></g>LAYOUT--><rect stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"100\" height=\"100\" x=\"130\" y=\"51\"></rect><!--SHAPE{\"type\":\"s-iblock\",\"id\":\"pos_top_right\",\"display\":\"true\",\"desc\":null,\"box\":{\"x\":240,\"y\":51,\"width\":100,\"height\":100},\"position-x\":\"right\",\"position-y\":\"top\",\"svg\":{\"tag\":\"image\",\"attrs\":{\"x\":240,\"y\":51,\"width\":100,\"height\":100}}}SHAPE--><!--LAYOUT<g class=\"s-iblock\" x-display=\"true\" x-id=\"pos_top_right\" x-width=\"100\" x-height=\"100\" x-left=\"240\" x-top=\"51\" x-position-x=\"right\" x-position-y=\"top\"><rect class=\"s-iblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"100\" height=\"100\" x=\"240\" y=\"51\"></rect><image width=\"32\" height=\"32\" class=\"s-iblock-mark\" opacity=\"0.5\" xlink:href=\"assets/icons/x-image-mark.png\" display=\"inline\" x=\"274\" y=\"85\"></image><text class=\"s-iblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"242\" y=\"62\">pos_top_right</text></g>LAYOUT--><rect stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"100\" height=\"100\" x=\"240\" y=\"51\"></rect><!--SHAPE{\"type\":\"s-iblock\",\"id\":\"pos_center_left\",\"display\":\"true\",\"desc\":null,\"box\":{\"x\":20,\"y\":161,\"width\":100,\"height\":100},\"position-x\":\"left\",\"position-y\":\"center\",\"svg\":{\"tag\":\"image\",\"attrs\":{\"x\":20,\"y\":161,\"width\":100,\"height\":100}}}SHAPE--><!--LAYOUT<g class=\"s-iblock\" x-display=\"true\" x-id=\"pos_center_left\" x-width=\"100\" x-height=\"100\" x-left=\"20\" x-top=\"161\" x-position-x=\"left\" x-position-y=\"center\"><rect class=\"s-iblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"100\" height=\"100\" x=\"20\" y=\"161\"></rect><image width=\"32\" height=\"32\" class=\"s-iblock-mark\" opacity=\"0.5\" xlink:href=\"assets/icons/x-image-mark.png\" display=\"inline\" x=\"54\" y=\"195\"></image><text class=\"s-iblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"22\" y=\"172\">pos_center_left</text></g>LAYOUT--><rect stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"100\" height=\"100\" x=\"20\" y=\"161\"></rect><!--SHAPE{\"type\":\"s-iblock\",\"id\":\"pos_center_center\",\"display\":\"true\",\"desc\":null,\"box\":{\"x\":130,\"y\":161,\"width\":100,\"height\":100},\"position-x\":\"center\",\"position-y\":\"center\",\"svg\":{\"tag\":\"image\",\"attrs\":{\"x\":130,\"y\":161,\"width\":100,\"height\":100}}}SHAPE--><!--LAYOUT<g class=\"s-iblock\" x-display=\"true\" x-id=\"pos_center_center\" x-width=\"100\" x-height=\"100\" x-left=\"130\" x-top=\"161\" x-position-x=\"center\" x-position-y=\"center\"><rect class=\"s-iblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"100\" height=\"100\" x=\"130\" y=\"161\"></rect><image width=\"32\" height=\"32\" class=\"s-iblock-mark\" opacity=\"0.5\" xlink:href=\"assets/icons/x-image-mark.png\" display=\"inline\" x=\"164\" y=\"195\"></image><text class=\"s-iblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"132\" y=\"172\">pos_center_center</text></g>LAYOUT--><rect stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"100\" height=\"100\" x=\"130\" y=\"161\"></rect><!--SHAPE{\"type\":\"s-iblock\",\"id\":\"pos_center_right\",\"display\":\"true\",\"desc\":null,\"box\":{\"x\":240,\"y\":161,\"width\":100,\"height\":100},\"position-x\":\"right\",\"position-y\":\"center\",\"svg\":{\"tag\":\"image\",\"attrs\":{\"x\":240,\"y\":161,\"width\":100,\"height\":100}}}SHAPE--><!--LAYOUT<g class=\"s-iblock\" x-display=\"true\" x-id=\"pos_center_right\" x-width=\"100\" x-height=\"100\" x-left=\"240\" x-top=\"161\" x-position-x=\"right\" x-position-y=\"center\"><rect class=\"s-iblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"100\" height=\"100\" x=\"240\" y=\"161\"></rect><image width=\"32\" height=\"32\" class=\"s-iblock-mark\" opacity=\"0.5\" xlink:href=\"assets/icons/x-image-mark.png\" display=\"inline\" x=\"274\" y=\"195\"></image><text class=\"s-iblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"242\" y=\"172\">pos_center_right</text></g>LAYOUT--><rect stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"100\" height=\"100\" x=\"240\" y=\"161\"></rect><!--SHAPE{\"type\":\"s-iblock\",\"id\":\"pos_bottom_left\",\"display\":\"true\",\"desc\":null,\"box\":{\"x\":20,\"y\":271,\"width\":100,\"height\":100},\"position-x\":\"left\",\"position-y\":\"bottom\",\"svg\":{\"tag\":\"image\",\"attrs\":{\"x\":20,\"y\":271,\"width\":100,\"height\":100}}}SHAPE--><!--LAYOUT<g class=\"s-iblock\" x-display=\"true\" x-id=\"pos_bottom_left\" x-width=\"100\" x-height=\"100\" x-left=\"20\" x-top=\"271\" x-position-x=\"left\" x-position-y=\"bottom\"><rect class=\"s-iblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"100\" height=\"100\" x=\"20\" y=\"271\"></rect><image width=\"32\" height=\"32\" class=\"s-iblock-mark\" opacity=\"0.5\" xlink:href=\"assets/icons/x-image-mark.png\" display=\"inline\" x=\"54\" y=\"305\"></image><text class=\"s-iblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"22\" y=\"282\">pos_bottom_left</text></g>LAYOUT--><rect stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"100\" height=\"100\" x=\"20\" y=\"271\"></rect><!--SHAPE{\"type\":\"s-iblock\",\"id\":\"pos_bottom_center\",\"display\":\"true\",\"desc\":null,\"box\":{\"x\":130,\"y\":271,\"width\":100,\"height\":100},\"position-x\":\"center\",\"position-y\":\"bottom\",\"svg\":{\"tag\":\"image\",\"attrs\":{\"x\":130,\"y\":271,\"width\":100,\"height\":100}}}SHAPE--><!--LAYOUT<g class=\"s-iblock\" x-display=\"true\" x-id=\"pos_bottom_center\" x-width=\"100\" x-height=\"100\" x-left=\"130\" x-top=\"271\" x-position-x=\"center\" x-position-y=\"bottom\"><rect class=\"s-iblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"100\" height=\"100\" x=\"130\" y=\"271\"></rect><image width=\"32\" height=\"32\" class=\"s-iblock-mark\" opacity=\"0.5\" xlink:href=\"assets/icons/x-image-mark.png\" display=\"inline\" x=\"164\" y=\"305\"></image><text class=\"s-iblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"132\" y=\"282\">pos_bottom_center</text></g>LAYOUT--><rect stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"100\" height=\"100\" x=\"130\" y=\"271\"></rect><!--SHAPE{\"type\":\"s-iblock\",\"id\":\"pos_bottom_right\",\"display\":\"true\",\"desc\":null,\"box\":{\"x\":240,\"y\":271,\"width\":100,\"height\":100},\"position-x\":\"right\",\"position-y\":\"bottom\",\"svg\":{\"tag\":\"image\",\"attrs\":{\"x\":240,\"y\":271,\"width\":100,\"height\":100}}}SHAPE--><!--LAYOUT<g class=\"s-iblock\" x-display=\"true\" x-id=\"pos_bottom_right\" x-width=\"100\" x-height=\"100\" x-left=\"240\" x-top=\"271\" x-position-x=\"right\" x-position-y=\"bottom\"><rect class=\"s-iblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"100\" height=\"100\" x=\"240\" y=\"271\"></rect><image width=\"32\" height=\"32\" class=\"s-iblock-mark\" opacity=\"0.5\" xlink:href=\"assets/icons/x-image-mark.png\" display=\"inline\" x=\"274\" y=\"305\"></image><text class=\"s-iblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"242\" y=\"282\">pos_bottom_right</text></g>LAYOUT--><rect stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"100\" height=\"100\" x=\"240\" y=\"271\"></rect><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Times New Roman\" font-size=\"24\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"200\" x-height=\"26\" x-left=\"20\" x-top=\"385\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"200\" height=\"26\" x=\"20\" y=\"385\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"401\">Overflowing</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Helvetica\" font-size=\"14\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"288\" x-height=\"26\" x-left=\"25\" x-top=\"411\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"288\" height=\"26\" x=\"25\" y=\"411\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"25\" y=\"424\">Resize automatically to 150x75 from 200x100.</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Times New Roman\" font-size=\"24\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"200\" x-height=\"26\" x-left=\"20\" x-top=\"565\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"200\" height=\"26\" x=\"20\" y=\"565\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"581\">Open URI</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Helvetica\" font-size=\"14\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"310\" x-height=\"26\" x-left=\"25\" x-top=\"590\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"310\" height=\"26\" x=\"25\" y=\"590\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"25\" y=\"603\">http://www.matsukei.co.jp/common/image/logo.jpg</text></g><!--SHAPE{\"type\":\"s-iblock\",\"id\":\"logo2\",\"display\":\"true\",\"desc\":null,\"box\":{\"x\":250,\"y\":618.9,\"width\":218.1,\"height\":61.3},\"position-x\":\"center\",\"position-y\":\"center\",\"svg\":{\"tag\":\"image\",\"attrs\":{\"x\":250,\"y\":618.9,\"width\":218.1,\"height\":61.3}}}SHAPE--><!--LAYOUT<g class=\"s-iblock\" x-display=\"true\" x-id=\"logo2\" x-width=\"218.1\" x-height=\"61.3\" x-left=\"250\" x-top=\"618.9\" x-position-x=\"center\" x-position-y=\"center\"><rect class=\"s-iblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"218.1\" height=\"61.3\" x=\"250\" y=\"618.9\"></rect><image width=\"32\" height=\"32\" class=\"s-iblock-mark\" opacity=\"0.5\" xlink:href=\"assets/icons/x-image-mark.png\" display=\"inline\" x=\"343\" y=\"632.9\"></image><text class=\"s-iblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"252\" y=\"629.9\">logo2</text></g>LAYOUT--><rect stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"218.1\" height=\"61.3\" x=\"250\" y=\"618.9\"></rect><!--SHAPE{\"type\":\"s-iblock\",\"id\":\"thinreports_logo\",\"display\":\"true\",\"desc\":null,\"box\":{\"x\":20,\"y\":728,\"width\":555.2,\"height\":92.3},\"position-x\":\"center\",\"position-y\":\"center\",\"svg\":{\"tag\":\"image\",\"attrs\":{\"x\":20,\"y\":728,\"width\":555.2,\"height\":92.3}}}SHAPE--><!--LAYOUT<g class=\"s-iblock\" x-display=\"true\" x-id=\"thinreports_logo\" x-width=\"555.2\" x-height=\"92.3\" x-left=\"20\" x-top=\"728\" x-position-x=\"center\" x-position-y=\"center\"><rect class=\"s-iblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"555.2\" height=\"92.3\" x=\"20\" y=\"728\"></rect><image width=\"32\" height=\"32\" class=\"s-iblock-mark\" opacity=\"0.5\" xlink:href=\"assets/icons/x-image-mark.png\" display=\"inline\" x=\"281\" y=\"758\"></image><text class=\"s-iblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"22\" y=\"739\">thinreports_logo</text></g>LAYOUT--><rect stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"555.2\" height=\"92.3\" x=\"20\" y=\"728\"></rect><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Helvetica\" font-size=\"14\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"310\" x-height=\"26\" x-left=\"25\" x-top=\"695\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"310\" height=\"26\" x=\"25\" y=\"695\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"25\" y=\"708\">http://www.thinreports.org/media/i/logo.png</text></g><rect stroke=\"#f79646\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"dashed\" stroke-dasharray=\"2,2\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"150\" height=\"76\" x=\"20\" y=\"443\"></rect><!--SHAPE{\"type\":\"s-list\",\"id\":\"list\",\"display\":\"true\",\"desc\":null,\"footer\":{},\"footer-enabled\":\"false\",\"page-footer\":{},\"page-footer-enabled\":\"false\",\"detail\":{\"height\":60,\"svg\":{\"tag\":\"g\",\"content\":\"<!---SHAPE{\\\"type\\\":\\\"s-iblock\\\",\\\"id\\\":\\\"in_list\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"box\\\":{\\\"x\\\":352.1,\\\"y\\\":483.4,\\\"width\\\":198.1,\\\"height\\\":58.8},\\\"position-x\\\":\\\"center\\\",\\\"position-y\\\":\\\"center\\\",\\\"svg\\\":{\\\"tag\\\":\\\"image\\\",\\\"attrs\\\":{\\\"x\\\":352.1,\\\"y\\\":483.4,\\\"width\\\":198.1,\\\"height\\\":58.8}}}SHAPE---><line stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"none\\\" class=\\\"s-line\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" x1=\\\"351.1\\\" x2=\\\"550.2\\\" y1=\\\"543.2\\\" y2=\\\"543.2\\\"></line>\"},\"translate\":{\"x\":10,\"y\":-395.2}},\"header\":{\"height\":33.2,\"svg\":{\"tag\":\"g\",\"content\":\"<g class=\\\"s-text\\\" stroke-width=\\\"0\\\" fill=\\\"#000000\\\" fill-opacity=\\\"1\\\" kerning=\\\"auto\\\" x-display=\\\"true\\\" x-id=\\\"\\\" font-size=\\\"18\\\" font-family=\\\"Times New Roman\\\" font-weight=\\\"normal\\\" font-style=\\\"normal\\\" text-anchor=\\\"middle\\\" text-decoration=\\\"none\\\" x-width=\\\"199.1\\\" x-height=\\\"33.2\\\" x-left=\\\"351.1\\\" x-top=\\\"450.2\\\" x-valign=\\\"center\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"199.1\\\" height=\\\"33.2\\\" x=\\\"351.1\\\" y=\\\"450.2\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"450.7\\\" y=\\\"470.3\\\">In List</text></g><line stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"none\\\" class=\\\"s-line\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" x1=\\\"353.1\\\" x2=\\\"550.2\\\" y1=\\\"483.4\\\" y2=\\\"483.4\\\"></line>\"},\"translate\":{\"x\":10,\"y\":-395.2}},\"header-enabled\":\"true\",\"svg\":{\"tag\":\"g\",\"attrs\":{}},\"content-height\":278.90000000000003,\"page-break\":\"false\"}SHAPE--><!--LAYOUT<g class=\"s-list\" x-id=\"list\" x-header-enabled=\"true\" x-page-footer-enabled=\"false\" x-footer-enabled=\"false\" x-changing-page=\"false\" x-display=\"true\" width=\"199.1\" height=\"312.1\" x=\"361.1\" y=\"55\"><g class=\"s-list-header\" transform=\"translate(10,-395.2) rotate(0 0 0)\" x-top=\"55\" x-height=\"33.2\"><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"18\" font-family=\"Times New Roman\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"199.1\" x-height=\"33.2\" x-left=\"351.1\" x-top=\"450.2\" x-valign=\"center\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"199.1\" height=\"33.2\" x=\"351.1\" y=\"450.2\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"450.7\" y=\"470.3\">In List</text></g><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"353.1\" x2=\"550.2\" y1=\"483.4\" y2=\"483.4\"></line></g><g class=\"s-list-detail\" transform=\"translate(10,-395.2) rotate(0 0 0)\" x-top=\"88.2\" x-height=\"60\"><g class=\"s-iblock\" x-display=\"true\" x-id=\"in_list\" x-width=\"198.1\" x-height=\"58.8\" x-left=\"352.1\" x-top=\"483.4\" x-position-x=\"center\" x-position-y=\"center\"><rect class=\"s-iblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"198.1\" height=\"58.8\" x=\"352.1\" y=\"483.4\"></rect><image width=\"32\" height=\"32\" class=\"s-iblock-mark\" opacity=\"0.5\" xlink:href=\"assets/icons/x-image-mark.png\" display=\"inline\" x=\"435.1\" y=\"496.4\"></image><text class=\"s-iblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"354.1\" y=\"494.4\">in_list</text></g><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"351.1\" x2=\"550.2\" y1=\"543.2\" y2=\"543.2\"></line></g><g class=\"s-list-page-footer\" transform=\"translate(10,-368.4) rotate(0 0 0)\" x-top=\"148.2\" x-height=\"0\" display=\"none\"></g><g class=\"s-list-footer\" transform=\"translate(10,-393.3) rotate(0 0 0)\" x-top=\"148.2\" x-height=\"0\" display=\"none\"></g><text class=\"s-list-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"363.1\" y=\"65.8\">list</text><rect stroke-dasharray=\"5\" stroke=\"#BBBBBB\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"0\" class=\"s-list-face\" width=\"199.1\" height=\"312.1\" x=\"361.1\" y=\"55\"></rect></g>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Times New Roman\" font-size=\"24\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"200\" x-height=\"26\" x-left=\"359\" x-top=\"20\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"200\" height=\"26\" x=\"359\" y=\"20\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"359\" y=\"36\">Use in List</text></g></g></svg>","state":{"layout-guide":[{"type":"x","position":340.1},{"type":"y","position":371.1}]}}
@@ -1,154 +0,0 @@
1
- # coding: utf-8
2
-
3
- CaseRunner.current :dynamic_style
4
-
5
- image = CaseRunner.case_resource('image.png')
6
- setup_values = Proc.new do |page|
7
- # The Basic Style
8
- page.values(:basic_show5 => 'TextBlock',
9
- :basic_show6 => image,
10
- :basic_hide5 => 'TextBlock',
11
- :basic_hide6 => image)
12
- # The Text Style
13
- page.values(:text_b3 => 'To bold',
14
- :text_b4 => 'To normal',
15
- :text_i3 => 'To italic',
16
- :text_i4 => 'To normal',
17
- :text_u3 => 'To underline',
18
- :text_u4 => 'To none',
19
- :text_l3 => 'To line-through',
20
- :text_l4 => 'To none')
21
- page.values(:text_a2 => 'To right align',
22
- :text_a3 => "To right align\n右寄せ",
23
- :text_va2 => "To bottom align\n下揃え",
24
- :text_color2 => '赤色')
25
- end
26
-
27
- ThinReports::Report.generate_file(CaseRunner.output_file,
28
- :layout => CaseRunner.layout_file) do |r|
29
- # In case of using "dynamic_style.tlf"
30
-
31
- # Create raw-page.
32
- r.start_new_page
33
- r.page.item(:title).value('Original Page')
34
-
35
- setup_values.call(r.page)
36
-
37
- # Create styled-page.
38
- r.start_new_page
39
-
40
- setup_values.call(r.page)
41
- r.page.item(:title).value('Styled Page')
42
-
43
- # The Basic Style
44
- 6.times do |i|
45
- r.page.item("basic_show#{i + 1}").style(:visible, true)
46
- r.page.item("basic_hide#{i + 1}").style(:visible, false)
47
- end
48
-
49
- # The Graphic Style
50
- r.page.item(:graphic_bcolor1).style(:border_color, '#ff0000')
51
- r.page.item(:graphic_bcolor2).style(:border_color, 'red')
52
- # [WARNING] :stroke is deprecated.
53
- r.page.item(:graphic_bcolor3).style(:stroke, 'ff0000')
54
- # nil or 'none'.
55
- r.page.item(:graphic_bcolor4).style(:border_color, nil)
56
-
57
- r.page.item(:graphic_bwidth1).style(:border_width, 5)
58
- r.page.item(:graphic_bwidth2).style(:border_width, 5)
59
- r.page.item(:graphic_bwidth3).style(:border_width, 5)
60
- r.page.item(:graphic_bwidth4).style(:border_width, 2)
61
- r.page.item(:graphic_bwidth5).style(:border_width, 0)
62
-
63
- r.page.item(:graphic_fcolor1).style(:fill_color, '#ff0000')
64
- # [WARNING] :fill is deprecated.
65
- r.page.item(:graphic_fcolor2).style(:fill, 'red')
66
- # nil or 'none'
67
- r.page.item(:graphic_fcolor3).style(:fill_color, 'none')
68
- r.page.item(:graphic_fcolor4).style(:fill_color, 'ff0000')
69
-
70
- # The Text Style
71
- [1, 3].each do |i|
72
- r.page.item("text_b#{i}").style(:bold, true)
73
- r.page.item("text_i#{i}").style(:italic, true)
74
- r.page.item("text_u#{i}").style(:underline, true)
75
- r.page.item("text_l#{i}").style(:linethrough, true)
76
- end
77
- [2, 4].each do |i|
78
- r.page.item("text_b#{i}").style(:bold, false)
79
- r.page.item("text_i#{i}").style(:italic, false)
80
- r.page.item("text_u#{i}").style(:underline, false)
81
- r.page.item("text_l#{i}").style(:linethrough, false)
82
- end
83
-
84
- 3.times do |i|
85
- r.page.item("text_a#{i + 1}").style(:align, :right)
86
- end
87
- 2.times do |i|
88
- r.page.item("text_va#{i + 1}").style(:valign, :bottom)
89
- end
90
-
91
- 2.times do |i|
92
- r.page.item("text_color#{i + 1}").style(:color, 'ff0000')
93
- end
94
-
95
- # In case of using "dynamic_style_in_list.tlf"
96
- r.start_new_page(:layout => CaseRunner.case_resource('dynamic_style_in_list.tlf'))
97
-
98
- # Settings for Header.
99
- r.page.list(:list).header do |header|
100
- header.item(:rect).styles(:border_color => nil,
101
- :fill_color => 'ff00ff')
102
- header.item(:text).styles(:align => :center,
103
- :valign => :center,
104
- :bold => true)
105
- header.item(:tblock).styles(:align => :center,
106
- :valign => :center,
107
- :color => 'red',
108
- :linethrough => true)
109
- end
110
-
111
- 1.step(10, 1) do |i|
112
- # Flag of overflowed list-page.
113
- is_overflowed = r.page.list(:list).overflow?
114
-
115
- # Add details.
116
- r.page.list(:list).add_row do |row|
117
- case
118
- when i % 2 == 0
119
- row.item(:rect).styles(:border_color => 'ff0000',
120
- :border_width => 3,
121
- :fill_color => '0000ff')
122
- row.item(:text).styles(:color => 'red',
123
- :align => :left,
124
- :valign => :center)
125
- row.item(:tblock).styles(:color => 'blue',
126
- :align => :left,
127
- :valign => :center)
128
- when i % 3 == 0
129
- row.item(:rect).style(:visible, false)
130
- row.item(:text).styles(:color => '0000ff',
131
- :align => :right,
132
- :valign => :bottom)
133
- row.item(:tblock).styles(:color => 'ff0000',
134
- :align => :right,
135
- :valign => :bottom)
136
- end
137
- end
138
-
139
- # Change header styles when list-page was overflowed.
140
- if is_overflowed
141
- r.page.list(:list).header do |header|
142
- header.item(:rect).styles(:border_color => 'black',
143
- :fill_color => '#ffffff')
144
- header.item(:text).styles(:align => :left,
145
- :valign => :top,
146
- :bold => false)
147
- header.item(:tblock).styles(:align => :left,
148
- :valign => :top,
149
- :color => '#000000',
150
- :linethrough => false)
151
- end
152
- end
153
- end
154
- end
@@ -1 +0,0 @@
1
- {"version":"0.6.0.pre3","finger-print":1987612850,"config":{"title":"Dynamic Style","option":{},"page":{"paper-type":"A4","orientation":"portrait","margin-top":"20","margin-bottom":"20","margin-left":"20","margin-right":"20"}},"svg":"<svg width=\"595.2\" height=\"841.8\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"none\" viewBox=\"0 0 595.2 841.8\"><g class=\"canvas\"><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"20\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"underline\" x-width=\"374.1\" x-height=\"22\" x-left=\"20\" x-top=\"42\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"374.1\" height=\"22\" x=\"20\" y=\"42\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"underline\" x=\"20\" y=\"60\">The Basic Style</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"12\" font-family=\"Courier New\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"280\" x-height=\"14\" x-left=\"20\" x-top=\"72\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"280\" height=\"14\" x=\"20\" y=\"72\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"80\">Visibility: To true from false.</text></g><!--SHAPE{\"type\":\"s-rect\",\"id\":\"basic_show1\",\"display\":\"false\",\"desc\":null,\"svg\":{\"tag\":\"rect\",\"attrs\":{\"stroke\":\"#000000\",\"stroke-width\":\"1\",\"fill\":\"#FFFFFF\",\"fill-opacity\":\"1\",\"stroke-dasharray\":\"none\",\"rx\":\"0\",\"ry\":\"0\",\"width\":\"52\",\"height\":\"34\",\"x\":\"20\",\"y\":\"90\"}}}SHAPE--><!--LAYOUT<rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"false\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"basic_show1\" rx=\"0\" ry=\"0\" width=\"52\" height=\"34\" x=\"20\" y=\"90\"></rect>LAYOUT--><!--SHAPE{\"type\":\"s-ellipse\",\"id\":\"basic_show2\",\"display\":\"false\",\"desc\":null,\"svg\":{\"tag\":\"ellipse\",\"attrs\":{\"stroke\":\"#000000\",\"stroke-width\":\"1\",\"fill\":\"#FFFFFF\",\"fill-opacity\":\"1\",\"stroke-dasharray\":\"none\",\"rx\":\"31.55\",\"ry\":\"21.5\",\"cx\":\"118.45\",\"cy\":\"108.5\"}}}SHAPE--><!--LAYOUT<ellipse stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-ellipse\" x-display=\"false\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"basic_show2\" rx=\"31.55\" ry=\"21.5\" cx=\"118.45\" cy=\"108.5\"></ellipse>LAYOUT--><!--SHAPE{\"type\":\"s-text\",\"id\":\"basic_show3\",\"display\":\"false\",\"desc\":null,\"line-height\":\"\",\"valign\":\"\",\"box\":{\"x\":165.1,\"y\":97,\"width\":36,\"height\":20},\"text\":[\"Text\"],\"svg\":{\"tag\":\"g\",\"attrs\":{\"stroke-width\":\"0\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"kerning\":\"auto\",\"font-size\":\"18\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-anchor\":\"start\",\"text-decoration\":\"none\"},\"content\":\"<text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"165.1\\\" y=\\\"114\\\">Text</text>\"}}SHAPE--><!--LAYOUT<g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"false\" x-id=\"basic_show3\" font-size=\"18\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"36\" x-height=\"20\" x-left=\"165.1\" x-top=\"97\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"36\" height=\"20\" x=\"165.1\" y=\"97\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"165.1\" y=\"114\">Text</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-image\",\"id\":\"basic_show4\",\"display\":\"false\",\"desc\":null,\"svg\":{\"tag\":\"image\",\"attrs\":{\"image-rendering\":\"optimizeQuality\",\"preserveAspectRatio\":\"none\",\"x\":\"213.1\",\"y\":\"91\",\"xlink:href\":\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAOdAAADnQBaySz1gAAABZ0RVh0Q3JlYXRpb24gVGltZQAwOS8xNS8xMe/neuYAAAAfdEVYdFNvZnR3YXJlAE1hY3JvbWVkaWEgRmlyZXdvcmtzIDi1aNJ4AAAAV0lEQVRoge3PAQ3AMAzAsH78OfckLi26bATJM7M7P3BuB3zFSI2RGiM1RmqM1BipMVJjpMZIjZEaIzVGaozUGKkxUmOkxkiNkRojNUZqjNQYqTFSY6TmBQWzAmLkoN8LAAAAAElFTkSuQmCC\",\"width\":\"41\",\"height\":\"41\"}}}SHAPE--><!--LAYOUT<image image-rendering=\"optimizeQuality\" preserveAspectRatio=\"none\" class=\"s-image\" x-display=\"false\" x-id=\"basic_show4\" x=\"213.1\" y=\"91\" xlink:href=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAOdAAADnQBaySz1gAAABZ0RVh0Q3JlYXRpb24gVGltZQAwOS8xNS8xMe/neuYAAAAfdEVYdFNvZnR3YXJlAE1hY3JvbWVkaWEgRmlyZXdvcmtzIDi1aNJ4AAAAV0lEQVRoge3PAQ3AMAzAsH78OfckLi26bATJM7M7P3BuB3zFSI2RGiM1RmqM1BipMVJjpMZIjZEaIzVGaozUGKkxUmOkxkiNkRojNUZqjNQYqTFSY6TmBQWzAmLkoN8LAAAAAElFTkSuQmCC\" x-natural-width=\"50\" x-natural-height=\"50\" width=\"41\" height=\"41\"></image>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"basic_show5\",\"display\":\"false\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":267.1,\"y\":97,\"width\":106,\"height\":20},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":267.1,\"y\":114,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"18\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-anchor\":\"start\",\"text-decoration\":\"none\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"false\" x-multiple=\"false\" x-id=\"basic_show5\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"18\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"106\" x-height=\"20\" x-left=\"267.1\" x-top=\"97\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"106\" height=\"20\" x=\"267.1\" y=\"97\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"269.1\" y=\"108\">basic_show5</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-iblock\",\"id\":\"basic_show6\",\"display\":\"false\",\"desc\":null,\"box\":{\"x\":387,\"y\":87,\"width\":74,\"height\":58},\"position-x\":\"left\",\"position-y\":\"top\",\"svg\":{\"tag\":\"image\",\"attrs\":{\"x\":387,\"y\":87,\"width\":74,\"height\":58}}}SHAPE--><!--LAYOUT<g class=\"s-iblock\" x-display=\"false\" x-id=\"basic_show6\" x-width=\"74\" x-height=\"58\" x-left=\"387\" x-top=\"87\" x-position-x=\"left\" x-position-y=\"top\"><rect class=\"s-iblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"74\" height=\"58\" x=\"387\" y=\"87\"></rect><image width=\"32\" height=\"32\" class=\"s-iblock-mark\" opacity=\"0.5\" xlink:href=\"assets/icons/x-image-mark.png\" display=\"inline\" x=\"408\" y=\"100\"></image><text class=\"s-iblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"389\" y=\"98\">basic_show6</text></g>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Courier New\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"280\" x-height=\"14\" x-left=\"20\" x-top=\"147\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"280\" height=\"14\" x=\"20\" y=\"147\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"155\">Visibility: To false from true.</text></g><!--SHAPE{\"type\":\"s-rect\",\"id\":\"basic_hide1\",\"display\":\"true\",\"desc\":null,\"svg\":{\"tag\":\"rect\",\"attrs\":{\"stroke\":\"#000000\",\"stroke-width\":\"1\",\"fill\":\"#FFFFFF\",\"fill-opacity\":\"1\",\"stroke-dasharray\":\"none\",\"rx\":\"0\",\"ry\":\"0\",\"width\":\"52\",\"height\":\"34\",\"x\":\"20\",\"y\":\"165\"}}}SHAPE--><!--LAYOUT<rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"basic_hide1\" rx=\"0\" ry=\"0\" width=\"52\" height=\"34\" x=\"20\" y=\"165\"></rect>LAYOUT--><!--SHAPE{\"type\":\"s-ellipse\",\"id\":\"basic_hide2\",\"display\":\"true\",\"desc\":null,\"svg\":{\"tag\":\"ellipse\",\"attrs\":{\"stroke\":\"#000000\",\"stroke-width\":\"1\",\"fill\":\"#FFFFFF\",\"fill-opacity\":\"1\",\"stroke-dasharray\":\"none\",\"rx\":\"31.55\",\"ry\":\"21.5\",\"cx\":\"118.45\",\"cy\":\"183.5\"}}}SHAPE--><!--LAYOUT<ellipse stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-ellipse\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"basic_hide2\" rx=\"31.55\" ry=\"21.5\" cx=\"118.45\" cy=\"183.5\"></ellipse>LAYOUT--><!--SHAPE{\"type\":\"s-text\",\"id\":\"basic_hide3\",\"display\":\"true\",\"desc\":null,\"line-height\":\"\",\"valign\":\"\",\"box\":{\"x\":165.1,\"y\":172,\"width\":36,\"height\":20},\"text\":[\"Text\"],\"svg\":{\"tag\":\"g\",\"attrs\":{\"stroke-width\":\"0\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"kerning\":\"auto\",\"stroke\":\"none\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"font-family\":\"Helvetica\",\"font-size\":\"18\",\"text-anchor\":\"start\",\"text-decoration\":\"none\"},\"content\":\"<text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"165.1\\\" y=\\\"189\\\">Text</text>\"}}SHAPE--><!--LAYOUT<g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"basic_hide3\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Helvetica\" font-size=\"18\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"36\" x-height=\"20\" x-left=\"165.1\" x-top=\"172\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"36\" height=\"20\" x=\"165.1\" y=\"172\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"165.1\" y=\"189\">Text</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-image\",\"id\":\"basic_hide4\",\"display\":\"true\",\"desc\":null,\"svg\":{\"tag\":\"image\",\"attrs\":{\"image-rendering\":\"optimizeQuality\",\"preserveAspectRatio\":\"none\",\"xlink:href\":\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAOdAAADnQBaySz1gAAABZ0RVh0Q3JlYXRpb24gVGltZQAwOS8xNS8xMe/neuYAAAAfdEVYdFNvZnR3YXJlAE1hY3JvbWVkaWEgRmlyZXdvcmtzIDi1aNJ4AAAAV0lEQVRoge3PAQ3AMAzAsH78OfckLi26bATJM7M7P3BuB3zFSI2RGiM1RmqM1BipMVJjpMZIjZEaIzVGaozUGKkxUmOkxkiNkRojNUZqjNQYqTFSY6TmBQWzAmLkoN8LAAAAAElFTkSuQmCC\",\"width\":\"41\",\"height\":\"41\",\"x\":\"213.1\",\"y\":\"166\"}}}SHAPE--><!--LAYOUT<image image-rendering=\"optimizeQuality\" preserveAspectRatio=\"none\" class=\"s-image\" x-display=\"true\" x-id=\"basic_hide4\" xlink:href=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAOdAAADnQBaySz1gAAABZ0RVh0Q3JlYXRpb24gVGltZQAwOS8xNS8xMe/neuYAAAAfdEVYdFNvZnR3YXJlAE1hY3JvbWVkaWEgRmlyZXdvcmtzIDi1aNJ4AAAAV0lEQVRoge3PAQ3AMAzAsH78OfckLi26bATJM7M7P3BuB3zFSI2RGiM1RmqM1BipMVJjpMZIjZEaIzVGaozUGKkxUmOkxkiNkRojNUZqjNQYqTFSY6TmBQWzAmLkoN8LAAAAAElFTkSuQmCC\" x-natural-width=\"50\" x-natural-height=\"50\" width=\"41\" height=\"41\" x=\"213.1\" y=\"166\"></image>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"basic_hide5\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":267.1,\"y\":172,\"width\":106,\"height\":20},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":267.1,\"y\":189,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"18\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"basic_hide5\" x-width=\"106\" x-height=\"20\" x-left=\"267.1\" x-top=\"172\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"18\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"106\" height=\"20\" x=\"267.1\" y=\"172\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"269.1\" y=\"183\">basic_hide5</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-iblock\",\"id\":\"basic_hide6\",\"display\":\"true\",\"desc\":null,\"box\":{\"x\":387,\"y\":162,\"width\":74,\"height\":58},\"position-x\":\"left\",\"position-y\":\"top\",\"svg\":{\"tag\":\"image\",\"attrs\":{\"x\":387,\"y\":162,\"width\":74,\"height\":58}}}SHAPE--><!--LAYOUT<g class=\"s-iblock\" x-display=\"true\" x-id=\"basic_hide6\" x-width=\"74\" x-height=\"58\" x-left=\"387\" x-top=\"162\" x-position-x=\"left\" x-position-y=\"top\"><rect class=\"s-iblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"74\" height=\"58\" x=\"387\" y=\"162\"></rect><image width=\"32\" height=\"32\" class=\"s-iblock-mark\" opacity=\"0.5\" xlink:href=\"assets/icons/x-image-mark.png\" display=\"inline\" x=\"408\" y=\"175\"></image><text class=\"s-iblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"389\" y=\"173\">basic_hide6</text></g>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Helvetica\" font-size=\"20\" text-anchor=\"start\" text-decoration=\"underline\" x-width=\"374.1\" x-height=\"22\" x-left=\"20\" x-top=\"222\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"374.1\" height=\"22\" x=\"20\" y=\"222\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"underline\" x=\"20\" y=\"240\">The Graphic Style</text></g><!--SHAPE{\"type\":\"s-rect\",\"id\":\"graphic_bcolor1\",\"display\":\"true\",\"desc\":null,\"svg\":{\"tag\":\"rect\",\"attrs\":{\"stroke\":\"#000000\",\"stroke-width\":\"1\",\"fill\":\"#FFFFFF\",\"fill-opacity\":\"1\",\"stroke-dasharray\":\"none\",\"rx\":\"0\",\"ry\":\"0\",\"width\":\"89\",\"height\":\"44\",\"x\":\"20\",\"y\":\"269\"}}}SHAPE--><!--LAYOUT<rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"graphic_bcolor1\" rx=\"0\" ry=\"0\" width=\"89\" height=\"44\" x=\"20\" y=\"269\"></rect>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Courier New\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"245\" x-height=\"14\" x-left=\"20\" x-top=\"252\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"245\" height=\"14\" x=\"20\" y=\"252\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"260\">Border Color: To red from black.</text></g><!--SHAPE{\"type\":\"s-ellipse\",\"id\":\"graphic_bcolor2\",\"display\":\"true\",\"desc\":null,\"svg\":{\"tag\":\"ellipse\",\"attrs\":{\"stroke\":\"#000000\",\"stroke-width\":\"1\",\"fill\":\"#FFFFFF\",\"fill-opacity\":\"1\",\"stroke-dasharray\":\"none\",\"rx\":\"38.05\",\"ry\":\"23\",\"cx\":\"167.05\",\"cy\":\"291\"}}}SHAPE--><!--LAYOUT<ellipse stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-ellipse\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"graphic_bcolor2\" rx=\"38.05\" ry=\"23\" cx=\"167.05\" cy=\"291\"></ellipse>LAYOUT--><!--SHAPE{\"type\":\"s-line\",\"id\":\"graphic_bcolor3\",\"display\":\"true\",\"desc\":null,\"svg\":{\"tag\":\"line\",\"attrs\":{\"stroke\":\"#000000\",\"stroke-width\":\"1\",\"fill\":\"none\",\"stroke-dasharray\":\"none\",\"x1\":\"227.1\",\"x2\":\"286.1\",\"y1\":\"276\",\"y2\":\"302\"}}}SHAPE--><!--LAYOUT<line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"graphic_bcolor3\" x1=\"227.1\" x2=\"286.1\" y1=\"276\" y2=\"302\"></line>LAYOUT--><!--SHAPE{\"type\":\"s-rect\",\"id\":\"graphic_bcolor4\",\"display\":\"true\",\"desc\":null,\"svg\":{\"tag\":\"rect\",\"attrs\":{\"stroke\":\"#ff0000\",\"stroke-width\":\"1\",\"fill\":\"#e5b9b7\",\"fill-opacity\":\"1\",\"stroke-dasharray\":\"none\",\"rx\":\"0\",\"ry\":\"0\",\"width\":\"89\",\"height\":\"44\",\"x\":\"311.1\",\"y\":\"268\"}}}SHAPE--><!--LAYOUT<rect stroke=\"#ff0000\" stroke-width=\"1\" fill=\"#e5b9b7\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"graphic_bcolor4\" rx=\"0\" ry=\"0\" width=\"89\" height=\"44\" x=\"311.1\" y=\"268\"></rect>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Courier New\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"182.1\" x-height=\"14\" x-left=\"311\" x-top=\"316.9\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"182.1\" height=\"14\" x=\"311\" y=\"316.9\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"311\" y=\"324.9\">To none from red.</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Courier New\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"245\" x-height=\"14\" x-left=\"20\" x-top=\"332\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"245\" height=\"14\" x=\"20\" y=\"332\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"340\">Border Width: To 5 from 1.</text></g><!--SHAPE{\"type\":\"s-rect\",\"id\":\"graphic_bwidth1\",\"display\":\"true\",\"desc\":null,\"svg\":{\"tag\":\"rect\",\"attrs\":{\"stroke\":\"#000000\",\"stroke-width\":\"1\",\"fill\":\"#FFFFFF\",\"fill-opacity\":\"1\",\"stroke-dasharray\":\"none\",\"rx\":\"0\",\"ry\":\"0\",\"width\":\"89\",\"height\":\"44\",\"x\":\"20\",\"y\":\"350\"}}}SHAPE--><!--LAYOUT<rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"graphic_bwidth1\" rx=\"0\" ry=\"0\" width=\"89\" height=\"44\" x=\"20\" y=\"350\"></rect>LAYOUT--><!--SHAPE{\"type\":\"s-ellipse\",\"id\":\"graphic_bwidth2\",\"display\":\"true\",\"desc\":null,\"svg\":{\"tag\":\"ellipse\",\"attrs\":{\"stroke\":\"#000000\",\"stroke-width\":\"1\",\"fill\":\"#FFFFFF\",\"fill-opacity\":\"1\",\"stroke-dasharray\":\"none\",\"rx\":\"38.05\",\"ry\":\"23\",\"cx\":\"167.05\",\"cy\":\"370.9\"}}}SHAPE--><!--LAYOUT<ellipse stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-ellipse\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"graphic_bwidth2\" rx=\"38.05\" ry=\"23\" cx=\"167.05\" cy=\"370.9\"></ellipse>LAYOUT--><!--SHAPE{\"type\":\"s-line\",\"id\":\"graphic_bwidth3\",\"display\":\"true\",\"desc\":null,\"svg\":{\"tag\":\"line\",\"attrs\":{\"stroke\":\"#000000\",\"stroke-width\":\"1\",\"fill\":\"none\",\"stroke-dasharray\":\"none\",\"x2\":\"286.1\",\"y1\":\"355.9\",\"y2\":\"381.9\",\"x1\":\"227.1\"}}}SHAPE--><!--LAYOUT<line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"graphic_bwidth3\" x2=\"286.1\" y1=\"355.9\" y2=\"381.9\" x1=\"227.1\"></line>LAYOUT--><!--SHAPE{\"type\":\"s-rect\",\"id\":\"graphic_bwidth4\",\"display\":\"true\",\"desc\":null,\"svg\":{\"tag\":\"rect\",\"attrs\":{\"stroke\":\"#ff0000\",\"stroke-width\":\"1\",\"fill\":\"#e5b9b7\",\"fill-opacity\":\"1\",\"stroke-dasharray\":\"none\",\"rx\":\"0\",\"ry\":\"0\",\"width\":\"89\",\"height\":\"44\",\"x\":\"311.1\",\"y\":\"343\",\"stroke-opacity\":\"0\"}}}SHAPE--><!--LAYOUT<rect stroke=\"#ff0000\" stroke-width=\"1\" fill=\"#e5b9b7\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"graphic_bwidth4\" rx=\"0\" ry=\"0\" width=\"89\" height=\"44\" x=\"311.1\" y=\"343\" stroke-opacity=\"0\"></rect>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Courier New\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"182.1\" x-height=\"14\" x-left=\"311\" x-top=\"391.9\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"182.1\" height=\"14\" x=\"311\" y=\"391.9\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"311\" y=\"399.9\">To 2 from none(0).</text></g><!--SHAPE{\"type\":\"s-rect\",\"id\":\"graphic_bwidth5\",\"display\":\"true\",\"desc\":null,\"svg\":{\"tag\":\"rect\",\"attrs\":{\"stroke\":\"#ff0000\",\"stroke-width\":\"1\",\"fill\":\"#e5b9b7\",\"fill-opacity\":\"1\",\"stroke-dasharray\":\"none\",\"rx\":\"0\",\"ry\":\"0\",\"width\":\"89\",\"height\":\"44\",\"x\":\"448.1\",\"y\":\"343\"}}}SHAPE--><!--LAYOUT<rect stroke=\"#ff0000\" stroke-width=\"1\" fill=\"#e5b9b7\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"graphic_bwidth5\" rx=\"0\" ry=\"0\" width=\"89\" height=\"44\" x=\"448.1\" y=\"343\"></rect>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Courier New\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"127\" x-height=\"14\" x-left=\"448\" x-top=\"391.9\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"127\" height=\"14\" x=\"448\" y=\"391.9\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"448\" y=\"399.9\">To none(0) from 1.</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Courier New\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"245\" x-height=\"14\" x-left=\"20\" x-top=\"412\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"245\" height=\"14\" x=\"20\" y=\"412\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"420\">Fill Color: To red from white.</text></g><!--SHAPE{\"type\":\"s-rect\",\"id\":\"graphic_fcolor1\",\"display\":\"true\",\"desc\":null,\"svg\":{\"tag\":\"rect\",\"attrs\":{\"stroke\":\"#000000\",\"stroke-width\":\"1\",\"fill\":\"#FFFFFF\",\"fill-opacity\":\"1\",\"stroke-dasharray\":\"none\",\"rx\":\"0\",\"ry\":\"0\",\"width\":\"89\",\"height\":\"44\",\"x\":\"20\",\"y\":\"428.8\"}}}SHAPE--><!--LAYOUT<rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"graphic_fcolor1\" rx=\"0\" ry=\"0\" width=\"89\" height=\"44\" x=\"20\" y=\"428.8\"></rect>LAYOUT--><!--SHAPE{\"type\":\"s-ellipse\",\"id\":\"graphic_fcolor2\",\"display\":\"true\",\"desc\":null,\"svg\":{\"tag\":\"ellipse\",\"attrs\":{\"stroke\":\"#000000\",\"stroke-width\":\"1\",\"fill\":\"#FFFFFF\",\"fill-opacity\":\"1\",\"stroke-dasharray\":\"none\",\"rx\":\"38.05\",\"ry\":\"23\",\"cx\":\"167.05\",\"cy\":\"450.8\"}}}SHAPE--><!--LAYOUT<ellipse stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-ellipse\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"graphic_fcolor2\" rx=\"38.05\" ry=\"23\" cx=\"167.05\" cy=\"450.8\"></ellipse>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Courier New\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"182.1\" x-height=\"14\" x-left=\"226\" x-top=\"476.7\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"182.1\" height=\"14\" x=\"226\" y=\"476.7\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"226\" y=\"484.7\">To none from black.</text></g><ellipse stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-ellipse\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"37.5\" ry=\"15.5\" cx=\"302.5\" cy=\"434.5\"></ellipse><!--SHAPE{\"type\":\"s-rect\",\"id\":\"graphic_fcolor3\",\"display\":\"true\",\"desc\":null,\"svg\":{\"tag\":\"rect\",\"attrs\":{\"stroke\":\"#000000\",\"stroke-width\":\"1\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"stroke-dasharray\":\"none\",\"rx\":\"0\",\"ry\":\"0\",\"width\":\"73\",\"height\":\"35.2\",\"x\":\"226\",\"y\":\"427.8\"}}}SHAPE--><!--LAYOUT<rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#000000\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"graphic_fcolor3\" rx=\"0\" ry=\"0\" width=\"73\" height=\"35.2\" x=\"226\" y=\"427.8\"></rect>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Courier New\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"182.1\" x-height=\"14\" x-left=\"371\" x-top=\"476.7\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"182.1\" height=\"14\" x=\"371\" y=\"476.7\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"371\" y=\"484.7\">To red from none.</text></g><ellipse stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-ellipse\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"37.5\" ry=\"15.5\" cx=\"447.5\" cy=\"434.5\"></ellipse><!--SHAPE{\"type\":\"s-rect\",\"id\":\"graphic_fcolor4\",\"display\":\"true\",\"desc\":null,\"svg\":{\"tag\":\"rect\",\"attrs\":{\"stroke\":\"#000000\",\"stroke-width\":\"1\",\"fill\":\"none\",\"fill-opacity\":\"1\",\"stroke-dasharray\":\"none\",\"rx\":\"0\",\"ry\":\"0\",\"width\":\"73\",\"height\":\"35.2\",\"x\":\"371\",\"y\":\"427.8\"}}}SHAPE--><!--LAYOUT<rect stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"graphic_fcolor4\" rx=\"0\" ry=\"0\" width=\"73\" height=\"35.2\" x=\"371\" y=\"427.8\"></rect>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Helvetica\" font-size=\"20\" text-anchor=\"start\" text-decoration=\"underline\" x-width=\"374.1\" x-height=\"22\" x-left=\"20\" x-top=\"497\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"374.1\" height=\"22\" x=\"20\" y=\"497\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"underline\" x=\"20\" y=\"515\">The Text Style</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Courier New\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"122\" x-height=\"14\" x-left=\"20\" x-top=\"527\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"122\" height=\"14\" x=\"20\" y=\"527\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"535\">Bold Style:</text></g><!--SHAPE{\"type\":\"s-text\",\"id\":\"text_b1\",\"display\":\"true\",\"desc\":null,\"line-height\":\"\",\"valign\":\"\",\"box\":{\"x\":20,\"y\":549.2,\"width\":131,\"height\":15},\"text\":[\"To bold from normal.\"],\"svg\":{\"tag\":\"g\",\"attrs\":{\"stroke-width\":\"0\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"kerning\":\"auto\",\"font-size\":\"12\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-anchor\":\"start\",\"text-decoration\":\"none\"},\"content\":\"<text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"20\\\" y=\\\"560.2\\\">To bold from normal.</text>\"}}SHAPE--><!--LAYOUT<g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"text_b1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"131\" x-height=\"15\" x-left=\"20\" x-top=\"549.2\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"131\" height=\"15\" x=\"20\" y=\"549.2\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"560.2\">To bold from normal.</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-text\",\"id\":\"text_b2\",\"display\":\"true\",\"desc\":null,\"line-height\":\"\",\"valign\":\"\",\"box\":{\"x\":20,\"y\":567,\"width\":144,\"height\":15},\"text\":[\"To normal from bold.\"],\"svg\":{\"tag\":\"g\",\"attrs\":{\"stroke-width\":\"0\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"kerning\":\"auto\",\"stroke\":\"none\",\"font-weight\":\"bold\",\"font-style\":\"normal\",\"font-family\":\"Helvetica\",\"font-size\":\"12\",\"text-anchor\":\"start\",\"text-decoration\":\"none\"},\"content\":\"<text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"20\\\" y=\\\"578\\\">To normal from bold.</text>\"}}SHAPE--><!--LAYOUT<g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"text_b2\" stroke=\"none\" font-weight=\"bold\" font-style=\"normal\" font-family=\"Helvetica\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"144\" x-height=\"15\" x-left=\"20\" x-top=\"567\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"144\" height=\"15\" x=\"20\" y=\"567\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"578\">To normal from bold.</text></g>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Courier New\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"122\" x-height=\"14\" x-left=\"150\" x-top=\"527\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"122\" height=\"14\" x=\"150\" y=\"527\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"150\" y=\"535\">Italic Style:</text></g><!--SHAPE{\"type\":\"s-text\",\"id\":\"text_i1\",\"display\":\"true\",\"desc\":null,\"line-height\":\"\",\"valign\":\"\",\"box\":{\"x\":150,\"y\":549.2,\"width\":132,\"height\":15},\"text\":[\"To italic from normal.\"],\"svg\":{\"tag\":\"g\",\"attrs\":{\"stroke-width\":\"0\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"kerning\":\"auto\",\"stroke\":\"none\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"font-family\":\"Helvetica\",\"font-size\":\"12\",\"text-anchor\":\"start\",\"text-decoration\":\"none\"},\"content\":\"<text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"150\\\" y=\\\"560.2\\\">To italic from normal.</text>\"}}SHAPE--><!--LAYOUT<g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"text_i1\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Helvetica\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"132\" x-height=\"15\" x-left=\"150\" x-top=\"549.2\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"132\" height=\"15\" x=\"150\" y=\"549.2\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"150\" y=\"560.2\">To italic from normal.</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-text\",\"id\":\"text_i2\",\"display\":\"true\",\"desc\":null,\"line-height\":\"\",\"valign\":\"\",\"box\":{\"x\":150,\"y\":567,\"width\":146,\"height\":15},\"text\":[\"To normal from italic.\"],\"svg\":{\"tag\":\"g\",\"attrs\":{\"stroke-width\":\"0\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"kerning\":\"auto\",\"stroke\":\"none\",\"font-weight\":\"normal\",\"font-style\":\"italic\",\"font-family\":\"Helvetica\",\"font-size\":\"12\",\"text-anchor\":\"start\",\"text-decoration\":\"none\"},\"content\":\"<text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"150\\\" y=\\\"578\\\">To normal from italic.</text>\"}}SHAPE--><!--LAYOUT<g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"text_i2\" stroke=\"none\" font-weight=\"normal\" font-style=\"italic\" font-family=\"Helvetica\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"146\" x-height=\"15\" x-left=\"150\" x-top=\"567\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"146\" height=\"15\" x=\"150\" y=\"567\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"150\" y=\"578\">To normal from italic.</text></g>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Courier New\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"122\" x-height=\"14\" x-left=\"280\" x-top=\"527\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"122\" height=\"14\" x=\"280\" y=\"527\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"280\" y=\"535\">Underline Style:</text></g><!--SHAPE{\"type\":\"s-text\",\"id\":\"text_u1\",\"display\":\"true\",\"desc\":null,\"line-height\":\"\",\"valign\":\"\",\"box\":{\"x\":280,\"y\":549.2,\"width\":132,\"height\":15},\"text\":[\"To underline from none.\"],\"svg\":{\"tag\":\"g\",\"attrs\":{\"stroke-width\":\"0\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"kerning\":\"auto\",\"stroke\":\"none\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"font-family\":\"Helvetica\",\"font-size\":\"12\",\"text-anchor\":\"start\",\"text-decoration\":\"none\"},\"content\":\"<text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"280\\\" y=\\\"560.2\\\">To underline from none.</text>\"}}SHAPE--><!--LAYOUT<g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"text_u1\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Helvetica\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"132\" x-height=\"15\" x-left=\"280\" x-top=\"549.2\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"132\" height=\"15\" x=\"280\" y=\"549.2\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"280\" y=\"560.2\">To underline from none.</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-text\",\"id\":\"text_u2\",\"display\":\"true\",\"desc\":null,\"line-height\":\"\",\"valign\":\"\",\"box\":{\"x\":280,\"y\":567,\"width\":146,\"height\":15},\"text\":[\"To none from underline.\"],\"svg\":{\"tag\":\"g\",\"attrs\":{\"stroke-width\":\"0\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"kerning\":\"auto\",\"stroke\":\"none\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"font-family\":\"Helvetica\",\"font-size\":\"12\",\"text-anchor\":\"start\",\"text-decoration\":\"underline\"},\"content\":\"<text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"underline\\\" x=\\\"280\\\" y=\\\"578\\\">To none from underline.</text>\"}}SHAPE--><!--LAYOUT<g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"text_u2\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Helvetica\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"underline\" x-width=\"146\" x-height=\"15\" x-left=\"280\" x-top=\"567\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"146\" height=\"15\" x=\"280\" y=\"567\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"underline\" x=\"280\" y=\"578\">To none from underline.</text></g>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Courier New\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"133\" x-height=\"14\" x-left=\"425\" x-top=\"527\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"133\" height=\"14\" x=\"425\" y=\"527\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"425\" y=\"535\">Line-Through Style:</text></g><!--SHAPE{\"type\":\"s-text\",\"id\":\"text_l1\",\"display\":\"true\",\"desc\":null,\"line-height\":\"\",\"valign\":\"\",\"box\":{\"x\":425,\"y\":549.2,\"width\":145,\"height\":15},\"text\":[\"To line-through from none.\"],\"svg\":{\"tag\":\"g\",\"attrs\":{\"stroke-width\":\"0\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"kerning\":\"auto\",\"stroke\":\"none\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"font-family\":\"Helvetica\",\"font-size\":\"12\",\"text-anchor\":\"start\",\"text-decoration\":\"none\"},\"content\":\"<text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"425\\\" y=\\\"560.2\\\">To line-through from none.</text>\"}}SHAPE--><!--LAYOUT<g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"text_l1\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Helvetica\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"145\" x-height=\"15\" x-left=\"425\" x-top=\"549.2\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"145\" height=\"15\" x=\"425\" y=\"549.2\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"425\" y=\"560.2\">To line-through from none.</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-text\",\"id\":\"text_l2\",\"display\":\"true\",\"desc\":null,\"line-height\":\"\",\"valign\":\"\",\"box\":{\"x\":425,\"y\":567,\"width\":146,\"height\":15},\"text\":[\"To none from line-through.\"],\"svg\":{\"tag\":\"g\",\"attrs\":{\"stroke-width\":\"0\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"kerning\":\"auto\",\"stroke\":\"none\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"font-family\":\"Helvetica\",\"font-size\":\"12\",\"text-anchor\":\"start\",\"text-decoration\":\"line-through\"},\"content\":\"<text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"line-through\\\" x=\\\"425\\\" y=\\\"578\\\">To none from line-through.</text>\"}}SHAPE--><!--LAYOUT<g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"text_l2\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Helvetica\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"line-through\" x-width=\"146\" x-height=\"15\" x-left=\"425\" x-top=\"567\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"146\" height=\"15\" x=\"425\" y=\"567\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"line-through\" x=\"425\" y=\"578\">To none from line-through.</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"text_b3\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":20,\"y\":586.2,\"width\":119,\"height\":14},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":20,\"y\":597.2,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-anchor\":\"start\",\"text-decoration\":\"none\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"text_b3\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"119\" x-height=\"14\" x-left=\"20\" x-top=\"586.2\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"119\" height=\"14\" x=\"20\" y=\"586.2\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"22\" y=\"597.2\">text_b3</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"text_b4\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":20,\"y\":606,\"width\":119,\"height\":14},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":20,\"y\":617,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"Helvetica\",\"font-weight\":\"bold\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"text_b4\" x-width=\"119\" x-height=\"14\" x-left=\"20\" x-top=\"606\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"bold\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"119\" height=\"14\" x=\"20\" y=\"606\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"22\" y=\"617\">text_b4</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"text_i3\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":150,\"y\":586.2,\"width\":119,\"height\":14},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":150,\"y\":597.2,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"text_i3\" x-width=\"119\" x-height=\"14\" x-left=\"150\" x-top=\"586.2\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"119\" height=\"14\" x=\"150\" y=\"586.2\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"152\" y=\"597.2\">text_i3</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"text_i4\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":150,\"y\":606,\"width\":119,\"height\":14},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":150,\"y\":617,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"italic\",\"text-decoration\":\"none\",\"text-anchor\":\"start\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"text_i4\" x-width=\"119\" x-height=\"14\" x-left=\"150\" x-top=\"606\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"italic\" text-decoration=\"none\" text-anchor=\"start\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"119\" height=\"14\" x=\"150\" y=\"606\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"152\" y=\"617\">text_i4</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"text_u3\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":280,\"y\":586.2,\"width\":119,\"height\":14},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":280,\"y\":597.2,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"text_u3\" x-width=\"119\" x-height=\"14\" x-left=\"280\" x-top=\"586.2\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"119\" height=\"14\" x=\"280\" y=\"586.2\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"282\" y=\"597.2\">text_u3</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"text_u4\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":280,\"y\":606,\"width\":119,\"height\":14},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":280,\"y\":617,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"underline\",\"text-anchor\":\"start\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"text_u4\" x-width=\"119\" x-height=\"14\" x-left=\"280\" x-top=\"606\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"underline\" text-anchor=\"start\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"119\" height=\"14\" x=\"280\" y=\"606\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"282\" y=\"617\">text_u4</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"text_l3\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":425,\"y\":586.2,\"width\":119,\"height\":14},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":425,\"y\":597.2,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"text_l3\" x-width=\"119\" x-height=\"14\" x-left=\"425\" x-top=\"586.2\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"119\" height=\"14\" x=\"425\" y=\"586.2\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"427\" y=\"597.2\">text_l3</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"text_l4\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":425,\"y\":606,\"width\":119,\"height\":14},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":425,\"y\":617,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"line-through\",\"text-anchor\":\"start\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"text_l4\" x-width=\"119\" x-height=\"14\" x-left=\"425\" x-top=\"606\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"line-through\" text-anchor=\"start\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"119\" height=\"14\" x=\"425\" y=\"606\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"427\" y=\"617\">text_l4</text></g>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Courier New\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"217\" x-height=\"14\" x-left=\"20\" x-top=\"637\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"217\" height=\"14\" x=\"20\" y=\"637\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"645\">Text Align: To right from left.</text></g><!--SHAPE{\"type\":\"s-text\",\"id\":\"text_a1\",\"display\":\"true\",\"desc\":null,\"line-height\":\"\",\"valign\":\"\",\"box\":{\"x\":20,\"y\":659,\"width\":155.1,\"height\":23.2},\"text\":[\"To right from left.\"],\"svg\":{\"tag\":\"g\",\"attrs\":{\"stroke-width\":\"0\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"kerning\":\"auto\",\"stroke\":\"none\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"font-family\":\"Helvetica\",\"font-size\":\"12\",\"text-anchor\":\"start\",\"text-decoration\":\"none\"},\"content\":\"<text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"20\\\" y=\\\"670\\\">To right from left.</text>\"}}SHAPE--><!--LAYOUT<g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"text_a1\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Helvetica\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"155.1\" x-height=\"23.2\" x-left=\"20\" x-top=\"659\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"155.1\" height=\"23.2\" x=\"20\" y=\"659\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"670\">To right from left.</text></g>LAYOUT--><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"155.1\" height=\"23.2\" x=\"20\" y=\"659\"></rect><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"text_a2\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":192.1,\"y\":660.2,\"width\":138,\"height\":14},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":192.1,\"y\":671.2,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-anchor\":\"start\",\"text-decoration\":\"none\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"text_a2\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"138\" x-height=\"14\" x-left=\"192.1\" x-top=\"660.2\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"138\" height=\"14\" x=\"192.1\" y=\"660.2\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"194.1\" y=\"671.2\">text_a2</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"text_a3\",\"display\":\"true\",\"desc\":\"\\u65e5\\u672c\\u8a9e\",\"multiple\":\"true\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":344.1,\"y\":660.2,\"width\":153.1,\"height\":44.1},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":344.1,\"y\":660.2,\"width\":153.1,\"height\":44.1,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"IPAMincho\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-anchor\":\"start\",\"text-decoration\":\"none\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"true\" x-id=\"text_a3\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"153.1\" x-height=\"44.1\" x-left=\"344.1\" x-top=\"660.2\" x-desc=\"\u65e5\u672c\u8a9e\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"153.1\" height=\"44.1\" x=\"344.1\" y=\"660.2\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"346.1\" y=\"671.2\">text_a3</text></g>LAYOUT--><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"138\" height=\"22\" x=\"192.1\" y=\"660.2\"></rect><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"153.1\" height=\"44.1\" x=\"344.1\" y=\"660.2\"></rect><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Courier New\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"245\" x-height=\"14\" x-left=\"20\" x-top=\"712\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"245\" height=\"14\" x=\"20\" y=\"712\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"720\">Vertical Align: To bottom from top.</text></g><!--SHAPE{\"type\":\"s-text\",\"id\":\"text_va1\",\"display\":\"true\",\"desc\":null,\"line-height\":\"\",\"valign\":\"\",\"box\":{\"x\":20,\"y\":729,\"width\":155.1,\"height\":50.3},\"text\":[\"To bottom from top.\"],\"svg\":{\"tag\":\"g\",\"attrs\":{\"stroke-width\":\"0\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"kerning\":\"auto\",\"stroke\":\"none\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"font-family\":\"Helvetica\",\"font-size\":\"12\",\"text-anchor\":\"start\",\"text-decoration\":\"none\"},\"content\":\"<text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"20\\\" y=\\\"740\\\">To bottom from top.</text>\"}}SHAPE--><!--LAYOUT<g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"text_va1\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Helvetica\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"155.1\" x-height=\"50.3\" x-left=\"20\" x-top=\"729\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"155.1\" height=\"50.3\" x=\"20\" y=\"729\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"740\">To bottom from top.</text></g>LAYOUT--><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"155.1\" height=\"50.3\" x=\"20\" y=\"729\"></rect><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"text_va2\",\"display\":\"true\",\"desc\":\"\\u65e5\\u672c\\u8a9e\",\"multiple\":\"true\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":189,\"y\":730,\"width\":153.1,\"height\":50.3},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":189,\"y\":730,\"width\":153.1,\"height\":50.3,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"IPAMincho\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"true\" x-id=\"text_va2\" x-width=\"153.1\" x-height=\"50.3\" x-left=\"189\" x-top=\"730\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" x-desc=\"\u65e5\u672c\u8a9e\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"153.1\" height=\"50.3\" x=\"189\" y=\"730\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"191\" y=\"741\">text_va2</text></g>LAYOUT--><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"153.1\" height=\"50.3\" x=\"189\" y=\"730\"></rect><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Courier New\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"245\" x-height=\"14\" x-left=\"20\" x-top=\"789\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"245\" height=\"14\" x=\"20\" y=\"789\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"797\">Text Color: To red from black.</text></g><!--SHAPE{\"type\":\"s-text\",\"id\":\"text_color1\",\"display\":\"true\",\"desc\":null,\"line-height\":\"\",\"valign\":\"\",\"box\":{\"x\":20,\"y\":809,\"width\":131,\"height\":15},\"text\":[\"To red from black.\"],\"svg\":{\"tag\":\"g\",\"attrs\":{\"stroke-width\":\"0\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"kerning\":\"auto\",\"stroke\":\"none\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"font-family\":\"Helvetica\",\"font-size\":\"12\",\"text-anchor\":\"start\",\"text-decoration\":\"none\"},\"content\":\"<text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"20\\\" y=\\\"820\\\">To red from black.</text>\"}}SHAPE--><!--LAYOUT<g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"text_color1\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Helvetica\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"131\" x-height=\"15\" x-left=\"20\" x-top=\"809\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"131\" height=\"15\" x=\"20\" y=\"809\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"820\">To red from black.</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"text_color2\",\"display\":\"true\",\"desc\":\"\\u65e5\\u672c\\u8a9e\",\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":136,\"y\":808.1,\"width\":119,\"height\":12},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":136,\"y\":818.1,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"IPAMincho\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"text_color2\" x-width=\"119\" x-height=\"12\" x-left=\"136\" x-top=\"808.1\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" x-desc=\"\u65e5\u672c\u8a9e\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"119\" height=\"12\" x=\"136\" y=\"808.1\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"138\" y=\"819.1\">text_color2</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"title\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":183.1,\"y\":21,\"width\":208,\"height\":19},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":287.1,\"y\":33,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"18\",\"font-family\":\"Times New Roman\",\"font-weight\":\"bold\",\"font-style\":\"normal\",\"text-anchor\":\"middle\",\"text-decoration\":\"underline\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"title\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"18\" font-family=\"Times New Roman\" font-weight=\"bold\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"underline\" x-width=\"208\" x-height=\"19\" x-left=\"183.1\" x-top=\"21\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"208\" height=\"19\" x=\"183.1\" y=\"21\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"185.1\" y=\"32\">title</text></g>LAYOUT--></g></svg>"}