@digigov/ui 0.12.2 → 0.13.0

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 (660) hide show
  1. package/CHANGELOG.md +8 -1
  2. package/{src/core/ServiceBadge/ServiceBadge.mdx → LICENSE} +0 -0
  3. package/api/APIErrors.d.ts +22 -0
  4. package/api/APIErrors.js +117 -0
  5. package/api/APIProvider.d.ts +15 -0
  6. package/api/APIProvider.js +43 -0
  7. package/api/fetchAPI.d.ts +18 -0
  8. package/api/fetchAPI.js +64 -0
  9. package/api/index.d.ts +9 -0
  10. package/api/index.js +104 -0
  11. package/api/index.spec.d.ts +1 -0
  12. package/api/index.spec.js +584 -0
  13. package/{src/api → api}/introduction.md +0 -0
  14. package/api/useResource.d.ts +11 -0
  15. package/api/useResource.js +144 -0
  16. package/api/useResourceAction.d.ts +2 -0
  17. package/api/useResourceAction.js +157 -0
  18. package/api/useResourceQuery.d.ts +18 -0
  19. package/api/useResourceQuery.js +229 -0
  20. package/api/utils.d.ts +6 -0
  21. package/api/utils.js +250 -0
  22. package/app/App.d.ts +14 -0
  23. package/app/App.js +49 -0
  24. package/{src/app/Confirmation/index.tsx → app/Confirmation/index.d.ts} +0 -0
  25. package/app/Confirmation/index.js +44 -0
  26. package/{src/app/Footer/index.tsx → app/Footer/index.d.ts} +0 -0
  27. package/app/Footer/index.js +200 -0
  28. package/app/Header/HeaderLogo.d.ts +3 -0
  29. package/app/Header/HeaderLogo.js +30 -0
  30. package/app/Header/HeaderSection.d.ts +5 -0
  31. package/app/Header/HeaderSection.js +20 -0
  32. package/app/Header/HeaderTitle.d.ts +5 -0
  33. package/app/Header/HeaderTitle.js +30 -0
  34. package/{src/app → app}/Header/__snapshots__/index.spec.tsx.snap +0 -0
  35. package/app/Header/index.d.ts +11 -0
  36. package/app/Header/index.js +106 -0
  37. package/{src/app → app}/Header/index.mdx +0 -0
  38. package/app/Header/index.spec.d.ts +1 -0
  39. package/app/Header/index.spec.js +45 -0
  40. package/app/NotFound/index.d.ts +3 -0
  41. package/app/NotFound/index.js +29 -0
  42. package/app/OutdatedBrowserBanner.d.ts +2 -0
  43. package/app/OutdatedBrowserBanner.js +41 -0
  44. package/app/PageTitle.d.ts +10 -0
  45. package/app/PageTitle.js +76 -0
  46. package/{src/app → app}/QrCodeScanner/__snapshots__/index.spec.tsx.snap +0 -0
  47. package/app/QrCodeScanner/index.d.ts +29 -0
  48. package/app/QrCodeScanner/index.js +85 -0
  49. package/{src/app → app}/QrCodeScanner/index.mdx +0 -0
  50. package/app/QrCodeScanner/index.spec.d.ts +1 -0
  51. package/app/QrCodeScanner/index.spec.js +26 -0
  52. package/app/i18n.d.ts +10 -0
  53. package/app/i18n.js +63 -0
  54. package/{src/app/index.ts → app/index.d.ts} +0 -0
  55. package/app/index.js +70 -0
  56. package/{src/core → core}/Accordion/__snapshots__/index.spec.tsx.snap +0 -0
  57. package/core/Accordion/index.d.ts +21 -0
  58. package/core/Accordion/index.js +127 -0
  59. package/{src/core → core}/Accordion/index.mdx +0 -0
  60. package/core/Accordion/index.spec.d.ts +1 -0
  61. package/core/Accordion/index.spec.js +19 -0
  62. package/{src/core → core}/Blockquote/__snapshots__/index.spec.tsx.snap +0 -0
  63. package/core/Blockquote/index.d.ts +3 -0
  64. package/core/Blockquote/index.js +29 -0
  65. package/{src/core → core}/Blockquote/index.mdx +0 -0
  66. package/core/Blockquote/index.spec.d.ts +1 -0
  67. package/core/Blockquote/index.spec.js +21 -0
  68. package/{src/core/Breadcrumbs/index.tsx → core/Breadcrumbs/index.d.ts} +0 -0
  69. package/core/Breadcrumbs/index.js +44 -0
  70. package/core/Button/BackButton.d.ts +3 -0
  71. package/core/Button/BackButton.js +34 -0
  72. package/core/Button/ButtonLink.d.ts +4 -0
  73. package/core/Button/ButtonLink.js +28 -0
  74. package/core/Button/CallToAction.d.ts +7 -0
  75. package/core/Button/CallToAction.js +41 -0
  76. package/core/Button/Icon.d.ts +2 -0
  77. package/core/Button/Icon.js +19 -0
  78. package/{src/core → core}/Button/__snapshots__/index.spec.tsx.snap +0 -0
  79. package/core/Button/index.d.ts +15 -0
  80. package/core/Button/index.js +122 -0
  81. package/{src/core → core}/Button/index.mdx +0 -0
  82. package/core/Button/index.spec.d.ts +1 -0
  83. package/core/Button/index.spec.js +21 -0
  84. package/{src/core/Card/index.tsx → core/Card/index.d.ts} +0 -0
  85. package/core/Card/index.js +57 -0
  86. package/{src/core → core}/Details/__snapshots__/index.spec.tsx.snap +0 -0
  87. package/{src/core/Details/index.tsx → core/Details/index.d.ts} +0 -2
  88. package/core/Details/index.js +35 -0
  89. package/{src/core → core}/Details/index.mdx +0 -0
  90. package/core/Details/index.spec.d.ts +1 -0
  91. package/core/Details/index.spec.js +27 -0
  92. package/core/Divider/index.d.ts +5 -0
  93. package/core/Divider/index.js +20 -0
  94. package/{src/core → core}/ErrorSummary/__snapshots__/index.spec.tsx.snap +0 -0
  95. package/{src/core/ErrorSummary/index.tsx → core/ErrorSummary/index.d.ts} +0 -1
  96. package/core/ErrorSummary/index.js +19 -0
  97. package/{src/core → core}/ErrorSummary/index.mdx +0 -0
  98. package/core/ErrorSummary/index.spec.d.ts +1 -0
  99. package/core/ErrorSummary/index.spec.js +21 -0
  100. package/{src/core/Hidden/index.tsx → core/Hidden/index.d.ts} +0 -0
  101. package/core/Hidden/index.js +18 -0
  102. package/{src/core → core}/Link/__snapshots__/index.spec.tsx.snap +0 -0
  103. package/core/Link/index.d.ts +12 -0
  104. package/core/Link/index.js +50 -0
  105. package/core/Link/index.spec.d.ts +1 -0
  106. package/core/Link/index.spec.js +31 -0
  107. package/{src/core/List/List.tsx → core/List/List.d.ts} +0 -2
  108. package/core/List/List.js +19 -0
  109. package/{src/core/List/ListItem.tsx → core/List/ListItem.d.ts} +0 -2
  110. package/core/List/ListItem.js +19 -0
  111. package/core/List/ListItemContent.d.ts +7 -0
  112. package/core/List/ListItemContent.js +45 -0
  113. package/core/List/ListItemIcon.d.ts +7 -0
  114. package/core/List/ListItemIcon.js +48 -0
  115. package/core/List/ListItemText.d.ts +8 -0
  116. package/core/List/ListItemText.js +36 -0
  117. package/core/List/ListItemTitle.d.ts +10 -0
  118. package/core/List/ListItemTitle.js +44 -0
  119. package/{src/core → core}/List/__snapshots__/index.spec.tsx.snap +0 -0
  120. package/{src/core/List/index.tsx → core/List/index.d.ts} +0 -0
  121. package/core/List/index.js +96 -0
  122. package/{src/core → core}/List/index.mdx +0 -0
  123. package/core/List/index.spec.d.ts +1 -0
  124. package/core/List/index.spec.js +21 -0
  125. package/core/NavList/NavList.d.ts +17 -0
  126. package/core/NavList/NavList.js +99 -0
  127. package/core/NavList/NavListContext.d.ts +20 -0
  128. package/core/NavList/NavListContext.js +102 -0
  129. package/core/NavList/NavListItem.d.ts +13 -0
  130. package/core/NavList/NavListItem.js +171 -0
  131. package/core/NavList/NavListItemBase.d.ts +16 -0
  132. package/core/NavList/NavListItemBase.js +161 -0
  133. package/core/NavList/NavListSubMenu.d.ts +8 -0
  134. package/core/NavList/NavListSubMenu.js +52 -0
  135. package/{src/core → core}/NavList/__snapshots__/index.spec.tsx.snap +0 -0
  136. package/{src/core/NavList/index.tsx → core/NavList/index.d.ts} +0 -0
  137. package/core/NavList/index.js +68 -0
  138. package/{src/core → core}/NavList/index.mdx +0 -0
  139. package/core/NavList/index.spec.d.ts +1 -0
  140. package/core/NavList/index.spec.js +21 -0
  141. package/{src/core → core}/NotificationBanner/__snapshots__/index.spec.tsx.snap +0 -0
  142. package/core/NotificationBanner/index.d.ts +18 -0
  143. package/core/NotificationBanner/index.js +78 -0
  144. package/{src/core → core}/NotificationBanner/index.mdx +0 -0
  145. package/core/NotificationBanner/index.spec.d.ts +1 -0
  146. package/core/NotificationBanner/index.spec.js +32 -0
  147. package/core/ServiceBadge/ServiceBadge.mdx +0 -0
  148. package/core/ServiceBadge/index.d.ts +9 -0
  149. package/core/ServiceBadge/index.js +36 -0
  150. package/{src/core → core}/ServiceBadge/index.mdx +0 -0
  151. package/{src/core → core}/SummaryList/__snapshots__/index.spec.tsx.snap +0 -0
  152. package/{src/core/SummaryList/index.tsx → core/SummaryList/index.d.ts} +0 -2
  153. package/core/SummaryList/index.js +79 -0
  154. package/{src/core → core}/SummaryList/index.mdx +0 -0
  155. package/core/SummaryList/index.spec.d.ts +1 -0
  156. package/core/SummaryList/index.spec.js +19 -0
  157. package/{src/core/Table/index.tsx → core/Table/index.d.ts} +0 -0
  158. package/core/Table/index.js +96 -0
  159. package/core/Tabs/index.d.ts +16 -0
  160. package/core/Tabs/index.js +88 -0
  161. package/{src/core → core}/Tabs/index.mdx +0 -0
  162. package/{src/core/VisuallyHidden/index.tsx → core/VisuallyHidden/index.d.ts} +0 -0
  163. package/core/VisuallyHidden/index.js +18 -0
  164. package/{src/core → core}/WarningText/__snapshots__/index.spec.tsx.snap +0 -0
  165. package/{src/core/WarningText/index.tsx → core/WarningText/index.d.ts} +0 -1
  166. package/core/WarningText/index.js +19 -0
  167. package/{src/core → core}/WarningText/index.mdx +0 -0
  168. package/core/WarningText/index.spec.d.ts +1 -0
  169. package/core/WarningText/index.spec.js +21 -0
  170. package/{src/core/index.ts → core/index.d.ts} +0 -0
  171. package/core/index.js +227 -0
  172. package/custom.d.js +1 -0
  173. package/es/api/APIErrors.js +96 -0
  174. package/es/api/APIProvider.js +25 -0
  175. package/es/api/fetchAPI.js +49 -0
  176. package/{src/api/index.tsx → es/api/index.js} +3 -6
  177. package/es/api/index.spec.js +546 -0
  178. package/es/api/introduction.md +6 -0
  179. package/es/api/useResource.js +128 -0
  180. package/es/api/useResourceAction.js +141 -0
  181. package/es/api/useResourceQuery.js +208 -0
  182. package/es/api/utils.js +233 -0
  183. package/es/app/App.js +27 -0
  184. package/es/app/Confirmation/index.js +3 -0
  185. package/es/app/Footer/index.js +15 -0
  186. package/{src/app/Header/HeaderLogo.tsx → es/app/Header/HeaderLogo.js} +7 -9
  187. package/es/app/Header/HeaderSection.js +7 -0
  188. package/es/app/Header/HeaderTitle.js +17 -0
  189. package/es/app/Header/__snapshots__/index.spec.tsx.snap +393 -0
  190. package/{src/app/Header/index.tsx → es/app/Header/index.js} +4 -10
  191. package/es/app/Header/index.mdx +50 -0
  192. package/es/app/Header/index.spec.js +32 -0
  193. package/es/app/NotFound/index.js +12 -0
  194. package/es/app/OutdatedBrowserBanner.js +24 -0
  195. package/es/app/PageTitle.js +57 -0
  196. package/es/app/QrCodeScanner/__snapshots__/index.spec.tsx.snap +22 -0
  197. package/es/app/QrCodeScanner/index.js +64 -0
  198. package/es/app/QrCodeScanner/index.mdx +22 -0
  199. package/es/app/QrCodeScanner/index.spec.js +13 -0
  200. package/es/app/i18n.js +42 -0
  201. package/es/app/index.js +5 -0
  202. package/es/core/Accordion/__snapshots__/index.spec.tsx.snap +78 -0
  203. package/es/core/Accordion/index.js +67 -0
  204. package/es/core/Accordion/index.mdx +104 -0
  205. package/es/core/Accordion/index.spec.js +9 -0
  206. package/es/core/Blockquote/__snapshots__/index.spec.tsx.snap +13 -0
  207. package/{src/core/Blockquote/index.tsx → es/core/Blockquote/index.js} +7 -9
  208. package/es/core/Blockquote/index.mdx +61 -0
  209. package/es/core/Blockquote/index.spec.js +9 -0
  210. package/es/core/Breadcrumbs/index.js +3 -0
  211. package/{src/core/Button/BackButton.tsx → es/core/Button/BackButton.js} +8 -10
  212. package/es/core/Button/ButtonLink.js +16 -0
  213. package/es/core/Button/CallToAction.js +27 -0
  214. package/es/core/Button/Icon.js +7 -0
  215. package/es/core/Button/__snapshots__/index.spec.tsx.snap +13 -0
  216. package/es/core/Button/index.js +37 -0
  217. package/es/core/Button/index.mdx +65 -0
  218. package/es/core/Button/index.spec.js +9 -0
  219. package/es/core/Card/index.js +4 -0
  220. package/es/core/Details/__snapshots__/index.spec.tsx.snap +50 -0
  221. package/es/core/Details/index.js +5 -0
  222. package/es/core/Details/index.mdx +34 -0
  223. package/es/core/Details/index.spec.js +17 -0
  224. package/es/core/Divider/index.js +7 -0
  225. package/es/core/ErrorSummary/__snapshots__/index.spec.tsx.snap +322 -0
  226. package/es/core/ErrorSummary/index.js +3 -0
  227. package/es/core/ErrorSummary/index.mdx +61 -0
  228. package/es/core/ErrorSummary/index.spec.js +9 -0
  229. package/es/core/Hidden/index.js +1 -0
  230. package/es/core/Link/__snapshots__/index.spec.tsx.snap +31 -0
  231. package/es/core/Link/index.js +26 -0
  232. package/es/core/Link/index.spec.js +21 -0
  233. package/es/core/List/List.js +3 -0
  234. package/es/core/List/ListItem.js +3 -0
  235. package/es/core/List/ListItemContent.js +27 -0
  236. package/es/core/List/ListItemIcon.js +29 -0
  237. package/es/core/List/ListItemText.js +19 -0
  238. package/es/core/List/ListItemTitle.js +25 -0
  239. package/es/core/List/__snapshots__/index.spec.tsx.snap +322 -0
  240. package/es/core/List/index.js +7 -0
  241. package/es/core/List/index.mdx +40 -0
  242. package/es/core/List/index.spec.js +9 -0
  243. package/es/core/NavList/NavList.js +78 -0
  244. package/es/core/NavList/NavListContext.js +80 -0
  245. package/es/core/NavList/NavListItem.js +141 -0
  246. package/es/core/NavList/NavListItemBase.js +133 -0
  247. package/es/core/NavList/NavListSubMenu.js +27 -0
  248. package/es/core/NavList/__snapshots__/index.spec.tsx.snap +334 -0
  249. package/es/core/NavList/index.js +5 -0
  250. package/es/core/NavList/index.mdx +185 -0
  251. package/es/core/NavList/index.spec.js +9 -0
  252. package/es/core/NotificationBanner/__snapshots__/index.spec.tsx.snap +737 -0
  253. package/es/core/NotificationBanner/index.js +35 -0
  254. package/es/core/NotificationBanner/index.mdx +77 -0
  255. package/es/core/NotificationBanner/index.spec.js +20 -0
  256. package/es/core/ServiceBadge/ServiceBadge.mdx +0 -0
  257. package/es/core/ServiceBadge/index.js +20 -0
  258. package/es/core/ServiceBadge/index.mdx +42 -0
  259. package/es/core/SummaryList/__snapshots__/index.spec.tsx.snap +57 -0
  260. package/es/core/SummaryList/index.js +7 -0
  261. package/es/core/SummaryList/index.mdx +82 -0
  262. package/es/core/SummaryList/index.spec.js +9 -0
  263. package/es/core/Table/index.js +7 -0
  264. package/es/core/Tabs/index.js +37 -0
  265. package/es/core/Tabs/index.mdx +54 -0
  266. package/es/core/VisuallyHidden/index.js +1 -0
  267. package/es/core/WarningText/__snapshots__/index.spec.tsx.snap +336 -0
  268. package/es/core/WarningText/index.js +3 -0
  269. package/es/core/WarningText/index.mdx +46 -0
  270. package/es/core/WarningText/index.spec.js +9 -0
  271. package/es/core/index.js +17 -0
  272. package/es/custom.d.js +0 -0
  273. package/{src → es}/form/inputs/Input/index.mdx +0 -0
  274. package/es/govgr/Footer/Copyright.js +37 -0
  275. package/es/govgr/Footer/HellenicRepublicLogo.js +3 -0
  276. package/es/govgr/Footer/LicenseCCSA.js +18 -0
  277. package/es/govgr/Footer/index.js +21 -0
  278. package/{src → es}/govgr/Footer/index.mdx +0 -0
  279. package/{src/govgr/Footer/logo.ts → es/govgr/Footer/logo.js} +1 -1
  280. package/{src/govgr/Footer/logos/logo-el.ts → es/govgr/Footer/logos/logo-el.js} +1 -1
  281. package/{src/govgr/Footer/logos/logo-en.ts → es/govgr/Footer/logos/logo-en.js} +1 -1
  282. package/{src → es}/govgr/Logo/govgr-logo.svg +0 -0
  283. package/es/govgr/Logo/index.js +3 -0
  284. package/{src/govgr/Logo/logo.ts → es/govgr/Logo/logo.js} +1 -1
  285. package/es/govgr/index.js +4 -0
  286. package/es/hooks/useDebounce.js +41 -0
  287. package/es/hooks/useLatest.js +12 -0
  288. package/{src/hooks/useOutdatedBrowserCheck.ts → es/hooks/useOutdatedBrowserCheck.js} +15 -16
  289. package/es/hooks/useSearch.js +25 -0
  290. package/es/hooks/useTogglableSections.js +96 -0
  291. package/es/index.js +5 -0
  292. package/es/layouts/Basic/Bottom/index.js +3 -0
  293. package/{src → es}/layouts/Basic/Bottom/index.mdx +0 -0
  294. package/es/layouts/Basic/Content/index.js +18 -0
  295. package/{src → es}/layouts/Basic/Content/index.mdx +0 -0
  296. package/es/layouts/Basic/Main/index.js +3 -0
  297. package/{src → es}/layouts/Basic/Main/index.mdx +0 -0
  298. package/es/layouts/Basic/Masthead/index.js +4 -0
  299. package/{src → es}/layouts/Basic/Masthead/index.mdx +0 -0
  300. package/{src/layouts/Basic/Side/index.tsx → es/layouts/Basic/Side/index.js} +3 -5
  301. package/{src → es}/layouts/Basic/Side/index.mdx +0 -0
  302. package/{src/layouts/Basic/Top/index.tsx → es/layouts/Basic/Top/index.js} +5 -7
  303. package/{src → es}/layouts/Basic/Top/index.mdx +0 -0
  304. package/{src → es}/layouts/Basic/__snapshots__/index.spec.tsx.snap +0 -0
  305. package/es/layouts/Basic/index.js +8 -0
  306. package/{src → es}/layouts/Basic/index.mdx +0 -0
  307. package/es/layouts/Basic/index.spec.js +10 -0
  308. package/es/layouts/Grid/index.js +1 -0
  309. package/es/layouts/index.js +2 -0
  310. package/{src/locales/el.ts → es/locales/el.js} +14 -19
  311. package/{src/locales/en.ts → es/locales/en.js} +13 -17
  312. package/es/router/index.js +15 -0
  313. package/{src → es}/router/index.mdx +0 -0
  314. package/es/test-utils/delay.js +31 -0
  315. package/es/test-utils/mountWithTheme.js +30 -0
  316. package/{src → es}/themes/govgr.js +29 -33
  317. package/es/themes/grnet.js +110 -0
  318. package/es/themes/index.js +2 -0
  319. package/es/typography/Caption.js +7 -0
  320. package/es/typography/NormalText.js +3 -0
  321. package/es/typography/Paragraph.js +2 -0
  322. package/es/typography/Title.js +48 -0
  323. package/es/typography/index.js +8 -0
  324. package/{src → es}/typography/index.mdx +0 -0
  325. package/es/utils/evaluateBrowserVersion.js +201 -0
  326. package/es/utils/withDeprecation.js +103 -0
  327. package/esm/api/APIErrors.js +96 -0
  328. package/esm/api/APIProvider.js +25 -0
  329. package/esm/api/fetchAPI.js +49 -0
  330. package/esm/api/index.js +13 -0
  331. package/esm/api/index.spec.js +546 -0
  332. package/esm/api/introduction.md +6 -0
  333. package/esm/api/useResource.js +128 -0
  334. package/esm/api/useResourceAction.js +141 -0
  335. package/esm/api/useResourceQuery.js +208 -0
  336. package/esm/api/utils.js +233 -0
  337. package/esm/app/App.js +27 -0
  338. package/esm/app/Confirmation/index.js +3 -0
  339. package/esm/app/Footer/index.js +15 -0
  340. package/esm/app/Header/HeaderLogo.js +17 -0
  341. package/esm/app/Header/HeaderSection.js +7 -0
  342. package/esm/app/Header/HeaderTitle.js +17 -0
  343. package/esm/app/Header/__snapshots__/index.spec.tsx.snap +393 -0
  344. package/esm/app/Header/index.js +13 -0
  345. package/esm/app/Header/index.mdx +50 -0
  346. package/esm/app/Header/index.spec.js +32 -0
  347. package/esm/app/NotFound/index.js +12 -0
  348. package/esm/app/OutdatedBrowserBanner.js +24 -0
  349. package/esm/app/PageTitle.js +57 -0
  350. package/esm/app/QrCodeScanner/__snapshots__/index.spec.tsx.snap +22 -0
  351. package/esm/app/QrCodeScanner/index.js +64 -0
  352. package/esm/app/QrCodeScanner/index.mdx +22 -0
  353. package/esm/app/QrCodeScanner/index.spec.js +13 -0
  354. package/esm/app/i18n.js +42 -0
  355. package/esm/app/index.js +5 -0
  356. package/esm/core/Accordion/__snapshots__/index.spec.tsx.snap +78 -0
  357. package/esm/core/Accordion/index.js +67 -0
  358. package/esm/core/Accordion/index.mdx +104 -0
  359. package/esm/core/Accordion/index.spec.js +9 -0
  360. package/esm/core/Blockquote/__snapshots__/index.spec.tsx.snap +13 -0
  361. package/esm/core/Blockquote/index.js +16 -0
  362. package/esm/core/Blockquote/index.mdx +61 -0
  363. package/esm/core/Blockquote/index.spec.js +9 -0
  364. package/esm/core/Breadcrumbs/index.js +3 -0
  365. package/esm/core/Button/BackButton.js +21 -0
  366. package/esm/core/Button/ButtonLink.js +16 -0
  367. package/esm/core/Button/CallToAction.js +27 -0
  368. package/esm/core/Button/Icon.js +7 -0
  369. package/esm/core/Button/__snapshots__/index.spec.tsx.snap +13 -0
  370. package/esm/core/Button/index.js +37 -0
  371. package/esm/core/Button/index.mdx +65 -0
  372. package/esm/core/Button/index.spec.js +9 -0
  373. package/esm/core/Card/index.js +4 -0
  374. package/esm/core/Details/__snapshots__/index.spec.tsx.snap +50 -0
  375. package/esm/core/Details/index.js +5 -0
  376. package/esm/core/Details/index.mdx +34 -0
  377. package/esm/core/Details/index.spec.js +17 -0
  378. package/esm/core/Divider/index.js +7 -0
  379. package/esm/core/ErrorSummary/__snapshots__/index.spec.tsx.snap +322 -0
  380. package/esm/core/ErrorSummary/index.js +3 -0
  381. package/esm/core/ErrorSummary/index.mdx +61 -0
  382. package/esm/core/ErrorSummary/index.spec.js +9 -0
  383. package/esm/core/Hidden/index.js +1 -0
  384. package/esm/core/Link/__snapshots__/index.spec.tsx.snap +31 -0
  385. package/esm/core/Link/index.js +26 -0
  386. package/esm/core/Link/index.spec.js +21 -0
  387. package/esm/core/List/List.js +3 -0
  388. package/esm/core/List/ListItem.js +3 -0
  389. package/esm/core/List/ListItemContent.js +27 -0
  390. package/esm/core/List/ListItemIcon.js +29 -0
  391. package/esm/core/List/ListItemText.js +19 -0
  392. package/esm/core/List/ListItemTitle.js +25 -0
  393. package/esm/core/List/__snapshots__/index.spec.tsx.snap +322 -0
  394. package/esm/core/List/index.js +7 -0
  395. package/esm/core/List/index.mdx +40 -0
  396. package/esm/core/List/index.spec.js +9 -0
  397. package/esm/core/NavList/NavList.js +78 -0
  398. package/esm/core/NavList/NavListContext.js +80 -0
  399. package/esm/core/NavList/NavListItem.js +141 -0
  400. package/esm/core/NavList/NavListItemBase.js +133 -0
  401. package/esm/core/NavList/NavListSubMenu.js +27 -0
  402. package/esm/core/NavList/__snapshots__/index.spec.tsx.snap +334 -0
  403. package/esm/core/NavList/index.js +5 -0
  404. package/esm/core/NavList/index.mdx +185 -0
  405. package/esm/core/NavList/index.spec.js +9 -0
  406. package/esm/core/NotificationBanner/__snapshots__/index.spec.tsx.snap +737 -0
  407. package/esm/core/NotificationBanner/index.js +35 -0
  408. package/esm/core/NotificationBanner/index.mdx +77 -0
  409. package/esm/core/NotificationBanner/index.spec.js +20 -0
  410. package/esm/core/ServiceBadge/ServiceBadge.mdx +0 -0
  411. package/esm/core/ServiceBadge/index.js +20 -0
  412. package/esm/core/ServiceBadge/index.mdx +42 -0
  413. package/esm/core/SummaryList/__snapshots__/index.spec.tsx.snap +57 -0
  414. package/esm/core/SummaryList/index.js +7 -0
  415. package/esm/core/SummaryList/index.mdx +82 -0
  416. package/esm/core/SummaryList/index.spec.js +9 -0
  417. package/esm/core/Table/index.js +7 -0
  418. package/esm/core/Tabs/index.js +37 -0
  419. package/esm/core/Tabs/index.mdx +54 -0
  420. package/esm/core/VisuallyHidden/index.js +1 -0
  421. package/esm/core/WarningText/__snapshots__/index.spec.tsx.snap +336 -0
  422. package/esm/core/WarningText/index.js +3 -0
  423. package/esm/core/WarningText/index.mdx +46 -0
  424. package/esm/core/WarningText/index.spec.js +9 -0
  425. package/esm/core/index.js +17 -0
  426. package/esm/custom.d.js +0 -0
  427. package/esm/form/inputs/Input/index.mdx +10 -0
  428. package/esm/govgr/Footer/Copyright.js +37 -0
  429. package/esm/govgr/Footer/HellenicRepublicLogo.js +3 -0
  430. package/esm/govgr/Footer/LicenseCCSA.js +18 -0
  431. package/esm/govgr/Footer/index.js +21 -0
  432. package/esm/govgr/Footer/index.mdx +97 -0
  433. package/esm/govgr/Footer/logo.js +1 -0
  434. package/esm/govgr/Footer/logos/logo-el.js +1 -0
  435. package/esm/govgr/Footer/logos/logo-en.js +1 -0
  436. package/esm/govgr/Logo/govgr-logo.svg +1 -0
  437. package/esm/govgr/Logo/index.js +3 -0
  438. package/esm/govgr/Logo/logo.js +1 -0
  439. package/esm/govgr/index.js +4 -0
  440. package/esm/hooks/useDebounce.js +41 -0
  441. package/esm/hooks/useLatest.js +12 -0
  442. package/esm/hooks/useOutdatedBrowserCheck.js +46 -0
  443. package/esm/hooks/useSearch.js +25 -0
  444. package/esm/hooks/useTogglableSections.js +96 -0
  445. package/esm/index.js +10 -0
  446. package/esm/layouts/Basic/Bottom/index.js +3 -0
  447. package/esm/layouts/Basic/Bottom/index.mdx +37 -0
  448. package/esm/layouts/Basic/Content/index.js +18 -0
  449. package/esm/layouts/Basic/Content/index.mdx +64 -0
  450. package/esm/layouts/Basic/Main/index.js +3 -0
  451. package/esm/layouts/Basic/Main/index.mdx +64 -0
  452. package/esm/layouts/Basic/Masthead/index.js +4 -0
  453. package/esm/layouts/Basic/Masthead/index.mdx +74 -0
  454. package/esm/layouts/Basic/Side/index.js +7 -0
  455. package/esm/layouts/Basic/Side/index.mdx +71 -0
  456. package/esm/layouts/Basic/Top/index.js +11 -0
  457. package/esm/layouts/Basic/Top/index.mdx +74 -0
  458. package/esm/layouts/Basic/__snapshots__/index.spec.tsx.snap +54 -0
  459. package/esm/layouts/Basic/index.js +8 -0
  460. package/esm/layouts/Basic/index.mdx +62 -0
  461. package/esm/layouts/Basic/index.spec.js +10 -0
  462. package/esm/layouts/Grid/index.js +1 -0
  463. package/esm/layouts/index.js +2 -0
  464. package/esm/locales/el.js +55 -0
  465. package/esm/locales/en.js +55 -0
  466. package/esm/router/index.js +15 -0
  467. package/esm/router/index.mdx +40 -0
  468. package/esm/test-utils/delay.js +31 -0
  469. package/esm/test-utils/mountWithTheme.js +30 -0
  470. package/esm/themes/govgr.js +79 -0
  471. package/esm/themes/grnet.js +110 -0
  472. package/esm/themes/index.js +2 -0
  473. package/esm/typography/Caption.js +7 -0
  474. package/esm/typography/NormalText.js +3 -0
  475. package/esm/typography/Paragraph.js +2 -0
  476. package/esm/typography/Title.js +48 -0
  477. package/esm/typography/index.js +8 -0
  478. package/esm/typography/index.mdx +32 -0
  479. package/esm/utils/evaluateBrowserVersion.js +201 -0
  480. package/esm/utils/withDeprecation.js +103 -0
  481. package/form/inputs/Input/index.mdx +10 -0
  482. package/govgr/Footer/Copyright.d.ts +8 -0
  483. package/govgr/Footer/Copyright.js +52 -0
  484. package/{src/govgr/Footer/HellenicRepublicLogo.tsx → govgr/Footer/HellenicRepublicLogo.d.ts} +0 -1
  485. package/govgr/Footer/HellenicRepublicLogo.js +19 -0
  486. package/govgr/Footer/LicenseCCSA.d.ts +3 -0
  487. package/govgr/Footer/LicenseCCSA.js +33 -0
  488. package/govgr/Footer/index.d.ts +13 -0
  489. package/govgr/Footer/index.js +39 -0
  490. package/govgr/Footer/index.mdx +97 -0
  491. package/govgr/Footer/logo.d.ts +2 -0
  492. package/govgr/Footer/logo.js +8 -0
  493. package/govgr/Footer/logos/logo-el.d.ts +2 -0
  494. package/govgr/Footer/logos/logo-el.js +8 -0
  495. package/govgr/Footer/logos/logo-en.d.ts +2 -0
  496. package/govgr/Footer/logos/logo-en.js +8 -0
  497. package/govgr/Logo/govgr-logo.svg +1 -0
  498. package/{src/govgr/Logo/index.tsx → govgr/Logo/index.d.ts} +0 -2
  499. package/govgr/Logo/index.js +19 -0
  500. package/govgr/Logo/logo.d.ts +2 -0
  501. package/govgr/Logo/logo.js +8 -0
  502. package/{src/govgr/index.ts → govgr/index.d.ts} +0 -0
  503. package/govgr/index.js +57 -0
  504. package/hooks/useDebounce.d.ts +3 -0
  505. package/hooks/useDebounce.js +63 -0
  506. package/hooks/useLatest.d.ts +3 -0
  507. package/hooks/useLatest.js +26 -0
  508. package/hooks/useOutdatedBrowserCheck.d.ts +2 -0
  509. package/hooks/useOutdatedBrowserCheck.js +60 -0
  510. package/hooks/useSearch.d.ts +4 -0
  511. package/hooks/useSearch.js +40 -0
  512. package/hooks/useTogglableSections.d.ts +18 -0
  513. package/hooks/useTogglableSections.js +108 -0
  514. package/{src/index.ts → index.d.ts} +0 -0
  515. package/index.js +70 -0
  516. package/{src/layouts/Basic/Bottom/index.tsx → layouts/Basic/Bottom/index.d.ts} +0 -1
  517. package/layouts/Basic/Bottom/index.js +19 -0
  518. package/layouts/Basic/Bottom/index.mdx +37 -0
  519. package/layouts/Basic/Content/index.d.ts +5 -0
  520. package/layouts/Basic/Content/index.js +31 -0
  521. package/layouts/Basic/Content/index.mdx +64 -0
  522. package/{src/layouts/Basic/Main/index.tsx → layouts/Basic/Main/index.d.ts} +0 -1
  523. package/layouts/Basic/Main/index.js +19 -0
  524. package/layouts/Basic/Main/index.mdx +64 -0
  525. package/{src/layouts/Basic/Masthead/index.tsx → layouts/Basic/Masthead/index.d.ts} +0 -2
  526. package/layouts/Basic/Masthead/index.js +27 -0
  527. package/layouts/Basic/Masthead/index.mdx +74 -0
  528. package/layouts/Basic/Side/index.d.ts +3 -0
  529. package/layouts/Basic/Side/index.js +20 -0
  530. package/layouts/Basic/Side/index.mdx +71 -0
  531. package/layouts/Basic/Top/index.d.ts +3 -0
  532. package/layouts/Basic/Top/index.js +24 -0
  533. package/layouts/Basic/Top/index.mdx +74 -0
  534. package/layouts/Basic/__snapshots__/index.spec.tsx.snap +54 -0
  535. package/{src/layouts/Basic/index.tsx → layouts/Basic/index.d.ts} +0 -2
  536. package/layouts/Basic/index.js +97 -0
  537. package/layouts/Basic/index.mdx +62 -0
  538. package/layouts/Basic/index.spec.d.ts +1 -0
  539. package/layouts/Basic/index.spec.js +20 -0
  540. package/{src/layouts/Grid/index.tsx → layouts/Grid/index.d.ts} +0 -0
  541. package/layouts/Grid/index.js +18 -0
  542. package/{src/layouts/index.ts → layouts/index.d.ts} +0 -0
  543. package/layouts/index.js +34 -0
  544. package/locales/el.d.ts +56 -0
  545. package/locales/el.js +62 -0
  546. package/locales/en.d.ts +56 -0
  547. package/locales/en.js +62 -0
  548. package/package.json +8 -31
  549. package/router/index.d.ts +9 -0
  550. package/router/index.js +37 -0
  551. package/router/index.mdx +40 -0
  552. package/test-utils/delay.d.ts +2 -0
  553. package/test-utils/delay.js +45 -0
  554. package/test-utils/mountWithTheme.d.ts +3 -0
  555. package/test-utils/mountWithTheme.js +43 -0
  556. package/themes/govgr.d.ts +3 -0
  557. package/themes/govgr.js +89 -0
  558. package/themes/grnet.d.ts +2 -0
  559. package/themes/grnet.js +128 -0
  560. package/themes/index.d.ts +32 -0
  561. package/themes/index.js +19 -0
  562. package/typography/Caption.d.ts +7 -0
  563. package/typography/Caption.js +20 -0
  564. package/typography/NormalText.d.ts +5 -0
  565. package/typography/NormalText.js +19 -0
  566. package/typography/Paragraph.d.ts +6 -0
  567. package/typography/Paragraph.js +13 -0
  568. package/typography/Title.d.ts +9 -0
  569. package/typography/Title.js +63 -0
  570. package/{src/typography/index.ts → typography/index.d.ts} +0 -0
  571. package/typography/index.js +97 -0
  572. package/typography/index.mdx +32 -0
  573. package/utils/evaluateBrowserVersion.d.ts +15 -0
  574. package/utils/evaluateBrowserVersion.js +216 -0
  575. package/utils/withDeprecation.d.ts +16 -0
  576. package/utils/withDeprecation.js +116 -0
  577. package/.eslintrc.js +0 -4
  578. package/.prettierrc.js +0 -3
  579. package/.rush/temp/package-deps_build.json +0 -176
  580. package/.rush/temp/shrinkwrap-deps.json +0 -278
  581. package/CHANGELOG.json +0 -796
  582. package/docs/components.mdx +0 -1
  583. package/docs/create-a-new-service.mdx +0 -93
  584. package/docs/create-common-page-layout.mdx +0 -205
  585. package/docs/create-static-page.mdx +0 -179
  586. package/docs/edit-start-page.mdx +0 -143
  587. package/docs/index.mdx +0 -66
  588. package/docs/introduction.mdx +0 -34
  589. package/src/api/APIErrors.tsx +0 -44
  590. package/src/api/APIProvider.tsx +0 -27
  591. package/src/api/fetchAPI.ts +0 -45
  592. package/src/api/index.spec.tsx +0 -419
  593. package/src/api/useResource.tsx +0 -96
  594. package/src/api/useResourceAction.tsx +0 -80
  595. package/src/api/useResourceQuery.tsx +0 -177
  596. package/src/api/utils.tsx +0 -156
  597. package/src/app/App.tsx +0 -33
  598. package/src/app/Header/HeaderSection.tsx +0 -13
  599. package/src/app/Header/HeaderTitle.tsx +0 -24
  600. package/src/app/Header/index.spec.tsx +0 -32
  601. package/src/app/NotFound/index.tsx +0 -21
  602. package/src/app/OutdatedBrowserBanner.tsx +0 -37
  603. package/src/app/PageTitle.tsx +0 -70
  604. package/src/app/QrCodeScanner/index.spec.tsx +0 -19
  605. package/src/app/QrCodeScanner/index.tsx +0 -90
  606. package/src/app/i18n.tsx +0 -44
  607. package/src/core/Accordion/index.spec.tsx +0 -30
  608. package/src/core/Accordion/index.tsx +0 -86
  609. package/src/core/Blockquote/index.spec.tsx +0 -10
  610. package/src/core/Button/ButtonLink.tsx +0 -20
  611. package/src/core/Button/CallToAction.tsx +0 -31
  612. package/src/core/Button/Icon.tsx +0 -9
  613. package/src/core/Button/index.spec.tsx +0 -8
  614. package/src/core/Button/index.tsx +0 -46
  615. package/src/core/Details/index.spec.tsx +0 -38
  616. package/src/core/Divider/index.tsx +0 -13
  617. package/src/core/ErrorSummary/index.spec.tsx +0 -10
  618. package/src/core/Link/index.spec.tsx +0 -22
  619. package/src/core/Link/index.tsx +0 -41
  620. package/src/core/List/ListItemContent.tsx +0 -32
  621. package/src/core/List/ListItemIcon.tsx +0 -31
  622. package/src/core/List/ListItemText.tsx +0 -23
  623. package/src/core/List/ListItemTitle.tsx +0 -37
  624. package/src/core/List/index.spec.tsx +0 -10
  625. package/src/core/NavList/NavList.tsx +0 -103
  626. package/src/core/NavList/NavListContext.tsx +0 -85
  627. package/src/core/NavList/NavListItem.tsx +0 -143
  628. package/src/core/NavList/NavListItemBase.tsx +0 -146
  629. package/src/core/NavList/NavListSubMenu.tsx +0 -33
  630. package/src/core/NavList/index.spec.tsx +0 -10
  631. package/src/core/NotificationBanner/index.spec.tsx +0 -27
  632. package/src/core/NotificationBanner/index.tsx +0 -52
  633. package/src/core/ServiceBadge/index.tsx +0 -35
  634. package/src/core/SummaryList/index.spec.tsx +0 -28
  635. package/src/core/Tabs/index.tsx +0 -36
  636. package/src/core/WarningText/index.spec.tsx +0 -10
  637. package/src/custom.d.ts +0 -8
  638. package/src/govgr/Footer/Copyright.tsx +0 -64
  639. package/src/govgr/Footer/LicenseCCSA.tsx +0 -24
  640. package/src/govgr/Footer/index.tsx +0 -49
  641. package/src/hooks/useDebounce.ts +0 -50
  642. package/src/hooks/useLatest.ts +0 -12
  643. package/src/hooks/useSearch.ts +0 -47
  644. package/src/hooks/useTogglableSections.tsx +0 -102
  645. package/src/layouts/Basic/Content/index.tsx +0 -24
  646. package/src/layouts/Basic/index.spec.tsx +0 -24
  647. package/src/router/index.tsx +0 -28
  648. package/src/test-utils/delay.ts +0 -9
  649. package/src/test-utils/mountWithTheme.tsx +0 -33
  650. package/src/themes/grnet.js +0 -109
  651. package/src/themes/index.tsx +0 -38
  652. package/src/typography/Caption.tsx +0 -15
  653. package/src/typography/NormalText.tsx +0 -7
  654. package/src/typography/Paragraph.tsx +0 -9
  655. package/src/typography/Title.tsx +0 -51
  656. package/src/utils/evaluateBrowserVersion.ts +0 -346
  657. package/src/utils/withDeprecation.tsx +0 -97
  658. package/tsconfig.json +0 -18
  659. package/tsconfig.production.json +0 -27
  660. package/ui.build.log +0 -17
