\r\n\r\n\r\n\r\n","import mod from \"-!../../../../../../../../node_modules/thread-loader/dist/cjs.js!../../../../../../../../node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!../../../../../../../../node_modules/@vue/cli-service/lib/config/vue-loader-v15-resolve-compat/vue-loader.js??vue-loader-options!./VerticalNavMenuLink.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../../node_modules/thread-loader/dist/cjs.js!../../../../../../../../node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!../../../../../../../../node_modules/@vue/cli-service/lib/config/vue-loader-v15-resolve-compat/vue-loader.js??vue-loader-options!./VerticalNavMenuLink.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./VerticalNavMenuLink.vue?vue&type=template&id=298d082e&\"\nimport script from \"./VerticalNavMenuLink.vue?vue&type=script&lang=js&\"\nexport * from \"./VerticalNavMenuLink.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../../node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return (_vm.canViewVerticalNavMenuGroup(_vm.item))?_c('li',{staticClass:\"nav-item has-sub\",class:{\n open: _vm.isOpen,\n disabled: _vm.item.disabled,\n hidden: _vm.item.hidden,\n 'sidebar-group-active': _vm.isActive,\n }},[_c('b-link',{staticClass:\"d-flex align-items-center\",on:{\"click\":function () { return _vm.updateGroupOpen(!_vm.isOpen); }}},[_c('feather-icon',{attrs:{\"icon\":_vm.item.icon || 'CircleIcon'}}),_vm._v(\" \"),_c('span',{staticClass:\"menu-title text-truncate\"},[_vm._v(_vm._s(_vm.t(_vm.item.title)))]),_vm._v(\" \"),(_vm.item.tag)?_c('b-badge',{staticClass:\"mr-1 ml-auto\",attrs:{\"pill\":\"\",\"variant\":_vm.item.tagVariant || 'primary'}},[_vm._v(\"\\n \"+_vm._s(_vm.item.tag)+\"\\n \")]):_vm._e()],1),_vm._v(\" \"),_c('b-collapse',{staticClass:\"menu-content\",attrs:{\"tag\":\"ul\"},model:{value:(_vm.isOpen),callback:function ($$v) {_vm.isOpen=$$v},expression:\"isOpen\"}},_vm._l((_vm.item.children),function(child){return _c(_vm.resolveNavItemComponent(child),{key:child.header || child.title,ref:\"groupChild\",refInFor:true,tag:\"component\",attrs:{\"item\":child}})}),1)],1):_vm._e()}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","// eslint-disable-next-line object-curly-newline\r\nimport { ref, watch, inject, computed } from '@vue/composition-api';\r\nimport store from '@/store';\r\nimport { isNavGroupActive } from '@core/layouts/utils';\r\n\r\nexport default function useVerticalNavMenuGroup(item) {\r\n // ------------------------------------------------\r\n // isVerticalMenuCollapsed\r\n // ------------------------------------------------\r\n const isVerticalMenuCollapsed = computed(\r\n () => store.state.verticalMenu.isVerticalMenuCollapsed\r\n );\r\n\r\n watch(isVerticalMenuCollapsed, val => {\r\n /* eslint-disable no-use-before-define */\r\n // * Handles case if routing is done outside of vertical menu\r\n // i.e. From Customizer Collapse or Using Link\r\n if (!isMouseHovered.value) {\r\n if (val) isOpen.value = false;\r\n else if (!val && isActive.value) isOpen.value = true;\r\n }\r\n /* eslint-enable */\r\n });\r\n\r\n // ------------------------------------------------\r\n // isMouseHovered\r\n // ------------------------------------------------\r\n const isMouseHovered = inject('isMouseHovered');\r\n\r\n // Collapse menu when menu is collapsed and show on open\r\n watch(isMouseHovered, val => {\r\n if (isVerticalMenuCollapsed.value) {\r\n // * we have used `val && val && isActive.value` to only open active menu on mouseEnter and close all menu on mouseLeave\r\n // * If we don't use `isActive.value` with `val` it can open other groups which are not active as well\r\n // eslint-disable-next-line no-use-before-define\r\n isOpen.value = val && isActive.value;\r\n }\r\n });\r\n\r\n // ------------------------------------------------\r\n // openGroups\r\n // ------------------------------------------------\r\n const openGroups = inject('openGroups');\r\n\r\n // Collapse other groups if one group is opened\r\n watch(openGroups, currentOpenGroups => {\r\n const clickedGroup = currentOpenGroups[currentOpenGroups.length - 1];\r\n\r\n // If current group is not clicked group or current group is not active => Proceed with closing it\r\n // eslint-disable-next-line no-use-before-define\r\n if (clickedGroup !== item.title && !isActive.value) {\r\n // If clicked group is not child of current group\r\n // eslint-disable-next-line no-use-before-define\r\n if (!doesHaveChild(clickedGroup)) isOpen.value = false;\r\n }\r\n });\r\n\r\n // ------------------------------------------------\r\n // isOpen\r\n // ------------------------------------------------\r\n const isOpen = ref(false);\r\n watch(isOpen, val => {\r\n // if group is opened push it to the array\r\n if (val) openGroups.value.push(item.title);\r\n });\r\n\r\n const updateGroupOpen = val => {\r\n // eslint-disable-next-line no-use-before-define\r\n isOpen.value = val;\r\n };\r\n\r\n // ------------------------------------------------\r\n // isActive\r\n // ------------------------------------------------\r\n const isActive = ref(false);\r\n watch(isActive, val => {\r\n /*\r\n If menu is collapsed and not hovered(optional) then don't open group\r\n */\r\n if (val) {\r\n if (!isVerticalMenuCollapsed.value) isOpen.value = val;\r\n } else {\r\n isOpen.value = val;\r\n }\r\n });\r\n\r\n const updateIsActive = () => {\r\n isActive.value = isNavGroupActive(item.children);\r\n };\r\n\r\n // ------------------------------------------------\r\n // Other Methods\r\n // ------------------------------------------------\r\n\r\n const doesHaveChild = title =>\r\n item.children.some(child => child.title === title);\r\n\r\n return {\r\n isOpen,\r\n isActive,\r\n updateGroupOpen,\r\n openGroups,\r\n isMouseHovered,\r\n updateIsActive,\r\n };\r\n}\r\n","export default {\r\n watch: {\r\n $route: {\r\n immediate: true,\r\n handler() {\r\n this.updateIsActive();\r\n },\r\n },\r\n },\r\n};\r\n","\r\n
\r\n\r\n\r\n\r\n\r\n\r\n","import mod from \"-!../../../../../../node_modules/thread-loader/dist/cjs.js!../../../../../../node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!../../../../../../node_modules/@vue/cli-service/lib/config/vue-loader-v15-resolve-compat/vue-loader.js??vue-loader-options!./VerticalNavMenu.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../node_modules/thread-loader/dist/cjs.js!../../../../../../node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!../../../../../../node_modules/@vue/cli-service/lib/config/vue-loader-v15-resolve-compat/vue-loader.js??vue-loader-options!./VerticalNavMenu.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./VerticalNavMenu.vue?vue&type=template&id=39ff14ef&\"\nimport script from \"./VerticalNavMenu.vue?vue&type=script&lang=js&\"\nexport * from \"./VerticalNavMenu.vue?vue&type=script&lang=js&\"\nimport style0 from \"./VerticalNavMenu.vue?vue&type=style&index=0&id=39ff14ef&prod&lang=scss&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","import { ref, computed, watch } from '@vue/composition-api';\r\nimport store from '@/store';\r\n\r\nexport default function useVerticalLayout(navbarType, footerType) {\r\n const isVerticalMenuActive = ref(true);\r\n const toggleVerticalMenuActive = () => {\r\n isVerticalMenuActive.value = !isVerticalMenuActive.value;\r\n };\r\n\r\n const currentBreakpoint = ref('xl');\r\n\r\n const isVerticalMenuCollapsed = computed(\r\n () => store.state.verticalMenu.isVerticalMenuCollapsed\r\n );\r\n\r\n const layoutClasses = computed(() => {\r\n const classes = [];\r\n\r\n if (currentBreakpoint.value === 'xl') {\r\n classes.push('vertical-menu-modern');\r\n classes.push(\r\n isVerticalMenuCollapsed.value ? 'menu-collapsed' : 'menu-expanded'\r\n );\r\n } else {\r\n classes.push('vertical-overlay-menu');\r\n classes.push(isVerticalMenuActive.value ? 'menu-open' : 'menu-hide');\r\n }\r\n\r\n // Navbar\r\n classes.push(`navbar-${navbarType.value}`);\r\n\r\n // Footer\r\n if (footerType.value === 'sticky') classes.push('footer-fixed');\r\n if (footerType.value === 'static') classes.push('footer-static');\r\n if (footerType.value === 'hidden') classes.push('footer-hidden');\r\n\r\n return classes;\r\n });\r\n\r\n // ------------------------------------------------\r\n // Resize handler for Breakpoint\r\n // ------------------------------------------------\r\n watch(currentBreakpoint, val => {\r\n isVerticalMenuActive.value = val === 'xl';\r\n });\r\n\r\n const resizeHandler = () => {\r\n // ? This closes vertical menu when title bar is shown/hidden in mobile browsers.\r\n // ? We will watch for breakpoint to overcome this issue\r\n // isVerticalMenuActive.value = window.innerWidth >= 1200\r\n\r\n // ! You can use store getter to get breakpoint\r\n if (window.innerWidth >= 1200) currentBreakpoint.value = 'xl';\r\n else if (window.innerWidth >= 992) currentBreakpoint.value = 'lg';\r\n else if (window.innerWidth >= 768) currentBreakpoint.value = 'md';\r\n else if (window.innerWidth >= 576) currentBreakpoint.value = 'sm';\r\n else currentBreakpoint.value = 'xs';\r\n };\r\n\r\n const overlayClasses = computed(() => {\r\n if (currentBreakpoint.value !== 'xl' && isVerticalMenuActive.value)\r\n return 'show';\r\n return null;\r\n });\r\n\r\n const navbarTypeClass = computed(() => {\r\n if (navbarType.value === 'sticky') return 'fixed-top';\r\n if (navbarType.value === 'static') return 'navbar-static-top';\r\n if (navbarType.value === 'hidden') return 'd-none';\r\n return 'floating-nav';\r\n });\r\n\r\n const footerTypeClass = computed(() => {\r\n if (footerType.value === 'static') return 'footer-static';\r\n if (footerType.value === 'hidden') return 'd-none';\r\n return '';\r\n });\r\n\r\n return {\r\n isVerticalMenuActive,\r\n toggleVerticalMenuActive,\r\n isVerticalMenuCollapsed,\r\n layoutClasses,\r\n overlayClasses,\r\n navbarTypeClass,\r\n footerTypeClass,\r\n resizeHandler,\r\n };\r\n}\r\n","import router from '@/router';\r\nimport { isObject } from '@core/utils/utils';\r\nimport { computed } from '@vue/composition-api';\r\n\r\n/**\r\n * Return which component to render based on it's data/context\r\n * @param {Object} item nav menu item\r\n */\r\nexport const resolveVerticalNavMenuItemComponent = item => {\r\n if (item.header) return 'vertical-nav-menu-header';\r\n if (item.children) return 'vertical-nav-menu-group';\r\n return 'vertical-nav-menu-link';\r\n};\r\n\r\n/**\r\n * Return which component to render based on it's data/context\r\n * @param {Object} item nav menu item\r\n */\r\nexport const resolveHorizontalNavMenuItemComponent = item => {\r\n if (item.children) return 'horizontal-nav-menu-group';\r\n return 'horizontal-nav-menu-link';\r\n};\r\n\r\n/**\r\n * Return route name for navigation link\r\n * If link is string then it will assume it is route-name\r\n * IF link is object it will resolve the object and will return the link\r\n * @param {Object, String} link navigation link object/string\r\n */\r\nexport const resolveNavDataRouteName = link => {\r\n if (isObject(link.route)) {\r\n const { route } = router.resolve(link.route);\r\n return route.name;\r\n }\r\n return link.route;\r\n};\r\n\r\n/**\r\n * Check if nav-link is active\r\n * @param {Object} link nav-link object\r\n */\r\nexport const isNavLinkActive = link => {\r\n // Matched routes array of current route\r\n const matchedRoutes = router.currentRoute.matched;\r\n\r\n // Check if provided route matches route's matched route\r\n const resolveRoutedName = resolveNavDataRouteName(link);\r\n\r\n if (!resolveRoutedName) return false;\r\n\r\n return matchedRoutes.some(\r\n route =>\r\n route.name === resolveRoutedName ||\r\n route.meta.navActiveLink === resolveRoutedName\r\n );\r\n};\r\n\r\n/**\r\n * Check if nav group is\r\n * @param {Array} children Group children\r\n */\r\nexport const isNavGroupActive = children => {\r\n // Matched routes array of current route\r\n const matchedRoutes = router.currentRoute.matched;\r\n\r\n return children.some(child => {\r\n // If child have children => It's group => Go deeper(recursive)\r\n if (child.children) {\r\n return isNavGroupActive(child.children);\r\n }\r\n\r\n // else it's link => Check for matched Route\r\n return isNavLinkActive(child, matchedRoutes);\r\n });\r\n};\r\n\r\n/**\r\n * Return b-link props to use\r\n * @param {Object, String} item navigation routeName or route Object provided in navigation data\r\n */\r\n// prettier-ignore\r\nexport const navLinkProps = item => computed(() => {\r\n const props = {}\r\n\r\n // If route is string => it assumes => Create route object from route name\r\n // If route is not string => It assumes it's route object => returns route object\r\n if (item.route && !item.modal) props.to = typeof item.route === 'string' ? { name: item.route } : item.route\r\n else {\r\n props.href = item.href\r\n props.modal = item.modal\r\n props.target = '_blank'\r\n props.rel = 'nofollow'\r\n }\r\n\r\n if (!props.target) props.target = item.target || null\r\n\r\n return props\r\n})\r\n","import { getCurrentInstance } from '@vue/composition-api';\r\n\r\n/**\r\n * Returns ability result if ACL is configured or else just return true\r\n * Useful if you don't know if ACL is configured or not\r\n * Used in @core files to handle absence of ACL without errors\r\n * @param {String} action CASL Actions // https://casl.js.org/v4/en/guide/intro#basics\r\n * @param {String} subject CASL Subject // https://casl.js.org/v4/en/guide/intro#basics\r\n */\r\nexport const can = (action, subject) => {\r\n const vm = getCurrentInstance().proxy;\r\n return vm.$can ? vm.$can(action, subject) : true;\r\n};\r\n\r\n/**\r\n * Check if user can view item based on it's ability\r\n * Based on item's action and resource\r\n * @param {Object} item navigation object item\r\n */\r\nexport const canViewVerticalNavMenuLink = item =>\r\n can(item.action, item.resource);\r\n\r\n/**\r\n * Check if user can view item based on it's ability\r\n * Based on item's action and resource & Hide group if all of it's children are hidden\r\n * @param {Object} item navigation object item\r\n */\r\n// eslint-disable-next-line arrow-body-style\r\nexport const canViewVerticalNavMenuGroup = item => {\r\n // ! This same logic is used in canViewHorizontalNavMenuGroup and canViewHorizontalNavMenuHeaderGroup. So make sure to update logic in them as well\r\n const hasAnyVisibleChild = item.children.some(i => can(i.action, i.resource));\r\n\r\n // If resource and action is defined in item => Return based on children visibility (Hide group if no child is visible)\r\n // Else check for ability using provided resource and action along with checking if has any visible child\r\n if (!(item.action && item.resource)) {\r\n return hasAnyVisibleChild;\r\n }\r\n return can(item.action, item.resource) && hasAnyVisibleChild;\r\n};\r\n\r\n/**\r\n * Check if user can view item based on it's ability\r\n * Based on item's action and resource\r\n * @param {Object} item navigation object item\r\n */\r\nexport const canViewVerticalNavMenuHeader = item =>\r\n can(item.action, item.resource);\r\n\r\n/**\r\n * Check if user can view item based on it's ability\r\n * Based on item's action and resource\r\n * @param {Object} item navigation object item\r\n */\r\nexport const canViewHorizontalNavMenuLink = item =>\r\n can(item.action, item.resource);\r\n\r\n/**\r\n * Check if user can view item based on it's ability\r\n * Based on item's action and resource\r\n * @param {Object} item navigation object item\r\n */\r\nexport const canViewHorizontalNavMenuHeaderLink = item =>\r\n can(item.action, item.resource);\r\n\r\n/**\r\n * Check if user can view item based on it's ability\r\n * Based on item's action and resource & Hide group if all of it's children are hidden\r\n * @param {Object} item navigation object item\r\n */\r\n// eslint-disable-next-line arrow-body-style\r\nexport const canViewHorizontalNavMenuGroup = item => {\r\n // ? Same logic as canViewVerticalNavMenuGroup\r\n const hasAnyVisibleChild = item.children.some(i => can(i.action, i.resource));\r\n\r\n // If resource and action is defined in item => Return based on children visibility (Hide group if no child is visible)\r\n // Else check for ability using provided resource and action along with checking if has any visible child\r\n if (!(item.action && item.resource)) {\r\n return hasAnyVisibleChild;\r\n }\r\n return can(item.action, item.resource) && hasAnyVisibleChild;\r\n};\r\n\r\n// eslint-disable-next-line arrow-body-style\r\nexport const canViewHorizontalNavMenuHeaderGroup = item => {\r\n // ? Same logic as canViewVerticalNavMenuGroup but with extra content\r\n\r\n // eslint-disable-next-line arrow-body-style\r\n const hasAnyVisibleChild = item.children.some(grpOrItem => {\r\n // If it have children => It's grp\r\n // Call ACL function based on grp/link\r\n return grpOrItem.children\r\n ? canViewHorizontalNavMenuGroup(grpOrItem)\r\n : canViewHorizontalNavMenuLink(grpOrItem);\r\n });\r\n\r\n // If resource and action is defined in item => Return based on children visibility (Hide group if no child is visible)\r\n // Else check for ability using provided resource and action along with checking if has any visible child\r\n if (!(item.action && item.resource)) {\r\n return hasAnyVisibleChild;\r\n }\r\n return can(item.action, item.resource) && hasAnyVisibleChild;\r\n};\r\n","import * as utils from './utils';\r\n\r\nexport const useUtils = () => ({\r\n ...utils,\r\n});\r\n\r\nexport const _ = null;\r\n","import { getCurrentInstance } from '@vue/composition-api';\r\n\r\n/**\r\n * Returns translated string if i18n package is available to Vue\r\n * If i18n is not configured then it will simply return what is being passed\r\n * Useful if you don't know if i18n is configured or not\r\n * Used in @core files to handle absence of i18n without errors\r\n * @param {String} key i18n key to use for translation\r\n */\r\nexport const t = key => {\r\n const vm = getCurrentInstance().proxy;\r\n return vm.$t ? vm.$t(key) : key;\r\n};\r\n\r\nexport const _ = null;\r\n","import * as utils from './utils';\r\n\r\nexport const useUtils = () => ({\r\n ...utils,\r\n});\r\n\r\nexport const _ = null;\r\n","module.exports=function(t){function e(i){if(r[i])return r[i].exports;var n=r[i]={i:i,l:!1,exports:{}};return t[i].call(n.exports,n,n.exports,e),n.l=!0,n.exports}var r={};return e.m=t,e.c=r,e.i=function(t){return t},e.d=function(t,r,i){e.o(t,r)||Object.defineProperty(t,r,{configurable:!1,enumerable:!0,get:i})},e.n=function(t){var r=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(r,\"a\",r),r},e.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},e.p=\"/dist/\",e(e.s=2)}([function(t,e){t.exports=function(){var t=[];return t.toString=function(){for(var t=[],e=0;e.ps__rail-x,.ps--active-y>.ps__rail-y{display:block;background-color:transparent}.ps--focus>.ps__rail-x,.ps--focus>.ps__rail-y,.ps--scrolling-x>.ps__rail-x,.ps--scrolling-y>.ps__rail-y,.ps:hover>.ps__rail-x,.ps:hover>.ps__rail-y{opacity:.6}.ps .ps__rail-x.ps--clicking,.ps .ps__rail-x:focus,.ps .ps__rail-x:hover,.ps .ps__rail-y.ps--clicking,.ps .ps__rail-y:focus,.ps .ps__rail-y:hover{background-color:#eee;opacity:.9}.ps__thumb-x{transition:background-color .2s linear,height .2s ease-in-out;-webkit-transition:background-color .2s linear,height .2s ease-in-out;height:6px;bottom:2px}.ps__thumb-x,.ps__thumb-y{background-color:#aaa;border-radius:6px;position:absolute}.ps__thumb-y{transition:background-color .2s linear,width .2s ease-in-out;-webkit-transition:background-color .2s linear,width .2s ease-in-out;width:6px;right:2px}.ps__rail-x.ps--clicking .ps__thumb-x,.ps__rail-x:focus>.ps__thumb-x,.ps__rail-x:hover>.ps__thumb-x{background-color:#999;height:11px}.ps__rail-y.ps--clicking .ps__thumb-y,.ps__rail-y:focus>.ps__thumb-y,.ps__rail-y:hover>.ps__thumb-y{background-color:#999;width:11px}@supports (-ms-overflow-style:none){.ps{overflow:auto!important}}@media (-ms-high-contrast:none),screen and (-ms-high-contrast:active){.ps{overflow:auto!important}}\",\"\"])},function(t,e,r){e=t.exports=r(0)(),e.i(r(4),\"\"),e.push([t.i,\".ps-container{position:relative}\",\"\"])},function(t,e,r){\"use strict\";/*!\n * perfect-scrollbar v1.4.0\n * (c) 2018 Hyunje Jun\n * @license MIT\n */\nfunction i(t){return getComputedStyle(t)}function n(t,e){for(var r in e){var i=e[r];\"number\"==typeof i&&(i+=\"px\"),t.style[r]=i}return t}function o(t){var e=document.createElement(\"div\");return e.className=t,e}function l(t,e){if(!w)throw new Error(\"No element matching method supported\");return w.call(t,e)}function s(t){t.remove?t.remove():t.parentNode&&t.parentNode.removeChild(t)}function a(t,e){return Array.prototype.filter.call(t.children,function(t){return l(t,e)})}function c(t,e){var r=t.element.classList,i=Y.state.scrolling(e);r.contains(i)?clearTimeout(_[e]):r.add(i)}function h(t,e){_[e]=setTimeout(function(){return t.isAlive&&t.element.classList.remove(Y.state.scrolling(e))},t.settings.scrollingThreshold)}function u(t,e){c(t,e),h(t,e)}function p(t){if(\"function\"==typeof window.CustomEvent)return new CustomEvent(t);var e=document.createEvent(\"CustomEvent\");return e.initCustomEvent(t,!1,!1,void 0),e}function d(t,e,r,i,n){var o=r[0],l=r[1],s=r[2],a=r[3],c=r[4],h=r[5];void 0===i&&(i=!0),void 0===n&&(n=!1);var d=t.element;t.reach[a]=null,d[s]<1&&(t.reach[a]=\"start\"),d[s]>t[o]-t[l]-1&&(t.reach[a]=\"end\"),e&&(d.dispatchEvent(p(\"ps-scroll-\"+a)),e<0?d.dispatchEvent(p(\"ps-scroll-\"+c)):e>0&&d.dispatchEvent(p(\"ps-scroll-\"+h)),i&&u(t,a)),t.reach[a]&&(e||n)&&d.dispatchEvent(p(\"ps-\"+a+\"-reach-\"+t.reach[a]))}function f(t){return parseInt(t,10)||0}function b(t){return l(t,\"input,[contenteditable]\")||l(t,\"select,[contenteditable]\")||l(t,\"textarea,[contenteditable]\")||l(t,\"button,[contenteditable]\")}function v(t){var e=i(t);return f(e.width)+f(e.paddingLeft)+f(e.paddingRight)+f(e.borderLeftWidth)+f(e.borderRightWidth)}function g(t,e){return t.settings.minScrollbarLength&&(e=Math.max(e,t.settings.minScrollbarLength)),t.settings.maxScrollbarLength&&(e=Math.min(e,t.settings.maxScrollbarLength)),e}function m(t,e){var r={width:e.railXWidth},i=Math.floor(t.scrollTop);e.isRtl?r.left=e.negativeScrollAdjustment+t.scrollLeft+e.containerWidth-e.contentWidth:r.left=t.scrollLeft,e.isScrollbarXUsingBottom?r.bottom=e.scrollbarXBottom-i:r.top=e.scrollbarXTop+i,n(e.scrollbarXRail,r);var o={top:i,height:e.railYHeight};e.isScrollbarYUsingRight?e.isRtl?o.right=e.contentWidth-(e.negativeScrollAdjustment+t.scrollLeft)-e.scrollbarYRight-e.scrollbarYOuterWidth:o.right=e.scrollbarYRight-t.scrollLeft:e.isRtl?o.left=e.negativeScrollAdjustment+t.scrollLeft+2*e.containerWidth-e.contentWidth-e.scrollbarYLeft-e.scrollbarYOuterWidth:o.left=e.scrollbarYLeft+t.scrollLeft,n(e.scrollbarYRail,o),n(e.scrollbarX,{left:e.scrollbarXLeft,width:e.scrollbarXWidth-e.railBorderXWidth}),n(e.scrollbarY,{top:e.scrollbarYTop,height:e.scrollbarYHeight-e.railBorderYWidth})}function y(t,e){function r(e){b[p]=v+m*(e[l]-g),c(t,d),T(t),e.stopPropagation(),e.preventDefault()}function i(){h(t,d),t[f].classList.remove(Y.state.clicking),t.event.unbind(t.ownerDocument,\"mousemove\",r)}var n=e[0],o=e[1],l=e[2],s=e[3],a=e[4],u=e[5],p=e[6],d=e[7],f=e[8],b=t.element,v=null,g=null,m=null;t.event.bind(t[a],\"mousedown\",function(e){v=b[p],g=e[l],m=(t[o]-t[n])/(t[s]-t[u]),t.event.bind(t.ownerDocument,\"mousemove\",r),t.event.once(t.ownerDocument,\"mouseup\",i),t[f].classList.add(Y.state.clicking),e.stopPropagation(),e.preventDefault()})}var w=\"undefined\"!=typeof Element&&(Element.prototype.matches||Element.prototype.webkitMatchesSelector||Element.prototype.mozMatchesSelector||Element.prototype.msMatchesSelector),Y={main:\"ps\",element:{thumb:function(t){return\"ps__thumb-\"+t},rail:function(t){return\"ps__rail-\"+t},consuming:\"ps__child--consume\"},state:{focus:\"ps--focus\",clicking:\"ps--clicking\",active:function(t){return\"ps--active-\"+t},scrolling:function(t){return\"ps--scrolling-\"+t}}},_={x:null,y:null},X=function(t){this.element=t,this.handlers={}},W={isEmpty:{configurable:!0}};X.prototype.bind=function(t,e){void 0===this.handlers[t]&&(this.handlers[t]=[]),this.handlers[t].push(e),this.element.addEventListener(t,e,!1)},X.prototype.unbind=function(t,e){var r=this;this.handlers[t]=this.handlers[t].filter(function(i){return!(!e||i===e)||(r.element.removeEventListener(t,i,!1),!1)})},X.prototype.unbindAll=function(){var t=this;for(var e in t.handlers)t.unbind(e)},W.isEmpty.get=function(){var t=this;return Object.keys(this.handlers).every(function(e){return 0===t.handlers[e].length})},Object.defineProperties(X.prototype,W);var x=function(){this.eventElements=[]};x.prototype.eventElement=function(t){var e=this.eventElements.filter(function(e){return e.element===t})[0];return e||(e=new X(t),this.eventElements.push(e)),e},x.prototype.bind=function(t,e,r){this.eventElement(t).bind(e,r)},x.prototype.unbind=function(t,e,r){var i=this.eventElement(t);i.unbind(e,r),i.isEmpty&&this.eventElements.splice(this.eventElements.indexOf(i),1)},x.prototype.unbindAll=function(){this.eventElements.forEach(function(t){return t.unbindAll()}),this.eventElements=[]},x.prototype.once=function(t,e,r){var i=this.eventElement(t),n=function(t){i.unbind(e,n),r(t)};i.bind(e,n)};var L=function(t,e,r,i,n){void 0===i&&(i=!0),void 0===n&&(n=!1);var o;if(\"top\"===e)o=[\"contentHeight\",\"containerHeight\",\"scrollTop\",\"y\",\"up\",\"down\"];else{if(\"left\"!==e)throw new Error(\"A proper axis should be provided\");o=[\"contentWidth\",\"containerWidth\",\"scrollLeft\",\"x\",\"left\",\"right\"]}d(t,r,o,i,n)},R={isWebKit:\"undefined\"!=typeof document&&\"WebkitAppearance\"in document.documentElement.style,supportsTouch:\"undefined\"!=typeof window&&(\"ontouchstart\"in window||window.DocumentTouch&&document instanceof window.DocumentTouch),supportsIePointer:\"undefined\"!=typeof navigator&&navigator.msMaxTouchPoints,isChrome:\"undefined\"!=typeof navigator&&/Chrome/i.test(navigator&&navigator.userAgent)},T=function(t){var e=t.element,r=Math.floor(e.scrollTop);t.containerWidth=e.clientWidth,t.containerHeight=e.clientHeight,t.contentWidth=e.scrollWidth,t.contentHeight=e.scrollHeight,e.contains(t.scrollbarXRail)||(a(e,Y.element.rail(\"x\")).forEach(function(t){return s(t)}),e.appendChild(t.scrollbarXRail)),e.contains(t.scrollbarYRail)||(a(e,Y.element.rail(\"y\")).forEach(function(t){return s(t)}),e.appendChild(t.scrollbarYRail)),!t.settings.suppressScrollX&&t.containerWidth+t.settings.scrollXMarginOffset=t.railXWidth-t.scrollbarXWidth&&(t.scrollbarXLeft=t.railXWidth-t.scrollbarXWidth),t.scrollbarYTop>=t.railYHeight-t.scrollbarYHeight&&(t.scrollbarYTop=t.railYHeight-t.scrollbarYHeight),m(e,t),t.scrollbarXActive?e.classList.add(Y.state.active(\"x\")):(e.classList.remove(Y.state.active(\"x\")),t.scrollbarXWidth=0,t.scrollbarXLeft=0,e.scrollLeft=0),t.scrollbarYActive?e.classList.add(Y.state.active(\"y\")):(e.classList.remove(Y.state.active(\"y\")),t.scrollbarYHeight=0,t.scrollbarYTop=0,e.scrollTop=0)},S=function(t){t.event.bind(t.scrollbarY,\"mousedown\",function(t){return t.stopPropagation()}),t.event.bind(t.scrollbarYRail,\"mousedown\",function(e){var r=e.pageY-window.pageYOffset-t.scrollbarYRail.getBoundingClientRect().top,i=r>t.scrollbarYTop?1:-1;t.element.scrollTop+=i*t.containerHeight,T(t),e.stopPropagation()}),t.event.bind(t.scrollbarX,\"mousedown\",function(t){return t.stopPropagation()}),t.event.bind(t.scrollbarXRail,\"mousedown\",function(e){var r=e.pageX-window.pageXOffset-t.scrollbarXRail.getBoundingClientRect().left,i=r>t.scrollbarXLeft?1:-1;t.element.scrollLeft+=i*t.containerWidth,T(t),e.stopPropagation()})},H=function(t){y(t,[\"containerWidth\",\"contentWidth\",\"pageX\",\"railXWidth\",\"scrollbarX\",\"scrollbarXWidth\",\"scrollLeft\",\"x\",\"scrollbarXRail\"]),y(t,[\"containerHeight\",\"contentHeight\",\"pageY\",\"railYHeight\",\"scrollbarY\",\"scrollbarYHeight\",\"scrollTop\",\"y\",\"scrollbarYRail\"])},E=function(t){function e(e,i){var n=Math.floor(r.scrollTop);if(0===e){if(!t.scrollbarYActive)return!1;if(0===n&&i>0||n>=t.contentHeight-t.containerHeight&&i<0)return!t.settings.wheelPropagation}var o=r.scrollLeft;if(0===i){if(!t.scrollbarXActive)return!1;if(0===o&&e<0||o>=t.contentWidth-t.containerWidth&&e>0)return!t.settings.wheelPropagation}return!0}var r=t.element,i=function(){return l(r,\":hover\")},n=function(){return l(t.scrollbarX,\":focus\")||l(t.scrollbarY,\":focus\")};t.event.bind(t.ownerDocument,\"keydown\",function(o){if(!(o.isDefaultPrevented&&o.isDefaultPrevented()||o.defaultPrevented)&&(i()||n())){var l=document.activeElement?document.activeElement:t.ownerDocument.activeElement;if(l){if(\"IFRAME\"===l.tagName)l=l.contentDocument.activeElement;else for(;l.shadowRoot;)l=l.shadowRoot.activeElement;if(b(l))return}var s=0,a=0;switch(o.which){case 37:s=o.metaKey?-t.contentWidth:o.altKey?-t.containerWidth:-30;break;case 38:a=o.metaKey?t.contentHeight:o.altKey?t.containerHeight:30;break;case 39:s=o.metaKey?t.contentWidth:o.altKey?t.containerWidth:30;break;case 40:a=o.metaKey?-t.contentHeight:o.altKey?-t.containerHeight:-30;break;case 32:a=o.shiftKey?t.containerHeight:-t.containerHeight;break;case 33:a=t.containerHeight;break;case 34:a=-t.containerHeight;break;case 36:a=t.contentHeight;break;case 35:a=-t.contentHeight;break;default:return}t.settings.suppressScrollX&&0!==s||t.settings.suppressScrollY&&0!==a||(r.scrollTop-=a,r.scrollLeft+=s,T(t),e(s,a)&&o.preventDefault())}})},M=function(t){function e(e,r){var i=Math.floor(l.scrollTop),n=0===l.scrollTop,o=i+l.offsetHeight===l.scrollHeight,s=0===l.scrollLeft,a=l.scrollLeft+l.offsetWidth===l.scrollWidth;return!(Math.abs(r)>Math.abs(e)?n||o:s||a)||!t.settings.wheelPropagation}function r(t){var e=t.deltaX,r=-1*t.deltaY;return void 0!==e&&void 0!==r||(e=-1*t.wheelDeltaX/6,r=t.wheelDeltaY/6),t.deltaMode&&1===t.deltaMode&&(e*=10,r*=10),e!==e&&r!==r&&(e=0,r=t.wheelDelta),t.shiftKey?[-r,-e]:[e,r]}function n(t,e,r){if(!R.isWebKit&&l.querySelector(\"select:focus\"))return!0;if(!l.contains(t))return!1;for(var n=t;n&&n!==l;){if(n.classList.contains(Y.element.consuming))return!0;var o=i(n);if([o.overflow,o.overflowX,o.overflowY].join(\"\").match(/(scroll|auto)/)){var s=n.scrollHeight-n.clientHeight;if(s>0&&!(0===n.scrollTop&&r>0||n.scrollTop===s&&r<0))return!0;var a=n.scrollWidth-n.clientWidth;if(a>0&&!(0===n.scrollLeft&&e<0||n.scrollLeft===a&&e>0))return!0}n=n.parentNode}return!1}function o(i){var o=r(i),s=o[0],a=o[1];if(!n(i.target,s,a)){var c=!1;t.settings.useBothWheelAxes?t.scrollbarYActive&&!t.scrollbarXActive?(a?l.scrollTop-=a*t.settings.wheelSpeed:l.scrollTop+=s*t.settings.wheelSpeed,c=!0):t.scrollbarXActive&&!t.scrollbarYActive&&(s?l.scrollLeft+=s*t.settings.wheelSpeed:l.scrollLeft-=a*t.settings.wheelSpeed,c=!0):(l.scrollTop-=a*t.settings.wheelSpeed,l.scrollLeft+=s*t.settings.wheelSpeed),T(t),c=c||e(s,a),c&&!i.ctrlKey&&(i.stopPropagation(),i.preventDefault())}}var l=t.element;void 0!==window.onwheel?t.event.bind(l,\"wheel\",o):void 0!==window.onmousewheel&&t.event.bind(l,\"mousewheel\",o)},k=function(t){function e(e,r){var i=Math.floor(h.scrollTop),n=h.scrollLeft,o=Math.abs(e),l=Math.abs(r);if(l>o){if(r<0&&i===t.contentHeight-t.containerHeight||r>0&&0===i)return 0===window.scrollY&&r>0&&R.isChrome}else if(o>l&&(e<0&&n===t.contentWidth-t.containerWidth||e>0&&0===n))return!0;return!0}function r(e,r){h.scrollTop-=r,h.scrollLeft-=e,T(t)}function n(t){return t.targetTouches?t.targetTouches[0]:t}function o(t){return(!t.pointerType||\"pen\"!==t.pointerType||0!==t.buttons)&&(!(!t.targetTouches||1!==t.targetTouches.length)||!(!t.pointerType||\"mouse\"===t.pointerType||t.pointerType===t.MSPOINTER_TYPE_MOUSE))}function l(t){if(o(t)){var e=n(t);u.pageX=e.pageX,u.pageY=e.pageY,p=(new Date).getTime(),null!==f&&clearInterval(f)}}function s(t,e,r){if(!h.contains(t))return!1;for(var n=t;n&&n!==h;){if(n.classList.contains(Y.element.consuming))return!0;var o=i(n);if([o.overflow,o.overflowX,o.overflowY].join(\"\").match(/(scroll|auto)/)){var l=n.scrollHeight-n.clientHeight;if(l>0&&!(0===n.scrollTop&&r>0||n.scrollTop===l&&r<0))return!0;var s=n.scrollLeft-n.clientWidth;if(s>0&&!(0===n.scrollLeft&&e<0||n.scrollLeft===s&&e>0))return!0}n=n.parentNode}return!1}function a(t){if(o(t)){var i=n(t),l={pageX:i.pageX,pageY:i.pageY},a=l.pageX-u.pageX,c=l.pageY-u.pageY;if(s(t.target,a,c))return;r(a,c),u=l;var h=(new Date).getTime(),f=h-p;f>0&&(d.x=a/f,d.y=c/f,p=h),e(a,c)&&t.preventDefault()}}function c(){t.settings.swipeEasing&&(clearInterval(f),f=setInterval(function(){return t.isInitialized?void clearInterval(f):d.x||d.y?Math.abs(d.x)<.01&&Math.abs(d.y)<.01?void clearInterval(f):(r(30*d.x,30*d.y),d.x*=.8,void(d.y*=.8)):void clearInterval(f)},10))}if(R.supportsTouch||R.supportsIePointer){var h=t.element,u={},p=0,d={},f=null;R.supportsTouch?(t.event.bind(h,\"touchstart\",l),t.event.bind(h,\"touchmove\",a),t.event.bind(h,\"touchend\",c)):R.supportsIePointer&&(window.PointerEvent?(t.event.bind(h,\"pointerdown\",l),t.event.bind(h,\"pointermove\",a),t.event.bind(h,\"pointerup\",c)):window.MSPointerEvent&&(t.event.bind(h,\"MSPointerDown\",l),t.event.bind(h,\"MSPointerMove\",a),t.event.bind(h,\"MSPointerUp\",c)))}},A=function(){return{handlers:[\"click-rail\",\"drag-thumb\",\"keyboard\",\"wheel\",\"touch\"],maxScrollbarLength:null,minScrollbarLength:null,scrollingThreshold:1e3,scrollXMarginOffset:0,scrollYMarginOffset:0,suppressScrollX:!1,suppressScrollY:!1,swipeEasing:!0,useBothWheelAxes:!1,wheelPropagation:!0,wheelSpeed:1}},P={\"click-rail\":S,\"drag-thumb\":H,keyboard:E,wheel:M,touch:k},C=function(t,e){var r=this;if(void 0===e&&(e={}),\"string\"==typeof t&&(t=document.querySelector(t)),!t||!t.nodeName)throw new Error(\"no element is specified to initialize PerfectScrollbar\");this.element=t,t.classList.add(Y.main),this.settings=A();for(var l in e)r.settings[l]=e[l];this.containerWidth=null,this.containerHeight=null,this.contentWidth=null,this.contentHeight=null;var s=function(){return t.classList.add(Y.state.focus)},a=function(){return t.classList.remove(Y.state.focus)};this.isRtl=\"rtl\"===i(t).direction,this.isNegativeScroll=function(){var e=t.scrollLeft,r=null;return t.scrollLeft=-1,r=t.scrollLeft<0,t.scrollLeft=e,r}(),this.negativeScrollAdjustment=this.isNegativeScroll?t.scrollWidth-t.clientWidth:0,this.event=new x,this.ownerDocument=t.ownerDocument||document,this.scrollbarXRail=o(Y.element.rail(\"x\")),t.appendChild(this.scrollbarXRail),this.scrollbarX=o(Y.element.thumb(\"x\")),this.scrollbarXRail.appendChild(this.scrollbarX),this.scrollbarX.setAttribute(\"tabindex\",0),this.event.bind(this.scrollbarX,\"focus\",s),this.event.bind(this.scrollbarX,\"blur\",a),this.scrollbarXActive=null,this.scrollbarXWidth=null,this.scrollbarXLeft=null;var c=i(this.scrollbarXRail);this.scrollbarXBottom=parseInt(c.bottom,10),isNaN(this.scrollbarXBottom)?(this.isScrollbarXUsingBottom=!1,this.scrollbarXTop=f(c.top)):this.isScrollbarXUsingBottom=!0,this.railBorderXWidth=f(c.borderLeftWidth)+f(c.borderRightWidth),n(this.scrollbarXRail,{display:\"block\"}),this.railXMarginWidth=f(c.marginLeft)+f(c.marginRight),n(this.scrollbarXRail,{display:\"\"}),this.railXWidth=null,this.railXRatio=null,this.scrollbarYRail=o(Y.element.rail(\"y\")),t.appendChild(this.scrollbarYRail),this.scrollbarY=o(Y.element.thumb(\"y\")),this.scrollbarYRail.appendChild(this.scrollbarY),this.scrollbarY.setAttribute(\"tabindex\",0),this.event.bind(this.scrollbarY,\"focus\",s),this.event.bind(this.scrollbarY,\"blur\",a),this.scrollbarYActive=null,this.scrollbarYHeight=null,this.scrollbarYTop=null;var h=i(this.scrollbarYRail);this.scrollbarYRight=parseInt(h.right,10),isNaN(this.scrollbarYRight)?(this.isScrollbarYUsingRight=!1,this.scrollbarYLeft=f(h.left)):this.isScrollbarYUsingRight=!0,this.scrollbarYOuterWidth=this.isRtl?v(this.scrollbarY):null,this.railBorderYWidth=f(h.borderTopWidth)+f(h.borderBottomWidth),n(this.scrollbarYRail,{display:\"block\"}),this.railYMarginHeight=f(h.marginTop)+f(h.marginBottom),n(this.scrollbarYRail,{display:\"\"}),this.railYHeight=null,this.railYRatio=null,this.reach={x:t.scrollLeft<=0?\"start\":t.scrollLeft>=this.contentWidth-this.containerWidth?\"end\":null,y:t.scrollTop<=0?\"start\":t.scrollTop>=this.contentHeight-this.containerHeight?\"end\":null},this.isAlive=!0,this.settings.handlers.forEach(function(t){return P[t](r)}),this.lastScrollTop=Math.floor(t.scrollTop),this.lastScrollLeft=t.scrollLeft,this.event.bind(this.element,\"scroll\",function(t){return r.onScroll(t)}),T(this)};C.prototype.update=function(){this.isAlive&&(this.negativeScrollAdjustment=this.isNegativeScroll?this.element.scrollWidth-this.element.clientWidth:0,n(this.scrollbarXRail,{display:\"block\"}),n(this.scrollbarYRail,{display:\"block\"}),this.railXMarginWidth=f(i(this.scrollbarXRail).marginLeft)+f(i(this.scrollbarXRail).marginRight),this.railYMarginHeight=f(i(this.scrollbarYRail).marginTop)+f(i(this.scrollbarYRail).marginBottom),n(this.scrollbarXRail,{display:\"none\"}),n(this.scrollbarYRail,{display:\"none\"}),T(this),L(this,\"top\",0,!1,!0),L(this,\"left\",0,!1,!0),n(this.scrollbarXRail,{display:\"\"}),n(this.scrollbarYRail,{display:\"\"}))},C.prototype.onScroll=function(t){this.isAlive&&(T(this),L(this,\"top\",this.element.scrollTop-this.lastScrollTop),L(this,\"left\",this.element.scrollLeft-this.lastScrollLeft),this.lastScrollTop=Math.floor(this.element.scrollTop),this.lastScrollLeft=this.element.scrollLeft)},C.prototype.destroy=function(){this.isAlive&&(this.event.unbindAll(),s(this.scrollbarX),s(this.scrollbarY),s(this.scrollbarXRail),s(this.scrollbarYRail),this.removePsClasses(),this.element=null,this.scrollbarX=null,this.scrollbarY=null,this.scrollbarXRail=null,this.scrollbarYRail=null,this.isAlive=!1)},C.prototype.removePsClasses=function(){this.element.className=this.element.className.split(\" \").filter(function(t){return!t.match(/^ps([-_].+|)$/)}).join(\" \")},e.a=C},function(t,e){t.exports=function(t,e,r,i){var n,o=t=t||{},l=typeof t.default;\"object\"!==l&&\"function\"!==l||(n=t,o=t.default);var s=\"function\"==typeof o?o.options:o;if(e&&(s.render=e.render,s.staticRenderFns=e.staticRenderFns),r&&(s._scopeId=r),i){var a=s.computed||(s.computed={});Object.keys(i).forEach(function(t){var e=i[t];a[t]=function(){return e}})}return{esModule:n,exports:o,options:s}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement;return(t._self._c||e)(t.$props.tagname,t._g({tag:\"section\",staticClass:\"ps-container\",on:{\"~mouseover\":function(e){return t.update(e)}}},t.$listeners),[t._t(\"default\")],2)},staticRenderFns:[]}},function(t,e){function r(t,e){for(var r=0;r=0&&v.splice(e,1)}function l(t){var e=document.createElement(\"style\");return e.type=\"text/css\",n(t,e),e}function s(t,e){var r,i,n;if(e.singleton){var s=b++;r=f||(f=l(e)),i=a.bind(null,r,s,!1),n=a.bind(null,r,s,!0)}else r=l(e),i=c.bind(null,r),n=function(){o(r)};return i(t),function(e){if(e){if(e.css===t.css&&e.media===t.media&&e.sourceMap===t.sourceMap)return;i(t=e)}else n()}}function a(t,e,r,i){var n=r?\"\":i.css;if(t.styleSheet)t.styleSheet.cssText=g(e,n);else{var o=document.createTextNode(n),l=t.childNodes;l[e]&&t.removeChild(l[e]),l.length?t.insertBefore(o,l[e]):t.appendChild(o)}}function c(t,e){var r=e.css,i=e.media,n=e.sourceMap;if(i&&t.setAttribute(\"media\",i),n&&(r+=\"\\n/*# sourceURL=\"+n.sources[0]+\" */\",r+=\"\\n/*# sourceMappingURL=data:application/json;base64,\"+btoa(unescape(encodeURIComponent(JSON.stringify(n))))+\" */\"),t.styleSheet)t.styleSheet.cssText=r;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(r))}}var h={},u=function(t){var e;return function(){return void 0===e&&(e=t.apply(this,arguments)),e}},p=u(function(){return/msie [6-9]\\b/.test(window.navigator.userAgent.toLowerCase())}),d=u(function(){return document.head||document.getElementsByTagName(\"head\")[0]}),f=null,b=0,v=[];t.exports=function(t,e){if(\"undefined\"!=typeof DEBUG&&DEBUG&&\"object\"!=typeof document)throw new Error(\"The style-loader cannot be used in a non-browser environment\");e=e||{},void 0===e.singleton&&(e.singleton=p()),void 0===e.insertAt&&(e.insertAt=\"bottom\");var n=i(t);return r(n,e),function(t){for(var o=[],l=0;l