coupler 0.0.1-java

Sign up to get free protection for your applications and to get access to all the features.
Files changed (258) hide show
  1. data/.document +5 -0
  2. data/.gitmodules +3 -0
  3. data/.rvmrc +1 -0
  4. data/.vimrc +40 -0
  5. data/Gemfile +27 -0
  6. data/Gemfile.lock +71 -0
  7. data/LICENSE +20 -0
  8. data/NOTES +6 -0
  9. data/README.rdoc +18 -0
  10. data/Rakefile +42 -0
  11. data/TODO +11 -0
  12. data/VERSION +1 -0
  13. data/bin/coupler +7 -0
  14. data/db/.gitignore +6 -0
  15. data/db/migrate/001_initial_schema.rb +166 -0
  16. data/db/migrate/002_stub.rb +4 -0
  17. data/db/migrate/003_stub.rb +4 -0
  18. data/db/migrate/004_create_comparisons.rb +28 -0
  19. data/db/migrate/005_move_database_name.rb +19 -0
  20. data/db/migrate/006_upgrade_comparisons.rb +34 -0
  21. data/db/migrate/007_add_which_to_comparisons.rb +23 -0
  22. data/db/migrate/008_add_result_field_to_transformations.rb +33 -0
  23. data/db/migrate/009_add_generated_flag_to_fields.rb +13 -0
  24. data/db/migrate/010_create_imports.rb +24 -0
  25. data/db/migrate/011_add_primary_key_type.rb +13 -0
  26. data/db/migrate/012_add_transformed_with_to_resources.rb +13 -0
  27. data/db/migrate/013_add_run_count_to_scenarios.rb +13 -0
  28. data/db/migrate/014_add_last_accessed_at_to_some_tables.rb +13 -0
  29. data/db/migrate/015_add_run_number_to_results.rb +15 -0
  30. data/db/migrate/016_fix_scenario_run_count.rb +27 -0
  31. data/db/migrate/017_rename_comparison_columns.rb +14 -0
  32. data/db/migrate/018_fix_scenario_linkage_type.rb +8 -0
  33. data/db/migrate/019_add_columns_to_imports.rb +24 -0
  34. data/db/migrate/020_rename_import_columns.rb +12 -0
  35. data/db/migrate/021_add_fields_to_connections.rb +15 -0
  36. data/db/migrate/022_remove_database_name_from_resources.rb +11 -0
  37. data/features/connections.feature +28 -0
  38. data/features/matchers.feature +35 -0
  39. data/features/projects.feature +11 -0
  40. data/features/resources.feature +62 -0
  41. data/features/scenarios.feature +45 -0
  42. data/features/step_definitions/coupler_steps.rb +145 -0
  43. data/features/step_definitions/matchers_steps.rb +26 -0
  44. data/features/step_definitions/resources_steps.rb +12 -0
  45. data/features/step_definitions/scenarios_steps.rb +7 -0
  46. data/features/step_definitions/transformations_steps.rb +3 -0
  47. data/features/support/env.rb +128 -0
  48. data/features/transformations.feature +22 -0
  49. data/features/wizard.feature +10 -0
  50. data/gfx/coupler-header.svg +213 -0
  51. data/gfx/coupler-sidebar.svg +656 -0
  52. data/gfx/coupler.svg +184 -0
  53. data/gfx/icon.svg +75 -0
  54. data/lib/coupler/base.rb +63 -0
  55. data/lib/coupler/config.rb +128 -0
  56. data/lib/coupler/data_uploader.rb +20 -0
  57. data/lib/coupler/database.rb +31 -0
  58. data/lib/coupler/extensions/connections.rb +57 -0
  59. data/lib/coupler/extensions/exceptions.rb +58 -0
  60. data/lib/coupler/extensions/imports.rb +43 -0
  61. data/lib/coupler/extensions/jobs.rb +21 -0
  62. data/lib/coupler/extensions/matchers.rb +64 -0
  63. data/lib/coupler/extensions/projects.rb +62 -0
  64. data/lib/coupler/extensions/resources.rb +89 -0
  65. data/lib/coupler/extensions/results.rb +100 -0
  66. data/lib/coupler/extensions/scenarios.rb +50 -0
  67. data/lib/coupler/extensions/transformations.rb +70 -0
  68. data/lib/coupler/extensions/transformers.rb +58 -0
  69. data/lib/coupler/extensions.rb +16 -0
  70. data/lib/coupler/helpers.rb +121 -0
  71. data/lib/coupler/import_buffer.rb +48 -0
  72. data/lib/coupler/logger.rb +16 -0
  73. data/lib/coupler/models/common_model.rb +104 -0
  74. data/lib/coupler/models/comparison.rb +166 -0
  75. data/lib/coupler/models/connection.rb +59 -0
  76. data/lib/coupler/models/field.rb +55 -0
  77. data/lib/coupler/models/import.rb +238 -0
  78. data/lib/coupler/models/job.rb +42 -0
  79. data/lib/coupler/models/jobify.rb +17 -0
  80. data/lib/coupler/models/matcher.rb +36 -0
  81. data/lib/coupler/models/project.rb +40 -0
  82. data/lib/coupler/models/resource.rb +287 -0
  83. data/lib/coupler/models/result.rb +92 -0
  84. data/lib/coupler/models/scenario/runner.rb +357 -0
  85. data/lib/coupler/models/scenario.rb +115 -0
  86. data/lib/coupler/models/transformation.rb +117 -0
  87. data/lib/coupler/models/transformer/runner.rb +28 -0
  88. data/lib/coupler/models/transformer.rb +110 -0
  89. data/lib/coupler/models.rb +30 -0
  90. data/lib/coupler/runner.rb +76 -0
  91. data/lib/coupler/scheduler.rb +56 -0
  92. data/lib/coupler.rb +34 -0
  93. data/log/.gitignore +1 -0
  94. data/misc/README +5 -0
  95. data/misc/jruby-json.license +57 -0
  96. data/misc/rack-flash.license +22 -0
  97. data/script/dbconsole.rb +5 -0
  98. data/src/edu/vanderbilt/coupler/Main.java +116 -0
  99. data/src/edu/vanderbilt/coupler/jruby.properties +1 -0
  100. data/tasks/annotations.rake +84 -0
  101. data/tasks/db.rake +120 -0
  102. data/tasks/environment.rake +12 -0
  103. data/tasks/jeweler.rake +43 -0
  104. data/tasks/package.rake +58 -0
  105. data/tasks/rdoc.rake +13 -0
  106. data/tasks/test.rake +63 -0
  107. data/tasks/vendor.rake +43 -0
  108. data/test/README.txt +6 -0
  109. data/test/config.yml +9 -0
  110. data/test/coupler/models/test_import.rb +221 -0
  111. data/test/factories.rb +91 -0
  112. data/test/fixtures/duplicate-keys.csv +5 -0
  113. data/test/fixtures/no-headers.csv +50 -0
  114. data/test/fixtures/people.csv +51 -0
  115. data/test/fixtures/varying-row-size.csv +4 -0
  116. data/test/helper.rb +156 -0
  117. data/test/integration/extensions/test_connections.rb +80 -0
  118. data/test/integration/extensions/test_imports.rb +94 -0
  119. data/test/integration/extensions/test_jobs.rb +52 -0
  120. data/test/integration/extensions/test_matchers.rb +134 -0
  121. data/test/integration/extensions/test_projects.rb +82 -0
  122. data/test/integration/extensions/test_resources.rb +150 -0
  123. data/test/integration/extensions/test_results.rb +89 -0
  124. data/test/integration/extensions/test_scenarios.rb +88 -0
  125. data/test/integration/extensions/test_transformations.rb +113 -0
  126. data/test/integration/extensions/test_transformers.rb +80 -0
  127. data/test/integration/test_field.rb +45 -0
  128. data/test/integration/test_import.rb +78 -0
  129. data/test/integration/test_running_scenarios.rb +379 -0
  130. data/test/integration/test_transformation.rb +56 -0
  131. data/test/integration/test_transforming.rb +154 -0
  132. data/test/table_sets.rb +76 -0
  133. data/test/unit/models/test_common_model.rb +130 -0
  134. data/test/unit/models/test_comparison.rb +619 -0
  135. data/test/unit/models/test_connection.rb +115 -0
  136. data/test/unit/models/test_field.rb +99 -0
  137. data/test/unit/models/test_import.rb +130 -0
  138. data/test/unit/models/test_job.rb +115 -0
  139. data/test/unit/models/test_matcher.rb +82 -0
  140. data/test/unit/models/test_project.rb +102 -0
  141. data/test/unit/models/test_resource.rb +564 -0
  142. data/test/unit/models/test_result.rb +90 -0
  143. data/test/unit/models/test_scenario.rb +199 -0
  144. data/test/unit/models/test_transformation.rb +193 -0
  145. data/test/unit/models/test_transformer.rb +188 -0
  146. data/test/unit/test_base.rb +60 -0
  147. data/test/unit/test_data_uploader.rb +27 -0
  148. data/test/unit/test_database.rb +23 -0
  149. data/test/unit/test_helpers.rb +58 -0
  150. data/test/unit/test_logger.rb +10 -0
  151. data/test/unit/test_models.rb +12 -0
  152. data/test/unit/test_runner.rb +76 -0
  153. data/test/unit/test_scheduler.rb +66 -0
  154. data/uploads/.gitignore +2 -0
  155. data/vendor/java/.gitignore +5 -0
  156. data/webroot/public/css/960.css +1 -0
  157. data/webroot/public/css/dataTables.css +1057 -0
  158. data/webroot/public/css/jquery-ui.css +572 -0
  159. data/webroot/public/css/jquery.treeview.css +68 -0
  160. data/webroot/public/css/reset.css +1 -0
  161. data/webroot/public/css/style.css +504 -0
  162. data/webroot/public/css/text.css +1 -0
  163. data/webroot/public/favicon.ico +0 -0
  164. data/webroot/public/images/12_col.gif +0 -0
  165. data/webroot/public/images/16_col.gif +0 -0
  166. data/webroot/public/images/add.png +0 -0
  167. data/webroot/public/images/ajax-loader.gif +0 -0
  168. data/webroot/public/images/cog.png +0 -0
  169. data/webroot/public/images/coupler.png +0 -0
  170. data/webroot/public/images/foo.png +0 -0
  171. data/webroot/public/images/hammer.png +0 -0
  172. data/webroot/public/images/header.png +0 -0
  173. data/webroot/public/images/home.gif +0 -0
  174. data/webroot/public/images/jobs.gif +0 -0
  175. data/webroot/public/images/sidebar-bottom.png +0 -0
  176. data/webroot/public/images/sidebar.png +0 -0
  177. data/webroot/public/images/treeview-default-line.gif +0 -0
  178. data/webroot/public/images/treeview-default.gif +0 -0
  179. data/webroot/public/images/ui-anim_basic_16x16.gif +0 -0
  180. data/webroot/public/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  181. data/webroot/public/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
  182. data/webroot/public/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  183. data/webroot/public/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  184. data/webroot/public/images/ui-bg_glass_75_dadada_1x400.png +0 -0
  185. data/webroot/public/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  186. data/webroot/public/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  187. data/webroot/public/images/ui-bg_highlight-hard_30_565356_1x100.png +0 -0
  188. data/webroot/public/images/ui-bg_highlight-hard_75_888588_1x100.png +0 -0
  189. data/webroot/public/images/ui-bg_highlight-soft_30_6e3b3a_1x100.png +0 -0
  190. data/webroot/public/images/ui-bg_highlight-soft_35_8e8b8e_1x100.png +0 -0
  191. data/webroot/public/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  192. data/webroot/public/images/ui-icons_222222_256x240.png +0 -0
  193. data/webroot/public/images/ui-icons_2e83ff_256x240.png +0 -0
  194. data/webroot/public/images/ui-icons_454545_256x240.png +0 -0
  195. data/webroot/public/images/ui-icons_888888_256x240.png +0 -0
  196. data/webroot/public/images/ui-icons_cd0a0a_256x240.png +0 -0
  197. data/webroot/public/images/ui-icons_ffffff_256x240.png +0 -0
  198. data/webroot/public/js/ajaxupload.js +673 -0
  199. data/webroot/public/js/application.js +40 -0
  200. data/webroot/public/js/jquery-ui.combobox.js +98 -0
  201. data/webroot/public/js/jquery-ui.js +9867 -0
  202. data/webroot/public/js/jquery-ui.min.js +559 -0
  203. data/webroot/public/js/jquery.dataTables.min.js +587 -0
  204. data/webroot/public/js/jquery.min.js +154 -0
  205. data/webroot/public/js/jquery.timeago.js +140 -0
  206. data/webroot/public/js/jquery.tooltip.min.js +19 -0
  207. data/webroot/public/js/jquery.treeview.min.js +15 -0
  208. data/webroot/public/js/resource.js +11 -0
  209. data/webroot/public/js/results.js +56 -0
  210. data/webroot/public/js/transformations.js +95 -0
  211. data/webroot/views/connections/index.erb +5 -0
  212. data/webroot/views/connections/list.erb +34 -0
  213. data/webroot/views/connections/new.erb +55 -0
  214. data/webroot/views/connections/show.erb +36 -0
  215. data/webroot/views/imports/edit.erb +60 -0
  216. data/webroot/views/imports/form.erb +81 -0
  217. data/webroot/views/imports/new.erb +89 -0
  218. data/webroot/views/index.erb +12 -0
  219. data/webroot/views/jobs/index.erb +7 -0
  220. data/webroot/views/jobs/list.erb +24 -0
  221. data/webroot/views/layout.erb +38 -0
  222. data/webroot/views/matchers/form.erb +250 -0
  223. data/webroot/views/matchers/list.erb +32 -0
  224. data/webroot/views/projects/form.erb +14 -0
  225. data/webroot/views/projects/index.erb +96 -0
  226. data/webroot/views/projects/show.erb +24 -0
  227. data/webroot/views/resources/edit.erb +88 -0
  228. data/webroot/views/resources/index.erb +5 -0
  229. data/webroot/views/resources/list.erb +27 -0
  230. data/webroot/views/resources/new.erb +121 -0
  231. data/webroot/views/resources/show.erb +86 -0
  232. data/webroot/views/resources/transform.erb +2 -0
  233. data/webroot/views/results/csv.erb +12 -0
  234. data/webroot/views/results/details.erb +15 -0
  235. data/webroot/views/results/index.erb +2 -0
  236. data/webroot/views/results/list.erb +22 -0
  237. data/webroot/views/results/record.erb +24 -0
  238. data/webroot/views/results/show.erb +68 -0
  239. data/webroot/views/scenarios/index.erb +5 -0
  240. data/webroot/views/scenarios/list.erb +20 -0
  241. data/webroot/views/scenarios/new.erb +99 -0
  242. data/webroot/views/scenarios/run.erb +2 -0
  243. data/webroot/views/scenarios/show.erb +50 -0
  244. data/webroot/views/sidebar.erb +106 -0
  245. data/webroot/views/transformations/create.erb +115 -0
  246. data/webroot/views/transformations/for.erb +16 -0
  247. data/webroot/views/transformations/index.erb +2 -0
  248. data/webroot/views/transformations/list.erb +29 -0
  249. data/webroot/views/transformations/new.erb +126 -0
  250. data/webroot/views/transformations/preview.erb +46 -0
  251. data/webroot/views/transformers/edit.erb +6 -0
  252. data/webroot/views/transformers/form.erb +58 -0
  253. data/webroot/views/transformers/index.erb +2 -0
  254. data/webroot/views/transformers/list.erb +25 -0
  255. data/webroot/views/transformers/new.erb +5 -0
  256. data/webroot/views/transformers/preview.erb +23 -0
  257. data/webroot/views/transformers/show.erb +0 -0
  258. metadata +558 -0
