uikit 3.25.17-dev.80dfe87 → 3.25.17-dev.8c70e44

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 (200) hide show
  1. package/CHANGELOG.md +33 -0
  2. package/build/prefix.js +1 -1
  3. package/build/publishDev.js +1 -1
  4. package/build/release.js +2 -2
  5. package/build/scope.js +1 -1
  6. package/build/scss.js +1 -1
  7. package/dist/css/uikit-core-rtl.css +892 -802
  8. package/dist/css/uikit-core-rtl.min.css +1 -1
  9. package/dist/css/uikit-core.css +892 -802
  10. package/dist/css/uikit-core.min.css +1 -1
  11. package/dist/css/uikit-rtl.css +893 -803
  12. package/dist/css/uikit-rtl.min.css +1 -1
  13. package/dist/css/uikit.css +893 -803
  14. package/dist/css/uikit.min.css +1 -1
  15. package/dist/js/components/countdown.js +1 -1
  16. package/dist/js/components/countdown.min.js +1 -1
  17. package/dist/js/components/filter.js +1 -1
  18. package/dist/js/components/filter.min.js +1 -1
  19. package/dist/js/components/lightbox-panel.js +133 -132
  20. package/dist/js/components/lightbox-panel.min.js +1 -1
  21. package/dist/js/components/lightbox.js +134 -133
  22. package/dist/js/components/lightbox.min.js +1 -1
  23. package/dist/js/components/marquee.js +179 -0
  24. package/dist/js/components/marquee.min.js +1 -0
  25. package/dist/js/components/notification.js +1 -1
  26. package/dist/js/components/notification.min.js +1 -1
  27. package/dist/js/components/parallax.js +8 -12
  28. package/dist/js/components/parallax.min.js +1 -1
  29. package/dist/js/components/slider-parallax.js +8 -12
  30. package/dist/js/components/slider-parallax.min.js +1 -1
  31. package/dist/js/components/slider.js +41 -25
  32. package/dist/js/components/slider.min.js +1 -1
  33. package/dist/js/components/slideshow-parallax.js +8 -12
  34. package/dist/js/components/slideshow-parallax.min.js +1 -1
  35. package/dist/js/components/slideshow.js +71 -102
  36. package/dist/js/components/slideshow.min.js +1 -1
  37. package/dist/js/components/sortable.js +1 -1
  38. package/dist/js/components/sortable.min.js +1 -1
  39. package/dist/js/components/tooltip.js +19 -19
  40. package/dist/js/components/tooltip.min.js +1 -1
  41. package/dist/js/components/upload.js +1 -1
  42. package/dist/js/components/upload.min.js +1 -1
  43. package/dist/js/uikit-core.js +754 -262
  44. package/dist/js/uikit-core.min.js +1 -1
  45. package/dist/js/uikit-icons.js +1 -1
  46. package/dist/js/uikit-icons.min.js +1 -1
  47. package/dist/js/uikit.js +629 -374
  48. package/dist/js/uikit.min.js +1 -1
  49. package/package.json +2 -2
  50. package/src/js/api/component.js +2 -3
  51. package/src/js/api/observables.js +2 -4
  52. package/src/js/api/options.js +6 -3
  53. package/src/js/api/props.js +1 -4
  54. package/src/js/api/state.js +7 -8
  55. package/src/js/components/index.js +1 -0
  56. package/src/js/components/internal/lightbox-animations.js +7 -26
  57. package/src/js/components/internal/slideshow-animations.js +15 -62
  58. package/src/js/components/lightbox-panel.js +121 -96
  59. package/src/js/components/lightbox.js +5 -8
  60. package/src/js/components/marquee.js +123 -0
  61. package/src/js/components/tooltip.js +4 -2
  62. package/src/js/core/accordion.js +78 -29
  63. package/src/js/core/drop.js +5 -4
  64. package/src/js/core/dropnav.js +3 -3
  65. package/src/js/core/grid.js +5 -19
  66. package/src/js/core/height-match.js +1 -2
  67. package/src/js/core/margin.js +3 -0
  68. package/src/js/core/overflow-fade.js +5 -5
  69. package/src/js/core/sticky.js +1 -1
  70. package/src/js/core/switcher.js +24 -44
  71. package/src/js/core/video.js +172 -15
  72. package/src/js/mixin/connect.js +57 -0
  73. package/src/js/mixin/internal/slideshow-animations.js +5 -13
  74. package/src/js/mixin/internal/slideshow-transitioner.js +2 -2
  75. package/src/js/mixin/modal.js +4 -3
  76. package/src/js/mixin/parallax.js +1 -4
  77. package/src/js/mixin/position.js +1 -1
  78. package/src/js/mixin/scroll-driven.js +57 -0
  79. package/src/js/mixin/slider-nav.js +1 -1
  80. package/src/js/mixin/slider-parallax.js +9 -38
  81. package/src/js/mixin/togglable.js +13 -14
  82. package/src/js/util/attr.js +7 -7
  83. package/src/js/util/class.js +1 -1
  84. package/src/js/util/dom.js +3 -4
  85. package/src/js/util/lang.js +1 -1
  86. package/src/js/util/player.js +4 -4
  87. package/src/js/util/style.js +10 -15
  88. package/src/js/util/viewport.js +22 -25
  89. package/src/less/components/_import.less +6 -1
  90. package/src/less/components/base.less +1 -1
  91. package/src/less/components/button.less +1 -1
  92. package/src/less/components/dropcap.less +71 -0
  93. package/src/less/components/floating-shadow.less +65 -0
  94. package/src/less/components/form.less +5 -5
  95. package/src/less/components/grid.less +57 -64
  96. package/src/less/components/logo.less +94 -0
  97. package/src/less/components/margin.less +81 -81
  98. package/src/less/components/marquee.less +133 -0
  99. package/src/less/components/nav.less +1 -1
  100. package/src/less/components/padding.less +9 -9
  101. package/src/less/components/utility.less +0 -157
  102. package/src/less/theme/_import.less +5 -1
  103. package/src/less/theme/dropcap.less +29 -0
  104. package/src/less/theme/floating-shadow.less +20 -0
  105. package/src/less/theme/logo.less +29 -0
  106. package/src/less/theme/marquee.less +14 -0
  107. package/src/less/theme/utility.less +0 -32
  108. package/src/scss/components/_import.scss +6 -1
  109. package/src/scss/components/base.scss +1 -1
  110. package/src/scss/components/button.scss +1 -1
  111. package/src/scss/components/dropcap.scss +63 -0
  112. package/src/scss/components/floating-shadow.scss +62 -0
  113. package/src/scss/components/form.scss +5 -5
  114. package/src/scss/components/grid.scss +57 -64
  115. package/src/scss/components/logo.scss +75 -0
  116. package/src/scss/components/margin.scss +81 -81
  117. package/src/scss/components/marquee.scss +136 -0
  118. package/src/scss/components/nav.scss +1 -1
  119. package/src/scss/components/padding.scss +9 -9
  120. package/src/scss/components/utility.scss +0 -128
  121. package/src/scss/mixins-theme.scss +41 -32
  122. package/src/scss/mixins.scss +38 -29
  123. package/src/scss/variables-theme.scss +14 -9
  124. package/src/scss/variables.scss +14 -9
  125. package/tests/accordion.html +77 -10
  126. package/tests/alert.html +1 -1
  127. package/tests/align.html +5 -5
  128. package/tests/animation.html +4 -4
  129. package/tests/article.html +7 -7
  130. package/tests/background.html +2 -2
  131. package/tests/badge.html +1 -1
  132. package/tests/base.html +2 -2
  133. package/tests/button.html +1 -1
  134. package/tests/card.html +15 -15
  135. package/tests/close.html +2 -2
  136. package/tests/comment.html +9 -9
  137. package/tests/container.html +2 -2
  138. package/tests/countdown.html +21 -21
  139. package/tests/cover.html +3 -3
  140. package/tests/description-list.html +1 -1
  141. package/tests/divider.html +3 -3
  142. package/tests/dotnav.html +1 -1
  143. package/tests/drop.html +7 -7
  144. package/tests/dropbar.html +5 -5
  145. package/tests/dropcap.html +26 -0
  146. package/tests/dropdown.html +1 -1
  147. package/tests/dropnav.html +18 -18
  148. package/tests/filter.html +3 -3
  149. package/tests/floating-shadow.html +44 -0
  150. package/tests/form.html +14 -14
  151. package/tests/grid.html +41 -47
  152. package/tests/heading.html +2 -2
  153. package/tests/height-viewport.html +4 -4
  154. package/tests/height.html +5 -5
  155. package/tests/icon.html +8 -8
  156. package/tests/image.html +6 -6
  157. package/tests/index.html +13 -13
  158. package/tests/js/index.js +1 -1
  159. package/tests/leader.html +5 -5
  160. package/tests/lightbox.html +6 -6
  161. package/tests/link.html +1 -1
  162. package/tests/list.html +4 -4
  163. package/tests/logo.html +84 -0
  164. package/tests/margin.html +7 -7
  165. package/tests/marker.html +3 -3
  166. package/tests/marquee.html +617 -0
  167. package/tests/modal.html +3 -3
  168. package/tests/nav.html +5 -5
  169. package/tests/navbar.html +27 -27
  170. package/tests/notification.html +2 -2
  171. package/tests/offcanvas.html +12 -12
  172. package/tests/overlay.html +3 -3
  173. package/tests/padding.html +1 -1
  174. package/tests/pagination.html +3 -3
  175. package/tests/parallax.html +1 -1
  176. package/tests/position.html +6 -6
  177. package/tests/scrollspy.html +12 -12
  178. package/tests/search.html +5 -5
  179. package/tests/section.html +17 -17
  180. package/tests/slidenav.html +3 -3
  181. package/tests/slider.html +5 -5
  182. package/tests/slideshow.html +3 -3
  183. package/tests/sortable.html +15 -15
  184. package/tests/sticky-navbar.html +4 -4
  185. package/tests/sticky-parallax.html +3 -3
  186. package/tests/sticky.html +3 -3
  187. package/tests/svg.html +3 -2
  188. package/tests/switcher.html +6 -6
  189. package/tests/tab.html +4 -4
  190. package/tests/text.html +3 -3
  191. package/tests/tile.html +4 -4
  192. package/tests/toggle.html +1 -1
  193. package/tests/tooltip.html +3 -3
  194. package/tests/totop.html +2 -2
  195. package/tests/transition.html +1 -1
  196. package/tests/upload.html +5 -5
  197. package/tests/utility.html +16 -116
  198. package/tests/video.html +224 -24
  199. package/tests/visibility.html +4 -4
  200. package/tests/width.html +12 -12