@@ -0,0 +1,8 @@
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;
File without changes
package/govgr/index.js ADDED
@@ -0,0 +1,57 @@
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
+ });
@@ -0,0 +1,3 @@
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>>];
@@ -0,0 +1,63 @@
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;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const useLatest: <T extends unknown>(current: T) => React.MutableRefObject<T>;
3
+ export default useLatest;
@@ -0,0 +1,26 @@
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;
@@ -0,0 +1,2 @@
1
+ export declare function useOutdatedBrowserCheck(browserSupport?: Record<string, number | boolean>): [boolean, string];
2
+ export default useOutdatedBrowserCheck;
@@ -0,0 +1,60 @@
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;
@@ -0,0 +1,4 @@
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;
@@ -0,0 +1,40 @@
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;
@@ -0,0 +1,18 @@
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;
@@ -0,0 +1,108 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports.useTogglableSections = useTogglableSections;
9
+
10
+ var _extends4 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
11
+
12
+ var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
13
+
14
+ var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
15
+
16
+ var _react = require("react");
17
+
18
+ /* eslint-disable react-hooks/exhaustive-deps */
19
+ function useTogglableSections(_ref) {
20
+ var toggleProperty = _ref.toggleProperty,
21
+ singleOpen = _ref.singleOpen,
22
+ onToggleProperty = _ref.onToggleProperty,
23
+ initial = _ref.initial,
24
+ firstOpen = _ref.firstOpen,
25
+ ariaNavigation = _ref.ariaNavigation;
26
+
27
+ var _useState = (0, _react.useState)(initial || {}),
28
+ _useState2 = (0, _slicedToArray2["default"])(_useState, 2),
29
+ opened = _useState2[0],
30
+ setOpened = _useState2[1];
31
+
32
+ var registered = (0, _react.useRef)({});
33
+ var sectionsOrder = (0, _react.useRef)([]);
34
+ var registerRef = (0, _react.useCallback)(function (el) {
35
+ if (!el) return;
36
+ var key = el.getAttribute('aria-controls');
37
+ if (registered.current[key]) return;
38
+ registered.current[key] = el;
39
+ sectionsOrder.current.push(key);
40
+
41
+ if (firstOpen && sectionsOrder.current.length === 1) {
42
+ setOpened((0, _defineProperty2["default"])({}, key, true));
43
+ }
44
+ }, []);
45
+ var toggle = (0, _react.useCallback)(function (e) {
46
+ var key = e.currentTarget.getAttribute('aria-controls');
47
+ e.preventDefault();
48
+
49
+ if (singleOpen) {
50
+ setOpened((0, _defineProperty2["default"])({}, key, true));
51
+ } else {
52
+ setOpened(function (prev) {
53
+ return (0, _extends4["default"])({}, prev, (0, _defineProperty2["default"])({}, key, !prev[key]));
54
+ });
55
+ }
56
+ }, []);
57
+ var onKeyDown = (0, _react.useCallback)(function (e) {
58
+ var key = e.target.getAttribute('aria-controls');
59
+ var currentIndex = sectionsOrder.current.findIndex(function (k) {
60
+ return k === key;
61
+ });
62
+ var nextKey = sectionsOrder.current[currentIndex + 1];
63
+ var previousKey = sectionsOrder.current[currentIndex - 1];
64
+
65
+ switch (e.key) {
66
+ case 'ArrowRight':
67
+ case 'ArrowDown':
68
+ if (nextKey) {
69
+ registered.current[nextKey].focus();
70
+ }
71
+
72
+ break;
73
+
74
+ case 'ArrowLeft':
75
+ case 'ArrowUp':
76
+ if (previousKey) {
77
+ registered.current[previousKey].focus();
78
+ }
79
+
80
+ break;
81
+
82
+ case ' ':
83
+ case 'Enter':
84
+ toggle(e);
85
+ break;
86
+ }
87
+ }, []);
88
+ var register = (0, _react.useCallback)(function (key) {
89
+ var _extends3;
90
+
91
+ var isOpen = !!opened[key];
92
+ return (0, _extends4["default"])((_extends3 = {
93
+ ref: registerRef
94
+ }, (0, _defineProperty2["default"])(_extends3, toggleProperty, isOpen), (0, _defineProperty2["default"])(_extends3, onToggleProperty, toggle), (0, _defineProperty2["default"])(_extends3, 'aria-controls', "".concat(key)), _extends3), ariaNavigation && {
95
+ onKeyDown: onKeyDown,
96
+ tabIndex: opened[key] ? 0 : -1
97
+ });
98
+ }, [opened]);
99
+ return (0, _react.useMemo)(function () {
100
+ return {
101
+ register: register,
102
+ registered: registered,
103
+ opened: opened,
104
+ toggle: toggle,
105
+ setOpened: setOpened
106
+ };
107
+ }, [opened]);
108
+ }
File without changes
package/index.js ADDED
@@ -0,0 +1,70 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+
7
+ var _core = require("@digigov/ui/core");
8
+
9
+ Object.keys(_core).forEach(function (key) {
10
+ if (key === "default" || key === "__esModule") return;
11
+ if (key in exports && exports[key] === _core[key]) return;
12
+ Object.defineProperty(exports, key, {
13
+ enumerable: true,
14
+ get: function get() {
15
+ return _core[key];
16
+ }
17
+ });
18
+ });
19
+
20
+ var _layouts = require("@digigov/ui/layouts");
21
+
22
+ Object.keys(_layouts).forEach(function (key) {
23
+ if (key === "default" || key === "__esModule") return;
24
+ if (key in exports && exports[key] === _layouts[key]) return;
25
+ Object.defineProperty(exports, key, {
26
+ enumerable: true,
27
+ get: function get() {
28
+ return _layouts[key];
29
+ }
30
+ });
31
+ });
32
+
33
+ var _typography = require("@digigov/ui/typography");
34
+
35
+ Object.keys(_typography).forEach(function (key) {
36
+ if (key === "default" || key === "__esModule") return;
37
+ if (key in exports && exports[key] === _typography[key]) return;
38
+ Object.defineProperty(exports, key, {
39
+ enumerable: true,
40
+ get: function get() {
41
+ return _typography[key];
42
+ }
43
+ });
44
+ });
45
+
46
+ var _app = require("@digigov/ui/app");
47
+
48
+ Object.keys(_app).forEach(function (key) {
49
+ if (key === "default" || key === "__esModule") return;
50
+ if (key in exports && exports[key] === _app[key]) return;
51
+ Object.defineProperty(exports, key, {
52
+ enumerable: true,
53
+ get: function get() {
54
+ return _app[key];
55
+ }
56
+ });
57
+ });
58
+
59
+ var _govgr = require("@digigov/ui/govgr");
60
+
61
+ Object.keys(_govgr).forEach(function (key) {
62
+ if (key === "default" || key === "__esModule") return;
63
+ if (key in exports && exports[key] === _govgr[key]) return;
64
+ Object.defineProperty(exports, key, {
65
+ enumerable: true,
66
+ get: function get() {
67
+ return _govgr[key];
68
+ }
69
+ });
70
+ });
@@ -1,4 +1,3 @@
1
1
  import Bottom from '@digigov/react-core/Bottom';