@@ -0,0 +1,656 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
6
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
7
+ xmlns:cc="http://creativecommons.org/ns#"
8
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
9
+ xmlns:svg="http://www.w3.org/2000/svg"
10
+ xmlns="http://www.w3.org/2000/svg"
11
+ xmlns:xlink="http://www.w3.org/1999/xlink"
12
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
13
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
14
+ width="180"
15
+ height="444"
16
+ id="svg3880"
17
+ version="1.1"
18
+ inkscape:version="0.48.0 r9654"
19
+ sodipodi:docname="new-coupler-sidebar.svg"
20
+ inkscape:export-filename="/home/stephej1/Projects/coupler/webroot/public/images/sidebar-bottom.png"
21
+ inkscape:export-xdpi="90"
22
+ inkscape:export-ydpi="90">
23
+ <defs
24
+ id="defs3882">
25
+ <linearGradient
26
+ id="linearGradient5226">
27
+ <stop
28
+ style="stop-color:#383538;stop-opacity:1;"
29
+ offset="0"
30
+ id="stop5228" />
31
+ <stop
32
+ style="stop-color:#7e7b7e;stop-opacity:1;"
33
+ offset="1"
34
+ id="stop5230" />
35
+ </linearGradient>
36
+ <linearGradient
37
+ id="linearGradient4136">
38
+ <stop
39
+ style="stop-color:#ffffff;stop-opacity:1;"
40
+ offset="0"
41
+ id="stop4138" />
42
+ <stop
43
+ style="stop-color:#ffffff;stop-opacity:0;"
44
+ offset="1"
45
+ id="stop4140" />
46
+ </linearGradient>
47
+ <linearGradient
48
+ id="linearGradient4118">
49
+ <stop
50
+ style="stop-color:#ffffff;stop-opacity:1;"
51
+ offset="0"
52
+ id="stop4120" />
53
+ <stop
54
+ style="stop-color:#ffffff;stop-opacity:0;"
55
+ offset="1"
56
+ id="stop4122" />
57
+ </linearGradient>
58
+ <linearGradient
59
+ id="linearGradient4036"
60
+ osb:paint="solid">
61
+ <stop
62
+ style="stop-color:#383538;stop-opacity:1;"
63
+ offset="0"
64
+ id="stop4038" />
65
+ </linearGradient>
66
+ <inkscape:perspective
67
+ sodipodi:type="inkscape:persp3d"
68
+ inkscape:vp_x="0 : 526.18109 : 1"
69
+ inkscape:vp_y="0 : 1000 : 0"
70
+ inkscape:vp_z="744.09448 : 526.18109 : 1"
71
+ inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
72
+ id="perspective3888" />
73
+ <inkscape:perspective
74
+ id="perspective3875"
75
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
76
+ inkscape:vp_z="1 : 0.5 : 1"
77
+ inkscape:vp_y="0 : 1000 : 0"
78
+ inkscape:vp_x="0 : 0.5 : 1"
79
+ sodipodi:type="inkscape:persp3d" />
80
+ <inkscape:perspective
81
+ id="perspective3907"
82
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
83
+ inkscape:vp_z="1 : 0.5 : 1"
84
+ inkscape:vp_y="0 : 1000 : 0"
85
+ inkscape:vp_x="0 : 0.5 : 1"
86
+ sodipodi:type="inkscape:persp3d" />
87
+ <inkscape:perspective
88
+ id="perspective3929"
89
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
90
+ inkscape:vp_z="1 : 0.5 : 1"
91
+ inkscape:vp_y="0 : 1000 : 0"
92
+ inkscape:vp_x="0 : 0.5 : 1"
93
+ sodipodi:type="inkscape:persp3d" />
94
+ <inkscape:perspective
95
+ id="perspective3974"
96
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
97
+ inkscape:vp_z="1 : 0.5 : 1"
98
+ inkscape:vp_y="0 : 1000 : 0"
99
+ inkscape:vp_x="0 : 0.5 : 1"
100
+ sodipodi:type="inkscape:persp3d" />
101
+ <inkscape:perspective
102
+ id="perspective2840"
103
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
104
+ inkscape:vp_z="1 : 0.5 : 1"
105
+ inkscape:vp_y="0 : 1000 : 0"
106
+ inkscape:vp_x="0 : 0.5 : 1"
107
+ sodipodi:type="inkscape:persp3d" />
108
+ <inkscape:perspective
109
+ id="perspective2840-8"
110
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
111
+ inkscape:vp_z="1 : 0.5 : 1"
112
+ inkscape:vp_y="0 : 1000 : 0"
113
+ inkscape:vp_x="0 : 0.5 : 1"
114
+ sodipodi:type="inkscape:persp3d" />
115
+ <inkscape:perspective
116
+ id="perspective3781"
117
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
118
+ inkscape:vp_z="1 : 0.5 : 1"
119
+ inkscape:vp_y="0 : 1000 : 0"
120
+ inkscape:vp_x="0 : 0.5 : 1"
121
+ sodipodi:type="inkscape:persp3d" />
122
+ <inkscape:perspective
123
+ id="perspective3803"
124
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
125
+ inkscape:vp_z="1 : 0.5 : 1"
126
+ inkscape:vp_y="0 : 1000 : 0"
127
+ inkscape:vp_x="0 : 0.5 : 1"
128
+ sodipodi:type="inkscape:persp3d" />
129
+ <inkscape:perspective
130
+ id="perspective3831"
131
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
132
+ inkscape:vp_z="1 : 0.5 : 1"
133
+ inkscape:vp_y="0 : 1000 : 0"
134
+ inkscape:vp_x="0 : 0.5 : 1"
135
+ sodipodi:type="inkscape:persp3d" />
136
+ <inkscape:perspective
137
+ id="perspective3881"
138
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
139
+ inkscape:vp_z="1 : 0.5 : 1"
140
+ inkscape:vp_y="0 : 1000 : 0"
141
+ inkscape:vp_x="0 : 0.5 : 1"
142
+ sodipodi:type="inkscape:persp3d" />
143
+ <linearGradient
144
+ inkscape:collect="always"
145
+ xlink:href="#linearGradient4136"
146
+ id="linearGradient4142"
147
+ x1="2.7719207e-07"
148
+ y1="400"
149
+ x2="120"
150
+ y2="400"
151
+ gradientUnits="userSpaceOnUse" />
152
+ <linearGradient
153
+ inkscape:collect="always"
154
+ xlink:href="#linearGradient4136"
155
+ id="linearGradient4144"
156
+ gradientUnits="userSpaceOnUse"
157
+ x1="2.7719207e-07"
158
+ y1="400"
159
+ x2="120"
160
+ y2="400" />
161
+ <linearGradient
162
+ inkscape:collect="always"
163
+ xlink:href="#linearGradient4136"
164
+ id="linearGradient4146"
165
+ gradientUnits="userSpaceOnUse"
166
+ x1="2.7719207e-07"
167
+ y1="400"
168
+ x2="120"
169
+ y2="400" />
170
+ <linearGradient
171
+ inkscape:collect="always"
172
+ xlink:href="#linearGradient4136"
173
+ id="linearGradient4148"
174
+ gradientUnits="userSpaceOnUse"
175
+ x1="2.7719207e-07"
176
+ y1="400"
177
+ x2="120"
178
+ y2="400" />
179
+ <linearGradient
180
+ inkscape:collect="always"
181
+ xlink:href="#linearGradient4136"
182
+ id="linearGradient4151"
183
+ gradientUnits="userSpaceOnUse"
184
+ x1="2.7719207e-07"
185
+ y1="400"
186
+ x2="120"
187
+ y2="400"
188
+ gradientTransform="matrix(0.98333333,0,0,0.98333333,-2.314021,-1.684737)" />
189
+ <linearGradient
190
+ inkscape:collect="always"
191
+ xlink:href="#linearGradient4136"
192
+ id="linearGradient4155"
193
+ gradientUnits="userSpaceOnUse"
194
+ x1="2.7719207e-07"
195
+ y1="400"
196
+ x2="120"
197
+ y2="400"
198
+ gradientTransform="matrix(-0.52853831,-0.8290653,0.8290653,-0.5285383,-312.71293,616.42485)" />
199
+ <linearGradient
200
+ inkscape:collect="always"
201
+ xlink:href="#linearGradient4136"
202
+ id="linearGradient4158"
203
+ gradientUnits="userSpaceOnUse"
204
+ gradientTransform="matrix(-0.53746166,-0.8429681,0.84306247,-0.5374015,-315.63705,614.53515)"
205
+ x1="-31.391844"
206
+ y1="432.28052"
207
+ x2="-9.6496544"
208
+ y2="446.14142" />
209
+ <clipPath
210
+ clipPathUnits="userSpaceOnUse"
211
+ id="clipPath5955">
212
+ <rect
213
+ style="opacity:0.76000001;fill:#1d1e1e;fill-opacity:0.99607843;fill-rule:nonzero;stroke:none"
214
+ id="rect5957"
215
+ width="151.82639"
216
+ height="369.90186"
217
+ x="608.29816"
218
+ y="-725.5611"
219
+ transform="matrix(0,1,-1,0,0,0)" />
220
+ </clipPath>
221
+ <linearGradient
222
+ inkscape:collect="always"
223
+ xlink:href="#linearGradient4136-7"
224
+ id="linearGradient4158-3"
225
+ gradientUnits="userSpaceOnUse"
226
+ gradientTransform="matrix(-0.53746166,-0.8429681,0.84306247,-0.5374015,-315.63705,564.53515)"
227
+ x1="-31.391844"
228
+ y1="432.28052"
229
+ x2="-9.6496544"
230
+ y2="446.14142" />
231
+ <linearGradient
232
+ id="linearGradient4136-7">
233
+ <stop
234
+ style="stop-color:#ffffff;stop-opacity:1;"
235
+ offset="0"
236
+ id="stop4138-8" />
237
+ <stop
238
+ style="stop-color:#ffffff;stop-opacity:0;"
239
+ offset="1"
240
+ id="stop4140-2" />
241
+ </linearGradient>
242
+ <linearGradient
243
+ inkscape:collect="always"
244
+ xlink:href="#linearGradient4136-1"
245
+ id="linearGradient4157-7"
246
+ gradientUnits="userSpaceOnUse"
247
+ gradientTransform="matrix(-0.53746166,-0.8429681,0.84306247,-0.5374015,-315.63705,614.53515)"
248
+ x1="-31.391844"
249
+ y1="432.28052"
250
+ x2="-9.6496544"
251
+ y2="446.14142" />
252
+ <linearGradient
253
+ id="linearGradient4136-1">
254
+ <stop
255
+ style="stop-color:#ffffff;stop-opacity:1;"
256
+ offset="0"
257
+ id="stop4138-3" />
258
+ <stop
259
+ style="stop-color:#ffffff;stop-opacity:0;"
260
+ offset="1"
261
+ id="stop4140-8" />
262
+ </linearGradient>
263
+ <filter
264
+ inkscape:collect="always"
265
+ id="filter3988"
266
+ x="-0.035294704"
267
+ width="1.0705894"
268
+ y="-0.1999812"
269
+ height="1.3999624"
270
+ color-interpolation-filters="sRGB">
271
+ <feGaussianBlur
272
+ inkscape:collect="always"
273
+ stdDeviation="2.4999145"
274
+ id="feGaussianBlur3990" />
275
+ </filter>
276
+ <linearGradient
277
+ id="linearGradient4136-1-4">
278
+ <stop
279
+ style="stop-color:#ffffff;stop-opacity:1;"
280
+ offset="0"
281
+ id="stop4138-3-1" />
282
+ <stop
283
+ style="stop-color:#ffffff;stop-opacity:0;"
284
+ offset="1"
285
+ id="stop4140-8-7" />
286
+ </linearGradient>
287
+ <linearGradient
288
+ id="linearGradient4136-1-8">
289
+ <stop
290
+ style="stop-color:#ffffff;stop-opacity:1;"
291
+ offset="0"
292
+ id="stop4138-3-2" />
293
+ <stop
294
+ style="stop-color:#ffffff;stop-opacity:0;"
295
+ offset="1"
296
+ id="stop4140-8-9" />
297
+ </linearGradient>
298
+ <linearGradient
299
+ inkscape:collect="always"
300
+ xlink:href="#linearGradient4136-1-8"
301
+ id="linearGradient4462"
302
+ gradientUnits="userSpaceOnUse"
303
+ gradientTransform="translate(62.682539,388.88718)"
304
+ x1="180.87364"
305
+ y1="143.84143"
306
+ x2="180.87364"
307
+ y2="114.97281" />
308
+ <linearGradient
309
+ inkscape:collect="always"
310
+ xlink:href="#linearGradient4136-1"
311
+ id="linearGradient4530"
312
+ gradientUnits="userSpaceOnUse"
313
+ gradientTransform="translate(-123.39521,568.32937)"
314
+ x1="180.87364"
315
+ y1="143.84143"
316
+ x2="180.87364"
317
+ y2="114.97281" />
318
+ <linearGradient
319
+ id="linearGradient4136-1-5">
320
+ <stop
321
+ style="stop-color:#ffffff;stop-opacity:1;"
322
+ offset="0"
323
+ id="stop4138-3-8" />
324
+ <stop
325
+ style="stop-color:#ffffff;stop-opacity:0;"
326
+ offset="1"
327
+ id="stop4140-8-5" />
328
+ </linearGradient>
329
+ <filter
330
+ inkscape:collect="always"
331
+ id="filter5065">
332
+ <feGaussianBlur
333
+ inkscape:collect="always"
334
+ stdDeviation="1.4450065"
335
+ id="feGaussianBlur5067" />
336
+ </filter>
337
+ <linearGradient
338
+ inkscape:collect="always"
339
+ xlink:href="#linearGradient4136-1-7"
340
+ id="linearGradient4530-2"
341
+ gradientUnits="userSpaceOnUse"
342
+ gradientTransform="translate(104.13453,332.43456)"
343
+ x1="180.87364"
344
+ y1="143.84143"
345
+ x2="180.87364"
346
+ y2="114.97281" />
347
+ <linearGradient
348
+ id="linearGradient4136-1-7">
349
+ <stop
350
+ style="stop-color:#ffffff;stop-opacity:1;"
351
+ offset="0"
352
+ id="stop4138-3-0" />
353
+ <stop
354
+ style="stop-color:#ffffff;stop-opacity:0;"
355
+ offset="1"
356
+ id="stop4140-8-3" />
357
+ </linearGradient>
358
+ <filter
359
+ inkscape:collect="always"
360
+ id="filter3988-62"
361
+ x="-0.035294704"
362
+ width="1.0705894"
363
+ y="-0.1999812"
364
+ height="1.3999624"
365
+ color-interpolation-filters="sRGB">
366
+ <feGaussianBlur
367
+ inkscape:collect="always"
368
+ stdDeviation="2.4999145"
369
+ id="feGaussianBlur3990-4" />
370
+ </filter>
371
+ <filter
372
+ color-interpolation-filters="sRGB"
373
+ inkscape:collect="always"
374
+ id="filter5065-7">
375
+ <feGaussianBlur
376
+ inkscape:collect="always"
377
+ stdDeviation="1.4450065"
378
+ id="feGaussianBlur5067-2" />
379
+ </filter>
380
+ <linearGradient
381
+ inkscape:collect="always"
382
+ xlink:href="#linearGradient4136-1-8"
383
+ id="linearGradient5129"
384
+ gradientUnits="userSpaceOnUse"
385
+ gradientTransform="translate(62.682539,388.88718)"
386
+ x1="180.87364"
387
+ y1="143.84143"
388
+ x2="180.87364"
389
+ y2="114.97281" />
390
+ <linearGradient
391
+ inkscape:collect="always"
392
+ xlink:href="#linearGradient4136-1-7"
393
+ id="linearGradient5139"
394
+ gradientUnits="userSpaceOnUse"
395
+ gradientTransform="translate(104.13453,332.43456)"
396
+ x1="180.87364"
397
+ y1="143.84143"
398
+ x2="180.87364"
399
+ y2="114.97281" />
400
+ <linearGradient
401
+ inkscape:collect="always"
402
+ xlink:href="#linearGradient4136-1-7"
403
+ id="linearGradient5147"
404
+ gradientUnits="userSpaceOnUse"
405
+ gradientTransform="translate(104.13453,332.43456)"
406
+ x1="180.87364"
407
+ y1="143.84143"
408
+ x2="180.87364"
409
+ y2="114.97281" />
410
+ <linearGradient
411
+ inkscape:collect="always"
412
+ xlink:href="#linearGradient4136-1-1"
413
+ id="linearGradient4530-6"
414
+ gradientUnits="userSpaceOnUse"
415
+ gradientTransform="translate(84.956423,351.52508)"
416
+ x1="180.87364"
417
+ y1="143.84143"
418
+ x2="180.87364"
419
+ y2="114.97281" />
420
+ <linearGradient
421
+ id="linearGradient4136-1-1">
422
+ <stop
423
+ style="stop-color:#ffffff;stop-opacity:1;"
424
+ offset="0"
425
+ id="stop4138-3-89" />
426
+ <stop
427
+ style="stop-color:#ffffff;stop-opacity:0;"
428
+ offset="1"
429
+ id="stop4140-8-1" />
430
+ </linearGradient>
431
+ <linearGradient
432
+ inkscape:collect="always"
433
+ xlink:href="#linearGradient5226"
434
+ id="linearGradient5252"
435
+ x1="658.27625"
436
+ y1="130.29443"
437
+ x2="763.63519"
438
+ y2="202.5405"
439
+ gradientUnits="userSpaceOnUse" />
440
+ </defs>
441
+ <sodipodi:namedview
442
+ id="base"
443
+ pagecolor="#ffffff"
444
+ bordercolor="#666666"
445
+ borderopacity="1.0"
446
+ inkscape:pageopacity="0.0"
447
+ inkscape:pageshadow="2"
448
+ inkscape:zoom="2"
449
+ inkscape:cx="225.5831"
450
+ inkscape:cy="216.69457"
451
+ inkscape:document-units="px"
452
+ inkscape:current-layer="layer2"
453
+ showgrid="false"
454
+ inkscape:window-width="1920"
455
+ inkscape:window-height="1000"
456
+ inkscape:window-x="0"
457
+ inkscape:window-y="26"
458
+ inkscape:window-maximized="1"
459
+ inkscape:snap-page="true"
460
+ inkscape:snap-grids="true"
461
+ inkscape:snap-to-guides="true"
462
+ fit-margin-top="0"
463
+ fit-margin-left="0"
464
+ fit-margin-right="0"
465
+ fit-margin-bottom="0" />
466
+ <metadata
467
+ id="metadata3885">
468
+ <rdf:RDF>
469
+ <cc:Work
470
+ rdf:about="">
471
+ <dc:format>image/svg+xml</dc:format>
472
+ <dc:type
473
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
474
+ <dc:title></dc:title>
475
+ </cc:Work>
476
+ </rdf:RDF>
477
+ </metadata>
478
+ <g
479
+ inkscape:groupmode="layer"
480
+ id="layer3"
481
+ inkscape:label="Layer 3"
482
+ style="display:inline"
483
+ transform="translate(4.5,-306)">
484
+ <path
485
+ style="display:inline;opacity:0.75000000000000000;fill:#000000;fill-opacity:1;stroke:none;filter:url(#filter5065)"
486
+ d="m -1.0319794,302.53197 0,80 4,20 c 0,0 0.74653,5.5571 2.34375,8.0625 2.85554,4.47921 7.7111304,6.92998 12.6562504,6.9375 l 139.624999,0 c 0.1255,0.003 0.24934,-1.9e-4 0.375,0 2.76601,0.004 5.5571,-0.74653 8.0625,-2.34375 4.47921,-2.85554 6.92999,-7.71113 6.9375,-12.65625 l 0,-20 0,-60 0,-20 -4,0 -165.9999994,0 -4,0 z"
487
+ id="rect2995-1-8-7"
488
+ inkscape:connector-curvature="0"
489
+ transform="translate(2e-7,10e-6)" />
490
+ <path
491
+ style="opacity:0.75;fill:#000000;fill-opacity:1;stroke:none;display:inline;filter:url(#filter5065-7)"
492
+ d="m 201.49774,368.99935 0,80 4,20 c 0,0 0.74653,5.5571 2.34375,8.0625 2.85554,4.47921 7.71113,6.92998 12.65625,6.9375 l 139.625,0 c 0.1255,0.003 0.24934,-1.9e-4 0.375,0 2.76601,0.004 5.5571,-0.74653 8.0625,-2.34375 4.47921,-2.85554 6.92999,-7.71113 6.9375,-12.65625 l 0,-20 0,-60 0,-20 -4,0 -166,0 -4,0 z"
493
+ id="rect2995-1-8-7-8"
494
+ inkscape:connector-curvature="0"
495
+ transform="matrix(1,0,0,-1,-202.52924,1122.4683)" />
496
+ <path
497
+ style="fill:#b48180;fill-opacity:1;stroke:none;display:inline"
498
+ d="m -4.4995144,750 0,-80 3.99999998,-20 c 0,0 0.74653,-5.5571 2.34375002,-8.0625 2.85554,-4.47921 7.71113,-6.92998 12.6562504,-6.9375 l 139.624994,0 c 0.1255,-0.003 0.24934,1.9e-4 0.375,0 2.76601,-0.004 5.5571,0.74653 8.0625,2.34375 4.47921,2.85554 6.92999,7.71113 6.9375,12.65625 l 0,20 0,60 0,20 -4,0 -165.99999442,0 -3.99999998,0 z"
499
+ id="rect2995-1-8-2"
500
+ inkscape:connector-curvature="0" />
501
+ <path
502
+ style="fill:#6e3b3a;fill-opacity:1;stroke:none;display:inline"
503
+ d="m -4.4995144,749.99965 0,-80 169.9999944,0 0,80 -169.9999944,0 z"
504
+ id="rect2995-1-0"
505
+ inkscape:connector-curvature="0" />
506
+ <path
507
+ sodipodi:type="arc"
508
+ style="fill:#6e3b3a;fill-opacity:1;stroke:none;display:inline"
509
+ id="path3104-0-2-3"
510
+ sodipodi:cx="15"
511
+ sodipodi:cy="401.75"
512
+ sodipodi:rx="15"
513
+ sodipodi:ry="15"
514
+ d="m 30,401.75 a 15,15 0 1 1 -30,0 15,15 0 1 1 30,0 z"
515
+ transform="matrix(-0.53749659,0.84311726,0.84311726,0.53749658,-180.15939,441.41365)" />
516
+ <rect
517
+ style="fill:#6e3b3a;fill-opacity:1;stroke:none;display:inline"
518
+ id="rect3898-2-5"
519
+ width="140"
520
+ height="30"
521
+ x="10.50048"
522
+ y="-684.99963"
523
+ transform="scale(1,-1)" />
524
+ <path
525
+ sodipodi:type="arc"
526
+ style="fill:#6e3b3a;fill-opacity:1;stroke:none;display:inline"
527
+ id="path4801-16"
528
+ sodipodi:cx="-42.375"
529
+ sodipodi:cy="431.75"
530
+ sodipodi:rx="15"
531
+ sodipodi:ry="15"
532
+ d="m -27.375,431.75 a 15,15 0 1 1 -30,0 15,15 0 1 1 30,0 z"
533
+ transform="matrix(-0.04147372,0.9991396,0.9991396,0.04147372,-422.63524,694.43215)" />
534
+ <path
535
+ style="opacity:0.5;fill:url(#linearGradient5147);fill-opacity:1;stroke:none;display:inline;filter:url(#filter3988-62)"
536
+ d="m 213.04077,435.46581 c -2.76601,-0.004 -5.5571,0.74653 -8.0625,2.34375 -6.98461,4.45277 -9.04652,13.73414 -4.59375,20.71875 2.85992,4.48607 7.70323,6.93747 12.65625,6.9375 l 139.59375,0 c 0.13306,0.004 0.273,0 0.40625,0 2.75861,2e-5 5.56396,-0.78215 8.0625,-2.375 6.98461,-4.45277 9.01526,-13.70289 4.5625,-20.6875 -2.85554,-4.47921 -7.67988,-6.92998 -12.625,-6.9375 l -139.625,0 -0.375,0 z"
537
+ id="path3104-65-1"
538
+ inkscape:connector-curvature="0"
539
+ transform="matrix(1,0,0,-1,-202.52924,1122.4683)" />
540
+ </g>
541
+ <g
542
+ inkscape:groupmode="layer"
543
+ id="layer2"
544
+ inkscape:label="Layer 2"
545
+ transform="translate(4.5000002,-305.99999)"
546
+ style="display:inline">
547
+ <g
548
+ id="g4635"
549
+ transform="translate(-4,0)">
550
+ <path
551
+ sodipodi:nodetypes="aaasscsssscacssssscccsscscsssssa"
552
+ inkscape:connector-curvature="0"
553
+ id="path3093-2-6-0-9-9"
554
+ d="m 110.38657,514.20889 c -3.15552,0.32915 -5.97787,2.31632 -8.5625,4.15625 -2.304206,1.64031 -4.734266,3.47059 -5.999996,6 -2.0344,4.0655 -4.68209,5.92772 -1.9375,13.5 0.9886,2.7275 1.12431,8.615 0.125,12.0625 -0.27165,0.93716 -0.9085,2.08236 -1.71875,3.28125 -0.63415,0.34272 -1.19886,0.56436 -1.6875,0.53125 -8.04067,-0.54476 -17.5475,0.13576 -24.1875,0 -2.9096,-0.0595 -5.71494,-1.91673 -8.09375,-3.6875 -3.61842,-2.69351 -6.66882,-6.26669 -8.90625,-10.1875 -1.36748,-2.39636 -2.45308,-7.93772 -2.59375,-7.875 0,0 -1.90716,-2.39288 -3.21624,-2.27927 -2.80238,0.24321 -5.94158,5.99251 -5.94158,5.99251 -0.83946,0.0357 -1.74737,0.65291 -2.59218,2.41176 -3.27607,6.82062 -4.93055,27.98761 -0.125,35.25 4.04614,6.11473 16.99702,18.6812 23.25,29.5625 2.82941,4.9237 4.94663,10.32189 6.28125,15.84375 0.94775,3.92122 1.15625,8.02796 1.15625,12.0625 l 0,17.03125 38.687496,0 6,-6 c 0,0 -0.62128,-17.48054 0,-26.1875 0.52408,-7.34471 -0.0786,-15.26023 3.15625,-21.875 0.90144,-1.84331 2.21165,-3.7176 3.71875,-5.5 2.01537,-1.7375 3.89524,-3.15296 5.15625,-3.96875 1.60831,-1.04047 2.75242,-2.48914 3.53125,-4.1875 0.94136,-0.72187 1.79919,-1.37934 2.46875,-1.8125 8.05381,-5.21031 4.2038,-20.94292 3.53125,-24.34375 -0.67255,-3.40082 -4.17926,-18.48795 -7.0625,-27.5 -0.62722,-1.9605 -1.11024,-4.01651 -2.21875,-5.75 -1.14671,-1.79322 -2.68914,-3.38248 -4.4375,-4.59375 -2.04397,-1.41607 -5.12273,-2.21481 -7.78125,-1.9375 z"
555
+ style="fill:#1e1e1e;fill-opacity:1;stroke:#000000;stroke-width:0.53071618px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
556
+ transform="translate(-2e-7,-1e-5)" />
557
+ <g
558
+ transform="matrix(0,0.53122201,-0.53021089,0,401.33088,293.0062)"
559
+ id="g2828-8-4">
560
+ <path
561
+ inkscape:connector-curvature="0"
562
+ style="fill:#323232;fill-opacity:1;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
563
+ d="m 440.36478,537.1508 c -8.58877,5.44812 -15.1293,13.62359 -22.18332,20.95092 -1.81717,1.88758 -3.72425,3.73445 -5.17611,5.91555 -2.58581,3.88461 -5.01335,8.04759 -6.16203,12.57055 -1.45739,5.73851 -2.41984,12.06944 -0.73944,17.74665 0.88641,2.99475 2.94415,5.7405 5.42259,7.64092 3.75449,2.87888 8.59575,4.52948 13.30999,4.92963 2.66537,0.22624 5.55176,-0.17499 7.8874,-1.47889 2.13294,-1.19074 4.07961,-3.13244 4.92962,-5.42259 1.05817,-2.85101 -0.20539,-6.07904 -0.24647,-9.11981 -0.0233,-1.72521 -0.54562,-3.53927 -1e-5,-5.1761 0.77944,-2.33833 2.75786,-4.11087 4.43667,-5.91556 1.70564,-1.83353 3.44029,-3.78788 5.66907,-4.92962 2.55411,-1.3084 5.51165,-1.8951 8.38036,-1.97185 3.2543,-0.0871 6.56143,0.59076 9.61277,1.72537 4.38478,1.63043 9.09523,3.54377 12.07759,7.14795 3.39654,4.10472 4.11494,9.87055 5.42259,15.03536 1.08088,4.26913 1.34435,8.70462 1.97185,13.06352 0.86259,5.99195 1.4493,12.02519 2.46481,17.99313 0.75953,4.46362 1.95313,8.84614 2.7113,13.30999 0.61094,3.597 -0.10241,7.55714 1.47888,10.84518 1.03266,2.14724 2.58004,5.57166 4.92963,5.17611 13.62973,-2.29453 9.94016,6.01626 16.02129,5.91555 2.44247,-0.0404 4.02505,-2.92608 5.42259,-4.92962 3.75329,-5.38079 4.94377,-12.15403 7.39444,-18.23962 3.63607,-9.02922 6.93239,-18.20015 10.84517,-27.11295 1.75787,-4.0042 5.37455,-7.46796 5.66907,-11.8311 0.18024,-2.67013 -1.60644,-5.1061 -2.46481,-7.64092 -0.86682,-2.55978 -1.79761,-5.09749 -2.71129,-7.64092 -0.65024,-1.81008 -1.26981,-3.63197 -1.97185,-5.42259 -0.61825,-1.57692 -0.88199,-3.38657 -1.97185,-4.68315 -6.15903,-7.32726 -16.24861,-10.13308 -24.15517,-15.52832 -7.87358,-5.37274 -15.23032,-11.48503 -23.16925,-16.76073 -1.8425,-1.22441 -3.82138,-2.23418 -5.66907,-3.45074 -3.19883,-2.10618 -5.8369,-5.16776 -9.36629,-6.655 -2.53949,-1.0701 -5.38371,-1.30364 -8.13388,-1.47888 -3.12009,-0.19882 -6.31063,-0.16842 -9.36629,0.49296 -4.399,0.95213 -8.76985,2.51872 -12.57055,4.92962 z"
564
+ id="path3964-9-7"
565
+ sodipodi:nodetypes="caaaaaaaaaaaaaaaaaaaassaaaaaaaaaaaaaaa" />
566
+ <path
567
+ inkscape:connector-curvature="0"
568
+ style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
569
+ d="m 668.00494,560.1344 c 0,0 -32.90585,1.17176 -49.29627,0 -13.82607,-0.98843 -28.71039,0.18552 -41.16238,-5.91555 -12.0987,-5.92796 -24.78904,-21.44605 -29.0848,-28.09888 -9.80815,-15.18982 -39.44363,-7.92345 -45.84553,-6.65499 -6.40189,1.26845 -34.79631,7.8721 -51.76107,13.30999 -3.69054,1.18297 -7.58198,2.09948 -10.84518,4.19018 -3.37566,2.16275 -6.34669,5.08288 -8.62685,8.38037 -6.093,8.81147 -4.54593,26.12944 4.19018,30.81017 5.73326,3.07183 11.13314,8.87363 25.38758,3.69722 5.1344,-1.86453 16.18653,-2.13123 22.67628,-0.24649 6.48975,1.88474 18.83412,12.60001 18.4861,17.74666 -1.02548,15.16505 0.25557,33.07573 0,45.59904 -0.11199,5.48763 -3.56809,10.79529 -6.90148,15.28184 -5.07041,6.82448 -11.8448,12.54086 -19.22554,16.76073 -4.51103,2.57914 -14.90695,4.66431 -14.78888,4.92962 0,0 -9.81981,6.00092 0.24648,10.84518 12.83949,6.17882 52.63238,9.30995 66.30348,0.24648 11.5107,-7.63119 35.22126,-32.0803 55.70478,-43.87367 9.26862,-5.3364 19.4296,-9.31396 29.82424,-11.83111 7.3815,-1.78749 15.08144,-2.21833 22.67628,-2.21833 l 32.04258,0 z"
570
+ id="path3093-2-6"
571
+ sodipodi:nodetypes="caaszaassszssassssssscc" />
572
+ </g>
573
+ </g>
574
+ <path
575
+ transform="translate(25.000015,-302.36219)"
576
+ style="display:inline;fill:#7e7b7e;fill-opacity:1;stroke:none"
577
+ d="m -29.50001,608.36218 0,80 4,20 c 0,0 0.74653,5.5571 2.34375,8.0625 2.85554,4.47921 7.71113,6.92998 12.65625,6.9375 l 139.625,0 c 0.1255,0.003 0.24934,-1.9e-4 0.375,0 2.76601,0.004 5.5571,-0.74653 8.0625,-2.34375 4.47921,-2.85554 6.92999,-7.71113 6.9375,-12.65625 l 0,-20 0,-60 0,-20 -4,0 -166,0 -4,0 z"
578
+ id="rect2995-1-8"
579
+ inkscape:connector-curvature="0" />
580
+ <path
581
+ style="fill:url(#linearGradient5252);fill-opacity:1;stroke:none;display:inline"
582
+ d="M 764.1875 92.28125 L 764.1875 172.28125 C 764.17998 177.22637 761.72921 182.08196 757.25 184.9375 C 754.63077 186.60729 751.66901 187.3581 748.78125 187.28125 L 609.1875 187.28125 L 609.1875 187.25 C 602.99145 187.25085 597.61709 183.47887 595.34375 178.03125 L 598.1875 192.28125 C 598.1875 192.28125 598.93403 197.83835 600.53125 200.34375 C 603.38679 204.82296 608.24238 207.27373 613.1875 207.28125 L 752.8125 207.28125 C 752.938 207.28425 753.06184 207.28106 753.1875 207.28125 C 755.95351 207.28525 758.7446 206.53472 761.25 204.9375 C 765.72921 202.08196 768.17999 197.22637 768.1875 192.28125 L 768.1875 172.28125 L 768.1875 112.28125 L 768.1875 92.28125 L 764.1875 92.28125 z "
583
+ id="rect2995-1-8-0"
584
+ transform="translate(-4.5000002,305.99999)" />
585
+ </g>
586
+ <g
587
+ inkscape:label="Layer 1"
588
+ inkscape:groupmode="layer"
589
+ id="layer1"
590
+ transform="translate(29.500015,-608.36218)"
591
+ style="display:inline">
592
+ <path
593
+ style="fill:#1e1e1e;fill-opacity:1;stroke:#000000;stroke-width:0.53071618px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
594
+ d="m 31.656682,710.49708 c 0,0 0.62127,17.48064 0,26.1875 -0.52408,7.34493 -1.32605,14.71205 -3.15625,21.84375 -2.49046,9.70449 -11.34758,13.18675 -14.875,15.46875 -8.053797,5.21031 -4.20381,20.94292 -3.53125,24.34375 0.67254,3.40083 4.17927,18.48795 7.0625,27.5 0.62722,1.9605 1.11023,4.01652 9.21922,11.7985 8.10898,7.78198 17.29901,6.96731 19.78078,2.3265 1.62872,-3.04563 4.68209,-5.92773 1.9375,-13.5 -0.98858,-2.72751 -1.12431,-8.58375 -0.125,-12.03125 0.99932,-3.4475 6.67744,-10.02863 9.40625,-9.84375 8.04069,0.54475 17.54751,-0.13577 24.1875,0 2.90961,0.0595 5.71494,1.91673 8.09375,3.6875 0.0651,0.0485 0.12276,0.10719 0.1875,0.15625 0.9964,1.29577 1.916774,2.6571 2.718754,4.0625 1.3675,2.39636 2.45308,7.90647 5.52342,10.87511 0,0 6.251864,8.19107 8.820334,2.84364 3.27609,-6.82062 4.93056,-27.95636 0.125,-35.21875 -4.04614,-6.11474 -16.997028,-18.71245 -23.250008,-29.59375 -2.82942,-4.92369 -4.94663,-10.32189 -6.28125,-15.84375 -0.94775,-3.92121 -1.15625,-8.02795 -1.15625,-12.0625 l 0,-17 -6,-6 z"
595
+ id="path3093-2-7"
596
+ inkscape:connector-curvature="0"
597
+ sodipodi:nodetypes="cssssscsssssccscsssssccc" />
598
+ <g
599
+ id="g2828-8"
600
+ transform="matrix(0,-0.53122201,0.53021089,0,-265.33042,1065.356)">
601
+ <path
602
+ sodipodi:nodetypes="caaaaaaaaaaaaaaaaaaaassaaaaaaaaaaaaaaa"
603
+ id="path3964-9"
604
+ d="m 440.36478,537.1508 c -8.58877,5.44812 -15.1293,13.62359 -22.18332,20.95092 -1.81717,1.88758 -3.72425,3.73445 -5.17611,5.91555 -2.58581,3.88461 -5.01335,8.04759 -6.16203,12.57055 -1.45739,5.73851 -2.41984,12.06944 -0.73944,17.74665 0.88641,2.99475 2.94415,5.7405 5.42259,7.64092 3.75449,2.87888 8.59575,4.52948 13.30999,4.92963 2.66537,0.22624 5.55176,-0.17499 7.8874,-1.47889 2.13294,-1.19074 4.07961,-3.13244 4.92962,-5.42259 1.05817,-2.85101 -0.20539,-6.07904 -0.24647,-9.11981 -0.0233,-1.72521 -0.54562,-3.53927 -1e-5,-5.1761 0.77944,-2.33833 2.75786,-4.11087 4.43667,-5.91556 1.70564,-1.83353 3.44029,-3.78788 5.66907,-4.92962 2.55411,-1.3084 5.51165,-1.8951 8.38036,-1.97185 3.2543,-0.0871 6.56143,0.59076 9.61277,1.72537 4.38478,1.63043 9.09523,3.54377 12.07759,7.14795 3.39654,4.10472 4.11494,9.87055 5.42259,15.03536 1.08088,4.26913 1.34435,8.70462 1.97185,13.06352 0.86259,5.99195 1.4493,12.02519 2.46481,17.99313 0.75953,4.46362 1.95313,8.84614 2.7113,13.30999 0.61094,3.597 -0.10241,7.55714 1.47888,10.84518 1.03266,2.14724 2.58004,5.57166 4.92963,5.17611 13.62973,-2.29453 9.94016,6.01626 16.02129,5.91555 2.44247,-0.0404 4.02505,-2.92608 5.42259,-4.92962 3.75329,-5.38079 4.94377,-12.15403 7.39444,-18.23962 3.63607,-9.02922 6.93239,-18.20015 10.84517,-27.11295 1.75787,-4.0042 5.37455,-7.46796 5.66907,-11.8311 0.18024,-2.67013 -1.60644,-5.1061 -2.46481,-7.64092 -0.86682,-2.55978 -1.79761,-5.09749 -2.71129,-7.64092 -0.65024,-1.81008 -1.26981,-3.63197 -1.97185,-5.42259 -0.61825,-1.57692 -0.88199,-3.38657 -1.97185,-4.68315 -6.15903,-7.32726 -16.24861,-10.13308 -24.15517,-15.52832 -7.87358,-5.37274 -15.23032,-11.48503 -23.16925,-16.76073 -1.8425,-1.22441 -3.82138,-2.23418 -5.66907,-3.45074 -3.19883,-2.10618 -5.8369,-5.16776 -9.36629,-6.655 -2.53949,-1.0701 -5.38371,-1.30364 -8.13388,-1.47888 -3.12009,-0.19882 -6.31063,-0.16842 -9.36629,0.49296 -4.399,0.95213 -8.76985,2.51872 -12.57055,4.92962 z"
605
+ style="fill:#323232;fill-opacity:1;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
606
+ inkscape:connector-curvature="0" />
607
+ <path
608
+ sodipodi:nodetypes="caaszaassszssassssssscc"
609
+ id="path3093-2"
610
+ d="m 668.00494,560.1344 c 0,0 -32.90585,1.17176 -49.29627,0 -13.82607,-0.98843 -28.71039,0.18552 -41.16238,-5.91555 -12.0987,-5.92796 -24.78904,-21.44605 -29.0848,-28.09888 -9.80815,-15.18982 -39.44363,-7.92345 -45.84553,-6.65499 -6.40189,1.26845 -34.79631,7.8721 -51.76107,13.30999 -3.69054,1.18297 -7.58198,2.09948 -10.84518,4.19018 -3.37566,2.16275 -6.34669,5.08288 -8.62685,8.38037 -6.093,8.81147 -4.54593,26.12944 4.19018,30.81017 5.73326,3.07183 11.13314,8.87363 25.38758,3.69722 5.1344,-1.86453 16.18653,-2.13123 22.67628,-0.24649 6.48975,1.88474 18.83412,12.60001 18.4861,17.74666 -1.02548,15.16505 0.25557,33.07573 0,45.59904 -0.11199,5.48763 -3.56809,10.79529 -6.90148,15.28184 -5.07041,6.82448 -11.8448,12.54086 -19.22554,16.76073 -4.51103,2.57914 -14.90695,4.66431 -14.78888,4.92962 0,0 -9.81981,6.00092 0.24648,10.84518 12.83949,6.17882 52.63238,9.30995 66.30348,0.24648 11.5107,-7.63119 35.22126,-32.0803 55.70478,-43.87367 9.26862,-5.3364 19.4296,-9.31396 29.82424,-11.83111 7.3815,-1.78749 15.08144,-2.21833 22.67628,-2.21833 l 32.04258,0 z"
611
+ style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
612
+ inkscape:connector-curvature="0" />
613
+ </g>
614
+ <path
615
+ style="fill:#383538;fill-opacity:1;stroke:none;display:inline"
616
+ d="m -29.50001,608.36346 0,80 170,0 0,-80 -170,0 z"
617
+ id="rect2995-1"
618
+ inkscape:connector-curvature="0" />
619
+ <path
620
+ sodipodi:type="arc"
621
+ style="fill:#383538;fill-opacity:1;stroke:none;display:inline"
622
+ id="path3104-0-2"
623
+ sodipodi:cx="15"
624
+ sodipodi:cy="401.75"
625
+ sodipodi:rx="15"
626
+ sodipodi:ry="15"
627
+ d="m 30,401.75 a 15,15 0 1 1 -30,0 15,15 0 1 1 30,0 z"
628
+ transform="matrix(-0.53749659,-0.84311726,0.84311726,-0.53749658,-205.1599,916.94946)" />
629
+ <rect
630
+ style="fill:#383538;fill-opacity:1;stroke:none;display:inline"
631
+ id="rect3898-2"
632
+ width="140"
633
+ height="30"
634
+ x="-14.50001"
635
+ y="673.36346" />
636
+ <path
637
+ sodipodi:type="arc"
638
+ style="fill:#383538;fill-opacity:1;stroke:none"
639
+ id="path4801"
640
+ sodipodi:cx="-42.375"
641
+ sodipodi:cy="431.75"
642
+ sodipodi:rx="15"
643
+ sodipodi:ry="15"
644
+ d="m -27.375,431.75 a 15,15 0 1 1 -30,0 15,15 0 1 1 30,0 z"
645
+ transform="matrix(-0.04147372,-0.9991396,0.9991396,-0.04147372,-447.63574,663.93096)" />
646
+ <path
647
+ style="opacity:0.5;fill:url(#linearGradient4530);fill-opacity:1;stroke:none;display:inline;filter:url(#filter3988)"
648
+ d="m -14.488963,671.36062 c -2.766011,-0.004 -5.557101,0.74653 -8.062501,2.34375 -6.984612,4.45277 -9.046518,13.73414 -4.59375,20.71875 2.859921,4.48607 7.70323,6.93747 12.656251,6.9375 l 139.593753,0 c 0.13306,0.004 0.273,0 0.40625,0 2.75861,2e-5 5.56396,-0.78215 8.0625,-2.375 6.98461,-4.45277 9.01526,-13.70289 4.5625,-20.6875 -2.85554,-4.47921 -7.67988,-6.92998 -12.625,-6.9375 l -139.625003,0 -0.375,0 z"
649
+ id="path3104-65"
650
+ inkscape:connector-curvature="0" />
651
+ </g>
652
+ <g
653
+ inkscape:groupmode="layer"
654
+ id="layer4"
655
+ inkscape:label="Layer" />
656
+ </svg>