lawgic-dev-kit 0.12.4 → 0.12.8

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 (354) hide show
  1. package/dist/_virtual/client.js +3 -22
  2. package/dist/_virtual/index2.js +3 -2
  3. package/dist/_virtual/index3.js +3 -3
  4. package/dist/_virtual/index4.js +5 -3
  5. package/dist/_virtual/index5.js +2 -5
  6. package/dist/_virtual/index7.js +2 -2
  7. package/dist/_virtual/index8.js +2 -2
  8. package/dist/components/atoms/Avatar/Avatar.js +71 -30
  9. package/dist/components/atoms/UploadContainer/UploadContainer.js +88 -47
  10. package/dist/components/molecules/AlertModal/AlertModal.js +67 -26
  11. package/dist/components/molecules/CalendarSelector/CalendarSelector.js +205 -145
  12. package/dist/components/molecules/DateInput/DateInput.d.ts +2 -2
  13. package/dist/components/molecules/DateInput/DateInput.js +63 -50
  14. package/dist/components/molecules/DialogModal/DialogModal.js +78 -37
  15. package/dist/components/molecules/FloatingMenu/FloatingMenu.js +74 -33
  16. package/dist/components/molecules/Tabs/Tabs.js +82 -41
  17. package/dist/dist/_virtual/_commonjsHelpers.js +8 -0
  18. package/dist/dist/_virtual/index.js +7 -0
  19. package/dist/dist/_virtual/index3.js +5 -0
  20. package/dist/dist/_virtual/index4.js +5 -0
  21. package/dist/dist/_virtual/index5.js +7 -0
  22. package/dist/dist/_virtual/index6.js +4 -0
  23. package/dist/dist/_virtual/index7.js +4 -0
  24. package/dist/dist/_virtual/index8.js +4 -0
  25. package/dist/dist/_virtual/jsx-runtime.js +5 -0
  26. package/dist/dist/_virtual/jsx-runtime2.js +4 -0
  27. package/dist/dist/_virtual/lodash.js +2 -0
  28. package/dist/dist/_virtual/lodash2.js +4 -0
  29. package/dist/dist/_virtual/react-is.development.js +4 -0
  30. package/dist/dist/_virtual/react-is.production.min.js +4 -0
  31. package/dist/dist/_virtual/react-jsx-runtime.development.js +4 -0
  32. package/dist/dist/_virtual/react-jsx-runtime.production.js +4 -0
  33. package/dist/dist/components/atoms/AsyncToast/index.js +33 -0
  34. package/dist/dist/components/atoms/ImageProfileInput/ImageProfileInput.validators.js +5 -0
  35. package/dist/dist/components/atoms/Toast/Toast.js +113 -0
  36. package/dist/dist/constants/countries.js +8 -0
  37. package/dist/dist/contexts/themeContext.js +3 -0
  38. package/dist/dist/node_modules/@floating-ui/react/dist/floating-ui.react.js +4 -0
  39. package/dist/dist/node_modules/@fortawesome/fontawesome-svg-core/index.js +2661 -0
  40. package/dist/dist/node_modules/@fortawesome/pro-light-svg-icons/index.js +33 -0
  41. package/dist/dist/node_modules/@fortawesome/react-fontawesome/index.es.js +266 -0
  42. package/dist/dist/node_modules/framer-motion/dist/es/animation/animate/single-value.js +11 -0
  43. package/dist/dist/node_modules/framer-motion/dist/es/animation/animators/AcceleratedAnimation.js +205 -0
  44. package/dist/dist/node_modules/framer-motion/dist/es/animation/animators/BaseAnimation.js +83 -0
  45. package/dist/dist/node_modules/framer-motion/dist/es/animation/animators/MainThreadAnimation.js +147 -0
  46. package/dist/dist/node_modules/framer-motion/dist/es/animation/animators/drivers/driver-frameloop.js +18 -0
  47. package/dist/dist/node_modules/framer-motion/dist/es/animation/animators/utils/accelerated-values.js +12 -0
  48. package/dist/dist/node_modules/framer-motion/dist/es/animation/animators/utils/can-animate.js +23 -0
  49. package/dist/dist/node_modules/framer-motion/dist/es/animation/animators/waapi/index.js +18 -0
  50. package/dist/dist/node_modules/framer-motion/dist/es/animation/animators/waapi/utils/get-final-keyframe.js +8 -0
  51. package/dist/dist/node_modules/framer-motion/dist/es/animation/animators/waapi/utils/supports-waapi.js +6 -0
  52. package/dist/dist/node_modules/framer-motion/dist/es/animation/generators/inertia.js +37 -0
  53. package/dist/dist/node_modules/framer-motion/dist/es/animation/generators/keyframes.js +30 -0
  54. package/dist/dist/node_modules/framer-motion/dist/es/animation/generators/spring/defaults.js +32 -0
  55. package/dist/dist/node_modules/framer-motion/dist/es/animation/generators/spring/find.js +52 -0
  56. package/dist/dist/node_modules/framer-motion/dist/es/animation/generators/spring/index.js +92 -0
  57. package/dist/dist/node_modules/framer-motion/dist/es/animation/generators/utils/velocity.js +10 -0
  58. package/dist/dist/node_modules/framer-motion/dist/es/animation/interfaces/motion-value.js +47 -0
  59. package/dist/dist/node_modules/framer-motion/dist/es/animation/interfaces/visual-element-target.js +46 -0
  60. package/dist/dist/node_modules/framer-motion/dist/es/animation/interfaces/visual-element-variant.js +33 -0
  61. package/dist/dist/node_modules/framer-motion/dist/es/animation/interfaces/visual-element.js +22 -0
  62. package/dist/dist/node_modules/framer-motion/dist/es/animation/optimized-appear/data-id.js +6 -0
  63. package/dist/dist/node_modules/framer-motion/dist/es/animation/optimized-appear/get-appear-id.js +7 -0
  64. package/dist/dist/node_modules/framer-motion/dist/es/animation/utils/default-transitions.js +22 -0
  65. package/dist/dist/node_modules/framer-motion/dist/es/animation/utils/is-animatable.js +7 -0
  66. package/dist/dist/node_modules/framer-motion/dist/es/animation/utils/is-animation-controls.js +6 -0
  67. package/dist/dist/node_modules/framer-motion/dist/es/animation/utils/is-keyframes-target.js +4 -0
  68. package/dist/dist/node_modules/framer-motion/dist/es/animation/utils/is-none.js +7 -0
  69. package/dist/dist/node_modules/framer-motion/dist/es/animation/utils/is-transition-defined.js +6 -0
  70. package/dist/dist/node_modules/framer-motion/dist/es/components/AnimatePresence/PopChild.js +53 -0
  71. package/dist/dist/node_modules/framer-motion/dist/es/components/AnimatePresence/PresenceChild.js +41 -0
  72. package/dist/dist/node_modules/framer-motion/dist/es/components/AnimatePresence/index.js +45 -0
  73. package/dist/dist/node_modules/framer-motion/dist/es/components/AnimatePresence/use-presence.js +17 -0
  74. package/dist/dist/node_modules/framer-motion/dist/es/components/AnimatePresence/utils.js +12 -0
  75. package/dist/dist/node_modules/framer-motion/dist/es/context/LayoutGroupContext.js +5 -0
  76. package/dist/dist/node_modules/framer-motion/dist/es/context/LazyContext.js +5 -0
  77. package/dist/dist/node_modules/framer-motion/dist/es/context/MotionConfigContext.js +9 -0
  78. package/dist/dist/node_modules/framer-motion/dist/es/context/MotionContext/create.js +13 -0
  79. package/dist/dist/node_modules/framer-motion/dist/es/context/MotionContext/index.js +5 -0
  80. package/dist/dist/node_modules/framer-motion/dist/es/context/MotionContext/utils.js +15 -0
  81. package/dist/dist/node_modules/framer-motion/dist/es/context/PresenceContext.js +5 -0
  82. package/dist/dist/node_modules/framer-motion/dist/es/context/SwitchLayoutGroupContext.js +5 -0
  83. package/dist/dist/node_modules/framer-motion/dist/es/easing/anticipate.js +5 -0
  84. package/dist/dist/node_modules/framer-motion/dist/es/easing/back.js +9 -0
  85. package/dist/dist/node_modules/framer-motion/dist/es/easing/circ.js +8 -0
  86. package/dist/dist/node_modules/framer-motion/dist/es/easing/cubic-bezier.js +19 -0
  87. package/dist/dist/node_modules/framer-motion/dist/es/easing/ease.js +7 -0
  88. package/dist/dist/node_modules/framer-motion/dist/es/easing/modifiers/mirror.js +4 -0
  89. package/dist/dist/node_modules/framer-motion/dist/es/easing/modifiers/reverse.js +4 -0
  90. package/dist/dist/node_modules/framer-motion/dist/es/easing/utils/is-easing-array.js +4 -0
  91. package/dist/dist/node_modules/framer-motion/dist/es/easing/utils/map.js +32 -0
  92. package/dist/dist/node_modules/framer-motion/dist/es/events/add-dom-event.js +6 -0
  93. package/dist/dist/node_modules/framer-motion/dist/es/events/add-pointer-event.js +8 -0
  94. package/dist/dist/node_modules/framer-motion/dist/es/events/event-info.js +15 -0
  95. package/dist/dist/node_modules/framer-motion/dist/es/gestures/drag/VisualElementDragControls.js +256 -0
  96. package/dist/dist/node_modules/framer-motion/dist/es/gestures/drag/index.js +19 -0
  97. package/dist/dist/node_modules/framer-motion/dist/es/gestures/drag/utils/constraints.js +68 -0
  98. package/dist/dist/node_modules/framer-motion/dist/es/gestures/focus.js +28 -0
  99. package/dist/dist/node_modules/framer-motion/dist/es/gestures/hover.js +22 -0
  100. package/dist/dist/node_modules/framer-motion/dist/es/gestures/pan/PanSession.js +85 -0
  101. package/dist/dist/node_modules/framer-motion/dist/es/gestures/pan/index.js +44 -0
  102. package/dist/dist/node_modules/framer-motion/dist/es/gestures/press.js +24 -0
  103. package/dist/dist/node_modules/framer-motion/dist/es/motion/features/Feature.js +10 -0
  104. package/dist/dist/node_modules/framer-motion/dist/es/motion/features/animation/exit.js +27 -0
  105. package/dist/dist/node_modules/framer-motion/dist/es/motion/features/animation/index.js +34 -0
  106. package/dist/dist/node_modules/framer-motion/dist/es/motion/features/animations.js +13 -0
  107. package/dist/dist/node_modules/framer-motion/dist/es/motion/features/definitions.js +27 -0
  108. package/dist/dist/node_modules/framer-motion/dist/es/motion/features/drag.js +17 -0
  109. package/dist/dist/node_modules/framer-motion/dist/es/motion/features/gestures.js +21 -0
  110. package/dist/dist/node_modules/framer-motion/dist/es/motion/features/layout/MeasureLayout.js +75 -0
  111. package/dist/dist/node_modules/framer-motion/dist/es/motion/features/layout.js +11 -0
  112. package/dist/dist/node_modules/framer-motion/dist/es/motion/features/load-features.js +11 -0
  113. package/dist/dist/node_modules/framer-motion/dist/es/motion/features/viewport/index.js +44 -0
  114. package/dist/dist/node_modules/framer-motion/dist/es/motion/features/viewport/observers.js +21 -0
  115. package/dist/dist/node_modules/framer-motion/dist/es/motion/index.js +59 -0
  116. package/dist/dist/node_modules/framer-motion/dist/es/motion/utils/is-forced-motion-value.js +8 -0
  117. package/dist/dist/node_modules/framer-motion/dist/es/motion/utils/symbol.js +4 -0
  118. package/dist/dist/node_modules/framer-motion/dist/es/motion/utils/use-motion-ref.js +18 -0
  119. package/dist/dist/node_modules/framer-motion/dist/es/motion/utils/use-visual-element.js +65 -0
  120. package/dist/dist/node_modules/framer-motion/dist/es/motion/utils/use-visual-state.js +53 -0
  121. package/dist/dist/node_modules/framer-motion/dist/es/motion/utils/valid-prop.js +38 -0
  122. package/dist/dist/node_modules/framer-motion/dist/es/projection/animation/mix-values.js +31 -0
  123. package/dist/dist/node_modules/framer-motion/dist/es/projection/geometry/conversion.js +25 -0
  124. package/dist/dist/node_modules/framer-motion/dist/es/projection/geometry/copy.js +14 -0
  125. package/dist/dist/node_modules/framer-motion/dist/es/projection/geometry/delta-apply.js +52 -0
  126. package/dist/dist/node_modules/framer-motion/dist/es/projection/geometry/delta-calc.js +36 -0
  127. package/dist/dist/node_modules/framer-motion/dist/es/projection/geometry/delta-remove.js +25 -0
  128. package/dist/dist/node_modules/framer-motion/dist/es/projection/geometry/models.js +18 -0
  129. package/dist/dist/node_modules/framer-motion/dist/es/projection/geometry/utils.js +34 -0
  130. package/dist/dist/node_modules/framer-motion/dist/es/projection/node/DocumentProjectionNode.js +13 -0
  131. package/dist/dist/node_modules/framer-motion/dist/es/projection/node/HTMLProjectionNode.js +25 -0
  132. package/dist/dist/node_modules/framer-motion/dist/es/projection/node/create-projection-node.js +608 -0
  133. package/dist/dist/node_modules/framer-motion/dist/es/projection/node/state.js +15 -0
  134. package/dist/dist/node_modules/framer-motion/dist/es/projection/shared/stack.js +59 -0
  135. package/dist/dist/node_modules/framer-motion/dist/es/projection/styles/scale-border-radius.js +21 -0
  136. package/dist/dist/node_modules/framer-motion/dist/es/projection/styles/scale-box-shadow.js +16 -0
  137. package/dist/dist/node_modules/framer-motion/dist/es/projection/styles/scale-correction.js +10 -0
  138. package/dist/dist/node_modules/framer-motion/dist/es/projection/styles/transform.js +13 -0
  139. package/dist/dist/node_modules/framer-motion/dist/es/projection/utils/each-axis.js +6 -0
  140. package/dist/dist/node_modules/framer-motion/dist/es/projection/utils/has-transform.js +20 -0
  141. package/dist/dist/node_modules/framer-motion/dist/es/projection/utils/measure.js +13 -0
  142. package/dist/dist/node_modules/framer-motion/dist/es/render/VisualElement.js +229 -0
  143. package/dist/dist/node_modules/framer-motion/dist/es/render/components/create-factory.js +20 -0
  144. package/dist/dist/node_modules/framer-motion/dist/es/render/components/create-proxy.js +18 -0
  145. package/dist/dist/node_modules/framer-motion/dist/es/render/components/motion/create.js +15 -0
  146. package/dist/dist/node_modules/framer-motion/dist/es/render/components/motion/proxy.js +6 -0
  147. package/dist/dist/node_modules/framer-motion/dist/es/render/dom/DOMKeyframesResolver.js +66 -0
  148. package/dist/dist/node_modules/framer-motion/dist/es/render/dom/DOMVisualElement.js +27 -0
  149. package/dist/dist/node_modules/framer-motion/dist/es/render/dom/create-visual-element.js +10 -0
  150. package/dist/dist/node_modules/framer-motion/dist/es/render/dom/use-render.js +18 -0
  151. package/dist/dist/node_modules/framer-motion/dist/es/render/dom/utils/camel-to-dash.js +4 -0
  152. package/dist/dist/node_modules/framer-motion/dist/es/render/dom/utils/css-variables-conversion.js +31 -0
  153. package/dist/dist/node_modules/framer-motion/dist/es/render/dom/utils/filter-props.js +20 -0
  154. package/dist/dist/node_modules/framer-motion/dist/es/render/dom/utils/is-css-variable.js +5 -0
  155. package/dist/dist/node_modules/framer-motion/dist/es/render/dom/utils/is-svg-component.js +24 -0
  156. package/dist/dist/node_modules/framer-motion/dist/es/render/dom/utils/is-svg-element.js +6 -0
  157. package/dist/dist/node_modules/framer-motion/dist/es/render/dom/utils/unit-conversion.js +31 -0
  158. package/dist/dist/node_modules/framer-motion/dist/es/render/dom/value-types/animatable-none.js +10 -0
  159. package/dist/dist/node_modules/framer-motion/dist/es/render/dom/value-types/defaults.js +24 -0
  160. package/dist/dist/node_modules/framer-motion/dist/es/render/dom/value-types/dimensions.js +9 -0
  161. package/dist/dist/node_modules/framer-motion/dist/es/render/dom/value-types/find.js +8 -0
  162. package/dist/dist/node_modules/framer-motion/dist/es/render/dom/value-types/get-as-type.js +4 -0
  163. package/dist/dist/node_modules/framer-motion/dist/es/render/dom/value-types/number-browser.js +41 -0
  164. package/dist/dist/node_modules/framer-motion/dist/es/render/dom/value-types/number.js +18 -0
  165. package/dist/dist/node_modules/framer-motion/dist/es/render/dom/value-types/test.js +4 -0
  166. package/dist/dist/node_modules/framer-motion/dist/es/render/dom/value-types/transform.js +31 -0
  167. package/dist/dist/node_modules/framer-motion/dist/es/render/dom/value-types/type-auto.js +7 -0
  168. package/dist/dist/node_modules/framer-motion/dist/es/render/dom/value-types/type-int.js +8 -0
  169. package/dist/dist/node_modules/framer-motion/dist/es/render/html/HTMLVisualElement.js +37 -0
  170. package/dist/dist/node_modules/framer-motion/dist/es/render/html/config-motion.js +12 -0
  171. package/dist/dist/node_modules/framer-motion/dist/es/render/html/use-props.js +27 -0
  172. package/dist/dist/node_modules/framer-motion/dist/es/render/html/utils/build-styles.js +29 -0
  173. package/dist/dist/node_modules/framer-motion/dist/es/render/html/utils/build-transform.js +31 -0
  174. package/dist/dist/node_modules/framer-motion/dist/es/render/html/utils/create-render-state.js +9 -0
  175. package/dist/dist/node_modules/framer-motion/dist/es/render/html/utils/keys-position.js +13 -0
  176. package/dist/dist/node_modules/framer-motion/dist/es/render/html/utils/keys-transform.js +23 -0
  177. package/dist/dist/node_modules/framer-motion/dist/es/render/html/utils/make-none-animatable.js +16 -0
  178. package/dist/dist/node_modules/framer-motion/dist/es/render/html/utils/parse-transform.js +64 -0
  179. package/dist/dist/node_modules/framer-motion/dist/es/render/html/utils/render.js +8 -0
  180. package/dist/dist/node_modules/framer-motion/dist/es/render/html/utils/scrape-motion-values.js +12 -0
  181. package/dist/dist/node_modules/framer-motion/dist/es/render/store.js +4 -0
  182. package/dist/dist/node_modules/framer-motion/dist/es/render/svg/SVGVisualElement.js +48 -0
  183. package/dist/dist/node_modules/framer-motion/dist/es/render/svg/config-motion.js +44 -0
  184. package/dist/dist/node_modules/framer-motion/dist/es/render/svg/lowercase-elements.js +30 -0
  185. package/dist/dist/node_modules/framer-motion/dist/es/render/svg/use-props.js +22 -0
  186. package/dist/dist/node_modules/framer-motion/dist/es/render/svg/utils/build-attrs.js +26 -0
  187. package/dist/dist/node_modules/framer-motion/dist/es/render/svg/utils/camel-case-attrs.js +28 -0
  188. package/dist/dist/node_modules/framer-motion/dist/es/render/svg/utils/create-render-state.js +8 -0
  189. package/dist/dist/node_modules/framer-motion/dist/es/render/svg/utils/is-svg-tag.js +4 -0
  190. package/dist/dist/node_modules/framer-motion/dist/es/render/svg/utils/measure.js +15 -0
  191. package/dist/dist/node_modules/framer-motion/dist/es/render/svg/utils/path.js +18 -0
  192. package/dist/dist/node_modules/framer-motion/dist/es/render/svg/utils/render.js +11 -0
  193. package/dist/dist/node_modules/framer-motion/dist/es/render/svg/utils/scrape-motion-values.js +15 -0
  194. package/dist/dist/node_modules/framer-motion/dist/es/render/svg/utils/transform-origin.js +11 -0
  195. package/dist/dist/node_modules/framer-motion/dist/es/render/utils/KeyframesResolver.js +77 -0
  196. package/dist/dist/node_modules/framer-motion/dist/es/render/utils/animation-state.js +128 -0
  197. package/dist/dist/node_modules/framer-motion/dist/es/render/utils/compare-by-depth.js +4 -0
  198. package/dist/dist/node_modules/framer-motion/dist/es/render/utils/flat-tree.js +20 -0
  199. package/dist/dist/node_modules/framer-motion/dist/es/render/utils/get-variant-context.js +20 -0
  200. package/dist/dist/node_modules/framer-motion/dist/es/render/utils/is-controlling-variants.js +13 -0
  201. package/dist/dist/node_modules/framer-motion/dist/es/render/utils/is-variant-label.js +6 -0
  202. package/dist/dist/node_modules/framer-motion/dist/es/render/utils/motion-values.js +27 -0
  203. package/dist/dist/node_modules/framer-motion/dist/es/render/utils/resolve-dynamic-variants.js +8 -0
  204. package/dist/dist/node_modules/framer-motion/dist/es/render/utils/resolve-variants.js +20 -0
  205. package/dist/dist/node_modules/framer-motion/dist/es/render/utils/setters.js +19 -0
  206. package/dist/dist/node_modules/framer-motion/dist/es/render/utils/variant-props.js +13 -0
  207. package/dist/dist/node_modules/framer-motion/dist/es/utils/clamp.js +4 -0
  208. package/dist/dist/node_modules/framer-motion/dist/es/utils/delay.js +13 -0
  209. package/dist/dist/node_modules/framer-motion/dist/es/utils/distance.js +9 -0
  210. package/dist/dist/node_modules/framer-motion/dist/es/utils/get-context-window.js +4 -0
  211. package/dist/dist/node_modules/framer-motion/dist/es/utils/hsla-to-rgba.js +22 -0
  212. package/dist/dist/node_modules/framer-motion/dist/es/utils/interpolate.js +41 -0
  213. package/dist/dist/node_modules/framer-motion/dist/es/utils/is-browser.js +4 -0
  214. package/dist/dist/node_modules/framer-motion/dist/es/utils/is-numerical-string.js +4 -0
  215. package/dist/dist/node_modules/framer-motion/dist/es/utils/is-ref-object.js +6 -0
  216. package/dist/dist/node_modules/framer-motion/dist/es/utils/is-zero-value-string.js +4 -0
  217. package/dist/dist/node_modules/framer-motion/dist/es/utils/mix/color.js +29 -0
  218. package/dist/dist/node_modules/framer-motion/dist/es/utils/mix/complex.js +52 -0
  219. package/dist/dist/node_modules/framer-motion/dist/es/utils/mix/immediate.js +6 -0
  220. package/dist/dist/node_modules/framer-motion/dist/es/utils/mix/index.js +8 -0
  221. package/dist/dist/node_modules/framer-motion/dist/es/utils/mix/number.js +4 -0
  222. package/dist/dist/node_modules/framer-motion/dist/es/utils/mix/visibility.js +8 -0
  223. package/dist/dist/node_modules/framer-motion/dist/es/utils/offsets/default.js +8 -0
  224. package/dist/dist/node_modules/framer-motion/dist/es/utils/offsets/fill.js +13 -0
  225. package/dist/dist/node_modules/framer-motion/dist/es/utils/offsets/time.js +6 -0
  226. package/dist/dist/node_modules/framer-motion/dist/es/utils/pipe.js +4 -0
  227. package/dist/dist/node_modules/framer-motion/dist/es/utils/reduced-motion/index.js +13 -0
  228. package/dist/dist/node_modules/framer-motion/dist/es/utils/reduced-motion/state.js +5 -0
  229. package/dist/dist/node_modules/framer-motion/dist/es/utils/resolve-value.js +6 -0
  230. package/dist/dist/node_modules/framer-motion/dist/es/utils/shallow-compare.js +14 -0
  231. package/dist/dist/node_modules/framer-motion/dist/es/utils/use-constant.js +8 -0
  232. package/dist/dist/node_modules/framer-motion/dist/es/utils/use-isomorphic-effect.js +6 -0
  233. package/dist/dist/node_modules/framer-motion/dist/es/value/types/color/hex.js +19 -0
  234. package/dist/dist/node_modules/framer-motion/dist/es/value/types/color/hsla.js +12 -0
  235. package/dist/dist/node_modules/framer-motion/dist/es/value/types/color/index.js +11 -0
  236. package/dist/dist/node_modules/framer-motion/dist/es/value/types/color/rgba.js +16 -0
  237. package/dist/dist/node_modules/framer-motion/dist/es/value/types/color/utils.js +18 -0
  238. package/dist/dist/node_modules/framer-motion/dist/es/value/types/complex/filter.js +24 -0
  239. package/dist/dist/node_modules/framer-motion/dist/es/value/types/complex/index.js +49 -0
  240. package/dist/dist/node_modules/framer-motion/dist/es/value/types/numbers/index.js +17 -0
  241. package/dist/dist/node_modules/framer-motion/dist/es/value/types/numbers/units.js +17 -0
  242. package/dist/dist/node_modules/framer-motion/dist/es/value/types/utils/color-regex.js +4 -0
  243. package/dist/dist/node_modules/framer-motion/dist/es/value/types/utils/float-regex.js +4 -0
  244. package/dist/dist/node_modules/framer-motion/dist/es/value/types/utils/is-nullish.js +6 -0
  245. package/dist/dist/node_modules/framer-motion/dist/es/value/types/utils/sanitize.js +4 -0
  246. package/dist/dist/node_modules/framer-motion/dist/es/value/types/utils/single-color-regex.js +4 -0
  247. package/dist/dist/node_modules/framer-motion/dist/es/value/use-will-change/add-will-change.js +9 -0
  248. package/dist/dist/node_modules/framer-motion/dist/es/value/use-will-change/is.js +7 -0
  249. package/dist/dist/node_modules/framer-motion/dist/es/value/utils/is-motion-value.js +4 -0
  250. package/dist/dist/node_modules/framer-motion/dist/es/value/utils/resolve-motion-value.js +9 -0
  251. package/dist/dist/node_modules/lodash/lodash.js +3677 -0
  252. package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/animation/optimized-appear/data-id.js +6 -0
  253. package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/context/LayoutGroupContext.js +2 -0
  254. package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/context/LazyContext.js +2 -0
  255. package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/context/MotionConfigContext.js +6 -0
  256. package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/context/SwitchLayoutGroupContext.js +2 -0
  257. package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/projection/node/create-projection-node.js +12 -0
  258. package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/utils/camel-to-dash.js +4 -0
  259. package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/utils/filter-props.js +9 -0
  260. package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/utils/unit-conversion.js +5 -0
  261. package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/dom/value-types/type-int.js +4 -0
  262. package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/render/html/utils/keys-transform.js +23 -0
  263. package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/utils/clamp.js +4 -0
  264. package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/color/hex.js +19 -0
  265. package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/color/hsla.js +12 -0
  266. package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/color/index.js +11 -0
  267. package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/color/rgba.js +16 -0
  268. package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/color/utils.js +18 -0
  269. package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/complex/filter.js +4 -0
  270. package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/complex/index.js +49 -0
  271. package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/numbers/index.js +16 -0
  272. package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/numbers/units.js +11 -0
  273. package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/utils/color-regex.js +4 -0
  274. package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/utils/float-regex.js +4 -0
  275. package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/utils/is-nullish.js +6 -0
  276. package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/utils/sanitize.js +4 -0
  277. package/dist/dist/node_modules/motion/dist/es/framer-motion/dist/es/value/types/utils/single-color-regex.js +4 -0
  278. package/dist/dist/node_modules/motion/dist/es/motion-utils/dist/es/errors.js +1 -0
  279. package/dist/dist/node_modules/motion/dist/es/motion-utils/dist/es/noop.js +4 -0
  280. package/dist/dist/node_modules/motion-dom/dist/es/animation/controls/BaseGroup.js +74 -0
  281. package/dist/dist/node_modules/motion-dom/dist/es/animation/controls/Group.js +9 -0
  282. package/dist/dist/node_modules/motion-dom/dist/es/animation/generators/utils/calc-duration.js +13 -0
  283. package/dist/dist/node_modules/motion-dom/dist/es/animation/generators/utils/is-generator.js +6 -0
  284. package/dist/dist/node_modules/motion-dom/dist/es/animation/utils/get-value-transition.js +6 -0
  285. package/dist/dist/node_modules/motion-dom/dist/es/animation/waapi/utils/attach-timeline.js +6 -0
  286. package/dist/dist/node_modules/motion-dom/dist/es/animation/waapi/utils/easing.js +27 -0
  287. package/dist/dist/node_modules/motion-dom/dist/es/animation/waapi/utils/linear.js +12 -0
  288. package/dist/dist/node_modules/motion-dom/dist/es/frameloop/batcher.js +27 -0
  289. package/dist/dist/node_modules/motion-dom/dist/es/frameloop/frame.js +10 -0
  290. package/dist/dist/node_modules/motion-dom/dist/es/frameloop/microtask.js +5 -0
  291. package/dist/dist/node_modules/motion-dom/dist/es/frameloop/order.js +17 -0
  292. package/dist/dist/node_modules/motion-dom/dist/es/frameloop/render-step.js +41 -0
  293. package/dist/dist/node_modules/motion-dom/dist/es/frameloop/sync-time.js +16 -0
  294. package/dist/dist/node_modules/motion-dom/dist/es/gestures/drag/state/is-active.js +11 -0
  295. package/dist/dist/node_modules/motion-dom/dist/es/gestures/drag/state/set-active.js +11 -0
  296. package/dist/dist/node_modules/motion-dom/dist/es/gestures/hover.js +24 -0
  297. package/dist/dist/node_modules/motion-dom/dist/es/gestures/press/index.js +32 -0
  298. package/dist/dist/node_modules/motion-dom/dist/es/gestures/press/utils/is-keyboard-accessible.js +13 -0
  299. package/dist/dist/node_modules/motion-dom/dist/es/gestures/press/utils/keyboard.js +27 -0
  300. package/dist/dist/node_modules/motion-dom/dist/es/gestures/press/utils/state.js +4 -0
  301. package/dist/dist/node_modules/motion-dom/dist/es/gestures/utils/is-node-or-child.js +4 -0
  302. package/dist/dist/node_modules/motion-dom/dist/es/gestures/utils/is-primary-pointer.js +4 -0
  303. package/dist/dist/node_modules/motion-dom/dist/es/gestures/utils/setup.js +12 -0
  304. package/dist/dist/node_modules/motion-dom/dist/es/utils/is-bezier-definition.js +4 -0
  305. package/dist/dist/node_modules/motion-dom/dist/es/utils/resolve-elements.js +14 -0
  306. package/dist/dist/node_modules/motion-dom/dist/es/utils/supports/flags.js +6 -0
  307. package/dist/dist/node_modules/motion-dom/dist/es/utils/supports/linear-easing.js +12 -0
  308. package/dist/dist/node_modules/motion-dom/dist/es/utils/supports/memo.js +13 -0
  309. package/dist/dist/node_modules/motion-dom/dist/es/utils/supports/scroll-timeline.js +6 -0
  310. package/dist/dist/node_modules/motion-dom/dist/es/value/index.js +202 -0
  311. package/dist/dist/node_modules/motion-utils/dist/es/array.js +11 -0
  312. package/dist/dist/node_modules/motion-utils/dist/es/errors.js +12 -0
  313. package/dist/dist/node_modules/motion-utils/dist/es/global-config.js +6 -0
  314. package/dist/dist/node_modules/motion-utils/dist/es/memo.js +8 -0
  315. package/dist/dist/node_modules/motion-utils/dist/es/noop.js +4 -0
  316. package/dist/dist/node_modules/motion-utils/dist/es/progress.js +7 -0
  317. package/dist/dist/node_modules/motion-utils/dist/es/subscription-manager.js +29 -0
  318. package/dist/dist/node_modules/motion-utils/dist/es/time-conversion.js +5 -0
  319. package/dist/dist/node_modules/motion-utils/dist/es/velocity-per-second.js +6 -0
  320. package/dist/dist/node_modules/motion-utils/dist/es/warn-once.js +7 -0
  321. package/dist/dist/node_modules/object-assign/index.js +54 -0
  322. package/dist/dist/node_modules/prop-types/checkPropTypes.js +54 -0
  323. package/dist/dist/node_modules/prop-types/factoryWithThrowingShims.js +52 -0
  324. package/dist/dist/node_modules/prop-types/factoryWithTypeCheckers.js +329 -0
  325. package/dist/dist/node_modules/prop-types/index.js +17 -0
  326. package/dist/dist/node_modules/prop-types/lib/ReactPropTypesSecret.js +10 -0
  327. package/dist/dist/node_modules/prop-types/lib/has.js +7 -0
  328. package/dist/dist/node_modules/prop-types/node_modules/react-is/cjs/react-is.development.js +95 -0
  329. package/dist/dist/node_modules/prop-types/node_modules/react-is/cjs/react-is.production.min.js +78 -0
  330. package/dist/dist/node_modules/prop-types/node_modules/react-is/index.js +10 -0
  331. package/dist/dist/node_modules/property-expr/index.js +82 -0
  332. package/dist/dist/node_modules/react/cjs/react-jsx-runtime.development.js +247 -0
  333. package/dist/dist/node_modules/react/cjs/react-jsx-runtime.production.js +35 -0
  334. package/dist/dist/node_modules/react/jsx-runtime.js +10 -0
  335. package/dist/dist/node_modules/tiny-case/index.js +22 -0
  336. package/dist/dist/node_modules/toposort/index.js +66 -0
  337. package/dist/dist/node_modules/yup/index.esm.js +1359 -0
  338. package/dist/dist/themes/default.js +9 -0
  339. package/dist/lawgic-dev-kit.css +1 -1
  340. package/dist/lawgic-dev-kit.umd.js +884 -243
  341. package/dist/node_modules/prop-types/node_modules/react-is/index.js +1 -1
  342. package/dist/node_modules/scheduler/index.js +1 -1
  343. package/dist/node_modules/toposort/index.js +1 -1
  344. package/dist/node_modules/yup/index.esm.js +3 -3
  345. package/dist/src/utils/toast.d.ts +15 -0
  346. package/dist/utils/modal.js +98 -57
  347. package/dist/utils/toast.d.ts +1 -1
  348. package/dist/utils/toast.js +112 -98
  349. package/package.json +1 -1
  350. package/dist/src/components/atoms/SectionButton/desktop/SectionButton.d.ts +0 -3
  351. package/dist/src/components/atoms/SectionButton/desktop/SectionButton.styles.d.ts +0 -2
  352. package/dist/src/components/atoms/SectionButton/desktop/SectionButton.types.d.ts +0 -37
  353. package/dist/src/components/atoms/SectionButton/mobile/MobileSectionButton.styles.d.ts +0 -3
  354. package/dist/src/components/atoms/SectionButton/mobile/SectionButton.types.d.ts +0 -37
