raikar11 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (186) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +50 -0
  4. data/_includes/breadcrumb.html +17 -0
  5. data/_includes/footer.html +54 -0
  6. data/_includes/head.html +26 -0
  7. data/_includes/header.html +34 -0
  8. data/_includes/icon.html +3 -0
  9. data/_includes/nav_page.html +57 -0
  10. data/_includes/nav_side.html +68 -0
  11. data/_includes/toc_pure_liquid.html +68 -0
  12. data/_layouts/default.html +252 -0
  13. data/_sass/_accordion.scss +77 -0
  14. data/_sass/_article.scss +96 -0
  15. data/_sass/_base.scss +48 -0
  16. data/_sass/_bootstrap-icons.scss +7 -0
  17. data/_sass/_breadcrumb.scss +20 -0
  18. data/_sass/_btn.scss +9 -0
  19. data/_sass/_callout.scss +13 -0
  20. data/_sass/_fonts.scss +63 -0
  21. data/_sass/_footer.scss +38 -0
  22. data/_sass/_helpers.scss +2 -0
  23. data/_sass/_icons.scss +27 -0
  24. data/_sass/_link-main.scss +22 -0
  25. data/_sass/_list-links.scss +33 -0
  26. data/_sass/_list-tags.scss +9 -0
  27. data/_sass/_navbar.scss +81 -0
  28. data/_sass/_search.scss +51 -0
  29. data/_sass/_section-main.scss +54 -0
  30. data/_sass/_socials.scss +26 -0
  31. data/_sass/_switch.scss +56 -0
  32. data/_sass/_table.scss +100 -0
  33. data/_sass/_theme.scss +63 -0
  34. data/_sass/_tile.scss +34 -0
  35. data/_sass/_tiles.scss +9 -0
  36. data/_sass/_variables.scss +11 -0
  37. data/_sass/_widget.scss +15 -0
  38. data/_sass/_widgets.scss +12 -0
  39. data/_sass/bootstrap/scss/_accordion.scss +158 -0
  40. data/_sass/bootstrap/scss/_alert.scss +68 -0
  41. data/_sass/bootstrap/scss/_badge.scss +38 -0
  42. data/_sass/bootstrap/scss/_breadcrumb.scss +40 -0
  43. data/_sass/bootstrap/scss/_button-group.scss +142 -0
  44. data/_sass/bootstrap/scss/_buttons.scss +207 -0
  45. data/_sass/bootstrap/scss/_card.scss +239 -0
  46. data/_sass/bootstrap/scss/_carousel.scss +244 -0
  47. data/_sass/bootstrap/scss/_close.scss +63 -0
  48. data/_sass/bootstrap/scss/_containers.scss +41 -0
  49. data/_sass/bootstrap/scss/_dropdown.scss +250 -0
  50. data/_sass/bootstrap/scss/_forms.scss +9 -0
  51. data/_sass/bootstrap/scss/_functions.scss +302 -0
  52. data/_sass/bootstrap/scss/_grid.scss +39 -0
  53. data/_sass/bootstrap/scss/_helpers.scss +12 -0
  54. data/_sass/bootstrap/scss/_images.scss +42 -0
  55. data/_sass/bootstrap/scss/_list-group.scss +197 -0
  56. data/_sass/bootstrap/scss/_maps.scss +174 -0
  57. data/_sass/bootstrap/scss/_mixins.scss +42 -0
  58. data/_sass/bootstrap/scss/_modal.scss +237 -0
  59. data/_sass/bootstrap/scss/_nav.scss +209 -0
  60. data/_sass/bootstrap/scss/_navbar.scss +288 -0
  61. data/_sass/bootstrap/scss/_offcanvas.scss +146 -0
  62. data/_sass/bootstrap/scss/_pagination.scss +109 -0
  63. data/_sass/bootstrap/scss/_placeholders.scss +51 -0
  64. data/_sass/bootstrap/scss/_popover.scss +196 -0
  65. data/_sass/bootstrap/scss/_progress.scss +68 -0
  66. data/_sass/bootstrap/scss/_reboot.scss +610 -0
  67. data/_sass/bootstrap/scss/_root.scss +188 -0
  68. data/_sass/bootstrap/scss/_spinners.scss +85 -0
  69. data/_sass/bootstrap/scss/_tables.scss +164 -0
  70. data/_sass/bootstrap/scss/_toasts.scss +73 -0
  71. data/_sass/bootstrap/scss/_tooltip.scss +119 -0
  72. data/_sass/bootstrap/scss/_transitions.scss +27 -0
  73. data/_sass/bootstrap/scss/_type.scss +106 -0
  74. data/_sass/bootstrap/scss/_utilities.scss +806 -0
  75. data/_sass/bootstrap/scss/_variables-dark.scss +85 -0
  76. data/_sass/bootstrap/scss/_variables.scss +1743 -0
  77. data/_sass/bootstrap/scss/bootstrap-grid.scss +62 -0
  78. data/_sass/bootstrap/scss/bootstrap-reboot.scss +10 -0
  79. data/_sass/bootstrap/scss/bootstrap-utilities.scss +19 -0
  80. data/_sass/bootstrap/scss/bootstrap.scss +52 -0
  81. data/_sass/bootstrap/scss/forms/_floating-labels.scss +90 -0
  82. data/_sass/bootstrap/scss/forms/_form-check.scss +188 -0
  83. data/_sass/bootstrap/scss/forms/_form-control.scss +214 -0
  84. data/_sass/bootstrap/scss/forms/_form-range.scss +91 -0
  85. data/_sass/bootstrap/scss/forms/_form-select.scss +80 -0
  86. data/_sass/bootstrap/scss/forms/_form-text.scss +11 -0
  87. data/_sass/bootstrap/scss/forms/_input-group.scss +132 -0
  88. data/_sass/bootstrap/scss/forms/_labels.scss +36 -0
  89. data/_sass/bootstrap/scss/forms/_validation.scss +12 -0
  90. data/_sass/bootstrap/scss/helpers/_clearfix.scss +3 -0
  91. data/_sass/bootstrap/scss/helpers/_color-bg.scss +10 -0
  92. data/_sass/bootstrap/scss/helpers/_colored-links.scss +32 -0
  93. data/_sass/bootstrap/scss/helpers/_focus-ring.scss +5 -0
  94. data/_sass/bootstrap/scss/helpers/_icon-link.scss +25 -0
  95. data/_sass/bootstrap/scss/helpers/_position.scss +36 -0
  96. data/_sass/bootstrap/scss/helpers/_ratio.scss +26 -0
  97. data/_sass/bootstrap/scss/helpers/_stacks.scss +15 -0
  98. data/_sass/bootstrap/scss/helpers/_stretched-link.scss +15 -0
  99. data/_sass/bootstrap/scss/helpers/_text-truncation.scss +7 -0
  100. data/_sass/bootstrap/scss/helpers/_visually-hidden.scss +8 -0
  101. data/_sass/bootstrap/scss/helpers/_vr.scss +8 -0
  102. data/_sass/bootstrap/scss/mixins/_alert.scss +18 -0
  103. data/_sass/bootstrap/scss/mixins/_backdrop.scss +14 -0
  104. data/_sass/bootstrap/scss/mixins/_banner.scss +7 -0
  105. data/_sass/bootstrap/scss/mixins/_border-radius.scss +78 -0
  106. data/_sass/bootstrap/scss/mixins/_box-shadow.scss +18 -0
  107. data/_sass/bootstrap/scss/mixins/_breakpoints.scss +127 -0
  108. data/_sass/bootstrap/scss/mixins/_buttons.scss +70 -0
  109. data/_sass/bootstrap/scss/mixins/_caret.scss +69 -0
  110. data/_sass/bootstrap/scss/mixins/_clearfix.scss +9 -0
  111. data/_sass/bootstrap/scss/mixins/_color-mode.scss +21 -0
  112. data/_sass/bootstrap/scss/mixins/_color-scheme.scss +7 -0
  113. data/_sass/bootstrap/scss/mixins/_container.scss +11 -0
  114. data/_sass/bootstrap/scss/mixins/_deprecate.scss +10 -0
  115. data/_sass/bootstrap/scss/mixins/_forms.scss +153 -0
  116. data/_sass/bootstrap/scss/mixins/_gradients.scss +47 -0
  117. data/_sass/bootstrap/scss/mixins/_grid.scss +151 -0
  118. data/_sass/bootstrap/scss/mixins/_image.scss +16 -0
  119. data/_sass/bootstrap/scss/mixins/_list-group.scss +26 -0
  120. data/_sass/bootstrap/scss/mixins/_lists.scss +7 -0
  121. data/_sass/bootstrap/scss/mixins/_pagination.scss +10 -0
  122. data/_sass/bootstrap/scss/mixins/_reset-text.scss +17 -0
  123. data/_sass/bootstrap/scss/mixins/_resize.scss +6 -0
  124. data/_sass/bootstrap/scss/mixins/_table-variants.scss +24 -0
  125. data/_sass/bootstrap/scss/mixins/_text-truncate.scss +8 -0
  126. data/_sass/bootstrap/scss/mixins/_transition.scss +26 -0
  127. data/_sass/bootstrap/scss/mixins/_utilities.scss +97 -0
  128. data/_sass/bootstrap/scss/mixins/_visually-hidden.scss +33 -0
  129. data/_sass/bootstrap/scss/tests/jasmine.js +18 -0
  130. data/_sass/bootstrap/scss/tests/mixins/_color-modes.test.scss +69 -0
  131. data/_sass/bootstrap/scss/tests/mixins/_media-query-color-mode-full.test.scss +8 -0
  132. data/_sass/bootstrap/scss/tests/mixins/_utilities.test.scss +393 -0
  133. data/_sass/bootstrap/scss/tests/sass-true/register.js +15 -0
  134. data/_sass/bootstrap/scss/tests/sass-true/runner.js +19 -0
  135. data/_sass/bootstrap/scss/tests/utilities/_api.test.scss +75 -0
  136. data/_sass/bootstrap/scss/utilities/_api.scss +47 -0
  137. data/_sass/bootstrap/scss/vendor/_rfs.scss +354 -0
  138. data/assets/css/fonts/IBMPlexMono-Light.woff +0 -0
  139. data/assets/css/fonts/IBMPlexMono-Light.woff2 +0 -0
  140. data/assets/css/fonts/Jost-Bold.woff +0 -0
  141. data/assets/css/fonts/Jost-Bold.woff2 +0 -0
  142. data/assets/css/fonts/Jost-Italic.woff +0 -0
  143. data/assets/css/fonts/Jost-Italic.woff2 +0 -0
  144. data/assets/css/fonts/Jost-Regular.woff +0 -0
  145. data/assets/css/fonts/Jost-Regular.woff2 +0 -0
  146. data/assets/css/fonts/Jost-SemiBold.woff +0 -0
  147. data/assets/css/fonts/Jost-SemiBold.woff2 +0 -0
  148. data/assets/css/fonts/Ubuntu-Regular.woff +0 -0
  149. data/assets/css/fonts/Ubuntu-Regular.woff2 +0 -0
  150. data/assets/css/fonts/ZillaSlab-Regular.woff +0 -0
  151. data/assets/css/fonts/ZillaSlab-Regular.woff2 +0 -0
  152. data/assets/css/style.scss +31 -0
  153. data/assets/img/bootstrap-icons.svg +1 -0
  154. data/assets/img/ico-1.svg +17 -0
  155. data/assets/img/ico-2.svg +12 -0
  156. data/assets/img/ico-3.svg +18 -0
  157. data/assets/img/ico-4.svg +19 -0
  158. data/assets/img/ico-5.svg +13 -0
  159. data/assets/img/ico-6.svg +22 -0
  160. data/assets/img/ico-account.svg +17 -0
  161. data/assets/img/ico-clock.svg +23 -0
  162. data/assets/img/ico-facebook-square.svg +1 -0
  163. data/assets/img/ico-facebook.svg +11 -0
  164. data/assets/img/ico-github.svg +1 -0
  165. data/assets/img/ico-home.svg +11 -0
  166. data/assets/img/ico-instagram.svg +13 -0
  167. data/assets/img/ico-linkedin.svg +1 -0
  168. data/assets/img/ico-location.svg +12 -0
  169. data/assets/img/ico-mail.svg +12 -0
  170. data/assets/img/ico-moon.svg +11 -0
  171. data/assets/img/ico-pen.svg +13 -0
  172. data/assets/img/ico-phone.svg +12 -0
  173. data/assets/img/ico-search.svg +16 -0
  174. data/assets/img/ico-sun.svg +11 -0
  175. data/assets/img/ico-tag.svg +11 -0
  176. data/assets/img/ico-twitter.svg +1 -0
  177. data/assets/img/ico-whatsapp.svg +12 -0
  178. data/assets/img/ico-youtube.svg +1 -0
  179. data/assets/img/image-2.png +0 -0
  180. data/assets/img/image.jpg +0 -0
  181. data/assets/img/logo.png +0 -0
  182. data/assets/js/bootstrap.bundle.min.js +7 -0
  183. data/assets/js/functions.js +14 -0
  184. data/assets/js/jquery.min.js +2 -0
  185. data/assets/js/script.js +7 -0
  186. metadata +242 -0
