thinreports 0.8.2 → 0.9.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (170) hide show
  1. checksums.yaml +4 -4
  2. data/.github/CONTRIBUTING.md +2 -0
  3. data/.travis.yml +3 -3
  4. data/CHANGELOG.md +98 -1
  5. data/README.md +0 -9
  6. data/Rakefile +1 -2
  7. data/examples/character_spacing/character_spacing.tlf +293 -1
  8. data/examples/dynamic_image/dynamic_image.tlf +661 -1
  9. data/examples/dynamic_style/dynamic_style.rb +4 -4
  10. data/examples/dynamic_style/dynamic_style.tlf +1835 -1
  11. data/examples/dynamic_style/dynamic_style_in_list.tlf +344 -1
  12. data/examples/eudc/eudc.tlf +180 -1
  13. data/examples/hidden_shapes/hidden_shapes.tlf +449 -1
  14. data/examples/list_events/list_events.rb +1 -28
  15. data/examples/list_events/list_events.tlf +361 -0
  16. data/examples/list_manual_generation/list_manual_generation.tlf +132 -1
  17. data/examples/list_page_number/list_page_number.tlf +254 -1
  18. data/examples/page_number/page_number.tlf +215 -1
  19. data/examples/palleted_png/palleted_png.rb +2 -0
  20. data/examples/palleted_png/palleted_png.tlf +47 -1
  21. data/examples/password_setting/password_setting.tlf +45 -1
  22. data/examples/report_callbacks/report_callbacks.rb +1 -18
  23. data/examples/report_callbacks/report_callbacks.tlf +147 -1
  24. data/examples/single_line_tblock/single_line_tblock.tlf +170 -1
  25. data/examples/tblock_overflow/tblock_overflow.tlf +538 -1
  26. data/examples/tblock_styles/font_size.tlf +383 -1
  27. data/examples/tblock_styles/tblock_styles.tlf +889 -1
  28. data/examples/text_align/text_align.tlf +241 -1
  29. data/examples/typeB_page_size/B4_ISO.tlf +45 -1
  30. data/examples/typeB_page_size/B4_JIS.tlf +45 -1
  31. data/examples/word_wrap/word_wrap.tlf +297 -1
  32. data/lib/thinreports.rb +0 -1
  33. data/lib/thinreports/config.rb +3 -0
  34. data/lib/thinreports/core/errors.rb +0 -3
  35. data/lib/thinreports/core/format/base.rb +4 -4
  36. data/lib/thinreports/core/shape.rb +1 -9
  37. data/lib/thinreports/core/shape/basic.rb +3 -3
  38. data/lib/thinreports/core/shape/basic/block_format.rb +1 -1
  39. data/lib/thinreports/core/shape/basic/format.rb +2 -14
  40. data/lib/thinreports/core/shape/basic/internal.rb +2 -2
  41. data/lib/thinreports/core/shape/image_block.rb +3 -3
  42. data/lib/thinreports/core/shape/image_block/format.rb +0 -2
  43. data/lib/thinreports/core/shape/image_block/internal.rb +1 -1
  44. data/lib/thinreports/core/shape/list.rb +3 -7
  45. data/lib/thinreports/core/shape/list/format.rb +37 -24
  46. data/lib/thinreports/core/shape/list/manager.rb +1 -36
  47. data/lib/thinreports/core/shape/list/page.rb +0 -15
  48. data/lib/thinreports/core/shape/list/page_state.rb +1 -1
  49. data/lib/thinreports/core/shape/list/section_format.rb +14 -12
  50. data/lib/thinreports/core/shape/list/section_internal.rb +4 -7
  51. data/lib/thinreports/core/shape/manager/format.rb +0 -2
  52. data/lib/thinreports/core/shape/manager/internal.rb +1 -1
  53. data/lib/thinreports/core/shape/page_number.rb +1 -1
  54. data/lib/thinreports/core/shape/page_number/format.rb +9 -6
  55. data/lib/thinreports/core/shape/page_number/interface.rb +1 -1
  56. data/lib/thinreports/core/shape/page_number/internal.rb +2 -6
  57. data/lib/thinreports/core/shape/style/base.rb +11 -13
  58. data/lib/thinreports/core/shape/style/basic.rb +4 -4
  59. data/lib/thinreports/core/shape/style/graphic.rb +4 -10
  60. data/lib/thinreports/core/shape/style/text.rb +36 -69
  61. data/lib/thinreports/core/shape/text.rb +3 -3
  62. data/lib/thinreports/core/shape/text/format.rb +3 -13
  63. data/lib/thinreports/core/shape/text/internal.rb +2 -2
  64. data/lib/thinreports/core/shape/text_block.rb +3 -3
  65. data/lib/thinreports/core/shape/text_block/format.rb +9 -6
  66. data/lib/thinreports/core/shape/text_block/interface.rb +7 -7
  67. data/lib/thinreports/core/shape/text_block/internal.rb +1 -1
  68. data/lib/thinreports/generator/pdf.rb +0 -1
  69. data/lib/thinreports/generator/pdf/document.rb +2 -2
  70. data/lib/thinreports/generator/pdf/document/draw_shape.rb +25 -51
  71. data/lib/thinreports/generator/pdf/document/draw_template_items.rb +66 -0
  72. data/lib/thinreports/generator/pdf/document/font.rb +3 -8
  73. data/lib/thinreports/generator/pdf/document/graphics/attributes.rb +97 -77
  74. data/lib/thinreports/generator/pdf/document/graphics/basic.rb +18 -13
  75. data/lib/thinreports/generator/pdf/document/graphics/image.rb +17 -12
  76. data/lib/thinreports/generator/pdf/document/page.rb +1 -1
  77. data/lib/thinreports/generator/pdf/drawer/list.rb +5 -1
  78. data/lib/thinreports/generator/pdf/drawer/list_section.rb +1 -4
  79. data/lib/thinreports/generator/pdf/drawer/page.rb +9 -9
  80. data/lib/thinreports/layout.rb +3 -3
  81. data/lib/thinreports/layout/base.rb +0 -16
  82. data/lib/thinreports/layout/format.rb +38 -57
  83. data/lib/thinreports/layout/legacy_schema.rb +354 -0
  84. data/lib/thinreports/layout/version.rb +1 -1
  85. data/lib/thinreports/report.rb +0 -1
  86. data/lib/thinreports/report/base.rb +3 -17
  87. data/lib/thinreports/report/internal.rb +13 -55
  88. data/lib/thinreports/report/page.rb +1 -1
  89. data/lib/thinreports/version.rb +1 -1
  90. data/test/data/legacy_layout/all-items.tlf +1 -0
  91. data/test/schema_helper.rb +121 -0
  92. data/test/test_helper.rb +13 -50
  93. data/test/unit/core/format/test_base.rb +35 -31
  94. data/test/unit/core/shape/base/test_internal.rb +1 -1
  95. data/test/unit/core/shape/basic/test_block_format.rb +23 -0
  96. data/test/unit/core/shape/basic/{test_basic_interface.rb → test_block_interface.rb} +1 -1
  97. data/test/unit/core/shape/basic/{test_basic_internal.rb → test_block_internal.rb} +4 -7
  98. data/test/unit/core/shape/basic/test_format.rb +25 -47
  99. data/test/unit/core/shape/basic/test_interface.rb +5 -5
  100. data/test/unit/core/shape/basic/test_internal.rb +6 -11
  101. data/test/unit/core/shape/image_block/test_interface.rb +5 -5
  102. data/test/unit/core/shape/image_block/test_internal.rb +2 -2
  103. data/test/unit/core/shape/list/test_format.rb +86 -44
  104. data/test/unit/core/shape/list/test_manager.rb +10 -65
  105. data/test/unit/core/shape/list/test_page.rb +10 -61
  106. data/test/unit/core/shape/list/test_page_state.rb +1 -1
  107. data/test/unit/core/shape/list/test_section_format.rb +19 -28
  108. data/test/unit/core/shape/list/test_section_interface.rb +14 -6
  109. data/test/unit/core/shape/list/test_section_internal.rb +17 -23
  110. data/test/unit/core/shape/manager/test_format.rb +1 -1
  111. data/test/unit/core/shape/manager/test_internal.rb +59 -98
  112. data/test/unit/core/shape/manager/test_target.rb +21 -30
  113. data/test/unit/core/shape/page_number/test_format.rb +34 -52
  114. data/test/unit/core/shape/page_number/test_interface.rb +1 -1
  115. data/test/unit/core/shape/page_number/test_internal.rb +2 -2
  116. data/test/unit/core/shape/styles/test_base.rb +16 -41
  117. data/test/unit/core/shape/styles/test_basic.rb +7 -7
  118. data/test/unit/core/shape/styles/test_graphic.rb +27 -32
  119. data/test/unit/core/shape/styles/test_text.rb +68 -311
  120. data/test/unit/core/shape/text/test_format.rb +30 -59
  121. data/test/unit/core/shape/text/test_internal.rb +5 -5
  122. data/test/unit/core/shape/text_block/formatter/test_datetime.rb +13 -13
  123. data/test/unit/core/shape/text_block/test_format.rb +145 -146
  124. data/test/unit/core/shape/text_block/test_interface.rb +9 -9
  125. data/test/unit/core/shape/text_block/test_internal.rb +9 -9
  126. data/test/unit/core/test_shape.rb +19 -31
  127. data/test/unit/generator/pdf/document/graphics/test_attributes.rb +112 -122
  128. data/test/unit/generator/pdf/document/graphics/test_basic.rb +45 -0
  129. data/test/unit/generator/pdf/document/graphics/test_image.rb +5 -5
  130. data/test/unit/generator/pdf/document/test_font.rb +4 -10
  131. data/test/unit/generator/pdf/document/test_page.rb +13 -11
  132. data/test/unit/generator/pdf/document/test_parse_color.rb +5 -5
  133. data/test/unit/generator/test_base.rb +5 -5
  134. data/test/unit/generator/test_configuration.rb +4 -8
  135. data/test/unit/generator/test_pdf.rb +3 -2
  136. data/test/unit/layout/test_base.rb +16 -22
  137. data/test/unit/layout/test_format.rb +66 -86
  138. data/test/unit/layout/test_legacy_schema.rb +587 -0
  139. data/test/unit/layout/test_version.rb +20 -20
  140. data/test/unit/report/test_base.rb +32 -45
  141. data/test/unit/report/test_internal.rb +43 -99
  142. data/test/unit/test_config.rb +4 -2
  143. data/test/unit/test_layout.rb +1 -1
  144. metadata +20 -48
  145. data/examples/list_events/list_events_0_7_7.tlf +0 -1
  146. data/examples/list_events/list_events_0_8.tlf +0 -1
  147. data/lib/thinreports/core/events.rb +0 -69
  148. data/lib/thinreports/core/format/builder.rb +0 -62
  149. data/lib/thinreports/core/shape/list/configuration.rb +0 -54
  150. data/lib/thinreports/core/shape/list/events.rb +0 -47
  151. data/lib/thinreports/core/shape/list/store.rb +0 -33
  152. data/lib/thinreports/generator/pdf/configuration.rb +0 -33
  153. data/lib/thinreports/generator/pdf/document/parse_svg.rb +0 -104
  154. data/lib/thinreports/layout/configuration.rb +0 -29
  155. data/test/data/layout_block.tlf +0 -1
  156. data/test/data/layout_list.tlf +0 -1
  157. data/test/data/layout_list_noheader.tlf +0 -1
  158. data/test/data/layout_text1.tlf +0 -1
  159. data/test/data/layout_text2.tlf +0 -1
  160. data/test/unit/core/format/test_builder.rb +0 -109
  161. data/test/unit/core/shape/basic/test_basic_format.rb +0 -30
  162. data/test/unit/core/shape/image_block/test_format.rb +0 -58
  163. data/test/unit/core/shape/list/test_configuration.rb +0 -69
  164. data/test/unit/core/shape/list/test_events.rb +0 -36
  165. data/test/unit/core/shape/list/test_store.rb +0 -41
  166. data/test/unit/core/test_events.rb +0 -93
  167. data/test/unit/generator/pdf/document/test_draw_shape.rb +0 -44
  168. data/test/unit/generator/pdf/test_configuration.rb +0 -31
  169. data/test/unit/layout/test_configuration.rb +0 -21
  170. data/test/unit/report/test_events.rb +0 -22