2
-
3
2
  export { Bottom };
4
3
  export default Bottom;
@@ -0,0 +1,19 @@
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, "Bottom", {
9
+ enumerable: true,
10
+ get: function get() {
11
+ return _Bottom["default"];
12
+ }
13
+ });
14
+ exports["default"] = void 0;
15
+
16
+ var _Bottom = _interopRequireDefault(require("@digigov/react-core/Bottom"));
17
+
18
+ var _default = _Bottom["default"];
19
+ exports["default"] = _default;
@@ -0,0 +1,37 @@
1
+ ---
2
+ title: Bottom
3
+ parent: docs/ui/components
4
+ ---
5
+
6
+ # Bottom
7
+
8
+ import { Bottom } from '@digigov/ui/layouts/Basic';
9
+ import PropsDoc from '@docs-components/propsDoc';
10
+
11
+ ```jsx live path=layouts/Basic/index.tsx
12
+ import GovGRFooter from '@digigov/ui/govgr/Footer';
13
+
14
+ function Bottom{
15
+ return (
16
+ <Bottom>
17
+ <GovGRFooter />
18
+ </Bottom>
19
+ )
20
+ }
21
+ export Bottom
22
+
23
+ ```
24
+
25
+ <br />
26
+
27
+ ## How it works
28
+
29
+ Use the Bottom component in order to wrap the Footer's components.
30
+
31
+ <br />
32
+
33
+ ## API
34
+
35
+ ### Properties
36
+
37
+ <PropsDoc data={Bottom.__doc__} />