@@ -0,0 +1,2661 @@
1
+ /*!
2
+ * Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com
3
+ * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
4
+ * Copyright 2024 Fonticons, Inc.
5
+ */
6
+ function qe(t, e, a) {
7
+ return (e = Ke(e)) in t ? Object.defineProperty(t, e, {
8
+ value: a,
9
+ enumerable: !0,
10
+ configurable: !0,
11
+ writable: !0
12
+ }) : t[e] = a, t;
13
+ }
14
+ function Yt(t, e) {
15
+ var a = Object.keys(t);
16
+ if (Object.getOwnPropertySymbols) {
17
+ var n = Object.getOwnPropertySymbols(t);
18
+ e && (n = n.filter(function(r) {
19
+ return Object.getOwnPropertyDescriptor(t, r).enumerable;
20
+ })), a.push.apply(a, n);
21
+ }
22
+ return a;
23
+ }
24
+ function s(t) {
25
+ for (var e = 1; e < arguments.length; e++) {
26
+ var a = arguments[e] != null ? arguments[e] : {};
27
+ e % 2 ? Yt(Object(a), !0).forEach(function(n) {
28
+ qe(t, n, a[n]);
29
+ }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(t, Object.getOwnPropertyDescriptors(a)) : Yt(Object(a)).forEach(function(n) {
30
+ Object.defineProperty(t, n, Object.getOwnPropertyDescriptor(a, n));
31
+ });
32
+ }
33
+ return t;
34
+ }
35
+ function Ge(t, e) {
36
+ if (typeof t != "object" || !t) return t;
37
+ var a = t[Symbol.toPrimitive];
38
+ if (a !== void 0) {
39
+ var n = a.call(t, e);
40
+ if (typeof n != "object") return n;
41
+ throw new TypeError("@@toPrimitive must return a primitive value.");
42
+ }
43
+ return (e === "string" ? String : Number)(t);
44
+ }
45
+ function Ke(t) {
46
+ var e = Ge(t, "string");
47
+ return typeof e == "symbol" ? e : e + "";
48
+ }
49
+ const Wt = () => {
50
+ };
51
+ let Ct = {}, me = {}, de = null, ge = {
52
+ mark: Wt,
53
+ measure: Wt
54
+ };
55
+ try {
56
+ typeof window < "u" && (Ct = window), typeof document < "u" && (me = document), typeof MutationObserver < "u" && (de = MutationObserver), typeof performance < "u" && (ge = performance);
57
+ } catch {
58
+ }
59
+ const {
60
+ userAgent: _t = ""
61
+ } = Ct.navigator || {}, C = Ct, p = me, Ht = de, J = ge;
62
+ C.document;
63
+ const N = !!p.documentElement && !!p.head && typeof p.addEventListener == "function" && typeof p.createElement == "function", pe = ~_t.indexOf("MSIE") || ~_t.indexOf("Trident/");
64
+ var Je = /fa(s|r|l|t|d|dr|dl|dt|b|k|kd|ss|sr|sl|st|sds|sdr|sdl|sdt)?[\-\ ]/, Qe = /Font ?Awesome ?([56 ]*)(Solid|Regular|Light|Thin|Duotone|Brands|Free|Pro|Sharp Duotone|Sharp|Kit)?.*/i, he = {
65
+ classic: {
66
+ fa: "solid",
67
+ fas: "solid",
68
+ "fa-solid": "solid",
69
+ far: "regular",
70
+ "fa-regular": "regular",
71
+ fal: "light",
72
+ "fa-light": "light",
73
+ fat: "thin",
74
+ "fa-thin": "thin",
75
+ fab: "brands",
76
+ "fa-brands": "brands"
77
+ },
78
+ duotone: {
79
+ fa: "solid",
80
+ fad: "solid",
81
+ "fa-solid": "solid",
82
+ "fa-duotone": "solid",
83
+ fadr: "regular",
84
+ "fa-regular": "regular",
85
+ fadl: "light",
86
+ "fa-light": "light",
87
+ fadt: "thin",
88
+ "fa-thin": "thin"
89
+ },
90
+ sharp: {
91
+ fa: "solid",
92
+ fass: "solid",
93
+ "fa-solid": "solid",
94
+ fasr: "regular",
95
+ "fa-regular": "regular",
96
+ fasl: "light",
97
+ "fa-light": "light",
98
+ fast: "thin",
99
+ "fa-thin": "thin"
100
+ },
101
+ "sharp-duotone": {
102
+ fa: "solid",
103
+ fasds: "solid",
104
+ "fa-solid": "solid",
105
+ fasdr: "regular",
106
+ "fa-regular": "regular",
107
+ fasdl: "light",
108
+ "fa-light": "light",
109
+ fasdt: "thin",
110
+ "fa-thin": "thin"
111
+ }
112
+ }, Ze = {
113
+ GROUP: "duotone-group",
114
+ PRIMARY: "primary",
115
+ SECONDARY: "secondary"
116
+ }, be = ["fa-classic", "fa-duotone", "fa-sharp", "fa-sharp-duotone"], b = "classic", at = "duotone", $e = "sharp", ta = "sharp-duotone", ye = [b, at, $e, ta], ea = {
117
+ classic: {
118
+ 900: "fas",
119
+ 400: "far",
120
+ normal: "far",
121
+ 300: "fal",
122
+ 100: "fat"
123
+ },
124
+ duotone: {
125
+ 900: "fad",
126
+ 400: "fadr",
127
+ 300: "fadl",
128
+ 100: "fadt"
129
+ },
130
+ sharp: {
131
+ 900: "fass",
132
+ 400: "fasr",
133
+ 300: "fasl",
134
+ 100: "fast"
135
+ },
136
+ "sharp-duotone": {
137
+ 900: "fasds",
138
+ 400: "fasdr",
139
+ 300: "fasdl",
140
+ 100: "fasdt"
141
+ }
142
+ }, aa = {
143
+ "Font Awesome 6 Free": {
144
+ 900: "fas",
145
+ 400: "far"
146
+ },
147
+ "Font Awesome 6 Pro": {
148
+ 900: "fas",
149
+ 400: "far",
150
+ normal: "far",
151
+ 300: "fal",
152
+ 100: "fat"
153
+ },
154
+ "Font Awesome 6 Brands": {
155
+ 400: "fab",
156
+ normal: "fab"
157
+ },
158
+ "Font Awesome 6 Duotone": {
159
+ 900: "fad",
160
+ 400: "fadr",
161
+ normal: "fadr",
162
+ 300: "fadl",
163
+ 100: "fadt"
164
+ },
165
+ "Font Awesome 6 Sharp": {
166
+ 900: "fass",
167
+ 400: "fasr",
168
+ normal: "fasr",
169
+ 300: "fasl",
170
+ 100: "fast"
171
+ },
172
+ "Font Awesome 6 Sharp Duotone": {
173
+ 900: "fasds",
174
+ 400: "fasdr",
175
+ normal: "fasdr",
176
+ 300: "fasdl",
177
+ 100: "fasdt"
178
+ }
179
+ }, na = /* @__PURE__ */ new Map([["classic", {
180
+ defaultShortPrefixId: "fas",
181
+ defaultStyleId: "solid",
182
+ styleIds: ["solid", "regular", "light", "thin", "brands"],
183
+ futureStyleIds: [],
184
+ defaultFontWeight: 900
185
+ }], ["sharp", {
186
+ defaultShortPrefixId: "fass",
187
+ defaultStyleId: "solid",
188
+ styleIds: ["solid", "regular", "light", "thin"],
189
+ futureStyleIds: [],
190
+ defaultFontWeight: 900
191
+ }], ["duotone", {
192
+ defaultShortPrefixId: "fad",
193
+ defaultStyleId: "solid",
194
+ styleIds: ["solid", "regular", "light", "thin"],
195
+ futureStyleIds: [],
196
+ defaultFontWeight: 900
197
+ }], ["sharp-duotone", {
198
+ defaultShortPrefixId: "fasds",
199
+ defaultStyleId: "solid",
200
+ styleIds: ["solid", "regular", "light", "thin"],
201
+ futureStyleIds: [],
202
+ defaultFontWeight: 900
203
+ }]]), ra = {
204
+ classic: {
205
+ solid: "fas",
206
+ regular: "far",
207
+ light: "fal",
208
+ thin: "fat",
209
+ brands: "fab"
210
+ },
211
+ duotone: {
212
+ solid: "fad",
213
+ regular: "fadr",
214
+ light: "fadl",
215
+ thin: "fadt"
216
+ },
217
+ sharp: {
218
+ solid: "fass",
219
+ regular: "fasr",
220
+ light: "fasl",
221
+ thin: "fast"
222
+ },
223
+ "sharp-duotone": {
224
+ solid: "fasds",
225
+ regular: "fasdr",
226
+ light: "fasdl",
227
+ thin: "fasdt"
228
+ }
229
+ }, ia = ["fak", "fa-kit", "fakd", "fa-kit-duotone"], Ut = {
230
+ kit: {
231
+ fak: "kit",
232
+ "fa-kit": "kit"
233
+ },
234
+ "kit-duotone": {
235
+ fakd: "kit-duotone",
236
+ "fa-kit-duotone": "kit-duotone"
237
+ }
238
+ }, oa = ["kit"], sa = {
239
+ kit: {
240
+ "fa-kit": "fak"
241
+ }
242
+ }, ca = ["fak", "fakd"], la = {
243
+ kit: {
244
+ fak: "fa-kit"
245
+ }
246
+ }, Bt = {
247
+ kit: {
248
+ kit: "fak"
249
+ },
250
+ "kit-duotone": {
251
+ "kit-duotone": "fakd"
252
+ }
253
+ }, Q = {
254
+ GROUP: "duotone-group",
255
+ SWAP_OPACITY: "swap-opacity",
256
+ PRIMARY: "primary",
257
+ SECONDARY: "secondary"
258
+ }, fa = ["fa-classic", "fa-duotone", "fa-sharp", "fa-sharp-duotone"], ua = ["fak", "fa-kit", "fakd", "fa-kit-duotone"], ma = {
259
+ "Font Awesome Kit": {
260
+ 400: "fak",
261
+ normal: "fak"
262
+ },
263
+ "Font Awesome Kit Duotone": {
264
+ 400: "fakd",
265
+ normal: "fakd"
266
+ }
267
+ }, da = {
268
+ classic: {
269
+ "fa-brands": "fab",
270
+ "fa-duotone": "fad",
271
+ "fa-light": "fal",
272
+ "fa-regular": "far",
273
+ "fa-solid": "fas",
274
+ "fa-thin": "fat"
275
+ },
276
+ duotone: {
277
+ "fa-regular": "fadr",
278
+ "fa-light": "fadl",
279
+ "fa-thin": "fadt"
280
+ },
281
+ sharp: {
282
+ "fa-solid": "fass",
283
+ "fa-regular": "fasr",
284
+ "fa-light": "fasl",
285
+ "fa-thin": "fast"
286
+ },
287
+ "sharp-duotone": {
288
+ "fa-solid": "fasds",
289
+ "fa-regular": "fasdr",
290
+ "fa-light": "fasdl",
291
+ "fa-thin": "fasdt"
292
+ }
293
+ }, ga = {
294
+ classic: ["fas", "far", "fal", "fat", "fad"],
295
+ duotone: ["fadr", "fadl", "fadt"],
296
+ sharp: ["fass", "fasr", "fasl", "fast"],
297
+ "sharp-duotone": ["fasds", "fasdr", "fasdl", "fasdt"]
298
+ }, dt = {
299
+ classic: {
300
+ fab: "fa-brands",
301
+ fad: "fa-duotone",
302
+ fal: "fa-light",
303
+ far: "fa-regular",
304
+ fas: "fa-solid",
305
+ fat: "fa-thin"
306
+ },
307
+ duotone: {
308
+ fadr: "fa-regular",
309
+ fadl: "fa-light",
310
+ fadt: "fa-thin"
311
+ },
312
+ sharp: {
313
+ fass: "fa-solid",
314
+ fasr: "fa-regular",
315
+ fasl: "fa-light",
316
+ fast: "fa-thin"
317
+ },
318
+ "sharp-duotone": {
319
+ fasds: "fa-solid",
320
+ fasdr: "fa-regular",
321
+ fasdl: "fa-light",
322
+ fasdt: "fa-thin"
323
+ }
324
+ }, pa = ["fa-solid", "fa-regular", "fa-light", "fa-thin", "fa-duotone", "fa-brands"], gt = ["fa", "fas", "far", "fal", "fat", "fad", "fadr", "fadl", "fadt", "fab", "fass", "fasr", "fasl", "fast", "fasds", "fasdr", "fasdl", "fasdt", ...fa, ...pa], ha = ["solid", "regular", "light", "thin", "duotone", "brands"], ve = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10], ba = ve.concat([11, 12, 13, 14, 15, 16, 17, 18, 19, 20]), ya = [...Object.keys(ga), ...ha, "2xs", "xs", "sm", "lg", "xl", "2xl", "beat", "border", "fade", "beat-fade", "bounce", "flip-both", "flip-horizontal", "flip-vertical", "flip", "fw", "inverse", "layers-counter", "layers-text", "layers", "li", "pull-left", "pull-right", "pulse", "rotate-180", "rotate-270", "rotate-90", "rotate-by", "shake", "spin-pulse", "spin-reverse", "spin", "stack-1x", "stack-2x", "stack", "ul", Q.GROUP, Q.SWAP_OPACITY, Q.PRIMARY, Q.SECONDARY].concat(ve.map((t) => "".concat(t, "x"))).concat(ba.map((t) => "w-".concat(t))), va = {
325
+ "Font Awesome 5 Free": {
326
+ 900: "fas",
327
+ 400: "far"
328
+ },
329
+ "Font Awesome 5 Pro": {
330
+ 900: "fas",
331
+ 400: "far",
332
+ normal: "far",
333
+ 300: "fal"
334
+ },
335
+ "Font Awesome 5 Brands": {
336
+ 400: "fab",
337
+ normal: "fab"
338
+ },
339
+ "Font Awesome 5 Duotone": {
340
+ 900: "fad"
341
+ }
342
+ };
343
+ const A = "___FONT_AWESOME___", pt = 16, xe = "fa", ke = "svg-inline--fa", F = "data-fa-i2svg", ht = "data-fa-pseudo-element", xa = "data-fa-pseudo-element-pending", Et = "data-prefix", Mt = "data-icon", Xt = "fontawesome-i2svg", ka = "async", wa = ["HTML", "HEAD", "STYLE", "SCRIPT"], we = (() => {
344
+ try {
345
+ return process.env.NODE_ENV === "production";
346
+ } catch {
347
+ return !1;
348
+ }
349
+ })();
350
+ function G(t) {
351
+ return new Proxy(t, {
352
+ get(e, a) {
353
+ return a in e ? e[a] : e[b];
354
+ }
355
+ });
356
+ }
357
+ const Ae = s({}, he);
358
+ Ae[b] = s(s(s(s({}, {
359
+ "fa-duotone": "duotone"
360
+ }), he[b]), Ut.kit), Ut["kit-duotone"]);
361
+ const Aa = G(Ae), bt = s({}, ra);
362
+ bt[b] = s(s(s(s({}, {
363
+ duotone: "fad"
364
+ }), bt[b]), Bt.kit), Bt["kit-duotone"]);
365
+ const Vt = G(bt), yt = s({}, dt);
366
+ yt[b] = s(s({}, yt[b]), la.kit);
367
+ const jt = G(yt), vt = s({}, da);
368
+ vt[b] = s(s({}, vt[b]), sa.kit);
369
+ G(vt);
370
+ const Pa = Je, Pe = "fa-layers-text", Na = Qe, Oa = s({}, ea);
371
+ G(Oa);
372
+ const Sa = ["class", "data-prefix", "data-icon", "data-fa-transform", "data-fa-mask"], ct = Ze, Ca = [...oa, ...ya], B = C.FontAwesomeConfig || {};
373
+ function Ea(t) {
374
+ var e = p.querySelector("script[" + t + "]");
375
+ if (e)
376
+ return e.getAttribute(t);
377
+ }
378
+ function Ma(t) {
379
+ return t === "" ? !0 : t === "false" ? !1 : t === "true" ? !0 : t;
380
+ }
381
+ p && typeof p.querySelector == "function" && [["data-family-prefix", "familyPrefix"], ["data-css-prefix", "cssPrefix"], ["data-family-default", "familyDefault"], ["data-style-default", "styleDefault"], ["data-replacement-class", "replacementClass"], ["data-auto-replace-svg", "autoReplaceSvg"], ["data-auto-add-css", "autoAddCss"], ["data-auto-a11y", "autoA11y"], ["data-search-pseudo-elements", "searchPseudoElements"], ["data-observe-mutations", "observeMutations"], ["data-mutate-approach", "mutateApproach"], ["data-keep-original-source", "keepOriginalSource"], ["data-measure-performance", "measurePerformance"], ["data-show-missing-icons", "showMissingIcons"]].forEach((t) => {
382
+ let [e, a] = t;
383
+ const n = Ma(Ea(e));
384
+ n != null && (B[a] = n);
385
+ });
386
+ const Ne = {
387
+ styleDefault: "solid",
388
+ familyDefault: b,
389
+ cssPrefix: xe,
390
+ replacementClass: ke,
391
+ autoReplaceSvg: !0,
392
+ autoAddCss: !0,
393
+ autoA11y: !0,
394
+ searchPseudoElements: !1,
395
+ observeMutations: !0,
396
+ mutateApproach: "async",
397
+ keepOriginalSource: !0,
398
+ measurePerformance: !1,
399
+ showMissingIcons: !0
400
+ };
401
+ B.familyPrefix && (B.cssPrefix = B.familyPrefix);
402
+ const W = s(s({}, Ne), B);
403
+ W.autoReplaceSvg || (W.observeMutations = !1);
404
+ const l = {};
405
+ Object.keys(Ne).forEach((t) => {
406
+ Object.defineProperty(l, t, {
407
+ enumerable: !0,
408
+ set: function(e) {
409
+ W[t] = e, X.forEach((a) => a(l));
410
+ },
411
+ get: function() {
412
+ return W[t];
413
+ }
414
+ });
415
+ });
416
+ Object.defineProperty(l, "familyPrefix", {
417
+ enumerable: !0,
418
+ set: function(t) {
419
+ W.cssPrefix = t, X.forEach((e) => e(l));
420
+ },
421
+ get: function() {
422
+ return W.cssPrefix;
423
+ }
424
+ });
425
+ C.FontAwesomeConfig = l;
426
+ const X = [];
427
+ function ja(t) {
428
+ return X.push(t), () => {
429
+ X.splice(X.indexOf(t), 1);
430
+ };
431
+ }
432
+ const S = pt, k = {
433
+ size: 16,
434
+ x: 0,
435
+ y: 0,
436
+ rotate: 0,
437
+ flipX: !1,
438
+ flipY: !1
439
+ };
440
+ function Ia(t) {
441
+ if (!t || !N)
442
+ return;
443
+ const e = p.createElement("style");
444
+ e.setAttribute("type", "text/css"), e.innerHTML = t;
445
+ const a = p.head.childNodes;
446
+ let n = null;
447
+ for (let r = a.length - 1; r > -1; r--) {
448
+ const i = a[r], o = (i.tagName || "").toUpperCase();
449
+ ["STYLE", "LINK"].indexOf(o) > -1 && (n = i);
450
+ }
451
+ return p.head.insertBefore(e, n), t;
452
+ }
453
+ const za = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
454
+ function V() {
455
+ let t = 12, e = "";
456
+ for (; t-- > 0; )
457
+ e += za[Math.random() * 62 | 0];
458
+ return e;
459
+ }
460
+ function _(t) {
461
+ const e = [];
462
+ for (let a = (t || []).length >>> 0; a--; )
463
+ e[a] = t[a];
464
+ return e;
465
+ }
466
+ function It(t) {
467
+ return t.classList ? _(t.classList) : (t.getAttribute("class") || "").split(" ").filter((e) => e);
468
+ }
469
+ function Oe(t) {
470
+ return "".concat(t).replace(/&/g, "&amp;").replace(/"/g, "&quot;").replace(/'/g, "&#39;").replace(/</g, "&lt;").replace(/>/g, "&gt;");
471
+ }
472
+ function Fa(t) {
473
+ return Object.keys(t || {}).reduce((e, a) => e + "".concat(a, '="').concat(Oe(t[a]), '" '), "").trim();
474
+ }
475
+ function nt(t) {
476
+ return Object.keys(t || {}).reduce((e, a) => e + "".concat(a, ": ").concat(t[a].trim(), ";"), "");
477
+ }
478
+ function zt(t) {
479
+ return t.size !== k.size || t.x !== k.x || t.y !== k.y || t.rotate !== k.rotate || t.flipX || t.flipY;
480
+ }
481
+ function Da(t) {
482
+ let {
483
+ transform: e,
484
+ containerWidth: a,
485
+ iconWidth: n
486
+ } = t;
487
+ const r = {
488
+ transform: "translate(".concat(a / 2, " 256)")
489
+ }, i = "translate(".concat(e.x * 32, ", ").concat(e.y * 32, ") "), o = "scale(".concat(e.size / 16 * (e.flipX ? -1 : 1), ", ").concat(e.size / 16 * (e.flipY ? -1 : 1), ") "), c = "rotate(".concat(e.rotate, " 0 0)"), u = {
490
+ transform: "".concat(i, " ").concat(o, " ").concat(c)
491
+ }, f = {
492
+ transform: "translate(".concat(n / 2 * -1, " -256)")
493
+ };
494
+ return {
495
+ outer: r,
496
+ inner: u,
497
+ path: f
498
+ };
499
+ }
500
+ function Ra(t) {
501
+ let {
502
+ transform: e,
503
+ width: a = pt,
504
+ height: n = pt,
505
+ startCentered: r = !1
506
+ } = t, i = "";
507
+ return r && pe ? i += "translate(".concat(e.x / S - a / 2, "em, ").concat(e.y / S - n / 2, "em) ") : r ? i += "translate(calc(-50% + ".concat(e.x / S, "em), calc(-50% + ").concat(e.y / S, "em)) ") : i += "translate(".concat(e.x / S, "em, ").concat(e.y / S, "em) "), i += "scale(".concat(e.size / S * (e.flipX ? -1 : 1), ", ").concat(e.size / S * (e.flipY ? -1 : 1), ") "), i += "rotate(".concat(e.rotate, "deg) "), i;
508
+ }
509
+ var La = `:root, :host {
510
+ --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free";
511
+ --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Free";
512
+ --fa-font-light: normal 300 1em/1 "Font Awesome 6 Pro";
513
+ --fa-font-thin: normal 100 1em/1 "Font Awesome 6 Pro";
514
+ --fa-font-duotone: normal 900 1em/1 "Font Awesome 6 Duotone";
515
+ --fa-font-duotone-regular: normal 400 1em/1 "Font Awesome 6 Duotone";
516
+ --fa-font-duotone-light: normal 300 1em/1 "Font Awesome 6 Duotone";
517
+ --fa-font-duotone-thin: normal 100 1em/1 "Font Awesome 6 Duotone";
518
+ --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands";
519
+ --fa-font-sharp-solid: normal 900 1em/1 "Font Awesome 6 Sharp";
520
+ --fa-font-sharp-regular: normal 400 1em/1 "Font Awesome 6 Sharp";
521
+ --fa-font-sharp-light: normal 300 1em/1 "Font Awesome 6 Sharp";
522
+ --fa-font-sharp-thin: normal 100 1em/1 "Font Awesome 6 Sharp";
523
+ --fa-font-sharp-duotone-solid: normal 900 1em/1 "Font Awesome 6 Sharp Duotone";
524
+ --fa-font-sharp-duotone-regular: normal 400 1em/1 "Font Awesome 6 Sharp Duotone";
525
+ --fa-font-sharp-duotone-light: normal 300 1em/1 "Font Awesome 6 Sharp Duotone";
526
+ --fa-font-sharp-duotone-thin: normal 100 1em/1 "Font Awesome 6 Sharp Duotone";
527
+ }
528
+
529
+ svg:not(:root).svg-inline--fa, svg:not(:host).svg-inline--fa {
530
+ overflow: visible;
531
+ box-sizing: content-box;
532
+ }
533
+
534
+ .svg-inline--fa {
535
+ display: var(--fa-display, inline-block);
536
+ height: 1em;
537
+ overflow: visible;
538
+ vertical-align: -0.125em;
539
+ }
540
+ .svg-inline--fa.fa-2xs {
541
+ vertical-align: 0.1em;
542
+ }
543
+ .svg-inline--fa.fa-xs {
544
+ vertical-align: 0em;
545
+ }
546
+ .svg-inline--fa.fa-sm {
547
+ vertical-align: -0.0714285705em;
548
+ }
549
+ .svg-inline--fa.fa-lg {
550
+ vertical-align: -0.2em;
551
+ }
552
+ .svg-inline--fa.fa-xl {
553
+ vertical-align: -0.25em;
554
+ }
555
+ .svg-inline--fa.fa-2xl {
556
+ vertical-align: -0.3125em;
557
+ }
558
+ .svg-inline--fa.fa-pull-left {
559
+ margin-right: var(--fa-pull-margin, 0.3em);
560
+ width: auto;
561
+ }
562
+ .svg-inline--fa.fa-pull-right {
563
+ margin-left: var(--fa-pull-margin, 0.3em);
564
+ width: auto;
565
+ }
566
+ .svg-inline--fa.fa-li {
567
+ width: var(--fa-li-width, 2em);
568
+ top: 0.25em;
569
+ }
570
+ .svg-inline--fa.fa-fw {
571
+ width: var(--fa-fw-width, 1.25em);
572
+ }
573
+
574
+ .fa-layers svg.svg-inline--fa {
575
+ bottom: 0;
576
+ left: 0;
577
+ margin: auto;
578
+ position: absolute;
579
+ right: 0;
580
+ top: 0;
581
+ }
582
+
583
+ .fa-layers-counter, .fa-layers-text {
584
+ display: inline-block;
585
+ position: absolute;
586
+ text-align: center;
587
+ }
588
+
589
+ .fa-layers {
590
+ display: inline-block;
591
+ height: 1em;
592
+ position: relative;
593
+ text-align: center;
594
+ vertical-align: -0.125em;
595
+ width: 1em;
596
+ }
597
+ .fa-layers svg.svg-inline--fa {
598
+ transform-origin: center center;
599
+ }
600
+
601
+ .fa-layers-text {
602
+ left: 50%;
603
+ top: 50%;
604
+ transform: translate(-50%, -50%);
605
+ transform-origin: center center;
606
+ }
607
+
608
+ .fa-layers-counter {
609
+ background-color: var(--fa-counter-background-color, #ff253a);
610
+ border-radius: var(--fa-counter-border-radius, 1em);
611
+ box-sizing: border-box;
612
+ color: var(--fa-inverse, #fff);
613
+ line-height: var(--fa-counter-line-height, 1);
614
+ max-width: var(--fa-counter-max-width, 5em);
615
+ min-width: var(--fa-counter-min-width, 1.5em);
616
+ overflow: hidden;
617
+ padding: var(--fa-counter-padding, 0.25em 0.5em);
618
+ right: var(--fa-right, 0);
619
+ text-overflow: ellipsis;
620
+ top: var(--fa-top, 0);
621
+ transform: scale(var(--fa-counter-scale, 0.25));
622
+ transform-origin: top right;
623
+ }
624
+
625
+ .fa-layers-bottom-right {
626
+ bottom: var(--fa-bottom, 0);
627
+ right: var(--fa-right, 0);
628
+ top: auto;
629
+ transform: scale(var(--fa-layers-scale, 0.25));
630
+ transform-origin: bottom right;
631
+ }
632
+
633
+ .fa-layers-bottom-left {
634
+ bottom: var(--fa-bottom, 0);
635
+ left: var(--fa-left, 0);
636
+ right: auto;
637
+ top: auto;
638
+ transform: scale(var(--fa-layers-scale, 0.25));
639
+ transform-origin: bottom left;
640
+ }
641
+
642
+ .fa-layers-top-right {
643
+ top: var(--fa-top, 0);
644
+ right: var(--fa-right, 0);
645
+ transform: scale(var(--fa-layers-scale, 0.25));
646
+ transform-origin: top right;
647
+ }
648
+
649
+ .fa-layers-top-left {
650
+ left: var(--fa-left, 0);
651
+ right: auto;
652
+ top: var(--fa-top, 0);
653
+ transform: scale(var(--fa-layers-scale, 0.25));
654
+ transform-origin: top left;
655
+ }
656
+
657
+ .fa-1x {
658
+ font-size: 1em;
659
+ }
660
+
661
+ .fa-2x {
662
+ font-size: 2em;
663
+ }
664
+
665
+ .fa-3x {
666
+ font-size: 3em;
667
+ }
668
+
669
+ .fa-4x {
670
+ font-size: 4em;
671
+ }
672
+
673
+ .fa-5x {
674
+ font-size: 5em;
675
+ }
676
+
677
+ .fa-6x {
678
+ font-size: 6em;
679
+ }
680
+
681
+ .fa-7x {
682
+ font-size: 7em;
683
+ }
684
+
685
+ .fa-8x {
686
+ font-size: 8em;
687
+ }
688
+
689
+ .fa-9x {
690
+ font-size: 9em;
691
+ }
692
+
693
+ .fa-10x {
694
+ font-size: 10em;
695
+ }
696
+
697
+ .fa-2xs {
698
+ font-size: 0.625em;
699
+ line-height: 0.1em;
700
+ vertical-align: 0.225em;
701
+ }
702
+
703
+ .fa-xs {
704
+ font-size: 0.75em;
705
+ line-height: 0.0833333337em;
706
+ vertical-align: 0.125em;
707
+ }
708
+
709
+ .fa-sm {
710
+ font-size: 0.875em;
711
+ line-height: 0.0714285718em;
712
+ vertical-align: 0.0535714295em;
713
+ }
714
+
715
+ .fa-lg {
716
+ font-size: 1.25em;
717
+ line-height: 0.05em;
718
+ vertical-align: -0.075em;
719
+ }
720
+
721
+ .fa-xl {
722
+ font-size: 1.5em;
723
+ line-height: 0.0416666682em;
724
+ vertical-align: -0.125em;
725
+ }
726
+
727
+ .fa-2xl {
728
+ font-size: 2em;
729
+ line-height: 0.03125em;
730
+ vertical-align: -0.1875em;
731
+ }
732
+
733
+ .fa-fw {
734
+ text-align: center;
735
+ width: 1.25em;
736
+ }
737
+
738
+ .fa-ul {
739
+ list-style-type: none;
740
+ margin-left: var(--fa-li-margin, 2.5em);
741
+ padding-left: 0;
742
+ }
743
+ .fa-ul > li {
744
+ position: relative;
745
+ }
746
+
747
+ .fa-li {
748
+ left: calc(-1 * var(--fa-li-width, 2em));
749
+ position: absolute;
750
+ text-align: center;
751
+ width: var(--fa-li-width, 2em);
752
+ line-height: inherit;
753
+ }
754
+
755
+ .fa-border {
756
+ border-color: var(--fa-border-color, #eee);
757
+ border-radius: var(--fa-border-radius, 0.1em);
758
+ border-style: var(--fa-border-style, solid);
759
+ border-width: var(--fa-border-width, 0.08em);
760
+ padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);
761
+ }
762
+
763
+ .fa-pull-left {
764
+ float: left;
765
+ margin-right: var(--fa-pull-margin, 0.3em);
766
+ }
767
+
768
+ .fa-pull-right {
769
+ float: right;
770
+ margin-left: var(--fa-pull-margin, 0.3em);
771
+ }
772
+
773
+ .fa-beat {
774
+ animation-name: fa-beat;
775
+ animation-delay: var(--fa-animation-delay, 0s);
776
+ animation-direction: var(--fa-animation-direction, normal);
777
+ animation-duration: var(--fa-animation-duration, 1s);
778
+ animation-iteration-count: var(--fa-animation-iteration-count, infinite);
779
+ animation-timing-function: var(--fa-animation-timing, ease-in-out);
780
+ }
781
+
782
+ .fa-bounce {
783
+ animation-name: fa-bounce;
784
+ animation-delay: var(--fa-animation-delay, 0s);
785
+ animation-direction: var(--fa-animation-direction, normal);
786
+ animation-duration: var(--fa-animation-duration, 1s);
787
+ animation-iteration-count: var(--fa-animation-iteration-count, infinite);
788
+ animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));
789
+ }
790
+
791
+ .fa-fade {
792
+ animation-name: fa-fade;
793
+ animation-delay: var(--fa-animation-delay, 0s);
794
+ animation-direction: var(--fa-animation-direction, normal);
795
+ animation-duration: var(--fa-animation-duration, 1s);
796
+ animation-iteration-count: var(--fa-animation-iteration-count, infinite);
797
+ animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
798
+ }
799
+
800
+ .fa-beat-fade {
801
+ animation-name: fa-beat-fade;
802
+ animation-delay: var(--fa-animation-delay, 0s);
803
+ animation-direction: var(--fa-animation-direction, normal);
804
+ animation-duration: var(--fa-animation-duration, 1s);
805
+ animation-iteration-count: var(--fa-animation-iteration-count, infinite);
806
+ animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
807
+ }
808
+
809
+ .fa-flip {
810
+ animation-name: fa-flip;
811
+ animation-delay: var(--fa-animation-delay, 0s);
812
+ animation-direction: var(--fa-animation-direction, normal);
813
+ animation-duration: var(--fa-animation-duration, 1s);
814
+ animation-iteration-count: var(--fa-animation-iteration-count, infinite);
815
+ animation-timing-function: var(--fa-animation-timing, ease-in-out);
816
+ }
817
+
818
+ .fa-shake {
819
+ animation-name: fa-shake;
820
+ animation-delay: var(--fa-animation-delay, 0s);
821
+ animation-direction: var(--fa-animation-direction, normal);
822
+ animation-duration: var(--fa-animation-duration, 1s);
823
+ animation-iteration-count: var(--fa-animation-iteration-count, infinite);
824
+ animation-timing-function: var(--fa-animation-timing, linear);
825
+ }
826
+
827
+ .fa-spin {
828
+ animation-name: fa-spin;
829
+ animation-delay: var(--fa-animation-delay, 0s);
830
+ animation-direction: var(--fa-animation-direction, normal);
831
+ animation-duration: var(--fa-animation-duration, 2s);
832
+ animation-iteration-count: var(--fa-animation-iteration-count, infinite);
833
+ animation-timing-function: var(--fa-animation-timing, linear);
834
+ }
835
+
836
+ .fa-spin-reverse {
837
+ --fa-animation-direction: reverse;
838
+ }
839
+
840
+ .fa-pulse,
841
+ .fa-spin-pulse {
842
+ animation-name: fa-spin;
843
+ animation-direction: var(--fa-animation-direction, normal);
844
+ animation-duration: var(--fa-animation-duration, 1s);
845
+ animation-iteration-count: var(--fa-animation-iteration-count, infinite);
846
+ animation-timing-function: var(--fa-animation-timing, steps(8));
847
+ }
848
+
849
+ @media (prefers-reduced-motion: reduce) {
850
+ .fa-beat,
851
+ .fa-bounce,
852
+ .fa-fade,
853
+ .fa-beat-fade,
854
+ .fa-flip,
855
+ .fa-pulse,
856
+ .fa-shake,
857
+ .fa-spin,
858
+ .fa-spin-pulse {
859
+ animation-delay: -1ms;
860
+ animation-duration: 1ms;
861
+ animation-iteration-count: 1;
862
+ transition-delay: 0s;
863
+ transition-duration: 0s;
864
+ }
865
+ }
866
+ @keyframes fa-beat {
867
+ 0%, 90% {
868
+ transform: scale(1);
869
+ }
870
+ 45% {
871
+ transform: scale(var(--fa-beat-scale, 1.25));
872
+ }
873
+ }
874
+ @keyframes fa-bounce {
875
+ 0% {
876
+ transform: scale(1, 1) translateY(0);
877
+ }
878
+ 10% {
879
+ transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);
880
+ }
881
+ 30% {
882
+ transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));
883
+ }
884
+ 50% {
885
+ transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);
886
+ }
887
+ 57% {
888
+ transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));
889
+ }
890
+ 64% {
891
+ transform: scale(1, 1) translateY(0);
892
+ }
893
+ 100% {
894
+ transform: scale(1, 1) translateY(0);
895
+ }
896
+ }
897
+ @keyframes fa-fade {
898
+ 50% {
899
+ opacity: var(--fa-fade-opacity, 0.4);
900
+ }
901
+ }
902
+ @keyframes fa-beat-fade {
903
+ 0%, 100% {
904
+ opacity: var(--fa-beat-fade-opacity, 0.4);
905
+ transform: scale(1);
906
+ }
907
+ 50% {
908
+ opacity: 1;
909
+ transform: scale(var(--fa-beat-fade-scale, 1.125));
910
+ }
911
+ }
912
+ @keyframes fa-flip {
913
+ 50% {
914
+ transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));
915
+ }
916
+ }
917
+ @keyframes fa-shake {
918
+ 0% {
919
+ transform: rotate(-15deg);
920
+ }
921
+ 4% {
922
+ transform: rotate(15deg);
923
+ }
924
+ 8%, 24% {
925
+ transform: rotate(-18deg);
926
+ }
927
+ 12%, 28% {
928
+ transform: rotate(18deg);
929
+ }
930
+ 16% {
931
+ transform: rotate(-22deg);
932
+ }
933
+ 20% {
934
+ transform: rotate(22deg);
935
+ }
936
+ 32% {
937
+ transform: rotate(-12deg);
938
+ }
939
+ 36% {
940
+ transform: rotate(12deg);
941
+ }
942
+ 40%, 100% {
943
+ transform: rotate(0deg);
944
+ }
945
+ }
946
+ @keyframes fa-spin {
947
+ 0% {
948
+ transform: rotate(0deg);
949
+ }
950
+ 100% {
951
+ transform: rotate(360deg);
952
+ }
953
+ }
954
+ .fa-rotate-90 {
955
+ transform: rotate(90deg);
956
+ }
957
+
958
+ .fa-rotate-180 {
959
+ transform: rotate(180deg);
960
+ }
961
+
962
+ .fa-rotate-270 {
963
+ transform: rotate(270deg);
964
+ }
965
+
966
+ .fa-flip-horizontal {
967
+ transform: scale(-1, 1);
968
+ }
969
+
970
+ .fa-flip-vertical {
971
+ transform: scale(1, -1);
972
+ }
973
+
974
+ .fa-flip-both,
975
+ .fa-flip-horizontal.fa-flip-vertical {
976
+ transform: scale(-1, -1);
977
+ }
978
+
979
+ .fa-rotate-by {
980
+ transform: rotate(var(--fa-rotate-angle, 0));
981
+ }
982
+
983
+ .fa-stack {
984
+ display: inline-block;
985
+ vertical-align: middle;
986
+ height: 2em;
987
+ position: relative;
988
+ width: 2.5em;
989
+ }
990
+
991
+ .fa-stack-1x,
992
+ .fa-stack-2x {
993
+ bottom: 0;
994
+ left: 0;
995
+ margin: auto;
996
+ position: absolute;
997
+ right: 0;
998
+ top: 0;
999
+ z-index: var(--fa-stack-z-index, auto);
1000
+ }
1001
+
1002
+ .svg-inline--fa.fa-stack-1x {
1003
+ height: 1em;
1004
+ width: 1.25em;
1005
+ }
1006
+ .svg-inline--fa.fa-stack-2x {
1007
+ height: 2em;
1008
+ width: 2.5em;
1009
+ }
1010
+
1011
+ .fa-inverse {
1012
+ color: var(--fa-inverse, #fff);
1013
+ }
1014
+
1015
+ .sr-only,
1016
+ .fa-sr-only {
1017
+ position: absolute;
1018
+ width: 1px;
1019
+ height: 1px;
1020
+ padding: 0;
1021
+ margin: -1px;
1022
+ overflow: hidden;
1023
+ clip: rect(0, 0, 0, 0);
1024
+ white-space: nowrap;
1025
+ border-width: 0;
1026
+ }
1027
+
1028
+ .sr-only-focusable:not(:focus),
1029
+ .fa-sr-only-focusable:not(:focus) {
1030
+ position: absolute;
1031
+ width: 1px;
1032
+ height: 1px;
1033
+ padding: 0;
1034
+ margin: -1px;
1035
+ overflow: hidden;
1036
+ clip: rect(0, 0, 0, 0);
1037
+ white-space: nowrap;
1038
+ border-width: 0;
1039
+ }
1040
+
1041
+ .svg-inline--fa .fa-primary {
1042
+ fill: var(--fa-primary-color, currentColor);
1043
+ opacity: var(--fa-primary-opacity, 1);
1044
+ }
1045
+
1046
+ .svg-inline--fa .fa-secondary {
1047
+ fill: var(--fa-secondary-color, currentColor);
1048
+ opacity: var(--fa-secondary-opacity, 0.4);
1049
+ }
1050
+
1051
+ .svg-inline--fa.fa-swap-opacity .fa-primary {
1052
+ opacity: var(--fa-secondary-opacity, 0.4);
1053
+ }
1054
+
1055
+ .svg-inline--fa.fa-swap-opacity .fa-secondary {
1056
+ opacity: var(--fa-primary-opacity, 1);
1057
+ }
1058
+
1059
+ .svg-inline--fa mask .fa-primary,
1060
+ .svg-inline--fa mask .fa-secondary {
1061
+ fill: black;
1062
+ }`;
1063
+ function Se() {
1064
+ const t = xe, e = ke, a = l.cssPrefix, n = l.replacementClass;
1065
+ let r = La;
1066
+ if (a !== t || n !== e) {
1067
+ const i = new RegExp("\\.".concat(t, "\\-"), "g"), o = new RegExp("\\--".concat(t, "\\-"), "g"), c = new RegExp("\\.".concat(e), "g");
1068
+ r = r.replace(i, ".".concat(a, "-")).replace(o, "--".concat(a, "-")).replace(c, ".".concat(n));
1069
+ }
1070
+ return r;
1071
+ }
1072
+ let qt = !1;
1073
+ function lt() {
1074
+ l.autoAddCss && !qt && (Ia(Se()), qt = !0);
1075
+ }
1076
+ var Ta = {
1077
+ mixout() {
1078
+ return {
1079
+ dom: {
1080
+ css: Se,
1081
+ insertCss: lt
1082
+ }
1083
+ };
1084
+ },
1085
+ hooks() {
1086
+ return {
1087
+ beforeDOMElementCreation() {
1088
+ lt();
1089
+ },
1090
+ beforeI2svg() {
1091
+ lt();
1092
+ }
1093
+ };
1094
+ }
1095
+ };
1096
+ const P = C || {};
1097
+ P[A] || (P[A] = {});
1098
+ P[A].styles || (P[A].styles = {});
1099
+ P[A].hooks || (P[A].hooks = {});
1100
+ P[A].shims || (P[A].shims = []);
1101
+ var w = P[A];
1102
+ const Ce = [], Ee = function() {
1103
+ p.removeEventListener("DOMContentLoaded", Ee), tt = 1, Ce.map((t) => t());
1104
+ };
1105
+ let tt = !1;
1106
+ N && (tt = (p.documentElement.doScroll ? /^loaded|^c/ : /^loaded|^i|^c/).test(p.readyState), tt || p.addEventListener("DOMContentLoaded", Ee));
1107
+ function Ya(t) {
1108
+ N && (tt ? setTimeout(t, 0) : Ce.push(t));
1109
+ }
1110
+ function K(t) {
1111
+ const {
1112
+ tag: e,
1113
+ attributes: a = {},
1114
+ children: n = []
1115
+ } = t;
1116
+ return typeof t == "string" ? Oe(t) : "<".concat(e, " ").concat(Fa(a), ">").concat(n.map(K).join(""), "</").concat(e, ">");
1117
+ }
1118
+ function Gt(t, e, a) {
1119
+ if (t && t[e] && t[e][a])
1120
+ return {
1121
+ prefix: e,
1122
+ iconName: a,
1123
+ icon: t[e][a]
1124
+ };
1125
+ }
1126
+ var ft = function(t, e, a, n) {
1127
+ var r = Object.keys(t), i = r.length, o = e, c, u, f;
1128
+ for (a === void 0 ? (c = 1, f = t[r[0]]) : (c = 0, f = a); c < i; c++)
1129
+ u = r[c], f = o(f, t[u], u, t);
1130
+ return f;
1131
+ };
1132
+ function Wa(t) {
1133
+ const e = [];
1134
+ let a = 0;
1135
+ const n = t.length;
1136
+ for (; a < n; ) {
1137
+ const r = t.charCodeAt(a++);
1138
+ if (r >= 55296 && r <= 56319 && a < n) {
1139
+ const i = t.charCodeAt(a++);
1140
+ (i & 64512) == 56320 ? e.push(((r & 1023) << 10) + (i & 1023) + 65536) : (e.push(r), a--);
1141
+ } else
1142
+ e.push(r);
1143
+ }
1144
+ return e;
1145
+ }
1146
+ function Me(t) {
1147
+ const e = Wa(t);
1148
+ return e.length === 1 ? e[0].toString(16) : null;
1149
+ }
1150
+ function _a(t, e) {
1151
+ const a = t.length;
1152
+ let n = t.charCodeAt(e), r;
1153
+ return n >= 55296 && n <= 56319 && a > e + 1 && (r = t.charCodeAt(e + 1), r >= 56320 && r <= 57343) ? (n - 55296) * 1024 + r - 56320 + 65536 : n;
1154
+ }
1155
+ function Kt(t) {
1156
+ return Object.keys(t).reduce((e, a) => {
1157
+ const n = t[a];
1158
+ return n.icon ? e[n.iconName] = n.icon : e[a] = n, e;
1159
+ }, {});
1160
+ }
1161
+ function xt(t, e) {
1162
+ let a = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : {};
1163
+ const {
1164
+ skipHooks: n = !1
1165
+ } = a, r = Kt(e);
1166
+ typeof w.hooks.addPack == "function" && !n ? w.hooks.addPack(t, Kt(e)) : w.styles[t] = s(s({}, w.styles[t] || {}), r), t === "fas" && xt("fa", e);
1167
+ }
1168
+ const {
1169
+ styles: q,
1170
+ shims: Ha
1171
+ } = w, je = Object.keys(jt), Ua = je.reduce((t, e) => (t[e] = Object.keys(jt[e]), t), {});
1172
+ let Ft = null, Ie = {}, ze = {}, Fe = {}, De = {}, Re = {};
1173
+ function Ba(t) {
1174
+ return ~Ca.indexOf(t);
1175
+ }
1176
+ function Xa(t, e) {
1177
+ const a = e.split("-"), n = a[0], r = a.slice(1).join("-");
1178
+ return n === t && r !== "" && !Ba(r) ? r : null;
1179
+ }
1180
+ const Le = () => {
1181
+ const t = (n) => ft(q, (r, i, o) => (r[o] = ft(i, n, {}), r), {});
1182
+ Ie = t((n, r, i) => (r[3] && (n[r[3]] = i), r[2] && r[2].filter((o) => typeof o == "number").forEach((o) => {
1183
+ n[o.toString(16)] = i;
1184
+ }), n)), ze = t((n, r, i) => (n[i] = i, r[2] && r[2].filter((o) => typeof o == "string").forEach((o) => {
1185
+ n[o] = i;
1186
+ }), n)), Re = t((n, r, i) => {
1187
+ const o = r[2];
1188
+ return n[i] = i, o.forEach((c) => {
1189
+ n[c] = i;
1190
+ }), n;
1191
+ });
1192
+ const e = "far" in q || l.autoFetchSvg, a = ft(Ha, (n, r) => {
1193
+ const i = r[0];
1194
+ let o = r[1];
1195
+ const c = r[2];
1196
+ return o === "far" && !e && (o = "fas"), typeof i == "string" && (n.names[i] = {
1197
+ prefix: o,
1198
+ iconName: c
1199
+ }), typeof i == "number" && (n.unicodes[i.toString(16)] = {
1200
+ prefix: o,
1201
+ iconName: c
1202
+ }), n;
1203
+ }, {
1204
+ names: {},
1205
+ unicodes: {}
1206
+ });
1207
+ Fe = a.names, De = a.unicodes, Ft = rt(l.styleDefault, {
1208
+ family: l.familyDefault
1209
+ });
1210
+ };
1211
+ ja((t) => {
1212
+ Ft = rt(t.styleDefault, {
1213
+ family: l.familyDefault
1214
+ });
1215
+ });
1216
+ Le();
1217
+ function Dt(t, e) {
1218
+ return (Ie[t] || {})[e];
1219
+ }
1220
+ function Va(t, e) {
1221
+ return (ze[t] || {})[e];
1222
+ }
1223
+ function z(t, e) {
1224
+ return (Re[t] || {})[e];
1225
+ }
1226
+ function Te(t) {
1227
+ return Fe[t] || {
1228
+ prefix: null,
1229
+ iconName: null
1230
+ };
1231
+ }
1232
+ function qa(t) {
1233
+ const e = De[t], a = Dt("fas", t);
1234
+ return e || (a ? {
1235
+ prefix: "fas",
1236
+ iconName: a
1237
+ } : null) || {
1238
+ prefix: null,
1239
+ iconName: null
1240
+ };
1241
+ }
1242
+ function E() {
1243
+ return Ft;
1244
+ }
1245
+ const Ye = () => ({
1246
+ prefix: null,
1247
+ iconName: null,
1248
+ rest: []
1249
+ });
1250
+ function Ga(t) {
1251
+ let e = b;
1252
+ const a = je.reduce((n, r) => (n[r] = "".concat(l.cssPrefix, "-").concat(r), n), {});
1253
+ return ye.forEach((n) => {
1254
+ (t.includes(a[n]) || t.some((r) => Ua[n].includes(r))) && (e = n);
1255
+ }), e;
1256
+ }
1257
+ function rt(t) {
1258
+ let e = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
1259
+ const {
1260
+ family: a = b
1261
+ } = e, n = Aa[a][t];
1262
+ if (a === at && !t)
1263
+ return "fad";
1264
+ const r = Vt[a][t] || Vt[a][n], i = t in w.styles ? t : null;
1265
+ return r || i || null;
1266
+ }
1267
+ function Ka(t) {
1268
+ let e = [], a = null;
1269
+ return t.forEach((n) => {
1270
+ const r = Xa(l.cssPrefix, n);
1271
+ r ? a = r : n && e.push(n);
1272
+ }), {
1273
+ iconName: a,
1274
+ rest: e
1275
+ };
1276
+ }
1277
+ function Jt(t) {
1278
+ return t.sort().filter((e, a, n) => n.indexOf(e) === a);
1279
+ }
1280
+ function it(t) {
1281
+ let e = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
1282
+ const {
1283
+ skipLookups: a = !1
1284
+ } = e;
1285
+ let n = null;
1286
+ const r = gt.concat(ua), i = Jt(t.filter((d) => r.includes(d))), o = Jt(t.filter((d) => !gt.includes(d))), c = i.filter((d) => (n = d, !be.includes(d))), [u = null] = c, f = Ga(i), m = s(s({}, Ka(o)), {}, {
1287
+ prefix: rt(u, {
1288
+ family: f
1289
+ })
1290
+ });
1291
+ return s(s(s({}, m), $a({
1292
+ values: t,
1293
+ family: f,
1294
+ styles: q,
1295
+ config: l,
1296
+ canonical: m,
1297
+ givenPrefix: n
1298
+ })), Ja(a, n, m));
1299
+ }
1300
+ function Ja(t, e, a) {
1301
+ let {
1302
+ prefix: n,
1303
+ iconName: r
1304
+ } = a;
1305
+ if (t || !n || !r)
1306
+ return {
1307
+ prefix: n,
1308
+ iconName: r
1309
+ };
1310
+ const i = e === "fa" ? Te(r) : {}, o = z(n, r);
1311
+ return r = i.iconName || o || r, n = i.prefix || n, n === "far" && !q.far && q.fas && !l.autoFetchSvg && (n = "fas"), {
1312
+ prefix: n,
1313
+ iconName: r
1314
+ };
1315
+ }
1316
+ const Qa = ye.filter((t) => t !== b || t !== at), Za = Object.keys(dt).filter((t) => t !== b).map((t) => Object.keys(dt[t])).flat();
1317
+ function $a(t) {
1318
+ const {
1319
+ values: e,
1320
+ family: a,
1321
+ canonical: n,
1322
+ givenPrefix: r = "",
1323
+ styles: i = {},
1324
+ config: o = {}
1325
+ } = t, c = a === at, u = e.includes("fa-duotone") || e.includes("fad"), f = o.familyDefault === "duotone", m = n.prefix === "fad" || n.prefix === "fa-duotone";
1326
+ if (!c && (u || f || m) && (n.prefix = "fad"), (e.includes("fa-brands") || e.includes("fab")) && (n.prefix = "fab"), !n.prefix && Qa.includes(a) && (Object.keys(i).find((d) => Za.includes(d)) || o.autoFetchSvg)) {
1327
+ const d = na.get(a).defaultShortPrefixId;
1328
+ n.prefix = d, n.iconName = z(n.prefix, n.iconName) || n.iconName;
1329
+ }
1330
+ return (n.prefix === "fa" || r === "fa") && (n.prefix = E() || "fas"), n;
1331
+ }
1332
+ class tn {
1333
+ constructor() {
1334
+ this.definitions = {};
1335
+ }
1336
+ add() {
1337
+ for (var e = arguments.length, a = new Array(e), n = 0; n < e; n++)
1338
+ a[n] = arguments[n];
1339
+ const r = a.reduce(this._pullDefinitions, {});
1340
+ Object.keys(r).forEach((i) => {
1341
+ this.definitions[i] = s(s({}, this.definitions[i] || {}), r[i]), xt(i, r[i]);
1342
+ const o = jt[b][i];
1343
+ o && xt(o, r[i]), Le();
1344
+ });
1345
+ }
1346
+ reset() {
1347
+ this.definitions = {};
1348
+ }
1349
+ _pullDefinitions(e, a) {
1350
+ const n = a.prefix && a.iconName && a.icon ? {
1351
+ 0: a
1352
+ } : a;
1353
+ return Object.keys(n).map((r) => {
1354
+ const {
1355
+ prefix: i,
1356
+ iconName: o,
1357
+ icon: c
1358
+ } = n[r], u = c[2];
1359
+ e[i] || (e[i] = {}), u.length > 0 && u.forEach((f) => {
1360
+ typeof f == "string" && (e[i][f] = c);
1361
+ }), e[i][o] = c;
1362
+ }), e;
1363
+ }
1364
+ }
1365
+ let Qt = [], T = {};
1366
+ const Y = {}, en = Object.keys(Y);
1367
+ function an(t, e) {
1368
+ let {
1369
+ mixoutsTo: a
1370
+ } = e;
1371
+ return Qt = t, T = {}, Object.keys(Y).forEach((n) => {
1372
+ en.indexOf(n) === -1 && delete Y[n];
1373
+ }), Qt.forEach((n) => {
1374
+ const r = n.mixout ? n.mixout() : {};
1375
+ if (Object.keys(r).forEach((i) => {
1376
+ typeof r[i] == "function" && (a[i] = r[i]), typeof r[i] == "object" && Object.keys(r[i]).forEach((o) => {
1377
+ a[i] || (a[i] = {}), a[i][o] = r[i][o];
1378
+ });
1379
+ }), n.hooks) {
1380
+ const i = n.hooks();
1381
+ Object.keys(i).forEach((o) => {
1382
+ T[o] || (T[o] = []), T[o].push(i[o]);
1383
+ });
1384
+ }
1385
+ n.provides && n.provides(Y);
1386
+ }), a;
1387
+ }
1388
+ function kt(t, e) {
1389
+ for (var a = arguments.length, n = new Array(a > 2 ? a - 2 : 0), r = 2; r < a; r++)
1390
+ n[r - 2] = arguments[r];
1391
+ return (T[t] || []).forEach((i) => {
1392
+ e = i.apply(null, [e, ...n]);
1393
+ }), e;
1394
+ }
1395
+ function D(t) {
1396
+ for (var e = arguments.length, a = new Array(e > 1 ? e - 1 : 0), n = 1; n < e; n++)
1397
+ a[n - 1] = arguments[n];
1398
+ (T[t] || []).forEach((r) => {
1399
+ r.apply(null, a);
1400
+ });
1401
+ }
1402
+ function M() {
1403
+ const t = arguments[0], e = Array.prototype.slice.call(arguments, 1);
1404
+ return Y[t] ? Y[t].apply(null, e) : void 0;
1405
+ }
1406
+ function wt(t) {
1407
+ t.prefix === "fa" && (t.prefix = "fas");
1408
+ let {
1409
+ iconName: e
1410
+ } = t;
1411
+ const a = t.prefix || E();
1412
+ if (e)
1413
+ return e = z(a, e) || e, Gt(We.definitions, a, e) || Gt(w.styles, a, e);
1414
+ }
1415
+ const We = new tn(), nn = () => {
1416
+ l.autoReplaceSvg = !1, l.observeMutations = !1, D("noAuto");
1417
+ }, rn = {
1418
+ i2svg: function() {
1419
+ let t = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {};
1420
+ return N ? (D("beforeI2svg", t), M("pseudoElements2svg", t), M("i2svg", t)) : Promise.reject(new Error("Operation requires a DOM of some kind."));
1421
+ },
1422
+ watch: function() {
1423
+ let t = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {};
1424
+ const {
1425
+ autoReplaceSvgRoot: e
1426
+ } = t;
1427
+ l.autoReplaceSvg === !1 && (l.autoReplaceSvg = !0), l.observeMutations = !0, Ya(() => {
1428
+ sn({
1429
+ autoReplaceSvgRoot: e
1430
+ }), D("watch", t);
1431
+ });
1432
+ }
1433
+ }, on = {
1434
+ icon: (t) => {
1435
+ if (t === null)
1436
+ return null;
1437
+ if (typeof t == "object" && t.prefix && t.iconName)
1438
+ return {
1439
+ prefix: t.prefix,
1440
+ iconName: z(t.prefix, t.iconName) || t.iconName
1441
+ };
1442
+ if (Array.isArray(t) && t.length === 2) {
1443
+ const e = t[1].indexOf("fa-") === 0 ? t[1].slice(3) : t[1], a = rt(t[0]);
1444
+ return {
1445
+ prefix: a,
1446
+ iconName: z(a, e) || e
1447
+ };
1448
+ }
1449
+ if (typeof t == "string" && (t.indexOf("".concat(l.cssPrefix, "-")) > -1 || t.match(Pa))) {
1450
+ const e = it(t.split(" "), {
1451
+ skipLookups: !0
1452
+ });
1453
+ return {
1454
+ prefix: e.prefix || E(),
1455
+ iconName: z(e.prefix, e.iconName) || e.iconName
1456
+ };
1457
+ }
1458
+ if (typeof t == "string") {
1459
+ const e = E();
1460
+ return {
1461
+ prefix: e,
1462
+ iconName: z(e, t) || t
1463
+ };
1464
+ }
1465
+ }
1466
+ }, v = {
1467
+ noAuto: nn,
1468
+ config: l,
1469
+ dom: rn,
1470
+ parse: on,
1471
+ library: We,
1472
+ findIconDefinition: wt,
1473
+ toHtml: K
1474
+ }, sn = function() {
1475
+ let t = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {};
1476
+ const {
1477
+ autoReplaceSvgRoot: e = p
1478
+ } = t;
1479
+ (Object.keys(w.styles).length > 0 || l.autoFetchSvg) && N && l.autoReplaceSvg && v.dom.i2svg({
1480
+ node: e
1481
+ });
1482
+ };
1483
+ function ot(t, e) {
1484
+ return Object.defineProperty(t, "abstract", {
1485
+ get: e
1486
+ }), Object.defineProperty(t, "html", {
1487
+ get: function() {
1488
+ return t.abstract.map((a) => K(a));
1489
+ }
1490
+ }), Object.defineProperty(t, "node", {
1491
+ get: function() {
1492
+ if (!N) return;
1493
+ const a = p.createElement("div");
1494
+ return a.innerHTML = t.html, a.children;
1495
+ }
1496
+ }), t;
1497
+ }
1498
+ function cn(t) {
1499
+ let {
1500
+ children: e,
1501
+ main: a,
1502
+ mask: n,
1503
+ attributes: r,
1504
+ styles: i,
1505
+ transform: o
1506
+ } = t;
1507
+ if (zt(o) && a.found && !n.found) {
1508
+ const {
1509
+ width: c,
1510
+ height: u
1511
+ } = a, f = {
1512
+ x: c / u / 2,
1513
+ y: 0.5
1514
+ };
1515
+ r.style = nt(s(s({}, i), {}, {
1516
+ "transform-origin": "".concat(f.x + o.x / 16, "em ").concat(f.y + o.y / 16, "em")
1517
+ }));
1518
+ }
1519
+ return [{
1520
+ tag: "svg",
1521
+ attributes: r,
1522
+ children: e
1523
+ }];
1524
+ }
1525
+ function ln(t) {
1526
+ let {
1527
+ prefix: e,
1528
+ iconName: a,
1529
+ children: n,
1530
+ attributes: r,
1531
+ symbol: i
1532
+ } = t;
1533
+ const o = i === !0 ? "".concat(e, "-").concat(l.cssPrefix, "-").concat(a) : i;
1534
+ return [{
1535
+ tag: "svg",
1536
+ attributes: {
1537
+ style: "display: none;"
1538
+ },
1539
+ children: [{
1540
+ tag: "symbol",
1541
+ attributes: s(s({}, r), {}, {
1542
+ id: o
1543
+ }),
1544
+ children: n
1545
+ }]
1546
+ }];
1547
+ }
1548
+ function Rt(t) {
1549
+ const {
1550
+ icons: {
1551
+ main: e,
1552
+ mask: a
1553
+ },
1554
+ prefix: n,
1555
+ iconName: r,
1556
+ transform: i,
1557
+ symbol: o,
1558
+ title: c,
1559
+ maskId: u,
1560
+ titleId: f,
1561
+ extra: m,
1562
+ watchable: d = !1
1563
+ } = t, {
1564
+ width: g,
1565
+ height: x
1566
+ } = a.found ? a : e, j = ca.includes(n), I = [l.replacementClass, r ? "".concat(l.cssPrefix, "-").concat(r) : ""].filter((L) => m.classes.indexOf(L) === -1).filter((L) => L !== "" || !!L).concat(m.classes).join(" ");
1567
+ let y = {
1568
+ children: [],
1569
+ attributes: s(s({}, m.attributes), {}, {
1570
+ "data-prefix": n,
1571
+ "data-icon": r,
1572
+ class: I,
1573
+ role: m.attributes.role || "img",
1574
+ xmlns: "http://www.w3.org/2000/svg",
1575
+ viewBox: "0 0 ".concat(g, " ").concat(x)
1576
+ })
1577
+ };
1578
+ const O = j && !~m.classes.indexOf("fa-fw") ? {
1579
+ width: "".concat(g / x * 16 * 0.0625, "em")
1580
+ } : {};
1581
+ d && (y.attributes[F] = ""), c && (y.children.push({
1582
+ tag: "title",
1583
+ attributes: {
1584
+ id: y.attributes["aria-labelledby"] || "title-".concat(f || V())
1585
+ },
1586
+ children: [c]
1587
+ }), delete y.attributes.title);
1588
+ const h = s(s({}, y), {}, {
1589
+ prefix: n,
1590
+ iconName: r,
1591
+ main: e,
1592
+ mask: a,
1593
+ maskId: u,
1594
+ transform: i,
1595
+ symbol: o,
1596
+ styles: s(s({}, O), m.styles)
1597
+ }), {
1598
+ children: R,
1599
+ attributes: H
1600
+ } = a.found && e.found ? M("generateAbstractMask", h) || {
1601
+ children: [],
1602
+ attributes: {}
1603
+ } : M("generateAbstractIcon", h) || {
1604
+ children: [],
1605
+ attributes: {}
1606
+ };
1607
+ return h.children = R, h.attributes = H, o ? ln(h) : cn(h);
1608
+ }
1609
+ function Zt(t) {
1610
+ const {
1611
+ content: e,
1612
+ width: a,
1613
+ height: n,
1614
+ transform: r,
1615
+ title: i,
1616
+ extra: o,
1617
+ watchable: c = !1
1618
+ } = t, u = s(s(s({}, o.attributes), i ? {
1619
+ title: i
1620
+ } : {}), {}, {
1621
+ class: o.classes.join(" ")
1622
+ });
1623
+ c && (u[F] = "");
1624
+ const f = s({}, o.styles);
1625
+ zt(r) && (f.transform = Ra({
1626
+ transform: r,
1627
+ startCentered: !0,
1628
+ width: a,
1629
+ height: n
1630
+ }), f["-webkit-transform"] = f.transform);
1631
+ const m = nt(f);
1632
+ m.length > 0 && (u.style = m);
1633
+ const d = [];
1634
+ return d.push({
1635
+ tag: "span",
1636
+ attributes: u,
1637
+ children: [e]
1638
+ }), i && d.push({
1639
+ tag: "span",
1640
+ attributes: {
1641
+ class: "sr-only"
1642
+ },
1643
+ children: [i]
1644
+ }), d;
1645
+ }
1646
+ function fn(t) {
1647
+ const {
1648
+ content: e,
1649
+ title: a,
1650
+ extra: n
1651
+ } = t, r = s(s(s({}, n.attributes), a ? {
1652
+ title: a
1653
+ } : {}), {}, {
1654
+ class: n.classes.join(" ")
1655
+ }), i = nt(n.styles);
1656
+ i.length > 0 && (r.style = i);
1657
+ const o = [];
1658
+ return o.push({
1659
+ tag: "span",
1660
+ attributes: r,
1661
+ children: [e]
1662
+ }), a && o.push({
1663
+ tag: "span",
1664
+ attributes: {
1665
+ class: "sr-only"
1666
+ },
1667
+ children: [a]
1668
+ }), o;
1669
+ }
1670
+ const {
1671
+ styles: ut
1672
+ } = w;
1673
+ function At(t) {
1674
+ const e = t[0], a = t[1], [n] = t.slice(4);
1675
+ let r = null;
1676
+ return Array.isArray(n) ? r = {
1677
+ tag: "g",
1678
+ attributes: {
1679
+ class: "".concat(l.cssPrefix, "-").concat(ct.GROUP)
1680
+ },
1681
+ children: [{
1682
+ tag: "path",
1683
+ attributes: {
1684
+ class: "".concat(l.cssPrefix, "-").concat(ct.SECONDARY),
1685
+ fill: "currentColor",
1686
+ d: n[0]
1687
+ }
1688
+ }, {
1689
+ tag: "path",
1690
+ attributes: {
1691
+ class: "".concat(l.cssPrefix, "-").concat(ct.PRIMARY),
1692
+ fill: "currentColor",
1693
+ d: n[1]
1694
+ }
1695
+ }]
1696
+ } : r = {
1697
+ tag: "path",
1698
+ attributes: {
1699
+ fill: "currentColor",
1700
+ d: n
1701
+ }
1702
+ }, {
1703
+ found: !0,
1704
+ width: e,
1705
+ height: a,
1706
+ icon: r
1707
+ };
1708
+ }
1709
+ const un = {
1710
+ found: !1,
1711
+ width: 512,
1712
+ height: 512
1713
+ };
1714
+ function mn(t, e) {
1715
+ !we && !l.showMissingIcons && t && console.error('Icon with name "'.concat(t, '" and prefix "').concat(e, '" is missing.'));
1716
+ }
1717
+ function Pt(t, e) {
1718
+ let a = e;
1719
+ return e === "fa" && l.styleDefault !== null && (e = E()), new Promise((n, r) => {
1720
+ if (a === "fa") {
1721
+ const i = Te(t) || {};
1722
+ t = i.iconName || t, e = i.prefix || e;
1723
+ }
1724
+ if (t && e && ut[e] && ut[e][t]) {
1725
+ const i = ut[e][t];
1726
+ return n(At(i));
1727
+ }
1728
+ mn(t, e), n(s(s({}, un), {}, {
1729
+ icon: l.showMissingIcons && t ? M("missingIconAbstract") || {} : {}
1730
+ }));
1731
+ });
1732
+ }
1733
+ const $t = () => {
1734
+ }, Nt = l.measurePerformance && J && J.mark && J.measure ? J : {
1735
+ mark: $t,
1736
+ measure: $t
1737
+ }, U = 'FA "6.7.2"', dn = (t) => (Nt.mark("".concat(U, " ").concat(t, " begins")), () => _e(t)), _e = (t) => {
1738
+ Nt.mark("".concat(U, " ").concat(t, " ends")), Nt.measure("".concat(U, " ").concat(t), "".concat(U, " ").concat(t, " begins"), "".concat(U, " ").concat(t, " ends"));
1739
+ };
1740
+ var Lt = {
1741
+ begin: dn,
1742
+ end: _e
1743
+ };
1744
+ const Z = () => {
1745
+ };
1746
+ function te(t) {
1747
+ return typeof (t.getAttribute ? t.getAttribute(F) : null) == "string";
1748
+ }
1749
+ function gn(t) {
1750
+ const e = t.getAttribute ? t.getAttribute(Et) : null, a = t.getAttribute ? t.getAttribute(Mt) : null;
1751
+ return e && a;
1752
+ }
1753
+ function pn(t) {
1754
+ return t && t.classList && t.classList.contains && t.classList.contains(l.replacementClass);
1755
+ }
1756
+ function hn() {
1757
+ return l.autoReplaceSvg === !0 ? $.replace : $[l.autoReplaceSvg] || $.replace;
1758
+ }
1759
+ function bn(t) {
1760
+ return p.createElementNS("http://www.w3.org/2000/svg", t);
1761
+ }
1762
+ function yn(t) {
1763
+ return p.createElement(t);
1764
+ }
1765
+ function He(t) {
1766
+ let e = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
1767
+ const {
1768
+ ceFn: a = t.tag === "svg" ? bn : yn
1769
+ } = e;
1770
+ if (typeof t == "string")
1771
+ return p.createTextNode(t);
1772
+ const n = a(t.tag);
1773
+ return Object.keys(t.attributes || []).forEach(function(r) {
1774
+ n.setAttribute(r, t.attributes[r]);
1775
+ }), (t.children || []).forEach(function(r) {
1776
+ n.appendChild(He(r, {
1777
+ ceFn: a
1778
+ }));
1779
+ }), n;
1780
+ }
1781
+ function vn(t) {
1782
+ let e = " ".concat(t.outerHTML, " ");
1783
+ return e = "".concat(e, "Font Awesome fontawesome.com "), e;
1784
+ }
1785
+ const $ = {
1786
+ replace: function(t) {
1787
+ const e = t[0];
1788
+ if (e.parentNode)
1789
+ if (t[1].forEach((a) => {
1790
+ e.parentNode.insertBefore(He(a), e);
1791
+ }), e.getAttribute(F) === null && l.keepOriginalSource) {
1792
+ let a = p.createComment(vn(e));
1793
+ e.parentNode.replaceChild(a, e);
1794
+ } else
1795
+ e.remove();
1796
+ },
1797
+ nest: function(t) {
1798
+ const e = t[0], a = t[1];
1799
+ if (~It(e).indexOf(l.replacementClass))
1800
+ return $.replace(t);
1801
+ const n = new RegExp("".concat(l.cssPrefix, "-.*"));
1802
+ if (delete a[0].attributes.id, a[0].attributes.class) {
1803
+ const i = a[0].attributes.class.split(" ").reduce((o, c) => (c === l.replacementClass || c.match(n) ? o.toSvg.push(c) : o.toNode.push(c), o), {
1804
+ toNode: [],
1805
+ toSvg: []
1806
+ });
1807
+ a[0].attributes.class = i.toSvg.join(" "), i.toNode.length === 0 ? e.removeAttribute("class") : e.setAttribute("class", i.toNode.join(" "));
1808
+ }
1809
+ const r = a.map((i) => K(i)).join(`
1810
+ `);
1811
+ e.setAttribute(F, ""), e.innerHTML = r;
1812
+ }
1813
+ };
1814
+ function ee(t) {
1815
+ t();
1816
+ }
1817
+ function Ue(t, e) {
1818
+ const a = typeof e == "function" ? e : Z;
1819
+ if (t.length === 0)
1820
+ a();
1821
+ else {
1822
+ let n = ee;
1823
+ l.mutateApproach === ka && (n = C.requestAnimationFrame || ee), n(() => {
1824
+ const r = hn(), i = Lt.begin("mutate");
1825
+ t.map(r), i(), a();
1826
+ });
1827
+ }
1828
+ }
1829
+ let Tt = !1;
1830
+ function Be() {
1831
+ Tt = !0;
1832
+ }
1833
+ function Ot() {
1834
+ Tt = !1;
1835
+ }
1836
+ let et = null;
1837
+ function ae(t) {
1838
+ if (!Ht || !l.observeMutations)
1839
+ return;
1840
+ const {
1841
+ treeCallback: e = Z,
1842
+ nodeCallback: a = Z,
1843
+ pseudoElementsCallback: n = Z,
1844
+ observeMutationsRoot: r = p
1845
+ } = t;
1846
+ et = new Ht((i) => {
1847
+ if (Tt) return;
1848
+ const o = E();
1849
+ _(i).forEach((c) => {
1850
+ if (c.type === "childList" && c.addedNodes.length > 0 && !te(c.addedNodes[0]) && (l.searchPseudoElements && n(c.target), e(c.target)), c.type === "attributes" && c.target.parentNode && l.searchPseudoElements && n(c.target.parentNode), c.type === "attributes" && te(c.target) && ~Sa.indexOf(c.attributeName))
1851
+ if (c.attributeName === "class" && gn(c.target)) {
1852
+ const {
1853
+ prefix: u,
1854
+ iconName: f
1855
+ } = it(It(c.target));
1856
+ c.target.setAttribute(Et, u || o), f && c.target.setAttribute(Mt, f);
1857
+ } else pn(c.target) && a(c.target);
1858
+ });
1859
+ }), N && et.observe(r, {
1860
+ childList: !0,
1861
+ attributes: !0,
1862
+ characterData: !0,
1863
+ subtree: !0
1864
+ });
1865
+ }
1866
+ function xn() {
1867
+ et && et.disconnect();
1868
+ }
1869
+ function kn(t) {
1870
+ const e = t.getAttribute("style");
1871
+ let a = [];
1872
+ return e && (a = e.split(";").reduce((n, r) => {
1873
+ const i = r.split(":"), o = i[0], c = i.slice(1);
1874
+ return o && c.length > 0 && (n[o] = c.join(":").trim()), n;
1875
+ }, {})), a;
1876
+ }
1877
+ function wn(t) {
1878
+ const e = t.getAttribute("data-prefix"), a = t.getAttribute("data-icon"), n = t.innerText !== void 0 ? t.innerText.trim() : "";
1879
+ let r = it(It(t));
1880
+ return r.prefix || (r.prefix = E()), e && a && (r.prefix = e, r.iconName = a), r.iconName && r.prefix || (r.prefix && n.length > 0 && (r.iconName = Va(r.prefix, t.innerText) || Dt(r.prefix, Me(t.innerText))), !r.iconName && l.autoFetchSvg && t.firstChild && t.firstChild.nodeType === Node.TEXT_NODE && (r.iconName = t.firstChild.data)), r;
1881
+ }
1882
+ function An(t) {
1883
+ const e = _(t.attributes).reduce((r, i) => (r.name !== "class" && r.name !== "style" && (r[i.name] = i.value), r), {}), a = t.getAttribute("title"), n = t.getAttribute("data-fa-title-id");
1884
+ return l.autoA11y && (a ? e["aria-labelledby"] = "".concat(l.replacementClass, "-title-").concat(n || V()) : (e["aria-hidden"] = "true", e.focusable = "false")), e;
1885
+ }
1886
+ function Pn() {
1887
+ return {
1888
+ iconName: null,
1889
+ title: null,
1890
+ titleId: null,
1891
+ prefix: null,
1892
+ transform: k,
1893
+ symbol: !1,
1894
+ mask: {
1895
+ iconName: null,
1896
+ prefix: null,
1897
+ rest: []
1898
+ },
1899
+ maskId: null,
1900
+ extra: {
1901
+ classes: [],
1902
+ styles: {},
1903
+ attributes: {}
1904
+ }
1905
+ };
1906
+ }
1907
+ function ne(t) {
1908
+ let e = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {
1909
+ styleParser: !0
1910
+ };
1911
+ const {
1912
+ iconName: a,
1913
+ prefix: n,
1914
+ rest: r
1915
+ } = wn(t), i = An(t), o = kt("parseNodeAttributes", {}, t);
1916
+ let c = e.styleParser ? kn(t) : [];
1917
+ return s({
1918
+ iconName: a,
1919
+ title: t.getAttribute("title"),
1920
+ titleId: t.getAttribute("data-fa-title-id"),
1921
+ prefix: n,
1922
+ transform: k,
1923
+ mask: {
1924
+ iconName: null,
1925
+ prefix: null,
1926
+ rest: []
1927
+ },
1928
+ maskId: null,
1929
+ symbol: !1,
1930
+ extra: {
1931
+ classes: r,
1932
+ styles: c,
1933
+ attributes: i
1934
+ }
1935
+ }, o);
1936
+ }
1937
+ const {
1938
+ styles: Nn
1939
+ } = w;
1940
+ function Xe(t) {
1941
+ const e = l.autoReplaceSvg === "nest" ? ne(t, {
1942
+ styleParser: !1
1943
+ }) : ne(t);
1944
+ return ~e.extra.classes.indexOf(Pe) ? M("generateLayersText", t, e) : M("generateSvgReplacementMutation", t, e);
1945
+ }
1946
+ function On() {
1947
+ return [...ia, ...gt];
1948
+ }
1949
+ function re(t) {
1950
+ let e = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : null;
1951
+ if (!N) return Promise.resolve();
1952
+ const a = p.documentElement.classList, n = (m) => a.add("".concat(Xt, "-").concat(m)), r = (m) => a.remove("".concat(Xt, "-").concat(m)), i = l.autoFetchSvg ? On() : be.concat(Object.keys(Nn));
1953
+ i.includes("fa") || i.push("fa");
1954
+ const o = [".".concat(Pe, ":not([").concat(F, "])")].concat(i.map((m) => ".".concat(m, ":not([").concat(F, "])"))).join(", ");
1955
+ if (o.length === 0)
1956
+ return Promise.resolve();
1957
+ let c = [];
1958
+ try {
1959
+ c = _(t.querySelectorAll(o));
1960
+ } catch {
1961
+ }
1962
+ if (c.length > 0)
1963
+ n("pending"), r("complete");
1964
+ else
1965
+ return Promise.resolve();
1966
+ const u = Lt.begin("onTree"), f = c.reduce((m, d) => {
1967
+ try {
1968
+ const g = Xe(d);
1969
+ g && m.push(g);
1970
+ } catch (g) {
1971
+ we || g.name === "MissingIcon" && console.error(g);
1972
+ }
1973
+ return m;
1974
+ }, []);
1975
+ return new Promise((m, d) => {
1976
+ Promise.all(f).then((g) => {
1977
+ Ue(g, () => {
1978
+ n("active"), n("complete"), r("pending"), typeof e == "function" && e(), u(), m();
1979
+ });
1980
+ }).catch((g) => {
1981
+ u(), d(g);
1982
+ });
1983
+ });
1984
+ }
1985
+ function Sn(t) {
1986
+ let e = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : null;
1987
+ Xe(t).then((a) => {
1988
+ a && Ue([a], e);
1989
+ });
1990
+ }
1991
+ function Cn(t) {
1992
+ return function(e) {
1993
+ let a = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
1994
+ const n = (e || {}).icon ? e : wt(e || {});
1995
+ let {
1996
+ mask: r
1997
+ } = a;
1998
+ return r && (r = (r || {}).icon ? r : wt(r || {})), t(n, s(s({}, a), {}, {
1999
+ mask: r
2000
+ }));
2001
+ };
2002
+ }
2003
+ const En = function(t) {
2004
+ let e = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
2005
+ const {
2006
+ transform: a = k,
2007
+ symbol: n = !1,
2008
+ mask: r = null,
2009
+ maskId: i = null,
2010
+ title: o = null,
2011
+ titleId: c = null,
2012
+ classes: u = [],
2013
+ attributes: f = {},
2014
+ styles: m = {}
2015
+ } = e;
2016
+ if (!t) return;
2017
+ const {
2018
+ prefix: d,
2019
+ iconName: g,
2020
+ icon: x
2021
+ } = t;
2022
+ return ot(s({
2023
+ type: "icon"
2024
+ }, t), () => (D("beforeDOMElementCreation", {
2025
+ iconDefinition: t,
2026
+ params: e
2027
+ }), l.autoA11y && (o ? f["aria-labelledby"] = "".concat(l.replacementClass, "-title-").concat(c || V()) : (f["aria-hidden"] = "true", f.focusable = "false")), Rt({
2028
+ icons: {
2029
+ main: At(x),
2030
+ mask: r ? At(r.icon) : {
2031
+ found: !1,
2032
+ width: null,
2033
+ height: null,
2034
+ icon: {}
2035
+ }
2036
+ },
2037
+ prefix: d,
2038
+ iconName: g,
2039
+ transform: s(s({}, k), a),
2040
+ symbol: n,
2041
+ title: o,
2042
+ maskId: i,
2043
+ titleId: c,
2044
+ extra: {
2045
+ attributes: f,
2046
+ styles: m,
2047
+ classes: u
2048
+ }
2049
+ })));
2050
+ };
2051
+ var Mn = {
2052
+ mixout() {
2053
+ return {
2054
+ icon: Cn(En)
2055
+ };
2056
+ },
2057
+ hooks() {
2058
+ return {
2059
+ mutationObserverCallbacks(t) {
2060
+ return t.treeCallback = re, t.nodeCallback = Sn, t;
2061
+ }
2062
+ };
2063
+ },
2064
+ provides(t) {
2065
+ t.i2svg = function(e) {
2066
+ const {
2067
+ node: a = p,
2068
+ callback: n = () => {
2069
+ }
2070
+ } = e;
2071
+ return re(a, n);
2072
+ }, t.generateSvgReplacementMutation = function(e, a) {
2073
+ const {
2074
+ iconName: n,
2075
+ title: r,
2076
+ titleId: i,
2077
+ prefix: o,
2078
+ transform: c,
2079
+ symbol: u,
2080
+ mask: f,
2081
+ maskId: m,
2082
+ extra: d
2083
+ } = a;
2084
+ return new Promise((g, x) => {
2085
+ Promise.all([Pt(n, o), f.iconName ? Pt(f.iconName, f.prefix) : Promise.resolve({
2086
+ found: !1,
2087
+ width: 512,
2088
+ height: 512,
2089
+ icon: {}
2090
+ })]).then((j) => {
2091
+ let [I, y] = j;
2092
+ g([e, Rt({
2093
+ icons: {
2094
+ main: I,
2095
+ mask: y
2096
+ },
2097
+ prefix: o,
2098
+ iconName: n,
2099
+ transform: c,
2100
+ symbol: u,
2101
+ maskId: m,
2102
+ title: r,
2103
+ titleId: i,
2104
+ extra: d,
2105
+ watchable: !0
2106
+ })]);
2107
+ }).catch(x);
2108
+ });
2109
+ }, t.generateAbstractIcon = function(e) {
2110
+ let {
2111
+ children: a,
2112
+ attributes: n,
2113
+ main: r,
2114
+ transform: i,
2115
+ styles: o
2116
+ } = e;
2117
+ const c = nt(o);
2118
+ c.length > 0 && (n.style = c);
2119
+ let u;
2120
+ return zt(i) && (u = M("generateAbstractTransformGrouping", {
2121
+ main: r,
2122
+ transform: i,
2123
+ containerWidth: r.width,
2124
+ iconWidth: r.width
2125
+ })), a.push(u || r.icon), {
2126
+ children: a,
2127
+ attributes: n
2128
+ };
2129
+ };
2130
+ }
2131
+ }, jn = {
2132
+ mixout() {
2133
+ return {
2134
+ layer(t) {
2135
+ let e = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
2136
+ const {
2137
+ classes: a = []
2138
+ } = e;
2139
+ return ot({
2140
+ type: "layer"
2141
+ }, () => {
2142
+ D("beforeDOMElementCreation", {
2143
+ assembler: t,
2144
+ params: e
2145
+ });
2146
+ let n = [];
2147
+ return t((r) => {
2148
+ Array.isArray(r) ? r.map((i) => {
2149
+ n = n.concat(i.abstract);
2150
+ }) : n = n.concat(r.abstract);
2151
+ }), [{
2152
+ tag: "span",
2153
+ attributes: {
2154
+ class: ["".concat(l.cssPrefix, "-layers"), ...a].join(" ")
2155
+ },
2156
+ children: n
2157
+ }];
2158
+ });
2159
+ }
2160
+ };
2161
+ }
2162
+ }, In = {
2163
+ mixout() {
2164
+ return {
2165
+ counter(t) {
2166
+ let e = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
2167
+ const {
2168
+ title: a = null,
2169
+ classes: n = [],
2170
+ attributes: r = {},
2171
+ styles: i = {}
2172
+ } = e;
2173
+ return ot({
2174
+ type: "counter",
2175
+ content: t
2176
+ }, () => (D("beforeDOMElementCreation", {
2177
+ content: t,
2178
+ params: e
2179
+ }), fn({
2180
+ content: t.toString(),
2181
+ title: a,
2182
+ extra: {
2183
+ attributes: r,
2184
+ styles: i,
2185
+ classes: ["".concat(l.cssPrefix, "-layers-counter"), ...n]
2186
+ }
2187
+ })));
2188
+ }
2189
+ };
2190
+ }
2191
+ }, zn = {
2192
+ mixout() {
2193
+ return {
2194
+ text(t) {
2195
+ let e = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
2196
+ const {
2197
+ transform: a = k,
2198
+ title: n = null,
2199
+ classes: r = [],
2200
+ attributes: i = {},
2201
+ styles: o = {}
2202
+ } = e;
2203
+ return ot({
2204
+ type: "text",
2205
+ content: t
2206
+ }, () => (D("beforeDOMElementCreation", {
2207
+ content: t,
2208
+ params: e
2209
+ }), Zt({
2210
+ content: t,
2211
+ transform: s(s({}, k), a),
2212
+ title: n,
2213
+ extra: {
2214
+ attributes: i,
2215
+ styles: o,
2216
+ classes: ["".concat(l.cssPrefix, "-layers-text"), ...r]
2217
+ }
2218
+ })));
2219
+ }
2220
+ };
2221
+ },
2222
+ provides(t) {
2223
+ t.generateLayersText = function(e, a) {
2224
+ const {
2225
+ title: n,
2226
+ transform: r,
2227
+ extra: i
2228
+ } = a;
2229
+ let o = null, c = null;
2230
+ if (pe) {
2231
+ const u = parseInt(getComputedStyle(e).fontSize, 10), f = e.getBoundingClientRect();
2232
+ o = f.width / u, c = f.height / u;
2233
+ }
2234
+ return l.autoA11y && !n && (i.attributes["aria-hidden"] = "true"), Promise.resolve([e, Zt({
2235
+ content: e.innerHTML,
2236
+ width: o,
2237
+ height: c,
2238
+ transform: r,
2239
+ title: n,
2240
+ extra: i,
2241
+ watchable: !0
2242
+ })]);
2243
+ };
2244
+ }
2245
+ };
2246
+ const Fn = new RegExp('"', "ug"), ie = [1105920, 1112319], oe = s(s(s(s({}, {
2247
+ FontAwesome: {
2248
+ normal: "fas",
2249
+ 400: "fas"
2250
+ }
2251
+ }), aa), va), ma), St = Object.keys(oe).reduce((t, e) => (t[e.toLowerCase()] = oe[e], t), {}), Dn = Object.keys(St).reduce((t, e) => {
2252
+ const a = St[e];
2253
+ return t[e] = a[900] || [...Object.entries(a)][0][1], t;
2254
+ }, {});
2255
+ function Rn(t) {
2256
+ const e = t.replace(Fn, ""), a = _a(e, 0), n = a >= ie[0] && a <= ie[1], r = e.length === 2 ? e[0] === e[1] : !1;
2257
+ return {
2258
+ value: Me(r ? e[0] : e),
2259
+ isSecondary: n || r
2260
+ };
2261
+ }
2262
+ function Ln(t, e) {
2263
+ const a = t.replace(/^['"]|['"]$/g, "").toLowerCase(), n = parseInt(e), r = isNaN(n) ? "normal" : n;
2264
+ return (St[a] || {})[r] || Dn[a];
2265
+ }
2266
+ function se(t, e) {
2267
+ const a = "".concat(xa).concat(e.replace(":", "-"));
2268
+ return new Promise((n, r) => {
2269
+ if (t.getAttribute(a) !== null)
2270
+ return n();
2271
+ const i = _(t.children).filter((d) => d.getAttribute(ht) === e)[0], o = C.getComputedStyle(t, e), c = o.getPropertyValue("font-family"), u = c.match(Na), f = o.getPropertyValue("font-weight"), m = o.getPropertyValue("content");
2272
+ if (i && !u)
2273
+ return t.removeChild(i), n();
2274
+ if (u && m !== "none" && m !== "") {
2275
+ const d = o.getPropertyValue("content");
2276
+ let g = Ln(c, f);
2277
+ const {
2278
+ value: x,
2279
+ isSecondary: j
2280
+ } = Rn(d), I = u[0].startsWith("FontAwesome");
2281
+ let y = Dt(g, x), O = y;
2282
+ if (I) {
2283
+ const h = qa(x);
2284
+ h.iconName && h.prefix && (y = h.iconName, g = h.prefix);
2285
+ }
2286
+ if (y && !j && (!i || i.getAttribute(Et) !== g || i.getAttribute(Mt) !== O)) {
2287
+ t.setAttribute(a, O), i && t.removeChild(i);
2288
+ const h = Pn(), {
2289
+ extra: R
2290
+ } = h;
2291
+ R.attributes[ht] = e, Pt(y, g).then((H) => {
2292
+ const L = Rt(s(s({}, h), {}, {
2293
+ icons: {
2294
+ main: H,
2295
+ mask: Ye()
2296
+ },
2297
+ prefix: g,
2298
+ iconName: O,
2299
+ extra: R,
2300
+ watchable: !0
2301
+ })), st = p.createElementNS("http://www.w3.org/2000/svg", "svg");
2302
+ e === "::before" ? t.insertBefore(st, t.firstChild) : t.appendChild(st), st.outerHTML = L.map((Ve) => K(Ve)).join(`
2303
+ `), t.removeAttribute(a), n();
2304
+ }).catch(r);
2305
+ } else
2306
+ n();
2307
+ } else
2308
+ n();
2309
+ });
2310
+ }
2311
+ function Tn(t) {
2312
+ return Promise.all([se(t, "::before"), se(t, "::after")]);
2313
+ }
2314
+ function Yn(t) {
2315
+ return t.parentNode !== document.head && !~wa.indexOf(t.tagName.toUpperCase()) && !t.getAttribute(ht) && (!t.parentNode || t.parentNode.tagName !== "svg");
2316
+ }
2317
+ function ce(t) {
2318
+ if (N)
2319
+ return new Promise((e, a) => {
2320
+ const n = _(t.querySelectorAll("*")).filter(Yn).map(Tn), r = Lt.begin("searchPseudoElements");
2321
+ Be(), Promise.all(n).then(() => {
2322
+ r(), Ot(), e();
2323
+ }).catch(() => {
2324
+ r(), Ot(), a();
2325
+ });
2326
+ });
2327
+ }
2328
+ var Wn = {
2329
+ hooks() {
2330
+ return {
2331
+ mutationObserverCallbacks(t) {
2332
+ return t.pseudoElementsCallback = ce, t;
2333
+ }
2334
+ };
2335
+ },
2336
+ provides(t) {
2337
+ t.pseudoElements2svg = function(e) {
2338
+ const {
2339
+ node: a = p
2340
+ } = e;
2341
+ l.searchPseudoElements && ce(a);
2342
+ };
2343
+ }
2344
+ };
2345
+ let le = !1;
2346
+ var _n = {
2347
+ mixout() {
2348
+ return {
2349
+ dom: {
2350
+ unwatch() {
2351
+ Be(), le = !0;
2352
+ }
2353
+ }
2354
+ };
2355
+ },
2356
+ hooks() {
2357
+ return {
2358
+ bootstrap() {
2359
+ ae(kt("mutationObserverCallbacks", {}));
2360
+ },
2361
+ noAuto() {
2362
+ xn();
2363
+ },
2364
+ watch(t) {
2365
+ const {
2366
+ observeMutationsRoot: e
2367
+ } = t;
2368
+ le ? Ot() : ae(kt("mutationObserverCallbacks", {
2369
+ observeMutationsRoot: e
2370
+ }));
2371
+ }
2372
+ };
2373
+ }
2374
+ };
2375
+ const fe = (t) => {
2376
+ let e = {
2377
+ size: 16,
2378
+ x: 0,
2379
+ y: 0,
2380
+ flipX: !1,
2381
+ flipY: !1,
2382
+ rotate: 0
2383
+ };
2384
+ return t.toLowerCase().split(" ").reduce((a, n) => {
2385
+ const r = n.toLowerCase().split("-"), i = r[0];
2386
+ let o = r.slice(1).join("-");
2387
+ if (i && o === "h")
2388
+ return a.flipX = !0, a;
2389
+ if (i && o === "v")
2390
+ return a.flipY = !0, a;
2391
+ if (o = parseFloat(o), isNaN(o))
2392
+ return a;
2393
+ switch (i) {
2394
+ case "grow":
2395
+ a.size = a.size + o;
2396
+ break;
2397
+ case "shrink":
2398
+ a.size = a.size - o;
2399
+ break;
2400
+ case "left":
2401
+ a.x = a.x - o;
2402
+ break;
2403
+ case "right":
2404
+ a.x = a.x + o;
2405
+ break;
2406
+ case "up":
2407
+ a.y = a.y - o;
2408
+ break;
2409
+ case "down":
2410
+ a.y = a.y + o;
2411
+ break;
2412
+ case "rotate":
2413
+ a.rotate = a.rotate + o;
2414
+ break;
2415
+ }
2416
+ return a;
2417
+ }, e);
2418
+ };
2419
+ var Hn = {
2420
+ mixout() {
2421
+ return {
2422
+ parse: {
2423
+ transform: (t) => fe(t)
2424
+ }
2425
+ };
2426
+ },
2427
+ hooks() {
2428
+ return {
2429
+ parseNodeAttributes(t, e) {
2430
+ const a = e.getAttribute("data-fa-transform");
2431
+ return a && (t.transform = fe(a)), t;
2432
+ }
2433
+ };
2434
+ },
2435
+ provides(t) {
2436
+ t.generateAbstractTransformGrouping = function(e) {
2437
+ let {
2438
+ main: a,
2439
+ transform: n,
2440
+ containerWidth: r,
2441
+ iconWidth: i
2442
+ } = e;
2443
+ const o = {
2444
+ transform: "translate(".concat(r / 2, " 256)")
2445
+ }, c = "translate(".concat(n.x * 32, ", ").concat(n.y * 32, ") "), u = "scale(".concat(n.size / 16 * (n.flipX ? -1 : 1), ", ").concat(n.size / 16 * (n.flipY ? -1 : 1), ") "), f = "rotate(".concat(n.rotate, " 0 0)"), m = {
2446
+ transform: "".concat(c, " ").concat(u, " ").concat(f)
2447
+ }, d = {
2448
+ transform: "translate(".concat(i / 2 * -1, " -256)")
2449
+ }, g = {
2450
+ outer: o,
2451
+ inner: m,
2452
+ path: d
2453
+ };
2454
+ return {
2455
+ tag: "g",
2456
+ attributes: s({}, g.outer),
2457
+ children: [{
2458
+ tag: "g",
2459
+ attributes: s({}, g.inner),
2460
+ children: [{
2461
+ tag: a.icon.tag,
2462
+ children: a.icon.children,
2463
+ attributes: s(s({}, a.icon.attributes), g.path)
2464
+ }]
2465
+ }]
2466
+ };
2467
+ };
2468
+ }
2469
+ };
2470
+ const mt = {
2471
+ x: 0,
2472
+ y: 0,
2473
+ width: "100%",
2474
+ height: "100%"
2475
+ };
2476
+ function ue(t) {
2477
+ let e = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : !0;
2478
+ return t.attributes && (t.attributes.fill || e) && (t.attributes.fill = "black"), t;
2479
+ }
2480
+ function Un(t) {
2481
+ return t.tag === "g" ? t.children : [t];
2482
+ }
2483
+ var Bn = {
2484
+ hooks() {
2485
+ return {
2486
+ parseNodeAttributes(t, e) {
2487
+ const a = e.getAttribute("data-fa-mask"), n = a ? it(a.split(" ").map((r) => r.trim())) : Ye();
2488
+ return n.prefix || (n.prefix = E()), t.mask = n, t.maskId = e.getAttribute("data-fa-mask-id"), t;
2489
+ }
2490
+ };
2491
+ },
2492
+ provides(t) {
2493
+ t.generateAbstractMask = function(e) {
2494
+ let {
2495
+ children: a,
2496
+ attributes: n,
2497
+ main: r,
2498
+ mask: i,
2499
+ maskId: o,
2500
+ transform: c
2501
+ } = e;
2502
+ const {
2503
+ width: u,
2504
+ icon: f
2505
+ } = r, {
2506
+ width: m,
2507
+ icon: d
2508
+ } = i, g = Da({
2509
+ transform: c,
2510
+ containerWidth: m,
2511
+ iconWidth: u
2512
+ }), x = {
2513
+ tag: "rect",
2514
+ attributes: s(s({}, mt), {}, {
2515
+ fill: "white"
2516
+ })
2517
+ }, j = f.children ? {
2518
+ children: f.children.map(ue)
2519
+ } : {}, I = {
2520
+ tag: "g",
2521
+ attributes: s({}, g.inner),
2522
+ children: [ue(s({
2523
+ tag: f.tag,
2524
+ attributes: s(s({}, f.attributes), g.path)
2525
+ }, j))]
2526
+ }, y = {
2527
+ tag: "g",
2528
+ attributes: s({}, g.outer),
2529
+ children: [I]
2530
+ }, O = "mask-".concat(o || V()), h = "clip-".concat(o || V()), R = {
2531
+ tag: "mask",
2532
+ attributes: s(s({}, mt), {}, {
2533
+ id: O,
2534
+ maskUnits: "userSpaceOnUse",
2535
+ maskContentUnits: "userSpaceOnUse"
2536
+ }),
2537
+ children: [x, y]
2538
+ }, H = {
2539
+ tag: "defs",
2540
+ children: [{
2541
+ tag: "clipPath",
2542
+ attributes: {
2543
+ id: h
2544
+ },
2545
+ children: Un(d)
2546
+ }, R]
2547
+ };
2548
+ return a.push(H, {
2549
+ tag: "rect",
2550
+ attributes: s({
2551
+ fill: "currentColor",
2552
+ "clip-path": "url(#".concat(h, ")"),
2553
+ mask: "url(#".concat(O, ")")
2554
+ }, mt)
2555
+ }), {
2556
+ children: a,
2557
+ attributes: n
2558
+ };
2559
+ };
2560
+ }
2561
+ }, Xn = {
2562
+ provides(t) {
2563
+ let e = !1;
2564
+ C.matchMedia && (e = C.matchMedia("(prefers-reduced-motion: reduce)").matches), t.missingIconAbstract = function() {
2565
+ const a = [], n = {
2566
+ fill: "currentColor"
2567
+ }, r = {
2568
+ attributeType: "XML",
2569
+ repeatCount: "indefinite",
2570
+ dur: "2s"
2571
+ };
2572
+ a.push({
2573
+ tag: "path",
2574
+ attributes: s(s({}, n), {}, {
2575
+ d: "M156.5,447.7l-12.6,29.5c-18.7-9.5-35.9-21.2-51.5-34.9l22.7-22.7C127.6,430.5,141.5,440,156.5,447.7z M40.6,272H8.5 c1.4,21.2,5.4,41.7,11.7,61.1L50,321.2C45.1,305.5,41.8,289,40.6,272z M40.6,240c1.4-18.8,5.2-37,11.1-54.1l-29.5-12.6 C14.7,194.3,10,216.7,8.5,240H40.6z M64.3,156.5c7.8-14.9,17.2-28.8,28.1-41.5L69.7,92.3c-13.7,15.6-25.5,32.8-34.9,51.5 L64.3,156.5z M397,419.6c-13.9,12-29.4,22.3-46.1,30.4l11.9,29.8c20.7-9.9,39.8-22.6,56.9-37.6L397,419.6z M115,92.4 c13.9-12,29.4-22.3,46.1-30.4l-11.9-29.8c-20.7,9.9-39.8,22.6-56.8,37.6L115,92.4z M447.7,355.5c-7.8,14.9-17.2,28.8-28.1,41.5 l22.7,22.7c13.7-15.6,25.5-32.9,34.9-51.5L447.7,355.5z M471.4,272c-1.4,18.8-5.2,37-11.1,54.1l29.5,12.6 c7.5-21.1,12.2-43.5,13.6-66.8H471.4z M321.2,462c-15.7,5-32.2,8.2-49.2,9.4v32.1c21.2-1.4,41.7-5.4,61.1-11.7L321.2,462z M240,471.4c-18.8-1.4-37-5.2-54.1-11.1l-12.6,29.5c21.1,7.5,43.5,12.2,66.8,13.6V471.4z M462,190.8c5,15.7,8.2,32.2,9.4,49.2h32.1 c-1.4-21.2-5.4-41.7-11.7-61.1L462,190.8z M92.4,397c-12-13.9-22.3-29.4-30.4-46.1l-29.8,11.9c9.9,20.7,22.6,39.8,37.6,56.9 L92.4,397z M272,40.6c18.8,1.4,36.9,5.2,54.1,11.1l12.6-29.5C317.7,14.7,295.3,10,272,8.5V40.6z M190.8,50 c15.7-5,32.2-8.2,49.2-9.4V8.5c-21.2,1.4-41.7,5.4-61.1,11.7L190.8,50z M442.3,92.3L419.6,115c12,13.9,22.3,29.4,30.5,46.1 l29.8-11.9C470,128.5,457.3,109.4,442.3,92.3z M397,92.4l22.7-22.7c-15.6-13.7-32.8-25.5-51.5-34.9l-12.6,29.5 C370.4,72.1,384.4,81.5,397,92.4z"
2576
+ })
2577
+ });
2578
+ const i = s(s({}, r), {}, {
2579
+ attributeName: "opacity"
2580
+ }), o = {
2581
+ tag: "circle",
2582
+ attributes: s(s({}, n), {}, {
2583
+ cx: "256",
2584
+ cy: "364",
2585
+ r: "28"
2586
+ }),
2587
+ children: []
2588
+ };
2589
+ return e || o.children.push({
2590
+ tag: "animate",
2591
+ attributes: s(s({}, r), {}, {
2592
+ attributeName: "r",
2593
+ values: "28;14;28;28;14;28;"
2594
+ })
2595
+ }, {
2596
+ tag: "animate",
2597
+ attributes: s(s({}, i), {}, {
2598
+ values: "1;0;1;1;0;1;"
2599
+ })
2600
+ }), a.push(o), a.push({
2601
+ tag: "path",
2602
+ attributes: s(s({}, n), {}, {
2603
+ opacity: "1",
2604
+ d: "M263.7,312h-16c-6.6,0-12-5.4-12-12c0-71,77.4-63.9,77.4-107.8c0-20-17.8-40.2-57.4-40.2c-29.1,0-44.3,9.6-59.2,28.7 c-3.9,5-11.1,6-16.2,2.4l-13.1-9.2c-5.6-3.9-6.9-11.8-2.6-17.2c21.2-27.2,46.4-44.7,91.2-44.7c52.3,0,97.4,29.8,97.4,80.2 c0,67.6-77.4,63.5-77.4,107.8C275.7,306.6,270.3,312,263.7,312z"
2605
+ }),
2606
+ children: e ? [] : [{
2607
+ tag: "animate",
2608
+ attributes: s(s({}, i), {}, {
2609
+ values: "1;0;0;0;0;1;"
2610
+ })
2611
+ }]
2612
+ }), e || a.push({
2613
+ tag: "path",
2614
+ attributes: s(s({}, n), {}, {
2615
+ opacity: "0",
2616
+ d: "M232.5,134.5l7,168c0.3,6.4,5.6,11.5,12,11.5h9c6.4,0,11.7-5.1,12-11.5l7-168c0.3-6.8-5.2-12.5-12-12.5h-23 C237.7,122,232.2,127.7,232.5,134.5z"
2617
+ }),
2618
+ children: [{
2619
+ tag: "animate",
2620
+ attributes: s(s({}, i), {}, {
2621
+ values: "0;0;1;1;0;0;"
2622
+ })
2623
+ }]
2624
+ }), {
2625
+ tag: "g",
2626
+ attributes: {
2627
+ class: "missing"
2628
+ },
2629
+ children: a
2630
+ };
2631
+ };
2632
+ }
2633
+ }, Vn = {
2634
+ hooks() {
2635
+ return {
2636
+ parseNodeAttributes(t, e) {
2637
+ const a = e.getAttribute("data-fa-symbol"), n = a === null ? !1 : a === "" ? !0 : a;
2638
+ return t.symbol = n, t;
2639
+ }
2640
+ };
2641
+ }
2642
+ }, qn = [Ta, Mn, jn, In, zn, Wn, _n, Hn, Bn, Xn, Vn];
2643
+ an(qn, {
2644
+ mixoutsTo: v
2645
+ });
2646
+ v.noAuto;
2647
+ v.config;
2648
+ v.library;
2649
+ v.dom;
2650
+ const Gn = v.parse;
2651
+ v.findIconDefinition;
2652
+ v.toHtml;
2653
+ const Kn = v.icon;
2654
+ v.layer;
2655
+ v.text;
2656
+ v.counter;
2657
+ export {
2658
+ v as api,
2659
+ Kn as icon,
2660
+ Gn as parse
2661
+ };