@@ -0,0 +1,17 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg id="Design" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 42.26 42.58">
3
+ <defs>
4
+ <style>
5
+ .cls-1 {
6
+ fill: #d30b55;
7
+ }
8
+ </style>
9
+ </defs>
10
+ <path class="cls-1" d="m29.4,23.74c2.55-1.86,5.07-3.98,7.24-6.14,1.85-1.85,3.27-3.91,4.22-6.1,2.43-5.63.99-10.29.93-10.49-.08-.25-.28-.45-.53-.53-.2-.06-4.86-1.5-10.49.93-2.2.95-4.25,2.37-6.1,4.22-2.17,2.17-4.29,4.68-6.14,7.24-4.78-1.12-10.01.17-13.73,3.89-.39.39-.78.82-1.14,1.29-.2.26-.23.61-.08.89.16.29.47.45.79.42,3.23-.3,6.41.32,9.23,1.74-.15.33-.28.65-.41.96-.12.3-.05.65.18.88l.38.38c-.69.45-1.39,1-2.05,1.67-2.64,2.64-2.39,7.02-2.38,7.2.01.2.1.39.24.52s.32.22.52.24c.19.01,4.57.26,7.2-2.38.67-.67,1.22-1.36,1.67-2.05l.38.38c.23.23.58.3.88.18.31-.13.64-.26.96-.41,1.42,2.82,2.04,6,1.74,9.23-.02.24.07.48.23.65.05.05.12.1.19.14.29.16.64.13.89-.08.46-.37.9-.75,1.29-1.14,3.72-3.72,5.01-8.95,3.89-13.73Zm-9.04,3.51c-.09.04-.18.08-.27.12l-.36-.36-1.29-1.29-1.9-1.9-1.29-1.29-.36-.36c.04-.09.08-.18.12-.27.21-.48.45-.97.7-1.48.92-1.8,2.1-3.74,3.46-5.68.32-.46.65-.92,1-1.38,1.72-2.32,3.66-4.59,5.64-6.58,1.56-1.56,3.28-2.79,5.1-3.65l8.22,8.22c-.86,1.82-2.09,3.53-3.65,5.1-1.98,1.98-4.26,3.92-6.58,5.64-.46.34-.92.67-1.38,1-1.94,1.36-3.88,2.54-5.68,3.46-.5.26-1,.49-1.48.7ZM40.34,1.92c.24,1.08.71,4.14-.54,7.79l-7.25-7.25c3.64-1.24,6.7-.78,7.79-.54ZM6.2,17.66c3.11-2.95,7.34-4.06,11.3-3.34-1.24,1.81-2.33,3.62-3.2,5.31-2.5-1.25-5.26-1.93-8.1-1.97Zm9.92,11.76c-1.53,1.53-3.96,1.85-5.19,1.9.05-1.22.36-3.64,1.91-5.18.69-.69,1.41-1.23,2.09-1.63l2.82,2.82c-.4.69-.94,1.4-1.63,2.09Zm6.51-1.46c1.7-.87,3.5-1.96,5.31-3.2.72,3.96-.39,8.18-3.34,11.3-.04-2.84-.72-5.6-1.97-8.1Z"/>
11
+ <path class="cls-1" d="m32.03,10.23c-1.61-1.61-4.22-1.61-5.83,0s-1.61,4.22,0,5.83c1.61,1.61,4.22,1.61,5.83,0s1.61-4.22,0-5.83Zm-4.68,4.68c-.97-.97-.97-2.56,0-3.53.97-.97,2.56-.97,3.53,0s.97,2.56,0,3.53-2.56.97-3.53,0Z"/>
12
+ <path class="cls-1" d="m7.79,34.47c-.32-.32-.83-.32-1.15,0l-5.98,5.98c-.32.32-.32.83,0,1.15s.83.32,1.15,0l5.98-5.98c.32-.32.32-.83,0-1.15Z"/>
13
+ <path class="cls-1" d="m9.86,21.81c-.32-.32-.83-.32-1.15,0l-5.98,5.98c-.32.32-.32.83,0,1.15.32.32.83.32,1.15,0l5.98-5.98c.32-.32.32-.83,0-1.15Z"/>
14
+ <path class="cls-1" d="m7.37,29.3c-.32-.32-.83-.32-1.15,0L.24,35.29c-.32.32-.32.83,0,1.15s.83.32,1.15,0l5.98-5.98c.32-.32.32-.83,0-1.15Z"/>
15
+ <path class="cls-1" d="m20.76,32.72c-.32-.32-.83-.32-1.15,0l-5.98,5.98c-.32.32-.32.83,0,1.15.32.32.83.32,1.15,0l5.98-5.98c.32-.32.32-.83,0-1.15Z"/>
16
+ <path class="cls-1" d="m13.27,35.2c-.32-.32-.83-.32-1.15,0l-5.98,5.98c-.32.32-.32.83,0,1.15s.83.32,1.15,0l5.98-5.98c.32-.32.32-.83,0-1.15Z"/>
17
+ </svg>
@@ -0,0 +1,12 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg id="Design" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 41.71 34.62">
3
+ <defs>
4
+ <style>
5
+ .cls-1 {
6
+ fill: #d30b55;
7
+ }
8
+ </style>
9
+ </defs>
10
+ <path class="cls-1" d="m35.55,6.04h-12.31c-1.18,0-2.3-.51-3.08-1.4l-2.11-2.43c-1.22-1.4-2.98-2.21-4.84-2.21h-7.06C2.76,0,0,2.76,0,6.15v22.31c0,3.39,2.76,6.15,6.15,6.15h29.4c3.39,0,6.15-2.76,6.15-6.15V12.19c0-3.39-2.76-6.15-6.15-6.15Zm3.82,22.43c0,2.11-1.71,3.82-3.82,3.82H6.15c-2.11,0-3.82-1.71-3.82-3.82V6.15c0-2.11,1.71-3.82,3.82-3.82h7.06c1.18,0,2.31.51,3.08,1.4l2.11,2.43c1.22,1.4,2.98,2.21,4.84,2.21h12.31c2.11,0,3.82,1.71,3.82,3.82v16.27Z"/>
11
+ <path class="cls-1" d="m24.47,21.22l-2.45,2.45v-9.51c0-.64-.52-1.17-1.17-1.17s-1.17.52-1.17,1.17v9.51l-2.45-2.45c-.46-.46-1.19-.46-1.65,0-.46.46-.46,1.19,0,1.65l4.44,4.44s.06.05.09.08c.01.01.03.02.04.03.02.01.03.03.05.04.02.01.03.02.05.03.02,0,.03.02.05.03.02,0,.03.02.05.02.02,0,.03.02.05.02.02,0,.03.01.05.02.02,0,.04.01.06.02.02,0,.03,0,.05.01.02,0,.04.01.06.01.02,0,.04,0,.06,0,.02,0,.03,0,.05,0,.04,0,.08,0,.12,0s.08,0,.12,0c.02,0,.04,0,.05,0,.02,0,.04,0,.06,0,.02,0,.04,0,.06-.01.02,0,.03,0,.05-.01.02,0,.04-.01.06-.02.02,0,.03-.01.05-.02.02,0,.04-.02.05-.02.02,0,.03-.02.05-.02.02,0,.03-.02.05-.03.02,0,.03-.02.05-.03.02-.01.04-.03.05-.04.01,0,.03-.02.04-.03.03-.02.06-.05.09-.08l4.44-4.44c.46-.46.46-1.19,0-1.65s-1.19-.46-1.65,0Z"/>
12
+ </svg>
@@ -0,0 +1,18 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg id="Design" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 34.73 47.46">
3
+ <defs>
4
+ <style>
5
+ .cls-1 {
6
+ fill: none;
7
+ stroke: #d30b55;
8
+ stroke-linecap: round;
9
+ stroke-linejoin: round;
10
+ stroke-width: 2px;
11
+ }
12
+ </style>
13
+ </defs>
14
+ <path class="cls-1" d="m26.87,31.75c4.15,1.47,6.86,3.88,6.86,6.61,0,4.48-7.33,8.11-16.36,8.11S1,42.83,1,38.35c0-2.72,2.71-5.13,6.86-6.61"/>
15
+ <path class="cls-1" d="m16.46,35.17l-9.71-12.84C.13,13.56,6.38,1,17.36,1h0c10.99,0,17.24,12.56,10.61,21.32l-9.71,12.84c-.45.6-1.35.6-1.8,0Z"/>
16
+ <circle class="cls-1" cx="17.36" cy="14.17" r="7.01"/>
17
+ <path class="cls-1" d="m23.58,34.73c1.85.79,3.01,1.92,3.01,3.17,0,2.37-4.13,4.29-9.23,4.29s-9.23-1.92-9.23-4.29c0-1.26,1.16-2.39,3.01-3.17"/>
18
+ </svg>
@@ -0,0 +1,19 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg id="Design" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36.75 47.73">
3
+ <defs>
4
+ <style>
5
+ .cls-1 {
6
+ fill: #d30b55;
7
+ }
8
+ </style>
9
+ </defs>
10
+ <path class="cls-1" d="m32.67,3.5H4.08c-.87,0-1.68.28-2.35.75v-.51c0-1.11.9-2.01,2.01-2.01h29.27c.48,0,.86-.39.86-.86s-.39-.86-.86-.86H3.74C1.68,0,0,1.68,0,3.74v39.92c0,2.25,1.83,4.08,4.08,4.08h28.59c2.25,0,4.08-1.83,4.08-4.08V7.58c0-2.25-1.83-4.08-4.08-4.08Zm2.35,40.16c0,1.29-1.05,2.35-2.35,2.35H4.08c-1.29,0-2.35-1.05-2.35-2.35V7.58c0-1.29,1.05-2.35,2.35-2.35h28.59c1.29,0,2.35,1.05,2.35,2.35v36.08Z"/>
11
+ <path class="cls-1" d="m8.67,22.93c.11.05.23.07.35.07.33,0,.65-.19.79-.52l.7-1.61h3.94l.7,1.61c.14.32.46.52.79.52.12,0,.23-.02.35-.07.44-.19.64-.7.44-1.14l-.93-2.11s0,0,0,0l-2.54-5.79s0-.01,0-.02c0-.01-.01-.03-.02-.04,0-.01-.01-.02-.02-.04,0-.01-.02-.02-.02-.04,0-.01-.02-.02-.02-.03,0-.01-.02-.02-.03-.03,0-.01-.02-.02-.03-.03,0-.01-.02-.02-.03-.03s-.02-.02-.03-.03c-.01,0-.02-.02-.03-.03-.01,0-.02-.02-.03-.03-.01,0-.02-.02-.03-.02-.01,0-.02-.02-.04-.02-.01,0-.02-.01-.04-.02-.01,0-.03-.01-.04-.02,0,0-.01,0-.02,0,0,0-.01,0-.02,0-.01,0-.03-.01-.04-.02-.01,0-.03,0-.04-.01-.01,0-.03,0-.04-.01-.01,0-.03,0-.04-.01-.01,0-.02,0-.04,0-.02,0-.03,0-.05,0-.01,0-.02,0-.04,0-.02,0-.03,0-.05,0-.01,0-.03,0-.04,0-.01,0-.03,0-.04,0-.01,0-.03,0-.04,0-.01,0-.03,0-.04,0-.01,0-.03,0-.04,0-.01,0-.03,0-.04.01-.01,0-.03,0-.04.01-.01,0-.03.01-.04.02,0,0-.01,0-.02,0,0,0-.01,0-.02,0-.01,0-.03.01-.04.02-.01,0-.02.01-.03.02-.01,0-.02.02-.04.02-.01,0-.02.02-.03.02-.01,0-.02.02-.03.03-.01,0-.02.02-.03.03-.01,0-.02.02-.03.03,0,0-.02.02-.03.03,0,.01-.02.02-.03.03,0,.01-.02.02-.03.03,0,.01-.02.02-.02.03,0,.01-.02.02-.02.04,0,.01-.01.02-.02.03,0,.01-.01.03-.02.04,0,0,0,.01,0,.02l-2.54,5.79s0,0,0,0l-.93,2.11c-.19.44,0,.95.44,1.14Zm3.82-6.54l1.21,2.77h-2.43l1.21-2.77Z"/>
12
+ <path class="cls-1" d="m16.71,36.4H7.83c-.48,0-.86.39-.86.86s.39.86.86.86h8.88c.48,0,.86-.39.86-.86s-.39-.86-.86-.86Z"/>
13
+ <path class="cls-1" d="m16.71,32.33H7.83c-.48,0-.86.39-.86.86s.39.86.86.86h8.88c.48,0,.86-.39.86-.86s-.39-.86-.86-.86Z"/>
14
+ <path class="cls-1" d="m16.71,28.27H7.83c-.48,0-.86.39-.86.86s.39.86.86.86h8.88c.48,0,.86-.39.86-.86s-.39-.86-.86-.86Z"/>
15
+ <path class="cls-1" d="m28.87,21.26h-8.88c-.48,0-.86.39-.86.86s.39.86.86.86h8.88c.48,0,.86-.39.86-.86s-.39-.86-.86-.86Z"/>
16
+ <path class="cls-1" d="m28.87,17.19h-8.88c-.48,0-.86.39-.86.86s.39.86.86.86h8.88c.48,0,.86-.39.86-.86s-.39-.86-.86-.86Z"/>
17
+ <path class="cls-1" d="m28.87,13.12h-8.88c-.48,0-.86.39-.86.86s.39.86.86.86h8.88c.48,0,.86-.39.86-.86s-.39-.86-.86-.86Z"/>
18
+ <path class="cls-1" d="m27.85,29c-.22-.45-.67-.73-1.17-.73h-4.72c-.48,0-.86.39-.86.86s.39.86.86.86h3.86l-4.67,6.01c-.31.4-.36.92-.14,1.38.22.45.67.73,1.17.73h4.93c.48,0,.86-.39.86-.86s-.39-.86-.86-.86h-4.07l4.66-6.01c.31-.4.36-.92.14-1.38Z"/>
19
+ </svg>
@@ -0,0 +1,13 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg id="Design" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 44 44">
3
+ <defs>
4
+ <style>
5
+ .cls-1 {
6
+ fill: #d30b55;
7
+ }
8
+ </style>
9
+ </defs>
10
+ <path class="cls-1" d="m43.51,8.89s-1.07-.52-3.03-1V.95s0-.05,0-.07c0-.49-.39-.88-.88-.88h-1.76c-10.91,0-15.02,7.07-16.25,9.99-1.57-1.11-4.93-2.95-10.15-2.95-7.18,0-10.8,1.78-10.95,1.85-.3.15-.49.45-.49.79v31.68c0,.3.16.59.42.75.26.16.58.17.86.04.03-.02,3.45-1.67,10.17-1.67s9.91,3.23,9.94,3.26c.17.17.39.26.62.26.11,0,.23-.02.34-.07.11-.05.2-.12.28-.2h0s3.32-3.25,9.94-3.25,10.13,1.65,10.17,1.67c.27.14.6.12.86-.04.26-.16.42-.44.42-.75V9.68c0-.33-.19-.64-.49-.79Zm-5.67-7.13h.88v29.92h-.88c-8.49,0-12.86,4.28-14.96,7.56V11.56c.31-1.07,3.19-9.8,14.96-9.8ZM1.76,40.07V10.26c1.16-.45,4.4-1.46,9.68-1.46,5.54,0,8.78,2.3,9.68,3.04v29.5c-1.73-1.11-4.94-2.62-9.68-2.62s-8.04.8-9.68,1.35Zm40.48,0c-1.64-.55-4.86-1.35-9.68-1.35-3.86,0-6.7,1-8.56,1.98,1.68-2.94,5.56-7.26,13.84-7.26h1.77c.48,0,.88-.39.88-.88,0-.02,0-.05,0-.07V9.71c.79.21,1.39.41,1.76.55v29.81Z"/>
11
+ <path class="cls-1" d="m12.31,30.3c-.43.25-.99.49-1.16.5-.08,0-.13,0-.14,0,0-.04-.02-.15.02-.35.23-1.13.87-4.14,1.35-6.37l.35-1.65c.11-.52-.02-1.07-.36-1.49-.36-.44-.89-.69-1.47-.69h-.77c-.49,0-.88.39-.88.88s.39.88.88.88h.77c.07,0,.1.04.1.05l-.35,1.65c-.47,2.23-1.12,5.25-1.35,6.38-.19.93.08,1.51.34,1.83.24.3.7.65,1.51.65.74,0,1.76-.57,2.06-.74.42-.25.56-.79.31-1.2-.25-.42-.79-.56-1.2-.31Z"/>
12
+ <circle class="cls-1" cx="12.32" cy="16.72" r="1.76"/>
13
+ </svg>
@@ -0,0 +1,22 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg id="Design" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 40">
3
+ <defs>
4
+ <style>
5
+ .cls-1 {
6
+ fill: none;
7
+ stroke: #d30b55;
8
+ stroke-linecap: round;
9
+ stroke-linejoin: round;
10
+ stroke-width: 2px;
11
+ }
12
+ </style>
13
+ </defs>
14
+ <rect class="cls-1" x="1" y="1" width="46" height="38"/>
15
+ <line class="cls-1" x1="47" y1="9" x2="1" y2="9"/>
16
+ <line class="cls-1" x1="39" y1="5" x2="36" y2="5"/>
17
+ <line class="cls-1" x1="44" y1="5" x2="41" y2="5"/>
18
+ <line class="cls-1" x1="34" y1="5" x2="31" y2="5"/>
19
+ <line class="cls-1" x1="22" y1="5" x2="4" y2="5"/>
20
+ <polyline class="cls-1" points="9 17 16 24 9 31"/>
21
+ <line class="cls-1" x1="15" y1="31" x2="24" y2="31"/>
22
+ </svg>
@@ -0,0 +1,17 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg id="Design" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24.74 24.74">
3
+ <defs>
4
+ <style>
5
+ .cls-1 {
6
+ fill: none;
7
+ stroke: #fff;
8
+ stroke-linecap: round;
9
+ stroke-linejoin: round;
10
+ stroke-width: 1.5px;
11
+ }
12
+ </style>
13
+ </defs>
14
+ <circle class="cls-1" cx="12.37" cy="10.53" r="4.02"/>
15
+ <path class="cls-1" d="m20.81,20.31c-.22-2.26-1.93-4.08-4.13-4.48-1.24.81-2.73,1.27-4.32,1.27s-3.07-.47-4.32-1.27c-2.18.39-3.88,2.19-4.13,4.42"/>
16
+ <circle class="cls-1" cx="12.37" cy="12.37" r="11.62"/>
17
+ </svg>
@@ -0,0 +1,23 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg id="Design" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 19.87 19.87">
3
+ <defs>
4
+ <style>
5
+ .cls-1 {
6
+ fill: #fff;
7
+ }
8
+
9
+ .cls-2 {
10
+ fill: #d30b55;
11
+ }
12
+ </style>
13
+ </defs>
14
+ <g>
15
+ <path class="cls-2" d="m9.94,19.65c-1.31,0-2.58-.26-3.78-.76-1.16-.49-2.2-1.19-3.09-2.08-.89-.89-1.59-1.93-2.08-3.09-.51-1.2-.76-2.47-.76-3.78s.26-2.58.76-3.78c.49-1.16,1.19-2.2,2.08-3.09.89-.89,1.93-1.59,3.09-2.08,1.2-.51,2.47-.76,3.78-.76s2.58.26,3.78.76c1.16.49,2.2,1.19,3.09,2.08.89.89,1.59,1.93,2.08,3.09.51,1.2.76,2.47.76,3.78s-.26,2.58-.76,3.78c-.49,1.16-1.19,2.2-2.08,3.09-.89.89-1.93,1.59-3.09,2.08-1.2.51-2.47.76-3.78.76Z"/>
16
+ <path class="cls-2" d="m9.94,19.87c-1.34,0-2.64-.26-3.87-.78-1.18-.5-2.25-1.22-3.16-2.13-.91-.91-1.63-1.97-2.13-3.16-.52-1.23-.78-2.53-.78-3.87s.26-2.64.78-3.87c.5-1.18,1.22-2.25,2.13-3.16.91-.91,1.97-1.63,3.16-2.13,1.23-.52,2.53-.78,3.87-.78s2.64.26,3.87.78c1.18.5,2.25,1.22,3.16,2.13.91.91,1.63,1.97,2.13,3.16.52,1.23.78,2.53.78,3.87s-.26,2.64-.78,3.87c-.5,1.18-1.22,2.25-2.13,3.16-.91.91-1.97,1.63-3.16,2.13-1.23.52-2.53.78-3.87.78ZM9.94.45c-1.28,0-2.52.25-3.69.75-1.13.48-2.14,1.16-3.02,2.03-.87.87-1.56,1.89-2.03,3.02-.5,1.17-.75,2.41-.75,3.69s.25,2.52.75,3.69c.48,1.13,1.16,2.14,2.03,3.02.87.87,1.89,1.56,3.02,2.03,1.17.5,2.41.75,3.69.75s2.52-.25,3.69-.75c1.13-.48,2.14-1.16,3.02-2.03.87-.87,1.56-1.89,2.03-3.02.5-1.17.75-2.41.75-3.69s-.25-2.52-.75-3.69c-.48-1.13-1.16-2.14-2.03-3.02-.87-.87-1.89-1.56-3.02-2.03-1.17-.5-2.41-.75-3.69-.75Z"/>
17
+ </g>
18
+ <circle class="cls-1" cx="9.94" cy="9.94" r="8.68"/>
19
+ <g>
20
+ <path class="cls-2" d="m9.94,10.55h4.9c.21,0,.39-.17.39-.39s-.17-.39-.39-.39h-4.51V3.42c0-.21-.17-.39-.39-.39s-.39.17-.39.39v6.75c0,.21.17.39.39.39Z"/>
21
+ <path class="cls-2" d="m14.84,10.78h-4.9c-.34,0-.61-.27-.61-.61V3.42c0-.34.27-.61.61-.61s.61.27.61.61v6.14h4.29c.34,0,.61.27.61.61s-.27.61-.61.61Zm-4.9-7.52c-.09,0-.16.07-.16.16v6.75c0,.09.07.16.16.16h4.9c.09,0,.16-.07.16-.16s-.07-.16-.16-.16h-4.74V3.42c0-.09-.07-.16-.16-.16Z"/>
22
+ </g>
23
+ </svg>
@@ -0,0 +1 @@
1
+ <svg fill="#a9a9a9" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Pro 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M400 32H48A48 48 0 0 0 0 80v352a48 48 0 0 0 48 48h137.25V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.27c-30.81 0-40.42 19.12-40.42 38.73V256h68.78l-11 71.69h-57.78V480H400a48 48 0 0 0 48-48V80a48 48 0 0 0-48-48z"/></svg>
@@ -0,0 +1,11 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg id="Design" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20.23 20.18">
3
+ <defs>
4
+ <style>
5
+ .cls-1 {
6
+ fill: #b11c89;
7
+ }
8
+ </style>
9
+ </defs>
10
+ <path class="cls-1" d="m0,10.71c0-.4,0-.79,0-1.19.01-.06.03-.13.04-.19.05-.76.2-1.5.42-2.22C2.13,1.78,7.77-1.19,13.1.45c5.05,1.55,8.09,6.78,6.86,11.92-.88,3.69-3.21,6.14-6.8,7.37-.58.2-1.19.29-1.81.44v-7.97h2.42c.12-.95.24-1.87.37-2.82h-2.79c0-.7-.01-1.38,0-2.06,0-.19.06-.39.15-.57.18-.38.54-.51.93-.53.53-.03,1.05-.02,1.58-.03.07,0,.14,0,.22-.01,0-.81,0-1.6,0-2.39,0-.05-.09-.13-.14-.13-.8-.04-1.6-.1-2.41-.08-.76.02-1.47.27-2.07.77-.78.66-1.11,1.53-1.17,2.52-.04.75-.02,1.5-.03,2.25,0,.08,0,.15,0,.25h-2.42v2.83h2.41v7.83s-.05,0-.07,0c-.89-.15-1.74-.43-2.55-.81-1.53-.73-2.8-1.76-3.81-3.12-.94-1.27-1.57-2.69-1.84-4.25-.07-.39-.11-.78-.16-1.17Z"/>
11
+ </svg>
@@ -0,0 +1 @@
1
+ <svg fill="#a9a9a9" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Pro 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"/></svg>
@@ -0,0 +1,11 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg id="Design" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18.9 17.2">
3
+ <defs>
4
+ <style>
5
+ .cls-1 {
6
+ fill: #b11c89;
7
+ }
8
+ </style>
9
+ </defs>
10
+ <path class="cls-1" d="m18.71,9.12l-3.55-3.59V1.14c0-.13-.11-.24-.24-.24h-1.71c-.13,0-.24.11-.24.24v2.19L9.81.13c-.17-.17-.45-.17-.63,0L.19,9.12c-.26.26-.26.67,0,.93.18.18.44.23.67.16h0s1.87-.64,1.87-.64v7.09c0,.3.24.54.54.54h3.53c.3,0,.54-.24.54-.54v-5.38h4.28v5.38c0,.3.24.54.54.54h3.53c.3,0,.54-.24.54-.54v-7.06l1.75.6c.24.09.51.04.7-.15.26-.26.26-.67,0-.93Z"/>
11
+ </svg>
@@ -0,0 +1,13 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg id="Design" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20.6 20.59">
3
+ <defs>
4
+ <style>
5
+ .cls-1 {
6
+ fill: #b11c89;
7
+ }
8
+ </style>
9
+ </defs>
10
+ <path class="cls-1" d="m5.27,0C8.62,0,11.97,0,15.32,0c.07.01.13.03.2.04.56.06,1.11.19,1.62.43,2.21,1.05,3.4,2.8,3.44,5.24.04,3.05.01,6.11,0,9.17,0,1.18-.32,2.28-1.01,3.25-1.17,1.64-2.77,2.46-4.78,2.46-3,0-6,0-9,0-.39,0-.78-.02-1.16-.1-2.33-.51-3.82-1.93-4.46-4.23-.08-.3-.11-.62-.17-.93,0-3.35,0-6.7,0-10.05.03-.21.06-.42.1-.63C.63,2.3,2.04.81,4.34.17,4.64.09,4.96.05,5.27,0Zm13.49,10.31c0-1.49,0-2.99,0-4.48,0-.47-.05-.94-.21-1.38-.58-1.63-1.98-2.62-3.75-2.62-3,0-6-.01-9,0-.45,0-.92.07-1.34.21-1.65.55-2.63,1.98-2.63,3.76,0,2.99,0,5.99,0,8.98,0,.45.06.92.21,1.34.55,1.64,1.97,2.63,3.74,2.63,3.01,0,6.03,0,9.04,0,1.34,0,2.43-.54,3.22-1.62.51-.7.72-1.5.72-2.36,0-1.49,0-2.97,0-4.46Z"/>
11
+ <path class="cls-1" d="m10.29,15.6c-2.92,0-5.31-2.4-5.3-5.31,0-2.92,2.41-5.31,5.32-5.3,2.92.02,5.29,2.39,5.29,5.3,0,2.91-2.4,5.31-5.31,5.31Zm3.48-5.3c.01-1.91-1.54-3.47-3.47-3.48-1.91-.01-3.47,1.54-3.48,3.47-.01,1.91,1.54,3.47,3.47,3.48,1.91.01,3.47-1.54,3.48-3.47Z"/>
12
+ <path class="cls-1" d="m15.82,3.45c.74,0,1.35.61,1.34,1.34,0,.73-.61,1.33-1.34,1.33-.74,0-1.35-.61-1.34-1.34,0-.73.61-1.32,1.34-1.32Z"/>
13
+ </svg>
@@ -0,0 +1 @@
1
+ <svg fill="#a9a9a9" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Pro 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z"/></svg>
@@ -0,0 +1,12 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg id="Design" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14.33 19.71">
3
+ <defs>
4
+ <style>
5
+ .cls-1 {
6
+ fill: #d30b55;
7
+ fill-rule: evenodd;
8
+ }
9
+ </style>
10
+ </defs>
11
+ <path class="cls-1" d="m7.16,3.74c1.89,0,3.42,1.53,3.42,3.42s-1.53,3.42-3.42,3.42-3.42-1.53-3.42-3.42,1.53-3.42,3.42-3.42m0-3.74c3.96,0,7.16,3.21,7.16,7.16,0,.15,0,.31-.01.46h0s0,.09,0,.09h0c-.32,4.66-4.66,8.98-7.42,12C4.52,16.83,1.18,12.72.25,9.05c-.16-.6-.25-1.23-.25-1.88C0,3.21,3.21,0,7.16,0Z"/>
12
+ </svg>
@@ -0,0 +1,12 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg id="Design" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20.59 13.91">
3
+ <defs>
4
+ <style>
5
+ .cls-1 {
6
+ fill: #d30b55;
7
+ fill-rule: evenodd;
8
+ }
9
+ </style>
10
+ </defs>
11
+ <path class="cls-1" d="m1.08,1.79l5.95,4.99L1.08,11.76V1.79Zm17.45-.71l-8.17,6.85s-.03.01-.05,0L2.14,1.08h16.39Zm.98,10.68l-5.95-4.99,5.95-4.99v9.97Zm-6.85-4.22l6.31,5.29H1.63l6.31-5.29,2.04,1.71c.18.15.46.15.63,0l2.04-1.71ZM.82,0h18.94c.45,0,.82.37.82.82v12.27c0,.45-.37.82-.82.82H.82c-.45,0-.82-.37-.82-.82V.82c0-.45.37-.82.82-.82Z"/>
12
+ </svg>
@@ -0,0 +1,11 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg id="Design" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15.22 15.22">
3
+ <defs>
4
+ <style>
5
+ .cls-1 {
6
+ fill: #fff;
7
+ }
8
+ </style>
9
+ </defs>
10
+ <path class="cls-1" d="m15.21,9.54c-.22.81-.57,1.57-1.05,2.27-.46.69-1.03,1.29-1.69,1.8-.66.51-1.4.91-2.19,1.19-.82.28-1.67.43-2.54.43-1.04,0-2.06-.2-3.01-.61-.92-.39-1.75-.95-2.46-1.66-.71-.71-1.27-1.54-1.66-2.46-.4-.95-.61-1.97-.61-3.01,0-.87.14-1.73.43-2.54.27-.79.67-1.53,1.19-2.19.51-.66,1.11-1.22,1.8-1.69C4.11.59,4.88.24,5.69.02c.18-.05.36.02.47.17.1.15.09.35-.02.5-.84,1.06-1.28,2.34-1.28,3.7,0,3.3,2.68,5.98,5.98,5.98,1.36,0,2.64-.44,3.7-1.28.14-.11.34-.12.5-.02.15.1.22.29.17.47Z"/>
11
+ </svg>
@@ -0,0 +1,13 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg id="Design" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 17.02 17.02">
3
+ <defs>
4
+ <style>
5
+ .cls-1 {
6
+ fill: #b11c89;
7
+ }
8
+ </style>
9
+ </defs>
10
+ <polygon class="cls-1" points="1.59 13.04 0 17.02 3.98 15.43 1.59 13.04"/>
11
+ <rect class="cls-1" x="1.32" y="7.16" width="13.15" height="3.94" transform="translate(-4.14 8.26) rotate(-45)"/>
12
+ <path class="cls-1" d="m14.04,5.77l2.49-2.49c.6-.6.67-1.5.15-2.01l-.93-.93c-.23-.23-.54-.34-.86-.34-.4,0-.82.17-1.14.5l-1.11,1.11,2.78,2.78-.46.46-2.78-2.78-.55.55,2.78,2.78-.37.37Z"/>
13
+ </svg>
@@ -0,0 +1,12 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg id="Design" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13.12 16.06">
3
+ <defs>
4
+ <style>
5
+ .cls-1 {
6
+ fill: #d30b55;
7
+ fill-rule: evenodd;
8
+ }
9
+ </style>
10
+ </defs>
11
+ <path class="cls-1" d="m5.3,4.07c-.2-1.96-.31-3.06-.34-3.31C4.86-.19,2.88-.11,2.14.24-.98,1.72-.09,5.92,1.05,8.45c2.16,4.17,4.55,6.6,7.18,7.31,2.06.73,4.72.23,4.89-2.32.02-.35-.01-.63-.1-.85-.16-.33-1.31-.94-3.45-1.83-.42-.15-.9.02-1.46.51-.08.07-.17.14-.25.19-.41.26-.64.29-1.01,0-1.14-.88-2.88-3.99-3.24-4.92-.09-.37.07-.66.49-.87.8-.36,1.21-.89,1.21-1.59"/>
12
+ </svg>
@@ -0,0 +1,16 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg id="Design" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18.93 18.7">
3
+ <defs>
4
+ <style>
5
+ .cls-1 {
6
+ fill: none;
7
+ stroke: #fff;
8
+ stroke-linecap: round;
9
+ stroke-linejoin: round;
10
+ stroke-width: 1.5px;
11
+ }
12
+ </style>
13
+ </defs>
14
+ <circle class="cls-1" cx="7.4" cy="7.4" r="6.65"/>
15
+ <line class="cls-1" x1="11.86" y1="12.32" x2="18.18" y2="17.95"/>
16
+ </svg>
@@ -0,0 +1,11 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg id="Design" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 19.7 19.7">
3
+ <defs>
4
+ <style>
5
+ .cls-1 {
6
+ fill: #fff;
7
+ }
8
+ </style>
9
+ </defs>
10
+ <path class="cls-1" d="m15.46,9.85c0,3.1-2.51,5.61-5.61,5.61s-5.61-2.51-5.61-5.61,2.51-5.61,5.61-5.61,5.61,2.51,5.61,5.61Zm-5.19-7.2V.42c0-.23-.19-.42-.42-.42s-.42.19-.42.42v2.22c0,.23.19.42.42.42s.42-.19.42-.42Zm-3.81,1.33c.2-.12.27-.38.16-.58l-1.11-1.93c-.12-.2-.38-.27-.58-.16-.2.12-.27.38-.16.58l1.11,1.93c.08.14.22.21.37.21.07,0,.15-.02.21-.06Zm-2.48,2.48c.12-.2.05-.46-.16-.58l-1.93-1.11c-.2-.12-.46-.05-.58.16-.12.2-.05.46.16.58l1.93,1.11c.07.04.14.06.21.06.15,0,.29-.08.37-.21Zm-.91,3.39c0-.23-.19-.42-.42-.42H.42c-.23,0-.42.19-.42.42s.19.42.42.42h2.22c.23,0,.42-.19.42-.42Zm-1.17,5.08l1.93-1.11c.2-.12.27-.38.16-.58-.12-.2-.38-.27-.58-.16l-1.93,1.11c-.2.12-.27.38-.16.58.08.14.22.21.37.21.07,0,.15-.02.21-.06Zm3.61,3.3l1.11-1.93c.12-.2.05-.46-.16-.58-.2-.12-.46-.05-.58.16l-1.11,1.93c-.12.2-.05.46.16.58.07.04.14.06.21.06.15,0,.29-.08.37-.21Zm4.77,1.05v-2.22c0-.23-.19-.42-.42-.42s-.42.19-.42.42v2.22c0,.23.19.42.42.42s.42-.19.42-.42Zm4.5-.9c.2-.12.27-.38.16-.58l-1.11-1.93c-.12-.2-.38-.27-.58-.16-.2.12-.27.38-.16.58l1.11,1.93c.08.14.22.21.37.21.07,0,.15-.02.21-.06Zm3.61-3.61c.12-.2.05-.46-.16-.58l-1.93-1.11c-.2-.12-.46-.05-.58.16-.12.2-.05.46.16.58l1.93,1.11c.07.04.14.06.21.06.15,0,.29-.08.37-.21Zm1.32-4.93c0-.23-.19-.42-.42-.42h-2.22c-.23,0-.42.19-.42.42s.19.42.42.42h2.22c.23,0,.42-.19.42-.42Zm-3.4-3.23l1.93-1.11c.2-.12.27-.38.16-.58-.12-.2-.38-.27-.58-.16l-1.93,1.11c-.2.12-.27.38-.16.58.08.14.22.21.37.21.07,0,.15-.02.21-.06Zm-2.48-2.79l1.11-1.93c.12-.2.05-.46-.16-.58-.2-.12-.46-.05-.58.16l-1.11,1.93c-.12.2-.05.46.16.58.07.04.14.06.21.06.15,0,.29-.08.37-.21Z"/>
11
+ </svg>
@@ -0,0 +1,11 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg id="Design" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15.25 15.25">
3
+ <defs>
4
+ <style>
5
+ .cls-1 {
6
+ fill: #b11c89;
7
+ }
8
+ </style>
9
+ </defs>
10
+ <path class="cls-1" d="m15.01,8.17L7.41.57c-.31-.31-.93-.57-1.38-.57H.81c-.44,0-.81.36-.81.81v5.23c0,.44.26,1.06.57,1.38l7.6,7.6c.31.31.83.31,1.14,0l5.7-5.7c.31-.31.31-.83,0-1.14ZM2.21,3c-.43,0-.78-.35-.78-.78s.35-.78.78-.78.78.35.78.78-.35.78-.78.78Z"/>
11
+ </svg>
@@ -0,0 +1 @@
1
+ <svg fill="#a9a9a9" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Pro 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z"/></svg>
@@ -0,0 +1,12 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg id="Design" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 19.85 19.95">
3
+ <defs>
4
+ <style>
5
+ .cls-1 {
6
+ fill: #b11c89;
7
+ }
8
+ </style>
9
+ </defs>
10
+ <path class="cls-1" d="m9.34,0h1.25c.06.01.11.03.17.03.47.07.96.11,1.42.22,5.23,1.21,8.56,6.34,7.48,11.6-1.32,6.43-8.36,9.87-14.28,6.8-.08-.04-.19-.05-.27-.03-1.24.32-2.47.64-3.71.97-.45.12-.91.24-1.39.36.02-.09.03-.14.05-.2.43-1.58.87-3.16,1.29-4.75.03-.1.01-.23-.04-.32C.13,12.5-.21,10.2.3,7.78,1.12,3.9,4.34.81,8.26.15c.36-.06.72-.1,1.08-.15ZM2.37,17.59c.09-.02.14-.03.2-.04.9-.24,1.81-.47,2.71-.71.14-.04.25-.02.38.05,1.27.78,2.65,1.19,4.13,1.22,1.97.03,3.76-.54,5.29-1.8,2.4-1.98,3.41-4.55,3.01-7.64-.21-1.61-.88-3.04-1.98-4.24-2-2.18-4.48-3.08-7.41-2.66-2,.29-3.68,1.25-4.98,2.79-1.59,1.88-2.2,4.06-1.89,6.49.16,1.19.58,2.3,1.24,3.31.1.15.12.28.07.45-.15.49-.28.99-.41,1.48-.12.42-.23.85-.35,1.3Z"/>
11
+ <path class="cls-1" d="m6.78,5.33c.43-.11.62.17.77.56.22.57.46,1.14.71,1.71.07.17.09.33-.02.48-.19.27-.39.54-.61.8-.17.21-.19.31-.05.54.8,1.36,1.93,2.33,3.39,2.91.23.09.34.07.5-.12.25-.3.49-.6.73-.91.17-.22.28-.28.53-.16.7.32,1.39.65,2.07.99.09.04.17.2.17.3,0,.69-.19,1.29-.81,1.71-.84.56-1.72.6-2.66.33-2.35-.67-4.08-2.17-5.48-4.12-.43-.6-.81-1.22-.99-1.95-.26-1.1,0-2.04.82-2.83.25-.24.56-.28.93-.25Z"/>
12
+ </svg>
@@ -0,0 +1 @@
1
+ <svg fill="#a9a9a9" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Pro 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z"/></svg>
Binary file
Binary file
Binary file
@@ -0,0 +1,7 @@
1
+ /*!
2
+ * Bootstrap v5.3.0-alpha2 (https://getbootstrap.com/)
3
+ * Copyright 2011-2023 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
4
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
5
+ */
6
+ !function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(t="undefined"!=typeof globalThis?globalThis:t||self).bootstrap=e()}(this,(function(){"use strict";const t="transitionend",e=t=>(t&&window.CSS&&window.CSS.escape&&(t=t.replace(/#([^\s"#']+)/g,((t,e)=>`#${CSS.escape(e)}`))),t),i=e=>{e.dispatchEvent(new Event(t))},n=t=>!(!t||"object"!=typeof t)&&(void 0!==t.jquery&&(t=t[0]),void 0!==t.nodeType),s=t=>n(t)?t.jquery?t[0]:t:"string"==typeof t&&t.length>0?document.querySelector(e(t)):null,o=t=>{if(!n(t)||0===t.getClientRects().length)return!1;const e="visible"===getComputedStyle(t).getPropertyValue("visibility"),i=t.closest("details:not([open])");if(!i)return e;if(i!==t){const e=t.closest("summary");if(e&&e.parentNode!==i)return!1;if(null===e)return!1}return e},r=t=>!t||t.nodeType!==Node.ELEMENT_NODE||!!t.classList.contains("disabled")||(void 0!==t.disabled?t.disabled:t.hasAttribute("disabled")&&"false"!==t.getAttribute("disabled")),a=t=>{if(!document.documentElement.attachShadow)return null;if("function"==typeof t.getRootNode){const e=t.getRootNode();return e instanceof ShadowRoot?e:null}return t instanceof ShadowRoot?t:t.parentNode?a(t.parentNode):null},l=()=>{},c=t=>{t.offsetHeight},h=()=>window.jQuery&&!document.body.hasAttribute("data-bs-no-jquery")?window.jQuery:null,d=[],u=()=>"rtl"===document.documentElement.dir,f=t=>{var e;e=()=>{const e=h();if(e){const i=t.NAME,n=e.fn[i];e.fn[i]=t.jQueryInterface,e.fn[i].Constructor=t,e.fn[i].noConflict=()=>(e.fn[i]=n,t.jQueryInterface)}},"loading"===document.readyState?(d.length||document.addEventListener("DOMContentLoaded",(()=>{for(const t of d)t()})),d.push(e)):e()},p=(t,e=[],i=t)=>"function"==typeof t?t(...e):i,m=(e,n,s=!0)=>{if(!s)return void p(e);const o=(t=>{if(!t)return 0;let{transitionDuration:e,transitionDelay:i}=window.getComputedStyle(t);const n=Number.parseFloat(e),s=Number.parseFloat(i);return n||s?(e=e.split(",")[0],i=i.split(",")[0],1e3*(Number.parseFloat(e)+Number.parseFloat(i))):0})(n)+5;let r=!1;const a=({target:i})=>{i===n&&(r=!0,n.removeEventListener(t,a),p(e))};n.addEventListener(t,a),setTimeout((()=>{r||i(n)}),o)},g=(t,e,i,n)=>{const s=t.length;let o=t.indexOf(e);return-1===o?!i&&n?t[s-1]:t[0]:(o+=i?1:-1,n&&(o=(o+s)%s),t[Math.max(0,Math.min(o,s-1))])},_=/[^.]*(?=\..*)\.|.*/,b=/\..*/,v=/::\d+$/,y={};let w=1;const A={mouseenter:"mouseover",mouseleave:"mouseout"},E=new Set(["click","dblclick","mouseup","mousedown","contextmenu","mousewheel","DOMMouseScroll","mouseover","mouseout","mousemove","selectstart","selectend","keydown","keypress","keyup","orientationchange","touchstart","touchmove","touchend","touchcancel","pointerdown","pointermove","pointerup","pointerleave","pointercancel","gesturestart","gesturechange","gestureend","focus","blur","change","reset","select","submit","focusin","focusout","load","unload","beforeunload","resize","move","DOMContentLoaded","readystatechange","error","abort","scroll"]);function T(t,e){return e&&`${e}::${w++}`||t.uidEvent||w++}function C(t){const e=T(t);return t.uidEvent=e,y[e]=y[e]||{},y[e]}function O(t,e,i=null){return Object.values(t).find((t=>t.callable===e&&t.delegationSelector===i))}function x(t,e,i){const n="string"==typeof e,s=n?i:e||i;let o=D(t);return E.has(o)||(o=t),[n,s,o]}function k(t,e,i,n,s){if("string"!=typeof e||!t)return;let[o,r,a]=x(e,i,n);if(e in A){const t=t=>function(e){if(!e.relatedTarget||e.relatedTarget!==e.delegateTarget&&!e.delegateTarget.contains(e.relatedTarget))return t.call(this,e)};r=t(r)}const l=C(t),c=l[a]||(l[a]={}),h=O(c,r,o?i:null);if(h)return void(h.oneOff=h.oneOff&&s);const d=T(r,e.replace(_,"")),u=o?function(t,e,i){return function n(s){const o=t.querySelectorAll(e);for(let{target:r}=s;r&&r!==this;r=r.parentNode)for(const a of o)if(a===r)return N(s,{delegateTarget:r}),n.oneOff&&I.off(t,s.type,e,i),i.apply(r,[s])}}(t,i,r):function(t,e){return function i(n){return N(n,{delegateTarget:t}),i.oneOff&&I.off(t,n.type,e),e.apply(t,[n])}}(t,r);u.delegationSelector=o?i:null,u.callable=r,u.oneOff=s,u.uidEvent=d,c[d]=u,t.addEventListener(a,u,o)}function L(t,e,i,n,s){const o=O(e[i],n,s);o&&(t.removeEventListener(i,o,Boolean(s)),delete e[i][o.uidEvent])}function S(t,e,i,n){const s=e[i]||{};for(const[o,r]of Object.entries(s))o.includes(n)&&L(t,e,i,r.callable,r.delegationSelector)}function D(t){return t=t.replace(b,""),A[t]||t}const I={on(t,e,i,n){k(t,e,i,n,!1)},one(t,e,i,n){k(t,e,i,n,!0)},off(t,e,i,n){if("string"!=typeof e||!t)return;const[s,o,r]=x(e,i,n),a=r!==e,l=C(t),c=l[r]||{},h=e.startsWith(".");if(void 0===o){if(h)for(const i of Object.keys(l))S(t,l,i,e.slice(1));for(const[i,n]of Object.entries(c)){const s=i.replace(v,"");a&&!e.includes(s)||L(t,l,r,n.callable,n.delegationSelector)}}else{if(!Object.keys(c).length)return;L(t,l,r,o,s?i:null)}},trigger(t,e,i){if("string"!=typeof e||!t)return null;const n=h();let s=null,o=!0,r=!0,a=!1;e!==D(e)&&n&&(s=n.Event(e,i),n(t).trigger(s),o=!s.isPropagationStopped(),r=!s.isImmediatePropagationStopped(),a=s.isDefaultPrevented());let l=new Event(e,{bubbles:o,cancelable:!0});return l=N(l,i),a&&l.preventDefault(),r&&t.dispatchEvent(l),l.defaultPrevented&&s&&s.preventDefault(),l}};function N(t,e={}){for(const[i,n]of Object.entries(e))try{t[i]=n}catch(e){Object.defineProperty(t,i,{configurable:!0,get:()=>n})}return t}const P=new Map,j={set(t,e,i){P.has(t)||P.set(t,new Map);const n=P.get(t);n.has(e)||0===n.size?n.set(e,i):console.error(`Bootstrap doesn't allow more than one instance per element. Bound instance: ${Array.from(n.keys())[0]}.`)},get:(t,e)=>P.has(t)&&P.get(t).get(e)||null,remove(t,e){if(!P.has(t))return;const i=P.get(t);i.delete(e),0===i.size&&P.delete(t)}};function M(t){if("true"===t)return!0;if("false"===t)return!1;if(t===Number(t).toString())return Number(t);if(""===t||"null"===t)return null;if("string"!=typeof t)return t;try{return JSON.parse(decodeURIComponent(t))}catch(e){return t}}function F(t){return t.replace(/[A-Z]/g,(t=>`-${t.toLowerCase()}`))}const H={setDataAttribute(t,e,i){t.setAttribute(`data-bs-${F(e)}`,i)},removeDataAttribute(t,e){t.removeAttribute(`data-bs-${F(e)}`)},getDataAttributes(t){if(!t)return{};const e={},i=Object.keys(t.dataset).filter((t=>t.startsWith("bs")&&!t.startsWith("bsConfig")));for(const n of i){let i=n.replace(/^bs/,"");i=i.charAt(0).toLowerCase()+i.slice(1,i.length),e[i]=M(t.dataset[n])}return e},getDataAttribute:(t,e)=>M(t.getAttribute(`data-bs-${F(e)}`))};class ${static get Default(){return{}}static get DefaultType(){return{}}static get NAME(){throw new Error('You have to implement the static method "NAME", for each component!')}_getConfig(t){return t=this._mergeConfigObj(t),t=this._configAfterMerge(t),this._typeCheckConfig(t),t}_configAfterMerge(t){return t}_mergeConfigObj(t,e){const i=n(e)?H.getDataAttribute(e,"config"):{};return{...this.constructor.Default,..."object"==typeof i?i:{},...n(e)?H.getDataAttributes(e):{},..."object"==typeof t?t:{}}}_typeCheckConfig(t,e=this.constructor.DefaultType){for(const[s,o]of Object.entries(e)){const e=t[s],r=n(e)?"element":null==(i=e)?`${i}`:Object.prototype.toString.call(i).match(/\s([a-z]+)/i)[1].toLowerCase();if(!new RegExp(o).test(r))throw new TypeError(`${this.constructor.NAME.toUpperCase()}: Option "${s}" provided type "${r}" but expected type "${o}".`)}var i}}class W extends ${constructor(t,e){super(),(t=s(t))&&(this._element=t,this._config=this._getConfig(e),j.set(this._element,this.constructor.DATA_KEY,this))}dispose(){j.remove(this._element,this.constructor.DATA_KEY),I.off(this._element,this.constructor.EVENT_KEY);for(const t of Object.getOwnPropertyNames(this))this[t]=null}_queueCallback(t,e,i=!0){m(t,e,i)}_getConfig(t){return t=this._mergeConfigObj(t,this._element),t=this._configAfterMerge(t),this._typeCheckConfig(t),t}static getInstance(t){return j.get(s(t),this.DATA_KEY)}static getOrCreateInstance(t,e={}){return this.getInstance(t)||new this(t,"object"==typeof e?e:null)}static get VERSION(){return"5.3.0-alpha2"}static get DATA_KEY(){return`bs.${this.NAME}`}static get EVENT_KEY(){return`.${this.DATA_KEY}`}static eventName(t){return`${t}${this.EVENT_KEY}`}}const B=t=>{let i=t.getAttribute("data-bs-target");if(!i||"#"===i){let e=t.getAttribute("href");if(!e||!e.includes("#")&&!e.startsWith("."))return null;e.includes("#")&&!e.startsWith("#")&&(e=`#${e.split("#")[1]}`),i=e&&"#"!==e?e.trim():null}return e(i)},z={find:(t,e=document.documentElement)=>[].concat(...Element.prototype.querySelectorAll.call(e,t)),findOne:(t,e=document.documentElement)=>Element.prototype.querySelector.call(e,t),children:(t,e)=>[].concat(...t.children).filter((t=>t.matches(e))),parents(t,e){const i=[];let n=t.parentNode.closest(e);for(;n;)i.push(n),n=n.parentNode.closest(e);return i},prev(t,e){let i=t.previousElementSibling;for(;i;){if(i.matches(e))return[i];i=i.previousElementSibling}return[]},next(t,e){let i=t.nextElementSibling;for(;i;){if(i.matches(e))return[i];i=i.nextElementSibling}return[]},focusableChildren(t){const e=["a","button","input","textarea","select","details","[tabindex]",'[contenteditable="true"]'].map((t=>`${t}:not([tabindex^="-"])`)).join(",");return this.find(e,t).filter((t=>!r(t)&&o(t)))},getSelectorFromElement(t){const e=B(t);return e&&z.findOne(e)?e:null},getElementFromSelector(t){const e=B(t);return e?z.findOne(e):null},getMultipleElementsFromSelector(t){const e=B(t);return e?z.find(e):[]}},R=(t,e="hide")=>{const i=`click.dismiss${t.EVENT_KEY}`,n=t.NAME;I.on(document,i,`[data-bs-dismiss="${n}"]`,(function(i){if(["A","AREA"].includes(this.tagName)&&i.preventDefault(),r(this))return;const s=z.getElementFromSelector(this)||this.closest(`.${n}`);t.getOrCreateInstance(s)[e]()}))};class q extends W{static get NAME(){return"alert"}close(){if(I.trigger(this._element,"close.bs.alert").defaultPrevented)return;this._element.classList.remove("show");const t=this._element.classList.contains("fade");this._queueCallback((()=>this._destroyElement()),this._element,t)}_destroyElement(){this._element.remove(),I.trigger(this._element,"closed.bs.alert"),this.dispose()}static jQueryInterface(t){return this.each((function(){const e=q.getOrCreateInstance(this);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t](this)}}))}}R(q,"close"),f(q);const V='[data-bs-toggle="button"]';class K extends W{static get NAME(){return"button"}toggle(){this._element.setAttribute("aria-pressed",this._element.classList.toggle("active"))}static jQueryInterface(t){return this.each((function(){const e=K.getOrCreateInstance(this);"toggle"===t&&e[t]()}))}}I.on(document,"click.bs.button.data-api",V,(t=>{t.preventDefault();const e=t.target.closest(V);K.getOrCreateInstance(e).toggle()})),f(K);const Q={endCallback:null,leftCallback:null,rightCallback:null},X={endCallback:"(function|null)",leftCallback:"(function|null)",rightCallback:"(function|null)"};class Y extends ${constructor(t,e){super(),this._element=t,t&&Y.isSupported()&&(this._config=this._getConfig(e),this._deltaX=0,this._supportPointerEvents=Boolean(window.PointerEvent),this._initEvents())}static get Default(){return Q}static get DefaultType(){return X}static get NAME(){return"swipe"}dispose(){I.off(this._element,".bs.swipe")}_start(t){this._supportPointerEvents?this._eventIsPointerPenTouch(t)&&(this._deltaX=t.clientX):this._deltaX=t.touches[0].clientX}_end(t){this._eventIsPointerPenTouch(t)&&(this._deltaX=t.clientX-this._deltaX),this._handleSwipe(),p(this._config.endCallback)}_move(t){this._deltaX=t.touches&&t.touches.length>1?0:t.touches[0].clientX-this._deltaX}_handleSwipe(){const t=Math.abs(this._deltaX);if(t<=40)return;const e=t/this._deltaX;this._deltaX=0,e&&p(e>0?this._config.rightCallback:this._config.leftCallback)}_initEvents(){this._supportPointerEvents?(I.on(this._element,"pointerdown.bs.swipe",(t=>this._start(t))),I.on(this._element,"pointerup.bs.swipe",(t=>this._end(t))),this._element.classList.add("pointer-event")):(I.on(this._element,"touchstart.bs.swipe",(t=>this._start(t))),I.on(this._element,"touchmove.bs.swipe",(t=>this._move(t))),I.on(this._element,"touchend.bs.swipe",(t=>this._end(t))))}_eventIsPointerPenTouch(t){return this._supportPointerEvents&&("pen"===t.pointerType||"touch"===t.pointerType)}static isSupported(){return"ontouchstart"in document.documentElement||navigator.maxTouchPoints>0}}const U="next",G="prev",J="left",Z="right",tt="slid.bs.carousel",et="carousel",it="active",nt={ArrowLeft:Z,ArrowRight:J},st={interval:5e3,keyboard:!0,pause:"hover",ride:!1,touch:!0,wrap:!0},ot={interval:"(number|boolean)",keyboard:"boolean",pause:"(string|boolean)",ride:"(boolean|string)",touch:"boolean",wrap:"boolean"};class rt extends W{constructor(t,e){super(t,e),this._interval=null,this._activeElement=null,this._isSliding=!1,this.touchTimeout=null,this._swipeHelper=null,this._indicatorsElement=z.findOne(".carousel-indicators",this._element),this._addEventListeners(),this._config.ride===et&&this.cycle()}static get Default(){return st}static get DefaultType(){return ot}static get NAME(){return"carousel"}next(){this._slide(U)}nextWhenVisible(){!document.hidden&&o(this._element)&&this.next()}prev(){this._slide(G)}pause(){this._isSliding&&i(this._element),this._clearInterval()}cycle(){this._clearInterval(),this._updateInterval(),this._interval=setInterval((()=>this.nextWhenVisible()),this._config.interval)}_maybeEnableCycle(){this._config.ride&&(this._isSliding?I.one(this._element,tt,(()=>this.cycle())):this.cycle())}to(t){const e=this._getItems();if(t>e.length-1||t<0)return;if(this._isSliding)return void I.one(this._element,tt,(()=>this.to(t)));const i=this._getItemIndex(this._getActive());if(i===t)return;const n=t>i?U:G;this._slide(n,e[t])}dispose(){this._swipeHelper&&this._swipeHelper.dispose(),super.dispose()}_configAfterMerge(t){return t.defaultInterval=t.interval,t}_addEventListeners(){this._config.keyboard&&I.on(this._element,"keydown.bs.carousel",(t=>this._keydown(t))),"hover"===this._config.pause&&(I.on(this._element,"mouseenter.bs.carousel",(()=>this.pause())),I.on(this._element,"mouseleave.bs.carousel",(()=>this._maybeEnableCycle()))),this._config.touch&&Y.isSupported()&&this._addTouchEventListeners()}_addTouchEventListeners(){for(const t of z.find(".carousel-item img",this._element))I.on(t,"dragstart.bs.carousel",(t=>t.preventDefault()));const t={leftCallback:()=>this._slide(this._directionToOrder(J)),rightCallback:()=>this._slide(this._directionToOrder(Z)),endCallback:()=>{"hover"===this._config.pause&&(this.pause(),this.touchTimeout&&clearTimeout(this.touchTimeout),this.touchTimeout=setTimeout((()=>this._maybeEnableCycle()),500+this._config.interval))}};this._swipeHelper=new Y(this._element,t)}_keydown(t){if(/input|textarea/i.test(t.target.tagName))return;const e=nt[t.key];e&&(t.preventDefault(),this._slide(this._directionToOrder(e)))}_getItemIndex(t){return this._getItems().indexOf(t)}_setActiveIndicatorElement(t){if(!this._indicatorsElement)return;const e=z.findOne(".active",this._indicatorsElement);e.classList.remove(it),e.removeAttribute("aria-current");const i=z.findOne(`[data-bs-slide-to="${t}"]`,this._indicatorsElement);i&&(i.classList.add(it),i.setAttribute("aria-current","true"))}_updateInterval(){const t=this._activeElement||this._getActive();if(!t)return;const e=Number.parseInt(t.getAttribute("data-bs-interval"),10);this._config.interval=e||this._config.defaultInterval}_slide(t,e=null){if(this._isSliding)return;const i=this._getActive(),n=t===U,s=e||g(this._getItems(),i,n,this._config.wrap);if(s===i)return;const o=this._getItemIndex(s),r=e=>I.trigger(this._element,e,{relatedTarget:s,direction:this._orderToDirection(t),from:this._getItemIndex(i),to:o});if(r("slide.bs.carousel").defaultPrevented)return;if(!i||!s)return;const a=Boolean(this._interval);this.pause(),this._isSliding=!0,this._setActiveIndicatorElement(o),this._activeElement=s;const l=n?"carousel-item-start":"carousel-item-end",h=n?"carousel-item-next":"carousel-item-prev";s.classList.add(h),c(s),i.classList.add(l),s.classList.add(l),this._queueCallback((()=>{s.classList.remove(l,h),s.classList.add(it),i.classList.remove(it,h,l),this._isSliding=!1,r(tt)}),i,this._isAnimated()),a&&this.cycle()}_isAnimated(){return this._element.classList.contains("slide")}_getActive(){return z.findOne(".active.carousel-item",this._element)}_getItems(){return z.find(".carousel-item",this._element)}_clearInterval(){this._interval&&(clearInterval(this._interval),this._interval=null)}_directionToOrder(t){return u()?t===J?G:U:t===J?U:G}_orderToDirection(t){return u()?t===G?J:Z:t===G?Z:J}static jQueryInterface(t){return this.each((function(){const e=rt.getOrCreateInstance(this,t);if("number"!=typeof t){if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t]()}}else e.to(t)}))}}I.on(document,"click.bs.carousel.data-api","[data-bs-slide], [data-bs-slide-to]",(function(t){const e=z.getElementFromSelector(this);if(!e||!e.classList.contains(et))return;t.preventDefault();const i=rt.getOrCreateInstance(e),n=this.getAttribute("data-bs-slide-to");return n?(i.to(n),void i._maybeEnableCycle()):"next"===H.getDataAttribute(this,"slide")?(i.next(),void i._maybeEnableCycle()):(i.prev(),void i._maybeEnableCycle())})),I.on(window,"load.bs.carousel.data-api",(()=>{const t=z.find('[data-bs-ride="carousel"]');for(const e of t)rt.getOrCreateInstance(e)})),f(rt);const at="show",lt="collapse",ct="collapsing",ht='[data-bs-toggle="collapse"]',dt={parent:null,toggle:!0},ut={parent:"(null|element)",toggle:"boolean"};class ft extends W{constructor(t,e){super(t,e),this._isTransitioning=!1,this._triggerArray=[];const i=z.find(ht);for(const t of i){const e=z.getSelectorFromElement(t),i=z.find(e).filter((t=>t===this._element));null!==e&&i.length&&this._triggerArray.push(t)}this._initializeChildren(),this._config.parent||this._addAriaAndCollapsedClass(this._triggerArray,this._isShown()),this._config.toggle&&this.toggle()}static get Default(){return dt}static get DefaultType(){return ut}static get NAME(){return"collapse"}toggle(){this._isShown()?this.hide():this.show()}show(){if(this._isTransitioning||this._isShown())return;let t=[];if(this._config.parent&&(t=this._getFirstLevelChildren(".collapse.show, .collapse.collapsing").filter((t=>t!==this._element)).map((t=>ft.getOrCreateInstance(t,{toggle:!1})))),t.length&&t[0]._isTransitioning)return;if(I.trigger(this._element,"show.bs.collapse").defaultPrevented)return;for(const e of t)e.hide();const e=this._getDimension();this._element.classList.remove(lt),this._element.classList.add(ct),this._element.style[e]=0,this._addAriaAndCollapsedClass(this._triggerArray,!0),this._isTransitioning=!0;const i=`scroll${e[0].toUpperCase()+e.slice(1)}`;this._queueCallback((()=>{this._isTransitioning=!1,this._element.classList.remove(ct),this._element.classList.add(lt,at),this._element.style[e]="",I.trigger(this._element,"shown.bs.collapse")}),this._element,!0),this._element.style[e]=`${this._element[i]}px`}hide(){if(this._isTransitioning||!this._isShown())return;if(I.trigger(this._element,"hide.bs.collapse").defaultPrevented)return;const t=this._getDimension();this._element.style[t]=`${this._element.getBoundingClientRect()[t]}px`,c(this._element),this._element.classList.add(ct),this._element.classList.remove(lt,at);for(const t of this._triggerArray){const e=z.getElementFromSelector(t);e&&!this._isShown(e)&&this._addAriaAndCollapsedClass([t],!1)}this._isTransitioning=!0,this._element.style[t]="",this._queueCallback((()=>{this._isTransitioning=!1,this._element.classList.remove(ct),this._element.classList.add(lt),I.trigger(this._element,"hidden.bs.collapse")}),this._element,!0)}_isShown(t=this._element){return t.classList.contains(at)}_configAfterMerge(t){return t.toggle=Boolean(t.toggle),t.parent=s(t.parent),t}_getDimension(){return this._element.classList.contains("collapse-horizontal")?"width":"height"}_initializeChildren(){if(!this._config.parent)return;const t=this._getFirstLevelChildren(ht);for(const e of t){const t=z.getElementFromSelector(e);t&&this._addAriaAndCollapsedClass([e],this._isShown(t))}}_getFirstLevelChildren(t){const e=z.find(":scope .collapse .collapse",this._config.parent);return z.find(t,this._config.parent).filter((t=>!e.includes(t)))}_addAriaAndCollapsedClass(t,e){if(t.length)for(const i of t)i.classList.toggle("collapsed",!e),i.setAttribute("aria-expanded",e)}static jQueryInterface(t){const e={};return"string"==typeof t&&/show|hide/.test(t)&&(e.toggle=!1),this.each((function(){const i=ft.getOrCreateInstance(this,e);if("string"==typeof t){if(void 0===i[t])throw new TypeError(`No method named "${t}"`);i[t]()}}))}}I.on(document,"click.bs.collapse.data-api",ht,(function(t){("A"===t.target.tagName||t.delegateTarget&&"A"===t.delegateTarget.tagName)&&t.preventDefault();for(const t of z.getMultipleElementsFromSelector(this))ft.getOrCreateInstance(t,{toggle:!1}).toggle()})),f(ft);var pt="top",mt="bottom",gt="right",_t="left",bt="auto",vt=[pt,mt,gt,_t],yt="start",wt="end",At="clippingParents",Et="viewport",Tt="popper",Ct="reference",Ot=vt.reduce((function(t,e){return t.concat([e+"-"+yt,e+"-"+wt])}),[]),xt=[].concat(vt,[bt]).reduce((function(t,e){return t.concat([e,e+"-"+yt,e+"-"+wt])}),[]),kt="beforeRead",Lt="read",St="afterRead",Dt="beforeMain",It="main",Nt="afterMain",Pt="beforeWrite",jt="write",Mt="afterWrite",Ft=[kt,Lt,St,Dt,It,Nt,Pt,jt,Mt];function Ht(t){return t?(t.nodeName||"").toLowerCase():null}function $t(t){if(null==t)return window;if("[object Window]"!==t.toString()){var e=t.ownerDocument;return e&&e.defaultView||window}return t}function Wt(t){return t instanceof $t(t).Element||t instanceof Element}function Bt(t){return t instanceof $t(t).HTMLElement||t instanceof HTMLElement}function zt(t){return"undefined"!=typeof ShadowRoot&&(t instanceof $t(t).ShadowRoot||t instanceof ShadowRoot)}const Rt={name:"applyStyles",enabled:!0,phase:"write",fn:function(t){var e=t.state;Object.keys(e.elements).forEach((function(t){var i=e.styles[t]||{},n=e.attributes[t]||{},s=e.elements[t];Bt(s)&&Ht(s)&&(Object.assign(s.style,i),Object.keys(n).forEach((function(t){var e=n[t];!1===e?s.removeAttribute(t):s.setAttribute(t,!0===e?"":e)})))}))},effect:function(t){var e=t.state,i={popper:{position:e.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};return Object.assign(e.elements.popper.style,i.popper),e.styles=i,e.elements.arrow&&Object.assign(e.elements.arrow.style,i.arrow),function(){Object.keys(e.elements).forEach((function(t){var n=e.elements[t],s=e.attributes[t]||{},o=Object.keys(e.styles.hasOwnProperty(t)?e.styles[t]:i[t]).reduce((function(t,e){return t[e]="",t}),{});Bt(n)&&Ht(n)&&(Object.assign(n.style,o),Object.keys(s).forEach((function(t){n.removeAttribute(t)})))}))}},requires:["computeStyles"]};function qt(t){return t.split("-")[0]}var Vt=Math.max,Kt=Math.min,Qt=Math.round;function Xt(){var t=navigator.userAgentData;return null!=t&&t.brands?t.brands.map((function(t){return t.brand+"/"+t.version})).join(" "):navigator.userAgent}function Yt(){return!/^((?!chrome|android).)*safari/i.test(Xt())}function Ut(t,e,i){void 0===e&&(e=!1),void 0===i&&(i=!1);var n=t.getBoundingClientRect(),s=1,o=1;e&&Bt(t)&&(s=t.offsetWidth>0&&Qt(n.width)/t.offsetWidth||1,o=t.offsetHeight>0&&Qt(n.height)/t.offsetHeight||1);var r=(Wt(t)?$t(t):window).visualViewport,a=!Yt()&&i,l=(n.left+(a&&r?r.offsetLeft:0))/s,c=(n.top+(a&&r?r.offsetTop:0))/o,h=n.width/s,d=n.height/o;return{width:h,height:d,top:c,right:l+h,bottom:c+d,left:l,x:l,y:c}}function Gt(t){var e=Ut(t),i=t.offsetWidth,n=t.offsetHeight;return Math.abs(e.width-i)<=1&&(i=e.width),Math.abs(e.height-n)<=1&&(n=e.height),{x:t.offsetLeft,y:t.offsetTop,width:i,height:n}}function Jt(t,e){var i=e.getRootNode&&e.getRootNode();if(t.contains(e))return!0;if(i&&zt(i)){var n=e;do{if(n&&t.isSameNode(n))return!0;n=n.parentNode||n.host}while(n)}return!1}function Zt(t){return $t(t).getComputedStyle(t)}function te(t){return["table","td","th"].indexOf(Ht(t))>=0}function ee(t){return((Wt(t)?t.ownerDocument:t.document)||window.document).documentElement}function ie(t){return"html"===Ht(t)?t:t.assignedSlot||t.parentNode||(zt(t)?t.host:null)||ee(t)}function ne(t){return Bt(t)&&"fixed"!==Zt(t).position?t.offsetParent:null}function se(t){for(var e=$t(t),i=ne(t);i&&te(i)&&"static"===Zt(i).position;)i=ne(i);return i&&("html"===Ht(i)||"body"===Ht(i)&&"static"===Zt(i).position)?e:i||function(t){var e=/firefox/i.test(Xt());if(/Trident/i.test(Xt())&&Bt(t)&&"fixed"===Zt(t).position)return null;var i=ie(t);for(zt(i)&&(i=i.host);Bt(i)&&["html","body"].indexOf(Ht(i))<0;){var n=Zt(i);if("none"!==n.transform||"none"!==n.perspective||"paint"===n.contain||-1!==["transform","perspective"].indexOf(n.willChange)||e&&"filter"===n.willChange||e&&n.filter&&"none"!==n.filter)return i;i=i.parentNode}return null}(t)||e}function oe(t){return["top","bottom"].indexOf(t)>=0?"x":"y"}function re(t,e,i){return Vt(t,Kt(e,i))}function ae(t){return Object.assign({},{top:0,right:0,bottom:0,left:0},t)}function le(t,e){return e.reduce((function(e,i){return e[i]=t,e}),{})}const ce={name:"arrow",enabled:!0,phase:"main",fn:function(t){var e,i=t.state,n=t.name,s=t.options,o=i.elements.arrow,r=i.modifiersData.popperOffsets,a=qt(i.placement),l=oe(a),c=[_t,gt].indexOf(a)>=0?"height":"width";if(o&&r){var h=function(t,e){return ae("number"!=typeof(t="function"==typeof t?t(Object.assign({},e.rects,{placement:e.placement})):t)?t:le(t,vt))}(s.padding,i),d=Gt(o),u="y"===l?pt:_t,f="y"===l?mt:gt,p=i.rects.reference[c]+i.rects.reference[l]-r[l]-i.rects.popper[c],m=r[l]-i.rects.reference[l],g=se(o),_=g?"y"===l?g.clientHeight||0:g.clientWidth||0:0,b=p/2-m/2,v=h[u],y=_-d[c]-h[f],w=_/2-d[c]/2+b,A=re(v,w,y),E=l;i.modifiersData[n]=((e={})[E]=A,e.centerOffset=A-w,e)}},effect:function(t){var e=t.state,i=t.options.element,n=void 0===i?"[data-popper-arrow]":i;null!=n&&("string"!=typeof n||(n=e.elements.popper.querySelector(n)))&&Jt(e.elements.popper,n)&&(e.elements.arrow=n)},requires:["popperOffsets"],requiresIfExists:["preventOverflow"]};function he(t){return t.split("-")[1]}var de={top:"auto",right:"auto",bottom:"auto",left:"auto"};function ue(t){var e,i=t.popper,n=t.popperRect,s=t.placement,o=t.variation,r=t.offsets,a=t.position,l=t.gpuAcceleration,c=t.adaptive,h=t.roundOffsets,d=t.isFixed,u=r.x,f=void 0===u?0:u,p=r.y,m=void 0===p?0:p,g="function"==typeof h?h({x:f,y:m}):{x:f,y:m};f=g.x,m=g.y;var _=r.hasOwnProperty("x"),b=r.hasOwnProperty("y"),v=_t,y=pt,w=window;if(c){var A=se(i),E="clientHeight",T="clientWidth";A===$t(i)&&"static"!==Zt(A=ee(i)).position&&"absolute"===a&&(E="scrollHeight",T="scrollWidth"),(s===pt||(s===_t||s===gt)&&o===wt)&&(y=mt,m-=(d&&A===w&&w.visualViewport?w.visualViewport.height:A[E])-n.height,m*=l?1:-1),s!==_t&&(s!==pt&&s!==mt||o!==wt)||(v=gt,f-=(d&&A===w&&w.visualViewport?w.visualViewport.width:A[T])-n.width,f*=l?1:-1)}var C,O=Object.assign({position:a},c&&de),x=!0===h?function(t){var e=t.x,i=t.y,n=window.devicePixelRatio||1;return{x:Qt(e*n)/n||0,y:Qt(i*n)/n||0}}({x:f,y:m}):{x:f,y:m};return f=x.x,m=x.y,l?Object.assign({},O,((C={})[y]=b?"0":"",C[v]=_?"0":"",C.transform=(w.devicePixelRatio||1)<=1?"translate("+f+"px, "+m+"px)":"translate3d("+f+"px, "+m+"px, 0)",C)):Object.assign({},O,((e={})[y]=b?m+"px":"",e[v]=_?f+"px":"",e.transform="",e))}const fe={name:"computeStyles",enabled:!0,phase:"beforeWrite",fn:function(t){var e=t.state,i=t.options,n=i.gpuAcceleration,s=void 0===n||n,o=i.adaptive,r=void 0===o||o,a=i.roundOffsets,l=void 0===a||a,c={placement:qt(e.placement),variation:he(e.placement),popper:e.elements.popper,popperRect:e.rects.popper,gpuAcceleration:s,isFixed:"fixed"===e.options.strategy};null!=e.modifiersData.popperOffsets&&(e.styles.popper=Object.assign({},e.styles.popper,ue(Object.assign({},c,{offsets:e.modifiersData.popperOffsets,position:e.options.strategy,adaptive:r,roundOffsets:l})))),null!=e.modifiersData.arrow&&(e.styles.arrow=Object.assign({},e.styles.arrow,ue(Object.assign({},c,{offsets:e.modifiersData.arrow,position:"absolute",adaptive:!1,roundOffsets:l})))),e.attributes.popper=Object.assign({},e.attributes.popper,{"data-popper-placement":e.placement})},data:{}};var pe={passive:!0};const me={name:"eventListeners",enabled:!0,phase:"write",fn:function(){},effect:function(t){var e=t.state,i=t.instance,n=t.options,s=n.scroll,o=void 0===s||s,r=n.resize,a=void 0===r||r,l=$t(e.elements.popper),c=[].concat(e.scrollParents.reference,e.scrollParents.popper);return o&&c.forEach((function(t){t.addEventListener("scroll",i.update,pe)})),a&&l.addEventListener("resize",i.update,pe),function(){o&&c.forEach((function(t){t.removeEventListener("scroll",i.update,pe)})),a&&l.removeEventListener("resize",i.update,pe)}},data:{}};var ge={left:"right",right:"left",bottom:"top",top:"bottom"};function _e(t){return t.replace(/left|right|bottom|top/g,(function(t){return ge[t]}))}var be={start:"end",end:"start"};function ve(t){return t.replace(/start|end/g,(function(t){return be[t]}))}function ye(t){var e=$t(t);return{scrollLeft:e.pageXOffset,scrollTop:e.pageYOffset}}function we(t){return Ut(ee(t)).left+ye(t).scrollLeft}function Ae(t){var e=Zt(t),i=e.overflow,n=e.overflowX,s=e.overflowY;return/auto|scroll|overlay|hidden/.test(i+s+n)}function Ee(t){return["html","body","#document"].indexOf(Ht(t))>=0?t.ownerDocument.body:Bt(t)&&Ae(t)?t:Ee(ie(t))}function Te(t,e){var i;void 0===e&&(e=[]);var n=Ee(t),s=n===(null==(i=t.ownerDocument)?void 0:i.body),o=$t(n),r=s?[o].concat(o.visualViewport||[],Ae(n)?n:[]):n,a=e.concat(r);return s?a:a.concat(Te(ie(r)))}function Ce(t){return Object.assign({},t,{left:t.x,top:t.y,right:t.x+t.width,bottom:t.y+t.height})}function Oe(t,e,i){return e===Et?Ce(function(t,e){var i=$t(t),n=ee(t),s=i.visualViewport,o=n.clientWidth,r=n.clientHeight,a=0,l=0;if(s){o=s.width,r=s.height;var c=Yt();(c||!c&&"fixed"===e)&&(a=s.offsetLeft,l=s.offsetTop)}return{width:o,height:r,x:a+we(t),y:l}}(t,i)):Wt(e)?function(t,e){var i=Ut(t,!1,"fixed"===e);return i.top=i.top+t.clientTop,i.left=i.left+t.clientLeft,i.bottom=i.top+t.clientHeight,i.right=i.left+t.clientWidth,i.width=t.clientWidth,i.height=t.clientHeight,i.x=i.left,i.y=i.top,i}(e,i):Ce(function(t){var e,i=ee(t),n=ye(t),s=null==(e=t.ownerDocument)?void 0:e.body,o=Vt(i.scrollWidth,i.clientWidth,s?s.scrollWidth:0,s?s.clientWidth:0),r=Vt(i.scrollHeight,i.clientHeight,s?s.scrollHeight:0,s?s.clientHeight:0),a=-n.scrollLeft+we(t),l=-n.scrollTop;return"rtl"===Zt(s||i).direction&&(a+=Vt(i.clientWidth,s?s.clientWidth:0)-o),{width:o,height:r,x:a,y:l}}(ee(t)))}function xe(t){var e,i=t.reference,n=t.element,s=t.placement,o=s?qt(s):null,r=s?he(s):null,a=i.x+i.width/2-n.width/2,l=i.y+i.height/2-n.height/2;switch(o){case pt:e={x:a,y:i.y-n.height};break;case mt:e={x:a,y:i.y+i.height};break;case gt:e={x:i.x+i.width,y:l};break;case _t:e={x:i.x-n.width,y:l};break;default:e={x:i.x,y:i.y}}var c=o?oe(o):null;if(null!=c){var h="y"===c?"height":"width";switch(r){case yt:e[c]=e[c]-(i[h]/2-n[h]/2);break;case wt:e[c]=e[c]+(i[h]/2-n[h]/2)}}return e}function ke(t,e){void 0===e&&(e={});var i=e,n=i.placement,s=void 0===n?t.placement:n,o=i.strategy,r=void 0===o?t.strategy:o,a=i.boundary,l=void 0===a?At:a,c=i.rootBoundary,h=void 0===c?Et:c,d=i.elementContext,u=void 0===d?Tt:d,f=i.altBoundary,p=void 0!==f&&f,m=i.padding,g=void 0===m?0:m,_=ae("number"!=typeof g?g:le(g,vt)),b=u===Tt?Ct:Tt,v=t.rects.popper,y=t.elements[p?b:u],w=function(t,e,i,n){var s="clippingParents"===e?function(t){var e=Te(ie(t)),i=["absolute","fixed"].indexOf(Zt(t).position)>=0&&Bt(t)?se(t):t;return Wt(i)?e.filter((function(t){return Wt(t)&&Jt(t,i)&&"body"!==Ht(t)})):[]}(t):[].concat(e),o=[].concat(s,[i]),r=o[0],a=o.reduce((function(e,i){var s=Oe(t,i,n);return e.top=Vt(s.top,e.top),e.right=Kt(s.right,e.right),e.bottom=Kt(s.bottom,e.bottom),e.left=Vt(s.left,e.left),e}),Oe(t,r,n));return a.width=a.right-a.left,a.height=a.bottom-a.top,a.x=a.left,a.y=a.top,a}(Wt(y)?y:y.contextElement||ee(t.elements.popper),l,h,r),A=Ut(t.elements.reference),E=xe({reference:A,element:v,strategy:"absolute",placement:s}),T=Ce(Object.assign({},v,E)),C=u===Tt?T:A,O={top:w.top-C.top+_.top,bottom:C.bottom-w.bottom+_.bottom,left:w.left-C.left+_.left,right:C.right-w.right+_.right},x=t.modifiersData.offset;if(u===Tt&&x){var k=x[s];Object.keys(O).forEach((function(t){var e=[gt,mt].indexOf(t)>=0?1:-1,i=[pt,mt].indexOf(t)>=0?"y":"x";O[t]+=k[i]*e}))}return O}function Le(t,e){void 0===e&&(e={});var i=e,n=i.placement,s=i.boundary,o=i.rootBoundary,r=i.padding,a=i.flipVariations,l=i.allowedAutoPlacements,c=void 0===l?xt:l,h=he(n),d=h?a?Ot:Ot.filter((function(t){return he(t)===h})):vt,u=d.filter((function(t){return c.indexOf(t)>=0}));0===u.length&&(u=d);var f=u.reduce((function(e,i){return e[i]=ke(t,{placement:i,boundary:s,rootBoundary:o,padding:r})[qt(i)],e}),{});return Object.keys(f).sort((function(t,e){return f[t]-f[e]}))}const Se={name:"flip",enabled:!0,phase:"main",fn:function(t){var e=t.state,i=t.options,n=t.name;if(!e.modifiersData[n]._skip){for(var s=i.mainAxis,o=void 0===s||s,r=i.altAxis,a=void 0===r||r,l=i.fallbackPlacements,c=i.padding,h=i.boundary,d=i.rootBoundary,u=i.altBoundary,f=i.flipVariations,p=void 0===f||f,m=i.allowedAutoPlacements,g=e.options.placement,_=qt(g),b=l||(_!==g&&p?function(t){if(qt(t)===bt)return[];var e=_e(t);return[ve(t),e,ve(e)]}(g):[_e(g)]),v=[g].concat(b).reduce((function(t,i){return t.concat(qt(i)===bt?Le(e,{placement:i,boundary:h,rootBoundary:d,padding:c,flipVariations:p,allowedAutoPlacements:m}):i)}),[]),y=e.rects.reference,w=e.rects.popper,A=new Map,E=!0,T=v[0],C=0;C<v.length;C++){var O=v[C],x=qt(O),k=he(O)===yt,L=[pt,mt].indexOf(x)>=0,S=L?"width":"height",D=ke(e,{placement:O,boundary:h,rootBoundary:d,altBoundary:u,padding:c}),I=L?k?gt:_t:k?mt:pt;y[S]>w[S]&&(I=_e(I));var N=_e(I),P=[];if(o&&P.push(D[x]<=0),a&&P.push(D[I]<=0,D[N]<=0),P.every((function(t){return t}))){T=O,E=!1;break}A.set(O,P)}if(E)for(var j=function(t){var e=v.find((function(e){var i=A.get(e);if(i)return i.slice(0,t).every((function(t){return t}))}));if(e)return T=e,"break"},M=p?3:1;M>0&&"break"!==j(M);M--);e.placement!==T&&(e.modifiersData[n]._skip=!0,e.placement=T,e.reset=!0)}},requiresIfExists:["offset"],data:{_skip:!1}};function De(t,e,i){return void 0===i&&(i={x:0,y:0}),{top:t.top-e.height-i.y,right:t.right-e.width+i.x,bottom:t.bottom-e.height+i.y,left:t.left-e.width-i.x}}function Ie(t){return[pt,gt,mt,_t].some((function(e){return t[e]>=0}))}const Ne={name:"hide",enabled:!0,phase:"main",requiresIfExists:["preventOverflow"],fn:function(t){var e=t.state,i=t.name,n=e.rects.reference,s=e.rects.popper,o=e.modifiersData.preventOverflow,r=ke(e,{elementContext:"reference"}),a=ke(e,{altBoundary:!0}),l=De(r,n),c=De(a,s,o),h=Ie(l),d=Ie(c);e.modifiersData[i]={referenceClippingOffsets:l,popperEscapeOffsets:c,isReferenceHidden:h,hasPopperEscaped:d},e.attributes.popper=Object.assign({},e.attributes.popper,{"data-popper-reference-hidden":h,"data-popper-escaped":d})}},Pe={name:"offset",enabled:!0,phase:"main",requires:["popperOffsets"],fn:function(t){var e=t.state,i=t.options,n=t.name,s=i.offset,o=void 0===s?[0,0]:s,r=xt.reduce((function(t,i){return t[i]=function(t,e,i){var n=qt(t),s=[_t,pt].indexOf(n)>=0?-1:1,o="function"==typeof i?i(Object.assign({},e,{placement:t})):i,r=o[0],a=o[1];return r=r||0,a=(a||0)*s,[_t,gt].indexOf(n)>=0?{x:a,y:r}:{x:r,y:a}}(i,e.rects,o),t}),{}),a=r[e.placement],l=a.x,c=a.y;null!=e.modifiersData.popperOffsets&&(e.modifiersData.popperOffsets.x+=l,e.modifiersData.popperOffsets.y+=c),e.modifiersData[n]=r}},je={name:"popperOffsets",enabled:!0,phase:"read",fn:function(t){var e=t.state,i=t.name;e.modifiersData[i]=xe({reference:e.rects.reference,element:e.rects.popper,strategy:"absolute",placement:e.placement})},data:{}},Me={name:"preventOverflow",enabled:!0,phase:"main",fn:function(t){var e=t.state,i=t.options,n=t.name,s=i.mainAxis,o=void 0===s||s,r=i.altAxis,a=void 0!==r&&r,l=i.boundary,c=i.rootBoundary,h=i.altBoundary,d=i.padding,u=i.tether,f=void 0===u||u,p=i.tetherOffset,m=void 0===p?0:p,g=ke(e,{boundary:l,rootBoundary:c,padding:d,altBoundary:h}),_=qt(e.placement),b=he(e.placement),v=!b,y=oe(_),w="x"===y?"y":"x",A=e.modifiersData.popperOffsets,E=e.rects.reference,T=e.rects.popper,C="function"==typeof m?m(Object.assign({},e.rects,{placement:e.placement})):m,O="number"==typeof C?{mainAxis:C,altAxis:C}:Object.assign({mainAxis:0,altAxis:0},C),x=e.modifiersData.offset?e.modifiersData.offset[e.placement]:null,k={x:0,y:0};if(A){if(o){var L,S="y"===y?pt:_t,D="y"===y?mt:gt,I="y"===y?"height":"width",N=A[y],P=N+g[S],j=N-g[D],M=f?-T[I]/2:0,F=b===yt?E[I]:T[I],H=b===yt?-T[I]:-E[I],$=e.elements.arrow,W=f&&$?Gt($):{width:0,height:0},B=e.modifiersData["arrow#persistent"]?e.modifiersData["arrow#persistent"].padding:{top:0,right:0,bottom:0,left:0},z=B[S],R=B[D],q=re(0,E[I],W[I]),V=v?E[I]/2-M-q-z-O.mainAxis:F-q-z-O.mainAxis,K=v?-E[I]/2+M+q+R+O.mainAxis:H+q+R+O.mainAxis,Q=e.elements.arrow&&se(e.elements.arrow),X=Q?"y"===y?Q.clientTop||0:Q.clientLeft||0:0,Y=null!=(L=null==x?void 0:x[y])?L:0,U=N+K-Y,G=re(f?Kt(P,N+V-Y-X):P,N,f?Vt(j,U):j);A[y]=G,k[y]=G-N}if(a){var J,Z="x"===y?pt:_t,tt="x"===y?mt:gt,et=A[w],it="y"===w?"height":"width",nt=et+g[Z],st=et-g[tt],ot=-1!==[pt,_t].indexOf(_),rt=null!=(J=null==x?void 0:x[w])?J:0,at=ot?nt:et-E[it]-T[it]-rt+O.altAxis,lt=ot?et+E[it]+T[it]-rt-O.altAxis:st,ct=f&&ot?function(t,e,i){var n=re(t,e,i);return n>i?i:n}(at,et,lt):re(f?at:nt,et,f?lt:st);A[w]=ct,k[w]=ct-et}e.modifiersData[n]=k}},requiresIfExists:["offset"]};function Fe(t,e,i){void 0===i&&(i=!1);var n,s,o=Bt(e),r=Bt(e)&&function(t){var e=t.getBoundingClientRect(),i=Qt(e.width)/t.offsetWidth||1,n=Qt(e.height)/t.offsetHeight||1;return 1!==i||1!==n}(e),a=ee(e),l=Ut(t,r,i),c={scrollLeft:0,scrollTop:0},h={x:0,y:0};return(o||!o&&!i)&&(("body"!==Ht(e)||Ae(a))&&(c=(n=e)!==$t(n)&&Bt(n)?{scrollLeft:(s=n).scrollLeft,scrollTop:s.scrollTop}:ye(n)),Bt(e)?((h=Ut(e,!0)).x+=e.clientLeft,h.y+=e.clientTop):a&&(h.x=we(a))),{x:l.left+c.scrollLeft-h.x,y:l.top+c.scrollTop-h.y,width:l.width,height:l.height}}function He(t){var e=new Map,i=new Set,n=[];function s(t){i.add(t.name),[].concat(t.requires||[],t.requiresIfExists||[]).forEach((function(t){if(!i.has(t)){var n=e.get(t);n&&s(n)}})),n.push(t)}return t.forEach((function(t){e.set(t.name,t)})),t.forEach((function(t){i.has(t.name)||s(t)})),n}var $e={placement:"bottom",modifiers:[],strategy:"absolute"};function We(){for(var t=arguments.length,e=new Array(t),i=0;i<t;i++)e[i]=arguments[i];return!e.some((function(t){return!(t&&"function"==typeof t.getBoundingClientRect)}))}function Be(t){void 0===t&&(t={});var e=t,i=e.defaultModifiers,n=void 0===i?[]:i,s=e.defaultOptions,o=void 0===s?$e:s;return function(t,e,i){void 0===i&&(i=o);var s,r,a={placement:"bottom",orderedModifiers:[],options:Object.assign({},$e,o),modifiersData:{},elements:{reference:t,popper:e},attributes:{},styles:{}},l=[],c=!1,h={state:a,setOptions:function(i){var s="function"==typeof i?i(a.options):i;d(),a.options=Object.assign({},o,a.options,s),a.scrollParents={reference:Wt(t)?Te(t):t.contextElement?Te(t.contextElement):[],popper:Te(e)};var r,c,u=function(t){var e=He(t);return Ft.reduce((function(t,i){return t.concat(e.filter((function(t){return t.phase===i})))}),[])}((r=[].concat(n,a.options.modifiers),c=r.reduce((function(t,e){var i=t[e.name];return t[e.name]=i?Object.assign({},i,e,{options:Object.assign({},i.options,e.options),data:Object.assign({},i.data,e.data)}):e,t}),{}),Object.keys(c).map((function(t){return c[t]}))));return a.orderedModifiers=u.filter((function(t){return t.enabled})),a.orderedModifiers.forEach((function(t){var e=t.name,i=t.options,n=void 0===i?{}:i,s=t.effect;if("function"==typeof s){var o=s({state:a,name:e,instance:h,options:n});l.push(o||function(){})}})),h.update()},forceUpdate:function(){if(!c){var t=a.elements,e=t.reference,i=t.popper;if(We(e,i)){a.rects={reference:Fe(e,se(i),"fixed"===a.options.strategy),popper:Gt(i)},a.reset=!1,a.placement=a.options.placement,a.orderedModifiers.forEach((function(t){return a.modifiersData[t.name]=Object.assign({},t.data)}));for(var n=0;n<a.orderedModifiers.length;n++)if(!0!==a.reset){var s=a.orderedModifiers[n],o=s.fn,r=s.options,l=void 0===r?{}:r,d=s.name;"function"==typeof o&&(a=o({state:a,options:l,name:d,instance:h})||a)}else a.reset=!1,n=-1}}},update:(s=function(){return new Promise((function(t){h.forceUpdate(),t(a)}))},function(){return r||(r=new Promise((function(t){Promise.resolve().then((function(){r=void 0,t(s())}))}))),r}),destroy:function(){d(),c=!0}};if(!We(t,e))return h;function d(){l.forEach((function(t){return t()})),l=[]}return h.setOptions(i).then((function(t){!c&&i.onFirstUpdate&&i.onFirstUpdate(t)})),h}}var ze=Be(),Re=Be({defaultModifiers:[me,je,fe,Rt]}),qe=Be({defaultModifiers:[me,je,fe,Rt,Pe,Se,Me,ce,Ne]});const Ve=Object.freeze(Object.defineProperty({__proto__:null,afterMain:Nt,afterRead:St,afterWrite:Mt,applyStyles:Rt,arrow:ce,auto:bt,basePlacements:vt,beforeMain:Dt,beforeRead:kt,beforeWrite:Pt,bottom:mt,clippingParents:At,computeStyles:fe,createPopper:qe,createPopperBase:ze,createPopperLite:Re,detectOverflow:ke,end:wt,eventListeners:me,flip:Se,hide:Ne,left:_t,main:It,modifierPhases:Ft,offset:Pe,placements:xt,popper:Tt,popperGenerator:Be,popperOffsets:je,preventOverflow:Me,read:Lt,reference:Ct,right:gt,start:yt,top:pt,variationPlacements:Ot,viewport:Et,write:jt},Symbol.toStringTag,{value:"Module"})),Ke="dropdown",Qe="ArrowUp",Xe="ArrowDown",Ye="click.bs.dropdown.data-api",Ue="keydown.bs.dropdown.data-api",Ge="show",Je='[data-bs-toggle="dropdown"]:not(.disabled):not(:disabled)',Ze=`${Je}.show`,ti=".dropdown-menu",ei=u()?"top-end":"top-start",ii=u()?"top-start":"top-end",ni=u()?"bottom-end":"bottom-start",si=u()?"bottom-start":"bottom-end",oi=u()?"left-start":"right-start",ri=u()?"right-start":"left-start",ai={autoClose:!0,boundary:"clippingParents",display:"dynamic",offset:[0,2],popperConfig:null,reference:"toggle"},li={autoClose:"(boolean|string)",boundary:"(string|element)",display:"string",offset:"(array|string|function)",popperConfig:"(null|object|function)",reference:"(string|element|object)"};class ci extends W{constructor(t,e){super(t,e),this._popper=null,this._parent=this._element.parentNode,this._menu=z.next(this._element,ti)[0]||z.prev(this._element,ti)[0]||z.findOne(ti,this._parent),this._inNavbar=this._detectNavbar()}static get Default(){return ai}static get DefaultType(){return li}static get NAME(){return Ke}toggle(){return this._isShown()?this.hide():this.show()}show(){if(r(this._element)||this._isShown())return;const t={relatedTarget:this._element};if(!I.trigger(this._element,"show.bs.dropdown",t).defaultPrevented){if(this._createPopper(),"ontouchstart"in document.documentElement&&!this._parent.closest(".navbar-nav"))for(const t of[].concat(...document.body.children))I.on(t,"mouseover",l);this._element.focus(),this._element.setAttribute("aria-expanded",!0),this._menu.classList.add(Ge),this._element.classList.add(Ge),I.trigger(this._element,"shown.bs.dropdown",t)}}hide(){if(r(this._element)||!this._isShown())return;const t={relatedTarget:this._element};this._completeHide(t)}dispose(){this._popper&&this._popper.destroy(),super.dispose()}update(){this._inNavbar=this._detectNavbar(),this._popper&&this._popper.update()}_completeHide(t){if(!I.trigger(this._element,"hide.bs.dropdown",t).defaultPrevented){if("ontouchstart"in document.documentElement)for(const t of[].concat(...document.body.children))I.off(t,"mouseover",l);this._popper&&this._popper.destroy(),this._menu.classList.remove(Ge),this._element.classList.remove(Ge),this._element.setAttribute("aria-expanded","false"),H.removeDataAttribute(this._menu,"popper"),I.trigger(this._element,"hidden.bs.dropdown",t)}}_getConfig(t){if("object"==typeof(t=super._getConfig(t)).reference&&!n(t.reference)&&"function"!=typeof t.reference.getBoundingClientRect)throw new TypeError(`${Ke.toUpperCase()}: Option "reference" provided type "object" without a required "getBoundingClientRect" method.`);return t}_createPopper(){if(void 0===Ve)throw new TypeError("Bootstrap's dropdowns require Popper (https://popper.js.org)");let t=this._element;"parent"===this._config.reference?t=this._parent:n(this._config.reference)?t=s(this._config.reference):"object"==typeof this._config.reference&&(t=this._config.reference);const e=this._getPopperConfig();this._popper=qe(t,this._menu,e)}_isShown(){return this._menu.classList.contains(Ge)}_getPlacement(){const t=this._parent;if(t.classList.contains("dropend"))return oi;if(t.classList.contains("dropstart"))return ri;if(t.classList.contains("dropup-center"))return"top";if(t.classList.contains("dropdown-center"))return"bottom";const e="end"===getComputedStyle(this._menu).getPropertyValue("--bs-position").trim();return t.classList.contains("dropup")?e?ii:ei:e?si:ni}_detectNavbar(){return null!==this._element.closest(".navbar")}_getOffset(){const{offset:t}=this._config;return"string"==typeof t?t.split(",").map((t=>Number.parseInt(t,10))):"function"==typeof t?e=>t(e,this._element):t}_getPopperConfig(){const t={placement:this._getPlacement(),modifiers:[{name:"preventOverflow",options:{boundary:this._config.boundary}},{name:"offset",options:{offset:this._getOffset()}}]};return(this._inNavbar||"static"===this._config.display)&&(H.setDataAttribute(this._menu,"popper","static"),t.modifiers=[{name:"applyStyles",enabled:!1}]),{...t,...p(this._config.popperConfig,[t])}}_selectMenuItem({key:t,target:e}){const i=z.find(".dropdown-menu .dropdown-item:not(.disabled):not(:disabled)",this._menu).filter((t=>o(t)));i.length&&g(i,e,t===Xe,!i.includes(e)).focus()}static jQueryInterface(t){return this.each((function(){const e=ci.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}static clearMenus(t){if(2===t.button||"keyup"===t.type&&"Tab"!==t.key)return;const e=z.find(Ze);for(const i of e){const e=ci.getInstance(i);if(!e||!1===e._config.autoClose)continue;const n=t.composedPath(),s=n.includes(e._menu);if(n.includes(e._element)||"inside"===e._config.autoClose&&!s||"outside"===e._config.autoClose&&s)continue;if(e._menu.contains(t.target)&&("keyup"===t.type&&"Tab"===t.key||/input|select|option|textarea|form/i.test(t.target.tagName)))continue;const o={relatedTarget:e._element};"click"===t.type&&(o.clickEvent=t),e._completeHide(o)}}static dataApiKeydownHandler(t){const e=/input|textarea/i.test(t.target.tagName),i="Escape"===t.key,n=[Qe,Xe].includes(t.key);if(!n&&!i)return;if(e&&!i)return;t.preventDefault();const s=this.matches(Je)?this:z.prev(this,Je)[0]||z.next(this,Je)[0]||z.findOne(Je,t.delegateTarget.parentNode),o=ci.getOrCreateInstance(s);if(n)return t.stopPropagation(),o.show(),void o._selectMenuItem(t);o._isShown()&&(t.stopPropagation(),o.hide(),s.focus())}}I.on(document,Ue,Je,ci.dataApiKeydownHandler),I.on(document,Ue,ti,ci.dataApiKeydownHandler),I.on(document,Ye,ci.clearMenus),I.on(document,"keyup.bs.dropdown.data-api",ci.clearMenus),I.on(document,Ye,Je,(function(t){t.preventDefault(),ci.getOrCreateInstance(this).toggle()})),f(ci);const hi=".fixed-top, .fixed-bottom, .is-fixed, .sticky-top",di=".sticky-top",ui="padding-right",fi="margin-right";class pi{constructor(){this._element=document.body}getWidth(){const t=document.documentElement.clientWidth;return Math.abs(window.innerWidth-t)}hide(){const t=this.getWidth();this._disableOverFlow(),this._setElementAttributes(this._element,ui,(e=>e+t)),this._setElementAttributes(hi,ui,(e=>e+t)),this._setElementAttributes(di,fi,(e=>e-t))}reset(){this._resetElementAttributes(this._element,"overflow"),this._resetElementAttributes(this._element,ui),this._resetElementAttributes(hi,ui),this._resetElementAttributes(di,fi)}isOverflowing(){return this.getWidth()>0}_disableOverFlow(){this._saveInitialAttribute(this._element,"overflow"),this._element.style.overflow="hidden"}_setElementAttributes(t,e,i){const n=this.getWidth();this._applyManipulationCallback(t,(t=>{if(t!==this._element&&window.innerWidth>t.clientWidth+n)return;this._saveInitialAttribute(t,e);const s=window.getComputedStyle(t).getPropertyValue(e);t.style.setProperty(e,`${i(Number.parseFloat(s))}px`)}))}_saveInitialAttribute(t,e){const i=t.style.getPropertyValue(e);i&&H.setDataAttribute(t,e,i)}_resetElementAttributes(t,e){this._applyManipulationCallback(t,(t=>{const i=H.getDataAttribute(t,e);null!==i?(H.removeDataAttribute(t,e),t.style.setProperty(e,i)):t.style.removeProperty(e)}))}_applyManipulationCallback(t,e){if(n(t))e(t);else for(const i of z.find(t,this._element))e(i)}}const mi="show",gi="mousedown.bs.backdrop",_i={className:"modal-backdrop",clickCallback:null,isAnimated:!1,isVisible:!0,rootElement:"body"},bi={className:"string",clickCallback:"(function|null)",isAnimated:"boolean",isVisible:"boolean",rootElement:"(element|string)"};class vi extends ${constructor(t){super(),this._config=this._getConfig(t),this._isAppended=!1,this._element=null}static get Default(){return _i}static get DefaultType(){return bi}static get NAME(){return"backdrop"}show(t){if(!this._config.isVisible)return void p(t);this._append();const e=this._getElement();this._config.isAnimated&&c(e),e.classList.add(mi),this._emulateAnimation((()=>{p(t)}))}hide(t){this._config.isVisible?(this._getElement().classList.remove(mi),this._emulateAnimation((()=>{this.dispose(),p(t)}))):p(t)}dispose(){this._isAppended&&(I.off(this._element,gi),this._element.remove(),this._isAppended=!1)}_getElement(){if(!this._element){const t=document.createElement("div");t.className=this._config.className,this._config.isAnimated&&t.classList.add("fade"),this._element=t}return this._element}_configAfterMerge(t){return t.rootElement=s(t.rootElement),t}_append(){if(this._isAppended)return;const t=this._getElement();this._config.rootElement.append(t),I.on(t,gi,(()=>{p(this._config.clickCallback)})),this._isAppended=!0}_emulateAnimation(t){m(t,this._getElement(),this._config.isAnimated)}}const yi=".bs.focustrap",wi="backward",Ai={autofocus:!0,trapElement:null},Ei={autofocus:"boolean",trapElement:"element"};class Ti extends ${constructor(t){super(),this._config=this._getConfig(t),this._isActive=!1,this._lastTabNavDirection=null}static get Default(){return Ai}static get DefaultType(){return Ei}static get NAME(){return"focustrap"}activate(){this._isActive||(this._config.autofocus&&this._config.trapElement.focus(),I.off(document,yi),I.on(document,"focusin.bs.focustrap",(t=>this._handleFocusin(t))),I.on(document,"keydown.tab.bs.focustrap",(t=>this._handleKeydown(t))),this._isActive=!0)}deactivate(){this._isActive&&(this._isActive=!1,I.off(document,yi))}_handleFocusin(t){const{trapElement:e}=this._config;if(t.target===document||t.target===e||e.contains(t.target))return;const i=z.focusableChildren(e);0===i.length?e.focus():this._lastTabNavDirection===wi?i[i.length-1].focus():i[0].focus()}_handleKeydown(t){"Tab"===t.key&&(this._lastTabNavDirection=t.shiftKey?wi:"forward")}}const Ci="hidden.bs.modal",Oi="show.bs.modal",xi="modal-open",ki="show",Li="modal-static",Si={backdrop:!0,focus:!0,keyboard:!0},Di={backdrop:"(boolean|string)",focus:"boolean",keyboard:"boolean"};class Ii extends W{constructor(t,e){super(t,e),this._dialog=z.findOne(".modal-dialog",this._element),this._backdrop=this._initializeBackDrop(),this._focustrap=this._initializeFocusTrap(),this._isShown=!1,this._isTransitioning=!1,this._scrollBar=new pi,this._addEventListeners()}static get Default(){return Si}static get DefaultType(){return Di}static get NAME(){return"modal"}toggle(t){return this._isShown?this.hide():this.show(t)}show(t){this._isShown||this._isTransitioning||I.trigger(this._element,Oi,{relatedTarget:t}).defaultPrevented||(this._isShown=!0,this._isTransitioning=!0,this._scrollBar.hide(),document.body.classList.add(xi),this._adjustDialog(),this._backdrop.show((()=>this._showElement(t))))}hide(){this._isShown&&!this._isTransitioning&&(I.trigger(this._element,"hide.bs.modal").defaultPrevented||(this._isShown=!1,this._isTransitioning=!0,this._focustrap.deactivate(),this._element.classList.remove(ki),this._queueCallback((()=>this._hideModal()),this._element,this._isAnimated())))}dispose(){for(const t of[window,this._dialog])I.off(t,".bs.modal");this._backdrop.dispose(),this._focustrap.deactivate(),super.dispose()}handleUpdate(){this._adjustDialog()}_initializeBackDrop(){return new vi({isVisible:Boolean(this._config.backdrop),isAnimated:this._isAnimated()})}_initializeFocusTrap(){return new Ti({trapElement:this._element})}_showElement(t){document.body.contains(this._element)||document.body.append(this._element),this._element.style.display="block",this._element.removeAttribute("aria-hidden"),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),this._element.scrollTop=0;const e=z.findOne(".modal-body",this._dialog);e&&(e.scrollTop=0),c(this._element),this._element.classList.add(ki),this._queueCallback((()=>{this._config.focus&&this._focustrap.activate(),this._isTransitioning=!1,I.trigger(this._element,"shown.bs.modal",{relatedTarget:t})}),this._dialog,this._isAnimated())}_addEventListeners(){I.on(this._element,"keydown.dismiss.bs.modal",(t=>{"Escape"===t.key&&(this._config.keyboard?this.hide():this._triggerBackdropTransition())})),I.on(window,"resize.bs.modal",(()=>{this._isShown&&!this._isTransitioning&&this._adjustDialog()})),I.on(this._element,"mousedown.dismiss.bs.modal",(t=>{I.one(this._element,"click.dismiss.bs.modal",(e=>{this._element===t.target&&this._element===e.target&&("static"!==this._config.backdrop?this._config.backdrop&&this.hide():this._triggerBackdropTransition())}))}))}_hideModal(){this._element.style.display="none",this._element.setAttribute("aria-hidden",!0),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._isTransitioning=!1,this._backdrop.hide((()=>{document.body.classList.remove(xi),this._resetAdjustments(),this._scrollBar.reset(),I.trigger(this._element,Ci)}))}_isAnimated(){return this._element.classList.contains("fade")}_triggerBackdropTransition(){if(I.trigger(this._element,"hidePrevented.bs.modal").defaultPrevented)return;const t=this._element.scrollHeight>document.documentElement.clientHeight,e=this._element.style.overflowY;"hidden"===e||this._element.classList.contains(Li)||(t||(this._element.style.overflowY="hidden"),this._element.classList.add(Li),this._queueCallback((()=>{this._element.classList.remove(Li),this._queueCallback((()=>{this._element.style.overflowY=e}),this._dialog)}),this._dialog),this._element.focus())}_adjustDialog(){const t=this._element.scrollHeight>document.documentElement.clientHeight,e=this._scrollBar.getWidth(),i=e>0;if(i&&!t){const t=u()?"paddingLeft":"paddingRight";this._element.style[t]=`${e}px`}if(!i&&t){const t=u()?"paddingRight":"paddingLeft";this._element.style[t]=`${e}px`}}_resetAdjustments(){this._element.style.paddingLeft="",this._element.style.paddingRight=""}static jQueryInterface(t,e){return this.each((function(){const i=Ii.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===i[t])throw new TypeError(`No method named "${t}"`);i[t](e)}}))}}I.on(document,"click.bs.modal.data-api",'[data-bs-toggle="modal"]',(function(t){const e=z.getElementFromSelector(this);["A","AREA"].includes(this.tagName)&&t.preventDefault(),I.one(e,Oi,(t=>{t.defaultPrevented||I.one(e,Ci,(()=>{o(this)&&this.focus()}))}));const i=z.findOne(".modal.show");i&&Ii.getInstance(i).hide(),Ii.getOrCreateInstance(e).toggle(this)})),R(Ii),f(Ii);const Ni="show",Pi="showing",ji="hiding",Mi=".offcanvas.show",Fi="hidePrevented.bs.offcanvas",Hi="hidden.bs.offcanvas",$i={backdrop:!0,keyboard:!0,scroll:!1},Wi={backdrop:"(boolean|string)",keyboard:"boolean",scroll:"boolean"};class Bi extends W{constructor(t,e){super(t,e),this._isShown=!1,this._backdrop=this._initializeBackDrop(),this._focustrap=this._initializeFocusTrap(),this._addEventListeners()}static get Default(){return $i}static get DefaultType(){return Wi}static get NAME(){return"offcanvas"}toggle(t){return this._isShown?this.hide():this.show(t)}show(t){this._isShown||I.trigger(this._element,"show.bs.offcanvas",{relatedTarget:t}).defaultPrevented||(this._isShown=!0,this._backdrop.show(),this._config.scroll||(new pi).hide(),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),this._element.classList.add(Pi),this._queueCallback((()=>{this._config.scroll&&!this._config.backdrop||this._focustrap.activate(),this._element.classList.add(Ni),this._element.classList.remove(Pi),I.trigger(this._element,"shown.bs.offcanvas",{relatedTarget:t})}),this._element,!0))}hide(){this._isShown&&(I.trigger(this._element,"hide.bs.offcanvas").defaultPrevented||(this._focustrap.deactivate(),this._element.blur(),this._isShown=!1,this._element.classList.add(ji),this._backdrop.hide(),this._queueCallback((()=>{this._element.classList.remove(Ni,ji),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._config.scroll||(new pi).reset(),I.trigger(this._element,Hi)}),this._element,!0)))}dispose(){this._backdrop.dispose(),this._focustrap.deactivate(),super.dispose()}_initializeBackDrop(){const t=Boolean(this._config.backdrop);return new vi({className:"offcanvas-backdrop",isVisible:t,isAnimated:!0,rootElement:this._element.parentNode,clickCallback:t?()=>{"static"!==this._config.backdrop?this.hide():I.trigger(this._element,Fi)}:null})}_initializeFocusTrap(){return new Ti({trapElement:this._element})}_addEventListeners(){I.on(this._element,"keydown.dismiss.bs.offcanvas",(t=>{"Escape"===t.key&&(this._config.keyboard?this.hide():I.trigger(this._element,Fi))}))}static jQueryInterface(t){return this.each((function(){const e=Bi.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t](this)}}))}}I.on(document,"click.bs.offcanvas.data-api",'[data-bs-toggle="offcanvas"]',(function(t){const e=z.getElementFromSelector(this);if(["A","AREA"].includes(this.tagName)&&t.preventDefault(),r(this))return;I.one(e,Hi,(()=>{o(this)&&this.focus()}));const i=z.findOne(Mi);i&&i!==e&&Bi.getInstance(i).hide(),Bi.getOrCreateInstance(e).toggle(this)})),I.on(window,"load.bs.offcanvas.data-api",(()=>{for(const t of z.find(Mi))Bi.getOrCreateInstance(t).show()})),I.on(window,"resize.bs.offcanvas",(()=>{for(const t of z.find("[aria-modal][class*=show][class*=offcanvas-]"))"fixed"!==getComputedStyle(t).position&&Bi.getOrCreateInstance(t).hide()})),R(Bi),f(Bi);const zi=new Set(["background","cite","href","itemtype","longdesc","poster","src","xlink:href"]),Ri=/^(?:(?:https?|mailto|ftp|tel|file|sms):|[^#&/:?]*(?:[#/?]|$))/i,qi=/^data:(?:image\/(?:bmp|gif|jpeg|jpg|png|tiff|webp)|video\/(?:mpeg|mp4|ogg|webm)|audio\/(?:mp3|oga|ogg|opus));base64,[\d+/a-z]+=*$/i,Vi=(t,e)=>{const i=t.nodeName.toLowerCase();return e.includes(i)?!zi.has(i)||Boolean(Ri.test(t.nodeValue)||qi.test(t.nodeValue)):e.filter((t=>t instanceof RegExp)).some((t=>t.test(i)))},Ki={"*":["class","dir","id","lang","role",/^aria-[\w-]*$/i],a:["target","href","title","rel"],area:[],b:[],br:[],col:[],code:[],div:[],em:[],hr:[],h1:[],h2:[],h3:[],h4:[],h5:[],h6:[],i:[],img:["src","srcset","alt","title","width","height"],li:[],ol:[],p:[],pre:[],s:[],small:[],span:[],sub:[],sup:[],strong:[],u:[],ul:[]},Qi={allowList:Ki,content:{},extraClass:"",html:!1,sanitize:!0,sanitizeFn:null,template:"<div></div>"},Xi={allowList:"object",content:"object",extraClass:"(string|function)",html:"boolean",sanitize:"boolean",sanitizeFn:"(null|function)",template:"string"},Yi={entry:"(string|element|function|null)",selector:"(string|element)"};class Ui extends ${constructor(t){super(),this._config=this._getConfig(t)}static get Default(){return Qi}static get DefaultType(){return Xi}static get NAME(){return"TemplateFactory"}getContent(){return Object.values(this._config.content).map((t=>this._resolvePossibleFunction(t))).filter(Boolean)}hasContent(){return this.getContent().length>0}changeContent(t){return this._checkContent(t),this._config.content={...this._config.content,...t},this}toHtml(){const t=document.createElement("div");t.innerHTML=this._maybeSanitize(this._config.template);for(const[e,i]of Object.entries(this._config.content))this._setContent(t,i,e);const e=t.children[0],i=this._resolvePossibleFunction(this._config.extraClass);return i&&e.classList.add(...i.split(" ")),e}_typeCheckConfig(t){super._typeCheckConfig(t),this._checkContent(t.content)}_checkContent(t){for(const[e,i]of Object.entries(t))super._typeCheckConfig({selector:e,entry:i},Yi)}_setContent(t,e,i){const o=z.findOne(i,t);o&&((e=this._resolvePossibleFunction(e))?n(e)?this._putElementInTemplate(s(e),o):this._config.html?o.innerHTML=this._maybeSanitize(e):o.textContent=e:o.remove())}_maybeSanitize(t){return this._config.sanitize?function(t,e,i){if(!t.length)return t;if(i&&"function"==typeof i)return i(t);const n=(new window.DOMParser).parseFromString(t,"text/html"),s=[].concat(...n.body.querySelectorAll("*"));for(const t of s){const i=t.nodeName.toLowerCase();if(!Object.keys(e).includes(i)){t.remove();continue}const n=[].concat(...t.attributes),s=[].concat(e["*"]||[],e[i]||[]);for(const e of n)Vi(e,s)||t.removeAttribute(e.nodeName)}return n.body.innerHTML}(t,this._config.allowList,this._config.sanitizeFn):t}_resolvePossibleFunction(t){return p(t,[this])}_putElementInTemplate(t,e){if(this._config.html)return e.innerHTML="",void e.append(t);e.textContent=t.textContent}}const Gi=new Set(["sanitize","allowList","sanitizeFn"]),Ji="fade",Zi="show",tn=".modal",en="hide.bs.modal",nn="hover",sn="focus",on={AUTO:"auto",TOP:"top",RIGHT:u()?"left":"right",BOTTOM:"bottom",LEFT:u()?"right":"left"},rn={allowList:Ki,animation:!0,boundary:"clippingParents",container:!1,customClass:"",delay:0,fallbackPlacements:["top","right","bottom","left"],html:!1,offset:[0,0],placement:"top",popperConfig:null,sanitize:!0,sanitizeFn:null,selector:!1,template:'<div class="tooltip" role="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',title:"",trigger:"hover focus"},an={allowList:"object",animation:"boolean",boundary:"(string|element)",container:"(string|element|boolean)",customClass:"(string|function)",delay:"(number|object)",fallbackPlacements:"array",html:"boolean",offset:"(array|string|function)",placement:"(string|function)",popperConfig:"(null|object|function)",sanitize:"boolean",sanitizeFn:"(null|function)",selector:"(string|boolean)",template:"string",title:"(string|element|function)",trigger:"string"};class ln extends W{constructor(t,e){if(void 0===Ve)throw new TypeError("Bootstrap's tooltips require Popper (https://popper.js.org)");super(t,e),this._isEnabled=!0,this._timeout=0,this._isHovered=null,this._activeTrigger={},this._popper=null,this._templateFactory=null,this._newContent=null,this.tip=null,this._setListeners(),this._config.selector||this._fixTitle()}static get Default(){return rn}static get DefaultType(){return an}static get NAME(){return"tooltip"}enable(){this._isEnabled=!0}disable(){this._isEnabled=!1}toggleEnabled(){this._isEnabled=!this._isEnabled}toggle(){this._isEnabled&&(this._activeTrigger.click=!this._activeTrigger.click,this._isShown()?this._leave():this._enter())}dispose(){clearTimeout(this._timeout),I.off(this._element.closest(tn),en,this._hideModalHandler),this._element.getAttribute("data-bs-original-title")&&this._element.setAttribute("title",this._element.getAttribute("data-bs-original-title")),this._disposePopper(),super.dispose()}show(){if("none"===this._element.style.display)throw new Error("Please use show on visible elements");if(!this._isWithContent()||!this._isEnabled)return;const t=I.trigger(this._element,this.constructor.eventName("show")),e=(a(this._element)||this._element.ownerDocument.documentElement).contains(this._element);if(t.defaultPrevented||!e)return;this._disposePopper();const i=this._getTipElement();this._element.setAttribute("aria-describedby",i.getAttribute("id"));const{container:n}=this._config;if(this._element.ownerDocument.documentElement.contains(this.tip)||(n.append(i),I.trigger(this._element,this.constructor.eventName("inserted"))),this._popper=this._createPopper(i),i.classList.add(Zi),"ontouchstart"in document.documentElement)for(const t of[].concat(...document.body.children))I.on(t,"mouseover",l);this._queueCallback((()=>{I.trigger(this._element,this.constructor.eventName("shown")),!1===this._isHovered&&this._leave(),this._isHovered=!1}),this.tip,this._isAnimated())}hide(){if(this._isShown()&&!I.trigger(this._element,this.constructor.eventName("hide")).defaultPrevented){if(this._getTipElement().classList.remove(Zi),"ontouchstart"in document.documentElement)for(const t of[].concat(...document.body.children))I.off(t,"mouseover",l);this._activeTrigger.click=!1,this._activeTrigger.focus=!1,this._activeTrigger.hover=!1,this._isHovered=null,this._queueCallback((()=>{this._isWithActiveTrigger()||(this._isHovered||this._disposePopper(),this._element.removeAttribute("aria-describedby"),I.trigger(this._element,this.constructor.eventName("hidden")))}),this.tip,this._isAnimated())}}update(){this._popper&&this._popper.update()}_isWithContent(){return Boolean(this._getTitle())}_getTipElement(){return this.tip||(this.tip=this._createTipElement(this._newContent||this._getContentForTemplate())),this.tip}_createTipElement(t){const e=this._getTemplateFactory(t).toHtml();if(!e)return null;e.classList.remove(Ji,Zi),e.classList.add(`bs-${this.constructor.NAME}-auto`);const i=(t=>{do{t+=Math.floor(1e6*Math.random())}while(document.getElementById(t));return t})(this.constructor.NAME).toString();return e.setAttribute("id",i),this._isAnimated()&&e.classList.add(Ji),e}setContent(t){this._newContent=t,this._isShown()&&(this._disposePopper(),this.show())}_getTemplateFactory(t){return this._templateFactory?this._templateFactory.changeContent(t):this._templateFactory=new Ui({...this._config,content:t,extraClass:this._resolvePossibleFunction(this._config.customClass)}),this._templateFactory}_getContentForTemplate(){return{".tooltip-inner":this._getTitle()}}_getTitle(){return this._resolvePossibleFunction(this._config.title)||this._element.getAttribute("data-bs-original-title")}_initializeOnDelegatedTarget(t){return this.constructor.getOrCreateInstance(t.delegateTarget,this._getDelegateConfig())}_isAnimated(){return this._config.animation||this.tip&&this.tip.classList.contains(Ji)}_isShown(){return this.tip&&this.tip.classList.contains(Zi)}_createPopper(t){const e=p(this._config.placement,[this,t,this._element]),i=on[e.toUpperCase()];return qe(this._element,t,this._getPopperConfig(i))}_getOffset(){const{offset:t}=this._config;return"string"==typeof t?t.split(",").map((t=>Number.parseInt(t,10))):"function"==typeof t?e=>t(e,this._element):t}_resolvePossibleFunction(t){return p(t,[this._element])}_getPopperConfig(t){const e={placement:t,modifiers:[{name:"flip",options:{fallbackPlacements:this._config.fallbackPlacements}},{name:"offset",options:{offset:this._getOffset()}},{name:"preventOverflow",options:{boundary:this._config.boundary}},{name:"arrow",options:{element:`.${this.constructor.NAME}-arrow`}},{name:"preSetPlacement",enabled:!0,phase:"beforeMain",fn:t=>{this._getTipElement().setAttribute("data-popper-placement",t.state.placement)}}]};return{...e,...p(this._config.popperConfig,[e])}}_setListeners(){const t=this._config.trigger.split(" ");for(const e of t)if("click"===e)I.on(this._element,this.constructor.eventName("click"),this._config.selector,(t=>{this._initializeOnDelegatedTarget(t).toggle()}));else if("manual"!==e){const t=e===nn?this.constructor.eventName("mouseenter"):this.constructor.eventName("focusin"),i=e===nn?this.constructor.eventName("mouseleave"):this.constructor.eventName("focusout");I.on(this._element,t,this._config.selector,(t=>{const e=this._initializeOnDelegatedTarget(t);e._activeTrigger["focusin"===t.type?sn:nn]=!0,e._enter()})),I.on(this._element,i,this._config.selector,(t=>{const e=this._initializeOnDelegatedTarget(t);e._activeTrigger["focusout"===t.type?sn:nn]=e._element.contains(t.relatedTarget),e._leave()}))}this._hideModalHandler=()=>{this._element&&this.hide()},I.on(this._element.closest(tn),en,this._hideModalHandler)}_fixTitle(){const t=this._element.getAttribute("title");t&&(this._element.getAttribute("aria-label")||this._element.textContent.trim()||this._element.setAttribute("aria-label",t),this._element.setAttribute("data-bs-original-title",t),this._element.removeAttribute("title"))}_enter(){this._isShown()||this._isHovered?this._isHovered=!0:(this._isHovered=!0,this._setTimeout((()=>{this._isHovered&&this.show()}),this._config.delay.show))}_leave(){this._isWithActiveTrigger()||(this._isHovered=!1,this._setTimeout((()=>{this._isHovered||this.hide()}),this._config.delay.hide))}_setTimeout(t,e){clearTimeout(this._timeout),this._timeout=setTimeout(t,e)}_isWithActiveTrigger(){return Object.values(this._activeTrigger).includes(!0)}_getConfig(t){const e=H.getDataAttributes(this._element);for(const t of Object.keys(e))Gi.has(t)&&delete e[t];return t={...e,..."object"==typeof t&&t?t:{}},t=this._mergeConfigObj(t),t=this._configAfterMerge(t),this._typeCheckConfig(t),t}_configAfterMerge(t){return t.container=!1===t.container?document.body:s(t.container),"number"==typeof t.delay&&(t.delay={show:t.delay,hide:t.delay}),"number"==typeof t.title&&(t.title=t.title.toString()),"number"==typeof t.content&&(t.content=t.content.toString()),t}_getDelegateConfig(){const t={};for(const[e,i]of Object.entries(this._config))this.constructor.Default[e]!==i&&(t[e]=i);return t.selector=!1,t.trigger="manual",t}_disposePopper(){this._popper&&(this._popper.destroy(),this._popper=null),this.tip&&(this.tip.remove(),this.tip=null)}static jQueryInterface(t){return this.each((function(){const e=ln.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}f(ln);const cn={...ln.Default,content:"",offset:[0,8],placement:"right",template:'<div class="popover" role="tooltip"><div class="popover-arrow"></div><h3 class="popover-header"></h3><div class="popover-body"></div></div>',trigger:"click"},hn={...ln.DefaultType,content:"(null|string|element|function)"};class dn extends ln{static get Default(){return cn}static get DefaultType(){return hn}static get NAME(){return"popover"}_isWithContent(){return this._getTitle()||this._getContent()}_getContentForTemplate(){return{".popover-header":this._getTitle(),".popover-body":this._getContent()}}_getContent(){return this._resolvePossibleFunction(this._config.content)}static jQueryInterface(t){return this.each((function(){const e=dn.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}f(dn);const un="click.bs.scrollspy",fn="active",pn="[href]",mn={offset:null,rootMargin:"0px 0px -25%",smoothScroll:!1,target:null,threshold:[.1,.5,1]},gn={offset:"(number|null)",rootMargin:"string",smoothScroll:"boolean",target:"element",threshold:"array"};class _n extends W{constructor(t,e){super(t,e),this._targetLinks=new Map,this._observableSections=new Map,this._rootElement="visible"===getComputedStyle(this._element).overflowY?null:this._element,this._activeTarget=null,this._observer=null,this._previousScrollData={visibleEntryTop:0,parentScrollTop:0},this.refresh()}static get Default(){return mn}static get DefaultType(){return gn}static get NAME(){return"scrollspy"}refresh(){this._initializeTargetsAndObservables(),this._maybeEnableSmoothScroll(),this._observer?this._observer.disconnect():this._observer=this._getNewObserver();for(const t of this._observableSections.values())this._observer.observe(t)}dispose(){this._observer.disconnect(),super.dispose()}_configAfterMerge(t){return t.target=s(t.target)||document.body,t.rootMargin=t.offset?`${t.offset}px 0px -30%`:t.rootMargin,"string"==typeof t.threshold&&(t.threshold=t.threshold.split(",").map((t=>Number.parseFloat(t)))),t}_maybeEnableSmoothScroll(){this._config.smoothScroll&&(I.off(this._config.target,un),I.on(this._config.target,un,pn,(t=>{const e=this._observableSections.get(t.target.hash);if(e){t.preventDefault();const i=this._rootElement||window,n=e.offsetTop-this._element.offsetTop;if(i.scrollTo)return void i.scrollTo({top:n,behavior:"smooth"});i.scrollTop=n}})))}_getNewObserver(){const t={root:this._rootElement,threshold:this._config.threshold,rootMargin:this._config.rootMargin};return new IntersectionObserver((t=>this._observerCallback(t)),t)}_observerCallback(t){const e=t=>this._targetLinks.get(`#${t.target.id}`),i=t=>{this._previousScrollData.visibleEntryTop=t.target.offsetTop,this._process(e(t))},n=(this._rootElement||document.documentElement).scrollTop,s=n>=this._previousScrollData.parentScrollTop;this._previousScrollData.parentScrollTop=n;for(const o of t){if(!o.isIntersecting){this._activeTarget=null,this._clearActiveClass(e(o));continue}const t=o.target.offsetTop>=this._previousScrollData.visibleEntryTop;if(s&&t){if(i(o),!n)return}else s||t||i(o)}}_initializeTargetsAndObservables(){this._targetLinks=new Map,this._observableSections=new Map;const t=z.find(pn,this._config.target);for(const e of t){if(!e.hash||r(e))continue;const t=z.findOne(e.hash,this._element);o(t)&&(this._targetLinks.set(e.hash,e),this._observableSections.set(e.hash,t))}}_process(t){this._activeTarget!==t&&(this._clearActiveClass(this._config.target),this._activeTarget=t,t.classList.add(fn),this._activateParents(t),I.trigger(this._element,"activate.bs.scrollspy",{relatedTarget:t}))}_activateParents(t){if(t.classList.contains("dropdown-item"))z.findOne(".dropdown-toggle",t.closest(".dropdown")).classList.add(fn);else for(const e of z.parents(t,".nav, .list-group"))for(const t of z.prev(e,".nav-link, .nav-item > .nav-link, .list-group-item"))t.classList.add(fn)}_clearActiveClass(t){t.classList.remove(fn);const e=z.find("[href].active",t);for(const t of e)t.classList.remove(fn)}static jQueryInterface(t){return this.each((function(){const e=_n.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t]()}}))}}I.on(window,"load.bs.scrollspy.data-api",(()=>{for(const t of z.find('[data-bs-spy="scroll"]'))_n.getOrCreateInstance(t)})),f(_n);const bn="ArrowLeft",vn="ArrowRight",yn="ArrowUp",wn="ArrowDown",An="active",En="fade",Tn="show",Cn='[data-bs-toggle="tab"], [data-bs-toggle="pill"], [data-bs-toggle="list"]',On=`.nav-link:not(.dropdown-toggle), .list-group-item:not(.dropdown-toggle), [role="tab"]:not(.dropdown-toggle), ${Cn}`;class xn extends W{constructor(t){super(t),this._parent=this._element.closest('.list-group, .nav, [role="tablist"]'),this._parent&&(this._setInitialAttributes(this._parent,this._getChildren()),I.on(this._element,"keydown.bs.tab",(t=>this._keydown(t))))}static get NAME(){return"tab"}show(){const t=this._element;if(this._elemIsActive(t))return;const e=this._getActiveElem(),i=e?I.trigger(e,"hide.bs.tab",{relatedTarget:t}):null;I.trigger(t,"show.bs.tab",{relatedTarget:e}).defaultPrevented||i&&i.defaultPrevented||(this._deactivate(e,t),this._activate(t,e))}_activate(t,e){t&&(t.classList.add(An),this._activate(z.getElementFromSelector(t)),this._queueCallback((()=>{"tab"===t.getAttribute("role")?(t.removeAttribute("tabindex"),t.setAttribute("aria-selected",!0),this._toggleDropDown(t,!0),I.trigger(t,"shown.bs.tab",{relatedTarget:e})):t.classList.add(Tn)}),t,t.classList.contains(En)))}_deactivate(t,e){t&&(t.classList.remove(An),t.blur(),this._deactivate(z.getElementFromSelector(t)),this._queueCallback((()=>{"tab"===t.getAttribute("role")?(t.setAttribute("aria-selected",!1),t.setAttribute("tabindex","-1"),this._toggleDropDown(t,!1),I.trigger(t,"hidden.bs.tab",{relatedTarget:e})):t.classList.remove(Tn)}),t,t.classList.contains(En)))}_keydown(t){if(![bn,vn,yn,wn].includes(t.key))return;t.stopPropagation(),t.preventDefault();const e=[vn,wn].includes(t.key),i=g(this._getChildren().filter((t=>!r(t))),t.target,e,!0);i&&(i.focus({preventScroll:!0}),xn.getOrCreateInstance(i).show())}_getChildren(){return z.find(On,this._parent)}_getActiveElem(){return this._getChildren().find((t=>this._elemIsActive(t)))||null}_setInitialAttributes(t,e){this._setAttributeIfNotExists(t,"role","tablist");for(const t of e)this._setInitialAttributesOnChild(t)}_setInitialAttributesOnChild(t){t=this._getInnerElement(t);const e=this._elemIsActive(t),i=this._getOuterElement(t);t.setAttribute("aria-selected",e),i!==t&&this._setAttributeIfNotExists(i,"role","presentation"),e||t.setAttribute("tabindex","-1"),this._setAttributeIfNotExists(t,"role","tab"),this._setInitialAttributesOnTargetPanel(t)}_setInitialAttributesOnTargetPanel(t){const e=z.getElementFromSelector(t);e&&(this._setAttributeIfNotExists(e,"role","tabpanel"),t.id&&this._setAttributeIfNotExists(e,"aria-labelledby",`${t.id}`))}_toggleDropDown(t,e){const i=this._getOuterElement(t);if(!i.classList.contains("dropdown"))return;const n=(t,n)=>{const s=z.findOne(t,i);s&&s.classList.toggle(n,e)};n(".dropdown-toggle",An),n(".dropdown-menu",Tn),i.setAttribute("aria-expanded",e)}_setAttributeIfNotExists(t,e,i){t.hasAttribute(e)||t.setAttribute(e,i)}_elemIsActive(t){return t.classList.contains(An)}_getInnerElement(t){return t.matches(On)?t:z.findOne(On,t)}_getOuterElement(t){return t.closest(".nav-item, .list-group-item")||t}static jQueryInterface(t){return this.each((function(){const e=xn.getOrCreateInstance(this);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t]()}}))}}I.on(document,"click.bs.tab",Cn,(function(t){["A","AREA"].includes(this.tagName)&&t.preventDefault(),r(this)||xn.getOrCreateInstance(this).show()})),I.on(window,"load.bs.tab",(()=>{for(const t of z.find('.active[data-bs-toggle="tab"], .active[data-bs-toggle="pill"], .active[data-bs-toggle="list"]'))xn.getOrCreateInstance(t)})),f(xn);const kn="hide",Ln="show",Sn="showing",Dn={animation:"boolean",autohide:"boolean",delay:"number"},In={animation:!0,autohide:!0,delay:5e3};class Nn extends W{constructor(t,e){super(t,e),this._timeout=null,this._hasMouseInteraction=!1,this._hasKeyboardInteraction=!1,this._setListeners()}static get Default(){return In}static get DefaultType(){return Dn}static get NAME(){return"toast"}show(){I.trigger(this._element,"show.bs.toast").defaultPrevented||(this._clearTimeout(),this._config.animation&&this._element.classList.add("fade"),this._element.classList.remove(kn),c(this._element),this._element.classList.add(Ln,Sn),this._queueCallback((()=>{this._element.classList.remove(Sn),I.trigger(this._element,"shown.bs.toast"),this._maybeScheduleHide()}),this._element,this._config.animation))}hide(){this.isShown()&&(I.trigger(this._element,"hide.bs.toast").defaultPrevented||(this._element.classList.add(Sn),this._queueCallback((()=>{this._element.classList.add(kn),this._element.classList.remove(Sn,Ln),I.trigger(this._element,"hidden.bs.toast")}),this._element,this._config.animation)))}dispose(){this._clearTimeout(),this.isShown()&&this._element.classList.remove(Ln),super.dispose()}isShown(){return this._element.classList.contains(Ln)}_maybeScheduleHide(){this._config.autohide&&(this._hasMouseInteraction||this._hasKeyboardInteraction||(this._timeout=setTimeout((()=>{this.hide()}),this._config.delay)))}_onInteraction(t,e){switch(t.type){case"mouseover":case"mouseout":this._hasMouseInteraction=e;break;case"focusin":case"focusout":this._hasKeyboardInteraction=e}if(e)return void this._clearTimeout();const i=t.relatedTarget;this._element===i||this._element.contains(i)||this._maybeScheduleHide()}_setListeners(){I.on(this._element,"mouseover.bs.toast",(t=>this._onInteraction(t,!0))),I.on(this._element,"mouseout.bs.toast",(t=>this._onInteraction(t,!1))),I.on(this._element,"focusin.bs.toast",(t=>this._onInteraction(t,!0))),I.on(this._element,"focusout.bs.toast",(t=>this._onInteraction(t,!1)))}_clearTimeout(){clearTimeout(this._timeout),this._timeout=null}static jQueryInterface(t){return this.each((function(){const e=Nn.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t](this)}}))}}return R(Nn),f(Nn),{Alert:q,Button:K,Carousel:rt,Collapse:ft,Dropdown:ci,Modal:Ii,Offcanvas:Bi,Popover:dn,ScrollSpy:_n,Tab:xn,Toast:Nn,Tooltip:ln}}));
7
+ //# sourceMappingURL=bootstrap.bundle.min.js.map
@@ -0,0 +1,14 @@
1
+ $(document).ready(function() {
2
+ const $win = $(window);
3
+ const winH = $win.height();
4
+
5
+
6
+ $('.js-switch .form-check-input').on('change', function () {
7
+ if(this.checked){
8
+ $('html').attr('data-bs-theme', 'dark');
9
+ }
10
+ if(!this.checked){
11
+ $('html').attr('data-bs-theme', 'light');
12
+ }
13
+ });
14
+ });