@@ -95,10 +95,10 @@ example :dynamic_style, 'Change styles of the object dynamically' do |t|
95
95
  header.item(:rect).styles(border_color: nil,
96
96
  fill_color: 'ff00ff')
97
97
  header.item(:text).styles(align: :center,
98
- valign: :center,
98
+ valign: :middle,
99
99
  bold: true)
100
100
  header[:tblock].styles(align: :center,
101
- valign: :center,
101
+ valign: :middle,
102
102
  color: 'red',
103
103
  linethrough: true)
104
104
  end
@@ -116,10 +116,10 @@ example :dynamic_style, 'Change styles of the object dynamically' do |t|
116
116
  fill_color: '0000ff')
117
117
  row.item(:text).styles(color: 'red',
118
118
  align: :left,
119
- valign: :center)
119
+ valign: :middle)
120
120
  row.item(:tblock).styles(color: 'blue',
121
121
  align: :left,
122
- valign: :center)
122
+ valign: :middle)
123
123
  when i % 3 == 0
124
124
  row.item(:rect).style(:visible, false)
125
125
  row.item(:text).styles(color: '0000ff',
@@ -1 +1,1835 @@
1
- {"version":"0.7.7.2","finger-print":-72892437,"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\" id=\"goog_2086231519\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"374.1\" height=\"22\" x=\"20\" y=\"42\"/><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\" id=\"goog_2086231520\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"280\" height=\"14\" x=\"20\" y=\"72\"/><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\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"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\",\"id\":\"goog_2086231521\"}}}SHAPE--><!--LAYOUT<rect xmlns=\"http://www.w3.org/2000/svg\" 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\" id=\"goog_2086231521\"/>LAYOUT--><!--SHAPE{\"type\":\"s-ellipse\",\"id\":\"basic_show2\",\"display\":\"false\",\"desc\":null,\"svg\":{\"tag\":\"ellipse\",\"attrs\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"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\",\"id\":\"goog_2086231522\"}}}SHAPE--><!--LAYOUT<ellipse xmlns=\"http://www.w3.org/2000/svg\" 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\" id=\"goog_2086231522\"/>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},\"inline-format\":\"false\",\"text\":[\"Text\"],\"svg\":{\"tag\":\"g\",\"attrs\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"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\",\"id\":\"goog_2086231523\"},\"content\":\"<text xmlns=\\\"http://www.w3.org/2000/svg\\\" 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 xmlns=\"http://www.w3.org/2000/svg\" 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\" id=\"goog_2086231523\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"36\" height=\"20\" x=\"165.1\" y=\"97\"/><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\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"xmlns:xlink\":\"http://www.w3.org/1999/xlink\",\"image-rendering\":\"optimizeQuality\",\"preserveAspectRatio\":\"none\",\"x\":\"213.1\",\"y\":\"91\",\"xlink:href\":\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAOdAAADnQBaySz1gAAABZ0RVh0Q3JlYXRpb24gVGltZQAwOS8xNS8xMe/neuYAAAAfdEVYdFNvZnR3YXJlAE1hY3JvbWVkaWEgRmlyZXdvcmtzIDi1aNJ4AAAAV0lEQVRoge3PAQ3AMAzAsH78OfckLi26bATJM7M7P3BuB3zFSI2RGiM1RmqM1BipMVJjpMZIjZEaIzVGaozUGKkxUmOkxkiNkRojNUZqjNQYqTFSY6TmBQWzAmLkoN8LAAAAAElFTkSuQmCC\",\"width\":\"41\",\"height\":\"41\",\"id\":\"goog_2086231524\"}}}SHAPE--><!--LAYOUT<image xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" 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\" id=\"goog_2086231524\"/>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},\"inline-format\":\"false\",\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":267.1,\"y\":111,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"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\",\"id\":\"goog_2086231525\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" 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\" id=\"goog_2086231525\" x-inline-format=\"false\"><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\"/><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 xmlns=\"http://www.w3.org/2000/svg\" 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\" id=\"goog_2086231526\"><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\"/><image xmlns:xlink=\"http://www.w3.org/1999/xlink\" 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\"/><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\" id=\"goog_2086231527\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"280\" height=\"14\" x=\"20\" y=\"147\"/><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\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"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\",\"id\":\"goog_2086231528\"}}}SHAPE--><!--LAYOUT<rect xmlns=\"http://www.w3.org/2000/svg\" 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\" id=\"goog_2086231528\"/>LAYOUT--><!--SHAPE{\"type\":\"s-ellipse\",\"id\":\"basic_hide2\",\"display\":\"true\",\"desc\":null,\"svg\":{\"tag\":\"ellipse\",\"attrs\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"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\",\"id\":\"goog_2086231529\"}}}SHAPE--><!--LAYOUT<ellipse xmlns=\"http://www.w3.org/2000/svg\" 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\" id=\"goog_2086231529\"/>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},\"inline-format\":\"false\",\"text\":[\"Text\"],\"svg\":{\"tag\":\"g\",\"attrs\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"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\",\"id\":\"goog_2086231530\"},\"content\":\"<text xmlns=\\\"http://www.w3.org/2000/svg\\\" 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 xmlns=\"http://www.w3.org/2000/svg\" 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\" id=\"goog_2086231530\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"36\" height=\"20\" x=\"165.1\" y=\"172\"/><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\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"xmlns:xlink\":\"http://www.w3.org/1999/xlink\",\"image-rendering\":\"optimizeQuality\",\"preserveAspectRatio\":\"none\",\"xlink:href\":\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAOdAAADnQBaySz1gAAABZ0RVh0Q3JlYXRpb24gVGltZQAwOS8xNS8xMe/neuYAAAAfdEVYdFNvZnR3YXJlAE1hY3JvbWVkaWEgRmlyZXdvcmtzIDi1aNJ4AAAAV0lEQVRoge3PAQ3AMAzAsH78OfckLi26bATJM7M7P3BuB3zFSI2RGiM1RmqM1BipMVJjpMZIjZEaIzVGaozUGKkxUmOkxkiNkRojNUZqjNQYqTFSY6TmBQWzAmLkoN8LAAAAAElFTkSuQmCC\",\"width\":\"41\",\"height\":\"41\",\"x\":\"213.1\",\"y\":\"166\",\"id\":\"goog_2086231531\"}}}SHAPE--><!--LAYOUT<image xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" 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\" id=\"goog_2086231531\"/>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},\"inline-format\":\"false\",\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":267.1,\"y\":186,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"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\",\"id\":\"goog_2086231532\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" 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\" id=\"goog_2086231532\" x-inline-format=\"false\"><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\"/><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 xmlns=\"http://www.w3.org/2000/svg\" 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\" id=\"goog_2086231533\"><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\"/><image xmlns:xlink=\"http://www.w3.org/1999/xlink\" 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\"/><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\" id=\"goog_2086231534\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"374.1\" height=\"22\" x=\"20\" y=\"222\"/><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\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"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\",\"id\":\"goog_2086231535\"}}}SHAPE--><!--LAYOUT<rect xmlns=\"http://www.w3.org/2000/svg\" 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\" id=\"goog_2086231535\"/>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\" id=\"goog_2086231536\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"245\" height=\"14\" x=\"20\" y=\"252\"/><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\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"stroke\":\"#000000\",\"stroke-width\":\"1\",\"fill\":\"#FFFFFF\",\"fill-opacity\":\"1\",\"stroke-dasharray\":\"none\",\"rx\":\"38.05\",\"ry\":\"23\",\"cx\":\"167.05\",\"cy\":\"291\",\"id\":\"goog_2086231537\"}}}SHAPE--><!--LAYOUT<ellipse xmlns=\"http://www.w3.org/2000/svg\" 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\" id=\"goog_2086231537\"/>LAYOUT--><!--SHAPE{\"type\":\"s-line\",\"id\":\"graphic_bcolor3\",\"display\":\"true\",\"desc\":null,\"svg\":{\"tag\":\"line\",\"attrs\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"stroke\":\"#000000\",\"stroke-width\":\"1\",\"fill\":\"none\",\"stroke-dasharray\":\"none\",\"x1\":\"227.1\",\"x2\":\"286.1\",\"y1\":\"276\",\"y2\":\"302\",\"id\":\"goog_2086231538\"}}}SHAPE--><!--LAYOUT<line xmlns=\"http://www.w3.org/2000/svg\" 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\" id=\"goog_2086231538\"/>LAYOUT--><!--SHAPE{\"type\":\"s-rect\",\"id\":\"graphic_bcolor4\",\"display\":\"true\",\"desc\":null,\"svg\":{\"tag\":\"rect\",\"attrs\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"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\",\"id\":\"goog_2086231539\"}}}SHAPE--><!--LAYOUT<rect xmlns=\"http://www.w3.org/2000/svg\" 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\" id=\"goog_2086231539\"/>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\" id=\"goog_2086231540\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"182.1\" height=\"14\" x=\"311\" y=\"316.9\"/><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\" id=\"goog_2086231541\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"245\" height=\"14\" x=\"20\" y=\"332\"/><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\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"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\",\"id\":\"goog_2086231542\"}}}SHAPE--><!--LAYOUT<rect xmlns=\"http://www.w3.org/2000/svg\" 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\" id=\"goog_2086231542\"/>LAYOUT--><!--SHAPE{\"type\":\"s-ellipse\",\"id\":\"graphic_bwidth2\",\"display\":\"true\",\"desc\":null,\"svg\":{\"tag\":\"ellipse\",\"attrs\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"stroke\":\"#000000\",\"stroke-width\":\"1\",\"fill\":\"#FFFFFF\",\"fill-opacity\":\"1\",\"stroke-dasharray\":\"none\",\"rx\":\"38.05\",\"ry\":\"23\",\"cx\":\"167.05\",\"cy\":\"370.9\",\"id\":\"goog_2086231543\"}}}SHAPE--><!--LAYOUT<ellipse xmlns=\"http://www.w3.org/2000/svg\" 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\" id=\"goog_2086231543\"/>LAYOUT--><!--SHAPE{\"type\":\"s-line\",\"id\":\"graphic_bwidth3\",\"display\":\"true\",\"desc\":null,\"svg\":{\"tag\":\"line\",\"attrs\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"stroke\":\"#000000\",\"stroke-width\":\"1\",\"fill\":\"none\",\"stroke-dasharray\":\"none\",\"x2\":\"286.1\",\"y1\":\"355.9\",\"y2\":\"381.9\",\"x1\":\"227.1\",\"id\":\"goog_2086231544\"}}}SHAPE--><!--LAYOUT<line xmlns=\"http://www.w3.org/2000/svg\" 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\" id=\"goog_2086231544\"/>LAYOUT--><!--SHAPE{\"type\":\"s-rect\",\"id\":\"graphic_bwidth4\",\"display\":\"true\",\"desc\":null,\"svg\":{\"tag\":\"rect\",\"attrs\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"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\",\"id\":\"goog_2086231545\"}}}SHAPE--><!--LAYOUT<rect xmlns=\"http://www.w3.org/2000/svg\" 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\" id=\"goog_2086231545\"/>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\" id=\"goog_2086231546\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"182.1\" height=\"14\" x=\"311\" y=\"391.9\"/><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\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"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\",\"id\":\"goog_2086231547\"}}}SHAPE--><!--LAYOUT<rect xmlns=\"http://www.w3.org/2000/svg\" 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\" id=\"goog_2086231547\"/>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=\"129.5\" x-height=\"14\" x-left=\"448\" x-top=\"391.9\" id=\"goog_2086231548\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"129.5\" height=\"14\" x=\"448\" y=\"391.9\"/><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\" id=\"goog_2086231549\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"245\" height=\"14\" x=\"20\" y=\"412\"/><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\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"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\",\"id\":\"goog_2086231550\"}}}SHAPE--><!--LAYOUT<rect xmlns=\"http://www.w3.org/2000/svg\" 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\" id=\"goog_2086231550\"/>LAYOUT--><!--SHAPE{\"type\":\"s-ellipse\",\"id\":\"graphic_fcolor2\",\"display\":\"true\",\"desc\":null,\"svg\":{\"tag\":\"ellipse\",\"attrs\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"stroke\":\"#000000\",\"stroke-width\":\"1\",\"fill\":\"#FFFFFF\",\"fill-opacity\":\"1\",\"stroke-dasharray\":\"none\",\"rx\":\"38.05\",\"ry\":\"23\",\"cx\":\"167.05\",\"cy\":\"450.8\",\"id\":\"goog_2086231551\"}}}SHAPE--><!--LAYOUT<ellipse xmlns=\"http://www.w3.org/2000/svg\" 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\" id=\"goog_2086231551\"/>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\" id=\"goog_2086231552\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"182.1\" height=\"14\" x=\"226\" y=\"476.7\"/><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\" id=\"goog_2086231553\"/><!--SHAPE{\"type\":\"s-rect\",\"id\":\"graphic_fcolor3\",\"display\":\"true\",\"desc\":null,\"svg\":{\"tag\":\"rect\",\"attrs\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"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\",\"id\":\"goog_2086231554\"}}}SHAPE--><!--LAYOUT<rect xmlns=\"http://www.w3.org/2000/svg\" 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\" id=\"goog_2086231554\"/>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\" id=\"goog_2086231555\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"182.1\" height=\"14\" x=\"371\" y=\"476.7\"/><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\" id=\"goog_2086231556\"/><!--SHAPE{\"type\":\"s-rect\",\"id\":\"graphic_fcolor4\",\"display\":\"true\",\"desc\":null,\"svg\":{\"tag\":\"rect\",\"attrs\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"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\",\"id\":\"goog_2086231557\"}}}SHAPE--><!--LAYOUT<rect xmlns=\"http://www.w3.org/2000/svg\" 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\" id=\"goog_2086231557\"/>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\" id=\"goog_2086231558\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"374.1\" height=\"22\" x=\"20\" y=\"497\"/><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\" id=\"goog_2086231559\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"122\" height=\"14\" x=\"20\" y=\"527\"/><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},\"inline-format\":\"false\",\"text\":[\"To bold from normal.\"],\"svg\":{\"tag\":\"g\",\"attrs\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"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\",\"id\":\"goog_2086231560\"},\"content\":\"<text xmlns=\\\"http://www.w3.org/2000/svg\\\" 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 xmlns=\"http://www.w3.org/2000/svg\" 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\" id=\"goog_2086231560\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"131\" height=\"15\" x=\"20\" y=\"549.2\"/><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},\"inline-format\":\"false\",\"text\":[\"To normal from bold.\"],\"svg\":{\"tag\":\"g\",\"attrs\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"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\",\"id\":\"goog_2086231561\"},\"content\":\"<text xmlns=\\\"http://www.w3.org/2000/svg\\\" 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 xmlns=\"http://www.w3.org/2000/svg\" 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\" id=\"goog_2086231561\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"144\" height=\"15\" x=\"20\" y=\"567\"/><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\" id=\"goog_2086231562\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"122\" height=\"14\" x=\"150\" y=\"527\"/><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},\"inline-format\":\"false\",\"text\":[\"To italic from normal.\"],\"svg\":{\"tag\":\"g\",\"attrs\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"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\",\"id\":\"goog_2086231563\"},\"content\":\"<text xmlns=\\\"http://www.w3.org/2000/svg\\\" 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 xmlns=\"http://www.w3.org/2000/svg\" 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\" id=\"goog_2086231563\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"132\" height=\"15\" x=\"150\" y=\"549.2\"/><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},\"inline-format\":\"false\",\"text\":[\"To normal from italic.\"],\"svg\":{\"tag\":\"g\",\"attrs\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"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\",\"id\":\"goog_2086231564\"},\"content\":\"<text xmlns=\\\"http://www.w3.org/2000/svg\\\" 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 xmlns=\"http://www.w3.org/2000/svg\" 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\" id=\"goog_2086231564\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"146\" height=\"15\" x=\"150\" y=\"567\"/><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\" id=\"goog_2086231565\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"122\" height=\"14\" x=\"280\" y=\"527\"/><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},\"inline-format\":\"false\",\"text\":[\"To underline from none.\"],\"svg\":{\"tag\":\"g\",\"attrs\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"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\",\"id\":\"goog_2086231566\"},\"content\":\"<text xmlns=\\\"http://www.w3.org/2000/svg\\\" 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 xmlns=\"http://www.w3.org/2000/svg\" 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\" id=\"goog_2086231566\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"132\" height=\"15\" x=\"280\" y=\"549.2\"/><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},\"inline-format\":\"false\",\"text\":[\"To none from underline.\"],\"svg\":{\"tag\":\"g\",\"attrs\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"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\",\"id\":\"goog_2086231567\"},\"content\":\"<text xmlns=\\\"http://www.w3.org/2000/svg\\\" 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 xmlns=\"http://www.w3.org/2000/svg\" 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\" id=\"goog_2086231567\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"146\" height=\"15\" x=\"280\" y=\"567\"/><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=\"136.7\" x-height=\"14\" x-left=\"425\" x-top=\"527\" id=\"goog_2086231568\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"136.7\" height=\"14\" x=\"425\" y=\"527\"/><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},\"inline-format\":\"false\",\"text\":[\"To line-through from none.\"],\"svg\":{\"tag\":\"g\",\"attrs\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"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\",\"id\":\"goog_2086231569\"},\"content\":\"<text xmlns=\\\"http://www.w3.org/2000/svg\\\" 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 xmlns=\"http://www.w3.org/2000/svg\" 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\" id=\"goog_2086231569\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"145\" height=\"15\" x=\"425\" y=\"549.2\"/><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},\"inline-format\":\"false\",\"text\":[\"To none from line-through.\"],\"svg\":{\"tag\":\"g\",\"attrs\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"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\",\"id\":\"goog_2086231570\"},\"content\":\"<text xmlns=\\\"http://www.w3.org/2000/svg\\\" 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 xmlns=\"http://www.w3.org/2000/svg\" 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\" id=\"goog_2086231570\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"146\" height=\"15\" x=\"425\" y=\"567\"/><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},\"inline-format\":\"false\",\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":20,\"y\":595.2,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"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\",\"id\":\"goog_2086231571\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" 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\" id=\"goog_2086231571\" x-inline-format=\"false\"><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\"/><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},\"inline-format\":\"false\",\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":20,\"y\":615,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"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\",\"id\":\"goog_2086231572\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" 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\" id=\"goog_2086231572\" x-inline-format=\"false\"><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\"/><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},\"inline-format\":\"false\",\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":150,\"y\":595.2,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"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\",\"id\":\"goog_2086231573\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" 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\" id=\"goog_2086231573\" x-inline-format=\"false\"><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\"/><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},\"inline-format\":\"false\",\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":150,\"y\":615,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"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\",\"id\":\"goog_2086231574\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" 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\" id=\"goog_2086231574\" x-inline-format=\"false\"><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\"/><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},\"inline-format\":\"false\",\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":280,\"y\":595.2,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"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\",\"id\":\"goog_2086231575\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" 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\" id=\"goog_2086231575\" x-inline-format=\"false\"><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\"/><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},\"inline-format\":\"false\",\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":280,\"y\":615,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"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\",\"id\":\"goog_2086231576\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" 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\" id=\"goog_2086231576\" x-inline-format=\"false\"><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\"/><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},\"inline-format\":\"false\",\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":425,\"y\":595.2,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"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\",\"id\":\"goog_2086231577\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" 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\" id=\"goog_2086231577\" x-inline-format=\"false\"><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\"/><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},\"inline-format\":\"false\",\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":425,\"y\":615,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"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\",\"id\":\"goog_2086231578\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" 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\" id=\"goog_2086231578\" x-inline-format=\"false\"><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\"/><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=\"223.1\" x-height=\"14\" x-left=\"20\" x-top=\"637\" id=\"goog_2086231579\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"223.1\" height=\"14\" x=\"20\" y=\"637\"/><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},\"inline-format\":\"false\",\"text\":[\"To right from left.\"],\"svg\":{\"tag\":\"g\",\"attrs\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"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\",\"id\":\"goog_2086231580\"},\"content\":\"<text xmlns=\\\"http://www.w3.org/2000/svg\\\" 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 xmlns=\"http://www.w3.org/2000/svg\" 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\" id=\"goog_2086231580\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"155.1\" height=\"23.2\" x=\"20\" y=\"659\"/><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\" id=\"goog_2086231581\"/><!--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},\"inline-format\":\"false\",\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":192.1,\"y\":669.2,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"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\",\"id\":\"goog_2086231582\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" 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\" id=\"goog_2086231582\" x-inline-format=\"false\"><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\"/><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},\"inline-format\":\"false\",\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":344.1,\"y\":660.2,\"width\":153.1,\"height\":44.1,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"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\",\"id\":\"goog_2086231583\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" 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\" id=\"goog_2086231583\" x-inline-format=\"false\"><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\"/><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\" id=\"goog_2086231584\"/><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\" id=\"goog_2086231585\"/><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=\"251.8\" x-height=\"14\" x-left=\"20\" x-top=\"712\" id=\"goog_2086231586\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"251.8\" height=\"14\" x=\"20\" y=\"712\"/><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},\"inline-format\":\"false\",\"text\":[\"To bottom from top.\"],\"svg\":{\"tag\":\"g\",\"attrs\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"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\",\"id\":\"goog_2086231587\"},\"content\":\"<text xmlns=\\\"http://www.w3.org/2000/svg\\\" 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 xmlns=\"http://www.w3.org/2000/svg\" 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\" id=\"goog_2086231587\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"155.1\" height=\"50.3\" x=\"20\" y=\"729\"/><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\" id=\"goog_2086231588\"/><!--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},\"inline-format\":\"false\",\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":189,\"y\":730,\"width\":153.1,\"height\":50.3,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"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\",\"id\":\"goog_2086231589\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" 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\" id=\"goog_2086231589\" x-inline-format=\"false\"><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\"/><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\" id=\"goog_2086231590\"/><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\" id=\"goog_2086231591\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"245\" height=\"14\" x=\"20\" y=\"789\"/><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},\"inline-format\":\"false\",\"text\":[\"To red from black.\"],\"svg\":{\"tag\":\"g\",\"attrs\":{\"xmlns\":\"http://www.w3.org/2000/svg\",\"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\",\"id\":\"goog_2086231592\"},\"content\":\"<text xmlns=\\\"http://www.w3.org/2000/svg\\\" 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 xmlns=\"http://www.w3.org/2000/svg\" 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\" id=\"goog_2086231592\" x-inline-format=\"false\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"131\" height=\"15\" x=\"20\" y=\"809\"/><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},\"inline-format\":\"false\",\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":136,\"y\":817.1,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"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\",\"id\":\"goog_2086231593\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" 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\" id=\"goog_2086231593\" x-inline-format=\"false\"><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\"/><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\":22,\"width\":208,\"height\":19},\"inline-format\":\"false\",\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":287.1,\"y\":38,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"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\",\"id\":\"goog_2086231594\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" 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=\"22\" id=\"goog_2086231594\" x-inline-format=\"false\"><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=\"22\"/><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=\"33\">title</text></g>LAYOUT--></g></svg>","state":{"layout-guide":[]}}
1
+ {
2
+ "version": "0.9.0",
3
+ "items": [
4
+ {
5
+ "id": "",
6
+ "type": "text",
7
+ "display": true,
8
+ "description": "",
9
+ "x": 20,
10
+ "y": 42,
11
+ "width": 374.1,
12
+ "height": 23,
13
+ "style": {
14
+ "font-family": [
15
+ "Helvetica"
16
+ ],
17
+ "font-size": 20,
18
+ "color": "#000000",
19
+ "text-align": "left",
20
+ "vertical-align": "top",
21
+ "line-height": "",
22
+ "line-height-ratio": "",
23
+ "letter-spacing": "",
24
+ "font-style": [
25
+ "underline"
26
+ ]
27
+ },
28
+ "texts": [
29
+ "The Basic Style"
30
+ ]
31
+ },
32
+ {
33
+ "id": "",
34
+ "type": "text",
35
+ "display": true,
36
+ "description": "",
37
+ "x": 20,
38
+ "y": 72,
39
+ "width": 280,
40
+ "height": 14,
41
+ "style": {
42
+ "font-family": [
43
+ "Courier New"
44
+ ],
45
+ "font-size": 12,
46
+ "color": "#000000",
47
+ "text-align": "left",
48
+ "vertical-align": "top",
49
+ "line-height": "",
50
+ "line-height-ratio": "",
51
+ "letter-spacing": "",
52
+ "font-style": []
53
+ },
54
+ "texts": [
55
+ "Visibility: To true from false."
56
+ ]
57
+ },
58
+ {
59
+ "id": "basic_show1",
60
+ "type": "rect",
61
+ "display": false,
62
+ "description": "",
63
+ "x": 20,
64
+ "y": 90,
65
+ "width": 52,
66
+ "height": 34,
67
+ "style": {
68
+ "border-color": "#000000",
69
+ "border-width": 1,
70
+ "border-style": "solid",
71
+ "fill-color": "#FFFFFF"
72
+ },
73
+ "border-radius": 0
74
+ },
75
+ {
76
+ "id": "basic_show2",
77
+ "type": "ellipse",
78
+ "display": false,
79
+ "description": "",
80
+ "style": {
81
+ "border-color": "#000000",
82
+ "border-width": 1,
83
+ "border-style": "solid",
84
+ "fill-color": "#FFFFFF"
85
+ },
86
+ "cx": 118.45,
87
+ "cy": 108.5,
88
+ "rx": 31.55,
89
+ "ry": 21.5
90
+ },
91
+ {
92
+ "id": "basic_show3",
93
+ "type": "text",
94
+ "display": false,
95
+ "description": "",
96
+ "x": 165.1,
97
+ "y": 97,
98
+ "width": 36,
99
+ "height": 20.5,
100
+ "style": {
101
+ "font-family": [
102
+ "Helvetica"
103
+ ],
104
+ "font-size": 18,
105
+ "color": "#000000",
106
+ "text-align": "left",
107
+ "vertical-align": "top",
108
+ "line-height": "",
109
+ "line-height-ratio": "",
110
+ "letter-spacing": "",
111
+ "font-style": []
112
+ },
113
+ "texts": [
114
+ "Text"
115
+ ]
116
+ },
117
+ {
118
+ "id": "basic_show4",
119
+ "type": "image",
120
+ "display": false,
121
+ "description": "",
122
+ "x": 213.1,
123
+ "y": 91,
124
+ "width": 41,
125
+ "height": 41,
126
+ "data": {
127
+ "mime-type": "image/png",
128
+ "base64": "iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAOdAAADnQBaySz1gAAABZ0RVh0Q3JlYXRpb24gVGltZQAwOS8xNS8xMe/neuYAAAAfdEVYdFNvZnR3YXJlAE1hY3JvbWVkaWEgRmlyZXdvcmtzIDi1aNJ4AAAAV0lEQVRoge3PAQ3AMAzAsH78OfckLi26bATJM7M7P3BuB3zFSI2RGiM1RmqM1BipMVJjpMZIjZEaIzVGaozUGKkxUmOkxkiNkRojNUZqjNQYqTFSY6TmBQWzAmLkoN8LAAAAAElFTkSuQmCC"
129
+ }
130
+ },
131
+ {
132
+ "id": "basic_show5",
133
+ "type": "text-block",
134
+ "display": false,
135
+ "description": "",
136
+ "x": 267.1,
137
+ "y": 97,
138
+ "width": 106,
139
+ "height": 20,
140
+ "style": {
141
+ "font-family": [
142
+ "Helvetica"
143
+ ],
144
+ "font-size": 18,
145
+ "color": "#000000",
146
+ "text-align": "left",
147
+ "vertical-align": "top",
148
+ "line-height": "",
149
+ "line-height-ratio": "",
150
+ "letter-spacing": "",
151
+ "font-style": [],
152
+ "overflow": "truncate",
153
+ "word-wrap": "break-word"
154
+ },
155
+ "reference-id": "",
156
+ "value": "",
157
+ "multiple-line": false,
158
+ "format": {
159
+ "base": "",
160
+ "type": ""
161
+ }
162
+ },
163
+ {
164
+ "id": "",
165
+ "type": "text",
166
+ "display": true,
167
+ "description": "",
168
+ "x": 20,
169
+ "y": 147,
170
+ "width": 280,
171
+ "height": 14,
172
+ "style": {
173
+ "font-family": [
174
+ "Courier New"
175
+ ],
176
+ "font-size": 12,
177
+ "color": "#000000",
178
+ "text-align": "left",
179
+ "vertical-align": "top",
180
+ "line-height": "",
181
+ "line-height-ratio": "",
182
+ "letter-spacing": "",
183
+ "font-style": []
184
+ },
185
+ "texts": [
186
+ "Visibility: To false from true."
187
+ ]
188
+ },
189
+ {
190
+ "id": "basic_hide1",
191
+ "type": "rect",
192
+ "display": true,
193
+ "description": "",
194
+ "x": 20,
195
+ "y": 165,
196
+ "width": 52,
197
+ "height": 34,
198
+ "style": {
199
+ "border-color": "#000000",
200
+ "border-width": 1,
201
+ "border-style": "solid",
202
+ "fill-color": "#FFFFFF"
203
+ },
204
+ "border-radius": 0
205
+ },
206
+ {
207
+ "id": "basic_hide2",
208
+ "type": "ellipse",
209
+ "display": true,
210
+ "description": "",
211
+ "style": {
212
+ "border-color": "#000000",
213
+ "border-width": 1,
214
+ "border-style": "solid",
215
+ "fill-color": "#FFFFFF"
216
+ },
217
+ "cx": 118.45,
218
+ "cy": 183.5,
219
+ "rx": 31.55,
220
+ "ry": 21.5
221
+ },
222
+ {
223
+ "id": "basic_hide3",
224
+ "type": "text",
225
+ "display": true,
226
+ "description": "",
227
+ "x": 165.1,
228
+ "y": 172,
229
+ "width": 36,
230
+ "height": 20.5,
231
+ "style": {
232
+ "font-family": [
233
+ "Helvetica"
234
+ ],
235
+ "font-size": 18,
236
+ "color": "#000000",
237
+ "text-align": "left",
238
+ "vertical-align": "top",
239
+ "line-height": "",
240
+ "line-height-ratio": "",
241
+ "letter-spacing": "",
242
+ "font-style": []
243
+ },
244
+ "texts": [
245
+ "Text"
246
+ ]
247
+ },
248
+ {
249
+ "id": "basic_hide4",
250
+ "type": "image",
251
+ "display": true,
252
+ "description": "",
253
+ "x": 213.1,
254
+ "y": 166,
255
+ "width": 41,
256
+ "height": 41,
257
+ "data": {
258
+ "mime-type": "image/png",
259
+ "base64": "iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAOdAAADnQBaySz1gAAABZ0RVh0Q3JlYXRpb24gVGltZQAwOS8xNS8xMe/neuYAAAAfdEVYdFNvZnR3YXJlAE1hY3JvbWVkaWEgRmlyZXdvcmtzIDi1aNJ4AAAAV0lEQVRoge3PAQ3AMAzAsH78OfckLi26bATJM7M7P3BuB3zFSI2RGiM1RmqM1BipMVJjpMZIjZEaIzVGaozUGKkxUmOkxkiNkRojNUZqjNQYqTFSY6TmBQWzAmLkoN8LAAAAAElFTkSuQmCC"
260
+ }
261
+ },
262
+ {
263
+ "id": "basic_hide5",
264
+ "type": "text-block",
265
+ "display": true,
266
+ "description": "",
267
+ "x": 267.1,
268
+ "y": 172,
269
+ "width": 106,
270
+ "height": 20,
271
+ "style": {
272
+ "font-family": [
273
+ "Helvetica"
274
+ ],
275
+ "font-size": 18,
276
+ "color": "#000000",
277
+ "text-align": "left",
278
+ "vertical-align": "top",
279
+ "line-height": "",
280
+ "line-height-ratio": "",
281
+ "letter-spacing": "",
282
+ "font-style": [],
283
+ "overflow": "truncate",
284
+ "word-wrap": "break-word"
285
+ },
286
+ "reference-id": "",
287
+ "value": "",
288
+ "multiple-line": false,
289
+ "format": {
290
+ "base": "",
291
+ "type": ""
292
+ }
293
+ },
294
+ {
295
+ "id": "",
296
+ "type": "text",
297
+ "display": true,
298
+ "description": "",
299
+ "x": 20,
300
+ "y": 222,
301
+ "width": 374.1,
302
+ "height": 23,
303
+ "style": {
304
+ "font-family": [
305
+ "Helvetica"
306
+ ],
307
+ "font-size": 20,
308
+ "color": "#000000",
309
+ "text-align": "left",
310
+ "vertical-align": "top",
311
+ "line-height": "",
312
+ "line-height-ratio": "",
313
+ "letter-spacing": "",
314
+ "font-style": [
315
+ "underline"
316
+ ]
317
+ },
318
+ "texts": [
319
+ "The Graphic Style"
320
+ ]
321
+ },
322
+ {
323
+ "id": "graphic_bcolor1",
324
+ "type": "rect",
325
+ "display": true,
326
+ "description": "",
327
+ "x": 20,
328
+ "y": 269,
329
+ "width": 89,
330
+ "height": 44,
331
+ "style": {
332
+ "border-color": "#000000",
333
+ "border-width": 1,
334
+ "border-style": "solid",
335
+ "fill-color": "#FFFFFF"
336
+ },
337
+ "border-radius": 0
338
+ },
339
+ {
340
+ "id": "",
341
+ "type": "text",
342
+ "display": true,
343
+ "description": "",
344
+ "x": 20,
345
+ "y": 252,
346
+ "width": 245,
347
+ "height": 14,
348
+ "style": {
349
+ "font-family": [
350
+ "Courier New"
351
+ ],
352
+ "font-size": 12,
353
+ "color": "#000000",
354
+ "text-align": "left",
355
+ "vertical-align": "top",
356
+ "line-height": "",
357
+ "line-height-ratio": "",
358
+ "letter-spacing": "",
359
+ "font-style": []
360
+ },
361
+ "texts": [
362
+ "Border Color: To red from black."
363
+ ]
364
+ },
365
+ {
366
+ "id": "graphic_bcolor2",
367
+ "type": "ellipse",
368
+ "display": true,
369
+ "description": "",
370
+ "style": {
371
+ "border-color": "#000000",
372
+ "border-width": 1,
373
+ "border-style": "solid",
374
+ "fill-color": "#FFFFFF"
375
+ },
376
+ "cx": 167.05,
377
+ "cy": 291,
378
+ "rx": 38.05,
379
+ "ry": 23
380
+ },
381
+ {
382
+ "id": "graphic_bcolor3",
383
+ "type": "line",
384
+ "display": true,
385
+ "description": "",
386
+ "style": {
387
+ "border-color": "#000000",
388
+ "border-width": 1,
389
+ "border-style": "solid"
390
+ },
391
+ "x1": 227.1,
392
+ "y1": 276,
393
+ "x2": 286.1,
394
+ "y2": 302
395
+ },
396
+ {
397
+ "id": "graphic_bcolor4",
398
+ "type": "rect",
399
+ "display": true,
400
+ "description": "",
401
+ "x": 311.1,
402
+ "y": 268,
403
+ "width": 89,
404
+ "height": 44,
405
+ "style": {
406
+ "border-color": "#ff0000",
407
+ "border-width": 1,
408
+ "border-style": "solid",
409
+ "fill-color": "#e5b9b7"
410
+ },
411
+ "border-radius": 0
412
+ },
413
+ {
414
+ "id": "",
415
+ "type": "text",
416
+ "display": true,
417
+ "description": "",
418
+ "x": 311,
419
+ "y": 316.9,
420
+ "width": 182.1,
421
+ "height": 14,
422
+ "style": {
423
+ "font-family": [
424
+ "Courier New"
425
+ ],
426
+ "font-size": 12,
427
+ "color": "#000000",
428
+ "text-align": "left",
429
+ "vertical-align": "top",
430
+ "line-height": "",
431
+ "line-height-ratio": "",
432
+ "letter-spacing": "",
433
+ "font-style": []
434
+ },
435
+ "texts": [
436
+ "To none from red."
437
+ ]
438
+ },
439
+ {
440
+ "id": "",
441
+ "type": "text",
442
+ "display": true,
443
+ "description": "",
444
+ "x": 20,
445
+ "y": 332,
446
+ "width": 245,
447
+ "height": 14,
448
+ "style": {
449
+ "font-family": [
450
+ "Courier New"
451
+ ],
452
+ "font-size": 12,
453
+ "color": "#000000",
454
+ "text-align": "left",
455
+ "vertical-align": "top",
456
+ "line-height": "",
457
+ "line-height-ratio": "",
458
+ "letter-spacing": "",
459
+ "font-style": []
460
+ },
461
+ "texts": [
462
+ "Border Width: To 5 from 1."
463
+ ]
464
+ },
465
+ {
466
+ "id": "graphic_bwidth1",
467
+ "type": "rect",
468
+ "display": true,
469
+ "description": "",
470
+ "x": 20,
471
+ "y": 350,
472
+ "width": 89,
473
+ "height": 44,
474
+ "style": {
475
+ "border-color": "#000000",
476
+ "border-width": 1,
477
+ "border-style": "solid",
478
+ "fill-color": "#FFFFFF"
479
+ },
480
+ "border-radius": 0
481
+ },
482
+ {
483
+ "id": "graphic_bwidth2",
484
+ "type": "ellipse",
485
+ "display": true,
486
+ "description": "",
487
+ "style": {
488
+ "border-color": "#000000",
489
+ "border-width": 1,
490
+ "border-style": "solid",
491
+ "fill-color": "#FFFFFF"
492
+ },
493
+ "cx": 167.05,
494
+ "cy": 370.9,
495
+ "rx": 38.05,
496
+ "ry": 23
497
+ },
498
+ {
499
+ "id": "graphic_bwidth3",
500
+ "type": "line",
501
+ "display": true,
502
+ "description": "",
503
+ "style": {
504
+ "border-color": "#000000",
505
+ "border-width": 1,
506
+ "border-style": "solid"
507
+ },
508
+ "x1": 227.1,
509
+ "y1": 355.9,
510
+ "x2": 286.1,
511
+ "y2": 381.9
512
+ },
513
+ {
514
+ "id": "graphic_bwidth4",
515
+ "type": "rect",
516
+ "display": true,
517
+ "description": "",
518
+ "x": 311.1,
519
+ "y": 343,
520
+ "width": 89,
521
+ "height": 44,
522
+ "style": {
523
+ "border-color": "#ff0000",
524
+ "border-width": 0,
525
+ "border-style": "solid",
526
+ "fill-color": "#e5b9b7"
527
+ },
528
+ "border-radius": 0
529
+ },
530
+ {
531
+ "id": "",
532
+ "type": "text",
533
+ "display": true,
534
+ "description": "",
535
+ "x": 311,
536
+ "y": 391.9,
537
+ "width": 182.1,
538
+ "height": 14,
539
+ "style": {
540
+ "font-family": [
541
+ "Courier New"
542
+ ],
543
+ "font-size": 12,
544
+ "color": "#000000",
545
+ "text-align": "left",
546
+ "vertical-align": "top",
547
+ "line-height": "",
548
+ "line-height-ratio": "",
549
+ "letter-spacing": "",
550
+ "font-style": []
551
+ },
552
+ "texts": [
553
+ "To 2 from none(0)."
554
+ ]
555
+ },
556
+ {
557
+ "id": "graphic_bwidth5",
558
+ "type": "rect",
559
+ "display": true,
560
+ "description": "",
561
+ "x": 448.1,
562
+ "y": 343,
563
+ "width": 89,
564
+ "height": 44,
565
+ "style": {
566
+ "border-color": "#ff0000",
567
+ "border-width": 1,
568
+ "border-style": "solid",
569
+ "fill-color": "#e5b9b7"
570
+ },
571
+ "border-radius": 0
572
+ },
573
+ {
574
+ "id": "",
575
+ "type": "text",
576
+ "display": true,
577
+ "description": "",
578
+ "x": 448,
579
+ "y": 391.9,
580
+ "width": 129.6,
581
+ "height": 14,
582
+ "style": {
583
+ "font-family": [
584
+ "Courier New"
585
+ ],
586
+ "font-size": 12,
587
+ "color": "#000000",
588
+ "text-align": "left",
589
+ "vertical-align": "top",
590
+ "line-height": "",
591
+ "line-height-ratio": "",
592
+ "letter-spacing": "",
593
+ "font-style": []
594
+ },
595
+ "texts": [
596
+ "To none(0) from 1."
597
+ ]
598
+ },
599
+ {
600
+ "id": "",
601
+ "type": "text",
602
+ "display": true,
603
+ "description": "",
604
+ "x": 20,
605
+ "y": 412,
606
+ "width": 245,
607
+ "height": 14,
608
+ "style": {
609
+ "font-family": [
610
+ "Courier New"
611
+ ],
612
+ "font-size": 12,
613
+ "color": "#000000",
614
+ "text-align": "left",
615
+ "vertical-align": "top",
616
+ "line-height": "",
617
+ "line-height-ratio": "",
618
+ "letter-spacing": "",
619
+ "font-style": []
620
+ },
621
+ "texts": [
622
+ "Fill Color: To red from white."
623
+ ]
624
+ },
625
+ {
626
+ "id": "graphic_fcolor1",
627
+ "type": "rect",
628
+ "display": true,
629
+ "description": "",
630
+ "x": 20,
631
+ "y": 428.8,
632
+ "width": 89,
633
+ "height": 44,
634
+ "style": {
635
+ "border-color": "#000000",
636
+ "border-width": 1,
637
+ "border-style": "solid",
638
+ "fill-color": "#FFFFFF"
639
+ },
640
+ "border-radius": 0
641
+ },
642
+ {
643
+ "id": "graphic_fcolor2",
644
+ "type": "ellipse",
645
+ "display": true,
646
+ "description": "",
647
+ "style": {
648
+ "border-color": "#000000",
649
+ "border-width": 1,
650
+ "border-style": "solid",
651
+ "fill-color": "#FFFFFF"
652
+ },
653
+ "cx": 167.05,
654
+ "cy": 450.8,
655
+ "rx": 38.05,
656
+ "ry": 23
657
+ },
658
+ {
659
+ "id": "",
660
+ "type": "text",
661
+ "display": true,
662
+ "description": "",
663
+ "x": 226,
664
+ "y": 476.7,
665
+ "width": 182.1,
666
+ "height": 14,
667
+ "style": {
668
+ "font-family": [
669
+ "Courier New"
670
+ ],
671
+ "font-size": 12,
672
+ "color": "#000000",
673
+ "text-align": "left",
674
+ "vertical-align": "top",
675
+ "line-height": "",
676
+ "line-height-ratio": "",
677
+ "letter-spacing": "",
678
+ "font-style": []
679
+ },
680
+ "texts": [
681
+ "To none from black."
682
+ ]
683
+ },
684
+ {
685
+ "id": "",
686
+ "type": "ellipse",
687
+ "display": true,
688
+ "description": "",
689
+ "style": {
690
+ "border-color": "#000000",
691
+ "border-width": 1,
692
+ "border-style": "solid",
693
+ "fill-color": "#FFFFFF"
694
+ },
695
+ "cx": 302.5,
696
+ "cy": 434.5,
697
+ "rx": 37.5,
698
+ "ry": 15.5
699
+ },
700
+ {
701
+ "id": "graphic_fcolor3",
702
+ "type": "rect",
703
+ "display": true,
704
+ "description": "",
705
+ "x": 226,
706
+ "y": 427.8,
707
+ "width": 73,
708
+ "height": 35.2,
709
+ "style": {
710
+ "border-color": "#000000",
711
+ "border-width": 1,
712
+ "border-style": "solid",
713
+ "fill-color": "#000000"
714
+ },
715
+ "border-radius": 0
716
+ },
717
+ {
718
+ "id": "",
719
+ "type": "text",
720
+ "display": true,
721
+ "description": "",
722
+ "x": 371,
723
+ "y": 476.7,
724
+ "width": 182.1,
725
+ "height": 14,
726
+ "style": {
727
+ "font-family": [
728
+ "Courier New"
729
+ ],
730
+ "font-size": 12,
731
+ "color": "#000000",
732
+ "text-align": "left",
733
+ "vertical-align": "top",
734
+ "line-height": "",
735
+ "line-height-ratio": "",
736
+ "letter-spacing": "",
737
+ "font-style": []
738
+ },
739
+ "texts": [
740
+ "To red from none."
741
+ ]
742
+ },
743
+ {
744
+ "id": "",
745
+ "type": "ellipse",
746
+ "display": true,
747
+ "description": "",
748
+ "style": {
749
+ "border-color": "#000000",
750
+ "border-width": 1,
751
+ "border-style": "solid",
752
+ "fill-color": "#FFFFFF"
753
+ },
754
+ "cx": 447.5,
755
+ "cy": 434.5,
756
+ "rx": 37.5,
757
+ "ry": 15.5
758
+ },
759
+ {
760
+ "id": "graphic_fcolor4",
761
+ "type": "rect",
762
+ "display": true,
763
+ "description": "",
764
+ "x": 371,
765
+ "y": 427.8,
766
+ "width": 73,
767
+ "height": 35.2,
768
+ "style": {
769
+ "border-color": "#000000",
770
+ "border-width": 1,
771
+ "border-style": "solid",
772
+ "fill-color": "none"
773
+ },
774
+ "border-radius": 0
775
+ },
776
+ {
777
+ "id": "",
778
+ "type": "text",
779
+ "display": true,
780
+ "description": "",
781
+ "x": 20,
782
+ "y": 497,
783
+ "width": 374.1,
784
+ "height": 23,
785
+ "style": {
786
+ "font-family": [
787
+ "Helvetica"
788
+ ],
789
+ "font-size": 20,
790
+ "color": "#000000",
791
+ "text-align": "left",
792
+ "vertical-align": "top",
793
+ "line-height": "",
794
+ "line-height-ratio": "",
795
+ "letter-spacing": "",
796
+ "font-style": [
797
+ "underline"
798
+ ]
799
+ },
800
+ "texts": [
801
+ "The Text Style"
802
+ ]
803
+ },
804
+ {
805
+ "id": "",
806
+ "type": "text",
807
+ "display": true,
808
+ "description": "",
809
+ "x": 20,
810
+ "y": 527,
811
+ "width": 122,
812
+ "height": 14,
813
+ "style": {
814
+ "font-family": [
815
+ "Courier New"
816
+ ],
817
+ "font-size": 12,
818
+ "color": "#000000",
819
+ "text-align": "left",
820
+ "vertical-align": "top",
821
+ "line-height": "",
822
+ "line-height-ratio": "",
823
+ "letter-spacing": "",
824
+ "font-style": []
825
+ },
826
+ "texts": [
827
+ "Bold Style:"
828
+ ]
829
+ },
830
+ {
831
+ "id": "text_b1",
832
+ "type": "text",
833
+ "display": true,
834
+ "description": "",
835
+ "x": 20,
836
+ "y": 549.2,
837
+ "width": 131,
838
+ "height": 15,
839
+ "style": {
840
+ "font-family": [
841
+ "Helvetica"
842
+ ],
843
+ "font-size": 12,
844
+ "color": "#000000",
845
+ "text-align": "left",
846
+ "vertical-align": "top",
847
+ "line-height": "",
848
+ "line-height-ratio": "",
849
+ "letter-spacing": "",
850
+ "font-style": []
851
+ },
852
+ "texts": [
853
+ "To bold from normal."
854
+ ]
855
+ },
856
+ {
857
+ "id": "text_b2",
858
+ "type": "text",
859
+ "display": true,
860
+ "description": "",
861
+ "x": 20,
862
+ "y": 567,
863
+ "width": 144,
864
+ "height": 15,
865
+ "style": {
866
+ "font-family": [
867
+ "Helvetica"
868
+ ],
869
+ "font-size": 12,
870
+ "color": "#000000",
871
+ "text-align": "left",
872
+ "vertical-align": "top",
873
+ "line-height": "",
874
+ "line-height-ratio": "",
875
+ "letter-spacing": "",
876
+ "font-style": [
877
+ "bold"
878
+ ]
879
+ },
880
+ "texts": [
881
+ "To normal from bold."
882
+ ]
883
+ },
884
+ {
885
+ "id": "",
886
+ "type": "text",
887
+ "display": true,
888
+ "description": "",
889
+ "x": 150,
890
+ "y": 527,
891
+ "width": 122,
892
+ "height": 14,
893
+ "style": {
894
+ "font-family": [
895
+ "Courier New"
896
+ ],
897
+ "font-size": 12,
898
+ "color": "#000000",
899
+ "text-align": "left",
900
+ "vertical-align": "top",
901
+ "line-height": "",
902
+ "line-height-ratio": "",
903
+ "letter-spacing": "",
904
+ "font-style": []
905
+ },
906
+ "texts": [
907
+ "Italic Style:"
908
+ ]
909
+ },
910
+ {
911
+ "id": "text_i1",
912
+ "type": "text",
913
+ "display": true,
914
+ "description": "",
915
+ "x": 150,
916
+ "y": 549.2,
917
+ "width": 132,
918
+ "height": 15,
919
+ "style": {
920
+ "font-family": [
921
+ "Helvetica"
922
+ ],
923
+ "font-size": 12,
924
+ "color": "#000000",
925
+ "text-align": "left",
926
+ "vertical-align": "top",
927
+ "line-height": "",
928
+ "line-height-ratio": "",
929
+ "letter-spacing": "",
930
+ "font-style": []
931
+ },
932
+ "texts": [
933
+ "To italic from normal."
934
+ ]
935
+ },
936
+ {
937
+ "id": "text_i2",
938
+ "type": "text",
939
+ "display": true,
940
+ "description": "",
941
+ "x": 150,
942
+ "y": 567,
943
+ "width": 146,
944
+ "height": 15,
945
+ "style": {
946
+ "font-family": [
947
+ "Helvetica"
948
+ ],
949
+ "font-size": 12,
950
+ "color": "#000000",
951
+ "text-align": "left",
952
+ "vertical-align": "top",
953
+ "line-height": "",
954
+ "line-height-ratio": "",
955
+ "letter-spacing": "",
956
+ "font-style": [
957
+ "italic"
958
+ ]
959
+ },
960
+ "texts": [
961
+ "To normal from italic."
962
+ ]
963
+ },
964
+ {
965
+ "id": "",
966
+ "type": "text",
967
+ "display": true,
968
+ "description": "",
969
+ "x": 280,
970
+ "y": 527,
971
+ "width": 122,
972
+ "height": 14,
973
+ "style": {
974
+ "font-family": [
975
+ "Courier New"
976
+ ],
977
+ "font-size": 12,
978
+ "color": "#000000",
979
+ "text-align": "left",
980
+ "vertical-align": "top",
981
+ "line-height": "",
982
+ "line-height-ratio": "",
983
+ "letter-spacing": "",
984
+ "font-style": []
985
+ },
986
+ "texts": [
987
+ "Underline Style:"
988
+ ]
989
+ },
990
+ {
991
+ "id": "text_u1",
992
+ "type": "text",
993
+ "display": true,
994
+ "description": "",
995
+ "x": 280,
996
+ "y": 549.2,
997
+ "width": 132,
998
+ "height": 15,
999
+ "style": {
1000
+ "font-family": [
1001
+ "Helvetica"
1002
+ ],
1003
+ "font-size": 12,
1004
+ "color": "#000000",
1005
+ "text-align": "left",
1006
+ "vertical-align": "top",
1007
+ "line-height": "",
1008
+ "line-height-ratio": "",
1009
+ "letter-spacing": "",
1010
+ "font-style": []
1011
+ },
1012
+ "texts": [
1013
+ "To underline from none."
1014
+ ]
1015
+ },
1016
+ {
1017
+ "id": "text_u2",
1018
+ "type": "text",
1019
+ "display": true,
1020
+ "description": "",
1021
+ "x": 280,
1022
+ "y": 567,
1023
+ "width": 146,
1024
+ "height": 15,
1025
+ "style": {
1026
+ "font-family": [
1027
+ "Helvetica"
1028
+ ],
1029
+ "font-size": 12,
1030
+ "color": "#000000",
1031
+ "text-align": "left",
1032
+ "vertical-align": "top",
1033
+ "line-height": "",
1034
+ "line-height-ratio": "",
1035
+ "letter-spacing": "",
1036
+ "font-style": [
1037
+ "underline"
1038
+ ]
1039
+ },
1040
+ "texts": [
1041
+ "To none from underline."
1042
+ ]
1043
+ },
1044
+ {
1045
+ "id": "",
1046
+ "type": "text",
1047
+ "display": true,
1048
+ "description": "",
1049
+ "x": 425,
1050
+ "y": 527,
1051
+ "width": 136.8,
1052
+ "height": 14,
1053
+ "style": {
1054
+ "font-family": [
1055
+ "Courier New"
1056
+ ],
1057
+ "font-size": 12,
1058
+ "color": "#000000",
1059
+ "text-align": "left",
1060
+ "vertical-align": "top",
1061
+ "line-height": "",
1062
+ "line-height-ratio": "",
1063
+ "letter-spacing": "",
1064
+ "font-style": []
1065
+ },
1066
+ "texts": [
1067
+ "Line-Through Style:"
1068
+ ]
1069
+ },
1070
+ {
1071
+ "id": "text_l1",
1072
+ "type": "text",
1073
+ "display": true,
1074
+ "description": "",
1075
+ "x": 425,
1076
+ "y": 549.2,
1077
+ "width": 145,
1078
+ "height": 15,
1079
+ "style": {
1080
+ "font-family": [
1081
+ "Helvetica"
1082
+ ],
1083
+ "font-size": 12,
1084
+ "color": "#000000",
1085
+ "text-align": "left",
1086
+ "vertical-align": "top",
1087
+ "line-height": "",
1088
+ "line-height-ratio": "",
1089
+ "letter-spacing": "",
1090
+ "font-style": []
1091
+ },
1092
+ "texts": [
1093
+ "To line-through from none."
1094
+ ]
1095
+ },
1096
+ {
1097
+ "id": "text_l2",
1098
+ "type": "text",
1099
+ "display": true,
1100
+ "description": "",
1101
+ "x": 425,
1102
+ "y": 567,
1103
+ "width": 146,
1104
+ "height": 15,
1105
+ "style": {
1106
+ "font-family": [
1107
+ "Helvetica"
1108
+ ],
1109
+ "font-size": 12,
1110
+ "color": "#000000",
1111
+ "text-align": "left",
1112
+ "vertical-align": "top",
1113
+ "line-height": "",
1114
+ "line-height-ratio": "",
1115
+ "letter-spacing": "",
1116
+ "font-style": [
1117
+ "linethrough"
1118
+ ]
1119
+ },
1120
+ "texts": [
1121
+ "To none from line-through."
1122
+ ]
1123
+ },
1124
+ {
1125
+ "id": "text_b3",
1126
+ "type": "text-block",
1127
+ "display": true,
1128
+ "description": "",
1129
+ "x": 20,
1130
+ "y": 586.2,
1131
+ "width": 119,
1132
+ "height": 14,
1133
+ "style": {
1134
+ "font-family": [
1135
+ "Helvetica"
1136
+ ],
1137
+ "font-size": 12,
1138
+ "color": "#000000",
1139
+ "text-align": "left",
1140
+ "vertical-align": "top",
1141
+ "line-height": "",
1142
+ "line-height-ratio": "",
1143
+ "letter-spacing": "",
1144
+ "font-style": [],
1145
+ "overflow": "truncate",
1146
+ "word-wrap": "break-word"
1147
+ },
1148
+ "reference-id": "",
1149
+ "value": "",
1150
+ "multiple-line": false,
1151
+ "format": {
1152
+ "base": "",
1153
+ "type": ""
1154
+ }
1155
+ },
1156
+ {
1157
+ "id": "text_b4",
1158
+ "type": "text-block",
1159
+ "display": true,
1160
+ "description": "",
1161
+ "x": 20,
1162
+ "y": 606,
1163
+ "width": 119,
1164
+ "height": 14,
1165
+ "style": {
1166
+ "font-family": [
1167
+ "Helvetica"
1168
+ ],
1169
+ "font-size": 12,
1170
+ "color": "#000000",
1171
+ "text-align": "left",
1172
+ "vertical-align": "top",
1173
+ "line-height": "",
1174
+ "line-height-ratio": "",
1175
+ "letter-spacing": "",
1176
+ "font-style": [
1177
+ "bold"
1178
+ ],
1179
+ "overflow": "truncate",
1180
+ "word-wrap": "break-word"
1181
+ },
1182
+ "reference-id": "",
1183
+ "value": "",
1184
+ "multiple-line": false,
1185
+ "format": {
1186
+ "base": "",
1187
+ "type": ""
1188
+ }
1189
+ },
1190
+ {
1191
+ "id": "text_i3",
1192
+ "type": "text-block",
1193
+ "display": true,
1194
+ "description": "",
1195
+ "x": 150,
1196
+ "y": 586.2,
1197
+ "width": 119,
1198
+ "height": 14,
1199
+ "style": {
1200
+ "font-family": [
1201
+ "Helvetica"
1202
+ ],
1203
+ "font-size": 12,
1204
+ "color": "#000000",
1205
+ "text-align": "left",
1206
+ "vertical-align": "top",
1207
+ "line-height": "",
1208
+ "line-height-ratio": "",
1209
+ "letter-spacing": "",
1210
+ "font-style": [],
1211
+ "overflow": "truncate",
1212
+ "word-wrap": "break-word"
1213
+ },
1214
+ "reference-id": "",
1215
+ "value": "",
1216
+ "multiple-line": false,
1217
+ "format": {
1218
+ "base": "",
1219
+ "type": ""
1220
+ }
1221
+ },
1222
+ {
1223
+ "id": "text_i4",
1224
+ "type": "text-block",
1225
+ "display": true,
1226
+ "description": "",
1227
+ "x": 150,
1228
+ "y": 606,
1229
+ "width": 119,
1230
+ "height": 14,
1231
+ "style": {
1232
+ "font-family": [
1233
+ "Helvetica"
1234
+ ],
1235
+ "font-size": 12,
1236
+ "color": "#000000",
1237
+ "text-align": "left",
1238
+ "vertical-align": "top",
1239
+ "line-height": "",
1240
+ "line-height-ratio": "",
1241
+ "letter-spacing": "",
1242
+ "font-style": [
1243
+ "italic"
1244
+ ],
1245
+ "overflow": "truncate",
1246
+ "word-wrap": "break-word"
1247
+ },
1248
+ "reference-id": "",
1249
+ "value": "",
1250
+ "multiple-line": false,
1251
+ "format": {
1252
+ "base": "",
1253
+ "type": ""
1254
+ }
1255
+ },
1256
+ {
1257
+ "id": "text_u3",
1258
+ "type": "text-block",
1259
+ "display": true,
1260
+ "description": "",
1261
+ "x": 280,
1262
+ "y": 586.2,
1263
+ "width": 119,
1264
+ "height": 14,
1265
+ "style": {
1266
+ "font-family": [
1267
+ "Helvetica"
1268
+ ],
1269
+ "font-size": 12,
1270
+ "color": "#000000",
1271
+ "text-align": "left",
1272
+ "vertical-align": "top",
1273
+ "line-height": "",
1274
+ "line-height-ratio": "",
1275
+ "letter-spacing": "",
1276
+ "font-style": [],
1277
+ "overflow": "truncate",
1278
+ "word-wrap": "break-word"
1279
+ },
1280
+ "reference-id": "",
1281
+ "value": "",
1282
+ "multiple-line": false,
1283
+ "format": {
1284
+ "base": "",
1285
+ "type": ""
1286
+ }
1287
+ },
1288
+ {
1289
+ "id": "text_u4",
1290
+ "type": "text-block",
1291
+ "display": true,
1292
+ "description": "",
1293
+ "x": 280,
1294
+ "y": 606,
1295
+ "width": 119,
1296
+ "height": 14,
1297
+ "style": {
1298
+ "font-family": [
1299
+ "Helvetica"
1300
+ ],
1301
+ "font-size": 12,
1302
+ "color": "#000000",
1303
+ "text-align": "left",
1304
+ "vertical-align": "top",
1305
+ "line-height": "",
1306
+ "line-height-ratio": "",
1307
+ "letter-spacing": "",
1308
+ "font-style": [
1309
+ "underline"
1310
+ ],
1311
+ "overflow": "truncate",
1312
+ "word-wrap": "break-word"
1313
+ },
1314
+ "reference-id": "",
1315
+ "value": "",
1316
+ "multiple-line": false,
1317
+ "format": {
1318
+ "base": "",
1319
+ "type": ""
1320
+ }
1321
+ },
1322
+ {
1323
+ "id": "text_l3",
1324
+ "type": "text-block",
1325
+ "display": true,
1326
+ "description": "",
1327
+ "x": 425,
1328
+ "y": 586.2,
1329
+ "width": 119,
1330
+ "height": 14,
1331
+ "style": {
1332
+ "font-family": [
1333
+ "Helvetica"
1334
+ ],
1335
+ "font-size": 12,
1336
+ "color": "#000000",
1337
+ "text-align": "left",
1338
+ "vertical-align": "top",
1339
+ "line-height": "",
1340
+ "line-height-ratio": "",
1341
+ "letter-spacing": "",
1342
+ "font-style": [],
1343
+ "overflow": "truncate",
1344
+ "word-wrap": "break-word"
1345
+ },
1346
+ "reference-id": "",
1347
+ "value": "",
1348
+ "multiple-line": false,
1349
+ "format": {
1350
+ "base": "",
1351
+ "type": ""
1352
+ }
1353
+ },
1354
+ {
1355
+ "id": "text_l4",
1356
+ "type": "text-block",
1357
+ "display": true,
1358
+ "description": "",
1359
+ "x": 425,
1360
+ "y": 606,
1361
+ "width": 119,
1362
+ "height": 14,
1363
+ "style": {
1364
+ "font-family": [
1365
+ "Helvetica"
1366
+ ],
1367
+ "font-size": 12,
1368
+ "color": "#000000",
1369
+ "text-align": "left",
1370
+ "vertical-align": "top",
1371
+ "line-height": "",
1372
+ "line-height-ratio": "",
1373
+ "letter-spacing": "",
1374
+ "font-style": [
1375
+ "linethrough"
1376
+ ],
1377
+ "overflow": "truncate",
1378
+ "word-wrap": "break-word"
1379
+ },
1380
+ "reference-id": "",
1381
+ "value": "",
1382
+ "multiple-line": false,
1383
+ "format": {
1384
+ "base": "",
1385
+ "type": ""
1386
+ }
1387
+ },
1388
+ {
1389
+ "id": "",
1390
+ "type": "text",
1391
+ "display": true,
1392
+ "description": "",
1393
+ "x": 20,
1394
+ "y": 637,
1395
+ "width": 223.1,
1396
+ "height": 14,
1397
+ "style": {
1398
+ "font-family": [
1399
+ "Courier New"
1400
+ ],
1401
+ "font-size": 12,
1402
+ "color": "#000000",
1403
+ "text-align": "left",
1404
+ "vertical-align": "top",
1405
+ "line-height": "",
1406
+ "line-height-ratio": "",
1407
+ "letter-spacing": "",
1408
+ "font-style": []
1409
+ },
1410
+ "texts": [
1411
+ "Text Align: To right from left."
1412
+ ]
1413
+ },
1414
+ {
1415
+ "id": "text_a1",
1416
+ "type": "text",
1417
+ "display": true,
1418
+ "description": "",
1419
+ "x": 20,
1420
+ "y": 659,
1421
+ "width": 155.1,
1422
+ "height": 23.2,
1423
+ "style": {
1424
+ "font-family": [
1425
+ "Helvetica"
1426
+ ],
1427
+ "font-size": 12,
1428
+ "color": "#000000",
1429
+ "text-align": "left",
1430
+ "vertical-align": "top",
1431
+ "line-height": "",
1432
+ "line-height-ratio": "",
1433
+ "letter-spacing": "",
1434
+ "font-style": []
1435
+ },
1436
+ "texts": [
1437
+ "To right from left."
1438
+ ]
1439
+ },
1440
+ {
1441
+ "id": "",
1442
+ "type": "rect",
1443
+ "display": true,
1444
+ "description": "",
1445
+ "x": 20,
1446
+ "y": 659,
1447
+ "width": 155.1,
1448
+ "height": 23.2,
1449
+ "style": {
1450
+ "border-color": "#000000",
1451
+ "border-width": 1,
1452
+ "border-style": "solid",
1453
+ "fill-color": "none"
1454
+ },
1455
+ "border-radius": 0
1456
+ },
1457
+ {
1458
+ "id": "text_a2",
1459
+ "type": "text-block",
1460
+ "display": true,
1461
+ "description": "",
1462
+ "x": 192.1,
1463
+ "y": 660.2,
1464
+ "width": 138,
1465
+ "height": 14,
1466
+ "style": {
1467
+ "font-family": [
1468
+ "Helvetica"
1469
+ ],
1470
+ "font-size": 12,
1471
+ "color": "#000000",
1472
+ "text-align": "left",
1473
+ "vertical-align": "top",
1474
+ "line-height": "",
1475
+ "line-height-ratio": "",
1476
+ "letter-spacing": "",
1477
+ "font-style": [],
1478
+ "overflow": "truncate",
1479
+ "word-wrap": "break-word"
1480
+ },
1481
+ "reference-id": "",
1482
+ "value": "",
1483
+ "multiple-line": false,
1484
+ "format": {
1485
+ "base": "",
1486
+ "type": ""
1487
+ }
1488
+ },
1489
+ {
1490
+ "id": "text_a3",
1491
+ "type": "text-block",
1492
+ "display": true,
1493
+ "description": "日本語",
1494
+ "x": 344.1,
1495
+ "y": 660.2,
1496
+ "width": 153.1,
1497
+ "height": 44.1,
1498
+ "style": {
1499
+ "font-family": [
1500
+ "IPAMincho"
1501
+ ],
1502
+ "font-size": 12,
1503
+ "color": "#000000",
1504
+ "text-align": "left",
1505
+ "vertical-align": "top",
1506
+ "line-height": "",
1507
+ "line-height-ratio": "",
1508
+ "letter-spacing": "",
1509
+ "font-style": [],
1510
+ "overflow": "truncate",
1511
+ "word-wrap": "break-word"
1512
+ },
1513
+ "reference-id": "",
1514
+ "value": "",
1515
+ "multiple-line": true,
1516
+ "format": {
1517
+ "base": "",
1518
+ "type": ""
1519
+ }
1520
+ },
1521
+ {
1522
+ "id": "",
1523
+ "type": "rect",
1524
+ "display": true,
1525
+ "description": "",
1526
+ "x": 192.1,
1527
+ "y": 660.2,
1528
+ "width": 138,
1529
+ "height": 22,
1530
+ "style": {
1531
+ "border-color": "#000000",
1532
+ "border-width": 1,
1533
+ "border-style": "solid",
1534
+ "fill-color": "none"
1535
+ },
1536
+ "border-radius": 0
1537
+ },
1538
+ {
1539
+ "id": "",
1540
+ "type": "rect",
1541
+ "display": true,
1542
+ "description": "",
1543
+ "x": 344.1,
1544
+ "y": 660.2,
1545
+ "width": 153.1,
1546
+ "height": 44.1,
1547
+ "style": {
1548
+ "border-color": "#000000",
1549
+ "border-width": 1,
1550
+ "border-style": "solid",
1551
+ "fill-color": "none"
1552
+ },
1553
+ "border-radius": 0
1554
+ },
1555
+ {
1556
+ "id": "",
1557
+ "type": "text",
1558
+ "display": true,
1559
+ "description": "",
1560
+ "x": 20,
1561
+ "y": 712,
1562
+ "width": 251.9,
1563
+ "height": 14,
1564
+ "style": {
1565
+ "font-family": [
1566
+ "Courier New"
1567
+ ],
1568
+ "font-size": 12,
1569
+ "color": "#000000",
1570
+ "text-align": "left",
1571
+ "vertical-align": "top",
1572
+ "line-height": "",
1573
+ "line-height-ratio": "",
1574
+ "letter-spacing": "",
1575
+ "font-style": []
1576
+ },
1577
+ "texts": [
1578
+ "Vertical Align: To bottom from top."
1579
+ ]
1580
+ },
1581
+ {
1582
+ "id": "text_va1",
1583
+ "type": "text",
1584
+ "display": true,
1585
+ "description": "",
1586
+ "x": 20,
1587
+ "y": 729,
1588
+ "width": 155.1,
1589
+ "height": 50.3,
1590
+ "style": {
1591
+ "font-family": [
1592
+ "Helvetica"
1593
+ ],
1594
+ "font-size": 12,
1595
+ "color": "#000000",
1596
+ "text-align": "left",
1597
+ "vertical-align": "top",
1598
+ "line-height": "",
1599
+ "line-height-ratio": "",
1600
+ "letter-spacing": "",
1601
+ "font-style": []
1602
+ },
1603
+ "texts": [
1604
+ "To bottom from top."
1605
+ ]
1606
+ },
1607
+ {
1608
+ "id": "",
1609
+ "type": "rect",
1610
+ "display": true,
1611
+ "description": "",
1612
+ "x": 20,
1613
+ "y": 729,
1614
+ "width": 155.1,
1615
+ "height": 50.3,
1616
+ "style": {
1617
+ "border-color": "#000000",
1618
+ "border-width": 1,
1619
+ "border-style": "solid",
1620
+ "fill-color": "none"
1621
+ },
1622
+ "border-radius": 0
1623
+ },
1624
+ {
1625
+ "id": "text_va2",
1626
+ "type": "text-block",
1627
+ "display": true,
1628
+ "description": "日本語",
1629
+ "x": 189,
1630
+ "y": 730,
1631
+ "width": 153.1,
1632
+ "height": 50.3,
1633
+ "style": {
1634
+ "font-family": [
1635
+ "IPAMincho"
1636
+ ],
1637
+ "font-size": 12,
1638
+ "color": "#000000",
1639
+ "text-align": "left",
1640
+ "vertical-align": "top",
1641
+ "line-height": "",
1642
+ "line-height-ratio": "",
1643
+ "letter-spacing": "",
1644
+ "font-style": [],
1645
+ "overflow": "truncate",
1646
+ "word-wrap": "break-word"
1647
+ },
1648
+ "reference-id": "",
1649
+ "value": "",
1650
+ "multiple-line": true,
1651
+ "format": {
1652
+ "base": "",
1653
+ "type": ""
1654
+ }
1655
+ },
1656
+ {
1657
+ "id": "",
1658
+ "type": "rect",
1659
+ "display": true,
1660
+ "description": "",
1661
+ "x": 189,
1662
+ "y": 730,
1663
+ "width": 153.1,
1664
+ "height": 50.3,
1665
+ "style": {
1666
+ "border-color": "#000000",
1667
+ "border-width": 1,
1668
+ "border-style": "solid",
1669
+ "fill-color": "none"
1670
+ },
1671
+ "border-radius": 0
1672
+ },
1673
+ {
1674
+ "id": "",
1675
+ "type": "text",
1676
+ "display": true,
1677
+ "description": "",
1678
+ "x": 20,
1679
+ "y": 789,
1680
+ "width": 245,
1681
+ "height": 14,
1682
+ "style": {
1683
+ "font-family": [
1684
+ "Courier New"
1685
+ ],
1686
+ "font-size": 12,
1687
+ "color": "#000000",
1688
+ "text-align": "left",
1689
+ "vertical-align": "top",
1690
+ "line-height": "",
1691
+ "line-height-ratio": "",
1692
+ "letter-spacing": "",
1693
+ "font-style": []
1694
+ },
1695
+ "texts": [
1696
+ "Text Color: To red from black."
1697
+ ]
1698
+ },
1699
+ {
1700
+ "id": "text_color1",
1701
+ "type": "text",
1702
+ "display": true,
1703
+ "description": "",
1704
+ "x": 20,
1705
+ "y": 809,
1706
+ "width": 131,
1707
+ "height": 15,
1708
+ "style": {
1709
+ "font-family": [
1710
+ "Helvetica"
1711
+ ],
1712
+ "font-size": 12,
1713
+ "color": "#000000",
1714
+ "text-align": "left",
1715
+ "vertical-align": "top",
1716
+ "line-height": "",
1717
+ "line-height-ratio": "",
1718
+ "letter-spacing": "",
1719
+ "font-style": []
1720
+ },
1721
+ "texts": [
1722
+ "To red from black."
1723
+ ]
1724
+ },
1725
+ {
1726
+ "id": "text_color2",
1727
+ "type": "text-block",
1728
+ "display": true,
1729
+ "description": "日本語",
1730
+ "x": 136,
1731
+ "y": 808.1,
1732
+ "width": 119,
1733
+ "height": 12,
1734
+ "style": {
1735
+ "font-family": [
1736
+ "IPAMincho"
1737
+ ],
1738
+ "font-size": 12,
1739
+ "color": "#000000",
1740
+ "text-align": "left",
1741
+ "vertical-align": "top",
1742
+ "line-height": "",
1743
+ "line-height-ratio": "",
1744
+ "letter-spacing": "",
1745
+ "font-style": [],
1746
+ "overflow": "truncate",
1747
+ "word-wrap": "break-word"
1748
+ },
1749
+ "reference-id": "",
1750
+ "value": "",
1751
+ "multiple-line": false,
1752
+ "format": {
1753
+ "base": "",
1754
+ "type": ""
1755
+ }
1756
+ },
1757
+ {
1758
+ "id": "title",
1759
+ "type": "text-block",
1760
+ "display": true,
1761
+ "description": "",
1762
+ "x": 183.1,
1763
+ "y": 22,
1764
+ "width": 208,
1765
+ "height": 19,
1766
+ "style": {
1767
+ "font-family": [
1768
+ "Times New Roman"
1769
+ ],
1770
+ "font-size": 18,
1771
+ "color": "#000000",
1772
+ "text-align": "center",
1773
+ "vertical-align": "top",
1774
+ "line-height": "",
1775
+ "line-height-ratio": "",
1776
+ "letter-spacing": "",
1777
+ "font-style": [
1778
+ "bold",
1779
+ "underline"
1780
+ ],
1781
+ "overflow": "truncate",
1782
+ "word-wrap": "break-word"
1783
+ },
1784
+ "reference-id": "",
1785
+ "value": "",
1786
+ "multiple-line": false,
1787
+ "format": {
1788
+ "base": "",
1789
+ "type": ""
1790
+ }
1791
+ },
1792
+ {
1793
+ "id": "basic_show6",
1794
+ "type": "image-block",
1795
+ "display": false,
1796
+ "description": "",
1797
+ "x": 387,
1798
+ "y": 87,
1799
+ "width": 74,
1800
+ "height": 58,
1801
+ "style": {
1802
+ "position-x": "left",
1803
+ "position-y": "top"
1804
+ }
1805
+ },
1806
+ {
1807
+ "id": "basic_hide6",
1808
+ "type": "image-block",
1809
+ "display": true,
1810
+ "description": "",
1811
+ "x": 387,
1812
+ "y": 162,
1813
+ "width": 74,
1814
+ "height": 58,
1815
+ "style": {
1816
+ "position-x": "left",
1817
+ "position-y": "top"
1818
+ }
1819
+ }
1820
+ ],
1821
+ "state": {
1822
+ "layout-guides": []
1823
+ },
1824
+ "title": "Dynamic Style",
1825
+ "report": {
1826
+ "paper-type": "A4",
1827
+ "orientation": "portrait",
1828
+ "margin": [
1829
+ 20,
1830
+ 20,
1831
+ 20,
1832
+ 20
1833
+ ]
1834
+ }
1835
+ }