@digigov/ui 0.11.0 → 0.12.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (661) hide show
  1. package/.eslintrc.js +4 -0
  2. package/.prettierrc.js +3 -0
  3. package/.rush/temp/package-deps_build.json +176 -0
  4. package/.rush/temp/shrinkwrap-deps.json +278 -0
  5. package/CHANGELOG.json +796 -0
  6. package/CHANGELOG.md +22 -1
  7. package/docs/components.mdx +1 -0
  8. package/docs/create-a-new-service.mdx +93 -0
  9. package/docs/create-common-page-layout.mdx +205 -0
  10. package/docs/create-static-page.mdx +179 -0
  11. package/docs/edit-start-page.mdx +143 -0
  12. package/docs/index.mdx +66 -0
  13. package/docs/introduction.mdx +34 -0
  14. package/package.json +31 -8
  15. package/src/api/APIErrors.tsx +44 -0
  16. package/src/api/APIProvider.tsx +27 -0
  17. package/src/api/fetchAPI.ts +45 -0
  18. package/src/api/index.spec.tsx +419 -0
  19. package/{esm/api/index.js → src/api/index.tsx} +6 -3
  20. package/{api → src/api}/introduction.md +0 -0
  21. package/src/api/useResource.tsx +96 -0
  22. package/src/api/useResourceAction.tsx +80 -0
  23. package/src/api/useResourceQuery.tsx +177 -0
  24. package/src/api/utils.tsx +156 -0
  25. package/src/app/App.tsx +33 -0
  26. package/{app/Confirmation/index.d.ts → src/app/Confirmation/index.tsx} +0 -0
  27. package/{app/Footer/index.d.ts → src/app/Footer/index.tsx} +0 -0
  28. package/{es/app/Header/HeaderLogo.js → src/app/Header/HeaderLogo.tsx} +9 -7
  29. package/src/app/Header/HeaderSection.tsx +13 -0
  30. package/src/app/Header/HeaderTitle.tsx +24 -0
  31. package/{app → src/app}/Header/__snapshots__/index.spec.tsx.snap +0 -0
  32. package/{app → src/app}/Header/index.mdx +0 -0
  33. package/src/app/Header/index.spec.tsx +32 -0
  34. package/{esm/app/Header/index.js → src/app/Header/index.tsx} +10 -4
  35. package/src/app/NotFound/index.tsx +21 -0
  36. package/src/app/OutdatedBrowserBanner.tsx +37 -0
  37. package/src/app/PageTitle.tsx +70 -0
  38. package/{app → src/app}/QrCodeScanner/__snapshots__/index.spec.tsx.snap +0 -0
  39. package/{app → src/app}/QrCodeScanner/index.mdx +0 -0
  40. package/src/app/QrCodeScanner/index.spec.tsx +19 -0
  41. package/src/app/QrCodeScanner/index.tsx +90 -0
  42. package/src/app/i18n.tsx +44 -0
  43. package/{app/index.d.ts → src/app/index.ts} +0 -0
  44. package/{core → src/core}/Accordion/__snapshots__/index.spec.tsx.snap +0 -0
  45. package/{core → src/core}/Accordion/index.mdx +0 -0
  46. package/src/core/Accordion/index.spec.tsx +30 -0
  47. package/src/core/Accordion/index.tsx +86 -0
  48. package/{core → src/core}/Blockquote/__snapshots__/index.spec.tsx.snap +0 -0
  49. package/{core → src/core}/Blockquote/index.mdx +0 -0
  50. package/src/core/Blockquote/index.spec.tsx +10 -0
  51. package/{esm/core/Blockquote/index.js → src/core/Blockquote/index.tsx} +9 -7
  52. package/{core/Breadcrumbs/index.d.ts → src/core/Breadcrumbs/index.tsx} +0 -0
  53. package/{esm/core/Button/BackButton.js → src/core/Button/BackButton.tsx} +10 -8
  54. package/src/core/Button/ButtonLink.tsx +20 -0
  55. package/src/core/Button/CallToAction.tsx +31 -0
  56. package/src/core/Button/Icon.tsx +9 -0
  57. package/{core → src/core}/Button/__snapshots__/index.spec.tsx.snap +0 -0
  58. package/{core → src/core}/Button/index.mdx +0 -0
  59. package/src/core/Button/index.spec.tsx +8 -0
  60. package/src/core/Button/index.tsx +46 -0
  61. package/{core/Card/index.d.ts → src/core/Card/index.tsx} +0 -0
  62. package/{core → src/core}/Details/__snapshots__/index.spec.tsx.snap +0 -0
  63. package/{core → src/core}/Details/index.mdx +0 -0
  64. package/src/core/Details/index.spec.tsx +38 -0
  65. package/{core/Details/index.d.ts → src/core/Details/index.tsx} +2 -0
  66. package/src/core/Divider/index.tsx +13 -0
  67. package/{core → src/core}/ErrorSummary/__snapshots__/index.spec.tsx.snap +0 -0
  68. package/{core → src/core}/ErrorSummary/index.mdx +0 -0
  69. package/src/core/ErrorSummary/index.spec.tsx +10 -0
  70. package/{core/ErrorSummary/index.d.ts → src/core/ErrorSummary/index.tsx} +1 -0
  71. package/{core/Hidden/index.d.ts → src/core/Hidden/index.tsx} +0 -0
  72. package/{core → src/core}/Link/__snapshots__/index.spec.tsx.snap +0 -0
  73. package/src/core/Link/index.spec.tsx +22 -0
  74. package/src/core/Link/index.tsx +41 -0
  75. package/{core/List/List.d.ts → src/core/List/List.tsx} +2 -0
  76. package/{core/List/ListItem.d.ts → src/core/List/ListItem.tsx} +2 -0
  77. package/src/core/List/ListItemContent.tsx +32 -0
  78. package/src/core/List/ListItemIcon.tsx +31 -0
  79. package/src/core/List/ListItemText.tsx +23 -0
  80. package/src/core/List/ListItemTitle.tsx +37 -0
  81. package/{core → src/core}/List/__snapshots__/index.spec.tsx.snap +0 -0
  82. package/{core → src/core}/List/index.mdx +0 -0
  83. package/src/core/List/index.spec.tsx +10 -0
  84. package/{core/List/index.d.ts → src/core/List/index.tsx} +0 -0
  85. package/src/core/NavList/NavList.tsx +103 -0
  86. package/src/core/NavList/NavListContext.tsx +85 -0
  87. package/src/core/NavList/NavListItem.tsx +143 -0
  88. package/src/core/NavList/NavListItemBase.tsx +146 -0
  89. package/src/core/NavList/NavListSubMenu.tsx +33 -0
  90. package/{core → src/core}/NavList/__snapshots__/index.spec.tsx.snap +0 -0
  91. package/{core → src/core}/NavList/index.mdx +0 -0
  92. package/src/core/NavList/index.spec.tsx +10 -0
  93. package/{core/NavList/index.d.ts → src/core/NavList/index.tsx} +0 -0
  94. package/{core → src/core}/NotificationBanner/__snapshots__/index.spec.tsx.snap +0 -0
  95. package/{core → src/core}/NotificationBanner/index.mdx +0 -0
  96. package/src/core/NotificationBanner/index.spec.tsx +27 -0
  97. package/src/core/NotificationBanner/index.tsx +52 -0
  98. package/{core → src/core}/ServiceBadge/ServiceBadge.mdx +0 -0
  99. package/{core → src/core}/ServiceBadge/index.mdx +0 -0
  100. package/src/core/ServiceBadge/index.tsx +35 -0
  101. package/{core → src/core}/SummaryList/__snapshots__/index.spec.tsx.snap +0 -0
  102. package/{core → src/core}/SummaryList/index.mdx +0 -0
  103. package/src/core/SummaryList/index.spec.tsx +28 -0
  104. package/{core/SummaryList/index.d.ts → src/core/SummaryList/index.tsx} +2 -0
  105. package/{core/Table/index.d.ts → src/core/Table/index.tsx} +0 -0
  106. package/{core → src/core}/Tabs/index.mdx +0 -0
  107. package/src/core/Tabs/index.tsx +36 -0
  108. package/{core/VisuallyHidden/index.d.ts → src/core/VisuallyHidden/index.tsx} +0 -0
  109. package/{core → src/core}/WarningText/__snapshots__/index.spec.tsx.snap +0 -0
  110. package/{core → src/core}/WarningText/index.mdx +0 -0
  111. package/src/core/WarningText/index.spec.tsx +10 -0
  112. package/{core/WarningText/index.d.ts → src/core/WarningText/index.tsx} +1 -0
  113. package/{core/index.d.ts → src/core/index.ts} +3 -0
  114. package/src/custom.d.ts +8 -0
  115. package/{es → src}/form/inputs/Input/index.mdx +0 -0
  116. package/src/govgr/Footer/Copyright.tsx +64 -0
  117. package/{govgr/Footer/HellenicRepublicLogo.d.ts → src/govgr/Footer/HellenicRepublicLogo.tsx} +1 -0
  118. package/src/govgr/Footer/LicenseCCSA.tsx +24 -0
  119. package/{es → src}/govgr/Footer/index.mdx +0 -0
  120. package/src/govgr/Footer/index.tsx +49 -0
  121. package/{esm/govgr/Footer/logo.js → src/govgr/Footer/logo.ts} +1 -1
  122. package/{esm/govgr/Footer/logos/logo-el.js → src/govgr/Footer/logos/logo-el.ts} +1 -1
  123. package/{esm/govgr/Footer/logos/logo-en.js → src/govgr/Footer/logos/logo-en.ts} +1 -1
  124. package/{es → src}/govgr/Logo/govgr-logo.svg +0 -0
  125. package/{govgr/Logo/index.d.ts → src/govgr/Logo/index.tsx} +2 -0
  126. package/{es/govgr/Logo/logo.js → src/govgr/Logo/logo.ts} +1 -1
  127. package/{govgr/index.d.ts → src/govgr/index.ts} +0 -0
  128. package/src/hooks/useDebounce.ts +50 -0
  129. package/src/hooks/useLatest.ts +12 -0
  130. package/{esm/hooks/useOutdatedBrowserCheck.js → src/hooks/useOutdatedBrowserCheck.ts} +16 -15
  131. package/src/hooks/useSearch.ts +47 -0
  132. package/src/hooks/useTogglableSections.tsx +102 -0
  133. package/{index.d.ts → src/index.ts} +0 -0
  134. package/{es → src}/layouts/Basic/Bottom/index.mdx +0 -0
  135. package/{layouts/Basic/Bottom/index.d.ts → src/layouts/Basic/Bottom/index.tsx} +1 -0
  136. package/{es → src}/layouts/Basic/Content/index.mdx +0 -0
  137. package/src/layouts/Basic/Content/index.tsx +24 -0
  138. package/{es → src}/layouts/Basic/Main/index.mdx +0 -0
  139. package/{layouts/Basic/Main/index.d.ts → src/layouts/Basic/Main/index.tsx} +1 -0
  140. package/{es → src}/layouts/Basic/Masthead/index.mdx +0 -0
  141. package/{layouts/Basic/Masthead/index.d.ts → src/layouts/Basic/Masthead/index.tsx} +2 -0
  142. package/{es → src}/layouts/Basic/Side/index.mdx +0 -0
  143. package/{esm/layouts/Basic/Side/index.js → src/layouts/Basic/Side/index.tsx} +5 -3
  144. package/{es → src}/layouts/Basic/Top/index.mdx +0 -0
  145. package/{es/layouts/Basic/Top/index.js → src/layouts/Basic/Top/index.tsx} +7 -5
  146. package/{es → src}/layouts/Basic/__snapshots__/index.spec.tsx.snap +0 -0
  147. package/{es → src}/layouts/Basic/index.mdx +0 -0
  148. package/src/layouts/Basic/index.spec.tsx +24 -0
  149. package/{layouts/Basic/index.d.ts → src/layouts/Basic/index.tsx} +2 -0
  150. package/{layouts/Grid/index.d.ts → src/layouts/Grid/index.tsx} +0 -0
  151. package/{layouts/index.d.ts → src/layouts/index.ts} +0 -0
  152. package/src/locales/el.ts +60 -0
  153. package/{esm/locales/en.js → src/locales/en.ts} +25 -11
  154. package/{es → src}/router/index.mdx +0 -0
  155. package/src/router/index.tsx +28 -0
  156. package/src/test-utils/delay.ts +9 -0
  157. package/src/test-utils/mountWithTheme.tsx +33 -0
  158. package/{es → src}/themes/govgr.js +33 -29
  159. package/src/themes/grnet.js +109 -0
  160. package/src/themes/index.tsx +38 -0
  161. package/src/typography/Caption.tsx +15 -0
  162. package/src/typography/NormalText.tsx +7 -0
  163. package/src/typography/Paragraph.tsx +9 -0
  164. package/src/typography/Title.tsx +51 -0
  165. package/{es → src}/typography/index.mdx +0 -0
  166. package/{typography/index.d.ts → src/typography/index.ts} +0 -0
  167. package/src/utils/evaluateBrowserVersion.ts +346 -0
  168. package/src/utils/withDeprecation.tsx +97 -0
  169. package/tsconfig.json +18 -0
  170. package/tsconfig.production.json +27 -0
  171. package/ui.build.log +17 -0
  172. package/LICENSE +0 -0
  173. package/api/APIErrors.d.ts +0 -22
  174. package/api/APIErrors.js +0 -117
  175. package/api/APIProvider.d.ts +0 -15
  176. package/api/APIProvider.js +0 -43
  177. package/api/fetchAPI.d.ts +0 -18
  178. package/api/fetchAPI.js +0 -64
  179. package/api/index.d.ts +0 -9
  180. package/api/index.js +0 -104
  181. package/api/index.spec.d.ts +0 -1
  182. package/api/index.spec.js +0 -584
  183. package/api/useResource.d.ts +0 -11
  184. package/api/useResource.js +0 -144
  185. package/api/useResourceAction.d.ts +0 -2
  186. package/api/useResourceAction.js +0 -157
  187. package/api/useResourceQuery.d.ts +0 -18
  188. package/api/useResourceQuery.js +0 -229
  189. package/api/utils.d.ts +0 -6
  190. package/api/utils.js +0 -250
  191. package/app/App.d.ts +0 -14
  192. package/app/App.js +0 -49
  193. package/app/Confirmation/index.js +0 -44
  194. package/app/Footer/index.js +0 -200
  195. package/app/Header/HeaderLogo.d.ts +0 -3
  196. package/app/Header/HeaderLogo.js +0 -30
  197. package/app/Header/HeaderSection.d.ts +0 -5
  198. package/app/Header/HeaderSection.js +0 -20
  199. package/app/Header/HeaderTitle.d.ts +0 -5
  200. package/app/Header/HeaderTitle.js +0 -30
  201. package/app/Header/index.d.ts +0 -11
  202. package/app/Header/index.js +0 -106
  203. package/app/Header/index.spec.d.ts +0 -1
  204. package/app/Header/index.spec.js +0 -45
  205. package/app/NotFound/index.d.ts +0 -3
  206. package/app/NotFound/index.js +0 -29
  207. package/app/OutdatedBrowserBanner.d.ts +0 -2
  208. package/app/OutdatedBrowserBanner.js +0 -41
  209. package/app/PageTitle.d.ts +0 -10
  210. package/app/PageTitle.js +0 -76
  211. package/app/QrCodeScanner/index.d.ts +0 -29
  212. package/app/QrCodeScanner/index.js +0 -85
  213. package/app/QrCodeScanner/index.spec.d.ts +0 -1
  214. package/app/QrCodeScanner/index.spec.js +0 -26
  215. package/app/i18n.d.ts +0 -10
  216. package/app/i18n.js +0 -57
  217. package/app/index.js +0 -70
  218. package/core/Accordion/index.d.ts +0 -21
  219. package/core/Accordion/index.js +0 -127
  220. package/core/Accordion/index.spec.d.ts +0 -1
  221. package/core/Accordion/index.spec.js +0 -19
  222. package/core/Blockquote/index.d.ts +0 -3
  223. package/core/Blockquote/index.js +0 -29
  224. package/core/Blockquote/index.spec.d.ts +0 -1
  225. package/core/Blockquote/index.spec.js +0 -21
  226. package/core/Breadcrumbs/index.js +0 -44
  227. package/core/Button/BackButton.d.ts +0 -3
  228. package/core/Button/BackButton.js +0 -34
  229. package/core/Button/ButtonLink.d.ts +0 -4
  230. package/core/Button/ButtonLink.js +0 -28
  231. package/core/Button/CallToAction.d.ts +0 -7
  232. package/core/Button/CallToAction.js +0 -41
  233. package/core/Button/Icon.d.ts +0 -2
  234. package/core/Button/Icon.js +0 -19
  235. package/core/Button/index.d.ts +0 -15
  236. package/core/Button/index.js +0 -121
  237. package/core/Button/index.spec.d.ts +0 -1
  238. package/core/Button/index.spec.js +0 -21
  239. package/core/Card/index.js +0 -57
  240. package/core/Details/index.js +0 -35
  241. package/core/Details/index.spec.d.ts +0 -1
  242. package/core/Details/index.spec.js +0 -27
  243. package/core/Divider/index.d.ts +0 -5
  244. package/core/Divider/index.js +0 -20
  245. package/core/ErrorSummary/index.js +0 -19
  246. package/core/ErrorSummary/index.spec.d.ts +0 -1
  247. package/core/ErrorSummary/index.spec.js +0 -21
  248. package/core/Hidden/index.js +0 -18
  249. package/core/Link/index.d.ts +0 -12
  250. package/core/Link/index.js +0 -50
  251. package/core/Link/index.spec.d.ts +0 -1
  252. package/core/Link/index.spec.js +0 -31
  253. package/core/List/List.js +0 -19
  254. package/core/List/ListItem.js +0 -19
  255. package/core/List/ListItemContent.d.ts +0 -7
  256. package/core/List/ListItemContent.js +0 -45
  257. package/core/List/ListItemIcon.d.ts +0 -7
  258. package/core/List/ListItemIcon.js +0 -48
  259. package/core/List/ListItemText.d.ts +0 -8
  260. package/core/List/ListItemText.js +0 -36
  261. package/core/List/ListItemTitle.d.ts +0 -10
  262. package/core/List/ListItemTitle.js +0 -44
  263. package/core/List/index.js +0 -96
  264. package/core/List/index.spec.d.ts +0 -1
  265. package/core/List/index.spec.js +0 -21
  266. package/core/NavList/NavList.d.ts +0 -17
  267. package/core/NavList/NavList.js +0 -99
  268. package/core/NavList/NavListContext.d.ts +0 -20
  269. package/core/NavList/NavListContext.js +0 -102
  270. package/core/NavList/NavListItem.d.ts +0 -13
  271. package/core/NavList/NavListItem.js +0 -171
  272. package/core/NavList/NavListItemBase.d.ts +0 -16
  273. package/core/NavList/NavListItemBase.js +0 -161
  274. package/core/NavList/NavListSubMenu.d.ts +0 -8
  275. package/core/NavList/NavListSubMenu.js +0 -52
  276. package/core/NavList/index.js +0 -68
  277. package/core/NavList/index.spec.d.ts +0 -1
  278. package/core/NavList/index.spec.js +0 -21
  279. package/core/NotificationBanner/index.d.ts +0 -18
  280. package/core/NotificationBanner/index.js +0 -78
  281. package/core/NotificationBanner/index.spec.d.ts +0 -1
  282. package/core/NotificationBanner/index.spec.js +0 -32
  283. package/core/ServiceBadge/index.d.ts +0 -9
  284. package/core/ServiceBadge/index.js +0 -36
  285. package/core/SummaryList/index.js +0 -79
  286. package/core/SummaryList/index.spec.d.ts +0 -1
  287. package/core/SummaryList/index.spec.js +0 -19
  288. package/core/Table/index.js +0 -96
  289. package/core/Tabs/index.d.ts +0 -16
  290. package/core/Tabs/index.js +0 -88
  291. package/core/VisuallyHidden/index.js +0 -18
  292. package/core/WarningText/index.js +0 -19
  293. package/core/WarningText/index.spec.d.ts +0 -1
  294. package/core/WarningText/index.spec.js +0 -21
  295. package/core/index.js +0 -199
  296. package/custom.d.js +0 -1
  297. package/es/api/APIErrors.js +0 -96
  298. package/es/api/APIProvider.js +0 -25
  299. package/es/api/fetchAPI.js +0 -49
  300. package/es/api/index.js +0 -13
  301. package/es/api/index.spec.js +0 -546
  302. package/es/api/introduction.md +0 -6
  303. package/es/api/useResource.js +0 -128
  304. package/es/api/useResourceAction.js +0 -141
  305. package/es/api/useResourceQuery.js +0 -208
  306. package/es/api/utils.js +0 -233
  307. package/es/app/App.js +0 -27
  308. package/es/app/Confirmation/index.js +0 -3
  309. package/es/app/Footer/index.js +0 -15
  310. package/es/app/Header/HeaderSection.js +0 -7
  311. package/es/app/Header/HeaderTitle.js +0 -17
  312. package/es/app/Header/__snapshots__/index.spec.tsx.snap +0 -393
  313. package/es/app/Header/index.js +0 -13
  314. package/es/app/Header/index.mdx +0 -50
  315. package/es/app/Header/index.spec.js +0 -32
  316. package/es/app/NotFound/index.js +0 -12
  317. package/es/app/OutdatedBrowserBanner.js +0 -24
  318. package/es/app/PageTitle.js +0 -57
  319. package/es/app/QrCodeScanner/__snapshots__/index.spec.tsx.snap +0 -22
  320. package/es/app/QrCodeScanner/index.js +0 -64
  321. package/es/app/QrCodeScanner/index.mdx +0 -22
  322. package/es/app/QrCodeScanner/index.spec.js +0 -13
  323. package/es/app/i18n.js +0 -36
  324. package/es/app/index.js +0 -5
  325. package/es/core/Accordion/__snapshots__/index.spec.tsx.snap +0 -78
  326. package/es/core/Accordion/index.js +0 -67
  327. package/es/core/Accordion/index.mdx +0 -104
  328. package/es/core/Accordion/index.spec.js +0 -9
  329. package/es/core/Blockquote/__snapshots__/index.spec.tsx.snap +0 -13
  330. package/es/core/Blockquote/index.js +0 -16
  331. package/es/core/Blockquote/index.mdx +0 -61
  332. package/es/core/Blockquote/index.spec.js +0 -9
  333. package/es/core/Breadcrumbs/index.js +0 -3
  334. package/es/core/Button/BackButton.js +0 -21
  335. package/es/core/Button/ButtonLink.js +0 -16
  336. package/es/core/Button/CallToAction.js +0 -27
  337. package/es/core/Button/Icon.js +0 -7
  338. package/es/core/Button/__snapshots__/index.spec.tsx.snap +0 -13
  339. package/es/core/Button/index.js +0 -36
  340. package/es/core/Button/index.mdx +0 -65
  341. package/es/core/Button/index.spec.js +0 -9
  342. package/es/core/Card/index.js +0 -4
  343. package/es/core/Details/__snapshots__/index.spec.tsx.snap +0 -50
  344. package/es/core/Details/index.js +0 -5
  345. package/es/core/Details/index.mdx +0 -34
  346. package/es/core/Details/index.spec.js +0 -17
  347. package/es/core/Divider/index.js +0 -7
  348. package/es/core/ErrorSummary/__snapshots__/index.spec.tsx.snap +0 -322
  349. package/es/core/ErrorSummary/index.js +0 -3
  350. package/es/core/ErrorSummary/index.mdx +0 -61
  351. package/es/core/ErrorSummary/index.spec.js +0 -9
  352. package/es/core/Hidden/index.js +0 -1
  353. package/es/core/Link/__snapshots__/index.spec.tsx.snap +0 -31
  354. package/es/core/Link/index.js +0 -26
  355. package/es/core/Link/index.spec.js +0 -21
  356. package/es/core/List/List.js +0 -3
  357. package/es/core/List/ListItem.js +0 -3
  358. package/es/core/List/ListItemContent.js +0 -27
  359. package/es/core/List/ListItemIcon.js +0 -29
  360. package/es/core/List/ListItemText.js +0 -19
  361. package/es/core/List/ListItemTitle.js +0 -25
  362. package/es/core/List/__snapshots__/index.spec.tsx.snap +0 -322
  363. package/es/core/List/index.js +0 -7
  364. package/es/core/List/index.mdx +0 -40
  365. package/es/core/List/index.spec.js +0 -9
  366. package/es/core/NavList/NavList.js +0 -78
  367. package/es/core/NavList/NavListContext.js +0 -80
  368. package/es/core/NavList/NavListItem.js +0 -141
  369. package/es/core/NavList/NavListItemBase.js +0 -133
  370. package/es/core/NavList/NavListSubMenu.js +0 -27
  371. package/es/core/NavList/__snapshots__/index.spec.tsx.snap +0 -334
  372. package/es/core/NavList/index.js +0 -5
  373. package/es/core/NavList/index.mdx +0 -185
  374. package/es/core/NavList/index.spec.js +0 -9
  375. package/es/core/NotificationBanner/__snapshots__/index.spec.tsx.snap +0 -737
  376. package/es/core/NotificationBanner/index.js +0 -35
  377. package/es/core/NotificationBanner/index.mdx +0 -77
  378. package/es/core/NotificationBanner/index.spec.js +0 -20
  379. package/es/core/ServiceBadge/ServiceBadge.mdx +0 -0
  380. package/es/core/ServiceBadge/index.js +0 -20
  381. package/es/core/ServiceBadge/index.mdx +0 -42
  382. package/es/core/SummaryList/__snapshots__/index.spec.tsx.snap +0 -57
  383. package/es/core/SummaryList/index.js +0 -7
  384. package/es/core/SummaryList/index.mdx +0 -82
  385. package/es/core/SummaryList/index.spec.js +0 -9
  386. package/es/core/Table/index.js +0 -7
  387. package/es/core/Tabs/index.js +0 -37
  388. package/es/core/Tabs/index.mdx +0 -54
  389. package/es/core/VisuallyHidden/index.js +0 -1
  390. package/es/core/WarningText/__snapshots__/index.spec.tsx.snap +0 -336
  391. package/es/core/WarningText/index.js +0 -3
  392. package/es/core/WarningText/index.mdx +0 -46
  393. package/es/core/WarningText/index.spec.js +0 -9
  394. package/es/core/index.js +0 -14
  395. package/es/custom.d.js +0 -0
  396. package/es/govgr/Footer/Copyright.js +0 -37
  397. package/es/govgr/Footer/HellenicRepublicLogo.js +0 -3
  398. package/es/govgr/Footer/LicenseCCSA.js +0 -18
  399. package/es/govgr/Footer/index.js +0 -21
  400. package/es/govgr/Footer/logo.js +0 -1
  401. package/es/govgr/Footer/logos/logo-el.js +0 -1
  402. package/es/govgr/Footer/logos/logo-en.js +0 -1
  403. package/es/govgr/Logo/index.js +0 -3
  404. package/es/govgr/index.js +0 -4
  405. package/es/hooks/useDebounce.js +0 -41
  406. package/es/hooks/useLatest.js +0 -12
  407. package/es/hooks/useOutdatedBrowserCheck.js +0 -46
  408. package/es/hooks/useSearch.js +0 -25
  409. package/es/hooks/useTogglableSections.js +0 -96
  410. package/es/index.js +0 -5
  411. package/es/layouts/Basic/Bottom/index.js +0 -3
  412. package/es/layouts/Basic/Content/index.js +0 -18
  413. package/es/layouts/Basic/Main/index.js +0 -3
  414. package/es/layouts/Basic/Masthead/index.js +0 -4
  415. package/es/layouts/Basic/Side/index.js +0 -7
  416. package/es/layouts/Basic/index.js +0 -8
  417. package/es/layouts/Basic/index.spec.js +0 -10
  418. package/es/layouts/Grid/index.js +0 -1
  419. package/es/layouts/index.js +0 -2
  420. package/es/locales/el.js +0 -45
  421. package/es/locales/en.js +0 -45
  422. package/es/router/index.js +0 -15
  423. package/es/test-utils/delay.js +0 -31
  424. package/es/test-utils/mountWithTheme.js +0 -30
  425. package/es/themes/grnet.js +0 -110
  426. package/es/themes/index.js +0 -2
  427. package/es/typography/Caption.js +0 -7
  428. package/es/typography/NormalText.js +0 -3
  429. package/es/typography/Paragraph.js +0 -2
  430. package/es/typography/Title.js +0 -48
  431. package/es/typography/index.js +0 -8
  432. package/es/utils/evaluateBrowserVersion.js +0 -201
  433. package/es/utils/withDeprecation.js +0 -103
  434. package/esm/api/APIErrors.js +0 -96
  435. package/esm/api/APIProvider.js +0 -25
  436. package/esm/api/fetchAPI.js +0 -49
  437. package/esm/api/index.spec.js +0 -546
  438. package/esm/api/introduction.md +0 -6
  439. package/esm/api/useResource.js +0 -128
  440. package/esm/api/useResourceAction.js +0 -141
  441. package/esm/api/useResourceQuery.js +0 -208
  442. package/esm/api/utils.js +0 -233
  443. package/esm/app/App.js +0 -27
  444. package/esm/app/Confirmation/index.js +0 -3
  445. package/esm/app/Footer/index.js +0 -15
  446. package/esm/app/Header/HeaderLogo.js +0 -17
  447. package/esm/app/Header/HeaderSection.js +0 -7
  448. package/esm/app/Header/HeaderTitle.js +0 -17
  449. package/esm/app/Header/__snapshots__/index.spec.tsx.snap +0 -393
  450. package/esm/app/Header/index.mdx +0 -50
  451. package/esm/app/Header/index.spec.js +0 -32
  452. package/esm/app/NotFound/index.js +0 -12
  453. package/esm/app/OutdatedBrowserBanner.js +0 -24
  454. package/esm/app/PageTitle.js +0 -57
  455. package/esm/app/QrCodeScanner/__snapshots__/index.spec.tsx.snap +0 -22
  456. package/esm/app/QrCodeScanner/index.js +0 -64
  457. package/esm/app/QrCodeScanner/index.mdx +0 -22
  458. package/esm/app/QrCodeScanner/index.spec.js +0 -13
  459. package/esm/app/i18n.js +0 -36
  460. package/esm/app/index.js +0 -5
  461. package/esm/core/Accordion/__snapshots__/index.spec.tsx.snap +0 -78
  462. package/esm/core/Accordion/index.js +0 -67
  463. package/esm/core/Accordion/index.mdx +0 -104
  464. package/esm/core/Accordion/index.spec.js +0 -9
  465. package/esm/core/Blockquote/__snapshots__/index.spec.tsx.snap +0 -13
  466. package/esm/core/Blockquote/index.mdx +0 -61
  467. package/esm/core/Blockquote/index.spec.js +0 -9
  468. package/esm/core/Breadcrumbs/index.js +0 -3
  469. package/esm/core/Button/ButtonLink.js +0 -16
  470. package/esm/core/Button/CallToAction.js +0 -27
  471. package/esm/core/Button/Icon.js +0 -7
  472. package/esm/core/Button/__snapshots__/index.spec.tsx.snap +0 -13
  473. package/esm/core/Button/index.js +0 -36
  474. package/esm/core/Button/index.mdx +0 -65
  475. package/esm/core/Button/index.spec.js +0 -9
  476. package/esm/core/Card/index.js +0 -4
  477. package/esm/core/Details/__snapshots__/index.spec.tsx.snap +0 -50
  478. package/esm/core/Details/index.js +0 -5
  479. package/esm/core/Details/index.mdx +0 -34
  480. package/esm/core/Details/index.spec.js +0 -17
  481. package/esm/core/Divider/index.js +0 -7
  482. package/esm/core/ErrorSummary/__snapshots__/index.spec.tsx.snap +0 -322
  483. package/esm/core/ErrorSummary/index.js +0 -3
  484. package/esm/core/ErrorSummary/index.mdx +0 -61
  485. package/esm/core/ErrorSummary/index.spec.js +0 -9
  486. package/esm/core/Hidden/index.js +0 -1
  487. package/esm/core/Link/__snapshots__/index.spec.tsx.snap +0 -31
  488. package/esm/core/Link/index.js +0 -26
  489. package/esm/core/Link/index.spec.js +0 -21
  490. package/esm/core/List/List.js +0 -3
  491. package/esm/core/List/ListItem.js +0 -3
  492. package/esm/core/List/ListItemContent.js +0 -27
  493. package/esm/core/List/ListItemIcon.js +0 -29
  494. package/esm/core/List/ListItemText.js +0 -19
  495. package/esm/core/List/ListItemTitle.js +0 -25
  496. package/esm/core/List/__snapshots__/index.spec.tsx.snap +0 -322
  497. package/esm/core/List/index.js +0 -7
  498. package/esm/core/List/index.mdx +0 -40
  499. package/esm/core/List/index.spec.js +0 -9
  500. package/esm/core/NavList/NavList.js +0 -78
  501. package/esm/core/NavList/NavListContext.js +0 -80
  502. package/esm/core/NavList/NavListItem.js +0 -141
  503. package/esm/core/NavList/NavListItemBase.js +0 -133
  504. package/esm/core/NavList/NavListSubMenu.js +0 -27
  505. package/esm/core/NavList/__snapshots__/index.spec.tsx.snap +0 -334
  506. package/esm/core/NavList/index.js +0 -5
  507. package/esm/core/NavList/index.mdx +0 -185
  508. package/esm/core/NavList/index.spec.js +0 -9
  509. package/esm/core/NotificationBanner/__snapshots__/index.spec.tsx.snap +0 -737
  510. package/esm/core/NotificationBanner/index.js +0 -35
  511. package/esm/core/NotificationBanner/index.mdx +0 -77
  512. package/esm/core/NotificationBanner/index.spec.js +0 -20
  513. package/esm/core/ServiceBadge/ServiceBadge.mdx +0 -0
  514. package/esm/core/ServiceBadge/index.js +0 -20
  515. package/esm/core/ServiceBadge/index.mdx +0 -42
  516. package/esm/core/SummaryList/__snapshots__/index.spec.tsx.snap +0 -57
  517. package/esm/core/SummaryList/index.js +0 -7
  518. package/esm/core/SummaryList/index.mdx +0 -82
  519. package/esm/core/SummaryList/index.spec.js +0 -9
  520. package/esm/core/Table/index.js +0 -7
  521. package/esm/core/Tabs/index.js +0 -37
  522. package/esm/core/Tabs/index.mdx +0 -54
  523. package/esm/core/VisuallyHidden/index.js +0 -1
  524. package/esm/core/WarningText/__snapshots__/index.spec.tsx.snap +0 -336
  525. package/esm/core/WarningText/index.js +0 -3
  526. package/esm/core/WarningText/index.mdx +0 -46
  527. package/esm/core/WarningText/index.spec.js +0 -9
  528. package/esm/core/index.js +0 -14
  529. package/esm/custom.d.js +0 -0
  530. package/esm/form/inputs/Input/index.mdx +0 -10
  531. package/esm/govgr/Footer/Copyright.js +0 -37
  532. package/esm/govgr/Footer/HellenicRepublicLogo.js +0 -3
  533. package/esm/govgr/Footer/LicenseCCSA.js +0 -18
  534. package/esm/govgr/Footer/index.js +0 -21
  535. package/esm/govgr/Footer/index.mdx +0 -97
  536. package/esm/govgr/Logo/govgr-logo.svg +0 -1
  537. package/esm/govgr/Logo/index.js +0 -3
  538. package/esm/govgr/Logo/logo.js +0 -1
  539. package/esm/govgr/index.js +0 -4
  540. package/esm/hooks/useDebounce.js +0 -41
  541. package/esm/hooks/useLatest.js +0 -12
  542. package/esm/hooks/useSearch.js +0 -25
  543. package/esm/hooks/useTogglableSections.js +0 -96
  544. package/esm/index.js +0 -10
  545. package/esm/layouts/Basic/Bottom/index.js +0 -3
  546. package/esm/layouts/Basic/Bottom/index.mdx +0 -37
  547. package/esm/layouts/Basic/Content/index.js +0 -18
  548. package/esm/layouts/Basic/Content/index.mdx +0 -64
  549. package/esm/layouts/Basic/Main/index.js +0 -3
  550. package/esm/layouts/Basic/Main/index.mdx +0 -64
  551. package/esm/layouts/Basic/Masthead/index.js +0 -4
  552. package/esm/layouts/Basic/Masthead/index.mdx +0 -74
  553. package/esm/layouts/Basic/Side/index.mdx +0 -71
  554. package/esm/layouts/Basic/Top/index.js +0 -11
  555. package/esm/layouts/Basic/Top/index.mdx +0 -74
  556. package/esm/layouts/Basic/__snapshots__/index.spec.tsx.snap +0 -54
  557. package/esm/layouts/Basic/index.js +0 -8
  558. package/esm/layouts/Basic/index.mdx +0 -62
  559. package/esm/layouts/Basic/index.spec.js +0 -10
  560. package/esm/layouts/Grid/index.js +0 -1
  561. package/esm/layouts/index.js +0 -2
  562. package/esm/locales/el.js +0 -45
  563. package/esm/router/index.js +0 -15
  564. package/esm/router/index.mdx +0 -40
  565. package/esm/test-utils/delay.js +0 -31
  566. package/esm/test-utils/mountWithTheme.js +0 -30
  567. package/esm/themes/govgr.js +0 -79
  568. package/esm/themes/grnet.js +0 -110
  569. package/esm/themes/index.js +0 -2
  570. package/esm/typography/Caption.js +0 -7
  571. package/esm/typography/NormalText.js +0 -3
  572. package/esm/typography/Paragraph.js +0 -2
  573. package/esm/typography/Title.js +0 -48
  574. package/esm/typography/index.js +0 -8
  575. package/esm/typography/index.mdx +0 -32
  576. package/esm/utils/evaluateBrowserVersion.js +0 -201
  577. package/esm/utils/withDeprecation.js +0 -103
  578. package/form/inputs/Input/index.mdx +0 -10
  579. package/govgr/Footer/Copyright.d.ts +0 -8
  580. package/govgr/Footer/Copyright.js +0 -52
  581. package/govgr/Footer/HellenicRepublicLogo.js +0 -19
  582. package/govgr/Footer/LicenseCCSA.d.ts +0 -3
  583. package/govgr/Footer/LicenseCCSA.js +0 -33
  584. package/govgr/Footer/index.d.ts +0 -13
  585. package/govgr/Footer/index.js +0 -39
  586. package/govgr/Footer/index.mdx +0 -97
  587. package/govgr/Footer/logo.d.ts +0 -2
  588. package/govgr/Footer/logo.js +0 -8
  589. package/govgr/Footer/logos/logo-el.d.ts +0 -2
  590. package/govgr/Footer/logos/logo-el.js +0 -8
  591. package/govgr/Footer/logos/logo-en.d.ts +0 -2
  592. package/govgr/Footer/logos/logo-en.js +0 -8
  593. package/govgr/Logo/govgr-logo.svg +0 -1
  594. package/govgr/Logo/index.js +0 -19
  595. package/govgr/Logo/logo.d.ts +0 -2
  596. package/govgr/Logo/logo.js +0 -8
  597. package/govgr/index.js +0 -57
  598. package/hooks/useDebounce.d.ts +0 -3
  599. package/hooks/useDebounce.js +0 -63
  600. package/hooks/useLatest.d.ts +0 -3
  601. package/hooks/useLatest.js +0 -26
  602. package/hooks/useOutdatedBrowserCheck.d.ts +0 -2
  603. package/hooks/useOutdatedBrowserCheck.js +0 -60
  604. package/hooks/useSearch.d.ts +0 -4
  605. package/hooks/useSearch.js +0 -40
  606. package/hooks/useTogglableSections.d.ts +0 -18
  607. package/hooks/useTogglableSections.js +0 -108
  608. package/index.js +0 -70
  609. package/layouts/Basic/Bottom/index.js +0 -19
  610. package/layouts/Basic/Bottom/index.mdx +0 -37
  611. package/layouts/Basic/Content/index.d.ts +0 -5
  612. package/layouts/Basic/Content/index.js +0 -31
  613. package/layouts/Basic/Content/index.mdx +0 -64
  614. package/layouts/Basic/Main/index.js +0 -19
  615. package/layouts/Basic/Main/index.mdx +0 -64
  616. package/layouts/Basic/Masthead/index.js +0 -27
  617. package/layouts/Basic/Masthead/index.mdx +0 -74
  618. package/layouts/Basic/Side/index.d.ts +0 -3
  619. package/layouts/Basic/Side/index.js +0 -20
  620. package/layouts/Basic/Side/index.mdx +0 -71
  621. package/layouts/Basic/Top/index.d.ts +0 -3
  622. package/layouts/Basic/Top/index.js +0 -24
  623. package/layouts/Basic/Top/index.mdx +0 -74
  624. package/layouts/Basic/__snapshots__/index.spec.tsx.snap +0 -54
  625. package/layouts/Basic/index.js +0 -97
  626. package/layouts/Basic/index.mdx +0 -62
  627. package/layouts/Basic/index.spec.d.ts +0 -1
  628. package/layouts/Basic/index.spec.js +0 -20
  629. package/layouts/Grid/index.js +0 -18
  630. package/layouts/index.js +0 -34
  631. package/locales/el.d.ts +0 -46
  632. package/locales/el.js +0 -52
  633. package/locales/en.d.ts +0 -46
  634. package/locales/en.js +0 -52
  635. package/router/index.d.ts +0 -9
  636. package/router/index.js +0 -37
  637. package/router/index.mdx +0 -40
  638. package/test-utils/delay.d.ts +0 -2
  639. package/test-utils/delay.js +0 -45
  640. package/test-utils/mountWithTheme.d.ts +0 -3
  641. package/test-utils/mountWithTheme.js +0 -43
  642. package/themes/govgr.d.ts +0 -3
  643. package/themes/govgr.js +0 -89
  644. package/themes/grnet.d.ts +0 -2
  645. package/themes/grnet.js +0 -128
  646. package/themes/index.d.ts +0 -32
  647. package/themes/index.js +0 -19
  648. package/typography/Caption.d.ts +0 -7
  649. package/typography/Caption.js +0 -20
  650. package/typography/NormalText.d.ts +0 -5
  651. package/typography/NormalText.js +0 -19
  652. package/typography/Paragraph.d.ts +0 -6
  653. package/typography/Paragraph.js +0 -13
  654. package/typography/Title.d.ts +0 -9
  655. package/typography/Title.js +0 -63
  656. package/typography/index.js +0 -97
  657. package/typography/index.mdx +0 -32
  658. package/utils/evaluateBrowserVersion.d.ts +0 -15
  659. package/utils/evaluateBrowserVersion.js +0 -216
  660. package/utils/withDeprecation.d.ts +0 -16
  661. package/utils/withDeprecation.js +0 -116
