arachni 0.4.7 → 1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1585) hide show
  1. checksums.yaml +5 -13
  2. data/AUTHORS.md +1 -1
  3. data/CHANGELOG.md +211 -0
  4. data/CONTRIBUTORS.md +1 -0
  5. data/Gemfile +23 -2
  6. data/LICENSE.md +34 -1
  7. data/README.md +211 -127
  8. data/Rakefile +79 -67
  9. data/arachni.gemspec +54 -62
  10. data/bin/arachni +6 -18
  11. data/bin/arachni_console +5 -13
  12. data/bin/arachni_multi +6 -16
  13. data/bin/arachni_reporter +12 -0
  14. data/bin/arachni_restore +12 -0
  15. data/bin/arachni_rpc +6 -16
  16. data/bin/arachni_rpcd +6 -17
  17. data/bin/arachni_rpcd_monitor +6 -18
  18. data/bin/arachni_script +8 -19
  19. data/components/checks/active/code_injection.rb +123 -0
  20. data/components/checks/active/code_injection_php_input_wrapper.rb +99 -0
  21. data/components/checks/active/code_injection_timing.rb +106 -0
  22. data/components/checks/active/csrf.rb +218 -0
  23. data/components/checks/active/file_inclusion.rb +152 -0
  24. data/components/checks/active/ldap_injection.rb +109 -0
  25. data/{modules/audit/ldapi → components/checks/active/ldap_injection}/errors.txt +0 -0
  26. data/components/checks/active/no_sql_injection.rb +94 -0
  27. data/components/checks/active/no_sql_injection/patterns/mongodb +1 -0
  28. data/{extras/placeholder → components/checks/active/no_sql_injection/regexp_ignore.txt} +0 -0
  29. data/components/checks/active/no_sql_injection_differential.rb +78 -0
  30. data/components/checks/active/os_cmd_injection.rb +116 -0
  31. data/components/checks/active/os_cmd_injection_timing.rb +92 -0
  32. data/components/checks/active/path_traversal.rb +174 -0
  33. data/components/checks/active/response_splitting.rb +94 -0
  34. data/components/checks/active/rfi.rb +172 -0
  35. data/components/checks/active/session_fixation.rb +117 -0
  36. data/components/checks/active/source_code_disclosure.rb +177 -0
  37. data/components/checks/active/sql_injection.rb +123 -0
  38. data/{modules/audit/sqli → components/checks/active/sql_injection}/patterns/access +0 -0
  39. data/{modules/audit/sqli → components/checks/active/sql_injection}/patterns/coldfusion +0 -0
  40. data/{modules/audit/sqli → components/checks/active/sql_injection}/patterns/db2 +0 -0
  41. data/{modules/audit/sqli → components/checks/active/sql_injection}/patterns/emc +0 -0
  42. data/{modules/audit/sqli → components/checks/active/sql_injection}/patterns/firebird +0 -0
  43. data/{modules/audit/sqli → components/checks/active/sql_injection}/patterns/frontbase +0 -0
  44. data/{modules/audit/sqli → components/checks/active/sql_injection}/patterns/hsqldb +0 -0
  45. data/{modules/audit/sqli → components/checks/active/sql_injection}/patterns/informix +0 -0
  46. data/{modules/audit/sqli → components/checks/active/sql_injection}/patterns/ingres +0 -0
  47. data/{modules/audit/sqli → components/checks/active/sql_injection}/patterns/interbase +0 -0
  48. data/{modules/audit/sqli → components/checks/active/sql_injection}/patterns/maxdb +0 -0
  49. data/{modules/audit/sqli → components/checks/active/sql_injection}/patterns/mssql +0 -0
  50. data/{modules/audit/sqli → components/checks/active/sql_injection}/patterns/mysql +0 -0
  51. data/{modules/audit/sqli → components/checks/active/sql_injection}/patterns/oracle +0 -0
  52. data/{modules/audit/sqli → components/checks/active/sql_injection}/patterns/pgsql +0 -0
  53. data/{modules/audit/sqli → components/checks/active/sql_injection}/patterns/sqlite +0 -0
  54. data/{modules/audit/sqli → components/checks/active/sql_injection}/patterns/sybase +0 -0
  55. data/{modules/audit/sqli → components/checks/active/sql_injection}/regexp_ignore.txt +0 -0
  56. data/components/checks/active/sql_injection_differential.rb +114 -0
  57. data/{modules/audit/sqli_blind_rdiff → components/checks/active/sql_injection_differential}/payloads.txt +0 -0
  58. data/components/checks/active/sql_injection_timing.rb +98 -0
  59. data/{modules/audit/sqli_blind_timing → components/checks/active/sql_injection_timing}/mssql.txt +0 -0
  60. data/{modules/audit/sqli_blind_timing → components/checks/active/sql_injection_timing}/mysql.txt +0 -0
  61. data/{modules/audit/sqli_blind_timing → components/checks/active/sql_injection_timing}/pgsql.txt +0 -0
  62. data/components/checks/active/trainer.rb +40 -0
  63. data/components/checks/active/unvalidated_redirect.rb +108 -0
  64. data/components/checks/active/xpath_injection.rb +87 -0
  65. data/{modules/audit/xpath → components/checks/active/xpath_injection}/errors.txt +0 -0
  66. data/components/checks/active/xss.rb +169 -0
  67. data/components/checks/active/xss_dom.rb +119 -0
  68. data/components/checks/active/xss_dom_inputs.rb +132 -0
  69. data/components/checks/active/xss_dom_script_context.rb +118 -0
  70. data/components/checks/active/xss_event.rb +165 -0
  71. data/components/checks/active/xss_path.rb +146 -0
  72. data/components/checks/active/xss_script_context.rb +207 -0
  73. data/components/checks/active/xss_tag.rb +135 -0
  74. data/components/checks/passive/allowed_methods.rb +92 -0
  75. data/components/checks/passive/backdoors.rb +79 -0
  76. data/{modules/recon → components/checks/passive}/backdoors/filenames.txt +0 -0
  77. data/components/checks/passive/backup_directories.rb +86 -0
  78. data/components/checks/passive/backup_directories/formats.txt +56 -0
  79. data/components/checks/passive/backup_files.rb +99 -0
  80. data/components/checks/passive/backup_files/formats.txt +106 -0
  81. data/components/checks/passive/common_directories.rb +81 -0
  82. data/{modules/recon → components/checks/passive}/common_directories/directories.txt +0 -0
  83. data/components/checks/passive/common_files.rb +73 -0
  84. data/components/checks/passive/common_files/filenames.txt +24 -0
  85. data/components/checks/passive/directory_listing.rb +129 -0
  86. data/components/checks/passive/grep/captcha.rb +73 -0
  87. data/components/checks/passive/grep/cookie_set_for_parent_domain.rb +71 -0
  88. data/components/checks/passive/grep/credit_card.rb +124 -0
  89. data/components/checks/passive/grep/cvs_svn_users.rb +75 -0
  90. data/components/checks/passive/grep/emails.rb +53 -0
  91. data/components/checks/passive/grep/form_upload.rb +75 -0
  92. data/components/checks/passive/grep/hsts.rb +74 -0
  93. data/components/checks/passive/grep/html_objects.rb +45 -0
  94. data/components/checks/passive/grep/http_only_cookies.rb +72 -0
  95. data/components/checks/passive/grep/insecure_cookies.rb +74 -0
  96. data/components/checks/passive/grep/mixed_resource.rb +109 -0
  97. data/components/checks/passive/grep/password_autocomplete.rb +80 -0
  98. data/components/checks/passive/grep/private_ip.rb +73 -0
  99. data/components/checks/passive/grep/ssn.rb +62 -0
  100. data/components/checks/passive/grep/unencrypted_password_forms.rb +88 -0
  101. data/components/checks/passive/htaccess_limit.rb +71 -0
  102. data/components/checks/passive/http_put.rb +91 -0
  103. data/components/checks/passive/interesting_responses.rb +88 -0
  104. data/components/checks/passive/localstart_asp.rb +88 -0
  105. data/components/checks/passive/origin_spoof_access_restriction_bypass.rb +83 -0
  106. data/components/checks/passive/webdav.rb +101 -0
  107. data/components/checks/passive/xst.rb +90 -0
  108. data/components/fingerprinters/frameworks/rack.rb +33 -0
  109. data/components/fingerprinters/languages/asp.rb +34 -0
  110. data/components/fingerprinters/languages/aspx.rb +55 -0
  111. data/components/fingerprinters/languages/jsp.rb +34 -0
  112. data/components/fingerprinters/languages/php.rb +35 -0
  113. data/components/fingerprinters/languages/python.rb +32 -0
  114. data/components/fingerprinters/languages/ruby.rb +33 -0
  115. data/components/fingerprinters/os/bsd.rb +28 -0
  116. data/components/fingerprinters/os/linux.rb +34 -0
  117. data/components/fingerprinters/os/solaris.rb +33 -0
  118. data/components/fingerprinters/os/unix.rb +28 -0
  119. data/components/fingerprinters/os/windows.rb +33 -0
  120. data/components/fingerprinters/servers/apache.rb +28 -0
  121. data/components/fingerprinters/servers/iis.rb +28 -0
  122. data/components/fingerprinters/servers/jetty.rb +28 -0
  123. data/components/fingerprinters/servers/nginx.rb +28 -0
  124. data/components/fingerprinters/servers/tomcat.rb +28 -0
  125. data/components/path_extractors/anchors.rb +29 -0
  126. data/components/path_extractors/areas.rb +29 -0
  127. data/components/path_extractors/comments.rb +21 -0
  128. data/components/path_extractors/forms.rb +29 -0
  129. data/components/path_extractors/frames.rb +29 -0
  130. data/components/path_extractors/generic.rb +76 -0
  131. data/components/path_extractors/links.rb +29 -0
  132. data/components/path_extractors/meta_refresh.rb +50 -0
  133. data/components/path_extractors/scripts.rb +31 -0
  134. data/components/plugins/autologin.rb +120 -0
  135. data/components/plugins/beep_notify.rb +43 -0
  136. data/components/plugins/content_types.rb +110 -0
  137. data/components/plugins/cookie_collector.rb +94 -0
  138. data/components/plugins/defaults/autothrottle.rb +73 -0
  139. data/components/plugins/defaults/healthmap.rb +79 -0
  140. data/components/plugins/defaults/meta/remedies/discovery.rb +122 -0
  141. data/components/plugins/defaults/meta/remedies/timing_attacks.rb +98 -0
  142. data/components/plugins/defaults/meta/uniformity.rb +55 -0
  143. data/components/plugins/email_notify.rb +112 -0
  144. data/components/plugins/form_dicattack.rb +128 -0
  145. data/components/plugins/http_dicattack.rb +102 -0
  146. data/components/plugins/proxy.rb +492 -0
  147. data/{plugins → components/plugins}/proxy/panel/403_forbidden.html.erb +0 -0
  148. data/{plugins → components/plugins}/proxy/panel/404_not_found.html.erb +0 -0
  149. data/{plugins → components/plugins}/proxy/panel/css/bootstrap-responsive.css +0 -0
  150. data/{plugins → components/plugins}/proxy/panel/css/bootstrap.min.css +0 -0
  151. data/{plugins → components/plugins}/proxy/panel/css/panel.css +0 -0
  152. data/{plugins → components/plugins}/proxy/panel/help.html.erb +0 -0
  153. data/{plugins → components/plugins}/proxy/panel/img/glyphicons-halflings-white.png +0 -0
  154. data/{plugins → components/plugins}/proxy/panel/img/glyphicons-halflings.png +0 -0
  155. data/{plugins → components/plugins}/proxy/panel/img/record.png +0 -0
  156. data/{plugins → components/plugins}/proxy/panel/inspect.html.erb +0 -0
  157. data/{plugins → components/plugins}/proxy/panel/js/bootstrap.min.js +0 -0
  158. data/{plugins → components/plugins}/proxy/panel/js/jquery.min.js +0 -0
  159. data/{plugins → components/plugins}/proxy/panel/js/panel.js +0 -0
  160. data/{plugins → components/plugins}/proxy/panel/layout.html.erb +0 -0
  161. data/components/plugins/proxy/panel/page_accordion.html.erb +67 -0
  162. data/{plugins → components/plugins}/proxy/panel/page_twin_accordion.html.erb +0 -0
  163. data/components/plugins/proxy/panel/panel.html.erb +69 -0
  164. data/{plugins → components/plugins}/proxy/panel/shutdown_message.html.erb +0 -0
  165. data/{plugins → components/plugins}/proxy/panel/sign_in.html.erb +0 -0
  166. data/{plugins → components/plugins}/proxy/panel/vectors.yml.erb +0 -0
  167. data/{plugins → components/plugins}/proxy/panel/verify_login_check.html.erb +0 -0
  168. data/{plugins → components/plugins}/proxy/panel/verify_login_final.html.erb +0 -0
  169. data/components/plugins/proxy/panel/verify_login_sequence.html.erb +45 -0
  170. data/components/plugins/proxy/template_scope.rb +130 -0
  171. data/components/plugins/script.rb +48 -0
  172. data/components/plugins/uncommon_headers.rb +92 -0
  173. data/components/plugins/vector_feed.rb +225 -0
  174. data/components/plugins/waf_detector.rb +169 -0
  175. data/components/reporters/ap.rb +38 -0
  176. data/components/reporters/html.rb +468 -0
  177. data/components/reporters/html/default.erb +68 -0
  178. data/components/reporters/html/default/configuration.erb +78 -0
  179. data/components/reporters/html/default/css/lib/bootstrap-theme.min.css +7 -0
  180. data/components/reporters/html/default/css/lib/bootstrap.min.css +7 -0
  181. data/components/reporters/html/default/css/lib/c3.css +203 -0
  182. data/components/reporters/html/default/css/lib/font-awesome.min.css +4 -0
  183. data/components/reporters/html/default/css/main.css +140 -0
  184. data/components/reporters/html/default/fonts/FontAwesome.otf +0 -0
  185. data/components/reporters/html/default/fonts/fontawesome-webfont.eot +0 -0
  186. data/components/reporters/html/default/fonts/fontawesome-webfont.svg +504 -0
  187. data/components/reporters/html/default/fonts/fontawesome-webfont.ttf +0 -0
  188. data/components/reporters/html/default/fonts/fontawesome-webfont.woff +0 -0
  189. data/components/reporters/html/default/fonts/glyphicons-halflings-regular.eot +0 -0
  190. data/components/reporters/html/default/fonts/glyphicons-halflings-regular.svg +229 -0
  191. data/components/reporters/html/default/fonts/glyphicons-halflings-regular.ttf +0 -0
  192. data/components/reporters/html/default/fonts/glyphicons-halflings-regular.woff +0 -0
  193. data/components/reporters/html/default/issue.erb +81 -0
  194. data/components/reporters/html/default/issue/details.erb +68 -0
  195. data/components/reporters/html/default/issue/info.erb +74 -0
  196. data/components/reporters/html/default/issue/page.erb +117 -0
  197. data/components/reporters/html/default/issue/page/body.erb +42 -0
  198. data/components/reporters/html/default/issue/page/sink/data_flow.erb +95 -0
  199. data/components/reporters/html/default/issue/page/sink/data_flow/arguments.erb +70 -0
  200. data/components/reporters/html/default/issue/page/sink/data_flow/source.erb +1 -0
  201. data/components/reporters/html/default/issue/page/sink/execution_flow.erb +63 -0
  202. data/components/reporters/html/default/issue/page/sink/frame/source.erb +32 -0
  203. data/components/reporters/html/default/issue/page/sink/trace/table.erb +127 -0
  204. data/components/reporters/html/default/issue/page/transitions.erb +86 -0
  205. data/components/reporters/html/default/issue/platform.erb +8 -0
  206. data/components/reporters/html/default/issue/remarks.erb +28 -0
  207. data/components/reporters/html/default/issue/vector.erb +40 -0
  208. data/components/reporters/html/default/issues.erb +46 -0
  209. data/components/reporters/html/default/issues/grouped.erb +147 -0
  210. data/components/reporters/html/default/js/charts.js.erb +117 -0
  211. data/components/reporters/html/default/js/configuration.js.erb +12 -0
  212. data/components/reporters/html/default/js/helpers.js +107 -0
  213. data/components/reporters/html/default/js/init.js.erb +23 -0
  214. data/components/reporters/html/default/js/lib/bootstrap.min.js +6 -0
  215. data/components/reporters/html/default/js/lib/c3.min.js +3 -0
  216. data/components/reporters/html/default/js/lib/d3.min.js +5 -0
  217. data/components/reporters/html/default/js/lib/jquery.min.js +4 -0
  218. data/components/reporters/html/default/navigation.erb +136 -0
  219. data/components/reporters/html/default/plugins.erb +30 -0
  220. data/components/reporters/html/default/shared/hash.erb +10 -0
  221. data/components/reporters/html/default/shared/hash_table.erb +22 -0
  222. data/components/reporters/html/default/sitemap.erb +29 -0
  223. data/components/reporters/html/default/summary.erb +34 -0
  224. data/components/reporters/html/default/summary/charts.erb +67 -0
  225. data/components/reporters/html/default/summary/issues.erb +129 -0
  226. data/components/reporters/json.rb +44 -0
  227. data/components/reporters/marshal.rb +38 -0
  228. data/components/reporters/plugin_formatters/html/autologin.rb +50 -0
  229. data/components/reporters/plugin_formatters/html/content_types.rb +59 -0
  230. data/components/reporters/plugin_formatters/html/cookie_collector.rb +46 -0
  231. data/components/reporters/plugin_formatters/html/form_dicattack.rb +36 -0
  232. data/components/reporters/plugin_formatters/html/healthmap.rb +88 -0
  233. data/components/reporters/plugin_formatters/html/http_dicattack.rb +36 -0
  234. data/components/reporters/plugin_formatters/html/uncommon_headers.rb +40 -0
  235. data/components/reporters/plugin_formatters/html/uniformity.rb +55 -0
  236. data/components/reporters/plugin_formatters/html/waf_detector.rb +69 -0
  237. data/components/reporters/plugin_formatters/stdout/autologin.rb +25 -0
  238. data/components/reporters/plugin_formatters/stdout/content_types.rb +39 -0
  239. data/components/reporters/plugin_formatters/stdout/cookie_collector.rb +31 -0
  240. data/components/reporters/plugin_formatters/stdout/form_dicattack.rb +24 -0
  241. data/components/reporters/plugin_formatters/stdout/healthmap.rb +41 -0
  242. data/components/reporters/plugin_formatters/stdout/http_dicattack.rb +24 -0
  243. data/components/reporters/plugin_formatters/stdout/uncommon_headers.rb +29 -0
  244. data/components/reporters/plugin_formatters/stdout/uniformity.rb +35 -0
  245. data/components/reporters/plugin_formatters/stdout/waf_detector.rb +21 -0
  246. data/components/reporters/plugin_formatters/xml/autologin.rb +28 -0
  247. data/components/reporters/plugin_formatters/xml/content_types.rb +36 -0
  248. data/components/reporters/plugin_formatters/xml/cookie_collector.rb +32 -0
  249. data/components/reporters/plugin_formatters/xml/form_dicattack.rb +22 -0
  250. data/components/reporters/plugin_formatters/xml/healthmap.rb +30 -0
  251. data/components/reporters/plugin_formatters/xml/http_dicattack.rb +22 -0
  252. data/components/reporters/plugin_formatters/xml/uncommon_headers.rb +29 -0
  253. data/components/reporters/plugin_formatters/xml/uniformity.rb +23 -0
  254. data/components/reporters/plugin_formatters/xml/waf_detector.rb +22 -0
  255. data/components/reporters/stdout.rb +226 -0
  256. data/components/reporters/txt.rb +50 -0
  257. data/components/reporters/xml.rb +285 -0
  258. data/components/reporters/xml/schema.xsd +664 -0
  259. data/components/reporters/yaml.rb +37 -0
  260. data/{rpcd_handlers → components/services}/placeholder +0 -0
  261. data/lib/arachni.rb +29 -18
  262. data/lib/arachni/banner.rb +5 -13
  263. data/lib/arachni/browser.rb +1292 -0
  264. data/lib/arachni/browser/element_locator.rb +137 -0
  265. data/lib/arachni/browser/javascript.rb +383 -0
  266. data/lib/arachni/browser/javascript/dom_monitor.rb +31 -0
  267. data/lib/arachni/browser/javascript/proxy.rb +92 -0
  268. data/lib/arachni/browser/javascript/proxy/stub.rb +90 -0
  269. data/lib/arachni/browser/javascript/scripts/dom_monitor.js +146 -0
  270. data/lib/arachni/browser/javascript/scripts/taint_tracer.js +486 -0
  271. data/lib/arachni/browser/javascript/taint_tracer.rb +101 -0
  272. data/lib/arachni/browser/javascript/taint_tracer/frame.rb +73 -0
  273. data/lib/arachni/browser/javascript/taint_tracer/frame/called_function.rb +78 -0
  274. data/lib/arachni/browser/javascript/taint_tracer/sink/base.rb +63 -0
  275. data/lib/arachni/browser/javascript/taint_tracer/sink/data_flow.rb +83 -0
  276. data/lib/arachni/browser/javascript/taint_tracer/sink/execution_flow.rb +30 -0
  277. data/lib/arachni/browser_cluster.rb +414 -0
  278. data/lib/arachni/browser_cluster/job.rb +193 -0
  279. data/lib/arachni/browser_cluster/job/result.rb +29 -0
  280. data/lib/arachni/browser_cluster/jobs/browser_provider.rb +27 -0
  281. data/lib/arachni/browser_cluster/jobs/resource_exploration.rb +60 -0
  282. data/lib/arachni/browser_cluster/jobs/resource_exploration/event_trigger.rb +43 -0
  283. data/lib/arachni/browser_cluster/jobs/resource_exploration/event_trigger/result.rb +23 -0
  284. data/lib/arachni/browser_cluster/jobs/resource_exploration/result.rb +23 -0
  285. data/lib/arachni/browser_cluster/jobs/taint_trace.rb +48 -0
  286. data/lib/arachni/browser_cluster/jobs/taint_trace/event_trigger.rb +33 -0
  287. data/lib/arachni/browser_cluster/jobs/taint_trace/event_trigger/result.rb +23 -0
  288. data/lib/arachni/browser_cluster/jobs/taint_trace/result.rb +23 -0
  289. data/lib/arachni/browser_cluster/worker.rb +277 -0
  290. data/lib/arachni/check.rb +12 -0
  291. data/lib/arachni/check/auditor.rb +612 -0
  292. data/lib/arachni/check/base.rb +177 -0
  293. data/lib/arachni/check/manager.rb +137 -0
  294. data/lib/arachni/component.rb +11 -0
  295. data/lib/arachni/component/base.rb +62 -0
  296. data/lib/arachni/component/manager.rb +92 -90
  297. data/lib/arachni/component/options.rb +6 -28
  298. data/lib/arachni/component/options/address.rb +14 -30
  299. data/lib/arachni/component/options/base.rb +96 -81
  300. data/lib/arachni/component/options/bool.rb +20 -37
  301. data/lib/arachni/component/options/float.rb +12 -31
  302. data/lib/arachni/component/options/int.rb +14 -31
  303. data/lib/arachni/component/options/multiple_choice.rb +40 -0
  304. data/lib/arachni/component/options/object.rb +16 -0
  305. data/lib/arachni/component/options/path.rb +12 -25
  306. data/lib/arachni/component/options/port.rb +15 -25
  307. data/lib/arachni/component/options/string.rb +10 -32
  308. data/lib/arachni/component/options/url.rb +15 -30
  309. data/lib/arachni/component/output.rb +33 -0
  310. data/lib/arachni/component/utilities.rb +49 -0
  311. data/lib/arachni/data.rb +109 -0
  312. data/lib/arachni/data/framework.rb +160 -0
  313. data/lib/arachni/data/framework/rpc.rb +68 -0
  314. data/lib/arachni/data/issues.rb +227 -0
  315. data/lib/arachni/data/plugins.rb +109 -0
  316. data/lib/arachni/data/session.rb +48 -0
  317. data/lib/arachni/element/base.rb +131 -82
  318. data/lib/arachni/element/body.rb +43 -13
  319. data/lib/arachni/element/capabilities/analyzable.rb +46 -0
  320. data/lib/arachni/element/capabilities/analyzable/differential.rb +436 -0
  321. data/lib/arachni/element/capabilities/analyzable/taint.rb +218 -0
  322. data/lib/arachni/element/capabilities/analyzable/timeout.rb +433 -0
  323. data/lib/arachni/element/capabilities/auditable.rb +172 -577
  324. data/lib/arachni/element/capabilities/auditable/dom.rb +156 -0
  325. data/lib/arachni/element/capabilities/inputtable.rb +267 -0
  326. data/lib/arachni/element/capabilities/mutable.rb +197 -155
  327. data/lib/arachni/element/capabilities/refreshable.rb +31 -24
  328. data/lib/arachni/element/capabilities/submittable.rb +128 -0
  329. data/lib/arachni/element/capabilities/with_auditor.rb +60 -0
  330. data/lib/arachni/element/capabilities/with_auditor/output.rb +33 -0
  331. data/lib/arachni/element/capabilities/with_dom.rb +40 -0
  332. data/lib/arachni/element/capabilities/with_node.rb +52 -0
  333. data/lib/arachni/element/capabilities/with_scope.rb +25 -0
  334. data/lib/arachni/element/capabilities/with_scope/scope.rb +38 -0
  335. data/lib/arachni/element/cookie.rb +337 -862
  336. data/lib/arachni/element/cookie/dom.rb +67 -0
  337. data/lib/arachni/element/form.rb +326 -756
  338. data/lib/arachni/element/form/dom.rb +52 -0
  339. data/lib/arachni/element/generic_dom.rb +133 -0
  340. data/lib/arachni/element/header.rb +46 -46
  341. data/lib/arachni/element/link.rb +134 -172
  342. data/lib/arachni/element/link/dom.rb +128 -0
  343. data/lib/arachni/element/link_template.rb +268 -0
  344. data/lib/arachni/element/link_template/dom.rb +143 -0
  345. data/lib/arachni/element/path.rb +24 -13
  346. data/lib/arachni/element/server.rb +89 -13
  347. data/lib/arachni/element_filter.rb +101 -99
  348. data/lib/arachni/error.rb +5 -15
  349. data/lib/arachni/ethon/easy.rb +22 -0
  350. data/lib/arachni/framework.rb +841 -476
  351. data/lib/arachni/http.rb +6 -714
  352. data/lib/arachni/http/client.rb +801 -0
  353. data/lib/arachni/http/cookie_jar.rb +50 -51
  354. data/lib/arachni/http/headers.rb +122 -0
  355. data/lib/arachni/http/message.rb +76 -0
  356. data/lib/arachni/http/message/scope.rb +35 -0
  357. data/lib/arachni/http/proxy_server.rb +303 -0
  358. data/{plugins/proxy → lib/arachni/http/proxy_server}/ssl-interceptor-cert.pem +0 -0
  359. data/{plugins/proxy → lib/arachni/http/proxy_server}/ssl-interceptor-pkey.pem +0 -0
  360. data/lib/arachni/http/request.rb +471 -0
  361. data/lib/arachni/http/request/scope.rb +30 -0
  362. data/lib/arachni/http/response.rb +226 -0
  363. data/lib/arachni/http/response/scope.rb +67 -0
  364. data/lib/arachni/issue.rb +389 -223
  365. data/lib/arachni/issue/severity.rb +34 -0
  366. data/lib/arachni/issue/severity/base.rb +39 -0
  367. data/lib/arachni/option_group.rb +137 -0
  368. data/lib/arachni/option_groups.rb +13 -0
  369. data/lib/arachni/option_groups/audit.rb +226 -0
  370. data/lib/arachni/option_groups/browser_cluster.rb +50 -0
  371. data/lib/arachni/option_groups/datastore.rb +31 -0
  372. data/lib/arachni/option_groups/dispatcher.rb +132 -0
  373. data/lib/arachni/option_groups/http.rb +174 -0
  374. data/lib/arachni/option_groups/input.rb +156 -0
  375. data/lib/arachni/option_groups/output.rb +22 -0
  376. data/lib/arachni/option_groups/paths.rb +63 -0
  377. data/lib/arachni/option_groups/rpc.rb +87 -0
  378. data/lib/arachni/option_groups/scope.rb +233 -0
  379. data/lib/arachni/option_groups/session.rb +54 -0
  380. data/lib/arachni/option_groups/snapshot.rb +22 -0
  381. data/lib/arachni/options.rb +286 -1486
  382. data/lib/arachni/page.rb +504 -108
  383. data/lib/arachni/page/dom.rb +280 -0
  384. data/lib/arachni/page/dom/transition.rb +302 -0
  385. data/lib/arachni/page/scope.rb +53 -0
  386. data/lib/arachni/parser.rb +177 -210
  387. data/lib/arachni/platform.rb +5 -13
  388. data/lib/arachni/platform/fingerprinter.rb +24 -23
  389. data/lib/arachni/platform/list.rb +48 -27
  390. data/lib/arachni/platform/manager.rb +146 -83
  391. data/lib/arachni/plugin.rb +5 -13
  392. data/lib/arachni/plugin/base.rb +90 -110
  393. data/lib/arachni/plugin/formatter.rb +40 -0
  394. data/lib/arachni/plugin/manager.rb +129 -108
  395. data/lib/arachni/processes.rb +6 -14
  396. data/lib/arachni/processes/dispatchers.rb +51 -58
  397. data/lib/arachni/processes/executables/base.rb +9 -0
  398. data/lib/arachni/processes/executables/dispatcher.rb +6 -0
  399. data/lib/arachni/processes/executables/instance.rb +13 -0
  400. data/lib/arachni/processes/helpers.rb +4 -12
  401. data/lib/arachni/processes/helpers/dispatchers.rb +8 -12
  402. data/lib/arachni/processes/helpers/instances.rb +13 -13
  403. data/lib/arachni/processes/helpers/processes.rb +8 -28
  404. data/lib/arachni/processes/instances.rb +86 -63
  405. data/lib/arachni/processes/manager.rb +89 -52
  406. data/lib/arachni/report.rb +282 -15
  407. data/lib/arachni/reporter.rb +12 -0
  408. data/lib/arachni/reporter/base.rb +126 -0
  409. data/lib/arachni/reporter/formatter_manager.rb +20 -0
  410. data/lib/arachni/reporter/manager.rb +54 -0
  411. data/lib/arachni/reporter/options.rb +47 -0
  412. data/lib/arachni/rpc/client/base.rb +27 -35
  413. data/lib/arachni/rpc/client/dispatcher.rb +13 -21
  414. data/lib/arachni/rpc/client/instance.rb +45 -40
  415. data/lib/arachni/rpc/client/instance/framework.rb +88 -0
  416. data/lib/arachni/rpc/client/instance/service.rb +106 -0
  417. data/lib/arachni/rpc/serializer.rb +98 -0
  418. data/lib/arachni/rpc/server/active_options.rb +26 -42
  419. data/lib/arachni/rpc/server/base.rb +35 -26
  420. data/lib/arachni/rpc/server/check/manager.rb +38 -0
  421. data/lib/arachni/rpc/server/dispatcher.rb +125 -211
  422. data/lib/arachni/rpc/server/dispatcher/node.rb +36 -50
  423. data/lib/arachni/rpc/server/dispatcher/service.rb +153 -0
  424. data/lib/arachni/rpc/server/framework.rb +83 -176
  425. data/lib/arachni/rpc/server/framework/distributor.rb +292 -271
  426. data/lib/arachni/rpc/server/framework/master.rb +164 -296
  427. data/lib/arachni/rpc/server/framework/multi_instance.rb +96 -128
  428. data/lib/arachni/rpc/server/framework/slave.rb +79 -89
  429. data/lib/arachni/rpc/server/instance.rb +362 -413
  430. data/lib/arachni/rpc/server/output.rb +33 -147
  431. data/lib/arachni/rpc/server/plugin/manager.rb +18 -54
  432. data/lib/arachni/ruby.rb +5 -14
  433. data/lib/arachni/ruby/array.rb +4 -14
  434. data/lib/arachni/ruby/hash.rb +47 -15
  435. data/lib/arachni/ruby/io.rb +4 -14
  436. data/lib/arachni/ruby/object.rb +10 -52
  437. data/lib/arachni/ruby/set.rb +4 -12
  438. data/lib/arachni/ruby/string.rb +60 -40
  439. data/lib/arachni/ruby/webrick.rb +4 -12
  440. data/lib/arachni/ruby/webrick/cookie.rb +4 -12
  441. data/lib/arachni/ruby/webrick/httprequest.rb +4 -12
  442. data/lib/arachni/scope.rb +40 -0
  443. data/lib/arachni/selenium/webdriver/remote/http/typhoeus.rb +46 -0
  444. data/lib/arachni/session.rb +150 -173
  445. data/lib/arachni/snapshot.rb +181 -0
  446. data/lib/arachni/state.rb +122 -0
  447. data/lib/arachni/state/audit.rb +57 -0
  448. data/lib/arachni/state/element_filter.rb +67 -0
  449. data/lib/arachni/state/framework.rb +419 -0
  450. data/lib/arachni/state/framework/rpc.rb +63 -0
  451. data/lib/arachni/state/http.rb +60 -0
  452. data/lib/arachni/state/options.rb +39 -0
  453. data/lib/arachni/state/plugins.rb +94 -0
  454. data/lib/arachni/support.rb +6 -15
  455. data/lib/arachni/support/buffer.rb +5 -13
  456. data/lib/arachni/support/buffer/autoflush.rb +5 -15
  457. data/lib/arachni/support/buffer/base.rb +41 -70
  458. data/lib/arachni/support/cache.rb +5 -13
  459. data/lib/arachni/support/cache/base.rb +45 -50
  460. data/lib/arachni/support/cache/least_cost_replacement.rb +9 -19
  461. data/lib/arachni/support/cache/least_recently_used.rb +5 -15
  462. data/lib/arachni/support/cache/preference.rb +11 -20
  463. data/lib/arachni/support/cache/random_replacement.rb +10 -15
  464. data/lib/arachni/support/crypto.rb +5 -13
  465. data/lib/arachni/support/crypto/rsa_aes_cbc.rb +15 -27
  466. data/lib/arachni/support/database.rb +5 -13
  467. data/lib/arachni/support/database/base.rb +20 -37
  468. data/lib/arachni/support/database/hash.rb +265 -350
  469. data/lib/arachni/support/database/queue.rb +86 -27
  470. data/lib/arachni/support/lookup.rb +5 -13
  471. data/lib/arachni/support/lookup/base.rb +33 -26
  472. data/lib/arachni/support/lookup/hash_set.rb +11 -15
  473. data/lib/arachni/support/lookup/moolb.rb +9 -20
  474. data/lib/arachni/support/mixins.rb +14 -0
  475. data/lib/arachni/support/mixins/observable.rb +105 -0
  476. data/lib/arachni/support/mixins/terminal.rb +65 -0
  477. data/lib/arachni/support/profiler.rb +130 -0
  478. data/lib/arachni/support/signature.rb +37 -67
  479. data/lib/arachni/trainer.rb +57 -97
  480. data/lib/arachni/ui/foo/output.rb +31 -33
  481. data/lib/arachni/uri.rb +456 -462
  482. data/lib/arachni/uri/scope.rb +168 -0
  483. data/lib/arachni/utilities.rb +125 -147
  484. data/lib/arachni/version.rb +4 -12
  485. data/lib/arachni/watir/element.rb +17 -0
  486. data/lib/version +1 -1
  487. data/{spec/support/servers/modules/audit/sqli/jdbc → profiles/placeholder} +0 -0
  488. data/spec/arachni/browser/element_locator_spec.rb +228 -0
  489. data/spec/arachni/browser/javascript/dom_monitor_spec.rb +195 -0
  490. data/spec/arachni/browser/javascript/proxy/stub_spec.rb +106 -0
  491. data/spec/arachni/browser/javascript/proxy_spec.rb +144 -0
  492. data/spec/arachni/browser/javascript/taint_tracer/frame/called_function_spec.rb +72 -0
  493. data/spec/arachni/browser/javascript/taint_tracer/frame_spec.rb +46 -0
  494. data/spec/arachni/browser/javascript/taint_tracer/sink/data_flow_spec.rb +81 -0
  495. data/spec/arachni/browser/javascript/taint_tracer/sink/execution_flow_spec.rb +47 -0
  496. data/spec/arachni/browser/javascript/taint_tracer_spec.rb +1304 -0
  497. data/spec/arachni/browser/javascript_spec.rb +355 -0
  498. data/spec/arachni/browser_cluster/job/result_spec.rb +14 -0
  499. data/spec/arachni/browser_cluster/job_spec.rb +264 -0
  500. data/spec/arachni/browser_cluster/jobs/resource_exploration/event_trigger/result_spec.rb +7 -0
  501. data/spec/arachni/browser_cluster/jobs/resource_exploration/event_trigger_spec.rb +68 -0
  502. data/spec/arachni/browser_cluster/jobs/resource_exploration/result_spec.rb +7 -0
  503. data/spec/arachni/browser_cluster/jobs/resource_exploration_spec.rb +89 -0
  504. data/spec/arachni/browser_cluster/jobs/taint_tracer_spec.rb +149 -0
  505. data/spec/arachni/browser_cluster/worker_spec.rb +314 -0
  506. data/spec/arachni/browser_cluster_spec.rb +543 -0
  507. data/spec/arachni/browser_spec.rb +2368 -0
  508. data/spec/arachni/check/auditor_spec.rb +1089 -0
  509. data/spec/arachni/check/base_spec.rb +33 -0
  510. data/spec/arachni/check/manager_spec.rb +100 -0
  511. data/spec/arachni/component/base_spec.rb +64 -0
  512. data/spec/arachni/component/manager_spec.rb +37 -26
  513. data/spec/arachni/component/options/address_spec.rb +5 -11
  514. data/spec/arachni/component/options/base_spec.rb +29 -81
  515. data/spec/arachni/component/options/bool_spec.rb +16 -19
  516. data/spec/arachni/component/options/float_spec.rb +17 -16
  517. data/spec/arachni/component/options/int_spec.rb +17 -20
  518. data/spec/arachni/component/options/multiple_choice_spec.rb +82 -0
  519. data/spec/arachni/component/options/object_spec.rb +24 -0
  520. data/spec/arachni/component/options/path_spec.rb +8 -11
  521. data/spec/arachni/component/options/port_spec.rb +16 -15
  522. data/spec/arachni/component/options/string_spec.rb +8 -17
  523. data/spec/arachni/component/options/url_spec.rb +16 -14
  524. data/spec/arachni/component/utilities_spec.rb +30 -0
  525. data/spec/arachni/{module → component}/utilities_spec/read_file.txt +0 -0
  526. data/spec/arachni/data/framework/rpc_spec.rb +72 -0
  527. data/spec/arachni/data/framework_spec.rb +266 -0
  528. data/spec/arachni/data/issues_spec.rb +347 -0
  529. data/spec/arachni/data/plugins_spec.rb +102 -0
  530. data/spec/arachni/data/session_spec.rb +59 -0
  531. data/spec/arachni/data_spec.rb +71 -0
  532. data/spec/arachni/element/body_spec.rb +63 -4
  533. data/spec/arachni/element/capabilities/analyzable/differential_spec.rb +135 -0
  534. data/spec/arachni/element/capabilities/analyzable/taint_spec.rb +355 -0
  535. data/spec/arachni/element/capabilities/analyzable/timeout_spec.rb +386 -0
  536. data/spec/arachni/element/capabilities/with_scope/scope_spec.rb +25 -0
  537. data/spec/arachni/element/cookie/dom_spec.rb +145 -0
  538. data/spec/arachni/element/cookie_spec.rb +147 -108
  539. data/spec/arachni/element/form/dom_spec.rb +146 -0
  540. data/spec/arachni/element/form_spec.rb +519 -271
  541. data/spec/arachni/element/generic_dom_spec.rb +113 -0
  542. data/spec/arachni/element/header_spec.rb +68 -20
  543. data/spec/arachni/element/link/dom_spec.rb +206 -0
  544. data/spec/arachni/element/link_spec.rb +218 -130
  545. data/spec/arachni/element/link_template/dom_spec.rb +218 -0
  546. data/spec/arachni/element/link_template_spec.rb +403 -0
  547. data/spec/arachni/element/path_spec.rb +28 -4
  548. data/spec/arachni/element/server_spec.rb +171 -4
  549. data/spec/arachni/element_filter_spec.rb +227 -96
  550. data/spec/arachni/framework_spec.rb +1099 -759
  551. data/spec/arachni/http/client_spec.rb +1470 -0
  552. data/spec/arachni/http/cookie_jar_spec.rb +164 -130
  553. data/spec/arachni/http/headers_spec.rb +111 -0
  554. data/spec/arachni/http/message_spec.rb +5 -0
  555. data/spec/arachni/http/proxy_server_spec.rb +354 -0
  556. data/spec/arachni/http/request_spec.rb +602 -0
  557. data/spec/arachni/http/response/scope_spec.rb +135 -0
  558. data/spec/arachni/http/response_spec.rb +350 -0
  559. data/spec/arachni/issue/severity/base_spec.rb +15 -0
  560. data/spec/arachni/issue/severity_spec.rb +43 -0
  561. data/spec/arachni/issue_spec.rb +547 -284
  562. data/spec/arachni/option_groups/audit_spec.rb +298 -0
  563. data/spec/arachni/option_groups/browser_cluster_spec.rb +12 -0
  564. data/spec/arachni/option_groups/datastore_spec.rb +54 -0
  565. data/spec/arachni/option_groups/dispatcher_spec.rb +123 -0
  566. data/spec/arachni/option_groups/http_spec.rb +42 -0
  567. data/spec/arachni/option_groups/input_spec.rb +202 -0
  568. data/spec/arachni/option_groups/output_spec.rb +11 -0
  569. data/spec/arachni/option_groups/paths_spec.rb +34 -0
  570. data/spec/arachni/option_groups/rpc_spec.rb +13 -0
  571. data/spec/arachni/option_groups/scope_spec.rb +237 -0
  572. data/spec/arachni/option_groups/session_spec.rb +51 -0
  573. data/spec/arachni/option_groups/snapshot_spec.rb +11 -0
  574. data/spec/arachni/options_spec.rb +202 -756
  575. data/spec/arachni/page/dom/transition_spec.rb +515 -0
  576. data/spec/arachni/page/dom_spec.rb +308 -0
  577. data/spec/arachni/page/scope_spec.rb +80 -0
  578. data/spec/arachni/page_spec.rb +789 -175
  579. data/spec/arachni/parser_spec.rb +308 -200
  580. data/spec/arachni/platform/fingerprinter_spec.rb +51 -52
  581. data/spec/arachni/platform/manager_spec.rb +146 -34
  582. data/spec/arachni/plugin/base_spec.rb +97 -0
  583. data/spec/arachni/plugin/manager_spec.rb +186 -80
  584. data/spec/arachni/report_spec.rb +275 -0
  585. data/spec/arachni/reporter/base_spec.rb +96 -0
  586. data/spec/arachni/reporter/manager_spec.rb +38 -0
  587. data/spec/arachni/reporter/options_spec.rb +48 -0
  588. data/spec/arachni/rpc/client/base_spec.rb +43 -45
  589. data/spec/arachni/rpc/client/dispatcher_spec.rb +3 -3
  590. data/spec/arachni/rpc/client/instance_spec.rb +18 -40
  591. data/spec/arachni/rpc/server/active_options_spec.rb +35 -296
  592. data/spec/arachni/rpc/server/base_spec.rb +12 -6
  593. data/spec/arachni/rpc/server/checks/manager_spec.rb +48 -0
  594. data/spec/arachni/rpc/server/dispatcher/node_spec.rb +47 -74
  595. data/spec/arachni/rpc/server/dispatcher/service_spec.rb +99 -0
  596. data/spec/arachni/rpc/server/dispatcher_spec.rb +77 -38
  597. data/spec/arachni/rpc/server/framework/distributor_spec.rb +356 -396
  598. data/spec/arachni/rpc/server/framework_multi_spec.rb +336 -0
  599. data/spec/arachni/rpc/server/framework_spec.rb +396 -0
  600. data/spec/arachni/rpc/server/instance_spec.rb +480 -281
  601. data/spec/arachni/rpc/server/output_spec.rb +9 -212
  602. data/spec/arachni/rpc/server/plugin/manager_spec.rb +6 -11
  603. data/spec/arachni/ruby/hash_spec.rb +30 -0
  604. data/spec/arachni/ruby/object_spec.rb +0 -16
  605. data/spec/arachni/ruby/string_spec.rb +98 -6
  606. data/spec/arachni/scope_spec.rb +13 -0
  607. data/spec/arachni/session_spec.rb +279 -251
  608. data/spec/arachni/snapshot_spec.rb +127 -0
  609. data/spec/arachni/state/audit_spec.rb +107 -0
  610. data/spec/arachni/state/element_filter_spec.rb +66 -0
  611. data/spec/arachni/state/framework/rpc_spec.rb +85 -0
  612. data/spec/arachni/state/framework_spec.rb +853 -0
  613. data/spec/arachni/state/http_spec.rb +63 -0
  614. data/spec/arachni/state/options_spec.rb +55 -0
  615. data/spec/arachni/state/plugins_spec.rb +76 -0
  616. data/spec/arachni/state_spec.rb +87 -0
  617. data/spec/arachni/support/cache/least_cost_replacement_spec.rb +30 -32
  618. data/spec/arachni/support/cache/least_recently_used_spec.rb +39 -40
  619. data/spec/arachni/support/cache/preference_spec.rb +17 -18
  620. data/spec/arachni/support/cache/random_replacement_spec.rb +19 -20
  621. data/spec/arachni/support/database/queue_spec.rb +200 -32
  622. data/spec/arachni/support/lookup/hash_set_spec.rb +74 -0
  623. data/spec/arachni/support/mixins/observable_spec.rb +81 -0
  624. data/spec/arachni/support/signature_spec.rb +9 -25
  625. data/spec/arachni/trainer_spec.rb +141 -124
  626. data/spec/arachni/uri/scope_spec.rb +416 -0
  627. data/spec/arachni/uri_spec.rb +187 -195
  628. data/spec/arachni/utilities_spec.rb +178 -525
  629. data/spec/components/checks/active/code_injection_spec.rb +26 -0
  630. data/spec/components/checks/active/code_injection_timing_spec.rb +26 -0
  631. data/spec/components/checks/active/csrf_spec.rb +44 -0
  632. data/spec/components/checks/active/file_inclusion_spec.rb +56 -0
  633. data/spec/components/checks/active/ldap_injection_spec.rb +16 -0
  634. data/spec/components/checks/active/no_sql_injection_differential_spec.rb +15 -0
  635. data/spec/components/checks/active/no_sql_injection_spec.rb +28 -0
  636. data/spec/components/checks/active/os_cmd_injection_spec.rb +26 -0
  637. data/spec/components/checks/active/os_cmd_injection_timing_spec.rb +26 -0
  638. data/spec/components/checks/active/path_traversal_spec.rb +42 -0
  639. data/spec/components/checks/active/response_splitting_spec.rb +22 -0
  640. data/spec/components/checks/active/rfi_spec.rb +20 -0
  641. data/spec/components/checks/active/session_fixation_spec.rb +20 -0
  642. data/spec/components/checks/active/source_code_disclosure_spec.rb +26 -0
  643. data/spec/components/checks/active/sql_injection_differential_spec.rb +15 -0
  644. data/spec/components/checks/active/sql_injection_spec.rb +142 -0
  645. data/spec/components/checks/active/sql_injection_timing_spec.rb +24 -0
  646. data/spec/components/checks/active/trainer_spec.rb +36 -0
  647. data/spec/components/checks/active/unvalidated_redirect_spec.rb +20 -0
  648. data/spec/components/checks/active/xpath_injection_spec.rb +16 -0
  649. data/spec/components/checks/active/xss_dom_inputs_spec.rb +32 -0
  650. data/spec/components/checks/active/xss_dom_script_context_spec.rb +63 -0
  651. data/spec/components/checks/active/xss_dom_spec.rb +67 -0
  652. data/spec/components/checks/active/xss_event_spec.rb +15 -0
  653. data/spec/components/checks/active/xss_path_spec.rb +15 -0
  654. data/spec/components/checks/active/xss_script_context_spec.rb +22 -0
  655. data/spec/components/checks/active/xss_spec.rb +22 -0
  656. data/spec/components/checks/active/xss_tag_spec.rb +15 -0
  657. data/spec/components/checks/passive/allowed_methods_spec.rb +15 -0
  658. data/spec/components/checks/passive/backdoors_spec.rb +15 -0
  659. data/spec/components/checks/passive/backup_directories_spec.rb +15 -0
  660. data/spec/components/checks/passive/backup_files_spec.rb +15 -0
  661. data/spec/components/checks/passive/common_directories_spec.rb +15 -0
  662. data/spec/components/checks/passive/common_files_spec.rb +15 -0
  663. data/spec/components/checks/passive/directory_listing_spec.rb +15 -0
  664. data/spec/components/checks/passive/grep/captcha_spec.rb +15 -0
  665. data/spec/components/checks/passive/grep/cookie_set_for_parent_domain_spec.rb +15 -0
  666. data/spec/components/checks/passive/grep/credit_card_spec.rb +15 -0
  667. data/spec/components/checks/passive/grep/cvs_svn_users_spec.rb +15 -0
  668. data/spec/components/checks/passive/grep/emails_spec.rb +15 -0
  669. data/spec/components/checks/passive/grep/form_upload_spec.rb +15 -0
  670. data/spec/components/checks/passive/grep/hsts_spec.rb +17 -0
  671. data/spec/components/checks/passive/grep/html_objects_spec.rb +15 -0
  672. data/spec/components/checks/passive/grep/http_only_cookies_spec.rb +15 -0
  673. data/spec/components/checks/passive/grep/insecure_cookies_spec.rb +15 -0
  674. data/spec/components/checks/passive/grep/mixed_resource_spec.rb +16 -0
  675. data/spec/components/checks/passive/grep/password_autocomplete_spec.rb +15 -0
  676. data/spec/components/checks/passive/grep/private_ip_spec.rb +22 -0
  677. data/spec/components/checks/passive/grep/ssn_spec.rb +15 -0
  678. data/spec/components/checks/passive/grep/unencrypted_password_forms_spec.rb +15 -0
  679. data/spec/components/checks/passive/htaccess_limit_spec.rb +15 -0
  680. data/spec/components/checks/passive/http_put_spec.rb +15 -0
  681. data/spec/components/checks/passive/interesting_responses_spec.rb +23 -0
  682. data/spec/components/checks/passive/localstart_asp_spec.rb +15 -0
  683. data/spec/components/checks/passive/origin_spoof_access_restriction_bypass_spec.rb +15 -0
  684. data/spec/components/checks/passive/webdav_spec.rb +15 -0
  685. data/spec/components/checks/passive/xst_spec.rb +15 -0
  686. data/spec/components/fingerprinters/frameworks/rack_spec.rb +42 -0
  687. data/spec/components/fingerprinters/languages/asp_spec.rb +38 -0
  688. data/spec/components/fingerprinters/languages/aspx_spec.rb +79 -0
  689. data/spec/components/fingerprinters/languages/jsp_spec.rb +56 -0
  690. data/spec/components/fingerprinters/languages/php_spec.rb +59 -0
  691. data/spec/components/fingerprinters/languages/python_spec.rb +23 -0
  692. data/spec/components/fingerprinters/languages/ruby.rb +34 -0
  693. data/spec/components/fingerprinters/os/bsd_spec.rb +26 -0
  694. data/spec/components/fingerprinters/os/linux_spec.rb +34 -0
  695. data/spec/components/fingerprinters/os/solaris_spec.rb +34 -0
  696. data/spec/components/fingerprinters/os/unix_spec.rb +26 -0
  697. data/spec/components/fingerprinters/os/windows_spec.rb +34 -0
  698. data/spec/components/fingerprinters/servers/apache_spec.rb +26 -0
  699. data/spec/components/fingerprinters/servers/iis_spec.rb +28 -0
  700. data/spec/components/fingerprinters/servers/jetty_spec.rb +28 -0
  701. data/spec/components/fingerprinters/servers/nginx_spec.rb +26 -0
  702. data/spec/components/fingerprinters/servers/tomcat_spec.rb +28 -0
  703. data/spec/{path_extractors → components/path_extractors}/anchors_spec.rb +0 -0
  704. data/spec/{path_extractors → components/path_extractors}/areas_spec.rb +0 -0
  705. data/spec/components/path_extractors/comments_spec.rb +23 -0
  706. data/spec/{path_extractors → components/path_extractors}/forms_spec.rb +0 -0
  707. data/spec/{path_extractors → components/path_extractors}/frames_spec.rb +0 -0
  708. data/spec/{path_extractors → components/path_extractors}/generic_spec.rb +0 -0
  709. data/spec/{path_extractors → components/path_extractors}/links_spec.rb +0 -0
  710. data/spec/{path_extractors → components/path_extractors}/meta_refresh_spec.rb +0 -0
  711. data/spec/components/path_extractors/scripts_spec.rb +30 -0
  712. data/spec/components/plugins/autologin_spec.rb +96 -0
  713. data/spec/components/plugins/autothrottle_spec.rb +56 -0
  714. data/spec/components/plugins/content_types_spec.rb +91 -0
  715. data/spec/components/plugins/cookie_collector_spec.rb +41 -0
  716. data/spec/components/plugins/form_dicattack_spec.rb +54 -0
  717. data/spec/components/plugins/healthmap_spec.rb +40 -0
  718. data/spec/components/plugins/http_dicattack_spec.rb +40 -0
  719. data/spec/components/plugins/meta/remedies/discovery_spec.rb +23 -0
  720. data/spec/components/plugins/meta/remedies/timing_attacks_spec.rb +31 -0
  721. data/spec/components/plugins/meta/uniformity_spec.rb +29 -0
  722. data/spec/components/plugins/script_spec.rb +13 -0
  723. data/spec/components/plugins/uncommon_headers_spec.rb +64 -0
  724. data/spec/components/plugins/vector_feed_spec.rb +169 -0
  725. data/spec/components/plugins/waf_detector_spec.rb +50 -0
  726. data/spec/components/reporters/ap_spec.rb +9 -0
  727. data/spec/components/reporters/html_spec.rb +9 -0
  728. data/spec/components/reporters/json_spec.rb +17 -0
  729. data/spec/components/reporters/marshal_spec.rb +13 -0
  730. data/spec/components/reporters/stdout_spec.rb +9 -0
  731. data/spec/components/reporters/txt_spec.rb +8 -0
  732. data/spec/components/reporters/xml_spec.rb +9 -0
  733. data/spec/components/reporters/yaml_spec.rb +14 -0
  734. data/spec/external/wavsep/active/lfi_spec.rb +1 -1
  735. data/spec/external/wavsep/active/obsolete_files_spec.rb +225 -0
  736. data/spec/external/wavsep/active/rfi_spec.rb +1 -1
  737. data/spec/external/wavsep/active/sqli_spec.rb +8 -6
  738. data/spec/external/wavsep/active/unvalidated_redirect_spec.rb +57 -0
  739. data/spec/external/wavsep/active/xss_dom_spec.rb +27 -0
  740. data/spec/external/wavsep/active/xss_spec.rb +13 -3
  741. data/spec/external/wavsep/false_positives/lfi_spec.rb +4 -16
  742. data/spec/external/wavsep/false_positives/obsolete_files_spec.rb +21 -0
  743. data/spec/external/wavsep/false_positives/rfi_spec.rb +2 -2
  744. data/spec/external/wavsep/false_positives/sqli_spec.rb +4 -15
  745. data/spec/external/wavsep/false_positives/unvalidated_redirect_spec.rb +21 -0
  746. data/spec/external/wavsep/false_positives/xss_spec.rb +2 -2
  747. data/spec/spec_helper.rb +17 -18
  748. data/spec/support/factories/browser/javascript/taint_tracer/frame.rb +10 -0
  749. data/spec/support/factories/browser/javascript/taint_tracer/frame/called_function.rb +11 -0
  750. data/spec/support/factories/browser/javascript/taint_tracer/sink/data_flow.rb +14 -0
  751. data/spec/support/factories/browser/javascript/taint_tracer/sink/execution_flow.rb +10 -0
  752. data/spec/support/factories/browser_cluster/job.rb +27 -0
  753. data/spec/support/factories/element/cookie.rb +7 -0
  754. data/spec/support/factories/element/form.rb +12 -0
  755. data/spec/support/factories/element/header.rb +5 -0
  756. data/spec/support/factories/element/link.rb +11 -0
  757. data/spec/support/factories/element/link_template.rb +11 -0
  758. data/spec/support/factories/http/request.rb +9 -0
  759. data/spec/support/factories/http/response.rb +42 -0
  760. data/spec/support/factories/issue.rb +67 -0
  761. data/spec/support/factories/page.rb +7 -0
  762. data/spec/support/factories/page/dom.rb +13 -0
  763. data/spec/support/factories/page/dom/transition.rb +21 -0
  764. data/spec/support/factories/scan_report.rb +35 -0
  765. data/spec/support/factories/vector.rb +32 -0
  766. data/spec/support/fixtures/check_with_invalid_platforms/with_invalid_platforms.rb +37 -0
  767. data/spec/support/fixtures/checks/test.rb +58 -0
  768. data/spec/support/fixtures/checks/test2.rb +41 -0
  769. data/spec/support/fixtures/checks/test3.rb +41 -0
  770. data/spec/support/fixtures/executables/node.rb +47 -0
  771. data/spec/support/fixtures/fingerprinters/test.rb +5 -13
  772. data/spec/support/fixtures/option_groups/input.yml +2 -0
  773. data/spec/support/fixtures/plugins/bad.rb +5 -13
  774. data/spec/support/fixtures/plugins/defaults/default.rb +6 -14
  775. data/spec/support/fixtures/plugins/distributable.rb +7 -15
  776. data/spec/support/fixtures/plugins/loop.rb +5 -13
  777. data/spec/support/fixtures/plugins/suspendable.rb +44 -0
  778. data/spec/support/fixtures/plugins/wait.rb +6 -14
  779. data/spec/support/fixtures/plugins/with_options.rb +20 -16
  780. data/spec/support/fixtures/plugins_with_priorities/p0.rb +17 -0
  781. data/spec/support/fixtures/plugins_with_priorities/p00.rb +17 -0
  782. data/spec/support/fixtures/plugins_with_priorities/p1.rb +17 -0
  783. data/spec/support/fixtures/plugins_with_priorities/p2.rb +17 -0
  784. data/spec/support/fixtures/plugins_with_priorities/p22.rb +17 -0
  785. data/spec/support/fixtures/plugins_with_priorities/p222.rb +17 -0
  786. data/spec/support/fixtures/plugins_with_priorities/p_nil.rb +16 -0
  787. data/spec/support/fixtures/plugins_with_priorities/p_nil2.rb +16 -0
  788. data/spec/support/fixtures/report.afr +0 -0
  789. data/spec/support/fixtures/reporters/base_spec/plugin_formatters/with_formatters/foobar.rb +13 -0
  790. data/spec/support/fixtures/reporters/base_spec/with_formatters.rb +15 -0
  791. data/spec/support/fixtures/reporters/base_spec/with_outfile.rb +16 -0
  792. data/spec/support/fixtures/reporters/base_spec/without_outfile.rb +12 -0
  793. data/spec/support/fixtures/reporters/manager_spec/afr.rb +13 -0
  794. data/spec/support/fixtures/reporters/manager_spec/foo.rb +18 -0
  795. data/spec/support/fixtures/rescan.afr.tpl +4 -5
  796. data/spec/support/fixtures/run_check/body.rb +48 -0
  797. data/spec/support/fixtures/run_check/cookies.rb +48 -0
  798. data/spec/support/fixtures/run_check/empty.rb +34 -0
  799. data/spec/support/fixtures/run_check/flch.rb +53 -0
  800. data/spec/support/fixtures/run_check/forms.rb +48 -0
  801. data/spec/support/fixtures/run_check/headers.rb +48 -0
  802. data/spec/support/fixtures/run_check/links.rb +48 -0
  803. data/spec/support/fixtures/run_check/nil.rb +47 -0
  804. data/spec/support/fixtures/run_check/path.rb +48 -0
  805. data/spec/support/fixtures/run_check/server.rb +48 -0
  806. data/spec/support/fixtures/services/echo.rb +64 -0
  807. data/spec/support/fixtures/taint_check/taint.rb +38 -0
  808. data/spec/support/fixtures/wait_check/wait.rb +38 -0
  809. data/spec/support/helpers/auditor.rb +18 -5
  810. data/spec/support/helpers/browser.rb +6 -0
  811. data/spec/support/helpers/browser_cluster/jobs/taint_tracer.rb +32 -0
  812. data/spec/support/helpers/framework.rb +5 -13
  813. data/spec/support/helpers/misc.rb +4 -12
  814. data/spec/support/helpers/pages.rb +18 -0
  815. data/spec/support/helpers/paths.rb +4 -12
  816. data/spec/support/helpers/requires.rb +5 -13
  817. data/spec/support/helpers/resets.rb +12 -19
  818. data/spec/support/helpers/web_server.rb +11 -15
  819. data/spec/support/lib/factory.rb +115 -0
  820. data/spec/support/lib/web_server_client.rb +49 -0
  821. data/spec/support/lib/web_server_dispatcher.rb +33 -0
  822. data/spec/support/lib/web_server_manager.rb +29 -32
  823. data/spec/support/pems/cacert.pem +35 -37
  824. data/spec/support/pems/client/cert.pem +35 -37
  825. data/spec/support/pems/client/key.pem +49 -49
  826. data/spec/support/pems/server/cert.pem +35 -37
  827. data/spec/support/pems/server/key.pem +49 -49
  828. data/spec/support/servers/arachni/browser.rb +836 -0
  829. data/spec/support/servers/arachni/browser/javascript.rb +7 -0
  830. data/spec/support/servers/arachni/browser/javascript/angular-1.2.8.js +20554 -0
  831. data/spec/support/servers/arachni/browser/javascript/angular-route.js +911 -0
  832. data/spec/support/servers/arachni/browser/javascript/dom_monitor.rb +90 -0
  833. data/spec/support/servers/arachni/browser/javascript/jquery-2.0.3.js +8829 -0
  834. data/spec/support/servers/arachni/browser/javascript/proxy.rb +17 -0
  835. data/spec/support/servers/arachni/browser/javascript/taint_tracer.rb +714 -0
  836. data/spec/support/servers/arachni/browser_cluster/jobs/event_trigger.rb +25 -0
  837. data/spec/support/servers/arachni/browser_https.rb +60 -0
  838. data/spec/support/servers/arachni/check/auditor.rb +247 -0
  839. data/spec/support/servers/arachni/element/body.rb +5 -0
  840. data/spec/support/servers/arachni/element/capabilities/analyzable/differential.rb +162 -0
  841. data/spec/support/servers/arachni/element/capabilities/{auditable → analyzable}/taint.rb +0 -0
  842. data/spec/support/servers/arachni/element/capabilities/analyzable/timeout.rb +37 -0
  843. data/spec/support/servers/arachni/element/cookie.rb +1 -1
  844. data/spec/support/servers/arachni/element/cookie/cookie_dom.rb +21 -0
  845. data/spec/support/servers/arachni/element/form.rb +6 -22
  846. data/spec/support/servers/arachni/element/form/form_dom.rb +50 -0
  847. data/spec/support/servers/arachni/element/header.rb +7 -8
  848. data/spec/support/servers/arachni/element/link.rb +15 -7
  849. data/spec/support/servers/arachni/element/link/link_dom.rb +49 -0
  850. data/spec/support/servers/arachni/element/link_template.rb +11 -0
  851. data/spec/support/servers/arachni/element/link_template/link_template_dom.rb +43 -0
  852. data/spec/support/servers/arachni/framework.rb +18 -0
  853. data/spec/support/servers/arachni/http/client.rb +176 -0
  854. data/spec/support/servers/arachni/http/proxy_server.rb +9 -0
  855. data/spec/support/servers/arachni/http/proxy_server_https.rb +25 -0
  856. data/spec/support/servers/arachni/page/page_dom.rb +83 -0
  857. data/spec/support/servers/arachni/parser.rb +4 -0
  858. data/spec/support/servers/arachni/rpc/server/{framework_hpg.rb → framework_multi.rb} +0 -0
  859. data/spec/support/servers/arachni/session.rb +43 -9
  860. data/spec/support/servers/arachni/trainer.rb +11 -7
  861. data/spec/support/servers/checks/active/code_injection.rb +163 -0
  862. data/spec/support/servers/checks/active/code_injection_timing.rb +134 -0
  863. data/spec/support/servers/{modules/audit → checks/active}/csrf.rb +0 -0
  864. data/spec/support/servers/checks/active/file_inclusion.rb +228 -0
  865. data/spec/support/servers/checks/active/ldap_injection.rb +88 -0
  866. data/spec/support/servers/checks/active/no_sql_injection.rb +134 -0
  867. data/spec/support/servers/checks/active/no_sql_injection/mongodb +1 -0
  868. data/spec/support/servers/checks/active/no_sql_injection_differential.rb +61 -0
  869. data/spec/support/servers/checks/active/os_cmd_injection.rb +172 -0
  870. data/spec/support/servers/checks/active/os_cmd_injection_timing.rb +118 -0
  871. data/spec/support/servers/checks/active/path_traversal.rb +219 -0
  872. data/spec/support/servers/checks/active/response_splitting.rb +138 -0
  873. data/spec/support/servers/{modules/audit → checks/active}/rfi.rb +0 -0
  874. data/spec/support/servers/checks/active/session_fixation.rb +111 -0
  875. data/spec/support/servers/checks/active/source_code_disclosure.rb +118 -0
  876. data/spec/support/servers/checks/active/sql_injection.rb +133 -0
  877. data/spec/support/servers/{modules/audit/sqli → checks/active/sql_injection}/access +0 -0
  878. data/spec/support/servers/{modules/audit/sqli → checks/active/sql_injection}/coldfusion +0 -0
  879. data/spec/support/servers/{modules/audit/sqli → checks/active/sql_injection}/db2 +0 -0
  880. data/spec/support/servers/{modules/audit/sqli → checks/active/sql_injection}/emc +0 -0
  881. data/spec/support/servers/{modules/audit/sqli → checks/active/sql_injection}/firebird +0 -0
  882. data/spec/support/servers/{modules/audit/sqli → checks/active/sql_injection}/frontbase +0 -0
  883. data/spec/support/servers/{modules/audit/sqli → checks/active/sql_injection}/hsqldb +0 -0
  884. data/spec/support/servers/{modules/audit/sqli → checks/active/sql_injection}/informix +0 -0
  885. data/spec/support/servers/{modules/audit/sqli → checks/active/sql_injection}/ingres +0 -0
  886. data/spec/support/servers/{modules/audit/sqli → checks/active/sql_injection}/interbase +0 -0
  887. data/spec/support/servers/checks/active/sql_injection/jdbc +0 -0
  888. data/spec/support/servers/{modules/audit/sqli → checks/active/sql_injection}/maxdb +0 -0
  889. data/spec/support/servers/{modules/audit/sqli → checks/active/sql_injection}/mssql +0 -0
  890. data/spec/support/servers/{modules/audit/sqli → checks/active/sql_injection}/mysql +0 -0
  891. data/spec/support/servers/{modules/audit/sqli → checks/active/sql_injection}/oracle +0 -0
  892. data/spec/support/servers/{modules/audit/sqli/postgresql → checks/active/sql_injection/pgsql} +0 -0
  893. data/spec/support/servers/{modules/audit/sqli → checks/active/sql_injection}/sqlite +0 -0
  894. data/spec/support/servers/{modules/audit/sqli → checks/active/sql_injection}/sybase +0 -0
  895. data/spec/support/servers/{modules/audit/sqli_blind_rdiff.rb → checks/active/sql_injection_differential.rb} +0 -0
  896. data/spec/support/servers/checks/active/sql_injection_timing.rb +145 -0
  897. data/spec/support/servers/{modules/audit/trainer_module.rb → checks/active/trainer_check.rb} +0 -0
  898. data/spec/support/servers/checks/active/unvalidated_redirect.rb +141 -0
  899. data/spec/support/servers/checks/active/xpath_injection.rb +121 -0
  900. data/spec/support/servers/{modules/audit/xpath → checks/active/xpath_injection}/dotnet +0 -0
  901. data/spec/support/servers/{modules/audit/xpath → checks/active/xpath_injection}/general +0 -0
  902. data/spec/support/servers/{modules/audit/xpath → checks/active/xpath_injection}/java +0 -0
  903. data/spec/support/servers/{modules/audit/xpath → checks/active/xpath_injection}/libxml2 +0 -0
  904. data/spec/support/servers/{modules/audit/xpath → checks/active/xpath_injection}/php +0 -0
  905. data/spec/support/servers/checks/active/xss.rb +239 -0
  906. data/spec/support/servers/checks/active/xss_dom.rb +133 -0
  907. data/spec/support/servers/checks/active/xss_dom_inputs.rb +35 -0
  908. data/spec/support/servers/checks/active/xss_dom_script_context.rb +139 -0
  909. data/spec/support/servers/checks/active/xss_event.rb +80 -0
  910. data/spec/support/servers/{modules/audit → checks/active}/xss_path.rb +0 -0
  911. data/spec/support/servers/checks/active/xss_script_context.rb +90 -0
  912. data/spec/support/servers/{modules/audit → checks/active}/xss_tag.rb +0 -0
  913. data/spec/support/servers/checks/check_server.rb +14 -0
  914. data/spec/support/servers/{modules/recon → checks/passive}/allowed_methods.rb +0 -0
  915. data/spec/support/servers/checks/passive/backdoors.rb +4 -0
  916. data/spec/support/servers/checks/passive/backup_directories.rb +15 -0
  917. data/spec/support/servers/checks/passive/backup_files.rb +15 -0
  918. data/spec/support/servers/checks/passive/common_directories.rb +6 -0
  919. data/spec/support/servers/checks/passive/common_files.rb +6 -0
  920. data/spec/support/servers/checks/passive/directory_listing.rb +30 -0
  921. data/spec/support/servers/{modules/recon → checks/passive}/grep/captcha.rb +0 -0
  922. data/spec/support/servers/checks/passive/grep/cookie_set_for_parent_domain.rb +21 -0
  923. data/spec/support/servers/{modules/recon → checks/passive}/grep/credit_card.rb +0 -0
  924. data/spec/support/servers/{modules/recon → checks/passive}/grep/cvs_svn_users.rb +0 -0
  925. data/spec/support/servers/checks/passive/grep/emails.rb +23 -0
  926. data/spec/support/servers/{modules/recon → checks/passive}/grep/form_upload.rb +0 -0
  927. data/spec/support/servers/checks/passive/grep/hsts_https.rb +37 -0
  928. data/spec/support/servers/{modules/recon → checks/passive}/grep/html_objects.rb +0 -0
  929. data/spec/support/servers/{modules/recon → checks/passive}/grep/http_only_cookies.rb +0 -0
  930. data/spec/support/servers/checks/passive/grep/insecure_cookies_https.rb +40 -0
  931. data/spec/support/servers/checks/passive/grep/mixed_resource_https.rb +69 -0
  932. data/spec/support/servers/checks/passive/grep/password_autocomplete.rb +33 -0
  933. data/spec/support/servers/{modules/recon → checks/passive}/grep/private_ip.rb +0 -0
  934. data/spec/support/servers/{modules/recon → checks/passive}/grep/ssn.rb +0 -0
  935. data/spec/support/servers/checks/passive/grep/unencrypted_password_forms.rb +33 -0
  936. data/spec/support/servers/{modules/recon → checks/passive}/htaccess_limit.rb +0 -0
  937. data/spec/support/servers/checks/passive/http_put.rb +7 -0
  938. data/spec/support/servers/checks/passive/interesting_responses.rb +5 -0
  939. data/spec/support/servers/{modules/recon → checks/passive}/localstart_asp.rb +0 -0
  940. data/spec/support/servers/checks/passive/origin_spoof_access_restriction_bypass.rb +30 -0
  941. data/spec/support/servers/checks/passive/webdav.rb +25 -0
  942. data/spec/support/servers/{modules/recon → checks/passive}/xst.rb +0 -0
  943. data/spec/support/servers/plugins/meta/remedies/discovery.rb +2 -2
  944. data/spec/support/servers/plugins/meta/remedies/timing_attacks.rb +2 -0
  945. data/spec/support/shared/browser/javascript/taint_tracer/sink/base.rb +36 -0
  946. data/spec/support/shared/check.rb +198 -0
  947. data/spec/support/shared/component.rb +15 -4
  948. data/spec/support/shared/component/options/base.rb +187 -0
  949. data/spec/support/shared/element/base.rb +131 -0
  950. data/spec/support/shared/element/capabilities/auditable.rb +371 -604
  951. data/spec/support/shared/element/capabilities/auditable/dom.rb +303 -0
  952. data/spec/support/shared/element/capabilities/inputtable.rb +499 -0
  953. data/spec/support/shared/element/capabilities/mutable.rb +362 -0
  954. data/spec/support/shared/element/capabilities/refreshable.rb +26 -26
  955. data/spec/support/shared/element/capabilities/submitable.rb +155 -0
  956. data/spec/support/shared/element/capabilities/with_auditor.rb +75 -0
  957. data/spec/support/shared/element/capabilities/with_dom.rb +39 -0
  958. data/spec/support/shared/element/capabilities/with_node.rb +42 -0
  959. data/spec/support/shared/element/capabilities/with_scope.rb +22 -0
  960. data/spec/support/shared/external/wavsep.rb +30 -9
  961. data/spec/support/shared/http/message.rb +72 -0
  962. data/spec/support/shared/option_group.rb +98 -0
  963. data/spec/support/shared/path_extractor.rb +1 -1
  964. data/spec/support/shared/plugin.rb +33 -16
  965. data/spec/support/shared/reporter.rb +41 -0
  966. data/spec/support/shared/support/cache.rb +341 -0
  967. data/spec/support/shared/support/lookup.rb +93 -13
  968. data/ui/cli/framework.rb +466 -0
  969. data/ui/cli/framework/option_parser.rb +628 -0
  970. data/ui/cli/option_parser.rb +104 -0
  971. data/ui/cli/output.rb +377 -0
  972. data/ui/cli/reporter.rb +52 -0
  973. data/ui/cli/reporter/option_parser.rb +102 -0
  974. data/ui/cli/restored_framework.rb +127 -0
  975. data/ui/cli/restored_framework/option_parser.rb +115 -0
  976. data/ui/cli/rpc/client/dispatcher_monitor.rb +157 -0
  977. data/ui/cli/rpc/client/dispatcher_monitor/option_parser.rb +41 -0
  978. data/ui/cli/rpc/client/instance.rb +294 -0
  979. data/ui/cli/rpc/client/local.rb +65 -0
  980. data/ui/cli/rpc/client/local/option_parser.rb +35 -0
  981. data/ui/cli/rpc/client/remote.rb +84 -0
  982. data/ui/cli/rpc/client/remote/option_parser.rb +99 -0
  983. data/ui/cli/rpc/server/dispatcher.rb +36 -0
  984. data/ui/cli/rpc/server/dispatcher/option_parser.rb +165 -0
  985. data/ui/cli/utilities.rb +228 -0
  986. metadata +1260 -1266
  987. data/EXPLOITATION.md +0 -431
  988. data/HACKING.md +0 -120
  989. data/NOTICE +0 -12
  990. data/data/crypto/public.pem +0 -9
  991. data/external/metasploit/LICENSE +0 -24
  992. data/external/metasploit/plugins/arachni.rb +0 -516
  993. data/external/metasploit/plugins/arachni/modules/auxiliary/arachni_sqlmap.rb +0 -91
  994. data/external/metasploit/plugins/arachni/modules/exploits/unix/webapp/arachni_exec.rb +0 -142
  995. data/external/metasploit/plugins/arachni/modules/exploits/unix/webapp/arachni_path_traversal.rb +0 -113
  996. data/external/metasploit/plugins/arachni/modules/exploits/unix/webapp/arachni_php_eval.rb +0 -150
  997. data/external/metasploit/plugins/arachni/modules/exploits/unix/webapp/arachni_php_include.rb +0 -141
  998. data/fingerprinters/frameworks/rack.rb +0 -41
  999. data/fingerprinters/languages/asp.rb +0 -42
  1000. data/fingerprinters/languages/aspx.rb +0 -63
  1001. data/fingerprinters/languages/jsp.rb +0 -42
  1002. data/fingerprinters/languages/php.rb +0 -43
  1003. data/fingerprinters/languages/python.rb +0 -40
  1004. data/fingerprinters/languages/ruby.rb +0 -41
  1005. data/fingerprinters/os/bsd.rb +0 -36
  1006. data/fingerprinters/os/linux.rb +0 -42
  1007. data/fingerprinters/os/solaris.rb +0 -41
  1008. data/fingerprinters/os/unix.rb +0 -36
  1009. data/fingerprinters/os/windows.rb +0 -41
  1010. data/fingerprinters/servers/apache.rb +0 -36
  1011. data/fingerprinters/servers/iis.rb +0 -36
  1012. data/fingerprinters/servers/jetty.rb +0 -36
  1013. data/fingerprinters/servers/nginx.rb +0 -36
  1014. data/fingerprinters/servers/tomcat.rb +0 -36
  1015. data/gfx/README.md +0 -18
  1016. data/gfx/compiled/banner.png +0 -0
  1017. data/gfx/compiled/favicon.ico +0 -0
  1018. data/gfx/compiled/icon.png +0 -0
  1019. data/gfx/compiled/logo.png +0 -0
  1020. data/gfx/compiled/spider.png +0 -0
  1021. data/gfx/font/Beneath_the_Surface.ttf +0 -0
  1022. data/gfx/font/bts_readme.txt +0 -14
  1023. data/gfx/source/banner.svg +0 -999
  1024. data/gfx/source/icon.svg +0 -627
  1025. data/gfx/source/logo.svg +0 -672
  1026. data/gfx/source/spider.png +0 -0
  1027. data/gfx/source/spider.svg +0 -277
  1028. data/lib/arachni/audit_store.rb +0 -321
  1029. data/lib/arachni/component/options/enum.rb +0 -51
  1030. data/lib/arachni/element/capabilities/auditable/rdiff.rb +0 -489
  1031. data/lib/arachni/element/capabilities/auditable/taint.rb +0 -238
  1032. data/lib/arachni/element/capabilities/auditable/timeout.rb +0 -469
  1033. data/lib/arachni/mixins/observable.rb +0 -91
  1034. data/lib/arachni/mixins/progress_bar.rb +0 -87
  1035. data/lib/arachni/mixins/terminal.rb +0 -112
  1036. data/lib/arachni/module.rb +0 -20
  1037. data/lib/arachni/module/auditor.rb +0 -618
  1038. data/lib/arachni/module/base.rb +0 -188
  1039. data/lib/arachni/module/manager.rb +0 -255
  1040. data/lib/arachni/module/output.rb +0 -68
  1041. data/lib/arachni/module/utilities.rb +0 -64
  1042. data/lib/arachni/report/base.rb +0 -201
  1043. data/lib/arachni/report/manager.rb +0 -86
  1044. data/lib/arachni/rpc/server/dispatcher/handler.rb +0 -166
  1045. data/lib/arachni/rpc/server/module/manager.rb +0 -46
  1046. data/lib/arachni/rpc/server/spider.rb +0 -404
  1047. data/lib/arachni/ruby/enumerable.rb +0 -29
  1048. data/lib/arachni/spider.rb +0 -477
  1049. data/lib/arachni/support/key_filler.rb +0 -68
  1050. data/lib/arachni/support/queue.rb +0 -18
  1051. data/lib/arachni/support/queue/disk.rb +0 -171
  1052. data/lib/arachni/typhoeus/hydra.rb +0 -56
  1053. data/lib/arachni/typhoeus/request.rb +0 -80
  1054. data/lib/arachni/typhoeus/response.rb +0 -103
  1055. data/lib/arachni/typhoeus/utils.rb +0 -25
  1056. data/lib/arachni/ui/cli/cli.rb +0 -469
  1057. data/lib/arachni/ui/cli/output.rb +0 -391
  1058. data/lib/arachni/ui/cli/rpc/dispatcher_monitor.rb +0 -188
  1059. data/lib/arachni/ui/cli/rpc/instance.rb +0 -407
  1060. data/lib/arachni/ui/cli/rpc/local.rb +0 -80
  1061. data/lib/arachni/ui/cli/rpc/remote.rb +0 -134
  1062. data/lib/arachni/ui/cli/utilities.rb +0 -509
  1063. data/modules/audit/code_injection.rb +0 -137
  1064. data/modules/audit/code_injection_php_input_wrapper.rb +0 -109
  1065. data/modules/audit/code_injection_timing.rb +0 -122
  1066. data/modules/audit/csrf.rb +0 -225
  1067. data/modules/audit/file_inclusion.rb +0 -156
  1068. data/modules/audit/ldapi.rb +0 -97
  1069. data/modules/audit/os_cmd_injection.rb +0 -109
  1070. data/modules/audit/os_cmd_injection_timing.rb +0 -98
  1071. data/modules/audit/path_traversal.rb +0 -170
  1072. data/modules/audit/response_splitting.rb +0 -99
  1073. data/modules/audit/rfi.rb +0 -181
  1074. data/modules/audit/session_fixation.rb +0 -117
  1075. data/modules/audit/source_code_disclosure.rb +0 -179
  1076. data/modules/audit/sqli.rb +0 -148
  1077. data/modules/audit/sqli_blind_rdiff.rb +0 -138
  1078. data/modules/audit/sqli_blind_timing.rb +0 -126
  1079. data/modules/audit/trainer.rb +0 -49
  1080. data/modules/audit/unvalidated_redirect.rb +0 -91
  1081. data/modules/audit/xpath.rb +0 -97
  1082. data/modules/audit/xss.rb +0 -154
  1083. data/modules/audit/xss_event.rb +0 -153
  1084. data/modules/audit/xss_path.rb +0 -152
  1085. data/modules/audit/xss_script_tag.rb +0 -137
  1086. data/modules/audit/xss_tag.rb +0 -137
  1087. data/modules/recon/allowed_methods.rb +0 -99
  1088. data/modules/recon/backdoors.rb +0 -82
  1089. data/modules/recon/backup_files.rb +0 -100
  1090. data/modules/recon/backup_files/extensions.txt +0 -28
  1091. data/modules/recon/common_directories.rb +0 -87
  1092. data/modules/recon/common_files.rb +0 -78
  1093. data/modules/recon/common_files/filenames.txt +0 -21
  1094. data/modules/recon/directory_listing.rb +0 -133
  1095. data/modules/recon/grep/captcha.rb +0 -74
  1096. data/modules/recon/grep/credit_card.rb +0 -128
  1097. data/modules/recon/grep/cvs_svn_users.rb +0 -81
  1098. data/modules/recon/grep/emails.rb +0 -73
  1099. data/modules/recon/grep/form_upload.rb +0 -86
  1100. data/modules/recon/grep/html_objects.rb +0 -56
  1101. data/modules/recon/grep/http_only_cookies.rb +0 -82
  1102. data/modules/recon/grep/insecure_cookies.rb +0 -82
  1103. data/modules/recon/grep/mixed_resource.rb +0 -113
  1104. data/modules/recon/grep/password_autocomplete.rb +0 -85
  1105. data/modules/recon/grep/private_ip.rb +0 -70
  1106. data/modules/recon/grep/ssn.rb +0 -66
  1107. data/modules/recon/grep/unencrypted_password_forms.rb +0 -103
  1108. data/modules/recon/htaccess_limit.rb +0 -76
  1109. data/modules/recon/http_put.rb +0 -95
  1110. data/modules/recon/interesting_responses.rb +0 -91
  1111. data/modules/recon/localstart_asp.rb +0 -97
  1112. data/modules/recon/webdav.rb +0 -106
  1113. data/modules/recon/x_forwarded_for_access_restriction_bypass.rb +0 -76
  1114. data/modules/recon/xst.rb +0 -103
  1115. data/path_extractors/anchors.rb +0 -37
  1116. data/path_extractors/areas.rb +0 -37
  1117. data/path_extractors/forms.rb +0 -37
  1118. data/path_extractors/frames.rb +0 -37
  1119. data/path_extractors/generic.rb +0 -84
  1120. data/path_extractors/links.rb +0 -37
  1121. data/path_extractors/meta_refresh.rb +0 -58
  1122. data/path_extractors/scripts.rb +0 -38
  1123. data/plugins/autologin.rb +0 -133
  1124. data/plugins/beep_notify.rb +0 -49
  1125. data/plugins/content_types.rb +0 -107
  1126. data/plugins/cookie_collector.rb +0 -85
  1127. data/plugins/defaults/autothrottle.rb +0 -78
  1128. data/plugins/defaults/healthmap.rb +0 -89
  1129. data/plugins/defaults/meta/remedies/discovery.rb +0 -138
  1130. data/plugins/defaults/meta/remedies/timing_attacks.rb +0 -117
  1131. data/plugins/defaults/meta/uniformity.rb +0 -82
  1132. data/plugins/defaults/resolver.rb +0 -60
  1133. data/plugins/email_notify.rb +0 -106
  1134. data/plugins/form_dicattack.rb +0 -123
  1135. data/plugins/http_dicattack.rb +0 -108
  1136. data/plugins/libnotify.rb +0 -82
  1137. data/plugins/profiler.rb +0 -179
  1138. data/plugins/proxy.rb +0 -502
  1139. data/plugins/proxy/panel/page_accordion.html.erb +0 -67
  1140. data/plugins/proxy/panel/panel.html.erb +0 -69
  1141. data/plugins/proxy/panel/verify_login_sequence.html.erb +0 -45
  1142. data/plugins/proxy/server.rb +0 -215
  1143. data/plugins/proxy/template_scope.rb +0 -138
  1144. data/plugins/rescan.rb +0 -59
  1145. data/plugins/script.rb +0 -53
  1146. data/plugins/uncommon_headers.rb +0 -92
  1147. data/plugins/vector_feed.rb +0 -226
  1148. data/plugins/waf_detector.rb +0 -167
  1149. data/profiles/full.afp +0 -48
  1150. data/reports/afr.rb +0 -44
  1151. data/reports/ap.rb +0 -46
  1152. data/reports/html.rb +0 -273
  1153. data/reports/html/default.erb +0 -82
  1154. data/reports/html/default/configuration.erb +0 -126
  1155. data/reports/html/default/css/jquery-ui.css +0 -570
  1156. data/reports/html/default/css/jquery.jqplot.min.css +0 -1
  1157. data/reports/html/default/css/main.css +0 -391
  1158. data/reports/html/default/headers.erb +0 -19
  1159. data/reports/html/default/issue.erb +0 -178
  1160. data/reports/html/default/issues.erb +0 -52
  1161. data/reports/html/default/js/charts.js +0 -147
  1162. data/reports/html/default/js/helpers.js +0 -53
  1163. data/reports/html/default/js/init.js +0 -72
  1164. data/reports/html/default/js/lib/jqplot.barRenderer.min.js +0 -57
  1165. data/reports/html/default/js/lib/jqplot.categoryAxisRenderer.min.js +0 -57
  1166. data/reports/html/default/js/lib/jqplot.cursor.min.js +0 -57
  1167. data/reports/html/default/js/lib/jqplot.pieRenderer.min.js +0 -57
  1168. data/reports/html/default/js/lib/jqplot.pointLabels.min.js +0 -57
  1169. data/reports/html/default/js/lib/jquery-ui.min.js +0 -404
  1170. data/reports/html/default/js/lib/jquery.jqplot.min.js +0 -57
  1171. data/reports/html/default/js/lib/jquery.min.js +0 -167
  1172. data/reports/html/default/plugins.erb +0 -22
  1173. data/reports/html/default/search.erb +0 -8
  1174. data/reports/html/default/sitemap.erb +0 -15
  1175. data/reports/html/default/summary.erb +0 -75
  1176. data/reports/html/default/summary_issue.erb +0 -20
  1177. data/reports/json.rb +0 -52
  1178. data/reports/marshal.rb +0 -46
  1179. data/reports/metareport.rb +0 -104
  1180. data/reports/plugin_formatters/html/autologin.rb +0 -45
  1181. data/reports/plugin_formatters/html/content_types.rb +0 -67
  1182. data/reports/plugin_formatters/html/cookie_collector.rb +0 -52
  1183. data/reports/plugin_formatters/html/discovery.rb +0 -45
  1184. data/reports/plugin_formatters/html/form_dicattack.rb +0 -40
  1185. data/reports/plugin_formatters/html/healthmap.rb +0 -60
  1186. data/reports/plugin_formatters/html/http_dicattack.rb +0 -40
  1187. data/reports/plugin_formatters/html/profiler.rb +0 -36
  1188. data/reports/plugin_formatters/html/profiler/template.erb +0 -84
  1189. data/reports/plugin_formatters/html/resolver.rb +0 -55
  1190. data/reports/plugin_formatters/html/timing_attacks.rb +0 -51
  1191. data/reports/plugin_formatters/html/uncommon_headers.rb +0 -47
  1192. data/reports/plugin_formatters/html/uniformity.rb +0 -54
  1193. data/reports/plugin_formatters/html/waf_detector.rb +0 -38
  1194. data/reports/plugin_formatters/stdout/autologin.rb +0 -38
  1195. data/reports/plugin_formatters/stdout/content_types.rb +0 -51
  1196. data/reports/plugin_formatters/stdout/cookie_collector.rb +0 -43
  1197. data/reports/plugin_formatters/stdout/discovery.rb +0 -37
  1198. data/reports/plugin_formatters/stdout/form_dicattack.rb +0 -34
  1199. data/reports/plugin_formatters/stdout/healthmap.rb +0 -49
  1200. data/reports/plugin_formatters/stdout/http_dicattack.rb +0 -34
  1201. data/reports/plugin_formatters/stdout/profiler.rb +0 -66
  1202. data/reports/plugin_formatters/stdout/resolver.rb +0 -29
  1203. data/reports/plugin_formatters/stdout/timing_attacks.rb +0 -37
  1204. data/reports/plugin_formatters/stdout/uncommon_headers.rb +0 -37
  1205. data/reports/plugin_formatters/stdout/uniformity.rb +0 -48
  1206. data/reports/plugin_formatters/stdout/waf_detector.rb +0 -31
  1207. data/reports/plugin_formatters/xml/autologin.rb +0 -41
  1208. data/reports/plugin_formatters/xml/content_types.rb +0 -61
  1209. data/reports/plugin_formatters/xml/cookie_collector.rb +0 -45
  1210. data/reports/plugin_formatters/xml/discovery.rb +0 -38
  1211. data/reports/plugin_formatters/xml/form_dicattack.rb +0 -34
  1212. data/reports/plugin_formatters/xml/healthmap.rb +0 -58
  1213. data/reports/plugin_formatters/xml/http_dicattack.rb +0 -33
  1214. data/reports/plugin_formatters/xml/profiler.rb +0 -80
  1215. data/reports/plugin_formatters/xml/resolver.rb +0 -33
  1216. data/reports/plugin_formatters/xml/timing_attacks.rb +0 -39
  1217. data/reports/plugin_formatters/xml/uncommon_headers.rb +0 -38
  1218. data/reports/plugin_formatters/xml/uniformity.rb +0 -54
  1219. data/reports/plugin_formatters/xml/waf_detector.rb +0 -34
  1220. data/reports/stdout.rb +0 -203
  1221. data/reports/txt.rb +0 -58
  1222. data/reports/xml.rb +0 -176
  1223. data/reports/xml/buffer.rb +0 -97
  1224. data/reports/yaml.rb +0 -46
  1225. data/spec/arachni/audit_store_spec.rb +0 -239
  1226. data/spec/arachni/component/options/enum_spec.rb +0 -51
  1227. data/spec/arachni/element/base_spec.rb +0 -138
  1228. data/spec/arachni/element/capabilities/auditable/rdiff_spec.rb +0 -134
  1229. data/spec/arachni/element/capabilities/auditable/taint_spec.rb +0 -409
  1230. data/spec/arachni/element/capabilities/auditable/timeout_spec.rb +0 -157
  1231. data/spec/arachni/element/capabilities/mutable_spec.rb +0 -284
  1232. data/spec/arachni/http_spec.rb +0 -962
  1233. data/spec/arachni/mixins/observable_spec.rb +0 -75
  1234. data/spec/arachni/mixins/progress_bar_spec.rb +0 -47
  1235. data/spec/arachni/module/auditor_spec.rb +0 -544
  1236. data/spec/arachni/module/manager_spec.rb +0 -150
  1237. data/spec/arachni/module/utilities_spec.rb +0 -30
  1238. data/spec/arachni/report/base_spec.rb +0 -61
  1239. data/spec/arachni/report/manager_spec.rb +0 -82
  1240. data/spec/arachni/rpc/server/dispatcher/handler_spec.rb +0 -102
  1241. data/spec/arachni/rpc/server/framework_hpg_spec.rb +0 -376
  1242. data/spec/arachni/rpc/server/framework_simple_spec.rb +0 -501
  1243. data/spec/arachni/rpc/server/modules/manager_spec.rb +0 -47
  1244. data/spec/arachni/rpc/server/spider_spec.rb +0 -68
  1245. data/spec/arachni/ruby/enumerable_spec.rb +0 -37
  1246. data/spec/arachni/spider_spec.rb +0 -539
  1247. data/spec/arachni/support/cache/base_spec.rb +0 -282
  1248. data/spec/arachni/support/key_filler.rb +0 -60
  1249. data/spec/arachni/support/queue/disk_spec.rb +0 -116
  1250. data/spec/arachni/typhoeus/requrest_spec.rb +0 -58
  1251. data/spec/arachni/typhoeus/response_spec.rb +0 -171
  1252. data/spec/fingerprinters/frameworks/rack_spec.rb +0 -41
  1253. data/spec/fingerprinters/languages/asp_spec.rb +0 -40
  1254. data/spec/fingerprinters/languages/aspx_spec.rb +0 -78
  1255. data/spec/fingerprinters/languages/jsp_spec.rb +0 -58
  1256. data/spec/fingerprinters/languages/php_spec.rb +0 -61
  1257. data/spec/fingerprinters/languages/python_spec.rb +0 -23
  1258. data/spec/fingerprinters/languages/ruby.rb +0 -34
  1259. data/spec/fingerprinters/os/bsd_spec.rb +0 -26
  1260. data/spec/fingerprinters/os/linux_spec.rb +0 -34
  1261. data/spec/fingerprinters/os/solaris_spec.rb +0 -34
  1262. data/spec/fingerprinters/os/unix_spec.rb +0 -26
  1263. data/spec/fingerprinters/os/windows_spec.rb +0 -34
  1264. data/spec/fingerprinters/servers/apache_spec.rb +0 -26
  1265. data/spec/fingerprinters/servers/iis_spec.rb +0 -28
  1266. data/spec/fingerprinters/servers/jetty_spec.rb +0 -28
  1267. data/spec/fingerprinters/servers/nginx_spec.rb +0 -26
  1268. data/spec/fingerprinters/servers/tomcat_spec.rb +0 -28
  1269. data/spec/modules/audit/code_injection_spec.rb +0 -25
  1270. data/spec/modules/audit/code_injection_timing_spec.rb +0 -24
  1271. data/spec/modules/audit/csrf_spec.rb +0 -45
  1272. data/spec/modules/audit/file_inclusion_spec.rb +0 -25
  1273. data/spec/modules/audit/ldapi_spec.rb +0 -19
  1274. data/spec/modules/audit/os_cmd_injection_spec.rb +0 -24
  1275. data/spec/modules/audit/os_cmd_injection_timing_spec.rb +0 -24
  1276. data/spec/modules/audit/path_traversal_spec.rb +0 -23
  1277. data/spec/modules/audit/response_splitting_spec.rb +0 -19
  1278. data/spec/modules/audit/rfi_spec.rb +0 -19
  1279. data/spec/modules/audit/session_fixation_spec.rb +0 -23
  1280. data/spec/modules/audit/source_code_disclosure_spec.rb +0 -24
  1281. data/spec/modules/audit/sqli_blind_rdiff_spec.rb +0 -19
  1282. data/spec/modules/audit/sqli_blind_timing_spec.rb +0 -23
  1283. data/spec/modules/audit/sqli_spec.rb +0 -25
  1284. data/spec/modules/audit/trainer_spec.rb +0 -35
  1285. data/spec/modules/audit/unvalidated_redirect_spec.rb +0 -24
  1286. data/spec/modules/audit/xpath_spec.rb +0 -25
  1287. data/spec/modules/audit/xss_event_spec.rb +0 -19
  1288. data/spec/modules/audit/xss_path_spec.rb +0 -19
  1289. data/spec/modules/audit/xss_script_tag_spec.rb +0 -27
  1290. data/spec/modules/audit/xss_spec.rb +0 -24
  1291. data/spec/modules/audit/xss_tag_spec.rb +0 -19
  1292. data/spec/modules/recon/allowed_methods_spec.rb +0 -19
  1293. data/spec/modules/recon/backdoors_spec.rb +0 -19
  1294. data/spec/modules/recon/backup_files_spec.rb +0 -19
  1295. data/spec/modules/recon/common_directories_spec.rb +0 -19
  1296. data/spec/modules/recon/common_files_spec.rb +0 -19
  1297. data/spec/modules/recon/directory_listing_spec.rb +0 -19
  1298. data/spec/modules/recon/grep/captcha_spec.rb +0 -19
  1299. data/spec/modules/recon/grep/credit_card_spec.rb +0 -19
  1300. data/spec/modules/recon/grep/cvs_svn_users_spec.rb +0 -19
  1301. data/spec/modules/recon/grep/emails_spec.rb +0 -19
  1302. data/spec/modules/recon/grep/form_upload_spec.rb +0 -19
  1303. data/spec/modules/recon/grep/html_objects_spec.rb +0 -19
  1304. data/spec/modules/recon/grep/http_only_cookies_spec.rb +0 -19
  1305. data/spec/modules/recon/grep/insecure_cookies_spec.rb +0 -19
  1306. data/spec/modules/recon/grep/mixed_resource_spec.rb +0 -20
  1307. data/spec/modules/recon/grep/password_autocomplete_spec.rb +0 -19
  1308. data/spec/modules/recon/grep/private_ip_spec.rb +0 -26
  1309. data/spec/modules/recon/grep/ssn_spec.rb +0 -19
  1310. data/spec/modules/recon/grep/unencrypted_password_forms_spec.rb +0 -19
  1311. data/spec/modules/recon/htaccess_limit_spec.rb +0 -19
  1312. data/spec/modules/recon/http_put_spec.rb +0 -19
  1313. data/spec/modules/recon/interesting_responses_spec.rb +0 -30
  1314. data/spec/modules/recon/localstart_asp_spec.rb +0 -19
  1315. data/spec/modules/recon/webdav_spec.rb +0 -19
  1316. data/spec/modules/recon/x_forwarded_for_access_restriction_bypass_spec.rb +0 -19
  1317. data/spec/modules/recon/xst_spec.rb +0 -19
  1318. data/spec/path_extractors/scripts_spec.rb +0 -19
  1319. data/spec/plugins/autologin_spec.rb +0 -94
  1320. data/spec/plugins/autothrottle_spec.rb +0 -45
  1321. data/spec/plugins/content_types_spec.rb +0 -93
  1322. data/spec/plugins/cookie_collector_spec.rb +0 -49
  1323. data/spec/plugins/form_dicattack_spec.rb +0 -60
  1324. data/spec/plugins/healthmap_spec.rb +0 -40
  1325. data/spec/plugins/http_dicattack_spec.rb +0 -40
  1326. data/spec/plugins/meta/remedies/discovery_spec.rb +0 -21
  1327. data/spec/plugins/meta/remedies/timing_attacks_spec.rb +0 -34
  1328. data/spec/plugins/meta/uniformity_spec.rb +0 -83
  1329. data/spec/plugins/profiler_spec.rb +0 -82
  1330. data/spec/plugins/rescan_spec.rb +0 -26
  1331. data/spec/plugins/resolver_spec.rb +0 -16
  1332. data/spec/plugins/script_spec.rb +0 -12
  1333. data/spec/plugins/uncommon_headers_spec.rb +0 -64
  1334. data/spec/plugins/vector_feed_spec.rb +0 -167
  1335. data/spec/plugins/waf_detector_spec.rb +0 -41
  1336. data/spec/reports/afr_spec.rb +0 -13
  1337. data/spec/reports/ap_spec.rb +0 -9
  1338. data/spec/reports/html_spec.rb +0 -13
  1339. data/spec/reports/json_spec.rb +0 -17
  1340. data/spec/reports/marshal_spec.rb +0 -13
  1341. data/spec/reports/stdout_spec.rb +0 -9
  1342. data/spec/reports/txt_spec.rb +0 -8
  1343. data/spec/reports/xml_spec.rb +0 -13
  1344. data/spec/reports/yaml_spec.rb +0 -13
  1345. data/spec/support/fixtures/auditstore.afr +0 -76074
  1346. data/spec/support/fixtures/modules/test.rb +0 -58
  1347. data/spec/support/fixtures/modules/test2.rb +0 -46
  1348. data/spec/support/fixtures/modules/test3.rb +0 -46
  1349. data/spec/support/fixtures/plugins/spider_hook.rb +0 -50
  1350. data/spec/support/fixtures/reports/base_spec/plugin_formatters/with_formatters/foobar.rb +0 -21
  1351. data/spec/support/fixtures/reports/base_spec/with_formatters.rb +0 -23
  1352. data/spec/support/fixtures/reports/base_spec/with_outfile.rb +0 -24
  1353. data/spec/support/fixtures/reports/base_spec/without_outfile.rb +0 -20
  1354. data/spec/support/fixtures/reports/manager_spec/afr.rb +0 -21
  1355. data/spec/support/fixtures/reports/manager_spec/foo.rb +0 -26
  1356. data/spec/support/fixtures/rpcd_handlers/echo.rb +0 -68
  1357. data/spec/support/fixtures/run_mod/body.rb +0 -58
  1358. data/spec/support/fixtures/run_mod/cookies.rb +0 -58
  1359. data/spec/support/fixtures/run_mod/empty.rb +0 -58
  1360. data/spec/support/fixtures/run_mod/flch.rb +0 -63
  1361. data/spec/support/fixtures/run_mod/forms.rb +0 -58
  1362. data/spec/support/fixtures/run_mod/headers.rb +0 -58
  1363. data/spec/support/fixtures/run_mod/links.rb +0 -58
  1364. data/spec/support/fixtures/run_mod/nil.rb +0 -57
  1365. data/spec/support/fixtures/run_mod/path.rb +0 -58
  1366. data/spec/support/fixtures/run_mod/server.rb +0 -58
  1367. data/spec/support/fixtures/taint_module/taint.rb +0 -48
  1368. data/spec/support/fixtures/wait_module/wait.rb +0 -48
  1369. data/spec/support/logs/Dispatcher - 1332-56847.log +0 -9
  1370. data/spec/support/logs/Dispatcher - 1361-63434.log +0 -21
  1371. data/spec/support/logs/Dispatcher - 1545-55308.log +0 -9
  1372. data/spec/support/logs/Dispatcher - 1559-18938.log +0 -19
  1373. data/spec/support/logs/Dispatcher - 1568-25013.log +0 -17
  1374. data/spec/support/logs/Dispatcher - 1577-55689.log +0 -13
  1375. data/spec/support/logs/Dispatcher - 1586-18577.log +0 -9
  1376. data/spec/support/logs/Dispatcher - 1595-49353.log +0 -9
  1377. data/spec/support/logs/Dispatcher - 1604-27831.log +0 -11
  1378. data/spec/support/logs/Dispatcher - 1617-57444.log +0 -11
  1379. data/spec/support/logs/Dispatcher - 1631-28737.log +0 -11
  1380. data/spec/support/logs/Dispatcher - 1644-21815.log +0 -33
  1381. data/spec/support/logs/Dispatcher - 1738-53470.log +0 -21
  1382. data/spec/support/logs/Dispatcher - 1747-64173.log +0 -21
  1383. data/spec/support/logs/Dispatcher - 1756-11866.log +0 -23
  1384. data/spec/support/logs/Dispatcher - 1798-12175.log +0 -19
  1385. data/spec/support/logs/Dispatcher - 1807-22790.log +0 -17
  1386. data/spec/support/logs/Dispatcher - 1816-57823.log +0 -15
  1387. data/spec/support/logs/Dispatcher - 1831-64825.log +0 -11
  1388. data/spec/support/logs/Dispatcher - 1845-27623.log +0 -9
  1389. data/spec/support/logs/Dispatcher - 1854-26066.log +0 -9
  1390. data/spec/support/logs/Dispatcher - 1863-37486.log +0 -9
  1391. data/spec/support/logs/Dispatcher - 1874-22463.log +0 -9
  1392. data/spec/support/logs/Dispatcher - 1883-41263.log +0 -11
  1393. data/spec/support/logs/Dispatcher - 1900-53660.log +0 -9
  1394. data/spec/support/logs/Dispatcher - 1909-44423.log +0 -9
  1395. data/spec/support/logs/Dispatcher - 1921-58931.log +0 -9
  1396. data/spec/support/logs/Dispatcher - 1993-6448.log +0 -63
  1397. data/spec/support/logs/Dispatcher - 2002-19206.log +0 -43
  1398. data/spec/support/logs/Dispatcher - 2011-11852.log +0 -39
  1399. data/spec/support/logs/Dispatcher - 2020-65055.log +0 -34
  1400. data/spec/support/logs/Dispatcher - 2029-48445.log +0 -28
  1401. data/spec/support/logs/Dispatcher - 2038-55271.log +0 -21
  1402. data/spec/support/logs/Dispatcher - 2047-45722.log +0 -13
  1403. data/spec/support/logs/Dispatcher - 2057-48194.log +0 -9
  1404. data/spec/support/logs/Dispatcher - 2189-39843.log +0 -19
  1405. data/spec/support/logs/Dispatcher - 2199-15985.log +0 -21
  1406. data/spec/support/logs/Dispatcher - 2208-22080.log +0 -15
  1407. data/spec/support/logs/Dispatcher - 2221-37690.log +0 -19
  1408. data/spec/support/logs/Dispatcher - 2230-47867.log +0 -21
  1409. data/spec/support/logs/Dispatcher - 2239-27060.log +0 -15
  1410. data/spec/support/logs/Dispatcher - 2358-8967.log +0 -17
  1411. data/spec/support/logs/Dispatcher - 2367-27103.log +0 -21
  1412. data/spec/support/logs/Dispatcher - 2376-16287.log +0 -13
  1413. data/spec/support/logs/Dispatcher - 2389-9109.log +0 -19
  1414. data/spec/support/logs/Dispatcher - 2398-62926.log +0 -21
  1415. data/spec/support/logs/Dispatcher - 2407-48685.log +0 -15
  1416. data/spec/support/logs/Dispatcher - 2459-62480.log +0 -17
  1417. data/spec/support/logs/Dispatcher - 2470-57894.log +0 -21
  1418. data/spec/support/logs/Dispatcher - 2479-51883.log +0 -13
  1419. data/spec/support/logs/Dispatcher - 2493-36944.log +0 -17
  1420. data/spec/support/logs/Dispatcher - 2503-59143.log +0 -21
  1421. data/spec/support/logs/Dispatcher - 2513-33084.log +0 -13
  1422. data/spec/support/logs/Dispatcher - 25430-46306.log +0 -9
  1423. data/spec/support/logs/Dispatcher - 25457-10711.log +0 -23
  1424. data/spec/support/logs/Dispatcher - 25603-48892.log +0 -9
  1425. data/spec/support/logs/Dispatcher - 25613-24775.log +0 -19
  1426. data/spec/support/logs/Dispatcher - 25622-59684.log +0 -17
  1427. data/spec/support/logs/Dispatcher - 25631-23195.log +0 -13
  1428. data/spec/support/logs/Dispatcher - 25640-9810.log +0 -9
  1429. data/spec/support/logs/Dispatcher - 25649-52757.log +0 -9
  1430. data/spec/support/logs/Dispatcher - 25658-58550.log +0 -11
  1431. data/spec/support/logs/Dispatcher - 25671-30871.log +0 -11
  1432. data/spec/support/logs/Dispatcher - 25684-48620.log +0 -11
  1433. data/spec/support/logs/Dispatcher - 25697-18124.log +0 -37
  1434. data/spec/support/logs/Dispatcher - 25762-35321.log +0 -21
  1435. data/spec/support/logs/Dispatcher - 25771-64633.log +0 -21
  1436. data/spec/support/logs/Dispatcher - 25780-43558.log +0 -23
  1437. data/spec/support/logs/Dispatcher - 25821-43561.log +0 -19
  1438. data/spec/support/logs/Dispatcher - 25830-39112.log +0 -17
  1439. data/spec/support/logs/Dispatcher - 25839-44093.log +0 -15
  1440. data/spec/support/logs/Dispatcher - 25852-12057.log +0 -11
  1441. data/spec/support/logs/Dispatcher - 25866-49029.log +0 -9
  1442. data/spec/support/logs/Dispatcher - 25875-32179.log +0 -9
  1443. data/spec/support/logs/Dispatcher - 25884-62703.log +0 -9
  1444. data/spec/support/logs/Dispatcher - 25894-4228.log +0 -9
  1445. data/spec/support/logs/Dispatcher - 25903-6709.log +0 -11
  1446. data/spec/support/logs/Dispatcher - 25917-29651.log +0 -9
  1447. data/spec/support/logs/Dispatcher - 25926-12708.log +0 -9
  1448. data/spec/support/logs/Dispatcher - 25935-54092.log +0 -9
  1449. data/spec/support/logs/Dispatcher - 25990-26756.log +0 -63
  1450. data/spec/support/logs/Dispatcher - 25999-4016.log +0 -43
  1451. data/spec/support/logs/Dispatcher - 26008-52076.log +0 -39
  1452. data/spec/support/logs/Dispatcher - 26017-48497.log +0 -34
  1453. data/spec/support/logs/Dispatcher - 26026-28839.log +0 -28
  1454. data/spec/support/logs/Dispatcher - 26035-54215.log +0 -21
  1455. data/spec/support/logs/Dispatcher - 26044-27216.log +0 -13
  1456. data/spec/support/logs/Dispatcher - 26054-53464.log +0 -9
  1457. data/spec/support/logs/Dispatcher - 26163-65271.log +0 -19
  1458. data/spec/support/logs/Dispatcher - 26173-58105.log +0 -21
  1459. data/spec/support/logs/Dispatcher - 26182-40848.log +0 -15
  1460. data/spec/support/logs/Dispatcher - 26195-2855.log +0 -19
  1461. data/spec/support/logs/Dispatcher - 26204-35297.log +0 -21
  1462. data/spec/support/logs/Dispatcher - 26213-59588.log +0 -15
  1463. data/spec/support/logs/Dispatcher - 26333-40774.log +0 -17
  1464. data/spec/support/logs/Dispatcher - 26342-45541.log +0 -21
  1465. data/spec/support/logs/Dispatcher - 26351-3349.log +0 -13
  1466. data/spec/support/logs/Dispatcher - 26364-37456.log +0 -19
  1467. data/spec/support/logs/Dispatcher - 26373-37340.log +0 -21
  1468. data/spec/support/logs/Dispatcher - 26382-54864.log +0 -15
  1469. data/spec/support/logs/Dispatcher - 26434-3070.log +0 -17
  1470. data/spec/support/logs/Dispatcher - 26448-14295.log +0 -21
  1471. data/spec/support/logs/Dispatcher - 26474-30587.log +0 -13
  1472. data/spec/support/logs/Dispatcher - 26500-32529.log +0 -17
  1473. data/spec/support/logs/Dispatcher - 26509-16952.log +0 -21
  1474. data/spec/support/logs/Dispatcher - 26519-43332.log +0 -13
  1475. data/spec/support/logs/Dispatcher - 26750-61867.log +0 -19
  1476. data/spec/support/logs/Dispatcher - 26759-22532.log +0 -21
  1477. data/spec/support/logs/Dispatcher - 26768-18231.log +0 -15
  1478. data/spec/support/logs/Dispatcher - 26792-41661.log +0 -21
  1479. data/spec/support/logs/Dispatcher - 26801-14384.log +0 -25
  1480. data/spec/support/logs/Dispatcher - 26810-2591.log +0 -15
  1481. data/spec/support/logs/Dispatcher - 26846-14591.log +0 -17
  1482. data/spec/support/logs/Dispatcher - 26855-15708.log +0 -21
  1483. data/spec/support/logs/Dispatcher - 26864-2062.log +0 -13
  1484. data/spec/support/logs/Dispatcher - 26877-14471.log +0 -21
  1485. data/spec/support/logs/Dispatcher - 26886-49795.log +0 -25
  1486. data/spec/support/logs/Dispatcher - 26895-21093.log +0 -15
  1487. data/spec/support/logs/Dispatcher - 26931-30049.log +0 -17
  1488. data/spec/support/logs/Dispatcher - 26940-34273.log +0 -21
  1489. data/spec/support/logs/Dispatcher - 26949-30040.log +0 -13
  1490. data/spec/support/logs/Dispatcher - 26962-8152.log +0 -17
  1491. data/spec/support/logs/Dispatcher - 26971-53062.log +0 -21
  1492. data/spec/support/logs/Dispatcher - 26980-7548.log +0 -13
  1493. data/spec/support/logs/Dispatcher - 2737-20989.log +0 -19
  1494. data/spec/support/logs/Dispatcher - 2746-5423.log +0 -21
  1495. data/spec/support/logs/Dispatcher - 2755-53393.log +0 -15
  1496. data/spec/support/logs/Dispatcher - 27615-41812.log +0 -19
  1497. data/spec/support/logs/Dispatcher - 27624-43683.log +0 -21
  1498. data/spec/support/logs/Dispatcher - 27633-11593.log +0 -15
  1499. data/spec/support/logs/Dispatcher - 27658-12186.log +0 -21
  1500. data/spec/support/logs/Dispatcher - 27667-15575.log +0 -25
  1501. data/spec/support/logs/Dispatcher - 27676-17207.log +0 -15
  1502. data/spec/support/logs/Dispatcher - 27712-2233.log +0 -17
  1503. data/spec/support/logs/Dispatcher - 27721-3842.log +0 -21
  1504. data/spec/support/logs/Dispatcher - 27730-22695.log +0 -13
  1505. data/spec/support/logs/Dispatcher - 27743-8364.log +0 -21
  1506. data/spec/support/logs/Dispatcher - 27752-6140.log +0 -25
  1507. data/spec/support/logs/Dispatcher - 27761-25015.log +0 -15
  1508. data/spec/support/logs/Dispatcher - 27797-9270.log +0 -17
  1509. data/spec/support/logs/Dispatcher - 2780-58168.log +0 -21
  1510. data/spec/support/logs/Dispatcher - 27806-48623.log +0 -21
  1511. data/spec/support/logs/Dispatcher - 27815-58778.log +0 -13
  1512. data/spec/support/logs/Dispatcher - 27828-29742.log +0 -17
  1513. data/spec/support/logs/Dispatcher - 27837-46211.log +0 -21
  1514. data/spec/support/logs/Dispatcher - 27846-16143.log +0 -13
  1515. data/spec/support/logs/Dispatcher - 2789-29375.log +0 -25
  1516. data/spec/support/logs/Dispatcher - 2798-10983.log +0 -15
  1517. data/spec/support/logs/Dispatcher - 2836-2354.log +0 -17
  1518. data/spec/support/logs/Dispatcher - 2845-65341.log +0 -21
  1519. data/spec/support/logs/Dispatcher - 2854-18936.log +0 -13
  1520. data/spec/support/logs/Dispatcher - 2867-51979.log +0 -21
  1521. data/spec/support/logs/Dispatcher - 2876-21086.log +0 -25
  1522. data/spec/support/logs/Dispatcher - 2887-17393.log +0 -15
  1523. data/spec/support/logs/Dispatcher - 2930-37394.log +0 -17
  1524. data/spec/support/logs/Dispatcher - 2943-46737.log +0 -21
  1525. data/spec/support/logs/Dispatcher - 2956-37866.log +0 -13
  1526. data/spec/support/logs/Dispatcher - 2976-21012.log +0 -17
  1527. data/spec/support/logs/Dispatcher - 2990-48082.log +0 -21
  1528. data/spec/support/logs/Dispatcher - 2999-16391.log +0 -13
  1529. data/spec/support/logs/Instance - 2204-45164.error.log +0 -356
  1530. data/spec/support/logs/Instance - 2475-49789.error.log +0 -356
  1531. data/spec/support/logs/Instance - 2509-39450.error.log +0 -455
  1532. data/spec/support/logs/Instance - 2533-5785.error.log +0 -354
  1533. data/spec/support/logs/Instance - 2539-42941.error.log +0 -356
  1534. data/spec/support/logs/Instance - 26178-57631.error.log +0 -324
  1535. data/spec/support/logs/Instance - 26458-60253.error.log +0 -326
  1536. data/spec/support/logs/Instance - 26514-44685.error.log +0 -423
  1537. data/spec/support/logs/Instance - 26538-43093.error.log +0 -322
  1538. data/spec/support/logs/Instance - 26544-52217.error.log +0 -328
  1539. data/spec/support/logs/Instance - 26682-37056.error.log +0 -345
  1540. data/spec/support/logs/Instance - 2669-56818.error.log +0 -354
  1541. data/spec/support/logs/Instance - 27547-3928.error.log +0 -309
  1542. data/spec/support/servers/arachni/element/capabilities/auditable/rdiff.rb +0 -162
  1543. data/spec/support/servers/arachni/element/capabilities/auditable/timeout.rb +0 -34
  1544. data/spec/support/servers/arachni/http.rb +0 -127
  1545. data/spec/support/servers/arachni/http_auth.rb +0 -9
  1546. data/spec/support/servers/arachni/module/auditor.rb +0 -136
  1547. data/spec/support/servers/arachni/rpc/server/framework_simple.rb +0 -30
  1548. data/spec/support/servers/arachni/spider.rb +0 -234
  1549. data/spec/support/servers/arachni/spider_https.rb +0 -58
  1550. data/spec/support/servers/modules/audit/code_injection.rb +0 -139
  1551. data/spec/support/servers/modules/audit/code_injection_timing.rb +0 -110
  1552. data/spec/support/servers/modules/audit/file_inclusion.rb +0 -202
  1553. data/spec/support/servers/modules/audit/ldapi.rb +0 -73
  1554. data/spec/support/servers/modules/audit/os_cmd_injection.rb +0 -140
  1555. data/spec/support/servers/modules/audit/os_cmd_injection_timing.rb +0 -103
  1556. data/spec/support/servers/modules/audit/path_traversal.rb +0 -197
  1557. data/spec/support/servers/modules/audit/response_splitting.rb +0 -114
  1558. data/spec/support/servers/modules/audit/session_fixation.rb +0 -87
  1559. data/spec/support/servers/modules/audit/source_code_disclosure.rb +0 -95
  1560. data/spec/support/servers/modules/audit/sqli.rb +0 -118
  1561. data/spec/support/servers/modules/audit/sqli_blind_timing.rb +0 -121
  1562. data/spec/support/servers/modules/audit/unvalidated_redirect.rb +0 -115
  1563. data/spec/support/servers/modules/audit/xpath.rb +0 -111
  1564. data/spec/support/servers/modules/audit/xss.rb +0 -152
  1565. data/spec/support/servers/modules/audit/xss_event.rb +0 -80
  1566. data/spec/support/servers/modules/audit/xss_script_tag.rb +0 -73
  1567. data/spec/support/servers/modules/module_server.rb +0 -14
  1568. data/spec/support/servers/modules/recon/backdoors.rb +0 -4
  1569. data/spec/support/servers/modules/recon/backup_files.rb +0 -28
  1570. data/spec/support/servers/modules/recon/common_directories.rb +0 -6
  1571. data/spec/support/servers/modules/recon/common_files.rb +0 -6
  1572. data/spec/support/servers/modules/recon/directory_listing.rb +0 -30
  1573. data/spec/support/servers/modules/recon/grep/emails.rb +0 -21
  1574. data/spec/support/servers/modules/recon/grep/insecure_cookies.rb +0 -21
  1575. data/spec/support/servers/modules/recon/grep/mixed_resource.rb +0 -83
  1576. data/spec/support/servers/modules/recon/grep/password_autocomplete.rb +0 -33
  1577. data/spec/support/servers/modules/recon/grep/unencrypted_password_forms.rb +0 -33
  1578. data/spec/support/servers/modules/recon/http_put.rb +0 -7
  1579. data/spec/support/servers/modules/recon/interesting_responses.rb +0 -5
  1580. data/spec/support/servers/modules/recon/webdav.rb +0 -25
  1581. data/spec/support/servers/modules/recon/x_forwarded_for_access_restriction_bypass.rb +0 -16
  1582. data/spec/support/servers/plugins/profiler.rb +0 -82
  1583. data/spec/support/servers/plugins/rescan.rb +0 -31
  1584. data/spec/support/shared/module.rb +0 -162
  1585. data/spec/support/shared/reports.rb +0 -47
@@ -1,672 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
- <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
-
4
- <svg
5
- xmlns:dc="http://purl.org/dc/elements/1.1/"
6
- xmlns:cc="http://creativecommons.org/ns#"
7
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
- xmlns:svg="http://www.w3.org/2000/svg"
9
- xmlns="http://www.w3.org/2000/svg"
10
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
- width="640px"
13
- height="480px"
14
- id="svg4472"
15
- version="1.1"
16
- inkscape:version="0.48.0 r9654"
17
- sodipodi:docname="logo.svg"
18
- inkscape:export-filename="/home/zapotek/Documents/arachni/logo.png"
19
- inkscape:export-xdpi="90"
20
- inkscape:export-ydpi="90">
21
- <defs
22
- id="defs4474">
23
- <filter
24
- id="filter3062"
25
- inkscape:label="Jam spread"
26
- x="0"
27
- y="0"
28
- width="1"
29
- height="1"
30
- inkscape:menu="Textures"
31
- inkscape:menu-tooltip="Glossy clumpy jam spread"
32
- color-interpolation-filters="sRGB">
33
- <feGaussianBlur
34
- id="feGaussianBlur3064"
35
- stdDeviation="2.3"
36
- in="SourceAlpha"
37
- result="result0" />
38
- <feMorphology
39
- id="feMorphology3066"
40
- in="SourceAlpha"
41
- radius="6.6"
42
- result="result1" />
43
- <feGaussianBlur
44
- id="feGaussianBlur3068"
45
- stdDeviation="8.9"
46
- in="result1" />
47
- <feColorMatrix
48
- id="feColorMatrix3070"
49
- values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0.3 0"
50
- result="result91" />
51
- <feComposite
52
- id="feComposite3072"
53
- in2="result91"
54
- in="result0"
55
- operator="out"
56
- result="result2" />
57
- <feGaussianBlur
58
- id="feGaussianBlur3074"
59
- stdDeviation="1.7"
60
- result="result4" />
61
- <feDiffuseLighting
62
- id="feDiffuseLighting3076"
63
- surfaceScale="10"
64
- result="result92">
65
- <feDistantLight
66
- id="feDistantLight3078"
67
- azimuth="225"
68
- elevation="45" />
69
- </feDiffuseLighting>
70
- <feBlend
71
- id="feBlend3080"
72
- in2="SourceGraphic"
73
- mode="multiply"
74
- result="result93" />
75
- <feComposite
76
- id="feComposite3082"
77
- in2="SourceAlpha"
78
- operator="in"
79
- result="result3" />
80
- <feSpecularLighting
81
- id="feSpecularLighting3084"
82
- in="result4"
83
- surfaceScale="5"
84
- specularExponent="17.89999962"
85
- result="result94">
86
- <feDistantLight
87
- id="feDistantLight3086"
88
- azimuth="225"
89
- elevation="45" />
90
- </feSpecularLighting>
91
- <feComposite
92
- id="feComposite3088"
93
- in2="result3"
94
- operator="atop"
95
- result="fbSourceGraphic" />
96
- <feColorMatrix
97
- result="fbSourceGraphicAlpha"
98
- in="fbSourceGraphic"
99
- values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"
100
- id="feColorMatrix3945" />
101
- <feGaussianBlur
102
- id="feGaussianBlur3947"
103
- stdDeviation="1"
104
- in="fbSourceGraphic"
105
- result="result0" />
106
- <feTurbulence
107
- id="feTurbulence3949"
108
- result="result1"
109
- numOctaves="7"
110
- seed="488"
111
- baseFrequency="0.017"
112
- type="turbulence" />
113
- <feComposite
114
- in2="result1"
115
- id="feComposite3951"
116
- in="result0"
117
- operator="out"
118
- result="result2" />
119
- <feGaussianBlur
120
- id="feGaussianBlur3953"
121
- stdDeviation="0.5"
122
- result="result5" />
123
- <feSpecularLighting
124
- id="feSpecularLighting3955"
125
- in="result5"
126
- specularExponent="100"
127
- specularConstant="4"
128
- result="result4"
129
- surfaceScale="1.5">
130
- <feDistantLight
131
- id="feDistantLight3957"
132
- azimuth="225"
133
- elevation="62" />
134
- </feSpecularLighting>
135
- <feComposite
136
- in2="result2"
137
- id="feComposite3959"
138
- operator="atop"
139
- in="result4"
140
- result="result91" />
141
- <feBlend
142
- in2="result91"
143
- id="feBlend3961"
144
- mode="multiply" />
145
- </filter>
146
- <filter
147
- id="filter5423"
148
- inkscape:label="Matte bevel"
149
- x="-0.25"
150
- y="-0.25"
151
- width="1.5"
152
- height="1.5"
153
- inkscape:menu="Bevels"
154
- inkscape:menu-tooltip="Soft, pastel-colored, blurry bevel"
155
- color-interpolation-filters="sRGB">
156
- <feGaussianBlur
157
- id="feGaussianBlur5425"
158
- stdDeviation="2.3"
159
- in="SourceAlpha"
160
- result="result0" />
161
- <feMorphology
162
- id="feMorphology5427"
163
- in="SourceAlpha"
164
- radius="6.6"
165
- result="result1" />
166
- <feGaussianBlur
167
- id="feGaussianBlur5429"
168
- stdDeviation="8.9"
169
- in="result1" />
170
- <feColorMatrix
171
- id="feColorMatrix5431"
172
- values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0.3 0"
173
- result="result91" />
174
- <feComposite
175
- id="feComposite5433"
176
- in2="result91"
177
- in="result0"
178
- operator="out"
179
- result="result2" />
180
- <feGaussianBlur
181
- id="feGaussianBlur5435"
182
- stdDeviation="1.7"
183
- result="result4" />
184
- <feDiffuseLighting
185
- id="feDiffuseLighting5437"
186
- surfaceScale="10"
187
- result="result92">
188
- <feDistantLight
189
- id="feDistantLight5439"
190
- azimuth="225"
191
- elevation="45" />
192
- </feDiffuseLighting>
193
- <feBlend
194
- id="feBlend5441"
195
- in2="SourceGraphic"
196
- mode="multiply"
197
- result="result93" />
198
- <feComposite
199
- id="feComposite5443"
200
- in2="SourceAlpha"
201
- operator="in"
202
- result="result3" />
203
- <feSpecularLighting
204
- id="feSpecularLighting5445"
205
- in="result4"
206
- surfaceScale="5"
207
- specularExponent="17.9"
208
- result="result94">
209
- <feDistantLight
210
- id="feDistantLight5447"
211
- azimuth="225"
212
- elevation="45" />
213
- </feSpecularLighting>
214
- <feComposite
215
- id="feComposite5449"
216
- in2="result3"
217
- operator="atop"
218
- result="fbSourceGraphic" />
219
- <feColorMatrix
220
- result="fbSourceGraphicAlpha"
221
- in="fbSourceGraphic"
222
- values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"
223
- id="feColorMatrix4052" />
224
- <feGaussianBlur
225
- id="feGaussianBlur4054"
226
- stdDeviation="1"
227
- result="result6"
228
- in="fbSourceGraphic" />
229
- <feComposite
230
- id="feComposite4056"
231
- in2="result6"
232
- operator="in"
233
- in="result6"
234
- result="result7" />
235
- <feGaussianBlur
236
- id="feGaussianBlur4058"
237
- stdDeviation="8"
238
- result="result3"
239
- in="result7" />
240
- <feComposite
241
- id="feComposite4060"
242
- in2="result7"
243
- operator="over"
244
- result="result91" />
245
- <feComposite
246
- id="feComposite4062"
247
- in2="result91"
248
- operator="in"
249
- in="result3"
250
- result="result5" />
251
- <feColorMatrix
252
- id="feColorMatrix4064"
253
- values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0 "
254
- result="result4" />
255
- <feSpecularLighting
256
- id="feSpecularLighting4066"
257
- surfaceScale="3"
258
- specularConstant="2"
259
- specularExponent="45"
260
- in="result4"
261
- result="result11">
262
- <fePointLight
263
- id="fePointLight4068"
264
- x="-5000"
265
- y="-10000"
266
- z="20000" />
267
- </feSpecularLighting>
268
- <feComposite
269
- id="feComposite4070"
270
- in2="result4"
271
- operator="arithmetic"
272
- k1="1"
273
- result="result10" />
274
- <feComposite
275
- id="feComposite4072"
276
- in2="result10"
277
- operator="arithmetic"
278
- k2="0.5"
279
- k3="1"
280
- in="result5"
281
- result="result8" />
282
- <feComposite
283
- id="feComposite4074"
284
- in2="result8"
285
- result="result9" />
286
- <feBlend
287
- id="feBlend4076"
288
- in2="result9"
289
- mode="normal" />
290
- </filter>
291
- <filter
292
- id="filter3812"
293
- inkscape:label="Button"
294
- inkscape:menu="Bevels"
295
- inkscape:menu-tooltip="Soft bevel, slightly depressed middle"
296
- x="0"
297
- y="0"
298
- width="1"
299
- height="1"
300
- color-interpolation-filters="sRGB">
301
- <feGaussianBlur
302
- id="feGaussianBlur3814"
303
- stdDeviation="1"
304
- result="result6" />
305
- <feComposite
306
- id="feComposite3816"
307
- in2="result6"
308
- operator="in"
309
- in="result6"
310
- result="result7" />
311
- <feGaussianBlur
312
- id="feGaussianBlur3818"
313
- stdDeviation="8"
314
- result="result3"
315
- in="result7" />
316
- <feComposite
317
- id="feComposite3820"
318
- in2="result7"
319
- operator="over"
320
- result="result91" />
321
- <feComposite
322
- id="feComposite3822"
323
- in2="result91"
324
- operator="in"
325
- in="result3"
326
- result="result5" />
327
- <feColorMatrix
328
- id="feColorMatrix3824"
329
- values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0 "
330
- result="result4" />
331
- <feSpecularLighting
332
- id="feSpecularLighting3826"
333
- surfaceScale="3"
334
- specularConstant="2"
335
- specularExponent="45"
336
- in="result4"
337
- result="result11">
338
- <fePointLight
339
- id="fePointLight3828"
340
- x="-5000"
341
- y="-10000"
342
- z="20000" />
343
- </feSpecularLighting>
344
- <feComposite
345
- k4="0"
346
- k3="0"
347
- k2="0"
348
- id="feComposite3830"
349
- in2="result4"
350
- operator="arithmetic"
351
- k1="1"
352
- result="result10" />
353
- <feComposite
354
- k4="0"
355
- k1="0"
356
- id="feComposite3832"
357
- in2="result10"
358
- operator="arithmetic"
359
- k2="0.5"
360
- k3="1"
361
- in="result5"
362
- result="result8" />
363
- <feComposite
364
- id="feComposite3834"
365
- in2="result8"
366
- result="result9" />
367
- <feBlend
368
- id="feBlend3836"
369
- in2="result9"
370
- mode="normal"
371
- result="fbSourceGraphic" />
372
- <feColorMatrix
373
- result="fbSourceGraphicAlpha"
374
- in="fbSourceGraphic"
375
- values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"
376
- id="feColorMatrix3838" />
377
- <feGaussianBlur
378
- id="feGaussianBlur3840"
379
- stdDeviation="2.3"
380
- in="fbSourceGraphicAlpha"
381
- result="result0" />
382
- <feMorphology
383
- id="feMorphology3842"
384
- in="fbSourceGraphicAlpha"
385
- radius="6.6"
386
- result="result1" />
387
- <feGaussianBlur
388
- id="feGaussianBlur3844"
389
- stdDeviation="8.9"
390
- in="result1" />
391
- <feColorMatrix
392
- id="feColorMatrix3846"
393
- values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0.3 0"
394
- result="result91" />
395
- <feComposite
396
- id="feComposite3848"
397
- in2="result91"
398
- in="result0"
399
- operator="out"
400
- result="result2" />
401
- <feGaussianBlur
402
- id="feGaussianBlur3850"
403
- stdDeviation="1.7"
404
- result="result4" />
405
- <feDiffuseLighting
406
- id="feDiffuseLighting3852"
407
- surfaceScale="10"
408
- result="result92">
409
- <feDistantLight
410
- id="feDistantLight3854"
411
- azimuth="225"
412
- elevation="45" />
413
- </feDiffuseLighting>
414
- <feBlend
415
- id="feBlend3856"
416
- in2="fbSourceGraphic"
417
- mode="multiply"
418
- result="result93" />
419
- <feComposite
420
- id="feComposite3858"
421
- in2="fbSourceGraphicAlpha"
422
- operator="in"
423
- result="result3" />
424
- <feSpecularLighting
425
- id="feSpecularLighting3860"
426
- in="result4"
427
- surfaceScale="5"
428
- specularExponent="17.89999962"
429
- result="result94">
430
- <feDistantLight
431
- id="feDistantLight3862"
432
- azimuth="225"
433
- elevation="45" />
434
- </feSpecularLighting>
435
- <feComposite
436
- id="feComposite3864"
437
- in2="result3"
438
- operator="atop" />
439
- </filter>
440
- <filter
441
- id="filter4078"
442
- inkscape:label="Matte bevel"
443
- inkscape:menu="Bevels"
444
- inkscape:menu-tooltip="Soft, pastel-colored, blurry bevel"
445
- x="-0.25"
446
- y="-0.25"
447
- width="1.5"
448
- height="1.5"
449
- color-interpolation-filters="sRGB">
450
- <feGaussianBlur
451
- id="feGaussianBlur4080"
452
- stdDeviation="1"
453
- result="result6" />
454
- <feComposite
455
- id="feComposite4082"
456
- in2="result6"
457
- operator="in"
458
- in="result6"
459
- result="result7" />
460
- <feGaussianBlur
461
- id="feGaussianBlur4084"
462
- stdDeviation="8"
463
- result="result3"
464
- in="result7" />
465
- <feComposite
466
- id="feComposite4086"
467
- in2="result7"
468
- operator="over"
469
- result="result91" />
470
- <feComposite
471
- id="feComposite4088"
472
- in2="result91"
473
- operator="in"
474
- in="result3"
475
- result="result5" />
476
- <feColorMatrix
477
- id="feColorMatrix4090"
478
- values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0 "
479
- result="result4" />
480
- <feSpecularLighting
481
- id="feSpecularLighting4092"
482
- surfaceScale="3"
483
- specularConstant="2"
484
- specularExponent="45"
485
- in="result4"
486
- result="result11">
487
- <fePointLight
488
- id="fePointLight4094"
489
- x="-5000"
490
- y="-10000"
491
- z="20000" />
492
- </feSpecularLighting>
493
- <feComposite
494
- id="feComposite4096"
495
- in2="result4"
496
- operator="arithmetic"
497
- k1="1"
498
- result="result10" />
499
- <feComposite
500
- id="feComposite4098"
501
- in2="result10"
502
- operator="arithmetic"
503
- k2="0.5"
504
- k3="1"
505
- in="result5"
506
- result="result8" />
507
- <feComposite
508
- id="feComposite4100"
509
- in2="result8"
510
- result="result9" />
511
- <feBlend
512
- id="feBlend4102"
513
- in2="result9"
514
- mode="normal" />
515
- </filter>
516
- <filter
517
- id="filter3095"
518
- inkscape:label="Button"
519
- x="0"
520
- y="0"
521
- width="1"
522
- height="1"
523
- inkscape:menu="Bevels"
524
- inkscape:menu-tooltip="Soft bevel, slightly depressed middle"
525
- color-interpolation-filters="sRGB">
526
- <feGaussianBlur
527
- id="feGaussianBlur3097"
528
- stdDeviation="2.3"
529
- in="SourceAlpha"
530
- result="result0" />
531
- <feMorphology
532
- id="feMorphology3099"
533
- in="SourceAlpha"
534
- radius="6.6"
535
- result="result1" />
536
- <feGaussianBlur
537
- id="feGaussianBlur3101"
538
- stdDeviation="8.9"
539
- in="result1" />
540
- <feColorMatrix
541
- id="feColorMatrix3103"
542
- values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0.3 0"
543
- result="result91" />
544
- <feComposite
545
- id="feComposite3105"
546
- in2="result91"
547
- in="result0"
548
- operator="out"
549
- result="result2" />
550
- <feGaussianBlur
551
- id="feGaussianBlur3107"
552
- stdDeviation="1.7"
553
- result="result4" />
554
- <feDiffuseLighting
555
- id="feDiffuseLighting3109"
556
- surfaceScale="10"
557
- result="result92">
558
- <feDistantLight
559
- id="feDistantLight3111"
560
- azimuth="225"
561
- elevation="45" />
562
- </feDiffuseLighting>
563
- <feBlend
564
- id="feBlend3113"
565
- in2="SourceGraphic"
566
- mode="multiply"
567
- result="result93" />
568
- <feComposite
569
- id="feComposite3115"
570
- in2="SourceAlpha"
571
- operator="in"
572
- result="result3" />
573
- <feSpecularLighting
574
- id="feSpecularLighting3117"
575
- in="result4"
576
- surfaceScale="5"
577
- specularExponent="17.9"
578
- result="result94">
579
- <feDistantLight
580
- id="feDistantLight3119"
581
- azimuth="225"
582
- elevation="45" />
583
- </feSpecularLighting>
584
- <feComposite
585
- id="feComposite3121"
586
- in2="result3"
587
- operator="atop" />
588
- </filter>
589
- </defs>
590
- <sodipodi:namedview
591
- id="base"
592
- pagecolor="#ffffff"
593
- bordercolor="#666666"
594
- borderopacity="1.0"
595
- inkscape:pageopacity="0.0"
596
- inkscape:pageshadow="2"
597
- inkscape:zoom="0.77472527"
598
- inkscape:cx="267.99591"
599
- inkscape:cy="243.31593"
600
- inkscape:current-layer="layer1"
601
- inkscape:document-units="px"
602
- showgrid="false"
603
- inkscape:window-width="1440"
604
- inkscape:window-height="846"
605
- inkscape:window-x="-4"
606
- inkscape:window-y="-4"
607
- inkscape:window-maximized="1" />
608
- <metadata
609
- id="metadata4477">
610
- <rdf:RDF>
611
- <cc:Work
612
- rdf:about="">
613
- <dc:format>image/svg+xml</dc:format>
614
- <dc:type
615
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
616
- <dc:title />
617
- </cc:Work>
618
- </rdf:RDF>
619
- </metadata>
620
- <g
621
- id="layer1"
622
- inkscape:label="Layer 1"
623
- inkscape:groupmode="layer">
624
- <text
625
- xml:space="preserve"
626
- style="font-size:56.51638031000000240px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
627
- x="11.068031"
628
- y="64.448509"
629
- id="text2993"
630
- sodipodi:linespacing="125%"
631
- transform="matrix(1.3983171,0,0,1.9626391,33.275211,279.02184)"
632
- inkscape:transform-center-y="5.8333333"><tspan
633
- sodipodi:role="line"
634
- id="tspan2995"
635
- x="11.068031"
636
- y="64.448509"
637
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Beneath the Surface;-inkscape-font-specification:Beneath the Surface;" /></text>
638
- <text
639
- xml:space="preserve"
640
- style="font-size:26.16688728px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Beneath the Surface;-inkscape-font-specification:Beneath the Surface"
641
- x="4.9144654"
642
- y="320.23987"
643
- id="text3090"
644
- sodipodi:linespacing="125%"
645
- transform="scale(0.68485444,1.4601643)"><tspan
646
- sodipodi:role="line"
647
- id="tspan3092"
648
- x="4.9144654"
649
- y="320.23987"
650
- style="font-size:22.6870079px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Beneath the Surface;-inkscape-font-specification:Beneath the Surface">Web Application security Scanner Framework</tspan></text>
651
- <text
652
- xml:space="preserve"
653
- style="font-size:107.92905425999998670px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Beneath the Surface;-inkscape-font-specification:Beneath the Surface;filter:url(#filter3095)"
654
- x="5.0365472"
655
- y="383.99484"
656
- id="text4321"
657
- sodipodi:linespacing="125%"
658
- transform="scale(0.88992602,1.1236889)"><tspan
659
- sodipodi:role="line"
660
- id="tspan4323"
661
- x="5.0365472"
662
- y="383.99484">arachni</tspan></text>
663
- <path
664
- d=""
665
- id="path5056"
666
- inkscape:connector-curvature="0" />
667
- <path
668
- inkscape:connector-curvature="0"
669
- d="m 478.96246,99.725375 c -0.13618,-0.01569 -0.45789,0.08216 -1.0474,0.277585 -0.6932,0.22978 -1.68157,0.56581 -2.1821,0.75708 -1.02332,0.39103 -5.49889,3.00056 -5.49889,3.20496 0,0.32716 -1.42697,0.95492 -2.21119,0.95896 -0.73348,0.004 -0.77858,0.047 -0.17457,0.2776 0.35677,0.13622 0.48292,0.21663 0.34913,0.25236 -0.008,0.002 -0.0208,-0.002 -0.029,0 -0.0449,0.009 -0.11675,0.0246 -0.20366,0.0252 -0.19942,0.002 -0.35749,0.0682 -0.46551,0.17664 -1.56929,0.48144 -2.80804,0.88661 -3.78231,1.41321 -0.0549,-0.11648 -0.13473,-0.24455 -0.20366,-0.32806 -0.27855,-0.33744 -2.15031,-0.24464 -2.61852,-0.22712 -2.35261,0.088 -4.51116,0.34626 -6.86634,0.58042 -0.77655,0.0925 -1.55119,0.20858 -2.32757,0.30283 2.90435,-1.27135 5.82755,-2.54268 8.46655,-4.18915 0.31604,-0.19718 -0.22751,-0.63819 -0.34914,-0.95897 -2.81588,0.22904 -5.61733,0.92148 -8.35017,1.51416 -2.19186,0.47535 -4.39208,0.95931 -6.57538,1.46368 -0.0146,-0.0515 -0.007,-0.10602 -0.029,-0.15142 0.053,-0.23772 0.002,-0.52037 -0.20366,-0.80755 -0.18366,-0.25618 -0.65954,-0.18153 -0.98922,-0.27759 -6.30213,0.47992 -12.68244,2.19845 -18.59148,4.08821 -2.35075,0.82442 -3.26205,1.13083 -4.16053,1.51415 -1.87751,0.46725 -3.75357,0.92632 -5.61527,1.43844 -3.56688,0.98117 -10.54497,3.13362 -13.99462,4.34057 -2.19682,0.76862 -4.40076,1.55029 -6.5172,2.47311 -4.2686,1.86122 -8.44139,3.8821 -12.62707,5.87996 -1.70144,0.81211 -3.35512,1.70121 -5.03338,2.54882 -2.36652,1.38143 -4.99354,2.75511 -7.09909,4.46675 -0.65945,0.53608 -1.35945,1.083 -1.74568,1.79175 -0.59274,1.08772 -0.20619,1.8702 1.01832,2.01887 -0.0898,0.11604 -0.23361,0.18845 -0.49461,0.22712 -0.23271,0.0345 -0.50388,0.14511 -0.69828,0.2776 -0.20357,0.0673 -0.40676,0.13568 -0.61098,0.20188 -0.05,-0.002 -0.0969,0.006 -0.14548,0 -2.82853,0.29674 -5.61307,0.93815 -8.32107,1.6908 -3.08808,0.90097 -4.84329,1.89558 -8.05921,3.68444 -0.41873,0.23293 -0.3958,0.72959 -0.0582,0.9842 0.12212,0.0921 0.33437,0.0308 0.49461,0.0505 2.16535,-0.41549 4.25475,-1.04498 6.34263,-1.6908 -0.0554,0.0774 0.0239,0.1855 0.26185,0.25236 0.16351,0.0459 0.0616,0.0575 -0.23275,0.0252 -0.29431,-0.0322 -0.55281,0.006 -0.55281,0.0757 0,0.1687 -0.87563,0.68137 -1.16378,0.68137 -0.12462,0 -0.19509,0.19712 -0.14547,0.42901 0.0841,0.39237 -0.0716,0.49345 -0.66918,0.42901 -0.11415,-0.0123 -0.13928,0.077 -0.0582,0.20189 0.0811,0.12484 -0.007,0.33853 -0.20365,0.45424 -0.19585,0.11573 -0.35287,0.28744 -0.34914,0.37854 0.004,0.0911 0.14956,0.0568 0.32004,-0.0757 0.20336,-0.15815 0.32339,-0.19615 0.49461,-0.12618 -0.35739,0.16929 -0.71914,0.33539 -1.07651,0.50472 -0.049,-0.29614 -0.5213,-0.19699 -0.58188,0.15142 -0.008,0.0466 -0.0387,0.11676 -0.0582,0.17664 -0.33914,0.1608 -0.67929,0.31849 -1.01831,0.47949 -2.87491,1.01389 -5.9644,1.9187 -8.00103,3.88632 -1.37921,0.72449 -2.64236,1.44198 -4.27691,2.49835 -0.47794,0.30888 -3.52898,2.33447 -3.98597,3.12925 -0.23046,0.40089 -0.0385,0.88985 -0.0582,1.3375 0.28374,0.0807 0.57604,0.28079 0.87283,0.25236 1.0846,-0.10399 4.08808,-1.37044 4.68424,-1.61509 0.3201,-0.13137 0.64146,-0.26996 0.96012,-0.40378 -0.10014,0.48603 -0.19441,0.96167 -0.32004,1.43845 -0.13993,0.69637 -0.27339,1.41626 -0.40732,2.11981 -0.10937,0.0222 -0.22881,0.0814 -0.32005,0.12618 -0.25609,0.12559 -0.33451,0.0984 -0.34913,-0.0505 -0.0149,-0.15377 -0.0459,-0.14713 -0.14547,0 -0.0688,0.10152 0.0775,0.27199 0.32004,0.37854 0.0225,0.01 0.009,0.0163 0.029,0.0252 -0.23683,0.11713 -0.26163,0.11995 -0.43643,0.20188 -0.63164,0.0348 -1.49311,0.12143 -1.62929,0.20189 -0.18722,0.11064 0.49662,0.32447 0.81465,0.25237 0.19628,-0.0445 0.2537,0.0582 0.17456,0.30283 -0.0686,0.21202 -0.0112,0.3533 0.14548,0.3533 0.14609,0 0.29095,0.0859 0.29095,0.20188 0,0.11595 -0.182,0.22712 -0.37823,0.22712 -0.19624,0 -0.34914,0.10329 -0.34914,0.25236 0,0.14907 -0.14449,0.37576 -0.32004,0.47949 -0.34714,0.2051 -0.71602,0.59784 -0.81465,0.83278 -0.47477,0.12613 -0.64301,0.27683 -0.72737,0.68137 -0.033,0.0632 -0.0545,0.10409 -0.0872,0.17664 -0.16215,0.35824 -0.44189,0.65614 -0.61099,0.65614 -0.16908,0 -0.28438,0.043 -0.26184,0.10095 0.12112,0.30969 -0.35166,1.73965 -0.5819,1.74127 -0.19318,0.002 -0.19999,0.0258 0,0.10094 0.16091,0.0605 0.33673,0.68667 0.43642,1.48892 0.055,0.44278 0.0908,0.70019 0.0872,0.90849 -0.21765,-0.75787 -0.74601,-2.49244 -0.96012,-2.42264 -7.1809,2.34067 -8.01084,1.27701 -8.26288,4.921 0.005,1.83116 0.16508,3.65105 0.34913,5.47618 -0.60837,0.0823 -1.19309,0.17354 -1.65839,0.27759 -0.5777,-1.29386 -1.56289,-2.48298 -2.41486,-3.60873 -0.35932,-0.42881 -0.68833,-0.87755 -1.0765,-1.28703 -1.28592,-1.35654 -3.03724,-2.90747 -4.45147,-4.11345 -3.07189,-2.6195 -6.28748,-5.11595 -9.45577,-7.64646 -2.27802,-1.7455 -4.47361,-3.56899 -6.86633,-5.19859 -0.82258,-0.56024 -1.57258,-1.04361 -2.53124,-1.38798 -1.72501,1.03793 -3.5473,1.95817 -5.26613,3.00307 -0.11761,-0.0409 -0.23165,-0.085 -0.34913,-0.12618 -0.0282,-0.0104 -0.0596,-0.0151 -0.0872,-0.0252 l -0.23276,-0.17665 0,0.0757 c -0.82339,-0.30253 -2.02788,-0.73194 -2.67671,-0.95896 -0.65771,-0.2443 -1.32332,-0.48212 -1.97843,-0.73184 0.22277,0.0194 0.44634,0.0316 0.66917,0.0505 0.1741,-0.067 0.3487,-0.13646 0.52371,-0.20189 0.35767,0.15196 0.7172,0.36748 1.01831,0.20189 0.17884,-0.0984 -0.19467,-0.25181 -0.46552,-0.40377 2.74367,-1.00056 5.56763,-1.87195 8.14651,-3.15449 0.29979,-0.1491 -0.21707,-0.64408 -0.52371,-0.78231 -0.46693,-0.21053 -1.05064,-0.0839 -1.57111,-0.15141 -4.73134,-0.61351 -9.41351,-1.40521 -14.13999,-2.04411 -6.756,-1.04527 -13.52331,-2.08249 -20.27897,-3.12925 -2.68806,-0.87778 -5.38405,-1.75943 -8.08832,-2.59929 l -1.80386,1.0599 c -9.62597,-1.48746 -19.25872,-2.98417 -28.89098,-4.44151 -4.08631,-0.6423 -8.16684,-1.27772 -12.24885,-1.94316 -7.89998,-1.5876 -15.85926,-2.95863 -23.82851,-4.26486 -0.84414,-0.16997 -1.68837,-0.35498 -2.53124,-0.52996 -0.96945,-0.18917 -1.94327,-0.35382 -2.90947,-0.55519 -4.44891,-0.92722 -1.52374,-1.33041 -9.19391,3.98728 -0.14876,0.10311 0.0185,0.12089 0.29095,0.12617 -0.30765,0.33537 1.19914,0.123 1.77478,0.20189 1.04054,0.1426 2.07385,0.3048 3.11313,0.45424 9.75987,1.66669 19.52366,3.24245 29.3274,4.69388 6.09416,1.29824 12.13773,2.76173 18.12596,4.39103 3.08117,0.91799 4.78475,1.41658 6.5754,1.9684 0.26028,0.10567 0.50787,0.21511 0.66917,0.32807 3.76802,1.73807 7.80101,3.00989 11.84152,4.18915 2.55308,0.69409 3.2176,0.97868 5.52798,-2.72547 0.44354,0.0966 0.89526,0.1794 1.33836,0.2776 0.18062,0.078 0.34565,0.13734 0.40732,0.10094 0.0386,0.009 0.0777,0.0167 0.11638,0.0252 0.008,0.0167 0.029,0.0254 0.029,0.0505 0,0.0949 0.0933,0.14124 0.20365,0.10094 0.0744,-0.0271 0.31883,-0.004 0.61099,0.0252 0.38872,0.0878 0.77549,0.18844 1.16379,0.27759 0.10234,0.0643 0.18164,0.13581 0.20366,0.22713 0.063,0.2613 0.20141,0.28417 0.87284,0.25235 0.4411,-0.0209 0.94855,0.0602 1.13469,0.15142 0.16994,0.0833 0.62642,0.12356 1.04741,0.12618 2.16894,0.52319 4.30976,1.06176 6.45901,1.64033 0.0206,0.0538 0.0874,0.0732 0.20366,0.0757 0.34834,0.0941 0.69968,0.18183 1.04741,0.27759 -0.0364,0.21057 0.0266,0.37854 0.14548,0.37854 0.12456,0 0.24872,-0.08 0.26184,-0.17665 0.013,-0.0966 0.0859,-0.0109 0.17457,0.17665 0.16504,0.34893 0.81925,0.58374 0.69827,0.25236 -0.0277,-0.076 0.13789,-0.13664 0.43643,-0.17665 3.05002,0.86696 6.05865,1.83429 9.04843,2.85165 -0.0684,0.0841 -0.17457,0.21717 -0.17457,0.22712 0,0.006 0.13608,-2.5e-4 0.17457,0 -3.78491,1.60402 -4.46116,1.85642 -2.85128,2.675 -0.0998,0.072 0.0119,0.0735 0.17457,0.0757 0.44327,0.21697 0.94923,0.46921 1.6584,0.80754 6.04141,2.72784 12.05668,5.51334 17.98048,8.42878 0.12907,0.125 0.24882,0.25392 0.37823,0.37854 3.12965,2.9257 6.89462,5.26195 10.29951,7.92406 l 0.69827,0.63089 2.85128,-1.51415 c 3.47914,1.9471 6.92387,3.96296 10.24131,6.10708 -1.88718,0.54291 -2.37609,1.02127 -1.89115,3.07878 0.62098,1.89926 1.34503,3.77126 2.12391,5.62759 -0.18128,0.36618 -0.32858,0.81959 -0.37823,1.23656 -0.0739,0.62091 -0.22605,0.93565 -0.55281,1.11038 -0.35601,0.19035 -0.45992,0.1793 -0.46551,0.0252 -0.004,-0.12925 -0.11821,-0.10012 -0.29094,0.0757 -0.21091,0.21466 -0.16407,0.30792 0.17456,0.45425 0.23311,0.10069 0.53375,0.20047 0.66918,0.22712 0.13826,0.0272 0.16528,0.12472 0.0582,0.22713 -0.15506,0.14821 -0.24113,0.15497 -0.40732,0 -0.15935,-0.14857 -0.19994,-0.14112 -0.20367,0.0505 -0.003,0.18108 0.19216,0.25235 0.72737,0.25235 l 0.72737,0 -0.40733,0.42901 c -0.28595,0.28604 -0.62276,0.42902 -1.01831,0.42902 -0.70566,0 -0.61698,0.0521 0.26186,0.17664 0.50514,0.0716 0.66917,0.0464 0.66917,-0.12618 0,-0.20398 0.0356,-0.20248 0.37823,0 0.20678,0.12225 0.46163,0.19535 0.58189,0.15142 0.12029,-0.0439 0.23783,0.0486 0.26185,0.22712 0.10273,0.75929 0.12913,0.91023 0.26186,1.11038 0.0769,0.11594 0.19384,0.32488 0.23276,0.47948 0.0389,0.15459 0.14924,0.33009 0.26184,0.37854 0.11258,0.0485 0.42986,0.0415 0.69828,0 0.47873,-0.074 0.47541,-0.0582 0.029,-0.27759 -0.50358,-0.2475 -1.10009,-1.12281 -0.90194,-1.31227 0.0695,-0.0665 -0.0936,-0.29268 -0.34914,-0.50471 -0.46974,-0.38982 -0.51718,-0.46568 -0.5237,-0.78232 -0.003,-0.11711 -0.079,-0.0901 -0.23276,0.0505 -0.16122,0.14736 -0.22903,0.15115 -0.23276,0.0252 -0.002,-0.0991 0.14255,-0.21215 0.32005,-0.25236 0.37925,-0.086 0.31392,-0.76199 -0.0872,-0.90849 -0.19466,-0.0711 -0.15099,-0.14487 0.11638,-0.30283 0.20588,-0.12165 0.37823,-0.27098 0.37823,-0.32807 0,-0.057 -0.0885,-0.0761 -0.17457,-0.0252 -0.36736,0.21706 -0.78556,-0.25528 -0.78556,-0.88325 0,-0.32986 0.12178,-0.64753 0.37823,-1.03468 1.2167,2.86802 2.52204,5.70288 3.8405,8.52973 -0.15141,0.10822 -0.26181,0.18004 -0.26181,0.2272 0,0.0724 -0.15277,0.0971 -0.32003,0.0757 -0.24635,-0.21738 -0.53231,-0.66281 -0.40734,-0.78231 0.0725,-0.0693 0.0247,-0.12618 -0.11637,-0.12618 -0.15644,0 -0.20958,-0.13388 -0.11638,-0.3533 0.16501,-0.38846 -0.38493,-0.80598 -1.16378,-0.88326 -0.4987,-0.0495 -0.51026,0.0627 -0.0582,0.52995 0.46985,0.48557 0.44858,0.71614 -0.0582,0.60566 -0.22893,-0.0499 -0.4858,-0.16942 -0.5819,-0.25235 -0.10531,-0.0909 -0.17084,-0.0473 -0.17457,0.10094 -0.002,0.13526 0.1529,0.25236 0.34913,0.25236 0.19625,0 0.34542,0.11709 0.34914,0.25235 0.0103,0.33778 0.5409,0.70277 0.90194,0.63091 0.43068,-0.0857 0.36719,-0.30384 -0.11638,-0.37854 -0.32977,-0.051 -0.31468,-0.0628 0.0872,-0.0757 0.32165,-0.0103 0.56123,0.0994 0.64009,0.27759 0.0706,0.15936 -0.0186,0.27276 -0.17457,0.2776 -0.15127,0.004 -0.0431,0.0602 0.23275,0.12618 0.0424,0.0102 0.0779,0.0361 0.11638,0.0505 -0.0161,0.0792 -0.0971,0.14591 -0.23275,0.17665 -0.19325,0.0438 -0.29933,0.13825 -0.23276,0.20189 0.0666,0.0636 -0.0856,0.15246 -0.34914,0.20188 -0.26348,0.0494 -0.4946,0.20849 -0.4946,0.3533 0,0.14483 -0.1108,0.29815 -0.26186,0.35331 -0.17012,0.0621 -0.22151,0.0501 -0.11637,-0.0505 0.11383,-0.10887 -0.0759,-0.17665 -0.5528,-0.17665 -0.0816,0 -0.13783,0.022 -0.20366,0.0252 -0.0899,-0.24772 -0.16382,-0.48616 -0.26185,-0.73185 -1.76782,-2.75431 -0.55911,-1.34882 -7.04091,2.14505 -1.10374,0.2659 -1.55684,0.3339 -1.39654,0.70661 -0.0318,0.0159 -0.0552,0.0345 -0.0872,0.0505 -0.005,0.003 0.003,0.0627 0,0.0757 -0.11619,0.0424 -0.23299,0.0837 -0.34913,0.12618 -0.88531,-0.16755 -1.76956,-0.33506 -2.64762,-0.52995 5.7e-4,-0.12633 0.0715,-0.20917 0.26185,-0.25236 0.21013,-0.0477 0.37823,-0.13284 0.37823,-0.20188 0,-0.19623 -0.93917,-0.14682 -0.96012,0.0505 -0.0151,0.14054 -0.0495,0.14054 -0.14547,0 -0.066,-0.0966 -0.38214,-0.17665 -0.69827,-0.17665 -0.41318,0 -0.55281,-0.0787 -0.55281,-0.27759 0,-0.1887 0.10344,-0.25761 0.34914,-0.20189 0.25729,0.0583 0.30888,0.0359 0.20367,-0.12618 -0.0809,-0.12454 -0.24116,-0.22712 -0.37824,-0.22712 -0.13712,0 -0.0664,-0.14551 0.17457,-0.30283 0.24098,-0.15732 0.5847,-0.24081 0.75646,-0.20188 0.1718,0.0389 0.32004,-4.9e-4 0.32004,-0.0757 0,-0.0749 -0.27621,-0.12618 -0.61099,-0.12618 -0.33473,0 -0.54287,-0.0775 -0.46551,-0.15141 0.0773,-0.0739 0.30259,-0.094 0.49461,-0.0505 0.42334,0.096 0.44987,-0.16737 0.029,-0.2776 -0.19956,-0.0522 -0.18121,-0.0841 0.0582,-0.0757 0.64369,0.0227 0.96012,-0.0163 0.96012,-0.12618 0,-0.0595 -0.43684,-0.10094 -0.96012,-0.10094 -0.7751,0 -0.93103,0.0607 -0.93103,0.27759 0,0.22484 -0.1389,0.22782 -0.78555,0.15143 -0.57335,-0.0678 -0.69775,-0.0443 -0.49461,0.0757 0.1493,0.0882 0.21613,0.24446 0.14547,0.3533 -0.0707,0.10884 0.13077,0.3481 0.43642,0.50472 0.46558,0.23859 0.49617,0.29445 0.20366,0.40377 -0.30145,0.11284 -0.29828,0.12456 0,0.12618 0.25737,0.002 0.2598,0.0575 0.0582,0.17665 -0.20167,0.11912 -0.16758,0.20272 0.0872,0.35331 -1.74334,-0.41162 -3.48963,-0.84316 -5.23703,-1.23656 -1.59931,-0.35699 -3.19477,-0.6775 -4.80062,-1.00944 l 6.25535,-3.3059 c -0.91925,-0.76825 -2.38485,-0.92552 -3.57864,-1.13561 -4.84331,-0.85236 -9.76029,-1.34036 -14.66371,-1.84222 -15.75201,-1.55413 -31.53531,-2.62072 -47.36607,-3.35637 -5.34004,-0.20935 -10.71071,-0.53051 -16.06025,-0.52995 -1.25957,-0.19151 -2.52245,-0.39037 -3.7823,-0.58043 -0.92408,-0.13939 -1.83863,-0.27101 -2.76399,-0.40377 -0.52483,-0.0753 -1.04392,-0.14027 -1.57111,-0.20189 -0.18829,-0.022 -0.42387,-0.14197 -0.5819,-0.0505 -0.28733,0.1664 -0.54338,0.30314 -0.81464,0.45425 -0.0392,0.0151 -0.077,0.0539 -0.11638,0.0757 -0.59401,0.32896 -1.17132,0.64657 -1.6875,0.90849 -0.0349,-0.003 -0.11477,-0.0226 -0.14547,-0.0252 -4.60343,-0.41218 -9.20493,-0.83532 -13.81996,-1.13561 -3.24312,-0.29353 -0.25237,-0.0361 -3.11312,-0.22712 -0.36145,-0.0241 -0.78341,-0.24505 -1.1056,-0.10095 -0.2443,0.10926 -0.48419,0.2167 -0.72737,0.32807 -0.64436,-0.1362 -1.13263,0.18718 -2.12391,1.00943 -1.7942,0.8834 -3.54562,1.83041 -5.23703,2.85165 -0.18037,0.1089 0.16075,0.38132 0.34914,0.47949 0.31765,0.16554 0.71912,0.19257 1.0765,0.27759 11.65932,1.92947 23.526,2.75445 35.20452,4.59293 2.92209,0.43807 5.84158,0.84421 8.75749,1.31226 6.69131,1.07407 13.35266,2.34954 19.98802,3.65921 -0.94146,0.43447 -1.89833,0.84946 -2.85128,1.26179 0.13502,0.25465 0.14436,0.61942 0.40733,0.78231 0.28873,0.1789 0.69521,0.0889 1.04741,0.12618 0.73057,0.0773 1.4792,0.13543 2.21119,0.20189 4.71135,0.42771 9.41185,0.83894 14.1109,1.36273 11.94222,1.36673 23.8524,2.94493 35.72822,4.69387 2.18682,0.3045 3.25041,0.47851 5.29523,0.73184 0.37382,0.0463 0.7789,0.29043 1.10559,0.12619 0.11655,-0.0586 0.23328,-0.11711 0.34914,-0.17666 0.87258,0.17028 1.2045,0.17019 1.71659,-0.20188 0.0362,0.39911 0.073,0.83318 0.26185,1.18608 0.0831,0.15512 0.65778,0.82158 0.98921,0.68137 0.028,0.13436 0.0591,0.26944 0.0872,0.40377 -0.24631,0.23485 -0.22606,0.29927 0.0582,0.40378 0.008,0.003 0.0201,-0.003 0.029,0 0.27837,1.31309 0.57135,2.62756 0.87284,3.9368 -0.0118,0.007 -0.016,0.0203 -0.029,0.0252 -0.1506,0.057 -0.23783,0.49684 -0.20365,1.08515 0.0426,0.73392 -0.005,1.00782 -0.23276,1.00943 -0.21717,0.002 -0.19442,0.0297 0.0582,0.12618 0.2622,0.1001 0.25933,0.1498 0.029,0.15141 -0.2046,0.002 -0.27322,0.094 -0.17457,0.2776 0.0866,0.16123 0.0584,0.2776 -0.0872,0.2776 -0.13962,0 -0.26185,0.10662 -0.26185,0.22712 0,0.12353 0.11437,0.18004 0.26185,0.12617 0.18383,-0.0671 0.1897,-0.007 0,0.2019 -0.21,0.23177 -0.2086,0.30121 0.029,0.30283 0.23636,0.002 0.24935,0.007 0,0.10094 -0.2249,0.0842 -0.2417,0.16009 -0.0582,0.22712 0.1227,0.0448 0.20396,0.35615 0.23275,0.7066 -0.16703,0.0772 -0.12553,0.24451 -0.0582,0.70661 -0.0597,0.21864 -0.1602,0.34428 -0.34914,0.42901 -0.25419,0.11404 -0.29796,0.19947 -0.11638,0.20189 0.1635,0.002 0.29095,0.0658 0.29095,0.15141 0,0.0856 -0.15294,0.12021 -0.34914,0.0757 -0.21733,-0.0493 -0.34914,4.5e-4 -0.34914,0.12618 0,0.11351 0.15291,0.20189 0.34914,0.20189 0.1962,0 0.34914,0.0695 0.34914,0.15141 0,0.0123 -0.0247,0.0155 -0.029,0.0252 -0.10035,-0.1527 -0.38551,-0.12599 -1.1347,0.0757 -0.57233,0.15407 -1.04923,0.386 -1.16378,0.55519 -0.0193,0.002 -0.0389,-0.002 -0.0582,0 -0.12533,0.0141 -0.25291,0.0115 -0.37822,0.0252 -0.019,-0.0158 -0.0386,-0.0322 -0.0582,-0.0505 -0.0953,-0.089 -0.29088,-0.13581 -0.52371,-0.20189 l 2.03663,-1.41321 c -1.10092,0.44862 -2.20806,0.84741 -3.34589,1.21133 -0.56328,-0.0266 -1.0474,0.01 -1.0474,0.17665 0,0.0373 0.0761,0.0693 0.17456,0.10094 -0.21818,0.0663 -0.45014,0.11236 -0.66917,0.17665 -0.0964,-0.0877 -0.22499,-0.1687 -0.37823,-0.25236 -1.29707,0.0907 -0.51848,-0.006 -2.09482,0.3533 -2.41527,0.5499 -4.82428,1.14171 -7.21547,1.76651 -2.35066,0.73239 -3.62986,1.14424 -4.94609,1.79175 -0.15953,-0.0357 -0.33846,-0.0757 -0.5528,-0.0757 -0.54456,0 -0.96012,0.20343 -0.96012,0.45425 0,0.18419 0.1093,0.27615 0.29094,0.2776 -0.11998,0.0701 -0.25251,0.15105 -0.37823,0.22712 -0.17881,0.002 -0.36403,-0.004 -0.55279,-0.0252 -1.54333,-0.17432 -2.08827,0.41394 -0.69828,0.75709 0.0294,0.007 0.0311,0.0184 0.0582,0.0252 -0.0222,0.0145 -0.0648,0.0358 -0.0872,0.0505 -0.13546,0.0344 -0.27184,0.0667 -0.40733,0.10095 -0.16338,-0.007 -0.28346,-0.0138 -0.49461,-0.0252 -1.11194,-0.0602 -2.00753,0.0101 -2.00753,0.15142 0,0.14131 0.25486,0.2654 0.58189,0.27759 0.14573,0.006 0.17632,0.0151 0.23276,0.0252 -0.77508,0.19355 -1.55162,0.38937 -2.32757,0.58042 -0.11923,-0.004 -0.21888,0.0332 -0.29095,0.0757 -0.59033,0.14513 -1.18411,0.28494 -1.77477,0.42902 0.13543,-0.1295 0.0331,-0.33192 -0.23275,-0.42902 -0.26591,-0.0971 -0.46552,-0.004 -0.46552,0.20189 0,0.13059 -0.179,0.32759 -0.43642,0.50472 -1.78396,0.43352 -3.56933,0.88085 -5.35341,1.31226 -0.83175,0.0606 -1.65796,0.27556 -2.12391,0.50472 -0.24212,0.0588 -0.48531,0.11776 -0.72737,0.17665 -1.10352,0.26925 -2.21173,0.51772 -3.31679,0.78232 -0.11535,-0.0248 -0.22695,-0.0723 -0.29095,-0.17665 -0.26139,-0.42653 -1.54201,-0.468 -1.54201,-0.0505 0,0.16372 -0.27579,0.21272 -0.58189,0.10094 -0.37419,-0.13665 -0.43703,-0.0621 -0.23276,0.25236 0.19834,0.30539 0.0489,0.47948 -0.40732,0.47948 -0.29058,0 -0.47736,0.0944 -0.5819,0.25236 -4.8967,1.15122 -9.78139,2.30511 -14.69279,3.40684 -0.22222,-0.13353 -0.67617,-0.0778 -0.81465,-0.0757 -0.36776,0.0607 -0.7937,-0.003 -1.1056,0.17665 -1.68928,0.97263 -3.40463,1.9397 -5.06247,2.9526 -0.14057,0.0107 -0.28849,0.0393 -0.37823,0.0505 -0.74308,0.0927 -1.45819,0.30698 -2.1821,0.47948 -1.66246,0.39613 -6.01114,1.54311 -7.41913,1.91792 -8.33745,2.17392 -16.69509,4.3315 -24.84683,6.99034 -0.25336,0.0151 -0.50316,0.0396 -0.75646,0.0505 -0.0377,0.007 -0.0511,0.0181 -0.0872,0.0252 -0.16134,0.003 -0.34655,1.9e-4 -0.43642,0 -0.081,-2.4e-4 -0.16721,-0.0413 -0.23275,0 -0.1179,0.0742 -0.20465,0.13005 -0.32005,0.20188 -0.9276,0.20273 -1.07684,0.33141 -1.89115,0.9842 -0.29102,0.10198 -0.58249,0.19926 -0.87284,0.30283 -3.04822,1.07417 -6.17253,2.10288 -9.04843,3.50779 -3.06726,1.49838 -6.20212,2.90517 -9.13572,4.59292 -0.37351,0.2149 -0.59959,0.64749 -0.64009,1.03468 -0.0236,0.22537 0.31249,0.37189 0.46552,0.55518 2.3439,0.0736 4.51485,-0.47122 6.80815,-0.88325 1.44766,-0.2601 2.88791,-0.52029 4.3351,-0.78232 0.62915,0.0293 1.29037,-0.0292 1.80387,-0.0252 0.93928,0.0152 1.88723,-0.007 2.82218,-0.0505 -0.0755,0.0369 -0.15728,0.064 -0.23276,0.10094 -0.98561,0.48248 -2.55255,0.95205 -2.03662,2.22075 0.13217,0.32503 0.60876,0.31815 1.01831,0.25236 -0.0523,0.0842 -0.0786,0.15357 -0.029,0.20189 0.1188,0.11592 -0.0275,0.22712 -0.32005,0.22712 -0.29249,0 -0.39445,0.12299 -0.23276,0.27759 0.0808,0.0773 0.10131,0.15095 0.0582,0.20189 -0.0966,0.0268 -0.19448,0.0485 -0.29095,0.0757 -0.1463,0 -0.2444,0.028 -0.29094,0.0757 -0.35899,0.10282 -0.71942,0.19486 -1.07651,0.30283 0.2293,-0.25167 0.42733,-0.48452 0.20367,-0.42901 -0.0899,0.0223 -0.14529,0.029 -0.23276,0.0505 0.0164,-0.0186 0.0417,-0.032 0.0582,-0.0505 0.11742,-0.0925 0.3774,-0.303 0.46551,-0.37854 -0.57349,0.23388 -1.14349,0.47152 -1.71658,0.7066 -5.74402,1.32092 -5.03894,0.5093 -6.80815,2.70024 -0.0426,0.0566 -0.0739,0.11993 -0.11638,0.17665 -0.24953,0.0874 -0.50689,0.16556 -0.75646,0.25236 -7.46537,3.02875 -5.37026,2.05173 -15.65292,7.24269 -1.08354,0.547 -2.11339,1.17034 -3.14222,1.79175 -1.00751,0.60852 -2.99032,1.54803 -3.14222,2.92736 -0.03,0.27258 0.42225,0.40749 0.64008,0.60566 0.63755,-0.13656 1.29847,-0.24571 1.92024,-0.42901 2.2588,-0.66586 5.48464,-1.93374 7.68099,-2.80118 -3.18625,1.7792 -6.34525,3.58925 -9.54304,5.35 -2.27202,1.30406 -4.009,2.26541 -6.19716,3.60873 -0.63586,0.39037 -1.28151,0.76077 -1.86206,1.21133 -0.28596,0.22174 -1.62137,1.27196 -0.37822,1.6908 -0.27157,0.26252 -0.25831,0.3888 0.17456,0.25236 -0.36602,0.20377 -2.44106,1.34406 -2.50214,1.66556 -0.14412,0.75822 0.0768,0.82642 0.52371,1.11038 1.10678,-0.36791 2.11018,-0.91058 3.14222,-1.41321 0.57936,-0.28216 1.16288,-0.5562 1.74567,-0.83278 0.31636,0.24445 0.44318,0.85642 0.52371,1.13561 -1.08987,0.75282 -2.07455,1.43172 -3.37498,2.34694 -4.59075,3.23092 -9.11092,6.54774 -13.6163,9.86723 -0.32382,0.25506 -3.14477,2.39298 -3.72411,3.07877 -0.14953,0.17695 -0.37764,0.47168 -0.20367,0.63089 0.34547,0.31618 0.93743,0.63084 1.39655,0.45426 4.83158,-1.8583 7.65098,-3.61269 11.49239,-5.9052 2.4099,-1.43243 4.72743,-2.96756 7.01181,-4.54246 -0.22152,0.64631 -0.47822,1.30591 -0.72737,1.94317 -0.13344,0.10386 -0.27504,0.19787 -0.40732,0.30283 -0.0469,0.0648 -0.16862,0.14027 -0.11638,0.20188 0.0759,0.0895 0.15529,0.1511 0.23276,0.22713 -0.18509,0.54661 -0.31234,1.19425 0.0291,1.58985 -0.3135,0.20661 -0.61799,0.4234 -0.93103,0.6309 -1.32557,1.14795 -3.03395,1.83113 -4.48058,2.82642 -0.84426,0.55569 -1.30705,1.27279 -1.5711,2.09458 -0.0405,0.034 -0.10177,0.0891 -0.14548,0.12617 -0.73056,0.1637 -1.52536,0.54018 -1.60021,0.93373 -0.25185,0.13515 -0.49119,0.26878 -0.69827,0.37854 -0.12933,-0.1033 -0.32748,-0.20785 -0.5237,-0.25236 -0.39244,-0.089 -0.69827,-0.0167 -0.69827,0.15141 0,0.16803 -0.6972,0.67455 -1.54202,1.11039 -1.6602,0.85648 -1.57773,1.16085 0.32004,1.16085 0.14087,0 0.2581,0.0141 0.37823,0.0252 -0.34302,0.19684 -0.39397,0.26316 -0.14547,0.2776 -0.0129,0.008 -0.016,0.0174 -0.0291,0.0252 -0.022,0.0133 0.0534,0.006 0.0872,0 0.17968,0.004 0.45887,-0.0306 0.87284,-0.0505 0.0362,0.0417 0.0582,0.0768 0.0582,0.12617 0,0.13474 0.0829,0.23805 0.23276,0.2776 l -2.32757,1.46368 c 0.20463,-0.002 0.40636,0.002 0.61099,0 1.14584,-0.0167 2.3082,-0.0129 3.43316,-0.22712 0.0898,-0.0203 0.17238,-0.054 0.26186,-0.0757 -0.59051,1.89386 -0.86126,3.85104 -1.04741,5.80425 -0.344,0.78894 -0.9754,1.72581 -1.36745,1.89269 -0.23575,0.10033 -0.2742,0.38788 -0.11638,0.6309 0.15782,0.24301 0.009,0.58459 -0.32004,0.7823 -0.32905,0.19771 -0.63519,0.98415 -0.66918,1.74128 -0.034,0.75715 -0.27768,1.46415 -0.55279,1.56462 -0.27513,0.10047 -0.40086,0.4451 -0.29095,0.78232 0.022,0.0676 0.0234,0.13574 0.0291,0.20189 -0.2168,0.20804 -0.44723,0.4014 -0.66918,0.60565 -1.52772,0.7293 -2.95591,1.97415 -3.49136,3.23019 -2.9461,2.88448 -5.81375,5.84759 -8.43744,8.95873 -0.99962,1.12727 -2.84327,3.89759 0.37823,3.48256 l 0.29094,0.10094 c 1.07019,0.33131 1.194,0.46351 0.66918,0.68136 -0.46358,0.19243 -0.21551,0.24342 0.78555,0.12619 1.13942,-0.13345 1.24482,-0.11191 0.5819,0.12618 -0.67252,0.24153 -0.71263,0.35925 -0.23276,0.68136 0.69884,0.4691 1.30926,0.5467 1.30926,0.15142 0,-0.1546 0.22937,-0.24049 0.5237,-0.20189 0.29433,0.0387 0.63383,-0.10475 0.75647,-0.30283 0.12263,-0.19808 -0.0302,-0.32112 -0.34914,-0.27759 -0.31887,0.0435 -0.692,-0.0795 -0.81465,-0.27759 -0.12264,-0.19806 -0.0171,-0.35117 0.20366,-0.32808 0.22075,0.0234 0.81509,0.0292 1.33836,0 0.90293,-0.0503 0.90352,-0.0813 0.0582,-0.27758 -0.83706,-0.19436 -0.84455,-0.23394 -0.0872,-0.68138 0.10354,-0.0612 0.15458,-0.0975 0.23275,-0.15141 1.58845,-0.2042 3.58699,-1.66132 5.23704,-3.10401 0.12183,-0.0149 0.23281,-0.0294 0.34913,-0.0505 -0.5455,0.49816 -1.13723,0.95432 -1.71658,1.41321 l 8.17564,-2.9018 c 1.13688,-0.94358 2.29421,-1.90982 2.93855,-3.17972 1.16136,-1.98016 2.54504,-3.85509 3.66593,-5.85472 1.31685,-2.20821 2.8052,-4.38066 3.8114,-6.71275 0.11349,-0.58416 0.2281,-0.71611 0.0582,-1.26179 -0.0518,-0.16644 -0.13345,-0.33013 -0.23276,-0.47947 -0.0426,-0.0642 -0.19528,-0.0525 -0.20366,-0.12619 -0.0101,-0.0929 -0.007,-0.18414 0,-0.27759 0.34259,-0.47567 0.65461,-0.95453 0.93103,-1.46368 0.14395,-0.45301 0.20978,-0.85332 0.26185,-1.21132 0.15098,-0.0482 0.27341,-0.10425 0.34913,-0.17665 0.19258,-0.18412 0.13471,-0.37378 -0.14547,-0.42902 -0.014,-0.002 -0.0159,-0.0214 -0.0291,-0.0252 0.27378,-0.52697 0.5734,-1.05832 0.87284,-1.58986 0.36814,-0.6535 0.75737,-1.29346 1.13469,-1.94317 1.42823,-0.17314 2.87999,-0.902 2.24028,-1.13561 -0.22982,-0.0839 -0.42803,-0.55426 -0.43641,-1.05991 -0.005,-0.33956 -0.0194,-0.56305 -0.0291,-0.80754 1.0325,-1.6884 2.08774,-3.37264 3.20041,-5.02194 0.8802,-1.27659 1.74434,-2.57145 2.64761,-3.83586 1.81408,-2.53933 3.72693,-5.03731 5.55708,-7.57076 2.07319,-0.9819 4.10421,-2.05609 6.16806,-3.05353 2.51853,-1.49187 4.86317,-3.17642 7.27366,-4.79482 0.82519,-0.58047 4.66856,-2.67186 3.14223,-3.88632 -0.19473,-0.15496 -0.50183,-0.11536 -0.75647,-0.17666 -0.27342,0.0482 -0.54252,0.0985 -0.81464,0.15142 -0.0163,-0.0656 -0.0378,-0.10128 -0.0582,-0.17665 -0.23697,-0.8756 -0.11904,-1.18631 0.43643,-1.31226 0.39658,-0.0899 0.69827,-0.38873 0.69827,-0.68137 0.2427,-0.17564 0.48623,-0.35293 0.72736,-0.52995 0.39244,0 0.69827,0.16112 0.69827,0.37853 0,0.25692 0.34179,0.34791 0.96012,0.25236 0.92422,-0.14281 1.27989,-0.91702 0.61099,-1.31227 -0.45641,-0.26969 -0.50219,-0.63923 -0.26185,-0.7823 0.0103,-0.008 0.0187,-0.0175 0.029,-0.0252 0.0949,-0.0413 0.20913,-0.0636 0.37824,-0.0252 0.45547,0.10327 0.75855,-0.11106 0.96012,-0.7066 0.0523,-0.15457 0.15381,-0.3027 0.23276,-0.42901 0.15663,-0.11612 0.30837,-0.23755 0.46551,-0.3533 0.0641,-0.0472 0.13945,-0.0792 0.20366,-0.12618 0.0478,-0.0179 0.0782,-0.0409 0.0872,-0.0757 0.42025,-0.30664 0.82338,-0.60971 1.25107,-0.90849 0.3686,-0.2575 0.95654,-0.37676 1.13469,-0.75707 0.0259,-0.0552 0.019,-0.11951 0.029,-0.17666 0.42748,-0.16512 0.8315,-0.34446 1.25107,-0.55519 0.11238,-0.0564 0.21027,-0.0977 0.32004,-0.15141 0.0361,-0.002 0.0854,-0.003 0.11638,0 0.47404,0.0437 0.98365,-0.12074 1.1347,-0.3533 0.22331,-0.34388 0.34212,-0.35534 0.66917,-0.0505 0.30803,0.28709 0.43084,0.27573 0.43643,-0.10095 0.004,-0.27053 0.20388,-0.50472 0.46551,-0.50472 0.26164,0 0.46551,0.12299 0.46551,0.2776 0,0.61693 1.04548,0.23711 1.51292,-0.55519 0.27362,-0.46378 0.70866,-0.83278 0.96013,-0.83278 0.25149,0 0.32167,-0.11173 0.17456,-0.25236 -0.0631,-0.0603 -0.0921,-0.13802 -0.11637,-0.20189 0.49269,-0.26123 0.96247,-0.53539 1.42563,-0.88326 0.01,4.7e-4 0.0193,-4.9e-4 0.029,0 0.76777,0.0466 0.95958,0.0216 0.75646,-0.52995 0.20817,-0.10392 0.41654,-0.20304 0.58189,-0.30283 0.23533,-0.0193 0.46404,-0.0757 0.69827,-0.0505 0.18374,0.0197 0.35176,0.11713 0.52371,0.17665 0.10438,0.0843 0.2463,0.14644 0.32004,0.25236 0.53712,0.772 -0.18225,2.13942 0.11638,3.00307 1.44313,3.83147 6.24962,-0.21873 9.07752,-3.0283 2.50639,-0.11507 5.58638,-3.61151 6.95362,-4.46675 0.0135,-0.008 0.78845,-2.05403 0.84375,-2.19552 0.0692,-0.15024 0.14233,-0.3014 0.20367,-0.45425 0.6384,-0.49795 1.36386,-1.06674 2.06571,-1.6908 2.12804,-0.31359 4.5235,-1.27376 6.42992,-1.61509 2.64359,-0.75093 0.68376,-0.19171 3.2295,-0.98421 0.44564,-0.13873 0.92036,-0.21088 1.33836,-0.40377 2.92255,-1.3487 5.81487,-2.76139 8.6702,-4.21439 0.30844,-0.15696 0.58921,-0.34642 0.78555,-0.60566 0.15937,-0.21038 0.16275,-0.48757 0.23276,-0.73184 -0.0917,-0.18909 -0.14181,-0.39599 -0.29094,-0.55519 -0.17395,-0.18569 -0.40891,-0.35611 -0.69828,-0.47948 1.38767,-0.22832 2.77442,-0.44713 4.16054,-0.68137 13.23379,-2.26168 26.45573,-4.76386 39.21958,-8.60543 1.65795,-0.56448 2.68508,-0.89546 3.54955,-1.21132 3.267,-0.54161 6.5182,-1.13812 9.7467,-1.84222 0.16326,-0.0374 0.33118,-0.0641 0.49461,-0.10095 0.21207,0.27299 0.4219,0.53847 0.64009,0.80755 -0.13718,0.72304 -0.30688,1.38534 -0.43643,1.43845 -0.0981,0.0402 -0.27306,0.24555 -0.40732,0.45424 -0.19927,0.30967 -0.18723,0.39012 0.14548,0.50472 0.0152,0.004 0.0152,-0.004 0.029,0 -0.005,0.0505 -0.0242,0.10086 -0.029,0.15142 -0.25408,0.002 -0.3584,0.0844 -0.26186,0.17664 0.0899,0.0859 -0.004,0.1901 -0.17457,0.25236 -0.17056,0.0623 -0.31272,0.23692 -0.34913,0.37854 -0.0494,0.19161 0.074,0.26064 0.5528,0.27759 0.0371,0.002 0.0779,2.2e-4 0.11638,0 -0.03,0.22998 -0.0677,0.45442 -0.11638,0.68138 -0.23725,0.12005 -0.43406,0.22408 -0.69827,0.3533 0.0202,0.15665 0.008,0.30271 0.0582,0.45424 0.005,0.0132 0.0732,0.1152 0.14548,0.20189 -0.43667,0.18738 -0.46874,0.19436 0.0582,0.0505 0.0796,0.0847 0.15237,0.14861 0.20367,0.12617 0.3165,-0.13841 0.56264,-0.2414 0.84374,-0.3533 0.20352,-0.032 0.39986,-0.0623 0.61099,-0.0757 0.72798,-0.046 1.45949,0.006 2.1821,0.0757 1.16806,0.13566 2.25756,0.50962 3.40407,0.73185 1.12733,0.2321 2.20941,0.62299 3.2877,0.98419 0.95486,0.33942 1.83085,0.79451 2.64761,1.3375 0.80531,0.55835 1.67014,1.01582 2.56033,1.46368 0.83964,0.42731 1.73797,0.78775 2.64761,1.08514 1.11499,0.3247 2.2422,0.55589 3.40408,0.70661 1.27331,0.12449 2.5366,0.26526 3.81139,0.37854 1.29466,0.0735 2.57822,0.27436 3.86959,0.37854 1.34665,0.0672 2.67307,0.24115 4.01506,0.3533 1.428,0.11177 2.83541,0.35101 4.24782,0.55519 1.28802,0.22244 2.59953,0.19451 3.89868,0.10094 0.92374,-0.0828 1.84661,-0.0735 2.76399,-0.20189 1.838,-0.39585 3.56857,-1.14334 5.17885,-2.0441 0.78147,0.44681 1.2473,0.69482 2.85128,1.6908 0.0295,0.0183 0.0584,0.054 0.0872,0.0757 -0.0545,0.0416 -0.0896,0.084 -0.14548,0.12618 -0.17777,0.0983 -0.33478,0.2011 -0.52371,0.30283 -0.0612,0.033 0.011,0.0302 0.11638,0.0252 -0.0119,0.009 -0.0171,0.0164 -0.029,0.0252 -0.22073,0.1628 0.44682,0.31834 0.66917,0.47948 0.81716,0.5922 1.63637,1.186 2.41486,1.81698 0.78483,0.75737 0.45105,0.36947 1.01832,1.11038 l 1.6002,-0.80755 c 0.2333,0.12598 0.46419,0.25237 0.69827,0.37854 3.80266,2.04964 7.57679,4.12451 11.25963,6.33421 0.64336,0.4014 1.2802,0.80785 1.92025,1.21132 -0.74291,0.4713 -1.59,0.99761 -2.67671,1.61509 -0.21445,0.12185 0.0465,0.46348 0.17457,0.65613 0.47347,0.71246 1.80677,1.6806 2.41485,2.11981 0.79729,0.57589 1.62984,1.10765 2.44395,1.66557 8.56067,5.41669 17.40601,10.54695 25.25416,16.75662 1.83455,1.45471 3.01675,2.34772 4.48057,3.70967 -0.91931,0.0861 -1.12213,0.66097 -3.69502,2.72547 -4.37991,2.14359 -4.51401,1.94064 -2.41486,1.84223 0.005,0.0789 0.49632,0.0492 0.69828,0.0757 0.24043,0.0316 0.45492,0.0561 0.66917,0.0757 -7.53929,3.31323 -14.8102,7.05748 -21.7628,11.20472 -1.18233,0.45991 -2.67679,1.01397 -3.63683,1.48892 -3.0319,1.49993 -6.07666,2.96479 -9.01933,4.59292 -0.14582,0.0807 -0.26617,0.18803 -0.37823,0.30283 -7.9872,3.78622 -15.92555,7.61027 -23.65395,11.78516 -0.65108,0.40213 -4.32057,2.03332 -3.14222,3.43207 -5.71721,3.23732 -11.30688,6.65434 -16.58395,10.42242 -4.4114,3.14995 -6.01714,4.57764 -10.03765,7.89882 -2.33604,2.05338 -4.65372,4.13932 -6.74996,6.38467 -0.32155,0.27693 -0.64487,0.52373 -0.96012,0.80755 -0.15678,0.0836 -0.30948,0.16771 -0.46551,0.25236 -0.0835,0.0453 0.12008,-0.0161 0.26185,-0.0505 -0.33346,0.30222 -0.68354,0.6022 -0.98922,0.88326 -0.56468,0.22217 -1.12842,0.44889 -1.68749,0.68136 0.29129,-0.47285 0.67009,-1.07065 1.25107,-1.91792 -1.36875,0.93643 -2.70597,1.94472 -3.86959,3.07877 -2.30889,1.06554 -4.54385,2.25123 -6.63358,3.63397 l 4.50967,-1.56463 c -0.28335,0.1594 -0.31113,0.19247 -0.64008,0.37854 0.23251,-0.10397 0.72631,-0.32261 1.22198,-0.55519 l 0.4946,-0.17665 c 0.0316,0.14366 0.13876,0.28749 0.34914,0.3533 0.28102,0.0879 1.52954,-0.475 1.71658,-0.55518 0.28488,-0.12219 0.94405,-0.41893 1.6293,-0.73185 -0.40831,0.35854 -0.83164,0.71133 -1.22197,1.08515 -0.49609,0.4922 -2.48388,2.212 -2.38576,2.92735 0.0281,0.20488 0.19221,0.36748 0.29094,0.5552 0.39818,-0.18607 0.794,-0.37024 1.19289,-0.5552 -0.63875,0.96724 -1.28391,1.93375 -1.92026,2.90213 -0.42666,0.69808 -0.99022,1.33604 -1.39653,2.04411 -0.0457,0.0796 -0.13942,0.1758 -0.0872,0.25236 0.13613,0.19974 0.33948,0.5776 0.58189,0.47948 1.905,-0.77108 3.62943,-1.8308 5.41161,-2.80118 2.14423,-0.73657 4.25397,-1.55019 6.31353,-2.44788 0.26069,-0.10187 0.52462,-0.2031 0.78556,-0.30284 0.0561,-0.0215 0.0838,-0.0568 0.11638,-0.10093 0.18035,-0.0823 0.3736,-0.1429 0.55279,-0.22713 0.62393,-0.29328 0.93582,-0.94259 1.42564,-1.38797 0.82207,-0.74748 1.66355,-1.46199 2.50214,-2.19552 2.09056,-1.70137 4.24164,-3.35839 6.42992,-4.97147 2.14334,-0.72959 4.16382,-1.74907 6.25535,-2.5993 0.28422,0.1861 0.67212,0.25767 0.98922,0.12619 3.1131,-1.29086 5.94927,-3.01257 8.93205,-4.51722 4.3749,-2.78736 8.50426,-5.85264 12.62708,-8.90826 2.54392,-1.4826 5.26561,-3.0439 6.05168,-3.50779 0.47934,-0.28288 1.01459,-0.60387 1.54202,-0.90849 0.0308,0.0141 0.0531,0.0379 0.0872,0.0505 0.42685,0.1566 0.92994,-0.0692 1.36744,-0.20188 1.43437,-0.43496 3.98111,-1.76896 5.14976,-2.34694 5.23732,-2.63928 10.50437,-5.19858 15.76929,-7.79788 2.52312,-1.13481 4.62184,-2.14032 6.74996,-3.20496 3.10908,0.16112 6.40646,-0.62255 5.61527,-2.82642 0.16207,-0.0821 0.12198,-0.0658 0.29095,-0.15141 3.2164,-1.62921 6.43369,-3.38787 9.39756,-5.35 0.37042,-0.24523 0.72174,-0.52004 1.07651,-0.78231 0.43502,-0.12127 0.87412,-0.23238 1.30925,-0.3533 0.75538,0.79941 3.75327,-0.15184 4.39329,-0.30284 3.87737,-1.1093 7.75654,-2.40735 11.34692,-4.13868 0.35981,-0.107 0.71713,-0.21997 1.0765,-0.32806 0.13451,-0.0258 0.27303,-0.0485 0.40732,-0.0757 0.38624,-0.0782 0.78295,-0.0682 1.1347,-0.22713 0.34082,-0.15401 0.67984,-0.32169 1.01831,-0.47948 0.89381,-0.27707 1.78632,-0.54666 2.6767,-0.83278 -0.1434,0.50072 -0.0511,1.00149 0.58189,1.41321 0.71227,-0.0148 0.87517,0.0422 1.60022,-0.30283 2.43176,-1.15734 5.11659,-2.33505 7.65188,-3.68444 0.43134,0.0391 0.87077,0.0877 1.28017,0.20189 -0.55752,-0.85882 5.8344,-2.68378 7.50642,-3.55826 l -7.01181,4.76958 c 2.10013,-1.05969 9.50718,-1.92414 7.82646,-5.02194 -0.87887,-0.59543 -1.72538,-0.70875 -2.85127,-0.78231 -1.69026,-0.1104 -3.3769,-0.0615 -5.06248,0.0505 0.18989,-0.43408 0.15992,-0.89759 -0.32003,-1.31227 -0.20007,-0.17285 -0.48586,-0.25164 -0.72737,-0.37853 -2.2244,-0.3566 -4.51772,-0.11272 -6.74996,0.15141 0.0399,-0.074 0.0692,-0.15439 0.11638,-0.22712 0.14406,-0.22184 0.0722,-0.35306 -0.17457,-0.40378 0.3439,-0.21006 0.61335,-0.43471 0.72737,-0.63089 0.26372,-0.45377 -0.054,-0.75904 -0.26185,-1.16086 -0.42652,-0.57272 -0.96709,-1.03379 -1.57102,-1.43844 -0.0618,-0.68234 -0.25379,-1.24957 -0.49461,-1.3375 -0.2853,-0.10417 -0.54921,-0.6646 -0.5819,-1.26179 -0.0163,-0.30078 -0.004,-0.52409 0.029,-0.68137 0.30682,-0.13126 0.69594,-0.29087 0.93103,-0.40378 0.16323,-0.004 0.30045,-3.6e-4 0.5237,0 0.85029,0.002 1.54202,-0.10968 1.54202,-0.22712 0,-0.11745 -0.20889,-0.20188 -0.46551,-0.20188 -0.13622,0 -0.2926,-0.0898 -0.43642,-0.22713 0.50716,-0.33961 1.0277,-0.7532 1.89115,-1.43844 0.77761,-0.74308 3.66111,-3.31066 3.49135,-4.34057 -0.0462,-0.28012 -0.3287,-0.48819 -0.4946,-0.73184 -1.73642,0.84157 -3.47089,1.68297 -5.20794,2.52358 -0.008,-0.78588 0.10751,-1.94863 0,-2.87688 0.52652,-0.0531 0.98727,-0.13344 1.22197,-0.22713 0.56588,-0.22578 0.47766,-0.26815 -0.46551,-0.22712 -0.33662,0.0147 -0.56734,0.0194 -0.84375,0.0252 -0.0628,-0.26828 -0.15548,-0.50504 -0.29094,-0.65613 -0.16033,-0.17882 -0.40797,-0.28651 -0.61099,-0.42901 -0.45991,0.27332 -0.9298,0.54219 -1.39655,0.80755 -0.12915,-0.0983 -0.20361,-0.21685 -0.20361,-0.3785 0,-0.32205 -0.15294,-0.53601 -0.34914,-0.47948 -2.23454,0.64328 -2.86181,0.89404 -2.93856,1.18609 -0.0811,-0.18695 -0.18012,-0.36845 -0.26184,-0.55519 0.14224,-0.09 0.23079,-0.21128 0.23275,-0.35331 0.007,-0.42034 0.0714,-0.41078 0.46552,-0.0505 0.32092,0.29342 0.47724,0.29501 0.5237,0.0505 0.14631,-0.77012 0.20917,-0.85684 0.5528,-1.0599 0.19623,-0.11592 0.34913,-0.42047 0.34913,-0.65613 0,-0.34447 -0.10711,-0.30623 -0.61099,0.10094 -0.57634,0.46571 -0.69193,0.4668 -1.39654,0.0505 -0.33084,-0.19547 -0.75012,-0.31158 -1.13469,-0.37854 -0.73193,-1.60575 -1.49823,-3.21392 -2.29847,-4.79482 -0.2832,-0.55946 -0.56038,-1.11794 -0.87284,-1.66556 -0.14277,-0.25025 -0.16903,-0.81535 -0.46552,-0.7066 -0.59777,0.21923 -1.19799,0.4499 -1.77477,0.7066 -0.95106,-2.29682 -1.92957,-4.57728 -2.90946,-6.86416 -0.26705,-0.61148 -0.50801,-1.23427 -0.78557,-1.84221 -0.004,-0.007 -0.74425,-1.59161 -0.93102,-1.86746 -0.0581,-0.0858 -0.11975,-0.22773 -0.20367,-0.27759 -0.13293,-0.43579 -0.43871,-0.15855 -1.33835,0.52995 -4.00799,1.76664 -5.85329,1.92498 -6.4881,2.29646 -6.02791,-4.12478 -12.19236,-8.10191 -18.4751,-11.93656 -2.73552,-1.58254 -5.38357,-3.28315 -8.11741,-4.87052 1.7e-4,-0.59538 0.34361,-1.18206 1.0765,-1.6151 0.58273,-0.34432 1.07278,-0.51971 1.0765,-0.40377 0.004,0.11594 0.20793,0.004 0.46552,-0.22713 0.40331,-0.36301 0.52509,-0.34597 0.90194,0 0.57413,0.52717 1.94934,0.63243 1.94934,0.15142 0,-0.1371 0.19216,-0.27508 0.43642,-0.37854 1.16929,0.52617 2.37354,0.95473 3.60773,1.38798 3.57267,1.25411 7.17358,2.4467 10.76502,3.6592 3.11921,1.06299 6.23781,2.12152 9.2812,3.33113 -2.58902,0.72746 -4.31666,1.78726 -8.32108,4.0125 -0.51585,0.28668 -0.26843,1.05633 0.0872,1.31227 0.27517,0.19798 0.63385,0.27701 0.96013,0.40377 3.03468,0.4485 6.09068,0.63009 9.16481,0.78231 6.57495,0.32559 13.17922,0.40058 19.75526,0.70661 1.70287,0.0669 3.41518,0.15102 5.12065,0.22712 l -0.69826,0.42901 c 0.29988,0.002 0.60242,0.0106 0.90193,0.0252 0.42844,0.0278 0.85322,0.0775 1.25107,0.22712 0.41345,0.14769 0.82687,0.20938 1.25107,0.32807 0.42104,0.1383 0.87684,0.24573 1.30926,0.3533 0.53421,0.14431 1.08809,0.23119 1.6293,0.3533 0.73659,0.14019 1.4653,0.25792 2.21119,0.3533 0.66041,0.12082 1.31717,0.26263 1.97843,0.37854 0.53145,0.10415 1.06778,0.20545 1.60021,0.30283 0.4379,0.0971 0.86345,0.2312 1.30927,0.30283 0.49447,0.0437 0.98935,0.14209 1.48382,0.17665 0.58137,0.0481 1.12884,0.15537 1.68749,0.30283 0.41299,0.0741 0.83677,0.1688 1.25107,0.22712 0.10606,0.0554 0.20366,0.0865 0.20366,0.12618 0,0.15525 0.0426,0.1613 0.32004,0.0252 0.28005,-0.13731 0.49625,-0.0927 1.07651,0.15141 0.39703,0.16708 0.72736,0.37124 0.72736,0.47949 0,0.11795 0.13481,0.17479 0.34914,0.12618 0.48578,-0.11015 2.03662,0.06 2.03662,0.22712 0,0.0738 -0.25844,0.14334 -0.5528,0.15142 -0.51346,0.0134 -0.51223,0.0183 0.0582,0.12618 0.32704,0.0619 0.85343,0.1181 1.16378,0.12617 0.46796,0.0116 0.51986,-0.0244 0.29095,-0.20188 0.20654,0.0779 0.4043,0.17473 0.61098,0.25235 0.25495,0.16438 0.47106,0.34489 0.46552,0.45425 -0.007,0.14713 0.11851,0.2927 0.29094,0.32807 0.17245,0.0353 0.29146,-0.0214 0.26186,-0.12618 -0.0183,-0.0646 0.0207,-0.15401 0.0582,-0.25236 3.1701,1.18129 6.35092,2.33119 9.57213,3.40684 2.72211,0.786 5.41984,1.73921 8.26289,2.17029 2.65745,0.40293 4.51015,-0.54072 6.66267,-1.94317 6.36315,1.11189 12.71155,2.22196 19.08609,3.28067 3.07962,0.47596 3.11332,0.41555 6.13896,-3.17972 0.68657,-0.36328 1.35962,-0.71283 2.03663,-1.08514 0.31265,-0.17195 -0.7127,-0.0223 -1.10559,-0.0252 0.10708,-0.12573 0.14833,-0.17035 0.26185,-0.30283 0.37912,-0.44249 -1.19987,-0.35831 -1.80387,-0.52995 -2.44191,-0.69395 -4.90778,-1.30509 -7.36095,-1.9684 -1.73836,-0.59773 -3.72499,-1.00852 -5.3825,-1.84222 0.90284,-0.13597 1.3564,-0.20717 2.73489,-0.3533 3.56361,-0.37779 3.949,0.006 7.07,-3.5835 0.59453,-0.37094 1.19317,-0.75334 1.97844,-1.21132 0.0128,-0.007 -0.007,-0.0203 0,-0.0252 -0.11757,0.0134 -0.54468,0.15139 -0.72737,0.17665 -0.12625,0.0174 -0.2517,0.0346 -0.37823,0.0505 0.0552,-0.0653 0.0888,-0.1093 0.14548,-0.17665 0.44515,-0.5298 -1.5138,0.002 -2.26939,0 -10.13662,0.0842 -20.26796,0.20976 -30.4039,0.0757 -1.55517,-0.44237 -3.10689,-0.90176 -4.65515,-1.3375 -0.97063,-0.27318 -0.76265,-0.22449 -1.39654,-0.40378 0.65986,-0.41427 1.16317,-0.73692 2.09482,-1.31226 0.26088,-0.16111 -0.0874,-0.56781 -0.29095,-0.78231 -0.42112,-0.44392 -3.04458,-0.23625 -3.52045,-0.2776 -1.82176,0.11452 -3.65306,0.22953 -5.4698,0.40378 -0.81979,-0.21508 -0.80669,-0.19564 -2.64761,-0.68138 -5.71135,-1.30767 -11.41454,-2.73276 -17.16584,-3.93679 -0.34637,-0.14992 -0.55731,-0.22983 -1.83296,-0.78231 -5.53401,-2.52323 -10.97602,-5.20245 -16.49666,-7.74741 0.2148,-0.155 0.40172,-0.27997 0.64008,-0.45425 0.0977,-0.0714 0.0829,-0.13887 0.029,-0.22712 0.2882,-0.10206 0.22934,-0.12572 -0.14548,-0.15141 -0.21511,-0.19004 -0.53787,-0.3976 -0.72736,-0.55519 -0.29909,-0.24872 -3.40114,-2.22524 -3.43318,-2.24599 -4.19966,-2.66958 -8.28647,-5.50157 -12.62707,-7.99977 -2.76935,-1.37297 -2.30783,-0.71641 -6.57539,2.3974 -0.15961,-0.0837 -0.30817,-0.15142 -0.37823,-0.15142 -0.25724,-0.13095 -0.50334,-0.26711 -0.75646,-0.40377 -0.0597,-0.0574 -0.0872,-0.11343 -0.0872,-0.15141 0,-0.12205 -0.26318,-0.20187 -0.58189,-0.22712 -0.92135,-0.5272 -1.83729,-1.0793 -2.6767,-1.71604 l -2.09482,1.13561 c -0.0623,-0.0209 -0.14504,-0.0505 -0.23275,-0.0505 -0.18054,0 -0.32625,0.0574 -0.34914,0.12618 -0.21296,-0.22704 -0.42545,-0.45545 -0.64008,-0.68137 0.49438,-0.39487 1.00288,-0.7776 1.48382,-1.18609 0.41676,-0.39942 4.07144,-3.09751 2.21119,-4.11344 -0.31281,-0.17085 -0.72689,0.0725 -1.0765,0.17665 -0.89329,0.26615 -2.21329,0.83635 -3.31679,1.3375 0.16376,-0.27404 0.31552,-0.54224 0.34914,-0.75707 0.0348,-0.22257 -0.0813,-0.4336 -0.11638,-0.65614 -0.0865,-0.0936 -0.12794,-0.14488 -0.20366,-0.22712 0.0112,-0.006 0.0179,-0.0185 0.029,-0.0252 7.08095,-1.09335 14.12301,-2.37251 21.09362,-3.9368 0.12533,-0.0272 0.25287,-0.0486 0.37823,-0.0757 0.0272,0.0199 0.0623,0.0338 0.0872,0.0505 0.17454,0.11611 0.43494,-0.10785 0.64008,-0.17665 0.10489,-0.0352 0.13912,-0.0437 0.23276,-0.0757 0.50369,-0.1088 1.00976,-0.21739 1.51292,-0.32806 0.63724,-0.14016 1.32668,-0.13671 1.89115,-0.42901 0.21645,-0.11208 0.42497,-0.23927 0.64009,-0.35331 0.0463,-0.0139 0.10037,-0.008 0.14547,-0.0252 0.0236,-0.009 0.004,-0.0325 -0.029,-0.0505 1.02475,-0.54564 2.05757,-1.10727 3.05493,-1.69081 0.28753,-0.12236 0.74163,-0.30365 0.90194,-0.37854 3.31045,-1.54662 6.61209,-3.1498 9.89218,-4.74434 1.32665,-0.64492 2.97027,-1.47467 4.13144,-2.37217 0.43577,-0.33682 0.77474,-0.75821 1.16378,-1.13561 0.0667,-0.35976 0.28848,-0.72828 0.20367,-1.08515 -0.0996,-0.41911 -0.36908,-0.67898 -0.75646,-0.85801 2.07287,-0.13277 4.16691,-0.0999 6.22625,0.15141 2.0515,0.36086 3.94042,1.14704 5.90621,1.74128 0.48001,0.1223 0.93591,0.26467 1.42563,0.3533 0.65184,0.11796 4.91898,0.65896 5.32433,0.7066 3.31923,0.39013 6.6464,0.67577 9.97946,0.95896 0.93509,0.0733 1.85804,0.1534 2.79309,0.22713 0.72443,0.0571 1.45823,0.11439 2.1821,0.17665 0.45689,0.0393 0.91208,0.0753 1.36744,0.12618 0.13606,0.0152 0.3004,0.15024 0.40733,0.0757 0.43037,-0.3 0.77228,-0.52209 1.16379,-0.78232 11.33141,2.4652 22.60567,5.06932 33.72069,8.20166 0.66353,0.16555 1.33877,0.35583 2.00752,0.50472 0.3058,0.0681 0.62652,0.26057 0.93104,0.27759 -0.0453,0.0736 -0.093,0.15502 -0.14548,0.22712 0.10727,-0.0809 0.22976,-0.16376 0.34914,-0.25235 0.0295,-0.008 0.0587,-0.0121 0.0872,-0.0252 2.1789,-1.00475 4.15762,-1.69154 5.58617,-2.29647 0.14888,0.0661 0.28729,0.13527 0.43642,0.2019 1.6047,0.71691 3.21119,1.45354 4.80061,2.19551 l -0.40732,0.25236 c 0.57191,0.12567 1.14382,0.23116 1.71659,0.3533 1.1063,0.52022 2.21285,1.04052 3.31678,1.56463 0.0289,0.0602 0.0614,0.11329 0.0872,0.17665 0.12023,0.29394 0.23926,0.36329 0.46552,0.25236 0.0972,-0.0477 0.17035,-0.0606 0.23276,-0.0505 0.038,0.018 0.0784,0.0325 0.11638,0.0505 0.0268,0.0312 0.0641,0.0736 0.0872,0.12618 0.0845,0.19094 0.27429,0.26202 0.75646,0.27759 0.57497,0.27297 1.14116,0.56058 1.71658,0.83279 -0.005,0.0221 0.008,0.0253 0,0.0505 -0.0646,0.19972 -0.0218,0.45357 0.0872,0.55518 0.15283,0.14249 0.19994,0.12564 0.20366,-0.0505 0.002,-0.12176 0.21919,-0.17768 0.46551,-0.20189 0.82318,0.38838 1.64748,0.77645 2.47305,1.16085 0.12277,0.12518 0.22114,0.26323 0.23276,0.3533 0.0197,0.15442 0.15549,0.257 0.29094,0.22712 0.13544,-0.0299 0.43665,-0.0107 0.69828,0.0505 0.0673,0.0157 0.1153,0.0127 0.17456,0.0252 9.54583,4.49494 19.20245,8.86574 28.36728,13.9302 3.62506,2.32683 1.51355,1.4541 8.35016,-2.22076 0.38313,-0.17202 0.81954,-0.362 0.93103,-0.47948 0.12002,-0.0616 0.22432,-0.11362 0.34914,-0.17665 0.11474,-0.0579 -0.18117,-0.16235 -0.29095,-0.22712 -0.35519,-0.20952 -0.73995,-0.41012 -1.1056,-0.60566 -0.60441,-0.32323 -1.23028,-0.63327 -1.83295,-0.95896 -0.82321,-0.44487 -1.62497,-0.88683 -2.44396,-1.33751 -5.66129,-3.11439 -11.28678,-6.29139 -16.78761,-9.61486 0.76161,-0.52679 1.51269,-1.05731 2.26939,-1.58986 0.6536,-0.31741 1.30453,-0.62823 1.94934,-0.95897 0.0195,-0.01 0.0241,-0.0459 0.029,-0.0505 -0.11583,0.0184 -0.54599,0.16421 -0.72737,0.15142 0.14603,-0.10053 0.28968,-0.20314 0.43642,-0.30283 -3.47724,-2.10392 -7.36678,-3.61055 -11.17234,-5.19859 -6.6008,-2.75443 -0.68302,-0.32618 -6.57539,-2.72548 -3.56553,-1.33209 -5.02341,-2.07975 -7.73917,0.75709 -0.0909,-0.0829 -0.17527,-0.16131 -0.26186,-0.25237 -0.29191,-0.30687 -0.65775,-0.55519 -0.81465,-0.55519 -0.15686,0 -0.3388,-0.12267 -0.40733,-0.27759 -0.0868,-0.19595 -0.24336,-0.2402 -0.5237,-0.17665 -0.30646,0.0693 -0.39042,0.0255 -0.32004,-0.17665 0.0513,-0.14753 0.26917,-0.26318 0.49461,-0.25236 0.22389,0.0107 0.40733,-0.0322 0.40733,-0.10094 0,-0.0687 -0.21163,-0.12618 -0.46552,-0.12618 -0.25392,0 -0.53111,-0.075 -0.61098,-0.15142 -0.0833,-0.0796 0.0211,-0.0984 0.23275,-0.0505 0.24255,0.055 0.37823,0.002 0.37823,-0.15142 0,-0.14056 -0.12616,-0.18634 -0.29095,-0.12617 -0.15067,0.055 -0.37942,-0.01 -0.5237,-0.12619 -0.14429,-0.1166 -0.46635,-0.20431 -0.72737,-0.20189 -1.49149,0.0151 -2.50214,-0.0698 -2.50214,-0.20188 1.09666,-0.47337 2.20484,-0.92298 3.3168,-1.36274 -0.0846,-0.26823 -0.0524,-0.59697 -0.26185,-0.80754 -0.21111,-0.21226 -0.56947,-0.25664 -0.87285,-0.35331 -0.59739,-0.19033 -1.22185,-0.35059 -1.83296,-0.50472 -1.49438,-0.37688 -2.99418,-0.72668 -4.50967,-1.03467 0.70085,-0.43527 1.39332,-0.89465 2.06572,-1.36273 0.18494,-0.12878 -0.43577,-0.14039 -0.66918,-0.17665 -0.53681,-0.0834 -1.08759,-0.12198 -1.6293,-0.17665 -3.08315,-0.3113 -6.16071,-0.54408 -9.2521,-0.78232 -2.59595,-0.11833 -5.20332,-0.25874 -7.79735,-0.40376 -4.77204,-0.69761 -9.57396,-1.32831 -14.37276,-1.86746 -0.77239,-0.0843 -1.55492,-0.16885 -2.32758,-0.25236 -1.11715,-0.11875 -2.22738,-0.24447 -3.34587,-0.3533 -5.65224,-0.59313 -11.31337,-1.14314 -16.99128,-1.48892 -1.0085,-0.0334 -2.01702,-0.0762 -3.02584,-0.10094 -0.80395,-0.0197 -1.66452,-0.27636 -2.41486,-0.0252 -1.80148,0.60291 -3.54208,1.30868 -5.26613,2.06935 -5.76844,-0.99061 -11.53582,-1.94383 -17.31131,-2.90213 0.92988,-0.56017 1.85239,-1.13459 2.76399,-1.71603 0.11244,-0.0717 -0.20995,-0.19293 -0.34914,-0.20189 -0.40191,-0.026 -0.79365,0.053 -1.19287,0.10094 -0.66724,0.0802 -1.34186,0.18828 -2.00754,0.2776 -1.55214,0.19596 -3.10213,0.38767 -4.65515,0.58042 -0.0759,-0.0145 -0.13078,-0.0113 -0.20365,-0.0252 0.15543,-0.15467 0.36427,-0.31682 0.64008,-0.50472 0.31421,-0.15279 0.45713,-0.2242 0.96012,-0.45424 0.258,-0.0643 0.51619,-0.0666 0.69828,-0.0252 0.83213,0.18869 1.45088,-0.26572 0.72736,-0.52995 -0.036,-0.0132 -0.058,-0.0337 -0.0872,-0.0505 0.0429,-0.0188 0.0724,-0.0313 0.11638,-0.0505 0.20507,-0.0547 0.4416,-0.13447 0.61098,-0.17664 0.22517,0.18935 0.31526,0.18174 0.32005,-0.0757 1.64885,-0.38627 1.47616,-0.223 2.153,-1.00943 0.0363,-0.0149 0.0507,-0.0355 0.0872,-0.0505 0.0227,-0.009 0.11709,-0.12808 0.17456,-0.17665 0.31027,-0.10705 0.60423,-0.36627 0.72736,-0.65613 0.003,-0.007 -0.003,-0.018 0,-0.0252 0.0266,-0.0256 0.10322,-0.089 0.11638,-0.10094 0.17667,-0.18487 0.34999,-0.36867 0.5237,-0.55519 0.0206,-0.004 0.0387,-0.0252 0.0582,-0.0252 0.23328,0 0.43641,-0.18066 0.43641,-0.40378 0,-0.0462 0.0245,-0.0961 0.0582,-0.15141 0.008,-0.009 0.0211,-0.0159 0.029,-0.0252 0.14446,-0.20526 0.48166,-0.44376 0.87284,-0.60566 0.52163,-0.21588 0.80669,-0.482 0.64008,-0.58043 -0.16658,-0.0984 0.0357,-0.25583 0.46552,-0.3533 0.42989,-0.0975 0.78555,-0.33353 0.78555,-0.52995 0,-0.19642 0.33493,-0.51417 0.72736,-0.7066 0.39243,-0.19246 0.69828,-0.59301 0.69828,-0.88326 0,-0.29025 0.23408,-0.52996 0.5237,-0.52996 0.28963,0 0.40648,-0.18109 0.26186,-0.40377 -0.1446,-0.22267 0.26203,-0.85606 0.90193,-1.41321 0.61379,-0.53442 1.01964,-1.22492 1.13469,-1.76651 0.86285,-0.56015 1.69611,-1.11563 2.47304,-1.71604 0.10831,-0.028 0.20566,-0.0505 0.29095,-0.0505 0.56622,0 1.25804,-0.7553 1.42563,-1.41321 0.30806,-0.28026 0.61137,-0.56538 0.90194,-0.85802 0.65406,0.0852 0.74601,0.025 0.34914,-0.22712 -0.0307,-0.0195 -0.0328,-0.0559 -0.0582,-0.0757 1.07345,-1.12085 2.03965,-2.33389 2.85128,-3.68443 0.43684,-0.32015 0.76607,-0.38286 1.33835,-0.20189 1.12408,0.35546 1.221,0.21242 1.19288,-1.86746 -0.0129,-0.95137 0.12381,-1.66149 0.32005,-1.58985 0.19623,0.0716 0.37822,0.30718 0.37822,0.52995 0,0.22276 0.20389,0.40377 0.46552,0.40377 0.26161,0 0.41459,-0.16006 0.34914,-0.3533 -0.0653,-0.19323 0.25888,-0.35169 0.69827,-0.3533 0.43938,-0.002 0.9418,-0.0879 1.13469,-0.20189 0.19285,-0.11397 0.10154,-0.22712 -0.20367,-0.22712 -0.30526,0 -0.55279,-0.36902 -0.55279,-0.83279 0,-0.69885 0.20375,-0.83278 1.13469,-0.83278 0.94163,0 1.06341,-0.11755 0.87284,-0.70661 -0.13272,-0.41018 0.01,-0.7066 0.32004,-0.7066 0.29214,0 0.52371,-0.30532 0.52371,-0.68136 0,-0.10417 0.0179,-0.21164 0.0582,-0.30283 3.38581,-1.65522 4.00953,-1.64791 5.87712,-3.00307 0.38698,-0.28081 0.89618,-0.57323 1.19288,-0.93373 0.0845,-0.10256 0.14315,-0.23875 0.20367,-0.3533 -0.0556,-0.15826 -0.0811,-0.33527 -0.17457,-0.47948 0.23538,-0.15017 0.5044,-0.32082 0.78555,-0.50472 5.74904,-1.34669 5.5158,-0.60383 5.90621,-3.40684 -0.1123,-2.90152 -0.38994,-5.81284 -0.66917,-8.70638 0.45391,-0.5655 0.91944,-1.12188 1.36745,-1.6908 0.1311,-0.20974 0.38888,-0.39285 0.40732,-0.6309 0.0153,-0.19772 -0.11006,-0.60804 -0.32004,-0.52995 -0.71137,0.2646 -1.07692,0.39142 -1.65839,0.60566 -0.21102,-2.19317 -0.42253,-4.38939 -0.5528,-6.58656 -0.34378,-4.19766 -0.6324,-8.38886 -0.84375,-12.5927 0.17176,-0.0648 0.35267,-0.11039 0.5237,-0.17665 0.12159,-0.047 -0.01,-0.23845 0,-0.35331 0.0301,-0.34704 0.0853,-0.68768 0.11638,-1.03466 0.19955,-2.22366 0.32589,-4.47218 0.64009,-6.68751 0.66449,-4.95957 1.4905,-9.89804 2.09481,-14.86391 l -0.93103,0.40377 c 0.23905,-1.23772 0.48814,-2.47018 0.84375,-3.68444 l -7.97194,3.35637 c -0.0212,0.16088 -0.0651,0.3187 -0.0872,0.47949 -0.4341,0.21244 -0.85193,0.45945 -1.28016,0.68136 -0.0986,-0.16053 -0.21327,-0.26606 -0.32005,-0.25236 1.21952,-0.93636 4.71229,-3.00307 5.20794,-3.00307 0.32603,0 0.47011,-0.10889 0.32004,-0.25235 -0.15007,-0.14346 0.14211,-0.3554 0.66918,-0.45425 0.52707,-0.0988 0.96013,-0.29352 0.96013,-0.45425 0,-0.16074 0.30249,-0.23455 0.66917,-0.15141 0.3946,0.0895 0.7617,-0.0617 0.90194,-0.37854 0.1108,-0.250385 0.16527,-0.388137 0.029,-0.403772 z M 513.5269,216.11318 c -3.28635,2.47928 -1.04328,1.43285 0,0 z M 461.76753,108.70934 c -0.19712,0.24431 -0.39183,0.48156 -0.58189,0.78231 -0.4955,0.89765 -1.41286,2.30228 -0.98922,3.38161 -0.0115,0.053 -0.019,0.1131 -0.029,0.17665 -0.53192,0.23733 -1.06367,0.47818 -1.60021,0.7066 0.0204,0.0724 0.0396,0.15335 0.0582,0.22712 -0.007,0.004 -0.0222,-0.004 -0.029,0 -0.16461,0.0914 0.0632,0.30421 0.14547,0.47949 0.14286,0.70637 0.21099,1.4389 0.32003,2.11981 0.0511,0.31905 0.0962,0.63968 0.14549,0.95896 -0.15573,0.0203 -0.34011,0.0252 -0.5819,0.0252 -0.73369,0 -1.20643,-0.21664 -1.36745,-0.58043 -0.42302,-0.95587 -1.06339,-0.59737 -1.19289,0.65614 -0.0897,0.86893 0.005,1.06386 0.34914,0.75708 0.41131,-0.3668 0.4881,-0.35026 0.49462,0.0505 0.004,0.3025 0.56499,0.5097 1.65839,0.6309 0.32996,0.0366 0.64247,0.0933 0.90193,0.15141 0.0233,0.16036 0.0644,0.31908 0.0872,0.47949 -0.8619,-0.13474 -2.15301,0.34087 -2.15301,0.80755 0,0.22645 0.20386,0.40376 0.46551,0.40376 0.26161,0 0.50303,0.23419 0.5237,0.50472 0.0225,0.29385 0.11851,0.33607 0.26186,0.12619 0.47433,-0.69457 1.10559,-0.30819 1.10559,0.65613 0,0.68706 -0.19992,0.98419 -0.69827,0.98419 -0.39246,0 -0.72737,0.11387 -0.72737,0.2776 0,0.16367 0.23299,0.22172 0.49461,0.12617 0.59417,-0.21693 0.57954,0.0425 0,1.23656 -0.35366,0.72865 -0.27906,1.04312 0.26186,1.36274 0.72556,0.42871 0.45982,1.04186 -0.32004,0.75707 -0.24353,-0.0889 -0.43643,0.15961 -0.43643,0.5552 0,0.3956 -0.25486,0.72942 -0.58189,0.73184 -0.40242,0.003 -0.38656,0.10052 0.0872,0.27759 0.59531,0.22244 0.58482,0.28866 -0.14547,0.45425 -0.62292,0.14124 -0.68596,0.24888 -0.26185,0.40378 0.3217,0.11746 0.42895,0.42408 0.26185,0.68136 -0.17504,0.26979 -0.52118,0.37016 -0.84374,0.25236 -0.37446,-0.13674 -0.48786,-0.0508 -0.29095,0.25236 0.19472,0.29983 -0.0224,0.51503 -0.64009,0.63089 -0.5137,0.0963 -0.79672,0.30451 -0.64008,0.45425 0.15664,0.14973 0.69163,0.19494 1.19288,0.10094 1.03139,-0.19342 1.33256,0.56615 0.32004,0.80755 -0.32704,0.078 -0.17414,0.13906 0.34913,0.15142 0.65984,0.0155 0.97224,0.23376 1.01832,0.7066 0.0463,0.47575 -0.12062,0.63454 -0.58189,0.52995 -0.40125,-0.091 -0.66918,0.0438 -0.66918,0.32807 0,0.25758 0.233,0.39837 0.49461,0.30283 0.26165,-0.0955 0.46179,-0.0257 0.46551,0.17665 0.005,0.27152 0.13893,0.25465 0.46552,-0.0505 0.24092,-0.22509 0.43276,-0.284 0.61099,-0.22712 0.0129,0.0428 0.0455,0.0833 0.0582,0.12618 0.0692,0.26661 0.13226,0.51614 0.20366,0.78231 0.0901,0.33567 0.17465,0.67333 0.26186,1.00944 0.0136,0.0581 0.0157,0.11855 0.029,0.17665 -0.0288,-0.003 -0.0527,0.0126 -0.0872,0 -0.27273,-0.0996 -0.61499,0.0841 -0.75646,0.40377 -0.17694,0.39978 -0.0435,0.54986 0.37823,0.45425 0.45053,-0.10217 0.59209,0.19709 0.5528,1.16085 -0.0294,0.72124 -0.22375,1.47123 -0.43642,1.66556 -0.24153,0.22071 -0.11544,0.42462 0.34913,0.52996 0.40902,0.0927 0.75274,0.42579 0.75646,0.75707 0.004,0.33129 0.19265,0.80686 0.43643,1.03467 0.0731,0.0682 0.14336,0.1158 0.17456,0.17666 0.0156,0.0467 0.0269,0.11515 0.029,0.15141 -5.6e-4,0.007 0.002,0.0178 0,0.0252 -3.6e-4,0.011 -0.0274,0.0151 -0.029,0.0252 -0.0341,0.0925 -0.12198,0.1876 -0.29094,0.25236 -0.42791,0.16395 -0.39673,0.2844 0.11638,0.47948 0.14267,0.0542 0.24724,0.10409 0.32004,0.15142 0.009,0.007 0.0208,0.0183 0.029,0.0252 -0.005,0.0869 0.009,0.18529 0.029,0.22713 -0.0577,0.0795 -0.14939,0.18131 -0.32004,0.30283 -0.34759,0.2474 -0.50802,0.51177 -0.34914,0.60566 0.0794,0.0469 0.0983,0.16981 0.0582,0.30283 -0.003,0.01 -0.0261,0.0155 -0.029,0.0252 -0.0447,0.12661 -0.13211,0.26052 -0.26185,0.40378 -0.18811,0.20767 -0.3267,0.34543 -0.46552,0.37854 -0.0459,0.006 -0.13128,-0.008 -0.20366,-0.0252 -0.0658,-0.025 -0.13553,-0.061 -0.20367,-0.12617 -0.20325,-0.19434 -0.64209,-0.29553 -0.98921,-0.22713 -0.38695,0.0762 0.0879,0.40266 1.22197,0.85803 0.69222,0.27792 1.10524,0.4887 1.28017,0.63089 0.007,0.007 0.0552,0.0198 0.0582,0.0252 0.0144,0.0161 0.022,0.0358 0.029,0.0505 0.002,0.0501 -0.0668,0.11444 -0.14547,0.17664 -0.0334,0.0115 -0.0719,0.0151 -0.11638,0.0252 -0.62657,0.14206 -0.73464,0.57962 -0.43642,1.6151 0.0334,0.11594 0.364,0.20188 0.75646,0.20188 0.39243,0 0.72737,0.13912 0.72737,0.30284 0,0.16373 -0.19237,0.2299 -0.40732,0.15141 -0.21497,-0.0785 -0.73466,0.10765 -1.16379,0.40377 -0.70098,0.48378 -0.71353,0.57175 -0.0582,0.95896 0.16383,0.0968 0.29955,0.16848 0.37823,0.22713 0.0786,0.0781 0.108,0.13163 0.0872,0.15142 -0.0415,0.0396 -0.29502,0.0757 -0.5528,0.0757 -0.0125,9e-5 -0.0162,-7e-5 -0.029,0 -0.69233,0.003 -0.73932,0.052 -0.20367,0.25236 0.36875,0.13791 0.92676,0.17443 1.25107,0.10094 0.0811,-0.0184 0.17415,-0.0258 0.26185,-0.0252 0.0376,4.9e-4 0.0816,-0.002 0.11638,0 0.22386,0.0208 0.43335,0.11291 0.5528,0.22713 0.46825,0.44767 0.61346,2.52123 0.32004,3.53302 -0.0302,0.0977 -0.0692,0.18343 -0.11638,0.2776 -0.0119,0.0225 -0.0163,0.0558 -0.029,0.0757 -0.0104,0.0189 -0.0468,0.0313 -0.0582,0.0505 -0.16245,0.23394 -0.48958,0.62027 -0.93103,1.05991 -0.12392,0.0859 -0.25618,0.16448 -0.37823,0.25236 -0.12266,0.0866 -0.29257,0.19061 -0.17457,0.27759 -0.48423,0.46076 -1.02304,0.93202 -1.57111,1.41321 0.8261,-2.26667 1.59917,-4.54749 2.32757,-6.83892 l -8.03013,3.33114 c -0.58265,2.42876 -1.44833,4.80896 -2.32756,7.16698 -0.68763,1.87969 -0.2249,0.58547 -0.81465,2.42265 -0.10627,0.33102 -0.32434,0.81484 -0.34914,1.26179 -0.2832,0.20926 -0.60888,0.4102 -0.96012,0.60566 -1.04657,0.58237 -1.89116,1.26427 -1.89116,1.51415 0,0.0749 -0.0274,0.13939 -0.0582,0.20189 -0.0665,0.0881 -0.15823,0.17894 -0.26186,0.22711 -0.0368,0.0109 -0.0763,0.0252 -0.11637,0.0252 -0.23718,0 -0.33463,0.23401 -0.20367,0.52996 0.0349,0.079 0.0696,0.15344 0.0582,0.22712 -5.6e-4,0.009 -0.0282,0.0168 -0.029,0.0252 -0.11798,0.49993 -1.24314,0.8589 -2.56033,0.73183 -0.78179,-0.0754 -0.95326,0.0248 -0.78556,0.40378 -5.6e-4,0.0176 0,0.0325 0,0.0505 0.012,0.0644 0.007,0.1364 -0.029,0.22713 -0.003,0.009 -0.0263,0.016 -0.029,0.0252 -0.14965,0.33932 -0.57998,0.83134 -1.19287,1.28703 -1.20741,0.89774 -1.51985,1.35195 -1.01831,1.6151 -0.13236,0.094 -0.24597,0.20879 -0.37824,0.30283 -0.36006,-0.0486 -0.44967,-0.0119 -0.29094,0.20188 -1.93518,1.37761 -3.86576,2.77037 -5.76074,4.18916 -0.76599,0.5735 -1.32195,1.00204 -1.94935,1.48892 0.0981,-0.28551 -0.063,-0.58609 -0.0872,-0.88325 -0.32061,-0.20642 -0.57602,-0.53633 -0.96012,-0.63091 -2.01244,-0.4955 -6.36575,1.78872 -8.08831,2.64977 -0.0316,-0.03 -0.0817,-0.0505 -0.14548,-0.0505 -0.0981,0 -0.17457,0.0431 -0.17457,0.10095 0,0.0358 -0.0408,0.0566 -0.0872,0.0757 -0.004,-0.10064 -0.0426,-0.24287 -0.0872,-0.37853 0.10638,0 0.21996,-0.10349 0.26185,-0.22713 0.0392,-0.11594 0.14282,-0.20188 0.23276,-0.20188 0.09,0 0.17456,-0.0431 0.17456,-0.10095 0,-0.058 0.0509,-0.12617 0.11638,-0.12617 0.0653,0 0.11638,-0.0457 0.11638,-0.10095 0,-0.0553 0.11468,-0.10946 0.26185,-0.12618 0.1935,-0.022 0.16311,-0.0179 -0.11638,-0.0252 -0.40267,-0.01 -0.51171,-0.1068 -0.20366,-0.17665 0.27155,-0.0615 0.20162,-0.25236 -0.0872,-0.25236 -0.17836,0 -0.22633,-0.0465 -0.17457,-0.12618 0.0394,-0.0611 0.0872,-0.19005 0.0872,-0.30282 0,-0.11279 0.0509,-0.20189 0.11638,-0.20189 0.0653,0 0.11638,0.0431 0.11638,0.10094 0,0.0737 0.11666,0.10095 0.40733,0.10095 0.63013,0 0.54003,-0.17399 -0.11638,-0.22713 -0.29281,-0.0232 -0.62772,-0.0226 -0.72737,0 -0.12692,0.0288 -0.17457,-0.0225 -0.17457,-0.12618 0,-0.0814 0.0509,-0.15141 0.11638,-0.15141 0.0653,0 0.11638,-0.043 0.11638,-0.10095 0,-0.058 0.10555,-0.10094 0.20366,-0.10094 0.0981,0 0.17457,-0.0429 0.17457,-0.10095 0,-0.0585 0.10063,-0.10094 0.23276,-0.10094 0.13212,0 0.23275,-0.0424 0.23275,-0.10095 0,-0.0736 -0.11662,-0.12617 -0.40732,-0.12617 -0.44457,0 -0.47814,-0.0227 -0.34914,-0.40378 0.0408,-0.12078 0.12509,-0.22712 0.20367,-0.22712 0.0906,0 0.1498,-0.0674 0.11637,-0.20189 -0.0288,-0.11595 -0.11656,-0.20188 -0.17456,-0.20188 -0.13363,0 -0.13408,-0.70043 0,-0.73184 0.055,-0.0129 0.13304,-0.12677 0.17456,-0.25236 0.0645,-0.19559 0.0557,-0.22713 -0.14547,-0.22713 -0.099,0 -0.16971,-0.006 -0.20366,-0.0505 0.18096,-0.41318 0.32303,-0.82389 0.37823,-1.21132 0.0304,-0.002 0.0501,4.9e-4 0.0872,0 0.28005,-0.007 0.31873,-0.0274 0.11638,-0.0505 -0.0993,-0.0113 -0.16204,-0.009 -0.20366,-0.0252 0.004,-0.0346 0.0266,-0.0668 0.029,-0.10094 0.0667,-0.0227 0.16634,-0.0334 0.32003,-0.0505 0.24917,-0.0276 0.40733,-0.0902 0.40733,-0.15142 0,-0.0563 0.0764,-0.10094 0.17456,-0.10094 0.0982,0 0.20367,-0.0682 0.20367,-0.12618 0,-0.058 0.0764,-0.10095 0.17457,-0.10095 0.0981,0 0.17457,-0.043 0.17457,-0.10094 0,-0.0829 -0.17772,-0.10094 -0.78556,-0.10094 l -0.75646,0 0,-0.20189 c 0,-0.16396 0.0477,-0.22712 0.23275,-0.22712 0.13213,0 0.23276,0.0424 0.23276,0.10094 0,0.058 0.0764,0.12618 0.17457,0.12618 0.0991,0 0.17457,-0.0733 0.17457,-0.15141 0,-0.1197 0.0969,-0.15142 0.5528,-0.15142 0.51521,0 0.5237,4.9e-4 0.5237,-0.20189 0,-0.20273 -0.008,-0.20188 -0.5237,-0.20188 -0.51521,0 -0.5528,-0.0242 -0.5528,-0.22713 0,-0.14054 -0.0557,-0.20189 -0.17457,-0.20189 -0.0981,0 -0.17457,-0.0429 -0.17457,-0.10094 0,-0.058 -0.0764,-0.10094 -0.17457,-0.10094 -0.11896,0 -0.17456,0.0614 -0.17456,0.20188 0,0.14056 0.0557,0.20189 0.17456,0.20189 0.0991,0 0.17457,0.0733 0.17457,0.15142 0,0.1218 0.0666,0.15141 0.5819,0.15141 0.32703,0 0.61099,0.0119 0.61099,0.0505 0,0.0387 -0.28396,0.0757 -0.61099,0.0757 -0.44927,0 -0.5819,0.0213 -0.5819,0.10095 0,0.0709 -0.13049,0.10094 -0.37822,0.10094 -0.18418,0 -0.28189,0.0312 -0.34914,0.0757 -0.0876,-0.0975 -0.18127,-0.17684 -0.26185,-0.27759 -0.59908,-0.0578 -1.24696,0.0203 -1.92025,0.17665 -0.17357,-0.19008 -0.33975,-0.37405 -0.5528,-0.60566 -0.74299,-0.54176 -1.54926,-1.0074 -2.38576,-1.41321 1.21028,-0.57681 2.41299,-1.16344 3.54955,-1.84222 0.24449,-0.14601 -0.0326,-0.53094 -0.17457,-0.75707 -0.41103,-0.65478 -3.86108,-0.72892 -4.74243,-0.83279 0.0731,-0.0156 0.0872,-0.0582 0.0872,-0.12617 0,-0.0862 0.0719,-0.15142 0.17457,-0.15142 0.0991,0 0.17456,0.0733 0.17456,0.15142 0,0.0781 0.0755,0.12617 0.17457,0.12617 0.0981,0 0.17457,-0.0478 0.17457,-0.10094 0,-0.0532 0.18203,-0.10301 0.37824,-0.12618 0.32686,-0.0386 0.52379,-0.25236 0.23274,-0.25236 -0.0653,0 -0.11638,-0.043 -0.11638,-0.10094 0,-0.0585 -0.10062,-0.12618 -0.23274,-0.12618 -0.13213,0 -0.26186,-0.0424 -0.26186,-0.10095 0,-0.0702 -0.11127,-0.10094 -0.34914,-0.10094 -0.23782,0 -0.34913,0.0306 -0.34913,0.10094 0,0.058 0.0764,0.10095 0.17457,0.10095 0.0991,0 0.17456,0.0733 0.17456,0.15141 0,0.11373 -0.0704,0.15142 -0.40732,0.15142 l -0.43642,0 0,-0.35331 c 0,-0.38783 -0.16832,-0.4813 -0.29095,-0.15141 -0.0805,0.21671 -0.29094,0.2891 -0.29094,0.10094 0,-0.0585 -0.10064,-0.10094 -0.23276,-0.10094 -0.13212,0 -0.23276,-0.0424 -0.23276,-0.10094 0,-0.058 -0.0764,-0.10095 -0.17457,-0.10095 -0.13212,0 -0.20365,0.0686 -0.20365,0.30283 0,0.3146 0.0224,0.32807 0.43641,0.32807 0.3369,0 0.40733,0.0125 0.40733,0.12618 0,0.0937 -0.0742,0.15141 -0.23276,0.15141 -0.13082,0 -0.23276,0.0372 -0.23276,0.0757 0,0.0115 0.0163,0.0156 0.029,0.0252 -0.51362,-0.0385 -1.02774,-0.0641 -1.54202,-0.10095 -0.86979,-0.69249 -2.17634,-0.53279 -3.34588,-0.2776 -1.30655,-0.11354 -2.60603,-0.26715 -3.89868,-0.45424 -0.78506,-1.43328 -4.55024,-0.92643 -5.78983,-0.95896 -2.16544,0.12939 -4.32192,0.27396 -6.48811,0.42901 -0.39286,-0.39467 -0.90979,-0.86909 -1.6293,-1.56462 -0.008,-0.006 -1.23603,-0.97641 -1.28017,-0.95896 -0.0222,0.009 -0.0361,0.0165 -0.0582,0.0252 -1.35711,-1.17162 -2.7413,-2.31569 -4.16054,-3.43207 -0.53241,-0.85599 -1.11563,-1.69296 -1.71658,-2.17029 -0.1979,-0.15719 -0.44461,-0.25115 -0.66918,-0.37854 -0.24035,0.12127 -0.48604,0.23342 -0.72737,0.35331 -0.609,-0.34182 -1.25817,-0.60143 -1.97843,-0.70661 -0.9515,-0.13896 -1.4363,-0.0308 -2.38576,0.0757 -0.471,0.10513 -0.95344,0.20258 -1.42564,0.30283 -0.54433,-0.60882 -1.11835,-1.19724 -1.71658,-1.76651 1.15867,-0.59397 2.32688,-1.1815 3.49136,-1.76651 -0.0578,-0.32492 0.0536,-1.07044 -0.5819,-1.16084 -0.29454,-0.0419 -1.85987,0.4685 -1.89115,0.47948 -1.26919,0.44545 -2.69883,1.09892 -4.13144,1.79174 -2.21466,0.6401 -4.44626,1.26029 -6.66267,1.89269 -2.43956,0.76667 -4.62857,1.70044 -6.74996,2.87689 -0.0394,-0.0149 -0.0718,-0.0286 -0.11638,-0.0505 -0.21208,-0.10398 -0.62428,-0.12569 -1.04741,-0.0757 -0.58678,0.0694 -0.72736,0.0376 -0.72736,-0.17666 0,-0.26046 -0.31676,-0.48033 -0.81466,-0.58042 0.45919,-0.81858 0.9128,-1.68988 0.72737,-2.59929 -0.76217,-0.99256 -1.56595,-1.2798 -2.32757,-1.11038 0.0748,-0.10566 0.13234,-0.24427 0.17457,-0.37854 0.31841,-1.01231 0.55593,-1.38797 0.84375,-1.38797 0.12198,0 0.20365,-0.15301 0.20365,-0.32807 0,-0.17507 0.22925,-0.56549 0.49461,-0.85802 0.26537,-0.29253 0.40942,-0.59595 0.32005,-0.68137 -0.098,-0.0937 -0.0493,-0.11096 0.11637,-0.0505 0.15652,0.0572 0.26186,0.009 0.26186,-0.10094 0,-0.10594 0.23295,-0.31355 0.4946,-0.47948 0.26162,-0.16594 0.46552,-0.37373 0.46552,-0.45425 0,-0.0805 0.15617,-0.15141 0.34913,-0.15141 0.26294,0 0.31064,-0.113 0.20367,-0.42901 -0.0881,-0.26019 -0.0422,-0.40378 0.11638,-0.40378 0.14124,0 0.31943,-0.22801 0.40732,-0.50471 0.004,-0.011 0.0252,-0.0143 0.029,-0.0252 0.62946,-0.40199 1.21366,-0.88243 1.74569,-1.33751 0.0994,0.39835 0.35733,0.69024 0.61098,0.58043 4.11564,-1.78183 7.28509,-3.32676 10.47407,-5.70331 2.75577,-0.93604 5.49197,-1.92659 8.29197,-2.7507 0.2605,-0.0761 0.56213,-0.0883 0.78557,-0.22713 0.011,-0.006 0.0181,-0.0184 0.029,-0.0252 0.11674,-0.0326 0.23212,-0.069 0.34913,-0.10094 11.22285,-6.85185 8.19947,-5.08514 4.56786,-3.98726 -1.65325,0.49979 -3.31449,0.95777 -4.97518,1.43844 -0.64222,0.10093 -1.96033,0.59678 -3.20041,0.93373 0.5794,-0.52436 1.22859,-1.15033 1.39654,-1.89269 0.0394,-0.0163 0.0758,-0.0376 0.11638,-0.0505 0.31818,-0.10062 0.65102,-0.2868 0.72737,-0.42901 0.0763,-0.14221 0.24531,-0.25236 0.37823,-0.25236 0.13297,0 0.19947,-0.081 0.14547,-0.17665 -0.0539,-0.0957 0.30252,-0.3992 0.81465,-0.68137 0.59344,-0.32693 0.8398,-0.56856 0.66917,-0.6309 -0.14909,-0.0544 -0.48102,0.0707 -0.75646,0.2776 -0.26118,0.19619 -0.62683,0.32837 -0.81465,0.30283 0.52007,-0.32429 1.04259,-0.64412 1.57111,-0.95896 0.0134,0.17263 0.0739,0.30283 0.14548,0.30283 0.21518,0 1.01831,-0.5801 1.01831,-0.73185 0,-0.0701 0.0926,-0.091 0.20367,-0.0505 0.11099,0.0405 0.42231,-0.05 0.69827,-0.20188 0.27596,-0.15191 0.60335,-0.27759 0.72737,-0.27759 0.12405,0 0.1848,-0.12301 0.11637,-0.2776 -0.0865,-0.19547 -0.005,-0.27759 0.26185,-0.27759 0.36484,0 0.4365,-0.12569 0.37823,-0.52996 0.16117,-0.0884 0.33302,-0.16454 0.49461,-0.25236 0.13012,2.9e-4 0.23276,-0.0318 0.23276,-0.12618 0.10701,-0.0579 0.21287,-0.11897 0.32004,-0.17665 0.0486,-0.007 0.0912,-0.0252 0.14547,-0.0252 0.30384,0 0.515,-0.12734 0.61099,-0.35331 0.014,-0.033 0.0397,-0.0478 0.0582,-0.0757 0.12605,-0.0669 0.252,-0.13521 0.37823,-0.20188 0.0884,0.024 0.10654,0.0139 0.0872,-0.0505 0.23024,-0.12147 0.46752,-0.23272 0.69827,-0.35331 0.086,-2.4e-4 0.15833,-0.002 0.26185,0 0.16354,0.003 0.29095,-0.10442 0.29095,-0.25235 0,-0.009 -5.6e-4,-0.0167 0,-0.0252 0.20537,-0.10663 0.40535,-0.22203 0.61099,-0.32807 0.0303,-0.004 0.0546,0.004 0.0872,0 0.39243,-0.0463 0.72737,-0.17632 0.72737,-0.27759 0,-0.10129 0.38246,-0.25476 0.84374,-0.3533 0.51408,-0.10984 0.77043,-0.26747 0.69827,-0.37855 -0.0774,-0.11916 0.1275,-0.16938 0.5528,-0.17665 0.35582,-0.006 0.49837,-0.059 0.32004,-0.10094 -0.61005,-0.14335 0.20905,-0.29901 0.93103,-0.17665 0.6428,0.10897 1.24589,-0.0574 0.64008,-0.17665 -0.19502,-0.0385 -0.10633,-0.19921 0.26186,-0.50472 0.0112,-0.009 0.0178,-0.0161 0.029,-0.0252 0.0688,-0.0245 0.13507,-0.0509 0.20366,-0.0757 0.2798,-0.0788 0.56407,-0.14791 0.84374,-0.22712 0.31593,-0.0895 3.01884,-0.80404 3.52045,-1.08514 0.0804,-0.0451 0.15267,-0.10586 0.23276,-0.15142 2.9251,-0.92348 5.8493,-1.81473 8.78658,-2.70024 4.0515,-1.28539 6.20815,-1.93664 10.06675,-3.25542 0.92824,-0.31726 1.91126,-0.53768 2.76399,-0.9842 0.27125,-0.0548 0.82926,-0.16973 0.98922,-0.20189 10.25905,-2.0647 20.49426,-4.24298 30.66576,-6.6118 2.53746,-1.15892 5.18505,-2.16137 7.68098,-3.3816 z m -19.11518,3.12925 c -2.38399,0.5097 -4.76585,1.00757 -7.15728,1.48891 0.0841,-0.0462 0.16759,-0.1006 0.23276,-0.20189 0.159,-0.24724 0.35196,-0.31769 0.64008,-0.25235 0.27278,0.0618 0.34904,0.0354 0.23275,-0.0757 -0.11903,-0.11378 0.0834,-0.17665 0.66918,-0.17665 0.59387,0 0.84375,-0.054 0.84375,-0.20189 0,-0.01 -0.003,-0.016 0,-0.0252 1.51625,-0.19045 3.02028,-0.37845 4.53876,-0.55519 z m -8.1465,1.03467 c -0.0786,0.0886 -0.33722,0.20354 -0.66918,0.27759 -0.37655,0.084 -0.58204,0.0911 -0.72737,0.0505 0.1722,-0.0863 0.22454,-0.11063 0.40734,-0.20189 0.32933,-0.0451 0.65971,-0.0819 0.98921,-0.12618 z m 0.37823,0.50472 c 0.066,-0.0125 0.16166,-0.0227 0.26185,0 0.0294,0.006 0.0592,-0.002 0.0872,0 -0.1654,0.0332 -0.32919,0.0678 -0.49461,0.10094 0.0107,-0.01 0.029,-0.0133 0.029,-0.0252 0,-0.0416 0.0504,-0.0632 0.11638,-0.0757 z m -1.77478,0.12617 c 0.15851,-0.0138 0.41002,-5.8e-4 0.72737,0.0252 0.25163,0.0208 0.42587,0.0305 0.58189,0.0252 -1.08913,0.21762 -2.16873,0.44245 -3.25859,0.65614 0.0808,-0.0413 0.17754,-0.0833 0.26184,-0.12618 0.17801,-0.0504 0.34536,-0.10017 0.49462,-0.17666 0.29855,-0.153 0.6425,-0.24347 0.75646,-0.20188 0.11392,0.0416 0.20366,-0.0122 0.20366,-0.10095 0,-0.0538 0.0742,-0.0872 0.23275,-0.10094 z m -16.8167,2.80119 c -0.63214,0.18798 -1.42062,0.39479 -2.24029,0.63089 0.004,-0.0126 0.0217,-0.0131 0.029,-0.0252 0.73616,-0.20418 1.47494,-0.40198 2.21119,-0.60566 z m -2.44395,0.68136 c 0.008,0.006 0.0217,0.021 0.029,0.0252 -0.13872,0.0398 -0.23811,0.061 -0.37822,0.10095 0.0404,-0.0225 0.0765,-0.0526 0.11638,-0.0757 0.0761,-0.0211 0.15672,-0.0294 0.23275,-0.0505 z m 44.573,0.93373 c 0.11136,-0.0152 0.24785,-0.006 0.37823,0 0.22659,0.0101 0.36035,0.0226 0.46551,0.0505 0.0129,0.0848 0.0454,0.16755 0.0582,0.25236 -0.0348,0.0323 -0.0614,0.0618 -0.11638,0.10094 -0.67628,0.48147 -1.33836,0.45175 -1.33836,-0.0505 0,-0.17051 0.21871,-0.3078 0.5528,-0.3533 z m -62.23344,1.26179 c -0.52612,0.32935 -0.9393,0.67314 -1.25108,1.00944 -0.18681,0.0934 -0.40244,0.19171 -0.5237,0.25235 -0.42811,0.21344 -0.62313,0.29587 -1.19288,0.58043 -0.0905,-0.088 -0.22403,-0.14495 -0.34914,-0.17665 -0.24423,-0.0619 -0.50272,0.0339 -0.75646,0.0505 -0.0571,0.0115 -0.1177,0.0131 -0.17457,0.0252 -0.0124,-0.0224 -0.0137,-0.0533 -0.029,-0.0757 1.11229,-0.46126 2.237,-0.92957 3.37498,-1.3375 0.30429,-0.10909 0.59694,-0.22106 0.90194,-0.32807 z m -6.60449,2.06934 c 0.26195,-0.10695 -0.37634,0.3291 -0.72737,0.60567 -1.07225,0.40336 -2.12407,0.85708 -3.17132,1.31226 1.27981,-0.67533 2.54498,-1.36527 3.89869,-1.91793 z m 6.22625,1.6908 c 0.0514,0.0675 0.0926,0.13361 0.14548,0.20189 -1.10438,0.35532 -2.19,0.71655 -3.3168,1.00944 0.0397,-0.0233 0.0766,-0.0525 0.11638,-0.0757 0.078,-0.0319 0.155,-0.0689 0.23276,-0.10095 0.93007,-0.36342 1.87059,-0.71104 2.82218,-1.03466 z m -10.61954,1.84222 c -0.0946,0.0782 -0.19637,0.14888 -0.29095,0.22713 -0.32924,0.27239 -0.33834,0.2753 -0.5237,0.42901 -0.15436,0.0518 -0.31083,0.10028 -0.46552,0.15141 -0.0951,0.0796 -0.19428,0.14901 -0.29094,0.22713 -0.1757,0.0699 -0.28483,0.22403 -0.43643,0.32806 -0.0924,0.0635 -0.19744,0.11398 -0.29094,0.17666 -1.30602,0.39632 -2.61151,0.78044 -3.95687,1.0599 -0.0712,0.0148 -0.15594,0.035 -0.23276,0.0505 0.1663,-0.0724 0.32759,-0.15602 0.49461,-0.22712 1.27934,-0.53 2.52735,-1.08422 3.8114,-1.6151 l -1.0765,0.75708 c 1.07853,-0.53589 2.16383,-1.05403 3.2586,-1.56463 z m 75.15146,1.23656 c 0.12325,1.16952 0.22677,2.33603 0.34914,3.50779 0.022,0.53896 0.0493,1.07705 0.0872,1.61509 -0.0972,-0.0862 -0.26272,-0.18927 -0.5528,-0.32806 -0.9592,-0.45893 -1.04988,-0.62178 -0.5819,-1.33751 0.40477,-0.61906 0.6117,-1.67645 0.69827,-3.45731 z m -81.08677,3.20496 c -0.12329,0.0954 -0.25506,0.18204 -0.37823,0.2776 -0.12995,-0.0429 -0.0902,-0.0904 0.0872,-0.20189 0.0959,-0.0278 0.19499,-0.0483 0.29095,-0.0757 z m -1.13469,0.32806 c -0.14767,0.0912 -0.39278,0.27306 -0.5819,0.42902 -0.52761,0.10085 -1.08677,0.19137 -1.48382,0.15141 0.68673,-0.18742 1.38422,-0.37887 2.06572,-0.58043 z m 0.4946,0.15142 c -0.0408,0.0318 -0.0757,0.0691 -0.11638,0.10094 -0.12999,0.0234 -0.31562,0.0638 -0.4946,0.10094 0.16408,-0.0905 0.37465,-0.16467 0.61098,-0.20188 z m 82.16328,1.58986 c 0.008,0.10926 0.0183,0.21901 0.029,0.32807 -0.0126,0.0276 -0.0213,0.0346 0,0.0252 0.002,0.0167 -0.002,0.0338 0,0.0505 0.0268,-0.0119 0.0604,-0.0135 0.0872,-0.0252 0.019,0.20154 0.0399,0.40408 0.0582,0.60567 -0.31119,0.13938 -0.61894,0.29152 -0.93103,0.42901 0.033,-1.001 0.17219,-1.38798 0.61099,-1.38798 0.0753,0 0.1072,-0.013 0.14547,-0.0252 z m -2.61851,0.42901 c 0.0578,-4.9e-4 0.13718,4.9e-4 0.20366,0.0252 0.26588,0.0971 0.35421,0.31034 0.20366,0.45424 -0.40778,0.38986 -0.69827,0.31707 -0.69827,-0.17665 0,-0.1808 0.11758,-0.2994 0.29095,-0.30283 z m -74.22044,1.66557 c -0.0553,0.0507 -0.15482,0.121 -0.17457,0.15141 -0.10013,0.15416 -0.1604,0.19012 -0.26185,0.12618 0.14939,-0.0883 0.28644,-0.19 0.43642,-0.27759 z m -3.31679,0.20188 c 0.009,0.009 0.0194,0.0171 0.029,0.0252 -0.61991,0.33428 -1.24777,0.66734 -1.86206,1.00943 0.60455,-0.35211 1.22565,-0.68607 1.83296,-1.03467 z m 0.64008,1.38798 c -0.002,0.019 0,0.0289 0,0.0505 0,0.18255 -0.15095,0.38412 -0.34914,0.42901 -0.17934,0.0407 -0.41383,0.19823 -0.5528,0.37854 -0.0156,-0.0589 -0.0259,-0.12272 -0.0582,-0.17665 5.6e-4,-0.0163 -4.9e-4,-0.0341 0,-0.0505 0.32175,-0.20936 0.63452,-0.42569 0.96012,-0.63089 z m -14.43094,3.17972 c -0.1827,0.0619 -0.37038,0.11408 -0.5528,0.17665 0.0678,-0.0518 0.13661,-0.0988 0.20366,-0.15142 0.11779,-0.0113 0.23259,-0.008 0.34914,-0.0252 z m -4.01506,0.30282 c 0.10787,0.0222 0.17721,0.0532 0.14547,0.0757 -0.0777,0.0553 -0.21172,0.022 -0.29095,0.0757 -0.39636,0.26826 -0.68108,0.66028 -1.0474,0.95896 -0.26354,0.21488 -0.53972,0.40181 -0.81465,0.60566 -0.12954,0.10713 -0.27236,0.20101 -0.40733,0.30283 -0.46416,0.17798 -0.93413,0.34854 -1.39654,0.52996 -1.07479,0.51207 -2.1533,1.02955 -3.22951,1.53939 0.009,-0.35353 0.55338,-0.8298 0.98922,-0.83279 0.3031,-0.002 0.31256,-0.0202 0.029,-0.12618 -0.28532,-0.10671 -0.29229,-0.16342 0.029,-0.3533 0.20808,-0.12296 0.52129,-0.22712 0.66917,-0.22712 0.14786,0 0.1972,-0.0489 0.11638,-0.12618 -0.0808,-0.0773 0.0507,-0.15142 0.32004,-0.15142 0.2721,0 0.49461,-0.0872 0.49461,-0.20189 0,-0.13446 0.15026,-0.1844 0.40733,-0.12617 0.33064,0.0749 0.35361,0.029 0.23275,-0.32807 -0.12117,-0.35793 -0.0236,-0.44873 0.46552,-0.58043 0.24015,-0.0647 0.43502,-0.15177 0.5237,-0.22712 0.5891,-0.17715 1.18118,-0.34149 1.77477,-0.50472 0.75955,-0.22458 0.6991,-0.21842 0.98923,-0.30282 z m -4.94609,5.50142 c -0.83794,0.42871 -1.47869,0.7932 -3.02585,1.66557 -0.16387,0.1134 -1.82829,1.21508 -2.06572,1.56462 -0.54213,0.23939 -1.08437,0.47207 -1.62929,0.70661 0.14412,-0.56063 0.32903,-1.09393 0.55279,-1.56463 0.0791,-0.026 0.17391,-0.0386 0.20366,-0.0757 0.8697,-0.36771 1.74061,-0.75573 2.61852,-1.11038 1.1056,-0.41563 2.22645,-0.79747 3.34589,-1.18609 z m -4.917,1.16085 c 0.0285,-0.004 0.0389,0.004 0,0.0252 -0.25389,0.1355 -0.52973,0.24583 -0.78555,0.37854 0.0752,-0.0907 0.1488,-0.17591 0.23275,-0.25236 0.13211,-0.0311 0.46732,-0.13784 0.5528,-0.15142 z m 109.10491,2.80118 c 0.10525,0.48382 0.1949,0.97872 0.29095,1.46368 -0.22508,-0.32594 -0.331,-0.69084 -0.34913,-1.03467 -0.004,-0.14958 0.0302,-0.28774 0.0582,-0.42901 z m -207.06658,0.12619 c 0.0681,0.0157 0.13558,0.0347 0.20366,0.0505 0.0296,0.032 0.0613,0.0608 0.0872,0.10095 0.0753,0.11593 0.0394,0.20188 -0.0872,0.20188 -0.12672,0 -0.23275,-0.0859 -0.23275,-0.20188 0,-0.058 0.0122,-0.11321 0.029,-0.15142 z m 98.77632,0.22712 c -1.07562,0.80137 -2.14693,1.60343 -3.22951,2.39741 0.0781,-0.31891 0.12854,-0.66384 0.20367,-1.03467 1.0079,-0.45979 2.01444,-0.90895 3.02584,-1.36274 z m 108.69759,1.64033 c 0.12408,0.6576 0.22525,1.30788 0.32004,1.9684 0.0984,0.68556 0.1779,1.37988 0.23276,2.06934 -0.042,-0.34922 -0.0815,-0.66833 -0.11638,-1.11038 -0.0282,-0.35817 -0.0692,-0.67696 -0.11638,-0.95896 -0.14166,-0.84605 -0.36104,-1.33304 -0.64008,-1.38798 -0.45136,-0.0889 -0.43592,-0.15824 0.029,-0.32806 0.15934,-0.0582 0.23828,-0.15159 0.29096,-0.25236 z m -103.83878,0.95897 c 0.0163,0.0301 0.0582,0.0579 0.0582,0.10094 0,0.1345 -0.23652,0.28201 -0.5237,0.37853 0.15804,-0.15662 0.30631,-0.32373 0.46552,-0.47947 z m -1.22198,1.23655 c 0.01,0.0655 -0.005,0.10437 -0.11638,0.12618 0.0403,-0.0409 0.076,-0.0853 0.11638,-0.12618 z m -0.40733,0.52996 c -0.003,0.20847 -0.0448,0.30672 -0.20365,0.30283 0.0672,-0.10139 0.1356,-0.20186 0.20365,-0.30283 z m -0.84374,1.28702 c -5.6e-4,0.025 -0.0401,0.0472 -0.0582,0.0757 0.0166,-0.0266 0.0415,-0.0491 0.0582,-0.0757 z m -0.26185,0.42901 c -0.0346,0.089 -0.0565,0.17097 -0.0582,0.25236 -0.002,0.17851 -0.11566,0.29508 -0.23275,0.25236 0.0996,-0.16733 0.18908,-0.33839 0.29094,-0.50472 z m -0.5237,0.85802 c 0.17988,0 0.19086,0.066 0,0.20189 -0.0757,0.054 -0.1604,0.0941 -0.20367,0.15141 0.0674,-0.11808 0.1351,-0.23569 0.20367,-0.3533 z m 109.97775,0.3533 c -0.25353,0.26753 -0.51324,0.52833 -0.78555,0.78232 -0.02,0.003 -0.0646,0.0179 -0.0872,0.0252 0.0211,-0.026 0.0582,-0.052 0.0582,-0.0757 0,-0.0498 -0.0198,-0.0744 -0.0582,-0.10094 0.26415,-0.1991 0.52105,-0.38511 0.87284,-0.6309 z m -110.18142,0.0252 c -0.0302,0.0463 -0.0374,0.0985 -0.029,0.12618 0.0249,0.0817 0.0285,0.16665 0.029,0.25235 -0.0962,0.0508 -0.19627,0.089 -0.29094,0.15142 0.0979,-0.17695 0.19059,-0.35403 0.29094,-0.52995 z m -13.35444,1.58986 c 0.2113,0.1005 0.22567,0.12944 -0.14547,0.12618 -0.0579,-4.9e-4 -0.16276,0.0227 -0.23276,0.0252 0.0907,-0.0354 0.24859,-0.10093 0.37823,-0.15142 z m 120.10269,0.12618 c -0.19531,0.21426 -0.39834,0.42966 -0.61099,0.63089 0.10681,-0.23519 0.3018,-0.44894 0.61099,-0.63089 z m -120.07359,0.85802 c 0.004,-3.5e-4 0.0231,-4.9e-4 0.029,0 -0.004,0.0164 0.004,0.0341 0,0.0505 -0.0176,-0.0226 -0.0479,-0.0489 -0.029,-0.0505 z m -0.11638,0.63089 c -0.0931,0.39066 -0.17865,0.77544 -0.29095,1.16086 -0.46757,0.10791 -0.86962,0.18747 -1.19287,0.25235 -0.16634,0.0266 -0.29824,0.0518 -0.40734,0.0757 0.16061,-0.11937 0.28755,-0.24994 0.29096,-0.32807 0.0125,-0.28914 0.6029,-0.68136 1.0474,-0.68136 0.2467,0 0.36254,-0.0664 0.29095,-0.17666 -0.0565,-0.0871 0.0693,-0.20718 0.26185,-0.30283 z m 15.7402,0.90849 c 0.1385,0 0.26185,0.0741 0.26185,0.15142 0,0.0773 -0.0587,0.12618 -0.11638,0.12618 -0.0577,0 -0.15194,-0.0489 -0.23276,-0.12618 -0.0808,-0.0773 -0.0513,-0.15142 0.0872,-0.15142 z m -57.37464,0.12618 c 0.65818,0.48882 1.31806,0.97734 1.97844,1.46368 0.0149,0.0189 0.0443,0.0401 0.0582,0.0505 0.005,0.004 0.0235,-0.004 0.029,0 0.0213,0.008 0.0372,0.0374 0.0582,0.0252 0.12032,0.0883 0.22834,0.18974 0.34914,0.27759 2.63137,2.04599 5.28739,4.10461 7.79736,6.28373 -2.72511,-1.42189 -5.47346,-2.79466 -8.23379,-4.16392 -0.38181,-0.33529 -0.74088,-0.68294 -1.10559,-1.03466 -0.78282,-0.77288 -1.57038,-1.5499 -2.35667,-2.32171 0.48173,-0.18235 0.95185,-0.38133 1.42564,-0.58042 z m 56.85094,0.32808 c 0.17965,0.028 0.40743,0.027 0.58189,0 0.24713,-0.0382 0.43642,-0.008 0.43642,0.0757 0,0.0839 -0.1529,0.12021 -0.34914,0.0757 -0.23162,-0.0525 -0.37823,0.0203 -0.37823,0.17665 0,0.14404 0.1288,0.19478 0.32005,0.15141 0.16091,-0.0365 0.43049,0.0515 0.61098,0.17665 -0.94821,0.40034 -1.90005,0.79073 -2.85127,1.18609 0.0545,-0.11138 0.11852,-0.21719 0.17457,-0.32807 0.55319,-0.45301 1.05883,-0.9433 1.45473,-1.51415 z m 2.21119,0.37853 c 0.10421,0.0145 0.29761,0.035 0.46551,0.0505 -0.13258,0.0761 -0.27516,0.14912 -0.40732,0.22712 -0.068,-0.0824 -0.13763,-0.169 -0.20366,-0.25236 0.0504,-0.009 0.0926,-0.0326 0.14547,-0.0252 z m -0.5819,0.65613 c -0.0723,0.0446 -0.13135,0.10624 -0.20365,0.15142 0.0612,-0.0479 0.11378,-0.10659 0.20365,-0.15142 z m 1.83297,0.42901 c -0.17821,0.0872 -0.34534,0.19063 -0.5237,0.27759 -0.008,-0.0179 -0.0211,-0.0327 -0.029,-0.0505 0.21514,-0.0938 0.46774,-0.21186 0.5528,-0.22712 z m -22.02465,0.12618 c -0.0203,0.14007 -0.0283,0.25253 -0.0582,0.42901 -0.0687,0.78612 -0.0103,1.58449 0,2.37217 0.036,0.91987 0.0672,1.84427 0.26186,2.75071 -0.008,0.0586 -0.0204,0.11809 -0.029,0.17665 -0.0657,-0.0374 -0.0809,-0.0214 -0.0872,0.10095 -0.008,0.16677 -0.0708,0.16849 -0.26185,-0.0252 -0.1328,-0.13469 -0.23029,-0.33182 -0.20366,-0.42901 0.0266,-0.0972 -0.0359,-0.3043 -0.14547,-0.45425 -0.12999,-0.1778 -0.0958,-0.29197 0.0872,-0.32807 0.37173,-0.0732 0.34757,-0.40454 -0.029,-0.47948 -0.2358,-0.0469 -0.21441,-0.10323 0.029,-0.27759 0.24674,-0.17732 0.2439,-0.22955 0,-0.2776 -0.41906,-0.0825 -0.44659,-2.65514 -0.029,-2.95259 0.12445,-0.0887 0.30246,-0.34297 0.46552,-0.60567 z m 34.65173,2.97784 c 0.0642,0.0852 0.14115,0.16628 0.20365,0.25235 -0.11817,-0.0575 -0.20833,-0.0936 -0.32003,-0.15141 0.0392,-0.0236 0.0758,-0.0756 0.11638,-0.10094 z m 91.2408,0.0757 c 0.005,-0.004 0.0238,0.004 0.029,0 0.008,-0.002 0.0205,0.002 0.029,0 -0.0116,0.017 -0.0161,0.0344 -0.029,0.0505 -0.18281,0.22709 -0.29221,0.35953 -0.4946,0.58042 -0.28782,0.30052 -0.59422,0.57297 -0.90194,0.85802 -0.0776,0.006 -0.15004,0.0252 -0.23276,0.0252 -0.1711,0 -0.35358,0.0308 -0.5237,0.0505 0.26146,-0.26081 0.52508,-0.52072 0.78556,-0.78231 0.16334,-0.12022 0.32959,-0.23478 0.49461,-0.3533 0.1357,-0.071 0.26875,-0.15009 0.40732,-0.22713 l 0.34914,-0.12618 c 0.0307,-0.0238 0.0566,-0.0519 0.0872,-0.0757 z m -94.32484,0.0757 c 0.0669,0.0119 0.13693,0.0126 0.20367,0.0252 l -0.96012,0.60566 c 0.48925,-0.0127 0.9024,-0.009 1.25106,-0.0252 -0.13347,0.0389 -0.27532,0.15061 -0.43641,0.2776 -0.1864,-0.0467 -0.39971,-0.0818 -0.5819,-0.12619 -0.17325,-0.0448 -0.35067,-0.0807 -0.52371,-0.12617 -0.005,-0.0245 0.005,-0.0513 0,-0.0757 0.28966,-0.16011 0.70155,-0.36604 1.04741,-0.55519 z m 87.22575,1.84222 c -0.35203,0.35069 -0.72279,0.68537 -1.0765,1.03467 -0.002,-3.6e-4 -0.0216,0.023 -0.029,0.0252 -0.25003,0.24686 -0.47648,0.51092 -0.72737,0.75707 -0.0288,-0.007 -0.0552,-0.0326 -0.11638,-0.0252 -0.10833,0.0129 -0.18558,0.0372 -0.29095,0.0505 0.0195,-0.0418 0.0388,-0.0843 0.0582,-0.12618 0.0478,-0.0341 0.0979,-0.0674 0.14548,-0.10094 0.21069,-0.14832 0.79404,-0.46687 0.93103,-0.55519 -0.0112,0.003 -0.0335,-0.01 -0.0582,0 -0.30347,0.12129 -0.59784,0.25807 -0.90194,0.37854 0.0161,-0.0504 0.0199,-0.0996 0.029,-0.15142 0.0219,-0.1228 -0.0476,-0.35362 -0.14548,-0.55519 l 2.1821,-0.73176 z m 4.59695,0.0252 c 0.30704,0.0283 0.18829,0.20439 -0.37823,0.52995 -0.0307,0.0176 -0.0562,0.0337 -0.0872,0.0505 0.10886,-0.14209 0.21276,-0.286 0.32004,-0.42901 0.0498,-0.0494 0.0957,-0.10195 0.14547,-0.15142 z m -11.72514,0.40377 c 0.0618,0.0565 0.14338,0.10788 0.23276,0.15141 -0.78863,0.57698 -1.59068,1.14569 -2.38576,1.71605 0.0433,-0.22849 0.28503,-0.52169 0.58189,-0.7066 0.327,-0.20372 0.98931,-0.70679 1.48383,-1.11039 0.0239,-0.0195 0.0619,-0.0313 0.0872,-0.0505 z m -32.23687,0.10095 c 0.0981,0 0.20367,0.043 0.20367,0.10094 0,0.058 -0.10555,0.12618 -0.20367,0.12618 -0.0981,0 -0.17457,-0.0682 -0.17457,-0.12618 0,-0.058 0.0764,-0.10094 0.17457,-0.10094 z m -79.45747,0.75707 c 0.025,0.002 0.078,0.0177 0.11638,0.0252 -0.0103,0.0584 -0.0183,0.11835 -0.029,0.17665 -0.12819,-0.12828 -0.19551,-0.2119 -0.0872,-0.20188 z m 11.28872,0.20189 c -0.0747,0.6787 -0.15025,1.36369 -0.20366,2.04411 -0.16853,-0.57412 -0.32466,-1.14221 -0.49461,-1.71605 0.23402,-0.10727 0.46666,-0.21739 0.69827,-0.32806 z m 24.81774,0.17665 c 0.3644,0.0852 0.71528,0.18228 1.0765,0.27759 0.007,0.0107 0.0213,0.0147 0.029,0.0252 -0.13536,-0.0355 -0.27454,-0.059 -0.40733,-0.10094 -0.23621,-0.0616 -0.46068,-0.1431 -0.69827,-0.20189 z m 1.65838,0.9842 c 0.0494,0.0502 0.0977,0.10882 0.14548,0.15142 -0.004,0.002 0.005,0.0231 0,0.0252 -0.0429,-4.9e-4 -0.12163,-0.0213 -0.17457,-0.0252 -0.0227,-0.0112 -0.0368,-0.03 -0.0582,-0.0505 -0.008,-0.008 -0.0626,0.007 -0.0872,0 0.055,-0.0325 0.11292,-0.0652 0.17458,-0.10094 z m 2.85128,0.0252 c 0.21363,-0.004 0.7853,0.0694 0.61099,0.17665 -0.0396,0.0243 -0.0766,0.0516 -0.11638,0.0757 -0.0243,-0.008 -0.0382,-0.0149 -0.0582,-0.0252 -0.008,-0.002 -0.0206,0.002 -0.029,0 -0.0431,-0.027 -0.0872,-0.0701 -0.0872,-0.10094 0,-0.0733 -0.10065,-0.0974 -0.32005,-0.10094 -0.007,-0.0154 -0.025,-0.0248 0,-0.0252 z m -9.60123,0.0505 c 1.50154,0.25796 3.01713,0.52038 4.53876,0.65613 0.50692,0.0379 0.6974,0.0556 0.90194,0 0.0337,4.9e-4 0.0991,-0.0253 0.14547,-0.0505 0.008,-0.004 0.0204,-0.0212 0.029,-0.0252 0.0288,0.0117 0.0497,0.0252 0.0872,0.0252 0.0495,0 0.11326,-1.4e-4 0.14547,0.0252 0.004,0.003 -0.004,0.0224 0,0.0252 0.0199,0.0226 0.029,0.0459 0.029,0.0757 0,0.0195 0.0201,0.0337 0.029,0.0505 -0.94106,0.56284 -2.16361,1.3169 -3.89868,2.37217 -0.26054,0.15846 -0.11694,0.57608 0,0.83278 0.50819,1.11564 3.47783,0.64892 4.24782,0.88326 1.78768,0.0489 3.56461,0.0951 5.35341,0.12618 0.0295,0.0676 0.0838,0.10094 0.17457,0.10094 0.0981,0 0.17457,0.048 0.17457,0.10095 0,0.0599 0.18126,0.1013 0.49461,0.12617 0.27658,0.022 0.52952,0.0851 0.55279,0.12618 0.0231,0.0411 0.18744,0.0757 0.37824,0.0757 0.11904,0 0.20488,0.006 0.26184,0.0252 0.0115,0.004 0.0193,0.0215 0.029,0.0252 0.0249,0.0165 0.0582,0.0248 0.0582,0.0505 0,0.0616 0.10195,0.13122 0.23276,0.15141 0.13081,0.0202 0.23276,0.0668 0.23276,0.10094 0,0.0308 0.086,0.0457 0.17457,0.0505 -0.005,0.0666 0.004,0.13524 0,0.20189 l 0.26184,-0.12618 c 0.13569,0.0691 0.22185,0.11286 0.26186,0.17665 l -0.34914,0.15142 c -0.0223,0.049 -0.0389,0.10172 -0.0582,0.15141 -0.15043,0.0997 -0.29919,0.24426 -0.34914,0.37854 -0.007,0.0189 -0.0187,0.0331 -0.029,0.0505 -0.0509,0.0486 -0.0969,0.0858 -0.14548,0.12618 -0.0199,0.007 -0.039,0.0252 -0.0582,0.0252 -0.0928,0 -0.17457,0.043 -0.17457,0.10094 0,0.058 -0.0892,0.12214 -0.20366,0.12618 -0.18519,0.007 -0.17611,-0.002 0,0.0252 0.0752,0.0118 0.12948,0.0264 0.17456,0.0505 0.005,0.004 0.0208,-0.003 0.029,0 0.11234,0.0714 0.0831,0.17665 -0.11637,0.17665 -0.12879,0 -0.23276,0.0371 -0.23276,0.0757 0,0.0387 -0.16567,0.0717 -0.37824,0.0757 -0.21256,0.004 -0.31811,0.0328 -0.20365,0.0505 0.14713,0.0226 0.23275,0.10736 0.23275,0.2776 0,0.16721 0.0507,0.22712 0.17457,0.22712 0.0322,0 0.0645,0.0148 0.0872,0.0252 0.01,0.0173 0.0209,0.0313 0.029,0.0505 0.0285,0.0449 0.0582,0.10038 0.0582,0.20189 5.7e-4,0.008 -5.6e-4,0.0174 0,0.0252 -0.004,0.15135 -0.0321,0.25808 -0.11637,0.27759 -0.005,0 -0.0506,4.9e-4 -0.0582,0 -0.0981,0 -0.17457,-0.0682 -0.17457,-0.12618 0,-0.0703 -0.1404,-0.10095 -0.37823,-0.10095 -0.23786,0 -0.34913,-0.0306 -0.34913,-0.10094 0,-0.058 -0.0764,-0.10094 -0.17458,-0.10094 -0.0981,0 -0.17456,0.043 -0.17456,0.10094 0,0.058 -0.0764,0.10094 -0.17457,0.10094 -0.0991,0 -0.17457,0.0733 -0.17457,0.15143 0,0.0469 -0.0185,0.0775 -0.0582,0.10094 -0.005,0.004 -0.0249,-0.004 -0.029,0 -0.0389,0.0173 -0.10638,0.0252 -0.17457,0.0252 -0.13081,0 -0.23276,0.0401 -0.23276,0.0757 0,0.0355 0.3604,0.074 0.78555,0.10094 0.21257,0.0135 0.4127,0.0304 0.55281,0.0505 0.0197,0.004 0.039,0.0205 0.0582,0.0252 0.0749,0.0143 0.14547,0.0385 0.14547,0.0505 0,0.0298 0.0643,0.0447 0.14548,0.0505 0.0598,0.026 0.13641,0.0651 0.20366,0.10094 0.009,0.0168 0.029,0.0309 0.029,0.0505 0,0.078 0.0755,0.12617 0.17456,0.12617 0.049,0 0.0841,0.0313 0.11638,0.0505 -0.73005,0.0782 -1.45295,0.17012 -2.1821,0.25237 -0.36805,0.0135 -0.73844,0.0401 -1.10559,0.0505 -0.47598,0.0139 -1.01552,-0.15951 -1.42564,0.0505 -0.15664,0.0802 -0.31017,0.17035 -0.46552,0.25236 -0.45932,0.0862 -0.84228,0.22679 -1.22197,0.40377 -0.0527,-0.22636 -0.10353,-0.45846 -0.17457,-0.68137 -0.28728,-0.88204 -0.71653,-1.72576 -1.16378,-2.54881 -0.14341,-0.3461 -0.34477,-0.68363 -0.55281,-1.03468 -0.1016,-0.17145 -0.1153,-0.57973 -0.32004,-0.50472 -0.0785,-0.13426 -0.15465,-0.26941 -0.23275,-0.40377 -0.54459,0.28381 -1.0339,0.52017 -1.51292,0.75708 -0.029,-0.0399 -0.0582,-0.0908 -0.0582,-0.17665 0,-0.23423 -0.0108,-0.25236 -0.40732,-0.25236 -0.29774,0 -0.40733,0.0226 -0.40733,0.10094 0,0.0605 -0.0801,0.0996 -0.14547,0.0757 -0.0653,-0.0239 -0.11638,-0.13279 -0.11638,-0.22712 0,-0.0943 0.0509,-0.15142 0.11638,-0.15142 0.0655,0 0.14547,-0.0682 0.14547,-0.12618 0,-0.0702 -0.14041,-0.10094 -0.37823,-0.10094 -0.27754,0 -0.34914,-0.0169 -0.34914,-0.12618 0,-0.10929 -0.0717,-0.15142 -0.34913,-0.15142 -0.23785,0 -0.34913,-0.0306 -0.34913,-0.10094 0,-0.0585 -0.12974,-0.10094 -0.26186,-0.10094 -0.13082,0 -0.23275,-0.0372 -0.23275,-0.0757 0,-0.0387 -0.12744,-0.0757 -0.29095,-0.0757 -0.23438,0 -0.29094,0.0441 -0.29094,0.17665 0,0.0925 0.0765,0.17968 0.17456,0.20189 0.0981,0.0223 0.17457,0.0922 0.17457,0.15141 0,0.0593 0.0764,0.10095 0.17457,0.10095 0.0981,0 0.17456,0.043 0.17456,0.10094 0,0.0644 0.11724,0.12618 0.29095,0.12618 0.15652,0 0.31153,0.0431 0.34914,0.10095 0.0417,0.0642 0.019,0.10094 -0.0872,0.10094 -0.0961,0 -0.17456,0.0431 -0.17456,0.10094 0,0.0117 0.0225,0.0155 0.029,0.0252 -0.46788,0.006 -0.93804,0.12455 -1.39655,0.3533 -0.1209,0.0603 -0.0875,0.0431 -0.20365,0.10094 -0.0304,-0.86221 -1.7246,-0.11674 -3.63684,0.85802 -0.0179,-0.0451 -0.0208,-0.0778 0,-0.12618 0.75067,-0.37306 1.07266,-0.52448 2.03663,-1.00943 -0.58291,0.24803 -1.153,0.47977 -1.74568,0.7066 0.0446,-0.13596 0.007,-0.30283 -0.14548,-0.30283 -0.0949,0 -0.20952,-0.0486 -0.26185,-0.10094 -0.0523,-0.0523 -0.17136,-0.10914 -0.26185,-0.12618 -0.13251,-0.025 -0.13411,-0.055 0.029,-0.15141 0.19112,-0.11257 0.20091,-0.12618 -0.0872,-0.12618 -0.19256,0 -0.32005,-0.0346 -0.32005,-0.10095 0,-0.058 0.0511,-0.10094 0.11638,-0.10094 0.0655,0 0.11638,-0.043 0.11638,-0.10094 0,-0.058 -0.0722,-0.10094 -0.17457,-0.10094 -0.12825,0 -0.16232,-0.0588 -0.14548,-0.20189 0.0751,-0.0528 0.15436,-0.0964 0.23276,-0.15142 0.84397,-0.17893 1.53716,-0.3164 2.12391,-0.42901 0,0.12079 0.17183,0.0733 0.26186,-0.0505 0.17582,-0.0342 0.39913,-0.0691 0.55279,-0.10094 0.61881,0.0608 1.65543,0.0907 1.83297,0.0505 0.12894,-0.0292 0.20366,-0.12465 0.20366,-0.25236 0,-0.17907 -0.035,-0.20189 -0.34914,-0.20189 -0.27753,0 -0.37822,0.0169 -0.37822,0.12618 0,0.1197 -0.0679,0.15142 -0.52371,0.15142 -0.12205,0 -0.15899,-0.0207 -0.23276,-0.0252 1.46085,-0.36899 1.67397,-0.77841 1.74568,-2.675 -0.016,-0.58549 -0.0603,-1.18033 -0.0872,-1.76651 z m 6.63358,0.20189 c 0.0106,-0.006 0.0378,0.0295 0.0582,0.0757 0.01,0.0225 0.0342,0.0322 0.0582,0.0505 -0.0563,0.0322 -0.14518,0.0418 -0.20365,0.0757 0.0343,-0.0283 0.054,-0.0559 0.0582,-0.10094 0.005,-0.0595 0.0185,-0.0955 0.029,-0.10094 z m -0.20366,0.25235 c -0.0504,0.0294 -0.0933,0.0703 -0.14547,0.10095 0.0274,-0.0576 0.0694,-0.10095 0.14547,-0.10095 z m 82.51241,0.22713 c 0.009,0.0294 0.029,0.0406 0.029,0.0757 0,0.22813 0.28504,0.49099 0.61099,0.5552 0.35838,0.0706 -0.0176,0.41814 -0.96013,0.93372 0.0799,-0.27921 0.11019,-0.55056 0,-0.80755 -0.0428,-0.0999 -0.0867,-0.2026 -0.14546,-0.27759 0.16148,-0.15508 0.3044,-0.32411 0.46551,-0.47949 z m -62.00069,0.22712 c 0.2529,1.5e-4 0.50599,0.0108 0.75646,0.0252 -0.002,0.0167 -0.0286,0.0312 -0.029,0.0505 -0.63075,-0.0126 -1.2604,-0.0381 -1.89115,-0.0505 0.38591,-0.008 0.77449,-0.0254 1.16379,-0.0252 z m -36.63016,2.80118 c 0.0274,0.61303 0.0121,1.23081 -0.0582,1.84222 l 1.16379,-0.50472 c 0.15248,0.47981 0.2842,0.87506 0.34914,0.85802 0.11052,-0.029 0.18337,-0.048 0.29094,-0.0757 -0.0141,0.0456 -0.043,0.0818 -0.0582,0.12618 -0.0467,0.0574 -0.0944,0.13247 -0.17457,0.17665 -0.19898,0.10952 -0.2557,0.18886 -0.20366,0.37855 0.0547,0.19895 0.0421,0.2486 -0.14548,0.27758 -0.14536,0.0225 -0.23276,0.0125 -0.23276,-0.0505 0,-0.0544 -0.10193,-0.10094 -0.23275,-0.10094 -0.13079,0 -0.23276,0.0123 -0.23276,0.0505 0,0.0872 -0.39942,0.35331 -0.5237,0.35331 -0.0508,0 -0.0799,-0.0333 -0.0872,-0.10094 -0.0131,-0.11712 -0.0355,-0.11712 -0.0872,0 -0.0299,0.0677 -0.0849,0.10094 -0.14548,0.10094 -0.0606,0 -0.13802,-0.0333 -0.14547,-0.10094 -0.0133,-0.11712 -0.007,-0.11712 -0.0582,0 -0.0299,0.0677 -0.11396,0.10094 -0.17457,0.10094 -0.0607,0 -0.0872,0.0682 -0.0872,0.12618 0,0.058 0.0764,0.10094 0.17456,0.10094 0.0981,0 0.17458,-0.0372 0.17458,-0.0757 0,-0.1076 0.21524,-0.0914 0.29094,0.0252 0.037,0.0568 -0.0211,0.14561 -0.11638,0.20189 -0.0953,0.0563 -0.17456,0.1664 -0.17456,0.22712 0,0.084 0.11647,0.10095 0.5237,0.10095 0.39643,0 0.55279,-0.0229 0.55279,-0.10095 0,-0.058 -0.0764,-0.10094 -0.17457,-0.10094 -0.098,0 -0.20366,-0.0429 -0.20366,-0.10095 0,-0.058 0.10558,-0.10093 0.20366,-0.10093 0.0981,0 0.17457,0.0119 0.17457,0.0505 0,0.0386 0.0765,0.0757 0.17457,0.0757 0.0981,0 0.17456,-0.0473 0.17456,-0.10094 0,-0.0485 0.0753,-0.0732 0.17458,-0.0757 -0.29614,0.53939 -0.13972,0.40237 1.65839,-0.88325 0.0325,0.002 0.0461,0 0.0872,0 0.23114,0 0.34913,0.0564 0.34913,0.12618 0,0.058 0.0764,0.10094 0.17457,0.10094 0.0981,0 0.17457,0.043 0.17457,0.10094 0,0.16184 0.30273,0.12011 0.37823,-0.0505 0.0378,-0.0831 0.0371,-0.2431 0,-0.3533 -0.0523,-0.15457 -0.004,-0.20189 0.14547,-0.20189 0.10632,0 0.17457,-0.0372 0.17457,-0.0757 0,-0.0386 -0.0509,-0.0505 -0.11638,-0.0505 -0.0653,0 -0.10893,-0.0585 -0.11638,-0.12618 -0.0132,-0.11711 -0.0355,-0.11711 -0.0872,0 -0.0299,0.0677 -0.11034,0.12618 -0.20365,0.12618 -0.0933,0 -0.17458,0.0119 -0.17458,0.0505 0,0.0387 -0.0764,0.0757 -0.17456,0.0757 -0.0687,0 -0.1157,-0.028 -0.14547,-0.0505 0.0255,-0.0181 0.0612,-0.0572 0.0872,-0.0757 0.0171,-0.002 0.0393,0 0.0582,0 0.0981,0 0.17456,-0.0471 0.17456,-0.10095 0,-0.0103 -0.0237,-0.0146 -0.029,-0.0252 0.12344,-0.0876 0.30159,-0.2076 0.43643,-0.30283 0.0285,0.0914 0.0451,0.15142 0.11638,0.15142 0.19183,0 0.32003,0.3019 0.32003,0.78231 0,0.18841 0.0509,0.3533 0.11638,0.3533 0.0655,0 0.13802,-0.0585 0.14547,-0.12618 0.0133,-0.11711 0.007,-0.11711 0.0582,0 0.0299,0.0677 0.09,0.12618 0.14547,0.12618 0.0156,0 0.0398,0.0469 0.0582,0.0757 -1.4058,0.52234 -2.83395,0.99941 -4.27692,1.43844 -0.0323,-0.0191 -0.0582,-0.0467 -0.0582,-0.0757 0,-0.0796 -0.13263,-0.12618 -0.58189,-0.12618 -0.17345,0 -0.28422,0.0101 -0.37823,0 0.17516,-0.10282 0.35169,-0.19608 0.5237,-0.30283 0.025,-0.0157 -0.0575,-0.0179 -0.0872,-0.0252 -0.0641,-0.0148 -0.11004,-0.0374 -0.17456,-0.0505 -0.16942,-0.0345 -0.47598,-0.0837 -0.64009,-0.10095 -0.0405,-0.004 -0.0757,0.003 -0.11638,0 -0.15101,-0.0421 -0.28989,-0.0777 -0.43641,-0.12618 -0.48019,-0.15589 -0.61397,-0.18049 -0.90194,0 -0.0288,-0.0175 -0.0789,-0.042 -0.11638,-0.0505 -0.0981,-0.0222 -0.17456,-0.0106 -0.17456,0.0252 0,0.0181 -0.0463,0.0437 -0.11638,0.0505 -0.12512,-0.009 -0.26369,-0.0228 -0.43642,-0.0252 -0.0297,-0.80501 -0.0639,-1.61748 -0.0582,-2.42264 0.67184,-0.32245 1.34017,-0.65435 2.00752,-0.9842 0.0286,-0.008 0.0589,-0.0164 0.0872,-0.0252 0.35841,-0.11166 0.68304,-0.26884 1.01831,-0.42901 z m 45.30037,0.7066 c 0.0201,0.006 0.0381,0.0187 0.0582,0.0252 0.2066,0.08 0.40575,0.17041 0.61099,0.25236 0.25369,0.23149 0.50381,0.47739 0.72737,0.73184 -0.026,0.008 -0.0554,0.018 -0.0872,0.0252 -0.20827,-0.0168 -0.42737,-0.009 -0.66918,0.0757 -0.58573,0.025 -0.69827,0.0197 -0.69827,-0.0757 0,-0.0657 -0.1006,-0.12618 -0.23276,-0.12618 -0.12612,0 -0.30454,-0.0402 -0.40732,-0.10095 -0.1028,-0.0607 -0.20367,-0.0919 -0.20367,-0.0505 0,0.0413 -0.1529,0.0757 -0.34913,0.0757 -0.13582,0 -0.23073,-0.003 -0.29095,-0.0252 0.1028,-0.0525 0.2094,-0.11948 0.32005,-0.17666 0.63708,-0.13206 1.13281,-0.24042 1.01831,-0.52995 0.0509,-0.0269 0.15113,-0.0732 0.20366,-0.10094 z m -76.46073,0.58043 c 0.0334,-0.003 0.0554,0.002 0.0872,0 0.0197,0.19319 0.038,0.38726 0.0582,0.58043 -0.46497,0.2222 -0.88185,0.45751 -1.30925,0.7066 -0.0713,-0.34534 -0.18294,-0.67727 -0.32004,-1.00943 0.51995,-0.12131 1.0537,-0.23536 1.48382,-0.2776 z m 53.62143,0 c 0.55117,0.009 1.10722,0.0155 1.65839,0.0252 -5.6e-4,0.1086 -0.0262,0.21944 -0.029,0.32807 -0.0722,-0.0299 -0.23542,-0.0505 -0.4946,-0.0505 -0.10591,0 -0.13469,0.003 -0.20367,0 -0.0493,-1e-4 -0.10792,-0.007 -0.17456,-0.0252 -0.007,-4.9e-4 -0.0234,4.9e-4 -0.029,0 -0.007,-0.002 -0.0213,0.002 -0.029,0 -0.0768,-0.0202 -0.0872,-0.0411 -0.0872,-0.10094 0,-0.10937 -0.0717,-0.15142 -0.34914,-0.15142 -0.0981,0 -0.19719,-0.0125 -0.26185,-0.0252 z m 21.47184,0.32807 c 0.13081,0 0.23276,0.0372 0.23276,0.0757 0,0.0387 -0.10195,0.0757 -0.23276,0.0757 -0.1308,0 -0.23275,-0.0371 -0.23275,-0.0757 0,-0.0386 0.10195,-0.0757 0.23275,-0.0757 z m -0.72736,0.17665 c 0.48334,0.0318 0.84374,0.0823 0.84374,0.15141 0,0.073 0.23585,0.10095 0.96012,0.10095 0.2066,0 0.27747,0.0214 0.40734,0.0252 -0.1344,0.0707 -0.28478,0.13609 -0.43643,0.22712 -1.43727,0.30002 -2.35698,0.42888 -2.90946,0.58042 -0.23179,-0.0522 -0.2906,-0.13176 0,-0.17665 0.11449,-0.0177 0.038,-0.0464 -0.17456,-0.0505 -0.20138,-0.004 -0.30505,-0.032 -0.34914,-0.0757 0.5433,-0.23742 1.07763,-0.49334 1.65839,-0.7823 z m -31.97502,0.0252 c 0.0981,0 0.17458,0.0431 0.17458,0.10094 0,0.058 -0.0764,0.10095 -0.17458,0.10095 -0.0981,0 -0.17456,-0.0429 -0.17456,-0.10095 0,-0.058 0.0764,-0.10094 0.17456,-0.10094 z m 14.11091,0.0254 c 0.0394,0.0925 0.077,0.18511 0.11638,0.27759 l -0.17457,0.0757 c -0.0266,-0.0798 -0.0774,-0.16064 -0.17457,-0.22713 l 0.23276,-0.12618 z m 13.29625,0.17665 c 0.0653,0 0.11638,0.043 0.11638,0.10094 0,0.058 -0.0509,0.10095 -0.11638,0.10095 -0.0653,0 -0.11638,-0.043 -0.11638,-0.10095 0,-0.058 0.0511,-0.10094 0.11638,-0.10094 z m 0.52371,0 -0.20367,0.15142 c -0.12091,-0.0586 -0.0556,-0.13704 0.20367,-0.15142 z m -0.78556,0.0757 c 0.0374,0.0319 0.0628,0.0603 0.0872,0.12618 0.0298,0.0801 0.10821,0.14102 0.17456,0.17665 l -0.34913,0.25236 c 0.0588,-0.22154 0.0949,-0.40779 0.0872,-0.55519 z m -26.35974,0.20189 c 0.0653,0 0.11637,0.0372 0.11637,0.0757 0,0.0387 -0.0509,0.0757 -0.11637,0.0757 -0.0653,0 -0.11638,-0.0372 -0.11638,-0.0757 0,-0.0387 0.0509,-0.0757 0.11638,-0.0757 z m 0,0.20189 c 0.0298,-3.7e-4 0.0605,0.0314 0.0872,0.0757 0.0245,0.0405 0.1005,0.0657 0.20366,0.0757 -0.0485,0.0237 -0.0976,0.0273 -0.14547,0.0505 -0.0697,-0.0486 -0.1331,-0.10483 -0.20367,-0.15142 0.0213,-0.0221 0.0353,-0.0502 0.0582,-0.0505 z m -22.63564,0.12617 c -0.0549,1.02644 -0.11582,2.05311 -0.14548,3.07878 -0.0427,-0.15098 -0.0749,-0.30302 -0.11637,-0.45424 5.6e-4,-0.0342 -0.0115,-0.0523 -0.029,-0.0757 -0.14938,-0.54871 -0.29857,-1.10916 -0.40733,-1.66556 -0.0133,-0.0669 -0.0159,-0.1349 -0.029,-0.20189 0.79383,-0.20764 0.74165,-0.22558 0.40733,-0.52995 l 0.32004,-0.15141 z m 12.13246,0.0757 c -0.0271,0.0614 -0.0307,0.11904 -0.0582,0.17664 -0.0135,-0.0171 -0.0582,-0.0282 -0.0582,-0.0505 0,-0.058 0.0509,-0.12617 0.11638,-0.12617 z m 38.95774,0.3533 c 0.0286,0.052 0.11548,0.10094 0.32004,0.10094 0.23781,0 0.34913,0.0307 0.34913,0.10094 0,0.0443 0.0504,0.0855 0.11638,0.10095 -0.23011,0.28968 -0.36103,0.72935 -0.61099,1.51415 -0.0162,0.0668 -0.0139,0.135 -0.029,0.20188 -0.47834,0.28364 -1.00757,0.5719 -1.57111,0.88326 0.12238,0.7457 0.26242,1.50409 0.40732,2.24599 -0.17648,0 -0.55279,0.28266 -0.55279,0.40377 0,0.0653 0.15431,0.10095 0.5237,0.10095 0.0704,0 0.0907,0.002 0.14547,0 0.013,0.0671 0.0161,0.13479 0.029,0.20188 -0.2301,-0.008 -0.34914,-0.0374 -0.34914,-0.10094 0,-0.0737 -0.14574,-0.10094 -0.43641,-0.10094 -0.2784,0 -0.40734,0.01 -0.40734,0.0757 0,0.0644 -0.0782,0.0996 -0.23274,0.0757 -0.0129,-0.002 -0.0176,0.002 -0.029,0 0.0207,-0.0137 0.029,-0.0306 0.029,-0.0505 0,-0.0656 0.10593,-0.10095 0.29094,-0.10095 0.18497,0 0.29094,-0.0606 0.29094,-0.12618 0,-0.0659 -0.10262,-0.10094 -0.29094,-0.10094 -0.16557,0 -0.34062,-0.0429 -0.37823,-0.10095 -0.0376,-0.058 -0.14161,-0.10094 -0.23276,-0.10094 -0.0911,0 -0.14547,0.0429 -0.14547,0.10094 0,0.0778 -0.13593,0.10095 -0.52371,0.10095 -0.27955,0 -0.46591,-0.028 -0.61098,-0.0505 0.21763,-1.38273 0.48834,-2.7545 0.84374,-4.11345 0.61013,-0.25362 1.22128,-0.50714 1.83296,-0.75707 0.51343,-0.21333 0.84024,-0.34485 1.22198,-0.50472 z m 22.98476,0.12621 c 0.11214,0.0304 0.11031,0.17422 -0.029,0.20189 -0.0649,0.0129 -0.13174,0.2809 -0.17457,0.58043 -0.0514,0.35919 -0.13286,0.50787 -0.23276,0.52995 0.0281,-0.23559 0.0553,-0.47143 0.0872,-0.70661 0.11351,-0.20205 0.24601,-0.39581 0.34913,-0.60566 z m 23.77033,0.0505 c -0.36781,0.37669 -0.73701,0.75938 -1.1056,1.13562 -0.11409,0.1026 -0.23484,0.20038 -0.34914,0.30283 -0.32189,0.15387 -0.63982,0.29751 -0.96012,0.45424 0.59561,-0.56835 1.18948,-1.13618 1.80387,-1.6908 0.20319,-0.0666 0.40789,-0.13508 0.61099,-0.20189 z m -118.90981,0.10093 c 0.13587,-0.069 -0.25257,0.20177 -0.40733,0.22712 0.13926,-0.0708 0.26807,-0.15632 0.40733,-0.22712 z m 32.0041,0.0252 c 0.0858,-0.0202 0.19329,0.002 0.23276,0.0252 0.0394,0.0234 -0.0492,0.0284 -0.17456,0.0252 -0.13855,-0.003 -0.15305,-0.028 -0.0582,-0.0505 z m 4.68424,0.0505 c 0.01,0.0321 0.0204,0.0649 0.029,0.10094 -1.03183,0.52841 -2.08787,1.09416 -3.02584,1.5394 -0.005,-0.052 -0.01,-0.10703 -0.0582,-0.12618 0.64591,-0.31947 1.95162,-0.96623 3.05493,-1.51416 z m 11.60877,0.37858 c -0.0792,-0.0106 -0.47992,0.0804 -1.04741,0.2776 0.70375,-0.0624 1.18511,-0.25924 1.04741,-0.2776 z m -19.66799,0.2776 c 0.0179,0.002 0.0412,-0.002 0.0582,0 0.0564,0.006 0.11795,0.0163 0.17456,0.0252 0.0248,0.008 0.0772,0.0161 0.0872,0.0252 0.0305,0.006 0.0579,0.0187 0.0872,0.0252 -0.12347,0.05 -0.25993,0.1256 -0.40732,0.20188 -0.005,-0.0922 0.004,-0.1854 0,-0.27759 z m 26.67979,0.22712 c 0.0389,-0.004 0.0831,-0.002 0.11638,0.0252 0.0282,0.0386 0.029,0.0838 0.029,0.15142 0,0.14725 -0.0403,0.22712 -0.17457,0.22712 -0.066,0 -0.12149,-0.0202 -0.14548,-0.0505 -0.019,-0.025 0.003,-0.0428 0.029,-0.10094 0.0396,-0.087 0.0582,-0.19814 0.0582,-0.22713 0.0248,-0.0184 0.06,-0.022 0.0872,-0.0252 z m 39.39415,0.3533 c 0.0981,0 0.17457,0.0274 0.17457,0.0757 5.7e-4,0.0483 0.0479,0.1654 0.0872,0.25236 0.0578,0.1275 0.0284,0.15142 -0.17457,0.15142 -0.0766,0 -0.10742,0.0331 -0.14547,0.0505 0.0181,-0.17675 0.0378,-0.35341 0.0582,-0.52996 z m -63.74636,0.0252 c 0.0928,0.0104 0.19555,0.0252 0.37823,0.0252 0.22462,0 0.37301,0.009 0.46551,0.0252 0.0452,0.0135 0.0728,0.0582 0.11638,0.0757 -0.20157,0.0604 -0.40896,0.1173 -0.61099,0.17665 -0.11216,-0.10485 -0.23693,-0.19797 -0.34913,-0.30283 z m 24.58497,0.0252 c 0.007,0.0505 0.0207,0.10103 0.029,0.15141 0.0398,0.28145 0.0797,0.57587 0.14547,0.85802 0,-0.058 -0.0801,-0.10095 -0.14547,-0.10095 -0.0653,0 -0.11637,-0.0431 -0.11637,-0.10094 0,-0.058 -0.0688,-0.10094 -0.17457,-0.10094 -0.0478,-0.0549 -0.0926,-0.10462 -0.11638,-0.15142 0.004,-0.01 -0.005,-0.0141 0,-0.0252 0.0396,-0.087 0.0582,-0.17884 0.0582,-0.22713 5.6e-4,-0.0484 0.0765,-0.10094 0.17457,-0.10094 0.0991,0 0.12622,-0.0789 0.14547,-0.20189 z m -0.96012,0.47948 c 0.11099,0 0.17457,0.0673 0.17457,0.17665 0,0.10929 -0.0636,0.17665 -0.17457,0.17665 -0.0555,0 -0.11476,-0.0202 -0.14548,-0.0505 -0.0307,-0.0303 -0.029,-0.0715 -0.029,-0.12617 0,-0.0547 -0.002,-0.0959 0.029,-0.12618 0.0307,-0.0303 0.0899,-0.0505 0.14548,-0.0505 z m -21.55913,0.0505 c 0.0222,0.0209 0.0399,0.0603 0.0872,0.0757 -0.22655,0.0976 -0.47506,0.21072 -0.66917,0.27759 -0.0812,0.028 -0.13443,0.0789 -0.20367,0.12618 -0.01,0.002 -0.079,0.0231 -0.0872,0.0252 0.0765,-0.0552 0.41263,-0.27458 0.87285,-0.50472 z m 21.90827,0.37857 c 0.0981,0 0.17457,0.043 0.17457,0.10094 0,0.058 -0.0765,0.10095 -0.17457,0.10095 -0.0981,0 -0.17457,-0.0429 -0.17457,-0.10095 0,-0.058 0.0764,-0.10094 0.17457,-0.10094 z m 39.80147,0.17665 c 0.14877,-0.006 0.14547,0.0449 0.14547,0.22712 0,0.10361 -0.0179,0.16289 -0.0582,0.20189 -0.0357,-0.0356 -0.0964,-0.0669 -0.14548,-0.0757 -0.0277,-0.10607 -0.0602,-0.22257 -0.0872,-0.32807 0.0539,-0.006 0.10977,-0.0239 0.14548,-0.0252 z m -23.363,0.2776 c 0.0799,-0.006 0.13312,0.0359 0.20366,0.0757 -0.118,0.0554 -0.2309,0.12166 -0.34913,0.17664 -0.0887,0.0413 0.0452,-0.24428 0.14547,-0.25235 z m 23.74123,0.20189 c 0.0653,0 0.11638,0.0429 0.11638,0.10094 0,0.058 -0.0509,0.10095 -0.11638,0.10095 -0.0653,0 -0.11638,-0.043 -0.11638,-0.10095 0,-0.058 0.0509,-0.10094 0.11638,-0.10094 z m -58.71299,0.60566 c 0.32104,0.21181 0.62399,0.43247 0.93103,0.65613 -0.61933,0.11553 -1.07769,0.20896 -1.28017,0.32806 -0.042,-0.0619 -0.0807,-0.0566 -0.0872,0.0252 -0.005,0.0677 -0.0764,0.12618 -0.17457,0.12618 -0.0765,0 -0.11423,0.011 -0.14546,0.0252 -0.0535,-0.11641 -0.0855,-0.23248 -0.14548,-0.35331 0.29462,-0.27862 0.59604,-0.53958 0.90193,-0.80755 z m -1.92025,0.0505 c 0.007,0.0138 0.0211,0.0324 0.029,0.0505 -0.26036,0.12622 -0.42428,0.2217 -0.69827,0.3533 -0.11692,0.0537 0.17564,-0.14271 0.40732,-0.2776 l 0.26186,-0.12618 z m 58.36385,0.55519 c 0.0463,0.14704 0.0858,0.28571 0.14548,0.429 0.0215,0.0432 0.0408,0.0419 0.0582,0.0757 -0.33162,0.16514 -0.65747,0.33982 -0.98923,0.50472 0.17936,-0.29117 0.34153,-0.59305 0.52371,-0.88325 0.089,-0.0409 0.17312,-0.085 0.26185,-0.12619 z m -53.53414,0.30283 c 0.007,0.0596 0.0188,0.12245 0,0.15142 -0.0463,0.0718 -0.19612,-0.002 -0.29094,0 0.10582,-0.0556 0.1873,-0.0972 0.29094,-0.15142 z m -1.42564,0.15142 c 0.8405,0.56262 1.50509,0.82287 2.09482,0.85801 0.0392,0.10346 0.0779,0.19989 0.11638,0.30283 -0.0554,0.0495 -0.10565,0.11231 -0.0872,0.17665 0.0355,0.12404 -0.15204,0.20189 -0.5237,0.20189 -0.013,0 -0.0165,1.8e-4 -0.029,0 0.0115,-0.18108 0.052,-0.38181 0,-0.55519 -0.019,-0.0632 -0.0167,-0.19958 -0.0872,-0.17665 -0.54471,0.17714 -0.67767,0.20174 -0.93103,0.27759 -0.15029,-0.0142 -0.30534,-0.023 -0.46552,-0.0505 -0.016,-0.24571 -0.0563,-0.48542 -0.0582,-0.73183 -0.007,-0.10043 -0.0222,-0.2024 -0.029,-0.30283 z m -2.18209,0.22711 c 0.0319,0.0155 0.0706,0.0135 0.11638,0.0252 -0.011,0.0504 -0.0259,0.0896 -0.029,0.15142 -0.0246,-0.0577 -0.0611,-0.11786 -0.0872,-0.17665 z m 32.73147,0.55519 c 0.13211,0 0.23276,0.0424 0.23276,0.10095 0,0.0796 0.16174,0.10094 0.61098,0.10094 0.18269,0 0.28539,-0.0149 0.37824,-0.0252 -0.0252,0.0338 -0.029,0.10416 -0.029,0.20189 0,0.13977 0.0509,0.25235 0.11637,0.25235 0.0653,0 0.11638,-0.0682 0.11638,-0.12618 0,-0.0843 0.1884,-0.10094 0.90194,-0.10094 l 0.58189,0 c 0.003,0.0164 -0.003,0.0341 0,0.0505 -0.12645,0.0481 -0.25137,0.10427 -0.37823,0.15141 -0.50608,1.33899 -1.0943,2.66595 -1.86206,3.91156 l 2.153,-0.85802 c 0.005,0.0836 0.029,0.12322 0.029,0.25236 0,0.51531 -0.0293,0.65613 -0.17456,0.65613 -0.12455,0 -0.17457,0.0554 -0.17457,0.22712 0,0.16543 -0.0611,0.25237 -0.17457,0.25237 -0.0927,0 -0.24565,0.027 -0.34914,0.0505 -0.12847,0.0292 -0.19714,-0.0118 -0.20366,-0.10094 -0.007,-0.0997 -0.0353,-0.10575 -0.0872,-0.0252 -0.0374,0.058 -0.1317,0.14766 -0.20367,0.17665 -0.16019,0.0645 0.12684,0.17504 0.43642,0.17665 0.11448,4.9e-4 0.20366,0.0429 0.20366,0.10095 0,0.058 0.10556,0.12618 0.20367,0.12618 0.11901,0 0.17457,0.0614 0.17457,0.20189 0,0.14054 -0.0556,0.20189 -0.17457,0.20189 -0.11776,0 -0.20367,0.0664 -0.20367,0.20187 0,0.30804 -0.10979,0.42902 -0.40732,0.42902 -0.22885,0 -0.28508,0.0522 -0.34913,0.32807 -0.0407,0.1779 -0.0385,0.3671 0,0.40377 0.0384,0.0367 0.0452,0.24966 0,0.47948 -0.0567,0.28851 -0.14674,0.40377 -0.26186,0.40377 -0.10598,0 -0.14547,0.0932 -0.14547,0.22713 0,0.18739 -0.0611,0.20188 -0.37823,0.20188 -0.23785,0 -0.34913,0.0307 -0.34913,0.10095 0,0.058 0.0764,0.10094 0.17456,0.10094 0.13697,0 0.17457,0.10709 0.17457,0.40377 0,0.29669 -0.0376,0.37854 -0.17457,0.37854 -0.11096,0 -0.17456,0.0674 -0.17456,0.17665 0,0.1483 -0.0479,0.17665 -0.34914,0.17665 -0.34254,0 -0.34914,0.004 -0.34914,0.30283 0,0.1556 -0.0247,0.2685 -0.0582,0.3533 -0.51213,0.29258 -1.01444,0.57433 -1.51292,0.88326 -0.23785,0 -0.34914,0.0307 -0.34914,0.10095 0,0.029 0.0259,0.0566 0.0582,0.0757 -0.25134,0.15874 -0.51037,0.3153 -0.75646,0.47948 -0.37536,-0.12772 -0.74223,-0.24827 -1.13469,-0.3533 l 0.84375,-0.3533 c 0.0707,-0.56348 0.15562,-1.12684 0.23275,-1.6908 1.71599,-0.40864 2.33651,-0.80573 2.44395,-1.56463 0.18833,-0.38377 0.12295,-0.98917 0.0872,-2.24599 -0.0598,-1.86665 0.0606,-3.74795 0.32004,-5.60236 0.0308,-0.0382 0.0582,-0.08 0.0582,-0.15142 0,-0.16396 0.0477,-0.20188 0.23275,-0.20188 z m -41.48897,0.10095 c 0.21402,0.1658 0.42587,0.32712 0.66919,0.45424 -0.1727,0.18583 -0.34042,0.35623 -0.46552,0.55519 -0.5274,-0.17093 -1.04242,-0.36216 -1.57111,-0.52995 0.19133,-0.0867 0.37141,-0.14844 0.55279,-0.22712 0.27465,-0.0816 0.54066,-0.16916 0.81465,-0.25236 z m 63.33905,0.30283 c 0.0928,-0.008 0.18173,0.0348 0.26185,0.12618 -0.29007,0.14408 -0.58283,0.28484 -0.87284,0.429 0.0852,-0.12684 0.17696,-0.25153 0.26185,-0.37853 0.12878,-0.0872 0.261,-0.16894 0.34914,-0.17665 z m 6.08078,0.65613 c -0.004,0.15469 0.0644,0.30998 0,0.45425 -0.30756,0.68854 -1.27402,1.8616 -1.80387,2.49835 -0.0421,0.0138 -0.17253,0.0669 -0.20366,0.0757 -0.52697,0.20066 -6.06578,2.29145 -6.5172,2.47312 -0.53333,0.21463 -1.07054,0.43477 -1.60021,0.65614 -0.12843,0.0537 -0.25002,0.12259 -0.37823,0.17664 0,-0.0959 0.073,-0.15141 0.23276,-0.15141 0.066,0 0.10252,-0.006 0.14547,-0.0252 0.0429,-0.019 0.0872,-0.0464 0.0872,-0.0757 0,-0.058 0.0764,-0.10095 0.17457,-0.10095 0.0981,0 0.17457,-0.0429 0.17457,-0.10094 0,-0.058 0.0764,-0.12618 0.17457,-0.12618 0.11896,0 0.17456,-0.0614 0.17456,-0.20188 0,-0.14055 0.0847,-0.20189 0.20366,-0.20189 0.0981,0 0.17457,-0.043 0.17457,-0.10094 0,-0.0703 0.11131,-0.12618 0.34914,-0.12618 0.23786,0 0.34913,-0.0307 0.34913,-0.10095 0,-0.058 0.0892,-0.10032 0.20367,-0.10094 0.1784,-4.9e-4 0.18213,-0.0152 0.029,-0.0757 -0.15571,-0.0614 -0.15242,-0.0629 0.029,-0.12617 0.11448,-0.0399 0.23275,-0.12062 0.23275,-0.17666 0,-0.056 0.0764,-0.10094 0.17457,-0.10094 0.0981,0 0.17456,-0.0682 0.17456,-0.12618 0,-0.058 0.0764,-0.10095 0.17457,-0.10095 0.0981,0 0.17457,-0.0429 0.17457,-0.10094 0,-0.058 0.0764,-0.10094 0.17457,-0.10094 0.0981,0 0.17457,-0.0429 0.17457,-0.10095 0,-0.0368 0.0487,-0.0838 0.11637,-0.10094 0.007,-0.003 0.022,0.004 0.029,0 0.0676,-0.0141 0.15871,-0.0252 0.29096,-0.0252 0.29066,0 0.40732,-0.0273 0.40732,-0.10094 0,-0.0585 -0.10063,-0.10095 -0.23276,-0.10095 0.67046,-0.35024 1.32525,-0.7113 1.97844,-1.08514 0.20931,-0.13749 1.09247,-0.64986 1.16378,-0.90849 0.0647,-0.23441 -0.0986,-0.28942 -0.29094,-0.25236 -0.12591,0.0242 -0.22815,0.0874 -0.34914,0.12618 -0.002,-0.008 0,-0.0165 0,-0.0252 0,-0.0656 0.10598,-0.10094 0.29095,-0.10094 0.0259,0 0.0353,0.002 0.0582,0 0.14094,-0.009 0.23276,-0.0446 0.23276,-0.10094 0,-0.058 -0.0509,-0.10095 -0.11638,-0.10095 -0.0523,0 -0.0715,-0.0591 -0.0872,-0.10094 0.15273,-0.0635 0.19898,-0.0763 0.32004,-0.12618 0.23783,0 0.34914,-0.0306 0.34914,-0.10094 0,-0.009 0.004,-0.0171 0,-0.0252 0.98878,-0.39739 0.72083,-0.25194 2.12391,-0.6309 0.15143,-0.0409 0.28972,-0.0991 0.43641,-0.1514 z m -56.90913,0.0757 c 0.0165,0.0121 0.0108,0.0118 0.029,0.0252 0.21638,0.15981 0.26667,0.33885 0.14548,0.42901 -0.11228,0.0836 -0.12368,0.27527 -0.029,0.42901 0.0653,0.10625 -0.0455,0.32632 -0.20366,0.58042 0.0149,-0.12126 0.0445,-0.24085 0.029,-0.42901 -0.0281,-0.25446 -0.0737,-0.52697 -0.0872,-0.7823 -0.002,-0.0272 5.6e-4,-0.0485 0,-0.0757 0.0346,-0.0147 0.0513,-0.0356 0.0872,-0.0505 5.7e-4,-2.5e-4 0.0274,-0.0757 0.029,-0.12618 z m 0.96013,0.22712 c 0.0495,0.22157 0.078,0.45668 0.11637,0.68137 -0.19882,0.0787 -0.3743,0.17847 -0.5237,0.32806 -0.008,-0.0746 -5.6e-4,-0.15183 -0.029,-0.25235 -0.14049,-0.50264 -0.0945,-0.60074 0.32004,-0.73184 0.0377,-0.0119 0.0779,-0.0144 0.11638,-0.0252 z m 10.18312,0.22712 c 0.45556,-0.0124 0.91223,4.9e-4 1.36745,0 -0.46764,0.0229 -0.91953,0.0439 -1.36745,0 z m -10.79411,0.98425 c -0.007,0.006 0.007,0.0184 0,0.0252 -0.17424,0.31476 -0.2919,0.6451 -0.37823,0.98421 -0.002,-0.11225 -0.0274,-0.18611 -0.0582,-0.22713 0.0185,-0.35967 0.20868,-0.755 0.43642,-0.78231 z m 52.07941,0.0757 c -0.0153,0.10131 -0.0445,0.17665 -0.14547,0.17665 -0.0991,0 -0.17457,0.0481 -0.17457,0.12618 0,0.0391 -0.026,0.0756 -0.0582,0.10095 -0.0824,0.0344 -0.17958,0.041 -0.26185,0.0757 -0.0125,0.007 -0.0208,0.016 -0.029,0.0252 -0.48489,0.20454 -0.97176,0.42292 -1.45473,0.6309 0.0963,-0.0761 0.19705,-0.14864 0.29095,-0.22713 0.25552,-0.13001 0.50152,-0.27298 0.75646,-0.40377 0.41458,-0.19576 0.69358,-0.32913 1.07651,-0.50471 z m 25.60329,0.25236 c 0.5799,0.0252 0.56755,0.13473 -0.029,0.90849 -0.31882,0.41346 -0.79963,0.64436 -1.19288,0.55519 -0.0681,-0.0155 -0.12177,-0.0187 -0.17456,-0.0252 0.19021,-0.2114 0.29282,-0.29847 0.58188,-0.60566 0.27673,-0.27675 0.54247,-0.5524 0.81466,-0.83278 z m -57.84016,0.20189 c 0.0158,0.0427 0.0426,0.0834 0.0582,0.12617 0.0154,0.0495 0.0147,0.10164 0.029,0.15142 -0.43228,0.20465 -0.87553,0.40377 -1.30926,0.60567 -0.0298,-0.0386 -0.0853,-0.0757 -0.14547,-0.0757 -0.0926,0 -0.19458,-0.0274 -0.23276,-0.0757 -0.0554,-0.0703 -0.0898,-0.0703 -0.14547,0 -0.0382,0.0483 -0.20381,0.10031 -0.37823,0.10094 -0.50001,0.002 -0.87284,0.0708 -0.87284,0.17666 0,0.0611 -0.12468,0.10094 -0.34913,0.10094 -0.3171,0 -0.34914,0.0145 -0.34914,0.20189 0,0.14054 0.0557,0.20188 0.17457,0.20188 0.0981,0 0.17457,-0.0431 0.17457,-0.10094 0,-0.0703 0.11126,-0.10094 0.34913,-0.10094 0.31489,0 0.37558,0.0257 0.37824,0.22712 -0.0456,0.0743 -0.0753,0.15163 -0.11638,0.22712 -0.0248,0.0133 -0.0508,0.0252 -0.0872,0.0252 -0.27944,0 -0.21406,0.0831 0,0.12618 -0.0244,0.0489 -0.0355,0.10213 -0.0582,0.15142 -0.11897,0.0521 -0.15555,0.0961 -0.0582,0.12617 -0.12415,0.289 -0.24228,0.58228 -0.32005,0.88326 -0.0314,0.002 -0.05,0 -0.0872,0 -0.27063,0 -0.34663,0.0337 -0.40733,0.17665 -0.0928,0.21848 0.01,0.45263 0.20366,0.45425 0.0887,4.8e-4 0.0766,0.0109 -0.029,0.0505 -0.0985,0.0368 -0.17145,0.2234 -0.20367,0.45425 -0.0573,0.40863 -0.29094,0.54565 -0.29094,0.17665 0,-0.16752 -0.0334,-0.20188 -0.23276,-0.20188 -0.2141,0 -0.24439,0.0369 -0.17457,0.20188 0.0449,0.10628 0.16894,0.22143 0.26186,0.25236 0.23198,0.0771 0.20437,0.45425 -0.029,0.45425 -0.11897,0 -0.17457,0.0866 -0.17457,0.22712 0,0.11595 -0.0509,0.20188 -0.11638,0.20188 -0.0655,0 -0.11638,0.0859 -0.11638,0.2019 0,0.009 5.7e-4,0.0161 0,0.0252 -0.21009,-0.0425 -0.42405,-0.10086 -0.64008,-0.12618 -0.94082,0.55929 -1.91742,1.08106 -2.88037,1.6151 -0.81874,-0.39093 -1.55718,-0.74704 -4.65514,-2.17029 -0.92686,-0.36368 -1.86258,-0.70208 -2.79309,-1.0599 0.0871,-0.0125 0.1557,-0.0252 0.37823,-0.0252 0.42295,0 0.61099,-0.0328 0.61099,-0.10094 0,-0.10504 0.7118,-0.17665 1.65839,-0.17665 0.39281,0 0.59251,-0.053 0.64009,-0.12619 0.043,-0.0661 0.231,-0.10093 0.49461,-0.10093 0.23095,0 0.40732,-0.0145 0.40732,-0.0505 0,-0.0297 0.0924,-0.0552 0.20367,-0.0757 0.19139,0.0263 0.37478,0.042 0.58189,0.0505 0.55566,0.0228 1.1316,0.0193 1.68749,0 0.0714,0.12502 0.24156,0.0971 0.26185,-0.0252 0.71445,-0.02 4.00522,-0.1213 3.34588,-0.95897 0.0582,-0.023 0.11638,-0.071 0.11638,-0.12618 0,-0.0937 0.0742,-0.15141 0.23276,-0.15141 0.13081,0 0.23275,-0.0125 0.23275,-0.0505 0,-0.038 0.12741,-0.10196 0.29095,-0.12619 0.2314,-0.0343 0.29095,-0.0942 0.29095,-0.25235 0,-0.11176 -0.0509,-0.20189 -0.11638,-0.20189 -0.0653,0 -0.11638,0.0741 -0.11638,0.15141 0,0.11374 -0.0704,0.12618 -0.40733,0.12618 -0.29071,0 -0.40732,0.0526 -0.40732,0.12619 0,0.058 -0.10554,0.10094 -0.20367,0.10094 -0.0981,0 -0.17456,0.0371 -0.17456,0.0757 0,0.0386 -0.0764,0.0505 -0.17457,0.0505 -0.0449,0 -0.06,0.0302 -0.0872,0.0505 -0.0584,-0.002 -0.11608,0.002 -0.17457,0 1.02282,-0.50168 2.04471,-1.01848 3.05495,-1.53939 0.14893,-0.0396 0.39774,-0.0899 0.5237,-0.12618 0.52647,-0.0337 1.05428,-0.0844 1.57111,-0.17665 0.52211,-0.15543 0.64075,-0.204 0.90194,-0.3533 z m -20.97723,0.17665 c 0.0193,0.0562 0.0322,0.10531 0.0582,0.15141 -0.0305,0.0264 -0.0567,0.0515 -0.0872,0.0757 0.003,-0.0232 -0.002,-0.0883 0,-0.10094 0.005,-0.0427 0.0235,-0.0835 0.029,-0.12618 z m -2.70581,0.30283 c -0.0217,0.0819 -0.0348,0.17167 -0.0582,0.25235 -0.0294,0.10276 -0.0589,0.14543 -0.0872,0.22713 -0.0769,-0.0276 -0.15587,-0.0483 -0.23276,-0.0757 0.14134,-0.1231 0.27052,-0.24908 0.37823,-0.40378 z m 69.94353,0.0252 c 0.0954,0.0418 0.21371,0.0547 0.32004,0.0757 l -0.20366,0.0758 c -0.17986,0.14757 -0.36753,0.28684 -0.5528,0.42901 -0.14432,0.0386 -0.29225,0.0619 -0.43642,0.10094 0.10367,-0.0866 0.21671,-0.16554 0.32004,-0.25236 0.11469,-0.0934 0.34067,-0.26536 0.5528,-0.429 z m -48.29711,0.37853 c 0.13217,0 0.23276,0.0424 0.23276,0.10094 0,0.0586 -0.10059,0.12619 -0.23276,0.12619 -0.13212,0 -0.23275,-0.0677 -0.23275,-0.12619 0,-0.0585 0.10063,-0.10094 0.23275,-0.10094 z m 32.58601,0.0505 c -0.0378,0.024 -0.0582,0.0733 -0.0582,0.10094 0,0.0585 -0.13999,0.0681 -0.34913,0.0757 0.13599,-0.0567 0.27088,-0.12071 0.40732,-0.17665 z m -71.7765,0.12626 c 0.59354,0.17425 1.18377,0.34912 1.77478,0.52995 -0.05,0.0232 -0.0955,0.0524 -0.14547,0.0757 -0.35909,0.10738 -0.72397,0.21378 -1.0765,0.32807 -0.037,-0.0168 -0.0582,-0.0312 -0.0582,-0.0505 0,-0.0773 -0.11705,-0.15142 -0.26185,-0.15142 -0.0253,0 -0.0385,0.0198 -0.0582,0.0252 -0.0577,-0.25313 -0.11637,-0.50404 -0.17457,-0.75708 z m 22.60654,0.10094 c 0.0649,0.1818 0.14397,0.35462 0.23276,0.52995 -0.10697,0.004 -0.21307,0.0202 -0.32004,0.0252 0.007,-0.0779 0.0222,-0.14917 0.029,-0.22712 0.0231,-0.10464 0.039,-0.22068 0.0582,-0.32807 z m 14.6928,0.15142 c -0.0653,0 -0.14547,0.0859 -0.14547,0.20189 0,0.11593 0.0801,0.22712 0.14547,0.22712 0.0653,0 0.11638,-0.11119 0.11638,-0.22712 0,-0.11595 -0.0509,-0.20189 -0.11638,-0.20189 z m 33.25518,0.12618 c -0.0218,0.0501 -0.029,0.0976 -0.029,0.20189 0,0.10585 -0.0357,0.17697 -0.0582,0.22711 -0.011,0.006 -0.0181,0.0195 -0.029,0.0252 -0.0725,0.0327 -0.36574,0.17362 -0.90194,0.40378 0.0343,-0.0383 0.0919,-0.0856 0.0872,-0.10095 -0.0129,-0.043 -0.0262,-0.11041 -0.0582,-0.15141 0.0802,-0.0903 0.15321,-0.18678 0.23275,-0.27759 0.25225,-0.10934 0.50356,-0.21992 0.75646,-0.32807 z m 26.88345,0.0505 c 0.0137,0.0258 0.01,0.0461 0.029,0.0757 0.18539,0.28545 -0.0747,0.66467 -0.69827,0.98421 -0.0316,0.0161 -0.0564,0.0334 -0.0872,0.0505 0.12879,-0.23463 0.24879,-0.47228 0.37824,-0.70661 0.0834,-0.0889 0.27221,-0.28575 0.37823,-0.40377 z m -73.55126,1.11038 c 0.41534,0.19236 0.8527,0.29775 1.30926,0.3533 -0.2357,0.13896 -0.32929,0.18938 -0.78556,0.45425 -0.047,0.0272 -0.0607,0.0762 -0.0582,0.12618 -0.49244,-0.18753 -0.99036,-0.36953 -1.48383,-0.55519 -0.0135,-0.0494 -0.0374,-0.0721 -0.0582,-0.0252 -0.1155,-0.0435 -0.23358,-0.0828 -0.34913,-0.12618 0.004,-0.069 -0.003,-0.1137 0,-0.17665 0.12628,-0.006 0.25192,-0.02 0.37823,-0.0252 0.34954,-0.01 0.69787,-0.0151 1.04741,-0.0252 z m 29.18193,0.22712 c -5.6e-4,0.12474 5.6e-4,0.25381 0,0.37854 -0.007,0.11782 -0.0236,0.23544 -0.029,0.3533 -0.003,0.0544 -0.043,0.13404 -0.0582,0.20189 -0.0379,-0.01 -0.0711,-0.0194 -0.11638,-0.0252 -0.34737,-0.0451 -0.34913,-0.0491 -0.34913,-0.45425 0,-0.41541 -0.007,-0.42901 0.34913,-0.42901 0.11147,0 0.15043,-0.0133 0.20367,-0.0252 z m -23.56666,0.45425 c 0.058,-0.003 0.1165,0.003 0.17456,0 0.067,0.0173 0.13655,0.0387 0.20367,0.0505 -0.0379,-0.0113 -0.25768,-0.0226 -0.72737,-0.0252 0.11576,-0.009 0.2331,-0.0183 0.34914,-0.0252 z m 38.75406,0.15141 0,0.0757 -0.11637,0 c 0.0323,-0.0225 0.0814,-0.0506 0.11637,-0.0757 z m -41.54715,0.0505 c 0.0272,0.009 0.05,0.0195 0.0872,0.0252 0.11447,0.0177 0.0326,0.0464 -0.17457,0.0505 -0.20712,0.004 -0.38405,0.0346 -0.40733,0.0757 -0.0233,0.0412 -0.27621,0.10421 -0.55279,0.12618 0.27064,-0.0704 0.54344,-0.15868 0.81465,-0.22713 0.081,-0.0198 0.15172,-0.0306 0.23275,-0.0505 z m 25.19596,0.27759 c 0.0653,0 0.11638,0.0682 0.11638,0.12618 0,0.0585 0.12973,0.10094 0.26185,0.10094 0.18498,0 0.23276,0.038 0.23276,0.20189 0,0.14055 0.0557,0.20188 0.17457,0.20188 0.068,0 0.11537,0.0425 0.14547,0.0757 -0.007,0.0308 0.005,0.0472 0,0.0757 -0.0324,0.0485 -0.13212,0.0757 -0.32004,0.0757 -0.35577,0 -0.49088,-0.13016 -0.49461,-0.47948 -5.7e-4,-0.087 -0.0509,-0.15142 -0.11638,-0.15142 -0.0653,0 -0.11638,-0.043 -0.11638,-0.10094 0,-0.058 0.0511,-0.12618 0.11638,-0.12618 z m 1.01831,0.25236 c -0.0123,0.0414 -0.0166,0.0845 -0.029,0.12618 -0.0125,-0.0148 -0.029,-0.0326 -0.029,-0.0505 0,-0.029 0.0259,-0.0566 0.0582,-0.0757 z m 13.81996,0.32807 c -0.003,0.0205 0.005,0.0254 0,0.0505 -0.0364,0.18425 -0.12252,0.25237 -0.29094,0.25237 -0.12364,0 -0.20367,0.043 -0.20367,0.10094 0,0.058 -0.0509,0.10095 -0.11638,0.10095 -0.0126,0 -0.0177,0.0209 -0.029,0.0252 -0.36907,0.16025 -0.73823,0.31623 -1.1056,0.47948 0.29474,-0.14484 0.5752,-0.31441 0.87284,-0.45425 0.10157,-0.0818 0.2097,-0.15828 0.29095,-0.25235 0.19361,-0.0974 0.38828,-0.20547 0.58189,-0.30283 z m -14.57641,0.3533 c 0.0754,-0.0128 0.17648,0 0.29094,0 0.1717,0 0.28572,5e-5 0.34914,0.0252 0.003,0.0157 -0.005,0.0373 0,0.0505 -0.0634,0.0252 -0.17744,0.0505 -0.34914,0.0505 -0.22892,0 -0.43642,-0.0372 -0.43642,-0.0757 0,-0.0193 0.07,-0.0377 0.14548,-0.0505 z m -14.51823,0.15142 c 0.0239,-0.004 0.0387,0.004 0.0582,0 -0.0379,0.38689 -0.0797,0.77591 -0.11638,1.16085 -0.14677,-0.0475 -0.28735,-0.0854 -0.43641,-0.12618 0.0419,-0.15137 0.073,-0.27721 0.11637,-0.30284 0.0684,-0.0404 0.14548,-0.20874 0.14548,-0.37853 0,-0.24964 0.0404,-0.32359 0.23276,-0.3533 z m 14.86736,0.0505 c 0.19619,0 0.34913,0.0371 0.34913,0.0757 0,0.0387 -0.15294,0.0757 -0.34913,0.0757 -0.19623,0 -0.34913,-0.0372 -0.34913,-0.0757 0,-0.0386 0.1529,-0.0757 0.34913,-0.0757 z m 26.27246,0 c 0.0367,0.0237 0.0727,0.0583 0.11638,0.0757 -0.0772,0.0684 -0.15663,0.1326 -0.23276,0.20189 -0.22587,0.20561 -0.68691,0.46039 -0.5237,0.7066 0.0136,0.0205 0.0423,0.0316 0.0582,0.0505 -0.50109,0.0998 -0.87413,0.18207 -1.33835,0.27759 0.55004,-0.37216 1.20361,-0.81309 1.89115,-1.28702 0.0115,-0.004 0.0176,-0.0213 0.029,-0.0252 z m -26.09789,0.20188 c 0.0981,0 0.17456,0.0429 0.17456,0.10095 0,0.0809 0.0543,0.12608 0.11638,0.12617 -0.0103,0.18496 -0.005,0.36891 0,0.50472 -0.16277,0.0128 -0.32936,0.032 -0.49461,0.0252 -0.30972,0.16451 -0.6207,0.33823 -0.93103,0.50472 -0.13645,-0.2481 -0.26408,-0.84908 -0.17456,-1.05991 0.0849,-0.19996 0.29094,-0.27698 0.29094,-0.10094 0,0.058 0.0765,0.12617 0.17457,0.12617 0.0981,0 0.17457,0.043 0.17457,0.10095 0,0.0585 0.12972,0.10094 0.26185,0.10094 0.18497,0 0.23276,-0.0379 0.23276,-0.20189 0,-0.14054 0.0557,-0.22711 0.17457,-0.22711 z m 9.33938,0.52995 c 0.13419,0.0263 0.25393,0.0305 0.37823,0 0.049,0.0147 0.0964,0.0362 0.14547,0.0505 -0.0833,0.0286 -0.19131,0.0547 -0.26185,0.0757 -0.158,0.0621 -0.30773,0.13916 -0.46551,0.20188 0.0716,-0.10798 0.13578,-0.21905 0.20366,-0.32806 z m -10.96868,0.32807 c 0.0584,0 0.13695,0.0429 0.17457,0.10095 0.0417,0.0642 0.019,0.10094 -0.0872,0.10094 -0.0961,0 -0.17457,-0.043 -0.17457,-0.10094 0,-0.058 0.0289,-0.10095 0.0872,-0.10095 z m -80.12665,0.25231 c 0.0431,-0.0112 0.10916,0.002 0.17456,0.0252 0.13081,0.0479 0.23276,0.11734 0.23276,0.15142 0,0.0341 -0.10195,0.0505 -0.23276,0.0505 -0.13081,0 -0.23276,-0.0695 -0.23276,-0.15141 0,-0.0409 0.0151,-0.0644 0.0582,-0.0757 z m 0.40732,0.45425 c 0.13488,-0.0493 0.16847,4.9e-4 0.0872,0.12618 -0.15809,0.24348 -0.32004,0.27786 -0.32004,0.0757 0,-0.0728 0.10343,-0.15465 0.23275,-0.20189 z m 79.37019,0 c 0.0229,-0.0113 0.0252,0 0.0582,0 0.0679,0 0.14443,0.0173 0.17456,0.0505 -0.10706,0.0582 -0.21315,0.11805 -0.32004,0.17665 0.009,-0.11271 0.0327,-0.20007 0.0872,-0.22713 z m -42.79822,2.85165 c 0.48604,0.51044 0.97261,1.02625 1.45473,1.53939 -0.0653,0.0451 -0.13842,0.0811 -0.20367,0.12618 -0.44447,-0.52821 -0.91885,-1.03384 -1.39653,-1.53938 0.046,-0.0419 0.10199,-0.0824 0.14547,-0.12619 z m 41.95447,0.6309 c 0.0125,0.002 0.0179,0.0254 0.029,0.0252 -0.22184,0.11175 -0.44726,0.21645 -0.66918,0.32806 -0.003,-0.007 0.004,-0.0175 0,-0.0252 0.23352,-0.11851 0.42235,-0.21685 0.64008,-0.32808 z m 11.52148,0.10094 c -1.94916,0.84976 -3.85108,1.76847 -5.70254,2.77595 -0.008,0.004 -0.0476,0.0193 -0.0582,0.0252 -0.35881,0.035 -0.71766,0.0662 -1.0765,0.10094 2.25528,-1.00339 4.54774,-1.95808 6.83724,-2.90213 z m -67.38319,0.90849 c 0.0194,4.9e-4 0.0387,-4.8e-4 0.0582,0 0.009,0.0505 0.0197,0.10096 0.029,0.15142 -0.041,4.9e-4 -0.0758,-0.002 -0.11638,0 0.008,-0.0506 0.0212,-0.10078 0.029,-0.15142 z m 13.58719,1.00944 c 0.0374,0.002 0.0797,0.0206 0.11638,0.0252 -0.19065,0.12989 -0.39034,0.24972 -0.58189,0.37854 0.0458,-0.11037 0.30027,-0.41165 0.46551,-0.40377 z m 40.64523,0.12618 c 0.0298,0.0322 0.0448,0.0712 0.0872,0.10094 -0.003,0.009 0.004,0.0161 0,0.0252 -0.008,0.0181 -0.0188,0.0357 -0.029,0.0505 -0.0517,0.0302 -0.0939,0.0705 -0.14547,0.10094 -0.0527,0.0119 -0.10493,-0.004 -0.17456,-0.0252 -0.007,-0.004 -0.0224,0.004 -0.029,0 -0.0208,-0.007 -0.0362,-0.0401 -0.0582,-0.0505 -0.28599,0.14158 0.99158,-0.52099 0.34914,-0.20188 z m 65.40476,0 c 0.39335,0.008 0.86863,0.10814 0.66917,0.25235 -0.16393,0.11854 -0.3208,0.22048 -0.4946,0.32808 -0.41188,-0.27591 -0.68913,-0.52063 -0.49461,-0.5552 0.0848,-0.0151 0.18892,-0.028 0.32004,-0.0252 z m -137.96681,0.3533 c 0.10363,0.20256 0.21543,0.40353 0.32005,0.60566 -0.1701,0.0871 -0.29995,0.1515 -0.49462,0.25236 -0.0591,-0.15616 -0.11637,-0.29867 -0.11637,-0.42901 0,-0.0641 -0.0153,-0.1076 -0.029,-0.15142 0.0979,-0.1138 0.2059,-0.21967 0.32004,-0.27759 z m 71.57283,0.15141 c -0.005,0.11439 -0.005,0.22382 -0.029,0.30283 -0.0135,0.0129 -0.0428,0.0137 -0.0582,0.0252 -0.0222,0.0136 -0.036,0.0369 -0.0582,0.0505 -0.16829,0.0922 -0.44216,0.10107 -0.78556,0.0757 1.35532,-0.67559 0.46133,-0.21848 0.93103,-0.45424 z m -72.18382,0.42902 c 0.0679,0.0941 0.13711,0.19377 0.17458,0.32806 0.004,0.0155 0.024,0.0343 0.029,0.0505 -0.35803,0.18604 -0.93905,0.49348 -1.39655,0.73184 -0.0921,-0.16569 -0.13659,-0.34461 -0.0872,-0.42901 0.0565,-0.0966 0.25087,-0.17665 0.40732,-0.17665 0.23888,0 0.52731,-0.16329 0.87284,-0.50472 z m 70.75818,0.27759 c 0,0.0264 -0.039,0.0512 -0.0582,0.0757 -0.0284,0.007 -0.0545,0.0252 -0.0872,0.0252 -0.0271,0 -0.0339,-0.0203 -0.0582,-0.0252 0.2775,-0.13804 -0.0865,0.0687 0.20366,-0.0757 z m -87.4294,0.10095 c 0.18849,0 0.34913,0.0741 0.34913,0.15141 0,0.0773 -0.22526,0.12618 -0.49461,0.12618 -0.26936,0 -0.42995,-0.0489 -0.34914,-0.12618 0.0808,-0.0773 0.30611,-0.15141 0.49462,-0.15141 z m 83.73438,0.27759 c -0.0367,0.29614 0.0394,0.57242 0.46552,0.78231 0.26309,0.12959 0.86207,-0.0953 1.36744,-0.30283 0.0322,0.24224 0.12854,0.29614 0.26185,0.10095 0.13199,-0.19323 0.40289,-0.35331 0.61099,-0.35331 0.0637,0 0.15169,0.0274 0.23276,0.0757 0.0223,0.0172 0.0323,0.0296 0.0582,0.0505 0.0341,0.0276 0.0582,0.0799 0.0872,0.12617 -0.76736,0.50298 -1.52826,1.00762 -2.26939,1.53939 -0.31066,-0.66861 -0.69566,-1.29833 -1.1056,-1.91792 0.0964,-0.0324 0.19669,-0.0699 0.29095,-0.10095 z m 42.24542,0.37854 c 1.0186,0.12845 2.03739,0.24422 3.05494,0.37854 -1.36739,0.15421 -3.30484,0.95994 -3.95687,1.11037 -0.54401,0.17385 -0.74125,0.23626 -1.10559,0.3533 -0.87137,0.14077 -1.7194,0.28217 -2.58943,0.42902 -0.97709,0.16492 -1.96371,0.35645 -2.93856,0.52995 1.45153,-0.39307 2.90373,-0.79264 4.3351,-1.23656 1.05848,-0.53551 2.13003,-1.04572 3.20041,-1.56462 z m 4.21873,0.52995 c 1.07619,0.14445 2.15448,0.30346 3.22951,0.45424 -0.50638,0.13542 -1.01209,0.25583 -1.51293,0.40378 -0.16473,0.0248 -0.24813,0.0595 -0.26185,0.10094 -0.33178,0.10056 -0.66309,0.19229 -0.98922,0.30283 -0.0458,-0.006 -0.0812,-0.004 -0.11638,0 0.06,-0.18847 0.0888,-0.38178 0.0582,-0.60566 -0.11882,-0.205 -0.1623,-0.46844 -0.34914,-0.63089 -0.0167,-0.0145 -0.0396,-0.0123 -0.0582,-0.0252 z m -45.76587,2.11981 c -0.19553,0.14719 -0.38013,0.31357 -0.5819,0.45425 -0.0861,0.0601 -0.14948,0.096 -0.23276,0.15141 -0.0719,-0.0335 -0.13142,-0.0673 -0.20366,-0.10094 l 1.01832,-0.50472 z m 91.35718,0.60566 c 0.77634,0.0874 1.55174,0.1638 2.32757,0.25236 0.12529,0.018 0.25295,0.0324 0.37823,0.0505 -0.162,0.0909 -0.29177,0.13027 -0.46552,0.22712 0.0385,-0.0422 0.0763,-0.10181 0.0872,-0.12618 -0.005,0.002 -0.0204,-0.004 -0.029,0 -0.0848,0.0435 -0.1503,0.0834 -0.23276,0.12618 0.0394,0.02 0.0915,0.0295 0.11638,0.0505 -0.0503,0.0476 -0.0945,0.0764 -0.14547,0.10095 -0.0312,-0.006 -0.0561,-0.0189 -0.0872,-0.0252 -0.0298,-0.006 -0.0575,-0.0195 -0.0872,-0.0252 0.0688,-0.036 0.13321,-0.0644 0.20366,-0.10094 -0.28747,-0.14575 -0.98903,-0.29297 -2.06571,-0.52996 z m -87.10937,0.15142 c 0.0285,-0.003 0.0588,0.003 0.0872,0 0.005,0.0171 0.0232,0.0331 0.029,0.0505 -0.0283,0.0101 -0.0593,0.0153 -0.0872,0.0252 0.002,-0.0269 -0.0201,-0.0517 -0.029,-0.0757 z m -1.01831,0.10094 c -0.036,0.15527 -0.0526,0.2831 -0.029,0.3533 -0.57732,0.189 -1.1137,0.37266 -1.57111,0.50472 -0.22988,-0.107 -0.53738,-0.23815 -0.78555,-0.3533 0.26628,-0.11385 0.53018,-0.23699 0.78555,-0.35331 0.53294,-0.0604 1.06692,-0.0938 1.60021,-0.15141 z m -66.88859,1.36274 c 0.11226,0.2039 0.23675,0.40179 0.34913,0.60566 -0.14625,0.36454 -0.29378,0.71952 -0.43641,1.08514 -0.76969,0.41493 -1.24098,0.84933 -2.2112,1.71604 -0.052,0.0413 -0.0928,0.0835 -0.14547,0.12618 -0.0305,0.0272 -0.0266,0.0476 -0.0582,0.0757 -0.0737,0.0604 -0.18622,0.1131 -0.26185,0.17666 -0.0648,0.0528 -0.10984,0.12381 -0.17457,0.17665 -0.59305,-0.33126 -1.19077,-0.48473 -1.77477,-0.47948 -0.21756,-0.95772 -0.42827,-1.91548 -0.64008,-2.87689 0.90039,-0.08 1.80543,-0.16265 2.56032,-0.25236 0.93572,-0.1112 1.85998,-0.22444 2.79309,-0.3533 z m -19.81345,0.60566 c 0.0531,0.0163 0.12644,0.0159 0.20366,0.0252 0.0181,0.17639 0.0426,0.35336 0.0582,0.52996 -0.33929,-0.0352 -0.67918,-0.0647 -1.01832,-0.10095 l 0.75646,-0.45424 z m 127.40544,2.85165 c 0.15332,0.0854 0.24566,0.18884 0.17457,0.32807 -0.0998,0.19533 -0.39032,0.26949 -0.58189,0.40377 -0.2025,0.14073 -0.41023,0.2863 -0.61099,0.42901 -0.15818,0.0637 -0.35547,0.14622 -0.64008,0.2776 -0.0147,-0.0419 -0.0676,-0.0767 -0.11638,-0.12618 -0.0245,-0.0249 -0.0356,-0.0326 -0.0582,-0.0505 0.5394,-0.32173 1.08412,-0.64151 1.71659,-1.03467 0.0877,-0.0546 0.1192,-0.13136 0.11638,-0.22712 z m 91.76451,0.12618 c 0.50052,0.0608 0.90469,0.14177 0.96013,0.22712 0.0694,0.1068 0.31576,0.17298 0.5528,0.15142 0.23698,-0.0216 0.5149,0.0405 0.61099,0.12618 0.12197,0.10865 0.17084,0.0974 0.17456,-0.0252 0.002,-0.0966 0.21478,-0.17665 0.46552,-0.17665 0.25073,0 0.50415,-0.08 0.58189,-0.17665 0.0777,-0.0966 0.11283,-0.0225 0.0582,0.15141 -0.0546,0.17392 -0.0149,0.30283 0.0872,0.30283 0.10223,0 0.17457,0.16007 0.17457,0.3533 0,0.19325 -0.12241,0.35331 -0.26185,0.35331 -0.13949,0 -0.0502,0.0884 0.20366,0.20188 0.28474,0.12727 0.36656,0.22471 0.17457,0.22713 -0.1711,0.002 -0.25929,0.0703 -0.17457,0.15141 0.10537,0.10075 0.2652,0.0873 0.49461,-0.0252 0.18459,-0.0904 0.34541,-0.1179 0.34914,-0.0505 0.004,0.0674 0.22822,0.29038 0.4946,0.47949 0.40384,0.28672 0.50073,0.29572 0.69828,0.12618 0.17689,-0.15178 0.19966,-0.10991 0.0872,0.12618 -0.0374,0.0787 -0.0316,0.13097 -0.029,0.17665 -1.20537,-0.31078 -2.40689,-0.63823 -3.60773,-0.95896 -1.12047,-0.39425 -2.22868,-0.80996 -3.34588,-1.21133 0.41939,-0.17247 0.83436,-0.35156 1.25107,-0.52995 z m -139.85795,0.37854 c 0.61106,0.28088 1.21594,0.56193 1.83296,0.83278 0.24638,0.10816 0.54185,0.2358 0.81465,0.3533 -0.25368,0.51172 -0.49816,1.01919 -0.72737,1.53939 -0.28281,0.22822 -0.55264,0.4632 -0.90193,0.73184 -0.22346,-0.69732 -0.43824,-1.39269 -0.64009,-2.09457 0.173,-0.0799 0.35027,-0.14793 0.52371,-0.22713 -0.10063,-0.0401 -0.19605,-0.0972 -0.29095,-0.15142 0.0911,-0.064 0.17059,-0.13816 0.26186,-0.20188 -0.27469,-0.20065 -0.53732,-0.4079 -0.81465,-0.60566 -0.0164,-0.0598 -0.042,-0.11677 -0.0582,-0.17665 z m 0.90193,1.13561 c 0.0763,0.0304 0.14941,0.0653 0.23276,0.0757 0.0928,0.0115 0.17042,-0.26478 0.0872,-0.22712 -0.10824,0.049 -0.21201,0.10207 -0.32004,0.15141 z m 43.84563,0.47948 c -0.0762,0.0766 -0.15672,0.14544 -0.26185,0.17665 0.088,-0.0485 0.17149,-0.12606 0.26185,-0.17665 z m -0.17457,0.50472 c 0.0238,0.0112 0.0334,0.0306 0.0582,0.0505 -0.31499,0.16536 -0.79385,0.40215 -1.25107,0.63089 -0.0557,0.006 -0.11941,-0.0103 -0.17456,0 0.45189,-0.23634 0.90748,-0.45581 1.36744,-0.68137 z m -79.10834,2.59929 c 0.008,0.0177 0.0189,0.0322 0.029,0.0505 0.0518,0.0936 0.10404,0.15809 0.17457,0.20189 -0.01,0.004 -0.0492,0.0207 -0.0582,0.0252 -0.0842,-0.0691 -0.17767,-0.13266 -0.26186,-0.20189 0.0267,-0.0138 0.0895,-0.0619 0.11638,-0.0757 z m 2.2112,1.46369 c 0.0575,0.21924 0.11564,0.43713 0.17457,0.65613 -0.10805,-0.0897 -0.38544,-0.3201 -0.61099,-0.50472 0.14304,-0.053 0.29205,-0.0987 0.43642,-0.15141 z m 18.76604,3.50778 c 0.27429,0.26011 0.55941,0.50464 0.84375,0.75707 -0.1277,0.0975 -0.12569,0.18795 0.0582,0.32807 -0.80137,0.0906 -1.58794,0.18637 -2.38576,0.30283 -0.0401,-0.14415 -0.10376,-0.28516 -0.14547,-0.42901 0.40086,-0.22908 0.80117,-0.45533 1.22198,-0.7066 0.13764,-0.0822 0.26931,-0.17027 0.40731,-0.25236 z m -62.81533,0.12618 0.11638,0 c 0.0675,0.28583 0.1349,0.5724 0.20366,0.85802 -0.0463,-0.002 -0.11875,-0.01 -0.14548,0 -0.11756,0.0429 -0.21567,-0.15029 -0.20366,-0.40378 l 0.029,-0.45424 z m 19.11518,0.0505 c 0.0738,0.0447 0.1297,0.0813 0.20366,0.12617 -0.39567,0.28687 -0.80019,0.56783 -1.19288,0.85802 -0.0793,-0.16026 -0.15474,-0.31876 -0.23276,-0.47948 0.41463,-0.15324 0.81443,-0.33584 1.22198,-0.50471 z m 61.47698,0.20188 c 0.0442,0.0644 0.0719,0.13783 0.11638,0.20189 -0.10601,0.0119 -0.21401,0.0134 -0.32004,0.0252 0.0292,-0.0507 0.0592,-0.12341 0.0872,-0.17665 0.0399,-0.0144 0.0765,-0.0361 0.11638,-0.0505 z m -10.41588,0.15142 c -0.23245,0.11748 -0.35268,0.17147 -0.61099,0.30283 -0.0503,-0.0284 -0.10193,-0.0425 -0.14547,-0.0757 0.1904,-0.0237 0.44879,-0.11785 0.75646,-0.22712 z m -69.76896,0.7066 c 0.0976,0.40329 0.19079,0.80851 0.29095,1.21132 -0.0419,-0.0236 -0.0511,-0.0519 -0.11638,-0.0757 -0.15581,-0.0568 -0.32684,-0.0405 -0.37823,0.0505 -0.0513,0.091 -0.20011,0.17665 -0.32004,0.17665 -0.28732,0 -0.26533,-0.60234 0.029,-1.05991 0.13603,-0.21143 0.25914,-0.2941 0.49461,-0.30283 z m 0.34914,1.41321 c 0.0672,0.26908 0.13529,0.53869 0.20366,0.80755 -0.59528,0.13166 -1.00477,0.18563 -1.25107,0.22712 0.0359,-0.27093 0.11311,-0.54476 0.26185,-0.58042 0.22371,-0.0536 0.2103,-0.0897 -0.0582,-0.20189 -0.28751,-0.12015 -0.23616,-0.1498 0.29095,-0.15142 0.27601,-4.8e-4 0.45241,-0.0515 0.55279,-0.10094 z m 85.56735,1.36273 c 1.33525,-0.68495 -0.34194,0.19763 -2.47305,1.28704 -0.009,-0.009 -0.0202,-0.0163 -0.029,-0.0252 0.83126,-0.42217 1.67304,-0.83649 2.50214,-1.2618 z m -90.77529,2.44789 0.5528,0 -0.66918,0.17665 c -0.0499,0.006 -0.12191,0.0185 -0.17457,0.0252 l 0.29095,-0.20189 z m 68.11056,0.50472 c -0.71168,0.63558 -1.43762,1.26028 -2.15301,1.89269 -0.4963,0.15584 -0.9883,0.32174 -1.48382,0.47948 0.45683,-0.34775 0.92794,-0.75287 1.57111,-1.28704 0.0407,-0.10094 0.0984,-0.20331 0.14547,-0.30283 0.63792,-0.26484 1.2813,-0.51952 1.92025,-0.7823 z m -19.69708,0.45424 c 0.11761,0.0932 0.2311,0.1849 0.34914,0.27759 -2.09878,0.4989 -4.20831,0.98026 -6.31354,1.46369 1.6968,-0.51031 3.41472,-1.01129 5.09157,-1.56463 0.30618,-0.0624 0.54647,-0.10968 0.87283,-0.17665 z m -7.91374,1.89269 c 0.0867,0.0846 0.17534,0.16759 0.26185,0.25236 -0.0386,0.009 -0.0777,0.0164 -0.11638,0.0252 -0.0537,-0.0917 -0.0918,-0.18561 -0.14547,-0.27759 z m 51.70118,0.0252 c 0.0153,0.004 0.0408,-0.004 0.0582,0 l -0.029,0.0252 c -0.008,-0.009 -0.0204,-0.0161 -0.029,-0.0252 z m -50.62468,0.37854 c 0.0939,0.1406 0.18677,0.29544 0.20367,0.45424 0.0163,0.15288 -0.57491,-0.20721 -0.43643,-0.30282 0.0755,-0.0522 0.15676,-0.0998 0.23276,-0.15142 z m -37.70666,1.28702 c 0.0688,0.0526 0.14174,0.093 0.20366,0.15142 -0.0788,-0.004 -0.15379,-0.0208 -0.23275,-0.0252 0.012,-0.0387 0.005,-0.0848 0.029,-0.12618 z m 46.66782,0.85748 c -0.14504,0.19917 -0.28746,0.39481 -0.40733,0.60566 -3.7614,0.75745 -5.59552,1.13555 -5.81893,1.91793 -0.55556,-0.17207 -1.1454,-0.35381 -1.74568,-0.58043 2.65972,-0.63918 5.31507,-1.29511 7.97194,-1.94316 z m 24.09036,2.77594 c -0.5511,0.95377 -1.32437,1.77956 -2.24029,2.52359 -0.36872,0.29389 -0.75747,0.5726 -1.1347,0.85802 -0.53897,0.26591 -1.07079,0.50588 -1.5711,0.75707 0.4168,-0.50102 0.8752,-0.9815 1.28017,-1.48891 0.74853,-0.94028 0.83977,-1.06868 1.42563,-1.84222 0.4991,-0.2917 0.75146,-0.43258 1.13469,-0.65613 0.36948,-0.0549 0.73188,-0.11203 1.1056,-0.15142 z m 11.60876,3.40689 c 0.5262,0.19249 1.03939,0.36698 1.54202,0.55518 -0.93451,0.31086 -1.72005,0.55214 -2.38576,0.73184 -0.1528,-0.0644 -0.3763,-0.0899 -0.64008,-0.12618 0.0311,-0.0232 0.0563,-0.0525 0.0872,-0.0757 0.17658,-0.15025 0.37789,-0.28093 0.5237,-0.45425 0.2914,-0.20896 0.58386,-0.41949 0.87283,-0.63089 z m -5.29522,0.17665 c -0.44559,0.32867 -0.88715,0.66161 -1.33836,0.98419 -0.0375,-0.0185 -0.0893,-0.0396 -0.14547,-0.0505 0.0281,-0.0233 0.11173,-0.0971 0.11638,-0.10095 0.32603,-0.16056 0.46726,-0.37359 0.49461,-0.58043 0.13379,-0.0427 0.27411,-0.0823 0.40732,-0.12617 0.15778,-0.038 0.30759,-0.0888 0.46552,-0.12618 z m 2.85127,0.25235 -1.01832,0.73184 c -0.0259,0.004 -0.12901,-0.004 -0.14546,0 0.012,0.006 0.0255,0.0431 0.0582,0.0505 l -0.0872,0.0505 c -0.3906,0.21003 -0.79068,0.39656 -1.19288,0.58043 0.41097,-0.22608 0.82056,-0.44309 1.22197,-0.68137 0.39389,-0.23381 0.78132,-0.48354 1.16379,-0.73184 z m -4.39329,0.85802 c -0.10068,0.0718 -0.19017,0.15547 -0.29095,0.22713 -0.0952,0.0362 -0.19578,0.0648 -0.29095,0.10094 0.0886,-0.0718 0.21169,-0.16502 0.37824,-0.30283 0.0735,-0.002 0.14738,-0.0188 0.20366,-0.0252 z m -109.48315,0.58043 c -0.03,0.0161 -0.0573,0.0343 -0.0872,0.0505 -0.0283,-0.01 -0.0605,-0.0162 -0.0872,-0.0252 0.0577,-0.01 0.11686,-0.0157 0.17456,-0.0252 z m 70.40904,0.0505 c 0.15835,0.0212 0.32285,0.0299 0.5528,0 0.0394,-0.004 0.079,0.004 0.11638,0 -0.42783,0.25029 -0.80539,0.45397 -1.07651,0.60566 -0.17774,-0.0802 -0.32681,-0.13609 -0.58188,-0.25236 0.32844,-0.12228 0.65838,-0.23676 0.98921,-0.3533 z m 41.77991,0.0252 c -0.3005,0.21712 -0.60328,0.43754 -0.90194,0.65613 -0.87378,0.62583 -1.75981,1.25133 -2.61851,1.89269 -0.18109,0.13526 -0.75839,0.44294 -0.5237,0.40377 0.0747,-0.0125 0.10533,-0.0137 0.17457,-0.0252 -0.049,0.0331 -0.0962,0.0682 -0.14548,0.10094 -0.0965,0.0527 -0.39489,0.19219 -0.29094,0.15141 0.28276,-0.11097 0.56061,-0.21752 0.84374,-0.32807 -0.11275,0.0599 -0.19061,0.14676 -0.32004,0.20189 -0.62846,0.26766 -0.91659,0.72094 -0.93102,1.26179 -0.40563,-0.2312 -0.81161,-0.4565 -1.22199,-0.68136 0.23408,-0.14242 0.4745,-0.31195 0.84375,-0.55519 1.50104,-1.04124 3.08462,-2.01277 4.71333,-2.90213 -0.002,0.002 0.14449,-0.062 0.17457,-0.0757 0.0658,-0.0357 0.13769,-0.0655 0.20366,-0.10094 z m -38.78316,0.0252 c 0.17665,0.0193 0.34809,0.0415 0.5237,0.0505 -0.0452,4.4e-4 -0.0801,0.0104 -0.14547,0.0252 -0.20156,0.0457 -0.34913,0.016 -0.34913,-0.0505 0,-0.009 -0.02,-0.0153 -0.029,-0.0252 z m 1.51292,0.0252 c 0.0606,0.0827 0.13392,0.1847 0.20367,0.2776 -0.0952,0.0125 -0.19501,0.0477 -0.29095,0.0505 -0.57249,0.0162 -0.77653,-0.0397 -0.72737,-0.17665 0.022,-0.0614 -0.007,-0.10746 -0.0582,-0.12618 0.29347,0.0108 0.58636,0.002 0.87283,-0.0252 z m -76.37344,0.1263 c -0.23904,0.22366 -0.54022,0.55846 -1.01831,1.05991 -0.58879,0.14114 -1.17141,0.27169 -2.153,0.52996 0.57455,-0.41524 1.16667,-0.82579 1.74567,-1.23656 0.17332,-0.0526 0.34964,-0.13378 0.5528,-0.20189 0.27451,-0.0548 0.56885,-0.0952 0.87284,-0.15142 z m 109.7741,0 c -0.3035,0.19767 -0.60155,0.40383 -0.90194,0.60566 -0.27391,0.10716 -0.47963,0.1811 -0.78555,0.30283 0.004,-0.0212 0.0136,-0.0521 0.029,-0.0757 0.37127,-0.18394 1.05476,-0.53325 1.65839,-0.83278 z m -35.81551,0.17665 c 0.0801,0.0703 0.0743,0.12183 -0.0582,0.12618 -0.2418,0.008 -0.24451,0.0243 -0.029,0.0757 0.1635,0.039 0.29095,0.14852 0.29095,0.25236 0,0.0519 0.0409,0.10699 0.11637,0.15141 -0.4684,-0.006 -0.92821,-0.0391 -1.39654,-0.0505 0.36031,-0.18338 0.71766,-0.36949 1.0765,-0.55519 z m 0.75646,0.17666 c 0.0624,-0.0368 0.18439,0.007 0.26185,0.12617 0.16084,0.24761 0.002,0.29993 -0.23276,0.0757 -0.0863,-0.0824 -0.0915,-0.16507 -0.029,-0.20189 z m -38.78316,0.0757 c 0.14808,0.17859 0.31488,0.35289 0.46551,0.52996 l -0.64008,0.27759 c 0.0259,-0.0932 0.0444,-0.17756 0.029,-0.25236 -0.0515,-0.2513 -0.0154,-0.43749 0.14547,-0.55519 z m 68.95431,0.9842 c -0.26079,0.26745 -0.50229,0.55794 -0.46552,0.88325 -0.0899,-0.0654 -0.17167,-0.13673 -0.26185,-0.20188 0.23335,-0.29135 0.48927,-0.51711 0.72737,-0.68137 z m -12.97621,0.0505 c -0.0247,0.0355 -0.0628,0.0652 -0.0872,0.10095 -0.10048,0.14689 -0.17364,0.30157 -0.26184,0.45424 -0.0851,-0.11932 -0.17653,-0.23409 -0.26186,-0.3533 0.18897,-0.0659 0.4372,-0.14124 0.61099,-0.20189 z m 12.16156,0.0757 c -0.0487,0.0679 -0.0909,0.13947 -0.14548,0.20189 -0.0348,0.0398 -0.0541,0.0645 -0.0872,0.10094 -0.0907,-0.0649 -0.2,-0.11195 -0.29094,-0.17665 0.17304,-0.0482 0.35007,-0.0797 0.5237,-0.12618 z m -91.09534,1.31227 c -4.78568,1.19223 -9.62401,2.24596 -14.48913,3.17971 0.2482,-0.1749 0.60637,-0.46398 0.93102,-0.73184 0.33972,-0.20263 0.68164,-0.3992 1.01832,-0.60566 1.50432,-0.25009 3.02873,-0.5078 4.53877,-0.73184 2.67043,-0.37479 5.32757,-0.74094 8.00102,-1.11037 z m -22.49016,1.0599 c -0.95311,0.496 -1.88009,1.01799 -2.79308,1.56462 -0.29002,0.0376 -0.58289,0.063 -0.87284,0.10095 0.29766,-0.141 0.60353,-0.26364 0.90193,-0.40378 0.33555,-0.10195 0.64928,-0.20528 0.96013,-0.3533 0.60746,-0.28924 1.20355,-0.60833 1.80386,-0.90849 z m -18.38781,0.0505 c -0.83069,0.45837 -1.71736,0.93863 -2.90947,1.58987 -0.22595,0.12341 -0.27415,0.35463 -0.26185,0.58042 -0.88519,0.25291 -1.76792,0.51568 -2.64761,0.78231 0.22959,-0.13662 0.4456,-0.2853 0.66918,-0.42901 0.18321,-0.11776 0.35237,-0.24791 0.5237,-0.37854 0.0569,-0.0313 0.12378,-0.0849 0.17457,-0.12617 0.2259,-0.1769 0.4687,-0.35705 0.69827,-0.52996 0.0342,-0.13752 0.0908,-0.26662 0.14547,-0.40377 0.20764,0.2394 0.4413,0.18661 1.19288,-0.22713 0.54909,-0.30226 1.2581,-0.55519 1.57111,-0.55519 0.17028,0 0.41508,-0.11648 0.69828,-0.27759 0.0475,-0.0115 0.098,-0.0137 0.14547,-0.0252 z m 62.40801,0.80755 c -0.0134,0.0288 -0.0351,0.0519 -0.0582,0.0757 -0.0463,0.0479 -0.26548,0.0828 -0.20366,0.0505 0.0854,-0.0446 0.17643,-0.0816 0.26186,-0.12618 z m -46.63872,3.02831 c 0.0188,0.0453 0.0563,0.0808 0.0872,0.12617 -0.64905,0.10974 -1.30014,0.22002 -1.94934,0.32807 -2.04587,0.32814 -4.0888,0.64861 -6.13897,0.95897 0.22973,-0.126 0.60783,-0.33385 0.87284,-0.47949 2.3709,-0.32663 4.74927,-0.65143 7.12819,-0.93372 z m 87.57489,1.31226 c 0.70906,0.0157 1.41299,0.0176 2.1239,0.0252 0.16507,-4.3e-4 0.32955,4.9e-4 0.49461,0 -0.1126,0.31261 -0.17303,0.63775 -0.17457,0.93373 -0.26956,-0.0183 -0.54502,-0.0286 -0.81465,-0.0757 -0.82683,-0.11084 -1.64847,-0.2334 -2.47304,-0.3533 l 0.84375,-0.52995 z m -120.85916,0.3028 c -0.42213,0.20511 -0.82986,0.42442 -1.25107,0.63089 -0.38886,0.004 -0.77499,-0.003 -1.16379,0 0.80669,-0.20124 1.61103,-0.41147 2.41486,-0.63089 z m 195.42873,0.27768 c 2.40846,0.88234 4.81301,1.77986 7.21547,2.67499 0.74052,0.38313 1.55128,0.74504 2.15301,1.03468 0.11789,0.0517 0.23125,0.0997 0.34913,0.15141 -4.04415,-0.16138 -8.09842,-0.35696 -12.13247,-0.65613 -1.17036,-0.0868 -2.33123,-0.18197 -3.49135,-0.30284 1.99199,-0.93246 3.94036,-1.92751 5.90621,-2.90211 z m -200.86943,1.11037 -0.37822,0.25236 c -0.10707,-0.0221 -0.21413,-0.0422 -0.32005,-0.0757 0.23259,-0.0598 0.46566,-0.11695 0.69827,-0.17665 z m -1.33835,0.35331 c 0.17916,0.3053 -0.0495,0.53203 -0.75646,0.7066 -0.88235,0.21787 -0.79376,0.22972 0.26185,0.15141 l -0.23276,0.15142 c -0.0933,-0.059 -0.17528,-0.11951 -0.26185,-0.0757 -0.31254,0.15807 -0.62228,0.31605 -0.93102,0.47948 -0.0682,-0.0151 -0.13545,-0.0354 -0.20367,-0.0505 0.0439,-0.10447 0.0605,-0.25108 0.0582,-0.45425 -0.002,-0.19968 -0.0158,-0.29397 -0.0582,-0.3533 0.70873,-0.18488 1.41464,-0.3722 2.12391,-0.55519 z m 190.51173,0.37857 c 0.30282,-0.0191 0.86122,0.0228 0.81465,0.0505 -0.1222,0.0728 -0.25464,0.13099 -0.37823,0.20189 -0.71495,-0.17614 -0.70304,-0.23551 -0.43642,-0.25237 z m -39.1323,0.10094 c 0.0408,0.0396 0.1718,0.17095 0.20367,0.20189 0.34845,0.32192 0.69582,0.63949 1.04741,0.95896 -0.54504,-0.31761 -1.08351,-0.64238 -1.62931,-0.95896 l 0.37823,-0.20189 z m -153.88157,0.20189 c -0.19064,0.17806 -0.29434,0.41198 -0.26186,0.55519 -0.0387,-0.008 -0.0775,-0.0171 -0.11637,-0.0252 -0.10927,-0.0216 -0.54437,-0.12237 -0.96012,-0.20189 0.4439,-0.11712 0.89413,-0.2119 1.33835,-0.32806 z m -2.12391,1.05991 c -0.0762,0.0436 -0.15635,0.0829 -0.23276,0.12618 -0.009,-0.01 -0.0207,-0.0146 -0.029,-0.0252 0.0853,-0.0316 0.19719,-0.0644 0.26186,-0.10094 z m 27.7272,3.28066 c 0.0179,0.0476 0.0162,0.0948 -0.029,0.15141 -0.20369,0.0446 -0.40271,0.13601 -0.61099,0.20189 0.18256,-0.0928 0.43048,-0.24467 0.64008,-0.3533 z m 145.35684,0.0252 c 3.95766,2.44638 7.85402,4.97914 11.63786,7.62123 -0.90697,0.31097 -1.32544,0.47662 -1.25107,0.73184 -0.51346,-0.4895 -1.00984,-1.01486 -1.57111,-1.48892 -1.64107,-1.43718 -3.43325,-2.69841 -5.17885,-4.03774 -1.25933,-0.90463 -2.50001,-1.83428 -3.72411,-2.77594 0.0288,-0.0183 0.0587,-0.032 0.0872,-0.0505 z m -183.38355,1.18608 c 0.11607,-0.003 0.23308,0.002 0.34914,0 -0.18228,0.0328 -0.37047,0.0431 -0.5528,0.0757 0.0651,-0.0284 0.13861,-0.0463 0.20366,-0.0757 z m -2.153,0.0505 c 0.12577,-0.004 0.25247,0.004 0.37823,0 0.32201,0.0627 0.50239,0.11769 0.78556,0.17665 -1.21975,0.21658 -2.44437,0.42215 -3.66593,0.6309 -0.24151,-0.004 -0.4858,-3.4e-4 -0.72737,0 -0.0608,1.2e-4 -0.16143,-0.0218 -0.26185,-0.0252 -0.43162,0.21736 1.9847,-0.99183 1.36745,-0.68137 0.007,-0.004 0.0219,0.004 0.029,0 0.69737,-0.0306 1.39732,-0.0753 2.09482,-0.10094 z m -2.21119,0.10094 c -0.5313,0.25599 -1.02094,0.47538 -1.45473,0.68137 -0.36244,-0.004 -0.74915,0.0425 -0.61099,0.27759 -0.0571,0.0269 -0.11946,0.0497 -0.17457,0.0757 -1.24107,0.20776 -2.4813,0.43094 -3.72411,0.63089 -1.02159,0.16435 -2.02435,0.36375 -3.05494,0.50472 0.51772,-0.18852 0.84585,-0.3134 1.57111,-0.58043 1.31373,-0.48199 2.65889,-0.93714 3.98596,-1.38797 0.1647,-0.0153 0.32979,-0.0354 0.49462,-0.0505 0.0266,-0.0133 0.0316,-0.0119 0.0582,-0.0252 0.007,-0.004 0.0218,0.004 0.029,0 0.52889,-0.0167 1.04583,-0.0367 1.57111,-0.0757 0.43555,-0.0201 0.87365,-0.0313 1.30926,-0.0505 z m 21.00634,3.02831 c 0.18236,0.003 0.37028,0.0173 0.55279,0.0252 0.0842,0.004 0.19492,0.0208 0.29095,0.0252 -0.14143,0.18001 -0.28526,0.34601 -0.40733,0.52995 -0.11559,-0.20344 -0.26588,-0.39968 -0.43641,-0.58042 z m 264.06299,0.12618 c 2.49957,0.0149 5.00698,0.0235 7.50642,0.0505 -1.14785,0.6296 -2.12522,1.34296 -2.85128,2.17029 -1.78745,-0.30473 -3.56807,-0.59412 -5.35342,-0.90849 0.005,-0.008 -0.008,-0.0175 0,-0.0252 0.0851,-0.0814 -0.29075,-0.17302 -0.90193,-0.22713 -0.20997,-0.0186 -0.39002,-0.0563 -0.5237,-0.0757 0.71208,-0.32489 1.41834,-0.6495 2.12391,-0.9842 z m -266.36147,0.0505 c -0.0644,0.15846 -0.15836,0.31319 -0.26186,0.55519 -0.32411,0.20914 -0.53465,0.019 -0.66917,-0.32807 -0.22232,0.10931 -0.4479,0.21712 -0.66918,0.32807 0.24698,-0.1679 0.4517,-0.29648 0.64008,-0.42901 -0.005,-0.0161 -0.0241,-0.0338 -0.029,-0.0505 0.0488,-0.004 0.0967,-0.0215 0.14548,-0.0252 -0.032,0.0226 -0.0825,0.0519 -0.11638,0.0757 0.0118,0.0369 0.0159,0.0669 0.029,0.10094 0.14366,-0.0707 0.29227,-0.13202 0.43642,-0.20188 0.16405,-0.0117 0.3305,-0.0144 0.49461,-0.0252 z m 238.16875,1.00944 c 0.0377,-0.002 0.081,0.004 0.11638,0 0.0594,0.0228 0.11516,0.0529 0.17457,0.0757 0.25029,0.096 0.50604,0.18191 0.75646,0.2776 -0.39163,-0.0533 -0.69391,-0.0999 -0.64008,-0.15142 0.0345,-0.033 -0.009,-0.0876 -0.11638,-0.12618 -0.0676,-0.0244 -0.18359,-0.0552 -0.29095,-0.0757 z m -256.70205,2.3217 c -0.4425,0.38343 -0.91303,0.74023 -1.39653,1.08514 -0.0579,-0.0497 -0.1427,-0.10094 -0.20367,-0.10094 -0.20457,0 -0.34914,-0.24601 -0.34914,-0.55519 0.25038,-0.0608 0.50649,-0.11467 0.75646,-0.17666 0.0245,0.009 0.032,0.0161 0.0582,0.0252 0.0376,0.0132 0.1089,0.006 0.17456,0 0.0724,0.0803 0.2402,0.0969 0.43643,0.0252 0.0928,-0.034 0.15935,-0.12181 0.23276,-0.20188 0.0879,-0.03 0.19655,-0.0658 0.29094,-0.10094 z m -3.37498,0.75707 c -0.002,0.0153 -1.6e-4,0.0354 0,0.0505 0.005,0.44704 0.11918,0.49571 0.40734,0.22713 0.23246,-0.21668 0.41105,-0.13717 0.58188,0.22712 -0.77382,0.14273 -1.46565,0.34156 -1.51291,0.3533 -0.0502,0.0125 -0.0954,0.0379 -0.14548,0.0505 0.007,-0.0858 0.0101,-0.17532 0.029,-0.27759 0.0397,-0.21256 0.0517,-0.38159 0.0582,-0.50472 0.19268,-0.0437 0.38953,-0.0816 0.58189,-0.12618 z m 28.8328,0.22713 c 0.15596,-0.0675 0.0878,0.31186 0.029,0.45424 -0.0212,0.0514 -0.14138,-0.0171 -0.20367,-0.0252 -0.0688,-0.0864 -0.11267,-0.18741 -0.17457,-0.27759 0.11567,-0.0519 0.23257,-0.10094 0.34914,-0.15141 z m -20.77357,0.88325 c 0.0374,0.12474 0.0778,0.25393 0.11637,0.37854 0.44932,0.5758 1.05197,0.72478 1.68749,0.7066 -0.0435,0.1141 -0.0945,0.22882 -0.11638,0.3533 -0.0189,0.10718 -0.0419,0.16569 -0.0582,0.25236 -0.0519,0.0441 -0.0659,0.0579 -0.11638,0.10095 -2.57466,1.03308 -5.18414,2.24211 -6.80815,3.35637 -0.0149,-0.01 -0.0423,-0.0154 -0.0582,-0.0252 1.18232,-0.95916 2.31972,-1.94177 3.34589,-3.0283 0.64537,-0.71256 1.29606,-1.43493 2.00753,-2.09458 z m 185.18741,2.11982 c 0.32216,0.31521 0.65009,0.61031 0.98922,0.90849 -0.37541,-0.24548 -0.76081,-0.48463 -1.1347,-0.73184 0.0462,-0.0493 0.0973,-0.12538 0.14548,-0.17665 z m 3.14222,2.29646 c 1.05989,0.45787 2.15925,0.84764 3.22951,1.28703 0.25569,0.10498 0.50219,0.22118 0.75645,0.32807 -0.30691,0.0846 -0.55173,0.34338 -0.58189,0.58042 -1.13989,-0.72515 -2.26886,-1.46497 -3.40407,-2.19552 z m -188.44601,1.5899 c -0.0192,0.0254 -0.0297,0.0589 -0.0582,0.0757 -0.0394,0.0234 -0.0839,0.0323 -0.11638,0.0252 0.0616,-0.0264 0.11386,-0.0744 0.17457,-0.10094 z m -22.11194,0.30283 c -0.14123,0.14792 -0.26217,0.25708 -0.96012,0.9842 -0.16143,0.16331 -0.33095,0.31791 -0.49461,0.47948 -0.6876,0.26919 -1.37657,0.54135 -2.06572,0.80754 -2.67745,1.03424 -5.32943,2.11002 -8.1465,2.80119 0.88457,-0.3801 1.70804,-1.06454 2.29848,-1.41321 0.0446,-0.0264 0.0981,-0.0512 0.14547,-0.0757 1.59549,-0.29307 2.94807,-1.25242 4.42238,-1.86745 1.51442,-0.54486 3.01257,-1.12079 4.53877,-1.64033 0.0673,-0.0229 0.19066,-0.0517 0.26185,-0.0757 z m 214.80576,0.40377 c 0.0996,4e-4 0.22749,0.0221 0.34914,0.0505 l -0.029,0.0252 0.66918,0.47947 c 0.41204,0.28539 0.83613,0.57509 1.25106,0.85803 0.68344,0.54836 1.40218,1.05536 2.12392,1.56462 0.45457,0.40381 1.00305,0.79514 1.39654,0.95897 0.062,0.0258 0.11564,0.0471 0.17457,0.0757 0.0107,0.007 0.0183,0.0181 0.029,0.0252 0.25713,0.19803 0.50118,0.40577 0.75646,0.60567 0.005,0.0184 0.029,0.034 0.029,0.0505 0,0.042 0.0316,0.0886 0.0582,0.12618 -2.40127,-1.58394 -4.8401,-3.12084 -7.27366,-4.66863 0.0475,-0.0232 0.0873,-0.0414 0.14548,-0.0757 0.0822,-0.0486 0.19471,-0.0762 0.32003,-0.0757 z m -199.61835,0.30283 c -0.40692,0.15862 -0.81622,0.31858 -1.22198,0.47949 0.0884,-0.0756 0.17302,-0.152 0.26186,-0.22713 0.3264,-0.0847 0.67272,-0.16115 0.96012,-0.25236 z m -9.28119,1.46368 c -0.0343,0.0222 -0.0218,0.0364 -0.0872,0.0757 -0.36239,0.21733 -0.7503,0.41701 -1.13469,0.60566 -0.009,-0.0162 -0.0196,-0.0334 -0.029,-0.0505 0.55059,-0.28801 1.02906,-0.52674 1.25107,-0.63089 z m 0.23275,0.65613 c 0.1284,-0.0139 0.25509,-0.003 0.37823,0.0252 0.0762,0.0177 -0.0471,0.11778 -0.0872,0.17664 -0.17576,0.25782 -0.35012,0.51459 -0.5528,0.75709 -0.32019,0.38307 -0.64356,0.76871 -0.98922,1.13561 -0.1142,0.1033 -0.20639,0.22429 -0.32004,0.32807 -0.39758,0.108 -0.80582,0.2305 -1.13469,0.32806 -0.60572,0.23318 -1.20037,0.46924 -1.80387,0.70661 0.10337,-0.16072 0.21694,-0.31879 0.32004,-0.47948 0.4841,-0.68343 0.93085,-1.3746 1.39655,-2.06935 0.27039,-0.12327 0.576,-0.28433 0.75645,-0.3533 0.60621,0.056 0.82401,0.0567 0.72737,-0.22712 0.30954,-0.0941 0.62277,-0.18076 0.93103,-0.2776 0.12734,-0.006 0.24984,-0.0365 0.37823,-0.0505 z m 215.7077,2.57406 c 0.0589,0.0218 0.13308,0.0385 0.20367,0.0505 0.23146,0.17893 0.46668,0.35112 0.69826,0.52995 -0.29616,-0.19785 -0.60465,-0.38382 -0.90193,-0.58042 z m -229.38218,1.48892 c -0.54389,0.44917 -1.08224,0.89208 -1.6293,1.3375 0.0641,0.0183 0.0915,0.0297 0.11638,0.0505 -0.0806,0.0378 -0.1517,0.0891 -0.23276,0.12617 -1.56082,0.71445 -3.12385,1.42976 -4.68424,2.14505 0.65479,-0.37861 1.31247,-0.76677 1.94934,-1.1356 1.49793,-0.84119 2.98466,-1.67951 4.48058,-2.5236 z m 13.20897,3.07878 c 0.19995,-0.002 0.43887,0.0168 0.75646,0.0252 0.49731,0.0132 0.58797,0.0667 0.23276,0.15141 -0.28456,0.0678 -0.45196,0.15785 -0.52371,0.25236 -0.4155,0.092 -0.83864,0.17555 -1.25107,0.2776 0.0891,-0.0836 0.16042,-0.1746 0.14548,-0.25236 0.21544,-0.14958 0.42535,-0.30389 0.64008,-0.45425 z m 226.5309,0.90849 c 0.15893,0.20533 0.33582,0.40024 0.49461,0.60566 -0.3659,-0.0997 -0.74402,-0.24158 -1.0765,-0.37854 0.19961,-0.0734 0.38853,-0.1432 0.58189,-0.22712 z m -239.97263,1.11037 c -0.0799,0.12375 -0.30101,0.44069 -0.40732,0.60567 -3.01259,1.56739 -5.8154,3.48549 -8.58292,5.27429 6e-5,-0.12633 -0.025,-0.25193 -0.0291,-0.37854 1.98966,-1.36816 4.12654,-2.85742 6.40082,-4.44151 0.87419,-0.35764 1.74155,-0.70763 2.61852,-1.05991 z m 241.8056,1.2618 c 0.26222,0.33898 0.55183,0.67082 0.81465,1.00943 -0.0623,0.003 -0.12647,0.008 -0.20366,0.0252 -0.23987,0.0544 -0.37853,0.0355 -0.49461,-0.0252 -0.0243,-0.0207 -0.063,-0.0299 -0.0872,-0.0505 -0.0863,-0.0955 -0.14547,-0.24367 -0.14547,-0.47948 0,-0.2206 0.044,-0.38019 0.11638,-0.47948 z m -250.91222,0.17665 c -0.47121,0.37898 -0.92986,0.77769 -1.36745,1.18609 -0.0494,0.0235 -0.096,0.0521 -0.14547,0.0757 -0.28916,-0.082 -0.60428,-0.13631 -0.96013,-0.12618 0.82405,-0.38091 1.64966,-0.75368 2.47305,-1.13561 z m 17.8932,1.18609 c -0.0674,0.03 -0.14083,0.0657 -0.20366,0.10094 -1.09919,0.61594 -2.0967,1.45847 -3.11312,2.17028 -0.26394,0.17217 -0.52373,0.35504 -0.78556,0.52995 0.17083,-0.41642 -0.23778,0.36262 0.5528,-1.11037 0.24381,-0.36948 0.52612,-0.72218 0.78556,-1.08515 0.91303,-0.22665 1.83344,-0.44025 2.76398,-0.60565 z m 234.15371,0.10094 c 0.0538,0.0692 0.12068,0.13269 0.17456,0.20188 -0.0769,0.10579 0.0906,0.26084 0.37824,0.50472 0.0494,0.16791 0.0962,0.33676 0.14547,0.50472 -0.31235,-0.32616 -0.59507,-0.6752 -0.93103,-0.9842 0.11057,-0.0739 0.17805,-0.14921 0.23276,-0.22712 z m 1.36745,3.38161 c 0.002,0.008 -0.002,0.0173 0,0.0252 -0.0964,0.0427 -0.19456,0.0836 -0.29095,0.12618 0.0985,-0.0489 0.19229,-0.10286 0.29095,-0.15142 z m -0.17457,3.53302 c -0.86264,0.44132 -1.72471,0.87401 -2.58943,1.31226 0.83439,-0.45894 3.24551,-1.64791 2.58943,-1.31226 z m -261.09535,1.46368 c -0.007,0.0419 -0.022,0.0843 -0.0291,0.12617 -0.10244,0.0702 -0.21943,0.15799 -0.32004,0.22713 -0.6924,0.47579 -1.37599,0.95926 -2.06572,1.43844 0.80165,-0.5934 1.60783,-1.20372 2.41485,-1.79174 z m 259.757,0.80755 c -0.007,0.0155 0.007,0.0348 0,0.0505 -0.21874,0.55469 -0.55193,1.26427 -0.64009,1.91793 -1.19263,0.61792 -2.36649,1.23614 -3.54954,1.86746 -0.1974,0.10533 -0.58784,0.32741 -0.96012,0.55519 1.75835,-1.41932 3.48436,-2.88569 5.14975,-4.39104 z m -14.92556,1.43844 c -0.55171,0.52452 -1.09922,1.04559 -1.65839,1.56463 -2.31919,1.3819 -4.69805,2.68795 -7.0409,4.03773 -0.54686,0.30016 -1.43845,0.61869 -0.98922,1.11038 -0.61471,0.24974 -1.21974,0.50448 -1.83297,0.75707 0.6102,-0.46194 1.20146,-1.03122 1.1347,-1.53938 0.0403,-0.0235 0.0761,-0.0523 0.11638,-0.0757 0.12886,-0.46096 0.38586,-0.91979 0.43641,-1.38797 0.24249,-0.14035 0.48397,-0.28988 0.72737,-0.42902 0.63702,-0.36412 1.27048,-0.71284 1.92025,-1.0599 1.26939,-0.35232 2.35522,-1.06737 3.54954,-1.58986 1.36725,-0.53062 2.44919,-0.96445 3.63683,-1.38797 z m 38.0267,2.64976 c 0.0974,0.12132 0.36025,0.22862 0.78556,0.30284 -0.23841,-0.14131 -0.51579,-0.22696 -0.78556,-0.30284 z m -295.36883,10.34693 c -0.57537,0.33731 -0.3446,0.35181 0.5237,0.35331 -0.0123,0.009 -0.0168,0.0165 -0.0291,0.0252 -0.068,0.0479 -0.005,0.0163 0.11638,-0.0252 0.17915,4.9e-4 0.41788,0.0189 0.64008,0.0252 -0.59727,0.34518 -0.96364,0.5042 -1.33836,0.7066 -0.40024,-0.0312 -0.80311,-0.0455 -1.0474,-0.10094 -0.6247,-0.14166 -0.54726,-0.27466 0.43642,-0.73184 0.22973,-0.10679 0.46979,-0.18468 0.69827,-0.25236 z m 237.29592,0.93373 c -0.69877,0.37144 -1.39497,0.74051 -2.09481,1.11038 -0.0767,0.0267 -0.156,0.049 -0.23276,0.0757 0.42626,-0.25886 0.72759,-0.48652 1.04741,-0.70661 -0.64557,0.33631 -1.28198,0.68615 -1.92024,1.03467 -1.87927,0.6543 -3.76577,1.31249 -5.64437,1.9684 0.8098,-0.41616 1.62584,-0.83401 2.44395,-1.23655 0.44851,-0.23386 0.89162,-0.47025 1.33835,-0.70661 0.57128,-0.16192 1.14579,-0.32378 1.71659,-0.47948 0.75183,-0.23267 1.49182,-0.47212 2.24029,-0.7066 -0.052,0.0365 -0.11983,0.0885 -0.17457,0.12617 0.10865,-0.0566 0.21118,-0.12039 0.32004,-0.17665 0.32066,-0.10061 0.64016,-0.20122 0.96012,-0.30283 z m -219.95552,0.45425 c 0.17244,0.0782 0.29095,0.14071 0.29095,0.17665 0,0.0719 -0.0509,0.11887 -0.11638,0.10094 -0.0218,-0.006 -0.22996,-0.0344 -0.32004,-0.0505 0.046,-0.0774 0.0993,-0.14979 0.14547,-0.22712 z m 217.48248,2.87688 c -0.31121,0.21 -0.62043,0.42017 -0.93103,0.6309 -0.19327,0.0587 -0.38837,0.11856 -0.58189,0.17665 -3.74353,1.12371 -4.81858,1.41965 -5.09157,1.48892 0.89338,-0.30937 1.78342,-0.62449 2.67671,-0.93373 1.30665,-0.46372 2.6159,-0.90985 3.92778,-1.36274 z m -15.12922,1.31227 c -3.86261,1.94458 -7.72083,3.90448 -11.57967,5.85472 -0.4011,0.21353 -0.7921,0.44198 -1.19288,0.65613 -0.0632,0.0232 -0.11409,0.0282 -0.17457,0.0505 0.63724,-0.36987 1.28293,-0.71538 1.92025,-1.08515 0.84224,-0.44965 3.24186,-1.54137 3.11313,-1.58985 1.81868,-0.90739 3.63271,-1.84671 5.46979,-2.72548 0.8141,-0.38941 1.62751,-0.77515 2.44395,-1.16085 z m 19.34794,3.25543 c -1.55051,0.67345 -3.0862,1.35412 -4.65515,1.99363 0.12747,-0.25045 0.34044,-0.49978 0.61099,-0.65613 0.14553,-0.0507 0.29071,-0.10109 0.43643,-0.15141 0.2295,-0.0431 0.57261,-0.16043 0.93103,-0.30283 0.89459,-0.30168 1.77168,-0.60737 2.6767,-0.88326 z m -13.99453,1.08514 c -2.20309,1.02139 -4.39962,2.03892 -6.57538,3.10401 -0.0308,0.0125 -0.0565,0.038 -0.0872,0.0505 -0.0262,0.0129 -0.0612,0.0125 -0.0872,0.0252 -0.82291,0.33389 -1.60763,0.7005 -2.41486,1.0599 1.32576,-0.91427 2.67132,-1.83113 4.01507,-2.72547 0.66106,-0.20125 1.31556,-0.40872 1.97843,-0.60566 1.05104,-0.31226 2.11519,-0.60938 3.17132,-0.90849 z m -0.87283,1.86745 c -0.20268,0.15283 -0.40918,0.30058 -0.61099,0.45425 -0.3128,0.13065 -0.61841,0.27279 -0.93103,0.40377 -0.0249,-0.0365 -0.0634,-0.0631 -0.0872,-0.10094 0.32253,-0.1493 0.63662,-0.30651 0.96012,-0.45425 0.22123,-0.10103 0.44758,-0.20243 0.66917,-0.30283 z m -223.21412,0.10094 c 0.0179,-0.007 0.0396,0.006 0.0582,0 -0.0393,0.48404 -0.12069,0.96092 -0.29095,1.41321 -0.60026,-0.23528 -0.38974,-1.1679 0.23276,-1.41321 z m -0.69827,2.246 c -0.0291,0.0414 -0.0596,0.0842 -0.0872,0.12618 -0.0387,0.0499 -0.0771,0.10189 -0.11637,0.15141 -0.003,-0.0192 -0.0291,-0.03 -0.0291,-0.0505 0,-0.0999 0.0909,-0.17726 0.23276,-0.22712 z m 209.97605,0.30283 c -2.67591,1.21935 -5.31593,2.48617 -7.94284,3.78538 0.0135,-0.0611 -0.025,-0.10247 -0.14547,-0.0757 -3.76981,0.83804 -5.18943,1.30163 -6.63358,2.0441 1.60771,-1.00607 3.24568,-1.98869 4.8879,-2.9526 1.44312,-0.28945 2.93436,-0.7334 3.20042,-0.78231 2.22335,-0.65049 4.42701,-1.32825 6.63357,-2.01887 z M 146.17792,323.492 c -0.20624,0.23878 -0.42235,0.47565 -0.64008,0.7066 0.0373,-0.15721 0.1057,-0.32599 0.11637,-0.42901 0.0119,-0.11507 0.22539,-0.2134 0.52371,-0.27759 z m 223.53416,1.43845 c 0.0125,0.0733 0.0262,0.13611 0.0582,0.20188 -0.16523,0.0446 -0.32576,0.0889 -0.49461,0.12618 0.14505,-0.11067 0.29829,-0.21739 0.43642,-0.32806 z m -11.52148,2.90212 c 0.0768,-0.006 -0.14278,0.0347 -0.20366,0.0757 -0.20093,0.13521 -0.39591,0.27826 -0.5819,0.42901 -1.29306,0.74535 -2.5698,1.54806 -3.84049,2.32169 -0.0893,-0.16084 -0.34769,-0.29867 -0.46551,-0.45424 -1.73738,0.90339 -3.4791,1.78482 -5.20795,2.70024 -0.0202,-0.0141 -0.0299,-0.0183 -0.0582,-0.0252 -0.0427,-0.0105 -0.0801,0.0136 -0.11638,0.0252 2.95215,-1.59353 5.93682,-3.14703 8.99024,-4.59293 0.35856,-0.16979 0.72171,-0.30525 1.1056,-0.42901 0.13042,-0.0195 0.24536,-0.0398 0.37823,-0.0505 z m -11.25963,1.16085 c -0.1352,0.0845 -0.27217,0.1678 -0.40733,0.25235 0.0326,-0.0314 0.0548,-0.0695 0.0872,-0.10093 0.26419,-0.13551 0.10468,-0.0409 0.32004,-0.15142 z m 0.66918,3.96203 c -0.0679,0.0603 -0.14186,0.11866 -0.20367,0.20188 -0.20494,0.10978 -0.407,0.21696 -0.61098,0.32807 -0.5996,0.32658 -1.14303,0.75033 -1.71659,1.11038 -0.81241,0.50997 -1.61946,1.01898 -2.44394,1.51415 -2.23182,1.34041 -4.49963,2.63157 -6.77906,3.91156 0.0586,-0.0574 0.11264,-0.12313 0.17457,-0.17665 0.23165,-0.20024 0.46928,-0.37778 0.69827,-0.58042 0.50287,-0.37736 1.0018,-0.74137 1.51292,-1.11038 3.11334,-1.74317 6.22213,-3.49851 9.36848,-5.19859 z m -204.27351,3.20495 c 0.007,-0.004 0.022,0.004 0.0291,0 0.005,0.006 -0.005,0.0184 0,0.0252 -0.0126,0.007 -0.0163,0.0179 -0.0291,0.0252 0.007,-0.0145 -0.007,-0.036 0,-0.0505 z m -7.82646,4.13869 c 0.22079,0.20962 -0.3161,0.41621 -1.39654,0.58042 0.48971,-0.1855 0.94375,-0.38746 1.39654,-0.58042 z m 198.48368,2.09457 c -0.16384,0.1105 -0.33104,0.21733 -0.49462,0.32807 -0.78382,0.4601 -1.59276,0.94118 -2.53123,1.51415 0.0657,-0.0707 0.13269,-0.13812 0.20366,-0.20188 0.18495,-0.16618 0.37007,-0.3367 0.5528,-0.50472 0.74535,-0.37155 1.31442,-0.65852 2.26939,-1.13562 z m -5.35342,3.28067 c -0.0899,0.0567 -0.17217,0.11981 -0.26185,0.17665 0.1459,0.0458 0.29039,0.08 0.43641,0.12618 -0.91619,0.67067 -1.82057,1.33958 -2.7058,2.0441 -0.30541,0.24308 -0.62678,0.48567 -0.93103,0.73184 0.0934,-0.20689 0.12103,-0.39946 0.0873,-0.58043 0.55027,-0.46484 1.10733,-0.92381 1.65839,-1.38796 0.48151,-0.31146 0.96985,-0.62645 1.45473,-0.93373 -0.0588,-0.0185 -0.11587,-0.0323 -0.17457,-0.0505 0.15539,-0.0367 0.31344,-0.0947 0.43642,-0.12618 z m -4.62605,4.46675 c 0.004,-0.004 0.0243,0.004 0.029,0 -0.004,0.006 0.003,0.0187 0,0.0252 -0.007,0.003 -0.0217,-0.003 -0.029,0 -0.002,-0.009 0.002,-0.0161 0,-0.0252 z m -12.39432,4.97146 c -0.25441,0.51119 -0.70057,1.23031 -0.81465,1.91793 -0.34605,0.25517 -0.70299,0.50031 -1.0474,0.75708 0.53264,-0.82745 1.05321,-1.6528 1.6002,-2.47312 0.0857,-0.0687 0.17641,-0.13297 0.26185,-0.20189 z m -7.01181,3.12925 c -0.15758,0.10475 -0.32937,0.20723 -0.4946,0.30283 -0.1767,0.10222 -0.76513,0.32031 -0.5819,0.22712 0.35464,-0.18038 0.72033,-0.35186 1.0765,-0.52995 z"
670
- id="path4735" />
671
- </g>
672
- </svg>