@@ -1 +1 @@
1
- /*! UIkit 3.25.17-dev.80dfe87 | https://www.getuikit.com | (c) 2014 - 2026 YOOtheme | MIT License */(function(Qt,te){typeof exports=="object"&&typeof module<"u"?module.exports=te():typeof define=="function"&&define.amd?define("uikit",te):(Qt=typeof globalThis<"u"?globalThis:Qt||self,Qt.UIkit=te())})(this,(function(){"use strict";const{hasOwnProperty:Qt,toString:te}=Object.prototype;function at(t,e){return Qt.call(t,e)}const Uo=/\B([A-Z])/g,wt=X(t=>t.replace(Uo,"-$1").toLowerCase()),Vo=/-(\w)/g,ee=X(t=>(t.charAt(0).toLowerCase()+t.slice(1)).replace(Vo,(e,i)=>i.toUpperCase())),It=X(t=>t.charAt(0).toUpperCase()+t.slice(1));function lt(t,e){var i;return(i=t==null?void 0:t.startsWith)==null?void 0:i.call(t,e)}function ie(t,e){var i;return(i=t==null?void 0:t.endsWith)==null?void 0:i.call(t,e)}function p(t,e){var i;return(i=t==null?void 0:t.includes)==null?void 0:i.call(t,e)}function Be(t,e){var i;return(i=t==null?void 0:t.findIndex)==null?void 0:i.call(t,e)}const{isArray:q,from:Me}=Array,{assign:ne}=Object;function G(t){return typeof t=="function"}function dt(t){return t!==null&&typeof t=="object"}function oe(t){return te.call(t)==="[object Object]"}function De(t){return dt(t)&&t===t.window}function se(t){return ai(t)===9}function Ae(t){return ai(t)>=1}function re(t){return ai(t)===1}function ai(t){return!De(t)&&dt(t)&&t.nodeType}function Ft(t){return typeof t=="boolean"}function O(t){return typeof t=="string"}function Ne(t){return typeof t=="number"}function pt(t){return Ne(t)||O(t)&&!isNaN(t-parseFloat(t))}function li(t){return!(q(t)?t.length:dt(t)&&Object.keys(t).length)}function U(t){return t===void 0}function ci(t){return Ft(t)?t:t==="true"||t==="1"||t===""?!0:t==="false"||t==="0"?!1:t}function ae(t){const e=Number(t);return isNaN(e)?!1:e}function x(t){return parseFloat(t)||0}function M(t){return t&&m(t)[0]}function m(t){return Ae(t)?[t]:Array.from(t||[]).filter(Ae)}function $t(t){if(De(t))return t;t=M(t);const e=se(t)?t:t==null?void 0:t.ownerDocument;return(e==null?void 0:e.defaultView)||window}function fn(t,e){return t===e||dt(t)&&dt(e)&&Object.keys(t).length===Object.keys(e).length&&ce(t,(i,n)=>i===e[n])}function hi(t,e,i){return t.replace(new RegExp(`${e}|${i}`,"g"),n=>n===e?i:e)}function le(t){return t[t.length-1]}function ce(t,e){for(const i in t)if(e(t[i],i)===!1)return!1;return!0}function Yo(t,e){return t.slice().sort(({[e]:i=0},{[e]:n=0})=>i>n?1:n>i?-1:0)}function he(t,e){return t.reduce((i,n)=>i+x(G(e)?e(n):n[e]),0)}function Go(t,e){const i=new Set;return t.filter(({[e]:n})=>i.has(n)?!1:i.add(n))}function ui(t,e){return e.reduce((i,n)=>({...i,[n]:t[n]}),{})}function ot(t,e=0,i=1){return Math.min(Math.max(ae(t)||0,e),i)}function st(){}function Ie(...t){return[["bottom","top"],["right","left"]].every(([e,i])=>Math.min(...t.map(({[e]:n})=>n))-Math.max(...t.map(({[i]:n})=>n))>0)}function fi(t,e){return t.x<=e.right&&t.x>=e.left&&t.y<=e.bottom&&t.y>=e.top}function di(t,e,i){const n=e==="width"?"height":"width";return{[n]:t[e]?Math.round(i*t[n]/t[e]):t[n],[e]:i}}function dn(t,e){t={...t};for(const i in t)t=t[i]>e[i]?di(t,i,e[i]):t;return t}function Xo(t,e){t=dn(t,e);for(const i in t)t=t[i]<e[i]?di(t,i,e[i]):t;return t}const pn={ratio:di,contain:dn,cover:Xo};function yt(t,e,i=0,n=!1){e=m(e);const{length:o}=e;return o?(t=pt(t)?ae(t):t==="next"?i+1:t==="previous"?i-1:t==="last"?o-1:e.indexOf(M(t)),n?ot(t,0,o-1):(t%=o,t<0?t+o:t)):-1}function X(t){const e=Object.create(null);return(i,...n)=>e[i]||(e[i]=t(i,...n))}function E(t,...e){for(const i of m(t)){const n=xt(e).filter(o=>!g(i,o));n.length&&i.classList.add(...n)}}function D(t,...e){for(const i of m(t)){const n=xt(e).filter(o=>g(i,o));n.length&&i.classList.remove(...n)}}function Fe(t,e,i){i=xt(i),e=xt(e).filter(n=>!p(i,n)),D(t,e),E(t,i)}function g(t,e){return[e]=xt(e),m(t).some(i=>i.classList.contains(e))}function R(t,e,i){const n=xt(e);U(i)||(i=!!i);for(const o of m(t))for(const s of n)o.classList.toggle(s,i)}function xt(t){return t?q(t)?t.map(xt).flat():String(t).split(" ").filter(Boolean):[]}function P(t,e,i){var n;if(dt(e)){for(const o in e)P(t,o,e[o]);return}if(U(i))return(n=M(t))==null?void 0:n.getAttribute(e);for(const o of m(t))i===null?ue(o,e):o.setAttribute(e,i)}function ct(t,e){return m(t).some(i=>i.hasAttribute(e))}function ue(t,e){m(t).forEach(i=>i.removeAttribute(e))}function Ht(t,e){for(const i of[e,`data-${e}`])if(ct(t,i))return P(t,i)}const kt=typeof window<"u",St=kt&&document.dir==="rtl",zt=kt&&"ontouchstart"in window,qt=kt&&window.PointerEvent,Et=qt?"pointerdown":zt?"touchstart":"mousedown",pi=qt?"pointermove":zt?"touchmove":"mousemove",Tt=qt?"pointerup":zt?"touchend":"mouseup",Lt=qt?"pointerenter":zt?"":"mouseenter",Wt=qt?"pointerleave":zt?"":"mouseleave",fe=qt?"pointercancel":"touchcancel",Jo={area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0};function gi(t){return m(t).some(e=>Jo[e.tagName.toLowerCase()])}const Ko=kt&&Element.prototype.checkVisibility||function(){return this.offsetWidth||this.offsetHeight||this.getClientRects().length};function L(t){return m(t).some(e=>Ko.call(e))}const de="input,select,textarea,button";function He(t){return m(t).some(e=>T(e,de))}const pe=`${de},a[href],[tabindex]`;function ze(t){return T(t,pe)}function A(t){var e;return(e=M(t))==null?void 0:e.parentElement}function ge(t,e){return m(t).filter(i=>T(i,e))}function T(t,e){return m(t).some(i=>i.matches(e))}function me(t,e){const i=[];for(;t=A(t);)(!e||T(t,e))&&i.push(t);return i}function tt(t,e){t=M(t);const i=t?Me(t.children):[];return e?ge(i,e):i}function Rt(t,e){return e?m(t).indexOf(M(e)):tt(A(t)).indexOf(t)}function jt(t){return t=M(t),t&&["origin","pathname","search"].every(e=>t[e]===location[e])}function qe(t){if(jt(t)){const{hash:e,ownerDocument:i}=M(t),n=decodeURIComponent(e).slice(1);return n?i.getElementById(n)||i.getElementsByName(n)[0]:i.documentElement}}function W(t,e){return mi(t,gn(t,e))}function ve(t,e){return be(t,gn(t,e))}function mi(t,e){return M(bn(t,M(e),"querySelector"))}function be(t,e){return m(bn(t,M(e),"querySelectorAll"))}function gn(t,e=document){return se(e)||mn(t).isContextSelector?e:e.ownerDocument}const Zo=/([!>+~-])(?=\s+[!>+~-]|\s*$)/g,Qo=/(\([^)]*\)|[^,])+/g,mn=X(t=>{let e=!1;if(!t||!O(t))return{};const i=[];for(let n of t.match(Qo))n=n.trim().replace(Zo,"$1 *"),e||(e=["!","+","~","-",">"].includes(n[0])),i.push(n);return{selector:i.join(","),selectors:i,isContextSelector:e}}),ts=/(\([^)]*\)|\S)*/,vn=X(t=>{t=t.slice(1).trim();const[e]=t.match(ts);return[e,t.slice(e.length+1)]});function bn(t,e=document,i){var n;const o=mn(t);if(!o.isContextSelector)return o.selector?vi(e,i,o.selector):t;t="";const s=o.selectors.length===1;for(let r of o.selectors){let a,l=e;if(r[0]==="!"&&([a,r]=vn(r),l=(n=e.parentElement)==null?void 0:n.closest(a),!r&&s)||l&&r[0]==="-"&&([a,r]=vn(r),l=l.previousElementSibling,l=T(l,a)?l:null,!r&&s))return l;if(l){if(s)return r[0]==="~"||r[0]==="+"?(r=`:scope > :nth-child(${Rt(l)+1}) ${r}`,l=l.parentElement):r[0]===">"&&(r=`:scope ${r}`),vi(l,i,r);t+=`${t?",":""}${es(l)} ${r}`}}return se(e)||(e=e.ownerDocument),vi(e,i,t)}function vi(t,e,i){try{return t[e](i)}catch{return null}}function es(t){const e=[];for(;t.parentNode;){const i=P(t,"id");if(i){e.unshift(`#${bi(i)}`);break}else{let{tagName:n}=t;n!=="HTML"&&(n+=`:nth-child(${Rt(t)+1})`),e.unshift(n),t=t.parentNode}}return e.join(" > ")}function bi(t){return O(t)?CSS.escape(t):""}function w(...t){let[e,i,n,o,s=!1]=$i(t);o.length>1&&(o=ns(o)),s!=null&&s.self&&(o=os(o)),n&&(o=is(n,o));for(const r of i)for(const a of e)a.addEventListener(r,o,s);return()=>wi(e,i,o,s)}function wi(...t){let[e,i,,n,o=!1]=$i(t);for(const s of i)for(const r of e)r.removeEventListener(s,n,o)}function N(...t){const[e,i,n,o,s=!1,r]=$i(t),a=w(e,i,n,l=>{const h=!r||r(l);h&&(a(),o(l,h))},s);return a}function C(t,e,i){return yi(t).every(n=>n.dispatchEvent(Le(e,!0,!0,i)))}function Le(t,e=!0,i=!1,n){return O(t)&&(t=new CustomEvent(t,{bubbles:e,cancelable:i,detail:n})),t}function $i(t){return t[0]=yi(t[0]),O(t[1])&&(t[1]=t[1].split(" ")),G(t[2])&&t.splice(2,0,!1),t}function is(t,e){return i=>{const n=t[0]===">"?be(t,i.currentTarget).reverse().find(o=>o.contains(i.target)):i.target.closest(t);n&&(i.current=n,e.call(this,i),delete i.current)}}function ns(t){return e=>q(e.detail)?t(e,...e.detail):t(e)}function os(t){return function(e){if(e.target===e.currentTarget||e.target===e.current)return t.call(null,e)}}function wn(t){return t&&"addEventListener"in t}function ss(t){return wn(t)?t:M(t)}function yi(t){return q(t)?t.map(ss).filter(Boolean):O(t)?be(t):wn(t)?[t]:m(t)}function ht(t){return t.pointerType==="touch"||!!t.touches}function gt(t){var e,i;const{clientX:n,clientY:o}=((e=t.touches)==null?void 0:e[0])||((i=t.changedTouches)==null?void 0:i[0])||t;return{x:n,y:o}}const rs={"animation-iteration-count":!0,"column-count":!0,"fill-opacity":!0,"flex-grow":!0,"flex-shrink":!0,"font-weight":!0,"line-height":!0,opacity:!0,order:!0,orphans:!0,"stroke-dasharray":!0,"stroke-dashoffset":!0,widows:!0,"z-index":!0,zoom:!0};function c(t,e,i,n){const o=m(t);for(const s of o)if(O(e)){if(e=ki(e),U(i))return getComputedStyle(s).getPropertyValue(e);s.style.setProperty(e,pt(i)&&!rs[e]&&!$n(e)?`${i}px`:i||Ne(i)?i:"",n)}else if(q(e)){const r={};for(const a of e)r[a]=c(s,a);return r}else if(dt(e))for(const r in e)c(s,r,e[r],i);return o[0]}function xi(t,e){for(const i in e)c(t,i,"")}const ki=X(t=>{if($n(t))return t;t=wt(t);const{style:e}=document.documentElement;if(t in e)return t;for(const i of["webkit","moz"]){const n=`-${i}-${t}`;if(n in e)return n}});function $n(t){return lt(t,"--")}const Si="uk-transition",Ei="transitionend",Ti="transitioncanceled";function as(t,e,i=400,n="linear",o){return i=Math.round(i),Promise.all(m(t).map(s=>new Promise((r,a)=>{o||s.offsetHeight;const l=setTimeout(()=>C(s,Ei),i);N(s,[Ei,Ti],({type:u})=>{clearTimeout(l),D(s,Si),xi(s,h),u===Ti?a():r(s)},{self:!0}),E(s,Si);const h={transitionProperty:Object.keys(e).map(ki).join(","),transitionDuration:`${i}ms`,transitionTimingFunction:n};c(s,{...h,...e})})))}const J={start:as,async stop(t){C(t,Ei),await Promise.resolve()},async cancel(t){C(t,Ti),await Promise.resolve()},inProgress(t){return g(t,Si)}},we="uk-animation",yn="animationend",We="animationcanceled";function xn(t,e,i=200,n,o){return Promise.all(m(t).map(s=>new Promise((r,a)=>{g(s,we)&&C(s,We);const l=[e,we,`${we}-${o?"leave":"enter"}`,n&&`uk-transform-origin-${n}`,o&&`${we}-reverse`],h=setTimeout(()=>C(s,yn),i);N(s,[yn,We],({type:u})=>{clearTimeout(h),u===We?a():r(s),c(s,"animationDuration",""),D(s,l)},{self:!0}),c(s,"animationDuration",`${i}ms`),E(s,l)})))}const mt={in:xn,out(t,e,i,n){return xn(t,e,i,n,!0)},inProgress(t){return g(t,we)},cancel(t){C(t,We)}};function ls(t){if(document.readyState!=="loading"){t();return}N(document,"DOMContentLoaded",t)}function I(t,...e){return e.some(i=>{var n;return((n=t==null?void 0:t.tagName)==null?void 0:n.toLowerCase())===i.toLowerCase()})}function kn(t){return t=k(t),t&&(t.innerHTML=""),t}function Re(t,e){return U(e)?k(t).innerHTML:et(kn(t),e)}const cs=Ue("prepend"),et=Ue("append"),Ci=Ue("before"),je=Ue("after");function Ue(t){return function(e,i){var n;const o=m(O(i)?_t(i):i);return(n=k(e))==null||n[t](...o),Sn(o)}}function Ct(t){m(t).forEach(e=>e.remove())}function Ve(t,e){for(e=M(Ci(t,e));e.firstElementChild;)e=e.firstElementChild;return et(e,t),e}function _i(t,e){return m(m(t).map(i=>i.hasChildNodes()?Ve(Me(i.childNodes),e):et(i,e)))}function $e(t){m(t).map(A).filter((e,i,n)=>n.indexOf(e)===i).forEach(e=>e.replaceWith(...e.childNodes))}const hs=/^<(\w+)\s*\/?>(?:<\/\1>)?$/;function _t(t){const e=hs.exec(t);if(e)return document.createElement(e[1]);const i=document.createElement("template");return i.innerHTML=t.trim(),Sn(i.content.childNodes)}function Sn(t){return t.length>1?t:t[0]}function Pt(t,e){if(re(t))for(e(t),t=t.firstElementChild;t;)Pt(t,e),t=t.nextElementSibling}function k(t,e){return En(t)?M(_t(t)):mi(t,e)}function F(t,e){return En(t)?m(_t(t)):be(t,e)}function En(t){return O(t)&&lt(t.trim(),"<")}const Ot={width:["left","right"],height:["top","bottom"]};function _(t){const e=re(t)?M(t).getBoundingClientRect():{height:ut(t),width:Ye(t),top:0,left:0};return{height:e.height,width:e.width,top:e.top,left:e.left,bottom:e.top+e.height,right:e.left+e.width}}function v(t,e){e&&c(t,{left:0,top:0});const i=_(t);if(t){const{scrollY:n,scrollX:o}=$t(t),s={height:n,width:o};for(const r in Ot)for(const a of Ot[r])i[a]+=s[r]}if(!e)return i;for(const n of["left","top"])c(t,n,e[n]-i[n])}function us(t){let{top:e,left:i}=v(t);const{ownerDocument:{body:n,documentElement:o},offsetParent:s}=M(t);let r=s||o;for(;r&&(r===n||r===o)&&c(r,"position")==="static";)r=r.parentNode;if(re(r)){const a=v(r);e-=a.top+x(c(r,"borderTopWidth")),i-=a.left+x(c(r,"borderLeftWidth"))}return{top:e-x(c(t,"marginTop")),left:i-x(c(t,"marginLeft"))}}function ye(t){t=M(t);const e=[t.offsetTop,t.offsetLeft];for(;t=t.offsetParent;)if(e[0]+=t.offsetTop+x(c(t,"borderTopWidth")),e[1]+=t.offsetLeft+x(c(t,"borderLeftWidth")),c(t,"position")==="fixed"){const i=$t(t);return e[0]+=i.scrollY,e[1]+=i.scrollX,e}return e}const ut=Tn("height"),Ye=Tn("width");function Tn(t){const e=It(t);return(i,n)=>{if(U(n)){if(De(i))return i[`inner${e}`];if(se(i)){const o=i.documentElement;return Math.max(o[`offset${e}`],o[`scroll${e}`])}return i=M(i),n=c(i,t),n=n==="auto"?i[`offset${e}`]:x(n)||0,n-Ut(i,t)}else return c(i,t,!n&&n!==0?"":+n+Ut(i,t)+"px")}}function Ut(t,e,i="border-box"){return c(t,"boxSizing")===i?he(Ot[e],n=>x(c(t,`padding-${n}`))+x(c(t,`border-${n}-width`))):0}function Cn(t){for(const e in Ot)for(const i in Ot[e])if(Ot[e][i]===t)return Ot[e][1-i];return t}function K(t,e="width",i=window,n=!1){return O(t)?he(ds(t),o=>{const s=gs(o);return s?ms(s==="vh"?vs():s==="vw"?Ye($t(i)):n?i[`offset${It(e)}`]:_(i)[e],o):o}):x(t)}const fs=/-?\d+(?:\.\d+)?(?:v[wh]|%|px)?/g,ds=X(t=>t.toString().replace(/\s/g,"").match(fs)||[]),ps=/(?:v[hw]|%)$/,gs=X(t=>(t.match(ps)||[])[0]);function ms(t,e){return t*x(e)/100}let xe,Vt;function vs(){return xe||(Vt||(Vt=k("<div>"),c(Vt,{height:"100vh",position:"fixed"}),w(window,"resize",()=>xe=null)),et(document.body,Vt),xe=Vt.clientHeight,Ct(Vt),xe)}const Pi={read:bs,write:ws,clear:$s,flush:_n},Ge=[],Xe=[];function bs(t){return Ge.push(t),Bi(),t}function ws(t){return Xe.push(t),Bi(),t}function $s(t){On(Ge,t),On(Xe,t)}let Oi=!1;function _n(){Pn(Ge),Pn(Xe.splice(0)),Oi=!1,(Ge.length||Xe.length)&&Bi()}function Bi(){Oi||(Oi=!0,queueMicrotask(_n))}function Pn(t){let e;for(;e=t.shift();)try{e()}catch(i){console.error(i)}}function On(t,e){const i=t.indexOf(e);return~i&&t.splice(i,1)}class Bn{init(){this.positions=[];let e;this.unbind=w(document,"mousemove",i=>e=gt(i)),this.interval=setInterval(()=>{e&&(this.positions.push(e),this.positions.length>5&&this.positions.shift())},50)}cancel(){var e;(e=this.unbind)==null||e.call(this),clearInterval(this.interval)}movesTo(e){if(!this.positions||this.positions.length<2)return!1;const i=_(e),{left:n,right:o,top:s,bottom:r}=i,[a]=this.positions,l=le(this.positions),h=[a,l];return fi(l,i)?!1:[[{x:n,y:s},{x:o,y:r}],[{x:n,y:r},{x:o,y:s}]].some(f=>{const d=ys(h,f);return d&&fi(d,i)})}}function ys([{x:t,y:e},{x:i,y:n}],[{x:o,y:s},{x:r,y:a}]){const l=(a-s)*(i-t)-(r-o)*(n-e);if(l===0)return!1;const h=((r-o)*(e-s)-(a-s)*(t-o))/l;return h<0?!1:{x:t+h*(i-t),y:e+h*(n-e)}}function Mn(t,e,i={},{intersecting:n=!0}={}){const o=new IntersectionObserver(n?(s,r)=>{s.some(a=>a.isIntersecting)&&e(s,r)}:e,i);for(const s of m(t))o.observe(s);return o}const xs=kt&&window.ResizeObserver;function ke(t,e,i={box:"border-box"}){if(xs)return Dn(ResizeObserver,t,e,i);const n=[w(window,"load resize",e),w(document,"loadedmetadata load",e,!0)];return{disconnect:()=>n.map(o=>o())}}function Mi(t){return{disconnect:w([window,window.visualViewport],"resize",t)}}function Di(t,e,i){return Dn(MutationObserver,t,e,i)}function Dn(t,e,i,n){const o=new t(i);for(const s of m(e))o.observe(s,n);return o}function Ai(t){Ii(t)&&Fi(t,{func:"playVideo",method:"play"}),Ni(t)&&t.play().catch(st)}function An(t){Ii(t)&&t[Je]&&Fi(t,{func:"pauseVideo",method:"pause"}),Ni(t)&&t.pause()}function Nn(t){Ii(t)&&Fi(t,{func:"mute",method:"setVolume",value:0}),Ni(t)&&(t.muted=!0)}function Ni(t){return I(t,"video")}function Ii(t){return I(t,"iframe")&&(In(t)||Fn(t))}function In(t){return!!t.src.match(/\/\/.*?youtube(-nocookie)?\.[a-z]+\/(watch\?v=[^&\s]+|embed)|youtu\.be\/.*/)}function Fn(t){return!!t.src.match(/vimeo\.com\/video\/.*/)}async function Fi(t,e){await Ss(t),Hn(t,e)}function Hn(t,e){t.contentWindow.postMessage(JSON.stringify({event:"command",...e}),"*")}const Je="_ukPlayer";let ks=0;function Ss(t){if(t[Je])return t[Je];const e=In(t),i=Fn(t),n=++ks;let o;return t[Je]=new Promise(s=>{e&&N(t,"load",()=>{const r=()=>Hn(t,{event:"listening",id:n});o=setInterval(r,100),r()}),N(window,"message",s,!1,({data:r})=>{try{return r=JSON.parse(r),e&&(r==null?void 0:r.id)===n&&r.event==="onReady"||i&&Number(r==null?void 0:r.player_id)===n}catch{}}),t.src=`${t.src}${p(t.src,"?")?"&":"?"}${e?"enablejsapi=1":`api=1&player_id=${n}`}`}).then(()=>clearInterval(o))}function Es(t,e=0,i=0){return L(t)?Ie(...Gt(t).map(n=>{const{top:o,left:s,bottom:r,right:a}=Z(n);return{top:o-e,left:s-i,bottom:r+e,right:a+i}}).concat(v(t))):!1}function zn(t,{offset:e=0}={}){const i=L(t)?Yt(t,!1,["hidden"]):[];return i.reduce((r,a,l)=>{const{scrollTop:h,scrollHeight:u,offsetHeight:f}=a,d=Z(a),y=u-d.height,{height:b,top:$}=i[l-1]?Z(i[l-1]):v(t);let S=Math.ceil($-d.top-e+h);return e>0&&f<b+e?S+=e:e=0,S>y?(e-=S-y,S=y):S<0&&(e-=S,S=0),()=>n(a,S-h,t,y).then(r)},()=>Promise.resolve())();function n(r,a,l,h){return new Promise(u=>{const f=r.scrollTop,d=o(Math.abs(a)),y=Date.now(),b=zi(r)===r,$=v(l).top+(b?0:f);let S=0,Y=15;(function nt(){const bt=s(ot((Date.now()-y)/d));let rt=0;i[0]===r&&f+a<h&&(rt=v(l).top+(b?0:r.scrollTop)-$-_(Hi(l)).height),c(r,"scrollBehavior")!=="auto"&&c(r,"scrollBehavior","auto"),r.scrollTop=f+(a+rt)*bt,c(r,"scrollBehavior",""),bt===1&&(S===rt||!Y--)?u():(S=rt,requestAnimationFrame(nt))})()})}function o(r){return 40*Math.pow(r,.375)}function s(r){return .5*(1-Math.cos(Math.PI*r))}}function qn(t,e=0,i=0){if(!L(t))return 0;const n=Bt(t,!0),{scrollHeight:o,scrollTop:s}=n,{height:r}=Z(n),a=o-r,l=ye(t)[0]-ye(n)[0],h=Math.max(0,l-r+e),u=Math.min(a,l+t.offsetHeight-i);return h<u?ot((s-h)/(u-h)):1}function Yt(t,e=!1,i=[]){const n=zi(t);let o=me(t).reverse();o=o.slice(o.indexOf(n)+1);const s=Be(o,r=>Ke(r,"fixed"));return~s&&(o=o.slice(s)),[n].concat(o.filter(r=>c(r,"overflow").split(" ").some(a=>p(["auto","scroll",...i],a))&&(!e||r.scrollHeight>Z(r).height))).reverse()}function Bt(...t){return Yt(...t)[0]}function Gt(t){return Yt(t,!1,["hidden","clip"])}function Z(t){const e=$t(t),i=zi(t),n=!Ae(t)||t.contains(i);if(n&&e.visualViewport){let{height:l,width:h,scale:u,pageTop:f,pageLeft:d}=e.visualViewport;return l=Math.round(l*u),h=Math.round(h*u),{height:l,width:h,top:f,left:d,bottom:f+l,right:d+h}}let o=v(n?e:t);if(c(t,"display")==="inline")return o;const{body:s,documentElement:r}=e.document,a=n?i===r||i.clientHeight<s.clientHeight?i:s:t;for(let[l,h,u,f]of[["width","x","left","right"],["height","y","top","bottom"]]){const d=o[l]%1;o[u]+=x(c(a,`border-${u}-width`)),o[l]=o[h]=a[`client${It(l)}`]-(d?d<.5?-d:1-d:0),o[f]=o[l]+o[u]}return o}function Hi(t){const{document:e}=$t(t);t=t||e.body;const{left:i,width:n,top:o}=_(t);for(const s of o?[0,o]:[0]){let r;for(const a of e.elementsFromPoint(i+n/2,s))!a.contains(t)&&!g(a,"uk-togglable-leave")&&(Ke(a,"fixed")&&Ln(me(t).reverse().find(l=>!l.contains(a)&&!Ke(l,"static")))<Ln(a)||Ke(a,"sticky")&&(!t||A(a).contains(t)))&&(!r||_(r).height<_(a).height)&&(r=a);if(r)return r}}function Ln(t){return x(c(t,"zIndex"))}function Ke(t,e){return c(t,"position")===e}function zi(t){return $t(t).document.scrollingElement}const V=[["width","x","left","right"],["height","y","top","bottom"]];function Wn(t,e,i){i={attach:{element:["left","top"],target:["left","top"],...i.attach},offset:[0,0],placement:[],...i},q(e)||(e=[e,e]),v(t,Rn(t,e,i))}function Rn(t,e,i){const n=jn(t,e,i),{boundary:o,viewportOffset:s=0,placement:r}=i;let a=n;for(const[l,[h,,u,f]]of Object.entries(V)){const d=Ts(t,e[l],s,o,l);if(Ze(n,d,l))continue;let y=0;if(r[l]==="flip"){const b=i.attach.target[l];if(b===f&&n[f]<=d[f]||b===u&&n[u]>=d[u])continue;y=_s(t,e,i,l)[u]-n[u];const $=Cs(t,e[l],s,l);if(!Ze(qi(n,y,l),$,l)){if(Ze(n,$,l))continue;if(i.recursion)return!1;const S=Ps(t,e,i);if(S&&Ze(S,$,1-l))return S;continue}}else if(r[l]==="shift"){const b=v(e[l]),{offset:$}=i;y=ot(ot(n[u],d[u],d[f]-n[h]),b[u]-n[h]+$[l],b[f]-$[l])-n[u]}a=qi(a,y,l)}return a}function jn(t,e,i){let{attach:n,offset:o}={attach:{element:["left","top"],target:["left","top"],...i.attach},offset:[0,0],...i},s=v(t);for(const[r,[a,,l,h]]of Object.entries(V)){const u=n.target[r]===n.element[r]?Z(e[r]):v(e[r]);s=qi(s,u[l]-s[l]+Un(n.target[r],h,u[a])-Un(n.element[r],h,s[a])+ +o[r],r)}return s}function qi(t,e,i){const[,n,o,s]=V[i],r={...t};return r[o]=t[n]=t[o]+e,r[s]+=e,r}function Un(t,e,i){return t==="center"?i/2:t===e?i:0}function Ts(t,e,i,n,o){let s=Yn(...Vn(t,e).map(Z));return i&&(s[V[o][2]]+=i,s[V[o][3]]-=i),n&&(s=Yn(s,v(q(n)?n[o]:n))),s}function Cs(t,e,i,n){const[o,s,r,a]=V[n],[l]=Vn(t,e),h=Z(l);return["auto","scroll"].includes(c(l,`overflow-${s}`))&&(h[r]-=l[`scroll${It(r)}`],h[a]=h[r]+l[`scroll${It(o)}`]),h[r]+=i,h[a]-=i,h}function Vn(t,e){return Gt(e).filter(i=>i.contains(t))}function Yn(...t){let e={};for(const i of t)for(const[,,n,o]of V)e[n]=Math.max(e[n]||0,i[n]),e[o]=Math.min(...[e[o],i[o]].filter(Ne));return e}function Ze(t,e,i){const[,,n,o]=V[i];return t[n]>=e[n]&&t[o]<=e[o]}function _s(t,e,{offset:i,attach:n},o){return jn(t,e,{attach:{element:Gn(n.element,o),target:Gn(n.target,o)},offset:Os(i,o)})}function Ps(t,e,i){return Rn(t,e,{...i,attach:{element:i.attach.element.map(Xn).reverse(),target:i.attach.target.map(Xn).reverse()},offset:i.offset.reverse(),placement:i.placement.reverse(),recursion:!0})}function Gn(t,e){const i=[...t],n=V[e].indexOf(t[e]);return~n&&(i[e]=V[e][1-n%2+2]),i}function Xn(t){for(let e=0;e<V.length;e++){const i=V[e].indexOf(t);if(~i)return V[1-e][i%2+2]}}function Os(t,e){return t=[...t],t[e]*=-1,t}var Bs=Object.freeze({__proto__:null,$:k,$$:F,Animation:mt,Dimensions:pn,MouseTracker:Bn,Transition:J,addClass:E,after:je,append:et,apply:Pt,assign:ne,attr:P,before:Ci,boxModelAdjust:Ut,camelize:ee,children:tt,clamp:ot,createEvent:Le,css:c,data:Ht,dimensions:_,each:ce,empty:kn,endsWith:ie,escape:bi,fastdom:Pi,filter:ge,find:mi,findAll:be,findIndex:Be,flipPosition:Cn,fragment:_t,getCoveringElement:Hi,getEventPos:gt,getIndex:yt,getTargetedElement:qe,hasAttr:ct,hasClass:g,hasOwn:at,hasTouch:zt,height:ut,html:Re,hyphenate:wt,inBrowser:kt,includes:p,index:Rt,intersectRect:Ie,isArray:q,isBoolean:Ft,isDocument:se,isElement:re,isEmpty:li,isEqual:fn,isFocusable:ze,isFunction:G,isInView:Es,isInput:He,isNode:Ae,isNumber:Ne,isNumeric:pt,isObject:dt,isPlainObject:oe,isRtl:St,isSameSiteAnchor:jt,isString:O,isTag:I,isTouch:ht,isUndefined:U,isVisible:L,isVoidElement:gi,isWindow:De,last:le,matches:T,memoize:X,mute:Nn,noop:st,observeIntersection:Mn,observeMutation:Di,observeResize:ke,observeViewportResize:Mi,off:wi,offset:v,offsetPosition:ye,offsetViewport:Z,on:w,once:N,overflowParents:Gt,parent:A,parents:me,pause:An,pick:ui,play:Ai,pointInRect:fi,pointerCancel:fe,pointerDown:Et,pointerEnter:Lt,pointerLeave:Wt,pointerMove:pi,pointerUp:Tt,position:us,positionAt:Wn,prepend:cs,propName:ki,query:W,queryAll:ve,ready:ls,remove:Ct,removeAttr:ue,removeClass:D,replaceClass:Fe,resetProps:xi,scrollIntoView:zn,scrollParent:Bt,scrollParents:Yt,scrolledOver:qn,selFocusable:pe,selInput:de,sortBy:Yo,startsWith:lt,sumBy:he,swap:hi,toArray:Me,toBoolean:ci,toEventTargets:yi,toFloat:x,toNode:M,toNodes:m,toNumber:ae,toPx:K,toWindow:$t,toggleClass:R,trigger:C,ucfirst:It,uniqueBy:Go,unwrap:$e,width:Ye,wrapAll:Ve,wrapInner:_i}),Ms="3.25.17-dev.80dfe87";function Ds(t){t._data={},t._updates=[...t.$options.update||[]],t._disconnect.push(()=>t._updates=t._data=null)}function As(t,e){t._updates.unshift(e)}function Se(t,e="update"){t._connected&&t._updates.length&&(t._updateCount||(t._updateCount=0,requestAnimationFrame(()=>t._updateCount=0)),t._queued||(t._queued=new Set,Pi.read(()=>{t._connected&&Ns(t,t._queued),t._queued=null})),t._updateCount++<20&&t._queued.add(e.type||e))}function Ns(t,e){for(const{read:i,write:n,events:o=[]}of t._updates){if(!e.has("update")&&!o.some(r=>e.has(r)))continue;let s;i&&(s=i.call(t,t._data,e),s&&oe(s)&&ne(t._data,s)),n&&s!==!1&&Pi.write(()=>{t._connected&&n.call(t,t._data,e)})}}function Is(t){t._watches=[];for(const e of t.$options.watch||[])for(const[i,n]of Object.entries(e))Jn(t,n,i);t._initial=!0}function Jn(t,e,i){t._watches.push({name:i,...oe(e)?e:{handler:e}})}function Fs(t,e){for(const{name:i,handler:n,immediate:o=!0}of t._watches)(t._initial&&o||at(e,i)&&!fn(e[i],t[i]))&&n.call(t,t[i],e[i]);t._initial=!1}function Hs(t){const{computed:e}=t.$options;if(t._computed={},e)for(const i in e)Zn(t,i,e[i])}const Kn={subtree:!0,childList:!0};function Zn(t,e,i){t._hasComputed=!0,Object.defineProperty(t,e,{enumerable:!0,get(){const{_computed:n,$props:o,$el:s}=t;if(!at(n,e)&&(n[e]=(i.get||i).call(t,o,s),i.observe&&t._computedObserver)){const r=i.observe.call(t,o);t._computedObserver.observe(["~","+","-"].includes(r[0])?s.parentElement:s.getRootNode(),Kn)}return n[e]},set(n){const{_computed:o}=t;o[e]=i.set?i.set.call(t,n):n,U(o[e])&&delete o[e]}})}function zs(t){t._hasComputed&&(As(t,{read:()=>Fs(t,Qn(t)),events:["resize","computed"]}),t._computedObserver=Di(t.$el,()=>Se(t,"computed"),Kn),t._disconnect.push(()=>{t._computedObserver.disconnect(),t._computedObserver=null,Qn(t)}))}function Qn(t){const e={...t._computed};return t._computed={},e}function qs(t){for(const e of t.$options.events||[])if(at(e,"handler"))to(t,e);else for(const i in e)to(t,{name:i,handler:e[i]})}function to(t,{name:e,el:i,handler:n,capture:o,passive:s,delegate:r,filter:a,self:l}){a&&!a.call(t,t)||t._disconnect.push(w(i?i.call(t,t):t.$el,e,r==null?void 0:r.call(t,t),n.bind(t),{passive:s,capture:o,self:l}))}function Ls(t){for(const e of t.$options.observe||[])Ws(t,e)}function Ws(t,e){let{observe:i,target:n=t.$el,handler:o,options:s,filter:r,args:a}=e;if(r&&!r.call(t,t))return;const l=`_observe${t._disconnect.length}`;G(n)&&!at(t,l)&&Zn(t,l,()=>{const f=n.call(t,t);return q(f)?m(f):f}),o=O(o)?t[o]:o.bind(t),G(s)&&(s=s.call(t,t));const h=at(t,l)?t[l]:n,u=i(h,o,s,a);G(n)&&q(t[l])&&Jn(t,{handler:Rs(u,s),immediate:!1},l),t._disconnect.push(()=>u.disconnect())}function Rs(t,e){return(i,n)=>{for(const o of n)p(i,o)||(t.unobserve?t.unobserve(o):t.observe&&t.disconnect());for(const o of i)(!p(n,o)||!t.unobserve)&&t.observe(o,e)}}const H={};H.events=H.watch=H.observe=H.created=H.beforeConnect=H.connected=H.beforeDisconnect=H.disconnected=H.destroy=Li,H.args=function(t,e){return e!==!1&&Li(e||t)},H.update=function(t,e){return Li(t,G(e)?{read:e}:e)},H.props=function(t,e){if(q(e)){const i={};for(const n of e)i[n]=String;e=i}return H.methods(t,e)},H.computed=H.methods=function(t,e){return e?t?{...t,...e}:e:t},H.i18n=H.data=function(t,e,i){return i?eo(t,e,i):e?t?function(n){return eo(t,e,n)}:e:t};function eo(t,e,i){return H.computed(G(t)?t.call(i,i):t,G(e)?e.call(i,i):e)}function Li(t,e){return t=t&&!q(t)?[t]:t,e?t?t.concat(e):q(e)?e:[e]:t}function js(t,e){return U(e)?t:e}function Ee(t,e,i){const n={};if(G(e)&&(e=e.options),e.extends&&(t=Ee(t,e.extends,i)),e.mixins)for(const s of e.mixins)t=Ee(t,s,i);for(const s in t)o(s);for(const s in e)at(t,s)||o(s);function o(s){n[s]=(H[s]||js)(t[s],e[s],i)}return n}function Wi(t,e=[]){try{return t?lt(t,"{")?JSON.parse(t):e.length&&!p(t,":")?{[e[0]]:t}:t.split(";").reduce((i,n)=>{const[o,s]=n.split(/:(.*)/);return o&&!U(s)&&(i[o.trim()]=s.trim()),i},{}):{}}catch{return{}}}function Ri(t,e){return t===Boolean?ci(e):t===Number?ae(e):t==="list"?Vs(e):t===Object&&O(e)?Wi(e):t?t(e):e}const Us=/,(?![^(]*\))/;function Vs(t){return q(t)?t:O(t)?t.split(Us).map(e=>pt(e)?ae(e):ci(e.trim())):[t]}function Ys(t){const{$options:e,$props:i}=t,n=io(e);ne(i,n);const{computed:o,methods:s}=e;for(let r in i)r in n&&(!o||!at(o,r))&&(!s||!at(s,r))&&(t[r]=i[r])}function io(t){const e={},{args:i=[],props:n={},el:o,id:s}=t;if(!n)return e;for(const a in n){const l=wt(a);let h=Ht(o,l);U(h)||(h=n[a]===Boolean&&h===""?!0:Ri(n[a],h),!(l==="target"&&lt(h,"_"))&&(e[a]=h))}const r=Wi(Ht(o,s),i);for(const a in r){const l=ee(a);U(n[l])||(e[l]=Ri(n[l],r[a]))}return e}const Gs=X((t,e)=>{const i=Object.keys(e),n=i.concat(t).map(o=>[wt(o),`data-${wt(o)}`]).flat();return{attributes:i,filter:n}});function Xs(t){const{$options:e,$props:i}=t,{id:n,props:o,el:s}=e;if(!o)return;const{attributes:r,filter:a}=Gs(n,o),l=new MutationObserver(h=>{const u=io(e);h.some(({attributeName:f})=>{const d=f.replace("data-","");return(d===n?r:[ee(d),ee(f)]).some(y=>!U(u[y])&&u[y]!==i[y])})&&t.$reset()});l.observe(s,{attributes:!0,attributeFilter:a}),t._disconnect.push(()=>l.disconnect())}function Xt(t,e){var i;(i=t.$options[e])==null||i.forEach(n=>n.call(t))}function ji(t){t._connected||(Ys(t),Xt(t,"beforeConnect"),t._connected=!0,t._disconnect=[],qs(t),Ds(t),Is(t),Ls(t),Xs(t),zs(t),Xt(t,"connected"),Se(t))}function Ui(t){t._connected&&(Xt(t,"beforeDisconnect"),t._disconnect.forEach(e=>e()),t._disconnect=null,Xt(t,"disconnected"),t._connected=!1)}let Js=0;function no(t,e={}){e.data=Qs(e,t.constructor.options),t.$options=Ee(t.constructor.options,e,t),t.$props={},t._uid=Js++,Ks(t),Zs(t),Hs(t),Xt(t,"created"),e.el&&t.$mount(e.el)}function Ks(t){const{data:e={}}=t.$options;for(const i in e)t.$props[i]=t[i]=e[i]}function Zs(t){const{methods:e}=t.$options;if(e)for(const i in e)t[i]=e[i].bind(t)}function Qs({data:t={}},{args:e=[],props:i={}}){q(t)&&(t=t.slice(0,e.length).reduce((n,o,s)=>(oe(o)?ne(n,o):n[e[s]]=o,n),{}));for(const n in t)U(t[n])?delete t[n]:i[n]&&(t[n]=Ri(i[n],t[n]));return t}const Q=function(t){no(this,t)};Q.util=Bs,Q.options={},Q.version=Ms;const tr="uk-",Mt="__uikit__",Jt={};function oo(t,e){var i,n;const o=tr+wt(t);if(!e)return Jt[o].options||(Jt[o]=Q.extend(Jt[o])),Jt[o];t=ee(t),Q[t]=(r,a)=>Te(t,r,a);const s=(i=e.options)!=null?i:{...e};return s.id=o,s.name=t,(n=s.install)==null||n.call(s,Q,s,t),Q._initialized&&!s.functional&&requestAnimationFrame(()=>Te(t,`[${o}],[data-${o}]`)),Jt[o]=s}function Te(t,e,i,...n){const o=oo(t);return o.options.functional?new o({data:oe(e)?e:[e,i,...n]}):e?F(e).map(s)[0]:s();function s(r){const a=Qe(r,t);if(a)if(i)a.$destroy();else return a;return new o({el:r,data:i})}}function Ce(t){return(t==null?void 0:t[Mt])||{}}function Qe(t,e){return Ce(t)[e]}function er(t,e){t[Mt]||(t[Mt]={}),t[Mt][e.$options.name]=e}function ir(t,e){var i;(i=t[Mt])==null||delete i[e.$options.name],li(t[Mt])&&delete t[Mt]}function nr(t){kt&&window.MutationObserver&&(document.body?requestAnimationFrame(()=>so(t)):new MutationObserver((e,i)=>{document.body&&(so(t),i.disconnect())}).observe(document.documentElement,{childList:!0}))}function so(t){C(document,"uikit:init",t),document.body&&Pt(document.body,ro),new MutationObserver(or).observe(document,{subtree:!0,childList:!0,attributes:!0}),t._initialized=!0}function or(t){var e;for(const{addedNodes:i,removedNodes:n,target:o,attributeName:s}of t){for(const a of i)Pt(a,ro);for(const a of n)Pt(a,sr);const r=s&&ao(s);r&&(ct(o,s)?Te(r,o):(e=Qe(o,r))==null||e.$destroy())}}function ro(t){const e=Ce(t);for(const i in e)ji(e[i]);for(const i of t.getAttributeNames()){const n=ao(i);n&&Te(n,t)}}function sr(t){const e=Ce(t);for(const i in e)Ui(e[i])}function ao(t){lt(t,"data-")&&(t=t.slice(5));const e=Jt[t];return e&&(e.options||e).name}function rr(t){t.component=oo,t.getComponents=Ce,t.getComponent=Qe,t.update=lo,t.use=function(i){if(!i.installed)return i.call(null,this),i.installed=!0,this},t.mixin=function(i,n){n=(O(n)?this.component(n):n)||this,n.options=Ee(n.options,i)},t.extend=function(i){i||(i={});const n=this,o=function(r){no(this,r)};return o.prototype=Object.create(n.prototype),o.prototype.constructor=o,o.options=Ee(n.options,i),o.super=n,o.extend=n.extend,o};let e;Object.defineProperty(t,"container",{get(){return e||document.body},set(i){e=k(i)}})}function lo(t,e){t=t?M(t):document.body;for(const i of me(t).reverse())co(i,e);Pt(t,i=>co(i,e))}function co(t,e){const i=Ce(t);for(const n in i)Se(i[n],e)}function ar(t){t.prototype.$mount=function(e){const i=this;er(e,i),i.$options.el=e,e.isConnected&&ji(i)},t.prototype.$destroy=function(e=!1){const i=this,{el:n}=i.$options;n&&Ui(i),Xt(i,"destroy"),ir(n,i),e&&Ct(i.$el)},t.prototype.$create=Te,t.prototype.$emit=function(e){Se(this,e)},t.prototype.$update=function(e=this.$el,i){lo(e,i)},t.prototype.$reset=function(){Ui(this),ji(this)},t.prototype.$getComponent=Qe,Object.defineProperties(t.prototype,{$el:{get(){return this.$options.el}},$container:Object.getOwnPropertyDescriptor(t,"container")})}let lr=1;function ti(t,e=null){return(e==null?void 0:e.id)||`${t.$options.id}-${lr++}`}rr(Q),ar(Q);function ft(t){return Pe(ke,t,"resize")}function Dt(t){return Pe(Mn,t)}function _e(t){return Pe(Di,t)}function Vi(t={}){return Dt({handler:function(e,i){const{targets:n=this.$el,preload:o=5}=t;for(const s of m(G(n)?n(this):n))F('[loading="lazy"]',s).slice(0,o-1).forEach(r=>ue(r,"loading"));for(const s of e.filter(({isIntersecting:r})=>r).map(({target:r})=>r))i.unobserve(s)},...t})}function ho(t){return Pe((e,i)=>Mi(i),t,"resize")}function Yi(t){return Pe((e,i)=>({disconnect:w(hr(e),"scroll",i,{passive:!0})}),t,"scroll")}function uo(t){return{observe(e,i){return{observe:st,unobserve:st,disconnect:w(e,Et,i,{passive:!0})}},handler(e){if(!ht(e))return;const i=gt(e),n="tagName"in e.target?e.target:A(e.target);N(document,`${Tt} ${fe} scroll`,o=>{const{x:s,y:r}=gt(o);(o.type!=="scroll"&&n&&s&&Math.abs(i.x-s)>100||r&&Math.abs(i.y-r)>100)&&setTimeout(()=>{C(n,"swipe"),C(n,`swipe${cr(i.x,i.y,s,r)}`)})})},...t}}function Pe(t,e,i){return{observe:t,handler(){Se(this,i)},...e}}function cr(t,e,i,n){return Math.abs(t-i)>=Math.abs(e-n)?t-i>0?"Left":"Right":e-n>0?"Up":"Down"}function hr(t){return m(t).map(e=>{const{ownerDocument:i}=e,n=Bt(e,!0);return n===i.scrollingElement?i:n})}var it={connected(){this._cmpCls=g(this.$el,this.$options.id),E(this.$el,this.$options.id)},disconnected(){this._cmpCls||D(this.$el,this.$options.id)}};function Kt(t){t.target.closest('a[href="#"],a[href=""]')&&t.preventDefault()}var Zt={props:{cls:Boolean,animation:"list",duration:Number,velocity:Number,origin:String,transition:String},data:{cls:!1,animation:[!1],duration:200,velocity:.2,origin:!1,transition:"ease",clsEnter:"uk-togglable-enter",clsLeave:"uk-togglable-leave"},computed:{hasAnimation:({animation:t})=>!!t[0],hasTransition:({animation:t})=>["slide","reveal"].some(e=>lt(t[0],e))},methods:{async toggleElement(t,e,i){const n={};return(await Promise.all(m(t).map(o=>{const s=Ft(e)?e:!this.isToggled(o);if(!C(o,`before${s?"show":"hide"}`,[this]))return n;const r=(G(i)?i:i===!1||!this.hasAnimation?ur:this.hasTransition?fr:dr)(o,s,this),a=s?this.clsEnter:this.clsLeave;E(o,a),C(o,s?"show":"hide",[this]);const l=()=>{var h;D(o,a),C(o,s?"shown":"hidden",[this]),s&&((h=F("[autofocus]",o).find(L))==null||h.focus({preventScroll:!0}))};return r?r.then(l,()=>(D(o,a),n)):l()}))).every(o=>o!==n)},isToggled(t=this.$el){return t=M(t),g(t,this.clsEnter)?!0:g(t,this.clsLeave)?!1:this.cls?g(t,this.cls.split(" ")[0]):L(t)},_toggle(t,e){if(!t)return;e=!!e;let i;this.cls?(i=p(this.cls," ")||e!==g(t,this.cls),i&&R(t,this.cls,p(this.cls," ")?void 0:e)):(i=e===t.hidden,i&&(t.hidden=!e)),i&&C(t,"toggled",[e,this])}}};function ur(t,e,{_toggle:i}){return mt.cancel(t),J.cancel(t),i(t,e)}async function fr(t,e,{animation:i,duration:n,velocity:o,transition:s,_toggle:r}){var a;const[l="reveal",h="top"]=((a=i[0])==null?void 0:a.split("-"))||[],u=[["left","right"],["top","bottom"]],f=u[p(u[0],h)?0:1],d=f[1]===h,b=["width","height"][u.indexOf(f)],$=`margin-${f[0]}`,S=`margin-${h}`;let Y=_(t)[b];const nt=J.inProgress(t);await J.cancel(t),e&&r(t,!0);const bt=Object.fromEntries(["padding","border","width","height","minWidth","minHeight","overflowY","overflowX",$,S].map(jo=>[jo,t.style[jo]])),rt=_(t),un=x(c(t,$)),Lo=x(c(t,S)),Nt=rt[b]+Lo;!nt&&!e&&(Y+=Lo);const[ri]=_i(t,"<div>");c(ri,{boxSizing:"border-box",height:rt.height,width:rt.width,...c(t,["overflow","padding","borderTop","borderRight","borderBottom","borderLeft","borderImage",S])}),c(t,{padding:0,border:0,minWidth:0,minHeight:0,[S]:0,width:rt.width,height:rt.height,overflow:"hidden",[b]:Y});const Wo=Y/Nt;n=(o*Nt+n)*(e?1-Wo:Wo);const Ro={[b]:e?Nt:0};d&&(c(t,$,Nt-Y+un),Ro[$]=e?un:Nt+un),!d^l==="reveal"&&(c(ri,$,-Nt+Y),J.start(ri,{[$]:e?0:-Nt},n,s));try{await J.start(t,Ro,n,s)}finally{c(t,bt),$e(ri.firstChild),e||r(t,!1)}}function dr(t,e,i){const{animation:n,duration:o,_toggle:s}=i;return e?(s(t,!0),mt.in(t,n[0],o,i.origin)):mt.out(t,n[1]||n[0],o,i.origin).then(()=>s(t,!1))}const B={TAB:9,ENTER:13,ESC:27,SPACE:32,END:35,HOME:36,LEFT:37,UP:38,RIGHT:39,DOWN:40};var fo={mixins:[it,Zt],props:{animation:Boolean,targets:String,active:null,collapsible:Boolean,multiple:Boolean,toggle:String,content:String,offset:Number},data:{targets:"> *",active:!1,animation:!0,collapsible:!0,multiple:!1,clsOpen:"uk-open",toggle:".uk-accordion-title",content:".uk-accordion-content",offset:0},computed:{items:({targets:t},e)=>F(t,e),toggles({toggle:t}){return this.items.map(e=>k(t,e))},contents({content:t}){return this.items.map(e=>{var i;return((i=e._wrapper)==null?void 0:i.firstElementChild)||k(t,e)})}},watch:{items(t,e){if(e||g(t,this.clsOpen))return;const i=this.active!==!1&&t[Number(this.active)]||!this.collapsible&&t[0];i&&this.toggle(i,!1)},toggles(){this.$emit()},contents(t){for(const e of t){const i=g(this.items.find(n=>n.contains(e)),this.clsOpen);ei(e,!i)}this.$emit()}},observe:Vi(),events:[{name:"click keydown",delegate:({targets:t,$props:e})=>`${t} ${e.toggle}`,handler(t){if(t.type==="keydown"&&t.keyCode!==B.SPACE)return;const e=Rt(this.toggles,t.current);if(e===-1)return;Kt(t);const i=gr(t.target);this.toggle(e).finally(i)}},{name:"show hide shown hidden",self:!0,delegate:({targets:t})=>t,handler(){this.$emit()}}],update(){const t=ge(this.items,`.${this.clsOpen}`);for(const e in this.items){const i=this.toggles[e],n=this.contents[e];if(!i||!n)continue;i.id=ti(this,i),n.id=ti(this,n);const o=p(t,this.items[e]);P(i,{role:I(i,"a")?"button":null,"aria-controls":n.id,"aria-expanded":o,"aria-disabled":!this.collapsible&&t.length<2&&o}),P(n,{role:"region","aria-labelledby":i.id}),I(n,"ul")&&P(tt(n),"role","presentation")}},methods:{toggle(t,e){t=this.items[yt(t,this.items)];let i=[t];const n=ge(this.items,`.${this.clsOpen}`);return!this.multiple&&!p(n,i[0])&&(i=i.concat(n)),!this.collapsible&&n.length<2&&p(n,t)&&(i=[]),Promise.all(i.map(o=>this.toggleElement(o,!p(n,o),(s,r)=>{if(R(s,this.clsOpen,r),e===!1||!this.animation){ei(k(this.content,s),!r);return}return pr(s,r,this)})))}}};function ei(t,e){t&&(t.hidden=e)}async function pr(t,e,{content:i,duration:n,velocity:o,transition:s}){var r;i=((r=t._wrapper)==null?void 0:r.firstElementChild)||k(i,t),t._wrapper||(t._wrapper=Ve(i,"<div>"));const a=t._wrapper;c(a,"overflow","hidden");const l=x(c(a,"height"));await J.cancel(a),ei(i,!1);const h=he(["marginTop","marginBottom"],f=>c(i,f))+_(i).height,u=l/h;n=h?(o*h+n)*(e?1-u:u):0,c(a,"height",l),await J.start(a,{height:e?h:0},n,s),$e(i),delete t._wrapper,e||ei(i,!0)}function gr(t){const e=Bt(t,!0);let i;return(function n(){i=requestAnimationFrame(()=>{const{top:o}=_(t);o<0&&(e.scrollTop+=o),n()})})(),()=>requestAnimationFrame(()=>cancelAnimationFrame(i))}var mr={mixins:[it,Zt],args:"animation",props:{animation:Boolean,close:String},data:{animation:!0,selClose:".uk-alert-close",duration:150},events:{name:"click",delegate:({selClose:t})=>t,handler(t){Kt(t),this.close()}},methods:{async close(){await this.toggleElement(this.$el,!1,vr),this.$destroy(!0)}}};function vr(t,e,{duration:i,transition:n,velocity:o}){const s=x(c(t,"height"));return c(t,"height",s),J.start(t,{height:0,marginTop:0,marginBottom:0,paddingTop:0,paddingBottom:0,borderTop:0,borderBottom:0,opacity:0},o*s+i,n)}var po={args:"autoplay",props:{automute:Boolean,autoplay:Boolean,restart:Boolean,hoverTarget:Boolean},data:{automute:!1,autoplay:!0,restart:!1,hoverTarget:!1},beforeConnect(){const t=I(this.$el,"video");this.autoplay==="inview"&&t&&!ct(this.$el,"preload")&&(this.$el.preload="none"),!t&&!ct(this.$el,"allow")&&(this.$el.allow="autoplay"),this.autoplay==="hover"&&(t?this.$el.tabIndex=0:this.autoplay=!0),(this.automute||ct(this.$el,"muted"))&&Nn(this.$el)},events:[{name:`${Lt} focusin`,el:({hoverTarget:t,$el:e})=>W(t,e)||e,filter:({autoplay:t})=>t==="hover",handler(t){!ht(t)||!br(this.$el)?Ai(this.$el):Gi(this.$el,this.restart)}},{name:`${Wt} focusout`,el:({hoverTarget:t,$el:e})=>W(t,e)||e,filter:({autoplay:t})=>t==="hover",handler(t){ht(t)||Gi(this.$el,this.restart)}}],observe:[Dt({filter:({$el:t})=>t.preload==="none",handler([{target:t}]){t.preload="",this.$reset()}}),Dt({filter:({$el:t,autoplay:e})=>e!=="hover"&&t.preload!=="none",handler([{isIntersecting:t,target:e}]){document.fullscreenElement||(t?this.autoplay&&Ai(e):Gi(e,this.restart))},args:{intersecting:!1},options:({$el:t,autoplay:e})=>({root:e==="inview"?null:A(t).closest(":not(a)")})})]};function br(t){return!t.paused&&!t.ended}function Gi(t,e){An(t),e&&I(t,"video")&&(t.currentTime=0)}var wr={mixins:[po],props:{width:Number,height:Number},data:{automute:!0},created(){this.useObjectFit=I(this.$el,"img","video")},observe:ft({target:({$el:t})=>go(t)||A(t),filter:({useObjectFit:t})=>!t}),update:{read(){if(this.useObjectFit)return!1;const{$el:t,width:e=t.clientWidth,height:i=t.clientHeight}=this,n=go(t)||A(t),o=pn.cover({width:e,height:i},{width:n.offsetWidth,height:n.offsetHeight});return o.width&&o.height?o:!1},write({height:t,width:e}){c(this.$el,{height:t,width:e})},events:["resize"]}};function go(t){for(;t=A(t);)if(c(t,"position")!=="static")return t}var Xi={props:{container:Boolean},data:{container:!0},computed:{container({container:t}){return t===!0&&this.$container||t&&k(t)}}},$r={props:{pos:String,offset:Boolean,flip:Boolean,shift:Boolean,inset:Boolean},data:{pos:`bottom-${St?"right":"left"}`,offset:!1,flip:!0,shift:!0,inset:!1},connected(){this.pos=this.$props.pos.split("-").concat("center").slice(0,2),[this.dir,this.align]=this.pos,this.axis=p(["top","bottom"],this.dir)?"y":"x"},methods:{positionAt(t,e,i){let n=[this.getPositionOffset(t),this.getShiftOffset(t)];const o=[this.flip&&"flip",this.shift&&"shift"],s={element:[this.inset?this.dir:Cn(this.dir),this.align],target:[this.dir,this.align]};if(this.axis==="y"){for(const l in s)s[l].reverse();n.reverse(),o.reverse()}const r=mo(t),a=_(t);c(t,{top:-a.height,left:-a.width}),Wn(t,e,{attach:s,offset:n,boundary:i,placement:o,viewportOffset:this.getViewportOffset(t)}),r()},getPositionOffset(t=this.$el){return K(this.offset===!1?c(t,"--uk-position-offset"):this.offset,this.axis==="x"?"width":"height",t)*(p(["left","top"],this.dir)?-1:1)*(this.inset?-1:1)},getShiftOffset(t=this.$el){return this.align==="center"?0:K(c(t,"--uk-position-shift-offset"),this.axis==="y"?"width":"height",t)*(p(["left","top"],this.align)?1:-1)},getViewportOffset(t){return K(c(t,"--uk-position-viewport-offset"))}}};function mo(t){const e=Bt(t),{scrollTop:i}=e;return()=>{i!==e.scrollTop&&(e.scrollTop=i)}}let Ji;function vo(t){const e=w(t,"touchstart",o=>{if(o.targetTouches.length!==1||T(o.target,'input[type="range"]'))return;let s=gt(o).y;const r=w(t,"touchmove",a=>{const l=gt(a).y;l!==s&&(s=l,Yt(a.target).some(h=>{if(!t.contains(h))return!1;let{scrollHeight:u,clientHeight:f}=h;return f<u})||a.preventDefault())},{passive:!1});N(t,"scroll touchend touchcancel",r,{capture:!0})},{passive:!0});if(Ji)return e;Ji=!0;const{scrollingElement:i}=document,n={overflowY:CSS.supports("overflow","clip")?"clip":"hidden",touchAction:"none",scrollbarGutter:Ye(window)-i.clientWidth?"stable":""};return c(i,n),()=>{Ji=!1,e(),xi(i,n)}}let z;var bo={mixins:[it,Xi,$r,Zt],args:"pos",props:{mode:"list",toggle:Boolean,boundary:Boolean,boundaryX:Boolean,boundaryY:Boolean,target:Boolean,targetX:Boolean,targetY:Boolean,stretch:Boolean,delayShow:Number,delayHide:Number,autoUpdate:Boolean,animateOut:Boolean,bgScroll:Boolean,closeOnScroll:Boolean},data:{mode:["click","hover"],toggle:"- *",boundary:!1,boundaryX:!1,boundaryY:!1,target:!1,targetX:!1,targetY:!1,stretch:!1,delayShow:0,delayHide:800,autoUpdate:!0,animateOut:!1,bgScroll:!0,animation:["uk-animation-fade"],cls:"uk-open",container:!1,closeOnScroll:!1,selClose:".uk-drop-close"},computed:{boundary({boundary:t,boundaryX:e,boundaryY:i},n){return[W(e||t,n)||window,W(i||t,n)||window]},target({target:t,targetX:e,targetY:i},n){return e||(e=t||this.targetEl),i||(i=t||this.targetEl),[e===!0?window:W(e,n),i===!0?window:W(i,n)]}},created(){this.tracker=new Bn},connected(){E(this.$el,"uk-drop"),this.toggle&&!this.targetEl&&(this.targetEl=xr(this)),P(this.targetEl,"aria-expanded",!1),this._style=ui(this.$el.style,["width","height"])},disconnected(){this.isActive()&&(this.hide(!1),z=null),c(this.$el,this._style)},events:[{name:"click",delegate:({selClose:t})=>t,handler(t){Kt(t),this.hide(!1)}},{name:"click",delegate:()=>'a[href*="#"]',handler({defaultPrevented:t,current:e}){const{hash:i}=e;!t&&i&&jt(e)&&!this.$el.contains(k(i))&&this.hide(!1)}},{name:"beforescroll",handler(){this.hide(!1)}},{name:"toggle",self:!0,handler(t,e){t.preventDefault(),this.isToggled()?this.hide(!1):this.show(e==null?void 0:e.$el,!1)}},{name:"toggleshow",self:!0,handler(t,e){t.preventDefault(),this.show(e==null?void 0:e.$el)}},{name:"togglehide",self:!0,handler(t){t.preventDefault(),T(this.$el,":focus,:hover")||this.hide()}},{name:`${Lt} focusin`,filter:({mode:t})=>p(t,"hover"),handler(t){ht(t)||this.clearTimers()}},{name:`${Wt} focusout`,filter:({mode:t})=>p(t,"hover"),handler(t){!ht(t)&&t.relatedTarget&&this.hide()}},{name:"toggled",self:!0,handler(t,e){e&&(this.clearTimers(),this.position())}},{name:"show",self:!0,handler(){z=this,this.tracker.init(),P(this.targetEl,"aria-expanded",!0);const t=[kr(this),Sr(this),Tr(this),this.autoUpdate&&wo(this),this.closeOnScroll&&Er(this)];N(this.$el,"hide",()=>t.forEach(e=>e&&e()),{self:!0}),this.bgScroll||N(this.$el,"hidden",vo(this.$el),{self:!0})}},{name:"beforehide",self:!0,handler(){this.clearTimers()}},{name:"hide",handler({target:t}){if(this.$el!==t){z=z===null&&this.$el.contains(t)&&this.isToggled()?this:z;return}z=this.isActive()?null:z,this.tracker.cancel(),P(this.targetEl,"aria-expanded",!1)}}],update:{write(){this.isToggled()&&!g(this.$el,this.clsEnter)&&this.position()}},methods:{show(t=this.targetEl,e=!0){if(this.isToggled()&&t&&this.targetEl&&t!==this.targetEl&&this.hide(!1,!1),this.targetEl=t,this.clearTimers(),!this.isActive()){if(z){if(e&&z.isDelaying()){this.showTimer=setTimeout(()=>T(t,":hover")&&this.show(),10);return}let i;for(;z&&i!==z&&!z.$el.contains(this.$el);)i=z,z.hide(!1,!1);e=!1}this.container&&A(this.$el)!==this.container&&et(this.container,this.$el),E(this.$el,this.clsEnter),this.showTimer=setTimeout(()=>this.toggleElement(this.$el,!0),e&&this.delayShow||0)}},hide(t=!0,e=!0){const i=()=>{D(this.$el,this.clsEnter),this.toggleElement(this.$el,!1,this.animateOut&&e)};this.clearTimers(),this.isDelayedHide=t,t&&this.isDelaying()?this.hideTimer=setTimeout(this.hide,50):t&&this.delayHide?this.hideTimer=setTimeout(i,this.delayHide):i()},clearTimers(){clearTimeout(this.showTimer),clearTimeout(this.hideTimer),this.showTimer=null,this.hideTimer=null},isActive(){return z===this},isDelaying(){return[this.$el,...F(".uk-drop",this.$el)].some(t=>this.tracker.movesTo(t))},position(){const t=mo(this.$el);D(this.$el,"uk-drop-stack"),c(this.$el,this._style),this.$el.hidden=!0;const e=this.target.map(s=>yr(this.$el,s)),i=this.getViewportOffset(this.$el),n=[[0,["x","width","left","right"]],[1,["y","height","top","bottom"]]];for(const[s,[r,a]]of n)this.axis!==r&&p([r,!0],this.stretch)&&c(this.$el,{[a]:Math.min(v(this.boundary[s])[a],e[s][a]-2*i),[`overflow-${r}`]:"auto"});const o=e[0].width-2*i;this.$el.hidden=!1,c(this.$el,"maxWidth",""),this.$el.offsetWidth>o&&E(this.$el,"uk-drop-stack"),c(this.$el,"maxWidth",o),this.positionAt(this.$el,this.target,this.boundary);for(const[s,[r,a,l,h]]of n)if(this.axis===r&&p([r,!0],this.stretch)){const u=Math.abs(this.getPositionOffset()),f=v(this.target[s]),d=v(this.$el);c(this.$el,{[a]:(f[l]>d[l]?f[this.inset?h:l]-Math.max(v(this.boundary[s])[l],e[s][l]+i):Math.min(v(this.boundary[s])[h],e[s][h]-i)-f[this.inset?l:h])-u,[`overflow-${r}`]:"auto"}),this.positionAt(this.$el,this.target,this.boundary)}t()}}};function yr(t,e){return Z(Gt(e).find(i=>i.contains(t)))}function xr(t){const e=W(t.toggle,t.$el);return e&&(t.$create("toggle",e,{target:t.$el,mode:t.mode}),e.ariaHasPopup=!0),e}function kr(t){const e=()=>t.$emit(),i=[Mi(e),ke(Gt(t.$el).concat(t.target),e)];return()=>i.map(n=>n.disconnect())}function wo(t,e=()=>t.$emit()){return w([document,...Gt(t.$el)],"scroll",e,{passive:!0})}function Sr(t){return w(document,"keydown",e=>{e.keyCode===B.ESC&&t.hide(!1)})}function Er(t){return wo(t,()=>t.hide(!1))}function Tr(t){return w(document,Et,({target:e})=>{t.$el.contains(e)||N(document,`${Tt} ${fe} scroll`,({defaultPrevented:i,type:n,target:o})=>{var s;!i&&n===Tt&&e===o&&!((s=t.targetEl)!=null&&s.contains(e))&&t.hide(!1)},!0)})}var $o={mixins:[it,Xi],props:{align:String,boundary:Boolean,dropbar:Boolean,dropbarAnchor:Boolean,duration:Number,mode:Boolean,offset:Boolean,stretch:Boolean,delayShow:Boolean,delayHide:Boolean,target:Boolean,targetX:Boolean,targetY:Boolean,animation:Boolean,animateOut:Boolean,closeOnScroll:Boolean},data:{align:St?"right":"left",clsDrop:"uk-dropdown",clsDropbar:"uk-dropnav-dropbar",boundary:!0,dropbar:!1,dropbarAnchor:!1,flip:!0,delayShow:160,duration:200,container:!1,selNavItem:"> li > a, > ul > li > a"},computed:{dropbarAnchor:({dropbarAnchor:t},e)=>W(t,e)||e,dropbar({dropbar:t}){return t?(t=this._dropbar||W(t,this.$el)||k(`+ .${this.clsDropbar}`,this.$el),t||(this._dropbar=k("<div>"))):null},dropContainer(t,e){return this.container||e},dropdowns({clsDrop:t},e){var i;const n=F(`.${t}`,e);if(this.dropContainer!==e)for(const o of F(`.${t}`,this.dropContainer)){const s=(i=this.getDropdown(o))==null?void 0:i.targetEl;!p(n,o)&&s&&this.$el.contains(s)&&n.push(o)}return n},items({selNavItem:t},e){return F(t,e)}},watch:{dropbar(t){E(t,"uk-dropbar","uk-dropbar-top",this.clsDropbar,`uk-${this.$options.name}-dropbar`)},dropdowns(){this.initializeDropdowns()}},connected(){this.initializeDropdowns(),Cr(this.$el)},disconnected(){Ct(this._dropbar),delete this._dropbar},events:[{name:"mouseover focusin",delegate:({selNavItem:t})=>t,handler({current:t}){const e=this.getActive();e&&p(e.mode,"hover")&&e.targetEl&&!t.contains(e.targetEl)&&!e.isDelaying()&&e.hide(!1)}},{name:"keydown",self:!0,delegate:({selNavItem:t})=>t,handler(t){var e;const{current:i,keyCode:n}=t,o=this.getActive();if(n===B.DOWN)if((o==null?void 0:o.targetEl)===i)t.preventDefault(),(e=k(pe,o.$el))==null||e.focus();else{const s=this.dropdowns.find(r=>{var a;return((a=this.getDropdown(r))==null?void 0:a.targetEl)===i});s&&(t.preventDefault(),i.click(),N(s,"show",r=>{var a;return(a=k(pe,r.target))==null?void 0:a.focus()}))}yo(t,this.items,o)}},{name:"keydown",el:({dropContainer:t})=>t,delegate:({clsDrop:t})=>`.${t}`,handler(t){var e;const{current:i,keyCode:n,target:o}=t;if(He(o)||!p(this.dropdowns,i))return;const s=this.getActive();let r=-1;if(n===B.HOME?r=0:n===B.END?r="last":n===B.UP?r="previous":n===B.DOWN?r="next":n===B.ESC&&((e=s.targetEl)==null||e.focus()),~r){t.preventDefault();const a=F(pe,i);a[yt(r,a,Be(a,l=>T(l,":focus")))].focus();return}yo(t,this.items,s)}},{name:"mouseleave",el:({dropbar:t})=>t,filter:({dropbar:t})=>t,handler(){const t=this.getActive();t&&p(t.mode,"hover")&&!this.dropdowns.some(e=>T(e,":hover"))&&t.hide()}},{name:"beforeshow",el:({dropContainer:t})=>t,filter:({dropbar:t})=>t,handler({target:t}){this.isDropbarDrop(t)&&(this.dropbar.previousElementSibling!==this.dropbarAnchor&&je(this.dropbarAnchor,this.dropbar),E(t,`${this.clsDrop}-dropbar`))}},{name:"show",el:({dropContainer:t})=>t,filter:({dropbar:t})=>t,handler({target:t}){if(!this.isDropbarDrop(t))return;const e=this.getDropdown(t),i=()=>{const n=Math.max(...me(t,`.${this.clsDrop}`).concat(t).map(o=>v(o).bottom));v(this.dropbar,{left:v(this.dropbar).left,top:this.getDropbarOffset(e.getPositionOffset())}),this.transitionTo(n-v(this.dropbar).top+x(c(t,"marginBottom")),t)};this._observer=ke([e.$el,...e.target],i),i()}},{name:"beforehide",el:({dropContainer:t})=>t,filter:({dropbar:t})=>t,handler(t){const e=this.getActive();T(this.dropbar,":hover")&&e.$el===t.target&&this.isDropbarDrop(e.$el)&&p(e.mode,"hover")&&e.isDelayedHide&&!this.items.some(i=>e.targetEl!==i&&T(i,":focus"))&&t.preventDefault()}},{name:"hide",el:({dropContainer:t})=>t,filter:({dropbar:t})=>t,handler({target:t}){var e;if(!this.isDropbarDrop(t))return;(e=this._observer)==null||e.disconnect();const i=this.getActive();(!i||i.$el===t)&&this.transitionTo(0)}}],methods:{getActive(){var t;return p(this.dropdowns,(t=z)==null?void 0:t.$el)&&z},async transitionTo(t,e){const{dropbar:i}=this,n=ut(i);if(e=n<t&&e,await J.cancel([e,i]),e){const o=v(e).top-v(i).top-n;o>0&&c(e,"transitionDelay",`${o/t*this.duration}ms`)}c(e,"clipPath",`polygon(0 0,100% 0,100% ${n}px,0 ${n}px)`),ut(i,n),await Promise.all([J.start(i,{height:t},this.duration),J.start(e,{clipPath:`polygon(0 0,100% 0,100% ${t}px,0 ${t}px)`},this.duration).finally(()=>c(e,{clipPath:"",transitionDelay:""}))]).catch(st)},getDropdown(t){return this.$getComponent(t,"drop")||this.$getComponent(t,"dropdown")},isDropbarDrop(t){return p(this.dropdowns,t)&&g(t,this.clsDrop)},getDropbarOffset(t){const{$el:e,target:i,targetY:n}=this,{top:o,height:s}=v(W(n||i||e,e));return o+s+t},initializeDropdowns(){this.$create("drop",this.dropdowns.filter(t=>!this.getDropdown(t)),{...this.$props,flip:this.flip&&!this.$props.dropbar,shift:!0,pos:`bottom-${this.align}`,boundary:!1,boundaryX:this.boundary===!0?this.$el:this.boundary})}}};function yo(t,e,i){var n,o,s;const{current:r,keyCode:a}=t;let l=-1;a===B.HOME?l=0:a===B.END?l="last":a===B.LEFT?l="previous":a===B.RIGHT?l="next":a===B.TAB&&((n=i.targetEl)==null||n.focus(),(o=i.hide)==null||o.call(i,!1)),~l&&(t.preventDefault(),(s=i.hide)==null||s.call(i,!1),e[yt(l,e,e.indexOf(i.targetEl||r))].focus())}function Cr(t){const e=()=>i.forEach(n=>n()),i=[N(t.ownerDocument,pi,n=>t.contains(n.target)||e()),w(t,`mouseenter ${Lt}`,n=>n.stopPropagation(),{capture:!0}),w(t,`mouseleave ${Wt}`,e,{capture:!0})]}var _r={mixins:[it],args:"target",props:{target:Boolean},data:{target:!1},computed:{input:(t,e)=>k(de,e),state(){return this.input.nextElementSibling},target({target:t},e){return t&&(t===!0&&A(this.input)===e&&this.input.nextElementSibling||k(t,e))}},update(){var t;const{target:e,input:i}=this;if(!e)return;let n;const o=He(e)?"value":"textContent",s=e[o],r=(t=i.files)!=null&&t[0]?i.files[0].name:T(i,"select")&&(n=F("option",i).filter(a=>a.selected)[0])?n.textContent:i.value;s!==r&&(e[o]=r)},events:[{name:"change",handler(){this.$emit()}},{name:"reset",el:({$el:t})=>t.closest("form"),handler(){this.$emit()}}]},xo={props:{margin:String,firstColumn:Boolean},data:{margin:"uk-margin-small-top",firstColumn:"uk-first-column"},observe:[_e({options:{childList:!0}}),_e({options:{attributes:!0,attributeFilter:["style"]}}),ft({handler(t){for(const{target:e,borderBoxSize:[{inlineSize:i,blockSize:n}]}of t)if(e===this.$el&&!i&&!n)return;this.$emit("resize")},target:({$el:t})=>[t,...tt(t)]})],update:{read(){return{rows:ko(tt(this.$el))}},write({rows:t}){for(const e of t)for(const i of e)R(i,this.margin,t[0]!==e),R(i,this.firstColumn,e[St?e.length-1:0]===i)},events:["resize"]}};function ko(t){const e=[[]],i=t.some((n,o)=>o&&t[o-1].offsetParent!==n.offsetParent);for(const n of t){if(!L(n))continue;const o=Ki(n,i);for(let s=e.length-1;s>=0;s--){const r=e[s];if(!r[0]){r.push(n);break}const a=Ki(r[0],i);if(o.top>=a.bottom-1&&o.top!==a.top){e.push([n]);break}if(o.bottom-1>a.top||o.top===a.top){let l=r.length-1;for(;l>=0;l--){const h=Ki(r[l],i);if(o.left>=h.left)break}r.splice(l+1,0,n);break}if(s===0){e.unshift([n]);break}}}return e}function Ki(t,e=!1){let{offsetTop:i,offsetLeft:n,offsetHeight:o,offsetWidth:s}=t;return e&&([i,n]=ye(t)),{top:i,left:n,bottom:i+o,right:n+s}}var Pr={extends:xo,mixins:[it],name:"grid",props:{masonry:Boolean,parallax:String,parallaxStart:String,parallaxEnd:String,parallaxJustify:Boolean},data:{margin:"uk-grid-margin",clsStack:"uk-grid-stack",masonry:!1,parallax:0,parallaxStart:0,parallaxEnd:0,parallaxJustify:!1},connected(){this.masonry&&E(this.$el,"uk-flex-top","uk-flex-wrap-top")},observe:Yi({filter:({parallax:t,parallaxJustify:e})=>t||e}),update:[{write({rows:t}){R(this.$el,this.clsStack,!t.some(e=>e.length>1))},events:["resize"]},{read(t){const{rows:e}=t;let{masonry:i,parallax:n,parallaxJustify:o,margin:s}=this;if(n=Math.max(0,K(n)),!(i||n||o)||So(e)||e[0].some((b,$)=>e.some(S=>S[$]&&S[$].offsetWidth!==b.offsetWidth)))return t.translates=t.scrollColumns=!1;let r=Br(e,s),a,l;i?[a,l]=Or(e,r,i==="next"):a=Mr(e);const h=a.map(b=>he(b,"offsetHeight")+r*(b.length-1)),u=Math.max(0,...h);let f,d,y;return(n||o)&&(f=h.map((b,$)=>o?u-b+n:n/($%2||8)),o||(n=Math.max(...h.map((b,$)=>b+f[$]-u))),d=K(this.parallaxStart,"height",this.$el,!0),y=K(this.parallaxEnd,"height",this.$el,!0)),{columns:a,translates:l,scrollColumns:f,parallaxStart:d,parallaxEnd:y,padding:n,height:l?u:""}},write({height:t,padding:e}){c(this.$el,"paddingBottom",e||""),t!==!1&&c(this.$el,"height",t)},events:["resize"]},{read({rows:t,scrollColumns:e,parallaxStart:i,parallaxEnd:n}){return{scrolled:e&&!So(t)?qn(this.$el,i,n):!1}},write({columns:t,scrolled:e,scrollColumns:i,translates:n}){!e&&!n||t.forEach((o,s)=>o.forEach((r,a)=>{let[l,h]=n&&n[s][a]||[0,0];e&&(h+=e*i[s]),c(r,"transform",`translate(${l}px, ${h}px)`)}))},events:["scroll","resize"]}]};function So(t){return t.flat().some(e=>c(e,"position")==="absolute")}function Or(t,e,i){const n=[],o=[],s=Array(t[0].length).fill(0);let r=0;for(let a of t){const l=St?a.slice().reverse():a;let h=0;for(const u in l){const{offsetWidth:f,offsetHeight:d}=l[u],y=i?u:s.indexOf(Math.min(...s));Zi(n,y,l[u]),Zi(o,y,[(y-u)*f*(St?-1:1),s[y]-r]),s[y]+=d+e,h=Math.max(h,d)}r+=h+e}return[n,o]}function Br(t,e){const i=t.flat().find(n=>g(n,e));return x(i?c(i,"marginTop"):c(t[0][0],"paddingLeft"))}function Mr(t){const e=[];for(const i of t)for(const n in i)Zi(e,n,i[n]);return e}function Zi(t,e,i){t[e]||(t[e]=[]),t[e].push(i)}var Dr={args:"target",props:{target:String,row:Boolean},data:{target:"> *",row:!0},computed:{elements:({target:t},e)=>F(t,e)},observe:ft({target:({$el:t,elements:e})=>e.reduce((i,n)=>i.concat(n,...n.children),[t])}),events:{name:"loadingdone",el:()=>document.fonts,handler(){this.$emit("resize")}},update:{read(){return{rows:(this.row?ko(this.elements):[this.elements]).map(Ar)}},write({rows:t}){for(const{heights:e,elements:i}of t)i.forEach((n,o)=>c(n,"minHeight",e[o]))},events:["resize"]}};function Ar(t){if(t.length<2)return{heights:[""],elements:t};let e=t.map(Nr);const i=Math.max(...e);return{heights:t.map((n,o)=>e[o].toFixed(2)===i.toFixed(2)?"":i),elements:t}}function Nr(t){const e=ui(t.style,["display","minHeight"]);L(t)||c(t,"display","block","important"),c(t,"minHeight","");const i=_(t).height-Ut(t,"height","content-box");return c(t,e),i}var Ir={args:"target",props:{target:String},data:{target:""},computed:{target:{get:({target:t},e)=>W(t,e),observe:({target:t})=>t}},observe:ft({target:({target:t})=>t}),update:{read(){return this.target?{height:this.target.offsetHeight}:!1},write({height:t}){c(this.$el,"minHeight",t)},events:["resize"]}},ii={props:{media:Boolean},data:{media:!1},connected(){const t=Fr(this.media,this.$el);if(this.matchMedia=!0,t){this.mediaObj=window.matchMedia(t);const e=()=>{this.matchMedia=this.mediaObj.matches,C(this.$el,Le("mediachange",!1,!0,[this.mediaObj]))};this.offMediaObj=w(this.mediaObj,"change",()=>{e(),this.$emit("resize")}),e()}},disconnected(){var t;(t=this.offMediaObj)==null||t.call(this)}};function Fr(t,e){if(O(t)){if(lt(t,"@"))t=x(c(e,`--uk-breakpoint-${t.slice(1)}`));else if(isNaN(t))return t}return t&&pt(t)?`(min-width: ${t}px)`:""}var Hr={mixins:[ii],props:{expand:Boolean,offsetTop:Boolean,offsetBottom:Boolean,min:Number,property:String},data:{expand:!1,offsetTop:!1,offsetBottom:!1,min:0,property:"min-height"},observe:[ho({filter:({expand:t})=>t}),ft({target:({$el:t})=>Yt(t)})],update:{read(){if(!L(this.$el))return!1;if(!this.matchMedia)return{minHeight:!1};const t=Ut(this.$el,"height","content-box"),{body:e,scrollingElement:i}=document,n=Bt(this.$el),{height:o}=Z(n===e?i:n),s=i===n||e===n;let r=`calc(${s?"100vh":`${o}px`}`;if(this.expand){const a=_(n).height-_(this.$el).height;r+=` - ${a}px`}else{if(this.offsetTop)if(s){const a=this.offsetTop===!0?this.$el:W(this.offsetTop,this.$el),{top:l}=v(a);r+=l>0&&l<o/2?` - ${l}px`:""}else r+=` - ${Ut(n,"height",c(n,"boxSizing"))}px`;this.offsetBottom===!0?r+=` - ${_(this.$el.nextElementSibling).height}px`:pt(this.offsetBottom)?r+=` - ${this.offsetBottom}vh`:this.offsetBottom&&ie(this.offsetBottom,"px")?r+=` - ${x(this.offsetBottom)}px`:O(this.offsetBottom)&&(r+=` - ${_(W(this.offsetBottom,this.$el)).height}px`)}return r+=`${t?` - ${t}px`:""})`,{minHeight:r}},write({minHeight:t}){c(this.$el,this.property,t===!1?"":`max(${this.min||0}px, ${t})`)},events:["resize"]}},zr='<svg width="13" height="13" viewBox="0 0 13 13"><style>.uk-accordion-icon svg&gt;[class*=&quot;line-&quot;]{transition:0.2s ease-out;transition-property:transform, opacity;transform-origin:center}[aria-expanded=&quot;true&quot;] .uk-accordion-icon svg&gt;.line-1{transform:rotate(-45deg);opacity:0}[aria-expanded=&quot;true&quot;] .uk-accordion-icon svg&gt;.line-2{transform:rotate(90deg)}</style><rect width="13" height="1" fill="#000" x="0" y="6" class="line-1"/><rect width="1" height="13" fill="#000" x="6" y="0" class="line-2"/></svg>',qr='<svg width="14" height="14" viewBox="0 0 14 14"><line fill="none" stroke="#000" stroke-width="1.1" x1="1" y1="1" x2="13" y2="13"/><line fill="none" stroke="#000" stroke-width="1.1" x1="13" y1="1" x2="1" y2="13"/></svg>',Lr='<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" stroke-width="1.4" x1="1" y1="1" x2="19" y2="19"/><line fill="none" stroke="#000" stroke-width="1.4" x1="19" y1="1" x2="1" y2="19"/></svg>',Wr='<svg width="12" height="12" viewBox="0 0 12 12"><polyline fill="none" stroke="#000" stroke-width="1.1" points="1 3.5 6 8.5 11 3.5"/></svg>',Rr='<svg width="20" height="20" viewBox="0 0 20 20"><rect width="1" height="11" x="9" y="4"/><rect width="11" height="1" x="4" y="9"/></svg>',jr='<svg width="14" height="14" viewBox="0 0 14 14"><polyline fill="none" stroke="#000" stroke-width="1.1" points="1 4 7 10 13 4"/></svg>',Ur='<svg width="12" height="12" viewBox="0 0 12 12"><polyline fill="none" stroke="#000" stroke-width="1.1" points="1 3.5 6 8.5 11 3.5"/></svg>',Vr='<svg width="12" height="12" viewBox="0 0 12 12"><polyline fill="none" stroke="#000" stroke-width="1.1" points="1 3.5 6 8.5 11 3.5"/></svg>',Yr='<svg width="20" height="20" viewBox="0 0 20 20"><style>.uk-navbar-toggle-icon svg&gt;[class*=&quot;line-&quot;]{transition:0.2s ease-in-out;transition-property:transform, opacity;transform-origin:center;opacity:1}.uk-navbar-toggle-icon svg&gt;.line-3{opacity:0}[aria-expanded=&quot;true&quot;].uk-navbar-toggle-icon svg&gt;.line-3,[aria-expanded=&quot;true&quot;]&gt;.uk-navbar-toggle-icon svg&gt;.line-3{opacity:1}[aria-expanded=&quot;true&quot;].uk-navbar-toggle-icon svg&gt;.line-2,[aria-expanded=&quot;true&quot;]&gt;.uk-navbar-toggle-icon svg&gt;.line-2{transform:rotate(45deg)}[aria-expanded=&quot;true&quot;].uk-navbar-toggle-icon svg&gt;.line-3,[aria-expanded=&quot;true&quot;]&gt;.uk-navbar-toggle-icon svg&gt;.line-3{transform:rotate(-45deg)}[aria-expanded=&quot;true&quot;].uk-navbar-toggle-icon svg&gt;.line-1,[aria-expanded=&quot;true&quot;]&gt;.uk-navbar-toggle-icon svg&gt;.line-1,[aria-expanded=&quot;true&quot;].uk-navbar-toggle-icon svg&gt;.line-4,[aria-expanded=&quot;true&quot;]&gt;.uk-navbar-toggle-icon svg&gt;.line-4{opacity:0}[aria-expanded=&quot;true&quot;].uk-navbar-toggle-icon svg&gt;.line-1,[aria-expanded=&quot;true&quot;]&gt;.uk-navbar-toggle-icon svg&gt;.line-1{transform:translateY(6px) scaleX(0)}[aria-expanded=&quot;true&quot;].uk-navbar-toggle-icon svg&gt;.line-4,[aria-expanded=&quot;true&quot;]&gt;.uk-navbar-toggle-icon svg&gt;.line-4{transform:translateY(-6px) scaleX(0)}</style><rect width="20" height="2" y="3" class="line-1"/><rect width="20" height="2" y="9" class="line-2"/><rect width="20" height="2" y="9" class="line-3"/><rect width="20" height="2" y="15" class="line-4"/></svg>',Gr='<svg width="40" height="40" viewBox="0 0 40 40"><rect width="1" height="40" x="19" y="0"/><rect width="40" height="1" x="0" y="19"/></svg>',Xr='<svg width="7" height="12" viewBox="0 0 7 12"><polyline fill="none" stroke="#000" stroke-width="1.2" points="1 1 6 6 1 11"/></svg>',Jr='<svg width="7" height="12" viewBox="0 0 7 12"><polyline fill="none" stroke="#000" stroke-width="1.2" points="6 1 1 6 6 11"/></svg>',Eo='<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"/></svg>',Kr='<svg width="40" height="40" viewBox="0 0 40 40"><circle fill="none" stroke="#000" stroke-width="1.8" cx="17.5" cy="17.5" r="16.5"/><line fill="none" stroke="#000" stroke-width="1.8" x1="38" y1="39" x2="29" y2="30"/></svg>',Zr='<svg width="24" height="24" viewBox="0 0 24 24"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10.5" cy="10.5" r="9.5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="23" y1="23" x2="17" y2="17"/></svg>',Qr='<svg width="25" height="40" viewBox="0 0 25 40"><polyline fill="none" stroke="#000" stroke-width="2" points="4.002,38.547 22.527,20.024 4,1.5"/></svg>',ta='<svg width="14" height="24" viewBox="0 0 14 24"><polyline fill="none" stroke="#000" stroke-width="1.4" points="1.225,23 12.775,12 1.225,1"/></svg>',ea='<svg width="25" height="40" viewBox="0 0 25 40"><polyline fill="none" stroke="#000" stroke-width="2" points="20.527,1.5 2,20.024 20.525,38.547"/></svg>',ia='<svg width="14" height="24" viewBox="0 0 14 24"><polyline fill="none" stroke="#000" stroke-width="1.4" points="12.775,1 1.225,12 12.775,23"/></svg>',na='<svg width="30" height="30" viewBox="0 0 30 30"><circle fill="none" stroke="#000" cx="15" cy="15" r="14"/></svg>',oa='<svg width="18" height="10" viewBox="0 0 18 10"><polyline fill="none" stroke="#000" stroke-width="1.2" points="1 9 9 1 17 9"/></svg>',To={props:{i18n:Object},data:{i18n:null},methods:{t(t,...e){var i,n,o;let s=0;return((o=((i=this.i18n)==null?void 0:i[t])||((n=this.$options.i18n)==null?void 0:n[t]))==null?void 0:o.replace(/%s/g,()=>e[s++]||""))||""}}},Co={args:"src",props:{width:Number,height:Number,ratio:Number},data:{ratio:1},connected(){this.svg=this.getSvg().then(t=>{if(!this._connected)return;const e=sa(t,this.$el);return this.svgEl&&e!==this.svgEl&&Ct(this.svgEl),ra.call(this,e,t),this.svgEl=e},st)},disconnected(){this.svg.then(t=>{this._connected||(gi(this.$el)&&(this.$el.hidden=!1),Ct(t),this.svgEl=null)}),this.svg=null},methods:{async getSvg(){}}};function sa(t,e){if(gi(e)||I(e,"canvas")){e.hidden=!0;const n=e.nextElementSibling;return _o(t,n)?n:je(e,t)}const i=e.lastElementChild;return _o(t,i)?i:et(e,t)}function _o(t,e){return I(t,"svg")&&I(e,"svg")&&t.innerHTML===e.innerHTML}function ra(t,e){const i=["width","height"];let n=i.map(s=>this[s]);n.some(s=>s)||(n=i.map(s=>P(e,s)));const o=P(e,"viewBox");o&&!n.some(s=>s)&&(n=o.split(" ").slice(2)),n.forEach((s,r)=>P(t,i[r],x(s)*this.ratio||null))}function Po(t,e){return e&&p(t,"<symbol")&&(t=la(t)[e]||t),m(_t(t)).filter(re)[0]}const aa=/<symbol([^]*?id=(['"])(.+?)\2[^]*?<\/)symbol>/g,la=X(function(t){const e={};let i;for(;i=aa.exec(t);)e[i[3]]=`<svg ${i[1]}svg>`;return e}),ni={spinner:na,totop:oa,marker:Rr,"accordion-icon":zr,"close-icon":qr,"close-large":Lr,"drop-parent-icon":Wr,"nav-parent-icon":Ur,"nav-parent-icon-large":jr,"navbar-parent-icon":Vr,"navbar-toggle-icon":Yr,"overlay-icon":Gr,"pagination-next":Xr,"pagination-previous":Jr,"search-icon":Eo,"search-medium":Zr,"search-large":Kr,"search-toggle-icon":Eo,"slidenav-next":ta,"slidenav-next-large":Qr,"slidenav-previous":ia,"slidenav-previous-large":ea},Qi={install:ba,mixins:[Co],args:"icon",props:{icon:String},isIcon:!0,beforeConnect(){E(this.$el,"uk-icon")},async connected(){const t=await this.svg;t&&(t.ariaHidden=!0)},methods:{async getSvg(){const t=$a(this.icon);if(!t)throw"Icon not found.";return t}}},vt={args:!1,extends:Qi,data:t=>({icon:wt(t.constructor.options.name)}),beforeConnect(){E(this.$el,this.$options.id)}},ca={extends:vt,beforeConnect(){const t=this.$props.icon;this.icon=this.$el.closest(".uk-nav-primary")?`${t}-large`:t}},ha={extends:vt,mixins:[To],i18n:{toggle:"Open Search",submit:"Submit Search"},beforeConnect(){const t=g(this.$el,"uk-search-toggle")||g(this.$el,"uk-navbar-toggle");if(this.icon=t?"search-toggle-icon":g(this.$el,"uk-search-icon")&&this.$el.closest(".uk-search-large")?"search-large":this.$el.closest(".uk-search-medium")?"search-medium":this.$props.icon,!ct(this.$el,"aria-label"))if(t)this.$el.ariaLabel=this.t("toggle");else{const e=this.$el.closest("a,button");e&&(e.ariaLabel=this.t("submit"))}}},ua={extends:vt,beforeConnect(){this.$el.role="status"},methods:{async getSvg(){const t=await Qi.methods.getSvg.call(this);return this.ratio!==1&&c(k("circle",t),"strokeWidth",1/this.ratio),t}}},At={extends:vt,mixins:[To],beforeConnect(){const t=this.$el.closest("a,button");P(t,"role",this.role!==null&&I(t,"a")?"button":this.role);const e=this.t("label");e&&!ct(t,"aria-label")&&P(t,"aria-label",e)}},Oo={extends:At,beforeConnect(){E(this.$el,"uk-slidenav");const t=this.$props.icon;this.icon=g(this.$el,"uk-slidenav-large")?`${t}-large`:t}},fa={extends:At,i18n:{label:"Open menu"},beforeConnect(){const t=this.$el.closest("a,button");t&&(t.ariaExpanded=!1)}},da={extends:At,i18n:{label:"Close"},beforeConnect(){this.icon=`close-${g(this.$el,"uk-close-large")?"large":"icon"}`}},pa={extends:At,i18n:{label:"Open"}},ga={extends:At,i18n:{label:"Back to top"}},ma={extends:At,i18n:{label:"Next page"},data:{role:null}},va={extends:At,i18n:{label:"Previous page"},data:{role:null}},oi={};function ba(t){t.icon.add=(e,i)=>{const n=O(e)?{[e]:i}:e;ce(n,(o,s)=>{ni[s]=o,delete oi[s]}),t._initialized&&Pt(document.body,o=>ce(t.getComponents(o),s=>{s.$options.isIcon&&s.icon in n&&s.$reset()}))}}const wa={twitter:"x"};function $a(t){return t=wa[t]||t,ni[t]?(oi[t]||(oi[t]=Po(ni[ya(t)]||ni[t])),oi[t].cloneNode(!0)):null}function ya(t){return St?hi(hi(t,"left","right"),"previous","next"):t}var xa={args:"dataSrc",props:{dataSrc:String,sources:String,margin:String,target:String,loading:String},data:{dataSrc:"",sources:!1,margin:"50%",target:!1,loading:"lazy"},connected(){this.loading!=="lazy"?this.load():en(this.$el)&&(this.$el.loading="lazy",tn(this.$el))},disconnected(){this.img&&(this.img.onload=""),delete this.img},observe:Dt({handler(t,e){this.load(),e.disconnect()},options:({margin:t})=>({rootMargin:t}),filter:({loading:t})=>t==="lazy",target:({$el:t,$props:e})=>e.target?[t,...ve(e.target,t)]:t}),methods:{load(){if(this.img)return this.img;const t=en(this.$el)?this.$el:Sa(this.$el,this.dataSrc,this.sources);return ue(t,"loading"),tn(this.$el,t.currentSrc),this.img=t}}};function tn(t,e){if(en(t)){const i=A(t);(I(i,"picture")?tt(i):[t]).forEach(o=>Bo(o,o))}else e&&!p(t.style.backgroundImage,e)&&(c(t,"backgroundImage",`url(${bi(e)})`),C(t,Le("load",!1)))}const ka=["data-src","data-srcset","sizes"];function Bo(t,e){for(const i of ka){const n=Ht(t,i);n&&P(e,i.replace(/data-/g,""),n)}}function Sa(t,e,i){const n=new Image;return Ea(n,i),Bo(t,n),n.onload=()=>tn(t,n.currentSrc),n.src=e,n}function Ea(t,e){if(e=Ta(e),e.length){const i=_t("<picture>");for(const n of e){const o=_t("<source>");P(o,n),et(i,o)}et(i,t)}}function Ta(t){if(!t)return[];if(lt(t,"["))try{t=JSON.parse(t)}catch{t=[]}else t=Wi(t);return q(t)||(t=[t]),t.filter(e=>!li(e))}function en(t){return I(t,"img")}var Ca={props:{target:String,selActive:String},data:{target:!1,selActive:!1},connected(){this.isIntersecting=0},computed:{target:({target:t},e)=>t?F(t,e):e},watch:{target:{handler(){queueMicrotask(()=>this.$reset())},immediate:!1}},observe:[Dt({handler(t){this.isIntersecting=t.reduce((e,{isIntersecting:i})=>e+(i?1:this.isIntersecting?-1:0),this.isIntersecting),this.$emit()},target:({target:t})=>t,args:{intersecting:!1}}),_e({target:({target:t})=>t,options:{attributes:!0,attributeFilter:["class"]}}),{target:({target:t})=>t,observe:(t,e)=>{const i=ke([...m(t),document.documentElement],e),n=[w(document,"scroll itemshown itemhidden",e,{passive:!0,capture:!0}),w(document,"show hide transitionstart",o=>(e(),i.observe(o.target))),w(document,"shown hidden transitionend transitioncancel",o=>(e(),i.unobserve(o.target)))];return{observe:i.observe.bind(i),unobserve:i.unobserve.bind(i),disconnect(){i.disconnect(),n.map(o=>o())}}},handler(){this.$emit()}}],update:{read(){if(!this.isIntersecting)return!1;for(const t of m(this.target)){let e=!this.selActive||T(t,this.selActive)?_a(t):"";e!==!1&&Fe(t,"uk-light uk-dark",e)}}}};function _a(t){const e=_(t),i=_(window);if(!Ie(e,i))return!1;const{left:n,top:o,height:s,width:r}=e;let a="";for(const l of[.25,.5,.75]){const h=t.ownerDocument.elementsFromPoint(Math.max(0,Math.min(n+r*l,i.width-1)),Math.max(0,Math.min(o+s/2,i.height-1)));for(const u of h){if(t.contains(u)||!Pa(u)||u.closest('[class*="-leave"]')&&h.some(d=>u!==d&&T(d,'[class*="-enter"]')))continue;const f=c(u,"--uk-inverse");if(f){if(f===a)return`uk-${f}`;a=f;break}}}return a?`uk-${a}`:""}function Pa(t){if(c(t,"visibility")!=="visible")return!1;for(;t;){if(c(t,"opacity")==="0")return!1;t=A(t)}return!0}var Oa={mixins:[it,ii],props:{fill:String},data:{fill:"",clsWrapper:"uk-leader-fill",clsHide:"uk-leader-hide",attrFill:"data-fill"},computed:{fill:({fill:t},e)=>t||c(e,"--uk-leader-fill-content")},connected(){[this.wrapper]=_i(this.$el,`<span class="${this.clsWrapper}">`)},disconnected(){$e(this.wrapper.childNodes)},observe:ft(),update:{read(){return{width:Math.trunc(this.$el.offsetWidth/2),fill:this.fill,hide:!this.matchMedia}},write({width:t,fill:e,hide:i}){R(this.wrapper,this.clsHide,i),P(this.wrapper,this.attrFill,new Array(t).join(e))},events:["resize"]}};function Mo(){return new Promise(t=>requestAnimationFrame(t))}function nn(t){return new Promise(e=>setTimeout(e,t))}const j=[];var Do={mixins:[it,Xi,Zt],props:{selPanel:String,selClose:String,escClose:Boolean,bgClose:Boolean,stack:Boolean,role:String},data:{cls:"uk-open",escClose:!0,bgClose:!0,overlay:!0,stack:!1,role:"dialog"},computed:{panel:({selPanel:t},e)=>k(t,e),transitionElement(){return this.panel}},connected(){const t=this.panel||this.$el;t.role=this.role,this.overlay&&(t.ariaModal=!0)},beforeDisconnect(){p(j,this)&&this.toggleElement(this.$el,!1,!1)},events:[{name:"click",delegate:({selClose:t})=>`${t},a[href*="#"]`,handler(t){const{current:e,defaultPrevented:i}=t,{hash:n}=e;!i&&n&&jt(e)&&!this.$el.contains(k(n))?this.hide():T(e,this.selClose)&&(Kt(t),this.hide())}},{name:"toggle",self:!0,handler(t,e){t.defaultPrevented||(t.preventDefault(),this.target=e==null?void 0:e.$el,this.isToggled()===p(j,this)&&this.toggle())}},{name:"beforeshow",self:!0,handler(t){if(p(j,this))return!1;!this.stack&&j.length?(Promise.all(j.map(e=>e.hide())).then(this.show),t.preventDefault()):j.push(this)}},{name:"show",self:!0,handler(){this.stack&&c(this.$el,"zIndex",x(c(this.$el,"zIndex"))+j.length);const t=[this.overlay&&Ma(this),this.overlay&&vo(this.$el),this.bgClose&&Da(this),this.escClose&&Aa(this)];N(this.$el,"hidden",()=>t.forEach(e=>e&&e()),{self:!0}),E(document.documentElement,this.clsPage),No(this.target,!0)}},{name:"shown",self:!0,handler(){ze(this.$el)||(this.$el.tabIndex=-1),T(this.$el,":focus-within")||this.$el.focus()}},{name:"hidden",self:!0,handler(){p(j,this)&&j.splice(j.indexOf(this),1),c(this.$el,"zIndex","");const{target:t}=this;j.some(e=>e.clsPage===this.clsPage)||(D(document.documentElement,this.clsPage),queueMicrotask(()=>{ze(t)&&t.focus({preventScroll:!0})})),No(t,!1),this.target=null}}],methods:{toggle(){return this.isToggled()?this.hide():this.show()},async show(){return this.container&&A(this.$el)!==this.container&&(et(this.container,this.$el),await Mo()),this.toggleElement(this.$el,!0,Ao)},hide(){return this.toggleElement(this.$el,!1,Ao)}}};function Ao(t,e,{transitionElement:i,_toggle:n}){return new Promise((o,s)=>N(t,"show hide",()=>{var r;(r=t._reject)==null||r.call(t),t._reject=s,n(t,e);const a=N(i,"transitionstart",()=>{N(i,"transitionend transitioncancel",o,{self:!0}),clearTimeout(l)},{self:!0}),l=setTimeout(()=>{a(),o()},Ba(c(i,"transitionDuration")))})).then(()=>delete t._reject)}function Ba(t){return t?ie(t,"ms")?x(t):x(t)*1e3:0}function Ma(t){return w(document,"focusin",e=>{if(le(j)!==t||t.$el.contains(e.target))return;const{left:i,top:n,width:o,height:s}=_(e.target),r=document.elementFromPoint(i+o/2,n+s/2);r&&(e.target.contains(r)||r.contains(e.target))||t.$el.focus()})}function Da(t){return w(document,Et,({target:e})=>{le(j)!==t||t.overlay&&!t.$el.contains(e)||!t.panel||t.panel.contains(e)||N(document,`${Tt} ${fe} scroll`,({defaultPrevented:i,type:n,target:o})=>{!i&&n===Tt&&e===o&&t.hide()},!0)})}function Aa(t){return w(document,"keydown",e=>{e.keyCode===27&&le(j)===t&&t.hide()})}function No(t,e){t!=null&&t.ariaExpanded&&(t.ariaExpanded=e)}var Na={install:Ia,mixins:[Do],data:{clsPage:"uk-modal-page",selPanel:".uk-modal-dialog",selClose:'[class*="uk-modal-close"]'},events:[{name:"fullscreenchange webkitendfullscreen",capture:!0,handler(t){I(t.target,"video")&&this.isToggled()&&!document.fullscreenElement&&this.hide()}},{name:"show",self:!0,handler(){g(this.panel,"uk-margin-auto-vertical")?E(this.$el,"uk-flex"):c(this.$el,"display","block"),ut(this.$el)}},{name:"hidden",self:!0,handler(){c(this.$el,"display",""),D(this.$el,"uk-flex")}}]};function Ia({modal:t}){t.dialog=function(i,n){const o=t(k(`<div><div class="uk-modal-dialog">${i}</div></div>`),{stack:!0,role:"alertdialog",...n});return o.show(),w(o.$el,"hidden",async()=>{await Promise.resolve(),o.$destroy(!0)},{self:!0}),o},t.alert=function(i,n){return e(({i18n:o})=>`<div class="uk-modal-body">${O(i)?i:Re(i)}</div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-primary uk-modal-close" type="button" autofocus>${o.ok}</button> </div>`,n)},t.confirm=function(i,n){return e(({i18n:o})=>`<form> <div class="uk-modal-body">${O(i)?i:Re(i)}</div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-default uk-modal-close" type="button">${o.cancel}</button> <button class="uk-button uk-button-primary" autofocus>${o.ok}</button> </div> </form>`,n,()=>Promise.reject())},t.prompt=function(i,n,o){const s=e(({i18n:l})=>`<form class="uk-form-stacked"> <div class="uk-modal-body"> <label>${O(i)?i:Re(i)}</label> <input class="uk-input" autofocus> </div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-default uk-modal-close" type="button">${l.cancel}</button> <button class="uk-button uk-button-primary">${l.ok}</button> </div> </form>`,o,()=>null,()=>a.value),{$el:r}=s.dialog,a=k("input",r);return a.value=n||"",w(r,"show",()=>a.select()),s},t.i18n={ok:"Ok",cancel:"Cancel"};function e(i,n,o=st,s=st){n={bgClose:!1,escClose:!0,...n,i18n:{...t.i18n,...n==null?void 0:n.i18n}};const r=t.dialog(i(n),n);return ne(new Promise(a=>{const l=w(r.$el,"hide",()=>a(o()));w(r.$el,"submit","form",h=>{h.preventDefault(),a(s(r)),l(),r.hide()})}),{dialog:r})}}var Fa={extends:fo,data:{targets:"> .uk-parent",toggle:"> a",content:"> ul"}};const on="uk-navbar-transparent";var Ha={extends:$o,props:{dropbarTransparentMode:Boolean},data:{flip:!1,autoUpdate:!1,delayShow:200,clsDrop:"uk-navbar-dropdown",selNavItem:".uk-navbar-nav > li > a,a.uk-navbar-item,button.uk-navbar-item,.uk-navbar-item a,.uk-navbar-item button,.uk-navbar-toggle",dropbarTransparentMode:!1},computed:{navbarContainer:(t,e)=>e.closest(".uk-navbar-container")},watch:{items(){const t=g(this.$el,"uk-navbar-justify"),e=F(".uk-navbar-nav, .uk-navbar-left, .uk-navbar-right",this.$el);for(const i of e){const n=t?F(".uk-navbar-nav > li > a, .uk-navbar-item, .uk-navbar-toggle",i).length:"";c(i,"flexGrow",n)}}},events:[{name:"show",el:({dropContainer:t})=>t,handler({target:t}){this.getTransparentMode(t)==="remove"&&g(this.navbarContainer,on)&&(D(this.navbarContainer,on),this._transparent=!0)}},{name:"hide",el:({dropContainer:t})=>t,async handler(){await nn(),this._transparent&&(!z||!this.dropContainer.contains(z.$el))&&(E(this.navbarContainer,on),this._transparent=null)}}],methods:{getTransparentMode(t){if(!this.navbarContainer)return;if(this.dropbar&&this.isDropbarDrop(t))return this.dropbarTransparentMode;const e=this.getDropdown(t);if(e&&g(t,"uk-dropbar"))return e.inset?"behind":"remove"},getDropbarOffset(t){const{top:e,height:i}=v(this.navbarContainer);return e+(this.dropbarTransparentMode==="behind"?0:i+t)}}},za={mixins:[Do],args:"mode",props:{mode:String,flip:Boolean,overlay:Boolean,swiping:Boolean},data:{mode:"slide",flip:!1,overlay:!1,clsPage:"uk-offcanvas-page",clsContainer:"uk-offcanvas-container",selPanel:".uk-offcanvas-bar",clsFlip:"uk-offcanvas-flip",clsContainerAnimation:"uk-offcanvas-container-animation",clsSidebarAnimation:"uk-offcanvas-bar-animation",clsMode:"uk-offcanvas",clsOverlay:"uk-offcanvas-overlay",selClose:".uk-offcanvas-close",container:!1,swiping:!0},computed:{clsFlip:({flip:t,clsFlip:e})=>t?e:"",clsOverlay:({overlay:t,clsOverlay:e})=>t?e:"",clsMode:({mode:t,clsMode:e})=>`${e}-${t}`,clsSidebarAnimation:({mode:t,clsSidebarAnimation:e})=>t==="none"||t==="reveal"?"":e,clsContainerAnimation:({mode:t,clsContainerAnimation:e})=>t!=="push"&&t!=="reveal"?"":e,transitionElement({mode:t}){return t==="reveal"?A(this.panel):this.panel}},observe:uo({filter:({swiping:t})=>t}),update:{read(){this.isToggled()&&!L(this.$el)&&this.hide()},events:["resize"]},events:[{name:"touchmove",self:!0,passive:!1,filter:({overlay:t})=>t,handler(t){t.cancelable&&t.preventDefault()}},{name:"show",self:!0,handler(){this.mode==="reveal"&&!g(A(this.panel),this.clsMode)&&E(Ve(this.panel,"<div>"),this.clsMode);const{body:t,scrollingElement:e}=document;E(t,this.clsContainer,this.clsFlip),c(t,"touchAction","pan-y pinch-zoom"),c(this.$el,"display","block"),c(this.panel,"maxWidth",e.clientWidth),E(this.$el,this.clsOverlay),E(this.panel,this.clsSidebarAnimation,this.mode==="reveal"?"":this.clsMode),ut(t),E(t,this.clsContainerAnimation),this.clsContainerAnimation&&qa()}},{name:"hide",self:!0,handler(){D(document.body,this.clsContainerAnimation),c(document.body,"touchAction","")}},{name:"hidden",self:!0,handler(){this.clsContainerAnimation&&La(),this.mode==="reveal"&&g(A(this.panel),this.clsMode)&&$e(this.panel),D(this.panel,this.clsSidebarAnimation,this.clsMode),D(this.$el,this.clsOverlay),c(this.$el,"display",""),c(this.panel,"maxWidth",""),D(document.body,this.clsContainer,this.clsFlip)}},{name:"swipeLeft swipeRight",handler(t){this.isToggled()&&ie(t.type,"Left")^this.flip&&this.hide()}}]};function qa(){Io().content+=",user-scalable=0"}function La(){const t=Io();t.content=t.content.replace(/,user-scalable=0$/,"")}function Io(){return k('meta[name="viewport"]',document.head)||et(document.head,'<meta name="viewport">')}var Wa={mixins:[it],props:{selContainer:String,selContent:String,minHeight:Number},data:{selContainer:".uk-modal",selContent:".uk-modal-dialog",minHeight:150},computed:{container:({selContainer:t},e)=>e.closest(t),content:({selContent:t},e)=>e.closest(t)},observe:ft({target:({container:t,content:e})=>[t,e]}),update:{read(){return!this.content||!this.container||!L(this.$el)?!1:{max:Math.max(this.minHeight,ut(this.container)-(_(this.content).height-ut(this.$el)))}},write({max:t}){c(this.$el,{minHeight:this.minHeight,maxHeight:t})},events:["resize"]}},Ra={data:{threshold:5,fadeDuration:.05},events:[{name:"scroll",self:!0,passive:!0,handler(){this.$emit()}},{name:Et,handler:ja}],observe:[_e({options:{subtree:!0,childList:!0}}),ft({target:({$el:t})=>[t,...tt(t)]})],update:{read(){const t=[];for(const e of["Width","Height"])t.push(this.$el[`scroll${e}`]-this.$el[`client${e}`]);return{overflow:t}},write({overflow:t}){for(let e=0;e<2;e++)if(R(this.$el,`${this.$options.id}-${e?"vertical":"horizontal"}`,t[e]&&!t[e-1]),!t[e-1]){const i=e?"Top":"Left",n=t[e]?this.$el[`scroll${i}`]/t[e]:0,o=s=>t[e]?ot((this.fadeDuration-s)/this.fadeDuration):1;c(this.$el,{"--uk-overflow-fade-start-opacity":o(n),"--uk-overflow-fade-end-opacity":o(1-n)})}},events:["resize"]}};function ja(t){const{target:e,button:i,defaultPrevented:n}=t;if(n||i>0||ht(t)||e.closest(de)||He(e))return;t.preventDefault();const o={passive:!1,capture:!0},{$el:s,threshold:r,$options:a}=this;let l;const h=w(document,pi,u(t),o);w(document,[Tt,fe],f,{capture:!0,once:!0});function u(d){let y=gt(d),b=y,$=b;return function(S){$=b,b=gt(S);const Y=g(s,`${a.id}-vertical`),nt=Y?"y":"x";if(l||(l=Math.abs(b[nt]-y[nt])>r),l){const bt=$[nt]-b[nt];s[Y?"scrollTop":"scrollLeft"]+=bt}}}function f(){h(),l&&setTimeout(w(s,"click",d=>d.preventDefault(),o))}}var Ua={props:["width","height"],connected(){E(this.$el,"uk-responsive-width"),c(this.$el,"aspectRatio",`${this.width}/${this.height}`)}},Va={props:{offset:Number},data:{offset:0},connected(){Ya(this)},disconnected(){Ga(this)},methods:{async scrollTo(t){t=t&&k(t)||document.body,C(this.$el,"beforescroll",[this,t])&&(await zn(t,{offset:this.offset}),C(this.$el,"scrolled",[this,t]))}}};const Oe=new Set;function Ya(t){Oe.size||w(document,"click",Fo),Oe.add(t)}function Ga(t){Oe.delete(t),Oe.size||wi(document,"click",Fo)}function Fo(t){if(!t.defaultPrevented)for(const e of Oe)e.$el.contains(t.target)&&jt(e.$el)&&(t.preventDefault(),window.location.href!==e.$el.href&&window.history.pushState({},"",e.$el.href),e.scrollTo(qe(e.$el)))}const sn="uk-scrollspy-inview";var Xa={args:"cls",props:{cls:String,target:String,hidden:Boolean,margin:String,repeat:Boolean,delay:Number},data:()=>({cls:"",target:!1,hidden:!0,margin:"-1px",repeat:!1,delay:0}),computed:{elements:({target:t},e)=>t?F(t,e):[e]},watch:{elements(t){this.hidden&&c(ge(t,`:not(.${sn})`),"opacity",0)}},connected(){this.elementData=new Map},disconnected(){for(const[t,e]of this.elementData.entries())D(t,sn,e.cls||"");delete this.elementData},observe:Dt({target:({elements:t})=>t,handler(t){const e=this.elementData;for(const{target:i,isIntersecting:n}of t){e.has(i)||e.set(i,{cls:Ht(i,"uk-scrollspy-class")||this.cls});const o=e.get(i);!this.repeat&&o.show||(o.show=n)}this.$emit()},options:({margin:t})=>({rootMargin:t}),args:{intersecting:!1}}),update:[{write(t){for(const[e,i]of this.elementData.entries())i.show&&!i.inview&&!i.queued?(i.queued=!0,t.promise=(t.promise||Promise.resolve()).then(async()=>{await nn(i.show?this.delay:0),this.toggle(e,!0),setTimeout(()=>{i.queued=!1,this.$emit()},300)})):!i.show&&i.inview&&!i.queued&&this.repeat&&this.toggle(e,!1)}}],methods:{toggle(t,e){var i,n;const o=(i=this.elementData)==null?void 0:i.get(t);if(!o)return;(n=o.off)==null||n.call(o),c(t,"opacity",!e&&this.hidden?0:""),R(t,sn,e),R(t,o.cls);let s;if(s=o.cls.match(/\buk-animation-[\w-]+/g)){const r=()=>D(t,s);e?o.off=N(t,"animationcancel animationend",r,{self:!0}):r()}C(t,e?"inview":"outview"),o.inview=e}}},Ja={props:{cls:String,closest:Boolean,scroll:Boolean,target:String,offset:Number},data:{cls:"uk-active",closest:!1,scroll:!1,target:'a[href]:not([role="button"])',offset:0},computed:{links:{get({target:t},e){return F(t,e).filter(qe)},observe:()=>"*"},targets(){return this.links.map(t=>qe(t))},elements({closest:t}){return this.links.map(e=>e.closest(t||"*"))}},watch:{links(t){this.scroll&&this.$create("scroll",t,{offset:this.offset})}},observe:[Dt(),Yi()],update:[{read(){const{targets:t}=this,{length:e}=t;if(!e||!L(this.$el))return!1;const i=Bt(t,!0),{scrollTop:n,scrollHeight:o}=i,s=Z(i),r=o-s.height;let a=!1;if(n>=r)a=e-1;else{const l=this.offset+_(Hi()).height+s.height*.1;for(let h=0;h<t.length&&!(v(t[h]).top-s.top-l>0);h++)a=+h}return{active:a}},write({active:t}){const{elements:e}=this,i=t!==!1&&!g(e[t],this.cls);this.links.forEach(n=>n.blur());for(let n=0;n<e.length;n++)R(e[n],this.cls,+n===t);i&&C(this.$el,"active",[t,e[t]])},events:["scroll","resize"]}]},Ka={mixins:[it,ii],props:{position:String,top:null,bottom:null,start:null,end:null,offset:String,offsetEnd:String,overflowFlip:Boolean,animation:String,clsActive:String,clsInactive:String,clsFixed:String,clsBelow:String,selTarget:String,showOnUp:Boolean,targetOffset:Number},data:{position:"top",top:!1,bottom:!1,start:!1,end:!1,offset:0,offsetEnd:0,overflowFlip:!1,animation:"",clsActive:"uk-active",clsInactive:"",clsFixed:"uk-sticky-fixed",clsBelow:"uk-sticky-below",selTarget:"",showOnUp:!1,targetOffset:!1},computed:{target:({selTarget:t},e)=>t&&k(t,e)||e},connected(){this.start=Ho(this.start||this.top),this.end=Ho(this.end||this.bottom),this.placeholder=k("+ .uk-sticky-placeholder",this.$el)||k('<div class="uk-sticky-placeholder"></div>'),this.isFixed=!1,this.setActive(!1)},beforeDisconnect(){this.isFixed&&(this.hide(),D(this.target,this.clsInactive)),an(this.$el),Ct(this.placeholder),this.placeholder=null},observe:[ho(),Yi({target:()=>document.scrollingElement}),ft({target:({$el:t})=>[t,si(t),document.scrollingElement],handler(t){this.$emit(this._data.resized&&t.some(({target:e})=>e===si(this.$el))?"update":"resize"),this._data.resized=!0}})],events:[{name:"load hashchange popstate",el:()=>window,filter:({targetOffset:t})=>t!==!1,async handler(){const{scrollingElement:t}=document;if(!location.hash||t.scrollTop===0)return;await nn();const e=v(k(location.hash)),i=v(this.$el);this.isFixed&&Ie(e,i)&&(t.scrollTop=Math.ceil(e.top-i.height-K(this.targetOffset,"height",this.placeholder)-K(this.offset,"height",this.placeholder)))}}],update:[{read({height:t,width:e,margin:i,sticky:n},o){if(this.inactive=!this.matchMedia||!L(this.$el)||!this.$el.offsetHeight,this.inactive)return;const s=ut(window),r=Math.max(0,document.scrollingElement.scrollHeight-s);if(!r){this.inactive=!0;return}const a=this.isFixed&&o.has("update");a&&(cn(this.target),this.hide()),this.active||({height:t,width:e}=_(this.$el),i=c(this.$el,"margin")),a&&this.show();const l=K("100vh","height");let h=this.position;this.overflowFlip&&t>l&&(h=h==="top"?"bottom":"top");const u=this.isFixed?this.placeholder:this.$el;let[f,d]=[this.offset,this.offsetEnd].map(bt=>K(bt,"height",n?this.$el:u));h==="bottom"&&(t<s||this.overflowFlip)&&(f+=s-t);const y=t+f+d,b=this.overflowFlip?0:Math.max(0,y-l),$=v(u).top-new DOMMatrix(c(u,"transform")).m42,S=_(this.$el).height,Y=(this.start===!1?$:rn(this.start,this.$el,$))-f,nt=this.end===!1?r:Math.min(r,rn(this.end,this.$el,$+t,!0)-S-f+b);return n=!this.showOnUp&&Y+f===$&&nt===Math.min(r,rn(!0,this.$el,0,!0)-S-f+b)&&c(si(this.$el),"overflowY")!=="hidden",{start:Y,end:nt,offset:f,overflow:b,height:t,elHeight:S,width:e,margin:i,top:ye(u)[0],sticky:n,viewport:l,maxScrollHeight:r}},write({height:t,width:e,margin:i,offset:n,sticky:o}){if((this.inactive||o||!this.isFixed)&&an(this.$el),this.inactive)return;o&&(t=e=i=0,c(this.$el,{position:"sticky",top:n}));const{placeholder:s}=this;c(s,{height:t,width:e,margin:i}),(A(s)!==A(this.$el)||o^Rt(s)<Rt(this.$el))&&((o?Ci:je)(this.$el,s),s.hidden=!0)},events:["resize"]},{read({scroll:t=0,dir:e="down",overflow:i,overflowScroll:n=0,start:o,end:s,elHeight:r,height:a,sticky:l,maxScrollHeight:h}){const u=Math.min(document.scrollingElement.scrollTop,h),f=t<=u?"down":"up",d=this.isFixed?this.placeholder:this.$el;return{dir:f,prevDir:e,scroll:u,prevScroll:t,below:u>v(d).top+(l?Math.min(a,r):a),offsetParentTop:v(d.offsetParent).top,overflowScroll:ot(n+ot(u,o,s)-ot(t,o,s),0,i)}},write(t,e){const i=e.has("scroll"),{initTimestamp:n=0,dir:o,prevDir:s,scroll:r,prevScroll:a=0,top:l,start:h,below:u}=t;if(r<0||r===a&&i||this.showOnUp&&!i&&!this.isFixed)return;const f=Date.now();if((f-n>300||o!==s)&&(t.initScroll=r,t.initTimestamp=f),!(this.showOnUp&&!this.isFixed&&Math.abs(t.initScroll-r)<=30&&Math.abs(a-r)<=10))if(this.inactive||r<h||this.showOnUp&&(r<=h||o==="down"&&i||o==="up"&&!this.isFixed&&!u)){if(!this.isFixed){mt.inProgress(this.$el)&&l>r&&(mt.cancel(this.$el),this.hide());return}if(this.animation&&u){if(g(this.$el,"uk-animation-leave"))return;mt.out(this.$el,this.animation).then(()=>this.hide(),st)}else this.hide()}else this.isFixed?this.update():this.animation&&u?(this.show(),mt.in(this.$el,this.animation).catch(st)):(cn(this.target),this.show())},events:["resize","resizeViewport","scroll"]}],methods:{show(){this.isFixed=!0,this.update(),this.placeholder.hidden=!1},hide(){const{offset:t,sticky:e}=this._data;this.setActive(!1),D(this.$el,this.clsFixed,this.clsBelow),e?c(this.$el,"top",t):an(this.$el),this.placeholder.hidden=!0,this.isFixed=!1},update(){let{width:t,scroll:e=0,overflow:i,overflowScroll:n=0,start:o,end:s,offset:r,offsetParentTop:a,sticky:l,below:h}=this._data;const u=o!==0||e>o;if(!l){let f="fixed";e>s&&(r+=s-a+n-i,f="absolute"),c(this.$el,{position:f,width:t,marginTop:0},"important")}c(this.$el,"top",r-n),this.setActive(u),R(this.$el,this.clsBelow,h),E(this.$el,this.clsFixed)},setActive(t){const e=this.active;this.active=t,t?(Fe(this.target,this.clsInactive,this.clsActive),e!==t&&C(this.$el,"active")):(Fe(this.target,this.clsActive,this.clsInactive),e!==t&&(cn(this.target),C(this.$el,"inactive")))}}};function rn(t,e,i,n){if(!t)return 0;if(pt(t)||O(t)&&t.match(/^-?\d/))return i+K(t,"height",e,!0);{const o=t===!0?si(e):W(t,e);return v(o).bottom-(n&&(o!=null&&o.contains(e))?x(c(o,"paddingBottom"))+x(c(o,"borderBottomWidth")):0)}}function Ho(t){return t==="true"?!0:t==="false"?!1:t}function an(t){c(t,{position:"",top:"",marginTop:"",width:""})}const ln="uk-transition-disable";async function cn(t){g(t,ln)||(E(t,ln),await Mo(),D(t,ln))}function si(t){for(;t=A(t);)if(L(t))return t}function Za(t){return L(t)?Math.ceil(Math.max(0,...F("[stroke]",t).map(e=>{var i;return((i=e.getTotalLength)==null?void 0:i.call(e))||0}))):0}var Qa={mixins:[Co],args:"src",props:{src:String,icon:String,attributes:"list",strokeAnimation:Boolean},data:{strokeAnimation:!1},observe:[_e({async handler(){const t=await this.svg;t&&zo.call(this,t)},options:{attributes:!0,attributeFilter:["id","class","style"]}})],async connected(){p(this.src,"#")&&([this.src,this.icon]=this.src.split("#",2));const t=await this.svg;t&&(zo.call(this,t),this.strokeAnimation&&el(t))},methods:{async getSvg(){return I(this.$el,"img")&&!this.$el.complete&&this.$el.loading==="lazy"&&await new Promise(t=>N(this.$el,"load",t)),Po(await tl(this.src),this.icon)||Promise.reject("SVG not found.")}}};function zo(t){const{$el:e}=this;E(t,P(e,"class"),"uk-svg");for(let i=0;i<e.style.length;i++){const n=e.style[i];c(t,n,c(e,n))}for(const i in this.attributes){const[n,o]=this.attributes[i].split(":",2);P(t,n,o)}t.ariaHidden=this.$el.ariaHidden,this.$el.id||ue(t,"id")}const tl=X(async t=>{if(t){const e=await fetch(t);if(e.headers.get("Content-Type")==="image/svg+xml")return e.text()}return Promise.reject()});function el(t){const e=Za(t);e&&c(t,"--uk-animation-stroke",e)}const hn=".uk-disabled *, .uk-disabled, [disabled]";var qo={mixins:[Zt],args:"connect",props:{connect:String,toggle:String,itemNav:String,active:Number,followFocus:Boolean,swiping:Boolean},data:{connect:"~.uk-switcher",toggle:"> * > :first-child",itemNav:!1,active:0,cls:"uk-active",attrItem:"uk-switcher-item",selVertical:".uk-nav",followFocus:!1,swiping:!0},computed:{connects:{get:({connect:t},e)=>ve(t,e),observe:({connect:t})=>t},connectChildren(){return this.connects.map(t=>tt(t)).flat()},toggles:({toggle:t},e)=>F(t,e),children(t,e){return tt(e).filter(i=>this.toggles.some(n=>i.contains(n)))}},watch:{connects(t){this.swiping&&c(t,"touchAction","pan-y pinch-zoom"),this.$emit()},connectChildren(){let t=Math.max(0,this.index());for(const e of this.connects)tt(e).forEach((i,n)=>R(i,this.cls,n===t));this.$emit()},toggles(){this.$emit();const t=this.index();this.show(~t?t:this.next(this.active))}},connected(){this.$el.role="tablist"},observe:[Vi({targets:({connectChildren:t})=>t}),uo({target:({connects:t})=>t,filter:({swiping:t})=>t})],events:[{name:"click keydown",delegate:({toggle:t})=>t,handler(t){!T(t.current,hn)&&(t.type==="click"||t.keyCode===B.SPACE)&&(Kt(t),this.show(t.current))}},{name:"keydown",delegate:({toggle:t})=>t,handler(t){const{current:e,keyCode:i}=t,n=T(this.$el,this.selVertical);let o=i===B.HOME?0:i===B.END?"last":i===B.LEFT&&!n||i===B.UP&&n?"previous":i===B.RIGHT&&!n||i===B.DOWN&&n?"next":-1;if(~o){t.preventDefault();const s=this.toggles[this.next(o,this.toggles.indexOf(e))];s.focus(),this.followFocus&&this.show(s)}}},{name:"click",el:({$el:t,connects:e,itemNav:i})=>e.concat(i?ve(i,t):[]),delegate:({attrItem:t})=>`[${t}],[data-${t}]`,handler(t){t.target.closest("a,button")&&(Kt(t),this.show(Ht(t.current,this.attrItem)))}},{name:"swipeRight swipeLeft",filter:({swiping:t})=>t,el:({connects:t})=>t,handler({type:t}){this.show(ie(t,"Left")?"next":"previous")}}],update(){var t;for(const e of this.connects)I(e,"ul")&&(e.role="presentation");P(tt(this.$el),"role","presentation");for(const e in this.toggles){const i=this.toggles[e],n=(t=this.connects[0])==null?void 0:t.children[e];i.role="tab",n&&(i.id=ti(this,i),n.id=ti(this,n),i.ariaControls=n.id,P(n,{role:"tabpanel","aria-labelledby":i.id}))}P(this.$el,"aria-orientation",T(this.$el,this.selVertical)?"vertical":null)},methods:{index(){return Be(this.children,t=>g(t,this.cls))},next(t,e=this.index()){if(pt(t))for(let n=0;n<this.toggles.length;n++){let o=yt(n+ +t,this.toggles);if(!T(this.toggles[o],hn))return o}const i=this.toggles.filter(n=>!T(n,hn));return yt(i[yt(t,i,i.indexOf(this.toggles[e]))],this.toggles)},show(t){const e=this.index(),i=this.next(t);this.children.forEach((o,s)=>{R(o,this.cls,i===s),P(this.toggles[s],{"aria-selected":i===s,tabindex:i===s?null:-1})});const n=e>=0&&e!==i;this.connects.forEach(async({children:o})=>{const s=Me(o).filter((r,a)=>a!==i&&g(r,this.cls));await this.toggleElement(s,!1,n)&&await this.toggleElement(o[i],!0,n)})}}},il={mixins:[it],extends:qo,props:{media:Boolean},data:{media:960,attrItem:"uk-tab-item",selVertical:".uk-tab-left,.uk-tab-right"},connected(){const t=g(this.$el,"uk-tab-left")?"uk-tab-left":g(this.$el,"uk-tab-right")?"uk-tab-right":!1;t&&this.$create("toggle",this.$el,{cls:t,mode:"media",media:this.media})}},nl={mixins:[ii,Zt],args:"target",props:{href:String,target:null,mode:"list",queued:Boolean},data:{href:!1,target:!1,mode:"click",queued:!0},computed:{target:{get:({target:t},e)=>(t=ve(t||e.hash,e),t.length?t:[e]),observe:({target:t})=>t}},connected(){p(this.mode,"media")||(ze(this.$el)||(this.$el.tabIndex=0),!this.cls&&I(this.$el,"a")&&(this.$el.role="button"))},observe:Vi({targets:({target:t})=>t}),events:[{name:Et,filter:({mode:t})=>p(t,"hover"),handler(t){this._preventClick=null,!(!ht(t)||Ft(this._showState)||this.$el.disabled)&&(C(this.$el,"focus"),N(document,Et,()=>C(this.$el,"blur"),!0,e=>!this.$el.contains(e.target)),p(this.mode,"click")&&(this._preventClick=!0))}},{name:`${Lt} ${Wt} focus blur`,filter:({mode:t})=>p(t,"hover"),handler(t){if(ht(t)||this.$el.disabled||document.readyState==="loading")return;const e=p([Lt,"focus"],t.type),i=this.isToggled(this.target);if(!e&&(!Ft(this._showState)||t.type===Wt&&T(this.$el,":focus")||t.type==="blur"&&T(this.$el,":hover"))){i===this._showState&&(this._showState=null);return}e&&Ft(this._showState)&&i!==this._showState||(this._showState=e?i:null,this.toggle(`toggle${e?"show":"hide"}`))}},{name:"keydown",filter:({$el:t,mode:e})=>p(e,"click")&&!I(t,"input"),handler(t){(t.keyCode===B.SPACE||t.keyCode===B.ENTER)&&(t.preventDefault(),this.$el.click())}},{name:"click",filter:({mode:t})=>["click","hover"].some(e=>p(t,e)),handler(t){if(t.defaultPrevented)return;const e=t.target.closest("a[href]"),i=jt(e)&&(!e.hash||T(this.target,e.hash));(this._preventClick||i||e&&!this.isToggled(this.target))&&t.preventDefault(),!this._preventClick&&p(this.mode,"click")&&(!e||i||t.defaultPrevented)&&this.toggle()}},{name:"mediachange",filter:({mode:t})=>p(t,"media"),el:({target:t})=>t,handler(t,e){e.matches^this.isToggled(this.target)&&this.toggle()}}],methods:{async toggle(t){if(!C(this.target,t||"toggle",[this]))return;if(ct(this.$el,"aria-expanded")&&(this.$el.ariaExpanded=!this.isToggled(this.target)),!this.queued)return this.toggleElement(this.target);const e=this.target.filter(n=>g(n,this.clsLeave));if(e.length){for(const n of this.target){const o=p(e,n);this.toggleElement(n,o,o)}return}const i=this.target.filter(this.isToggled);await this.toggleElement(i,!1)&&await this.toggleElement(this.target.filter(n=>!p(i,n)),!0)}}},ol=Object.freeze({__proto__:null,Accordion:fo,AccordionIcon:vt,Alert:mr,Close:da,Cover:wr,Drop:bo,DropParentIcon:vt,Dropdown:bo,Dropnav:$o,FormCustom:_r,Grid:Pr,HeightMatch:Dr,HeightPlaceholder:Ir,HeightViewport:Hr,Icon:Qi,Img:xa,Inverse:Ca,Leader:Oa,Margin:xo,Marker:pa,Modal:Na,Nav:Fa,NavParentIcon:ca,Navbar:Ha,NavbarParentIcon:vt,NavbarToggleIcon:fa,Offcanvas:za,OverflowAuto:Wa,OverflowFade:Ra,OverlayIcon:vt,PaginationNext:ma,PaginationPrevious:va,Responsive:Ua,Scroll:Va,Scrollspy:Xa,ScrollspyNav:Ja,SearchIcon:ha,SlidenavNext:Oo,SlidenavPrevious:Oo,Spinner:ua,Sticky:Ka,Svg:Qa,Switcher:qo,Tab:il,Toggle:nl,Totop:ga,Video:po});return ce(ol,(t,e)=>Q.component(e,t)),nr(Q),Q}));
1
+ /*! UIkit 3.25.17-dev.8c70e44 | https://www.getuikit.com | (c) 2014 - 2026 YOOtheme | MIT License */(function(ie,ne){typeof exports=="object"&&typeof module<"u"?module.exports=ne():typeof define=="function"&&define.amd?define("uikit",ne):(ie=typeof globalThis<"u"?globalThis:ie||self,ie.UIkit=ne())})(this,(function(){"use strict";const{hasOwnProperty:ie,toString:ne}=Object.prototype;function lt(t,e){return ie.call(t,e)}const gs=/\B([A-Z])/g,$t=J(t=>t.replace(gs,"-$1").toLowerCase()),ms=/-(\w)/g,oe=J(t=>(t.charAt(0).toLowerCase()+t.slice(1)).replace(ms,(e,i)=>i.toUpperCase())),yt=J(t=>t.charAt(0).toUpperCase()+t.slice(1));function ct(t,e){var i;return(i=t==null?void 0:t.startsWith)==null?void 0:i.call(t,e)}function se(t,e){var i;return(i=t==null?void 0:t.endsWith)==null?void 0:i.call(t,e)}function p(t,e){var i;return(i=t==null?void 0:t.includes)==null?void 0:i.call(t,e)}function dt(t,e){var i;return(i=t==null?void 0:t.findIndex)==null?void 0:i.call(t,e)}const{isArray:q,from:qe}=Array,{assign:re}=Object;function X(t){return typeof t=="function"}function pt(t){return t!==null&&typeof t=="object"}function ae(t){return ne.call(t)==="[object Object]"}function Le(t){return pt(t)&&t===t.window}function le(t){return vi(t)===9}function We(t){return vi(t)>=1}function ce(t){return vi(t)===1}function vi(t){return!Le(t)&&pt(t)&&t.nodeType}function qt(t){return typeof t=="boolean"}function O(t){return typeof t=="string"}function Re(t){return typeof t=="number"}function gt(t){return Re(t)||O(t)&&!isNaN(t-parseFloat(t))}function bi(t){return!(q(t)?t.length:pt(t)&&Object.keys(t).length)}function V(t){return t===void 0}function wi(t){return qt(t)?t:t==="true"||t==="1"||t===""?!0:t==="false"||t==="0"?!1:t}function he(t){const e=Number(t);return isNaN(e)?!1:e}function v(t){return parseFloat(t)||0}function D(t){return t&&b(t)[0]}function b(t){return We(t)?[t]:Array.from(t||[]).filter(We)}function xt(t){if(Le(t))return t;t=D(t);const e=le(t)?t:t==null?void 0:t.ownerDocument;return(e==null?void 0:e.defaultView)||window}function Tn(t,e){return t===e||pt(t)&&pt(e)&&Object.keys(t).length===Object.keys(e).length&&fe(t,(i,n)=>i===e[n])}function $i(t,e,i){return t.replace(new RegExp(`${e}|${i}`,"g"),n=>n===e?i:e)}function ue(t){return t[t.length-1]}function fe(t,e){for(const i in t)if(e(t[i],i)===!1)return!1;return!0}function vs(t,e){return t.slice().sort(({[e]:i=0},{[e]:n=0})=>i>n?1:n>i?-1:0)}function de(t,e){return t.reduce((i,n)=>i+v(X(e)?e(n):n[e]),0)}function bs(t,e){const i=new Set;return t.filter(({[e]:n})=>i.has(n)?!1:i.add(n))}function je(t,e){return Object.fromEntries(e.map(i=>[i,t[i]]))}function st(t,e=0,i=1){return Math.min(Math.max(he(t)||0,e),i)}function Y(){}function Ue(...t){return[["bottom","top"],["right","left"]].every(([e,i])=>Math.min(...t.map(({[e]:n})=>n))-Math.max(...t.map(({[i]:n})=>n))>0)}function yi(t,e){return t.x<=e.right&&t.x>=e.left&&t.y<=e.bottom&&t.y>=e.top}function xi(t,e,i){const n=e==="width"?"height":"width";return{[n]:t[e]?Math.round(i*t[n]/t[e]):t[n],[e]:i}}function Cn(t,e){t={...t};for(const i in t)t=t[i]>e[i]?xi(t,i,e[i]):t;return t}function ws(t,e){t=Cn(t,e);for(const i in t)t=t[i]<e[i]?xi(t,i,e[i]):t;return t}const ki={ratio:xi,contain:Cn,cover:ws};function kt(t,e,i=0,n=!1){e=b(e);const{length:o}=e;return o?(t=gt(t)?he(t):t==="next"?i+1:t==="previous"?i-1:t==="last"?o-1:e.indexOf(D(t)),n?st(t,0,o-1):(t%=o,t<0?t+o:t)):-1}function J(t){const e=Object.create(null);return(i,...n)=>e[i]||(e[i]=t(i,...n))}function E(t,...e){for(const i of b(t)){const n=St(e).filter(o=>!m(i,o));n.length&&i.classList.add(...n)}}function A(t,...e){for(const i of b(t)){const n=St(e).filter(o=>m(i,o));n.length&&i.classList.remove(...n)}}function Ve(t,e,i){i=St(i),e=St(e).filter(n=>!p(i,n)),A(t,e),E(t,i)}function m(t,e){return[e]=St(e),b(t).some(i=>i.classList.contains(e))}function W(t,e,i){const n=St(e);V(i)||(i=!!i);for(const o of b(t))for(const s of n)o.classList.toggle(s,i)}function St(t){return t?q(t)?t.flatMap(St):String(t).split(" ").filter(Boolean):[]}function T(t,e,i){var n;if(pt(e)){for(const o in e)T(t,o,e[o]);return}if(V(i))return(n=D(t))==null?void 0:n.getAttribute(e);for(const o of b(t))i===null?pe(o,e):o.setAttribute(e,i)}function ht(t,e){return b(t).some(i=>i.hasAttribute(e))}function pe(t,e){b(t).forEach(i=>i.removeAttribute(e))}function Lt(t,e){for(const i of[e,`data-${e}`])if(ht(t,i))return T(t,i)}const Et=typeof window<"u",Tt=Et&&document.dir==="rtl",Wt=Et&&"ontouchstart"in window,Rt=Et&&window.PointerEvent,Ct=Rt?"pointerdown":Wt?"touchstart":"mousedown",Si=Rt?"pointermove":Wt?"touchmove":"mousemove",_t=Rt?"pointerup":Wt?"touchend":"mouseup",jt=Rt?"pointerenter":Wt?"":"mouseenter",Ut=Rt?"pointerleave":Wt?"":"mouseleave",ge=Rt?"pointercancel":"touchcancel",$s={area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0};function Ei(t){return b(t).some(e=>$s[e.tagName.toLowerCase()])}const ys=Et&&Element.prototype.checkVisibility||function(){return this.offsetWidth||this.offsetHeight||this.getClientRects().length};function R(t){return b(t).some(e=>ys.call(e))}const me="input,select,textarea,button";function Ye(t){return b(t).some(e=>C(e,me))}const ve=`${me},a[href],[tabindex]`;function be(t){return C(t,ve)}function N(t){var e;return(e=D(t))==null?void 0:e.parentElement}function we(t,e){return b(t).filter(i=>C(i,e))}function C(t,e){return b(t).some(i=>i.matches(e))}function $e(t,e){const i=[];for(;t=N(t);)(!e||C(t,e))&&i.push(t);return i}function K(t,e){t=D(t);const i=t?qe(t.children):[];return e?we(i,e):i}function Vt(t,e){return e?b(t).indexOf(D(e)):K(N(t)).indexOf(t)}function Yt(t){return t=D(t),t&&["origin","pathname","search"].every(e=>t[e]===location[e])}function Ge(t){if(Yt(t)){const{hash:e,ownerDocument:i}=D(t),n=decodeURIComponent(e).slice(1);return n?i.getElementById(n)||i.getElementsByName(n)[0]:i.documentElement}}function j(t,e){return Ti(t,_n(t,e))}function ye(t,e){return xe(t,_n(t,e))}function Ti(t,e){return D(Bn(t,D(e),"querySelector"))}function xe(t,e){return b(Bn(t,D(e),"querySelectorAll"))}function _n(t,e=document){return le(e)||Pn(t).isContextSelector?e:e.ownerDocument}const xs=/([!>+~-])(?=\s+[!>+~-]|\s*$)/g,ks=/(\([^)]*\)|[^,])+/g,Pn=J(t=>{let e=!1;if(!t||!O(t))return{};const i=[];for(let n of t.match(ks))n=n.trim().replace(xs,"$1 *"),e||(e=["!","+","~","-",">"].includes(n[0])),i.push(n);return{selector:i.join(","),selectors:i,isContextSelector:e}}),Ss=/(\([^)]*\)|\S)*/,On=J(t=>{t=t.slice(1).trim();const[e]=t.match(Ss);return[e,t.slice(e.length+1)]});function Bn(t,e=document,i){var n;const o=Pn(t);if(!o.isContextSelector)return o.selector?Ci(e,i,o.selector):t;t="";const s=o.selectors.length===1;for(let r of o.selectors){let a,l=e;if(r[0]==="!"&&([a,r]=On(r),l=(n=e.parentElement)==null?void 0:n.closest(a),!r&&s)||l&&r[0]==="-"&&([a,r]=On(r),l=l.previousElementSibling,l=C(l,a)?l:null,!r&&s))return l;if(l){if(s)return r[0]==="~"||r[0]==="+"?(r=`:scope > :nth-child(${Vt(l)+1}) ${r}`,l=l.parentElement):r[0]===">"&&(r=`:scope ${r}`),Ci(l,i,r);t+=`${t?",":""}${Es(l)} ${r}`}}return le(e)||(e=e.ownerDocument),Ci(e,i,t)}function Ci(t,e,i){try{return t[e](i)}catch{return null}}function Es(t){const e=[];for(;t.parentNode;){const i=T(t,"id");if(i){e.unshift(`#${_i(i)}`);break}else{let{tagName:n}=t;n!=="HTML"&&(n+=`:nth-child(${Vt(t)+1})`),e.unshift(n),t=t.parentNode}}return e.join(" > ")}function _i(t){return O(t)?CSS.escape(t):""}function $(...t){let[e,i,n,o,s=!1]=Oi(t);o.length>1&&(o=Cs(o)),s!=null&&s.self&&(o=_s(o)),n&&(o=Ts(n,o));for(const r of i)for(const a of e)a.addEventListener(r,o,s);return()=>Pi(e,i,o,s)}function Pi(...t){let[e,i,,n,o=!1]=Oi(t);for(const s of i)for(const r of e)r.removeEventListener(s,n,o)}function B(...t){const[e,i,n,o,s=!1,r]=Oi(t),a=$(e,i,n,l=>{const c=!r||r(l);c&&(a(),o(l,c))},s);return a}function _(t,e,i){return Bi(t).every(n=>n.dispatchEvent(ke(e,!0,!0,i)))}function ke(t,e=!0,i=!1,n){return O(t)&&(t=new CustomEvent(t,{bubbles:e,cancelable:i,detail:n})),t}function Oi(t){return t[0]=Bi(t[0]),O(t[1])&&(t[1]=t[1].split(" ")),X(t[2])&&t.splice(2,0,!1),t}function Ts(t,e){return i=>{const n=t[0]===">"?xe(t,i.currentTarget).reverse().find(o=>o.contains(i.target)):i.target.closest(t);n&&(i.current=n,e.call(this,i),delete i.current)}}function Cs(t){return e=>q(e.detail)?t(e,...e.detail):t(e)}function _s(t){return function(e){if(e.target===e.currentTarget||e.target===e.current)return t.call(null,e)}}function Mn(t){return t&&"addEventListener"in t}function Ps(t){return Mn(t)?t:D(t)}function Bi(t){return q(t)?t.map(Ps).filter(Boolean):O(t)?xe(t):Mn(t)?[t]:b(t)}function ut(t){return t.pointerType==="touch"||!!t.touches}function mt(t){var e,i;const{clientX:n,clientY:o}=((e=t.touches)==null?void 0:e[0])||((i=t.changedTouches)==null?void 0:i[0])||t;return{x:n,y:o}}const Os={"animation-iteration-count":!0,"column-count":!0,"fill-opacity":!0,"flex-grow":!0,"flex-shrink":!0,"font-weight":!0,"line-height":!0,opacity:!0,order:!0,orphans:!0,"stroke-dasharray":!0,"stroke-dashoffset":!0,widows:!0,"z-index":!0,zoom:!0};function h(t,e,i,n){const o=b(t);for(const s of o)if(O(e)){if(e=Di(e),V(i))return getComputedStyle(s).getPropertyValue(e);s.style.setProperty(e,gt(i)&&!Os[e]&&!Dn(e)?`${i}px`:i||Re(i)?i:"",n)}else{if(q(e))return Object.fromEntries(e.map(r=>[r,h(s,r)]));if(pt(e))for(const r in e)h(s,r,e[r],i)}return o[0]}function Mi(t,e){for(const i in e)h(t,i,"")}const Di=J(t=>{if(Dn(t))return t;t=$t(t);const{style:e}=document.documentElement;if(t in e)return t;for(const i of["webkit","moz"]){const n=`-${i}-${t}`;if(n in e)return n}});function Dn(t){return ct(t,"--")}const Ai="uk-transition",Ni="transitionend",Ii="transitioncanceled";function Bs(t,e,i=400,n="linear",o){return i=Math.round(i),Promise.all(b(t).map(s=>new Promise((r,a)=>{o||s.offsetHeight;const l=setTimeout(()=>_(s,Ni),i);B(s,[Ni,Ii],({type:u})=>{clearTimeout(l),A(s,Ai),Mi(s,c),u===Ii?a():r(s)},{self:!0}),E(s,Ai);const c={transitionProperty:Object.keys(e).map(Di).join(","),transitionDuration:`${i}ms`,transitionTimingFunction:n};h(s,{...c,...e})})))}const Z={start:Bs,async stop(t){_(t,Ni),await Promise.resolve()},async cancel(t){_(t,Ii),await Promise.resolve()},inProgress(t){return m(t,Ai)}},Se="uk-animation",An="animationend",Qe="animationcanceled";function Nn(t,e,i=200,n,o){return Promise.all(b(t).map(s=>new Promise((r,a)=>{m(s,Se)&&_(s,Qe);const l=[e,Se,`${Se}-${o?"leave":"enter"}`,n&&`uk-transform-origin-${n}`,o&&`${Se}-reverse`],c=setTimeout(()=>_(s,An),i);B(s,[An,Qe],({type:u})=>{clearTimeout(c),u===Qe?a():r(s),h(s,"animationDuration",""),A(s,l)},{self:!0}),h(s,"animationDuration",`${i}ms`),E(s,l)})))}const vt={in:Nn,out(t,e,i,n){return Nn(t,e,i,n,!0)},inProgress(t){return m(t,Se)},cancel(t){_(t,Qe)}};function Ms(t){if(document.readyState!=="loading"){t();return}B(document,"DOMContentLoaded",t)}function I(t,...e){return e.some(i=>{var n;return((n=t==null?void 0:t.tagName)==null?void 0:n.toLowerCase())===i.toLowerCase()})}function In(t){return t=k(t),t&&(t.innerHTML=""),t}function Xe(t,e){return V(e)?k(t).innerHTML:it(In(t),e)}const Ds=Ke("prepend"),it=Ke("append"),Fi=Ke("before"),Je=Ke("after");function Ke(t){return function(e,i){var n;const o=b(O(i)?Ot(i):i);return(n=k(e))==null||n[t](...o),Fn(o)}}function Pt(t){b(t).forEach(e=>e.remove())}function Ze(t,e){for(e=D(Fi(t,e));e.firstElementChild;)e=e.firstElementChild;return it(e,t),e}function zi(t,e){return b(b(t).map(i=>i.hasChildNodes()?Ze(qe(i.childNodes),e):it(i,e)))}function Ee(t){for(const e of new Set(b(t).map(N)))e.replaceWith(...e.childNodes)}const As=/^<(\w+)\s*\/?>(?:<\/\1>)?$/;function Ot(t){const e=As.exec(t);if(e)return document.createElement(e[1]);const i=document.createElement("template");return i.innerHTML=t.trim(),Fn(i.content.childNodes)}function Fn(t){return t.length>1?t:t[0]}function Bt(t,e){if(ce(t))for(e(t),t=t.firstElementChild;t;)Bt(t,e),t=t.nextElementSibling}function k(t,e){return zn(t)?D(Ot(t)):Ti(t,e)}function F(t,e){return zn(t)?b(Ot(t)):xe(t,e)}function zn(t){return O(t)&&ct(t.trim(),"<")}const Mt={width:["left","right"],height:["top","bottom"]};function P(t){const e=ce(t)?D(t).getBoundingClientRect():{height:ft(t),width:ti(t),top:0,left:0};return{height:e.height,width:e.width,top:e.top,left:e.left,bottom:e.top+e.height,right:e.left+e.width}}function y(t,e){e&&h(t,{left:0,top:0});const i=P(t);if(t){const{scrollY:n,scrollX:o}=xt(t),s={height:n,width:o};for(const r in Mt)for(const a of Mt[r])i[a]+=s[r]}if(!e)return i;for(const n of["left","top"])h(t,n,e[n]-i[n])}function Ns(t){let{top:e,left:i}=y(t);const{ownerDocument:{body:n,documentElement:o},offsetParent:s}=D(t);let r=s||o;for(;r&&(r===n||r===o)&&h(r,"position")==="static";)r=r.parentNode;if(ce(r)){const a=y(r);e-=a.top+v(h(r,"borderTopWidth")),i-=a.left+v(h(r,"borderLeftWidth"))}return{top:e-v(h(t,"marginTop")),left:i-v(h(t,"marginLeft"))}}function Te(t){t=D(t);const e=[t.offsetTop,t.offsetLeft];for(;t=t.offsetParent;)if(e[0]+=t.offsetTop+v(h(t,"borderTopWidth")),e[1]+=t.offsetLeft+v(h(t,"borderLeftWidth")),h(t,"position")==="fixed"){const i=xt(t);return e[0]+=i.scrollY,e[1]+=i.scrollX,e}return e}const ft=Hn("height"),ti=Hn("width");function Hn(t){const e=yt(t);return(i,n)=>{if(V(n)){if(Le(i))return i[`inner${e}`];if(le(i)){const o=i.documentElement;return Math.max(o[`offset${e}`],o[`scroll${e}`])}return i=D(i),n=h(i,t),n=n==="auto"?i[`offset${e}`]:v(n)||0,n-Gt(i,t)}else return h(i,t,!n&&n!==0?"":+n+Gt(i,t)+"px")}}function Gt(t,e,i="border-box"){return h(t,"boxSizing")===i?de(Mt[e],n=>v(h(t,`padding-${n}`))+v(h(t,`border-${n}-width`))):0}function qn(t){for(const e in Mt)for(const i in Mt[e])if(Mt[e][i]===t)return Mt[e][1-i];return t}function L(t,e="width",i=window,n=!1){return O(t)?de(Fs(t),o=>{const s=Hs(o);return s?qs(s==="vh"?Ls():s==="vw"?ti(xt(i)):n?i[`offset${yt(e)}`]:P(i)[e],o):o}):v(t)}const Is=/-?\d+(?:\.\d+)?(?:v[wh]|%|px)?/g,Fs=J(t=>t.toString().replace(/\s/g,"").match(Is)||[]),zs=/(?:v[hw]|%)$/,Hs=J(t=>(t.match(zs)||[])[0]);function qs(t,e){return t*v(e)/100}let Ce,Qt;function Ls(){return Ce||(Qt||(Qt=k("<div>"),h(Qt,{height:"100vh",position:"fixed"}),$(window,"resize",()=>Ce=null)),it(document.body,Qt),Ce=Qt.clientHeight,Pt(Qt),Ce)}const Hi={read:Ws,write:Rs,clear:js,flush:Ln},ei=[],ii=[];function Ws(t){return ei.push(t),Li(),t}function Rs(t){return ii.push(t),Li(),t}function js(t){Rn(ei,t),Rn(ii,t)}let qi=!1;function Ln(){Wn(ei),Wn(ii.splice(0)),qi=!1,(ei.length||ii.length)&&Li()}function Li(){qi||(qi=!0,queueMicrotask(Ln))}function Wn(t){let e;for(;e=t.shift();)try{e()}catch(i){console.error(i)}}function Rn(t,e){const i=t.indexOf(e);return~i&&t.splice(i,1)}class jn{init(){this.positions=[];let e;this.unbind=$(document,"mousemove",i=>e=mt(i)),this.interval=setInterval(()=>{e&&(this.positions.push(e),this.positions.length>5&&this.positions.shift())},50)}cancel(){var e;(e=this.unbind)==null||e.call(this),clearInterval(this.interval)}movesTo(e){if(!this.positions||this.positions.length<2)return!1;const i=P(e),{left:n,right:o,top:s,bottom:r}=i,[a]=this.positions,l=ue(this.positions),c=[a,l];return yi(l,i)?!1:[[{x:n,y:s},{x:o,y:r}],[{x:n,y:r},{x:o,y:s}]].some(f=>{const d=Us(c,f);return d&&yi(d,i)})}}function Us([{x:t,y:e},{x:i,y:n}],[{x:o,y:s},{x:r,y:a}]){const l=(a-s)*(i-t)-(r-o)*(n-e);if(l===0)return!1;const c=((r-o)*(e-s)-(a-s)*(t-o))/l;return c<0?!1:{x:t+c*(i-t),y:e+c*(n-e)}}function Un(t,e,i={},{intersecting:n=!0}={}){const o=new IntersectionObserver(n?(s,r)=>{s.some(a=>a.isIntersecting)&&e(s,r)}:e,i);for(const s of b(t))o.observe(s);return o}const Vs=Et&&window.ResizeObserver;function _e(t,e,i={box:"border-box"}){if(Vs)return Vn(ResizeObserver,t,e,i);const n=[$(window,"load resize",e),$(document,"loadedmetadata load",e,!0)];return{disconnect:()=>n.map(o=>o())}}function Wi(t){return{disconnect:$([window,window.visualViewport],"resize",t)}}function Ri(t,e,i){return Vn(MutationObserver,t,e,i)}function Vn(t,e,i,n){const o=new t(i);for(const s of b(e))o.observe(s,n);return o}function ji(t){Vi(t)&&Yi(t,{func:"playVideo",method:"play"}),Ui(t)&&t.play().catch(Y)}function Yn(t){Vi(t)&&t[ni]&&Yi(t,{func:"pauseVideo",method:"pause"}),Ui(t)&&t.pause()}function Gn(t){Vi(t)&&Yi(t,{func:"mute",method:"setVolume",value:0}),Ui(t)&&(t.muted=!0)}function Ui(t){return I(t,"video")}function Vi(t){return I(t,"iframe")&&(Qn(t)||Xn(t))}function Qn(t){return/\/\/.*?youtube(-nocookie)?\.[a-z]+\/(watch\?v=[^&\s]+|embed)|youtu\.be\/.*/.test(t.src)}function Xn(t){return/vimeo\.com\/video\/.*/.test(t.src)}async function Yi(t,e){await Gs(t),Jn(t,e)}function Jn(t,e){t.contentWindow.postMessage(JSON.stringify({event:"command",...e}),"*")}const ni=Symbol();let Ys=0;function Gs(t){if(t[ni])return t[ni];const e=Qn(t),i=Xn(t),n=++Ys;let o;return t[ni]=new Promise(s=>{e&&B(t,"load",()=>{const r=()=>Jn(t,{event:"listening",id:n});o=setInterval(r,100),r()}),B(window,"message",s,!1,({data:r})=>{try{return r=JSON.parse(r),e&&(r==null?void 0:r.id)===n&&r.event==="onReady"||i&&Number(r==null?void 0:r.player_id)===n}catch{}}),t.src=`${t.src}${p(t.src,"?")?"&":"?"}${e?"enablejsapi=1":`api=1&player_id=${n}`}`}).then(()=>clearInterval(o))}function Qs(t,e=0,i=0){if(!R(t))return!1;const n=Jt(t).map(o=>{const{top:s,left:r,bottom:a,right:l}=tt(o);return{top:s-e,left:r-i,bottom:a+e,right:l+i}});return Ue(...n,y(t))}function Kn(t,{offset:e=0}={}){const i=R(t)?Xt(t,!1,["hidden"]):[];return i.reduce((r,a,l)=>{const{scrollTop:c,scrollHeight:u,offsetHeight:f}=a,d=tt(a),g=u-d.height,{height:w,top:x}=i[l-1]?tt(i[l-1]):y(t);let S=Math.ceil(x-d.top-e+c);return e>0&&f<w+e?S+=e:e=0,S>g?(e-=S-g,S=g):S<0&&(e-=S,S=0),()=>n(a,S-c,t,g).then(r)},()=>Promise.resolve())();function n(r,a,l,c){return new Promise(u=>{const f=r.scrollTop,d=o(Math.abs(a)),g=Date.now(),w=Xi(r)===r,x=y(l).top+(w?0:f);let S=0,Q=15;(function ot(){const wt=s(st((Date.now()-g)/d));let at=0;i[0]===r&&f+a<c&&(at=y(l).top+(w?0:r.scrollTop)-x-P(Qi(l)).height),h(r,"scrollBehavior")!=="auto"&&h(r,"scrollBehavior","auto"),r.scrollTop=f+(a+at)*wt,h(r,"scrollBehavior",""),wt===1&&(S===at||!Q--)?u():(S=at,requestAnimationFrame(ot))})()})}function o(r){return 40*Math.pow(r,.375)}function s(r){return .5*(1-Math.cos(Math.PI*r))}}function Gi(t,e=0,i=0){if(!R(t))return 0;const n=Dt(t,!0),{scrollHeight:o,scrollTop:s}=n,{height:r}=tt(n),a=o-r,l=Te(t)[0]-Te(n)[0],c=Math.max(0,l-r+e),u=Math.min(a,l+t.offsetHeight-i);return c<u?st((s-c)/(u-c)):1}function Xt(t,e=!1,i=[]){const n=Xi(t);let o=$e(t).reverse();o=o.slice(o.indexOf(n)+1);const s=dt(o,r=>oi(r,"fixed"));return~s&&(o=o.slice(s)),[n,...o.filter(r=>h(r,"overflow").split(" ").some(a=>p(["auto","scroll",...i],a))&&(!e||r.scrollHeight>tt(r).height))].reverse()}function Dt(...t){return Xt(...t)[0]}function Jt(t){return Xt(t,!1,["hidden","clip"])}function tt(t){const e=xt(t),i=Xi(t),n=!We(t)||t.contains(i);if(n&&e.visualViewport){let{height:l,width:c,scale:u,pageTop:f,pageLeft:d}=e.visualViewport;return l=Math.round(l*u),c=Math.round(c*u),{height:l,width:c,top:f,left:d,bottom:f+l,right:d+c}}let o=y(n?e:t);if(h(t,"display")==="inline")return o;const{body:s,documentElement:r}=e.document,a=n?i===r||i.clientHeight<s.clientHeight?i:s:t;for(let[l,c,u,f]of[["width","x","left","right"],["height","y","top","bottom"]]){const d=o[l]%1;o[u]+=v(h(a,`border-${u}-width`)),o[l]=o[c]=a[`client${yt(l)}`]-(d?d<.5?-d:1-d:0),o[f]=o[l]+o[u]}return o}function Qi(t){const{document:e}=xt(t);t=t||e.body;const{left:i,width:n,top:o}=P(t);for(const s of o?[0,o]:[0]){let r;for(const a of e.elementsFromPoint(i+n/2,s))!a.contains(t)&&!m(a,"uk-togglable-leave")&&(oi(a,"fixed")&&Zn($e(t).reverse().find(l=>!l.contains(a)&&!oi(l,"static")))<Zn(a)||oi(a,"sticky")&&(!t||N(a).contains(t)))&&(!r||P(r).height<P(a).height)&&(r=a);if(r)return r}}function Zn(t){return v(h(t,"zIndex"))}function oi(t,e){return h(t,"position")===e}function Xi(t){return xt(t).document.scrollingElement}const G=[["width","x","left","right"],["height","y","top","bottom"]];function to(t,e,i){i={attach:{element:["left","top"],target:["left","top"],...i.attach},offset:[0,0],placement:[],...i},q(e)||(e=[e,e]),y(t,eo(t,e,i))}function eo(t,e,i){const n=io(t,e,i),{boundary:o,viewportOffset:s=0,placement:r}=i;let a=n;for(const[l,[c,,u,f]]of Object.entries(G)){const d=Xs(t,e[l],s,o,l);if(si(n,d,l))continue;let g=0;if(r[l]==="flip"){const w=i.attach.target[l];if(w===f&&n[f]<=d[f]||w===u&&n[u]>=d[u])continue;g=Ks(t,e,i,l)[u]-n[u];const x=Js(t,e[l],s,l);if(!si(Ji(n,g,l),x,l)){if(si(n,x,l))continue;if(i.recursion)return!1;const S=Zs(t,e,i);if(S&&si(S,x,1-l))return S;continue}}else if(r[l]==="shift"){const w=y(e[l]),{offset:x}=i;g=st(st(n[u],d[u],d[f]-n[c]),w[u]-n[c]+x[l],w[f]-x[l])-n[u]}a=Ji(a,g,l)}return a}function io(t,e,i){let{attach:n,offset:o}={attach:{element:["left","top"],target:["left","top"],...i.attach},offset:[0,0],...i},s=y(t);for(const[r,[a,,l,c]]of Object.entries(G)){const u=n.target[r]===n.element[r]?tt(e[r]):y(e[r]);s=Ji(s,u[l]-s[l]+no(n.target[r],c,u[a])-no(n.element[r],c,s[a])+ +o[r],r)}return s}function Ji(t,e,i){const[,n,o,s]=G[i],r={...t};return r[o]=t[n]=t[o]+e,r[s]+=e,r}function no(t,e,i){return t==="center"?i/2:t===e?i:0}function Xs(t,e,i,n,o){let s=so(...oo(t,e).map(tt));return i&&(s[G[o][2]]+=i,s[G[o][3]]-=i),n&&(s=so(s,y(q(n)?n[o]:n))),s}function Js(t,e,i,n){const[o,s,r,a]=G[n],[l]=oo(t,e),c=tt(l);return["auto","scroll"].includes(h(l,`overflow-${s}`))&&(c[r]-=l[`scroll${yt(r)}`],c[a]=c[r]+l[`scroll${yt(o)}`]),c[r]+=i,c[a]-=i,c}function oo(t,e){return Jt(e).filter(i=>i.contains(t))}function so(...t){let e={};for(const i of t)for(const[,,n,o]of G)e[n]=Math.max(e[n]||0,i[n]),e[o]=Math.min(...[e[o],i[o]].filter(Re));return e}function si(t,e,i){const[,,n,o]=G[i];return t[n]>=e[n]&&t[o]<=e[o]}function Ks(t,e,{offset:i,attach:n},o){return io(t,e,{attach:{element:ro(n.element,o),target:ro(n.target,o)},offset:tr(i,o)})}function Zs(t,e,i){return eo(t,e,{...i,attach:{element:i.attach.element.map(ao).reverse(),target:i.attach.target.map(ao).reverse()},offset:i.offset.reverse(),placement:i.placement.reverse(),recursion:!0})}function ro(t,e){const i=[...t],n=G[e].indexOf(t[e]);return~n&&(i[e]=G[e][1-n%2+2]),i}function ao(t){for(let e=0;e<G.length;e++){const i=G[e].indexOf(t);if(~i)return G[1-e][i%2+2]}}function tr(t,e){return t=[...t],t[e]*=-1,t}var er=Object.freeze({__proto__:null,$:k,$$:F,Animation:vt,Dimensions:ki,MouseTracker:jn,Transition:Z,addClass:E,after:Je,append:it,apply:Bt,assign:re,attr:T,before:Fi,boxModelAdjust:Gt,camelize:oe,children:K,clamp:st,createEvent:ke,css:h,data:Lt,dimensions:P,each:fe,empty:In,endsWith:se,escape:_i,fastdom:Hi,filter:we,find:Ti,findAll:xe,findIndex:dt,flipPosition:qn,fragment:Ot,getCoveringElement:Qi,getEventPos:mt,getIndex:kt,getTargetedElement:Ge,hasAttr:ht,hasClass:m,hasOwn:lt,hasTouch:Wt,height:ft,html:Xe,hyphenate:$t,inBrowser:Et,includes:p,index:Vt,intersectRect:Ue,isArray:q,isBoolean:qt,isDocument:le,isElement:ce,isEmpty:bi,isEqual:Tn,isFocusable:be,isFunction:X,isInView:Qs,isInput:Ye,isNode:We,isNumber:Re,isNumeric:gt,isObject:pt,isPlainObject:ae,isRtl:Tt,isSameSiteAnchor:Yt,isString:O,isTag:I,isTouch:ut,isUndefined:V,isVisible:R,isVoidElement:Ei,isWindow:Le,last:ue,matches:C,memoize:J,mute:Gn,noop:Y,observeIntersection:Un,observeMutation:Ri,observeResize:_e,observeViewportResize:Wi,off:Pi,offset:y,offsetPosition:Te,offsetViewport:tt,on:$,once:B,overflowParents:Jt,parent:N,parents:$e,pause:Yn,pick:je,play:ji,pointInRect:yi,pointerCancel:ge,pointerDown:Ct,pointerEnter:jt,pointerLeave:Ut,pointerMove:Si,pointerUp:_t,position:Ns,positionAt:to,prepend:Ds,propName:Di,query:j,queryAll:ye,ready:Ms,remove:Pt,removeAttr:pe,removeClass:A,replaceClass:Ve,resetProps:Mi,scrollIntoView:Kn,scrollParent:Dt,scrollParents:Xt,scrolledOver:Gi,selFocusable:ve,selInput:me,sortBy:vs,startsWith:ct,sumBy:de,swap:$i,toArray:qe,toBoolean:wi,toEventTargets:Bi,toFloat:v,toNode:D,toNodes:b,toNumber:he,toPx:L,toWindow:xt,toggleClass:W,trigger:_,ucfirst:yt,uniqueBy:bs,unwrap:Ee,width:ti,wrapAll:Ze,wrapInner:zi}),ir="3.25.17-dev.8c70e44";function nr(t){t._data={},t._updates=[...t.$options.update||[]],t._disconnect.push(()=>t._updates=t._data=null)}function or(t,e){t._updates.unshift(e)}function Pe(t,e="update"){t._connected&&t._updates.length&&(t._updateCount||(t._updateCount=0,requestAnimationFrame(()=>t._updateCount=0)),t._queued||(t._queued=new Set,Hi.read(()=>{t._connected&&sr(t,t._queued),t._queued=null})),t._updateCount++<20&&t._queued.add(e.type||e))}function sr(t,e){for(const{read:i,write:n,events:o=[]}of t._updates){if(!e.has("update")&&!o.some(r=>e.has(r)))continue;let s;i&&(s=i.call(t,t._data,e),s&&ae(s)&&re(t._data,s)),n&&s!==!1&&Hi.write(()=>{t._connected&&n.call(t,t._data,e)})}}function rr(t){t._watches=[];for(const e of t.$options.watch||[])for(const[i,n]of Object.entries(e))lo(t,n,i);t._initial=!0}function lo(t,e,i){t._watches.push({name:i,...ae(e)?e:{handler:e}})}function ar(t,e){for(const{name:i,handler:n,immediate:o=!0}of t._watches)(t._initial&&o||lt(e,i)&&!Tn(e[i],t[i]))&&n.call(t,t[i],e[i]);t._initial=!1}function lr(t){const{computed:e}=t.$options;if(t._computed={},e)for(const i in e)ho(t,i,e[i])}const co={subtree:!0,childList:!0};function ho(t,e,i){t._hasComputed=!0,Object.defineProperty(t,e,{enumerable:!0,get(){const{_computed:n,$props:o,$el:s}=t;if(!lt(n,e)&&(n[e]=(i.get||i).call(t,o,s),i.observe&&t._computedObserver)){const r=i.observe.call(t,o);t._computedObserver.observe(["~","+","-"].includes(r[0])?s.parentElement:s.getRootNode(),co)}return n[e]},set(n){const{_computed:o}=t;o[e]=i.set?i.set.call(t,n):n,V(o[e])&&delete o[e]}})}function cr(t){t._hasComputed&&(or(t,{read:()=>ar(t,uo(t)),events:["resize","computed"]}),t._computedObserver=Ri(t.$el,()=>Pe(t,"computed"),co),t._disconnect.push(()=>{t._computedObserver.disconnect(),t._computedObserver=null,uo(t)}))}function uo(t){const e={...t._computed};return t._computed={},e}function hr(t){for(const e of t.$options.events||[])if(lt(e,"handler"))fo(t,e);else for(const i in e)fo(t,{name:i,handler:e[i]})}function fo(t,{name:e,el:i,handler:n,capture:o,passive:s,delegate:r,filter:a,self:l}){a&&!a.call(t,t)||t._disconnect.push($(i?i.call(t,t):t.$el,e,r==null?void 0:r.call(t,t),n.bind(t),{passive:s,capture:o,self:l}))}function ur(t){for(const e of t.$options.observe||[])fr(t,e)}function fr(t,e){let{observe:i,target:n=t.$el,handler:o,options:s,filter:r,args:a}=e;if(r&&!r.call(t,t))return;const l=`_observe${t._disconnect.length}`;X(n)&&!lt(t,l)&&ho(t,l,()=>{const f=n.call(t,t);return q(f)?b(f):f}),o=O(o)?t[o]:o.bind(t),X(s)&&(s=s.call(t,t));const c=lt(t,l)?t[l]:n,u=i(c,o,s,a);X(n)&&q(t[l])&&lo(t,{handler:dr(u,s),immediate:!1},l),t._disconnect.push(()=>u.disconnect())}function dr(t,e){return(i,n)=>{for(const o of n)p(i,o)||(t.unobserve?t.unobserve(o):t.observe&&t.disconnect());for(const o of i)(!p(n,o)||!t.unobserve)&&t.observe(o,e)}}const z={};z.events=z.watch=z.observe=z.created=z.beforeConnect=z.connected=z.beforeDisconnect=z.disconnected=z.destroy=Ki,z.args=function(t,e){return e!==!1&&Ki(e||t)},z.update=function(t,e){return Ki(t,X(e)?{read:e}:e)},z.props=function(t,e){if(q(e)){const i={};for(const n of e)i[n]=String;e=i}return z.methods(t,e)},z.computed=z.methods=function(t,e){return e?t?{...t,...e}:e:t},z.i18n=z.data=function(t,e,i){return i?po(t,e,i):e?t?function(n){return po(t,e,n)}:e:t};function po(t,e,i){return z.computed(X(t)?t.call(i,i):t,X(e)?e.call(i,i):e)}function Ki(t,e){return t=t&&!q(t)?[t]:t,e?t?t.concat(e):q(e)?e:[e]:t}function pr(t,e){return V(e)?t:e}function Oe(t,e,i){const n={};if(X(e)&&(e=e.options),e.extends&&(t=Oe(t,e.extends,i)),e.mixins)for(const s of e.mixins)t=Oe(t,s,i);for(const s in t)o(s);for(const s in e)lt(t,s)||o(s);function o(s){n[s]=(z[s]||pr)(t[s],e[s],i)}return n}function Zi(t,e=[]){try{return t?ct(t,"{")?JSON.parse(t):e.length&&!p(t,":")?{[e[0]]:t}:t.split(";").reduce((i,n)=>{const[o,s]=n.split(/:(.*)/);return o&&!V(s)&&(i[o.trim()]=s.trim()),i},{}):{}}catch{return{}}}function tn(t,e){return t===Boolean?wi(e):t===Number?he(e):t==="list"?mr(e):t===Object&&O(e)?Zi(e):t?t(e):e}const gr=/,(?![^(]*\))/;function mr(t){return q(t)?t:O(t)?t.split(gr).map(e=>gt(e)?he(e):wi(e.trim())):[t]}function vr(t){const{$options:e,$props:i}=t,n=go(e);re(i,n);const{computed:o,methods:s}=e;for(let r in i)r in n&&(!o||!lt(o,r))&&(!s||!lt(s,r))&&(t[r]=i[r])}function go(t){const e={},{args:i=[],props:n={},el:o,id:s}=t;if(!n)return e;for(const a in n){const l=$t(a);let c=Lt(o,l);V(c)||(c=n[a]===Boolean&&c===""?!0:tn(n[a],c),!(l==="target"&&ct(c,"_"))&&(e[a]=c))}const r=Zi(Lt(o,s),i);for(const a in r){const l=oe(a);V(n[l])||(e[l]=tn(n[l],r[a]))}return e}const br=J((t,e)=>{const i=Object.keys(e),n=[...i,t].flatMap(o=>[$t(o),`data-${$t(o)}`]);return{attributes:i,filter:n}});function wr(t){const{$options:e,$props:i}=t,{id:n,props:o,el:s}=e;if(!o)return;const{attributes:r,filter:a}=br(n,o),l=new MutationObserver(c=>{const u=go(e);c.some(({attributeName:f})=>{const d=f.replace("data-","");return(d===n?r:[oe(d),oe(f)]).some(g=>!V(u[g])&&u[g]!==i[g])})&&t.$reset()});l.observe(s,{attributes:!0,attributeFilter:a}),t._disconnect.push(()=>l.disconnect())}function Kt(t,e){var i;(i=t.$options[e])==null||i.forEach(n=>n.call(t))}function en(t){t._connected||(vr(t),Kt(t,"beforeConnect"),t._connected=!0,t._disconnect=[],hr(t),nr(t),rr(t),ur(t),wr(t),cr(t),Kt(t,"connected"),Pe(t))}function nn(t){t._connected&&(Kt(t,"beforeDisconnect"),t._disconnect.forEach(e=>e()),t._disconnect=null,Kt(t,"disconnected"),t._connected=!1)}let $r=0;function mo(t,e={}){e.data=kr(e,t.constructor.options),t.$options=Oe(t.constructor.options,e,t),t.$props={},t._uid=$r++,yr(t),xr(t),lr(t),Kt(t,"created"),e.el&&t.$mount(e.el)}function yr(t){const{data:e={}}=t.$options;for(const i in e)t.$props[i]=t[i]=e[i]}function xr(t){const{methods:e}=t.$options;if(e)for(const i in e)t[i]=e[i].bind(t)}function kr({data:t={}},{args:e=[],props:i={}}){q(t)&&(t=t.slice(0,e.length).reduce((n,o,s)=>re(n,ae(o)?o:{[e[s]]:o}),{}));for(const n in t)V(t[n])?delete t[n]:i[n]&&(t[n]=tn(i[n],t[n]));return t}const et=function(t){mo(this,t)};et.util=er,et.options={},et.version=ir;const Sr="uk-",At="__uikit__",Zt={};function vo(t,e){var i,n;const o=Sr+$t(t);if(!e)return Zt[o].options||(Zt[o]=et.extend(Zt[o])),Zt[o];t=oe(t),et[t]=(r,a)=>Be(t,r,a);const s=(i=e.options)!=null?i:{...e};return s.id=o,s.name=t,(n=s.install)==null||n.call(s,et,s,t),et._initialized&&!s.functional&&requestAnimationFrame(()=>Be(t,`[${o}],[data-${o}]`)),Zt[o]=s}function Be(t,e,i,...n){const o=vo(t);return o.options.functional?new o({data:ae(e)?e:[e,i,...n]}):e?F(e).map(s)[0]:s();function s(r){const a=ri(r,t);if(a){if(!i)return a;a.$destroy()}return new o({el:r,data:i})}}function Me(t){return(t==null?void 0:t[At])||{}}function ri(t,e){return Me(t)[e]}function Er(t,e){t[At]||(t[At]={}),t[At][e.$options.name]=e}function Tr(t,e){var i;(i=t[At])==null||delete i[e.$options.name],bi(t[At])&&delete t[At]}function Cr(t){Et&&window.MutationObserver&&(document.body?requestAnimationFrame(()=>bo(t)):new MutationObserver((e,i)=>{document.body&&(bo(t),i.disconnect())}).observe(document.documentElement,{childList:!0}))}function bo(t){_(document,"uikit:init",t),document.body&&Bt(document.body,wo),new MutationObserver(_r).observe(document,{subtree:!0,childList:!0,attributes:!0}),t._initialized=!0}function _r(t){var e;for(const{addedNodes:i,removedNodes:n,target:o,attributeName:s}of t){for(const a of i)Bt(a,wo);for(const a of n)Bt(a,Pr);const r=s&&$o(s);r&&(ht(o,s)?Be(r,o):(e=ri(o,r))==null||e.$destroy())}}function wo(t){const e=Me(t);for(const i in e)en(e[i]);for(const i of t.getAttributeNames()){const n=$o(i);n&&Be(n,t)}}function Pr(t){const e=Me(t);for(const i in e)nn(e[i])}function $o(t){ct(t,"data-")&&(t=t.slice(5));const e=Zt[t];return e&&(e.options||e).name}function Or(t){t.component=vo,t.getComponents=Me,t.getComponent=ri,t.update=yo,t.use=function(i){if(!i.installed)return i.call(null,this),i.installed=!0,this},t.mixin=function(i,n){n=(O(n)?this.component(n):n)||this,n.options=Oe(n.options,i)},t.extend=function(i){i||(i={});const n=this,o=function(r){mo(this,r)};return o.prototype=Object.create(n.prototype),o.prototype.constructor=o,o.options=Oe(n.options,i),o.super=n,o.extend=n.extend,o};let e;Object.defineProperty(t,"container",{get(){return e||document.body},set(i){e=k(i)}})}function yo(t,e){t=t?D(t):document.body;for(const i of $e(t).reverse())xo(i,e);Bt(t,i=>xo(i,e))}function xo(t,e){const i=Me(t);for(const n in i)Pe(i[n],e)}function Br(t){t.prototype.$mount=function(e){const i=this;Er(e,i),i.$options.el=e,e.isConnected&&en(i)},t.prototype.$destroy=function(e=!1){const i=this,{el:n}=i.$options;n&&nn(i),Kt(i,"destroy"),Tr(n,i),e&&Pt(i.$el)},t.prototype.$create=Be,t.prototype.$emit=function(e){Pe(this,e)},t.prototype.$update=function(e=this.$el,i){yo(e,i)},t.prototype.$reset=function(){nn(this),en(this)},t.prototype.$getComponent=ri,Object.defineProperties(t.prototype,{$el:{get(){return this.$options.el}},$container:Object.getOwnPropertyDescriptor(t,"container")})}let Mr=1;function De(t,e=null){return(e==null?void 0:e.id)||`${t.$options.id}-${Mr++}`}Or(et),Br(et);function rt(t){return Ne(_e,t,"resize")}function Nt(t){return Ne(Un,t)}function Ae(t){return Ne(Ri,t)}function on(t={}){return Nt({handler:function(e,i){const{targets:n=this.$el,preload:o=5}=t;for(const s of b(X(n)?n(this):n))F('[loading="lazy"]',s).slice(0,o-1).forEach(r=>pe(r,"loading"));for(const{target:s}of e.filter(({isIntersecting:r})=>r))i.unobserve(s)},...t})}function ko(t){return Ne((e,i)=>Wi(i),t,"resize")}function ai(t){return Ne((e,i)=>({disconnect:$(Ar(e),"scroll",i,{passive:!0})}),t,"scroll")}function So(t){return{observe(e,i){return{observe:Y,unobserve:Y,disconnect:$(e,Ct,i,{passive:!0})}},handler(e){if(!ut(e))return;const i=mt(e),n="tagName"in e.target?e.target:N(e.target);B(document,`${_t} ${ge} scroll`,o=>{const{x:s,y:r}=mt(o);(o.type!=="scroll"&&n&&s&&Math.abs(i.x-s)>100||r&&Math.abs(i.y-r)>100)&&setTimeout(()=>{_(n,"swipe"),_(n,`swipe${Dr(i.x,i.y,s,r)}`)})})},...t}}function Ne(t,e,i){return{observe:t,handler(){Pe(this,i)},...e}}function Dr(t,e,i,n){return Math.abs(t-i)>=Math.abs(e-n)?t-i>0?"Left":"Right":e-n>0?"Up":"Down"}function Ar(t){return b(t).map(e=>{const{ownerDocument:i}=e,n=Dt(e,!0);return n===i.scrollingElement?i:n})}var nt={connected(){this._cmpCls=m(this.$el,this.$options.id),E(this.$el,this.$options.id)},disconnected(){this._cmpCls||A(this.$el,this.$options.id)}},Ie={props:{cls:Boolean,animation:"list",duration:Number,velocity:Number,origin:String,transition:String},data:{cls:!1,animation:[!1],duration:200,velocity:.2,origin:!1,transition:"ease",clsEnter:"uk-togglable-enter",clsLeave:"uk-togglable-leave"},computed:{hasAnimation:({animation:t})=>!!t[0],hasTransition:({animation:t})=>["slide","reveal"].some(e=>ct(t[0],e))},methods:{async toggleElement(t,e,i){const n={};return(await Promise.all(b(t).map(o=>{const s=qt(e)?e:!this.isToggled(o);if(!_(o,`before${s?"show":"hide"}`,[this]))return n;const r=(X(i)?i:i===!1||!this.hasAnimation?Nr:this.hasTransition?Ir:Fr)(o,s,this),a=s?this.clsEnter:this.clsLeave;E(o,a),_(o,s?"show":"hide",[this]);const l=()=>{var c;A(o,a),_(o,s?"shown":"hidden",[this]),s&&((c=F("[autofocus]",o).find(R))==null||c.focus({preventScroll:!0}))};return r?r.then(l,()=>(A(o,a),n)):l()}))).every(o=>o!==n)},isToggled(t=this.$el){return t=D(t),m(t,this.clsEnter)?!0:m(t,this.clsLeave)?!1:this.cls?m(t,this.cls.split(" ")[0]):R(t)},_toggle(t,e){if(!t)return;e=!!e;let i;this.cls?(i=p(this.cls," ")||e!==m(t,this.cls),i&&W(t,this.cls,p(this.cls," ")?void 0:e)):(i=e===t.hidden,i&&(t.hidden=!e)),i&&_(t,"toggled",[e,this])}}};function Nr(t,e,{_toggle:i}){return vt.cancel(t),Z.cancel(t),i(t,e)}async function Ir(t,e,{animation:i,duration:n,velocity:o,transition:s,_toggle:r}){var a;const[l="reveal",c="top"]=((a=i[0])==null?void 0:a.split("-"))||[],u=[["left","right"],["top","bottom"]],f=u[p(u[0],c)?0:1],d=f[1]===c,w=["width","height"][u.indexOf(f)],x=`margin-${f[0]}`,S=`margin-${c}`;let Q=P(t)[w];const ot=Z.inProgress(t);await Z.cancel(t),e&&r(t,!0);const wt=je(t.style,["padding","border","width","height","minWidth","minHeight","overflowY","overflowX",x,S]),at=P(t),En=v(h(t,x)),fs=v(h(t,S)),Ht=at[w]+fs;!ot&&!e&&(Q+=fs);const[mi]=zi(t,"<div>");h(mi,{boxSizing:"border-box",height:at.height,width:at.width,...h(t,["overflow","padding","borderTop","borderRight","borderBottom","borderLeft","borderImage",S])}),h(t,{padding:0,border:0,minWidth:0,minHeight:0,[S]:0,width:at.width,height:at.height,overflow:"hidden",[w]:Q});const ds=Q/Ht;n=(o*Ht+n)*(e?1-ds:ds);const ps={[w]:e?Ht:0};d&&(h(t,x,Ht-Q+En),ps[x]=e?En:Ht+En),!d^l==="reveal"&&(h(mi,x,-Ht+Q),Z.start(mi,{[x]:e?0:-Ht},n,s));try{await Z.start(t,ps,n,s)}finally{h(t,wt),Ee(mi.firstChild),e||r(t,!1)}}function Fr(t,e,i){const{animation:n,duration:o,_toggle:s}=i;return e?(s(t,!0),vt.in(t,n[0],o,i.origin)):vt.out(t,n[1]||n[0],o,i.origin).then(()=>s(t,!1))}var Eo={mixins:[Ie],props:{connect:String},data:{connect:"",cls:"uk-active"},computed:{connects:{get:({connect:t},e)=>t?ye(t,e):[],observe:({connect:t})=>t},connectChildren(){return this.connects.flatMap(t=>K(t))}},watch:{connects(t){for(const e of t)I(e,"ul")&&(e.role="presentation")}},observe:on({targets:({connectChildren:t})=>t}),methods:{showConnects(t,e){const i=async({children:n})=>{const o=qe(n).filter((s,r)=>r!==t&&m(s,this.cls));await this.toggleElement(o,!1,e)&&(m(n[t],this.cls)||await this.toggleElement(n[t],!0,e))};return Promise.all(this.connects.map(i))}}};function te(t){t.target.closest('a[href="#"],a[href=""]')&&t.preventDefault()}const M={TAB:9,ENTER:13,ESC:27,SPACE:32,END:35,HOME:36,LEFT:37,UP:38,RIGHT:39,DOWN:40};var To={mixins:[nt,Eo],props:{targets:String,active:null,collapsible:Boolean,multiple:Boolean,toggle:String,content:String,offset:Number,switcherConnect:String},data:{targets:"> *",active:!1,animation:[!0],collapsible:!0,multiple:!1,clsOpen:"uk-open",cls:"uk-active",toggle:".uk-accordion-title",content:".uk-accordion-content",offset:0,switcherConnect:""},beforeConnect(){this.connect=this.$props.connect=this.switcherConnect},computed:{items:({targets:t},e)=>F(t,e),toggles({toggle:t}){return this.items.map(e=>k(t,e))},contents({content:t}){return this.items.map(e=>{var i;return((i=e._wrapper)==null?void 0:i.firstElementChild)||k(t,e)})}},watch:{items(t,e){if(e||m(t,this.clsOpen))return;const i=this.active!==!1&&t[Number(this.active)]||!this.collapsible&&t[0];i&&this.toggle(i,!1)},connectChildren(){this.showConnects(dt(this.items,t=>m(t,this.clsOpen)),!1)},toggles(){this.$emit()},contents(t){for(const e of t){const i=m(this.items.find(n=>n.contains(e)),this.clsOpen);li(e,!i)}this.$emit()}},observe:on(),events:[{name:"click keydown",delegate:({targets:t,$props:e})=>`${t} ${e.toggle}`,handler(t){if(t.type==="keydown"&&t.keyCode!==M.SPACE)return;const e=Vt(this.toggles,t.current);if(e===-1)return;te(t);const i=Hr(t.target);this.toggle(e).finally(i)}},{name:"show hide shown hidden",self:!0,delegate:({targets:t})=>t,handler(){this.$emit()}}],update(){const t=we(this.items,`.${this.clsOpen}`);for(const e in this.items){const i=this.toggles[e],n=this.contents[e];if(!i||!n)continue;i.id=De(this,i);const o=p(t,this.items[e]);T(n,{id:De(this,n),role:"region","aria-labelledby":i.id}),I(n,"ul")&&T(K(n),"role","presentation");const s=[n.id];for(const{children:r}of this.connects){const a=r[e];a&&(T(a,{id:De(this,a),role:"tabpanel","aria-labelledby":i.id}),s.push(a.id))}T(i,{role:I(i,"a")?"button":null,"aria-controls":s.join(" "),"aria-expanded":o,"aria-disabled":!this.collapsible&&t.length<2&&o})}},methods:{async toggle(t,e){e=e!==!1;const i=kt(t,this.items);t=this.items[i];let n=[t];const o=we(this.items,`.${this.clsOpen}`),s=p(o,t);if(s&&!this.collapsible&&o.length<2)return;!s&&!this.multiple&&n.push(...o);const r=l=>this.toggleElement(l,!p(o,l),(c,u)=>{if(W(c,this.clsOpen,u),!e||!this.hasAnimation){li(k(this.content,c),!u);return}return zr(c,u,this)}),a=()=>{const l=dt(K(this.connects[0]),c=>m(c,this.cls));return l===i?dt(this.items,c=>c!==t&&p(o,c)):l};return Promise.all([...n.map(r),this.showConnects(s?a():i,e)])}}};function li(t,e){t&&(t.hidden=e)}async function zr(t,e,{content:i,duration:n,velocity:o,transition:s}){var r;i=((r=t._wrapper)==null?void 0:r.firstElementChild)||k(i,t),t._wrapper||(t._wrapper=Ze(i,"<div>"));const a=t._wrapper;h(a,"overflow","hidden");const l=v(h(a,"height"));await Z.cancel(a),li(i,!1);const c=de(["marginTop","marginBottom"],f=>h(i,f))+P(i).height,u=l/c;n=c?(o*c+n)*(e?1-u:u):0,h(a,"height",l),await Z.start(a,{height:e?c:0},n,s),Ee(i),delete t._wrapper,e||li(i,!0)}function Hr(t){const e=Dt(t,!0);let i;return(function n(){i=requestAnimationFrame(()=>{const{top:o}=P(t);o<0&&(e.scrollTop+=o),n()})})(),()=>requestAnimationFrame(()=>cancelAnimationFrame(i))}var qr={mixins:[nt,Ie],args:"animation",props:{animation:Boolean,close:String},data:{animation:!0,selClose:".uk-alert-close",duration:150},events:{name:"click",delegate:({selClose:t})=>t,handler(t){te(t),this.close()}},methods:{async close(){await this.toggleElement(this.$el,!1,Lr),this.$destroy(!0)}}};function Lr(t,e,{duration:i,transition:n,velocity:o}){const s=v(h(t,"height"));return h(t,"height",s),Z.start(t,{height:0,marginTop:0,marginBottom:0,paddingTop:0,paddingBottom:0,borderTop:0,borderBottom:0,opacity:0},o*s+i,n)}var ci={props:{media:Boolean},data:{media:!1},connected(){const t=Wr(this.media,this.$el);if(this.matchMedia=!0,t){this.mediaObj=window.matchMedia(t);const e=()=>{this.matchMedia=this.mediaObj.matches,_(this.$el,ke("mediachange",!1,!0,[this.mediaObj]))};this.offMediaObj=$(this.mediaObj,"change",()=>{e(),this.$emit("resize")}),e()}},disconnected(){var t;(t=this.offMediaObj)==null||t.call(this)}};function Wr(t,e){if(O(t)){if(ct(t,"@"))t=v(h(e,`--uk-breakpoint-${t.slice(1)}`));else if(isNaN(t))return t}return t&&gt(t)?`(min-width: ${t}px)`:""}function Co(t){return R(t)?Math.ceil(Math.max(0,...F("[stroke]",t).map(e=>{var i;return((i=e.getTotalLength)==null?void 0:i.call(e))||0}))):0}const _o={x:hi,y:hi,rotate:hi,scale:hi,color:sn,backgroundColor:sn,borderColor:sn,blur:It,hue:It,fopacity:It,grayscale:It,invert:It,saturate:It,sepia:It,opacity:jr,stroke:Ur,bgx:Oo,bgy:Oo},{keys:Po}=Object;No(Po(_o),"list"),No(Po(_o),void 0);function hi(t,e,i){let n=fi(i)||{x:"px",y:"px",rotate:"deg"}[t]||"",o;return t==="x"||t==="y"?(t=`translate${yt(t)}`,o=s=>v(v(s).toFixed(n==="px"?0:6))):t==="scale"&&(n="",o=s=>{var r;return fi([s])?L(s,"width",e,!0)/e[`offset${(r=s.endsWith)!=null&&r.call(s,"vh")?"Height":"Width"}`]:v(s)}),i.length===1&&i.unshift(t==="scale"?1:0),i=ee(i,o),(s,r)=>{s.transform=`${s.transform||""} ${t}(${Fe(i,r)}${n})`}}function sn(t,e,i){return i.length===1&&i.unshift(ze(e,t,"")),i=ee(i,n=>Rr(e,n)),(n,o)=>{const[s,r,a]=Ao(i,o),l=s.map((c,u)=>(c+=a*(r[u]-c),u===3?v(c):parseInt(c,10))).join(",");n[t]=`rgba(${l})`}}function Rr(t,e){return ze(t,"color",e).split(/[(),]/g).slice(1,-1).concat(1).slice(0,4).map(v)}function It(t,e,i){i.length===1&&i.unshift(0);const n=fi(i)||{blur:"px",hue:"deg"}[t]||"%";return t={fopacity:"opacity",hue:"hue-rotate"}[t]||t,i=ee(i),(o,s)=>{const r=Fe(i,s);o.filter=`${o.filter||""} ${t}(${r+n})`}}function jr(t,e,i){return i.length===1&&i.unshift(ze(e,t,"")),i=ee(i),(n,o)=>{n[t]=Fe(i,o)}}function Ur(t,e,i){i.length===1&&i.unshift(0);const n=fi(i),o=Co(e);return i=ee(i.reverse(),s=>(s=v(s),n==="%"?s*o/100:s)),i.some(([s])=>s)?(h(e,"strokeDasharray",o),(s,r)=>{s.strokeDashoffset=Fe(i,r)}):Y}function Oo(t,e,i,n){i.length===1&&i.unshift(0);const o=t==="bgy"?"height":"width";n[t]=ee(i,a=>L(a,o,e));const s=["bgx","bgy"].filter(a=>a in n);if(s.length===2&&t==="bgx")return Y;if(ze(e,"backgroundSize","")==="cover")return Vr(t,e,i,n);const r={};for(const a of s)r[a]=Bo(e,a);return Mo(s,r,n)}function Vr(t,e,i,n){const o=Yr(e);if(!o.width)return Y;const s={width:e.offsetWidth,height:e.offsetHeight},r=["bgx","bgy"].filter(u=>u in n),a={};for(const u of r){const f=n[u].map(([S])=>S),d=Math.min(...f),g=Math.max(...f),w=f.indexOf(d)<f.indexOf(g),x=g-d;a[u]=`${(w?-x:0)-(w?d:g)}px`,s[u==="bgy"?"height":"width"]+=x}const l=ki.cover(o,s);for(const u of r){const f=u==="bgy"?"height":"width",d=l[f]-s[f];a[u]=`max(${Bo(e,u)},-${d}px) + ${a[u]}`}const c=Mo(r,a,n);return(u,f)=>{c(u,f),u.backgroundSize=`${l.width}px ${l.height}px`,u.backgroundRepeat="no-repeat"}}function Bo(t,e){return ze(t,`background-position-${e.slice(-1)}`,"")}function Mo(t,e,i){return function(n,o){for(const s of t){const r=Fe(i[s],o);n[`background-position-${s.slice(-1)}`]=`calc(${e[s]} + ${r}px)`}}}const Do={},ui={};function Yr(t){const e=h(t,"backgroundImage").replace(/^none|url\(["']?(.+?)["']?\)$/,"$1");if(ui[e])return ui[e];const i=new Image;return e&&(i.src=e,!i.naturalWidth&&!Do[e])?(B(i,"error load",()=>{ui[e]=rn(i),_(t,ke("load",!1))}),Do[e]=!0,rn(i)):ui[e]=rn(i)}function rn(t){return{width:t.naturalWidth,height:t.naturalHeight}}function ee(t,e=v){const i=[],{length:n}=t;let o=0;for(let s=0;s<n;s++){let[r,a]=O(t[s])?t[s].trim().split(/ (?![^(]*\))/):[t[s]];if(r=e(r),a=a?v(a)/100:null,s===0?a===null?a=0:a&&i.push([r,0]):s===n-1&&(a===null?a=1:a!==1&&(i.push([r,a]),a=1)),i.push([r,a]),a===null)o++;else if(o){const l=i[s-o-1][1],c=(a-l)/(o+1);for(let u=o;u>0;u--)i[s-u][1]=l+c*(o-u+1);o=0}}return i}function Ao(t,e){const i=dt(t.slice(1),([,n])=>e<=n)+1;return[t[i-1][0],t[i][0],(e-t[i-1][1])/(t[i][1]-t[i-1][1])]}function Fe(t,e){const[i,n,o]=Ao(t,e);return i+(n-i)*o}const Gr=/^-?\d+(?:\.\d+)?(\S+)?/;function fi(t,e){var i;for(const n of t){const o=(i=n.match)==null?void 0:i.call(n,Gr);if(o)return o[1]}return e}function ze(t,e,i){const n=t.style[e],o=h(h(t,e,i),e);return t.style[e]=n,o}function No(t,e){return Object.fromEntries(t.map(i=>[i,e]))}function Qr(t,e){return e>=0?Math.pow(t,e+1):1-Math.pow(1-t,1-e)}var Xr={props:{parallaxTarget:Boolean,parallaxStart:String,parallaxEnd:String,parallaxEasing:Number},data:{parallaxTarget:!1,parallaxStart:0,parallaxEnd:0,parallaxEasing:0},observe:[rt({target:({$el:t,parallaxTarget:e})=>[t,e],filter:({parallax:t})=>t}),ai({filter:({parallax:t})=>t})],computed:{parallaxTargetFallback:(t,e)=>e,parallaxTarget({parallaxTarget:t},e){return t&&j(t,e)||this.parallaxTargetFallback}},update:{read(){if(!this.parallax)return;const t=this.parallaxTarget;if(!t)return;const e=L(this.parallaxStart,"height",t,!0),i=L(this.parallaxEnd,"height",t,!0);return{percent:Qr(Gi(t,e,i),this.parallaxEasing)}},events:["scroll","resize"]}};const an=Symbol();var Io={mixins:[Xr],args:"autoplay",props:{automute:Boolean,autoplay:Boolean,restart:Boolean,inviewMargin:String,inviewQueued:Number,hoverTarget:Boolean,hoverRewind:Number,reducedMotionTime:Number},data:{automute:!1,autoplay:!0,restart:!1,inviewMargin:"0px",inviewQueued:0,hoverTarget:!1,hoverRewind:0,reducedMotionTime:0},beforeConnect(){const t=I(this.$el,"video");this.restart=t&&this.restart,this.parallax=t&&this.autoplay==="parallax",this.manualControl=["hover","parallax"].includes(this.autoplay),this.inviewQueued=this.autoplay==="inview"&&this.inviewQueued,this.inviewQueued&&(this.$el[an]=this.$el.loop,this.$el.loop=!1),this.autoplay==="inview"&&t&&!ht(this.$el,"preload")&&(this.$el.preload="none"),!t&&!ht(this.$el,"allow")&&(this.$el.allow="autoplay"),this.autoplay==="hover"&&(t?(this.hoverTarget=j(this.hoverTarget,this.$el)||this.$el,be(this.hoverTarget)||(this.hoverTarget.tabIndex=0)):this.autoplay=!0),(this.automute||ht(this.$el,"muted"))&&Gn(this.$el)},disconnected(){this.$el[an]&&(this.$el.loop=!0),Ft.delete(this.$el)},events:[{name:`${jt} focusin`,el:({hoverTarget:t})=>t,filter:({autoplay:t})=>t==="hover",handler(t){var e;(e=this._reverseAbort)==null||e.abort(),!ut(t)||!ln(this.$el)?this.play():this.pause()}},{name:`${Ut} focusout`,el:({hoverTarget:t})=>t,filter:({autoplay:t})=>t==="hover",handler(t){var e;ut(t)||((e=this._reverseAbort)==null||e.abort(),this.pause(),this._reverseAbort=Kr(this.$el,this.hoverRewind))}},{name:"error pause ended",filter:({inviewQueued:t})=>t,handler(t){(t.type==="error"||t.type==="ended"&&!this.$el[an])&&Ft.delete(this.$el),Ho()}}],observe:[Nt({filter:({$el:t})=>t.preload==="none",handler([{target:t}]){t.preload="",this.$reset()}}),Nt({filter:({$el:t,manualControl:e})=>!e&&t.preload!=="none",handler([{isIntersecting:t}]){document.fullscreenElement||(t?this.autoplay&&this._autoplay():this.pause())},args:{intersecting:!1},options:({$el:t,autoplay:e,inviewMargin:i})=>({root:e==="inview"?null:N(t).closest(":not(a)"),rootMargin:e==="inview"?i:"0px"})})],update:{write({percent:t}){if(!this.parallax)return;const{duration:e,seeking:i}=this.$el;!isNaN(e)&&!i&&(this.$el.currentTime=t*e)},events:["scroll","resize"]},methods:{_autoplay(){window.matchMedia("(prefers-reduced-motion: reduce)").matches?(this.pause(),I(this.$el,"video")&&(this.$el.currentTime=this.reducedMotionTime)):this.play()},play(){this.inviewQueued?(Ft.set(this.$el,this.inviewQueued),Ho()):ji(this.$el)},pause(){Yn(this.$el),Ft.delete(this.$el),this.restart&&(this.$el.currentTime=0)}}};function ln(t){return!t.paused&&!t.ended}const Ft=new Map,Fo=new WeakMap;let zo;async function Ho(){cancelAnimationFrame(zo),await new Promise(i=>zo=requestAnimationFrame(i));const t=i=>{var n;return(n=Fo.get(i))!=null?n:0},e=Jr(Ft.keys()).sort((i,n)=>t(i)-t(n));for(const i of e){const n=Ft.get(i);ln(i)||e.filter(ln).length/Ft.size>=n||(Fo.set(i,t(i)+1),ji(i))}}function Jr(t){t=[...t];for(let e=t.length-1;e>0;e--){let i=Math.floor(Math.random()*(e+1));[t[e],t[i]]=[t[i],t[e]]}return t}function Kr(t,e){const i=t.currentTime;if(isNaN(i)||!e)return;e*=Math.max(1,i/10+.5);const n=new AbortController,o=Date.now();return(function s(){requestAnimationFrame(()=>{n.signal.aborted||(t.seeking||(t.currentTime=Math.max(0,i-(Date.now()-o)*e/1e3)),t.currentTime>0&&s())})})(),n}var Zr={mixins:[Io],props:{width:Number,height:Number},data:{automute:!0},created(){this.useObjectFit=I(this.$el,"img","video")},observe:rt({target:({$el:t})=>qo(t)||N(t),filter:({useObjectFit:t})=>!t}),update:{read(){if(this.useObjectFit)return!1;const{$el:t,width:e=t.clientWidth,height:i=t.clientHeight}=this,n=qo(t)||N(t),o=ki.cover({width:e,height:i},{width:n.offsetWidth,height:n.offsetHeight});return o.width&&o.height?o:!1},write({height:t,width:e}){h(this.$el,{height:t,width:e})},events:["resize"]}};function qo(t){for(;t=N(t);)if(h(t,"position")!=="static")return t}var cn={props:{container:Boolean},data:{container:!0},computed:{container({container:t}){return t===!0&&this.$container||t&&k(t)}}},ta={props:{pos:String,offset:Boolean,flip:Boolean,shift:Boolean,inset:Boolean},data:{pos:`bottom-${Tt?"right":"left"}`,offset:!1,flip:!0,shift:!0,inset:!1},connected(){this.pos=[...this.$props.pos.split("-"),"center"].slice(0,2),[this.dir,this.align]=this.pos,this.axis=p(["top","bottom"],this.dir)?"y":"x"},methods:{positionAt(t,e,i){let n=[this.getPositionOffset(t),this.getShiftOffset(t)];const o=[this.flip&&"flip",this.shift&&"shift"],s={element:[this.inset?this.dir:qn(this.dir),this.align],target:[this.dir,this.align]};if(this.axis==="y"){for(const l in s)s[l].reverse();n.reverse(),o.reverse()}const r=Lo(t),a=P(t);h(t,{top:-a.height,left:-a.width}),to(t,e,{attach:s,offset:n,boundary:i,placement:o,viewportOffset:this.getViewportOffset(t)}),r()},getPositionOffset(t=this.$el){return L(this.offset===!1?h(t,"--uk-position-offset"):this.offset,this.axis==="x"?"width":"height",t)*(p(["left","top"],this.dir)?-1:1)*(this.inset?-1:1)},getShiftOffset(t=this.$el){return this.align==="center"?0:L(h(t,"--uk-position-shift-offset"),this.axis==="y"?"width":"height",t)*(p(["left","top"],this.align)?1:-1)},getViewportOffset(t){return L(h(t,"--uk-position-viewport-offset"))}}};function Lo(t){const e=Dt(t),{scrollTop:i}=e;return()=>{i!==e.scrollTop&&(e.scrollTop=i)}}let hn;function Wo(t){const e=$(t,"touchstart",o=>{if(o.targetTouches.length!==1||C(o.target,'input[type="range"]'))return;let s=mt(o).y;const r=$(t,"touchmove",a=>{const l=mt(a).y;l!==s&&(s=l,Xt(a.target).some(c=>{if(!t.contains(c))return!1;let{scrollHeight:u,clientHeight:f}=c;return f<u})||a.preventDefault())},{passive:!1});B(t,"scroll touchend touchcancel",r,{capture:!0})},{passive:!0});if(hn)return e;hn=!0;const{scrollingElement:i}=document,n={overflowY:CSS.supports("overflow","clip")?"clip":"hidden",touchAction:"none",scrollbarGutter:ti(window)-i.clientWidth?"stable":""};return h(i,n),()=>{hn=!1,e(),Mi(i,n)}}let H;var Ro={mixins:[nt,cn,ta,Ie],args:"pos",props:{mode:"list",toggle:Boolean,boundary:Boolean,boundaryX:Boolean,boundaryY:Boolean,target:Boolean,targetX:Boolean,targetY:Boolean,stretch:Boolean,delayShow:Number,delayHide:Number,autoUpdate:Boolean,animateOut:Boolean,bgScroll:Boolean,closeOnScroll:Boolean},data:{mode:["click","hover"],toggle:"- *",boundary:!1,boundaryX:!1,boundaryY:!1,target:!1,targetX:!1,targetY:!1,stretch:!1,delayShow:0,delayHide:800,autoUpdate:!0,animateOut:!1,bgScroll:!0,animation:["uk-animation-fade"],cls:"uk-open",container:!1,closeOnScroll:!1,selClose:".uk-drop-close"},computed:{boundary({boundary:t,boundaryX:e,boundaryY:i},n){return[j(e||t,n)||window,j(i||t,n)||window]},target({target:t,targetX:e,targetY:i},n){return e||(e=t||this.targetEl),i||(i=t||this.targetEl),[e===!0?window:j(e,n),i===!0?window:j(i,n)]}},created(){this.tracker=new jn},connected(){E(this.$el,"uk-drop"),this.toggle&&!this.targetEl&&(this.targetEl=ia(this)),T(this.targetEl,"aria-expanded",!1),this._style=je(this.$el.style,["width","height"])},disconnected(){this.isActive()&&(this.hide(!1),H=null),h(this.$el,this._style)},events:[{name:"click",delegate:({selClose:t})=>t,handler(t){te(t),this.hide(!1)}},{name:"click",delegate:()=>'a[href*="#"]',handler({defaultPrevented:t,current:e}){const{hash:i}=e;!t&&i&&Yt(e)&&!this.$el.contains(k(i))&&this.hide(!1)}},{name:"beforescroll",handler(){this.hide(!1)}},{name:"toggle",self:!0,handler(t,e){t.preventDefault(),this.isToggled()?this.hide(!1):this.show(e==null?void 0:e.$el,!1)}},{name:"toggleshow",self:!0,handler(t,e){t.preventDefault(),this.show(e==null?void 0:e.$el)}},{name:"togglehide",self:!0,handler(t){t.preventDefault(),C(this.$el,":focus,:hover")||this.hide()}},{name:`${jt} focusin`,filter:({mode:t})=>p(t,"hover"),handler(t){ut(t)||this.clearTimers()}},{name:`${Ut} focusout`,filter:({mode:t})=>p(t,"hover"),handler(t){!ut(t)&&t.relatedTarget&&this.hide()}},{name:"toggled",self:!0,handler(t,e){e&&(this.clearTimers(),this.position())}},{name:"show",self:!0,handler(){H=this,this.tracker.init(),T(this.targetEl,"aria-expanded",!0);const t=[na(this),oa(this),ra(this),this.autoUpdate&&jo(this),this.closeOnScroll&&sa(this)];B(this.$el,"hide",()=>t.forEach(e=>e&&e()),{self:!0}),this.bgScroll||B(this.$el,"hidden",Wo(this.$el),{self:!0})}},{name:"beforehide",self:!0,handler(){this.clearTimers()}},{name:"hide",handler({target:t}){if(this.$el!==t){H=H===null&&this.$el.contains(t)&&this.isToggled()?this:H;return}H=this.isActive()?null:H,this.tracker.cancel(),T(this.targetEl,"aria-expanded",!1)}}],update:{write(){this.isToggled()&&!m(this.$el,this.clsEnter)&&this.position()}},methods:{show(t=this.targetEl,e=!0){if(this.isToggled()&&t&&this.targetEl&&t!==this.targetEl&&this.hide(!1,!1),this.targetEl=t,this.clearTimers(),!this.isActive()){if(H){if(e&&H.isDelaying()){this.showTimer=setTimeout(()=>C(t,":hover")&&this.show(),10);return}let i;for(;H&&i!==H&&!H.$el.contains(this.$el);)i=H,H.hide(!1,!1);e=!1}this.container&&N(this.$el)!==this.container&&it(this.container,this.$el),E(this.$el,this.clsEnter),this.showTimer=setTimeout(()=>this.toggleElement(this.$el,!0),e&&this.delayShow||0)}},hide(t=!0,e=!0){const i=()=>{A(this.$el,this.clsEnter),this.toggleElement(this.$el,!1,this.animateOut&&e)};this.clearTimers(),this.isDelayedHide=t,t&&this.isDelaying()?this.hideTimer=setTimeout(this.hide,50):t&&this.delayHide?this.hideTimer=setTimeout(i,this.delayHide):i()},clearTimers(){clearTimeout(this.showTimer),clearTimeout(this.hideTimer),this.showTimer=null,this.hideTimer=null},isActive(){return H===this},isDelaying(){return[this.$el,...F(".uk-drop",this.$el)].some(t=>this.tracker.movesTo(t))},position(){const t=Lo(this.$el);A(this.$el,"uk-drop-stack"),h(this.$el,this._style),this.$el.hidden=!0;const e=this.target.map(r=>ea(this.$el,r)),i=this.boundary.map(r=>y(r)),n=this.getViewportOffset(this.$el),o=[[0,["x","width","left","right"]],[1,["y","height","top","bottom"]]];for(const[r,[a,l]]of o)this.axis!==a&&p([a,!0],this.stretch)&&h(this.$el,{[l]:Math.min(i[r][l],e[r][l]-2*n),[`overflow-${a}`]:"auto"});const s=e[0].width-2*n;this.$el.hidden=!1,h(this.$el,"maxWidth",""),this.$el.offsetWidth>s&&E(this.$el,"uk-drop-stack"),h(this.$el,"maxWidth",s),this.positionAt(this.$el,this.target,this.boundary);for(const[r,[a,l,c,u]]of o)if(this.axis===a&&p([a,!0],this.stretch)){const f=Math.abs(this.getPositionOffset()),d=y(this.target[r]),g=y(this.$el);h(this.$el,{[l]:(d[c]>g[c]?d[this.inset?u:c]-Math.max(i[r][c],e[r][c]+n):Math.min(i[r][u],e[r][u]-n)-d[this.inset?c:u])-f,[`overflow-${a}`]:"auto"}),this.positionAt(this.$el,this.target,this.boundary)}t()}}};function ea(t,e){return tt(Jt(e).find(i=>i.contains(t)))}function ia(t){const e=j(t.toggle,t.$el);return e&&(t.$create("toggle",e,{target:t.$el,mode:t.mode}),e.ariaHasPopup=!0),e}function na(t){const e=()=>t.$emit(),i=[Wi(e),_e(Jt(t.$el).concat(t.target),e)];return()=>i.forEach(n=>n.disconnect())}function jo(t,e=()=>t.$emit()){return $([document,...Jt(t.$el)],"scroll",e,{passive:!0})}function oa(t){return $(document,"keydown",e=>{e.keyCode===M.ESC&&t.hide(!1)})}function sa(t){return jo(t,()=>t.hide(!1))}function ra(t){return $(document,Ct,({target:e})=>{t.$el.contains(e)||B(document,`${_t} ${ge} scroll`,({defaultPrevented:i,type:n,target:o})=>{var s;!i&&n===_t&&e===o&&!((s=t.targetEl)!=null&&s.contains(e))&&t.hide(!1)},!0)})}var Uo={mixins:[nt,cn],props:{align:String,boundary:Boolean,dropbar:Boolean,dropbarAnchor:Boolean,duration:Number,mode:Boolean,offset:Boolean,stretch:Boolean,delayShow:Boolean,delayHide:Boolean,target:Boolean,targetX:Boolean,targetY:Boolean,animation:Boolean,animateOut:Boolean,closeOnScroll:Boolean},data:{align:Tt?"right":"left",clsDrop:"uk-dropdown",clsDropbar:"uk-dropnav-dropbar",boundary:!0,dropbar:!1,dropbarAnchor:!1,flip:!0,delayShow:160,duration:200,container:!1,selNavItem:"> li > a, > ul > li > a"},computed:{dropbarAnchor:({dropbarAnchor:t},e)=>j(t,e)||e,dropbar({dropbar:t}){return t?(t=this._dropbar||j(t,this.$el)||k(`+ .${this.clsDropbar}`,this.$el),t||(this._dropbar=k("<div>"))):null},dropContainer(t,e){return this.container||e},dropdowns({clsDrop:t},e){var i;const n=F(`.${t}`,e);if(this.dropContainer!==e)for(const o of F(`.${t}`,this.dropContainer)){const s=(i=this.getDropdown(o))==null?void 0:i.targetEl;!p(n,o)&&s&&this.$el.contains(s)&&n.push(o)}return n},items({selNavItem:t},e){return F(t,e)}},watch:{dropbar(t){E(t,"uk-dropbar","uk-dropbar-top",this.clsDropbar,`uk-${this.$options.name}-dropbar`)},dropdowns(){this.initializeDropdowns()}},connected(){this.initializeDropdowns(),aa(this.$el)},disconnected(){Pt(this._dropbar),delete this._dropbar},events:[{name:"mouseover focusin",delegate:({selNavItem:t})=>t,handler({current:t}){const e=this.getActive();e&&p(e.mode,"hover")&&e.targetEl&&!t.contains(e.targetEl)&&!e.isDelaying()&&e.hide(!1)}},{name:"keydown",self:!0,delegate:({selNavItem:t})=>t,handler(t){var e;const{current:i,keyCode:n}=t,o=this.getActive();if(n===M.DOWN)if((o==null?void 0:o.targetEl)===i)t.preventDefault(),(e=k(ve,o.$el))==null||e.focus();else{const s=this.dropdowns.find(r=>{var a;return((a=this.getDropdown(r))==null?void 0:a.targetEl)===i});s&&(t.preventDefault(),i.click(),B(s,"show",r=>{var a;return(a=k(ve,r.target))==null?void 0:a.focus()}))}Vo(t,this.items,o)}},{name:"keydown",el:({dropContainer:t})=>t,delegate:({clsDrop:t})=>`.${t}`,handler(t){var e;const{current:i,keyCode:n,target:o}=t;if(Ye(o)||!p(this.dropdowns,i))return;const s=this.getActive();let r=-1;if(n===M.HOME?r=0:n===M.END?r="last":n===M.UP?r="previous":n===M.DOWN?r="next":n===M.ESC&&((e=s.targetEl)==null||e.focus()),~r){t.preventDefault();const a=F(ve,i);a[kt(r,a,dt(a,l=>C(l,":focus")))].focus();return}Vo(t,this.items,s)}},{name:"mouseleave",el:({dropbar:t})=>t,filter:({dropbar:t})=>t,handler(){const t=this.getActive();t&&p(t.mode,"hover")&&!this.dropdowns.some(e=>C(e,":hover"))&&t.hide()}},{name:"beforeshow",el:({dropContainer:t})=>t,filter:({dropbar:t})=>t,handler({target:t}){this.isDropbarDrop(t)&&(this.dropbar.previousElementSibling!==this.dropbarAnchor&&Je(this.dropbarAnchor,this.dropbar),E(t,`${this.clsDrop}-dropbar`))}},{name:"show",el:({dropContainer:t})=>t,filter:({dropbar:t})=>t,handler({target:t}){if(!this.isDropbarDrop(t))return;const e=this.getDropdown(t),i=()=>{const n=Math.max(...[...$e(t,`.${this.clsDrop}`),t].map(o=>y(o).bottom));y(this.dropbar,{left:y(this.dropbar).left,top:this.getDropbarOffset(e.getPositionOffset())}),this.transitionTo(n-y(this.dropbar).top+v(h(t,"marginBottom")),t)};this._observer=_e([e.$el,...e.target],i),i()}},{name:"beforehide",el:({dropContainer:t})=>t,filter:({dropbar:t})=>t,handler(t){const e=this.getActive();C(this.dropbar,":hover")&&e.$el===t.target&&this.isDropbarDrop(e.$el)&&p(e.mode,"hover")&&e.isDelayedHide&&!this.items.some(i=>e.targetEl!==i&&C(i,":focus"))&&t.preventDefault()}},{name:"hide",el:({dropContainer:t})=>t,filter:({dropbar:t})=>t,handler({target:t}){var e;if(!this.isDropbarDrop(t))return;(e=this._observer)==null||e.disconnect();const i=this.getActive();(!i||i.$el===t)&&this.transitionTo(0)}}],methods:{getActive(){var t;return p(this.dropdowns,(t=H)==null?void 0:t.$el)&&H},async transitionTo(t,e){const{dropbar:i}=this,n=ft(i);if(e=n<t&&e,await Z.cancel([e,i]),e){const o=y(e).top-y(i).top-n;o>0&&h(e,"transitionDelay",`${o/t*this.duration}ms`)}h(e,"clipPath",`polygon(0 0,100% 0,100% ${n}px,0 ${n}px)`),ft(i,n),await Promise.all([Z.start(i,{height:t},this.duration),Z.start(e,{clipPath:`polygon(0 0,100% 0,100% ${t}px,0 ${t}px)`},this.duration).finally(()=>h(e,{clipPath:"",transitionDelay:""}))]).catch(Y)},getDropdown(t){return this.$getComponent(t,"drop")||this.$getComponent(t,"dropdown")},isDropbarDrop(t){return p(this.dropdowns,t)&&m(t,this.clsDrop)},getDropbarOffset(t){const{$el:e,target:i,targetY:n}=this,{top:o,height:s}=y(j(n||i||e,e));return o+s+t},initializeDropdowns(){this.$create("drop",this.dropdowns.filter(t=>!this.getDropdown(t)),{...this.$props,flip:this.flip&&!this.$props.dropbar,shift:!0,pos:`bottom-${this.align}`,boundary:!1,boundaryX:this.boundary===!0?this.$el:this.boundary})}}};function Vo(t,e,i){var n,o,s;const{current:r,keyCode:a}=t;let l=-1;a===M.HOME?l=0:a===M.END?l="last":a===M.LEFT?l="previous":a===M.RIGHT?l="next":a===M.TAB&&((n=i.targetEl)==null||n.focus(),(o=i.hide)==null||o.call(i,!1)),~l&&(t.preventDefault(),(s=i.hide)==null||s.call(i,!1),e[kt(l,e,e.indexOf(i.targetEl||r))].focus())}function aa(t){const e=()=>i.forEach(n=>n()),i=[B(t.ownerDocument,Si,n=>t.contains(n.target)||e()),$(t,`mouseenter ${jt}`,n=>n.stopPropagation(),{capture:!0}),$(t,`mouseleave ${Ut}`,e,{capture:!0})]}var la={mixins:[nt],args:"target",props:{target:Boolean},data:{target:!1},computed:{input:(t,e)=>k(me,e),state(){return this.input.nextElementSibling},target({target:t},e){return t&&(t===!0&&N(this.input)===e&&this.input.nextElementSibling||k(t,e))}},update(){var t;const{target:e,input:i}=this;if(!e)return;let n;const o=Ye(e)?"value":"textContent",s=e[o],r=(t=i.files)!=null&&t[0]?i.files[0].name:C(i,"select")&&(n=F("option",i).filter(a=>a.selected)[0])?n.textContent:i.value;s!==r&&(e[o]=r)},events:[{name:"change",handler(){this.$emit()}},{name:"reset",el:({$el:t})=>t.closest("form"),handler(){this.$emit()}}]},Yo={props:{margin:String,firstRow:Boolean,firstColumn:Boolean},data:{margin:"uk-margin-small-top",firstRow:!1,firstColumn:"uk-first-column"},observe:[Ae({options:{childList:!0}}),Ae({options:{attributes:!0,attributeFilter:["style"]}}),rt({handler(t){for(const{target:e,borderBoxSize:[{inlineSize:i,blockSize:n}]}of t)if(e===this.$el&&!i&&!n)return;this.$emit("resize")},target:({$el:t})=>[t,...K(t)]})],update:{read(){return{rows:Go(K(this.$el))}},write({rows:t}){for(const e of t)for(const i of e)W(i,this.margin,t[0]!==e),W(i,this.firstRow,t[0]===e),W(i,this.firstColumn,e[Tt?e.length-1:0]===i)},events:["resize"]}};function Go(t){const e=[[]],i=t.some((n,o)=>o&&t[o-1].offsetParent!==n.offsetParent);for(const n of t){if(!R(n))continue;const o=un(n,i);for(let s=e.length-1;s>=0;s--){const r=e[s];if(!r[0]){r.push(n);break}const a=un(r[0],i);if(o.top>=a.bottom-1&&o.top!==a.top){e.push([n]);break}if(o.bottom-1>a.top||o.top===a.top){let l=r.length-1;for(;l>=0;l--){const c=un(r[l],i);if(o.left>=c.left)break}r.splice(l+1,0,n);break}if(s===0){e.unshift([n]);break}}}return e}function un(t,e=!1){let{offsetTop:i,offsetLeft:n,offsetHeight:o,offsetWidth:s}=t;return e&&([i,n]=Te(t)),{top:i,left:n,bottom:i+o,right:n+s}}var ca={extends:Yo,mixins:[nt],name:"grid",props:{masonry:Boolean,parallax:String,parallaxStart:String,parallaxEnd:String,parallaxJustify:Boolean},data:{margin:"",firstRow:"uk-first-row",clsStack:"uk-grid-stack",masonry:!1,parallax:0,parallaxStart:0,parallaxEnd:0,parallaxJustify:!1},connected(){this.masonry&&E(this.$el,"uk-flex-top","uk-flex-wrap-top")},observe:ai({filter:({parallax:t,parallaxJustify:e})=>t||e}),update:[{write({rows:t}){W(this.$el,this.clsStack,!t.some(e=>e.length>1))},events:["resize"]},{read(t){const{rows:e}=t;let{masonry:i,parallax:n,parallaxJustify:o}=this;if(n=Math.max(0,L(n)),!(i||n||o)||Qo(e)||e[0].some((g,w)=>e.some(x=>x[w]&&x[w].offsetWidth!==g.offsetWidth)))return t.translates=t.scrollColumns=!1;let s=v(h(this.$el,"row-gap")),r,a;i?[r,a]=ha(e,s,i==="next"):r=ua(e);const l=r.map(g=>de(g,"offsetHeight")+s*(g.length-1)),c=Math.max(0,...l);let u,f,d;return(n||o)&&(u=l.map((g,w)=>o?c-g+n:n/(w%2||8)),o||(n=Math.max(...l.map((g,w)=>g+u[w]-c))),f=L(this.parallaxStart,"height",this.$el,!0),d=L(this.parallaxEnd,"height",this.$el,!0)),{columns:r,translates:a,scrollColumns:u,parallaxStart:f,parallaxEnd:d,padding:n,height:a?c:""}},write({height:t,padding:e}){h(this.$el,"paddingBottom",e||""),t!==!1&&h(this.$el,"height",t)},events:["resize"]},{read({rows:t,scrollColumns:e,parallaxStart:i,parallaxEnd:n}){return{scrolled:e&&!Qo(t)?Gi(this.$el,i,n):!1}},write({columns:t,scrolled:e,scrollColumns:i,translates:n}){!e&&!n||t.forEach((o,s)=>o.forEach((r,a)=>{let[l,c]=n&&n[s][a]||[0,0];e&&(c+=e*i[s]),h(r,"transform",`translate(${l}px, ${c}px)`)}))},events:["scroll","resize"]}]};function Qo(t){return t.flat().some(e=>h(e,"position")==="absolute")}function ha(t,e,i){const n=[],o=[],s=Array(t[0].length).fill(0);let r=0;for(let a of t){const l=Tt?a.slice().reverse():a;let c=0;for(const u in l){const{offsetWidth:f,offsetHeight:d}=l[u],g=i?u:s.indexOf(Math.min(...s));fn(n,g,l[u]),fn(o,g,[(g-u)*f*(Tt?-1:1),s[g]-r]),s[g]+=d+e,c=Math.max(c,d)}r+=c+e}return[n,o]}function ua(t){const e=[];for(const i of t)for(const n in i)fn(e,n,i[n]);return e}function fn(t,e,i){t[e]||(t[e]=[]),t[e].push(i)}var fa={args:"target",props:{target:String,row:Boolean},data:{target:"> *",row:!0},computed:{elements:({target:t},e)=>F(t,e)},observe:rt({target:({$el:t,elements:e})=>[t,...e.flatMap(i=>[i,...i.children])]}),events:{name:"loadingdone",el:()=>document.fonts,handler(){this.$emit("resize")}},update:{read(){return{rows:(this.row?Go(this.elements):[this.elements]).map(da)}},write({rows:t}){for(const{heights:e,elements:i}of t)i.forEach((n,o)=>h(n,"minHeight",e[o]))},events:["resize"]}};function da(t){if(t.length<2)return{heights:[""],elements:t};let e=t.map(pa);const i=Math.max(...e);return{heights:t.map((n,o)=>e[o].toFixed(2)===i.toFixed(2)?"":i),elements:t}}function pa(t){const e=je(t.style,["display","minHeight"]);R(t)||h(t,"display","block","important"),h(t,"minHeight","");const i=P(t).height-Gt(t,"height","content-box");return h(t,e),i}var ga={args:"target",props:{target:String},data:{target:""},computed:{target:{get:({target:t},e)=>j(t,e),observe:({target:t})=>t}},observe:rt({target:({target:t})=>t}),update:{read(){return this.target?{height:this.target.offsetHeight}:!1},write({height:t}){h(this.$el,"minHeight",t)},events:["resize"]}},ma={mixins:[ci],props:{expand:Boolean,offsetTop:Boolean,offsetBottom:Boolean,min:Number,property:String},data:{expand:!1,offsetTop:!1,offsetBottom:!1,min:0,property:"min-height"},observe:[ko({filter:({expand:t})=>t}),rt({target:({$el:t})=>Xt(t)})],update:{read(){if(!R(this.$el))return!1;if(!this.matchMedia)return{minHeight:!1};const t=Gt(this.$el,"height","content-box"),{body:e,scrollingElement:i}=document,n=Dt(this.$el),{height:o}=tt(n===e?i:n),s=i===n||e===n;let r=`calc(${s?"100vh":`${o}px`}`;if(this.expand){const a=P(n).height-P(this.$el).height;r+=` - ${a}px`}else{if(this.offsetTop)if(s){const a=this.offsetTop===!0?this.$el:j(this.offsetTop,this.$el),{top:l}=y(a);r+=l>0&&l<o/2?` - ${l}px`:""}else r+=` - ${Gt(n,"height",h(n,"boxSizing"))}px`;this.offsetBottom===!0?r+=` - ${P(this.$el.nextElementSibling).height}px`:gt(this.offsetBottom)?r+=` - ${this.offsetBottom}vh`:this.offsetBottom&&se(this.offsetBottom,"px")?r+=` - ${v(this.offsetBottom)}px`:O(this.offsetBottom)&&(r+=` - ${P(j(this.offsetBottom,this.$el)).height}px`)}return r+=`${t?` - ${t}px`:""})`,{minHeight:r}},write({minHeight:t}){h(this.$el,this.property,t===!1?"":`max(${this.min||0}px, ${t})`)},events:["resize"]}},va='<svg width="13" height="13" viewBox="0 0 13 13"><style>.uk-accordion-icon svg&gt;[class*=&quot;line-&quot;]{transition:0.2s ease-out;transition-property:transform, opacity;transform-origin:center}[aria-expanded=&quot;true&quot;] .uk-accordion-icon svg&gt;.line-1{transform:rotate(-45deg);opacity:0}[aria-expanded=&quot;true&quot;] .uk-accordion-icon svg&gt;.line-2{transform:rotate(90deg)}</style><rect width="13" height="1" fill="#000" x="0" y="6" class="line-1"/><rect width="1" height="13" fill="#000" x="6" y="0" class="line-2"/></svg>',ba='<svg width="14" height="14" viewBox="0 0 14 14"><line fill="none" stroke="#000" stroke-width="1.1" x1="1" y1="1" x2="13" y2="13"/><line fill="none" stroke="#000" stroke-width="1.1" x1="13" y1="1" x2="1" y2="13"/></svg>',wa='<svg width="20" height="20" viewBox="0 0 20 20"><line fill="none" stroke="#000" stroke-width="1.4" x1="1" y1="1" x2="19" y2="19"/><line fill="none" stroke="#000" stroke-width="1.4" x1="19" y1="1" x2="1" y2="19"/></svg>',$a='<svg width="12" height="12" viewBox="0 0 12 12"><polyline fill="none" stroke="#000" stroke-width="1.1" points="1 3.5 6 8.5 11 3.5"/></svg>',ya='<svg width="20" height="20" viewBox="0 0 20 20"><rect width="1" height="11" x="9" y="4"/><rect width="11" height="1" x="4" y="9"/></svg>',xa='<svg width="14" height="14" viewBox="0 0 14 14"><polyline fill="none" stroke="#000" stroke-width="1.1" points="1 4 7 10 13 4"/></svg>',ka='<svg width="12" height="12" viewBox="0 0 12 12"><polyline fill="none" stroke="#000" stroke-width="1.1" points="1 3.5 6 8.5 11 3.5"/></svg>',Sa='<svg width="12" height="12" viewBox="0 0 12 12"><polyline fill="none" stroke="#000" stroke-width="1.1" points="1 3.5 6 8.5 11 3.5"/></svg>',Ea='<svg width="20" height="20" viewBox="0 0 20 20"><style>.uk-navbar-toggle-icon svg&gt;[class*=&quot;line-&quot;]{transition:0.2s ease-in-out;transition-property:transform, opacity;transform-origin:center;opacity:1}.uk-navbar-toggle-icon svg&gt;.line-3{opacity:0}[aria-expanded=&quot;true&quot;].uk-navbar-toggle-icon svg&gt;.line-3,[aria-expanded=&quot;true&quot;]&gt;.uk-navbar-toggle-icon svg&gt;.line-3{opacity:1}[aria-expanded=&quot;true&quot;].uk-navbar-toggle-icon svg&gt;.line-2,[aria-expanded=&quot;true&quot;]&gt;.uk-navbar-toggle-icon svg&gt;.line-2{transform:rotate(45deg)}[aria-expanded=&quot;true&quot;].uk-navbar-toggle-icon svg&gt;.line-3,[aria-expanded=&quot;true&quot;]&gt;.uk-navbar-toggle-icon svg&gt;.line-3{transform:rotate(-45deg)}[aria-expanded=&quot;true&quot;].uk-navbar-toggle-icon svg&gt;.line-1,[aria-expanded=&quot;true&quot;]&gt;.uk-navbar-toggle-icon svg&gt;.line-1,[aria-expanded=&quot;true&quot;].uk-navbar-toggle-icon svg&gt;.line-4,[aria-expanded=&quot;true&quot;]&gt;.uk-navbar-toggle-icon svg&gt;.line-4{opacity:0}[aria-expanded=&quot;true&quot;].uk-navbar-toggle-icon svg&gt;.line-1,[aria-expanded=&quot;true&quot;]&gt;.uk-navbar-toggle-icon svg&gt;.line-1{transform:translateY(6px) scaleX(0)}[aria-expanded=&quot;true&quot;].uk-navbar-toggle-icon svg&gt;.line-4,[aria-expanded=&quot;true&quot;]&gt;.uk-navbar-toggle-icon svg&gt;.line-4{transform:translateY(-6px) scaleX(0)}</style><rect width="20" height="2" y="3" class="line-1"/><rect width="20" height="2" y="9" class="line-2"/><rect width="20" height="2" y="9" class="line-3"/><rect width="20" height="2" y="15" class="line-4"/></svg>',Ta='<svg width="40" height="40" viewBox="0 0 40 40"><rect width="1" height="40" x="19" y="0"/><rect width="40" height="1" x="0" y="19"/></svg>',Ca='<svg width="7" height="12" viewBox="0 0 7 12"><polyline fill="none" stroke="#000" stroke-width="1.2" points="1 1 6 6 1 11"/></svg>',_a='<svg width="7" height="12" viewBox="0 0 7 12"><polyline fill="none" stroke="#000" stroke-width="1.2" points="6 1 1 6 6 11"/></svg>',Xo='<svg width="20" height="20" viewBox="0 0 20 20"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"/></svg>',Pa='<svg width="40" height="40" viewBox="0 0 40 40"><circle fill="none" stroke="#000" stroke-width="1.8" cx="17.5" cy="17.5" r="16.5"/><line fill="none" stroke="#000" stroke-width="1.8" x1="38" y1="39" x2="29" y2="30"/></svg>',Oa='<svg width="24" height="24" viewBox="0 0 24 24"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10.5" cy="10.5" r="9.5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="23" y1="23" x2="17" y2="17"/></svg>',Ba='<svg width="25" height="40" viewBox="0 0 25 40"><polyline fill="none" stroke="#000" stroke-width="2" points="4.002,38.547 22.527,20.024 4,1.5"/></svg>',Ma='<svg width="14" height="24" viewBox="0 0 14 24"><polyline fill="none" stroke="#000" stroke-width="1.4" points="1.225,23 12.775,12 1.225,1"/></svg>',Da='<svg width="25" height="40" viewBox="0 0 25 40"><polyline fill="none" stroke="#000" stroke-width="2" points="20.527,1.5 2,20.024 20.525,38.547"/></svg>',Aa='<svg width="14" height="24" viewBox="0 0 14 24"><polyline fill="none" stroke="#000" stroke-width="1.4" points="12.775,1 1.225,12 12.775,23"/></svg>',Na='<svg width="30" height="30" viewBox="0 0 30 30"><circle fill="none" stroke="#000" cx="15" cy="15" r="14"/></svg>',Ia='<svg width="18" height="10" viewBox="0 0 18 10"><polyline fill="none" stroke="#000" stroke-width="1.2" points="1 9 9 1 17 9"/></svg>',Jo={props:{i18n:Object},data:{i18n:null},methods:{t(t,...e){var i,n,o;let s=0;return((o=((i=this.i18n)==null?void 0:i[t])||((n=this.$options.i18n)==null?void 0:n[t]))==null?void 0:o.replace(/%s/g,()=>e[s++]||""))||""}}},Ko={args:"src",props:{width:Number,height:Number,ratio:Number},data:{ratio:1},connected(){this.svg=this.getSvg().then(t=>{if(!this._connected)return;const e=Fa(t,this.$el);return this.svgEl&&e!==this.svgEl&&Pt(this.svgEl),za.call(this,e,t),this.svgEl=e},Y)},disconnected(){this.svg.then(t=>{this._connected||(Ei(this.$el)&&(this.$el.hidden=!1),Pt(t),this.svgEl=null)}),this.svg=null},methods:{async getSvg(){}}};function Fa(t,e){if(Ei(e)||I(e,"canvas")){e.hidden=!0;const n=e.nextElementSibling;return Zo(t,n)?n:Je(e,t)}const i=e.lastElementChild;return Zo(t,i)?i:it(e,t)}function Zo(t,e){return I(t,"svg")&&I(e,"svg")&&t.innerHTML===e.innerHTML}function za(t,e){const i=["width","height"];let n=i.map(s=>this[s]);n.some(s=>s)||(n=i.map(s=>T(e,s)));const o=T(e,"viewBox");o&&!n.some(s=>s)&&(n=o.split(" ").slice(2)),n.forEach((s,r)=>T(t,i[r],v(s)*this.ratio||null))}function ts(t,e){return e&&p(t,"<symbol")&&(t=qa(t)[e]||t),b(Ot(t)).filter(ce)[0]}const Ha=/<symbol([^]*?id=(['"])(.+?)\2[^]*?<\/)symbol>/g,qa=J(function(t){const e={};let i;for(;i=Ha.exec(t);)e[i[3]]=`<svg ${i[1]}svg>`;return e}),di={spinner:Na,totop:Ia,marker:ya,"accordion-icon":va,"close-icon":ba,"close-large":wa,"drop-parent-icon":$a,"nav-parent-icon":ka,"nav-parent-icon-large":xa,"navbar-parent-icon":Sa,"navbar-toggle-icon":Ea,"overlay-icon":Ta,"pagination-next":Ca,"pagination-previous":_a,"search-icon":Xo,"search-medium":Oa,"search-large":Pa,"search-toggle-icon":Xo,"slidenav-next":Ma,"slidenav-next-large":Ba,"slidenav-previous":Aa,"slidenav-previous-large":Da},dn={install:Xa,mixins:[Ko],args:"icon",props:{icon:String},isIcon:!0,beforeConnect(){E(this.$el,"uk-icon")},async connected(){const t=await this.svg;t&&(t.ariaHidden=!0)},methods:{async getSvg(){const t=Ka(this.icon);if(!t)throw"Icon not found.";return t}}},bt={args:!1,extends:dn,data:t=>({icon:$t(t.constructor.options.name)}),beforeConnect(){E(this.$el,this.$options.id)}},La={extends:bt,beforeConnect(){const t=this.$props.icon;this.icon=this.$el.closest(".uk-nav-primary")?`${t}-large`:t}},Wa={extends:bt,mixins:[Jo],i18n:{toggle:"Open Search",submit:"Submit Search"},beforeConnect(){const t=m(this.$el,"uk-search-toggle")||m(this.$el,"uk-navbar-toggle");if(this.icon=t?"search-toggle-icon":m(this.$el,"uk-search-icon")&&this.$el.closest(".uk-search-large")?"search-large":this.$el.closest(".uk-search-medium")?"search-medium":this.$props.icon,!ht(this.$el,"aria-label"))if(t)this.$el.ariaLabel=this.t("toggle");else{const e=this.$el.closest("a,button");e&&(e.ariaLabel=this.t("submit"))}}},Ra={extends:bt,beforeConnect(){this.$el.role="status"},methods:{async getSvg(){const t=await dn.methods.getSvg.call(this);return this.ratio!==1&&h(k("circle",t),"strokeWidth",1/this.ratio),t}}},zt={extends:bt,mixins:[Jo],beforeConnect(){const t=this.$el.closest("a,button");T(t,"role",this.role!==null&&I(t,"a")?"button":this.role);const e=this.t("label");e&&!ht(t,"aria-label")&&T(t,"aria-label",e)}},es={extends:zt,beforeConnect(){E(this.$el,"uk-slidenav");const t=this.$props.icon;this.icon=m(this.$el,"uk-slidenav-large")?`${t}-large`:t}},ja={extends:zt,i18n:{label:"Open menu"},beforeConnect(){const t=this.$el.closest("a,button");t&&(t.ariaExpanded=!1)}},Ua={extends:zt,i18n:{label:"Close"},beforeConnect(){this.icon=`close-${m(this.$el,"uk-close-large")?"large":"icon"}`}},Va={extends:zt,i18n:{label:"Open"}},Ya={extends:zt,i18n:{label:"Back to top"}},Ga={extends:zt,i18n:{label:"Next page"},data:{role:null}},Qa={extends:zt,i18n:{label:"Previous page"},data:{role:null}},pi={};function Xa(t){t.icon.add=(e,i)=>{const n=O(e)?{[e]:i}:e;fe(n,(o,s)=>{di[s]=o,delete pi[s]}),t._initialized&&Bt(document.body,o=>fe(t.getComponents(o),s=>{s.$options.isIcon&&s.icon in n&&s.$reset()}))}}const Ja={twitter:"x"};function Ka(t){return t=Ja[t]||t,di[t]?(pi[t]||(pi[t]=ts(di[Za(t)]||di[t])),pi[t].cloneNode(!0)):null}function Za(t){return Tt?$i($i(t,"left","right"),"previous","next"):t}var tl={args:"dataSrc",props:{dataSrc:String,sources:String,margin:String,target:String,loading:String},data:{dataSrc:"",sources:!1,margin:"50%",target:!1,loading:"lazy"},connected(){this.loading!=="lazy"?this.load():gn(this.$el)&&(this.$el.loading="lazy",pn(this.$el))},disconnected(){this.img&&(this.img.onload=""),delete this.img},observe:Nt({handler(t,e){this.load(),e.disconnect()},options:({margin:t})=>({rootMargin:t}),filter:({loading:t})=>t==="lazy",target:({$el:t,$props:e})=>e.target?[t,...ye(e.target,t)]:t}),methods:{load(){if(this.img)return this.img;const t=gn(this.$el)?this.$el:il(this.$el,this.dataSrc,this.sources);return pe(t,"loading"),pn(this.$el,t.currentSrc),this.img=t}}};function pn(t,e){if(gn(t)){const i=N(t);(I(i,"picture")?K(i):[t]).forEach(o=>is(o,o))}else e&&!p(t.style.backgroundImage,e)&&(h(t,"backgroundImage",`url(${_i(e)})`),_(t,ke("load",!1)))}const el=["data-src","data-srcset","sizes"];function is(t,e){for(const i of el){const n=Lt(t,i);n&&T(e,i.replace(/data-/g,""),n)}}function il(t,e,i){const n=new Image;return nl(n,i),is(t,n),n.onload=()=>pn(t,n.currentSrc),n.src=e,n}function nl(t,e){if(e=ol(e),e.length){const i=Ot("<picture>");for(const n of e){const o=Ot("<source>");T(o,n),it(i,o)}it(i,t)}}function ol(t){if(!t)return[];if(ct(t,"["))try{t=JSON.parse(t)}catch{t=[]}else t=Zi(t);return q(t)||(t=[t]),t.filter(e=>!bi(e))}function gn(t){return I(t,"img")}var sl={props:{target:String,selActive:String},data:{target:!1,selActive:!1},connected(){this.isIntersecting=0},computed:{target:({target:t},e)=>t?F(t,e):e},watch:{target:{handler(){queueMicrotask(()=>this.$reset())},immediate:!1}},observe:[Nt({handler(t){this.isIntersecting=t.reduce((e,{isIntersecting:i})=>e+(i?1:this.isIntersecting?-1:0),this.isIntersecting),this.$emit()},target:({target:t})=>t,args:{intersecting:!1}}),Ae({target:({target:t})=>t,options:{attributes:!0,attributeFilter:["class"]}}),{target:({target:t})=>t,observe:(t,e)=>{const i=_e([...b(t),document.documentElement],e),n=[$(document,"scroll itemshown itemhidden",e,{passive:!0,capture:!0}),$(document,"show hide transitionstart",o=>(e(),i.observe(o.target))),$(document,"shown hidden transitionend transitioncancel",o=>(e(),i.unobserve(o.target)))];return{observe:i.observe.bind(i),unobserve:i.unobserve.bind(i),disconnect(){i.disconnect(),n.map(o=>o())}}},handler(){this.$emit()}}],update:{read(){if(!this.isIntersecting)return!1;for(const t of b(this.target)){let e=!this.selActive||C(t,this.selActive)?rl(t):"";e!==!1&&Ve(t,"uk-light uk-dark",e)}}}};function rl(t){const e=P(t),i=P(window);if(!Ue(e,i))return!1;const{left:n,top:o,height:s,width:r}=e;let a="";for(const l of[.25,.5,.75]){const c=t.ownerDocument.elementsFromPoint(Math.max(0,Math.min(n+r*l,i.width-1)),Math.max(0,Math.min(o+s/2,i.height-1)));for(const u of c){if(t.contains(u)||!al(u)||u.closest('[class*="-leave"]')&&c.some(d=>u!==d&&C(d,'[class*="-enter"]')))continue;const f=h(u,"--uk-inverse");if(f){if(f===a)return`uk-${f}`;a=f;break}}}return a?`uk-${a}`:""}function al(t){if(h(t,"visibility")!=="visible")return!1;for(;t;){if(h(t,"opacity")==="0")return!1;t=N(t)}return!0}var ll={mixins:[nt,ci],props:{fill:String},data:{fill:"",clsWrapper:"uk-leader-fill",clsHide:"uk-leader-hide",attrFill:"data-fill"},computed:{fill:({fill:t},e)=>t||h(e,"--uk-leader-fill-content")},connected(){[this.wrapper]=zi(this.$el,`<span class="${this.clsWrapper}">`)},disconnected(){Ee(this.wrapper.childNodes)},observe:rt(),update:{read(){return{width:Math.trunc(this.$el.offsetWidth/2),fill:this.fill,hide:!this.matchMedia}},write({width:t,fill:e,hide:i}){W(this.wrapper,this.clsHide,i),T(this.wrapper,this.attrFill,new Array(t).join(e))},events:["resize"]}};function ns(){return new Promise(t=>requestAnimationFrame(t))}function mn(t){return new Promise(e=>setTimeout(e,t))}const U=[];var os={mixins:[nt,cn,Ie],props:{selPanel:String,selClose:String,escClose:Boolean,bgClose:Boolean,stack:Boolean,role:String},data:{cls:"uk-open",escClose:!0,bgClose:!0,overlay:!0,stack:!1,role:"dialog"},computed:{panel:({selPanel:t},e)=>k(t,e),transitionElement(){return this.panel}},connected(){const t=this.panel||this.$el;t.role=this.role,this.overlay&&(t.ariaModal=!0)},beforeDisconnect(){p(U,this)&&this.toggleElement(this.$el,!1,!1)},events:[{name:"click",delegate:({selClose:t})=>`${t},a[href*="#"]`,handler(t){const{current:e,defaultPrevented:i}=t,{hash:n}=e;!i&&n&&Yt(e)&&!this.$el.contains(k(n))?this.hide():C(e,this.selClose)&&(te(t),this.hide())}},{name:"toggle",self:!0,handler(t,e){t.defaultPrevented||(t.preventDefault(),this.target=e==null?void 0:e.$el,this.isToggled()===p(U,this)&&this.toggle())}},{name:"beforeshow",self:!0,handler(t){if(p(U,this))return!1;!this.stack&&U.length?(Promise.all(U.map(e=>e.hide())).then(this.show),t.preventDefault()):U.push(this)}},{name:"show",self:!0,handler(){this.stack&&h(this.$el,"zIndex",v(h(this.$el,"zIndex"))+U.length);const t=[this.overlay&&hl(this),this.overlay&&Wo(this.$el),this.bgClose&&ul(this),this.escClose&&fl(this)];B(this.$el,"hidden",()=>t.forEach(e=>e&&e()),{self:!0}),E(document.documentElement,this.clsPage),rs(this.target,!0)}},{name:"shown",self:!0,handler(){be(this.$el)||(this.$el.tabIndex=-1),C(this.$el,":focus-within")||this.$el.focus()}},{name:"hidden",self:!0,handler(){p(U,this)&&U.splice(U.indexOf(this),1),h(this.$el,"zIndex","");const{target:t}=this;U.some(e=>e.clsPage===this.clsPage)||(A(document.documentElement,this.clsPage),queueMicrotask(()=>{be(t)&&t.focus({preventScroll:!0})})),rs(t,!1),this.target=null}}],methods:{toggle(){return this.isToggled()?this.hide():this.show()},async show(){return this.container&&N(this.$el)!==this.container&&(it(this.container,this.$el),await ns()),this.toggleElement(this.$el,!0,ss)},hide(){return this.toggleElement(this.$el,!1,ss)}}};const vn=Symbol();function ss(t,e,{transitionElement:i,_toggle:n}){return new Promise((o,s)=>B(t,"show hide",()=>{var r;(r=t[vn])==null||r.call(t),t[vn]=s,n(t,e);const a=B(i,"transitionstart",()=>{B(i,"transitionend transitioncancel",o,{self:!0}),clearTimeout(l)},{self:!0}),l=setTimeout(()=>{a(),o()},cl(h(i,"transitionDuration")))})).then(()=>delete t[vn])}function cl(t){return t?se(t,"ms")?v(t):v(t)*1e3:0}function hl(t){return $(document,"focusin",e=>{if(ue(U)!==t||t.$el.contains(e.target))return;const{left:i,top:n,width:o,height:s}=P(e.target),r=document.elementFromPoint(i+o/2,n+s/2);r&&(e.target.contains(r)||r.contains(e.target))||t.$el.focus()})}function ul(t){return $(document,Ct,({target:e})=>{ue(U)!==t||t.overlay&&!t.$el.contains(e)||!t.panel||t.panel.contains(e)||B(document,`${_t} ${ge} scroll`,({defaultPrevented:i,type:n,target:o})=>{!i&&n===_t&&e===o&&t.hide()},!0)})}function fl(t){return $(document,"keydown",e=>{e.keyCode===27&&ue(U)===t&&t.hide()})}function rs(t,e){t!=null&&t.ariaExpanded&&(t.ariaExpanded=e)}var dl={install:pl,mixins:[os],data:{clsPage:"uk-modal-page",selPanel:".uk-modal-dialog",selClose:'[class*="uk-modal-close"]'},events:[{name:"fullscreenchange webkitendfullscreen",capture:!0,handler(t){I(t.target,"video")&&this.isToggled()&&!document.fullscreenElement&&this.hide()}},{name:"show",self:!0,handler(){m(this.panel,"uk-margin-auto-vertical")?E(this.$el,"uk-flex"):h(this.$el,"display","block"),ft(this.$el)}},{name:"hidden",self:!0,handler(){h(this.$el,"display",""),A(this.$el,"uk-flex")}}]};function pl({modal:t}){t.dialog=function(i,n){const o=t(k(`<div><div class="uk-modal-dialog">${i}</div></div>`),{stack:!0,role:"alertdialog",...n});return o.show(),$(o.$el,"hidden",async()=>{await Promise.resolve(),o.$destroy(!0)},{self:!0}),o},t.alert=function(i,n){return e(({i18n:o})=>`<div class="uk-modal-body">${O(i)?i:Xe(i)}</div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-primary uk-modal-close" type="button" autofocus>${o.ok}</button> </div>`,n)},t.confirm=function(i,n){return e(({i18n:o})=>`<form> <div class="uk-modal-body">${O(i)?i:Xe(i)}</div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-default uk-modal-close" type="button">${o.cancel}</button> <button class="uk-button uk-button-primary" autofocus>${o.ok}</button> </div> </form>`,n,()=>Promise.reject())},t.prompt=function(i,n,o){const s=e(({i18n:l})=>`<form class="uk-form-stacked"> <div class="uk-modal-body"> <label>${O(i)?i:Xe(i)}</label> <input class="uk-input" autofocus> </div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-default uk-modal-close" type="button">${l.cancel}</button> <button class="uk-button uk-button-primary">${l.ok}</button> </div> </form>`,o,()=>null,()=>a.value),{$el:r}=s.dialog,a=k("input",r);return a.value=n||"",$(r,"show",()=>a.select()),s},t.i18n={ok:"Ok",cancel:"Cancel"};function e(i,n,o=Y,s=Y){n={bgClose:!1,escClose:!0,...n,i18n:{...t.i18n,...n==null?void 0:n.i18n}};const r=t.dialog(i(n),n);return re(new Promise(a=>{const l=$(r.$el,"hide",()=>a(o()));$(r.$el,"submit","form",c=>{c.preventDefault(),a(s(r)),l(),r.hide()})}),{dialog:r})}}var gl={extends:To,data:{targets:"> .uk-parent",toggle:"> a",content:"> ul"}};const bn="uk-navbar-transparent";var ml={extends:Uo,props:{dropbarTransparentMode:Boolean},data:{flip:!1,autoUpdate:!1,delayShow:200,clsDrop:"uk-navbar-dropdown",selNavItem:".uk-navbar-nav > li > a,a.uk-navbar-item,button.uk-navbar-item,.uk-navbar-item a,.uk-navbar-item button,.uk-navbar-toggle",dropbarTransparentMode:!1},computed:{navbarContainer:(t,e)=>e.closest(".uk-navbar-container")},watch:{items(){const t=m(this.$el,"uk-navbar-justify"),e=F(".uk-navbar-nav, .uk-navbar-left, .uk-navbar-right",this.$el);for(const i of e){const n=t?F(".uk-navbar-nav > li > a, .uk-navbar-item, .uk-navbar-toggle",i).length:"";h(i,"flexGrow",n)}}},events:[{name:"show",el:({dropContainer:t})=>t,handler({target:t}){this.getTransparentMode(t)==="remove"&&m(this.navbarContainer,bn)&&(A(this.navbarContainer,bn),this._transparent=!0)}},{name:"hide",el:({dropContainer:t})=>t,async handler(){await mn(),this._transparent&&(!H||!this.dropContainer.contains(H.$el))&&(E(this.navbarContainer,bn),this._transparent=null)}}],methods:{getTransparentMode(t){if(!this.navbarContainer)return;if(this.dropbar&&this.isDropbarDrop(t))return this.dropbarTransparentMode;const e=this.getDropdown(t);if(e&&m(t,"uk-dropbar"))return e.inset?"behind":"remove"},getDropbarOffset(t){const{top:e,height:i}=y(this.navbarContainer);return e+(this.dropbarTransparentMode==="behind"?0:i+t)}}},vl={mixins:[os],args:"mode",props:{mode:String,flip:Boolean,overlay:Boolean,swiping:Boolean},data:{mode:"slide",flip:!1,overlay:!1,clsPage:"uk-offcanvas-page",clsContainer:"uk-offcanvas-container",selPanel:".uk-offcanvas-bar",clsFlip:"uk-offcanvas-flip",clsContainerAnimation:"uk-offcanvas-container-animation",clsSidebarAnimation:"uk-offcanvas-bar-animation",clsMode:"uk-offcanvas",clsOverlay:"uk-offcanvas-overlay",selClose:".uk-offcanvas-close",container:!1,swiping:!0},computed:{clsFlip:({flip:t,clsFlip:e})=>t?e:"",clsOverlay:({overlay:t,clsOverlay:e})=>t?e:"",clsMode:({mode:t,clsMode:e})=>`${e}-${t}`,clsSidebarAnimation:({mode:t,clsSidebarAnimation:e})=>t==="none"||t==="reveal"?"":e,clsContainerAnimation:({mode:t,clsContainerAnimation:e})=>t!=="push"&&t!=="reveal"?"":e,transitionElement({mode:t}){return t==="reveal"?N(this.panel):this.panel}},observe:So({filter:({swiping:t})=>t}),update:{read(){this.isToggled()&&!R(this.$el)&&this.hide()},events:["resize"]},events:[{name:"touchmove",self:!0,passive:!1,filter:({overlay:t})=>t,handler(t){t.cancelable&&t.preventDefault()}},{name:"show",self:!0,handler(){this.mode==="reveal"&&!m(N(this.panel),this.clsMode)&&E(Ze(this.panel,"<div>"),this.clsMode);const{body:t,scrollingElement:e}=document;E(t,this.clsContainer,this.clsFlip),h(t,"touchAction","pan-y pinch-zoom"),h(this.$el,"display","block"),h(this.panel,"maxWidth",e.clientWidth),E(this.$el,this.clsOverlay),E(this.panel,this.clsSidebarAnimation,this.mode==="reveal"?"":this.clsMode),ft(t),E(t,this.clsContainerAnimation),this.clsContainerAnimation&&bl()}},{name:"hide",self:!0,handler(){A(document.body,this.clsContainerAnimation),h(document.body,"touchAction","")}},{name:"hidden",self:!0,handler(){this.clsContainerAnimation&&wl(),this.mode==="reveal"&&m(N(this.panel),this.clsMode)&&Ee(this.panel),A(this.panel,this.clsSidebarAnimation,this.clsMode),A(this.$el,this.clsOverlay),h(this.$el,"display",""),h(this.panel,"maxWidth",""),A(document.body,this.clsContainer,this.clsFlip)}},{name:"swipeLeft swipeRight",handler(t){this.isToggled()&&se(t.type,"Left")^this.flip&&this.hide()}}]};function bl(){as().content+=",user-scalable=0"}function wl(){const t=as();t.content=t.content.replace(/,user-scalable=0$/,"")}function as(){return k('meta[name="viewport"]',document.head)||it(document.head,'<meta name="viewport">')}var $l={mixins:[nt],props:{selContainer:String,selContent:String,minHeight:Number},data:{selContainer:".uk-modal",selContent:".uk-modal-dialog",minHeight:150},computed:{container:({selContainer:t},e)=>e.closest(t),content:({selContent:t},e)=>e.closest(t)},observe:rt({target:({container:t,content:e})=>[t,e]}),update:{read(){return!this.content||!this.container||!R(this.$el)?!1:{max:Math.max(this.minHeight,ft(this.container)-(P(this.content).height-ft(this.$el)))}},write({max:t}){h(this.$el,{minHeight:this.minHeight,maxHeight:t})},events:["resize"]}},yl={data:{threshold:5,fadeDuration:.05},events:[{name:"scroll",self:!0,passive:!0,handler(){this.$emit()}},{name:Ct,handler:xl}],observe:[Ae({options:{subtree:!0,childList:!0}}),rt({target:({$el:t})=>[t,...K(t)]})],update:{read(){return{overflow:["Width","Height"].map(t=>this.$el[`scroll${t}`]-this.$el[`client${t}`])}},write({overflow:t}){for(let e=0;e<2;e++)if(W(this.$el,`${this.$options.id}-${e?"vertical":"horizontal"}`,t[e]&&!t[e-1]),!t[e-1]){const i=e?"Top":"Left",n=t[e]?this.$el[`scroll${i}`]/t[e]:0,o=s=>t[e]?st((this.fadeDuration-s)/this.fadeDuration):1;h(this.$el,{"--uk-overflow-fade-start-opacity":o(n),"--uk-overflow-fade-end-opacity":o(1-n)})}},events:["resize"]}};function xl(t){const{target:e,button:i,defaultPrevented:n}=t;if(n||i>0||ut(t)||e.closest(me)||Ye(e))return;t.preventDefault();const o={passive:!1,capture:!0},{$el:s,threshold:r,$options:a}=this;let l;const c=$(document,Si,u(t),o);$(document,[_t,ge],f,{capture:!0,once:!0});function u(d){let g=mt(d),w=g,x=w;return function(S){x=w,w=mt(S);const Q=m(s,`${a.id}-vertical`),ot=Q?"y":"x";if(l||(l=Math.abs(w[ot]-g[ot])>r),l){const wt=x[ot]-w[ot];s[Q?"scrollTop":"scrollLeft"]+=wt}}}function f(){c(),l&&setTimeout($(s,"click",d=>d.preventDefault(),o))}}var kl={props:["width","height"],connected(){E(this.$el,"uk-responsive-width"),h(this.$el,"aspectRatio",`${this.width}/${this.height}`)}},Sl={props:{offset:Number},data:{offset:0},connected(){El(this)},disconnected(){Tl(this)},methods:{async scrollTo(t){t=t&&k(t)||document.body,_(this.$el,"beforescroll",[this,t])&&(await Kn(t,{offset:this.offset}),_(this.$el,"scrolled",[this,t]))}}};const He=new Set;function El(t){He.size||$(document,"click",ls),He.add(t)}function Tl(t){He.delete(t),He.size||Pi(document,"click",ls)}function ls(t){if(!t.defaultPrevented)for(const e of He)e.$el.contains(t.target)&&Yt(e.$el)&&(t.preventDefault(),window.location.href!==e.$el.href&&window.history.pushState({},"",e.$el.href),e.scrollTo(Ge(e.$el)))}const wn="uk-scrollspy-inview";var Cl={args:"cls",props:{cls:String,target:String,hidden:Boolean,margin:String,repeat:Boolean,delay:Number},data:()=>({cls:"",target:!1,hidden:!0,margin:"-1px",repeat:!1,delay:0}),computed:{elements:({target:t},e)=>t?F(t,e):[e]},watch:{elements(t){this.hidden&&h(we(t,`:not(.${wn})`),"opacity",0)}},connected(){this.elementData=new Map},disconnected(){for(const[t,e]of this.elementData.entries())A(t,wn,e.cls||"");delete this.elementData},observe:Nt({target:({elements:t})=>t,handler(t){const e=this.elementData;for(const{target:i,isIntersecting:n}of t){e.has(i)||e.set(i,{cls:Lt(i,"uk-scrollspy-class")||this.cls});const o=e.get(i);!this.repeat&&o.show||(o.show=n)}this.$emit()},options:({margin:t})=>({rootMargin:t}),args:{intersecting:!1}}),update:[{write(t){for(const[e,i]of this.elementData.entries())i.show&&!i.inview&&!i.queued?(i.queued=!0,t.promise=(t.promise||Promise.resolve()).then(async()=>{await mn(i.show?this.delay:0),this.toggle(e,!0),setTimeout(()=>{i.queued=!1,this.$emit()},300)})):!i.show&&i.inview&&!i.queued&&this.repeat&&this.toggle(e,!1)}}],methods:{toggle(t,e){var i,n;const o=(i=this.elementData)==null?void 0:i.get(t);if(!o)return;(n=o.off)==null||n.call(o),h(t,"opacity",!e&&this.hidden?0:""),W(t,wn,e),W(t,o.cls);let s;if(s=o.cls.match(/\buk-animation-[\w-]+/g)){const r=()=>A(t,s);e?o.off=B(t,"animationcancel animationend",r,{self:!0}):r()}_(t,e?"inview":"outview"),o.inview=e}}},_l={props:{cls:String,closest:Boolean,scroll:Boolean,target:String,offset:Number},data:{cls:"uk-active",closest:!1,scroll:!1,target:'a[href]:not([role="button"])',offset:0},computed:{links:{get({target:t},e){return F(t,e).filter(Ge)},observe:()=>"*"},targets(){return this.links.map(t=>Ge(t))},elements({closest:t}){return this.links.map(e=>e.closest(t||"*"))}},watch:{links(t){this.scroll&&this.$create("scroll",t,{offset:this.offset})}},observe:[Nt(),ai()],update:[{read(){const{targets:t}=this,{length:e}=t;if(!e||!R(this.$el))return!1;const i=Dt(t,!0),{scrollTop:n,scrollHeight:o}=i,s=tt(i),r=o-s.height;let a=!1;if(n>=r)a=e-1;else{const l=this.offset+P(Qi()).height+s.height*.1;for(let c=0;c<t.length&&!(y(t[c]).top-s.top-l>0);c++)a=+c}return{active:a}},write({active:t}){const{elements:e}=this,i=t!==!1&&!m(e[t],this.cls);this.links.forEach(n=>n.blur());for(let n=0;n<e.length;n++)W(e[n],this.cls,+n===t);i&&_(this.$el,"active",[t,e[t]])},events:["scroll","resize"]}]},Pl={mixins:[nt,ci],props:{position:String,top:null,bottom:null,start:null,end:null,offset:String,offsetEnd:String,overflowFlip:Boolean,animation:String,clsActive:String,clsInactive:String,clsFixed:String,clsBelow:String,selTarget:String,showOnUp:Boolean,targetOffset:Number},data:{position:"top",top:!1,bottom:!1,start:!1,end:!1,offset:0,offsetEnd:0,overflowFlip:!1,animation:"",clsActive:"uk-active",clsInactive:"",clsFixed:"uk-sticky-fixed",clsBelow:"uk-sticky-below",selTarget:"",showOnUp:!1,targetOffset:!1},computed:{target:({selTarget:t},e)=>t&&k(t,e)||e},connected(){this.start=cs(this.start||this.top),this.end=cs(this.end||this.bottom),this.placeholder=k("+ .uk-sticky-placeholder",this.$el)||k('<div class="uk-sticky-placeholder"></div>'),this.isFixed=!1,this.setActive(!1)},beforeDisconnect(){this.isFixed&&(this.hide(),A(this.target,this.clsInactive)),yn(this.$el),Pt(this.placeholder),this.placeholder=null},observe:[ko(),ai({target:()=>document.scrollingElement}),rt({target:({$el:t})=>[t,gi(t),document.scrollingElement],handler(t){this.$emit(this._data.resized&&t.some(({target:e})=>e===gi(this.$el))?"update":"resize"),this._data.resized=!0}})],events:[{name:"load hashchange popstate",el:()=>window,filter:({targetOffset:t})=>t!==!1,async handler(){const{scrollingElement:t}=document;if(!location.hash||t.scrollTop===0)return;await mn();const e=y(k(location.hash)),i=y(this.$el);this.isFixed&&Ue(e,i)&&(t.scrollTop=Math.ceil(e.top-i.height-L(this.targetOffset,"height",this.placeholder)-L(this.offset,"height",this.placeholder)))}}],update:[{read({height:t,width:e,margin:i,sticky:n},o){if(this.inactive=!this.matchMedia||!R(this.$el)||!this.$el.offsetHeight,this.inactive)return;const s=ft(window),r=Math.max(0,document.scrollingElement.scrollHeight-s);if(!r){this.inactive=!0;return}const a=this.isFixed&&o.has("update");a&&(kn(this.target),this.hide()),this.active||({height:t,width:e}=P(this.$el),i=h(this.$el,"margin")),a&&this.show();const l=L("100vh","height");let c=this.position;this.overflowFlip&&t>l&&(c=c==="top"?"bottom":"top");const u=this.isFixed?this.placeholder:this.$el;let[f,d]=[this.offset,this.offsetEnd].map(wt=>L(wt,"height",n?this.$el:u));c==="bottom"&&(t<s||this.overflowFlip)&&(f+=s-t);const g=t+f+d,w=this.overflowFlip?0:Math.max(0,g-l),x=y(u).top-new DOMMatrix(h(u,"transform")).m42,S=P(this.$el).height,Q=(this.start===!1?x:$n(this.start,this.$el,x))-f,ot=this.end===!1?r:Math.min(r,$n(this.end,this.$el,x+t,!0)-S-f+w);return n=!this.showOnUp&&Q+f===x&&ot===Math.min(r,$n(!0,this.$el,0,!0)-S-f+w)&&h(gi(this.$el),"overflowY")!=="hidden",{start:Q,end:ot,offset:f,overflow:w,height:t,elHeight:S,width:e,margin:i,top:Te(u)[0],sticky:n,viewport:l,maxScrollHeight:r}},write({height:t,width:e,margin:i,offset:n,sticky:o}){if((this.inactive||o||!this.isFixed)&&yn(this.$el),this.inactive)return;o&&(t=e=i=0,h(this.$el,{position:"sticky",top:n}));const{placeholder:s}=this;h(s,{height:t,width:e,margin:i}),(N(s)!==N(this.$el)||o^Vt(s)<Vt(this.$el))&&((o?Fi:Je)(this.$el,s),s.hidden=!0)},events:["resize"]},{read({scroll:t=0,dir:e="down",overflow:i,overflowScroll:n=0,start:o,end:s,elHeight:r,height:a,sticky:l,maxScrollHeight:c}){const u=Math.min(document.scrollingElement.scrollTop,c),f=t<=u?"down":"up",d=this.isFixed?this.placeholder:this.$el;return{dir:f,prevDir:e,scroll:u,prevScroll:t,below:u>y(d).top+(l?Math.min(a,r):a),offsetParentTop:y(d.offsetParent).top,overflowScroll:st(n+st(u,o,s)-st(t,o,s),0,i)}},write(t,e){const i=e.has("scroll"),{initTimestamp:n=0,dir:o,prevDir:s,scroll:r,prevScroll:a=0,top:l,start:c,below:u}=t;if(r<0||r===a&&i||this.showOnUp&&!i&&!this.isFixed)return;const f=Date.now();if((f-n>300||o!==s)&&(t.initScroll=r,t.initTimestamp=f),!(this.showOnUp&&!this.isFixed&&Math.abs(t.initScroll-r)<=30&&Math.abs(a-r)<=10))if(this.inactive||r<c||this.showOnUp&&(r<=c||o==="down"&&i||o==="up"&&!this.isFixed&&!u)){if(!this.isFixed){vt.inProgress(this.$el)&&l>r&&(vt.cancel(this.$el),this.hide());return}if(this.animation&&u){if(m(this.$el,"uk-animation-leave"))return;vt.out(this.$el,this.animation).then(()=>this.hide(),Y)}else this.hide()}else this.isFixed?this.update():this.animation&&u?(this.show(),vt.in(this.$el,this.animation).catch(Y)):(kn(this.target),this.show())},events:["resize","resizeViewport","scroll"]}],methods:{show(){this.isFixed=!0,this.update(),this.placeholder.hidden=!1},hide(){const{offset:t,sticky:e}=this._data;this.setActive(!1),A(this.$el,this.clsFixed,this.clsBelow),e?h(this.$el,"top",t):yn(this.$el),this.placeholder.hidden=!0,this.isFixed=!1},update(){let{width:t,scroll:e=0,overflow:i,overflowScroll:n=0,start:o,end:s,offset:r,offsetParentTop:a,sticky:l,below:c}=this._data;const u=o!==0||e>o;if(!l){let f="fixed";e>s&&(r+=s-a+n-i,f="absolute"),h(this.$el,{position:f,width:t,marginTop:0},"important")}h(this.$el,"top",r-n),this.setActive(u),W(this.$el,this.clsBelow,c),E(this.$el,this.clsFixed)},setActive(t){const e=this.active;this.active=t,t?(Ve(this.target,this.clsInactive,this.clsActive),e!==t&&_(this.$el,"active")):(Ve(this.target,this.clsActive,this.clsInactive),e!==t&&(kn(this.target),_(this.$el,"inactive")))}}};function $n(t,e,i,n){if(!t)return 0;if(gt(t)||O(t)&&/^-?\d/.test(t))return i+L(t,"height",e,!0);{const o=t===!0?gi(e):j(t,e);return y(o).bottom-(n&&(o!=null&&o.contains(e))?v(h(o,"paddingBottom"))+v(h(o,"borderBottomWidth")):0)}}function cs(t){return t==="true"?!0:t==="false"?!1:t}function yn(t){h(t,{position:"",top:"",marginTop:"",width:""})}const xn="uk-transition-disable";async function kn(t){m(t,xn)||(E(t,xn),await ns(),A(t,xn))}function gi(t){for(;t=N(t);)if(R(t))return t}var Ol={mixins:[Ko],args:"src",props:{src:String,icon:String,attributes:"list",strokeAnimation:Boolean},data:{strokeAnimation:!1},observe:[Ae({async handler(){const t=await this.svg;t&&hs.call(this,t)},options:{attributes:!0,attributeFilter:["id","class","style"]}})],async connected(){p(this.src,"#")&&([this.src,this.icon]=this.src.split("#",2));const t=await this.svg;t&&(hs.call(this,t),this.strokeAnimation&&Ml(t))},methods:{async getSvg(){return I(this.$el,"img")&&!this.$el.complete&&this.$el.loading==="lazy"&&await new Promise(t=>B(this.$el,"load",t)),ts(await Bl(this.src),this.icon)||Promise.reject("SVG not found.")}}};function hs(t){const{$el:e}=this;E(t,T(e,"class"),"uk-svg");for(let i=0;i<e.style.length;i++){const n=e.style[i];h(t,n,h(e,n))}for(const i in this.attributes){const[n,o]=this.attributes[i].split(":",2);T(t,n,o)}t.ariaHidden=this.$el.ariaHidden,this.$el.id||pe(t,"id")}const Bl=J(async t=>{if(t){const e=await fetch(t);if(e.headers.get("Content-Type")==="image/svg+xml")return e.text()}return Promise.reject()});function Ml(t){const e=Co(t);e&&h(t,"--uk-animation-stroke",e)}const Sn=".uk-disabled *, .uk-disabled, [disabled]";var us={mixins:[Eo],args:"connect",props:{toggle:String,itemNav:String,active:Number,followFocus:Boolean,swiping:Boolean},data:{connect:"~.uk-switcher",toggle:"> * > :first-child",itemNav:!1,active:0,attrItem:"uk-switcher-item",selVertical:".uk-nav",followFocus:!1,swiping:!0},computed:{toggles:({toggle:t},e)=>F(t,e),children(t,e){return K(e).filter(i=>this.toggles.some(n=>i.contains(n)))}},watch:{connects(t){this.swiping&&h(t,"touchAction","pan-y pinch-zoom"),this.$emit()},connectChildren(){let t=Math.max(0,this.index());for(const e of this.connects)K(e).forEach((i,n)=>W(i,this.cls,n===t));this.$emit()},toggles(){this.$emit();const t=this.index();this.show(~t?t:this.next(this.active))}},connected(){this.$el.role="tablist"},observe:So({target:({connects:t})=>t,filter:({swiping:t})=>t}),events:[{name:"click keydown",delegate:({toggle:t})=>t,handler(t){!C(t.current,Sn)&&(t.type==="click"||t.keyCode===M.SPACE)&&(te(t),this.show(t.current))}},{name:"keydown",delegate:({toggle:t})=>t,handler(t){const{current:e,keyCode:i}=t,n=C(this.$el,this.selVertical);let o=i===M.HOME?0:i===M.END?"last":i===M.LEFT&&!n||i===M.UP&&n?"previous":i===M.RIGHT&&!n||i===M.DOWN&&n?"next":-1;if(~o){t.preventDefault();const s=this.toggles[this.next(o,this.toggles.indexOf(e))];s.focus(),this.followFocus&&this.show(s)}}},{name:"click",el:({$el:t,connects:e,itemNav:i})=>e.concat(i?ye(i,t):[]),delegate:({attrItem:t})=>`[${t}],[data-${t}]`,handler(t){t.target.closest("a,button")&&(te(t),this.show(Lt(t.current,this.attrItem)))}},{name:"swipeRight swipeLeft",filter:({swiping:t})=>t,el:({connects:t})=>t,handler({type:t}){this.show(se(t,"Left")?"next":"previous")}}],update(){T(K(this.$el),"role","presentation");for(const t in this.toggles){const e=this.toggles[t];e.id=De(this,e);const i=[];for(const{children:n}of this.connects){const o=n[t];o&&(T(o,{id:De(this,o),role:"tabpanel","aria-labelledby":e.id}),i.push(o.id))}T(e,{role:"tab","aria-controls":i.join(" ")})}T(this.$el,"aria-orientation",C(this.$el,this.selVertical)?"vertical":null)},methods:{index(){return dt(this.children,t=>m(t,this.cls))},next(t,e=this.index()){if(gt(t))for(let n=0;n<this.toggles.length;n++){let o=kt(n+ +t,this.toggles);if(!C(this.toggles[o],Sn))return o}const i=this.toggles.filter(n=>!C(n,Sn));return kt(i[kt(t,i,i.indexOf(this.toggles[e]))],this.toggles)},show(t){const e=this.index(),i=this.next(t);return this.children.forEach((n,o)=>{W(n,this.cls,i===o),T(this.toggles[o],{"aria-selected":i===o,tabindex:i===o?null:-1})}),this.showConnects(i,e>=0)}}},Dl={mixins:[nt],extends:us,props:{media:Boolean},data:{media:960,attrItem:"uk-tab-item",selVertical:".uk-tab-left,.uk-tab-right"},connected(){const t=m(this.$el,"uk-tab-left")?"uk-tab-left":m(this.$el,"uk-tab-right")?"uk-tab-right":!1;t&&this.$create("toggle",this.$el,{cls:t,mode:"media",media:this.media})}},Al={mixins:[ci,Ie],args:"target",props:{href:String,target:null,mode:"list",queued:Boolean},data:{href:!1,target:!1,mode:"click",queued:!0},computed:{target:{get:({target:t},e)=>(t=ye(t||e.hash,e),t.length?t:[e]),observe:({target:t})=>t}},connected(){p(this.mode,"media")||(be(this.$el)||(this.$el.tabIndex=0),!this.cls&&I(this.$el,"a")&&(this.$el.role="button"))},observe:on({targets:({target:t})=>t}),events:[{name:Ct,filter:({mode:t})=>p(t,"hover"),handler(t){this._preventClick=null,!(!ut(t)||qt(this._showState)||this.$el.disabled)&&(_(this.$el,"focus"),B(document,Ct,()=>_(this.$el,"blur"),!0,e=>!this.$el.contains(e.target)),p(this.mode,"click")&&(this._preventClick=!0))}},{name:`${jt} ${Ut} focus blur`,filter:({mode:t})=>p(t,"hover"),handler(t){if(ut(t)||this.$el.disabled||document.readyState==="loading")return;const e=p([jt,"focus"],t.type),i=this.isToggled(this.target);if(!e&&(!qt(this._showState)||t.type===Ut&&C(this.$el,":focus")||t.type==="blur"&&C(this.$el,":hover"))){i===this._showState&&(this._showState=null);return}e&&qt(this._showState)&&i!==this._showState||(this._showState=e?i:null,this.toggle(`toggle${e?"show":"hide"}`))}},{name:"keydown",filter:({$el:t,mode:e})=>p(e,"click")&&!I(t,"input"),handler(t){(t.keyCode===M.SPACE||t.keyCode===M.ENTER)&&(t.preventDefault(),this.$el.click())}},{name:"click",filter:({mode:t})=>["click","hover"].some(e=>p(t,e)),handler(t){if(t.defaultPrevented)return;const e=t.target.closest("a[href]"),i=Yt(e)&&(!e.hash||C(this.target,e.hash));(this._preventClick||i||e&&!this.isToggled(this.target))&&t.preventDefault(),!this._preventClick&&p(this.mode,"click")&&(!e||i||t.defaultPrevented)&&this.toggle()}},{name:"mediachange",filter:({mode:t})=>p(t,"media"),el:({target:t})=>t,handler(t,e){e.matches^this.isToggled(this.target)&&this.toggle()}}],methods:{async toggle(t){if(!_(this.target,t||"toggle",[this]))return;if(ht(this.$el,"aria-expanded")&&(this.$el.ariaExpanded=!this.isToggled(this.target)),!this.queued)return this.toggleElement(this.target);const e=this.target.filter(n=>m(n,this.clsLeave));if(e.length){for(const n of this.target){const o=p(e,n);this.toggleElement(n,o,o)}return}const i=this.target.filter(this.isToggled);await this.toggleElement(i,!1)&&await this.toggleElement(this.target.filter(n=>!p(i,n)),!0)}}},Nl=Object.freeze({__proto__:null,Accordion:To,AccordionIcon:bt,Alert:qr,Close:Ua,Cover:Zr,Drop:Ro,DropParentIcon:bt,Dropdown:Ro,Dropnav:Uo,FormCustom:la,Grid:ca,HeightMatch:fa,HeightPlaceholder:ga,HeightViewport:ma,Icon:dn,Img:tl,Inverse:sl,Leader:ll,Margin:Yo,Marker:Va,Modal:dl,Nav:gl,NavParentIcon:La,Navbar:ml,NavbarParentIcon:bt,NavbarToggleIcon:ja,Offcanvas:vl,OverflowAuto:$l,OverflowFade:yl,OverlayIcon:bt,PaginationNext:Ga,PaginationPrevious:Qa,Responsive:kl,Scroll:Sl,Scrollspy:Cl,ScrollspyNav:_l,SearchIcon:Wa,SlidenavNext:es,SlidenavPrevious:es,Spinner:Ra,Sticky:Pl,Svg:Ol,Switcher:us,Tab:Dl,Toggle:Al,Totop:Ya,Video:Io});return fe(Nl,(t,e)=>et.component(e,t)),Cr(et),et}));
@@ -1,4 +1,4 @@
1
- /*! UIkit 3.25.17-dev.80dfe87 | https://www.getuikit.com | (c) 2014 - 2026 YOOtheme | MIT License */
1
+ /*! UIkit 3.25.17-dev.8c70e44 | https://www.getuikit.com | (c) 2014 - 2026 YOOtheme | MIT License */
2
2
 
3
3
  (function (global, factory) {
4
4
  typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :