operawatir 0.4-jruby → 0.4.1-jruby

Sign up to get free protection for your applications and to get access to all the features.
Files changed (222) hide show
  1. data/.gitmodules +3 -3
  2. data/AUTHORS +1 -0
  3. data/CHANGES +454 -0
  4. data/README.md +67 -50
  5. data/Rakefile +6 -10
  6. data/VERSION +1 -1
  7. data/bin/desktopwatir +52 -29
  8. data/bin/operawatir +50 -18
  9. data/lib/operadriver/client-combined-nodeps.jar +0 -0
  10. data/lib/operadriver/webdriver-opera.jar +0 -0
  11. data/lib/operawatir.rb +8 -1
  12. data/lib/operawatir/browser.rb +35 -15
  13. data/lib/operawatir/collection.rb +2 -2
  14. data/lib/operawatir/compat.rb +3 -2
  15. data/lib/operawatir/compat/browser.rb +0 -5
  16. data/lib/operawatir/compat/collection.rb +15 -0
  17. data/lib/operawatir/compat/element.rb +72 -21
  18. data/lib/operawatir/compat/element_finders.rb +6 -0
  19. data/lib/operawatir/compat/selector.rb +7 -0
  20. data/lib/operawatir/compat/window.rb +49 -0
  21. data/lib/operawatir/desktop_browser.rb +88 -14
  22. data/lib/operawatir/desktop_common.rb +0 -2
  23. data/lib/operawatir/desktop_container.rb +82 -29
  24. data/lib/operawatir/desktop_helper.rb +2 -0
  25. data/lib/operawatir/element.rb +49 -25
  26. data/lib/operawatir/helper.rb +5 -3
  27. data/lib/operawatir/keys.rb +19 -6
  28. data/lib/operawatir/preferences.rb +315 -78
  29. data/lib/operawatir/quickwidgets.rb +2 -1
  30. data/lib/operawatir/quickwidgets/quick_addressfield.rb +12 -0
  31. data/lib/operawatir/quickwidgets/quick_button.rb +8 -2
  32. data/lib/operawatir/quickwidgets/quick_checkbox.rb +5 -5
  33. data/lib/operawatir/quickwidgets/quick_editfield.rb +8 -5
  34. data/lib/operawatir/quickwidgets/quick_find.rb +11 -0
  35. data/lib/operawatir/quickwidgets/quick_griditem.rb +11 -0
  36. data/lib/operawatir/quickwidgets/quick_gridlayout.rb +11 -0
  37. data/lib/operawatir/quickwidgets/quick_searchfield.rb +7 -1
  38. data/lib/operawatir/quickwidgets/quick_tab.rb +0 -1
  39. data/lib/operawatir/quickwidgets/quick_treeitem.rb +22 -1
  40. data/lib/operawatir/quickwidgets/quick_widget.rb +62 -23
  41. data/lib/operawatir/quickwidgets/quick_window.rb +32 -2
  42. data/lib/operawatir/screenshot.rb +46 -0
  43. data/lib/operawatir/version.rb +6 -4
  44. data/lib/operawatir/window.rb +53 -67
  45. data/operawatir.gemspec +310 -245
  46. data/spec/operawatir/README.md +4 -0
  47. data/spec/operawatir/core/browser_spec.rb +82 -0
  48. data/spec/operawatir/core/element_spec.rb +88 -0
  49. data/spec/operawatir/core/preferences_spec.rb +438 -0
  50. data/spec/operawatir/core/screenshot_spec.rb +76 -0
  51. data/spec/{new_watirspec → operawatir/core}/spatnav_spec.rb +3 -3
  52. data/spec/operawatir/core/window_spec.rb +76 -0
  53. data/spec/operawatir/desktop/desktopbrowser_spec.rb +316 -0
  54. data/spec/operawatir/desktop/quickaddressfield_spec.rb +59 -0
  55. data/spec/operawatir/desktop/quickbutton_spec.rb +248 -0
  56. data/spec/operawatir/desktop/quickcheckbox_spec.rb +36 -0
  57. data/spec/operawatir/desktop/quickdialogtab_spec.rb +30 -0
  58. data/spec/operawatir/desktop/quickdropdown_spec.rb +39 -0
  59. data/spec/operawatir/desktop/quickeditfield_spec.rb +51 -0
  60. data/spec/operawatir/desktop/quickfind_spec.rb +30 -0
  61. data/spec/operawatir/desktop/quickgriditem_spec.rb +16 -0
  62. data/spec/operawatir/desktop/quickgridlayout_spec.rb +15 -0
  63. data/spec/operawatir/desktop/quicklabel_spec.rb +28 -0
  64. data/spec/operawatir/desktop/quickradiobutton_spec.rb +24 -0
  65. data/spec/operawatir/desktop/quicksearchfield_spec.rb +26 -0
  66. data/spec/operawatir/desktop/quicktab_spec.rb +86 -0
  67. data/spec/operawatir/desktop/quickthumbnail_spec.rb +37 -0
  68. data/spec/operawatir/desktop/quicktreeitem_spec.rb +135 -0
  69. data/spec/operawatir/desktop/quicktreeview_spec.rb +30 -0
  70. data/spec/operawatir/desktop/quickwidget_spec.rb +101 -0
  71. data/spec/operawatir/desktop/quickwindow_spec.rb +108 -0
  72. data/spec/operawatir/desktop/shared/shared.rb +138 -0
  73. data/spec/operawatir/fixtures/boxes.html +22 -0
  74. data/spec/operawatir/fixtures/browsers.svg +367 -0
  75. data/spec/operawatir/fixtures/frames.html +13 -0
  76. data/spec/operawatir/fixtures/grid.html +29 -0
  77. data/spec/operawatir/fixtures/input_fields_value.html +6 -0
  78. data/spec/operawatir/fixtures/onclick.html +20 -0
  79. data/spec/operawatir/fixtures/paragraphs.html +15 -0
  80. data/spec/operawatir/fixtures/two_input_fields.html +6 -0
  81. data/spec/{new_watirspec → operawatir}/guards.rb +0 -0
  82. data/spec/operawatir/matchers.rb +68 -0
  83. data/spec/{legacy_watirspec → operawatir}/server.rb +0 -0
  84. data/spec/operawatir/watirspec.rake +43 -0
  85. data/spec/operawatir/watirspec_desktophelper.rb +14 -0
  86. data/spec/operawatir/watirspec_helper.rb +62 -0
  87. data/spec/{legacy_watirspec → watir2}/area_spec.rb +0 -0
  88. data/spec/{legacy_watirspec → watir2}/areas_spec.rb +0 -0
  89. data/spec/{legacy_watirspec → watir2}/browser_spec.rb +2 -0
  90. data/spec/{legacy_watirspec → watir2}/button_spec.rb +0 -0
  91. data/spec/{legacy_watirspec → watir2}/buttons_spec.rb +0 -0
  92. data/spec/{legacy_watirspec → watir2}/checkbox_spec.rb +0 -0
  93. data/spec/{legacy_watirspec → watir2}/checkboxes_spec.rb +0 -0
  94. data/spec/{legacy_watirspec → watir2}/collections_spec.rb +0 -0
  95. data/spec/{legacy_watirspec → watir2}/dd_spec.rb +0 -0
  96. data/spec/{legacy_watirspec → watir2}/dds_spec.rb +0 -0
  97. data/spec/{legacy_watirspec → watir2}/del_spec.rb +0 -0
  98. data/spec/{legacy_watirspec → watir2}/dels_spec.rb +0 -0
  99. data/spec/{legacy_watirspec → watir2}/div_spec.rb +0 -0
  100. data/spec/{legacy_watirspec → watir2}/divs_spec.rb +0 -0
  101. data/spec/{legacy_watirspec → watir2}/dl_spec.rb +0 -0
  102. data/spec/{legacy_watirspec → watir2}/dls_spec.rb +0 -0
  103. data/spec/{legacy_watirspec → watir2}/dt_spec.rb +0 -0
  104. data/spec/{legacy_watirspec → watir2}/dts_spec.rb +0 -0
  105. data/spec/watir2/element_spec.rb +155 -0
  106. data/spec/{legacy_watirspec → watir2}/em_spec.rb +0 -0
  107. data/spec/{legacy_watirspec → watir2}/ems_spec.rb +0 -0
  108. data/spec/{legacy_watirspec → watir2}/filefield_spec.rb +0 -0
  109. data/spec/{legacy_watirspec → watir2}/filefields_spec.rb +0 -0
  110. data/spec/{legacy_watirspec → watir2}/fixtures/2000_spans.html +0 -0
  111. data/spec/{legacy_watirspec → watir2}/fixtures/bug_duplicate_attributes.html +0 -0
  112. data/spec/{legacy_watirspec → watir2}/fixtures/bug_javascript_001.html +0 -0
  113. data/spec/{legacy_watirspec → watir2}/fixtures/buttons_with_duplicate_ids.html +0 -0
  114. data/spec/{legacy_watirspec → watir2}/fixtures/collections.html +0 -0
  115. data/spec/{legacy_watirspec → watir2}/fixtures/definition_lists.html +0 -0
  116. data/spec/{legacy_watirspec → watir2}/fixtures/euc-jp_text.html +0 -0
  117. data/spec/{legacy_watirspec → watir2}/fixtures/forms_with_input_elements.html +0 -0
  118. data/spec/{legacy_watirspec → watir2}/fixtures/frame_1.html +0 -0
  119. data/spec/{legacy_watirspec → watir2}/fixtures/frame_2.html +0 -0
  120. data/spec/{legacy_watirspec → watir2}/fixtures/frames.html +0 -0
  121. data/spec/{legacy_watirspec → watir2}/fixtures/iframes.html +0 -0
  122. data/spec/{legacy_watirspec → watir2}/fixtures/images.html +0 -0
  123. data/spec/{legacy_watirspec → watir2}/fixtures/images/1.gif +0 -0
  124. data/spec/{legacy_watirspec → watir2}/fixtures/images/2.gif +0 -0
  125. data/spec/{legacy_watirspec → watir2}/fixtures/images/3.gif +0 -0
  126. data/spec/{legacy_watirspec → watir2}/fixtures/images/button.jpg +0 -0
  127. data/spec/{legacy_watirspec → watir2}/fixtures/images/circle.jpg +0 -0
  128. data/spec/{legacy_watirspec → watir2}/fixtures/images/map.gif +0 -0
  129. data/spec/{legacy_watirspec → watir2}/fixtures/images/map2.gif +0 -0
  130. data/spec/{legacy_watirspec → watir2}/fixtures/images/minus.gif +0 -0
  131. data/spec/{legacy_watirspec → watir2}/fixtures/images/originaltriangle.jpg +0 -0
  132. data/spec/{legacy_watirspec → watir2}/fixtures/images/plus.gif +0 -0
  133. data/spec/{legacy_watirspec → watir2}/fixtures/images/square.jpg +0 -0
  134. data/spec/{legacy_watirspec → watir2}/fixtures/images/triangle.jpg +0 -0
  135. data/spec/{legacy_watirspec → watir2}/fixtures/iso-2022-jp_text.html +0 -0
  136. data/spec/{legacy_watirspec → watir2}/fixtures/javascript/helpers.js +0 -0
  137. data/spec/{legacy_watirspec → watir2}/fixtures/jquery.html +0 -0
  138. data/spec/{legacy_watirspec → watir2}/fixtures/latin1_text.html +0 -0
  139. data/spec/{legacy_watirspec → watir2}/fixtures/multiple_ids.html +0 -0
  140. data/spec/{legacy_watirspec → watir2}/fixtures/non_control_elements.html +0 -0
  141. data/spec/{legacy_watirspec → watir2}/fixtures/parser_bug_001.html +0 -0
  142. data/spec/{legacy_watirspec → watir2}/fixtures/prevent_form_submit.html +0 -0
  143. data/spec/{legacy_watirspec → watir2}/fixtures/right_click.html +0 -0
  144. data/spec/{legacy_watirspec → watir2}/fixtures/shift_jis_text.html +0 -0
  145. data/spec/{legacy_watirspec → watir2}/fixtures/tables.html +0 -0
  146. data/spec/{legacy_watirspec → watir2}/fixtures/timeout.html +0 -0
  147. data/spec/{legacy_watirspec → watir2}/fixtures/timeout_window_location.html +0 -0
  148. data/spec/{legacy_watirspec → watir2}/fixtures/tiny_mce.html +0 -0
  149. data/spec/{legacy_watirspec → watir2}/fixtures/utf8_text.html +0 -0
  150. data/spec/{legacy_watirspec → watir2}/fixtures/watirspec.css +0 -0
  151. data/spec/{legacy_watirspec → watir2}/form_spec.rb +0 -0
  152. data/spec/{legacy_watirspec → watir2}/forms_spec.rb +0 -0
  153. data/spec/{legacy_watirspec → watir2}/frame_spec.rb +0 -0
  154. data/spec/{legacy_watirspec → watir2}/frames_spec.rb +0 -0
  155. data/spec/{legacy_watirspec → watir2}/guards.rb +0 -0
  156. data/spec/{legacy_watirspec → watir2}/hidden_spec.rb +0 -0
  157. data/spec/{legacy_watirspec → watir2}/hiddens_spec.rb +0 -0
  158. data/spec/{legacy_watirspec → watir2}/hn_spec.rb +0 -0
  159. data/spec/{legacy_watirspec → watir2}/hns_spec.rb +0 -0
  160. data/spec/{legacy_watirspec → watir2}/image_spec.rb +0 -0
  161. data/spec/{legacy_watirspec → watir2}/images_spec.rb +0 -0
  162. data/spec/{legacy_watirspec → watir2}/ins_spec.rb +0 -0
  163. data/spec/{legacy_watirspec → watir2}/inses_spec.rb +0 -0
  164. data/spec/{legacy_watirspec → watir2}/label_spec.rb +0 -0
  165. data/spec/{legacy_watirspec → watir2}/labels_spec.rb +0 -0
  166. data/spec/{legacy_watirspec → watir2}/li_spec.rb +0 -0
  167. data/spec/{legacy_watirspec → watir2}/link_spec.rb +0 -0
  168. data/spec/{legacy_watirspec → watir2}/links_spec.rb +0 -0
  169. data/spec/{legacy_watirspec → watir2}/lis_spec.rb +0 -0
  170. data/spec/{legacy_watirspec → watir2}/map_spec.rb +0 -0
  171. data/spec/{legacy_watirspec → watir2}/maps_spec.rb +0 -0
  172. data/spec/{legacy_watirspec → watir2}/meta_spec.rb +0 -0
  173. data/spec/{legacy_watirspec → watir2}/metas_spec.rb +0 -0
  174. data/spec/{legacy_watirspec → watir2}/ol_spec.rb +0 -0
  175. data/spec/{legacy_watirspec → watir2}/ols_spec.rb +0 -0
  176. data/spec/{legacy_watirspec → watir2}/option_spec.rb +0 -0
  177. data/spec/{legacy_watirspec → watir2}/p_spec.rb +0 -0
  178. data/spec/{legacy_watirspec → watir2}/pre_spec.rb +0 -0
  179. data/spec/{legacy_watirspec → watir2}/pres_spec.rb +0 -0
  180. data/spec/{legacy_watirspec → watir2}/ps_spec.rb +0 -0
  181. data/spec/{legacy_watirspec → watir2}/radio_spec.rb +0 -0
  182. data/spec/{legacy_watirspec → watir2}/radios_spec.rb +0 -0
  183. data/spec/{legacy_watirspec → watir2}/select_list_spec.rb +84 -71
  184. data/spec/{legacy_watirspec → watir2}/select_lists_spec.rb +0 -0
  185. data/spec/{new_watirspec → watir2}/server.rb +0 -0
  186. data/spec/{legacy_watirspec → watir2}/span_spec.rb +0 -0
  187. data/spec/{legacy_watirspec → watir2}/spans_spec.rb +0 -0
  188. data/spec/{legacy_watirspec → watir2}/spec_helper.rb +0 -0
  189. data/spec/{legacy_watirspec → watir2}/strong_spec.rb +0 -0
  190. data/spec/{legacy_watirspec → watir2}/strongs_spec.rb +0 -0
  191. data/spec/{legacy_watirspec → watir2}/table_bodies_spec.rb +0 -0
  192. data/spec/{legacy_watirspec → watir2}/table_body_spec.rb +0 -0
  193. data/spec/{legacy_watirspec → watir2}/table_cell_spec.rb +0 -0
  194. data/spec/{legacy_watirspec → watir2}/table_cells_spec.rb +0 -0
  195. data/spec/{legacy_watirspec → watir2}/table_footer_spec.rb +0 -0
  196. data/spec/{legacy_watirspec → watir2}/table_footers_spec.rb +0 -0
  197. data/spec/{legacy_watirspec → watir2}/table_header_spec.rb +0 -0
  198. data/spec/{legacy_watirspec → watir2}/table_headers_spec.rb +0 -0
  199. data/spec/{legacy_watirspec → watir2}/table_row_spec.rb +0 -0
  200. data/spec/{legacy_watirspec → watir2}/table_rows_spec.rb +0 -0
  201. data/spec/{legacy_watirspec → watir2}/table_spec.rb +0 -0
  202. data/spec/{legacy_watirspec → watir2}/tables_spec.rb +0 -0
  203. data/spec/{legacy_watirspec → watir2}/text_field_spec.rb +0 -0
  204. data/spec/{legacy_watirspec → watir2}/text_fields_spec.rb +0 -0
  205. data/spec/{legacy_watirspec → watir2}/ul_spec.rb +0 -0
  206. data/spec/{legacy_watirspec → watir2}/uls_spec.rb +0 -0
  207. data/spec/{legacy_watirspec → watir2}/watir_compatibility_spec.rb +0 -0
  208. data/spec/{legacy_watirspec → watir2}/watirspec_helper.rb +0 -0
  209. data/spec/{new_watirspec → watir3}/browser_spec.rb +11 -21
  210. data/spec/{new_watirspec → watir3}/clipboard_spec.rb +2 -2
  211. data/spec/{new_watirspec → watir3}/collection_spec.rb +0 -0
  212. data/spec/{new_watirspec → watir3}/element_spec.rb +30 -12
  213. data/spec/watir3/guards.rb +39 -0
  214. data/spec/{new_watirspec → watir3}/keys_spec.rb +0 -0
  215. data/spec/watir3/server.rb +91 -0
  216. data/spec/{new_watirspec → watir3}/watirspec_helper.rb +0 -0
  217. data/spec/{new_watirspec → watir3}/window_spec.rb +8 -83
  218. metadata +315 -280
  219. data/lib/operadriver/selenium-common.jar +0 -0
  220. data/spec/legacy_watirspec/element_spec.rb +0 -86
  221. data/spec/new_watirspec/preferences_spec.rb +0 -144
  222. data/spec/new_watirspec/screenshot_spec.rb +0 -34
@@ -0,0 +1,108 @@
1
+ # encoding: utf-8
2
+ require File.expand_path('../../watirspec_desktophelper', __FILE__)
3
+
4
+ describe 'QuickWindow' do
5
+ let(:documentwindow) { browser.quick_window(:name, "Document Window") }
6
+ let(:browserwindow) { browser.quick_window(:name, "Browser Window") }
7
+ let(:nonexisting_window) { browser.quick_window(:name, "Doc Window") }
8
+
9
+ subject { documentwindow }
10
+
11
+ describe '#quick_window' do
12
+ it 'constructs window by id' do
13
+ browser.quick_windows.each do |win|
14
+ browser.quick_window(:id, win.window_id).should exist
15
+ end
16
+ end
17
+ it 'constructs window by name' do
18
+ browser.quick_window(:name, "Browser Window").should exist
19
+ end
20
+ end
21
+
22
+ describe '#exist?' do
23
+ it 'returns true for existing window' do
24
+ browserwindow.should exist
25
+ end
26
+
27
+ it 'returns false for non-existing window' do
28
+ nonexisting_window.should_not exist
29
+ end
30
+ end
31
+
32
+ describe '#type' do
33
+ its(:type) { should == :normal }
34
+
35
+ it 'returns Dialog for Dialog' do
36
+ browser.open_dialog_with_key_press("New Preferences Dialog", "F12", :ctrl).should > 0
37
+ browser.quick_window(:name, "New Preferences Dialog").type == "Dialog"
38
+ browser.close_dialog("New Preferences Dialog")
39
+ end
40
+
41
+ it 'throws exception if unknown window' do
42
+ expect { nonexisting_window.type }.to raise_error OperaWatir::Exceptions::UnknownObjectException
43
+ end
44
+ end
45
+
46
+ describe '#name' do
47
+ its(:name) { should_not be_empty }
48
+ its(:name) { should be_kind_of String }
49
+
50
+ it 'throws exception if unknown window' do
51
+ expect { nonexisting_window.name }.to raise_error OperaWatir::Exceptions::UnknownObjectException
52
+ end
53
+ end
54
+
55
+ describe '#title' do
56
+ its(:title) { should_not be_empty }
57
+ its(:title) { should be_kind_of String }
58
+
59
+ it 'throws exception if unknown window' do
60
+ expect { nonexisting_window.title }.to raise_error OperaWatir::Exceptions::UnknownObjectException
61
+ end
62
+
63
+ end
64
+
65
+ describe '#to_s' do
66
+ it 'returns string' do
67
+ documentwindow.to_s.should_not be_empty
68
+ end
69
+ it 'returns a string' do
70
+ documentwindow.to_s.should be_kind_of String
71
+ end
72
+ it 'throws exception if unknown window' do
73
+ expect { nonexisting_window.to_s }.to raise_error OperaWatir::Exceptions::UnknownObjectException
74
+ end
75
+
76
+ end
77
+
78
+ describe '#on_screen?' do
79
+ it 'throws exception if unknown window' do
80
+ expect { nonexisting_window.on_screen? }.to raise_error OperaWatir::Exceptions::UnknownObjectException
81
+ end
82
+ end
83
+
84
+ describe '#window_id' do
85
+ its(:window_id) { should be_integer }
86
+ its(:window_id) { should_not be_zero }
87
+
88
+ it 'throws exception if unknown window' do
89
+ expect { nonexisting_window.window_id }.to raise_error OperaWatir::Exceptions::UnknownObjectException
90
+ end
91
+ end
92
+
93
+ describe '#window_info_string' do
94
+ its(:window_info_string) { should be_kind_of String }
95
+ its(:window_info_string) { should_not be_empty }
96
+
97
+ it 'throws exception if unknown window' do
98
+ expect { nonexisting_window.window_info_string }.to raise_error OperaWatir::Exceptions::UnknownObjectException
99
+ end
100
+ end
101
+
102
+ its(:driver) { should be_instance_of Java::ComOperaCoreSystems::OperaDesktopDriver }
103
+
104
+ #private
105
+ # def parent_widget
106
+ # def element(refresh = false)
107
+ # def find
108
+ end
@@ -0,0 +1,138 @@
1
+ require File.expand_path('../../../watirspec_desktophelper', __FILE__)
2
+
3
+ shared_examples_for 'a button' do
4
+ describe '#default?' do
5
+ it "returns a boolean" do
6
+ [true, false].should include widget.default?
7
+ end
8
+ end
9
+ describe '#value' do
10
+ it "returns 0 or 1" do
11
+ [0, 1].should include widget.value
12
+ end
13
+ end
14
+ describe '#toggle_with_click' do
15
+ it "returns value" do
16
+ [0, 1].should include widget.toggle_with_click
17
+ end
18
+ after(:each) do
19
+ widget.toggle_with_click unless widget.type == :thumbnail
20
+ end
21
+ end
22
+ end
23
+
24
+ shared_examples_for 'an editfield' do
25
+ describe '#focus_with_click' do
26
+ it 'focuses editfield' do
27
+ widget.focus_with_click
28
+ end
29
+ end
30
+
31
+ describe '#type_text' do
32
+ it "types the given text" do
33
+ widget.type_text "some text"
34
+ widget.focus_with_click # *nix workaround; get rid of addressbar dropdown window
35
+ widget.text.should include "some text"
36
+ end
37
+ end
38
+
39
+ describe '#clear' do
40
+ it "clears the editfield" do
41
+ widget.clear
42
+ widget.send :element, true #urgh
43
+ widget.text.should be_empty
44
+
45
+ end
46
+
47
+ #avoid leaving search dropdown open
48
+ after(:each) do
49
+ widget.focus_with_click
50
+ end
51
+ end
52
+
53
+ =begin
54
+ describe '#key_press' do
55
+ it "presses keys with modifiers" do
56
+ widget.type_text "some other text"
57
+ widget.focus_with_click
58
+ widget.key_press("a", :ctrl)
59
+ widget.key_press("c", :ctrl)
60
+ widget.clear
61
+ widget.key_press("v", :ctrl)
62
+ widget.text.should include "some other text"
63
+ end
64
+ end
65
+ =end
66
+ end
67
+
68
+
69
+ shared_examples_for 'a checkbox' do
70
+ describe '#checked?' do
71
+ it "returns a boolean" do
72
+ [true, false].should include widget.checked?
73
+ end
74
+ end
75
+
76
+ describe '#toggle_with_click' do
77
+ it "returns value" do
78
+ [true, false].should include widget.toggle_with_click
79
+ end
80
+ after(:each) do
81
+ widget.toggle_with_click
82
+ end
83
+ end
84
+ end
85
+ =begin
86
+ shared_examples_for 'a checkbox' do
87
+ describe '#checked?' do
88
+ end
89
+
90
+ describe '#toggle_with_click' do
91
+ end
92
+
93
+ describe '#open_dialog_with_click' do
94
+ end
95
+ end
96
+ =end
97
+
98
+ shared_examples_for 'a widget' do
99
+ describe '#exist?' do
100
+ it 'returns true for existing widget' do
101
+ widget.should exist
102
+ end
103
+ end
104
+
105
+ its(:text) { should be_kind_of String } #be_a
106
+ its(:name) { should be_kind_of String }
107
+ its(:row_info_string) { should be_kind_of String }
108
+ its(:widget_info_string) { should be_kind_of String }
109
+ its(:parent_name) { should be_kind_of String } # nil?
110
+ its(:value) { should be_integer }
111
+ its(:to_s) { should be_kind_of String }
112
+ its(:driver) { should be_instance_of Java::ComOperaCoreSystems::OperaDesktopDriver }
113
+ its(:width) { should be > 0 }
114
+ its(:height) { should be > 0 }
115
+ its(:x) { should be > 0 }
116
+ its(:y) { should be > 0 }
117
+
118
+ describe '#enabled?' do
119
+ it 'returns a boolean' do
120
+ [true, false].should include widget.enabled?
121
+ end
122
+ end
123
+
124
+ describe '#visible?' do
125
+ it 'returns a boolean' do
126
+ [true, false].should include widget.enabled?
127
+ end
128
+ end
129
+
130
+ #describe 'print_row' do
131
+ #end
132
+
133
+ #describe '#print_widget_info' do
134
+ #end
135
+
136
+
137
+ end
138
+
@@ -0,0 +1,22 @@
1
+ <!DOCTYPE html>
2
+ <meta charset='utf-8'>
3
+ <title>Colorful boxes</title>
4
+ <style>
5
+ div {
6
+ width: 40px;
7
+ height: 40px;
8
+ margin-bottom: 10px;
9
+ }
10
+ #one, #three {
11
+ background-color: blue;
12
+ }
13
+ #two, #four {
14
+ background-color: orange;
15
+ }
16
+ </style>
17
+
18
+ <div id='one'></div>
19
+ <div id='two'></div>
20
+
21
+ <div id='three'></div>
22
+ <div id='four'></div>
@@ -0,0 +1,367 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="504pt" height="504pt" viewBox="0 0 504 504" version="1.1">
3
+ <defs>
4
+ <g>
5
+ <symbol overflow="visible" id="glyph0-0">
6
+ <path style="stroke:none;" d=""/>
7
+ </symbol>
8
+ <symbol overflow="visible" id="glyph0-1">
9
+ <path style="stroke:none;" d="M 2.328125 -8.75 L 1.203125 -8.75 L 1.203125 0 L 2.328125 0 L 2.328125 -8.75 Z M 2.328125 -8.75 "/>
10
+ </symbol>
11
+ <symbol overflow="visible" id="glyph0-2">
12
+ <path style="stroke:none;" d="M 0.84375 -6.28125 L 0.84375 0 L 1.84375 0 L 1.84375 -3.46875 C 1.84375 -4.75 2.515625 -5.59375 3.546875 -5.59375 C 4.34375 -5.59375 4.84375 -5.109375 4.84375 -4.359375 L 4.84375 0 L 5.84375 0 L 5.84375 -4.75 C 5.84375 -5.796875 5.0625 -6.46875 3.859375 -6.46875 C 2.921875 -6.46875 2.3125 -6.109375 1.765625 -5.234375 L 1.765625 -6.28125 L 0.84375 -6.28125 Z M 0.84375 -6.28125 "/>
13
+ </symbol>
14
+ <symbol overflow="visible" id="glyph0-3">
15
+ <path style="stroke:none;" d="M 3.046875 -6.28125 L 2.015625 -6.28125 L 2.015625 -8.015625 L 1.015625 -8.015625 L 1.015625 -6.28125 L 0.171875 -6.28125 L 0.171875 -5.46875 L 1.015625 -5.46875 L 1.015625 -0.71875 C 1.015625 -0.078125 1.453125 0.28125 2.234375 0.28125 C 2.46875 0.28125 2.71875 0.25 3.046875 0.1875 L 3.046875 -0.640625 C 2.921875 -0.609375 2.765625 -0.59375 2.5625 -0.59375 C 2.140625 -0.59375 2.015625 -0.71875 2.015625 -1.15625 L 2.015625 -5.46875 L 3.046875 -5.46875 L 3.046875 -6.28125 Z M 3.046875 -6.28125 "/>
16
+ </symbol>
17
+ <symbol overflow="visible" id="glyph0-4">
18
+ <path style="stroke:none;" d="M 6.15625 -2.8125 C 6.15625 -3.765625 6.078125 -4.34375 5.90625 -4.8125 C 5.5 -5.84375 4.53125 -6.46875 3.359375 -6.46875 C 1.609375 -6.46875 0.484375 -5.125 0.484375 -3.0625 C 0.484375 -1 1.578125 0.28125 3.34375 0.28125 C 4.78125 0.28125 5.765625 -0.546875 6.03125 -1.90625 L 5.015625 -1.90625 C 4.734375 -1.078125 4.171875 -0.640625 3.375 -0.640625 C 2.734375 -0.640625 2.203125 -0.9375 1.859375 -1.46875 C 1.625 -1.828125 1.53125 -2.1875 1.53125 -2.8125 L 6.15625 -2.8125 Z M 1.546875 -3.625 C 1.625 -4.78125 2.34375 -5.546875 3.34375 -5.546875 C 4.328125 -5.546875 5.09375 -4.734375 5.09375 -3.703125 C 5.09375 -3.671875 5.09375 -3.640625 5.078125 -3.625 L 1.546875 -3.625 Z M 1.546875 -3.625 "/>
19
+ </symbol>
20
+ <symbol overflow="visible" id="glyph0-5">
21
+ <path style="stroke:none;" d="M 0.828125 -6.28125 L 0.828125 0 L 1.84375 0 L 1.84375 -3.265625 C 1.84375 -4.15625 2.0625 -4.75 2.546875 -5.09375 C 2.859375 -5.328125 3.15625 -5.40625 3.859375 -5.40625 L 3.859375 -6.4375 C 3.6875 -6.453125 3.59375 -6.46875 3.46875 -6.46875 C 2.8125 -6.46875 2.328125 -6.078125 1.75 -5.140625 L 1.75 -6.28125 L 0.828125 -6.28125 Z M 0.828125 -6.28125 "/>
22
+ </symbol>
23
+ <symbol overflow="visible" id="glyph0-6">
24
+ <path style="stroke:none;" d="M 2.203125 -3.984375 L 6.953125 -3.984375 L 6.953125 -4.96875 L 2.203125 -4.96875 L 2.203125 -7.765625 L 7.140625 -7.765625 L 7.140625 -8.75 L 1.078125 -8.75 L 1.078125 0 L 7.359375 0 L 7.359375 -0.984375 L 2.203125 -0.984375 L 2.203125 -3.984375 Z M 2.203125 -3.984375 "/>
25
+ </symbol>
26
+ <symbol overflow="visible" id="glyph0-7">
27
+ <path style="stroke:none;" d="M 3.5 -3.25 L 5.609375 -6.28125 L 4.484375 -6.28125 L 2.96875 -4.015625 L 1.46875 -6.28125 L 0.328125 -6.28125 L 2.421875 -3.203125 L 0.203125 0 L 1.34375 0 L 2.9375 -2.40625 L 4.515625 0 L 5.671875 0 L 3.5 -3.25 Z M 3.5 -3.25 "/>
28
+ </symbol>
29
+ <symbol overflow="visible" id="glyph0-8">
30
+ <path style="stroke:none;" d="M 0.640625 2.609375 L 1.65625 2.609375 L 1.65625 -0.65625 C 2.1875 -0.015625 2.765625 0.28125 3.59375 0.28125 C 5.203125 0.28125 6.28125 -1.03125 6.28125 -3.03125 C 6.28125 -5.140625 5.25 -6.46875 3.578125 -6.46875 C 2.71875 -6.46875 2.046875 -6.078125 1.578125 -5.34375 L 1.578125 -6.28125 L 0.640625 -6.28125 L 0.640625 2.609375 Z M 3.40625 -5.53125 C 4.515625 -5.53125 5.234375 -4.5625 5.234375 -3.0625 C 5.234375 -1.625 4.5 -0.65625 3.40625 -0.65625 C 2.359375 -0.65625 1.65625 -1.625 1.65625 -3.09375 C 1.65625 -4.578125 2.359375 -5.53125 3.40625 -5.53125 Z M 3.40625 -5.53125 "/>
31
+ </symbol>
32
+ <symbol overflow="visible" id="glyph0-9">
33
+ <path style="stroke:none;" d="M 1.828125 -8.75 L 0.8125 -8.75 L 0.8125 0 L 1.828125 0 L 1.828125 -8.75 Z M 1.828125 -8.75 "/>
34
+ </symbol>
35
+ <symbol overflow="visible" id="glyph0-10">
36
+ <path style="stroke:none;" d="M 3.265625 -6.46875 C 1.5 -6.46875 0.4375 -5.203125 0.4375 -3.09375 C 0.4375 -0.984375 1.484375 0.28125 3.28125 0.28125 C 5.046875 0.28125 6.125 -0.984375 6.125 -3.046875 C 6.125 -5.21875 5.078125 -6.46875 3.265625 -6.46875 Z M 3.28125 -5.546875 C 4.40625 -5.546875 5.078125 -4.625 5.078125 -3.0625 C 5.078125 -1.578125 4.375 -0.640625 3.28125 -0.640625 C 2.15625 -0.640625 1.46875 -1.578125 1.46875 -3.09375 C 1.46875 -4.609375 2.15625 -5.546875 3.28125 -5.546875 Z M 3.28125 -5.546875 "/>
37
+ </symbol>
38
+ <symbol overflow="visible" id="glyph0-11">
39
+ <path style="stroke:none;" d="M 2.203125 -3.984375 L 6.375 -3.984375 L 6.375 -4.96875 L 2.203125 -4.96875 L 2.203125 -7.765625 L 6.953125 -7.765625 L 6.953125 -8.75 L 1.078125 -8.75 L 1.078125 0 L 2.203125 0 L 2.203125 -3.984375 Z M 2.203125 -3.984375 "/>
40
+ </symbol>
41
+ <symbol overflow="visible" id="glyph0-12">
42
+ <path style="stroke:none;" d="M 1.796875 -6.28125 L 0.796875 -6.28125 L 0.796875 0 L 1.796875 0 L 1.796875 -6.28125 Z M 1.796875 -8.75 L 0.796875 -8.75 L 0.796875 -7.484375 L 1.796875 -7.484375 L 1.796875 -8.75 Z M 1.796875 -8.75 "/>
43
+ </symbol>
44
+ <symbol overflow="visible" id="glyph0-13">
45
+ <path style="stroke:none;" d="M 3.09375 -6.28125 L 2.046875 -6.28125 L 2.046875 -7.265625 C 2.046875 -7.6875 2.296875 -7.90625 2.75 -7.90625 C 2.828125 -7.90625 2.875 -7.90625 3.09375 -7.890625 L 3.09375 -8.71875 C 2.875 -8.765625 2.734375 -8.78125 2.53125 -8.78125 C 1.609375 -8.78125 1.0625 -8.25 1.0625 -7.359375 L 1.0625 -6.28125 L 0.21875 -6.28125 L 0.21875 -5.46875 L 1.0625 -5.46875 L 1.0625 0 L 2.046875 0 L 2.046875 -5.46875 L 3.09375 -5.46875 L 3.09375 -6.28125 Z M 3.09375 -6.28125 "/>
46
+ </symbol>
47
+ <symbol overflow="visible" id="glyph0-14">
48
+ <path style="stroke:none;" d="M 7.9375 -6.03125 C 7.59375 -7.953125 6.484375 -8.890625 4.578125 -8.890625 C 3.390625 -8.890625 2.453125 -8.515625 1.796875 -7.796875 C 1.015625 -6.9375 0.578125 -5.6875 0.578125 -4.265625 C 0.578125 -2.828125 1.015625 -1.59375 1.84375 -0.75 C 2.515625 -0.046875 3.390625 0.28125 4.53125 0.28125 C 6.65625 0.28125 7.859375 -0.875 8.125 -3.1875 L 6.96875 -3.1875 C 6.875 -2.59375 6.75 -2.1875 6.578125 -1.84375 C 6.21875 -1.109375 5.46875 -0.703125 4.53125 -0.703125 C 2.796875 -0.703125 1.6875 -2.09375 1.6875 -4.28125 C 1.6875 -6.53125 2.75 -7.90625 4.4375 -7.90625 C 5.140625 -7.90625 5.8125 -7.6875 6.171875 -7.359375 C 6.484375 -7.0625 6.671875 -6.6875 6.796875 -6.03125 L 7.9375 -6.03125 Z M 7.9375 -6.03125 "/>
49
+ </symbol>
50
+ <symbol overflow="visible" id="glyph0-15">
51
+ <path style="stroke:none;" d="M 0.84375 -8.75 L 0.84375 0 L 1.84375 0 L 1.84375 -3.46875 C 1.84375 -4.75 2.515625 -5.59375 3.546875 -5.59375 C 3.859375 -5.59375 4.1875 -5.484375 4.421875 -5.296875 C 4.71875 -5.09375 4.84375 -4.796875 4.84375 -4.359375 L 4.84375 0 L 5.828125 0 L 5.828125 -4.75 C 5.828125 -5.8125 5.078125 -6.46875 3.859375 -6.46875 C 2.96875 -6.46875 2.421875 -6.1875 1.84375 -5.421875 L 1.84375 -8.75 L 0.84375 -8.75 Z M 0.84375 -8.75 "/>
52
+ </symbol>
53
+ <symbol overflow="visible" id="glyph0-16">
54
+ <path style="stroke:none;" d="M 0.84375 -6.28125 L 0.84375 0 L 1.84375 0 L 1.84375 -3.953125 C 1.84375 -4.859375 2.515625 -5.59375 3.328125 -5.59375 C 4.0625 -5.59375 4.484375 -5.140625 4.484375 -4.328125 L 4.484375 0 L 5.5 0 L 5.5 -3.953125 C 5.5 -4.859375 6.15625 -5.59375 6.96875 -5.59375 C 7.703125 -5.59375 8.140625 -5.125 8.140625 -4.328125 L 8.140625 0 L 9.140625 0 L 9.140625 -4.71875 C 9.140625 -5.84375 8.5 -6.46875 7.3125 -6.46875 C 6.484375 -6.46875 5.96875 -6.21875 5.390625 -5.515625 C 5.015625 -6.1875 4.515625 -6.46875 3.703125 -6.46875 C 2.859375 -6.46875 2.296875 -6.15625 1.765625 -5.40625 L 1.765625 -6.28125 L 0.84375 -6.28125 Z M 0.84375 -6.28125 "/>
55
+ </symbol>
56
+ <symbol overflow="visible" id="glyph0-17">
57
+ <path style="stroke:none;" d="M 7.15625 -6.1875 C 7.140625 -7.890625 5.96875 -8.890625 3.953125 -8.890625 C 2.03125 -8.890625 0.84375 -7.90625 0.84375 -6.328125 C 0.84375 -5.25 1.40625 -4.578125 2.5625 -4.28125 L 4.734375 -3.703125 C 5.828125 -3.421875 6.34375 -2.96875 6.34375 -2.296875 C 6.34375 -1.828125 6.078125 -1.34375 5.71875 -1.078125 C 5.359375 -0.84375 4.8125 -0.703125 4.109375 -0.703125 C 3.15625 -0.703125 2.515625 -0.9375 2.09375 -1.4375 C 1.765625 -1.828125 1.625 -2.25 1.625 -2.78125 L 0.578125 -2.78125 C 0.59375 -1.984375 0.75 -1.453125 1.09375 -0.96875 C 1.6875 -0.15625 2.703125 0.28125 4.03125 0.28125 C 5.078125 0.28125 5.921875 0.03125 6.484375 -0.390625 C 7.078125 -0.859375 7.453125 -1.640625 7.453125 -2.40625 C 7.453125 -3.484375 6.78125 -4.265625 5.59375 -4.59375 L 3.390625 -5.1875 C 2.34375 -5.46875 1.953125 -5.8125 1.953125 -6.484375 C 1.953125 -7.375 2.734375 -7.953125 3.90625 -7.953125 C 5.296875 -7.953125 6.078125 -7.3125 6.09375 -6.1875 L 7.15625 -6.1875 Z M 7.15625 -6.1875 "/>
58
+ </symbol>
59
+ <symbol overflow="visible" id="glyph0-18">
60
+ <path style="stroke:none;" d="M 6.421875 -0.59375 C 6.3125 -0.5625 6.265625 -0.5625 6.203125 -0.5625 C 5.859375 -0.5625 5.65625 -0.75 5.65625 -1.0625 L 5.65625 -4.75 C 5.65625 -5.875 4.84375 -6.46875 3.296875 -6.46875 C 2.390625 -6.46875 1.625 -6.203125 1.21875 -5.734375 C 0.921875 -5.40625 0.796875 -5.046875 0.78125 -4.421875 L 1.78125 -4.421875 C 1.875 -5.203125 2.328125 -5.546875 3.265625 -5.546875 C 4.15625 -5.546875 4.671875 -5.203125 4.671875 -4.609375 L 4.671875 -4.34375 C 4.671875 -3.921875 4.421875 -3.75 3.625 -3.640625 C 2.203125 -3.46875 1.984375 -3.421875 1.609375 -3.265625 C 0.875 -2.96875 0.5 -2.40625 0.5 -1.578125 C 0.5 -0.4375 1.296875 0.28125 2.5625 0.28125 C 3.359375 0.28125 4 0 4.703125 -0.640625 C 4.78125 -0.015625 5.09375 0.28125 5.734375 0.28125 C 5.9375 0.28125 6.09375 0.25 6.421875 0.171875 L 6.421875 -0.59375 Z M 4.671875 -1.984375 C 4.671875 -1.640625 4.578125 -1.4375 4.265625 -1.15625 C 3.859375 -0.796875 3.375 -0.59375 2.78125 -0.59375 C 2 -0.59375 1.546875 -0.96875 1.546875 -1.609375 C 1.546875 -2.265625 1.984375 -2.609375 3.0625 -2.765625 C 4.109375 -2.90625 4.328125 -2.953125 4.671875 -3.109375 L 4.671875 -1.984375 Z M 4.671875 -1.984375 "/>
61
+ </symbol>
62
+ <symbol overflow="visible" id="glyph0-19">
63
+ <path style="stroke:none;" d="M 4.671875 -8.890625 C 2.15625 -8.890625 0.453125 -7.046875 0.453125 -4.3125 C 0.453125 -1.578125 2.15625 0.28125 4.6875 0.28125 C 5.734375 0.28125 6.6875 -0.046875 7.390625 -0.640625 C 8.34375 -1.453125 8.90625 -2.8125 8.90625 -4.234375 C 8.90625 -7.0625 7.234375 -8.890625 4.671875 -8.890625 Z M 4.671875 -7.90625 C 6.5625 -7.90625 7.78125 -6.46875 7.78125 -4.265625 C 7.78125 -2.140625 6.53125 -0.703125 4.6875 -0.703125 C 2.8125 -0.703125 1.578125 -2.140625 1.578125 -4.3125 C 1.578125 -6.46875 2.8125 -7.90625 4.671875 -7.90625 Z M 4.671875 -7.90625 "/>
64
+ </symbol>
65
+ <symbol overflow="visible" id="glyph0-20">
66
+ <path style="stroke:none;" d="M 5.609375 0 L 8.078125 -7.328125 L 8.078125 0 L 9.125 0 L 9.125 -8.75 L 7.578125 -8.75 L 5.046875 -1.125 L 2.453125 -8.75 L 0.90625 -8.75 L 0.90625 0 L 1.953125 0 L 1.953125 -7.328125 L 4.4375 0 L 5.609375 0 Z M 5.609375 0 "/>
67
+ </symbol>
68
+ <symbol overflow="visible" id="glyph0-21">
69
+ <path style="stroke:none;" d="M 0.640625 -8.75 L 0.640625 0 L 1.546875 0 L 1.546875 -0.796875 C 2.03125 -0.078125 2.65625 0.28125 3.546875 0.28125 C 5.203125 0.28125 6.28125 -1.078125 6.28125 -3.171875 C 6.28125 -5.203125 5.25 -6.46875 3.59375 -6.46875 C 2.71875 -6.46875 2.109375 -6.140625 1.640625 -5.4375 L 1.640625 -8.75 L 0.640625 -8.75 Z M 3.390625 -5.53125 C 4.515625 -5.53125 5.234375 -4.5625 5.234375 -3.0625 C 5.234375 -1.625 4.484375 -0.65625 3.390625 -0.65625 C 2.34375 -0.65625 1.640625 -1.625 1.640625 -3.09375 C 1.640625 -4.578125 2.34375 -5.53125 3.390625 -5.53125 Z M 3.390625 -5.53125 "/>
70
+ </symbol>
71
+ <symbol overflow="visible" id="glyph0-22">
72
+ <path style="stroke:none;" d="M 6.640625 0 L 8.5 -6.28125 L 7.375 -6.28125 L 6.125 -1.390625 L 4.890625 -6.28125 L 3.65625 -6.28125 L 2.453125 -1.390625 L 1.171875 -6.28125 L 0.078125 -6.28125 L 1.890625 0 L 3.03125 0 L 4.234375 -4.9375 L 5.515625 0 L 6.640625 0 Z M 6.640625 0 "/>
73
+ </symbol>
74
+ <symbol overflow="visible" id="glyph0-23">
75
+ <path style="stroke:none;" d="M 5.25 -4.53125 C 5.25 -5.765625 4.421875 -6.46875 2.96875 -6.46875 C 1.515625 -6.46875 0.5625 -5.71875 0.5625 -4.546875 C 0.5625 -3.5625 1.0625 -3.09375 2.5625 -2.734375 L 3.484375 -2.515625 C 4.1875 -2.34375 4.46875 -2.09375 4.46875 -1.625 C 4.46875 -1.046875 3.875 -0.640625 3 -0.640625 C 2.453125 -0.640625 2 -0.796875 1.75 -1.0625 C 1.59375 -1.25 1.53125 -1.421875 1.46875 -1.875 L 0.40625 -1.875 C 0.453125 -0.421875 1.265625 0.28125 2.921875 0.28125 C 4.5 0.28125 5.515625 -0.5 5.515625 -1.71875 C 5.515625 -2.65625 4.984375 -3.171875 3.734375 -3.46875 L 2.765625 -3.703125 C 1.953125 -3.890625 1.609375 -4.15625 1.609375 -4.59375 C 1.609375 -5.171875 2.125 -5.546875 2.9375 -5.546875 C 3.75 -5.546875 4.171875 -5.203125 4.203125 -4.53125 L 5.25 -4.53125 Z M 5.25 -4.53125 "/>
76
+ </symbol>
77
+ <symbol overflow="visible" id="glyph1-0">
78
+ <path style="stroke:none;" d=""/>
79
+ </symbol>
80
+ <symbol overflow="visible" id="glyph1-1">
81
+ <path style="stroke:none;" d="M 7.265625 -10.5 L 7.265625 -3.390625 C 7.265625 -2.125 6.609375 -1.515625 5.265625 -1.515625 C 3.90625 -1.515625 3.25 -2.125 3.25 -3.390625 L 3.25 -10.5 L 1.09375 -10.5 L 1.09375 -3.390625 C 1.09375 -2.203125 1.40625 -1.375 2.125 -0.734375 C 2.875 -0.046875 3.984375 0.328125 5.265625 0.328125 C 6.53125 0.328125 7.640625 -0.046875 8.40625 -0.734375 C 9.109375 -1.375 9.421875 -2.203125 9.421875 -3.390625 L 9.421875 -10.5 L 7.265625 -10.5 Z M 7.265625 -10.5 "/>
82
+ </symbol>
83
+ <symbol overflow="visible" id="glyph1-2">
84
+ <path style="stroke:none;" d="M 7.28125 -5.265625 C 7.25 -6.921875 5.984375 -7.90625 3.890625 -7.90625 C 1.921875 -7.90625 0.6875 -6.921875 0.6875 -5.3125 C 0.6875 -4.796875 0.84375 -4.34375 1.125 -4.046875 C 1.390625 -3.78125 1.640625 -3.640625 2.390625 -3.40625 L 4.796875 -2.65625 C 5.296875 -2.5 5.46875 -2.328125 5.46875 -2.015625 C 5.46875 -1.546875 4.90625 -1.25 3.96875 -1.25 C 3.453125 -1.25 3.046875 -1.359375 2.78125 -1.53125 C 2.5625 -1.6875 2.484375 -1.84375 2.390625 -2.265625 L 0.421875 -2.265625 C 0.46875 -0.5625 1.734375 0.328125 4.09375 0.328125 C 5.171875 0.328125 6 0.09375 6.5625 -0.359375 C 7.140625 -0.828125 7.484375 -1.546875 7.484375 -2.3125 C 7.484375 -3.3125 6.984375 -3.96875 5.96875 -4.265625 L 3.421875 -5 C 2.859375 -5.171875 2.703125 -5.28125 2.703125 -5.609375 C 2.703125 -6.03125 3.171875 -6.328125 3.875 -6.328125 C 4.84375 -6.328125 5.3125 -5.984375 5.328125 -5.265625 L 7.28125 -5.265625 Z M 7.28125 -5.265625 "/>
85
+ </symbol>
86
+ <symbol overflow="visible" id="glyph1-3">
87
+ <path style="stroke:none;" d="M 7.546875 -0.25 C 7.1875 -0.578125 7.09375 -0.796875 7.09375 -1.203125 L 7.09375 -5.515625 C 7.09375 -7.109375 6 -7.90625 3.90625 -7.90625 C 1.796875 -7.90625 0.703125 -7.015625 0.578125 -5.21875 L 2.515625 -5.21875 C 2.625 -6.015625 2.953125 -6.28125 3.953125 -6.28125 C 4.71875 -6.28125 5.109375 -6.015625 5.109375 -5.5 C 5.109375 -5.25 4.984375 -5.015625 4.765625 -4.890625 C 4.5 -4.75 4.5 -4.75 3.5 -4.59375 L 2.6875 -4.453125 C 1.15625 -4.1875 0.40625 -3.40625 0.40625 -2 C 0.40625 -1.34375 0.59375 -0.796875 0.953125 -0.40625 C 1.390625 0.0625 2.078125 0.328125 2.765625 0.328125 C 3.625 0.328125 4.421875 -0.046875 5.125 -0.78125 C 5.125 -0.375 5.171875 -0.234375 5.359375 0 L 7.546875 0 L 7.546875 -0.25 Z M 5.109375 -3.125 C 5.109375 -1.953125 4.53125 -1.296875 3.515625 -1.296875 C 2.84375 -1.296875 2.421875 -1.65625 2.421875 -2.234375 C 2.421875 -2.84375 2.734375 -3.125 3.578125 -3.296875 L 4.265625 -3.421875 C 4.796875 -3.53125 4.890625 -3.5625 5.109375 -3.671875 L 5.109375 -3.125 Z M 5.109375 -3.125 "/>
88
+ </symbol>
89
+ <symbol overflow="visible" id="glyph1-4">
90
+ <path style="stroke:none;" d="M 5.875 -7.78125 L 5.875 -6.578125 C 5.265625 -7.5 4.609375 -7.90625 3.71875 -7.90625 C 1.875 -7.90625 0.484375 -6.109375 0.484375 -3.703125 C 0.484375 -1.28125 1.75 0.328125 3.671875 0.328125 C 4.578125 0.328125 5.125 0.0625 5.875 -0.796875 L 5.875 0.265625 C 5.875 1.203125 5.171875 1.84375 4.15625 1.84375 C 3.40625 1.84375 2.890625 1.53125 2.734375 0.9375 L 0.640625 0.9375 C 0.65625 1.546875 0.890625 1.953125 1.40625 2.390625 C 2.03125 2.890625 2.890625 3.140625 4.09375 3.140625 C 6.4375 3.140625 7.796875 2.09375 7.796875 0.265625 L 7.796875 -7.78125 L 5.875 -7.78125 Z M 4.15625 -6.21875 C 5.15625 -6.21875 5.90625 -5.171875 5.90625 -3.734375 C 5.90625 -2.3125 5.171875 -1.359375 4.125 -1.359375 C 3.171875 -1.359375 2.5 -2.3125 2.5 -3.734375 C 2.5 -5.203125 3.171875 -6.21875 4.15625 -6.21875 Z M 4.15625 -6.21875 "/>
91
+ </symbol>
92
+ <symbol overflow="visible" id="glyph1-5">
93
+ <path style="stroke:none;" d="M 7.546875 -3.25 C 7.5625 -3.421875 7.5625 -3.5 7.5625 -3.59375 C 7.5625 -4.375 7.453125 -5.09375 7.265625 -5.640625 C 6.734375 -7.0625 5.484375 -7.90625 3.921875 -7.90625 C 1.6875 -7.90625 0.3125 -6.296875 0.3125 -3.6875 C 0.3125 -1.203125 1.671875 0.328125 3.875 0.328125 C 5.625 0.328125 7.03125 -0.65625 7.484375 -2.1875 L 5.484375 -2.1875 C 5.25 -1.5625 4.6875 -1.203125 3.953125 -1.203125 C 3.375 -1.203125 2.90625 -1.453125 2.625 -1.890625 C 2.4375 -2.171875 2.359375 -2.515625 2.328125 -3.25 L 7.546875 -3.25 Z M 2.359375 -4.59375 C 2.5 -5.78125 3 -6.375 3.890625 -6.375 C 4.390625 -6.375 4.859375 -6.125 5.140625 -5.71875 C 5.328125 -5.4375 5.421875 -5.125 5.453125 -4.59375 L 2.359375 -4.59375 Z M 2.359375 -4.59375 "/>
94
+ </symbol>
95
+ <symbol overflow="visible" id="glyph1-6">
96
+ <path style="stroke:none;" d=""/>
97
+ </symbol>
98
+ <symbol overflow="visible" id="glyph1-7">
99
+ <path style="stroke:none;" d="M 0.96875 -10.5 L 0.96875 0 L 2.984375 0 L 2.984375 -4.671875 C 2.984375 -5.5625 3.625 -6.1875 4.53125 -6.1875 C 4.96875 -6.1875 5.3125 -6.03125 5.546875 -5.71875 C 5.71875 -5.453125 5.78125 -5.265625 5.78125 -4.75 L 5.78125 0 L 7.796875 0 L 7.796875 -5.21875 C 7.796875 -6.1875 7.53125 -6.875 7 -7.3125 C 6.5625 -7.6875 5.90625 -7.90625 5.265625 -7.90625 C 4.265625 -7.90625 3.546875 -7.5 2.984375 -6.65625 L 2.984375 -10.5 L 0.96875 -10.5 Z M 0.96875 -10.5 "/>
100
+ </symbol>
101
+ <symbol overflow="visible" id="glyph1-8">
102
+ <path style="stroke:none;" d="M 0.90625 -7.78125 L 0.90625 0 L 2.921875 0 L 2.921875 -4.140625 C 2.921875 -5.3125 3.515625 -5.90625 4.703125 -5.90625 C 4.90625 -5.90625 5.0625 -5.890625 5.328125 -5.84375 L 5.328125 -7.890625 C 5.21875 -7.90625 5.140625 -7.90625 5.078125 -7.90625 C 4.15625 -7.90625 3.359375 -7.296875 2.921875 -6.25 L 2.921875 -7.78125 L 0.90625 -7.78125 Z M 0.90625 -7.78125 "/>
103
+ </symbol>
104
+ <symbol overflow="visible" id="glyph1-9">
105
+ <path style="stroke:none;" d="M 4.34375 -7.90625 C 1.953125 -7.90625 0.5 -6.34375 0.5 -3.78125 C 0.5 -1.21875 1.953125 0.328125 4.34375 0.328125 C 6.71875 0.328125 8.203125 -1.234375 8.203125 -3.734375 C 8.203125 -6.375 6.765625 -7.90625 4.34375 -7.90625 Z M 4.34375 -6.28125 C 5.453125 -6.28125 6.1875 -5.28125 6.1875 -3.765625 C 6.1875 -2.3125 5.4375 -1.296875 4.34375 -1.296875 C 3.25 -1.296875 2.515625 -2.3125 2.515625 -3.78125 C 2.515625 -5.265625 3.25 -6.28125 4.34375 -6.28125 Z M 4.34375 -6.28125 "/>
106
+ </symbol>
107
+ <symbol overflow="visible" id="glyph1-10">
108
+ <path style="stroke:none;" d="M 4.515625 -7.625 L 3.3125 -7.625 L 3.3125 -8.390625 C 3.3125 -8.78125 3.484375 -8.984375 3.859375 -8.984375 C 4.03125 -8.984375 4.265625 -8.96875 4.4375 -8.953125 L 4.4375 -10.453125 C 4.0625 -10.484375 3.5625 -10.5 3.28125 -10.5 C 1.9375 -10.5 1.296875 -9.875 1.296875 -8.5625 L 1.296875 -7.625 L 0.203125 -7.625 L 0.203125 -6.28125 L 1.296875 -6.28125 L 1.296875 0 L 3.3125 0 L 3.3125 -6.28125 L 4.515625 -6.28125 L 4.515625 -7.625 Z M 4.515625 -7.625 "/>
109
+ </symbol>
110
+ <symbol overflow="visible" id="glyph1-11">
111
+ <path style="stroke:none;" d="M 8.828125 0 L 11.03125 -7.78125 L 8.953125 -7.78125 L 7.765625 -2.328125 L 6.59375 -7.78125 L 4.578125 -7.78125 L 3.40625 -2.328125 L 2.15625 -7.78125 L 0.078125 -7.78125 L 2.265625 0 L 4.34375 0 L 5.578125 -5.484375 L 6.734375 0 L 8.828125 0 Z M 8.828125 0 "/>
112
+ </symbol>
113
+ <symbol overflow="visible" id="glyph1-12">
114
+ <path style="stroke:none;" d="M 0.84375 -10.5 L 0.84375 0 L 2.859375 0 L 2.859375 -0.796875 C 3.359375 -0.03125 4.03125 0.328125 5.015625 0.328125 C 6.875 0.328125 8.28125 -1.4375 8.28125 -3.78125 C 8.28125 -4.84375 7.96875 -5.90625 7.453125 -6.65625 C 6.921875 -7.421875 5.96875 -7.90625 5.015625 -7.90625 C 4.046875 -7.90625 3.359375 -7.546875 2.859375 -6.765625 L 2.859375 -10.5 L 0.84375 -10.5 Z M 4.5625 -6.21875 C 5.5625 -6.21875 6.265625 -5.21875 6.265625 -3.78125 C 6.265625 -2.359375 5.5625 -1.359375 4.5625 -1.359375 C 3.546875 -1.359375 2.859375 -2.328125 2.859375 -3.8125 C 2.859375 -5.234375 3.5625 -6.21875 4.5625 -6.21875 Z M 4.5625 -6.21875 "/>
115
+ </symbol>
116
+ <symbol overflow="visible" id="glyph1-13">
117
+ <path style="stroke:none;" d="M 3.78125 -2.109375 L 1.625 -2.109375 L 1.625 0 L 3.78125 0 L 3.78125 -2.109375 Z M 3.78125 -7.484375 L 1.625 -7.484375 L 1.625 -5.390625 L 3.78125 -5.390625 L 3.78125 -7.484375 Z M 3.78125 -7.484375 "/>
118
+ </symbol>
119
+ <symbol overflow="visible" id="glyph1-14">
120
+ <path style="stroke:none;" d="M 3.109375 -8.1875 L 5 0 L 7.15625 0 L 9.015625 -8.1875 L 9.015625 0 L 11.171875 0 L 11.171875 -10.5 L 7.921875 -10.5 L 6.078125 -2.140625 L 4.171875 -10.5 L 0.953125 -10.5 L 0.953125 0 L 3.109375 0 L 3.109375 -8.1875 Z M 3.109375 -8.1875 "/>
121
+ </symbol>
122
+ <symbol overflow="visible" id="glyph1-15">
123
+ <path style="stroke:none;" d="M 7.515625 -4.875 C 7.375 -6.765625 6.109375 -7.90625 4.15625 -7.90625 C 1.84375 -7.90625 0.484375 -6.375 0.484375 -3.734375 C 0.484375 -1.171875 1.828125 0.328125 4.140625 0.328125 C 6.015625 0.328125 7.328125 -0.828125 7.515625 -2.6875 L 5.59375 -2.6875 C 5.328125 -1.6875 4.921875 -1.296875 4.15625 -1.296875 C 3.125 -1.296875 2.5 -2.21875 2.5 -3.734375 C 2.5 -4.46875 2.65625 -5.15625 2.890625 -5.625 C 3.125 -6.046875 3.578125 -6.28125 4.15625 -6.28125 C 4.96875 -6.28125 5.359375 -5.890625 5.59375 -4.875 L 7.515625 -4.875 Z M 7.515625 -4.875 "/>
124
+ </symbol>
125
+ <symbol overflow="visible" id="glyph1-16">
126
+ <path style="stroke:none;" d="M 7.375 -1.796875 L 3.046875 -1.796875 C 3.3125 -2.34375 3.625 -2.640625 5.125 -3.734375 C 6.90625 -5.03125 7.421875 -5.8125 7.421875 -7.1875 C 7.421875 -9.15625 6.0625 -10.4375 3.921875 -10.4375 C 1.796875 -10.4375 0.5625 -9.171875 0.5625 -7.015625 C 0.5625 -6.921875 0.5625 -6.8125 0.578125 -6.65625 L 2.5 -6.65625 L 2.5 -6.984375 C 2.5 -8.125 3.046875 -8.78125 3.96875 -8.78125 C 4.859375 -8.78125 5.40625 -8.171875 5.40625 -7.140625 C 5.40625 -6.015625 5.046875 -5.578125 2.796875 -3.96875 C 1.0625 -2.796875 0.53125 -1.890625 0.4375 0 L 7.375 0 L 7.375 -1.796875 Z M 7.375 -1.796875 "/>
127
+ </symbol>
128
+ <symbol overflow="visible" id="glyph1-17">
129
+ <path style="stroke:none;" d="M 3.9375 -10.4375 C 2.84375 -10.4375 1.90625 -9.96875 1.28125 -9.125 C 0.6875 -8.328125 0.421875 -7.015625 0.421875 -5.046875 C 0.421875 -3.234375 0.65625 -1.953125 1.140625 -1.1875 C 1.75 -0.21875 2.734375 0.328125 3.9375 0.328125 C 5.046875 0.328125 5.953125 -0.109375 6.578125 -0.984375 C 7.15625 -1.75 7.453125 -3.078125 7.453125 -4.984375 C 7.453125 -6.859375 7.21875 -8.125 6.734375 -8.921875 C 6.125 -9.890625 5.125 -10.4375 3.9375 -10.4375 Z M 3.9375 -8.796875 C 4.453125 -8.796875 4.875 -8.515625 5.109375 -7.984375 C 5.3125 -7.546875 5.4375 -6.421875 5.4375 -5.03125 C 5.4375 -3.890625 5.3125 -2.734375 5.171875 -2.328125 C 4.9375 -1.734375 4.515625 -1.390625 3.9375 -1.390625 C 3.40625 -1.390625 3 -1.671875 2.75 -2.1875 C 2.546875 -2.625 2.4375 -3.703125 2.4375 -5.0625 C 2.4375 -6.25 2.546875 -7.421875 2.6875 -7.84375 C 2.921875 -8.453125 3.359375 -8.796875 3.9375 -8.796875 Z M 3.9375 -8.796875 "/>
130
+ </symbol>
131
+ <symbol overflow="visible" id="glyph1-18">
132
+ <path style="stroke:none;" d="M 3.421875 -7.046875 L 3.421875 0 L 5.453125 0 L 5.453125 -10.21875 L 4.109375 -10.21875 C 3.78125 -9 2.734375 -8.390625 0.984375 -8.390625 L 0.984375 -7.046875 L 3.421875 -7.046875 Z M 3.421875 -7.046875 "/>
133
+ </symbol>
134
+ <symbol overflow="visible" id="glyph2-0">
135
+ <path style="stroke:none;" d=""/>
136
+ </symbol>
137
+ <symbol overflow="visible" id="glyph2-1">
138
+ <path style="stroke:none;" d="M -3.703125 -2.203125 L -3.703125 -4.953125 C -3.703125 -5.640625 -3.90625 -6.1875 -4.328125 -6.640625 C -4.8125 -7.171875 -5.375 -7.40625 -6.1875 -7.40625 C -7.828125 -7.40625 -8.75 -6.4375 -8.75 -4.703125 L -8.75 -1.09375 L 0 -1.09375 L 0 -2.203125 L -3.703125 -2.203125 Z M -4.6875 -2.203125 L -7.765625 -2.203125 L -7.765625 -4.53125 C -7.765625 -5.609375 -7.1875 -6.234375 -6.234375 -6.234375 C -5.265625 -6.234375 -4.6875 -5.609375 -4.6875 -4.53125 L -4.6875 -2.203125 Z M -4.6875 -2.203125 "/>
139
+ </symbol>
140
+ <symbol overflow="visible" id="glyph2-2">
141
+ <path style="stroke:none;" d="M -2.8125 -6.15625 C -3.765625 -6.15625 -4.34375 -6.078125 -4.8125 -5.90625 C -5.84375 -5.5 -6.46875 -4.53125 -6.46875 -3.359375 C -6.46875 -1.609375 -5.125 -0.484375 -3.0625 -0.484375 C -1 -0.484375 0.28125 -1.578125 0.28125 -3.34375 C 0.28125 -4.78125 -0.546875 -5.765625 -1.90625 -6.03125 L -1.90625 -5.015625 C -1.078125 -4.734375 -0.640625 -4.171875 -0.640625 -3.375 C -0.640625 -2.734375 -0.9375 -2.203125 -1.46875 -1.859375 C -1.828125 -1.625 -2.1875 -1.53125 -2.8125 -1.53125 L -2.8125 -6.15625 Z M -3.625 -1.546875 C -4.78125 -1.625 -5.546875 -2.34375 -5.546875 -3.34375 C -5.546875 -4.328125 -4.734375 -5.09375 -3.703125 -5.09375 C -3.671875 -5.09375 -3.640625 -5.09375 -3.625 -5.078125 L -3.625 -1.546875 Z M -3.625 -1.546875 "/>
142
+ </symbol>
143
+ <symbol overflow="visible" id="glyph2-3">
144
+ <path style="stroke:none;" d="M -6.28125 -0.828125 L 0 -0.828125 L 0 -1.84375 L -3.265625 -1.84375 C -4.15625 -1.84375 -4.75 -2.0625 -5.09375 -2.546875 C -5.328125 -2.859375 -5.40625 -3.15625 -5.40625 -3.859375 L -6.4375 -3.859375 C -6.453125 -3.6875 -6.46875 -3.59375 -6.46875 -3.46875 C -6.46875 -2.8125 -6.078125 -2.328125 -5.140625 -1.75 L -6.28125 -1.75 L -6.28125 -0.828125 Z M -6.28125 -0.828125 "/>
145
+ </symbol>
146
+ <symbol overflow="visible" id="glyph2-4">
147
+ <path style="stroke:none;" d="M -4.171875 -5.65625 C -4.78125 -5.609375 -5.1875 -5.46875 -5.53125 -5.234375 C -6.125 -4.796875 -6.46875 -4.046875 -6.46875 -3.171875 C -6.46875 -1.46875 -5.125 -0.375 -3.03125 -0.375 C -1.015625 -0.375 0.28125 -1.453125 0.28125 -3.15625 C 0.28125 -4.65625 -0.625 -5.609375 -2.15625 -5.71875 L -2.15625 -4.71875 C -1.15625 -4.546875 -0.640625 -4.03125 -0.640625 -3.1875 C -0.640625 -2.078125 -1.546875 -1.421875 -3.03125 -1.421875 C -4.609375 -1.421875 -5.546875 -2.0625 -5.546875 -3.15625 C -5.546875 -4 -5.046875 -4.53125 -4.171875 -4.640625 L -4.171875 -5.65625 Z M -4.171875 -5.65625 "/>
148
+ </symbol>
149
+ <symbol overflow="visible" id="glyph2-5">
150
+ <path style="stroke:none;" d="M -6.28125 -0.84375 L 0 -0.84375 L 0 -1.84375 L -3.46875 -1.84375 C -4.75 -1.84375 -5.59375 -2.515625 -5.59375 -3.546875 C -5.59375 -4.34375 -5.109375 -4.84375 -4.359375 -4.84375 L 0 -4.84375 L 0 -5.84375 L -4.75 -5.84375 C -5.796875 -5.84375 -6.46875 -5.0625 -6.46875 -3.859375 C -6.46875 -2.921875 -6.109375 -2.3125 -5.234375 -1.765625 L -6.28125 -1.765625 L -6.28125 -0.84375 Z M -6.28125 -0.84375 "/>
151
+ </symbol>
152
+ <symbol overflow="visible" id="glyph2-6">
153
+ <path style="stroke:none;" d="M -6.28125 -3.046875 L -6.28125 -2.015625 L -8.015625 -2.015625 L -8.015625 -1.015625 L -6.28125 -1.015625 L -6.28125 -0.171875 L -5.46875 -0.171875 L -5.46875 -1.015625 L -0.71875 -1.015625 C -0.078125 -1.015625 0.28125 -1.453125 0.28125 -2.234375 C 0.28125 -2.46875 0.25 -2.71875 0.1875 -3.046875 L -0.640625 -3.046875 C -0.609375 -2.921875 -0.59375 -2.765625 -0.59375 -2.5625 C -0.59375 -2.140625 -0.71875 -2.015625 -1.15625 -2.015625 L -5.46875 -2.015625 L -5.46875 -3.046875 L -6.28125 -3.046875 Z M -6.28125 -3.046875 "/>
154
+ </symbol>
155
+ <symbol overflow="visible" id="glyph2-7">
156
+ <path style="stroke:none;" d=""/>
157
+ </symbol>
158
+ <symbol overflow="visible" id="glyph2-8">
159
+ <path style="stroke:none;" d="M -8.75 -6.625 L -2.609375 -6.625 C -1.421875 -6.625 -0.703125 -5.765625 -0.703125 -4.375 C -0.703125 -3.71875 -0.859375 -3.1875 -1.15625 -2.765625 C -1.5 -2.34375 -1.9375 -2.140625 -2.609375 -2.140625 L -8.75 -2.140625 L -8.75 -1.015625 L -2.609375 -1.015625 C -0.828125 -1.015625 0.28125 -2.296875 0.28125 -4.375 C 0.28125 -6.421875 -0.859375 -7.734375 -2.609375 -7.734375 L -8.75 -7.734375 L -8.75 -6.625 Z M -8.75 -6.625 "/>
160
+ </symbol>
161
+ <symbol overflow="visible" id="glyph2-9">
162
+ <path style="stroke:none;" d="M -4.53125 -5.25 C -5.765625 -5.25 -6.46875 -4.421875 -6.46875 -2.96875 C -6.46875 -1.515625 -5.71875 -0.5625 -4.546875 -0.5625 C -3.5625 -0.5625 -3.09375 -1.0625 -2.734375 -2.5625 L -2.515625 -3.484375 C -2.34375 -4.1875 -2.09375 -4.46875 -1.625 -4.46875 C -1.046875 -4.46875 -0.640625 -3.875 -0.640625 -3 C -0.640625 -2.453125 -0.796875 -2 -1.0625 -1.75 C -1.25 -1.59375 -1.421875 -1.53125 -1.875 -1.46875 L -1.875 -0.40625 C -0.421875 -0.453125 0.28125 -1.265625 0.28125 -2.921875 C 0.28125 -4.5 -0.5 -5.515625 -1.71875 -5.515625 C -2.65625 -5.515625 -3.171875 -4.984375 -3.46875 -3.734375 L -3.703125 -2.765625 C -3.890625 -1.953125 -4.15625 -1.609375 -4.59375 -1.609375 C -5.171875 -1.609375 -5.546875 -2.125 -5.546875 -2.9375 C -5.546875 -3.75 -5.203125 -4.171875 -4.53125 -4.203125 L -4.53125 -5.25 Z M -4.53125 -5.25 "/>
163
+ </symbol>
164
+ <symbol overflow="visible" id="glyph2-10">
165
+ <path style="stroke:none;" d="M -0.59375 -6.421875 C -0.5625 -6.3125 -0.5625 -6.265625 -0.5625 -6.203125 C -0.5625 -5.859375 -0.75 -5.65625 -1.0625 -5.65625 L -4.75 -5.65625 C -5.875 -5.65625 -6.46875 -4.84375 -6.46875 -3.296875 C -6.46875 -2.390625 -6.203125 -1.625 -5.734375 -1.21875 C -5.40625 -0.921875 -5.046875 -0.796875 -4.421875 -0.78125 L -4.421875 -1.78125 C -5.203125 -1.875 -5.546875 -2.328125 -5.546875 -3.265625 C -5.546875 -4.15625 -5.203125 -4.671875 -4.609375 -4.671875 L -4.34375 -4.671875 C -3.921875 -4.671875 -3.75 -4.421875 -3.640625 -3.625 C -3.46875 -2.203125 -3.421875 -1.984375 -3.265625 -1.609375 C -2.96875 -0.875 -2.40625 -0.5 -1.578125 -0.5 C -0.4375 -0.5 0.28125 -1.296875 0.28125 -2.5625 C 0.28125 -3.359375 0 -4 -0.640625 -4.703125 C -0.015625 -4.78125 0.28125 -5.09375 0.28125 -5.734375 C 0.28125 -5.9375 0.25 -6.09375 0.171875 -6.421875 L -0.59375 -6.421875 Z M -1.984375 -4.671875 C -1.640625 -4.671875 -1.4375 -4.578125 -1.15625 -4.265625 C -0.796875 -3.859375 -0.59375 -3.375 -0.59375 -2.78125 C -0.59375 -2 -0.96875 -1.546875 -1.609375 -1.546875 C -2.265625 -1.546875 -2.609375 -1.984375 -2.765625 -3.0625 C -2.90625 -4.109375 -2.953125 -4.328125 -3.109375 -4.671875 L -1.984375 -4.671875 Z M -1.984375 -4.671875 "/>
166
+ </symbol>
167
+ <symbol overflow="visible" id="glyph2-11">
168
+ <path style="stroke:none;" d="M -6.28125 -4.9375 L -5.375 -4.9375 C -6.125 -4.4375 -6.46875 -3.828125 -6.46875 -3.03125 C -6.46875 -1.421875 -5.078125 -0.34375 -3.03125 -0.34375 C -2 -0.34375 -1.15625 -0.625 -0.5625 -1.140625 C -0.03125 -1.609375 0.28125 -2.28125 0.28125 -2.9375 C 0.28125 -3.734375 -0.0625 -4.28125 -0.859375 -4.84375 L -0.53125 -4.84375 C 0.328125 -4.84375 0.84375 -4.734375 1.1875 -4.484375 C 1.5625 -4.21875 1.78125 -3.703125 1.78125 -3.09375 C 1.78125 -2.640625 1.65625 -2.234375 1.4375 -1.953125 C 1.265625 -1.734375 1.09375 -1.625 0.71875 -1.578125 L 0.71875 -0.546875 C 1.90625 -0.65625 2.609375 -1.578125 2.609375 -3.0625 C 2.609375 -4 2.3125 -4.796875 1.8125 -5.203125 C 1.234375 -5.6875 0.4375 -5.875 -1.03125 -5.875 L -6.28125 -5.875 L -6.28125 -4.9375 Z M -5.546875 -3.125 C -5.546875 -4.21875 -4.625 -4.84375 -3.0625 -4.84375 C -1.5625 -4.84375 -0.640625 -4.203125 -0.640625 -3.140625 C -0.640625 -2.046875 -1.578125 -1.390625 -3.09375 -1.390625 C -4.609375 -1.390625 -5.546875 -2.0625 -5.546875 -3.125 Z M -5.546875 -3.125 "/>
169
+ </symbol>
170
+ <symbol overflow="visible" id="glyph2-12">
171
+ <path style="stroke:none;" d="M -8.515625 -3.296875 C -8.515625 -2.515625 -8.15625 -1.78125 -7.578125 -1.34375 C -6.828125 -0.796875 -5.6875 -0.515625 -4.109375 -0.515625 C -1.25 -0.515625 0.28125 -1.46875 0.28125 -3.296875 C 0.28125 -5.09375 -1.25 -6.078125 -4.046875 -6.078125 C -5.703125 -6.078125 -6.796875 -5.8125 -7.578125 -5.25 C -8.171875 -4.8125 -8.515625 -4.109375 -8.515625 -3.296875 Z M -7.578125 -3.296875 C -7.578125 -4.4375 -6.421875 -5 -4.140625 -5 C -1.734375 -5 -0.59375 -4.453125 -0.59375 -3.28125 C -0.59375 -2.15625 -1.78125 -1.59375 -4.109375 -1.59375 C -6.4375 -1.59375 -7.578125 -2.15625 -7.578125 -3.296875 Z M -7.578125 -3.296875 "/>
172
+ </symbol>
173
+ <symbol overflow="visible" id="glyph2-13">
174
+ <path style="stroke:none;" d="M -6.0625 -3.109375 L 0 -3.109375 L 0 -4.15625 L -8.515625 -4.15625 L -8.515625 -3.46875 C -7.203125 -3.09375 -7.015625 -2.859375 -6.8125 -1.21875 L -6.0625 -1.21875 L -6.0625 -3.109375 Z M -6.0625 -3.109375 "/>
175
+ </symbol>
176
+ <symbol overflow="visible" id="glyph2-14">
177
+ <path style="stroke:none;" d="M -1.046875 -6.078125 L -1.046875 -1.59375 C -1.734375 -1.703125 -2.1875 -2.09375 -2.796875 -3.125 L -3.4375 -4.328125 C -4.09375 -5.515625 -4.96875 -6.125 -6.015625 -6.125 C -6.71875 -6.125 -7.375 -5.84375 -7.84375 -5.34375 C -8.296875 -4.84375 -8.515625 -4.21875 -8.515625 -3.40625 C -8.515625 -2.328125 -8.125 -1.53125 -7.40625 -1.0625 C -6.953125 -0.75 -6.421875 -0.625 -5.5625 -0.59375 L -5.5625 -1.65625 C -6.125 -1.6875 -6.484375 -1.765625 -6.75 -1.90625 C -7.265625 -2.1875 -7.578125 -2.734375 -7.578125 -3.375 C -7.578125 -4.328125 -6.90625 -5.046875 -5.984375 -5.046875 C -5.3125 -5.046875 -4.734375 -4.65625 -4.3125 -3.90625 L -3.6875 -2.796875 C -2.671875 -1.015625 -1.875 -0.5 0 -0.40625 L 0 -6.078125 L -1.046875 -6.078125 Z M -1.046875 -6.078125 "/>
178
+ </symbol>
179
+ <symbol overflow="visible" id="glyph2-15">
180
+ <path style="stroke:none;" d="M -3.90625 -2.65625 L -3.90625 -2.78125 L -3.90625 -3.234375 C -3.90625 -4.390625 -3.390625 -4.984375 -2.359375 -4.984375 C -1.296875 -4.984375 -0.65625 -4.328125 -0.65625 -3.234375 C -0.65625 -2.078125 -1.234375 -1.515625 -2.46875 -1.4375 L -2.46875 -0.390625 C -1.78125 -0.4375 -1.34375 -0.546875 -0.953125 -0.75 C -0.140625 -1.1875 0.28125 -2.03125 0.28125 -3.1875 C 0.28125 -4.9375 -0.765625 -6.078125 -2.375 -6.078125 C -3.453125 -6.078125 -4.0625 -5.65625 -4.40625 -4.625 C -4.71875 -5.421875 -5.3125 -5.8125 -6.171875 -5.8125 C -7.625 -5.8125 -8.515625 -4.84375 -8.515625 -3.234375 C -8.515625 -1.515625 -7.578125 -0.59375 -5.765625 -0.5625 L -5.765625 -1.625 C -6.28125 -1.625 -6.5625 -1.6875 -6.828125 -1.8125 C -7.296875 -2.046875 -7.578125 -2.578125 -7.578125 -3.234375 C -7.578125 -4.171875 -7.03125 -4.734375 -6.125 -4.734375 C -5.53125 -4.734375 -5.171875 -4.53125 -4.984375 -4.0625 C -4.859375 -3.765625 -4.8125 -3.390625 -4.796875 -2.65625 L -3.90625 -2.65625 Z M -3.90625 -2.65625 "/>
181
+ </symbol>
182
+ <symbol overflow="visible" id="glyph2-16">
183
+ <path style="stroke:none;" d="M -2.046875 -3.921875 L 0 -3.921875 L 0 -4.984375 L -2.046875 -4.984375 L -2.046875 -6.234375 L -2.984375 -6.234375 L -2.984375 -4.984375 L -8.515625 -4.984375 L -8.515625 -4.203125 L -3.15625 -0.34375 L -2.046875 -0.34375 L -2.046875 -3.921875 Z M -2.984375 -3.921875 L -2.984375 -1.265625 L -6.703125 -3.921875 L -2.984375 -3.921875 Z M -2.984375 -3.921875 "/>
184
+ </symbol>
185
+ </g>
186
+ <clipPath id="clip1">
187
+ <path d="M 0 0 L 505 0 L 505 505 L 0 505 Z M 0 0 "/>
188
+ </clipPath>
189
+ <clipPath id="clip2">
190
+ <path d="M 0 0 L 505 0 L 505 505 L 0 505 Z M 0 0 "/>
191
+ </clipPath>
192
+ <clipPath id="clip3">
193
+ <path d="M 0 0 L 505 0 L 505 505 L 0 505 Z M 0 0 "/>
194
+ </clipPath>
195
+ <clipPath id="clip4">
196
+ <path d="M 0 0 L 505 0 L 505 505 L 0 505 Z M 0 0 "/>
197
+ </clipPath>
198
+ </defs>
199
+ <g id="surface0">
200
+ <rect x="0" y="0" width="504" height="504" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/>
201
+ <g clip-path="url(#clip1)" clip-rule="nonzero">
202
+ <path style="fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 74.398438 426.882812 L 129.253906 426.882812 L 129.253906 59.042969 L 74.398438 59.042969 Z M 74.398438 426.882812 "/>
203
+ <path style="fill-rule:nonzero;fill:rgb(100%,100%,0%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 140.230469 426.882812 L 195.085938 426.882812 L 195.085938 183.359375 L 140.230469 183.359375 Z M 140.230469 426.882812 "/>
204
+ <path style="fill-rule:nonzero;fill:rgb(0%,100%,0%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 206.058594 426.882812 L 260.914062 426.882812 L 260.914062 302.566406 L 206.058594 302.566406 Z M 206.058594 426.882812 "/>
205
+ <path style="fill-rule:nonzero;fill:rgb(0%,100%,100%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 271.886719 426.882812 L 326.742188 426.882812 L 326.742188 373.238281 L 271.886719 373.238281 Z M 271.886719 426.882812 "/>
206
+ <path style="fill-rule:nonzero;fill:rgb(100%,0%,0%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 337.714844 426.882812 L 392.570312 426.882812 L 392.570312 404.746094 L 337.714844 404.746094 Z M 337.714844 426.882812 "/>
207
+ <path style="fill-rule:nonzero;fill:rgb(100%,0%,100%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 403.542969 426.882812 L 458.398438 426.882812 L 458.398438 386.863281 L 403.542969 386.863281 Z M 403.542969 426.882812 "/>
208
+ </g>
209
+ <g clip-path="url(#clip2)" clip-rule="nonzero">
210
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
211
+ <use xlink:href="#glyph0-1" x="81.328125" y="442.955078"/>
212
+ <use xlink:href="#glyph0-2" x="84.664062" y="442.955078"/>
213
+ <use xlink:href="#glyph0-3" x="91.335938" y="442.955078"/>
214
+ <use xlink:href="#glyph0-4" x="94.671875" y="442.955078"/>
215
+ <use xlink:href="#glyph0-5" x="101.34375" y="442.955078"/>
216
+ <use xlink:href="#glyph0-2" x="105.339844" y="442.955078"/>
217
+ <use xlink:href="#glyph0-4" x="112.011719" y="442.955078"/>
218
+ <use xlink:href="#glyph0-3" x="118.683594" y="442.955078"/>
219
+ </g>
220
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
221
+ <use xlink:href="#glyph0-6" x="79.328125" y="457.357422"/>
222
+ <use xlink:href="#glyph0-7" x="87.332031" y="457.357422"/>
223
+ <use xlink:href="#glyph0-8" x="93.332031" y="457.357422"/>
224
+ <use xlink:href="#glyph0-9" x="100.003906" y="457.357422"/>
225
+ <use xlink:href="#glyph0-10" x="102.667969" y="457.357422"/>
226
+ <use xlink:href="#glyph0-5" x="109.339844" y="457.357422"/>
227
+ <use xlink:href="#glyph0-4" x="113.335938" y="457.357422"/>
228
+ <use xlink:href="#glyph0-5" x="120.007812" y="457.357422"/>
229
+ </g>
230
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
231
+ <use xlink:href="#glyph0-11" x="149.15625" y="457.357422"/>
232
+ <use xlink:href="#glyph0-12" x="156.488281" y="457.357422"/>
233
+ <use xlink:href="#glyph0-5" x="159.152344" y="457.357422"/>
234
+ <use xlink:href="#glyph0-4" x="163.148438" y="457.357422"/>
235
+ <use xlink:href="#glyph0-13" x="169.820312" y="457.357422"/>
236
+ <use xlink:href="#glyph0-10" x="173.15625" y="457.357422"/>
237
+ <use xlink:href="#glyph0-7" x="179.828125" y="457.357422"/>
238
+ </g>
239
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
240
+ <use xlink:href="#glyph0-14" x="211.984375" y="457.357422"/>
241
+ <use xlink:href="#glyph0-15" x="220.648438" y="457.357422"/>
242
+ <use xlink:href="#glyph0-5" x="227.320312" y="457.357422"/>
243
+ <use xlink:href="#glyph0-10" x="231.316406" y="457.357422"/>
244
+ <use xlink:href="#glyph0-16" x="237.988281" y="457.357422"/>
245
+ <use xlink:href="#glyph0-4" x="247.984375" y="457.357422"/>
246
+ </g>
247
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
248
+ <use xlink:href="#glyph0-17" x="283.3125" y="457.357422"/>
249
+ <use xlink:href="#glyph0-18" x="291.316406" y="457.357422"/>
250
+ <use xlink:href="#glyph0-13" x="297.988281" y="457.357422"/>
251
+ <use xlink:href="#glyph0-18" x="301.324219" y="457.357422"/>
252
+ <use xlink:href="#glyph0-5" x="307.996094" y="457.357422"/>
253
+ <use xlink:href="#glyph0-12" x="311.992188" y="457.357422"/>
254
+ </g>
255
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
256
+ <use xlink:href="#glyph0-19" x="348.144531" y="457.357422"/>
257
+ <use xlink:href="#glyph0-8" x="357.480469" y="457.357422"/>
258
+ <use xlink:href="#glyph0-4" x="364.152344" y="457.357422"/>
259
+ <use xlink:href="#glyph0-5" x="370.824219" y="457.357422"/>
260
+ <use xlink:href="#glyph0-18" x="374.820312" y="457.357422"/>
261
+ </g>
262
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
263
+ <use xlink:href="#glyph0-20" x="412.972656" y="442.955078"/>
264
+ <use xlink:href="#glyph0-10" x="422.96875" y="442.955078"/>
265
+ <use xlink:href="#glyph0-21" x="429.640625" y="442.955078"/>
266
+ <use xlink:href="#glyph0-12" x="436.3125" y="442.955078"/>
267
+ <use xlink:href="#glyph0-9" x="438.976562" y="442.955078"/>
268
+ <use xlink:href="#glyph0-4" x="441.640625" y="442.955078"/>
269
+ </g>
270
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
271
+ <use xlink:href="#glyph0-21" x="406.472656" y="457.357422"/>
272
+ <use xlink:href="#glyph0-5" x="413.144531" y="457.357422"/>
273
+ <use xlink:href="#glyph0-10" x="417.140625" y="457.357422"/>
274
+ <use xlink:href="#glyph0-22" x="423.8125" y="457.357422"/>
275
+ <use xlink:href="#glyph0-23" x="432.476562" y="457.357422"/>
276
+ <use xlink:href="#glyph0-4" x="438.476562" y="457.357422"/>
277
+ <use xlink:href="#glyph0-5" x="445.148438" y="457.357422"/>
278
+ <use xlink:href="#glyph0-23" x="449.144531" y="457.357422"/>
279
+ </g>
280
+ </g>
281
+ <g clip-path="url(#clip3)" clip-rule="nonzero">
282
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
283
+ <use xlink:href="#glyph1-1" x="120.898438" y="34.116211"/>
284
+ <use xlink:href="#glyph1-2" x="131.299805" y="34.116211"/>
285
+ <use xlink:href="#glyph1-3" x="139.30957" y="34.116211"/>
286
+ <use xlink:href="#glyph1-4" x="147.319336" y="34.116211"/>
287
+ <use xlink:href="#glyph1-5" x="156.121094" y="34.116211"/>
288
+ <use xlink:href="#glyph1-6" x="164.130859" y="34.116211"/>
289
+ <use xlink:href="#glyph1-2" x="168.135742" y="34.116211"/>
290
+ <use xlink:href="#glyph1-7" x="176.145508" y="34.116211"/>
291
+ <use xlink:href="#glyph1-3" x="184.947266" y="34.116211"/>
292
+ <use xlink:href="#glyph1-8" x="192.957031" y="34.116211"/>
293
+ <use xlink:href="#glyph1-5" x="198.561523" y="34.116211"/>
294
+ <use xlink:href="#glyph1-6" x="206.571289" y="34.116211"/>
295
+ <use xlink:href="#glyph1-9" x="210.576172" y="34.116211"/>
296
+ <use xlink:href="#glyph1-10" x="219.37793" y="34.116211"/>
297
+ <use xlink:href="#glyph1-6" x="224.174805" y="34.116211"/>
298
+ <use xlink:href="#glyph1-11" x="228.179688" y="34.116211"/>
299
+ <use xlink:href="#glyph1-5" x="239.387695" y="34.116211"/>
300
+ <use xlink:href="#glyph1-12" x="247.397461" y="34.116211"/>
301
+ <use xlink:href="#glyph1-6" x="256.199219" y="34.116211"/>
302
+ <use xlink:href="#glyph1-12" x="260.204102" y="34.116211"/>
303
+ <use xlink:href="#glyph1-8" x="269.005859" y="34.116211"/>
304
+ <use xlink:href="#glyph1-9" x="274.610352" y="34.116211"/>
305
+ <use xlink:href="#glyph1-11" x="283.412109" y="34.116211"/>
306
+ <use xlink:href="#glyph1-2" x="294.620117" y="34.116211"/>
307
+ <use xlink:href="#glyph1-5" x="302.629883" y="34.116211"/>
308
+ <use xlink:href="#glyph1-8" x="310.639648" y="34.116211"/>
309
+ <use xlink:href="#glyph1-2" x="316.244141" y="34.116211"/>
310
+ <use xlink:href="#glyph1-13" x="324.253906" y="34.116211"/>
311
+ <use xlink:href="#glyph1-6" x="329.050781" y="34.116211"/>
312
+ <use xlink:href="#glyph1-14" x="333.055664" y="34.116211"/>
313
+ <use xlink:href="#glyph1-3" x="345.055664" y="34.116211"/>
314
+ <use xlink:href="#glyph1-8" x="353.06543" y="34.116211"/>
315
+ <use xlink:href="#glyph1-15" x="358.669922" y="34.116211"/>
316
+ <use xlink:href="#glyph1-7" x="366.679688" y="34.116211"/>
317
+ <use xlink:href="#glyph1-6" x="375.481445" y="34.116211"/>
318
+ <use xlink:href="#glyph1-16" x="379.486328" y="34.116211"/>
319
+ <use xlink:href="#glyph1-17" x="387.496094" y="34.116211"/>
320
+ <use xlink:href="#glyph1-18" x="395.505859" y="34.116211"/>
321
+ <use xlink:href="#glyph1-18" x="403.515625" y="34.116211"/>
322
+ </g>
323
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
324
+ <use xlink:href="#glyph2-1" x="13.833984" y="284.800781"/>
325
+ <use xlink:href="#glyph2-2" x="13.833984" y="276.796875"/>
326
+ <use xlink:href="#glyph2-3" x="13.833984" y="270.125"/>
327
+ <use xlink:href="#glyph2-4" x="13.833984" y="266.128906"/>
328
+ <use xlink:href="#glyph2-2" x="13.833984" y="260.128906"/>
329
+ <use xlink:href="#glyph2-5" x="13.833984" y="253.457031"/>
330
+ <use xlink:href="#glyph2-6" x="13.833984" y="246.785156"/>
331
+ <use xlink:href="#glyph2-7" x="13.833984" y="243.449219"/>
332
+ <use xlink:href="#glyph2-8" x="13.833984" y="240.113281"/>
333
+ <use xlink:href="#glyph2-9" x="13.833984" y="231.449219"/>
334
+ <use xlink:href="#glyph2-10" x="13.833984" y="225.449219"/>
335
+ <use xlink:href="#glyph2-11" x="13.833984" y="218.777344"/>
336
+ <use xlink:href="#glyph2-2" x="13.833984" y="212.105469"/>
337
+ </g>
338
+ </g>
339
+ <g clip-path="url(#clip4)" clip-rule="nonzero">
340
+ <path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 59.039062 426.882812 L 59.039062 86.289062 "/>
341
+ <path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 59.039062 426.882812 L 51.839844 426.882812 "/>
342
+ <path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 59.039062 341.734375 L 51.839844 341.734375 "/>
343
+ <path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 59.039062 256.585938 L 51.839844 256.585938 "/>
344
+ <path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 59.039062 171.4375 L 51.839844 171.4375 "/>
345
+ <path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 59.039062 86.289062 L 51.839844 86.289062 "/>
346
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
347
+ <use xlink:href="#glyph2-12" x="42.634766" y="430.382812"/>
348
+ </g>
349
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
350
+ <use xlink:href="#glyph2-13" x="42.634766" y="348.734375"/>
351
+ <use xlink:href="#glyph2-12" x="42.634766" y="342.0625"/>
352
+ </g>
353
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
354
+ <use xlink:href="#glyph2-14" x="42.634766" y="263.585938"/>
355
+ <use xlink:href="#glyph2-12" x="42.634766" y="256.914062"/>
356
+ </g>
357
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
358
+ <use xlink:href="#glyph2-15" x="42.634766" y="178.4375"/>
359
+ <use xlink:href="#glyph2-12" x="42.634766" y="171.765625"/>
360
+ </g>
361
+ <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
362
+ <use xlink:href="#glyph2-16" x="42.634766" y="93.289062"/>
363
+ <use xlink:href="#glyph2-12" x="42.634766" y="86.617188"/>
364
+ </g>
365
+ </g>
366
+ </g>
367
+ </svg>