@@ -1 +0,0 @@
1
- <svg enable-background="new 0 0 502.02 150.61" viewBox="0 0 502.02 150.61" xmlns="http://www.w3.org/2000/svg"><path d="m215 37.82v43.91c0 22.99-11.17 32.96-28.69 32.96-10.51 0-19.71-5.69-24.2-15l10.51-4.82c2.52 5.04 8.1 8.32 13.69 8.32 9.85 0 15.99-5.69 15.99-20.26v-.77c-3.61 5.26-10.73 7.88-16.97 7.88-13.47 0-25.18-10.4-25.18-26.72 0-16.42 11.61-26.61 25.07-26.61 6.57 0 13.47 2.52 17.08 7.77v-6.68h12.7zm-12.92 25.41c0-8.98-7.45-14.67-14.78-14.67-7.88 0-14.34 6.13-14.34 14.67s6.46 14.89 14.34 14.89c7.77 0 14.78-5.91 14.78-14.89z" fill="#fff"/><path d="m223.1 63.23c0-16.21 12.59-26.5 27.15-26.5s27.26 10.29 27.26 26.5-12.7 26.83-27.26 26.83c-14.55-.01-27.15-10.63-27.15-26.83zm41.61 0c0-8.76-6.57-14.67-14.45-14.67s-14.34 5.91-14.34 14.67c0 8.98 6.46 15 14.34 15s14.45-6.02 14.45-15z" fill="#fff"/><path d="m332.16 37.82-21.57 51.13h-11.61l-21.35-51.13h13.69l13.58 35.04 13.47-35.04z" fill="#fff"/><path d="m387.24 37.82v43.91c0 22.99-11.17 32.96-28.69 32.96-10.51 0-19.71-5.69-24.2-15l10.51-4.82c2.52 5.04 8.1 8.32 13.69 8.32 9.85 0 15.99-5.69 15.99-20.26v-.77c-3.61 5.26-10.73 7.88-16.97 7.88-13.47 0-25.18-10.4-25.18-26.72 0-16.42 11.61-26.61 25.07-26.61 6.57 0 13.47 2.52 17.08 7.77v-6.68h12.7zm-12.92 25.41c0-8.98-7.45-14.67-14.78-14.67-7.88 0-14.34 6.13-14.34 14.67s6.46 14.89 14.34 14.89c7.77 0 14.78-5.91 14.78-14.89z" fill="#00aeef"/><path d="m434.21 38.48-2.52 12.04c-2.96-1.53-5.58-1.86-7.45-1.86-8.32 0-12.92 8.1-12.92 22.45v17.85h-12.81v-51.14h12.7v10.95c2.74-8.54 8.32-12.04 14.67-12.04 3.08 0 6.36.66 8.33 1.75z" fill="#00aeef"/><g fill="#fff"><path d="m445.38 83.58c0 2.66-1.89 5.38-5.81 5.38h-7.93v-18.9h7.35c3.29 0 5.38 1.98 5.38 4.85 0 1.48-.55 3.26-2.47 3.95 2.3.47 3.48 2.64 3.48 4.72zm-10.4-10.53v4.64h3.87c1.4 0 2.17-.93 2.17-2.3 0-1.32-.71-2.33-2.17-2.33h-3.87zm7.02 10.2c0-1.34-.88-2.74-2.88-2.74h-4.14v5.46h4.06c1.95 0 2.96-1.29 2.96-2.72z"/><path d="m460.38 85.97v2.99h-11.88v-18.9h11.6v2.99h-8.28v5.1h7.24v3.05h-7.24v4.77z"/><path d="m475.9 73.05h-5.4v15.91h-3.35v-15.91h-5.4v-2.99h14.15z"/><path d="m486.87 84.32h-7.41l-1.65 4.63h-3.57l7.1-18.9h3.62l7.08 18.9h-3.54zm-1.02-2.91-2.69-7.62-2.69 7.62z"/><path d="m116.95 56.22c.12 0 .22-.02.33-.05.2-.05.38-.12.51-.25.2-.2.35-.5.35-.8s-.15-.6-.35-.8-.49-.35-.84-.35c-.3 0-.6.15-.8.35s-.35.5-.35.8.15.6.35.8c.13.12.29.2.47.24.11.04.22.06.33.06zm-25.13 71.12c-.3 0-.54.1-.74.3-.15.2-.3.45-.3.69 0 .3.15.55.3.75.13.1.29.16.46.2.09.03.19.05.29.05.11 0 .22-.02.32-.05.08-.03.15-.07.22-.11.01 0 .02-.01.02-.01.06-.04.12-.07.18-.13.2-.15.3-.39.3-.69 0-.25-.1-.5-.3-.69-.2-.21-.45-.31-.75-.31zm32.39-21.41c-.06-.02-.13-.03-.19-.04-.02 0-.33.01-.43.05-.18.04-.35.12-.48.24-.2.2-.35.5-.35.8 0 .29.15.59.35.79s.49.35.79.35c.35 0 .65-.15.85-.35s.35-.5.35-.79c0-.3-.15-.6-.35-.8-.14-.14-.33-.21-.54-.25zm-65.91 22.7c0-.3-.15-.6-.35-.8s-.5-.3-.8-.3-.6.1-.8.3-.35.5-.35.8.15.6.35.79c.2.2.5.35.8.35s.6-.15.8-.35c.2-.19.35-.49.35-.79zm71.61-53.59h-.05c-.29 0-.59.15-.8.35-.19.2-.35.49-.35.79s.16.6.35.8c.2.2.5.35.8.35h.05c.3 0 .6-.15.8-.35s.35-.49.35-.8c0-.3-.15-.6-.35-.79-.2-.2-.5-.3-.8-.35zm-31.68-46.24c-.76-.25-1.51-.54-2.26-.83-.04-.04-.08-.1-.12-.16-.15-.64-.35-1.29-.6-1.94-.25-.69-.54-1.39-.94-2.08-.1-.2-.4-.25-.6-.15s-.3.4-.15.6c.35.65.65 1.29.9 1.94.15.44.28.9.38 1.35-.96-.4-1.92-.82-2.89-1.28-.09-.55-.15-1.11-.33-1.66-.15-.6-.4-1.19-.8-1.79-.15-.2-.44-.25-.64-.1s-.2.45-.1.65c.35.45.55.94.7 1.49.09.32.15.64.21.96-.22-.1-.44-.2-.65-.31-.86-.43-1.72-.89-2.58-1.36 0-.29.05-.48.05-.73.1-.5.2-.94-.2-1.59-.1-.2-.35-.25-.6-.15-.2.15-.25.4-.15.59.24.4.15.65.1.99-.02.13-.04.27-.05.41-1.45-.81-2.91-1.66-4.41-2.54-.2-.1-.5-.05-.6.15-.15.2-.05.49.15.59 1.36.83 2.7 1.62 4.03 2.37-.05.02-.1.05-.16.07-.45.25-.84.45-1.49.45-.25 0-.45.25-.45.44 0 .25.2.45.45.45.85-.05 1.34-.24 1.89-.54.23-.1.47-.21.73-.33.97.53 1.94 1.04 2.89 1.52.14.08.29.14.43.2-.54.2-1.12.32-1.72.45-.2.05-.4.1-.65.15-.2.05-.35.24-.3.49s.25.4.49.35l.6-.15c.91-.17 1.77-.36 2.6-.8.77.36 1.54.71 2.32 1.04-.11.03-.24.07-.35.1-.64.2-1.24.3-1.88.4-.25.05-.4.25-.4.5.05.25.3.4.5.4.69-.1 1.34-.25 1.98-.45.46-.1.93-.25 1.41-.43.98.4 1.96.78 2.96 1.13.25.1.5-.05.54-.25.11-.26-.04-.51-.24-.61zm-72.34 78.53c-.1-.03-.21-.06-.32-.06s-.22.02-.32.06c-.18.05-.35.12-.47.24-.25.2-.35.5-.35.8s.1.6.35.8c.2.2.49.35.79.35s.6-.15.8-.35c.25-.2.35-.5.35-.8s-.1-.6-.35-.8c-.13-.12-.3-.19-.48-.24zm89.54-63.3c.01-.13.04-.27.08-.43.05-.2.1-.35.15-.55.15-.94.25-1.94.25-2.98 0-.25-.2-.44-.45-.44s-.44.2-.44.44c0 .98-.1 1.91-.25 2.79-.39-.68-.8-1.35-1.21-2.01.03-.07.11-.53.17-.68.15-.84.2-1.79.15-2.78 0-.2-.2-.4-.44-.4-.25 0-.45.25-.4.45.04.81-.03 1.63-.16 2.33-.47-.72-.96-1.43-1.46-2.15.15-.45.24-.95.29-1.47.05-.6.1-1.24.05-1.83 0-.25-.2-.45-.44-.45-.25 0-.4.2-.4.45 0 .6 0 1.19-.1 1.74-.02.2-.05.39-.08.58-.3-.42-.62-.84-.96-1.28-.5-.69-1.04-1.34-1.59-1.98-.15-.2-.45-.2-.65-.05-.15.15-.2.4-.05.6.54.64 1.1 1.34 1.59 1.99.29.37.57.76.86 1.14-.61-.12-1.21-.29-1.75-.79-.2-.15-.45-.15-.65.05-.15.15-.15.45.05.6.89.8 1.79.95 2.73 1.15.11 0 .25.02.39.06.56.8 1.1 1.61 1.62 2.42-.24-.03-.47-.08-.66-.15-.5-.1-.9-.3-1.34-.45-.2-.15-.45-.05-.55.2-.15.2-.05.49.2.6.44.2.94.4 1.44.55.47.09.95.16 1.46.16.44.71.87 1.43 1.28 2.15-.26-.05-.51-.12-.75-.22-.54-.15-1.1-.4-1.59-.69-.25-.1-.49-.05-.6.2-.15.2-.05.45.15.6.6.29 1.14.54 1.74.74.51.17 1.03.26 1.57.31.75 1.38 1.47 2.76 2.11 4.16.1.2.35.3.55.2.25-.1.35-.35.25-.6-.69-1.47-1.39-2.88-2.16-4.28zm-13.57-16.62c.35 0 .65-.1.84-.3.2-.2.35-.5.35-.8 0-.35-.15-.6-.35-.8s-.49-.35-.84-.35c-.3 0-.6.15-.8.35s-.35.44-.35.8c0 .3.15.6.35.8s.5.3.8.3zm19.14 22.8c.1.03.21.05.32.05.12 0 .23-.02.33-.05.2-.05.38-.12.51-.25.2-.19.35-.49.35-.79s-.15-.6-.35-.8-.5-.35-.85-.35c-.29 0-.6.15-.8.35s-.35.49-.35.8c0 .3.15.6.35.79.14.13.31.2.49.25zm-76.56-20.01c.35 0 .6-.1.85-.3.13-.13.2-.31.25-.51.02-.09.05-.19.05-.29 0-.35-.1-.6-.35-.79-.2-.2-.45-.35-.8-.35-.3 0-.6.15-.79.35-.2.19-.35.44-.35.79 0 .3.15.6.35.79.2.2.49.31.79.31zm-27.41 49.11c.3 0 .59-.15.79-.35l-.02-.03c.2-.2.32-.47.32-.77h.05c0-.29-.1-.6-.35-.8-.12-.12-.29-.2-.47-.24-.1-.03-.21-.05-.32-.05-.12 0-.22.02-.32.05-.18.04-.35.12-.48.24-.25.2-.35.5-.35.8s.1.6.35.8c.2.21.5.35.8.35zm8.04-27.06c.3 0 .54-.1.75-.3.15-.2.3-.44.3-.69 0-.3-.15-.54-.3-.74-.2-.15-.45-.3-.75-.3-.29 0-.54.15-.74.3-.2.2-.3.45-.3.74 0 .25.1.49.3.69.19.2.45.3.74.3zm21.36-15.7c.11 0 .21-.02.31-.05.19-.04.37-.11.53-.24.13-.13.2-.31.24-.5.03-.09.05-.19.05-.29 0-.3-.1-.6-.35-.8-.2-.2-.45-.35-.8-.35-.3 0-.6.15-.8.35s-.35.5-.35.8.15.6.35.8c.13.13.29.2.48.24.12.02.23.04.34.04zm1.63 84.59-2.57-4.07c-.15-.25-.4-.3-.6-.15-.2.1-.3.4-.15.6l1.83 2.96c-.88-.4-1.76-.8-2.63-1.21-.34-.62-.77-1.28-1.19-1.9-.45-.69-.85-1.39-1.19-2.03-.15-.2-.4-.3-.6-.2-.25.15-.3.4-.2.6v.05l.02-.01c.34.68.78 1.36 1.22 2.04.17.26.34.52.5.77-.92-.45-1.83-.92-2.74-1.39-.29-.44-.64-.94-1.08-1.62-.4-.54-.75-1.14-1.09-1.58-.1-.25-.4-.3-.6-.15s-.24.4-.15.6c.4.55.75 1.1 1.09 1.64.05.08.11.18.16.26-1.8-.95-3.58-1.94-5.33-2.99-.2-.1-.5-.05-.6.15-.15.2-.05.5.15.6 1.85 1.09 3.72 2.14 5.6 3.14-.16.02-.32.03-.48.04-.69.05-1.34.1-1.99.2-.25 0-.4.25-.4.5.05.25.3.4.55.35.6-.1 1.24-.15 1.89-.2.58-.05 1.2-.09 1.78-.17.89.46 1.78.92 2.67 1.36-.31.02-.62.04-.93.06-.9.05-1.79.1-2.58.2-.25 0-.4.25-.4.5.05.24.25.4.49.34.79-.1 1.69-.15 2.53-.2.83-.04 1.65-.1 2.39-.18.97.45 1.94.9 2.91 1.34l-3.34.79c-.25.05-.4.3-.3.5.05.24.3.4.5.35l4.45-1.1c.71.32 1.43.63 2.15.94-1.13.46-3.22.75-3.37.75-.25.05-.4.3-.35.54 0 .2.25.4.49.35.1 0 2.72-.4 4.34-1.18.54.22 1.07.45 1.62.68.2.1.44 0 .54-.25s0-.5-.25-.6c-1.58-.64-3.18-1.32-4.76-2.02zm85.53-43.37c0-.29-.35-.5-.59-.4-2.16 1.01-4.04 2.2-5.65 3.53-.15-1.36-.37-2.71-.73-4.06 3.18-4.37 4.58-9.07 4.34-14.07-.25-5.11-2.08-10.48-5.46-16.14-.2-.3-.65-.3-.79.04l-3.08 7.16c-.27.73-.49 1.45-.68 2.17-.61-1.56-1.6-4.23-1.6-4.86 0-.29.05-.59.05-.89.05-2.39.05-4.32-1.04-9.88l-.05-.05c-1.54-4.52-6.06-8.29-9.84-10.63-.69-.5-1.39-.89-2.03-1.24-.65-.35-1.24-.65-1.69-.84-.3-.15-.64.05-.64.35-.08 1.32-.03 2.58.12 3.78-.16-.11-.31-.21-.47-.3-.33-.25-.67-.54-1.18-.85-.01-.01-.01-.01-.02-.02-.08-.05-1.77-1.56-2.63-2.51-.73-.86-1.43-1.76-1.82-2.57-.09-.17-.14-.36-.22-.5l.01-.01c-.03-.03-.05-.05-.07-.08 0 0-.01 0-.01-.01-1.06-1.11-2.09-2.13-3.49-3.09-1.44-.99-3.18-1.84-5.56-2.58 0 0-2.68-.54-5.52-.74-2.48-.2-4.96-.4-7.05-1.19-.07-.02-.13-.04-.17-.03-.24.05-.35.11-.39.22s-.07.1-.03.31c.28 1.57.9 2.92 1.75 4.18-1.68.86-3.14 1.79-4.38 2.73-1.39 1.09-2.48 2.19-3.42 3.38-.2.25-.05.64.3.69 2.38.45 4.72.65 7.1.54 2.26-.09 4.53-.42 6.95-.92.09.06 1.29.82 1.84 1.12 2.67 1.41 5.66 2.15 8.78 2.14v.01s2.79-.16 3.88-.26 3.29-.26 3.32-.27c.05.02 2.21 1.49 2.69 1.77.91 5.12 3.52 8.96 5.32 11.06.45.55.84.94 1.14 1.24.29.3.49.5.6.55 1.14.9 2.28 1.94 3.47 3.18 1.18 1.23 2.31 2.65 3.54 4.12.35.69.69 1.44 1.04 2.23.39.79.73 1.57 1.07 2.21-.23 1.07-.41 2.13-.53 3.16-.2 1.7-.23 3.37-.15 4.99-.43-.48-.86-.97-1.29-1.46-.94-1.05-1.94-2.14-2.83-3.23-.25-.25-.65-.2-.8.1-1.54 4.47-1.84 8.34-1.24 11.72s2.14 6.31 4.22 8.79c0 0 1.64 1.39 2.48 2.08.84.7 1.72 1.4 2.56 2.14-.64 1-1.2 2.04-1.67 3.13-.4.9-.74 1.89-1.04 2.88-.15.61-.29 1.21-.41 1.82-.27-.56-.57-1.12-.93-1.66-.59-1.05-1.34-1.99-2.23-2.98-.2-.25-.65-.15-.74.15-.65 2.23-1.44 4.32-2.39 6.31-.15.4-.35.74-.55 1.14-.14.34-.54 1.04-.54 1.04-1.79 2.53-2.98 4.96-3.77 7.2-.8 2.28-1.09 4.47-1.05 6.5-.27.1-.53.2-.79.3-4.37 1.84-7.85 4.57-10.53 8.25-.94 1.49-1.94 2.68-3.18 3.52-1.05.65-2.23 1.08-3.62 1.28 2.61-2.86 4.39-6.42 5.61-10.32.1-.35-.24-.7-.6-.54-1.14.49-2.28.84-3.48 1.14-1.24.24-2.43.4-3.73.5h-.08l.07.3.01.12-.07-.43c-2.93.45-5.76 1.24-8.25 2.53-1.37.71-2.65 1.59-3.82 2.64-.91-.98-2.29-1.77-4.08-2.39-1.94-.69-7.25-1.49-7.25-1.49-1.54-.1-3.08-.25-4.62-.5-1.54-.2-3.08-.5-4.62-.89-.35-.05-.64.3-.49.64 1.44 2.93 3.73 5.17 6.46 7.05 1.01.68 2.08 1.31 3.2 1.9-.31-.09-.6-.17-.92-.26-2.51-.74-5.02-1.58-7.49-2.46-4.44-4.03-8.93-7.08-13.52-8.96-.33-.14-.66-.25-.99-.38.03-2.02-.16-4.05-.7-6.17-.6-2.19-1.59-4.47-3.18-6.8 0 0-1.84-2.39-2.68-3.73-.85-1.39-1.64-2.88-2.28-4.57-.15-.3-.65-.35-.8-.05-.75 1.33-1.29 2.75-1.62 4.28-1.17-3.04-2.9-5.88-5.19-8.51 3.87-3.6 6.57-7.49 7.95-11.57 1.44-4.18 1.54-8.6.3-13.26-.05-.3-.4-.4-.6-.3-1.09.5-2.09 1.19-3.03 2.03-.7.63-1.37 1.36-1.99 2.19-.07-1.04-.2-2.1-.34-3.17-.1-.7-.25-2.04-.25-2.04-.22-.85-.44-1.64-.65-2.38.44-.59.67-1.05.85-1.49.2-.45.9-1.65.92-1.71 3.91-2.48 7.53-6.15 10.15-10.16.5-.79.99-1.59 1.44-2.39.45-.84.84-1.64 1.19-2.43 0 0 1.31-4.3 1.61-6.1.67-.38 1.34-.72 2.01-1 .69-.35 1.43-.69 2.16-1.13 1.07.07 2.06.03 3.1-.01 1.04-.05 2.04-.1 3.13-.05 2.33.1 4.57-.1 6.65-.7 2.09-.54 4.02-1.49 5.81-2.98 1.74-1.54 3.13-3.08 4.17-4.67.99-1.64 1.64-3.38 1.79-5.37.05-.3-.3-.55-.6-.45-2.73 1.09-5.66 1.74-8.59 2.38-.99.2-2.04.45-3.08.7v.01c-3.55.7-6.12 2.13-8.15 3.96-2.01 1.86-3.49 4.06-4.76 6.46-.67.37-1.33.71-2.04 1.04-.47.2-.95.43-1.44.68.07-.47.14-.95.2-1.42.1-.8.25-1.69.35-2.49.1-.35-.3-.6-.6-.44-3.33 1.44-5.21 3.03-7.45 4.91-.65.55-2.25 1.88-2.25 1.88l.01.01c-5.5 5.26-5.61 12.88-5.66 18.27v1.22c-.51.64-.71 1.15-.94 1.61-.08.24-.18.48-.33.75-.27-.88-.54-1.7-.81-2.49-.65-1.69-1.29-3.23-2.14-4.87-.15-.29-.6-.35-.75-.05-1.79 2.88-2.63 5.27-3.58 8-.35.89-1.09 2.93-1.09 2.93-1.99 7.55 1.39 14.8 3.72 19.81.12.32.27.63.35.79v1.3c0 .23 0 .44-.02.9-.51-.45-1.03-.89-1.56-1.3-.85-.65-1.74-1.29-2.68-1.94-.3-.2-.65 0-.7.35-.25 5.06.2 9.53 1.44 13.26 1.29 3.72 3.42 6.71 6.51 8.84 2.43 1.69 4.47 3.57 6.11 5.66.3.45.6.84.9 1.29.05.08.11.17.16.26.05.14.09.28.14.42-1.32-.05-2.64-.02-3.99.11-.35 0-.54.45-.3.75 1.14 1.19 2.23 2.53 3.38 4.02 1.14 1.49 3.38 4.77 3.38 4.77 2.58 3.03 5.66 4.77 9.09 5.56 3.39.74 7.12.6 11.05-.08l12.4 3.38c-2.48 1.33-5.45 2.37-8.9 3.16-.15.05-.3.3-.3.45 0 .35 0 .74.15 1.09.1.39.35.79.75 1.19.05.05.3.15.35.15 1.64-.3 3.23-.65 4.82-1.14 1.64-.45 4.92-1.79 4.92-1.79.89-.5 2.19-.55 3.77-.6.8-.05 1.64-.1 2.64-.2.71-.08 1.4-.18 2.07-.3.05.05 4.78 1.54 7.17 2.04 2.33.54 4.72.89 7.2.99.1 0 .29-.11.35-.2.4-.54.6-1.14.65-1.69.05-.6-.05-1.14-.35-1.74-.05-.1-.25-.2-.35-.24-1.44-.15-2.93-.3-4.42-.55-1.25-.2-2.46-.46-3.67-.77 1.73-.86 3.26-1.9 4.61-3.1.75 0 1.37-.05 1.99-.1.67-.05 1.34-.1 2.02-.15 4.01.74 7.77.79 11.24-.05 3.48-.85 6.65-2.53 9.54-5.17 2.73-2.53 4.82-4.72 6.26-6.6 1.49-1.89 2.33-3.42 2.73-4.72.05-.3-.2-.6-.54-.55-.82.18-1.64.31-2.45.43.65-1.05 1.2-2.16 1.63-3.32 2.13-.84 4.21-1.84 6.24-4.07 1.99-2.18 5.54-10.33 5.86-11.32.32-1 .94-6.16 1.09-9.34.05-.64.05-1.24.05-1.84 0-.5 0-1.05-.05-1.55zm-56.72-49.36c-2.04.09-4.07-.08-6.14-.42.78-.9 1.67-1.75 2.76-2.6 1.23-.91 2.68-1.82 4.37-2.69.07.08 1.12 1.32 1.63 1.85-1.95.47-5.5 1.83-5.5 1.83-.25.1-.35.35-.25.6.05.2.35.35.55.25 0 0 4.51-1.75 5.95-1.92.71.7 2.58 2.31 2.7 2.4-2.08.39-4.09.65-6.07.7zm21.46 2.08c-1.14.1-2.28.2-3.28.25-3.23.1-6.21-.6-8.89-2.04-.55-.25-5.3-3.16-7.45-6.3-.06-.08-.25-.29-.57-.77-.32-.5-1.09-1.32-1.54-3.29 2.04.64 4.29.86 6.53 1.03 1.84.15 3.47.16 5.36.7 1.89.53 3.98 1.54 5.32 2.48 1.31.87 2.34 1.89 3.36 2.96.36.98 1.18 2.13 2.1 3.15.54.61 1.12 1.17 1.62 1.65-.87.07-1.73.14-2.56.18zm17.23 17.83c-1.18-1.23-3.58-3.28-3.58-3.28-.05-.05-1.19-1.14-1.64-1.64-2.12-2.55-5.57-7.75-5.39-14.71.33.16.67.34 1.06.56.6.29 1.29.69 1.99 1.14 3.61 2.27 7.95 5.93 9.46 10.18l-.03.01c1.14 5.46 1.09 7.35 1.05 9.68v.89c0 .16.05.42.13.74-1.01-1.29-2.03-2.51-3.05-3.57zm-64.56-22.45c1.94-1.74 4.42-3.08 7.79-3.77 1.04-.25 2.04-.44 3.08-.69 2.73-.59 5.42-1.19 8.02-2.13-.25 1.51-.75 2.92-1.57 4.21-.99 1.54-2.34 3.03-4.02 4.52-1.64 1.34-3.48 2.24-5.46 2.78-1.99.55-4.12.74-6.36.69-1.14-.1-2.18-.05-3.23 0-.82.04-1.65.08-2.49.04 1.19-2.1 2.49-4.03 4.24-5.65zm-23.3 28.26c.05-5.31.1-12.81 5.56-17.83.75-.6 1.39-1.14 2.04-1.64 2.01-1.74 3.74-3.18 6.48-4.48-.08.6-.15 1.15-.22 1.7-.35 2.53-.7 5.01-1.99 8.39-.3.8-.7 1.54-1.14 2.33-.4.8-.89 1.59-1.39 2.33-2.45 3.72-5.75 7.16-9.34 9.53 0-.09 0-.21 0-.33zm33.43 68.14c-2.37-1.61-4.37-3.51-5.73-5.9 1.26.29 2.51.54 3.79.74 1.52.24 3.04.39 4.62.49 2.78.3 5.17.75 7.05 1.39 1.66.58 2.92 1.33 3.73 2.21-.64.65-1.25 1.35-1.81 2.13-.9-.39-1.8-.76-2.7-1.12-.32-.63-.85-1.32-1.46-1.93-.1-.15-.73-.86-.83-.86-.19-.12-.42-.07-.61.07-.13.17-.1.42.01.58v.01s1.25 1.3 1.45 1.55c-.73-.29-1.46-.58-2.19-.88-.53-1.09-1.15-1.9-1.75-2.35-.15-.1-.3-.2-.45-.25-.15-.1-.3-.15-.45-.15-.25-.05-.45.15-.5.4-.05.2.5.49.6.54s.92.78 1.25 1.28c-1.83-.75-3.71-1.52-5.72-2.32-.24-.1-.49 0-.6.24-.1.2.05.5.25.55 1.81.75 3.75 1.55 5.75 2.35-.13.01-.25.02-.39.03-.54.05-1.14 0-1.78-.05-.25 0-.45.15-.45.4-.05.25.15.45.4.5.65.05 1.29.05 1.89.05.63-.05 1.26-.15 1.8-.34.8.32 1.62.65 2.44.97-.29.1-.6.19-.91.26-.65.1-1.34.2-1.99.25-.25 0-.44.2-.4.45 0 .25.2.45.45.45.7-.05 1.44-.15 2.14-.3.64-.14 1.24-.37 1.84-.63.81.34 1.63.67 2.45 1-.53.95-1.21 1.82-2.01 2.62-.41-.11-.82-.22-1.23-.33-2.89-1.17-5.59-2.48-7.95-4.1zm-33.97-54.43c.02-.02.03-.03.05-.05.75-1.19 1.59-2.14 2.43-2.93.75-.67 1.54-1.19 2.36-1.64 1.04 4.31.91 8.35-.38 12.22-1.38 3.98-3.97 7.72-7.74 11.22-.25-.28-.52-.55-.78-.83.68-1.11 1.35-2.29 2-3.53h.01c.54-.35.54-.35.6-.35.65-.45 1.34-.85 1.99-1.24.2-.15.25-.4.15-.6-.15-.19-.4-.3-.6-.15-.5.3-.94.57-1.38.84.45-.9.88-1.83 1.31-2.8.44-.34.87-.63 1.26-.87.45-.2.84-.4 1.24-.49.25-.05.4-.3.35-.5-.05-.25-.3-.4-.55-.35-.49.15-.94.3-1.44.6-.07.03-.15.09-.22.13.29-.68.57-1.39.84-2.1 0-.01.02-.01.02-.02.25-.29.54-.54.94-.84.45-.25.89-.5 1.44-.74.25-.1.3-.4.2-.6-.1-.25-.35-.3-.55-.2-.56.24-1.04.51-1.47.8.24-.71.47-1.42.69-2.12.03-.02.06-.04.09-.08.25-.3.5-.59.75-.8.3-.25.54-.45.89-.64.2-.1.25-.35.15-.6-.1-.2-.35-.25-.6-.15-.24.14-.48.31-.71.48.14-.46.28-.92.41-1.37.05-.25-.1-.49-.35-.54-.2-.1-.45.05-.55.3-.25 1.04-.55 2.04-.84 2.98-.35.99-.65 1.94-.99 2.88-1.71 4.68-3.7 8.69-5.75 12.03-.12-.12-.24-.24-.36-.36-.03-.03 0-2.18.05-3.02.73-1.23 1.41-2.78 2.09-4.33.44-1.03 1.39-3.03 1.39-3.03 1.21-2.31 1.57-4.46 1.56-6.61zm-9.15-6.36c.41-.99.76-1.98 1.06-2.88.86-2.45 1.64-4.61 3.1-7.12.67 1.34 1.21 2.65 1.72 4.04.6 1.69 1.19 3.58 1.79 5.86h.01c.05.67.15 1.31.24 1.94.43 3.68.83 7.05-1.06 10.68 0 0-.99 2.09-1.44 3.13-.57 1.3-1.13 2.55-1.7 3.62-.01-.03-5.63-12.04-3.72-19.27zm6.71 41.03c-2.93-1.99-4.92-4.82-6.16-8.39-1.13-3.43-1.58-7.48-1.42-12.11.67.47 1.33.95 1.96 1.43.84.65 1.64 1.34 2.39 1.99 3.77 3.58 6.35 7.55 7.8 11.92.01.08.05.14.1.19-.09.88-.14 1.79-.1 2.73.07 2.33.52 4.86 1.29 7.59-1.6-1.96-3.54-3.76-5.86-5.35zm5.47-2.29c-.09-2.78.37-5.24 1.42-7.42.6 1.38 1.27 2.64 2.01 3.8.84 1.39 1.79 2.63 2.73 3.77 1.49 2.24 2.43 4.42 3.03 6.51.5 1.97.66 3.81.64 5.64-.81-.28-1.62-.52-2.43-.72-.15-.32-.28-.64-.42-.96.19-.37-.03.11.02.01.5-1.19.99-2.44 1.44-3.53.1-.25-.05-.5-.25-.6-.25-.05-.5.05-.6.25-.38.98-.72 1.87-1.09 2.74-.35-.86-.68-1.73-1-2.6.2-.43.4-.84.6-1.28.3-.6.54-1.24.8-1.79.1-.2 0-.5-.2-.55-.25-.09-.5 0-.6.2-.25.6-.55 1.19-.79 1.79-.07.16-.15.31-.22.47-.09-.27-.19-.54-.28-.82-.16-.48-.31-.95-.45-1.42.05-.05.09-.11.1-.16.05-.4.15-.8.29-1.25.2-.4.4-.79.7-1.19.15-.15.15-.45-.05-.6s-.44-.15-.59.05c-.4.45-.65.95-.85 1.44-.03.06-.04.12-.06.18-.37-1.27-.7-2.54-.98-3.81-.05-.25-.3-.4-.5-.3-.25.05-.4.25-.35.49.29 1.36.65 2.72 1.04 4.06-.51-.28-1.04-.63-1.58-1.08-.2-.15-.45-.1-.6.1-.2.15-.15.44.05.6.65.54 1.39 1.04 2.08 1.34.14.04.27.09.37.14.17.55.35 1.1.53 1.65.12.35.24.71.36 1.06-.19-.1-.38-.18-.56-.27-.55-.3-1.04-.55-1.59-.75-.25-.1-.5 0-.59.2-.05.25.05.5.24.6.55.2 1.04.45 1.54.7.42.23.85.47 1.36.66.48 1.32 1.01 2.63 1.6 3.94-1.26-.27-2.52-.46-3.8-.57-.17-.31-.35-.61-.54-.93-1.21-3.63-1.89-6.88-1.98-9.79zm23.94 24.89c-3.87.75-7.55.89-10.83.1-3.25-.74-6.17-2.37-8.59-5.21h.01c-1.14-1.64-2.24-3.28-3.38-4.77-.95-1.23-1.89-2.39-2.84-3.43 4.5-.28 8.83.47 13.07 2.24 4.52 1.89 8.99 4.87 13.36 8.89.05 0 5.22 1.84 7.75 2.59 1.98.58 3.96 1.13 5.94 1.65.27.12.54.22.82.33-.56.46-1.16.89-1.81 1.29zm32.78 5.76c1.36.24 2.81.42 4.22.57.16.36.2.69.2 1.02-.04.36-.18.7-.37 1.08-2.31-.11-4.57-.45-6.83-.93-1.92-.42-3.84-.94-5.75-1.54 1.38-.34 2.66-.76 3.86-1.27.05.07.12.14.2.18 1.49.34 2.97.64 4.47.89zm.79-5.67c-3.13 2.98-7.4 5.02-13.07 5.66-.89.1-1.79.1-2.58.15-1.69.05-3.03.15-4.17.75l.01.01c-1.58.64-3.15 1.23-4.73 1.68-1.47.42-2.97.8-4.48 1.05-.17-.23-.31-.46-.34-.65-.06-.18-.09-.33-.12-.49 3.66-.88 6.81-2.04 9.36-3.53 2.5-1.46 4.4-3.28 5.61-5.5.12-.04.22-.13.25-.26.03-.06.03-.14.03-.21 1.67-2.25 3.7-3.94 6.03-5.15 2.38-1.24 5.07-1.98 7.95-2.43 1.32-.05 2.55-.2 3.77-.5.98-.22 1.89-.52 2.79-.86-1.35 4-3.35 7.55-6.31 10.28zm33.18-64.46c.24-2.14.74-4.32 1.58-6.61l2.68-6.28c3.04 5.23 4.73 10.24 4.92 14.92.23 4.64-.99 8.96-3.75 13.02-.13-.4-.26-.8-.42-1.19-.89-2.38-2.28-4.75-4.4-7.08l.03-.02c-.22-.25-.44-.5-.66-.75-.23-1.94-.22-3.93.02-6.01zm.09 22.2c-.78-.64-1.57-1.28-2.35-1.96-2.03-2.38-3.46-5.15-4.06-8.37-.51-3.08-.27-6.57 1-10.53.76.9 1.56 1.79 2.38 2.69.71.78 1.4 1.57 2.08 2.36.04.08.1.14.16.18.21.25.42.49.64.73v.05c2.03 2.23 3.38 4.52 4.27 6.86.81 2.2 1.25 4.44 1.41 6.68-.44.39-.85.81-1.24 1.22-.69-1.1-1.36-2.2-2-3.3.25-.65.44-1.72.53-3.02 0-.35.1-1.88.1-1.93 0-.25-.2-.45-.45-.45-.24 0-.44.2-.44.45 0 0-.05 1.59-.1 1.84-.06.79-.15 1.48-.26 2.02-.56-.99-1.88-3.48-2.01-3.74.16-.43.3-1.04.39-1.76.15-.84.25-1.84.29-2.78 0-.2-.15-.45-.4-.45s-.45.15-.5.4c-.05.94-.15 1.89-.25 2.73-.05.23-.09.46-.13.66-.95-1.98-1.83-3.96-2.65-5.98-.1-.25-.35-.35-.59-.25-.2.1-.3.35-.2.55.84 2.1 1.74 4.16 2.74 6.21-.31-.13-.62-.29-.96-.49-.6-.35-1.24-.85-1.88-1.34-.2-.15-.45-.15-.6.05s-.15.45.05.6c.64.54 1.34 1.04 1.99 1.49.65.37 1.31.65 1.96.81.12.24 1.33 2.59 1.84 3.5-.36-.17-2.57-1.39-3.31-1.93-.2-.1-.45-.05-.6.15s-.1.45.1.6c.8.54 3.77 2.16 4.54 2.49.69 1.19 1.42 2.37 2.18 3.55-.41.48-.8.97-1.16 1.48-.8-.68-1.65-1.39-2.51-2.07zm-.32 26.86c-.4 1.06-1.17 2.32-2.31 3.79-1.44 1.79-3.43 3.93-6.16 6.46s-5.81 4.17-9.14 4.96c-3.38.8-7 .75-10.93 0 0 0 .94-.53 1.49-.89 1.39-.94 2.49-2.23 3.48-3.77l-.03-.02c2.58-3.51 5.95-6.14 10.16-7.87.8-.35 1.64-.65 2.53-.95.85-.24 1.79-.5 2.73-.69.01-.02 5.73-.57 8.18-1.02zm-2.95-.54c-.03.04-.05.09-.06.13-1.26.16-2.51.28-3.75.37.17-.38.34-.77.49-1.15.25-.65.8-2.15.82-2.23.52-.18 1.06-.53 1.56-.95.6-.5 1.19-1.09 1.79-1.74.15-.15.15-.44-.05-.6-.15-.2-.45-.15-.6 0-.54.65-1.14 1.19-1.69 1.64-.22.2-.44.37-.67.5.32-1.1.58-2.23.8-3.38.32-.16.69-.41 1.05-.7.45-.4.9-.84 1.39-1.39.15-.2.15-.44-.05-.65-.15-.15-.45-.15-.6.05-.49.5-.95.95-1.34 1.29-.08.08-.16.15-.24.22.29-1.7.5-3.45.63-5.24 0-.25-.15-.45-.39-.45-.25-.05-.45.15-.5.4-.12 1.79-.32 3.55-.62 5.27-.13-.14-.25-.29-.37-.45-.25-.45-.49-.94-.74-1.49-.05-.25-.3-.35-.54-.3-.25.1-.35.35-.25.6.25.65.5 1.19.85 1.69.24.4.55.72.87.99-.23 1.15-.5 2.28-.82 3.38-.1-.15-.21-.31-.3-.5-.3-.55-.6-1.24-.94-2.19-.1-.2-.35-.35-.6-.25-.2.1-.35.35-.25.54.35.99.7 1.69.99 2.29.25.51.51.86.76 1.18-.02.07-.81 2.25-.83 2.31-.37-.5-.72-1.01-1.02-1.5-.05-.15-.3-.65-.35-.8-.1-.2-.35-.3-.54-.25-.25.1-.35.35-.25.6.05.1.3.69.4.84.37.69.83 1.34 1.37 2.01-.08.16-.15.31-.22.46-.03 0-4.01 1.02-4.32 1.12-.01-1.85.29-3.8 1-5.88.74-2.19 1.94-4.52 3.68-7 0 0 .99-1.94 1.14-2.33.83-1.76 1.55-3.68 2.18-5.65.63.73 1.17 1.48 1.64 2.27.6.94 1.1 1.93 1.44 2.88 1.82 5 .73 10.02-1.95 14.04zm15.05-28.11c-.15 3.13-.7 6.8-1.14 9.23 0 0-3.68 8.8-5.61 10.88-1.71 1.83-3.45 2.79-5.24 3.56.89-3.05.91-6.38-.26-9.69.01-.03.39-2.12.63-3.11.3-.94.6-1.89.99-2.78 1.14-2.62 2.78-4.95 4.99-6.97.15-.03.26-.12.3-.26 1.52-1.34 3.3-2.53 5.36-3.56.01.29.03.59.03.91-.01.55-.05 1.15-.05 1.79zm-110.46-4.72c.1-1.1.13-2.31.11-3.58.81-.61 1.32-1.57 1.83-2.58 0 0 .5-1 .74-1.39.15-.2.1-.5-.1-.65-.2-.1-.49-.05-.6.15-.35.45-.6.99-.84 1.49-.33.66-.66 1.29-1.06 1.79-.04-1.18-.1-2.42-.17-3.68.76-.42 1.17-1.15 1.59-1.88.25-.4.45-.85.74-1.19.15-.15.15-.45-.05-.6s-.44-.15-.6.05c-.35.4-.6.84-.84 1.29-.28.49-.54.96-.9 1.29-.07-1.05-.13-2.12-.18-3.18.73-.6 1.43-2.63 1.68-3.02.15-.2.1-.44-.05-.6-.2-.15-.5-.1-.64.1-.35.45-.87 2-1.04 2.28-.08-2.23-.07-4.41.14-6.4.05-.25-.15-.5-.4-.5-.25-.05-.45.15-.5.4-.19 1.88-.2 3.89-.14 5.96-.14-.21-.75-1.29-.86-1.44-.1-.2-.35-.3-.59-.2-.2.15-.3.4-.2.6.1.16 1.27 2.02 1.7 2.49.05 1.06.1 2.12.16 3.18-.7-.61-1.71-2.14-1.71-2.14-.1-.2-.35-.29-.6-.2-.2.05-.35.35-.25.54.49 1.22 1.69 2.25 2.63 2.99.08 1.32.15 2.61.19 3.84-.32-.34-.67-.75-.97-1.17-.5-.65-.85-1.64-1.05-1.79s-.65.1-.65.15c-.2.35.3 1.24.99 2.19.56.74 1.25 1.53 1.7 1.87.01 1.22-.01 2.38-.11 3.44 0 .25.15.45.4.5.25 0 .45-.15.5-.4zm4.83 23.39c.14-.72.19-1.45.14-2.12 0-.74-.05-1.44-.15-2.19 0-.25-.25-.4-.49-.4-.2.05-.4.25-.35.5.05.7.1 1.39.15 2.09 0 .23-.01.46-.02.68-.4-.76-.81-1.52-1.22-2.27.02-1.37-.25-3.2-.4-4.52v-.05c-.05-.25-.3-.4-.5-.4-.25.05-.44.25-.4.5v.05c.11.78.24 1.71.32 2.6-.04-.07-.08-.15-.12-.22-.31-.59-.65-1.19-.97-1.78.01-.04-.12-1.45-.22-2.14-.05-.75-.15-1.44-.2-2.14 0-.25-.2-.45-.45-.45s-.45.25-.45.45v.05c.05.7.15 1.44.25 2.19 0 .03 0 .06.01.09-.82-1.48-1.65-2.97-2.49-4.46-.15-.25-.4-.3-.59-.2-.25.15-.3.39-.2.59.96 1.69 1.9 3.36 2.82 5.02-.16-.07-.33-.14-.49-.2-.64-.25-1.29-.5-1.88-.7-.2-.1-.44 0-.55.25-.1.25.05.5.25.55.6.2 1.24.5 1.88.75.5.21.98.39 1.47.58.35.65.72 1.31 1.07 1.95.17.32.34.65.52.97-.29-.13-.57-.27-.86-.43-.75-.39-1.44-.74-2.09-.94-.25-.1-.5.05-.6.25-.05.25.1.5.29.55.6.2 1.29.54 1.99.89.62.38 1.28.71 1.91.91.4.77.8 1.53 1.2 2.29-.02-.01-.05-.02-.07-.03-.99-.4-1.99-.95-3.03-1.64-.2-.15-.5-.1-.6.1-.15.2-.1.44.1.59 1.09.75 2.14 1.35 3.23 1.79.2.05.4.15.6.2.12.05.23.1.35.13.4.79.81 1.57 1.19 2.35.1.25.35.3.6.2.2-.1.3-.35.2-.59-.38-.74-.77-1.49-1.15-2.24zm2.82-44.69c-.25.2-.35.5-.35.8s.1.6.35.8c.13.12.29.19.48.24.1.03.21.06.32.06.12 0 .22-.02.33-.06.18-.05.35-.12.47-.24.25-.2.35-.5.35-.8s-.1-.6-.35-.8c-.2-.2-.5-.35-.8-.35s-.6.15-.8.35zm60.59 62.03c-1.92 1.3-3.83 2.56-5.75 3.77.05-.28.11-.56.19-.84.15-.5.35-1.04.64-1.59.15-.2.05-.45-.15-.59-.2-.1-.49-.05-.6.2-.35.6-.6 1.19-.74 1.79-.18.55-.27 1.09-.29 1.64-.73.46-1.45.91-2.18 1.35.09-.53.29-1.17.59-1.89.05-.2.15-.4.29-.65.1-.25.2-.5.35-.69.1-.25 0-.5-.2-.6-.2-.15-.49-.05-.6.15v.05c-.15.25-.25.5-.35.69-.1.2-.2.45-.35.69-.43 1.08-.67 2.04-.65 2.79-.86.51-1.72 1.02-2.57 1.52.01-.39.06-.83.19-1.33.25-.84.65-1.79 1.3-2.93.1-.2 0-.45-.2-.6-.2-.1-.45-.05-.6.2-.65 1.19-1.1 2.19-1.34 3.08-.22.78-.28 1.48-.22 2.08-.6.35-1.19.68-1.78 1.01.09-.49.18-.99.31-1.5.2-.74.5-1.49.8-2.28.1-.2 0-.45-.2-.55-.25-.1-.5 0-.6.2-.35.84-.64 1.64-.84 2.43-.18.73-.31 1.46-.42 2.23-1.13.62-2.25 1.22-3.36 1.8-.25.1-.3.34-.2.59.1.2.35.3.59.15 1.16-.59 2.33-1.21 3.49-1.84.72.17 1.45.31 2.22.4.8.15 1.64.2 2.48.15.25 0 .45-.2.45-.44 0-.2-.2-.4-.45-.4-.8 0-1.59-.05-2.38-.15-.39-.05-.78-.11-1.17-.19.54-.3 1.08-.61 1.62-.92.7.17 1.46.26 2.23.31.8.05 1.64 0 2.53-.05.25-.05.4-.25.4-.5s-.25-.4-.44-.4c-.85.1-1.69.1-2.49.05-.36 0-.73-.02-1.09-.07.74-.44 1.49-.88 2.23-1.34.71.17 1.49.22 2.24.26.85.05 1.64 0 2.43 0 .25 0 .45-.2.45-.44 0-.25-.2-.44-.45-.44-.79.05-1.59.05-2.38 0-.4 0-.78-.03-1.15-.07.68-.42 1.37-.84 2.05-1.27l3.37.1c.25 0 .45-.2.45-.45s-.2-.44-.4-.44l-2.07-.06c1.74-1.12 3.49-2.27 5.25-3.47.2-.15.25-.4.1-.6-.08-.2-.38-.25-.58-.1zm31.99-52.2c-.15-.2-.45-.2-.65-.1-.2.15-.2.45-.04.64.49.7 1.09 1.34 1.63 1.89.54.54 1.12.99 1.74 1.39l.1 2.53c0 .25.2.45.45.4.25 0 .44-.2.4-.45l-.1-2.51c.12-.11.24-.21.34-.32l.5-.5c.75-.89 1.54-2.03 2.23-3.37.1-.25.05-.5-.2-.6-.2-.15-.44-.05-.54.15-.69 1.34-2.32 3.41-2.38 3.48l-.15-3.83c.51-.48.99-1.09 1.38-1.75.45-.75.85-1.59 1.19-2.43.1-.25-.05-.5-.25-.6-.25-.1-.5.05-.6.25-.29.85-.69 1.64-1.09 2.33-.21.36-.44.68-.69.97l-.11-2.99c.95-.91 1.37-2.3 1.79-3.74v-.05c.05-.2-.05-.45-.3-.54-.25-.05-.49.1-.54.29v.05c-.28.95-.57 1.9-1 2.65l-.19-4.88c-.05-.25-.25-.45-.49-.45-.25 0-.4.2-.4.45l.22 5.4c-.03-.01-1.27-.88-1.86-1.52-.15-.2-.45-.2-.65-.05-.15.2-.15.45 0 .65.65.7 1.34 1.29 1.99 1.64.15.1.51.29.57.3l.13 3.28c-.09-.03-.18-.07-.25-.1-.7-.35-1.39-.99-2.09-1.83-.15-.16-.45-.2-.6-.05-.2.15-.25.45-.1.64.8.9 1.54 1.64 2.39 2.04.15.05.29.15.49.2.07.02.13.04.2.06l.15 3.68c-.36-.28-.71-.59-1.04-.92-.59-.49-1.09-1.13-1.58-1.78zm7.99 22c-.69.65-2.32 1.7-2.33 1.71.75-1.74 1.52-3.53 2.33-5.43.05-.2-.05-.45-.25-.54-.24-.1-.5 0-.59.2-.7 1.64-1.44 3.37-2.2 5.16-.19-.74-.32-1.51-.38-2.28 0-.2-.05-1.44-.05-1.49 0-.25-.2-.45-.45-.45-.2 0-.4.2-.4.45 0 .05 0 1.29.05 1.54.09 1.18.28 2.37.7 3.48-.45 1.04-.9 2.1-1.36 3.16-.48-.81-.83-1.67-1.03-2.52-.05-.2-.1-.45-.15-.64 0-.2-.05-.45-.05-.65 0-.25-.25-.45-.5-.45-.2 0-.4.24-.4.45v.05c0 .25.05.49.1.74 0 .2.05.45.1.7.28 1.12.79 2.24 1.51 3.27-.24.55-1.14 2.63-1.35 3.12-.17-.52-.33-1.03-.45-1.53-.2-.84-.35-1.74-.5-2.58 0-.25-.24-.4-.49-.4-.2.05-.4.25-.35.5.1.89.3 1.79.5 2.68.18.86.46 1.68.8 2.47-.35.82-.69 1.63-1.05 2.45-.1.25 0 .5.25.6.2.1.45 0 .54-.25.35-.8.7-1.6 1.05-2.39.61-.33 1.22-.66 1.88-1.08.7-.45 1.39-.9 2.13-1.49.2-.1.25-.4.1-.59-.15-.2-.4-.25-.6-.1-.75.54-1.44 1.04-2.09 1.44-.3.17-.59.34-.87.5.19-.45 1.07-2.5 1.32-3.07.67-.28 1.35-.61 1.98-1.06.74-.5 1.49-1.04 2.24-1.79.2-.15.2-.45 0-.64-.15-.15-.45-.15-.6 0-.74.69-1.44 1.24-2.08 1.69-.34.22-.67.41-1 .58.38-.88.77-1.76 1.15-2.65.13-.04.74-.32.94-.42.84-.45 1.74-1.09 2.48-1.79.2-.15.2-.45.05-.6-.13-.2-.43-.2-.63-.06zm-80.06-56.76c.89-.32 1.78-.65 2.67-1 .58.2 1.15.38 1.71.55.65.15 1.29.3 1.94.4.25 0 .5-.15.5-.4.05-.25-.1-.45-.35-.49-.65-.1-1.29-.2-1.89-.35-.21-.07-.42-.14-.64-.21.82-.34 1.64-.69 2.45-1.06.88.49 1.8.69 2.76.87.2.05.4.1.6.15s.45-.1.5-.35-.1-.5-.35-.55c-.2-.05-.4-.05-.6-.1-.65-.14-1.28-.26-1.88-.49.18-.09.36-.16.54-.25.62-.31 1.25-.62 1.86-.95 1.17.3 3.6.35 3.65.35.25.05.45-.15.45-.4s-.2-.45-.4-.45c-.1 0-1.7-.07-2.45-.17 1.58-.85 3.16-1.75 4.78-2.71.2-.15.3-.4.15-.65-.1-.2-.4-.25-.6-.15-1.74 1.06-3.45 2.02-5.14 2.91.1-.33.23-.68.37-1.03.1-.1.15-.25.2-.35s.1-.25.2-.35c.1-.2.05-.5-.15-.6-.25-.15-.5-.05-.6.15 0 0-.95 2.11-1.06 2.72-.56.29-1.11.58-1.67.86-.21.1-.41.19-.62.29.05-.29.1-.57.18-.84.15-.54.35-1.04.7-1.49.15-.2.1-.5-.1-.65s-.5-.1-.65.1c-.4.6-.64 1.19-.79 1.79-.12.51-.21 1.02-.26 1.52-.96.44-1.92.85-2.89 1.25.1-.39.21-.78.37-1.18.2-.6.49-1.24.89-1.94.1-.2.05-.45-.2-.6-.2-.1-.45-.05-.6.2-.4.69-.7 1.38-.94 2.03-.24.66-.38 1.27-.52 1.88-.8.31-1.6.62-2.41.9-.25.05-.35.3-.25.55.04.29.29.38.54.29zm-15.69 16.88c.2-.15.25-.4.15-.6-.1-.24-.4-.29-.6-.2-.45.25-.85.5-1.19.75-.37.26-.7.46-1.08.59.45-.81.92-1.7 1.4-2.65.88.06 1.64-.42 2.41-.87.4-.25.74-.5 1.09-.6.25-.1.35-.35.3-.55-.1-.24-.35-.35-.55-.29-.45.15-.89.4-1.29.69-.5.29-1 .59-1.5.71 0-.01 0-.01.01-.02.37-.73.75-1.48 1.15-2.24 1.15-.1 2.87-1.28 3.17-1.48.2-.1.25-.4.1-.6-.1-.2-.4-.25-.6-.15-.3.2-1.59 1.11-2.16 1.25 1.23-2.32 4.14-6.96 4.19-6.96.1-.2.05-.49-.15-.6-.22-.14-.44-.06-.59.1-1.46 2.08-2.76 4.31-3.94 6.49-.1-.5-.24-2.37-.24-2.47.05-.25-.1-.5-.35-.54-.25 0-.45.15-.5.4-.05.15.27 3.11.44 3.82-.42.79-.82 1.57-1.2 2.33-.05-.1-.09-.19-.13-.28-.35-.75-.75-1.49-.55-2.19.05-.25-.1-.5-.35-.55-.2-.05-.45.1-.5.35-.3.99.15 1.88.6 2.78.15.31.3.61.4.9-.54 1.05-1.05 2.04-1.54 2.93-.16-.55-.3-1.27-.4-1.89 0-.2-.05-.4-.05-.55s-.05-.24-.05-.4v-.05c0-.25-.2-.45-.45-.45s-.45.2-.4.45v.56c.05.2.05.4.1.54.14.96.43 2.19.67 2.81-.36.62-.72 1.18-1.07 1.66-.15.15-.1.45.1.6s.5.1.6-.1c.39-.53.8-1.16 1.21-1.85.92-.08 1.47-.44 2.17-.88.32-.25.67-.45 1.17-.7zm76.53 67.2c.15-.65.44-1.24.74-1.84.15-.2.05-.45-.15-.6-.2-.1-.5-.05-.6.2-.35.64-.65 1.29-.85 1.98-.17.58-.31 1.19-.34 1.81-1 .62-2.01 1.24-3.03 1.83.08-.8.22-1.59.44-2.35.05-.25.3-.99.4-1.24s-.05-.5-.25-.55c-.24-.1-.49 0-.6.25-.04.2-.34 1.09-.4 1.29-.28 1.05-.43 2.09-.53 3.13-1.12.62-2.25 1.22-3.39 1.81.03-.5.11-1 .25-1.51.25-.7.6-1.44 1.1-2.14.15-.2.1-.49-.1-.6-.2-.15-.45-.1-.6.1-.55.79-.94 1.59-1.25 2.38-.22.71-.32 1.46-.3 2.22-1.84.92-3.72 1.79-5.66 2.6-.2.1-.3.35-.2.54.05.25.35.35.55.25.72-.29 1.42-.61 2.12-.91.04.03.07.05.11.07.64.3 1.29.45 1.99.55.64.05 1.34.05 1.98-.05.25-.05.45-.25.4-.5s-.25-.4-.49-.4c-.6.1-1.24.1-1.84.05-.34-.03-.69-.12-1.05-.22.89-.41 1.77-.84 2.64-1.27.71.21 1.35.35 1.94.39.7.1 1.29.15 1.89.1.25 0 .44-.2.44-.44-.05-.25-.24-.45-.49-.45-.55.05-1.1.05-1.69-.05-.29-.04-.58-.1-.87-.16 1.06-.56 2.12-1.11 3.16-1.7.5.14.99.24 1.49.32.6.05 1.19.1 1.79.1.25.05.45-.15.45-.4s-.2-.45-.45-.45c-.6 0-2.01-.2-2.17-.23.93-.55 1.84-1.11 2.74-1.67.48.13.93.21 1.42.21.49.05 1.04.05 1.59 0 .24 0 .4-.25.4-.49-.05-.2-.25-.4-.5-.35-.5.05-1.68-.04-1.8-.06 1.55-.99 3.07-2 4.58-3.03.2-.15.25-.44.1-.64s-.44-.25-.64-.1c-1.53 1.07-3.1 2.13-4.7 3.15.05-.29.12-.61.23-.93zm-10.18-79.41c.2-.2.35-.5.35-.8s-.15-.6-.35-.8-.5-.35-.85-.35c-.3 0-.6.15-.8.35s-.35.45-.35.8c0 .3.15.6.35.8s.5.3.8.3c.35-.01.65-.11.85-.3zm-57.65 60.29c0 6.17 2.8 9.32 8.53 9.63 4.77 0 9.71 0 14.6.35 3.17.22 5.87 1.66 8.11 4.36 1.85-2.46 4.41-3.85 8.29-4.36 4.63-.35 9.35-.35 13.92-.35 5.53-.4 8.23-3.3 8.23-8.88 0-.24 0-.49-.02-.74 0 0 0-49.65 0-50.84h-61.66zm39.36-28.76h19.12v-1.88h-18.87v-1.34h18.87v-1.89h-18.87v-1.39h18.87v-1.64h-18.87v-1.39h18.87v-2.03h-18.87v-1.39h18.87v-2.25h-18.87v-1.34h18.87v-1.99h-19.12v-2.08h20.86v22.05h-20.86zm-.05 35.75h12.72c2.14.15 5.12-1.14 5.12-2.14l-17.83-.05v-1.19h18.57c.05-.2.35-1.19.35-2.03h-18.93v-1.19l18.92-.05v-2.08h-18.92v-1.19h18.92l.05-2.44h-18.92v-1.19h18.92v-2.43h-18.92v-1.29h18.92v-2.29h-18.92v-2.24h20.86v16.59c-.15 4.02-3.48 6.85-8.2 6.45h-12.71zm-16.62 1.24h-14.4c-1.29.05-2.73-.5-3.58-1.24h15.99v-2.14h-17.33c-.5-.4-.8-.9-.9-1.24h18.23v-2.03h-18.83c-.15-.35-.19-.9-.19-1.24h19.02v-2.08h-19.02v-1.19h19.02v-2.44h-19.02v-1.19h19.02v-2.43h-19.02v-1.29h19.02v-2.29h-19.02v-2.24h21.01zm-21.02-36.99h19.12v-1.88h-18.87v-1.34h18.87v-1.89h-18.87v-1.39h18.87v-1.64h-18.87v-1.39h18.87v-2.03h-18.87v-1.39h18.87v-2.25h-18.87v-1.34h18.87v-1.99h-19.12v-2.08h20.87v22.05h-20.87zm-4.15-21.92v50.63c.48 8.4 4.91 12.31 13.62 11.95l12.07.35.1.03c3.72 1.03 6.32 3.08 8 6.23 1.8-3.5 4.51-5.65 8.25-6.26 0 0 12.86-.35 12.87-.35 6.85-.1 10.16-3.23 10.43-9.82 0 0 0-.37 0-1-.12 6.01-3.23 9.32-9.33 9.75 0 0-.02-.3-.04-.61v.61c-4.76 0-9.26 0-13.82.34-3.86.51-6.23 1.84-7.91 4.44l-.47.7-.65-.82s-.33-.48-.26-.37c-1.97-2.42-4.44-3.75-7.32-3.95-4.87-.33-9.78-.33-14.56-.33-6.44-.35-9.71-3.99-9.71-10.84v-51.7c-.42.33-.99.79-1.27 1.02z"/></g></svg>
@@ -1,19 +0,0 @@
1
- "use strict";
2
-
3
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
-
5
- Object.defineProperty(exports, "__esModule", {
6
- value: true
7
- });
8
- Object.defineProperty(exports, "GovGRLogo", {
9
- enumerable: true,
10
- get: function get() {
11
- return _GovGRLogo["default"];
12
- }
13
- });
14
- exports["default"] = void 0;
15
-
16
- var _GovGRLogo = _interopRequireDefault(require("@digigov/react-core/GovGRLogo"));
17
-
18
- var _default = _GovGRLogo["default"];
19
- exports["default"] = _default;
@@ -1,2 +0,0 @@
1
- declare const _default: "data:image/svg+xml,%3Csvg width='450' height='150.61' xmlns='http://www.w3.org/2000/svg'%3E%3Cstyle type='text/css'%3E.st0%7Bfill:%23FFFFFF;%7D .st1%7Bfill:%2300AEEF;%7D%3C/style%3E%3Cg%3E%3Ctitle%3ELayer 1%3C/title%3E%3Cpath id='svg_1' d='m215,37.82l0,43.91c0,22.99 -11.17,32.96 -28.69,32.96c-10.51,0 -19.71,-5.69 -24.2,-15l10.51,-4.82c2.52,5.04 8.1,8.32 13.69,8.32c9.85,0 15.99,-5.69 15.99,-20.26l0,-0.77c-3.61,5.26 -10.73,7.88 -16.97,7.88c-13.47,0 -25.18,-10.4 -25.18,-26.72c0,-16.42 11.61,-26.61 25.07,-26.61c6.57,0 13.47,2.52 17.08,7.77l0,-6.68l12.7,0l0,0.02zm-12.92,25.41c0,-8.98 -7.45,-14.67 -14.78,-14.67c-7.88,0 -14.34,6.13 -14.34,14.67s6.46,14.89 14.34,14.89c7.77,0 14.78,-5.91 14.78,-14.89z' class='st0'/%3E%3Cpath id='svg_2' d='m223.1,63.23c0,-16.21 12.59,-26.5 27.15,-26.5c14.56,0 27.26,10.29 27.26,26.5c0,16.21 -12.7,26.83 -27.26,26.83c-14.55,-0.01 -27.15,-10.63 -27.15,-26.83zm41.61,0c0,-8.76 -6.57,-14.67 -14.45,-14.67c-7.88,0 -14.34,5.91 -14.34,14.67c0,8.98 6.46,15 14.34,15c7.88,0 14.45,-6.02 14.45,-15z' class='st0'/%3E%3Cpath id='svg_3' d='m332.16,37.82l-21.57,51.13l-11.61,0l-21.35,-51.13l13.69,0l13.58,35.04l13.47,-35.04l13.79,0z' class='st0'/%3E%3Cpath id='svg_4' d='m387.24,37.82l0,43.91c0,22.99 -11.17,32.96 -28.69,32.96c-10.51,0 -19.71,-5.69 -24.2,-15l10.51,-4.82c2.52,5.04 8.1,8.32 13.69,8.32c9.85,0 15.99,-5.69 15.99,-20.26l0,-0.77c-3.61,5.26 -10.73,7.88 -16.97,7.88c-13.47,0 -25.18,-10.4 -25.18,-26.72c0,-16.42 11.61,-26.61 25.07,-26.61c6.57,0 13.47,2.52 17.08,7.77l0,-6.68l12.7,0l0,0.02zm-12.92,25.41c0,-8.98 -7.45,-14.67 -14.78,-14.67c-7.88,0 -14.34,6.13 -14.34,14.67s6.46,14.89 14.34,14.89c7.77,0 14.78,-5.91 14.78,-14.89z' class='st1'/%3E%3Cpath id='svg_5' d='m434.21,38.48l-2.52,12.04c-2.96,-1.53 -5.58,-1.86 -7.45,-1.86c-8.32,0 -12.92,8.1 -12.92,22.45l0,17.85l-12.81,0l0,-51.14l12.7,0l0,10.95c2.74,-8.54 8.32,-12.04 14.67,-12.04c3.08,0 6.36,0.66 8.33,1.75z' class='st1'/%3E%3Cg id='svg_11'%3E%3Cpath id='svg_12' d='m116.95,56.22c0.12,0 0.22,-0.02 0.33,-0.05c0.2,-0.05 0.38,-0.12 0.51,-0.25c0.2,-0.2 0.35,-0.5 0.35,-0.8c0,-0.3 -0.15,-0.6 -0.35,-0.8c-0.2,-0.2 -0.49,-0.35 -0.84,-0.35c-0.3,0 -0.6,0.15 -0.8,0.35c-0.2,0.2 -0.35,0.5 -0.35,0.8c0,0.3 0.15,0.6 0.35,0.8c0.13,0.12 0.29,0.2 0.47,0.24c0.11,0.04 0.22,0.06 0.33,0.06zm-25.13,71.12c-0.3,0 -0.54,0.1 -0.74,0.3c-0.15,0.2 -0.3,0.45 -0.3,0.69c0,0.3 0.15,0.55 0.3,0.75c0.13,0.1 0.29,0.16 0.46,0.2c0.09,0.03 0.19,0.05 0.29,0.05c0.11,0 0.22,-0.02 0.32,-0.05c0.08,-0.03 0.15,-0.07 0.22,-0.11c0.01,0 0.02,-0.01 0.02,-0.01c0.06,-0.04 0.12,-0.07 0.18,-0.13c0.2,-0.15 0.3,-0.39 0.3,-0.69c0,-0.25 -0.1,-0.5 -0.3,-0.69c-0.2,-0.21 -0.45,-0.31 -0.75,-0.31zm32.39,-21.41c-0.06,-0.02 -0.13,-0.03 -0.19,-0.04c-0.02,0 -0.33,0.01 -0.43,0.05c-0.18,0.04 -0.35,0.12 -0.48,0.24c-0.2,0.2 -0.35,0.5 -0.35,0.8c0,0.29 0.15,0.59 0.35,0.79c0.2,0.2 0.49,0.35 0.79,0.35c0.35,0 0.65,-0.15 0.85,-0.35c0.2,-0.2 0.35,-0.5 0.35,-0.79c0,-0.3 -0.15,-0.6 -0.35,-0.8c-0.14,-0.14 -0.33,-0.21 -0.54,-0.25zm-65.91,22.7c0,-0.3 -0.15,-0.6 -0.35,-0.8c-0.2,-0.2 -0.5,-0.3 -0.8,-0.3s-0.6,0.1 -0.8,0.3c-0.2,0.2 -0.35,0.5 -0.35,0.8c0,0.3 0.15,0.6 0.35,0.79c0.2,0.2 0.5,0.35 0.8,0.35s0.6,-0.15 0.8,-0.35c0.2,-0.19 0.35,-0.49 0.35,-0.79zm71.61,-53.59l-0.05,0c-0.29,0 -0.59,0.15 -0.8,0.35c-0.19,0.2 -0.35,0.49 -0.35,0.79c0,0.3 0.16,0.6 0.35,0.8c0.2,0.2 0.5,0.35 0.8,0.35l0.05,0c0.3,0 0.6,-0.15 0.8,-0.35c0.2,-0.2 0.35,-0.49 0.35,-0.8c0,-0.3 -0.15,-0.6 -0.35,-0.79c-0.2,-0.2 -0.5,-0.3 -0.8,-0.35zm-31.68,-46.24c-0.76,-0.25 -1.51,-0.54 -2.26,-0.83c-0.04,-0.04 -0.08,-0.1 -0.12,-0.16c-0.15,-0.64 -0.35,-1.29 -0.6,-1.94c-0.25,-0.69 -0.54,-1.39 -0.94,-2.08c-0.1,-0.2 -0.4,-0.25 -0.6,-0.15c-0.2,0.1 -0.3,0.4 -0.15,0.6c0.35,0.65 0.65,1.29 0.9,1.94c0.15,0.44 0.28,0.9 0.38,1.35c-0.96,-0.4 -1.92,-0.82 -2.89,-1.28c-0.09,-0.55 -0.15,-1.11 -0.33,-1.66c-0.15,-0.6 -0.4,-1.19 -0.8,-1.79c-0.15,-0.2 -0.44,-0.25 -0.64,-0.1c-0.2,0.15 -0.2,0.45 -0.1,0.65c0.35,0.45 0.55,0.94 0.7,1.49c0.09,0.32 0.15,0.64 0.21,0.96c-0.22,-0.1 -0.44,-0.2 -0.65,-0.31c-0.86,-0.43 -1.72,-0.89 -2.58,-1.36c0,-0.29 0.05,-0.48 0.05,-0.73c0.1,-0.5 0.2,-0.94 -0.2,-1.59c-0.1,-0.2 -0.35,-0.25 -0.6,-0.15c-0.2,0.15 -0.25,0.4 -0.15,0.59c0.24,0.4 0.15,0.65 0.1,0.99c-0.02,0.13 -0.04,0.27 -0.05,0.41c-1.45,-0.81 -2.91,-1.66 -4.41,-2.54c-0.2,-0.1 -0.5,-0.05 -0.6,0.15c-0.15,0.2 -0.05,0.49 0.15,0.59c1.36,0.83 2.7,1.62 4.03,2.37c-0.05,0.02 -0.1,0.05 -0.16,0.07c-0.45,0.25 -0.84,0.45 -1.49,0.45c-0.25,0 -0.45,0.25 -0.45,0.44c0,0.25 0.2,0.45 0.45,0.45c0.85,-0.05 1.34,-0.24 1.89,-0.54c0.23,-0.1 0.47,-0.21 0.73,-0.33c0.97,0.53 1.94,1.04 2.89,1.52c0.14,0.08 0.29,0.14 0.43,0.2c-0.54,0.2 -1.12,0.32 -1.72,0.45c-0.2,0.05 -0.4,0.1 -0.65,0.15c-0.2,0.05 -0.35,0.24 -0.3,0.49c0.05,0.25 0.25,0.4 0.49,0.35l0.6,-0.15c0.91,-0.17 1.77,-0.36 2.6,-0.8c0.77,0.36 1.54,0.71 2.32,1.04c-0.11,0.03 -0.24,0.07 -0.35,0.1c-0.64,0.2 -1.24,0.3 -1.88,0.4c-0.25,0.05 -0.4,0.25 -0.4,0.5c0.05,0.25 0.3,0.4 0.5,0.4c0.69,-0.1 1.34,-0.25 1.98,-0.45c0.46,-0.1 0.93,-0.25 1.41,-0.43c0.98,0.4 1.96,0.78 2.96,1.13c0.25,0.1 0.5,-0.05 0.54,-0.25c0.11,-0.26 -0.04,-0.51 -0.24,-0.61zm-72.34,78.53c-0.1,-0.03 -0.21,-0.06 -0.32,-0.06c-0.11,0 -0.22,0.02 -0.32,0.06c-0.18,0.05 -0.35,0.12 -0.47,0.24c-0.25,0.2 -0.35,0.5 -0.35,0.8c0,0.3 0.1,0.6 0.35,0.8c0.2,0.2 0.49,0.35 0.79,0.35c0.3,0 0.6,-0.15 0.8,-0.35c0.25,-0.2 0.35,-0.5 0.35,-0.8c0,-0.3 -0.1,-0.6 -0.35,-0.8c-0.13,-0.12 -0.3,-0.19 -0.48,-0.24zm89.54,-63.3c0.01,-0.13 0.04,-0.27 0.08,-0.43c0.05,-0.2 0.1,-0.35 0.15,-0.55c0.15,-0.94 0.25,-1.94 0.25,-2.98c0,-0.25 -0.2,-0.44 -0.45,-0.44c-0.25,0 -0.44,0.2 -0.44,0.44c0,0.98 -0.1,1.91 -0.25,2.79c-0.39,-0.68 -0.8,-1.35 -1.21,-2.01c0.03,-0.07 0.11,-0.53 0.17,-0.68c0.15,-0.84 0.2,-1.79 0.15,-2.78c0,-0.2 -0.2,-0.4 -0.44,-0.4c-0.25,0 -0.45,0.25 -0.4,0.45c0.04,0.81 -0.03,1.63 -0.16,2.33c-0.47,-0.72 -0.96,-1.43 -1.46,-2.15c0.15,-0.45 0.24,-0.95 0.29,-1.47c0.05,-0.6 0.1,-1.24 0.05,-1.83c0,-0.25 -0.2,-0.45 -0.44,-0.45c-0.25,0 -0.4,0.2 -0.4,0.45c0,0.6 0,1.19 -0.1,1.74c-0.02,0.2 -0.05,0.39 -0.08,0.58c-0.3,-0.42 -0.62,-0.84 -0.96,-1.28c-0.5,-0.69 -1.04,-1.34 -1.59,-1.98c-0.15,-0.2 -0.45,-0.2 -0.65,-0.05c-0.15,0.15 -0.2,0.4 -0.05,0.6c0.54,0.64 1.1,1.34 1.59,1.99c0.29,0.37 0.57,0.76 0.86,1.14c-0.61,-0.12 -1.21,-0.29 -1.75,-0.79c-0.2,-0.15 -0.45,-0.15 -0.65,0.05c-0.15,0.15 -0.15,0.45 0.05,0.6c0.89,0.8 1.79,0.95 2.73,1.15c0.11,0 0.25,0.02 0.39,0.06c0.56,0.8 1.1,1.61 1.62,2.42c-0.24,-0.03 -0.47,-0.08 -0.66,-0.15c-0.5,-0.1 -0.9,-0.3 -1.34,-0.45c-0.2,-0.15 -0.45,-0.05 -0.55,0.2c-0.15,0.2 -0.05,0.49 0.2,0.6c0.44,0.2 0.94,0.4 1.44,0.55c0.47,0.09 0.95,0.16 1.46,0.16c0.44,0.71 0.87,1.43 1.28,2.15c-0.26,-0.05 -0.51,-0.12 -0.75,-0.22c-0.54,-0.15 -1.1,-0.4 -1.59,-0.69c-0.25,-0.1 -0.49,-0.05 -0.6,0.2c-0.15,0.2 -0.05,0.45 0.15,0.6c0.6,0.29 1.14,0.54 1.74,0.74c0.51,0.17 1.03,0.26 1.57,0.31c0.75,1.38 1.47,2.76 2.11,4.16c0.1,0.2 0.35,0.3 0.55,0.2c0.25,-0.1 0.35,-0.35 0.25,-0.6c-0.69,-1.47 -1.39,-2.88 -2.16,-4.28zm-13.57,-16.62c0.35,0 0.65,-0.1 0.84,-0.3c0.2,-0.2 0.35,-0.5 0.35,-0.8c0,-0.35 -0.15,-0.6 -0.35,-0.8c-0.2,-0.2 -0.49,-0.35 -0.84,-0.35c-0.3,0 -0.6,0.15 -0.8,0.35c-0.2,0.2 -0.35,0.44 -0.35,0.8c0,0.3 0.15,0.6 0.35,0.8c0.2,0.2 0.5,0.3 0.8,0.3zm19.14,22.8c0.1,0.03 0.21,0.05 0.32,0.05c0.12,0 0.23,-0.02 0.33,-0.05c0.2,-0.05 0.38,-0.12 0.51,-0.25c0.2,-0.19 0.35,-0.49 0.35,-0.79c0,-0.3 -0.15,-0.6 -0.35,-0.8c-0.2,-0.2 -0.5,-0.35 -0.85,-0.35c-0.29,0 -0.6,0.15 -0.8,0.35c-0.2,0.2 -0.35,0.49 -0.35,0.8c0,0.3 0.15,0.6 0.35,0.79c0.14,0.13 0.31,0.2 0.49,0.25zm-76.56,-20.01c0.35,0 0.6,-0.1 0.85,-0.3c0.13,-0.13 0.2,-0.31 0.25,-0.51c0.02,-0.09 0.05,-0.19 0.05,-0.29c0,-0.35 -0.1,-0.6 -0.35,-0.79c-0.2,-0.2 -0.45,-0.35 -0.8,-0.35c-0.3,0 -0.6,0.15 -0.79,0.35c-0.2,0.19 -0.35,0.44 -0.35,0.79c0,0.3 0.15,0.6 0.35,0.79c0.2,0.2 0.49,0.31 0.79,0.31zm-27.41,49.11c0.3,0 0.59,-0.15 0.79,-0.35l-0.02,-0.03c0.2,-0.2 0.32,-0.47 0.32,-0.77l0.05,0c0,-0.29 -0.1,-0.6 -0.35,-0.8c-0.12,-0.12 -0.29,-0.2 -0.47,-0.24c-0.1,-0.03 -0.21,-0.05 -0.32,-0.05c-0.12,0 -0.22,0.02 -0.32,0.05c-0.18,0.04 -0.35,0.12 -0.48,0.24c-0.25,0.2 -0.35,0.5 -0.35,0.8c0,0.3 0.1,0.6 0.35,0.8c0.2,0.21 0.5,0.35 0.8,0.35zm8.04,-27.06c0.3,0 0.54,-0.1 0.75,-0.3c0.15,-0.2 0.3,-0.44 0.3,-0.69c0,-0.3 -0.15,-0.54 -0.3,-0.74c-0.2,-0.15 -0.45,-0.3 -0.75,-0.3c-0.29,0 -0.54,0.15 -0.74,0.3c-0.2,0.2 -0.3,0.45 -0.3,0.74c0,0.25 0.1,0.49 0.3,0.69c0.19,0.2 0.45,0.3 0.74,0.3zm21.36,-15.7c0.11,0 0.21,-0.02 0.31,-0.05c0.19,-0.04 0.37,-0.11 0.53,-0.24c0.13,-0.13 0.2,-0.31 0.24,-0.5c0.03,-0.09 0.05,-0.19 0.05,-0.29c0,-0.3 -0.1,-0.6 -0.35,-0.8c-0.2,-0.2 -0.45,-0.35 -0.8,-0.35c-0.3,0 -0.6,0.15 -0.8,0.35c-0.2,0.2 -0.35,0.5 -0.35,0.8s0.15,0.6 0.35,0.8c0.13,0.13 0.29,0.2 0.48,0.24c0.12,0.02 0.23,0.04 0.34,0.04zm1.63,84.59l-2.57,-4.07c-0.15,-0.25 -0.4,-0.3 -0.6,-0.15c-0.2,0.1 -0.3,0.4 -0.15,0.6l1.83,2.96c-0.88,-0.4 -1.76,-0.8 -2.63,-1.21c-0.34,-0.62 -0.77,-1.28 -1.19,-1.9c-0.45,-0.69 -0.85,-1.39 -1.19,-2.03c-0.15,-0.2 -0.4,-0.3 -0.6,-0.2c-0.25,0.15 -0.3,0.4 -0.2,0.6l0,0.05l0.02,-0.01c0.34,0.68 0.78,1.36 1.22,2.04c0.17,0.26 0.34,0.52 0.5,0.77c-0.92,-0.45 -1.83,-0.92 -2.74,-1.39c-0.29,-0.44 -0.64,-0.94 -1.08,-1.62c-0.4,-0.54 -0.75,-1.14 -1.09,-1.58c-0.1,-0.25 -0.4,-0.3 -0.6,-0.15c-0.2,0.15 -0.24,0.4 -0.15,0.6c0.4,0.55 0.75,1.1 1.09,1.64c0.05,0.08 0.11,0.18 0.16,0.26c-1.8,-0.95 -3.58,-1.94 -5.33,-2.99c-0.2,-0.1 -0.5,-0.05 -0.6,0.15c-0.15,0.2 -0.05,0.5 0.15,0.6c1.85,1.09 3.72,2.14 5.6,3.14c-0.16,0.02 -0.32,0.03 -0.48,0.04c-0.69,0.05 -1.34,0.1 -1.99,0.2c-0.25,0 -0.4,0.25 -0.4,0.5c0.05,0.25 0.3,0.4 0.55,0.35c0.6,-0.1 1.24,-0.15 1.89,-0.2c0.58,-0.05 1.2,-0.09 1.78,-0.17c0.89,0.46 1.78,0.92 2.67,1.36c-0.31,0.02 -0.62,0.04 -0.93,0.06c-0.9,0.05 -1.79,0.1 -2.58,0.2c-0.25,0 -0.4,0.25 -0.4,0.5c0.05,0.24 0.25,0.4 0.49,0.34c0.79,-0.1 1.69,-0.15 2.53,-0.2c0.83,-0.04 1.65,-0.1 2.39,-0.18c0.97,0.45 1.94,0.9 2.91,1.34l-3.34,0.79c-0.25,0.05 -0.4,0.3 -0.3,0.5c0.05,0.24 0.3,0.4 0.5,0.35l4.45,-1.1c0.71,0.32 1.43,0.63 2.15,0.94c-1.13,0.46 -3.22,0.75 -3.37,0.75c-0.25,0.05 -0.4,0.3 -0.35,0.54c0,0.2 0.25,0.4 0.49,0.35c0.1,0 2.72,-0.4 4.34,-1.18c0.54,0.22 1.07,0.45 1.62,0.68c0.2,0.1 0.44,0 0.54,-0.25c0.1,-0.25 0,-0.5 -0.25,-0.6c-1.58,-0.64 -3.18,-1.32 -4.76,-2.02zm85.53,-43.37c0,-0.29 -0.35,-0.5 -0.59,-0.4c-2.16,1.01 -4.04,2.2 -5.65,3.53c-0.15,-1.36 -0.37,-2.71 -0.73,-4.06c3.18,-4.37 4.58,-9.07 4.34,-14.07c-0.25,-5.11 -2.08,-10.48 -5.46,-16.14c-0.2,-0.3 -0.65,-0.3 -0.79,0.04l-3.08,7.16c-0.27,0.73 -0.49,1.45 -0.68,2.17c-0.61,-1.56 -1.6,-4.23 -1.6,-4.86c0,-0.29 0.05,-0.59 0.05,-0.89c0.05,-2.39 0.05,-4.32 -1.04,-9.88l-0.05,-0.05c-1.54,-4.52 -6.06,-8.29 -9.84,-10.63c-0.69,-0.5 -1.39,-0.89 -2.03,-1.24c-0.65,-0.35 -1.24,-0.65 -1.69,-0.84c-0.3,-0.15 -0.64,0.05 -0.64,0.35c-0.08,1.32 -0.03,2.58 0.12,3.78c-0.16,-0.11 -0.31,-0.21 -0.47,-0.3c-0.33,-0.25 -0.67,-0.54 -1.18,-0.85c-0.01,-0.01 -0.01,-0.01 -0.02,-0.02c-0.08,-0.05 -1.77,-1.56 -2.63,-2.51c-0.73,-0.86 -1.43,-1.76 -1.82,-2.57c-0.09,-0.17 -0.14,-0.36 -0.22,-0.5l0.01,-0.01c-0.03,-0.03 -0.05,-0.05 -0.07,-0.08c0,0 -0.01,0 -0.01,-0.01c0,0 0,0 0,0c-1.06,-1.11 -2.09,-2.13 -3.49,-3.09c-1.44,-0.99 -3.18,-1.84 -5.56,-2.58c0,0 -2.68,-0.54 -5.52,-0.74c-2.48,-0.2 -4.96,-0.4 -7.05,-1.19l0,0c-0.07,-0.02 -0.13,-0.04 -0.17,-0.03c-0.24,0.05 -0.35,0.11 -0.39,0.22c-0.04,0.11 -0.07,0.1 -0.03,0.31c0.28,1.57 0.9,2.92 1.75,4.18c-1.68,0.86 -3.14,1.79 -4.38,2.73c-1.39,1.09 -2.48,2.19 -3.42,3.38c-0.2,0.25 -0.05,0.64 0.3,0.69c2.38,0.45 4.72,0.65 7.1,0.54c2.26,-0.09 4.53,-0.42 6.95,-0.92c0.09,0.06 1.29,0.82 1.84,1.12c2.67,1.41 5.66,2.15 8.78,2.14l0,0.01c0,0 2.79,-0.16 3.88,-0.26c1.09,-0.1 3.29,-0.26 3.32,-0.27c0.05,0.02 2.21,1.49 2.69,1.77c0.91,5.12 3.52,8.96 5.32,11.06c0.45,0.55 0.84,0.94 1.14,1.24c0.29,0.3 0.49,0.5 0.6,0.55c1.14,0.9 2.28,1.94 3.47,3.18c1.18,1.23 2.31,2.65 3.54,4.12l0,0c0.35,0.69 0.69,1.44 1.04,2.23c0.39,0.79 0.73,1.57 1.07,2.21c-0.23,1.07 -0.41,2.13 -0.53,3.16c-0.2,1.7 -0.23,3.37 -0.15,4.99c-0.43,-0.48 -0.86,-0.97 -1.29,-1.46c-0.94,-1.05 -1.94,-2.14 -2.83,-3.23c-0.25,-0.25 -0.65,-0.2 -0.8,0.1c-1.54,4.47 -1.84,8.34 -1.24,11.72c0.6,3.38 2.14,6.31 4.22,8.79c0,0 1.64,1.39 2.48,2.08c0.84,0.7 1.72,1.4 2.56,2.14c-0.64,1 -1.2,2.04 -1.67,3.13c-0.4,0.9 -0.74,1.89 -1.04,2.88c-0.15,0.61 -0.29,1.21 -0.41,1.82c-0.27,-0.56 -0.57,-1.12 -0.93,-1.66c-0.59,-1.05 -1.34,-1.99 -2.23,-2.98c-0.2,-0.25 -0.65,-0.15 -0.74,0.15c-0.65,2.23 -1.44,4.32 -2.39,6.31c-0.15,0.4 -0.35,0.74 -0.55,1.14c-0.14,0.34 -0.54,1.04 -0.54,1.04c-1.79,2.53 -2.98,4.96 -3.77,7.2c-0.8,2.28 -1.09,4.47 -1.05,6.5c-0.27,0.1 -0.53,0.2 -0.79,0.3c-4.37,1.84 -7.85,4.57 -10.53,8.25c-0.94,1.49 -1.94,2.68 -3.18,3.52c-1.05,0.65 -2.23,1.08 -3.62,1.28c2.61,-2.86 4.39,-6.42 5.61,-10.32c0.1,-0.35 -0.24,-0.7 -0.6,-0.54c-1.14,0.49 -2.28,0.84 -3.48,1.14c-1.24,0.24 -2.43,0.4 -3.73,0.5l-0.08,0l0.07,0.3l0.01,0.12l-0.07,-0.43c-2.93,0.45 -5.76,1.24 -8.25,2.53c-1.37,0.71 -2.65,1.59 -3.82,2.64c-0.91,-0.98 -2.29,-1.77 -4.08,-2.39c-1.94,-0.69 -7.25,-1.49 -7.25,-1.49c-1.54,-0.1 -3.08,-0.25 -4.62,-0.5c-1.54,-0.2 -3.08,-0.5 -4.62,-0.89c-0.35,-0.05 -0.64,0.3 -0.49,0.64c1.44,2.93 3.73,5.17 6.46,7.05c1.01,0.68 2.08,1.31 3.2,1.9c-0.31,-0.09 -0.6,-0.17 -0.92,-0.26c-2.51,-0.74 -5.02,-1.58 -7.49,-2.46c-4.44,-4.03 -8.93,-7.08 -13.52,-8.96c-0.33,-0.14 -0.66,-0.25 -0.99,-0.38c0.03,-2.02 -0.16,-4.05 -0.7,-6.17c-0.6,-2.19 -1.59,-4.47 -3.18,-6.8c0,0 -1.84,-2.39 -2.68,-3.73c-0.85,-1.39 -1.64,-2.88 -2.28,-4.57c-0.15,-0.3 -0.65,-0.35 -0.8,-0.05c-0.75,1.33 -1.29,2.75 -1.62,4.28c-1.17,-3.04 -2.9,-5.88 -5.19,-8.51c3.87,-3.6 6.57,-7.49 7.95,-11.57c1.44,-4.18 1.54,-8.6 0.3,-13.26c-0.05,-0.3 -0.4,-0.4 -0.6,-0.3c-1.09,0.5 -2.09,1.19 -3.03,2.03c-0.7,0.63 -1.37,1.36 -1.99,2.19c-0.07,-1.04 -0.2,-2.1 -0.34,-3.17c-0.1,-0.7 -0.25,-2.04 -0.25,-2.04c-0.22,-0.85 -0.44,-1.64 -0.65,-2.38c0.44,-0.59 0.67,-1.05 0.85,-1.49c0.2,-0.45 0.9,-1.65 0.92,-1.71c3.91,-2.48 7.53,-6.15 10.15,-10.16c0.5,-0.79 0.99,-1.59 1.44,-2.39c0.45,-0.84 0.84,-1.64 1.19,-2.43c0,0 1.31,-4.3 1.61,-6.1c0.67,-0.38 1.34,-0.72 2.01,-1c0.69,-0.35 1.43,-0.69 2.16,-1.13c1.07,0.07 2.06,0.03 3.1,-0.01c1.04,-0.05 2.04,-0.1 3.13,-0.05c2.33,0.1 4.57,-0.1 6.65,-0.7c2.09,-0.54 4.02,-1.49 5.81,-2.98c1.74,-1.54 3.13,-3.08 4.17,-4.67c0.99,-1.64 1.64,-3.38 1.79,-5.37c0.05,-0.3 -0.3,-0.55 -0.6,-0.45c-2.73,1.09 -5.66,1.74 -8.59,2.38c-0.99,0.2 -2.04,0.45 -3.08,0.7l0,0.01c-3.55,0.7 -6.12,2.13 -8.15,3.96c-2.01,1.86 -3.49,4.06 -4.76,6.46c-0.67,0.37 -1.33,0.71 -2.04,1.04c-0.47,0.2 -0.95,0.43 -1.44,0.68c0.07,-0.47 0.14,-0.95 0.2,-1.42c0.1,-0.8 0.25,-1.69 0.35,-2.49c0.1,-0.35 -0.3,-0.6 -0.6,-0.44c-3.33,1.44 -5.21,3.03 -7.45,4.91c-0.65,0.55 -2.25,1.88 -2.25,1.88l0.01,0.01c-5.5,5.26 -5.61,12.88 -5.66,18.27l0,1.22c-0.51,0.64 -0.71,1.15 -0.94,1.61c-0.08,0.24 -0.18,0.48 -0.33,0.75c-0.27,-0.88 -0.54,-1.7 -0.81,-2.49c-0.65,-1.69 -1.29,-3.23 -2.14,-4.87c-0.15,-0.29 -0.6,-0.35 -0.75,-0.05c-1.79,2.88 -2.63,5.27 -3.58,8c-0.35,0.89 -1.09,2.93 -1.09,2.93c-1.99,7.55 1.39,14.8 3.72,19.81c0.12,0.32 0.27,0.63 0.35,0.79l0,1.3c0,0.23 0,0.44 -0.02,0.9c-0.51,-0.45 -1.03,-0.89 -1.56,-1.3c-0.85,-0.65 -1.74,-1.29 -2.68,-1.94c-0.3,-0.2 -0.65,0 -0.7,0.35c-0.25,5.06 0.2,9.53 1.44,13.26c1.29,3.72 3.42,6.71 6.51,8.84c2.43,1.69 4.47,3.57 6.11,5.66c0.3,0.45 0.6,0.84 0.9,1.29c0.05,0.08 0.11,0.17 0.16,0.26c0.05,0.14 0.09,0.28 0.14,0.42c-1.32,-0.05 -2.64,-0.02 -3.99,0.11c-0.35,0 -0.54,0.45 -0.3,0.75c1.14,1.19 2.23,2.53 3.38,4.02c1.14,1.49 3.38,4.77 3.38,4.77c2.58,3.03 5.66,4.77 9.09,5.56c3.39,0.74 7.12,0.6 11.05,-0.08l12.4,3.38c-2.48,1.33 -5.45,2.37 -8.9,3.16c-0.15,0.05 -0.3,0.3 -0.3,0.45c0,0.35 0,0.74 0.15,1.09c0.1,0.39 0.35,0.79 0.75,1.19c0.05,0.05 0.3,0.15 0.35,0.15c1.64,-0.3 3.23,-0.65 4.82,-1.14c1.64,-0.45 4.92,-1.79 4.92,-1.79c0.89,-0.5 2.19,-0.55 3.77,-0.6c0.8,-0.05 1.64,-0.1 2.64,-0.2c0.71,-0.08 1.4,-0.18 2.07,-0.3c0.05,0.05 4.78,1.54 7.17,2.04c2.33,0.54 4.72,0.89 7.2,0.99c0.1,0 0.29,-0.11 0.35,-0.2c0.4,-0.54 0.6,-1.14 0.65,-1.69c0.05,-0.6 -0.05,-1.14 -0.35,-1.74c-0.05,-0.1 -0.25,-0.2 -0.35,-0.24c-1.44,-0.15 -2.93,-0.3 -4.42,-0.55c-1.25,-0.2 -2.46,-0.46 -3.67,-0.77c1.73,-0.86 3.26,-1.9 4.61,-3.1c0.75,0 1.37,-0.05 1.99,-0.1c0.67,-0.05 1.34,-0.1 2.02,-0.15c4.01,0.74 7.77,0.79 11.24,-0.05c3.48,-0.85 6.65,-2.53 9.54,-5.17c2.73,-2.53 4.82,-4.72 6.26,-6.6c1.49,-1.89 2.33,-3.42 2.73,-4.72c0.05,-0.3 -0.2,-0.6 -0.54,-0.55c-0.82,0.18 -1.64,0.31 -2.45,0.43c0.65,-1.05 1.2,-2.16 1.63,-3.32c2.13,-0.84 4.21,-1.84 6.24,-4.07c1.99,-2.18 5.54,-10.33 5.86,-11.32c0.32,-1 0.94,-6.16 1.09,-9.34c0.05,-0.64 0.05,-1.24 0.05,-1.84c0,-0.5 0,-1.05 -0.05,-1.55zm-56.72,-49.36c-2.04,0.09 -4.07,-0.08 -6.14,-0.42c0.78,-0.9 1.67,-1.75 2.76,-2.6c1.23,-0.91 2.68,-1.82 4.37,-2.69c0.07,0.08 1.12,1.32 1.63,1.85c-1.95,0.47 -5.5,1.83 -5.5,1.83c-0.25,0.1 -0.35,0.35 -0.25,0.6c0.05,0.2 0.35,0.35 0.55,0.25c0,0 4.51,-1.75 5.95,-1.92c0.71,0.7 2.58,2.31 2.7,2.4c-2.08,0.39 -4.09,0.65 -6.07,0.7zm21.46,2.08c-1.14,0.1 -2.28,0.2 -3.28,0.25c-3.23,0.1 -6.21,-0.6 -8.89,-2.04c-0.55,-0.25 -5.3,-3.16 -7.45,-6.3c-0.06,-0.08 -0.25,-0.29 -0.57,-0.77c-0.32,-0.5 -1.09,-1.32 -1.54,-3.29c2.04,0.64 4.29,0.86 6.53,1.03c1.84,0.15 3.47,0.16 5.36,0.7c1.89,0.53 3.98,1.54 5.32,2.48c1.31,0.87 2.34,1.89 3.36,2.96c0.36,0.98 1.18,2.13 2.1,3.15c0.54,0.61 1.12,1.17 1.62,1.65c-0.87,0.07 -1.73,0.14 -2.56,0.18zm17.23,17.83c-1.18,-1.23 -3.58,-3.28 -3.58,-3.28c-0.05,-0.05 -1.19,-1.14 -1.64,-1.64c-2.12,-2.55 -5.57,-7.75 -5.39,-14.71c0.33,0.16 0.67,0.34 1.06,0.56c0.6,0.29 1.29,0.69 1.99,1.14c3.61,2.27 7.95,5.93 9.46,10.18l-0.03,0.01c1.14,5.46 1.09,7.35 1.05,9.68l0,0.89c0,0.16 0.05,0.42 0.13,0.74c-1.01,-1.29 -2.03,-2.51 -3.05,-3.57zm-64.56,-22.45c1.94,-1.74 4.42,-3.08 7.79,-3.77c1.04,-0.25 2.04,-0.44 3.08,-0.69c2.73,-0.59 5.42,-1.19 8.02,-2.13c-0.25,1.51 -0.75,2.92 -1.57,4.21c-0.99,1.54 -2.34,3.03 -4.02,4.52c-1.64,1.34 -3.48,2.24 -5.46,2.78c-1.99,0.55 -4.12,0.74 -6.36,0.69c-1.14,-0.1 -2.18,-0.05 -3.23,0c-0.82,0.04 -1.65,0.08 -2.49,0.04c1.19,-2.1 2.49,-4.03 4.24,-5.65zm-23.3,28.26c0.05,-5.31 0.1,-12.81 5.56,-17.83c0.75,-0.6 1.39,-1.14 2.04,-1.64c2.01,-1.74 3.74,-3.18 6.48,-4.48c-0.08,0.6 -0.15,1.15 -0.22,1.7c-0.35,2.53 -0.7,5.01 -1.99,8.39c-0.3,0.8 -0.7,1.54 -1.14,2.33c-0.4,0.8 -0.89,1.59 -1.39,2.33c-2.45,3.72 -5.75,7.16 -9.34,9.53c0,-0.09 0,-0.21 0,-0.33zm33.43,68.14c-2.37,-1.61 -4.37,-3.51 -5.73,-5.9c1.26,0.29 2.51,0.54 3.79,0.74c1.52,0.24 3.04,0.39 4.62,0.49l0,0c2.78,0.3 5.17,0.75 7.05,1.39c1.66,0.58 2.92,1.33 3.73,2.21c-0.64,0.65 -1.25,1.35 -1.81,2.13c-0.9,-0.39 -1.8,-0.76 -2.7,-1.12c-0.32,-0.63 -0.85,-1.32 -1.46,-1.93c-0.1,-0.15 -0.73,-0.86 -0.83,-0.86c-0.19,-0.12 -0.42,-0.07 -0.61,0.07c-0.13,0.17 -0.1,0.42 0.01,0.58l0,0.01c0,0 1.25,1.3 1.45,1.55c-0.73,-0.29 -1.46,-0.58 -2.19,-0.88c-0.53,-1.09 -1.15,-1.9 -1.75,-2.35c-0.15,-0.1 -0.3,-0.2 -0.45,-0.25c-0.15,-0.1 -0.3,-0.15 -0.45,-0.15c-0.25,-0.05 -0.45,0.15 -0.5,0.4c-0.05,0.2 0.5,0.49 0.6,0.54c0.1,0.05 0.92,0.78 1.25,1.28c-1.83,-0.75 -3.71,-1.52 -5.72,-2.32c-0.24,-0.1 -0.49,0 -0.6,0.24c-0.1,0.2 0.05,0.5 0.25,0.55c1.81,0.75 3.75,1.55 5.75,2.35c-0.13,0.01 -0.25,0.02 -0.39,0.03c-0.54,0.05 -1.14,0 -1.78,-0.05c-0.25,0 -0.45,0.15 -0.45,0.4c-0.05,0.25 0.15,0.45 0.4,0.5c0.65,0.05 1.29,0.05 1.89,0.05c0.63,-0.05 1.26,-0.15 1.8,-0.34c0.8,0.32 1.62,0.65 2.44,0.97c-0.29,0.1 -0.6,0.19 -0.91,0.26c-0.65,0.1 -1.34,0.2 -1.99,0.25c-0.25,0 -0.44,0.2 -0.4,0.45c0,0.25 0.2,0.45 0.45,0.45c0.7,-0.05 1.44,-0.15 2.14,-0.3c0.64,-0.14 1.24,-0.37 1.84,-0.63c0.81,0.34 1.63,0.67 2.45,1c-0.53,0.95 -1.21,1.82 -2.01,2.62c-0.41,-0.11 -0.82,-0.22 -1.23,-0.33c-2.89,-1.17 -5.59,-2.48 -7.95,-4.1zm-33.97,-54.43c0.02,-0.02 0.03,-0.03 0.05,-0.05c0.75,-1.19 1.59,-2.14 2.43,-2.93c0.75,-0.67 1.54,-1.19 2.36,-1.64c1.04,4.31 0.91,8.35 -0.38,12.22c-1.38,3.98 -3.97,7.72 -7.74,11.22c-0.25,-0.28 -0.52,-0.55 -0.78,-0.83c0.68,-1.11 1.35,-2.29 2,-3.53c0.01,0 0.01,0 0.01,0c0.54,-0.35 0.54,-0.35 0.6,-0.35c0.65,-0.45 1.34,-0.85 1.99,-1.24c0.2,-0.15 0.25,-0.4 0.15,-0.6c-0.15,-0.19 -0.4,-0.3 -0.6,-0.15c-0.5,0.3 -0.94,0.57 -1.38,0.84c0.45,-0.9 0.88,-1.83 1.31,-2.8c0.44,-0.34 0.87,-0.63 1.26,-0.87c0.45,-0.2 0.84,-0.4 1.24,-0.49c0.25,-0.05 0.4,-0.3 0.35,-0.5c-0.05,-0.25 -0.3,-0.4 -0.55,-0.35c-0.49,0.15 -0.94,0.3 -1.44,0.6c-0.07,0.03 -0.15,0.09 -0.22,0.13c0.29,-0.68 0.57,-1.39 0.84,-2.1c0,-0.01 0.02,-0.01 0.02,-0.02c0.25,-0.29 0.54,-0.54 0.94,-0.84c0.45,-0.25 0.89,-0.5 1.44,-0.74c0.25,-0.1 0.3,-0.4 0.2,-0.6c-0.1,-0.25 -0.35,-0.3 -0.55,-0.2c-0.56,0.24 -1.04,0.51 -1.47,0.8c0.24,-0.71 0.47,-1.42 0.69,-2.12c0.03,-0.02 0.06,-0.04 0.09,-0.08c0.25,-0.3 0.5,-0.59 0.75,-0.8c0.3,-0.25 0.54,-0.45 0.89,-0.64c0.2,-0.1 0.25,-0.35 0.15,-0.6c-0.1,-0.2 -0.35,-0.25 -0.6,-0.15c-0.24,0.14 -0.48,0.31 -0.71,0.48c0.14,-0.46 0.28,-0.92 0.41,-1.37c0.05,-0.25 -0.1,-0.49 -0.35,-0.54c-0.2,-0.1 -0.45,0.05 -0.55,0.3c-0.25,1.04 -0.55,2.04 -0.84,2.98c-0.35,0.99 -0.65,1.94 -0.99,2.88c-1.71,4.68 -3.7,8.69 -5.75,12.03c-0.12,-0.12 -0.24,-0.24 -0.36,-0.36c-0.03,-0.03 0,-2.18 0.05,-3.02c0.73,-1.23 1.41,-2.78 2.09,-4.33c0.44,-1.03 1.39,-3.03 1.39,-3.03c1.21,-2.31 1.57,-4.46 1.56,-6.61zm-9.15,-6.36l0,0c0.41,-0.99 0.76,-1.98 1.06,-2.88c0.86,-2.45 1.64,-4.61 3.1,-7.12c0.67,1.34 1.21,2.65 1.72,4.04c0.6,1.69 1.19,3.58 1.79,5.86l0.01,0c0.05,0.67 0.15,1.31 0.24,1.94c0.43,3.68 0.83,7.05 -1.06,10.68c0,0 -0.99,2.09 -1.44,3.13c-0.57,1.3 -1.13,2.55 -1.7,3.62c-0.01,-0.03 -5.63,-12.04 -3.72,-19.27zm6.71,41.03c-2.93,-1.99 -4.92,-4.82 -6.16,-8.39c-1.13,-3.43 -1.58,-7.48 -1.42,-12.11c0.67,0.47 1.33,0.95 1.96,1.43c0.84,0.65 1.64,1.34 2.39,1.99c3.77,3.58 6.35,7.55 7.8,11.92c0.01,0.08 0.05,0.14 0.1,0.19c-0.09,0.88 -0.14,1.79 -0.1,2.73c0.07,2.33 0.52,4.86 1.29,7.59c-1.6,-1.96 -3.54,-3.76 -5.86,-5.35zm5.47,-2.29c-0.09,-2.78 0.37,-5.24 1.42,-7.42c0.6,1.38 1.27,2.64 2.01,3.8c0.84,1.39 1.79,2.63 2.73,3.77c1.49,2.24 2.43,4.42 3.03,6.51c0.5,1.97 0.66,3.81 0.64,5.64c-0.81,-0.28 -1.62,-0.52 -2.43,-0.72c-0.15,-0.32 -0.28,-0.64 -0.42,-0.96c0.19,-0.37 -0.03,0.11 0.02,0.01c0.5,-1.19 0.99,-2.44 1.44,-3.53c0.1,-0.25 -0.05,-0.5 -0.25,-0.6c-0.25,-0.05 -0.5,0.05 -0.6,0.25c-0.38,0.98 -0.72,1.87 -1.09,2.74c-0.35,-0.86 -0.68,-1.73 -1,-2.6c0.2,-0.43 0.4,-0.84 0.6,-1.28c0.3,-0.6 0.54,-1.24 0.8,-1.79c0.1,-0.2 0,-0.5 -0.2,-0.55c-0.25,-0.09 -0.5,0 -0.6,0.2c-0.25,0.6 -0.55,1.19 -0.79,1.79c-0.07,0.16 -0.15,0.31 -0.22,0.47c-0.09,-0.27 -0.19,-0.54 -0.28,-0.82c-0.16,-0.48 -0.31,-0.95 -0.45,-1.42c0.05,-0.05 0.09,-0.11 0.1,-0.16c0.05,-0.4 0.15,-0.8 0.29,-1.25c0.2,-0.4 0.4,-0.79 0.7,-1.19c0.15,-0.15 0.15,-0.45 -0.05,-0.6c-0.2,-0.15 -0.44,-0.15 -0.59,0.05c-0.4,0.45 -0.65,0.95 -0.85,1.44c-0.03,0.06 -0.04,0.12 -0.06,0.18c-0.37,-1.27 -0.7,-2.54 -0.98,-3.81c-0.05,-0.25 -0.3,-0.4 -0.5,-0.3c-0.25,0.05 -0.4,0.25 -0.35,0.49c0.29,1.36 0.65,2.72 1.04,4.06c-0.51,-0.28 -1.04,-0.63 -1.58,-1.08c-0.2,-0.15 -0.45,-0.1 -0.6,0.1c-0.2,0.15 -0.15,0.44 0.05,0.6c0.65,0.54 1.39,1.04 2.08,1.34c0.14,0.04 0.27,0.09 0.37,0.14c0.17,0.55 0.35,1.1 0.53,1.65c0.12,0.35 0.24,0.71 0.36,1.06c-0.19,-0.1 -0.38,-0.18 -0.56,-0.27c-0.55,-0.3 -1.04,-0.55 -1.59,-0.75c-0.25,-0.1 -0.5,0 -0.59,0.2c-0.05,0.25 0.05,0.5 0.24,0.6c0.55,0.2 1.04,0.45 1.54,0.7c0.42,0.23 0.85,0.47 1.36,0.66c0.48,1.32 1.01,2.63 1.6,3.94c-1.26,-0.27 -2.52,-0.46 -3.8,-0.57c-0.17,-0.31 -0.35,-0.61 -0.54,-0.93c-1.21,-3.63 -1.89,-6.88 -1.98,-9.79zm23.94,24.89c-3.87,0.75 -7.55,0.89 -10.83,0.1c-3.25,-0.74 -6.17,-2.37 -8.59,-5.21l0.01,0c-1.14,-1.64 -2.24,-3.28 -3.38,-4.77c-0.95,-1.23 -1.89,-2.39 -2.84,-3.43c4.5,-0.28 8.83,0.47 13.07,2.24c4.52,1.89 8.99,4.87 13.36,8.89c0.05,0 5.22,1.84 7.75,2.59c1.98,0.58 3.96,1.13 5.94,1.65c0.27,0.12 0.54,0.22 0.82,0.33c-0.56,0.46 -1.16,0.89 -1.81,1.29l-13.5,-3.68zm32.78,5.76c1.36,0.24 2.81,0.42 4.22,0.57c0.16,0.36 0.2,0.69 0.2,1.02c-0.04,0.36 -0.18,0.7 -0.37,1.08c-2.31,-0.11 -4.57,-0.45 -6.83,-0.93c-1.92,-0.42 -3.84,-0.94 -5.75,-1.54c1.38,-0.34 2.66,-0.76 3.86,-1.27c0.05,0.07 0.12,0.14 0.2,0.18c1.49,0.34 2.97,0.64 4.47,0.89zm0.79,-5.67c-3.13,2.98 -7.4,5.02 -13.07,5.66c-0.89,0.1 -1.79,0.1 -2.58,0.15c-1.69,0.05 -3.03,0.15 -4.17,0.75l0.01,0.01c-1.58,0.64 -3.15,1.23 -4.73,1.68c-1.47,0.42 -2.97,0.8 -4.48,1.05c-0.17,-0.23 -0.31,-0.46 -0.34,-0.65c-0.06,-0.18 -0.09,-0.33 -0.12,-0.49c3.66,-0.88 6.81,-2.04 9.36,-3.53c2.5,-1.46 4.4,-3.28 5.61,-5.5c0.12,-0.04 0.22,-0.13 0.25,-0.26c0.03,-0.06 0.03,-0.14 0.03,-0.21c1.67,-2.25 3.7,-3.94 6.03,-5.15c2.38,-1.24 5.07,-1.98 7.95,-2.43l0,0c1.32,-0.05 2.55,-0.2 3.77,-0.5c0.98,-0.22 1.89,-0.52 2.79,-0.86c-1.35,4 -3.35,7.55 -6.31,10.28zm33.18,-64.46c0.24,-2.14 0.74,-4.32 1.58,-6.61l2.68,-6.28c3.04,5.23 4.73,10.24 4.92,14.92c0.23,4.64 -0.99,8.96 -3.75,13.02c-0.13,-0.4 -0.26,-0.8 -0.42,-1.19c-0.89,-2.38 -2.28,-4.75 -4.4,-7.08l0.03,-0.02c-0.22,-0.25 -0.44,-0.5 -0.66,-0.75c-0.23,-1.94 -0.22,-3.93 0.02,-6.01zm0.09,22.2c-0.78,-0.64 -1.57,-1.28 -2.35,-1.96c-2.03,-2.38 -3.46,-5.15 -4.06,-8.37c-0.51,-3.08 -0.27,-6.57 1,-10.53c0.76,0.9 1.56,1.79 2.38,2.69c0.71,0.78 1.4,1.57 2.08,2.36c0.04,0.08 0.1,0.14 0.16,0.18c0.21,0.25 0.42,0.49 0.64,0.73l0,0.05c2.03,2.23 3.38,4.52 4.27,6.86c0.81,2.2 1.25,4.44 1.41,6.68c-0.44,0.39 -0.85,0.81 -1.24,1.22c-0.69,-1.1 -1.36,-2.2 -2,-3.3c0.25,-0.65 0.44,-1.72 0.53,-3.02c0,-0.35 0.1,-1.88 0.1,-1.93c0,-0.25 -0.2,-0.45 -0.45,-0.45c-0.24,0 -0.44,0.2 -0.44,0.45c0,0 -0.05,1.59 -0.1,1.84c-0.06,0.79 -0.15,1.48 -0.26,2.02c-0.56,-0.99 -1.88,-3.48 -2.01,-3.74c0.16,-0.43 0.3,-1.04 0.39,-1.76c0.15,-0.84 0.25,-1.84 0.29,-2.78c0,-0.2 -0.15,-0.45 -0.4,-0.45c-0.25,0 -0.45,0.15 -0.5,0.4c-0.05,0.94 -0.15,1.89 -0.25,2.73c-0.05,0.23 -0.09,0.46 -0.13,0.66c-0.95,-1.98 -1.83,-3.96 -2.65,-5.98c-0.1,-0.25 -0.35,-0.35 -0.59,-0.25c-0.2,0.1 -0.3,0.35 -0.2,0.55c0.84,2.1 1.74,4.16 2.74,6.21c-0.31,-0.13 -0.62,-0.29 -0.96,-0.49c-0.6,-0.35 -1.24,-0.85 -1.88,-1.34c-0.2,-0.15 -0.45,-0.15 -0.6,0.05c-0.15,0.2 -0.15,0.45 0.05,0.6c0.64,0.54 1.34,1.04 1.99,1.49c0.65,0.37 1.31,0.65 1.96,0.81c0.12,0.24 1.33,2.59 1.84,3.5c-0.36,-0.17 -2.57,-1.39 -3.31,-1.93c-0.2,-0.1 -0.45,-0.05 -0.6,0.15c-0.15,0.2 -0.1,0.45 0.1,0.6c0.8,0.54 3.77,2.16 4.54,2.49c0.69,1.19 1.42,2.37 2.18,3.55c-0.41,0.48 -0.8,0.97 -1.16,1.48c-0.8,-0.68 -1.65,-1.39 -2.51,-2.07zm-0.32,26.86c-0.4,1.06 -1.17,2.32 -2.31,3.79c-1.44,1.79 -3.43,3.93 -6.16,6.46c-2.73,2.53 -5.81,4.17 -9.14,4.96c-3.38,0.8 -7,0.75 -10.93,0c0,0 0.94,-0.53 1.49,-0.89c1.39,-0.94 2.49,-2.23 3.48,-3.77l-0.03,-0.02c2.58,-3.51 5.95,-6.14 10.16,-7.87c0.8,-0.35 1.64,-0.65 2.53,-0.95c0.85,-0.24 1.79,-0.5 2.73,-0.69c0.01,-0.02 5.73,-0.57 8.18,-1.02zm-2.95,-0.54c-0.03,0.04 -0.05,0.09 -0.06,0.13c-1.26,0.16 -2.51,0.28 -3.75,0.37c0.17,-0.38 0.34,-0.77 0.49,-1.15c0.25,-0.65 0.8,-2.15 0.82,-2.23c0.52,-0.18 1.06,-0.53 1.56,-0.95c0.6,-0.5 1.19,-1.09 1.79,-1.74c0.15,-0.15 0.15,-0.44 -0.05,-0.6c-0.15,-0.2 -0.45,-0.15 -0.6,0c-0.54,0.65 -1.14,1.19 -1.69,1.64c-0.22,0.2 -0.44,0.37 -0.67,0.5c0.32,-1.1 0.58,-2.23 0.8,-3.38c0.32,-0.16 0.69,-0.41 1.05,-0.7c0.45,-0.4 0.9,-0.84 1.39,-1.39c0.15,-0.2 0.15,-0.44 -0.05,-0.65c-0.15,-0.15 -0.45,-0.15 -0.6,0.05c-0.49,0.5 -0.95,0.95 -1.34,1.29c-0.08,0.08 -0.16,0.15 -0.24,0.22c0.29,-1.7 0.5,-3.45 0.63,-5.24c0,-0.25 -0.15,-0.45 -0.39,-0.45c-0.25,-0.05 -0.45,0.15 -0.5,0.4c-0.12,1.79 -0.32,3.55 -0.62,5.27c-0.13,-0.14 -0.25,-0.29 -0.37,-0.45c-0.25,-0.45 -0.49,-0.94 -0.74,-1.49c-0.05,-0.25 -0.3,-0.35 -0.54,-0.3c-0.25,0.1 -0.35,0.35 -0.25,0.6c0.25,0.65 0.5,1.19 0.85,1.69c0.24,0.4 0.55,0.72 0.87,0.99c-0.23,1.15 -0.5,2.28 -0.82,3.38c-0.1,-0.15 -0.21,-0.31 -0.3,-0.5c-0.3,-0.55 -0.6,-1.24 -0.94,-2.19c-0.1,-0.2 -0.35,-0.35 -0.6,-0.25c-0.2,0.1 -0.35,0.35 -0.25,0.54c0.35,0.99 0.7,1.69 0.99,2.29c0.25,0.51 0.51,0.86 0.76,1.18c-0.02,0.07 -0.81,2.25 -0.83,2.31c-0.37,-0.5 -0.72,-1.01 -1.02,-1.5c-0.05,-0.15 -0.3,-0.65 -0.35,-0.8c-0.1,-0.2 -0.35,-0.3 -0.54,-0.25c-0.25,0.1 -0.35,0.35 -0.25,0.6c0.05,0.1 0.3,0.69 0.4,0.84c0.37,0.69 0.83,1.34 1.37,2.01c-0.08,0.16 -0.15,0.31 -0.22,0.46c-0.03,0 -4.01,1.02 -4.32,1.12c-0.01,-1.85 0.29,-3.8 1,-5.88c0.74,-2.19 1.94,-4.52 3.68,-7c0,0 0.99,-1.94 1.14,-2.33c0.83,-1.76 1.55,-3.68 2.18,-5.65c0.63,0.73 1.17,1.48 1.64,2.27c0.6,0.94 1.1,1.93 1.44,2.88c1.82,5 0.73,10.02 -1.95,14.04zm15.05,-28.11c-0.15,3.13 -0.7,6.8 -1.14,9.23c0,0 -3.68,8.8 -5.61,10.88c-1.71,1.83 -3.45,2.79 -5.24,3.56c0.89,-3.05 0.91,-6.38 -0.26,-9.69c0.01,-0.03 0.39,-2.12 0.63,-3.11c0.3,-0.94 0.6,-1.89 0.99,-2.78c1.14,-2.62 2.78,-4.95 4.99,-6.97c0.15,-0.03 0.26,-0.12 0.3,-0.26c1.52,-1.34 3.3,-2.53 5.36,-3.56c0.01,0.29 0.03,0.59 0.03,0.91c-0.01,0.55 -0.05,1.15 -0.05,1.79zm-110.46,-4.72c0.1,-1.1 0.13,-2.31 0.11,-3.58c0.81,-0.61 1.32,-1.57 1.83,-2.58c0,0 0.5,-1 0.74,-1.39c0.15,-0.2 0.1,-0.5 -0.1,-0.65c-0.2,-0.1 -0.49,-0.05 -0.6,0.15c-0.35,0.45 -0.6,0.99 -0.84,1.49c-0.33,0.66 -0.66,1.29 -1.06,1.79c-0.04,-1.18 -0.1,-2.42 -0.17,-3.68c0.76,-0.42 1.17,-1.15 1.59,-1.88c0.25,-0.4 0.45,-0.85 0.74,-1.19c0.15,-0.15 0.15,-0.45 -0.05,-0.6c-0.2,-0.15 -0.44,-0.15 -0.6,0.05c-0.35,0.4 -0.6,0.84 -0.84,1.29c-0.28,0.49 -0.54,0.96 -0.9,1.29c-0.07,-1.05 -0.13,-2.12 -0.18,-3.18c0.73,-0.6 1.43,-2.63 1.68,-3.02c0.15,-0.2 0.1,-0.44 -0.05,-0.6c-0.2,-0.15 -0.5,-0.1 -0.64,0.1c-0.35,0.45 -0.87,2 -1.04,2.28c-0.08,-2.23 -0.07,-4.41 0.14,-6.4c0.05,-0.25 -0.15,-0.5 -0.4,-0.5c-0.25,-0.05 -0.45,0.15 -0.5,0.4c-0.19,1.88 -0.2,3.89 -0.14,5.96c-0.14,-0.21 -0.75,-1.29 -0.86,-1.44c-0.1,-0.2 -0.35,-0.3 -0.59,-0.2c-0.2,0.15 -0.3,0.4 -0.2,0.6c0.1,0.16 1.27,2.02 1.7,2.49c0.05,1.06 0.1,2.12 0.16,3.18c-0.7,-0.61 -1.71,-2.14 -1.71,-2.14c-0.1,-0.2 -0.35,-0.29 -0.6,-0.2c-0.2,0.05 -0.35,0.35 -0.25,0.54c0.49,1.22 1.69,2.25 2.63,2.99c0.08,1.32 0.15,2.61 0.19,3.84c-0.32,-0.34 -0.67,-0.75 -0.97,-1.17c-0.5,-0.65 -0.85,-1.64 -1.05,-1.79c-0.2,-0.15 -0.65,0.1 -0.65,0.15c-0.2,0.35 0.3,1.24 0.99,2.19c0.56,0.74 1.25,1.53 1.7,1.87c0.01,1.22 -0.01,2.38 -0.11,3.44c0,0.25 0.15,0.45 0.4,0.5c0.25,0 0.45,-0.15 0.5,-0.4zm4.83,23.39c0.14,-0.72 0.19,-1.45 0.14,-2.12c0,-0.74 -0.05,-1.44 -0.15,-2.19c0,-0.25 -0.25,-0.4 -0.49,-0.4c-0.2,0.05 -0.4,0.25 -0.35,0.5c0.05,0.7 0.1,1.39 0.15,2.09c0,0.23 -0.01,0.46 -0.02,0.68c-0.4,-0.76 -0.81,-1.52 -1.22,-2.27c0.02,-1.37 -0.25,-3.2 -0.4,-4.52l0,-0.05c-0.05,-0.25 -0.3,-0.4 -0.5,-0.4c-0.25,0.05 -0.44,0.25 -0.4,0.5l0,0.05c0.11,0.78 0.24,1.71 0.32,2.6c-0.04,-0.07 -0.08,-0.15 -0.12,-0.22c-0.31,-0.59 -0.65,-1.19 -0.97,-1.78c0.01,-0.04 -0.12,-1.45 -0.22,-2.14c-0.05,-0.75 -0.15,-1.44 -0.2,-2.14c0,-0.25 -0.2,-0.45 -0.45,-0.45c-0.25,0 -0.45,0.25 -0.45,0.45l0,0.05c0.05,0.7 0.15,1.44 0.25,2.19c0,0.03 0,0.06 0.01,0.09c-0.82,-1.48 -1.65,-2.97 -2.49,-4.46c-0.15,-0.25 -0.4,-0.3 -0.59,-0.2c-0.25,0.15 -0.3,0.39 -0.2,0.59c0.96,1.69 1.9,3.36 2.82,5.02c-0.16,-0.07 -0.33,-0.14 -0.49,-0.2c-0.64,-0.25 -1.29,-0.5 -1.88,-0.7c-0.2,-0.1 -0.44,0 -0.55,0.25c-0.1,0.25 0.05,0.5 0.25,0.55c0.6,0.2 1.24,0.5 1.88,0.75c0.5,0.21 0.98,0.39 1.47,0.58c0.35,0.65 0.72,1.31 1.07,1.95c0.17,0.32 0.34,0.65 0.52,0.97c-0.29,-0.13 -0.57,-0.27 -0.86,-0.43c-0.75,-0.39 -1.44,-0.74 -2.09,-0.94c-0.25,-0.1 -0.5,0.05 -0.6,0.25c-0.05,0.25 0.1,0.5 0.29,0.55c0.6,0.2 1.29,0.54 1.99,0.89c0.62,0.38 1.28,0.71 1.91,0.91c0.4,0.77 0.8,1.53 1.2,2.29c-0.02,-0.01 -0.05,-0.02 -0.07,-0.03c-0.99,-0.4 -1.99,-0.95 -3.03,-1.64c-0.2,-0.15 -0.5,-0.1 -0.6,0.1c-0.15,0.2 -0.1,0.44 0.1,0.59c1.09,0.75 2.14,1.35 3.23,1.79c0.2,0.05 0.4,0.15 0.6,0.2c0.12,0.05 0.23,0.1 0.35,0.13c0.4,0.79 0.81,1.57 1.19,2.35c0.1,0.25 0.35,0.3 0.6,0.2c0.2,-0.1 0.3,-0.35 0.2,-0.59c-0.38,-0.74 -0.77,-1.49 -1.15,-2.24zm2.82,-44.69c-0.25,0.2 -0.35,0.5 -0.35,0.8s0.1,0.6 0.35,0.8c0.13,0.12 0.29,0.19 0.48,0.24c0.1,0.03 0.21,0.06 0.32,0.06c0.12,0 0.22,-0.02 0.33,-0.06c0.18,-0.05 0.35,-0.12 0.47,-0.24c0.25,-0.2 0.35,-0.5 0.35,-0.8s-0.1,-0.6 -0.35,-0.8c-0.2,-0.2 -0.5,-0.35 -0.8,-0.35c-0.3,0 -0.6,0.15 -0.8,0.35zm60.59,62.03c-1.92,1.3 -3.83,2.56 -5.75,3.77c0.05,-0.28 0.11,-0.56 0.19,-0.84c0.15,-0.5 0.35,-1.04 0.64,-1.59c0.15,-0.2 0.05,-0.45 -0.15,-0.59c-0.2,-0.1 -0.49,-0.05 -0.6,0.2c-0.35,0.6 -0.6,1.19 -0.74,1.79c-0.18,0.55 -0.27,1.09 -0.29,1.64c-0.73,0.46 -1.45,0.91 -2.18,1.35c0.09,-0.53 0.29,-1.17 0.59,-1.89c0.05,-0.2 0.15,-0.4 0.29,-0.65c0.1,-0.25 0.2,-0.5 0.35,-0.69c0.1,-0.25 0,-0.5 -0.2,-0.6c-0.2,-0.15 -0.49,-0.05 -0.6,0.15l0,0.05c-0.15,0.25 -0.25,0.5 -0.35,0.69c-0.1,0.2 -0.2,0.45 -0.35,0.69c-0.43,1.08 -0.67,2.04 -0.65,2.79c-0.86,0.51 -1.72,1.02 -2.57,1.52c0.01,-0.39 0.06,-0.83 0.19,-1.33c0.25,-0.84 0.65,-1.79 1.3,-2.93c0.1,-0.2 0,-0.45 -0.2,-0.6c-0.2,-0.1 -0.45,-0.05 -0.6,0.2c-0.65,1.19 -1.1,2.19 -1.34,3.08c-0.22,0.78 -0.28,1.48 -0.22,2.08c-0.6,0.35 -1.19,0.68 -1.78,1.01c0.09,-0.49 0.18,-0.99 0.31,-1.5c0.2,-0.74 0.5,-1.49 0.8,-2.28c0.1,-0.2 0,-0.45 -0.2,-0.55c-0.25,-0.1 -0.5,0 -0.6,0.2c-0.35,0.84 -0.64,1.64 -0.84,2.43c-0.18,0.73 -0.31,1.46 -0.42,2.23c-1.13,0.62 -2.25,1.22 -3.36,1.8c-0.25,0.1 -0.3,0.34 -0.2,0.59c0.1,0.2 0.35,0.3 0.59,0.15c1.16,-0.59 2.33,-1.21 3.49,-1.84c0.72,0.17 1.45,0.31 2.22,0.4c0.8,0.15 1.64,0.2 2.48,0.15c0.25,0 0.45,-0.2 0.45,-0.44c0,-0.2 -0.2,-0.4 -0.45,-0.4c-0.8,0 -1.59,-0.05 -2.38,-0.15c-0.39,-0.05 -0.78,-0.11 -1.17,-0.19c0.54,-0.3 1.08,-0.61 1.62,-0.92c0.7,0.17 1.46,0.26 2.23,0.31c0.8,0.05 1.64,0 2.53,-0.05c0.25,-0.05 0.4,-0.25 0.4,-0.5c0,-0.25 -0.25,-0.4 -0.44,-0.4c-0.85,0.1 -1.69,0.1 -2.49,0.05c-0.36,0 -0.73,-0.02 -1.09,-0.07c0.74,-0.44 1.49,-0.88 2.23,-1.34c0.71,0.17 1.49,0.22 2.24,0.26c0.85,0.05 1.64,0 2.43,0c0.25,0 0.45,-0.2 0.45,-0.44c0,-0.25 -0.2,-0.44 -0.45,-0.44c-0.79,0.05 -1.59,0.05 -2.38,0c-0.4,0 -0.78,-0.03 -1.15,-0.07c0.68,-0.42 1.37,-0.84 2.05,-1.27l3.37,0.1c0.25,0 0.45,-0.2 0.45,-0.45c0,-0.25 -0.2,-0.44 -0.4,-0.44l-2.07,-0.06c1.74,-1.12 3.49,-2.27 5.25,-3.47c0.2,-0.15 0.25,-0.4 0.1,-0.6c-0.08,-0.2 -0.38,-0.25 -0.58,-0.1zm31.99,-52.2c-0.15,-0.2 -0.45,-0.2 -0.65,-0.1c-0.2,0.15 -0.2,0.45 -0.04,0.64c0.49,0.7 1.09,1.34 1.63,1.89c0.54,0.54 1.12,0.99 1.74,1.39l0.1,2.53c0,0.25 0.2,0.45 0.45,0.4c0.25,0 0.44,-0.2 0.4,-0.45l-0.1,-2.51c0.12,-0.11 0.24,-0.21 0.34,-0.32c0.15,-0.15 0.3,-0.3 0.5,-0.5c0.75,-0.89 1.54,-2.03 2.23,-3.37c0.1,-0.25 0.05,-0.5 -0.2,-0.6c-0.2,-0.15 -0.44,-0.05 -0.54,0.15c-0.69,1.34 -2.32,3.41 -2.38,3.48l-0.15,-3.83c0.51,-0.48 0.99,-1.09 1.38,-1.75c0.45,-0.75 0.85,-1.59 1.19,-2.43c0.1,-0.25 -0.05,-0.5 -0.25,-0.6c-0.25,-0.1 -0.5,0.05 -0.6,0.25c-0.29,0.85 -0.69,1.64 -1.09,2.33c-0.21,0.36 -0.44,0.68 -0.69,0.97l-0.11,-2.99c0.95,-0.91 1.37,-2.3 1.79,-3.74l0,-0.05c0.05,-0.2 -0.05,-0.45 -0.3,-0.54c-0.25,-0.05 -0.49,0.1 -0.54,0.29l0,0.05c-0.28,0.95 -0.57,1.9 -1,2.65l-0.19,-4.88c-0.05,-0.25 -0.25,-0.45 -0.49,-0.45c-0.25,0 -0.4,0.2 -0.4,0.45l0.22,5.4c-0.03,-0.01 -1.27,-0.88 -1.86,-1.52c-0.15,-0.2 -0.45,-0.2 -0.65,-0.05c-0.15,0.2 -0.15,0.45 0,0.65c0.65,0.7 1.34,1.29 1.99,1.64c0.15,0.1 0.51,0.29 0.57,0.3l0.13,3.28c-0.09,-0.03 -0.18,-0.07 -0.25,-0.1c-0.7,-0.35 -1.39,-0.99 -2.09,-1.83c-0.15,-0.16 -0.45,-0.2 -0.6,-0.05c-0.2,0.15 -0.25,0.45 -0.1,0.64c0.8,0.9 1.54,1.64 2.39,2.04c0.15,0.05 0.29,0.15 0.49,0.2c0.07,0.02 0.13,0.04 0.2,0.06l0.15,3.68c-0.36,-0.28 -0.71,-0.59 -1.04,-0.92c-0.59,-0.49 -1.09,-1.13 -1.58,-1.78zm7.99,22c-0.69,0.65 -2.32,1.7 -2.33,1.71c0.75,-1.74 1.52,-3.53 2.33,-5.43c0.05,-0.2 -0.05,-0.45 -0.25,-0.54c-0.24,-0.1 -0.5,0 -0.59,0.2c-0.7,1.64 -1.44,3.37 -2.2,5.16c-0.19,-0.74 -0.32,-1.51 -0.38,-2.28c0,-0.2 -0.05,-1.44 -0.05,-1.49c0,-0.25 -0.2,-0.45 -0.45,-0.45c-0.2,0 -0.4,0.2 -0.4,0.45c0,0.05 0,1.29 0.05,1.54c0.09,1.18 0.28,2.37 0.7,3.48c-0.45,1.04 -0.9,2.1 -1.36,3.16c-0.48,-0.81 -0.83,-1.67 -1.03,-2.52c-0.05,-0.2 -0.1,-0.45 -0.15,-0.64c0,-0.2 -0.05,-0.45 -0.05,-0.65c0,-0.25 -0.25,-0.45 -0.5,-0.45c-0.2,0 -0.4,0.24 -0.4,0.45l0,0.05c0,0.25 0.05,0.49 0.1,0.74c0,0.2 0.05,0.45 0.1,0.7c0.28,1.12 0.79,2.24 1.51,3.27c-0.24,0.55 -1.14,2.63 -1.35,3.12c-0.17,-0.52 -0.33,-1.03 -0.45,-1.53c-0.2,-0.84 -0.35,-1.74 -0.5,-2.58c0,-0.25 -0.24,-0.4 -0.49,-0.4c-0.2,0.05 -0.4,0.25 -0.35,0.5c0.1,0.89 0.3,1.79 0.5,2.68c0.18,0.86 0.46,1.68 0.8,2.47c-0.35,0.82 -0.69,1.63 -1.05,2.45c-0.1,0.25 0,0.5 0.25,0.6c0.2,0.1 0.45,0 0.54,-0.25c0.35,-0.8 0.7,-1.6 1.05,-2.39c0.61,-0.33 1.22,-0.66 1.88,-1.08c0.7,-0.45 1.39,-0.9 2.13,-1.49c0.2,-0.1 0.25,-0.4 0.1,-0.59c-0.15,-0.2 -0.4,-0.25 -0.6,-0.1c-0.75,0.54 -1.44,1.04 -2.09,1.44c-0.3,0.17 -0.59,0.34 -0.87,0.5c0.19,-0.45 1.07,-2.5 1.32,-3.07c0.67,-0.28 1.35,-0.61 1.98,-1.06c0.74,-0.5 1.49,-1.04 2.24,-1.79c0.2,-0.15 0.2,-0.45 0,-0.64c-0.15,-0.15 -0.45,-0.15 -0.6,0c-0.74,0.69 -1.44,1.24 -2.08,1.69c-0.34,0.22 -0.67,0.41 -1,0.58c0.38,-0.88 0.77,-1.76 1.15,-2.65c0.13,-0.04 0.74,-0.32 0.94,-0.42c0.84,-0.45 1.74,-1.09 2.48,-1.79c0.2,-0.15 0.2,-0.45 0.05,-0.6c-0.13,-0.2 -0.43,-0.2 -0.63,-0.06zm-80.06,-56.76c0.89,-0.32 1.78,-0.65 2.67,-1c0.58,0.2 1.15,0.38 1.71,0.55c0.65,0.15 1.29,0.3 1.94,0.4c0.25,0 0.5,-0.15 0.5,-0.4c0.05,-0.25 -0.1,-0.45 -0.35,-0.49c-0.65,-0.1 -1.29,-0.2 -1.89,-0.35c-0.21,-0.07 -0.42,-0.14 -0.64,-0.21c0.82,-0.34 1.64,-0.69 2.45,-1.06c0.88,0.49 1.8,0.69 2.76,0.87c0.2,0.05 0.4,0.1 0.6,0.15c0.2,0.05 0.45,-0.1 0.5,-0.35c0.05,-0.25 -0.1,-0.5 -0.35,-0.55c-0.2,-0.05 -0.4,-0.05 -0.6,-0.1c-0.65,-0.14 -1.28,-0.26 -1.88,-0.49c0.18,-0.09 0.36,-0.16 0.54,-0.25c0.62,-0.31 1.25,-0.62 1.86,-0.95c1.17,0.3 3.6,0.35 3.65,0.35c0.25,0.05 0.45,-0.15 0.45,-0.4c0,-0.25 -0.2,-0.45 -0.4,-0.45c-0.1,0 -1.7,-0.07 -2.45,-0.17c1.58,-0.85 3.16,-1.75 4.78,-2.71c0.2,-0.15 0.3,-0.4 0.15,-0.65c-0.1,-0.2 -0.4,-0.25 -0.6,-0.15c-1.74,1.06 -3.45,2.02 -5.14,2.91c0.1,-0.33 0.23,-0.68 0.37,-1.03c0.1,-0.1 0.15,-0.25 0.2,-0.35c0.05,-0.1 0.1,-0.25 0.2,-0.35c0.1,-0.2 0.05,-0.5 -0.15,-0.6c-0.25,-0.15 -0.5,-0.05 -0.6,0.15c0,0 -0.95,2.11 -1.06,2.72c-0.56,0.29 -1.11,0.58 -1.67,0.86c-0.21,0.1 -0.41,0.19 -0.62,0.29c0.05,-0.29 0.1,-0.57 0.18,-0.84c0.15,-0.54 0.35,-1.04 0.7,-1.49c0.15,-0.2 0.1,-0.5 -0.1,-0.65c-0.2,-0.15 -0.5,-0.1 -0.65,0.1c-0.4,0.6 -0.64,1.19 -0.79,1.79c-0.12,0.51 -0.21,1.02 -0.26,1.52c-0.96,0.44 -1.92,0.85 -2.89,1.25c0.1,-0.39 0.21,-0.78 0.37,-1.18c0.2,-0.6 0.49,-1.24 0.89,-1.94c0.1,-0.2 0.05,-0.45 -0.2,-0.6c-0.2,-0.1 -0.45,-0.05 -0.6,0.2c-0.4,0.69 -0.7,1.38 -0.94,2.03c-0.24,0.66 -0.38,1.27 -0.52,1.88c-0.8,0.31 -1.6,0.62 -2.41,0.9c-0.25,0.05 -0.35,0.3 -0.25,0.55c0.04,0.29 0.29,0.38 0.54,0.29zm-15.69,16.88c0.2,-0.15 0.25,-0.4 0.15,-0.6c-0.1,-0.24 -0.4,-0.29 -0.6,-0.2c-0.45,0.25 -0.85,0.5 -1.19,0.75c-0.37,0.26 -0.7,0.46 -1.08,0.59c0.45,-0.81 0.92,-1.7 1.4,-2.65c0.88,0.06 1.64,-0.42 2.41,-0.87c0.4,-0.25 0.74,-0.5 1.09,-0.6c0.25,-0.1 0.35,-0.35 0.3,-0.55c-0.1,-0.24 -0.35,-0.35 -0.55,-0.29c-0.45,0.15 -0.89,0.4 -1.29,0.69c-0.5,0.29 -1,0.59 -1.5,0.71c0,-0.01 0,-0.01 0.01,-0.02c0.37,-0.73 0.75,-1.48 1.15,-2.24c1.15,-0.1 2.87,-1.28 3.17,-1.48c0.2,-0.1 0.25,-0.4 0.1,-0.6c-0.1,-0.2 -0.4,-0.25 -0.6,-0.15c-0.3,0.2 -1.59,1.11 -2.16,1.25c1.23,-2.32 4.14,-6.96 4.19,-6.96c0.1,-0.2 0.05,-0.49 -0.15,-0.6c-0.22,-0.14 -0.44,-0.06 -0.59,0.1c-1.46,2.08 -2.76,4.31 -3.94,6.49c-0.1,-0.5 -0.24,-2.37 -0.24,-2.47c0.05,-0.25 -0.1,-0.5 -0.35,-0.54c-0.25,0 -0.45,0.15 -0.5,0.4c-0.05,0.15 0.27,3.11 0.44,3.82c-0.42,0.79 -0.82,1.57 -1.2,2.33c-0.05,-0.1 -0.09,-0.19 -0.13,-0.28c-0.35,-0.75 -0.75,-1.49 -0.55,-2.19c0.05,-0.25 -0.1,-0.5 -0.35,-0.55c-0.2,-0.05 -0.45,0.1 -0.5,0.35c-0.3,0.99 0.15,1.88 0.6,2.78c0.15,0.31 0.3,0.61 0.4,0.9c-0.54,1.05 -1.05,2.04 -1.54,2.93c-0.16,-0.55 -0.3,-1.27 -0.4,-1.89c0,-0.2 -0.05,-0.4 -0.05,-0.55c0,-0.15 -0.05,-0.24 -0.05,-0.4l0,-0.05c0,-0.25 -0.2,-0.45 -0.45,-0.45c-0.25,0 -0.45,0.2 -0.4,0.45l0,0.56c0.05,0.2 0.05,0.4 0.1,0.54c0.14,0.96 0.43,2.19 0.67,2.81c-0.36,0.62 -0.72,1.18 -1.07,1.66c-0.15,0.15 -0.1,0.45 0.1,0.6c0.2,0.15 0.5,0.1 0.6,-0.1c0.39,-0.53 0.8,-1.16 1.21,-1.85c0.92,-0.08 1.47,-0.44 2.17,-0.88c0.32,-0.25 0.67,-0.45 1.17,-0.7zm76.53,67.2c0.15,-0.65 0.44,-1.24 0.74,-1.84c0.15,-0.2 0.05,-0.45 -0.15,-0.6c-0.2,-0.1 -0.5,-0.05 -0.6,0.2c-0.35,0.64 -0.65,1.29 -0.85,1.98c-0.17,0.58 -0.31,1.19 -0.34,1.81c-1,0.62 -2.01,1.24 -3.03,1.83c0.08,-0.8 0.22,-1.59 0.44,-2.35c0.05,-0.25 0.3,-0.99 0.4,-1.24c0.1,-0.25 -0.05,-0.5 -0.25,-0.55c-0.24,-0.1 -0.49,0 -0.6,0.25c-0.04,0.2 -0.34,1.09 -0.4,1.29c-0.28,1.05 -0.43,2.09 -0.53,3.13c-1.12,0.62 -2.25,1.22 -3.39,1.81c0.03,-0.5 0.11,-1 0.25,-1.51c0.25,-0.7 0.6,-1.44 1.1,-2.14c0.15,-0.2 0.1,-0.49 -0.1,-0.6c-0.2,-0.15 -0.45,-0.1 -0.6,0.1c-0.55,0.79 -0.94,1.59 -1.25,2.38c-0.22,0.71 -0.32,1.46 -0.3,2.22c-1.84,0.92 -3.72,1.79 -5.66,2.6c-0.2,0.1 -0.3,0.35 -0.2,0.54c0.05,0.25 0.35,0.35 0.55,0.25c0.72,-0.29 1.42,-0.61 2.12,-0.91c0.04,0.03 0.07,0.05 0.11,0.07c0.64,0.3 1.29,0.45 1.99,0.55c0.64,0.05 1.34,0.05 1.98,-0.05c0.25,-0.05 0.45,-0.25 0.4,-0.5c-0.05,-0.25 -0.25,-0.4 -0.49,-0.4c-0.6,0.1 -1.24,0.1 -1.84,0.05c-0.34,-0.03 -0.69,-0.12 -1.05,-0.22c0.89,-0.41 1.77,-0.84 2.64,-1.27c0.71,0.21 1.35,0.35 1.94,0.39c0.7,0.1 1.29,0.15 1.89,0.1c0.25,0 0.44,-0.2 0.44,-0.44c-0.05,-0.25 -0.24,-0.45 -0.49,-0.45c-0.55,0.05 -1.1,0.05 -1.69,-0.05c-0.29,-0.04 -0.58,-0.1 -0.87,-0.16c1.06,-0.56 2.12,-1.11 3.16,-1.7c0.5,0.14 0.99,0.24 1.49,0.32c0.6,0.05 1.19,0.1 1.79,0.1c0.25,0.05 0.45,-0.15 0.45,-0.4c0,-0.25 -0.2,-0.45 -0.45,-0.45c-0.6,0 -2.01,-0.2 -2.17,-0.23c0.93,-0.55 1.84,-1.11 2.74,-1.67c0.48,0.13 0.93,0.21 1.42,0.21c0.49,0.05 1.04,0.05 1.59,0c0.24,0 0.4,-0.25 0.4,-0.49c-0.05,-0.2 -0.25,-0.4 -0.5,-0.35c-0.5,0.05 -1.68,-0.04 -1.8,-0.06c1.55,-0.99 3.07,-2 4.58,-3.03c0.2,-0.15 0.25,-0.44 0.1,-0.64c-0.15,-0.2 -0.44,-0.25 -0.64,-0.1c-1.53,1.07 -3.1,2.13 -4.7,3.15c0.05,-0.29 0.12,-0.61 0.23,-0.93zm-10.18,-79.41c0.2,-0.2 0.35,-0.5 0.35,-0.8c0,-0.3 -0.15,-0.6 -0.35,-0.8c-0.2,-0.2 -0.5,-0.35 -0.85,-0.35c-0.3,0 -0.6,0.15 -0.8,0.35c-0.2,0.2 -0.35,0.45 -0.35,0.8c0,0.3 0.15,0.6 0.35,0.8c0.2,0.2 0.5,0.3 0.8,0.3c0.35,-0.01 0.65,-0.11 0.85,-0.3zm-57.65,60.29c0,6.17 2.8,9.32 8.53,9.63c4.77,0 9.71,0 14.6,0.35c3.17,0.22 5.87,1.66 8.11,4.36c1.85,-2.46 4.41,-3.85 8.29,-4.36c4.63,-0.35 9.35,-0.35 13.92,-0.35c5.53,-0.4 8.23,-3.3 8.23,-8.88c0,-0.24 0,-0.49 -0.02,-0.74c0,0 0,-49.65 0,-50.84l-61.66,0c0,1.17 0,50.83 0,50.83zm39.36,-28.76l19.12,0l0,-1.88l-18.87,0l0,-1.34l18.87,0l0,-1.89l-18.87,0l0,-1.39l18.87,0l0,-1.64l-18.87,0l0,-1.39l18.87,0l0,-2.03l-18.87,0l0,-1.39l18.87,0l0,-2.25l-18.87,0l0,-1.34l18.87,0l0,-1.99l-19.12,0l0,-2.08l20.86,0l0,22.05l-20.86,0l0,-1.44zm-0.05,35.75l12.72,0c2.14,0.15 5.12,-1.14 5.12,-2.14l-17.83,-0.05l0,-1.19l18.57,0c0.05,-0.2 0.35,-1.19 0.35,-2.03l-18.93,0l0,-1.19l18.92,-0.05l0,-2.08l-18.92,0l0,-1.19l18.92,0l0.05,-2.44l-18.92,0l0,-1.19l18.92,0l0,-2.43l-18.92,0l0,-1.29l18.92,0l0,-2.29l-18.92,0l0,-2.24l20.86,0l0,16.59c-0.15,4.02 -3.48,6.85 -8.2,6.45l-12.71,0l0,-1.24zm-16.62,1.24l-14.4,0c-1.29,0.05 -2.73,-0.5 -3.58,-1.24l15.99,0l0,-2.14l-17.33,0c-0.5,-0.4 -0.8,-0.9 -0.9,-1.24l18.23,0l0,-2.03l-18.83,0c-0.15,-0.35 -0.19,-0.9 -0.19,-1.24l19.02,0l0,-2.08l-19.02,0l0,-1.19l19.02,0l0,-2.44l-19.02,0l0,-1.19l19.02,0l0,-2.43l-19.02,0l0,-1.29l19.02,0l0,-2.29l-19.02,0l0,-2.24l21.01,0l0,23.04zm-21.02,-36.99l19.12,0l0,-1.88l-18.87,0l0,-1.34l18.87,0l0,-1.89l-18.87,0l0,-1.39l18.87,0l0,-1.64l-18.87,0l0,-1.39l18.87,0l0,-2.03l-18.87,0l0,-1.39l18.87,0l0,-2.25l-18.87,0l0,-1.34l18.87,0l0,-1.99l-19.12,0l0,-2.08l20.87,0l0,22.05l-20.87,0l0,-1.44zm-4.15,-21.92c0,0.76 0,50.63 0,50.63c0.48,8.4 4.91,12.31 13.62,11.95l12.07,0.35l0.1,0.03c3.72,1.03 6.32,3.08 8,6.23c1.8,-3.5 4.51,-5.65 8.25,-6.26c0,0 12.86,-0.35 12.87,-0.35c6.85,-0.1 10.16,-3.23 10.43,-9.82c0,0 0,-0.37 0,-1c-0.12,6.01 -3.23,9.32 -9.33,9.75c0,0 -0.02,-0.3 -0.04,-0.61c0,0.3 0,0.61 0,0.61c-4.76,0 -9.26,0 -13.82,0.34c-3.86,0.51 -6.23,1.84 -7.91,4.44l-0.47,0.7l-0.65,-0.82c0,0 -0.33,-0.48 -0.26,-0.37c-1.97,-2.42 -4.44,-3.75 -7.32,-3.95c-4.87,-0.33 -9.78,-0.33 -14.56,-0.33c-6.44,-0.35 -9.71,-3.99 -9.71,-10.84l0,-51.7c-0.42,0.33 -0.99,0.79 -1.27,1.02z' class='st0'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E";
2
- export default _default;
@@ -1,8 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports["default"] = void 0;
7
- var _default = "data:image/svg+xml,%3Csvg width='450' height='150.61' xmlns='http://www.w3.org/2000/svg'%3E%3Cstyle type='text/css'%3E.st0%7Bfill:%23FFFFFF;%7D .st1%7Bfill:%2300AEEF;%7D%3C/style%3E%3Cg%3E%3Ctitle%3ELayer 1%3C/title%3E%3Cpath id='svg_1' d='m215,37.82l0,43.91c0,22.99 -11.17,32.96 -28.69,32.96c-10.51,0 -19.71,-5.69 -24.2,-15l10.51,-4.82c2.52,5.04 8.1,8.32 13.69,8.32c9.85,0 15.99,-5.69 15.99,-20.26l0,-0.77c-3.61,5.26 -10.73,7.88 -16.97,7.88c-13.47,0 -25.18,-10.4 -25.18,-26.72c0,-16.42 11.61,-26.61 25.07,-26.61c6.57,0 13.47,2.52 17.08,7.77l0,-6.68l12.7,0l0,0.02zm-12.92,25.41c0,-8.98 -7.45,-14.67 -14.78,-14.67c-7.88,0 -14.34,6.13 -14.34,14.67s6.46,14.89 14.34,14.89c7.77,0 14.78,-5.91 14.78,-14.89z' class='st0'/%3E%3Cpath id='svg_2' d='m223.1,63.23c0,-16.21 12.59,-26.5 27.15,-26.5c14.56,0 27.26,10.29 27.26,26.5c0,16.21 -12.7,26.83 -27.26,26.83c-14.55,-0.01 -27.15,-10.63 -27.15,-26.83zm41.61,0c0,-8.76 -6.57,-14.67 -14.45,-14.67c-7.88,0 -14.34,5.91 -14.34,14.67c0,8.98 6.46,15 14.34,15c7.88,0 14.45,-6.02 14.45,-15z' class='st0'/%3E%3Cpath id='svg_3' d='m332.16,37.82l-21.57,51.13l-11.61,0l-21.35,-51.13l13.69,0l13.58,35.04l13.47,-35.04l13.79,0z' class='st0'/%3E%3Cpath id='svg_4' d='m387.24,37.82l0,43.91c0,22.99 -11.17,32.96 -28.69,32.96c-10.51,0 -19.71,-5.69 -24.2,-15l10.51,-4.82c2.52,5.04 8.1,8.32 13.69,8.32c9.85,0 15.99,-5.69 15.99,-20.26l0,-0.77c-3.61,5.26 -10.73,7.88 -16.97,7.88c-13.47,0 -25.18,-10.4 -25.18,-26.72c0,-16.42 11.61,-26.61 25.07,-26.61c6.57,0 13.47,2.52 17.08,7.77l0,-6.68l12.7,0l0,0.02zm-12.92,25.41c0,-8.98 -7.45,-14.67 -14.78,-14.67c-7.88,0 -14.34,6.13 -14.34,14.67s6.46,14.89 14.34,14.89c7.77,0 14.78,-5.91 14.78,-14.89z' class='st1'/%3E%3Cpath id='svg_5' d='m434.21,38.48l-2.52,12.04c-2.96,-1.53 -5.58,-1.86 -7.45,-1.86c-8.32,0 -12.92,8.1 -12.92,22.45l0,17.85l-12.81,0l0,-51.14l12.7,0l0,10.95c2.74,-8.54 8.32,-12.04 14.67,-12.04c3.08,0 6.36,0.66 8.33,1.75z' class='st1'/%3E%3Cg id='svg_11'%3E%3Cpath id='svg_12' d='m116.95,56.22c0.12,0 0.22,-0.02 0.33,-0.05c0.2,-0.05 0.38,-0.12 0.51,-0.25c0.2,-0.2 0.35,-0.5 0.35,-0.8c0,-0.3 -0.15,-0.6 -0.35,-0.8c-0.2,-0.2 -0.49,-0.35 -0.84,-0.35c-0.3,0 -0.6,0.15 -0.8,0.35c-0.2,0.2 -0.35,0.5 -0.35,0.8c0,0.3 0.15,0.6 0.35,0.8c0.13,0.12 0.29,0.2 0.47,0.24c0.11,0.04 0.22,0.06 0.33,0.06zm-25.13,71.12c-0.3,0 -0.54,0.1 -0.74,0.3c-0.15,0.2 -0.3,0.45 -0.3,0.69c0,0.3 0.15,0.55 0.3,0.75c0.13,0.1 0.29,0.16 0.46,0.2c0.09,0.03 0.19,0.05 0.29,0.05c0.11,0 0.22,-0.02 0.32,-0.05c0.08,-0.03 0.15,-0.07 0.22,-0.11c0.01,0 0.02,-0.01 0.02,-0.01c0.06,-0.04 0.12,-0.07 0.18,-0.13c0.2,-0.15 0.3,-0.39 0.3,-0.69c0,-0.25 -0.1,-0.5 -0.3,-0.69c-0.2,-0.21 -0.45,-0.31 -0.75,-0.31zm32.39,-21.41c-0.06,-0.02 -0.13,-0.03 -0.19,-0.04c-0.02,0 -0.33,0.01 -0.43,0.05c-0.18,0.04 -0.35,0.12 -0.48,0.24c-0.2,0.2 -0.35,0.5 -0.35,0.8c0,0.29 0.15,0.59 0.35,0.79c0.2,0.2 0.49,0.35 0.79,0.35c0.35,0 0.65,-0.15 0.85,-0.35c0.2,-0.2 0.35,-0.5 0.35,-0.79c0,-0.3 -0.15,-0.6 -0.35,-0.8c-0.14,-0.14 -0.33,-0.21 -0.54,-0.25zm-65.91,22.7c0,-0.3 -0.15,-0.6 -0.35,-0.8c-0.2,-0.2 -0.5,-0.3 -0.8,-0.3s-0.6,0.1 -0.8,0.3c-0.2,0.2 -0.35,0.5 -0.35,0.8c0,0.3 0.15,0.6 0.35,0.79c0.2,0.2 0.5,0.35 0.8,0.35s0.6,-0.15 0.8,-0.35c0.2,-0.19 0.35,-0.49 0.35,-0.79zm71.61,-53.59l-0.05,0c-0.29,0 -0.59,0.15 -0.8,0.35c-0.19,0.2 -0.35,0.49 -0.35,0.79c0,0.3 0.16,0.6 0.35,0.8c0.2,0.2 0.5,0.35 0.8,0.35l0.05,0c0.3,0 0.6,-0.15 0.8,-0.35c0.2,-0.2 0.35,-0.49 0.35,-0.8c0,-0.3 -0.15,-0.6 -0.35,-0.79c-0.2,-0.2 -0.5,-0.3 -0.8,-0.35zm-31.68,-46.24c-0.76,-0.25 -1.51,-0.54 -2.26,-0.83c-0.04,-0.04 -0.08,-0.1 -0.12,-0.16c-0.15,-0.64 -0.35,-1.29 -0.6,-1.94c-0.25,-0.69 -0.54,-1.39 -0.94,-2.08c-0.1,-0.2 -0.4,-0.25 -0.6,-0.15c-0.2,0.1 -0.3,0.4 -0.15,0.6c0.35,0.65 0.65,1.29 0.9,1.94c0.15,0.44 0.28,0.9 0.38,1.35c-0.96,-0.4 -1.92,-0.82 -2.89,-1.28c-0.09,-0.55 -0.15,-1.11 -0.33,-1.66c-0.15,-0.6 -0.4,-1.19 -0.8,-1.79c-0.15,-0.2 -0.44,-0.25 -0.64,-0.1c-0.2,0.15 -0.2,0.45 -0.1,0.65c0.35,0.45 0.55,0.94 0.7,1.49c0.09,0.32 0.15,0.64 0.21,0.96c-0.22,-0.1 -0.44,-0.2 -0.65,-0.31c-0.86,-0.43 -1.72,-0.89 -2.58,-1.36c0,-0.29 0.05,-0.48 0.05,-0.73c0.1,-0.5 0.2,-0.94 -0.2,-1.59c-0.1,-0.2 -0.35,-0.25 -0.6,-0.15c-0.2,0.15 -0.25,0.4 -0.15,0.59c0.24,0.4 0.15,0.65 0.1,0.99c-0.02,0.13 -0.04,0.27 -0.05,0.41c-1.45,-0.81 -2.91,-1.66 -4.41,-2.54c-0.2,-0.1 -0.5,-0.05 -0.6,0.15c-0.15,0.2 -0.05,0.49 0.15,0.59c1.36,0.83 2.7,1.62 4.03,2.37c-0.05,0.02 -0.1,0.05 -0.16,0.07c-0.45,0.25 -0.84,0.45 -1.49,0.45c-0.25,0 -0.45,0.25 -0.45,0.44c0,0.25 0.2,0.45 0.45,0.45c0.85,-0.05 1.34,-0.24 1.89,-0.54c0.23,-0.1 0.47,-0.21 0.73,-0.33c0.97,0.53 1.94,1.04 2.89,1.52c0.14,0.08 0.29,0.14 0.43,0.2c-0.54,0.2 -1.12,0.32 -1.72,0.45c-0.2,0.05 -0.4,0.1 -0.65,0.15c-0.2,0.05 -0.35,0.24 -0.3,0.49c0.05,0.25 0.25,0.4 0.49,0.35l0.6,-0.15c0.91,-0.17 1.77,-0.36 2.6,-0.8c0.77,0.36 1.54,0.71 2.32,1.04c-0.11,0.03 -0.24,0.07 -0.35,0.1c-0.64,0.2 -1.24,0.3 -1.88,0.4c-0.25,0.05 -0.4,0.25 -0.4,0.5c0.05,0.25 0.3,0.4 0.5,0.4c0.69,-0.1 1.34,-0.25 1.98,-0.45c0.46,-0.1 0.93,-0.25 1.41,-0.43c0.98,0.4 1.96,0.78 2.96,1.13c0.25,0.1 0.5,-0.05 0.54,-0.25c0.11,-0.26 -0.04,-0.51 -0.24,-0.61zm-72.34,78.53c-0.1,-0.03 -0.21,-0.06 -0.32,-0.06c-0.11,0 -0.22,0.02 -0.32,0.06c-0.18,0.05 -0.35,0.12 -0.47,0.24c-0.25,0.2 -0.35,0.5 -0.35,0.8c0,0.3 0.1,0.6 0.35,0.8c0.2,0.2 0.49,0.35 0.79,0.35c0.3,0 0.6,-0.15 0.8,-0.35c0.25,-0.2 0.35,-0.5 0.35,-0.8c0,-0.3 -0.1,-0.6 -0.35,-0.8c-0.13,-0.12 -0.3,-0.19 -0.48,-0.24zm89.54,-63.3c0.01,-0.13 0.04,-0.27 0.08,-0.43c0.05,-0.2 0.1,-0.35 0.15,-0.55c0.15,-0.94 0.25,-1.94 0.25,-2.98c0,-0.25 -0.2,-0.44 -0.45,-0.44c-0.25,0 -0.44,0.2 -0.44,0.44c0,0.98 -0.1,1.91 -0.25,2.79c-0.39,-0.68 -0.8,-1.35 -1.21,-2.01c0.03,-0.07 0.11,-0.53 0.17,-0.68c0.15,-0.84 0.2,-1.79 0.15,-2.78c0,-0.2 -0.2,-0.4 -0.44,-0.4c-0.25,0 -0.45,0.25 -0.4,0.45c0.04,0.81 -0.03,1.63 -0.16,2.33c-0.47,-0.72 -0.96,-1.43 -1.46,-2.15c0.15,-0.45 0.24,-0.95 0.29,-1.47c0.05,-0.6 0.1,-1.24 0.05,-1.83c0,-0.25 -0.2,-0.45 -0.44,-0.45c-0.25,0 -0.4,0.2 -0.4,0.45c0,0.6 0,1.19 -0.1,1.74c-0.02,0.2 -0.05,0.39 -0.08,0.58c-0.3,-0.42 -0.62,-0.84 -0.96,-1.28c-0.5,-0.69 -1.04,-1.34 -1.59,-1.98c-0.15,-0.2 -0.45,-0.2 -0.65,-0.05c-0.15,0.15 -0.2,0.4 -0.05,0.6c0.54,0.64 1.1,1.34 1.59,1.99c0.29,0.37 0.57,0.76 0.86,1.14c-0.61,-0.12 -1.21,-0.29 -1.75,-0.79c-0.2,-0.15 -0.45,-0.15 -0.65,0.05c-0.15,0.15 -0.15,0.45 0.05,0.6c0.89,0.8 1.79,0.95 2.73,1.15c0.11,0 0.25,0.02 0.39,0.06c0.56,0.8 1.1,1.61 1.62,2.42c-0.24,-0.03 -0.47,-0.08 -0.66,-0.15c-0.5,-0.1 -0.9,-0.3 -1.34,-0.45c-0.2,-0.15 -0.45,-0.05 -0.55,0.2c-0.15,0.2 -0.05,0.49 0.2,0.6c0.44,0.2 0.94,0.4 1.44,0.55c0.47,0.09 0.95,0.16 1.46,0.16c0.44,0.71 0.87,1.43 1.28,2.15c-0.26,-0.05 -0.51,-0.12 -0.75,-0.22c-0.54,-0.15 -1.1,-0.4 -1.59,-0.69c-0.25,-0.1 -0.49,-0.05 -0.6,0.2c-0.15,0.2 -0.05,0.45 0.15,0.6c0.6,0.29 1.14,0.54 1.74,0.74c0.51,0.17 1.03,0.26 1.57,0.31c0.75,1.38 1.47,2.76 2.11,4.16c0.1,0.2 0.35,0.3 0.55,0.2c0.25,-0.1 0.35,-0.35 0.25,-0.6c-0.69,-1.47 -1.39,-2.88 -2.16,-4.28zm-13.57,-16.62c0.35,0 0.65,-0.1 0.84,-0.3c0.2,-0.2 0.35,-0.5 0.35,-0.8c0,-0.35 -0.15,-0.6 -0.35,-0.8c-0.2,-0.2 -0.49,-0.35 -0.84,-0.35c-0.3,0 -0.6,0.15 -0.8,0.35c-0.2,0.2 -0.35,0.44 -0.35,0.8c0,0.3 0.15,0.6 0.35,0.8c0.2,0.2 0.5,0.3 0.8,0.3zm19.14,22.8c0.1,0.03 0.21,0.05 0.32,0.05c0.12,0 0.23,-0.02 0.33,-0.05c0.2,-0.05 0.38,-0.12 0.51,-0.25c0.2,-0.19 0.35,-0.49 0.35,-0.79c0,-0.3 -0.15,-0.6 -0.35,-0.8c-0.2,-0.2 -0.5,-0.35 -0.85,-0.35c-0.29,0 -0.6,0.15 -0.8,0.35c-0.2,0.2 -0.35,0.49 -0.35,0.8c0,0.3 0.15,0.6 0.35,0.79c0.14,0.13 0.31,0.2 0.49,0.25zm-76.56,-20.01c0.35,0 0.6,-0.1 0.85,-0.3c0.13,-0.13 0.2,-0.31 0.25,-0.51c0.02,-0.09 0.05,-0.19 0.05,-0.29c0,-0.35 -0.1,-0.6 -0.35,-0.79c-0.2,-0.2 -0.45,-0.35 -0.8,-0.35c-0.3,0 -0.6,0.15 -0.79,0.35c-0.2,0.19 -0.35,0.44 -0.35,0.79c0,0.3 0.15,0.6 0.35,0.79c0.2,0.2 0.49,0.31 0.79,0.31zm-27.41,49.11c0.3,0 0.59,-0.15 0.79,-0.35l-0.02,-0.03c0.2,-0.2 0.32,-0.47 0.32,-0.77l0.05,0c0,-0.29 -0.1,-0.6 -0.35,-0.8c-0.12,-0.12 -0.29,-0.2 -0.47,-0.24c-0.1,-0.03 -0.21,-0.05 -0.32,-0.05c-0.12,0 -0.22,0.02 -0.32,0.05c-0.18,0.04 -0.35,0.12 -0.48,0.24c-0.25,0.2 -0.35,0.5 -0.35,0.8c0,0.3 0.1,0.6 0.35,0.8c0.2,0.21 0.5,0.35 0.8,0.35zm8.04,-27.06c0.3,0 0.54,-0.1 0.75,-0.3c0.15,-0.2 0.3,-0.44 0.3,-0.69c0,-0.3 -0.15,-0.54 -0.3,-0.74c-0.2,-0.15 -0.45,-0.3 -0.75,-0.3c-0.29,0 -0.54,0.15 -0.74,0.3c-0.2,0.2 -0.3,0.45 -0.3,0.74c0,0.25 0.1,0.49 0.3,0.69c0.19,0.2 0.45,0.3 0.74,0.3zm21.36,-15.7c0.11,0 0.21,-0.02 0.31,-0.05c0.19,-0.04 0.37,-0.11 0.53,-0.24c0.13,-0.13 0.2,-0.31 0.24,-0.5c0.03,-0.09 0.05,-0.19 0.05,-0.29c0,-0.3 -0.1,-0.6 -0.35,-0.8c-0.2,-0.2 -0.45,-0.35 -0.8,-0.35c-0.3,0 -0.6,0.15 -0.8,0.35c-0.2,0.2 -0.35,0.5 -0.35,0.8s0.15,0.6 0.35,0.8c0.13,0.13 0.29,0.2 0.48,0.24c0.12,0.02 0.23,0.04 0.34,0.04zm1.63,84.59l-2.57,-4.07c-0.15,-0.25 -0.4,-0.3 -0.6,-0.15c-0.2,0.1 -0.3,0.4 -0.15,0.6l1.83,2.96c-0.88,-0.4 -1.76,-0.8 -2.63,-1.21c-0.34,-0.62 -0.77,-1.28 -1.19,-1.9c-0.45,-0.69 -0.85,-1.39 -1.19,-2.03c-0.15,-0.2 -0.4,-0.3 -0.6,-0.2c-0.25,0.15 -0.3,0.4 -0.2,0.6l0,0.05l0.02,-0.01c0.34,0.68 0.78,1.36 1.22,2.04c0.17,0.26 0.34,0.52 0.5,0.77c-0.92,-0.45 -1.83,-0.92 -2.74,-1.39c-0.29,-0.44 -0.64,-0.94 -1.08,-1.62c-0.4,-0.54 -0.75,-1.14 -1.09,-1.58c-0.1,-0.25 -0.4,-0.3 -0.6,-0.15c-0.2,0.15 -0.24,0.4 -0.15,0.6c0.4,0.55 0.75,1.1 1.09,1.64c0.05,0.08 0.11,0.18 0.16,0.26c-1.8,-0.95 -3.58,-1.94 -5.33,-2.99c-0.2,-0.1 -0.5,-0.05 -0.6,0.15c-0.15,0.2 -0.05,0.5 0.15,0.6c1.85,1.09 3.72,2.14 5.6,3.14c-0.16,0.02 -0.32,0.03 -0.48,0.04c-0.69,0.05 -1.34,0.1 -1.99,0.2c-0.25,0 -0.4,0.25 -0.4,0.5c0.05,0.25 0.3,0.4 0.55,0.35c0.6,-0.1 1.24,-0.15 1.89,-0.2c0.58,-0.05 1.2,-0.09 1.78,-0.17c0.89,0.46 1.78,0.92 2.67,1.36c-0.31,0.02 -0.62,0.04 -0.93,0.06c-0.9,0.05 -1.79,0.1 -2.58,0.2c-0.25,0 -0.4,0.25 -0.4,0.5c0.05,0.24 0.25,0.4 0.49,0.34c0.79,-0.1 1.69,-0.15 2.53,-0.2c0.83,-0.04 1.65,-0.1 2.39,-0.18c0.97,0.45 1.94,0.9 2.91,1.34l-3.34,0.79c-0.25,0.05 -0.4,0.3 -0.3,0.5c0.05,0.24 0.3,0.4 0.5,0.35l4.45,-1.1c0.71,0.32 1.43,0.63 2.15,0.94c-1.13,0.46 -3.22,0.75 -3.37,0.75c-0.25,0.05 -0.4,0.3 -0.35,0.54c0,0.2 0.25,0.4 0.49,0.35c0.1,0 2.72,-0.4 4.34,-1.18c0.54,0.22 1.07,0.45 1.62,0.68c0.2,0.1 0.44,0 0.54,-0.25c0.1,-0.25 0,-0.5 -0.25,-0.6c-1.58,-0.64 -3.18,-1.32 -4.76,-2.02zm85.53,-43.37c0,-0.29 -0.35,-0.5 -0.59,-0.4c-2.16,1.01 -4.04,2.2 -5.65,3.53c-0.15,-1.36 -0.37,-2.71 -0.73,-4.06c3.18,-4.37 4.58,-9.07 4.34,-14.07c-0.25,-5.11 -2.08,-10.48 -5.46,-16.14c-0.2,-0.3 -0.65,-0.3 -0.79,0.04l-3.08,7.16c-0.27,0.73 -0.49,1.45 -0.68,2.17c-0.61,-1.56 -1.6,-4.23 -1.6,-4.86c0,-0.29 0.05,-0.59 0.05,-0.89c0.05,-2.39 0.05,-4.32 -1.04,-9.88l-0.05,-0.05c-1.54,-4.52 -6.06,-8.29 -9.84,-10.63c-0.69,-0.5 -1.39,-0.89 -2.03,-1.24c-0.65,-0.35 -1.24,-0.65 -1.69,-0.84c-0.3,-0.15 -0.64,0.05 -0.64,0.35c-0.08,1.32 -0.03,2.58 0.12,3.78c-0.16,-0.11 -0.31,-0.21 -0.47,-0.3c-0.33,-0.25 -0.67,-0.54 -1.18,-0.85c-0.01,-0.01 -0.01,-0.01 -0.02,-0.02c-0.08,-0.05 -1.77,-1.56 -2.63,-2.51c-0.73,-0.86 -1.43,-1.76 -1.82,-2.57c-0.09,-0.17 -0.14,-0.36 -0.22,-0.5l0.01,-0.01c-0.03,-0.03 -0.05,-0.05 -0.07,-0.08c0,0 -0.01,0 -0.01,-0.01c0,0 0,0 0,0c-1.06,-1.11 -2.09,-2.13 -3.49,-3.09c-1.44,-0.99 -3.18,-1.84 -5.56,-2.58c0,0 -2.68,-0.54 -5.52,-0.74c-2.48,-0.2 -4.96,-0.4 -7.05,-1.19l0,0c-0.07,-0.02 -0.13,-0.04 -0.17,-0.03c-0.24,0.05 -0.35,0.11 -0.39,0.22c-0.04,0.11 -0.07,0.1 -0.03,0.31c0.28,1.57 0.9,2.92 1.75,4.18c-1.68,0.86 -3.14,1.79 -4.38,2.73c-1.39,1.09 -2.48,2.19 -3.42,3.38c-0.2,0.25 -0.05,0.64 0.3,0.69c2.38,0.45 4.72,0.65 7.1,0.54c2.26,-0.09 4.53,-0.42 6.95,-0.92c0.09,0.06 1.29,0.82 1.84,1.12c2.67,1.41 5.66,2.15 8.78,2.14l0,0.01c0,0 2.79,-0.16 3.88,-0.26c1.09,-0.1 3.29,-0.26 3.32,-0.27c0.05,0.02 2.21,1.49 2.69,1.77c0.91,5.12 3.52,8.96 5.32,11.06c0.45,0.55 0.84,0.94 1.14,1.24c0.29,0.3 0.49,0.5 0.6,0.55c1.14,0.9 2.28,1.94 3.47,3.18c1.18,1.23 2.31,2.65 3.54,4.12l0,0c0.35,0.69 0.69,1.44 1.04,2.23c0.39,0.79 0.73,1.57 1.07,2.21c-0.23,1.07 -0.41,2.13 -0.53,3.16c-0.2,1.7 -0.23,3.37 -0.15,4.99c-0.43,-0.48 -0.86,-0.97 -1.29,-1.46c-0.94,-1.05 -1.94,-2.14 -2.83,-3.23c-0.25,-0.25 -0.65,-0.2 -0.8,0.1c-1.54,4.47 -1.84,8.34 -1.24,11.72c0.6,3.38 2.14,6.31 4.22,8.79c0,0 1.64,1.39 2.48,2.08c0.84,0.7 1.72,1.4 2.56,2.14c-0.64,1 -1.2,2.04 -1.67,3.13c-0.4,0.9 -0.74,1.89 -1.04,2.88c-0.15,0.61 -0.29,1.21 -0.41,1.82c-0.27,-0.56 -0.57,-1.12 -0.93,-1.66c-0.59,-1.05 -1.34,-1.99 -2.23,-2.98c-0.2,-0.25 -0.65,-0.15 -0.74,0.15c-0.65,2.23 -1.44,4.32 -2.39,6.31c-0.15,0.4 -0.35,0.74 -0.55,1.14c-0.14,0.34 -0.54,1.04 -0.54,1.04c-1.79,2.53 -2.98,4.96 -3.77,7.2c-0.8,2.28 -1.09,4.47 -1.05,6.5c-0.27,0.1 -0.53,0.2 -0.79,0.3c-4.37,1.84 -7.85,4.57 -10.53,8.25c-0.94,1.49 -1.94,2.68 -3.18,3.52c-1.05,0.65 -2.23,1.08 -3.62,1.28c2.61,-2.86 4.39,-6.42 5.61,-10.32c0.1,-0.35 -0.24,-0.7 -0.6,-0.54c-1.14,0.49 -2.28,0.84 -3.48,1.14c-1.24,0.24 -2.43,0.4 -3.73,0.5l-0.08,0l0.07,0.3l0.01,0.12l-0.07,-0.43c-2.93,0.45 -5.76,1.24 -8.25,2.53c-1.37,0.71 -2.65,1.59 -3.82,2.64c-0.91,-0.98 -2.29,-1.77 -4.08,-2.39c-1.94,-0.69 -7.25,-1.49 -7.25,-1.49c-1.54,-0.1 -3.08,-0.25 -4.62,-0.5c-1.54,-0.2 -3.08,-0.5 -4.62,-0.89c-0.35,-0.05 -0.64,0.3 -0.49,0.64c1.44,2.93 3.73,5.17 6.46,7.05c1.01,0.68 2.08,1.31 3.2,1.9c-0.31,-0.09 -0.6,-0.17 -0.92,-0.26c-2.51,-0.74 -5.02,-1.58 -7.49,-2.46c-4.44,-4.03 -8.93,-7.08 -13.52,-8.96c-0.33,-0.14 -0.66,-0.25 -0.99,-0.38c0.03,-2.02 -0.16,-4.05 -0.7,-6.17c-0.6,-2.19 -1.59,-4.47 -3.18,-6.8c0,0 -1.84,-2.39 -2.68,-3.73c-0.85,-1.39 -1.64,-2.88 -2.28,-4.57c-0.15,-0.3 -0.65,-0.35 -0.8,-0.05c-0.75,1.33 -1.29,2.75 -1.62,4.28c-1.17,-3.04 -2.9,-5.88 -5.19,-8.51c3.87,-3.6 6.57,-7.49 7.95,-11.57c1.44,-4.18 1.54,-8.6 0.3,-13.26c-0.05,-0.3 -0.4,-0.4 -0.6,-0.3c-1.09,0.5 -2.09,1.19 -3.03,2.03c-0.7,0.63 -1.37,1.36 -1.99,2.19c-0.07,-1.04 -0.2,-2.1 -0.34,-3.17c-0.1,-0.7 -0.25,-2.04 -0.25,-2.04c-0.22,-0.85 -0.44,-1.64 -0.65,-2.38c0.44,-0.59 0.67,-1.05 0.85,-1.49c0.2,-0.45 0.9,-1.65 0.92,-1.71c3.91,-2.48 7.53,-6.15 10.15,-10.16c0.5,-0.79 0.99,-1.59 1.44,-2.39c0.45,-0.84 0.84,-1.64 1.19,-2.43c0,0 1.31,-4.3 1.61,-6.1c0.67,-0.38 1.34,-0.72 2.01,-1c0.69,-0.35 1.43,-0.69 2.16,-1.13c1.07,0.07 2.06,0.03 3.1,-0.01c1.04,-0.05 2.04,-0.1 3.13,-0.05c2.33,0.1 4.57,-0.1 6.65,-0.7c2.09,-0.54 4.02,-1.49 5.81,-2.98c1.74,-1.54 3.13,-3.08 4.17,-4.67c0.99,-1.64 1.64,-3.38 1.79,-5.37c0.05,-0.3 -0.3,-0.55 -0.6,-0.45c-2.73,1.09 -5.66,1.74 -8.59,2.38c-0.99,0.2 -2.04,0.45 -3.08,0.7l0,0.01c-3.55,0.7 -6.12,2.13 -8.15,3.96c-2.01,1.86 -3.49,4.06 -4.76,6.46c-0.67,0.37 -1.33,0.71 -2.04,1.04c-0.47,0.2 -0.95,0.43 -1.44,0.68c0.07,-0.47 0.14,-0.95 0.2,-1.42c0.1,-0.8 0.25,-1.69 0.35,-2.49c0.1,-0.35 -0.3,-0.6 -0.6,-0.44c-3.33,1.44 -5.21,3.03 -7.45,4.91c-0.65,0.55 -2.25,1.88 -2.25,1.88l0.01,0.01c-5.5,5.26 -5.61,12.88 -5.66,18.27l0,1.22c-0.51,0.64 -0.71,1.15 -0.94,1.61c-0.08,0.24 -0.18,0.48 -0.33,0.75c-0.27,-0.88 -0.54,-1.7 -0.81,-2.49c-0.65,-1.69 -1.29,-3.23 -2.14,-4.87c-0.15,-0.29 -0.6,-0.35 -0.75,-0.05c-1.79,2.88 -2.63,5.27 -3.58,8c-0.35,0.89 -1.09,2.93 -1.09,2.93c-1.99,7.55 1.39,14.8 3.72,19.81c0.12,0.32 0.27,0.63 0.35,0.79l0,1.3c0,0.23 0,0.44 -0.02,0.9c-0.51,-0.45 -1.03,-0.89 -1.56,-1.3c-0.85,-0.65 -1.74,-1.29 -2.68,-1.94c-0.3,-0.2 -0.65,0 -0.7,0.35c-0.25,5.06 0.2,9.53 1.44,13.26c1.29,3.72 3.42,6.71 6.51,8.84c2.43,1.69 4.47,3.57 6.11,5.66c0.3,0.45 0.6,0.84 0.9,1.29c0.05,0.08 0.11,0.17 0.16,0.26c0.05,0.14 0.09,0.28 0.14,0.42c-1.32,-0.05 -2.64,-0.02 -3.99,0.11c-0.35,0 -0.54,0.45 -0.3,0.75c1.14,1.19 2.23,2.53 3.38,4.02c1.14,1.49 3.38,4.77 3.38,4.77c2.58,3.03 5.66,4.77 9.09,5.56c3.39,0.74 7.12,0.6 11.05,-0.08l12.4,3.38c-2.48,1.33 -5.45,2.37 -8.9,3.16c-0.15,0.05 -0.3,0.3 -0.3,0.45c0,0.35 0,0.74 0.15,1.09c0.1,0.39 0.35,0.79 0.75,1.19c0.05,0.05 0.3,0.15 0.35,0.15c1.64,-0.3 3.23,-0.65 4.82,-1.14c1.64,-0.45 4.92,-1.79 4.92,-1.79c0.89,-0.5 2.19,-0.55 3.77,-0.6c0.8,-0.05 1.64,-0.1 2.64,-0.2c0.71,-0.08 1.4,-0.18 2.07,-0.3c0.05,0.05 4.78,1.54 7.17,2.04c2.33,0.54 4.72,0.89 7.2,0.99c0.1,0 0.29,-0.11 0.35,-0.2c0.4,-0.54 0.6,-1.14 0.65,-1.69c0.05,-0.6 -0.05,-1.14 -0.35,-1.74c-0.05,-0.1 -0.25,-0.2 -0.35,-0.24c-1.44,-0.15 -2.93,-0.3 -4.42,-0.55c-1.25,-0.2 -2.46,-0.46 -3.67,-0.77c1.73,-0.86 3.26,-1.9 4.61,-3.1c0.75,0 1.37,-0.05 1.99,-0.1c0.67,-0.05 1.34,-0.1 2.02,-0.15c4.01,0.74 7.77,0.79 11.24,-0.05c3.48,-0.85 6.65,-2.53 9.54,-5.17c2.73,-2.53 4.82,-4.72 6.26,-6.6c1.49,-1.89 2.33,-3.42 2.73,-4.72c0.05,-0.3 -0.2,-0.6 -0.54,-0.55c-0.82,0.18 -1.64,0.31 -2.45,0.43c0.65,-1.05 1.2,-2.16 1.63,-3.32c2.13,-0.84 4.21,-1.84 6.24,-4.07c1.99,-2.18 5.54,-10.33 5.86,-11.32c0.32,-1 0.94,-6.16 1.09,-9.34c0.05,-0.64 0.05,-1.24 0.05,-1.84c0,-0.5 0,-1.05 -0.05,-1.55zm-56.72,-49.36c-2.04,0.09 -4.07,-0.08 -6.14,-0.42c0.78,-0.9 1.67,-1.75 2.76,-2.6c1.23,-0.91 2.68,-1.82 4.37,-2.69c0.07,0.08 1.12,1.32 1.63,1.85c-1.95,0.47 -5.5,1.83 -5.5,1.83c-0.25,0.1 -0.35,0.35 -0.25,0.6c0.05,0.2 0.35,0.35 0.55,0.25c0,0 4.51,-1.75 5.95,-1.92c0.71,0.7 2.58,2.31 2.7,2.4c-2.08,0.39 -4.09,0.65 -6.07,0.7zm21.46,2.08c-1.14,0.1 -2.28,0.2 -3.28,0.25c-3.23,0.1 -6.21,-0.6 -8.89,-2.04c-0.55,-0.25 -5.3,-3.16 -7.45,-6.3c-0.06,-0.08 -0.25,-0.29 -0.57,-0.77c-0.32,-0.5 -1.09,-1.32 -1.54,-3.29c2.04,0.64 4.29,0.86 6.53,1.03c1.84,0.15 3.47,0.16 5.36,0.7c1.89,0.53 3.98,1.54 5.32,2.48c1.31,0.87 2.34,1.89 3.36,2.96c0.36,0.98 1.18,2.13 2.1,3.15c0.54,0.61 1.12,1.17 1.62,1.65c-0.87,0.07 -1.73,0.14 -2.56,0.18zm17.23,17.83c-1.18,-1.23 -3.58,-3.28 -3.58,-3.28c-0.05,-0.05 -1.19,-1.14 -1.64,-1.64c-2.12,-2.55 -5.57,-7.75 -5.39,-14.71c0.33,0.16 0.67,0.34 1.06,0.56c0.6,0.29 1.29,0.69 1.99,1.14c3.61,2.27 7.95,5.93 9.46,10.18l-0.03,0.01c1.14,5.46 1.09,7.35 1.05,9.68l0,0.89c0,0.16 0.05,0.42 0.13,0.74c-1.01,-1.29 -2.03,-2.51 -3.05,-3.57zm-64.56,-22.45c1.94,-1.74 4.42,-3.08 7.79,-3.77c1.04,-0.25 2.04,-0.44 3.08,-0.69c2.73,-0.59 5.42,-1.19 8.02,-2.13c-0.25,1.51 -0.75,2.92 -1.57,4.21c-0.99,1.54 -2.34,3.03 -4.02,4.52c-1.64,1.34 -3.48,2.24 -5.46,2.78c-1.99,0.55 -4.12,0.74 -6.36,0.69c-1.14,-0.1 -2.18,-0.05 -3.23,0c-0.82,0.04 -1.65,0.08 -2.49,0.04c1.19,-2.1 2.49,-4.03 4.24,-5.65zm-23.3,28.26c0.05,-5.31 0.1,-12.81 5.56,-17.83c0.75,-0.6 1.39,-1.14 2.04,-1.64c2.01,-1.74 3.74,-3.18 6.48,-4.48c-0.08,0.6 -0.15,1.15 -0.22,1.7c-0.35,2.53 -0.7,5.01 -1.99,8.39c-0.3,0.8 -0.7,1.54 -1.14,2.33c-0.4,0.8 -0.89,1.59 -1.39,2.33c-2.45,3.72 -5.75,7.16 -9.34,9.53c0,-0.09 0,-0.21 0,-0.33zm33.43,68.14c-2.37,-1.61 -4.37,-3.51 -5.73,-5.9c1.26,0.29 2.51,0.54 3.79,0.74c1.52,0.24 3.04,0.39 4.62,0.49l0,0c2.78,0.3 5.17,0.75 7.05,1.39c1.66,0.58 2.92,1.33 3.73,2.21c-0.64,0.65 -1.25,1.35 -1.81,2.13c-0.9,-0.39 -1.8,-0.76 -2.7,-1.12c-0.32,-0.63 -0.85,-1.32 -1.46,-1.93c-0.1,-0.15 -0.73,-0.86 -0.83,-0.86c-0.19,-0.12 -0.42,-0.07 -0.61,0.07c-0.13,0.17 -0.1,0.42 0.01,0.58l0,0.01c0,0 1.25,1.3 1.45,1.55c-0.73,-0.29 -1.46,-0.58 -2.19,-0.88c-0.53,-1.09 -1.15,-1.9 -1.75,-2.35c-0.15,-0.1 -0.3,-0.2 -0.45,-0.25c-0.15,-0.1 -0.3,-0.15 -0.45,-0.15c-0.25,-0.05 -0.45,0.15 -0.5,0.4c-0.05,0.2 0.5,0.49 0.6,0.54c0.1,0.05 0.92,0.78 1.25,1.28c-1.83,-0.75 -3.71,-1.52 -5.72,-2.32c-0.24,-0.1 -0.49,0 -0.6,0.24c-0.1,0.2 0.05,0.5 0.25,0.55c1.81,0.75 3.75,1.55 5.75,2.35c-0.13,0.01 -0.25,0.02 -0.39,0.03c-0.54,0.05 -1.14,0 -1.78,-0.05c-0.25,0 -0.45,0.15 -0.45,0.4c-0.05,0.25 0.15,0.45 0.4,0.5c0.65,0.05 1.29,0.05 1.89,0.05c0.63,-0.05 1.26,-0.15 1.8,-0.34c0.8,0.32 1.62,0.65 2.44,0.97c-0.29,0.1 -0.6,0.19 -0.91,0.26c-0.65,0.1 -1.34,0.2 -1.99,0.25c-0.25,0 -0.44,0.2 -0.4,0.45c0,0.25 0.2,0.45 0.45,0.45c0.7,-0.05 1.44,-0.15 2.14,-0.3c0.64,-0.14 1.24,-0.37 1.84,-0.63c0.81,0.34 1.63,0.67 2.45,1c-0.53,0.95 -1.21,1.82 -2.01,2.62c-0.41,-0.11 -0.82,-0.22 -1.23,-0.33c-2.89,-1.17 -5.59,-2.48 -7.95,-4.1zm-33.97,-54.43c0.02,-0.02 0.03,-0.03 0.05,-0.05c0.75,-1.19 1.59,-2.14 2.43,-2.93c0.75,-0.67 1.54,-1.19 2.36,-1.64c1.04,4.31 0.91,8.35 -0.38,12.22c-1.38,3.98 -3.97,7.72 -7.74,11.22c-0.25,-0.28 -0.52,-0.55 -0.78,-0.83c0.68,-1.11 1.35,-2.29 2,-3.53c0.01,0 0.01,0 0.01,0c0.54,-0.35 0.54,-0.35 0.6,-0.35c0.65,-0.45 1.34,-0.85 1.99,-1.24c0.2,-0.15 0.25,-0.4 0.15,-0.6c-0.15,-0.19 -0.4,-0.3 -0.6,-0.15c-0.5,0.3 -0.94,0.57 -1.38,0.84c0.45,-0.9 0.88,-1.83 1.31,-2.8c0.44,-0.34 0.87,-0.63 1.26,-0.87c0.45,-0.2 0.84,-0.4 1.24,-0.49c0.25,-0.05 0.4,-0.3 0.35,-0.5c-0.05,-0.25 -0.3,-0.4 -0.55,-0.35c-0.49,0.15 -0.94,0.3 -1.44,0.6c-0.07,0.03 -0.15,0.09 -0.22,0.13c0.29,-0.68 0.57,-1.39 0.84,-2.1c0,-0.01 0.02,-0.01 0.02,-0.02c0.25,-0.29 0.54,-0.54 0.94,-0.84c0.45,-0.25 0.89,-0.5 1.44,-0.74c0.25,-0.1 0.3,-0.4 0.2,-0.6c-0.1,-0.25 -0.35,-0.3 -0.55,-0.2c-0.56,0.24 -1.04,0.51 -1.47,0.8c0.24,-0.71 0.47,-1.42 0.69,-2.12c0.03,-0.02 0.06,-0.04 0.09,-0.08c0.25,-0.3 0.5,-0.59 0.75,-0.8c0.3,-0.25 0.54,-0.45 0.89,-0.64c0.2,-0.1 0.25,-0.35 0.15,-0.6c-0.1,-0.2 -0.35,-0.25 -0.6,-0.15c-0.24,0.14 -0.48,0.31 -0.71,0.48c0.14,-0.46 0.28,-0.92 0.41,-1.37c0.05,-0.25 -0.1,-0.49 -0.35,-0.54c-0.2,-0.1 -0.45,0.05 -0.55,0.3c-0.25,1.04 -0.55,2.04 -0.84,2.98c-0.35,0.99 -0.65,1.94 -0.99,2.88c-1.71,4.68 -3.7,8.69 -5.75,12.03c-0.12,-0.12 -0.24,-0.24 -0.36,-0.36c-0.03,-0.03 0,-2.18 0.05,-3.02c0.73,-1.23 1.41,-2.78 2.09,-4.33c0.44,-1.03 1.39,-3.03 1.39,-3.03c1.21,-2.31 1.57,-4.46 1.56,-6.61zm-9.15,-6.36l0,0c0.41,-0.99 0.76,-1.98 1.06,-2.88c0.86,-2.45 1.64,-4.61 3.1,-7.12c0.67,1.34 1.21,2.65 1.72,4.04c0.6,1.69 1.19,3.58 1.79,5.86l0.01,0c0.05,0.67 0.15,1.31 0.24,1.94c0.43,3.68 0.83,7.05 -1.06,10.68c0,0 -0.99,2.09 -1.44,3.13c-0.57,1.3 -1.13,2.55 -1.7,3.62c-0.01,-0.03 -5.63,-12.04 -3.72,-19.27zm6.71,41.03c-2.93,-1.99 -4.92,-4.82 -6.16,-8.39c-1.13,-3.43 -1.58,-7.48 -1.42,-12.11c0.67,0.47 1.33,0.95 1.96,1.43c0.84,0.65 1.64,1.34 2.39,1.99c3.77,3.58 6.35,7.55 7.8,11.92c0.01,0.08 0.05,0.14 0.1,0.19c-0.09,0.88 -0.14,1.79 -0.1,2.73c0.07,2.33 0.52,4.86 1.29,7.59c-1.6,-1.96 -3.54,-3.76 -5.86,-5.35zm5.47,-2.29c-0.09,-2.78 0.37,-5.24 1.42,-7.42c0.6,1.38 1.27,2.64 2.01,3.8c0.84,1.39 1.79,2.63 2.73,3.77c1.49,2.24 2.43,4.42 3.03,6.51c0.5,1.97 0.66,3.81 0.64,5.64c-0.81,-0.28 -1.62,-0.52 -2.43,-0.72c-0.15,-0.32 -0.28,-0.64 -0.42,-0.96c0.19,-0.37 -0.03,0.11 0.02,0.01c0.5,-1.19 0.99,-2.44 1.44,-3.53c0.1,-0.25 -0.05,-0.5 -0.25,-0.6c-0.25,-0.05 -0.5,0.05 -0.6,0.25c-0.38,0.98 -0.72,1.87 -1.09,2.74c-0.35,-0.86 -0.68,-1.73 -1,-2.6c0.2,-0.43 0.4,-0.84 0.6,-1.28c0.3,-0.6 0.54,-1.24 0.8,-1.79c0.1,-0.2 0,-0.5 -0.2,-0.55c-0.25,-0.09 -0.5,0 -0.6,0.2c-0.25,0.6 -0.55,1.19 -0.79,1.79c-0.07,0.16 -0.15,0.31 -0.22,0.47c-0.09,-0.27 -0.19,-0.54 -0.28,-0.82c-0.16,-0.48 -0.31,-0.95 -0.45,-1.42c0.05,-0.05 0.09,-0.11 0.1,-0.16c0.05,-0.4 0.15,-0.8 0.29,-1.25c0.2,-0.4 0.4,-0.79 0.7,-1.19c0.15,-0.15 0.15,-0.45 -0.05,-0.6c-0.2,-0.15 -0.44,-0.15 -0.59,0.05c-0.4,0.45 -0.65,0.95 -0.85,1.44c-0.03,0.06 -0.04,0.12 -0.06,0.18c-0.37,-1.27 -0.7,-2.54 -0.98,-3.81c-0.05,-0.25 -0.3,-0.4 -0.5,-0.3c-0.25,0.05 -0.4,0.25 -0.35,0.49c0.29,1.36 0.65,2.72 1.04,4.06c-0.51,-0.28 -1.04,-0.63 -1.58,-1.08c-0.2,-0.15 -0.45,-0.1 -0.6,0.1c-0.2,0.15 -0.15,0.44 0.05,0.6c0.65,0.54 1.39,1.04 2.08,1.34c0.14,0.04 0.27,0.09 0.37,0.14c0.17,0.55 0.35,1.1 0.53,1.65c0.12,0.35 0.24,0.71 0.36,1.06c-0.19,-0.1 -0.38,-0.18 -0.56,-0.27c-0.55,-0.3 -1.04,-0.55 -1.59,-0.75c-0.25,-0.1 -0.5,0 -0.59,0.2c-0.05,0.25 0.05,0.5 0.24,0.6c0.55,0.2 1.04,0.45 1.54,0.7c0.42,0.23 0.85,0.47 1.36,0.66c0.48,1.32 1.01,2.63 1.6,3.94c-1.26,-0.27 -2.52,-0.46 -3.8,-0.57c-0.17,-0.31 -0.35,-0.61 -0.54,-0.93c-1.21,-3.63 -1.89,-6.88 -1.98,-9.79zm23.94,24.89c-3.87,0.75 -7.55,0.89 -10.83,0.1c-3.25,-0.74 -6.17,-2.37 -8.59,-5.21l0.01,0c-1.14,-1.64 -2.24,-3.28 -3.38,-4.77c-0.95,-1.23 -1.89,-2.39 -2.84,-3.43c4.5,-0.28 8.83,0.47 13.07,2.24c4.52,1.89 8.99,4.87 13.36,8.89c0.05,0 5.22,1.84 7.75,2.59c1.98,0.58 3.96,1.13 5.94,1.65c0.27,0.12 0.54,0.22 0.82,0.33c-0.56,0.46 -1.16,0.89 -1.81,1.29l-13.5,-3.68zm32.78,5.76c1.36,0.24 2.81,0.42 4.22,0.57c0.16,0.36 0.2,0.69 0.2,1.02c-0.04,0.36 -0.18,0.7 -0.37,1.08c-2.31,-0.11 -4.57,-0.45 -6.83,-0.93c-1.92,-0.42 -3.84,-0.94 -5.75,-1.54c1.38,-0.34 2.66,-0.76 3.86,-1.27c0.05,0.07 0.12,0.14 0.2,0.18c1.49,0.34 2.97,0.64 4.47,0.89zm0.79,-5.67c-3.13,2.98 -7.4,5.02 -13.07,5.66c-0.89,0.1 -1.79,0.1 -2.58,0.15c-1.69,0.05 -3.03,0.15 -4.17,0.75l0.01,0.01c-1.58,0.64 -3.15,1.23 -4.73,1.68c-1.47,0.42 -2.97,0.8 -4.48,1.05c-0.17,-0.23 -0.31,-0.46 -0.34,-0.65c-0.06,-0.18 -0.09,-0.33 -0.12,-0.49c3.66,-0.88 6.81,-2.04 9.36,-3.53c2.5,-1.46 4.4,-3.28 5.61,-5.5c0.12,-0.04 0.22,-0.13 0.25,-0.26c0.03,-0.06 0.03,-0.14 0.03,-0.21c1.67,-2.25 3.7,-3.94 6.03,-5.15c2.38,-1.24 5.07,-1.98 7.95,-2.43l0,0c1.32,-0.05 2.55,-0.2 3.77,-0.5c0.98,-0.22 1.89,-0.52 2.79,-0.86c-1.35,4 -3.35,7.55 -6.31,10.28zm33.18,-64.46c0.24,-2.14 0.74,-4.32 1.58,-6.61l2.68,-6.28c3.04,5.23 4.73,10.24 4.92,14.92c0.23,4.64 -0.99,8.96 -3.75,13.02c-0.13,-0.4 -0.26,-0.8 -0.42,-1.19c-0.89,-2.38 -2.28,-4.75 -4.4,-7.08l0.03,-0.02c-0.22,-0.25 -0.44,-0.5 -0.66,-0.75c-0.23,-1.94 -0.22,-3.93 0.02,-6.01zm0.09,22.2c-0.78,-0.64 -1.57,-1.28 -2.35,-1.96c-2.03,-2.38 -3.46,-5.15 -4.06,-8.37c-0.51,-3.08 -0.27,-6.57 1,-10.53c0.76,0.9 1.56,1.79 2.38,2.69c0.71,0.78 1.4,1.57 2.08,2.36c0.04,0.08 0.1,0.14 0.16,0.18c0.21,0.25 0.42,0.49 0.64,0.73l0,0.05c2.03,2.23 3.38,4.52 4.27,6.86c0.81,2.2 1.25,4.44 1.41,6.68c-0.44,0.39 -0.85,0.81 -1.24,1.22c-0.69,-1.1 -1.36,-2.2 -2,-3.3c0.25,-0.65 0.44,-1.72 0.53,-3.02c0,-0.35 0.1,-1.88 0.1,-1.93c0,-0.25 -0.2,-0.45 -0.45,-0.45c-0.24,0 -0.44,0.2 -0.44,0.45c0,0 -0.05,1.59 -0.1,1.84c-0.06,0.79 -0.15,1.48 -0.26,2.02c-0.56,-0.99 -1.88,-3.48 -2.01,-3.74c0.16,-0.43 0.3,-1.04 0.39,-1.76c0.15,-0.84 0.25,-1.84 0.29,-2.78c0,-0.2 -0.15,-0.45 -0.4,-0.45c-0.25,0 -0.45,0.15 -0.5,0.4c-0.05,0.94 -0.15,1.89 -0.25,2.73c-0.05,0.23 -0.09,0.46 -0.13,0.66c-0.95,-1.98 -1.83,-3.96 -2.65,-5.98c-0.1,-0.25 -0.35,-0.35 -0.59,-0.25c-0.2,0.1 -0.3,0.35 -0.2,0.55c0.84,2.1 1.74,4.16 2.74,6.21c-0.31,-0.13 -0.62,-0.29 -0.96,-0.49c-0.6,-0.35 -1.24,-0.85 -1.88,-1.34c-0.2,-0.15 -0.45,-0.15 -0.6,0.05c-0.15,0.2 -0.15,0.45 0.05,0.6c0.64,0.54 1.34,1.04 1.99,1.49c0.65,0.37 1.31,0.65 1.96,0.81c0.12,0.24 1.33,2.59 1.84,3.5c-0.36,-0.17 -2.57,-1.39 -3.31,-1.93c-0.2,-0.1 -0.45,-0.05 -0.6,0.15c-0.15,0.2 -0.1,0.45 0.1,0.6c0.8,0.54 3.77,2.16 4.54,2.49c0.69,1.19 1.42,2.37 2.18,3.55c-0.41,0.48 -0.8,0.97 -1.16,1.48c-0.8,-0.68 -1.65,-1.39 -2.51,-2.07zm-0.32,26.86c-0.4,1.06 -1.17,2.32 -2.31,3.79c-1.44,1.79 -3.43,3.93 -6.16,6.46c-2.73,2.53 -5.81,4.17 -9.14,4.96c-3.38,0.8 -7,0.75 -10.93,0c0,0 0.94,-0.53 1.49,-0.89c1.39,-0.94 2.49,-2.23 3.48,-3.77l-0.03,-0.02c2.58,-3.51 5.95,-6.14 10.16,-7.87c0.8,-0.35 1.64,-0.65 2.53,-0.95c0.85,-0.24 1.79,-0.5 2.73,-0.69c0.01,-0.02 5.73,-0.57 8.18,-1.02zm-2.95,-0.54c-0.03,0.04 -0.05,0.09 -0.06,0.13c-1.26,0.16 -2.51,0.28 -3.75,0.37c0.17,-0.38 0.34,-0.77 0.49,-1.15c0.25,-0.65 0.8,-2.15 0.82,-2.23c0.52,-0.18 1.06,-0.53 1.56,-0.95c0.6,-0.5 1.19,-1.09 1.79,-1.74c0.15,-0.15 0.15,-0.44 -0.05,-0.6c-0.15,-0.2 -0.45,-0.15 -0.6,0c-0.54,0.65 -1.14,1.19 -1.69,1.64c-0.22,0.2 -0.44,0.37 -0.67,0.5c0.32,-1.1 0.58,-2.23 0.8,-3.38c0.32,-0.16 0.69,-0.41 1.05,-0.7c0.45,-0.4 0.9,-0.84 1.39,-1.39c0.15,-0.2 0.15,-0.44 -0.05,-0.65c-0.15,-0.15 -0.45,-0.15 -0.6,0.05c-0.49,0.5 -0.95,0.95 -1.34,1.29c-0.08,0.08 -0.16,0.15 -0.24,0.22c0.29,-1.7 0.5,-3.45 0.63,-5.24c0,-0.25 -0.15,-0.45 -0.39,-0.45c-0.25,-0.05 -0.45,0.15 -0.5,0.4c-0.12,1.79 -0.32,3.55 -0.62,5.27c-0.13,-0.14 -0.25,-0.29 -0.37,-0.45c-0.25,-0.45 -0.49,-0.94 -0.74,-1.49c-0.05,-0.25 -0.3,-0.35 -0.54,-0.3c-0.25,0.1 -0.35,0.35 -0.25,0.6c0.25,0.65 0.5,1.19 0.85,1.69c0.24,0.4 0.55,0.72 0.87,0.99c-0.23,1.15 -0.5,2.28 -0.82,3.38c-0.1,-0.15 -0.21,-0.31 -0.3,-0.5c-0.3,-0.55 -0.6,-1.24 -0.94,-2.19c-0.1,-0.2 -0.35,-0.35 -0.6,-0.25c-0.2,0.1 -0.35,0.35 -0.25,0.54c0.35,0.99 0.7,1.69 0.99,2.29c0.25,0.51 0.51,0.86 0.76,1.18c-0.02,0.07 -0.81,2.25 -0.83,2.31c-0.37,-0.5 -0.72,-1.01 -1.02,-1.5c-0.05,-0.15 -0.3,-0.65 -0.35,-0.8c-0.1,-0.2 -0.35,-0.3 -0.54,-0.25c-0.25,0.1 -0.35,0.35 -0.25,0.6c0.05,0.1 0.3,0.69 0.4,0.84c0.37,0.69 0.83,1.34 1.37,2.01c-0.08,0.16 -0.15,0.31 -0.22,0.46c-0.03,0 -4.01,1.02 -4.32,1.12c-0.01,-1.85 0.29,-3.8 1,-5.88c0.74,-2.19 1.94,-4.52 3.68,-7c0,0 0.99,-1.94 1.14,-2.33c0.83,-1.76 1.55,-3.68 2.18,-5.65c0.63,0.73 1.17,1.48 1.64,2.27c0.6,0.94 1.1,1.93 1.44,2.88c1.82,5 0.73,10.02 -1.95,14.04zm15.05,-28.11c-0.15,3.13 -0.7,6.8 -1.14,9.23c0,0 -3.68,8.8 -5.61,10.88c-1.71,1.83 -3.45,2.79 -5.24,3.56c0.89,-3.05 0.91,-6.38 -0.26,-9.69c0.01,-0.03 0.39,-2.12 0.63,-3.11c0.3,-0.94 0.6,-1.89 0.99,-2.78c1.14,-2.62 2.78,-4.95 4.99,-6.97c0.15,-0.03 0.26,-0.12 0.3,-0.26c1.52,-1.34 3.3,-2.53 5.36,-3.56c0.01,0.29 0.03,0.59 0.03,0.91c-0.01,0.55 -0.05,1.15 -0.05,1.79zm-110.46,-4.72c0.1,-1.1 0.13,-2.31 0.11,-3.58c0.81,-0.61 1.32,-1.57 1.83,-2.58c0,0 0.5,-1 0.74,-1.39c0.15,-0.2 0.1,-0.5 -0.1,-0.65c-0.2,-0.1 -0.49,-0.05 -0.6,0.15c-0.35,0.45 -0.6,0.99 -0.84,1.49c-0.33,0.66 -0.66,1.29 -1.06,1.79c-0.04,-1.18 -0.1,-2.42 -0.17,-3.68c0.76,-0.42 1.17,-1.15 1.59,-1.88c0.25,-0.4 0.45,-0.85 0.74,-1.19c0.15,-0.15 0.15,-0.45 -0.05,-0.6c-0.2,-0.15 -0.44,-0.15 -0.6,0.05c-0.35,0.4 -0.6,0.84 -0.84,1.29c-0.28,0.49 -0.54,0.96 -0.9,1.29c-0.07,-1.05 -0.13,-2.12 -0.18,-3.18c0.73,-0.6 1.43,-2.63 1.68,-3.02c0.15,-0.2 0.1,-0.44 -0.05,-0.6c-0.2,-0.15 -0.5,-0.1 -0.64,0.1c-0.35,0.45 -0.87,2 -1.04,2.28c-0.08,-2.23 -0.07,-4.41 0.14,-6.4c0.05,-0.25 -0.15,-0.5 -0.4,-0.5c-0.25,-0.05 -0.45,0.15 -0.5,0.4c-0.19,1.88 -0.2,3.89 -0.14,5.96c-0.14,-0.21 -0.75,-1.29 -0.86,-1.44c-0.1,-0.2 -0.35,-0.3 -0.59,-0.2c-0.2,0.15 -0.3,0.4 -0.2,0.6c0.1,0.16 1.27,2.02 1.7,2.49c0.05,1.06 0.1,2.12 0.16,3.18c-0.7,-0.61 -1.71,-2.14 -1.71,-2.14c-0.1,-0.2 -0.35,-0.29 -0.6,-0.2c-0.2,0.05 -0.35,0.35 -0.25,0.54c0.49,1.22 1.69,2.25 2.63,2.99c0.08,1.32 0.15,2.61 0.19,3.84c-0.32,-0.34 -0.67,-0.75 -0.97,-1.17c-0.5,-0.65 -0.85,-1.64 -1.05,-1.79c-0.2,-0.15 -0.65,0.1 -0.65,0.15c-0.2,0.35 0.3,1.24 0.99,2.19c0.56,0.74 1.25,1.53 1.7,1.87c0.01,1.22 -0.01,2.38 -0.11,3.44c0,0.25 0.15,0.45 0.4,0.5c0.25,0 0.45,-0.15 0.5,-0.4zm4.83,23.39c0.14,-0.72 0.19,-1.45 0.14,-2.12c0,-0.74 -0.05,-1.44 -0.15,-2.19c0,-0.25 -0.25,-0.4 -0.49,-0.4c-0.2,0.05 -0.4,0.25 -0.35,0.5c0.05,0.7 0.1,1.39 0.15,2.09c0,0.23 -0.01,0.46 -0.02,0.68c-0.4,-0.76 -0.81,-1.52 -1.22,-2.27c0.02,-1.37 -0.25,-3.2 -0.4,-4.52l0,-0.05c-0.05,-0.25 -0.3,-0.4 -0.5,-0.4c-0.25,0.05 -0.44,0.25 -0.4,0.5l0,0.05c0.11,0.78 0.24,1.71 0.32,2.6c-0.04,-0.07 -0.08,-0.15 -0.12,-0.22c-0.31,-0.59 -0.65,-1.19 -0.97,-1.78c0.01,-0.04 -0.12,-1.45 -0.22,-2.14c-0.05,-0.75 -0.15,-1.44 -0.2,-2.14c0,-0.25 -0.2,-0.45 -0.45,-0.45c-0.25,0 -0.45,0.25 -0.45,0.45l0,0.05c0.05,0.7 0.15,1.44 0.25,2.19c0,0.03 0,0.06 0.01,0.09c-0.82,-1.48 -1.65,-2.97 -2.49,-4.46c-0.15,-0.25 -0.4,-0.3 -0.59,-0.2c-0.25,0.15 -0.3,0.39 -0.2,0.59c0.96,1.69 1.9,3.36 2.82,5.02c-0.16,-0.07 -0.33,-0.14 -0.49,-0.2c-0.64,-0.25 -1.29,-0.5 -1.88,-0.7c-0.2,-0.1 -0.44,0 -0.55,0.25c-0.1,0.25 0.05,0.5 0.25,0.55c0.6,0.2 1.24,0.5 1.88,0.75c0.5,0.21 0.98,0.39 1.47,0.58c0.35,0.65 0.72,1.31 1.07,1.95c0.17,0.32 0.34,0.65 0.52,0.97c-0.29,-0.13 -0.57,-0.27 -0.86,-0.43c-0.75,-0.39 -1.44,-0.74 -2.09,-0.94c-0.25,-0.1 -0.5,0.05 -0.6,0.25c-0.05,0.25 0.1,0.5 0.29,0.55c0.6,0.2 1.29,0.54 1.99,0.89c0.62,0.38 1.28,0.71 1.91,0.91c0.4,0.77 0.8,1.53 1.2,2.29c-0.02,-0.01 -0.05,-0.02 -0.07,-0.03c-0.99,-0.4 -1.99,-0.95 -3.03,-1.64c-0.2,-0.15 -0.5,-0.1 -0.6,0.1c-0.15,0.2 -0.1,0.44 0.1,0.59c1.09,0.75 2.14,1.35 3.23,1.79c0.2,0.05 0.4,0.15 0.6,0.2c0.12,0.05 0.23,0.1 0.35,0.13c0.4,0.79 0.81,1.57 1.19,2.35c0.1,0.25 0.35,0.3 0.6,0.2c0.2,-0.1 0.3,-0.35 0.2,-0.59c-0.38,-0.74 -0.77,-1.49 -1.15,-2.24zm2.82,-44.69c-0.25,0.2 -0.35,0.5 -0.35,0.8s0.1,0.6 0.35,0.8c0.13,0.12 0.29,0.19 0.48,0.24c0.1,0.03 0.21,0.06 0.32,0.06c0.12,0 0.22,-0.02 0.33,-0.06c0.18,-0.05 0.35,-0.12 0.47,-0.24c0.25,-0.2 0.35,-0.5 0.35,-0.8s-0.1,-0.6 -0.35,-0.8c-0.2,-0.2 -0.5,-0.35 -0.8,-0.35c-0.3,0 -0.6,0.15 -0.8,0.35zm60.59,62.03c-1.92,1.3 -3.83,2.56 -5.75,3.77c0.05,-0.28 0.11,-0.56 0.19,-0.84c0.15,-0.5 0.35,-1.04 0.64,-1.59c0.15,-0.2 0.05,-0.45 -0.15,-0.59c-0.2,-0.1 -0.49,-0.05 -0.6,0.2c-0.35,0.6 -0.6,1.19 -0.74,1.79c-0.18,0.55 -0.27,1.09 -0.29,1.64c-0.73,0.46 -1.45,0.91 -2.18,1.35c0.09,-0.53 0.29,-1.17 0.59,-1.89c0.05,-0.2 0.15,-0.4 0.29,-0.65c0.1,-0.25 0.2,-0.5 0.35,-0.69c0.1,-0.25 0,-0.5 -0.2,-0.6c-0.2,-0.15 -0.49,-0.05 -0.6,0.15l0,0.05c-0.15,0.25 -0.25,0.5 -0.35,0.69c-0.1,0.2 -0.2,0.45 -0.35,0.69c-0.43,1.08 -0.67,2.04 -0.65,2.79c-0.86,0.51 -1.72,1.02 -2.57,1.52c0.01,-0.39 0.06,-0.83 0.19,-1.33c0.25,-0.84 0.65,-1.79 1.3,-2.93c0.1,-0.2 0,-0.45 -0.2,-0.6c-0.2,-0.1 -0.45,-0.05 -0.6,0.2c-0.65,1.19 -1.1,2.19 -1.34,3.08c-0.22,0.78 -0.28,1.48 -0.22,2.08c-0.6,0.35 -1.19,0.68 -1.78,1.01c0.09,-0.49 0.18,-0.99 0.31,-1.5c0.2,-0.74 0.5,-1.49 0.8,-2.28c0.1,-0.2 0,-0.45 -0.2,-0.55c-0.25,-0.1 -0.5,0 -0.6,0.2c-0.35,0.84 -0.64,1.64 -0.84,2.43c-0.18,0.73 -0.31,1.46 -0.42,2.23c-1.13,0.62 -2.25,1.22 -3.36,1.8c-0.25,0.1 -0.3,0.34 -0.2,0.59c0.1,0.2 0.35,0.3 0.59,0.15c1.16,-0.59 2.33,-1.21 3.49,-1.84c0.72,0.17 1.45,0.31 2.22,0.4c0.8,0.15 1.64,0.2 2.48,0.15c0.25,0 0.45,-0.2 0.45,-0.44c0,-0.2 -0.2,-0.4 -0.45,-0.4c-0.8,0 -1.59,-0.05 -2.38,-0.15c-0.39,-0.05 -0.78,-0.11 -1.17,-0.19c0.54,-0.3 1.08,-0.61 1.62,-0.92c0.7,0.17 1.46,0.26 2.23,0.31c0.8,0.05 1.64,0 2.53,-0.05c0.25,-0.05 0.4,-0.25 0.4,-0.5c0,-0.25 -0.25,-0.4 -0.44,-0.4c-0.85,0.1 -1.69,0.1 -2.49,0.05c-0.36,0 -0.73,-0.02 -1.09,-0.07c0.74,-0.44 1.49,-0.88 2.23,-1.34c0.71,0.17 1.49,0.22 2.24,0.26c0.85,0.05 1.64,0 2.43,0c0.25,0 0.45,-0.2 0.45,-0.44c0,-0.25 -0.2,-0.44 -0.45,-0.44c-0.79,0.05 -1.59,0.05 -2.38,0c-0.4,0 -0.78,-0.03 -1.15,-0.07c0.68,-0.42 1.37,-0.84 2.05,-1.27l3.37,0.1c0.25,0 0.45,-0.2 0.45,-0.45c0,-0.25 -0.2,-0.44 -0.4,-0.44l-2.07,-0.06c1.74,-1.12 3.49,-2.27 5.25,-3.47c0.2,-0.15 0.25,-0.4 0.1,-0.6c-0.08,-0.2 -0.38,-0.25 -0.58,-0.1zm31.99,-52.2c-0.15,-0.2 -0.45,-0.2 -0.65,-0.1c-0.2,0.15 -0.2,0.45 -0.04,0.64c0.49,0.7 1.09,1.34 1.63,1.89c0.54,0.54 1.12,0.99 1.74,1.39l0.1,2.53c0,0.25 0.2,0.45 0.45,0.4c0.25,0 0.44,-0.2 0.4,-0.45l-0.1,-2.51c0.12,-0.11 0.24,-0.21 0.34,-0.32c0.15,-0.15 0.3,-0.3 0.5,-0.5c0.75,-0.89 1.54,-2.03 2.23,-3.37c0.1,-0.25 0.05,-0.5 -0.2,-0.6c-0.2,-0.15 -0.44,-0.05 -0.54,0.15c-0.69,1.34 -2.32,3.41 -2.38,3.48l-0.15,-3.83c0.51,-0.48 0.99,-1.09 1.38,-1.75c0.45,-0.75 0.85,-1.59 1.19,-2.43c0.1,-0.25 -0.05,-0.5 -0.25,-0.6c-0.25,-0.1 -0.5,0.05 -0.6,0.25c-0.29,0.85 -0.69,1.64 -1.09,2.33c-0.21,0.36 -0.44,0.68 -0.69,0.97l-0.11,-2.99c0.95,-0.91 1.37,-2.3 1.79,-3.74l0,-0.05c0.05,-0.2 -0.05,-0.45 -0.3,-0.54c-0.25,-0.05 -0.49,0.1 -0.54,0.29l0,0.05c-0.28,0.95 -0.57,1.9 -1,2.65l-0.19,-4.88c-0.05,-0.25 -0.25,-0.45 -0.49,-0.45c-0.25,0 -0.4,0.2 -0.4,0.45l0.22,5.4c-0.03,-0.01 -1.27,-0.88 -1.86,-1.52c-0.15,-0.2 -0.45,-0.2 -0.65,-0.05c-0.15,0.2 -0.15,0.45 0,0.65c0.65,0.7 1.34,1.29 1.99,1.64c0.15,0.1 0.51,0.29 0.57,0.3l0.13,3.28c-0.09,-0.03 -0.18,-0.07 -0.25,-0.1c-0.7,-0.35 -1.39,-0.99 -2.09,-1.83c-0.15,-0.16 -0.45,-0.2 -0.6,-0.05c-0.2,0.15 -0.25,0.45 -0.1,0.64c0.8,0.9 1.54,1.64 2.39,2.04c0.15,0.05 0.29,0.15 0.49,0.2c0.07,0.02 0.13,0.04 0.2,0.06l0.15,3.68c-0.36,-0.28 -0.71,-0.59 -1.04,-0.92c-0.59,-0.49 -1.09,-1.13 -1.58,-1.78zm7.99,22c-0.69,0.65 -2.32,1.7 -2.33,1.71c0.75,-1.74 1.52,-3.53 2.33,-5.43c0.05,-0.2 -0.05,-0.45 -0.25,-0.54c-0.24,-0.1 -0.5,0 -0.59,0.2c-0.7,1.64 -1.44,3.37 -2.2,5.16c-0.19,-0.74 -0.32,-1.51 -0.38,-2.28c0,-0.2 -0.05,-1.44 -0.05,-1.49c0,-0.25 -0.2,-0.45 -0.45,-0.45c-0.2,0 -0.4,0.2 -0.4,0.45c0,0.05 0,1.29 0.05,1.54c0.09,1.18 0.28,2.37 0.7,3.48c-0.45,1.04 -0.9,2.1 -1.36,3.16c-0.48,-0.81 -0.83,-1.67 -1.03,-2.52c-0.05,-0.2 -0.1,-0.45 -0.15,-0.64c0,-0.2 -0.05,-0.45 -0.05,-0.65c0,-0.25 -0.25,-0.45 -0.5,-0.45c-0.2,0 -0.4,0.24 -0.4,0.45l0,0.05c0,0.25 0.05,0.49 0.1,0.74c0,0.2 0.05,0.45 0.1,0.7c0.28,1.12 0.79,2.24 1.51,3.27c-0.24,0.55 -1.14,2.63 -1.35,3.12c-0.17,-0.52 -0.33,-1.03 -0.45,-1.53c-0.2,-0.84 -0.35,-1.74 -0.5,-2.58c0,-0.25 -0.24,-0.4 -0.49,-0.4c-0.2,0.05 -0.4,0.25 -0.35,0.5c0.1,0.89 0.3,1.79 0.5,2.68c0.18,0.86 0.46,1.68 0.8,2.47c-0.35,0.82 -0.69,1.63 -1.05,2.45c-0.1,0.25 0,0.5 0.25,0.6c0.2,0.1 0.45,0 0.54,-0.25c0.35,-0.8 0.7,-1.6 1.05,-2.39c0.61,-0.33 1.22,-0.66 1.88,-1.08c0.7,-0.45 1.39,-0.9 2.13,-1.49c0.2,-0.1 0.25,-0.4 0.1,-0.59c-0.15,-0.2 -0.4,-0.25 -0.6,-0.1c-0.75,0.54 -1.44,1.04 -2.09,1.44c-0.3,0.17 -0.59,0.34 -0.87,0.5c0.19,-0.45 1.07,-2.5 1.32,-3.07c0.67,-0.28 1.35,-0.61 1.98,-1.06c0.74,-0.5 1.49,-1.04 2.24,-1.79c0.2,-0.15 0.2,-0.45 0,-0.64c-0.15,-0.15 -0.45,-0.15 -0.6,0c-0.74,0.69 -1.44,1.24 -2.08,1.69c-0.34,0.22 -0.67,0.41 -1,0.58c0.38,-0.88 0.77,-1.76 1.15,-2.65c0.13,-0.04 0.74,-0.32 0.94,-0.42c0.84,-0.45 1.74,-1.09 2.48,-1.79c0.2,-0.15 0.2,-0.45 0.05,-0.6c-0.13,-0.2 -0.43,-0.2 -0.63,-0.06zm-80.06,-56.76c0.89,-0.32 1.78,-0.65 2.67,-1c0.58,0.2 1.15,0.38 1.71,0.55c0.65,0.15 1.29,0.3 1.94,0.4c0.25,0 0.5,-0.15 0.5,-0.4c0.05,-0.25 -0.1,-0.45 -0.35,-0.49c-0.65,-0.1 -1.29,-0.2 -1.89,-0.35c-0.21,-0.07 -0.42,-0.14 -0.64,-0.21c0.82,-0.34 1.64,-0.69 2.45,-1.06c0.88,0.49 1.8,0.69 2.76,0.87c0.2,0.05 0.4,0.1 0.6,0.15c0.2,0.05 0.45,-0.1 0.5,-0.35c0.05,-0.25 -0.1,-0.5 -0.35,-0.55c-0.2,-0.05 -0.4,-0.05 -0.6,-0.1c-0.65,-0.14 -1.28,-0.26 -1.88,-0.49c0.18,-0.09 0.36,-0.16 0.54,-0.25c0.62,-0.31 1.25,-0.62 1.86,-0.95c1.17,0.3 3.6,0.35 3.65,0.35c0.25,0.05 0.45,-0.15 0.45,-0.4c0,-0.25 -0.2,-0.45 -0.4,-0.45c-0.1,0 -1.7,-0.07 -2.45,-0.17c1.58,-0.85 3.16,-1.75 4.78,-2.71c0.2,-0.15 0.3,-0.4 0.15,-0.65c-0.1,-0.2 -0.4,-0.25 -0.6,-0.15c-1.74,1.06 -3.45,2.02 -5.14,2.91c0.1,-0.33 0.23,-0.68 0.37,-1.03c0.1,-0.1 0.15,-0.25 0.2,-0.35c0.05,-0.1 0.1,-0.25 0.2,-0.35c0.1,-0.2 0.05,-0.5 -0.15,-0.6c-0.25,-0.15 -0.5,-0.05 -0.6,0.15c0,0 -0.95,2.11 -1.06,2.72c-0.56,0.29 -1.11,0.58 -1.67,0.86c-0.21,0.1 -0.41,0.19 -0.62,0.29c0.05,-0.29 0.1,-0.57 0.18,-0.84c0.15,-0.54 0.35,-1.04 0.7,-1.49c0.15,-0.2 0.1,-0.5 -0.1,-0.65c-0.2,-0.15 -0.5,-0.1 -0.65,0.1c-0.4,0.6 -0.64,1.19 -0.79,1.79c-0.12,0.51 -0.21,1.02 -0.26,1.52c-0.96,0.44 -1.92,0.85 -2.89,1.25c0.1,-0.39 0.21,-0.78 0.37,-1.18c0.2,-0.6 0.49,-1.24 0.89,-1.94c0.1,-0.2 0.05,-0.45 -0.2,-0.6c-0.2,-0.1 -0.45,-0.05 -0.6,0.2c-0.4,0.69 -0.7,1.38 -0.94,2.03c-0.24,0.66 -0.38,1.27 -0.52,1.88c-0.8,0.31 -1.6,0.62 -2.41,0.9c-0.25,0.05 -0.35,0.3 -0.25,0.55c0.04,0.29 0.29,0.38 0.54,0.29zm-15.69,16.88c0.2,-0.15 0.25,-0.4 0.15,-0.6c-0.1,-0.24 -0.4,-0.29 -0.6,-0.2c-0.45,0.25 -0.85,0.5 -1.19,0.75c-0.37,0.26 -0.7,0.46 -1.08,0.59c0.45,-0.81 0.92,-1.7 1.4,-2.65c0.88,0.06 1.64,-0.42 2.41,-0.87c0.4,-0.25 0.74,-0.5 1.09,-0.6c0.25,-0.1 0.35,-0.35 0.3,-0.55c-0.1,-0.24 -0.35,-0.35 -0.55,-0.29c-0.45,0.15 -0.89,0.4 -1.29,0.69c-0.5,0.29 -1,0.59 -1.5,0.71c0,-0.01 0,-0.01 0.01,-0.02c0.37,-0.73 0.75,-1.48 1.15,-2.24c1.15,-0.1 2.87,-1.28 3.17,-1.48c0.2,-0.1 0.25,-0.4 0.1,-0.6c-0.1,-0.2 -0.4,-0.25 -0.6,-0.15c-0.3,0.2 -1.59,1.11 -2.16,1.25c1.23,-2.32 4.14,-6.96 4.19,-6.96c0.1,-0.2 0.05,-0.49 -0.15,-0.6c-0.22,-0.14 -0.44,-0.06 -0.59,0.1c-1.46,2.08 -2.76,4.31 -3.94,6.49c-0.1,-0.5 -0.24,-2.37 -0.24,-2.47c0.05,-0.25 -0.1,-0.5 -0.35,-0.54c-0.25,0 -0.45,0.15 -0.5,0.4c-0.05,0.15 0.27,3.11 0.44,3.82c-0.42,0.79 -0.82,1.57 -1.2,2.33c-0.05,-0.1 -0.09,-0.19 -0.13,-0.28c-0.35,-0.75 -0.75,-1.49 -0.55,-2.19c0.05,-0.25 -0.1,-0.5 -0.35,-0.55c-0.2,-0.05 -0.45,0.1 -0.5,0.35c-0.3,0.99 0.15,1.88 0.6,2.78c0.15,0.31 0.3,0.61 0.4,0.9c-0.54,1.05 -1.05,2.04 -1.54,2.93c-0.16,-0.55 -0.3,-1.27 -0.4,-1.89c0,-0.2 -0.05,-0.4 -0.05,-0.55c0,-0.15 -0.05,-0.24 -0.05,-0.4l0,-0.05c0,-0.25 -0.2,-0.45 -0.45,-0.45c-0.25,0 -0.45,0.2 -0.4,0.45l0,0.56c0.05,0.2 0.05,0.4 0.1,0.54c0.14,0.96 0.43,2.19 0.67,2.81c-0.36,0.62 -0.72,1.18 -1.07,1.66c-0.15,0.15 -0.1,0.45 0.1,0.6c0.2,0.15 0.5,0.1 0.6,-0.1c0.39,-0.53 0.8,-1.16 1.21,-1.85c0.92,-0.08 1.47,-0.44 2.17,-0.88c0.32,-0.25 0.67,-0.45 1.17,-0.7zm76.53,67.2c0.15,-0.65 0.44,-1.24 0.74,-1.84c0.15,-0.2 0.05,-0.45 -0.15,-0.6c-0.2,-0.1 -0.5,-0.05 -0.6,0.2c-0.35,0.64 -0.65,1.29 -0.85,1.98c-0.17,0.58 -0.31,1.19 -0.34,1.81c-1,0.62 -2.01,1.24 -3.03,1.83c0.08,-0.8 0.22,-1.59 0.44,-2.35c0.05,-0.25 0.3,-0.99 0.4,-1.24c0.1,-0.25 -0.05,-0.5 -0.25,-0.55c-0.24,-0.1 -0.49,0 -0.6,0.25c-0.04,0.2 -0.34,1.09 -0.4,1.29c-0.28,1.05 -0.43,2.09 -0.53,3.13c-1.12,0.62 -2.25,1.22 -3.39,1.81c0.03,-0.5 0.11,-1 0.25,-1.51c0.25,-0.7 0.6,-1.44 1.1,-2.14c0.15,-0.2 0.1,-0.49 -0.1,-0.6c-0.2,-0.15 -0.45,-0.1 -0.6,0.1c-0.55,0.79 -0.94,1.59 -1.25,2.38c-0.22,0.71 -0.32,1.46 -0.3,2.22c-1.84,0.92 -3.72,1.79 -5.66,2.6c-0.2,0.1 -0.3,0.35 -0.2,0.54c0.05,0.25 0.35,0.35 0.55,0.25c0.72,-0.29 1.42,-0.61 2.12,-0.91c0.04,0.03 0.07,0.05 0.11,0.07c0.64,0.3 1.29,0.45 1.99,0.55c0.64,0.05 1.34,0.05 1.98,-0.05c0.25,-0.05 0.45,-0.25 0.4,-0.5c-0.05,-0.25 -0.25,-0.4 -0.49,-0.4c-0.6,0.1 -1.24,0.1 -1.84,0.05c-0.34,-0.03 -0.69,-0.12 -1.05,-0.22c0.89,-0.41 1.77,-0.84 2.64,-1.27c0.71,0.21 1.35,0.35 1.94,0.39c0.7,0.1 1.29,0.15 1.89,0.1c0.25,0 0.44,-0.2 0.44,-0.44c-0.05,-0.25 -0.24,-0.45 -0.49,-0.45c-0.55,0.05 -1.1,0.05 -1.69,-0.05c-0.29,-0.04 -0.58,-0.1 -0.87,-0.16c1.06,-0.56 2.12,-1.11 3.16,-1.7c0.5,0.14 0.99,0.24 1.49,0.32c0.6,0.05 1.19,0.1 1.79,0.1c0.25,0.05 0.45,-0.15 0.45,-0.4c0,-0.25 -0.2,-0.45 -0.45,-0.45c-0.6,0 -2.01,-0.2 -2.17,-0.23c0.93,-0.55 1.84,-1.11 2.74,-1.67c0.48,0.13 0.93,0.21 1.42,0.21c0.49,0.05 1.04,0.05 1.59,0c0.24,0 0.4,-0.25 0.4,-0.49c-0.05,-0.2 -0.25,-0.4 -0.5,-0.35c-0.5,0.05 -1.68,-0.04 -1.8,-0.06c1.55,-0.99 3.07,-2 4.58,-3.03c0.2,-0.15 0.25,-0.44 0.1,-0.64c-0.15,-0.2 -0.44,-0.25 -0.64,-0.1c-1.53,1.07 -3.1,2.13 -4.7,3.15c0.05,-0.29 0.12,-0.61 0.23,-0.93zm-10.18,-79.41c0.2,-0.2 0.35,-0.5 0.35,-0.8c0,-0.3 -0.15,-0.6 -0.35,-0.8c-0.2,-0.2 -0.5,-0.35 -0.85,-0.35c-0.3,0 -0.6,0.15 -0.8,0.35c-0.2,0.2 -0.35,0.45 -0.35,0.8c0,0.3 0.15,0.6 0.35,0.8c0.2,0.2 0.5,0.3 0.8,0.3c0.35,-0.01 0.65,-0.11 0.85,-0.3zm-57.65,60.29c0,6.17 2.8,9.32 8.53,9.63c4.77,0 9.71,0 14.6,0.35c3.17,0.22 5.87,1.66 8.11,4.36c1.85,-2.46 4.41,-3.85 8.29,-4.36c4.63,-0.35 9.35,-0.35 13.92,-0.35c5.53,-0.4 8.23,-3.3 8.23,-8.88c0,-0.24 0,-0.49 -0.02,-0.74c0,0 0,-49.65 0,-50.84l-61.66,0c0,1.17 0,50.83 0,50.83zm39.36,-28.76l19.12,0l0,-1.88l-18.87,0l0,-1.34l18.87,0l0,-1.89l-18.87,0l0,-1.39l18.87,0l0,-1.64l-18.87,0l0,-1.39l18.87,0l0,-2.03l-18.87,0l0,-1.39l18.87,0l0,-2.25l-18.87,0l0,-1.34l18.87,0l0,-1.99l-19.12,0l0,-2.08l20.86,0l0,22.05l-20.86,0l0,-1.44zm-0.05,35.75l12.72,0c2.14,0.15 5.12,-1.14 5.12,-2.14l-17.83,-0.05l0,-1.19l18.57,0c0.05,-0.2 0.35,-1.19 0.35,-2.03l-18.93,0l0,-1.19l18.92,-0.05l0,-2.08l-18.92,0l0,-1.19l18.92,0l0.05,-2.44l-18.92,0l0,-1.19l18.92,0l0,-2.43l-18.92,0l0,-1.29l18.92,0l0,-2.29l-18.92,0l0,-2.24l20.86,0l0,16.59c-0.15,4.02 -3.48,6.85 -8.2,6.45l-12.71,0l0,-1.24zm-16.62,1.24l-14.4,0c-1.29,0.05 -2.73,-0.5 -3.58,-1.24l15.99,0l0,-2.14l-17.33,0c-0.5,-0.4 -0.8,-0.9 -0.9,-1.24l18.23,0l0,-2.03l-18.83,0c-0.15,-0.35 -0.19,-0.9 -0.19,-1.24l19.02,0l0,-2.08l-19.02,0l0,-1.19l19.02,0l0,-2.44l-19.02,0l0,-1.19l19.02,0l0,-2.43l-19.02,0l0,-1.29l19.02,0l0,-2.29l-19.02,0l0,-2.24l21.01,0l0,23.04zm-21.02,-36.99l19.12,0l0,-1.88l-18.87,0l0,-1.34l18.87,0l0,-1.89l-18.87,0l0,-1.39l18.87,0l0,-1.64l-18.87,0l0,-1.39l18.87,0l0,-2.03l-18.87,0l0,-1.39l18.87,0l0,-2.25l-18.87,0l0,-1.34l18.87,0l0,-1.99l-19.12,0l0,-2.08l20.87,0l0,22.05l-20.87,0l0,-1.44zm-4.15,-21.92c0,0.76 0,50.63 0,50.63c0.48,8.4 4.91,12.31 13.62,11.95l12.07,0.35l0.1,0.03c3.72,1.03 6.32,3.08 8,6.23c1.8,-3.5 4.51,-5.65 8.25,-6.26c0,0 12.86,-0.35 12.87,-0.35c6.85,-0.1 10.16,-3.23 10.43,-9.82c0,0 0,-0.37 0,-1c-0.12,6.01 -3.23,9.32 -9.33,9.75c0,0 -0.02,-0.3 -0.04,-0.61c0,0.3 0,0.61 0,0.61c-4.76,0 -9.26,0 -13.82,0.34c-3.86,0.51 -6.23,1.84 -7.91,4.44l-0.47,0.7l-0.65,-0.82c0,0 -0.33,-0.48 -0.26,-0.37c-1.97,-2.42 -4.44,-3.75 -7.32,-3.95c-4.87,-0.33 -9.78,-0.33 -14.56,-0.33c-6.44,-0.35 -9.71,-3.99 -9.71,-10.84l0,-51.7c-0.42,0.33 -0.99,0.79 -1.27,1.02z' class='st0'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E";
8
- exports["default"] = _default;
package/govgr/index.js DELETED
@@ -1,57 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
-
7
- var _Footer = require("@digigov/ui/govgr/Footer");
8
-
9
- Object.keys(_Footer).forEach(function (key) {
10
- if (key === "default" || key === "__esModule") return;
11
- if (key in exports && exports[key] === _Footer[key]) return;
12
- Object.defineProperty(exports, key, {
13
- enumerable: true,
14
- get: function get() {
15
- return _Footer[key];
16
- }
17
- });
18
- });
19
-
20
- var _Copyright = require("@digigov/ui/govgr/Footer/Copyright");
21
-
22
- Object.keys(_Copyright).forEach(function (key) {
23
- if (key === "default" || key === "__esModule") return;
24
- if (key in exports && exports[key] === _Copyright[key]) return;
25
- Object.defineProperty(exports, key, {
26
- enumerable: true,
27
- get: function get() {
28
- return _Copyright[key];
29
- }
30
- });
31
- });
32
-
33
- var _LicenseCCSA = require("@digigov/ui/govgr/Footer/LicenseCCSA");
34
-
35
- Object.keys(_LicenseCCSA).forEach(function (key) {
36
- if (key === "default" || key === "__esModule") return;
37
- if (key in exports && exports[key] === _LicenseCCSA[key]) return;
38
- Object.defineProperty(exports, key, {
39
- enumerable: true,
40
- get: function get() {
41
- return _LicenseCCSA[key];
42
- }
43
- });
44
- });
45
-
46
- var _Logo = require("@digigov/ui/govgr/Logo");
47
-
48
- Object.keys(_Logo).forEach(function (key) {
49
- if (key === "default" || key === "__esModule") return;
50
- if (key in exports && exports[key] === _Logo[key]) return;
51
- Object.defineProperty(exports, key, {
52
- enumerable: true,
53
- get: function get() {
54
- return _Logo[key];
55
- }
56
- });
57
- });
@@ -1,3 +0,0 @@
1
- import * as React from 'react';
2
- export declare const useDebounceCallback: <CallbackArgs extends any[]>(callback: (...args: CallbackArgs) => void, wait?: number, leading?: boolean) => (...args: CallbackArgs) => void;
3
- export declare const useDebounce: <State extends unknown>(initialState: State | (() => State), wait?: number | undefined, leading?: boolean | undefined) => [State, React.Dispatch<React.SetStateAction<State>>];
@@ -1,63 +0,0 @@
1
- "use strict";
2
-
3
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
-
5
- var _typeof = require("@babel/runtime/helpers/typeof");
6
-
7
- Object.defineProperty(exports, "__esModule", {
8
- value: true
9
- });
10
- exports.useDebounceCallback = exports.useDebounce = void 0;
11
-
12
- var React = _interopRequireWildcard(require("react"));
13
-
14
- var _useLatest = _interopRequireDefault(require("@digigov/ui/hooks/useLatest"));
15
-
16
- function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
17
-
18
- function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
19
-
20
- var useDebounceCallback = function useDebounceCallback(callback) {
21
- var wait = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 100;
22
- var leading = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;
23
- var storedCallback = (0, _useLatest["default"])(callback);
24
- var timeout = React.useRef();
25
- var deps = [wait, leading, storedCallback]; // Cleans up pending timeouts when the deps change
26
-
27
- React.useEffect(function () {
28
- return function () {
29
- timeout.current && clearTimeout(timeout.current);
30
- timeout.current = void 0;
31
- };
32
- }, deps);
33
- return React.useCallback(function () {
34
- // eslint-disable-next-line prefer-rest-params
35
- var args = arguments;
36
- var current = timeout.current; // Calls on leading edge
37
-
38
- if (current === void 0 && leading) {
39
- timeout.current = setTimeout(function () {
40
- timeout.current = void 0;
41
- }, wait); // eslint-disable-next-line prefer-spread
42
-
43
- return storedCallback.current.apply(null, args);
44
- } // Clear the timeout every call and start waiting again
45
-
46
-
47
- current && clearTimeout(current); // Waits for `wait` before invoking the callback
48
-
49
- timeout.current = setTimeout(function () {
50
- timeout.current = void 0;
51
- storedCallback.current.apply(null, args);
52
- }, wait);
53
- }, deps);
54
- };
55
-
56
- exports.useDebounceCallback = useDebounceCallback;
57
-
58
- var useDebounce = function useDebounce(initialState, wait, leading) {
59
- var state = React.useState(initialState);
60
- return [state[0], useDebounceCallback(state[1], wait, leading)];
61
- };
62
-
63
- exports.useDebounce = useDebounce;
@@ -1,3 +0,0 @@
1
- import * as React from 'react';
2
- declare const useLatest: <T extends unknown>(current: T) => React.MutableRefObject<T>;
3
- export default useLatest;
@@ -1,26 +0,0 @@
1
- "use strict";
2
-
3
- var _typeof = require("@babel/runtime/helpers/typeof");
4
-
5
- Object.defineProperty(exports, "__esModule", {
6
- value: true
7
- });
8
- exports["default"] = void 0;
9
-
10
- var React = _interopRequireWildcard(require("react"));
11
-
12
- function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
13
-
14
- function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
15
-
16
- // copied from https://github.com/jaredLunde/react-hook/blob/master/packages/latest/src/index.tsx
17
- var useLatest = function useLatest(current) {
18
- var storedValue = React.useRef(current);
19
- React.useEffect(function () {
20
- storedValue.current = current;
21
- });
22
- return storedValue;
23
- };
24
-
25
- var _default = useLatest;
26
- exports["default"] = _default;
@@ -1,2 +0,0 @@
1
- export declare function useOutdatedBrowserCheck(browserSupport?: Record<string, number | boolean>): [boolean, string];
2
- export default useOutdatedBrowserCheck;
@@ -1,60 +0,0 @@
1
- "use strict";
2
-
3
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
-
5
- Object.defineProperty(exports, "__esModule", {
6
- value: true
7
- });
8
- exports["default"] = void 0;
9
- exports.useOutdatedBrowserCheck = useOutdatedBrowserCheck;
10
-
11
- var _evaluateBrowserVersion = _interopRequireDefault(require("@digigov/ui/utils/evaluateBrowserVersion"));
12
-
13
- var DEFAULT_BROWSER_SUPPORT = {
14
- Chrome: 57,
15
- // Includes Chrome for mobile devices
16
- Edge: 39,
17
- Safari: 10,
18
- 'Mobile Safari': 10,
19
- Firefox: 50,
20
- Opera: 50,
21
- IE: false
22
- };
23
- var browserUpdateLinks = {
24
- Chrome: 'https://www.google.com/chrome/',
25
- Edge: 'https://www.microsoft.com/en-us/edge',
26
- Safari: 'https://www.apple.com/safari/',
27
- 'Mobile Safari': 'https://www.apple.com/safari/',
28
- Firefox: 'https://www.mozilla.org/en-US/firefox/new/',
29
- Opera: 'https://www.opera.com/download'
30
- };
31
- var browserNames = Object.keys(DEFAULT_BROWSER_SUPPORT);
32
-
33
- function useOutdatedBrowserCheck() {
34
- var browserSupport = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : DEFAULT_BROWSER_SUPPORT;
35
- var currentBrowser = (0, _evaluateBrowserVersion["default"])();
36
-
37
- if (!currentBrowser.version || !currentBrowser.name) {
38
- return [true, browserUpdateLinks.Chrome];
39
- }
40
-
41
- var currentBrowserVersion = parseInt(currentBrowser.version);
42
- var currentBrowserName = currentBrowser.name;
43
-
44
- if (browserNames.indexOf(currentBrowser.name) > -1) {
45
- if (browserSupport[currentBrowserName] === false) {
46
- return [true, browserUpdateLinks.Chrome];
47
- } else {
48
- if (currentBrowserVersion >= browserSupport[currentBrowserName]) {
49
- return [false, ''];
50
- } else {
51
- return [true, browserUpdateLinks[currentBrowserName]];
52
- }
53
- }
54
- } else {
55
- return [true, browserUpdateLinks.Chrome];
56
- }
57
- }
58
-
59
- var _default = useOutdatedBrowserCheck;
60
- exports["default"] = _default;
@@ -1,4 +0,0 @@
1
- export declare function normalizeGreek(text: any): any;
2
- export declare function fullTextSearch(data: Object, search: string): boolean;
3
- export declare function useSearch(data: Array<Object>, query?: string): Object[];
4
- export default useSearch;
@@ -1,40 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports["default"] = void 0;
7
- exports.fullTextSearch = fullTextSearch;
8
- exports.normalizeGreek = normalizeGreek;
9
- exports.useSearch = useSearch;
10
-
11
- var _react = require("react");
12
-
13
- function normalizeGreek(text) {
14
- text = text.replace(/Ά|Α|ά/g, 'α').replace(/Έ|Ε|έ/g, 'ε').replace(/Ή|Η|ή/g, 'η').replace(/Ί|Ϊ|Ι|ί|ΐ|ϊ/g, 'ι').replace(/Ό|Ο|ό/g, 'ο').replace(/Ύ|Ϋ|Υ|ύ|ΰ|ϋ/g, 'υ').replace(/Ώ|Ω|ώ/g, 'ω').replace(/Σ|ς/g, 'σ');
15
- return text;
16
- }
17
-
18
- function fullTextSearch(data, search) {
19
- if (!search) {
20
- return true;
21
- }
22
-
23
- var q = normalizeGreek(search.normalize('NFC').replace(/[\u0300-\u036f]/g, '').toLowerCase());
24
- var index = Object.keys(data).map(function (k) {
25
- return data[k] ? data[k].toString().toLowerCase() : '';
26
- }).join('');
27
- return normalizeGreek(index.normalize('NFC').replace(/[\u0300-\u036f]/g, '')).includes(q);
28
- }
29
-
30
- function useSearch(data, query) {
31
- if (!query) return data;
32
- return (0, _react.useMemo)(function () {
33
- return data.filter(function (t) {
34
- return fullTextSearch(t, query);
35
- });
36
- }, [data, query]);
37
- }
38
-
39
- var _default = useSearch;
40
- exports["default"] = _default;
@@ -1,18 +0,0 @@
1
- export interface UseTogglableSectionsInterface {
2
- toggleProperty: string;
3
- singleOpen?: boolean;
4
- onToggleProperty: string;
5
- initial?: Record<string, boolean>;
6
- firstOpen?: boolean;
7
- ariaNavigation?: boolean;
8
- }
9
- export interface UseTogglableSectionsReturn {
10
- register: (el: HTMLElement) => void;
11
- registered: {
12
- current: Record<string, HTMLElement>;
13
- };
14
- opened: Record<string, boolean>;
15
- toggle: (id: string) => void;
16
- setOpened: (opened: ((curOpened: Record<string, boolean>) => Record<string, boolean>) | Record<string, boolean>) => void;
17
- }
18
- export declare function useTogglableSections({ toggleProperty, singleOpen, onToggleProperty, initial, firstOpen, ariaNavigation, }: UseTogglableSectionsInterface): UseTogglableSectionsReturn;