@verdaccio/ui-theme 6.0.0-6-next.12 → 6.0.0-6-next.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (246) hide show
  1. package/.babelrc +1 -1
  2. package/.eslintrc +0 -15
  3. package/CHANGELOG.md +6 -0
  4. package/jest/setup-env.ts +4 -1
  5. package/jest/unit/components/__mocks__/token.ts +0 -1
  6. package/jest/unit/components/store/login.ts +1 -0
  7. package/package.json +34 -37
  8. package/src/App/App.test.tsx +4 -6
  9. package/src/App/App.tsx +3 -5
  10. package/src/App/AppRoute.tsx +1 -1
  11. package/src/App/Footer/Footer.test.tsx +0 -1
  12. package/src/App/Footer/Footer.tsx +3 -3
  13. package/src/App/Footer/__snapshots__/Footer.test.tsx.snap +25 -9
  14. package/src/App/Footer/styles.ts +2 -3
  15. package/src/App/Header/Header.test.tsx +3 -5
  16. package/src/App/Header/Header.tsx +3 -5
  17. package/src/App/Header/HeaderGreetings.tsx +0 -1
  18. package/src/App/Header/HeaderLeft.tsx +0 -1
  19. package/src/App/Header/HeaderMenu.tsx +3 -3
  20. package/src/App/Header/HeaderRight.tsx +1 -2
  21. package/src/App/Header/HeaderToolTip.tsx +0 -1
  22. package/src/App/Header/HeaderToolTipIcon.tsx +10 -10
  23. package/src/App/Header/LanguageSwitch.tsx +4 -5
  24. package/src/App/Header/LoginDialog/LoginDialog.test.tsx +4 -7
  25. package/src/App/Header/LoginDialog/LoginDialog.tsx +2 -4
  26. package/src/App/Header/LoginDialog/LoginDialogCloseButton.tsx +1 -2
  27. package/src/App/Header/LoginDialog/LoginDialogForm.tsx +0 -1
  28. package/src/App/Header/LoginDialog/LoginDialogFormError.tsx +1 -2
  29. package/src/App/Header/LoginDialog/LoginDialogHeader.tsx +4 -4
  30. package/src/App/Header/RegistryInfoContent/RegistryInfoContent.test.tsx +1 -2
  31. package/src/App/Header/RegistryInfoContent/RegistryInfoContent.tsx +9 -10
  32. package/src/App/Header/RegistryInfoDialog/RegistryInfoDialog.tsx +1 -2
  33. package/src/App/Header/RegistryInfoDialog/styles.ts +0 -1
  34. package/src/App/Header/Search/Search.test.tsx +32 -41
  35. package/src/App/Header/Search/Search.tsx +15 -58
  36. package/src/App/Header/Search/__snapshots__/Search.test.tsx.snap +392 -28
  37. package/src/App/Header/styles.ts +2 -3
  38. package/src/App/utils/loadable.tsx +2 -1
  39. package/src/components/ActionBar/ActionBar.test.tsx +5 -13
  40. package/src/components/ActionBar/ActionBar.tsx +0 -2
  41. package/src/components/ActionBar/ActionBarAction.tsx +6 -7
  42. package/src/components/ActionBar/__snapshots__/ActionBar.test.tsx.snap +198 -53
  43. package/src/components/AppBar.tsx +1 -1
  44. package/src/components/Author/Author.test.tsx +1 -3
  45. package/src/components/Author/Author.tsx +2 -4
  46. package/src/components/Author/__snapshots__/Author.test.tsx.snap +804 -48
  47. package/src/components/Author/styles.ts +0 -1
  48. package/src/components/AutoComplete/AutoComplete.tsx +85 -163
  49. package/src/components/AutoComplete/AutoCompleteV2.tsx +7 -9
  50. package/src/components/AutoComplete/styles.tsx +0 -15
  51. package/src/components/Avatar.tsx +1 -1
  52. package/src/components/Box.tsx +1 -1
  53. package/src/components/Button.tsx +1 -1
  54. package/src/components/Card.tsx +1 -1
  55. package/src/components/CardActions.tsx +1 -1
  56. package/src/components/CardContent.tsx +1 -1
  57. package/src/components/Chip.tsx +1 -1
  58. package/src/components/CircularProgress.tsx +2 -2
  59. package/src/components/CopyToClipBoard.tsx +2 -3
  60. package/src/components/Dialog.tsx +1 -1
  61. package/src/components/DialogActions.tsx +2 -2
  62. package/src/components/DialogContent.tsx +2 -2
  63. package/src/components/DialogTitle.tsx +1 -1
  64. package/src/components/Divider.tsx +1 -1
  65. package/src/components/FloatingActionButton.tsx +1 -1
  66. package/src/components/FormControl.tsx +1 -1
  67. package/src/components/FormHelperText.tsx +2 -2
  68. package/src/components/Grid.tsx +1 -1
  69. package/src/components/Heading.tsx +1 -1
  70. package/src/components/IconButton.tsx +1 -1
  71. package/src/components/Input.tsx +1 -1
  72. package/src/components/InputAdornment/InputAdornment.tsx +2 -2
  73. package/src/components/InputLabel.tsx +1 -1
  74. package/src/components/Label/Label.test.tsx +0 -1
  75. package/src/components/Label/Label.tsx +1 -2
  76. package/src/components/List.tsx +1 -1
  77. package/src/components/ListItem.tsx +1 -1
  78. package/src/components/ListItemText.tsx +1 -4
  79. package/src/components/Loading/Loading.test.tsx +0 -1
  80. package/src/components/Loading/Loading.tsx +1 -2
  81. package/src/components/Loading/Spinner/Spinner.test.tsx +1 -2
  82. package/src/components/Loading/Spinner/Spinner.tsx +1 -2
  83. package/src/components/Loading/Spinner/__snapshots__/Spinner.test.tsx.snap +114 -16
  84. package/src/components/Loading/__snapshots__/Loading.test.tsx.snap +63 -11
  85. package/src/components/Loading/styles.ts +1 -2
  86. package/src/components/Logo/Logo.test.tsx +0 -1
  87. package/src/components/Logo/Logo.tsx +1 -2
  88. package/src/components/Logo/__snapshots__/Logo.test.tsx.snap +2 -0
  89. package/src/components/Menu.tsx +1 -1
  90. package/src/components/MenuItem.tsx +1 -1
  91. package/src/components/NotFound/NotFound.tsx +1 -3
  92. package/src/components/NotFound/Notfound.test.tsx +1 -2
  93. package/src/components/NotFound/__snapshots__/Notfound.test.tsx.snap +138 -11
  94. package/src/components/NotFound/styles.ts +0 -1
  95. package/src/components/Paper.tsx +1 -1
  96. package/src/components/SnackbarContent.tsx +1 -1
  97. package/src/components/SvgIcon.tsx +1 -1
  98. package/src/components/Tab.tsx +1 -1
  99. package/src/components/Tabs.tsx +1 -1
  100. package/src/components/Text/Text.tsx +1 -1
  101. package/src/components/Text/TextConfig.ts +1 -1
  102. package/src/components/TextField/TextField.test.tsx +0 -1
  103. package/src/components/TextField/TextField.tsx +2 -2
  104. package/src/components/TextField/__snapshots__/TextField.test.tsx.snap +216 -3
  105. package/src/components/Toolbar.tsx +1 -1
  106. package/src/components/Tooltip.tsx +1 -1
  107. package/src/design-tokens/ResetStyles.tsx +1 -1
  108. package/src/design-tokens/StyleBaseline.tsx +2 -2
  109. package/src/design-tokens/ThemeProvider.tsx +15 -12
  110. package/src/design-tokens/theme.ts +28 -26
  111. package/src/design-tokens/useTheme.ts +1 -1
  112. package/src/{design-tokens → hooks}/useLocalStorage.ts +0 -0
  113. package/src/{design-tokens → hooks}/useOnClickOutside.ts +0 -0
  114. package/src/i18n/__mocks__/loadTranslationFile.ts +5 -0
  115. package/src/i18n/config.ts +1 -15
  116. package/src/i18n/download_translations/es-ES/ui.json +17 -17
  117. package/src/i18n/download_translations/it-IT/ui.json +77 -77
  118. package/src/i18n/download_translations/tr-TR/ui.json +6 -6
  119. package/src/i18n/download_translations/vi-VN/ui.json +2 -2
  120. package/src/i18n/loadTranslationFile.ts +14 -0
  121. package/src/index.tsx +2 -1
  122. package/src/pages/Version/DetailContainer/Dependencies/Dependencies.test.tsx +0 -2
  123. package/src/pages/Version/DetailContainer/Dependencies/Dependencies.tsx +1 -3
  124. package/src/pages/Version/DetailContainer/Dependencies/styles.ts +0 -1
  125. package/src/pages/Version/DetailContainer/Deprecated/Deprecated.test.tsx +1 -3
  126. package/src/pages/Version/DetailContainer/Deprecated/Deprecated.tsx +2 -3
  127. package/src/pages/Version/DetailContainer/DetailContainer.test.tsx +0 -1
  128. package/src/pages/Version/DetailContainer/DetailContainer.tsx +1 -3
  129. package/src/pages/Version/DetailContainer/DetailContainerContent.tsx +0 -1
  130. package/src/pages/Version/DetailContainer/DetailContainerContentReadme.tsx +0 -1
  131. package/src/pages/Version/DetailContainer/DetailContainerTabs.tsx +0 -1
  132. package/src/pages/Version/DetailContainer/NoItems/NoItems.tsx +0 -1
  133. package/src/pages/Version/DetailContainer/NoItems/Noitems.test.tsx +0 -1
  134. package/src/pages/Version/DetailContainer/NoItems/__snapshots__/Noitems.test.tsx.snap +10 -1
  135. package/src/pages/Version/DetailContainer/Readme/Readme.spec.tsx +1 -2
  136. package/src/pages/Version/DetailContainer/Readme/Readme.tsx +1 -2
  137. package/src/pages/Version/DetailContainer/UpLinks/UpLinks.test.tsx +1 -3
  138. package/src/pages/Version/DetailContainer/UpLinks/UpLinks.tsx +1 -3
  139. package/src/pages/Version/DetailContainer/UpLinks/__snapshots__/UpLinks.test.tsx.snap +184 -26
  140. package/src/pages/Version/DetailContainer/UpLinks/styles.ts +2 -3
  141. package/src/pages/Version/DetailContainer/Versions/Versions.test.tsx +2 -4
  142. package/src/pages/Version/DetailContainer/Versions/Versions.tsx +1 -2
  143. package/src/pages/Version/DetailContainer/Versions/VersionsHistoryList.tsx +2 -4
  144. package/src/pages/Version/DetailContainer/Versions/VersionsTagList.tsx +1 -3
  145. package/src/pages/Version/DetailContainer/Versions/styles.ts +2 -3
  146. package/src/pages/Version/DetailContainer/__snapshots__/DetailContainer.test.tsx.snap +168 -34
  147. package/src/pages/Version/DetailSidebar/DetailSidebar.tsx +0 -2
  148. package/src/pages/Version/DetailSidebar/DetailSidebarFundButton.test.tsx +0 -2
  149. package/src/pages/Version/DetailSidebar/DetailSidebarFundButton.tsx +1 -2
  150. package/src/pages/Version/DetailSidebar/DetailSidebarTitle.tsx +0 -1
  151. package/src/pages/Version/DetailSidebar/Developers/Developers.test.tsx +3 -5
  152. package/src/pages/Version/DetailSidebar/Developers/Developers.tsx +3 -5
  153. package/src/pages/Version/DetailSidebar/Developers/DevelopersTitle.tsx +0 -1
  154. package/src/pages/Version/DetailSidebar/Developers/__snapshots__/Developers.test.tsx.snap +328 -40
  155. package/src/pages/Version/DetailSidebar/Developers/styles.ts +0 -1
  156. package/src/pages/Version/DetailSidebar/Dist/Dist.test.tsx +1 -3
  157. package/src/pages/Version/DetailSidebar/Dist/Dist.tsx +1 -3
  158. package/src/pages/Version/DetailSidebar/Dist/__snapshots__/Dist.test.tsx.snap +1436 -74
  159. package/src/pages/Version/DetailSidebar/Dist/styles.ts +2 -1
  160. package/src/pages/Version/DetailSidebar/Engines/Engines.test.tsx +1 -3
  161. package/src/pages/Version/DetailSidebar/Engines/Engines.tsx +1 -3
  162. package/src/pages/Version/DetailSidebar/Engines/styles.ts +0 -1
  163. package/src/pages/Version/DetailSidebar/Install/Install.test.tsx +1 -3
  164. package/src/pages/Version/DetailSidebar/Install/Install.tsx +0 -2
  165. package/src/pages/Version/DetailSidebar/Install/InstallListItem.tsx +0 -1
  166. package/src/pages/Version/DetailSidebar/Repository/Repository.test.tsx +1 -3
  167. package/src/pages/Version/DetailSidebar/Repository/Repository.tsx +1 -3
  168. package/src/pages/Version/Version.test.tsx +1 -3
  169. package/src/pages/Version/Version.tsx +1 -3
  170. package/src/pages/Version/VersionContextProvider.tsx +0 -1
  171. package/src/pages/Version/VersionLayout.tsx +1 -1
  172. package/src/pages/Version/context.ts +1 -1
  173. package/src/pages/home/Home.tsx +0 -2
  174. package/src/pages/home/PackageList/Help/Help.test.tsx +0 -1
  175. package/src/pages/home/PackageList/Help/Help.tsx +0 -1
  176. package/src/pages/home/PackageList/Help/__snapshots__/Help.test.tsx.snap +295 -56
  177. package/src/pages/home/PackageList/Help/styles.ts +0 -1
  178. package/src/pages/home/PackageList/Package/Package.test.tsx +1 -3
  179. package/src/pages/home/PackageList/Package/Package.tsx +14 -19
  180. package/src/pages/home/PackageList/Package/Tag/Tag.test.tsx +0 -1
  181. package/src/pages/home/PackageList/Package/styles.ts +5 -6
  182. package/src/pages/home/PackageList/PackageList.tsx +0 -1
  183. package/src/pages/home/PackageList/Packagelist.test.tsx +1 -3
  184. package/src/providers/API/api.ts +1 -1
  185. package/src/providers/config/AppConfigurationProvider.tsx +3 -3
  186. package/src/store/models/configuration.ts +2 -3
  187. package/src/store/models/download.ts +1 -2
  188. package/src/store/models/index.ts +1 -0
  189. package/src/store/models/login.ts +4 -2
  190. package/src/store/models/manifest.ts +2 -2
  191. package/src/store/models/packages.ts +2 -2
  192. package/src/store/models/search.ts +5 -5
  193. package/src/store/store.ts +2 -2
  194. package/src/utils/login.test.ts +2 -3
  195. package/src/utils/package.test.ts +2 -3
  196. package/src/utils/package.ts +2 -1
  197. package/src/utils/sec-utils.ts +1 -1
  198. package/src/utils/test-react-testing-library.tsx +11 -7
  199. package/src/utils/url.test.ts +1 -1
  200. package/src/utils/url.ts +1 -0
  201. package/static/Dependencies.15768a14646212b71166.js +2 -0
  202. package/static/Dependencies.15768a14646212b71166.js.LICENSE.txt +78 -0
  203. package/static/Dist.15768a14646212b71166.js +2 -0
  204. package/static/Dist.15768a14646212b71166.js.LICENSE.txt +60 -0
  205. package/static/Engines.15768a14646212b71166.js +2 -0
  206. package/static/Engines.15768a14646212b71166.js.LICENSE.txt +66 -0
  207. package/static/Home.15768a14646212b71166.js +2 -0
  208. package/static/Home.15768a14646212b71166.js.LICENSE.txt +222 -0
  209. package/static/Install.15768a14646212b71166.js +2 -0
  210. package/static/Install.15768a14646212b71166.js.LICENSE.txt +66 -0
  211. package/static/NotFound.15768a14646212b71166.js +2 -0
  212. package/static/NotFound.15768a14646212b71166.js.LICENSE.txt +40 -0
  213. package/static/Provider.15768a14646212b71166.js +2 -0
  214. package/static/Provider.15768a14646212b71166.js.LICENSE.txt +32 -0
  215. package/static/Repository.15768a14646212b71166.js +2 -0
  216. package/static/Repository.15768a14646212b71166.js.LICENSE.txt +50 -0
  217. package/static/UpLinks.15768a14646212b71166.js +2 -0
  218. package/static/UpLinks.15768a14646212b71166.js.LICENSE.txt +56 -0
  219. package/static/Version.15768a14646212b71166.js +2 -0
  220. package/static/Version.15768a14646212b71166.js.LICENSE.txt +380 -0
  221. package/static/Versions.15768a14646212b71166.js +2 -0
  222. package/static/Versions.15768a14646212b71166.js.LICENSE.txt +64 -0
  223. package/static/index.html +1 -1
  224. package/static/main.15768a14646212b71166.js +2 -0
  225. package/static/{main.87dd0a7ff6e306a24166.js.LICENSE.txt → main.15768a14646212b71166.js.LICENSE.txt} +63 -663
  226. package/static/manifest.json +17 -3
  227. package/static/runtime.15768a14646212b71166.js +2 -0
  228. package/static/{runtime.87dd0a7ff6e306a24166.js.LICENSE.txt → runtime.15768a14646212b71166.js.LICENSE.txt} +2 -2
  229. package/static/vendors-node_modules_pnpm_mui_icons-material_5_0_5_d1eeebd4022867ee03864a00e16c7901_node_modu-123400.15768a14646212b71166.js +2 -0
  230. package/static/vendors-node_modules_pnpm_mui_icons-material_5_0_5_d1eeebd4022867ee03864a00e16c7901_node_modu-123400.15768a14646212b71166.js.LICENSE.txt +148 -0
  231. package/static/vendors-node_modules_pnpm_mui_icons-material_5_0_5_d1eeebd4022867ee03864a00e16c7901_node_modu-d2b578.15768a14646212b71166.js +2 -0
  232. package/static/vendors-node_modules_pnpm_mui_icons-material_5_0_5_d1eeebd4022867ee03864a00e16c7901_node_modu-d2b578.15768a14646212b71166.js.LICENSE.txt +218 -0
  233. package/static/vendors-node_modules_pnpm_mui_material_5_0_6_033766d34292bd5d464212fd95cb4b6d_node_modules_mu-1fb115.15768a14646212b71166.js +2 -0
  234. package/static/vendors-node_modules_pnpm_mui_material_5_0_6_033766d34292bd5d464212fd95cb4b6d_node_modules_mu-1fb115.15768a14646212b71166.js.LICENSE.txt +316 -0
  235. package/static/vendors.15768a14646212b71166.js +103 -0
  236. package/static/{vendors.87dd0a7ff6e306a24166.js.LICENSE.txt → vendors.15768a14646212b71166.js.LICENSE.txt} +1261 -1035
  237. package/tools/dev.server.js +0 -1
  238. package/tools/webpack.dev.config.babel.js +1 -3
  239. package/tsconfig.json +0 -2
  240. package/types/index.ts +1 -0
  241. package/src/App/Header/Search/SearchAdornment.tsx +0 -18
  242. package/src/design-tokens/emotion.ts +0 -5
  243. package/src/lib/constants.ts +0 -9
  244. package/static/main.87dd0a7ff6e306a24166.js +0 -2
  245. package/static/runtime.87dd0a7ff6e306a24166.js +0 -2
  246. package/static/vendors.87dd0a7ff6e306a24166.js +0 -2
@@ -1,2 +0,0 @@
1
- /*! For license information please see main.87dd0a7ff6e306a24166.js.LICENSE.txt */
2
- (self.webpackChunk_verdaccio_ui_theme=self.webpackChunk_verdaccio_ui_theme||[]).push([["main"],{"./lib/constants.ts":(e,t,a)=>{"use strict";var o;a.r(t),a.d(t,{DIST_TAGS:()=>i,HEADERS:()=>s,API_ERROR:()=>l}),e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var n,r,i="dist-tags",s={JSON:"application/json"},l={BAD_USERNAME_PASSWORD:"bad username/password, access denied"};(n="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(n.register(i,"DIST_TAGS","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/lib/constants.ts"),n.register(s,"HEADERS","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/lib/constants.ts"),n.register(l,"API_ERROR","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/lib/constants.ts")),(r="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&r(e)},"./src/App/App.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>b});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/defineProperty.js"),r=a("../../../node_modules/.pnpm/@emotion+styled-base@10.0.31_33bb31e1d857102242df3642b32eda18/node_modules/@emotion/styled-base/dist/styled-base.browser.esm.js"),i=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),s=a("../../../node_modules/.pnpm/react-router@5.2.1_react@17.0.2/node_modules/react-router/esm/react-router.js"),l=a("./src/components/Box.tsx"),d=a("./src/components/Loading/index.ts"),c=a("./src/design-tokens/load-dayjs-locale.ts"),u=a("./src/design-tokens/StyleBaseline.tsx"),g=a("./src/App/AppRoute.tsx"),p=a("./src/App/Footer/index.ts"),m=a("./src/App/Header/index.ts");a("./src/i18n/config.ts");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);var I="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default.signature:function(e){return e},C=(0,r.default)(l.default,{target:"e1qqswew0",label:"StyledBox"})((function(e){var t=e.theme;return{backgroundColor:null==t?void 0:t.palette.background.default}}),""),A=(0,r.default)(l.default,{target:"e1qqswew1",label:"StyledBoxContent"})((function(e){var t=e.theme;return(0,n.default)({},"@media screen and (min-width: ".concat(null==t?void 0:t.breakPoints.container,"px)"),{maxWidth:null==t?void 0:t.breakPoints.container,width:"100%",marginLeft:"auto",marginRight:"auto"})}),""),f=function(){return(0,i.useEffect)((function(){(0,c.default)()}),[]),i.createElement(i.Suspense,{fallback:i.createElement(d.default,null)},i.createElement(u.default,null),i.createElement(C,{display:"flex",flexDirection:"column",height:"100%"},i.createElement(i.Fragment,null,i.createElement(s.Router,{history:g.history},i.createElement(m.default,null),i.createElement(A,{flexGrow:1},i.createElement(g.default,null))),i.createElement(p.default,null))))};I(f,"useEffect{}");var h=f;const b=h;var v,y;(v="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(v.register(C,"StyledBox","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/App.tsx"),v.register(A,"StyledBoxContent","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/App.tsx"),v.register(f,"App","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/App.tsx"),v.register(h,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/App.tsx")),(y="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&y(e)},"./src/App/AppRoute.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{history:()=>f,default:()=>v});var o,n,r,i=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/typeof.js"),s=a("../../../node_modules/.pnpm/history@4.10.1/node_modules/history/esm/history.js"),l=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),d=a("../../../node_modules/.pnpm/react-router@5.2.1_react@17.0.2/node_modules/react-router/esm/react-router.js"),c=a("./src/App/utils/loadable.tsx");function u(e){if("function"!=typeof WeakMap)return null;var t=new WeakMap,a=new WeakMap;return(u=function(e){return e?a:t})(e)}function g(e,t){if(!t&&e&&e.__esModule)return e;if(null===e||"object"!==(0,i.default)(e)&&"function"!=typeof e)return{default:e};var a=u(t);if(a&&a.has(e))return a.get(e);var o={},n=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var r in e)if("default"!==r&&Object.prototype.hasOwnProperty.call(e,r)){var s=n?Object.getOwnPropertyDescriptor(e,r):null;s&&(s.get||s.set)?Object.defineProperty(o,r,s):o[r]=e[r]}return o.default=e,a&&a.set(e,o),o}e=a.hmd(e),(r="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&r(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var p,m=(0,c.default)((function(){return Promise.resolve().then((function(){return g(a("./src/components/NotFound/index.ts"))}))})),I=(0,c.default)((function(){return Promise.resolve().then((function(){return g(a("./src/pages/Version/VersionContextProvider.tsx"))}))})),C=(0,c.default)((function(){return Promise.resolve().then((function(){return g(a("./src/pages/Version/index.ts"))}))})),A=(0,c.default)((function(){return Promise.resolve().then((function(){return g(a("./src/pages/home/index.ts"))}))}));!function(e){e.ROOT="/",e.SCOPE_PACKAGE="/-/web/detail/@:scope/:package",e.SCOPE_PACKAGE_VERSION="/-/web/detail/@:scope/:package/v/:version",e.PACKAGE="/-/web/detail/:package",e.PACKAGE_VERSION="/-/web/detail/:package/v/:version"}(p||(p={}));var f=(0,s.createBrowserHistory)({basename:null===(o=window)||void 0===o||null===(n=o.__VERDACCIO_BASENAME_UI_OPTIONS)||void 0===n?void 0:n.url_prefix}),h=function(){return l.createElement(d.Router,{history:f},l.createElement(d.Switch,null,l.createElement(d.Route,{exact:!0,path:p.ROOT},l.createElement(A,null)),l.createElement(d.Route,{exact:!0,path:p.PACKAGE},l.createElement(I,null,l.createElement(C,null))),l.createElement(d.Route,{exact:!0,path:p.PACKAGE_VERSION},l.createElement(I,null,l.createElement(C,null))),l.createElement(d.Route,{exact:!0,path:p.SCOPE_PACKAGE_VERSION},l.createElement(I,null,l.createElement(C,null))),l.createElement(d.Route,{exact:!0,path:p.SCOPE_PACKAGE},l.createElement(I,null,l.createElement(C,null))),l.createElement(d.Route,null,l.createElement(m,null))))},b=h;const v=b;var y,k;(y="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(y.register(m,"NotFound","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/AppRoute.tsx"),y.register(I,"VersionContextProvider","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/AppRoute.tsx"),y.register(C,"VersionPage","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/AppRoute.tsx"),y.register(A,"HomePage","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/AppRoute.tsx"),y.register(f,"history","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/AppRoute.tsx"),y.register(h,"AppRoute","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/AppRoute.tsx"),y.register(b,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/AppRoute.tsx")),(k="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&k(e)},"./src/App/Footer/Footer.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>f});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/defineProperty.js"),r=a("../../../node_modules/.pnpm/@emotion+styled-base@10.0.31_33bb31e1d857102242df3642b32eda18/node_modules/@emotion/styled-base/dist/styled-base.browser.esm.js"),i=a("../../../node_modules/.pnpm/country-flag-icons@1.4.10/node_modules/country-flag-icons/react/3x2/index.js"),s=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),l=a("../../../node_modules/.pnpm/react-i18next@11.12.0_i18next@20.6.1+react@17.0.2/node_modules/react-i18next/dist/es/useTranslation.js"),d=a("../../../node_modules/.pnpm/react-i18next@11.12.0_i18next@20.6.1+react@17.0.2/node_modules/react-i18next/dist/es/Trans.js"),c=a("./src/components/Icons/index.ts"),u=a("./src/components/Logo/index.ts"),g=a("./src/providers/config/index.ts"),p=a("./src/utils/windows.ts"),m=a("./src/App/Footer/styles.ts");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);var I="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default.signature:function(e){return e},C=function(){var e=(0,l.useTranslation)().t,t=(0,g.useConfig)().configOptions;return s.createElement(m.Wrapper,null,s.createElement(m.Inner,null,s.createElement(m.Left,null,s.createElement(d.Trans,{components:[s.createElement(m.Love,null)],i18nKey:"footer.made-with-love-on"}),s.createElement(L,null,s.createElement(v,null),s.createElement(y,null,s.createElement(k,null,s.createElement(i.default.ES,null)),s.createElement(k,null,s.createElement(i.default.NI,null)),s.createElement(k,null,s.createElement(i.default.IN,null)),s.createElement(k,null,s.createElement(i.default.BR,null)),s.createElement(k,null,s.createElement(i.default.CN,null)),s.createElement(k,null,s.createElement(i.default.AU,null)),s.createElement(k,null,s.createElement(i.default.DE,null)),s.createElement(k,null,s.createElement(i.default.TW,null))))),s.createElement(m.Right,null,(null==t?void 0:t.version)&&s.createElement(s.Fragment,null,e("footer.powered-by"),s.createElement(u.default,{onClick:p.goToVerdaccioWebsite,size:"x-small"}),"/ ".concat(t.version)))))};I(C,"useTranslation{{ t }}\nuseConfig{{ configOptions }}",(function(){return[l.useTranslation,g.useConfig]}));var A=C;const f=A;var h,b,v=(0,r.default)(c.Earth,{target:"ehzyum60",label:"StyledEarth"})((function(e){return{margin:e.theme.spacing(0,1)}}),""),y=(0,r.default)("span",{target:"ehzyum61",label:"Flags"})((function(e){var t=e.theme;return{display:"inline-grid",gridTemplateColumns:"repeat(8, max-content)",gridGap:t.spacing(0,1),position:"absolute",background:null==t?void 0:t.palette.greyAthens,padding:"1px 4px",borderRadius:3,height:20,alignItems:"center",visibility:"hidden",top:-2,":before":{content:"''",position:"absolute",top:"29%",left:-4,marginLeft:-5,border:"5px solid",borderColor:"".concat(null==t?void 0:t.palette.greyAthens," transparent transparent transparent"),transform:"rotate(90deg)"}}}),""),k=(0,r.default)("div",{target:"ehzyum62",label:"Icon"})({name:"bosr71",styles:"width:10px;"}),L=(0,r.default)("span",{target:"ehzyum63",label:"ToolTip"})({position:"relative",height:"18px",":hover":(0,n.default)({},"".concat(y),{visibility:"visible"})},"");(h="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(h.register(C,"Footer","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Footer/Footer.tsx"),h.register(v,"StyledEarth","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Footer/Footer.tsx"),h.register(y,"Flags","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Footer/Footer.tsx"),h.register(k,"Icon","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Footer/Footer.tsx"),h.register(L,"ToolTip","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Footer/Footer.tsx"),h.register(A,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Footer/Footer.tsx")),(b="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&b(e)},"./src/App/Footer/index.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>o.default});var o=a("./src/App/Footer/Footer.tsx");"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature},"./src/App/Footer/styles.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{Wrapper:()=>l,Inner:()=>d,Left:()=>c,Right:()=>u,Love:()=>g});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/defineProperty.js"),r=a("../../../node_modules/.pnpm/@emotion+styled-base@10.0.31_33bb31e1d857102242df3642b32eda18/node_modules/@emotion/styled-base/dist/styled-base.browser.esm.js");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var i,s,l=(0,r.default)("div",{target:"e1les9sd0",label:"Wrapper"})((function(e){var t=e.theme;return{background:"light"===(null==t?void 0:t.palette.type)?null==t?void 0:t.palette.snow:null==t?void 0:t.palette.cyanBlue,borderTop:"1px solid ".concat(null==t?void 0:t.palette.greyGainsboro),color:"dark"===(null==t?void 0:t.palette.type)?null==t?void 0:t.palette.white:null==t?void 0:t.palette.nobel01,fontSize:"14px",padding:"20px"}}),""),d=(0,r.default)("div",{target:"e1les9sd1",label:"Inner"})((function(e){var t,a=e.theme;return t={display:"flex",alignItems:"center",justifyContent:"flex-end",width:"100%"},(0,n.default)(t,"@media (min-width: ".concat(null==a?void 0:a.breakPoints.medium,"px)"),{minWidth:400,maxWidth:800,margin:"auto",justifyContent:"space-between"}),(0,n.default)(t,"@media (min-width: ".concat(null==a?void 0:a.breakPoints.large,"px)"),{maxWidth:1240}),t}),""),c=(0,r.default)("div",{target:"e1les9sd2",label:"Left"})((function(e){var t=e.theme;return(0,n.default)({alignItems:"center",display:"none"},"@media (min-width: ".concat(null==t?void 0:t.breakPoints.medium,"px)"),{display:"flex"})}),""),u=(0,r.default)(c,{target:"e1les9sd3",label:"Right"})({name:"k008qs",styles:"display:flex;"}),g=(0,r.default)("span",{target:"e1les9sd4",label:"Love"})((function(e){var t=e.theme;return{color:null==t?void 0:t.palette.love,padding:"0 5px"}}),"");(i="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(i.register(l,"Wrapper","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Footer/styles.ts"),i.register(d,"Inner","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Footer/styles.ts"),i.register(c,"Left","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Footer/styles.ts"),i.register(u,"Right","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Footer/styles.ts"),i.register(g,"Love","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Footer/styles.ts")),(s="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&s(e)},"./src/App/Header/Header.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>h});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/slicedToArray.js"),r=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),i=a("../../../node_modules/.pnpm/react-i18next@11.12.0_i18next@20.6.1+react@17.0.2/node_modules/react-i18next/dist/es/useTranslation.js"),s=a("../../../node_modules/.pnpm/react-redux@7.2.1_e084f946920a04d85390aa355643c4d5/node_modules/react-redux/es/index.js"),l=a("./src/components/Button.tsx"),d=a("./src/providers/config/index.ts"),c=a("./src/App/Header/HeaderInfoDialog.tsx"),u=a("./src/App/Header/HeaderLeft.tsx"),g=a("./src/App/Header/HeaderRight.tsx"),p=a("./src/App/Header/LoginDialog/index.ts"),m=a("./src/App/Header/Search/index.ts"),I=a("./src/App/Header/styles.ts");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);var C="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default.signature:function(e){return e},A=function(e){var t=e.withoutSearch,a=(0,i.useTranslation)().t,o=(0,r.useState)(!1),C=(0,n.default)(o,2),A=C[0],f=C[1],h=(0,r.useState)(!1),b=(0,n.default)(h,2),v=b[0],y=b[1],k=(0,r.useState)(!1),L=(0,n.default)(k,2),x=L[0],w=L[1],H=(0,s.useSelector)((function(e){return e.login})),G=(0,s.useSelector)((function(e){return e.configuration})),j=(0,d.useConfig)().configOptions,D=(0,s.useDispatch)();return r.createElement(r.Fragment,null,r.createElement(I.NavBar,{"data-testid":"header",position:"static"},r.createElement(I.InnerNavBar,null,r.createElement(u.default,null),r.createElement(g.default,{hasLogin:null==j?void 0:j.login,onLogout:function(){D.login.logOutUser()},onOpenRegistryInfoDialog:function(){return f(!0)},onToggleLogin:function(){return w(!x)},onToggleMobileNav:function(){return y(!v)},username:null==H?void 0:H.username,withoutSearch:t})),r.createElement(c.default,{isOpen:A,onCloseDialog:function(){return f(!1)},registryUrl:j.base,scope:G.scope})),v&&!t&&r.createElement(I.MobileNavBar,null,r.createElement(I.InnerMobileNavBar,null,r.createElement(m.default,null)),r.createElement(l.default,{color:"inherit",onClick:function(){return y(!1)}},a("button.cancel"))),!H.user&&r.createElement(p.default,{onClose:function(){return w(!1)},open:x}))};C(A,"useTranslation{{ t }}\nuseState{[isInfoDialogOpen, setOpenInfoDialog](false)}\nuseState{[showMobileNavBar, setShowMobileNavBar](false)}\nuseState{[showLoginModal, setShowLoginModal](false)}\nuseSelector{loginStore}\nuseSelector{configStore}\nuseConfig{{ configOptions }}\nuseDispatch{dispatch}",(function(){return[i.useTranslation,s.useSelector,s.useSelector,d.useConfig,s.useDispatch]}));var f=A;const h=f;var b,v;(b="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(b.register(A,"Header","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/Header.tsx"),b.register(f,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/Header.tsx")),(v="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&v(e)},"./src/App/Header/HeaderGreetings.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>u});var o,n=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),r=a("../../../node_modules/.pnpm/react-i18next@11.12.0_i18next@20.6.1+react@17.0.2/node_modules/react-i18next/dist/es/useTranslation.js"),i=a("./src/components/Label/index.ts"),s=a("./src/App/Header/styles.ts");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);var l="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default.signature:function(e){return e},d=function(e){var t=e.username,a=(0,r.useTranslation)().t;return n.createElement(n.Fragment,null,n.createElement(s.Greetings,null,a("header.greetings")),n.createElement(i.default,{"data-testid":"greetings-label",text:t,weight:"bold"}))};l(d,"useTranslation{{ t }}",(function(){return[r.useTranslation]}));var c=d;const u=c;var g,p;(g="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(g.register(d,"HeaderGreetings","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/HeaderGreetings.tsx"),g.register(c,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/HeaderGreetings.tsx")),(p="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&p(e)},"./src/App/Header/HeaderInfoDialog.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>d});var o,n=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),r=a("./src/App/Header/RegistryInfoContent/index.ts"),i=a("./src/App/Header/RegistryInfoDialog/index.ts");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var s=function(e){var t=e.onCloseDialog,a=e.isOpen,o=e.registryUrl,s=e.scope;return n.createElement(i.default,{onClose:t,open:a},n.createElement(r.default,{registryUrl:o,scope:s}))},l=s;const d=l;var c,u;(c="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(c.register(s,"HeaderInfoDialog","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/HeaderInfoDialog.tsx"),c.register(l,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/HeaderInfoDialog.tsx")),(u="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&u(e)},"./src/App/Header/HeaderLeft.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>p});var o,n=a("../../../node_modules/.pnpm/@emotion+styled-base@10.0.31_33bb31e1d857102242df3642b32eda18/node_modules/@emotion/styled-base/dist/styled-base.browser.esm.js"),r=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),i=a("../../../node_modules/.pnpm/react-router-dom@5.3.0_react@17.0.2/node_modules/react-router-dom/esm/react-router-dom.js"),s=a("./src/components/Logo/index.ts"),l=a("./src/App/Header/Search/index.ts"),d=a("./src/App/Header/styles.ts");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var c=(0,n.default)(i.Link,{target:"emyn0tj0",label:"StyledLink"})({name:"1dk30lc",styles:"margin-right:1em;"}),u=function(e){var t=e.withoutSearch,a=void 0!==t&&t;return r.createElement(d.LeftSide,null,r.createElement(c,{to:"/"},r.createElement(s.default,null)),!a&&r.createElement(d.SearchWrapper,null,r.createElement(l.default,null)))},g=u;const p=g;var m,I;(m="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(m.register(c,"StyledLink","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/HeaderLeft.tsx"),m.register(u,"HeaderLeft","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/HeaderLeft.tsx"),m.register(g,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/HeaderLeft.tsx")),(I="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&I(e)},"./src/App/Header/HeaderMenu.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>m});var o,n=a("../../../node_modules/.pnpm/@material-ui+icons@4.11.2_842d6fd0a208aabbcab28b4283e0161f/node_modules/@material-ui/icons/AccountCircle.js"),r=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),i=a("../../../node_modules/.pnpm/react-i18next@11.12.0_i18next@20.6.1+react@17.0.2/node_modules/react-i18next/dist/es/useTranslation.js"),s=a("./src/components/IconButton.tsx"),l=a("./src/components/Menu.tsx"),d=a("./src/components/MenuItem.tsx"),c=a("./src/App/Header/HeaderGreetings.tsx");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);var u="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default.signature:function(e){return e},g=function(e){var t=e.onLogout,a=e.username,o=e.isMenuOpen,u=void 0!==o&&o,g=e.anchorEl,p=e.onLoggedInMenu,m=e.onLoggedInMenuClose,I=(0,i.useTranslation)().t;return r.createElement(r.Fragment,null,r.createElement(s.default,{color:"inherit","data-testid":"logInDialogIcon",id:"header--button-account",onClick:p},r.createElement(n.default,null)),r.createElement(l.default,{anchorEl:g,anchorOrigin:{vertical:"top",horizontal:"right"},onClose:m,open:u,transformOrigin:{vertical:"top",horizontal:"right"}},r.createElement(d.default,null,r.createElement(c.default,{username:a})),r.createElement(d.default,{button:!0,"data-testid":"logOutDialogIcon",id:"logOutDialogIcon",onClick:t},I("button.logout"))))};u(g,"useTranslation{{ t }}",(function(){return[i.useTranslation]}));var p=g;const m=p;var I,C;(I="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(I.register(g,"HeaderMenu","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/HeaderMenu.tsx"),I.register(p,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/HeaderMenu.tsx")),(C="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&C(e)},"./src/App/Header/HeaderRight.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>C});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/slicedToArray.js"),r=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),i=a("../../../node_modules/.pnpm/react-i18next@11.12.0_i18next@20.6.1+react@17.0.2/node_modules/react-i18next/dist/es/useTranslation.js"),s=a("./src/components/Button.tsx"),l=a("./src/design-tokens/ThemeContext.ts"),d=a("./src/App/Header/HeaderMenu.tsx"),c=a("./src/App/Header/HeaderToolTip.tsx"),u=a("./src/App/Header/LanguageSwitch.tsx"),g=a("./src/App/Header/styles.ts");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);var p="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default.signature:function(e){return e},m=function(e){var t=e.withoutSearch,a=void 0!==t&&t,o=e.username,p=e.onToggleLogin,m=e.hasLogin,I=e.onLogout,C=e.onToggleMobileNav,A=e.onOpenRegistryInfoDialog,f=(0,r.useContext)(l.default),h=(0,r.useState)(null),b=(0,n.default)(h,2),v=b[0],y=b[1],k=(0,r.useState)(!1),L=(0,n.default)(k,2),x=L[0],w=L[1],H=!1===m,G=(0,i.useTranslation)().t;if(!f)throw Error(G("theme-context-not-correct-used"));(0,r.useEffect)((function(){w(Boolean(v))}),[v]);return r.createElement(g.RightSide,{"data-testid":"header-right"},!a&&r.createElement(c.default,{onClick:C,title:G("search.packages"),tooltipIconType:"search"}),r.createElement(u.default,null),r.createElement(c.default,{title:G("header.documentation"),tooltipIconType:"help"}),r.createElement(c.default,{onClick:A,title:G("header.registry-info"),tooltipIconType:"info"}),r.createElement(c.default,{onClick:function(){setTimeout((function(){f.setIsDarkMode(!f.isDarkMode)}),300)},title:G("header.documentation"),tooltipIconType:f.isDarkMode?"dark-mode":"light-mode"}),!H&&r.createElement(r.Fragment,null,o?r.createElement(d.default,{anchorEl:v,isMenuOpen:x,onLoggedInMenu:function(e){y(e.currentTarget)},onLoggedInMenuClose:function(){y(null)},onLogout:I,username:o}):r.createElement(s.default,{color:"inherit","data-testid":"header--button-login",onClick:function(){y(null),p()}},G("button.login"))))};p(m,"useContext{themeContext}\nuseState{[anchorEl, setAnchorEl](null)}\nuseState{[isMenuOpen, setIsMenuOpen](false)}\nuseTranslation{{ t }}\nuseEffect{}",(function(){return[i.useTranslation]}));var I=m;const C=I;var A,f;(A="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(A.register(m,"HeaderRight","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/HeaderRight.tsx"),A.register(I,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/HeaderRight.tsx")),(f="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&f(e)},"./src/App/Header/HeaderToolTip.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>d});var o,n=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),r=a("./src/components/Tooltip.tsx"),i=a("./src/App/Header/HeaderToolTipIcon.tsx");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var s=function(e){var t=e.tooltipIconType,a=e.title,o=e.onClick;return n.createElement(r.default,{disableFocusListener:!0,title:a},n.createElement(i.default,{onClick:o,tooltipIconType:t}))},l=s;const d=l;var c,u;(c="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(c.register(s,"HeaderToolTip","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/HeaderToolTip.tsx"),c.register(l,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/HeaderToolTip.tsx")),(u="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&u(e)},"./src/App/Header/HeaderToolTipIcon.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>m});var o,n=a("../../../node_modules/.pnpm/@material-ui+icons@4.11.2_842d6fd0a208aabbcab28b4283e0161f/node_modules/@material-ui/icons/Help.js"),r=a("../../../node_modules/.pnpm/@material-ui+icons@4.11.2_842d6fd0a208aabbcab28b4283e0161f/node_modules/@material-ui/icons/Info.js"),i=a("../../../node_modules/.pnpm/@material-ui+icons@4.11.2_842d6fd0a208aabbcab28b4283e0161f/node_modules/@material-ui/icons/NightsStay.js"),s=a("../../../node_modules/.pnpm/@material-ui+icons@4.11.2_842d6fd0a208aabbcab28b4283e0161f/node_modules/@material-ui/icons/Search.js"),l=a("../../../node_modules/.pnpm/@material-ui+icons@4.11.2_842d6fd0a208aabbcab28b4283e0161f/node_modules/@material-ui/icons/WbSunny.js"),d=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),c=a("./src/components/IconButton.tsx"),u=a("./src/App/Header/styles.ts");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var g=(0,d.forwardRef)((function(e,t){var a=e.tooltipIconType,o=e.onClick;switch(a){case"help":return d.createElement(u.StyledLink,{"data-testid":"header--tooltip-documentation",external:!0,to:"https://verdaccio.org/docs/en/installation"},d.createElement(c.default,{color:"inherit"},d.createElement(n.default,null)));case"info":return d.createElement(c.default,{color:"inherit","data-testid":"header--tooltip-info",id:"header--button-registryInfo",onClick:o,ref:t},d.createElement(r.default,null));case"search":return d.createElement(u.IconSearchButton,{color:"inherit",onClick:o},d.createElement(s.default,null));case"dark-mode":return d.createElement(c.default,{color:"inherit",onClick:o,ref:t},d.createElement(i.default,null));case"light-mode":return d.createElement(c.default,{color:"inherit",onClick:o,ref:t},d.createElement(l.default,null));default:return null}})),p=g;const m=p;var I,C;(I="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(I.register(g,"HeaderToolTipIcon","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/HeaderToolTipIcon.tsx"),I.register(p,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/HeaderToolTipIcon.tsx")),(C="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&C(e)},"./src/App/Header/LanguageSwitch.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>b});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/defineProperty.js"),r=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/slicedToArray.js"),i=a("../../../node_modules/.pnpm/@emotion+styled-base@10.0.31_33bb31e1d857102242df3642b32eda18/node_modules/@emotion/styled-base/dist/styled-base.browser.esm.js"),s=a("../../../node_modules/.pnpm/@material-ui+core@4.11.4_9c6a8df88c2691f81f37725d5b4de033/node_modules/@material-ui/core/esm/styles/withStyles.js"),l=a("../../../node_modules/.pnpm/@material-ui+icons@4.11.2_842d6fd0a208aabbcab28b4283e0161f/node_modules/@material-ui/icons/Language.js"),d=a("../../../node_modules/.pnpm/i18next@20.6.1/node_modules/i18next/dist/esm/i18next.js"),c=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),u=a("../../../node_modules/.pnpm/react-i18next@11.12.0_i18next@20.6.1+react@17.0.2/node_modules/react-i18next/dist/es/useTranslation.js"),g=a("./src/components/AutoComplete/AutoCompleteV2.tsx"),p=a("./src/components/MenuItem.tsx"),m=a("./src/design-tokens/ThemeContext.ts"),I=a("./src/i18n/enabledLanguages.ts");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);var C="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default.signature:function(e){return e},A=I.listLanguages.reduce((function(e,t){return e[t.lng]={translation:t.menuKey,icon:t.icon},e}),{}),f=function(){var e,t=(0,c.useContext)(m.default),a=(0,c.useState)(Object.keys((null===(e=d.default.options)||void 0===e?void 0:e.resources)||{})),o=(0,r.default)(a,1)[0],n=(0,u.useTranslation)().t;if(!t)throw Error(n("theme-context-not-correct-used"));var i=t.language,s=(0,c.useCallback)((function(e){var a=e.language;t.setLanguage(a)}),[t]),l=(0,c.useCallback)((function(e){var t=A[e]||A["en-US"];return{icon:c.createElement(t.icon,null),translation:n(t.translation)}}),[n]),p=(0,c.useMemo)((function(){return o.map((function(e){var t=l(e);return{language:e,icon:t.icon,translation:t.translation}}))}),[o,l]),I=(0,c.useCallback)((function(e){var t=e.icon,a=e.translation;return c.createElement(x,{component:"div"},t,a)}),[]),C=(0,c.useCallback)((function(e){return e.translation}),[]);return c.createElement(L,null,c.createElement(g.AutoComplete,{defaultValue:l(i).translation,getOptionLabel:C,hasClearIcon:!0,inputStartAdornment:c.createElement(k,null),onClick:s,options:p,renderOption:I,variant:"outlined"}))};C(f,"useContext{themeContext}\nuseState{[languages](Object.keys(i18next.options?.resources || {}) as Language[])}\nuseTranslation{{ t }}\nuseCallback{switchLanguage}\nuseCallback{getCurrentLngDetails}\nuseMemo{options}\nuseCallback{option}\nuseCallback{optionLabel}",(function(){return[u.useTranslation]}));var h=f;const b=h;var v,y,k=(0,i.default)(l.default,{target:"e1qrps3i0",label:"StyledLanguageIcon"})((function(e){var t=e.theme;return{color:null==t?void 0:t.palette.white}}),""),L=(0,i.default)("div",{target:"e1qrps3i1",label:"Wrapper"})((function(e){var t=e.theme;return(0,n.default)({width:220,display:"none"},"@media screen and (min-width: ".concat(null==t?void 0:t.breakPoints.medium,"px)"),{display:"inline-block"})}),""),x=(0,s.default)((function(e){return{root:{display:"grid",cursor:"pointer",gridGap:null==e?void 0:e.spacing(.5),gridTemplateColumns:"20px 1fr",alignItems:"center","&:first-child":{borderTopLeftRadius:4,borderTopRightRadius:4}}}}))(p.default);(v="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(v.register(A,"listConverted","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/LanguageSwitch.tsx"),v.register(f,"LanguageSwitch","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/LanguageSwitch.tsx"),v.register(k,"StyledLanguageIcon","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/LanguageSwitch.tsx"),v.register(L,"Wrapper","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/LanguageSwitch.tsx"),v.register(x,"StyledMenuItem","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/LanguageSwitch.tsx"),v.register(h,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/LanguageSwitch.tsx")),(y="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&y(e)},"./src/App/Header/LoginDialog/LoginDialog.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>b});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js"),r=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/regenerator/index.js"),i=a.n(r),s=a("../../../node_modules/.pnpm/i18next@20.6.1/node_modules/i18next/dist/esm/i18next.js"),l=a("../../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isEmpty.js"),d=a.n(l),c=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),u=a("../../../node_modules/.pnpm/react-redux@7.2.1_e084f946920a04d85390aa355643c4d5/node_modules/react-redux/es/index.js"),g=a("./src/components/Dialog.tsx"),p=a("./src/components/DialogContent.tsx"),m=a("./src/App/Header/LoginDialog/LoginDialogCloseButton.tsx"),I=a("./src/App/Header/LoginDialog/LoginDialogForm.tsx"),C=a("./src/App/Header/LoginDialog/LoginDialogHeader.tsx");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);var A="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default.signature:function(e){return e},f=function(e){var t=e.onClose,a=e.open,o=void 0!==a&&a,r=(0,u.useSelector)((function(e){return e.login})),l=(0,u.useDispatch)(),A=(0,c.useCallback)(function(){var e=(0,n.default)(i().mark((function e(t,a){return i().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(!d()(t)&&!d()(a)){e.next=3;break}return l.login.addError({type:"error",description:s.default.t("form-validation.username-or-password-cant-be-empty")}),e.abrupt("return");case 3:try{l.login.getUser({username:t,password:a}),l.login.clearError()}catch(e){l.login.addError({type:"error",description:s.default.t("form-validation.unable-to-sign-in")}),console.error("login error",e.message)}case 4:case"end":return e.stop()}}),e)})));return function(t,a){return e.apply(this,arguments)}}(),[l]),f=(0,c.useCallback)(function(){var e=(0,n.default)(i().mark((function e(t){return i().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,A(t.username,t.password);case 2:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),[A]);return(0,c.useEffect)((function(){r.token&&void 0===r.error&&t()}),[r,t]),c.createElement(g.default,{"data-testid":"login--dialog",fullWidth:!0,id:"login--dialog",maxWidth:"sm",onClose:t,open:o},c.createElement(m.default,{onClose:t}),c.createElement(p.default,null,c.createElement(C.default,null),c.createElement(I.default,{error:r.error,onSubmit:f})))};A(f,"useSelector{loginStore}\nuseDispatch{dispatch}\nuseCallback{makeLogin}\nuseCallback{handleDoLogin}\nuseEffect{}",(function(){return[u.useSelector,u.useDispatch]}));var h=f;const b=h;var v,y;(v="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(v.register(f,"LoginDialog","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/LoginDialog/LoginDialog.tsx"),v.register(h,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/LoginDialog/LoginDialog.tsx")),(y="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&y(e)},"./src/App/Header/LoginDialog/LoginDialogCloseButton.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>m});var o,n=a("../../../node_modules/.pnpm/@emotion+styled-base@10.0.31_33bb31e1d857102242df3642b32eda18/node_modules/@emotion/styled-base/dist/styled-base.browser.esm.js"),r=a("../../../node_modules/.pnpm/@material-ui+icons@4.11.2_842d6fd0a208aabbcab28b4283e0161f/node_modules/@material-ui/icons/Close.js"),i=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),s=a("../../../node_modules/.pnpm/react-i18next@11.12.0_i18next@20.6.1+react@17.0.2/node_modules/react-i18next/dist/es/useTranslation.js"),l=a("./src/components/DialogTitle.tsx"),d=a("./src/components/IconButton.tsx");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);var c="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default.signature:function(e){return e},u=(0,n.default)(d.default,{target:"e5e0mp70",label:"StyledIconButton"})((function(e){var t=e.theme;return{position:"absolute",right:t.spacing()/2,top:t.spacing()/2,color:t.palette.grey[500]}}),""),g=function(e){var t=e.onClose,a=(0,s.useTranslation)().t;return i.createElement(l.default,null,i.createElement(u,{"data-testid":"close-login-dialog-button",onClick:t},i.createElement(r.default,{titleAccess:a("button.close")})))};c(g,"useTranslation{{ t }}",(function(){return[s.useTranslation]}));var p=g;const m=p;var I,C;(I="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(I.register(u,"StyledIconButton","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/LoginDialog/LoginDialogCloseButton.tsx"),I.register(g,"LoginDialogCloseButton","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/LoginDialog/LoginDialogCloseButton.tsx"),I.register(p,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/LoginDialog/LoginDialogCloseButton.tsx")),(C="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&C(e)},"./src/App/Header/LoginDialog/LoginDialogForm.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>A});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/extends.js"),r=a("../../../node_modules/.pnpm/@emotion+styled-base@10.0.31_33bb31e1d857102242df3642b32eda18/node_modules/@emotion/styled-base/dist/styled-base.browser.esm.js"),i=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),s=a("../../../node_modules/.pnpm/react-hook-form@7.15.3_react@17.0.2/node_modules/react-hook-form/dist/index.esm.js"),l=a("../../../node_modules/.pnpm/react-i18next@11.12.0_i18next@20.6.1+react@17.0.2/node_modules/react-i18next/dist/es/useTranslation.js"),d=a("./src/components/Button.tsx"),c=a("./src/components/TextField/index.ts"),u=a("./src/App/Header/LoginDialog/LoginDialogFormError.tsx");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);var g="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default.signature:function(e){return e},p=(0,r.default)("form",{target:"e1bu7q120",label:"StyledForm"})((function(e){return{marginTop:e.theme.spacing(1)}}),""),m=(0,r.default)(d.default,{target:"e1bu7q121",label:"StyledButton"})((function(e){return{margin:e.theme.spacing(3,0,2)}}),""),I=(0,i.memo)(g((function(e){var t,a,o=e.onSubmit,r=e.error,d=(0,l.useTranslation)().t,g=(0,s.useForm)({mode:"onChange"}),I=g.register,C=g.handleSubmit,A=g.formState,f=A.isValid,h=A.errors;return i.createElement(p,{noValidate:!0,onSubmit:C((function(e){o(e)}))},i.createElement(c.default,(0,n.default)({autoComplete:"username",error:!!h.username,fullWidth:!0,helperText:null===(t=h.username)||void 0===t?void 0:t.message,id:"login--dialog-username"},I("username",{required:{value:!0,message:d("form-validation.required-field")},minLength:{value:2,message:d("form-validation.required-min-length",{length:2})}}),{label:d("form.username"),margin:"normal",name:"username",placeholder:d("form-placeholder.username"),required:!0,variant:"outlined"})),i.createElement(c.default,(0,n.default)({autoComplete:"current-password",error:!!h.password,fullWidth:!0,helperText:null===(a=h.password)||void 0===a?void 0:a.message,id:"login--dialog-password"},I("password",{required:{value:!0,message:d("form-validation.required-field")},minLength:{value:2,message:d("form-validation.required-min-length",{length:2})}}),{label:d("form.password"),margin:"normal",name:"password",placeholder:d("form-placeholder.password"),required:!0,type:"password",variant:"outlined"})),r&&i.createElement(u.default,{error:r}),i.createElement(m,{color:"primary","data-testid":"login-dialog-form-login-button",disabled:!f,fullWidth:!0,id:"login--dialog-button-submit",size:"large",type:"submit",variant:"contained"},d("button.login")))}),"useTranslation{{ t }}\nuseForm{{\n register,\n handleSubmit,\n formState: { isValid, errors },\n }}",(function(){return[l.useTranslation,s.useForm]}))),C=I;const A=C;var f,h;(f="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(f.register(p,"StyledForm","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/LoginDialog/LoginDialogForm.tsx"),f.register(m,"StyledButton","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/LoginDialog/LoginDialogForm.tsx"),f.register(I,"LoginDialogForm","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/LoginDialog/LoginDialogForm.tsx"),f.register(C,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/LoginDialog/LoginDialogForm.tsx")),(h="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&h(e)},"./src/App/Header/LoginDialog/LoginDialogFormError.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>p});var o,n=a("../../../node_modules/.pnpm/@emotion+styled-base@10.0.31_33bb31e1d857102242df3642b32eda18/node_modules/@emotion/styled-base/dist/styled-base.browser.esm.js"),r=a("../../../node_modules/.pnpm/@material-ui+icons@4.11.2_842d6fd0a208aabbcab28b4283e0161f/node_modules/@material-ui/icons/Error.js"),i=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),s=a("./src/components/Box.tsx"),l=a("./src/components/SnackbarContent.tsx");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var d=(0,n.default)(l.default,{target:"e1vc0dug0",label:"StyledSnackbarContent"})((function(e){var t=e.theme;return{backgroundColor:null==t?void 0:t.palette.error.dark,color:null==t?void 0:t.palette.white}}),""),c=(0,n.default)(r.default,{target:"e1vc0dug1",label:"StyledErrorIcon"})((function(e){var t=e.theme;return{fontSize:20,opacity:.9,marginRight:null==t?void 0:t.spacing(1)}}),""),u=(0,i.memo)((function(e){var t=e.error;return i.createElement(d,{message:i.createElement(s.default,{alignItems:"center",display:"flex"},i.createElement(c,null),t.description)})})),g=u;const p=g;var m,I;(m="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(m.register(d,"StyledSnackbarContent","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/LoginDialog/LoginDialogFormError.tsx"),m.register(c,"StyledErrorIcon","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/LoginDialog/LoginDialogFormError.tsx"),m.register(u,"LoginDialogFormError","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/LoginDialog/LoginDialogFormError.tsx"),m.register(g,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/LoginDialog/LoginDialogFormError.tsx")),(I="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&I(e)},"./src/App/Header/LoginDialog/LoginDialogHeader.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>C});var o,n=a("../../../node_modules/.pnpm/@emotion+styled-base@10.0.31_33bb31e1d857102242df3642b32eda18/node_modules/@emotion/styled-base/dist/styled-base.browser.esm.js"),r=a("../../../node_modules/.pnpm/@material-ui+icons@4.11.2_842d6fd0a208aabbcab28b4283e0161f/node_modules/@material-ui/icons/Close.js"),i=a("../../../node_modules/.pnpm/@material-ui+icons@4.11.2_842d6fd0a208aabbcab28b4283e0161f/node_modules/@material-ui/icons/LockOutlined.js"),s=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),l=a("../../../node_modules/.pnpm/react-i18next@11.12.0_i18next@20.6.1+react@17.0.2/node_modules/react-i18next/dist/es/useTranslation.js"),d=a("./src/components/Avatar.tsx"),c=a("./src/components/Box.tsx"),u=a("./src/components/Heading.tsx"),g=a("./src/components/IconButton.tsx");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);var p="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default.signature:function(e){return e},m=function(e){var t=e.onClose,a=(0,l.useTranslation)().t;return s.createElement(c.default,{alignItems:"center",display:"flex",flexDirection:"column",position:"relative"},t&&s.createElement(b,{"aria-label":a("button.close"),onClick:t},s.createElement(r.default,null)),s.createElement(h,null,s.createElement(i.default,null)),s.createElement(u.default,null,a("button.login")))};p(m,"useTranslation{{ t }}",(function(){return[l.useTranslation]}));var I=m;const C=I;var A,f,h=(0,n.default)(d.default,{target:"enivurl0",label:"StyledAvatar"})((function(e){var t=e.theme;return{margin:null==t?void 0:t.spacing(1),backgroundColor:"light"===(null==t?void 0:t.palette.type)?null==t?void 0:t.palette.primary.main:null==t?void 0:t.palette.cyanBlue,color:null==t?void 0:t.palette.white}}),""),b=(0,n.default)(g.default,{target:"enivurl1",label:"StyledIconButton"})((function(e){var t=e.theme;return{position:"absolute",right:(null==t?void 0:t.spacing())/2,top:(null==t?void 0:t.spacing())/2,color:null==t?void 0:t.palette.grey[500]}}),"");(A="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(A.register(m,"LoginDialogHeader","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/LoginDialog/LoginDialogHeader.tsx"),A.register(h,"StyledAvatar","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/LoginDialog/LoginDialogHeader.tsx"),A.register(b,"StyledIconButton","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/LoginDialog/LoginDialogHeader.tsx"),A.register(I,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/LoginDialog/LoginDialogHeader.tsx")),(f="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&f(e)},"./src/App/Header/LoginDialog/index.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>o.default});var o=a("./src/App/Header/LoginDialog/LoginDialog.tsx");"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature},"./src/App/Header/RegistryInfoContent/RegistryInfoContent.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{AccordionContainer:()=>L,CommandContainer:()=>x,LinkContainer:()=>w,default:()=>j});var o,n=a("../../../node_modules/.pnpm/@emotion+styled-base@10.0.31_33bb31e1d857102242df3642b32eda18/node_modules/@emotion/styled-base/dist/styled-base.browser.esm.js"),r=a("../../../node_modules/.pnpm/@material-ui+core@4.11.4_9c6a8df88c2691f81f37725d5b4de033/node_modules/@material-ui/core/esm/Accordion/Accordion.js"),i=a("../../../node_modules/.pnpm/@material-ui+core@4.11.4_9c6a8df88c2691f81f37725d5b4de033/node_modules/@material-ui/core/esm/AccordionDetails/AccordionDetails.js"),s=a("../../../node_modules/.pnpm/@material-ui+core@4.11.4_9c6a8df88c2691f81f37725d5b4de033/node_modules/@material-ui/core/esm/AccordionSummary/AccordionSummary.js"),l=a("../../../node_modules/.pnpm/@material-ui+core@4.11.4_9c6a8df88c2691f81f37725d5b4de033/node_modules/@material-ui/core/esm/Box/Box.js"),d=a("../../../node_modules/.pnpm/@material-ui+core@4.11.4_9c6a8df88c2691f81f37725d5b4de033/node_modules/@material-ui/core/esm/Link/Link.js"),c=a("../../../node_modules/.pnpm/@material-ui+core@4.11.4_9c6a8df88c2691f81f37725d5b4de033/node_modules/@material-ui/core/esm/styles/makeStyles.js"),u=a("../../../node_modules/.pnpm/@material-ui+core@4.11.4_9c6a8df88c2691f81f37725d5b4de033/node_modules/@material-ui/core/esm/Typography/Typography.js"),g=a("../../../node_modules/.pnpm/@material-ui+icons@4.11.2_842d6fd0a208aabbcab28b4283e0161f/node_modules/@material-ui/icons/ExpandMore.js"),p=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),m=a("../../../node_modules/.pnpm/react-i18next@11.12.0_i18next@20.6.1+react@17.0.2/node_modules/react-i18next/dist/es/useTranslation.js"),I=a("./src/components/CopyToClipBoard.tsx"),C=a("./src/providers/config/index.ts"),A=a("./src/utils/cli-utils.ts"),f=a("./src/utils/constants.ts");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);var h="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default.signature:function(e){return e},b=function(e,t){return p.createElement(l.default,{display:"flex",flexDirection:"column",p:1},p.createElement(I.default,{text:(0,A.getCLISetConfigRegistry)("".concat(f.NODE_MANAGER.npm," set"),e,t)}),p.createElement(I.default,{text:(0,A.getCLISetRegistry)("".concat(f.NODE_MANAGER.npm," adduser"),t)}),p.createElement(I.default,{text:(0,A.getCLIChangePassword)(f.NODE_MANAGER.npm,t)}))},v=function(e,t){return p.createElement(l.default,{display:"flex",flexDirection:"column",p:1},p.createElement(I.default,{text:(0,A.getCLISetConfigRegistry)("".concat(f.NODE_MANAGER.pnpm," set"),e,t)}),p.createElement(I.default,{text:(0,A.getCLISetRegistry)("".concat(f.NODE_MANAGER.pnpm," adduser"),t)}),p.createElement(I.default,{text:(0,A.getCLIChangePassword)(f.NODE_MANAGER.pnpm,t)}))},y=function(e,t){return p.createElement(l.default,{display:"flex",flexDirection:"column",p:1},p.createElement(I.default,{text:(0,A.getCLISetConfigRegistry)("".concat(f.NODE_MANAGER.yarn," config set"),e,t)}))},k=(0,c.default)((function(e){return{root:{width:"100%"},heading:{fontSize:e.typography.pxToRem(15),fontWeight:e.typography.fontWeightBold}}})),L=(0,n.default)("div",{target:"eckfk9f0",label:"AccordionContainer"})({name:"hvdntx",styles:"padding:30px;padding-left:0;padding-right:0;"}),x=(0,n.default)("div",{target:"eckfk9f1",label:"CommandContainer"})({name:"1g360fb",styles:"padding:5px;"}),w=(0,n.default)("div",{target:"eckfk9f2",label:"LinkContainer"})({name:"5u9j9g",styles:"margin:10px;margin-left:0;"}),H=function(e){var t,a,o,n=e.scope,l=e.registryUrl,c=(0,m.useTranslation)().t,I=k(),A=(0,C.useConfig)().configOptions,f=null==A||null===(t=A.pkgManagers)||void 0===t?void 0:t.includes("npm"),h=null==A||null===(a=A.pkgManagers)||void 0===a?void 0:a.includes("yarn"),H=null==A||null===(o=A.pkgManagers)||void 0===o?void 0:o.includes("pnpm"),G=f|H|h;return G&&n&&l?G?p.createElement(L,null,f&&p.createElement(r.default,null,p.createElement(s.default,{"aria-controls":"panel1a-content",expandIcon:p.createElement(g.default,null),id:"panel1a-header"},p.createElement(u.default,{className:I.heading},"npm")),p.createElement(i.default,null,p.createElement(x,{"data-testid":"tab-content"},b(n,l)))),h&&p.createElement(r.default,null,p.createElement(s.default,{"aria-controls":"panel2a-content",expandIcon:p.createElement(g.default,null),id:"panel2a-header"},p.createElement(u.default,{className:I.heading},"yarn")),p.createElement(i.default,null,p.createElement(x,{"data-testid":"tab-content"},y(n,l)))),H&&p.createElement(r.default,null,p.createElement(s.default,{"aria-controls":"panel3a-content",expandIcon:p.createElement(g.default,null),id:"panel3a-header"},"pnpm"),p.createElement(i.default,null,p.createElement(x,{"data-testid":"tab-content"},v(n,l)))),p.createElement(w,null,p.createElement(d.default,{href:"https://verdaccio.org/docs/en/cli-registry",target:"_blank"},p.createElement(u.default,null,c("header.registry-info-link"))))):null:p.createElement(L,null,c("header.registry-no-conf"))};h(H,"useTranslation{{ t }}\nuseStyles{classes}\nuseConfig{{ configOptions }}",(function(){return[m.useTranslation,k,C.useConfig]}));var G=H;const j=G;var D,M;(D="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(D.register(b,"renderNpmTab","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/RegistryInfoContent/RegistryInfoContent.tsx"),D.register(v,"renderPnpmTab","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/RegistryInfoContent/RegistryInfoContent.tsx"),D.register(y,"renderYarnTab","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/RegistryInfoContent/RegistryInfoContent.tsx"),D.register(k,"useStyles","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/RegistryInfoContent/RegistryInfoContent.tsx"),D.register(L,"AccordionContainer","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/RegistryInfoContent/RegistryInfoContent.tsx"),D.register(x,"CommandContainer","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/RegistryInfoContent/RegistryInfoContent.tsx"),D.register(w,"LinkContainer","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/RegistryInfoContent/RegistryInfoContent.tsx"),D.register(H,"RegistryInfoContent","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/RegistryInfoContent/RegistryInfoContent.tsx"),D.register(G,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/RegistryInfoContent/RegistryInfoContent.tsx")),(M="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&M(e)},"./src/App/Header/RegistryInfoContent/index.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>o.default});var o=a("./src/App/Header/RegistryInfoContent/RegistryInfoContent.tsx");"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature},"./src/App/Header/RegistryInfoDialog/RegistryInfoDialog.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>p});var o,n=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),r=a("../../../node_modules/.pnpm/react-i18next@11.12.0_i18next@20.6.1+react@17.0.2/node_modules/react-i18next/dist/es/useTranslation.js"),i=a("./src/components/Button.tsx"),s=a("./src/components/Dialog.tsx"),l=a("./src/components/DialogActions.tsx"),d=a("./src/App/Header/RegistryInfoDialog/styles.ts");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);var c="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default.signature:function(e){return e},u=function(e){var t=e.open,a=void 0!==t&&t,o=e.children,c=e.onClose,u=(0,r.useTranslation)().t;return n.createElement(s.default,{"data-testid":"registryInfo--dialog",id:"registryInfo--dialog-container",onClose:c,open:a},n.createElement(d.Title,{disableTypography:!0},u("dialog.registry-info.title")),n.createElement(d.Content,null,o),n.createElement(l.default,null,n.createElement(i.default,{color:"inherit",id:"registryInfo--dialog-close",onClick:c},u("button.close"))))};c(u,"useTranslation{{ t }}",(function(){return[r.useTranslation]}));var g=u;const p=g;var m,I;(m="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(m.register(u,"RegistryInfoDialog","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/RegistryInfoDialog/RegistryInfoDialog.tsx"),m.register(g,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/RegistryInfoDialog/RegistryInfoDialog.tsx")),(I="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&I(e)},"./src/App/Header/RegistryInfoDialog/index.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>o.default});var o=a("./src/App/Header/RegistryInfoDialog/RegistryInfoDialog.tsx");"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature},"./src/App/Header/RegistryInfoDialog/styles.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{Title:()=>d,Content:()=>c});var o,n=a("../../../node_modules/.pnpm/@emotion+styled-base@10.0.31_33bb31e1d857102242df3642b32eda18/node_modules/@emotion/styled-base/dist/styled-base.browser.esm.js"),r=a("./src/components/DialogContent.tsx"),i=a("./src/components/DialogTitle.tsx");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var s,l,d=(0,n.default)(i.default,{target:"e1tueu980",label:"Title"})((function(e){var t,a,o;return{backgroundColor:null===(t=e.theme)||void 0===t?void 0:t.palette.primary.main,color:null===(a=e.theme)||void 0===a?void 0:a.palette.white,fontSize:null===(o=e.theme)||void 0===o?void 0:o.fontSize.lg}}),""),c=(0,n.default)(r.default,{target:"e1tueu981",label:"Content"})((function(e){var t=e.theme;return{padding:"0 24px",backgroundColor:null==t?void 0:t.palette.background.default}}),"");(s="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(s.register(d,"Title","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/RegistryInfoDialog/styles.ts"),s.register(c,"Content","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/RegistryInfoDialog/styles.ts")),(l="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&l(e)},"./src/App/Header/Search/Search.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>A});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/slicedToArray.js"),r=a("../../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/debounce.js"),i=a.n(r),s=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),l=a("../../../node_modules/.pnpm/react-i18next@11.12.0_i18next@20.6.1+react@17.0.2/node_modules/react-i18next/dist/es/useTranslation.js"),d=a("../../../node_modules/.pnpm/react-redux@7.2.1_e084f946920a04d85390aa355643c4d5/node_modules/react-redux/es/index.js"),c=a("../../../node_modules/.pnpm/react-router@5.2.1_react@17.0.2/node_modules/react-router/esm/react-router.js"),u=a("./src/components/AutoComplete/index.ts"),g=a("./src/App/Header/Search/SearchAdornment.tsx");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);var p="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default.signature:function(e){return e},m={API_DELAY:300,ABORT_ERROR:"AbortError"},I=function(e){var t=e.history,a=(0,l.useTranslation)().t,o=(0,s.useState)(!1),r=(0,n.default)(o,2),c=r[0],p=r[1],I=(0,s.useState)(""),C=(0,n.default)(I,2),A=C[0],f=C[1],h=(0,d.useSelector)((function(e){return e.search})),b=h.isError,v=h.suggestions,y=(0,d.useSelector)((function(e){var t;return null==e||null===(t=e.loading)||void 0===t?void 0:t.models.search})),k=(0,d.useDispatch)(),L=(0,s.useCallback)((function(){k.search.clearRequestQueue()}),[k]),x=(0,s.useCallback)((function(e){e.stopPropagation(),L()}),[L]),w=(0,s.useCallback)((function(e,t){var a=t.newValue,o=t.method;if(e.stopPropagation(),"type"===o){var n=a.trim();f(n),p(!1),0===(null==n?void 0:n.length)&&L()}}),[L]),H=(0,s.useCallback)((function(){k.search.saveSearch({suggestions:[]})}),[k]),G=(0,s.useCallback)((function(e,a){var o=a.suggestionValue,n=a.method;switch(e.stopPropagation(),n){case"click":case"enter":f(""),t.push("/-/web/detail/".concat(o))}}),[t]),j=(0,s.useCallback)((function(e){var t=e.value;k.search.getSuggestions({value:t})}),[k]);return s.createElement(u.default,{onBlur:x,onChange:w,onCleanSuggestions:H,onClick:G,onSuggestionsFetch:i()(j,m.API_DELAY),placeholder:a("search.packages"),startAdornment:s.createElement(g.default,null),suggestions:v,suggestionsError:b,suggestionsLoaded:c,suggestionsLoading:y,value:A})};p(I,"useTranslation{{ t }}\nuseState{[loaded, setLoaded](false)}\nuseState{[search, setSearch]('')}\nuseSelector{{ isError, suggestions }}\nuseSelector{isLoading}\nuseDispatch{dispatch}\nuseCallback{cancelAllSearchRequests}\nuseCallback{handleOnBlur}\nuseCallback{handleSearch}\nuseCallback{handlePackagesClearRequested}\nuseCallback{handleClickSearch}\nuseCallback{handleFetchPackages}",(function(){return[l.useTranslation,d.useSelector,d.useSelector,d.useDispatch]}));var C=(0,c.withRouter)(I);const A=C;var f,h;(f="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(f.register(m,"CONSTANTS","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/Search/Search.tsx"),f.register(I,"Search","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/Search/Search.tsx"),f.register(C,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/Search/Search.tsx")),(h="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&h(e)},"./src/App/Header/Search/SearchAdornment.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>u});var o,n=a("../../../node_modules/.pnpm/@emotion+styled-base@10.0.31_33bb31e1d857102242df3642b32eda18/node_modules/@emotion/styled-base/dist/styled-base.browser.esm.js"),r=a("../../../node_modules/.pnpm/@material-ui+icons@4.11.2_842d6fd0a208aabbcab28b4283e0161f/node_modules/@material-ui/icons/Search.js"),i=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),s=a("./src/components/InputAdornment/index.ts");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var l=(0,n.default)(s.default,{target:"e1skelk0",label:"StyledInputAdornment"})((function(e){var t;return{color:null===(t=e.theme)||void 0===t?void 0:t.palette.white}}),""),d=function(){return i.createElement(l,{position:"start"},i.createElement(r.default,null))},c=d;const u=c;var g,p;(g="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(g.register(l,"StyledInputAdornment","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/Search/SearchAdornment.tsx"),g.register(d,"SearchAdornment","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/Search/SearchAdornment.tsx"),g.register(c,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/Search/SearchAdornment.tsx")),(p="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&p(e)},"./src/App/Header/Search/index.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>o.default});var o=a("./src/App/Header/Search/Search.tsx");"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature},"./src/App/Header/index.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>o.default});var o=a("./src/App/Header/Header.tsx");"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature},"./src/App/Header/styles.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{InnerNavBar:()=>p,Greetings:()=>m,RightSide:()=>I,LeftSide:()=>C,MobileNavBar:()=>A,InnerMobileNavBar:()=>f,IconSearchButton:()=>h,SearchWrapper:()=>b,NavBar:()=>v,StyledLink:()=>y});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/defineProperty.js"),r=a("../../../node_modules/.pnpm/@emotion+styled-base@10.0.31_33bb31e1d857102242df3642b32eda18/node_modules/@emotion/styled-base/dist/styled-base.browser.esm.js"),i=a("../../../node_modules/.pnpm/@emotion+core@10.1.1_react@17.0.2/node_modules/@emotion/core/dist/core.browser.esm.js"),s=a("./src/components/AppBar.tsx"),l=a("./src/components/IconButton.tsx"),d=a("./src/components/Link.tsx"),c=a("./src/components/Toolbar.tsx");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var u,g,p=(0,r.default)(c.default,{target:"e1onlrbh0",label:"InnerNavBar"})({name:"1bjere7",styles:"justify-content:space-between;align-items:center;padding:0 15px;"}),m=(0,r.default)("span",{target:"e1onlrbh1",label:"Greetings"})({name:"1n523ko",styles:"margin:0 5px 0 0;"}),I=(0,r.default)(c.default,{target:"e1onlrbh2",label:"RightSide"})({name:"1qii1b7",styles:"display:flex;padding:0;"}),C=(0,r.default)(I,{target:"e1onlrbh3",label:"LeftSide"})({name:"1rr4qq7",styles:"flex:1;"}),A=(0,r.default)("div",{target:"e1onlrbh4",label:"MobileNavBar"})((function(e){var t;return{alignItems:"center",display:"flex",borderBottom:"1px solid ".concat(null===(t=e.theme)||void 0===t?void 0:t.palette.greyLight),padding:"8px",position:"relative"}}),""),f=(0,r.default)("div",{target:"e1onlrbh5",label:"InnerMobileNavBar"})((function(e){var t,a;return{borderRadius:"4px",backgroundColor:null===(t=e.theme)||void 0===t?void 0:t.palette.greyLight,color:null===(a=e.theme)||void 0===a?void 0:a.palette.white,width:"100%",padding:"0 5px",margin:"0 10px 0 0"}}),""),h=(0,r.default)(l.default,{target:"e1onlrbh6",label:"IconSearchButton"})({name:"13o7eu2",styles:"display:block;"}),b=(0,r.default)("div",{target:"e1onlrbh7",label:"SearchWrapper"})({name:"1xh5hcv",styles:"display:none;width:100%;"}),v=(0,r.default)(s.default,{target:"e1onlrbh8",label:"NavBar"})((function(e){var t,a=e.theme;return t={backgroundColor:"light"===(null==a?void 0:a.palette.type)?null==a?void 0:a.palette.primary.main:null==a?void 0:a.palette.cyanBlue,color:null==a?void 0:a.palette.white,minHeight:60,display:"flex",justifyContent:"center"},(0,n.default)(t,"@media (min-width: ".concat(null==a?void 0:a.breakPoints.medium,"px)"),(0,i.css)(b,"{display:flex;}",h,"{display:none;}",A,"{display:none;};label:NavBar;")),(0,n.default)(t,"@media (min-width: ".concat(null==a?void 0:a.breakPoints.large,"px)"),(0,i.css)(p,"{padding:0 20px;};label:NavBar;")),(0,n.default)(t,"@media (min-width: ".concat(null==a?void 0:a.breakPoints.xlarge,"px)"),(0,i.css)(p,"{max-width:1240px;width:100%;margin:0 auto;};label:NavBar;")),t}),""),y=(0,r.default)(d.default,{target:"e1onlrbh9",label:"StyledLink"})((function(e){var t=e.theme;return{color:null==t?void 0:t.palette.white}}),"");(u="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(u.register(p,"InnerNavBar","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/styles.ts"),u.register(m,"Greetings","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/styles.ts"),u.register(I,"RightSide","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/styles.ts"),u.register(C,"LeftSide","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/styles.ts"),u.register(A,"MobileNavBar","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/styles.ts"),u.register(f,"InnerMobileNavBar","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/styles.ts"),u.register(h,"IconSearchButton","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/styles.ts"),u.register(b,"SearchWrapper","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/styles.ts"),u.register(v,"NavBar","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/styles.ts"),u.register(y,"StyledLink","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/Header/styles.ts")),(g="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&g(e)},"./src/App/index.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>o.default});var o=a("./src/App/App.tsx");"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature},"./src/App/utils/loadable.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>i});var o,n=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var r=function(e){var t=(0,n.lazy)(e);return function(e){return n.createElement(n.Suspense,{fallback:null},n.createElement(t,e))}};const i=r;var s,l;(s="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&s.register(r,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/App/utils/loadable.tsx"),(l="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&l(e)},"./src/components/ActionBar/ActionBar.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>p});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/extends.js"),r=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),i=a("./src/utils/url.ts"),s=a("./src/pages/Version/index.ts"),l=a("./src/components/Box.tsx"),d=a("./src/components/ActionBar/ActionBarAction.tsx");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);var c="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default.signature:function(e){return e},u=function(){var e=r.useContext(s.DetailContext).packageMeta;if(null==e||!e.latest)return null;var t=e.latest,a=t.homepage,o=t.bugs,c=t.dist,u=[];return a&&(0,i.isURL)(a)&&u.push({type:"VISIT_HOMEPAGE",link:a}),null!=o&&o.url&&(0,i.isURL)(o.url)&&u.push({type:"OPEN_AN_ISSUE",link:o.url}),null!=c&&c.tarball&&(0,i.isURL)(c.tarball)&&u.push({type:"DOWNLOAD_TARBALL",link:c.tarball}),r.createElement(l.default,{alignItems:"center",display:"flex",marginBottom:"14px"},u.map((function(e){return r.createElement(d.default,(0,n.default)({key:e.link},e))})))};c(u,"useContext{detailContext}");var g=u;const p=g;var m,I;(m="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(m.register(u,"ActionBar","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/ActionBar/ActionBar.tsx"),m.register(g,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/ActionBar/ActionBar.tsx")),(I="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&I(e)},"./src/components/ActionBar/ActionBarAction.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{Fab:()=>f,default:()=>v});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js"),r=a("../../../node_modules/.pnpm/@emotion+styled-base@10.0.31_33bb31e1d857102242df3642b32eda18/node_modules/@emotion/styled-base/dist/styled-base.browser.esm.js"),i=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/regenerator/index.js"),s=a.n(i),l=a("../../../node_modules/.pnpm/@material-ui+icons@4.11.2_842d6fd0a208aabbcab28b4283e0161f/node_modules/@material-ui/icons/BugReport.js"),d=a("../../../node_modules/.pnpm/@material-ui+icons@4.11.2_842d6fd0a208aabbcab28b4283e0161f/node_modules/@material-ui/icons/CloudDownload.js"),c=a("../../../node_modules/.pnpm/@material-ui+icons@4.11.2_842d6fd0a208aabbcab28b4283e0161f/node_modules/@material-ui/icons/Home.js"),u=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),g=a("../../../node_modules/.pnpm/react-i18next@11.12.0_i18next@20.6.1+react@17.0.2/node_modules/react-i18next/dist/es/useTranslation.js"),p=a("../../../node_modules/.pnpm/react-redux@7.2.1_e084f946920a04d85390aa355643c4d5/node_modules/react-redux/es/index.js"),m=a("./src/components/FloatingActionButton.tsx"),I=a("./src/components/Link.tsx"),C=a("./src/components/Tooltip.tsx");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);var A="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default.signature:function(e){return e},f=(0,r.default)(m.default,{target:"eouwtqf0",label:"Fab"})((function(e){var t=e.theme;return{backgroundColor:"light"===(null==t?void 0:t.palette.type)?null==t?void 0:t.palette.primary.main:null==t?void 0:t.palette.cyanBlue,color:null==t?void 0:t.palette.white,marginRight:10,":hover":{color:"light"===(null==t?void 0:t.palette.type)?null==t?void 0:t.palette.primary.main:null==t?void 0:t.palette.cyanBlue,background:null==t?void 0:t.palette.white}}}),""),h=function(e){var t=e.type,a=e.link,o=(0,g.useTranslation)().t,r=(0,p.useDispatch)(),i=(0,u.useCallback)((0,n.default)(s().mark((function e(){return s().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:r.download.getTarball({link:a});case 1:case"end":return e.stop()}}),e)}))),[r,a]);switch(t){case"VISIT_HOMEPAGE":return u.createElement(C.default,{title:o("action-bar-action.visit-home-page")},u.createElement(I.default,{external:!0,to:a},u.createElement(f,{size:"small"},u.createElement(c.default,null))));case"OPEN_AN_ISSUE":return u.createElement(C.default,{title:o("action-bar-action.open-an-issue")},u.createElement(I.default,{external:!0,to:a},u.createElement(f,{size:"small"},u.createElement(l.default,null))));case"DOWNLOAD_TARBALL":return u.createElement(C.default,{title:o("action-bar-action.download-tarball")},u.createElement(f,{"data-testid":"download-tarball-btn",onClick:i,size:"small"},u.createElement(d.default,null)))}};A(h,"useTranslation{{ t }}\nuseDispatch{dispatch}\nuseCallback{handleDownload}",(function(){return[g.useTranslation,p.useDispatch]}));var b=h;const v=b;var y,k;(y="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(y.register(f,"Fab","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/ActionBar/ActionBarAction.tsx"),y.register(h,"ActionBarAction","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/ActionBar/ActionBarAction.tsx"),y.register(b,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/ActionBar/ActionBarAction.tsx")),(k="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&k(e)},"./src/components/ActionBar/index.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>o.default});var o=a("./src/components/ActionBar/ActionBar.tsx");"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature},"./src/components/AppBar.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>d});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/extends.js"),r=a("../../../node_modules/.pnpm/@material-ui+core@4.11.4_9c6a8df88c2691f81f37725d5b4de033/node_modules/@material-ui/core/esm/AppBar/AppBar.js"),i=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var s=(0,i.forwardRef)((function(e,t){return i.createElement(r.default,(0,n.default)({},e,{ref:t}))})),l=s;const d=l;var c,u;(c="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(c.register(s,"AppBar","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/AppBar.tsx"),c.register(l,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/AppBar.tsx")),(u="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&u(e)},"./src/components/Author/Author.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>I});var o,n=a("../../../node_modules/.pnpm/@material-ui+core@4.11.4_9c6a8df88c2691f81f37725d5b4de033/node_modules/@material-ui/core/esm/Avatar/Avatar.js"),r=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),i=a("../../../node_modules/.pnpm/react-i18next@11.12.0_i18next@20.6.1+react@17.0.2/node_modules/react-i18next/dist/es/useTranslation.js"),s=a("./src/utils/package.ts"),l=a("./src/utils/url.ts"),d=a("./src/pages/Version/index.ts"),c=a("./src/components/List.tsx"),u=a("./src/components/Author/styles.ts");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);var g="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default.signature:function(e){return e},p=function(){var e=(0,r.useContext)(d.DetailContext).packageMeta,t=(0,i.useTranslation)().t;if(!e)return null;var a=e.latest,o=a.author,g=a.name,p=a.version;if(!o)return null;var m=o.email,I=o.name,C=r.createElement(n.default,{alt:o.name,src:o.avatar});return r.createElement(c.default,{subheader:r.createElement(u.StyledText,{variant:"subtitle1"},t("sidebar.author.title"))},r.createElement(u.AuthorListItem,{button:!0},m&&(0,l.isEmail)(m)?r.createElement("a",{href:"mailto:".concat(m,"?subject=").concat(g,"@").concat(p),target:"_top"},C):C,I&&r.createElement(u.AuthorListItemText,{primary:(0,s.getAuthorName)(I)})))};g(p,"useContext{{ packageMeta }}\nuseTranslation{{ t }}",(function(){return[i.useTranslation]}));var m=p;const I=m;var C,A;(C="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(C.register(p,"Author","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Author/Author.tsx"),C.register(m,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Author/Author.tsx")),(A="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&A(e)},"./src/components/Author/index.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>o.default});var o=a("./src/components/Author/Author.tsx");"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature},"./src/components/Author/styles.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{StyledText:()=>c,AuthorListItem:()=>u,AuthorListItemText:()=>g});var o,n=a("../../../node_modules/.pnpm/@emotion+styled-base@10.0.31_33bb31e1d857102242df3642b32eda18/node_modules/@emotion/styled-base/dist/styled-base.browser.esm.js"),r=a("./src/components/ListItem.tsx"),i=a("./src/components/ListItemText.tsx"),s=a("./src/components/Text/index.ts");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var l,d,c=(0,n.default)(s.default,{target:"e1xuehjw0",label:"StyledText"})((function(e){var t;return{fontWeight:null===(t=e.theme)||void 0===t?void 0:t.fontWeight.bold}}),""),u=(0,n.default)(r.default,{target:"e1xuehjw1",label:"AuthorListItem"})({name:"zw46c6",styles:"padding:0;:hover{background-color:transparent;}"}),g=(0,n.default)(i.default,{target:"e1xuehjw2",label:"AuthorListItemText"})({name:"fipixf",styles:"padding:0 10px;margin:0;"});(l="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(l.register(c,"StyledText","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Author/styles.ts"),l.register(u,"AuthorListItem","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Author/styles.ts"),l.register(g,"AuthorListItemText","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Author/styles.ts")),(d="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&d(e)},"./src/components/AutoComplete/AutoComplete.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>H});var o=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/extends.js"),n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/objectWithoutProperties.js"),r=a("../../../node_modules/.pnpm/@emotion+styled-base@10.0.31_33bb31e1d857102242df3642b32eda18/node_modules/@emotion/styled-base/dist/styled-base.browser.esm.js"),i=a("../../../node_modules/.pnpm/autosuggest-highlight@3.1.1/node_modules/autosuggest-highlight/match/index.js"),s=a.n(i),l=a("../../../node_modules/.pnpm/autosuggest-highlight@3.1.1/node_modules/autosuggest-highlight/parse/index.js"),d=a.n(l),c=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),u=a("../../../node_modules/.pnpm/react-autosuggest@10.1.0_react@17.0.2/node_modules/react-autosuggest/dist/index.js"),g=a.n(u),p=a("../../../node_modules/.pnpm/react-i18next@11.12.0_i18next@20.6.1+react@17.0.2/node_modules/react-i18next/dist/es/useTranslation.js"),m=a("./src/components/MenuItem.tsx"),I=a("./src/components/AutoComplete/styles.tsx");e=a.hmd(e);var C,A=["ref","startAdornment","disableUnderline","onKeyDown"];(C="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&C(e);var f="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default.signature:function(e){return e},h=(0,r.default)("a",{target:"e1c61cvw0",label:"StyledAnchor"})((function(e){return{fontWeight:e.theme&&e.highlight?e.theme.fontWeight.semiBold:e.theme.fontWeight.light}}),""),b=(0,r.default)(m.default,{target:"e1c61cvw1",label:"StyledMenuItem"})({name:"4g6ai3",styles:"cursor:pointer;"}),v=function(e){var t=e.ref,a=e.startAdornment,r=e.disableUnderline,i=e.onKeyDown,s=(0,n.default)(e,A);return c.createElement(I.InputField,(0,o.default)({fullWidth:!0,InputProps:{inputRef:function(e){t(e)},startAdornment:a,disableUnderline:r,onKeyDown:i}},s))},y=function(e){return e.name},k=function(e,t){var a=t.query,o=t.isHighlighted,n=s()(e.name,a),r=d()(e.name,n);return c.createElement(b,{component:"div",selected:o},c.createElement("div",null,r.map((function(e,t){return c.createElement(h,{highlight:e.highlight,key:String(t)},e.text)}))))},L=function(e){return c.createElement(m.default,{component:"div",selected:!1},c.createElement("div",null,e))},x=(0,c.memo)(f((function(e){var t=e.suggestions,a=e.startAdornment,n=e.onChange,r=e.onSuggestionsFetch,i=e.onCleanSuggestions,s=e.value,l=void 0===s?"":s,d=e.placeholder,u=void 0===d?"":d,m=e.disableUnderline,C=void 0!==m&&m,A=e.onClick,f=e.onKeyDown,h=e.onBlur,b=e.suggestionsLoading,x=void 0!==b&&b,w=e.suggestionsLoaded,H=void 0!==w&&w,G=e.suggestionsError,j=void 0!==G&&G,D=(0,p.useTranslation)().t,M={value:l,onChange:n,placeholder:u,startAdornment:a,disableUnderline:C,onKeyDown:f,onBlur:h};return c.createElement(I.Wrapper,null,c.createElement(g(),{renderInputComponent:v,suggestions:t,getSuggestionValue:y,renderSuggestion:k,onSuggestionsFetchRequested:r,onSuggestionsClearRequested:i,inputProps:M,onSuggestionSelected:A,renderSuggestionsContainer:function(e){var t=e.containerProps,a=e.children,n=e.query;return c.createElement(I.SuggestionContainer,(0,o.default)({},t,{square:!0}),H&&null===a&&n&&L(D("autoComplete.no-results-found")),x&&n&&L(D("autoComplete.loading")),j&&L(D("error.unspecific")),a)}}))}),"useTranslation{{ t }}",(function(){return[p.useTranslation]}))),w=x;const H=w;var G,j;(G="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(G.register(h,"StyledAnchor","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/AutoComplete/AutoComplete.tsx"),G.register(b,"StyledMenuItem","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/AutoComplete/AutoComplete.tsx"),G.register(v,"renderInputComponent","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/AutoComplete/AutoComplete.tsx"),G.register(y,"getSuggestionValue","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/AutoComplete/AutoComplete.tsx"),G.register(k,"renderSuggestion","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/AutoComplete/AutoComplete.tsx"),G.register(L,"renderMessage","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/AutoComplete/AutoComplete.tsx"),G.register(x,"AutoComplete","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/AutoComplete/AutoComplete.tsx"),G.register(w,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/AutoComplete/AutoComplete.tsx")),(j="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&j(e)},"./src/components/AutoComplete/AutoCompleteV2.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{AutoComplete:()=>k});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/defineProperty.js"),r=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/slicedToArray.js"),i=a("../../../node_modules/.pnpm/@emotion+styled-base@10.0.31_33bb31e1d857102242df3642b32eda18/node_modules/@emotion/styled-base/dist/styled-base.browser.esm.js"),s=a("../../../node_modules/.pnpm/@material-ui+core@4.11.4_9c6a8df88c2691f81f37725d5b4de033/node_modules/@material-ui/core/esm/styles/withStyles.js"),l=a("../../../node_modules/.pnpm/@material-ui+icons@4.11.2_842d6fd0a208aabbcab28b4283e0161f/node_modules/@material-ui/icons/Close.js"),d=a("../../../node_modules/.pnpm/@material-ui+icons@4.11.2_842d6fd0a208aabbcab28b4283e0161f/node_modules/@material-ui/icons/ExpandMore.js"),c=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),u=a("../../../node_modules/.pnpm/react-i18next@11.12.0_i18next@20.6.1+react@17.0.2/node_modules/react-i18next/dist/es/useTranslation.js"),g=a("./src/design-tokens/useOnClickOutside.ts"),p=a("./src/components/IconButton.tsx"),m=a("./src/components/MenuItem.tsx"),I=a("./src/components/Paper.tsx"),C=a("./src/components/TextField/index.ts"),A=a("./src/components/AutoComplete/useAutoComplete.tsx");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);var f="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default.signature:function(e){return e},h=(0,A.createFilterOptions)(),b=function(e){var t=e.placeholder,a=e.defaultValue,o=void 0===a?"":a,n=e.label,i=e.variant,s=e.inputStartAdornment,I=e.options,C=e.getOptionLabel,A=e.renderOption,f=e.className,b=e.onClick,v=e.hasClearIcon,y=(0,u.useTranslation)().t,k=(0,c.useState)(o),D=(0,r.default)(k,2),M=D[0],T=D[1],P=(0,c.useState)(I),_=(0,r.default)(P,2),S=_[0],E=_[1],N=(0,c.useState)(0),R=(0,r.default)(N,2),O=R[0],V=R[1],z=(0,c.useState)(!1),B=(0,r.default)(z,2),U=B[0],Z=B[1],W=(0,c.useRef)(null),F=(0,c.useRef)(null),Y=(0,c.useRef)(null),Q=(0,c.useCallback)((function(){Z(!1),M.trim()||T(o)}),[M,o]),q=(0,c.useCallback)((function(){var e=h(I,{inputValue:M,getOptionLabel:C});E(e)}),[I,M,C]),J=(0,c.useCallback)((function(){var e,t=null==Y||null===(e=Y.current)||void 0===e?void 0:e.children[O];t&&t.scrollIntoView({behavior:"smooth",block:"nearest",inline:"start"})}),[O]);(0,g.useOnClickOutside)(W,(0,c.useCallback)(Q,[W,M])),(0,c.useEffect)(q,[M]),(0,c.useEffect)(J,[O]),(0,c.useEffect)((function(){T(o)}),[o]);var X=(0,c.useCallback)((function(e){T(e.target.value)}),[]),K=(0,c.useCallback)((function(){Z(!U)}),[U]),$=(0,c.useCallback)((function(){T(""),E([]),Z(!0),F.current&&F.current.focus()}),[]),ee=(0,c.useCallback)((function(e){return function(){b&&b(e),T(C(e)),Z(!1),F.current&&F.current.blur()}}),[C,b]),te=(0,c.useCallback)((function(){Z(!0)}),[]),ae=(0,c.useCallback)((function(e){if(13===e.keyCode)return V(0),Z(!1),void ee(S[O])();if(38!==e.keyCode)if(40!==e.keyCode);else{if(O+1>=S.length)return;V(O+1)}else{if(0===O)return;V(O-1)}}),[O,ee,S]),oe=(0,c.useCallback)((function(){return A?S.map((function(e,t){return c.createElement(G,{isSelected:t===O,key:t,onClick:ee(e),tabIndex:0},A(e))})):S.map((function(e,t){return c.createElement(m.default,{component:"div",key:t,onClick:ee(e),selected:t===O,tabIndex:0},C(e))}))}),[S,O,C,A,ee]);return c.createElement(L,{className:f,ref:W},c.createElement(w,{autoComplete:"off",InputProps:{startAdornment:s,endAdornment:c.createElement(x,null,v&&M.length>0&&c.createElement(p.default,{color:"inherit",onClick:$,size:"small",title:y("autoComplete.clear")},c.createElement(l.default,{fontSize:"small"})),c.createElement(H,{color:"inherit",onClick:K,showOptions:U,size:"small",title:y(U?"autoComplete.collapse":"autoComplete.expand")},c.createElement(d.default,{fontSize:"small"})))},inputRef:F,label:n,onChange:X,onFocus:te,onKeyDown:ae,placeholder:t,value:M,variant:i}),U&&c.createElement(j,{ref:Y,square:!0},oe()))};f(b,"useTranslation{{ t }}\nuseState{[searchTerm, setSearchTerm](defaultValue)}\nuseState{[options, setOptions](suggestions)}\nuseState{[activeOption, setActiveOption](0)}\nuseState{[showOptions, setShowOptions](false)}\nuseRef{wrapperRef}\nuseRef{inputRef}\nuseRef{contentRef}\nuseCallback{clickOutside}\nuseCallback{filterOptions}\nuseCallback{scrollIntoOption}\nuseOnClickOutside{}\nuseCallback{}\nuseEffect{}\nuseEffect{}\nuseEffect{}\nuseCallback{handleChange}\nuseCallback{handleToggleShowOptions}\nuseCallback{handleClear}\nuseCallback{handleClickOption}\nuseCallback{handleFocus}\nuseCallback{onKeyDown}\nuseCallback{renderOptions}",(function(){return[u.useTranslation,g.useOnClickOutside]}));var v,y,k=(0,c.memo)(b),L=(0,i.default)("div",{target:"e1s7m15r0",label:"Wrapper"})({name:"16kiram",styles:"position:relative;height:40px;"}),x=(0,i.default)("div",{target:"e1s7m15r1",label:"EndAdornment"})({name:"k008qs",styles:"display:flex;"}),w=(0,i.default)(C.default,{target:"e1s7m15r2",label:"StyledTextField"})((function(e){var t,a=e.theme;return t={height:40,color:null==a?void 0:a.palette.white},(0,n.default)(t,"& .MuiInputBase-root",{height:40,color:null==a?void 0:a.palette.white}),(0,n.default)(t,"& .MuiInputBase-inputAdornedStart",{paddingLeft:null==a?void 0:a.spacing(2)}),(0,n.default)(t,"& .MuiInputBase-input",{paddingTop:null==a?void 0:a.spacing(1),paddingBottom:null==a?void 0:a.spacing(1)}),(0,n.default)(t,"& .MuiOutlinedInput-notchedOutline",{borderColor:"transparent"}),(0,n.default)(t,"& :hover .MuiOutlinedInput-notchedOutline",{borderColor:null==a?void 0:a.palette.white}),(0,n.default)(t,"& :active .MuiOutlinedInput-notchedOutline",{borderColor:null==a?void 0:a.palette.white}),t}),""),H=(0,i.default)(p.default,{shouldForwardProp:function(e){return"showOptions"!==e},target:"e1s7m15r3",label:"ExpandButton"})((function(e){return{transform:e.showOptions?"rotate(180deg)":"none"}}),""),G=(0,i.default)("div",{target:"e1s7m15r4",label:"Option"})((function(e){return{background:e.isSelected?"rgba(0, 0, 0, 0.08)":"none"}}),""),j=(0,s.default)((function(e){return{root:{marginTop:null==e?void 0:e.spacing(.5),borderRadius:3,maxHeight:165,overflowY:"scroll",overflowX:"hidden"}}}))(I.default);(v="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(v.register(h,"defaultFilterOptions","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/AutoComplete/AutoCompleteV2.tsx"),v.register(b,"AutoComplete","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/AutoComplete/AutoCompleteV2.tsx"),v.register(k,"MemoizedAutoComplete","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/AutoComplete/AutoCompleteV2.tsx"),v.register(L,"Wrapper","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/AutoComplete/AutoCompleteV2.tsx"),v.register(x,"EndAdornment","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/AutoComplete/AutoCompleteV2.tsx"),v.register(w,"StyledTextField","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/AutoComplete/AutoCompleteV2.tsx"),v.register(H,"ExpandButton","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/AutoComplete/AutoCompleteV2.tsx"),v.register(G,"Option","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/AutoComplete/AutoCompleteV2.tsx"),v.register(j,"StyledPaper","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/AutoComplete/AutoCompleteV2.tsx")),(y="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&y(e)},"./src/components/AutoComplete/index.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>o.default});var o=a("./src/components/AutoComplete/AutoComplete.tsx");"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature},"./src/components/AutoComplete/styles.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{Wrapper:()=>g,StyledTextField:()=>p,InputField:()=>m,SuggestionContainer:()=>I});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/extends.js"),r=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/defineProperty.js"),i=a("../../../node_modules/.pnpm/@emotion+styled-base@10.0.31_33bb31e1d857102242df3642b32eda18/node_modules/@emotion/styled-base/dist/styled-base.browser.esm.js"),s=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),l=a("./src/components/Paper.tsx"),d=a("./src/components/TextField/index.ts");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var c,u,g=(0,i.default)("div",{target:"e1rflf270",label:"Wrapper"})({name:"1h0dbja",styles:"width:100%;height:32px;position:relative;z-index:1;"}),p=(0,i.default)(d.default,{target:"e1rflf271",label:"StyledTextField"})((function(e){var t,a,o,n;return{"& .MuiInputBase-root":(0,r.default)({":before":{content:"''",border:"none"},":after":{borderColor:null===(t=e.theme)||void 0===t?void 0:t.palette.white},":hover:before":{content:"none"},":hover:after":{content:"none",transform:"scaleX(1)"}},"@media screen and (min-width: ".concat(null===(a=e.theme)||void 0===a?void 0:a.breakPoints.medium,"px)"),{":hover:after":{content:"''"}}),"& .MuiInputBase-input":(0,r.default)({},"@media screen and (min-width: ".concat(null===(o=e.theme)||void 0===o?void 0:o.breakPoints.medium,"px)"),{color:null===(n=e.theme)||void 0===n?void 0:n.palette.white})}}),""),m=function(e){var t=(0,n.default)({},e);return s.createElement(p,t)},I=(0,i.default)(l.default,{target:"e1rflf272",label:"SuggestionContainer"})({name:"g31ddt",styles:"max-height:500px;overflow-y:auto;"});(c="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(c.register(g,"Wrapper","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/AutoComplete/styles.tsx"),c.register(p,"StyledTextField","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/AutoComplete/styles.tsx"),c.register(m,"InputField","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/AutoComplete/styles.tsx"),c.register(I,"SuggestionContainer","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/AutoComplete/styles.tsx")),(u="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&u(e)},"./src/components/AutoComplete/useAutoComplete.tsx":(e,t,a)=>{"use strict";var o;a.r(t),a.d(t,{createFilterOptions:()=>s}),e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);var n,r;"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;function i(e){return void 0!==e.normalize?e.normalize("NFD").replace(/[\u0300-\u036f]/g,""):e}function s(e){var t=e||{},a=t.ignoreAccents,o=void 0===a||a,n=t.ignoreCase,r=void 0===n||n,s=t.trim,l=void 0!==s&&s,d=t.limit,c=t.matchFrom,u=void 0===c?"any":c;return function(e,t){var a=t.inputValue,n=t.getOptionLabel,s=l?a.trim():a;r&&(s=s.toLowerCase()),o&&(s=i(s));var c=e.filter((function(e){var t=n(e);return r&&(t=t.toLowerCase()),o&&(t=i(t)),"start"===u?0===t.indexOf(s):t.indexOf(s)>-1}));return"number"==typeof d?c.slice(0,d):c}}(n="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(n.register(i,"stripDiacritics","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/AutoComplete/useAutoComplete.tsx"),n.register(s,"createFilterOptions","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/AutoComplete/useAutoComplete.tsx")),(r="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&r(e)},"./src/components/Avatar.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>i});var o,n=a("../../../node_modules/.pnpm/@material-ui+core@4.11.4_9c6a8df88c2691f81f37725d5b4de033/node_modules/@material-ui/core/esm/Avatar/Avatar.js");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var r=n.default;const i=r;var s,l;(s="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&s.register(r,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Avatar.tsx"),(l="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&l(e)},"./src/components/Box.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>l});var o,n=a("../../../node_modules/.pnpm/@material-ui+core@4.11.4_9c6a8df88c2691f81f37725d5b4de033/node_modules/@material-ui/core/esm/Box/Box.js"),r=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;function i(e){return r.createElement(n.default,e)}var s=i;const l=s;var d,c;(d="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(d.register(i,"Box","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Box.tsx"),d.register(s,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Box.tsx")),(c="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&c(e)},"./src/components/Button.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>d});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/extends.js"),r=a("../../../node_modules/.pnpm/@material-ui+core@4.11.4_9c6a8df88c2691f81f37725d5b4de033/node_modules/@material-ui/core/esm/Button/Button.js"),i=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var s=(0,i.forwardRef)((function(e,t){return i.createElement(r.default,(0,n.default)({},e,{ref:t}))})),l=s;const d=l;var c,u;(c="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(c.register(s,"Button","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Button.tsx"),c.register(l,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Button.tsx")),(u="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&u(e)},"./src/components/Card.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>d});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/extends.js"),r=a("../../../node_modules/.pnpm/@material-ui+core@4.11.4_9c6a8df88c2691f81f37725d5b4de033/node_modules/@material-ui/core/esm/Card/Card.js"),i=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var s=(0,i.forwardRef)((function(e,t){return i.createElement(r.default,(0,n.default)({},e,{ref:t}))})),l=s;const d=l;var c,u;(c="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(c.register(s,"Card","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Card.tsx"),c.register(l,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Card.tsx")),(u="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&u(e)},"./src/components/CardActions.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>d});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/extends.js"),r=a("../../../node_modules/.pnpm/@material-ui+core@4.11.4_9c6a8df88c2691f81f37725d5b4de033/node_modules/@material-ui/core/esm/CardActions/CardActions.js"),i=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var s=(0,i.forwardRef)((function(e,t){return i.createElement(r.default,(0,n.default)({},e,{innerRef:t}))})),l=s;const d=l;var c,u;(c="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(c.register(s,"CardActions","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/CardActions.tsx"),c.register(l,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/CardActions.tsx")),(u="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&u(e)},"./src/components/CardContent.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>d});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/extends.js"),r=a("../../../node_modules/.pnpm/@material-ui+core@4.11.4_9c6a8df88c2691f81f37725d5b4de033/node_modules/@material-ui/core/esm/CardContent/CardContent.js"),i=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var s=(0,i.forwardRef)((function(e,t){return i.createElement(r.default,(0,n.default)({},e,{innerRef:t}))})),l=s;const d=l;var c,u;(c="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(c.register(s,"CardContent","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/CardContent.tsx"),c.register(l,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/CardContent.tsx")),(u="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&u(e)},"./src/components/Chip.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>d});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/extends.js"),r=a("../../../node_modules/.pnpm/@material-ui+core@4.11.4_9c6a8df88c2691f81f37725d5b4de033/node_modules/@material-ui/core/esm/Chip/Chip.js"),i=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var s=(0,i.forwardRef)((function(e,t){return i.createElement(r.default,(0,n.default)({},e,{innerRef:t}))})),l=s;const d=l;var c,u;(c="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(c.register(s,"Chip","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Chip.tsx"),c.register(l,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Chip.tsx")),(u="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&u(e)},"./src/components/CircularProgress.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>d});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/extends.js"),r=a("../../../node_modules/.pnpm/@material-ui+core@4.11.4_9c6a8df88c2691f81f37725d5b4de033/node_modules/@material-ui/core/esm/CircularProgress/CircularProgress.js"),i=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var s=(0,i.forwardRef)((function(e,t){return i.createElement(r.default,(0,n.default)({},e,{ref:t}))})),l=s;const d=l;var c,u;(c="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(c.register(s,"CircularProgress","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/CircularProgress.tsx"),c.register(l,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/CircularProgress.tsx")),(u="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&u(e)},"./src/components/CopyToClipBoard.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>I});var o=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/objectWithoutProperties.js"),n=a("../../../node_modules/.pnpm/@emotion+styled-base@10.0.31_33bb31e1d857102242df3642b32eda18/node_modules/@emotion/styled-base/dist/styled-base.browser.esm.js"),r=a("../../../node_modules/.pnpm/@material-ui+icons@4.11.2_842d6fd0a208aabbcab28b4283e0161f/node_modules/@material-ui/icons/FileCopy.js"),i=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),s=a("../../../node_modules/.pnpm/react-i18next@11.12.0_i18next@20.6.1+react@17.0.2/node_modules/react-i18next/dist/es/useTranslation.js"),l=a("./src/utils/cli-utils.ts"),d=a("./src/components/IconButton.tsx"),c=a("./src/components/Tooltip.tsx");e=a.hmd(e);var u,g=["text","children"];function p(e){var t=e.text,a=e.children,n=(0,o.default)(e,g),u=(0,s.useTranslation)().t;return i.createElement(f,n,i.createElement(h,null,null!=a?a:t),i.createElement(c.default,{disableFocusListener:!0,title:u("copy-to-clipboard")},i.createElement(d.default,{onClick:(0,l.copyToClipBoardUtility)(t),"data-testid":"copy-icon"},i.createElement(r.default,null))))}(u="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&u(e),("undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default.signature:function(e){return e})(p,"useTranslation{{ t }}",(function(){return[s.useTranslation]}));var m=p;const I=m;var C,A,f=(0,n.default)("div",{target:"ee5tpkh0",label:"Wrapper"})({name:"1lekzkb",styles:"display:flex;align-items:center;justify-content:space-between;"}),h=(0,n.default)("span",{target:"ee5tpkh1",label:"Content"})({name:"pvp01g",styles:"display:inline-block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;height:21px;font-size:1rem;"});(C="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(C.register(p,"CopyToClipBoard","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/CopyToClipBoard.tsx"),C.register(f,"Wrapper","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/CopyToClipBoard.tsx"),C.register(h,"Content","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/CopyToClipBoard.tsx"),C.register(m,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/CopyToClipBoard.tsx")),(A="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&A(e)},"./src/components/Dialog.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>d});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/extends.js"),r=a("../../../node_modules/.pnpm/@material-ui+core@4.11.4_9c6a8df88c2691f81f37725d5b4de033/node_modules/@material-ui/core/esm/Dialog/Dialog.js"),i=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var s=(0,i.forwardRef)((function(e,t){return i.createElement(r.default,(0,n.default)({},e,{ref:t}))})),l=s;const d=l;var c,u;(c="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(c.register(s,"Dialog","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Dialog.tsx"),c.register(l,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Dialog.tsx")),(u="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&u(e)},"./src/components/DialogActions.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>d});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/extends.js"),r=a("../../../node_modules/.pnpm/@material-ui+core@4.11.4_9c6a8df88c2691f81f37725d5b4de033/node_modules/@material-ui/core/esm/DialogActions/DialogActions.js"),i=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var s=(0,i.forwardRef)((function(e,t){return i.createElement(r.default,(0,n.default)({},e,{ref:t}))})),l=s;const d=l;var c,u;(c="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(c.register(s,"DialogActions","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/DialogActions.tsx"),c.register(l,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/DialogActions.tsx")),(u="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&u(e)},"./src/components/DialogContent.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>d});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/extends.js"),r=a("../../../node_modules/.pnpm/@material-ui+core@4.11.4_9c6a8df88c2691f81f37725d5b4de033/node_modules/@material-ui/core/esm/DialogContent/DialogContent.js"),i=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var s=(0,i.forwardRef)((function(e,t){return i.createElement(r.default,(0,n.default)({},e,{ref:t}))})),l=s;const d=l;var c,u;(c="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(c.register(s,"DialogContent","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/DialogContent.tsx"),c.register(l,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/DialogContent.tsx")),(u="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&u(e)},"./src/components/DialogTitle.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>d});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/extends.js"),r=a("../../../node_modules/.pnpm/@material-ui+core@4.11.4_9c6a8df88c2691f81f37725d5b4de033/node_modules/@material-ui/core/esm/DialogTitle/DialogTitle.js"),i=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var s=(0,i.forwardRef)((function(e,t){return i.createElement(r.default,(0,n.default)({},e,{ref:t}))})),l=s;const d=l;var c,u;(c="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(c.register(s,"DialogTitle","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/DialogTitle.tsx"),c.register(l,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/DialogTitle.tsx")),(u="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&u(e)},"./src/components/Divider.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>d});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/extends.js"),r=a("../../../node_modules/.pnpm/@material-ui+core@4.11.4_9c6a8df88c2691f81f37725d5b4de033/node_modules/@material-ui/core/esm/Divider/Divider.js"),i=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var s=(0,i.forwardRef)((function(e,t){return i.createElement(r.default,(0,n.default)({},e,{innerRef:t}))})),l=s;const d=l;var c,u;(c="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(c.register(s,"Divider","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Divider.tsx"),c.register(l,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Divider.tsx")),(u="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&u(e)},"./src/components/FloatingActionButton.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>d});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/extends.js"),r=a("../../../node_modules/.pnpm/@material-ui+core@4.11.4_9c6a8df88c2691f81f37725d5b4de033/node_modules/@material-ui/core/esm/Fab/Fab.js"),i=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var s=(0,i.forwardRef)((function(e,t){return i.createElement(r.default,(0,n.default)({},e,{ref:t,"data-testid":"fab"}))})),l=s;const d=l;var c,u;(c="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(c.register(s,"FloatingActionButton","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/FloatingActionButton.tsx"),c.register(l,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/FloatingActionButton.tsx")),(u="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&u(e)},"./src/components/Grid.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>d});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/extends.js"),r=a("../../../node_modules/.pnpm/@material-ui+core@4.11.4_9c6a8df88c2691f81f37725d5b4de033/node_modules/@material-ui/core/esm/Grid/Grid.js"),i=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var s=(0,i.forwardRef)((function(e,t){return i.createElement(r.default,(0,n.default)({},e,{innerRef:t}))})),l=s;const d=l;var c,u;(c="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(c.register(s,"Grid","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Grid.tsx"),c.register(l,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Grid.tsx")),(u="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&u(e)},"./src/components/Heading.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>u});var o=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/extends.js"),n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/objectWithoutProperties.js"),r=a("../../../node_modules/.pnpm/@material-ui+core@4.11.4_9c6a8df88c2691f81f37725d5b4de033/node_modules/@material-ui/core/esm/Typography/Typography.js"),i=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js");e=a.hmd(e);var s,l=["variant"];(s="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&s(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var d=(0,i.forwardRef)((function(e,t){var a=e.variant,s=void 0===a?"h6":a,d=(0,n.default)(e,l);return i.createElement(r.default,(0,o.default)({},d,{variant:s,ref:t}))})),c=d;const u=c;var g,p;(g="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(g.register(d,"Heading","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Heading.tsx"),g.register(c,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Heading.tsx")),(p="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&p(e)},"./src/components/IconButton.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>d});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/extends.js"),r=a("../../../node_modules/.pnpm/@material-ui+core@4.11.4_9c6a8df88c2691f81f37725d5b4de033/node_modules/@material-ui/core/esm/IconButton/IconButton.js"),i=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var s=(0,i.forwardRef)((function(e,t){return i.createElement(r.default,(0,n.default)({},e,{ref:t}))})),l=s;const d=l;var c,u;(c="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(c.register(s,"IconButton","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/IconButton.tsx"),c.register(l,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/IconButton.tsx")),(u="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&u(e)},"./src/components/Icons/Earth.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{Earth:()=>d});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/extends.js"),r=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),i=a("./src/components/SvgIcon.tsx");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var s,l,d=r.forwardRef((function(e,t){return r.createElement(i.SvgIcon,(0,n.default)({viewBox:"0 0 45 45"},e,{ref:t}),r.createElement("defs",null,r.createElement("clipPath",{id:"prefix__a"},r.createElement("path",{d:"M0 36h36V0H0v36z"})),r.createElement("clipPath",{id:"prefix__b"},r.createElement("path",{d:"M18 36C8.059 36 0 27.941 0 18S8.059 0 18 0s18 8.059 18 18-8.059 18-18 18z"}))),r.createElement("g",{clipPath:"url(#prefix__a)",transform:"matrix(1.25 0 0 -1.25 0 45)"},r.createElement("path",{d:"M36 18c0-9.941-8.059-18-18-18S0 8.059 0 18s8.059 18 18 18 18-8.059 18-18",fill:"#88c9f9"})),r.createElement("g",{clipPath:"url(#prefix__b)",transform:"matrix(1.25 0 0 -1.25 0 45)"},r.createElement("path",{d:"M3.627 28.952c-.45 2.93 2.195 4.156 3.607 4.47 1.412.314 2.776.62 2.933-.006.156-.628.311-1.46 1.173-1.148.862.314 3.043.56 4.063 1.342 1.02.783 2.244.787 3.264.473 1.02-.313 3.877-.227 3.25-1.167-.627-.94-1.825-.827-2.45-1.924-.628-1.099.171-1.826 1.033-1.826.865 0 1.71-.135 2.26.727.548.863-.383 2.463.324 2.357.706-.106 1.477-.866 2.03-2.043.547-1.176 1.408-.47 1.723-1.176.313-.705 2.04-2.039 1.177-1.804-.864.236-1.726.392-1.96-.47-.237-.863.388-1.726-.237-1.647-.627.08-.86-.089-1.725-.004-.862.083-1.333.631-2.039-.545-.705-1.175-1.254-1.96-1.567-2.509-.315-.549-.785-.86-.55-1.96.235-1.099-.628-.785-.628.156 0 .94-.548 1.098-1.253.942-.706-.157-1.803-.313-1.724-1.098.077-.784-.315-1.725.313-2.352.627-.629 1.33.076 1.723-.158.393-.237 1.525-.023 1.133-.416-.393-.39-1.76-.88-.976-1.509a4.831 4.831 0 011.893-.907c.313-.08.062.774 1.083 1.166 1.017.392 2.608 1.29 3 .584.391-.705.338-.595 1.75-.75 1.41-.156 1.79-.585 2.417-1.917.626-1.333.446-1.192 1.462-1.58 1.021-.394 1.678-.223.737-1.087-.94-.86-1.65-.814-2.199-1.833-.55-1.017-.153-1.73-1.25-2.75A20.755 20.755 0 0024 4c-.618-.37-2.162-2.07-3.083-2.667-.834-.54-1.083 0-1.083 0s.256 1.667.964 2.372c.704.705 1.105 3.344.87 4.128-.235.783-1.36 1.02-1.75 1.333-.393.312-1.418 1.548-1.418 2.334 0 .784 1.71 2.81 1.71 2.81.218-1.089-1.039.328-1.627.523-.47.157-1.542 1.656-2.459 1.814-.916.16-1.363.7-2.068 1.25-.706.55-2.43 1.332-2.353 2.195.08.862-1.725 1.568-2.038 1.568-.314 0-1.019 0-1.647 1.098-.627 1.098-1.725 2.196-1.41 2.98.312.783.391 1.726.233 2.588-.156.862-1.332 1.176-1.567.941-.235-.236-1.489-1.335-1.647-.315",fill:"#5c913b"})))}));d.displayName="Earth",(s="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&s.register(d,"Earth","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Icons/Earth.tsx"),(l="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&l(e)},"./src/components/Icons/FileBinary.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{FileBinary:()=>d});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/extends.js"),r=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),i=a("./src/components/SvgIcon.tsx");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var s,l,d=r.forwardRef((function(e,t){return r.createElement(i.SvgIcon,(0,n.default)({},e,{ref:t}),r.createElement("path",{d:"M8.5 1H1c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h10c.55 0 1-.45 1-1V4.5L8.5 1zM11 14H1V2h7l3 3v9zM5 6.98L3.5 8.5 5 10l-.5 1L2 8.5 4.5 6l.5.98zM7.5 6L10 8.5 7.5 11l-.5-.98L8.5 8.5 7 7l.5-1z"}))}));d.displayName="FileBinary",(s="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&s.register(d,"FileBinary","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Icons/FileBinary.tsx"),(l="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&l(e)},"./src/components/Icons/Law.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{Law:()=>d});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/extends.js"),r=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),i=a("./src/components/SvgIcon.tsx");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var s,l,d=r.forwardRef((function(e,t){return r.createElement(i.SvgIcon,(0,n.default)({},e,{ref:t}),r.createElement("path",{fillRule:"evenodd",d:"M7 4c-.83 0-1.5-.67-1.5-1.5S6.17 1 7 1s1.5.67 1.5 1.5S7.83 4 7 4zm7 6c0 1.11-.89 2-2 2h-1c-1.11 0-2-.89-2-2l2-4h-1c-.55 0-1-.45-1-1H8v8c.42 0 1 .45 1 1h1c.42 0 1 .45 1 1H3c0-.55.58-1 1-1h1c0-.55.58-1 1-1h.03L6 5H5c0 .55-.45 1-1 1H3l2 4c0 1.11-.89 2-2 2H2c-1.11 0-2-.89-2-2l2-4H1V5h3c0-.55.45-1 1-1h4c.55 0 1 .45 1 1h3v1h-1l2 4zM2.5 7L1 10h3L2.5 7zM13 10l-1.5-3-1.5 3h3z"}))}));d.displayName="Law",(s="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&s.register(d,"Law","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Icons/Law.tsx"),(l="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&l(e)},"./src/components/Icons/Time.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{Time:()=>d});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/extends.js"),r=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),i=a("./src/components/SvgIcon.tsx");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var s,l,d=r.forwardRef((function(e,t){return r.createElement(i.SvgIcon,(0,n.default)({viewBox:"0 0 24 24"},e,{ref:t}),r.createElement("path",{d:"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"}),r.createElement("path",{d:"M0 0h24v24H0z",fill:"none"}),r.createElement("path",{d:"M12.5 7H11v6l5.25 3.15.75-1.23-4.5-2.67z"}))}));d.displayName="Time",(s="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&s.register(d,"Time","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Icons/Time.tsx"),(l="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&l(e)},"./src/components/Icons/Version.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{Version:()=>d});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/extends.js"),r=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),i=a("./src/components/SvgIcon.tsx");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var s,l,d=r.forwardRef((function(e,t){return r.createElement(i.SvgIcon,(0,n.default)({viewBox:"0 0 14 16",height:16,width:14},e,{ref:t}),r.createElement("path",{fillRule:"evenodd",d:"M13 3H7c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zm-1 8H8V5h4v6zM4 4h1v1H4v6h1v1H4c-.55 0-1-.45-1-1V5c0-.55.45-1 1-1zM1 5h1v1H1v4h1v1H1c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1z"}))}));d.displayName="Version",(s="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&s.register(d,"Version","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Icons/Version.tsx"),(l="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&l(e)},"./src/components/Icons/index.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{Version:()=>o.Version,Time:()=>n.Time,FileBinary:()=>r.FileBinary,Law:()=>i.Law,Earth:()=>s.Earth});var o=a("./src/components/Icons/Version.tsx"),n=a("./src/components/Icons/Time.tsx"),r=a("./src/components/Icons/FileBinary.tsx"),i=a("./src/components/Icons/Law.tsx"),s=a("./src/components/Icons/Earth.tsx");"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature},"./src/components/InputAdornment/InputAdornment.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>d});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/extends.js"),r=a("../../../node_modules/.pnpm/@material-ui+core@4.11.4_9c6a8df88c2691f81f37725d5b4de033/node_modules/@material-ui/core/esm/InputAdornment/InputAdornment.js"),i=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var s=(0,i.forwardRef)((function(e,t){return i.createElement(r.default,(0,n.default)({},e,{ref:t}))})),l=s;const d=l;var c,u;(c="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(c.register(s,"InputAdornment","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/InputAdornment/InputAdornment.tsx"),c.register(l,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/InputAdornment/InputAdornment.tsx")),(u="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&u(e)},"./src/components/InputAdornment/index.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>o.default});var o=a("./src/components/InputAdornment/InputAdornment.tsx");"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature},"./src/components/Label/Label.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>g});var o=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/extends.js"),n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/objectWithoutProperties.js"),r=a("../../../node_modules/.pnpm/@emotion+styled-base@10.0.31_33bb31e1d857102242df3642b32eda18/node_modules/@emotion/styled-base/dist/styled-base.browser.esm.js"),i=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js");e=a.hmd(e);var s,l=["text","capitalize","weight"];(s="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&s(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var d=(0,r.default)("div",{target:"esyufg60",label:"Wrapper"})((function(e){var t;return{fontWeight:null===(t=e.theme)||void 0===t?void 0:t.fontWeight[e.weight],textTransform:e.capitalize?"capitalize":"none"}}),""),c=function(e){var t=e.text,a=void 0===t?"":t,r=e.capitalize,s=void 0!==r&&r,c=e.weight,u=void 0===c?"regular":c,g=(0,n.default)(e,l);return i.createElement(d,(0,o.default)({capitalize:s,weight:u},g),a)},u=c;const g=u;var p,m;(p="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(p.register(d,"Wrapper","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Label/Label.tsx"),p.register(c,"Label","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Label/Label.tsx"),p.register(u,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Label/Label.tsx")),(m="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&m(e)},"./src/components/Label/index.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>o.default});var o=a("./src/components/Label/Label.tsx");"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature},"./src/components/Link.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>g});var o=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/extends.js"),n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/objectWithoutProperties.js"),r=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),i=a("../../../node_modules/.pnpm/react-router-dom@5.3.0_react@17.0.2/node_modules/react-router-dom/esm/react-router-dom.js"),s=a("./src/components/Text/index.ts");e=a.hmd(e);var l,d=["external","to","children","variant","className"];(l="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&l(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var c=r.forwardRef((function(e,t){var a=e.external,l=e.to,c=e.children,u=e.variant,g=e.className,p=(0,n.default)(e,d),m=r.createElement(s.default,{variant:u},c);return a?r.createElement("a",(0,o.default)({className:g,href:l,ref:t,rel:"noopener noreferrer",target:"_blank"},p),m):r.createElement(i.Link,(0,o.default)({className:g,innerRef:t,to:l},p),m)})),u=c;const g=u;var p,m;(p="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(p.register(c,"Link","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Link.tsx"),p.register(u,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Link.tsx")),(m="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&m(e)},"./src/components/List.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>d});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/extends.js"),r=a("../../../node_modules/.pnpm/@material-ui+core@4.11.4_9c6a8df88c2691f81f37725d5b4de033/node_modules/@material-ui/core/esm/List/List.js"),i=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var s=(0,i.forwardRef)((function(e,t){return i.createElement(r.default,(0,n.default)({},e,{ref:t}))})),l=s;const d=l;var c,u;(c="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(c.register(s,"List","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/List.tsx"),c.register(l,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/List.tsx")),(u="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&u(e)},"./src/components/ListItem.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>u});var o=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/extends.js"),n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/objectWithoutProperties.js"),r=a("../../../node_modules/.pnpm/@material-ui+core@4.11.4_9c6a8df88c2691f81f37725d5b4de033/node_modules/@material-ui/core/esm/ListItem/ListItem.js"),i=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js");e=a.hmd(e);var s,l=["button"];(s="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&s(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var d=(0,i.forwardRef)((function(e,t){var a=e.button,s=(0,n.default)(e,l);return i.createElement(r.default,(0,o.default)({},s,{button:a,innerRef:t}))}));d.defaultProps={button:!1};var c=d;const u=c;var g,p;(g="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(g.register(d,"ListItem","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/ListItem.tsx"),g.register(c,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/ListItem.tsx")),(p="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&p(e)},"./src/components/ListItemText.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>d});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/extends.js"),r=a("../../../node_modules/.pnpm/@material-ui+core@4.11.4_9c6a8df88c2691f81f37725d5b4de033/node_modules/@material-ui/core/esm/ListItemText/ListItemText.js"),i=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var s=(0,i.forwardRef)((function(e,t){return i.createElement(r.default,(0,n.default)({},e,{ref:t}))})),l=s;const d=l;var c,u;(c="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(c.register(s,"ListItemText","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/ListItemText.tsx"),c.register(l,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/ListItemText.tsx")),(u="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&u(e)},"./src/components/Loading/Loading.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>c});var o,n=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),r=a("./src/components/Logo/index.ts"),i=a("./src/components/Loading/Spinner/index.tsx"),s=a("./src/components/Loading/styles.ts");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var l=function(){return n.createElement(s.Wrapper,{"data-testid":"loading"},n.createElement(s.Badge,null,n.createElement(r.default,{size:"big"})),n.createElement(i.default,{"data-testid":"spinnerLogo"}))},d=l;const c=d;var u,g;(u="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(u.register(l,"Loading","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Loading/Loading.tsx"),u.register(d,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Loading/Loading.tsx")),(g="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&g(e)},"./src/components/Loading/Spinner/Spinner.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>u});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/defineProperty.js"),r=a("../../../node_modules/.pnpm/@emotion+styled-base@10.0.31_33bb31e1d857102242df3642b32eda18/node_modules/@emotion/styled-base/dist/styled-base.browser.esm.js"),i=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),s=a("./src/components/CircularProgress.tsx");function l(e,t){var a=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),a.push.apply(a,o)}return a}e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var d=function(e){var t=e.size,a=void 0===t?50:t,o=e.centered,n=void 0!==o&&o;return i.createElement(m,{centered:n},i.createElement(I,{size:a}))},c=d;const u=c;var g,p,m=(0,r.default)("div",{target:"e1y5sxxq0",label:"Wrapper"})((function(e){return function(e){for(var t=1;t<arguments.length;t++){var a=null!=arguments[t]?arguments[t]:{};t%2?l(Object(a),!0).forEach((function(t){(0,n.default)(e,t,a[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(a)):l(Object(a)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(a,t))}))}return e}({display:"flex",alignItems:"center",justifyContent:"center"},e.centered&&{position:"absolute",top:"50%",left:"50%",transform:"translate(-50%, -50%)"})}),""),I=(0,r.default)(s.default,{target:"e1y5sxxq1",label:"Circular"})((function(e){var t=e.theme;return{color:"dark"===(null==t?void 0:t.palette.type)?null==t?void 0:t.palette.white:null==t?void 0:t.palette.primary.main}}),"");(g="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(g.register(d,"Spinner","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Loading/Spinner/Spinner.tsx"),g.register(m,"Wrapper","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Loading/Spinner/Spinner.tsx"),g.register(I,"Circular","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Loading/Spinner/Spinner.tsx"),g.register(c,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Loading/Spinner/Spinner.tsx")),(p="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&p(e)},"./src/components/Loading/Spinner/index.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>o.default});var o=a("./src/components/Loading/Spinner/Spinner.tsx");"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature},"./src/components/Loading/index.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>o.default});var o=a("./src/components/Loading/Loading.tsx");"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature},"./src/components/Loading/styles.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{Wrapper:()=>s,Badge:()=>l});var o,n=a("../../../node_modules/.pnpm/@emotion+styled-base@10.0.31_33bb31e1d857102242df3642b32eda18/node_modules/@emotion/styled-base/dist/styled-base.browser.esm.js");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var r,i,s=(0,n.default)("div",{target:"eimgwje0",label:"Wrapper"})({name:"1aq6k0v",styles:"transform:translate(-50%, -50%);top:50%;left:50%;position:absolute;"}),l=(0,n.default)("div",{target:"eimgwje1",label:"Badge"})((function(e){var t=e.theme;return{margin:"0 0 30px 0",borderRadius:25,boxShadow:"0 10px 20px 0 rgba(69, 58, 100, 0.2)",background:"dark"===(null==t?void 0:t.palette.type)?null==t?void 0:t.palette.black:"#f7f8f6"}}),"");(r="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(r.register(s,"Wrapper","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Loading/styles.ts"),r.register(l,"Badge","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Loading/styles.ts")),(i="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&i(e)},"./src/components/Logo/Logo.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>m});var o,n=a("../../../node_modules/.pnpm/@emotion+styled-base@10.0.31_33bb31e1d857102242df3642b32eda18/node_modules/@emotion/styled-base/dist/styled-base.browser.esm.js"),r=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),i=a("./src/providers/config/index.ts"),s=a("./src/components/Logo/img/logo-black-and-white.svg"),l=a("./src/components/Logo/img/logo.svg");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);var d="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default.signature:function(e){return e},c={"x-small":"30px",small:"40px",big:"90px"},u={light:l,dark:s},g=function(e){var t=e.size,a=e.onClick,o=e.className,n=(0,i.useConfig)().configOptions;return null!=n&&n.logo?r.createElement(A,{onClick:a,className:o},r.createElement("img",{alt:"logo",height:"40px",src:n.logo})):r.createElement(f,{size:t,onClick:a,className:o})};d(g,"useConfig{{ configOptions }}",(function(){return[i.useConfig]}));var p=g;const m=p;var I,C,A=(0,n.default)("div",{target:"em793ed0",label:"ImageLogo"})({name:"jodbou",styles:"font-size:0;"}),f=(0,n.default)("div",{target:"em793ed1",label:"StyledLogo"})((function(e){var t=e.size,a=void 0===t?"small":t,o=e.theme;return{display:"inline-block",verticalAlign:"middle",boxSizing:"border-box",backgroundPosition:"center",backgroundSize:"contain",backgroundImage:"url(".concat(u[null==o?void 0:o.palette.type],")"),backgroundRepeat:" no-repeat",width:c[a],height:c[a]}}),"");(I="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(I.register(c,"sizes","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Logo/Logo.tsx"),I.register(u,"logos","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Logo/Logo.tsx"),I.register(g,"Logo","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Logo/Logo.tsx"),I.register(A,"ImageLogo","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Logo/Logo.tsx"),I.register(f,"StyledLogo","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Logo/Logo.tsx"),I.register(p,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Logo/Logo.tsx")),(C="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&C(e)},"./src/components/Logo/index.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>o.default});var o=a("./src/components/Logo/Logo.tsx");"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature},"./src/components/Menu.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>d});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/extends.js"),r=a("../../../node_modules/.pnpm/@material-ui+core@4.11.4_9c6a8df88c2691f81f37725d5b4de033/node_modules/@material-ui/core/esm/Menu/Menu.js"),i=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var s=(0,i.forwardRef)((function(e,t){return i.createElement(r.default,(0,n.default)({},e,{ref:t}))})),l=s;const d=l;var c,u;(c="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(c.register(s,"Menu","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Menu.tsx"),c.register(l,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Menu.tsx")),(u="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&u(e)},"./src/components/MenuItem.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>c});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/extends.js"),r=a("../../../node_modules/.pnpm/@emotion+styled-base@10.0.31_33bb31e1d857102242df3642b32eda18/node_modules/@emotion/styled-base/dist/styled-base.browser.esm.js"),i=a("../../../node_modules/.pnpm/@material-ui+core@4.11.4_9c6a8df88c2691f81f37725d5b4de033/node_modules/@material-ui/core/esm/MenuItem/MenuItem.js"),s=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var l=(0,s.forwardRef)((function(e,t){return s.createElement(p,(0,n.default)({},e,{ref:t}))}));l.defaultProps={component:"li"};var d=l;const c=d;var u,g,p=(0,r.default)(i.default,{target:"ed8xj0i0",label:"StyledMaterialUIMenuItem"})({name:"10b12fz",styles:"outline:none;"});(u="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(u.register(l,"MenuItem","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/MenuItem.tsx"),u.register(p,"StyledMaterialUIMenuItem","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/MenuItem.tsx"),u.register(d,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/MenuItem.tsx")),(g="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&g(e)},"./src/components/NotFound/NotFound.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>I});var o,n=a("../../../node_modules/.pnpm/@emotion+styled-base@10.0.31_33bb31e1d857102242df3642b32eda18/node_modules/@emotion/styled-base/dist/styled-base.browser.esm.js"),r=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),i=a("../../../node_modules/.pnpm/react-i18next@11.12.0_i18next@20.6.1+react@17.0.2/node_modules/react-i18next/dist/es/useTranslation.js"),s=a("../../../node_modules/.pnpm/react-router@5.2.1_react@17.0.2/node_modules/react-router/esm/react-router.js"),l=a("./src/components/Box.tsx"),d=a("./src/components/Button.tsx"),c=a("./src/components/Heading.tsx"),u=a("./src/components/NotFound/img/package.svg");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);var g="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default.signature:function(e){return e},p=function(){var e=(0,s.useHistory)(),t=(0,i.useTranslation)().t,a=(0,r.useCallback)((function(){e.push("/")}),[e]);return r.createElement(l.default,{alignItems:"center","data-testid":"404",display:"flex",flexDirection:"column",flexGrow:1,justifyContent:"center",p:2},r.createElement(f,{alt:t("error.404.page-not-found"),src:u}),r.createElement(h,{className:"not-found-text",variant:"h4"},t("error.404.sorry-we-could-not-find-it")),r.createElement(d.default,{"data-testid":"not-found-go-to-home-button",onClick:a,variant:"contained"},t("button.go-to-the-home-page")))};g(p,"useHistory{history}\nuseTranslation{{ t }}\nuseCallback{handleGoHome}",(function(){return[s.useHistory,i.useTranslation]}));var m=p;const I=m;var C,A,f=(0,n.default)("img",{target:"e11qlk1z0",label:"EmptyPackage"})({name:"17y48z2",styles:"width:150px;margin:0 auto;"}),h=(0,n.default)(c.default,{target:"e11qlk1z1",label:"StyledHeading"})((function(e){var t=e.theme;return{color:"light"===(null==t?void 0:t.palette.type)?null==t?void 0:t.palette.primary.main:null==t?void 0:t.palette.white,marginBottom:16}}),"");(C="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(C.register(p,"NotFound","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/NotFound/NotFound.tsx"),C.register(f,"EmptyPackage","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/NotFound/NotFound.tsx"),C.register(h,"StyledHeading","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/NotFound/NotFound.tsx"),C.register(m,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/NotFound/NotFound.tsx")),(A="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&A(e)},"./src/components/NotFound/index.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>o.default});var o=a("./src/components/NotFound/NotFound.tsx");"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature},"./src/components/Paper.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>d});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/extends.js"),r=a("../../../node_modules/.pnpm/@material-ui+core@4.11.4_9c6a8df88c2691f81f37725d5b4de033/node_modules/@material-ui/core/esm/Paper/Paper.js"),i=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var s=(0,i.forwardRef)((function(e,t){return i.createElement(r.default,(0,n.default)({},e,{ref:t}))})),l=s;const d=l;var c,u;(c="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(c.register(s,"Paper","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Paper.tsx"),c.register(l,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Paper.tsx")),(u="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&u(e)},"./src/components/SnackbarContent.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>d});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/extends.js"),r=a("../../../node_modules/.pnpm/@material-ui+core@4.11.4_9c6a8df88c2691f81f37725d5b4de033/node_modules/@material-ui/core/esm/SnackbarContent/SnackbarContent.js"),i=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var s=(0,i.forwardRef)((function(e,t){return i.createElement(r.default,(0,n.default)({},e,{ref:t}))})),l=s;const d=l;var c,u;(c="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(c.register(s,"SnackbarContent","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/SnackbarContent.tsx"),c.register(l,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/SnackbarContent.tsx")),(u="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&u(e)},"./src/components/SvgIcon.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{SvgIcon:()=>m});var o=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/defineProperty.js"),n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/extends.js"),r=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/objectWithoutProperties.js"),i=a("../../../node_modules/.pnpm/@emotion+styled-base@10.0.31_33bb31e1d857102242df3642b32eda18/node_modules/@emotion/styled-base/dist/styled-base.browser.esm.js"),s=a("../../../node_modules/.pnpm/@material-ui+core@4.11.4_9c6a8df88c2691f81f37725d5b4de033/node_modules/@material-ui/core/esm/SvgIcon/SvgIcon.js"),l=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js");e=a.hmd(e);var d,c=["size","title"];function u(e,t){var a=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),a.push.apply(a,o)}return a}(d="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&d(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var g,p,m=l.forwardRef((function(e,t){var a=e.size,o=void 0===a?"md":a,i=e.title,s=(0,r.default)(e,c);return l.createElement(C,(0,n.default)({size:o,titleAccess:i},s,{ref:t}))})),I=function(e){return"md"===e?{width:18,height:18}:{width:14,height:16}},C=(0,i.default)(s.default,{target:"et6id9r0",label:"StyledMaterialUISvgIcon"})((function(e){var t=e.size;return function(e){for(var t=1;t<arguments.length;t++){var a=null!=arguments[t]?arguments[t]:{};t%2?u(Object(a),!0).forEach((function(t){(0,o.default)(e,t,a[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(a)):u(Object(a)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(a,t))}))}return e}({},I(t))}),"");(g="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(g.register(m,"SvgIcon","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/SvgIcon.tsx"),g.register(I,"getSize","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/SvgIcon.tsx"),g.register(C,"StyledMaterialUISvgIcon","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/SvgIcon.tsx")),(p="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&p(e)},"./src/components/Tab.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>d});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/extends.js"),r=a("../../../node_modules/.pnpm/@material-ui+core@4.11.4_9c6a8df88c2691f81f37725d5b4de033/node_modules/@material-ui/core/esm/Tab/Tab.js"),i=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var s=(0,i.forwardRef)((function(e,t){return i.createElement(r.default,(0,n.default)({},e,{innerRef:t}))})),l=s;const d=l;var c,u;(c="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(c.register(s,"Tab","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Tab.tsx"),c.register(l,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Tab.tsx")),(u="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&u(e)},"./src/components/Tabs.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>d});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/extends.js"),r=a("../../../node_modules/.pnpm/@material-ui+core@4.11.4_9c6a8df88c2691f81f37725d5b4de033/node_modules/@material-ui/core/esm/Tabs/Tabs.js"),i=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var s=(0,i.forwardRef)((function(e,t){return i.createElement(r.default,(0,n.default)({},e,{innerRef:t}))})),l=s;const d=l;var c,u;(c="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(c.register(s,"Tabs","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Tabs.tsx"),c.register(l,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Tabs.tsx")),(u="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&u(e)},"./src/components/Text/Text.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>d});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/extends.js"),r=a("../../../node_modules/.pnpm/@material-ui+core@4.11.4_9c6a8df88c2691f81f37725d5b4de033/node_modules/@material-ui/core/esm/Typography/Typography.js"),i=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var s=(0,i.forwardRef)((function(e,t){return i.createElement(r.default,(0,n.default)({},e,{component:"span",ref:t}))}));s.defaultProps={variant:"subtitle1"};var l=s;const d=l;var c,u;(c="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(c.register(s,"Text","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Text/Text.tsx"),c.register(l,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Text/Text.tsx")),(u="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&u(e)},"./src/components/Text/TextConfig.ts":(e,t,a)=>{"use strict";a.r(t);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature},"./src/components/Text/index.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>o.default,TextProps:()=>n.TextProps});var o=a("./src/components/Text/Text.tsx"),n=a("./src/components/Text/TextConfig.ts");"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature},"./src/components/TextField/TextField.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>m});var o=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/extends.js"),n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/defineProperty.js"),r=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/objectWithoutProperties.js"),i=a("../../../node_modules/.pnpm/@material-ui+core@4.11.4_9c6a8df88c2691f81f37725d5b4de033/node_modules/@material-ui/core/esm/TextField/TextField.js"),s=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js");e=a.hmd(e);var l,d=["InputProps","classes"];function c(e,t){var a=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),a.push.apply(a,o)}return a}function u(e){for(var t=1;t<arguments.length;t++){var a=null!=arguments[t]?arguments[t]:{};t%2?c(Object(a),!0).forEach((function(t){(0,n.default)(e,t,a[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(a)):c(Object(a)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(a,t))}))}return e}(l="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&l(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var g=(0,s.forwardRef)((function(e,t){var a=e.InputProps,n=e.classes,l=(0,r.default)(e,d);return s.createElement(i.default,(0,o.default)({},l,{innerRef:t,InputProps:u(u({},a),{},{classes:n})}))})),p=g;const m=p;var I,C;(I="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(I.register(g,"TextField","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/TextField/TextField.tsx"),I.register(p,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/TextField/TextField.tsx")),(C="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&C(e)},"./src/components/TextField/index.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>o.default});var o=a("./src/components/TextField/TextField.tsx");"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature},"./src/components/Toolbar.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>d});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/extends.js"),r=a("../../../node_modules/.pnpm/@material-ui+core@4.11.4_9c6a8df88c2691f81f37725d5b4de033/node_modules/@material-ui/core/esm/Toolbar/Toolbar.js"),i=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var s=(0,i.forwardRef)((function(e,t){return i.createElement(r.default,(0,n.default)({},e,{ref:t}))})),l=s;const d=l;var c,u;(c="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(c.register(s,"Toolbar","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Toolbar.tsx"),c.register(l,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Toolbar.tsx")),(u="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&u(e)},"./src/components/Tooltip.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>u});var o=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/extends.js"),n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/objectWithoutProperties.js"),r=a("../../../node_modules/.pnpm/@material-ui+core@4.11.4_9c6a8df88c2691f81f37725d5b4de033/node_modules/@material-ui/core/esm/Tooltip/Tooltip.js"),i=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js");e=a.hmd(e);var s,l=["title","children"];(s="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&s(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var d=(0,i.forwardRef)((function(e,t){var a=e.title,s=e.children,d=(0,n.default)(e,l);return a?i.createElement(r.default,(0,o.default)({},d,{title:a,innerRef:t}),s):s})),c=d;const u=c;var g,p;(g="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(g.register(d,"Tooltip","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Tooltip.tsx"),g.register(c,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/components/Tooltip.tsx")),(p="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&p(e)},"./src/design-tokens/ResetStyles.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>c});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/defineProperty.js"),r=a("../../../node_modules/.pnpm/@material-ui+styles@4.11.4_9c6a8df88c2691f81f37725d5b4de033/node_modules/@material-ui/styles/esm/makeStyles/makeStyles.js"),i=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var s=(0,r.default)((function(e){var t=e.theme;return{"@global":{"html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video":{fontFamily:'"Roboto", Helvetica Neue, Arial, sans-serif'},strong:{fontWeight:null==t?void 0:t.fontWeight.semiBold},"html, body, #root":{height:"100%"},ul:{margin:0,padding:0,listStyle:"none"},".container":(0,n.default)({padding:15,flex:1,height:"100%"},"@media screen and (min-width: ".concat(null==t?void 0:t.breakPoints.container,"px)"),{maxWidth:null==t?void 0:t.breakPoints.container,width:"100%",marginLeft:"auto",marginRight:"auto"})}}})),l=function(e){var t=e.children;return s(),i.createElement(i.Fragment,null,t)},d=l;const c=d;var u,g;(u="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(u.register(s,"resetStyles","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/design-tokens/ResetStyles.tsx"),u.register(l,"ResetStyles","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/design-tokens/ResetStyles.tsx"),u.register(d,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/design-tokens/ResetStyles.tsx")),(g="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&g(e)},"./src/design-tokens/StyleBaseline.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>d});var o,n=a("../../../node_modules/.pnpm/@material-ui+core@4.11.4_9c6a8df88c2691f81f37725d5b4de033/node_modules/@material-ui/core/esm/CssBaseline/CssBaseline.js"),r=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),i=(a("../../../node_modules/.pnpm/normalize.css@8.0.1/node_modules/normalize.css/normalize.css"),a("./src/design-tokens/ResetStyles.tsx"));e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var s=function(){return r.createElement(r.Fragment,null,r.createElement(n.default,null),r.createElement(i.default,null))},l=s;const d=l;var c,u;(c="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(c.register(s,"StyleBaseline","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/design-tokens/StyleBaseline.tsx"),c.register(l,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/design-tokens/StyleBaseline.tsx")),(u="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&u(e)},"./src/design-tokens/ThemeContext.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>s});var o,n=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var r=(0,n.createContext)(void 0),i=r;const s=i;var l,d;(l="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(l.register(r,"ThemeContext","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/design-tokens/ThemeContext.ts"),l.register(i,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/design-tokens/ThemeContext.ts")),(d="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&d(e)},"./src/design-tokens/ThemeProvider.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>b});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js"),r=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/slicedToArray.js"),i=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/regenerator/index.js"),s=a.n(i),l=a("../../../node_modules/.pnpm/@material-ui+styles@4.11.4_9c6a8df88c2691f81f37725d5b4de033/node_modules/@material-ui/styles/esm/ThemeProvider/ThemeProvider.js"),d=a("../../../node_modules/.pnpm/emotion-theming@10.0.27_33bb31e1d857102242df3642b32eda18/node_modules/emotion-theming/dist/emotion-theming.browser.esm.js"),c=a("../../../node_modules/.pnpm/i18next@20.6.1/node_modules/i18next/dist/esm/i18next.js"),u=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),g=a("./src/providers/config/index.ts"),p=a("./src/design-tokens/load-dayjs-locale.ts"),m=a("./src/design-tokens/theme.ts"),I=a("./src/design-tokens/ThemeContext.ts"),C=a("./src/design-tokens/useLocalStorage.ts");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);var A="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default.signature:function(e){return e},f=function(e){var t,a,o,i,A,f=e.children,h=null===(t=(a=window).matchMedia)||void 0===t?void 0:t.call(a,"(prefers-color-scheme:dark)").matches,b=(null===(o=window)||void 0===o||null===(i=o.__VERDACCIO_BASENAME_UI_OPTIONS)||void 0===i?void 0:i.darkMode)||h,v=null===(A=c.default.languages)||void 0===A?void 0:A[0],y=(0,g.useConfig)().configOptions,k=(0,C.default)("darkMode",!!b),L=(0,r.default)(k,2),x=L[0],w=L[1],H=(0,C.default)("language",v),G=(0,r.default)(H,2),j=G[0],D=G[1],M=x?"dark":"light",T=(0,u.useCallback)((0,n.default)(s().mark((function e(){return s().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,c.default.changeLanguage(j);case 2:case"end":return e.stop()}}),e)}))),[j]),P=(0,m.getTheme)(M,null==y?void 0:y.primaryColor);return(0,u.useEffect)((function(){T(),(0,p.default)()}),[j,T]),u.createElement(I.default.Provider,{value:{isDarkMode:x,setIsDarkMode:w,language:j,setLanguage:D}},u.createElement(d.ThemeProvider,{theme:P},u.createElement(l.default,{theme:P},f)))};A(f,"useConfig{{ configOptions }}\nuseLocalStorage{[isDarkMode, setIsDarkMode]}\nuseLocalStorage{[language, setLanguage]}\nuseCallback{changeLanguage}\nuseEffect{}",(function(){return[g.useConfig,C.default,C.default]}));var h=f;const b=h;var v,y;(v="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(v.register(f,"ThemeProvider","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/design-tokens/ThemeProvider.tsx"),v.register(h,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/design-tokens/ThemeProvider.tsx")),(y="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&y(e)},"./src/design-tokens/load-dayjs-locale.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>c});var o,n=a("../../../node_modules/.pnpm/dayjs@1.10.6/node_modules/dayjs/dayjs.min.js"),r=a.n(n),i=a("../../../node_modules/.pnpm/i18next@20.6.1/node_modules/i18next/dist/esm/i18next.js");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;function s(){var e=i.default.options.fallbackLng;return Array.isArray(e)?e[0]:"string"==typeof e?e:void 0}function l(){var e=s(),t=i.default.language||e;switch(null==t?void 0:t.toLowerCase()){case"pt-br":a("../../../node_modules/.pnpm/dayjs@1.10.6/node_modules/dayjs/locale/pt-br.js"),r().locale("pt-br");break;case"de-de":a("../../../node_modules/.pnpm/dayjs@1.10.6/node_modules/dayjs/locale/de.js"),r().locale("de");break;case"es-es":a("../../../node_modules/.pnpm/dayjs@1.10.6/node_modules/dayjs/locale/es.js"),r().locale("es");break;case"fr-fr":a("../../../node_modules/.pnpm/dayjs@1.10.6/node_modules/dayjs/locale/fr.js"),r().locale("fr");break;case"zh-cn":a("../../../node_modules/.pnpm/dayjs@1.10.6/node_modules/dayjs/locale/zh-cn.js"),r().locale("zh-cn");break;case"ja-jp":a("../../../node_modules/.pnpm/dayjs@1.10.6/node_modules/dayjs/locale/ja.js"),r().locale("ja");break;case"ru-ru":a("../../../node_modules/.pnpm/dayjs@1.10.6/node_modules/dayjs/locale/ru.js"),r().locale("ru");break;case"tr-tr":a("../../../node_modules/.pnpm/dayjs@1.10.6/node_modules/dayjs/locale/tr.js"),r().locale("tr");break;case"uk-ua":a("../../../node_modules/.pnpm/dayjs@1.10.6/node_modules/dayjs/locale/uk.js"),r().locale("uk");break;case"zh-tw":a("../../../node_modules/.pnpm/dayjs@1.10.6/node_modules/dayjs/locale/zh-tw.js"),r().locale("zh-tw");break;case"cs-cz":a("../../../node_modules/.pnpm/dayjs@1.10.6/node_modules/dayjs/locale/cs.js"),r().locale("cs");break;default:a("../../../node_modules/.pnpm/dayjs@1.10.6/node_modules/dayjs/locale/en.js"),r().locale("en")}}var d=l;const c=d;var u,g;(u="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(u.register(s,"getFallFackLanguage","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/design-tokens/load-dayjs-locale.ts"),u.register(l,"loadDayJSLocale","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/design-tokens/load-dayjs-locale.ts"),u.register(d,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/design-tokens/load-dayjs-locale.ts")),(g="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&g(e)},"./src/design-tokens/theme.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{breakPoints:()=>C,getTheme:()=>f});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/defineProperty.js"),r=a("../../../node_modules/.pnpm/@material-ui+core@4.11.4_9c6a8df88c2691f81f37725d5b4de033/node_modules/@material-ui/core/styles/createMuiTheme.js"),i=a("./src/utils/colors.ts");function s(e,t){var a=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),a.push.apply(a,o)}return a}function l(e){for(var t=1;t<arguments.length;t++){var a=null!=arguments[t]?arguments[t]:{};t%2?s(Object(a),!0).forEach((function(t){(0,n.default)(e,t,a[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(a)):s(Object(a)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(a,t))}))}return e}e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var d={black:"#000",white:"#fff",red:"#d32f2f",orange:"#CD4000",greySuperLight:"#f5f5f5",greyLight:"#d3d3d3",greyLight2:"#908ba1",greyLight3:"#f3f4f240",greyDark:"#a9a9a9",greyDark2:"#586069",greyChateau:"#95989a",greyGainsboro:"#e3e3e3",greyAthens:"#d3dddd",eclipse:"#3c3c3c",paleNavy:"#e4e8f1",saltpan:"#f7f8f6",snow:"#f9f9f9",love:"#e25555",nobel01:"#999999",nobel02:"#9f9f9f",primary:i.PRIMARY_COLOR,secondary:"#20232a",background:"#fff",dodgerBlue:"#1ba1f2",cyanBlue:"#253341"},c={light:l({},d),dark:l(l({},d),{},{primary:"#24394e",secondary:"#424242",background:"#1A202C"})};function u(e,t){return"light"===e&&(c.light.primary=t),c[e]}var g,p,m={xxl:26,xl:24,lg:21,md:18,default:16,sm:14},I={light:300,regular:400,semiBold:500,bold:700},C={small:576,medium:768,large:1024,container:1240,xlarge:1275},A={fontSize:m,fontWeight:I,breakPoints:C},f=function(e,t){var a=u(e,t);return(0,r.default)(l({typography:{fontFamily:["-apple-system","BlinkMacSystemFont",'"Helvetica Neue"',"Arial","sans-serif"].join(",")},palette:l(l({type:e},a),{},{primary:{main:a.primary},secondary:{main:a.secondary},error:{main:a.red},background:{default:a.background}})},A))};(g="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(g.register(d,"colors","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/design-tokens/theme.ts"),g.register(c,"themeModes","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/design-tokens/theme.ts"),g.register(u,"applyPrimaryColor","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/design-tokens/theme.ts"),g.register(m,"fontSize","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/design-tokens/theme.ts"),g.register(I,"fontWeight","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/design-tokens/theme.ts"),g.register(C,"breakPoints","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/design-tokens/theme.ts"),g.register(A,"customizedTheme","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/design-tokens/theme.ts"),g.register(f,"getTheme","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/design-tokens/theme.ts")),(p="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&p(e)},"./src/design-tokens/useLocalStorage.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>d});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/slicedToArray.js"),r=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);var i="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default.signature:function(e){return e},s=function(e,t){var a=(0,r.useState)((function(){try{var a=window.localStorage.getItem(e);return a?JSON.parse(a):t}catch(e){return console.error("An error occurred getting a sessionStorage key",e),t}})),o=(0,n.default)(a,2),i=o[0],s=o[1];return[i,function(t){try{var a=t instanceof Function?t(i):t;s(a),window.localStorage.setItem(e,JSON.stringify(a))}catch(e){console.error("An error occurred writing to sessionStorage",e)}}]};i(s,"useState{[storedValue, setStoredValue](() => {\n try {\n // Get from local storage by key\n const item = window.localStorage.getItem(key);\n // Parse stored json or if none return initialValue\n return item ? JSON.parse(item) : initialValue;\n } catch (error: any) {\n // If error also return initialValue\n // eslint-disable-next-line no-console\n console.error('An error occurred getting a sessionStorage key', error);\n return initialValue;\n }\n })}");var l=s;const d=l;var c,u;(c="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(c.register(s,"useLocalStorage","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/design-tokens/useLocalStorage.ts"),c.register(l,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/design-tokens/useLocalStorage.ts")),(u="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&u(e)},"./src/design-tokens/useOnClickOutside.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{useOnClickOutside:()=>s});var o,n,r,i=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js");function s(e,t){(0,i.useEffect)((function(){var a=function(a){e.current&&!e.current.contains(a.target)&&t(a)};return document.addEventListener("mousedown",a),document.addEventListener("touchstart",a),function(){document.removeEventListener("mousedown",a),document.removeEventListener("touchstart",a)}}),[e,t])}e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e),("undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default.signature:function(e){return e})(s,"useEffect{}"),(n="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&n.register(s,"useOnClickOutside","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/design-tokens/useOnClickOutside.ts"),(r="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&r(e)},"./src/i18n/config.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>p});var o,n,r,i=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/toConsumableArray.js"),s=a("../../../node_modules/.pnpm/i18next@20.6.1/node_modules/i18next/dist/esm/i18next.js"),l=a("../../../node_modules/.pnpm/react-i18next@11.12.0_i18next@20.6.1+react@17.0.2/node_modules/react-i18next/dist/es/context.js"),d=a("./src/i18n/enabledLanguages.ts");e=a.hmd(e),(r="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&r(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;function c(e){try{return a("./src/i18n/download_translations sync recursive ^\\.\\/.*\\/ui\\.json$")("./".concat(e,"/ui.json"))}catch(t){return console.warn("language ".concat(e," file not found, fallback to en-US")),a("./src/i18n/crowdin/ui.json")}}var u=d.listLanguages.reduce((function(e,t){return e[t.lng]={translation:t.lng===d.DEFAULT_LANGUAGE?a("./src/i18n/crowdin/ui.json"):c(t.lng)},e}),{});s.default.use(l.initReactI18next).init({lng:(null===(o=window)||void 0===o||null===(n=o.__VERDACCIO_BASENAME_UI_OPTIONS)||void 0===n?void 0:n.language)||d.DEFAULT_LANGUAGE,fallbackLng:d.DEFAULT_LANGUAGE,whitelist:(0,i.default)(d.listLanguagesAsString),load:"currentOnly",resources:u,debug:!1,interpolation:{escapeValue:!1}});var g=s.default;const p=g;var m,I;(m="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(m.register(c,"loadTranslationFile","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/i18n/config.ts"),m.register(u,"languages","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/i18n/config.ts"),m.register(g,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/i18n/config.ts")),(I="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&I(e)},"./src/i18n/enabledLanguages.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{DEFAULT_LANGUAGE:()=>s,listLanguages:()=>l,listLanguagesAsString:()=>c});var o,n=a("../../../node_modules/.pnpm/country-flag-icons@1.4.10/node_modules/country-flag-icons/react/3x2/index.js");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var r,i,s="en-US",l=[{lng:s,icon:n.default.US,menuKey:"lng.english"},{lng:"cs-CZ",icon:n.default.CZ,menuKey:"lng.czech"},{lng:"pt-BR",icon:n.default.BR,menuKey:"lng.portuguese"},{lng:"es-ES",icon:n.default.ES,menuKey:"lng.spanish"},{lng:"de-DE",icon:n.default.DE,menuKey:"lng.german"},{lng:"fr-FR",icon:n.default.FR,menuKey:"lng.french"},{lng:"zh-CN",icon:n.default.CN,menuKey:"lng.chinese"},{lng:"ja-JP",icon:n.default.JP,menuKey:"lng.japanese"},{lng:"ru-RU",icon:n.default.RU,menuKey:"lng.russian"},{lng:"tr-TR",icon:n.default.TR,menuKey:"lng.turkish"},{lng:"uk-UA",icon:n.default.UA,menuKey:"lng.ukraine"},{lng:"km-KH",icon:n.default.KH,menuKey:"lng.khme"},{lng:"zh-TW",icon:n.default.TW,menuKey:"lng.chineseTraditional"}],d=l.reduce((function(e,t){return e.push(t.lng),e}),[]),c=d;(r="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(r.register(s,"DEFAULT_LANGUAGE","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/i18n/enabledLanguages.ts"),r.register(l,"listLanguages","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/i18n/enabledLanguages.ts"),r.register(d,"languages","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/i18n/enabledLanguages.ts"),r.register(c,"listLanguagesAsString","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/i18n/enabledLanguages.ts")),(i="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&i(e)},"./src/index.tsx":(e,t,a)=>{"use strict";a.r(t);var o,n=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),r=a("../../../node_modules/.pnpm/react-dom@17.0.2_react@17.0.2/node_modules/react-dom/index.js"),i=a("../../../node_modules/.pnpm/react-hot-loader@4.13.0_9c6a8df88c2691f81f37725d5b4de033/node_modules/react-hot-loader/dist/react-hot-loader.production.min.js"),s=a("../../../node_modules/.pnpm/react-redux@7.2.1_e084f946920a04d85390aa355643c4d5/node_modules/react-redux/es/index.js"),l=a("./src/providers/config/index.ts"),d=a("./src/App/index.ts"),c=a("./src/design-tokens/StyleBaseline.tsx"),u=a("./src/design-tokens/ThemeProvider.tsx"),g=a("./src/store/index.ts");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var p,m,I=document.getElementById("root"),C=function(e){r.render(n.createElement(s.Provider,{store:g.store},n.createElement(i.AppContainer,null,n.createElement(l.default,null,n.createElement(u.default,null,n.createElement(c.default,null),n.createElement(e,null))))),I)};C(d.default),(p="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(p.register(I,"rootNode","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/index.tsx"),p.register(C,"renderApp","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/index.tsx")),(m="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&m(e)},"./src/lib/constants.ts":(e,t,a)=>{"use strict";var o;a.r(t),a.d(t,{DIST_TAGS:()=>i,HEADERS:()=>s,API_ERROR:()=>l}),e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var n,r,i="dist-tags",s={JSON:"application/json"},l={BAD_USERNAME_PASSWORD:"bad username/password, access denied"};(n="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(n.register(i,"DIST_TAGS","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/lib/constants.ts"),n.register(s,"HEADERS","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/lib/constants.ts"),n.register(l,"API_ERROR","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/lib/constants.ts")),(r="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&r(e)},"./src/pages/Version/DetailContainer/Dependencies/Dependencies.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>A});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/slicedToArray.js"),r=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),i=a("../../../node_modules/.pnpm/react-i18next@11.12.0_i18next@20.6.1+react@17.0.2/node_modules/react-i18next/dist/es/useTranslation.js"),s=a("../../../node_modules/.pnpm/react-router@5.2.1_react@17.0.2/node_modules/react-router/esm/react-router.js"),l=a("./src/components/CardContent.tsx"),d=a("./src/pages/Version/context.ts"),c=a("./src/pages/Version/DetailContainer/NoItems/index.ts"),u=a("./src/pages/Version/DetailContainer/Dependencies/styles.ts");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);var g="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default.signature:function(e){return e},p=function(e){var t=e.title,a=e.dependencies,o=(0,r.useContext)(d.DetailContext).enableLoading,c=(0,s.useHistory)(),g=(0,i.useTranslation)().t,p=Object.entries(a);return r.createElement(u.CardWrap,null,r.createElement(l.default,null,r.createElement(u.StyledText,{variant:"subtitle1"},"".concat(t," (").concat(p.length,")")),r.createElement(u.Tags,null,p.map((function(e){var t=(0,n.default)(e,2),a=t[0],i=t[1];return r.createElement(u.Tag,{className:"dep-tag",clickable:!0,key:a,label:g("dependencies.dependency-block",{package:a,version:i}),onClick:function(){return function(e){null==o||o(),c.push("/-/web/detail/".concat(e))}(a)}})})))))};function m(e){return!!e&&Object.keys(e).length>0}g(p,"useContext{{ enableLoading }}\nuseHistory{history}\nuseTranslation{{ t }}",(function(){return[s.useHistory,i.useTranslation]}));var I=function(){var e=(0,r.useContext)(d.DetailContext).packageMeta,t=(0,i.useTranslation)().t;if(!e)throw new Error(t("error.package-meta-is-required-at-detail-context"));var a=e.latest,o=a.dependencies,s=a.devDependencies,l=a.peerDependencies,u=a.name,g={dependencies:o,devDependencies:s,peerDependencies:l};return m(o)||m(s)||m(l)?r.createElement(r.Fragment,null,Object.entries(g).map((function(e){var t=(0,n.default)(e,2),a=t[0],o=t[1];return o&&0!==Object.keys(o).length?r.createElement(p,{dependencies:o,key:a,title:a}):null}))):r.createElement(c.default,{className:"no-dependencies",text:t("dependencies.has-no-dependencies",{package:u})})};g(I,"useContext{{ packageMeta }}\nuseTranslation{{ t }}",(function(){return[i.useTranslation]}));var C=I;const A=C;var f,h;(f="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(f.register(p,"DependencyBlock","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailContainer/Dependencies/Dependencies.tsx"),f.register(m,"hasKeys","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailContainer/Dependencies/Dependencies.tsx"),f.register(I,"Dependencies","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailContainer/Dependencies/Dependencies.tsx"),f.register(C,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailContainer/Dependencies/Dependencies.tsx")),(h="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&h(e)},"./src/pages/Version/DetailContainer/Dependencies/index.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>o.default});var o=a("./src/pages/Version/DetailContainer/Dependencies/Dependencies.tsx");"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature},"./src/pages/Version/DetailContainer/Dependencies/styles.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{CardWrap:()=>c,StyledText:()=>u,Tags:()=>g,Tag:()=>p});var o,n=a("../../../node_modules/.pnpm/@emotion+styled-base@10.0.31_33bb31e1d857102242df3642b32eda18/node_modules/@emotion/styled-base/dist/styled-base.browser.esm.js"),r=a("./src/components/Card.tsx"),i=a("./src/components/Chip.tsx"),s=a("./src/components/Text/index.ts");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var l,d,c=(0,n.default)(r.default,{target:"e12vbvs0",label:"CardWrap"})({name:"mzpff5",styles:"margin:0 0 16px;"}),u=(0,n.default)(s.default,{target:"e12vbvs1",label:"StyledText"})((function(e){return{fontWeight:e.theme&&e.theme.fontWeight.bold,textTransform:"capitalize"}}),""),g=(0,n.default)("div",{target:"e12vbvs2",label:"Tags"})({name:"1hbvsum",styles:"display:flex;justify-content:start;flex-wrap:wrap;margin:0 -5px;"}),p=(0,n.default)(i.default,{target:"e12vbvs3",label:"Tag"})({name:"1522hk",styles:"margin:5px;"});(l="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(l.register(c,"CardWrap","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailContainer/Dependencies/styles.ts"),l.register(u,"StyledText","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailContainer/Dependencies/styles.ts"),l.register(g,"Tags","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailContainer/Dependencies/styles.ts"),l.register(p,"Tag","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailContainer/Dependencies/styles.ts")),(d="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&d(e)},"./src/pages/Version/DetailContainer/Deprecated/Deprecated.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{CardStyled:()=>l,default:()=>u});var o,n=a("../../../node_modules/.pnpm/@emotion+styled-base@10.0.31_33bb31e1d857102242df3642b32eda18/node_modules/@emotion/styled-base/dist/styled-base.browser.esm.js"),r=a("../../../node_modules/.pnpm/@material-ui+core@4.11.4_9c6a8df88c2691f81f37725d5b4de033/node_modules/@material-ui/core/esm/Card/Card.js"),i=a("../../../node_modules/.pnpm/@material-ui+core@4.11.4_9c6a8df88c2691f81f37725d5b4de033/node_modules/@material-ui/core/esm/CardContent/CardContent.js"),s=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var l=(0,n.default)(r.default,{target:"e1ae6n00",label:"CardStyled"})((function(e){var t,a,o=e.theme;return{marginTop:null==o?void 0:o.spacing(1),marginBottom:null==o?void 0:o.spacing(.5),backgroundColor:null==o||null===(t=o.palette)||void 0===t?void 0:t.error.light,opacity:"0.9",color:null==o||null===(a=o.palette)||void 0===a?void 0:a.error.contrastText,fontWeight:"bold"}}),""),d=function(e){var t=e.message;return s.createElement(l,null,s.createElement(i.default,null,t))},c=d;const u=c;var g,p;(g="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(g.register(l,"CardStyled","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailContainer/Deprecated/Deprecated.tsx"),g.register(d,"Deprecated","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailContainer/Deprecated/Deprecated.tsx"),g.register(c,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailContainer/Deprecated/Deprecated.tsx")),(p="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&p(e)},"./src/pages/Version/DetailContainer/Deprecated/index.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>o.default});var o=a("./src/pages/Version/DetailContainer/Deprecated/Deprecated.tsx");"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature},"./src/pages/Version/DetailContainer/DetailContainer.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{TabPosition:()=>u,default:()=>I});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/slicedToArray.js"),r=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),i=a("./src/components/Box.tsx"),s=a("./src/pages/Version/context.ts"),l=a("./src/pages/Version/DetailContainer/Deprecated/index.ts"),d=a("./src/pages/Version/DetailContainer/DetailContainerContent.tsx"),c=a("./src/pages/Version/DetailContainer/DetailContainerTabs.tsx");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);var u,g="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default.signature:function(e){return e};!function(e){e.README="readme",e.DEPENDENCIES="dependencies",e.VERSIONS="versions",e.UPLINKS="uplinks"}(u||(u={}));var p=function(){var e,t,a=Object.values(u),o=(0,r.useState)(0),g=(0,n.default)(o,2),p=g[0],m=g[1],I=(0,r.useContext)(s.DetailContext),C=I.readMe,A=I.packageMeta;return r.createElement(i.default,{component:"div",display:"flex",flexDirection:"column",padding:2},r.createElement(c.default,{onChange:function(e,t){m(t)},tabPosition:p}),(null==A||null===(e=A.latest)||void 0===e?void 0:e.deprecated)&&r.createElement(l.default,{message:null==A||null===(t=A.latest)||void 0===t?void 0:t.deprecated}),r.createElement(d.default,{readDescription:C,tabPosition:a[p]}))};g(p,"useState{[tabPosition, setTabPosition](0)}\nuseContext{detailContext}");var m=p;const I=m;var C,A;(C="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(C.register(p,"DetailContainer","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailContainer/DetailContainer.tsx"),C.register(m,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailContainer/DetailContainer.tsx")),(A="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&A(e)},"./src/pages/Version/DetailContainer/DetailContainerContent.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{TabPosition:()=>c,default:()=>C});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/typeof.js"),r=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),i=a("./src/App/utils/loadable.tsx"),s=a("./src/pages/Version/DetailContainer/DetailContainerContentReadme.tsx");function l(e){if("function"!=typeof WeakMap)return null;var t=new WeakMap,a=new WeakMap;return(l=function(e){return e?a:t})(e)}function d(e,t){if(!t&&e&&e.__esModule)return e;if(null===e||"object"!==(0,n.default)(e)&&"function"!=typeof e)return{default:e};var a=l(t);if(a&&a.has(e))return a.get(e);var o={},r=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var i in e)if("default"!==i&&Object.prototype.hasOwnProperty.call(e,i)){var s=r?Object.getOwnPropertyDescriptor(e,i):null;s&&(s.get||s.set)?Object.defineProperty(o,i,s):o[i]=e[i]}return o.default=e,a&&a.set(e,o),o}e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);var c;"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;!function(e){e.README="readme",e.DEPENDENCIES="dependencies",e.VERSIONS="versions",e.UPLINKS="uplinks"}(c||(c={}));var u=(0,i.default)((function(){return Promise.resolve().then((function(){return d(a("./src/pages/Version/DetailContainer/Versions/index.ts"))}))})),g=(0,i.default)((function(){return Promise.resolve().then((function(){return d(a("./src/pages/Version/DetailContainer/UpLinks/index.ts"))}))})),p=(0,i.default)((function(){return Promise.resolve().then((function(){return d(a("./src/pages/Version/DetailContainer/Dependencies/index.ts"))}))})),m=function(e){var t=e.tabPosition,a=e.readDescription;switch(t){case c.README:return r.createElement(s.default,{description:a});case c.UPLINKS:return r.createElement(g,null);case c.VERSIONS:return r.createElement(u,null);case c.DEPENDENCIES:return r.createElement(p,null);default:return null}},I=m;const C=I;var A,f;(A="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(A.register(u,"Versions","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailContainer/DetailContainerContent.tsx"),A.register(g,"UpLinks","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailContainer/DetailContainerContent.tsx"),A.register(p,"Dependencies","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailContainer/DetailContainerContent.tsx"),A.register(m,"DetailContainerContent","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailContainer/DetailContainerContent.tsx"),A.register(I,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailContainer/DetailContainerContent.tsx")),(f="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&f(e)},"./src/pages/Version/DetailContainer/DetailContainerContentReadme.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>d});var o,n=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),r=a("./src/utils/sec-utils.ts"),i=a("./src/pages/Version/DetailContainer/Readme/index.ts");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var s=function(e){var t=e.description;if(!t)return null;var a=(0,r.preventXSS)(t);return n.createElement(i.default,{description:a})},l=s;const d=l;var c,u;(c="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(c.register(s,"DetailContainerContentReadme","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailContainer/DetailContainerContentReadme.tsx"),c.register(l,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailContainer/DetailContainerContentReadme.tsx")),(u="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&u(e)},"./src/pages/Version/DetailContainer/DetailContainerTabs.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>g});var o,n=a("../../../node_modules/.pnpm/@emotion+styled-base@10.0.31_33bb31e1d857102242df3642b32eda18/node_modules/@emotion/styled-base/dist/styled-base.browser.esm.js"),r=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),i=a("../../../node_modules/.pnpm/react-i18next@11.12.0_i18next@20.6.1+react@17.0.2/node_modules/react-i18next/dist/es/useTranslation.js"),s=a("./src/components/Tab.tsx"),l=a("./src/components/Tabs.tsx");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);var d="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default.signature:function(e){return e},c=function(e){var t=e.tabPosition,a=e.onChange,o=(0,i.useTranslation)().t;return r.createElement(I,{color:"primary",indicatorColor:"primary",onChange:a,value:t,variant:"fullWidth"},r.createElement(s.default,{"data-testid":"readme-tab",id:"readme-tab",label:o("tab.readme")}),r.createElement(s.default,{"data-testid":"dependencies-tab",id:"dependencies-tab",label:o("tab.dependencies")}),r.createElement(s.default,{"data-testid":"versions-tab",id:"versions-tab",label:o("tab.versions")}),r.createElement(s.default,{"data-testid":"uplinks-tab",id:"uplinks-tab",label:o("tab.uplinks")}))};d(c,"useTranslation{{ t }}",(function(){return[i.useTranslation]}));var u=c;const g=u;var p,m,I=(0,n.default)(l.default,{target:"e4hvfps0",label:"Tabs"})({name:"1qm1lh",styles:"margin-bottom:16px;"});(p="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(p.register(c,"DetailContainerTabs","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailContainer/DetailContainerTabs.tsx"),p.register(I,"Tabs","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailContainer/DetailContainerTabs.tsx"),p.register(u,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailContainer/DetailContainerTabs.tsx")),(m="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&m(e)},"./src/pages/Version/DetailContainer/NoItems/NoItems.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>l});var o,n=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),r=a("./src/components/Text/index.ts");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var i=function(e){var t=e.className,a=e.text;return n.createElement(r.default,{className:t,gutterBottom:!0,variant:"subtitle1"},a)},s=i;const l=s;var d,c;(d="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(d.register(i,"NoItems","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailContainer/NoItems/NoItems.tsx"),d.register(s,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailContainer/NoItems/NoItems.tsx")),(c="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&c(e)},"./src/pages/Version/DetailContainer/NoItems/index.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>o.default});var o=a("./src/pages/Version/DetailContainer/NoItems/NoItems.tsx");"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature},"./src/pages/Version/DetailContainer/Readme/Readme.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>l});var o,n=a("../../../node_modules/.pnpm/@emotion+styled-base@10.0.31_33bb31e1d857102242df3642b32eda18/node_modules/@emotion/styled-base/dist/styled-base.browser.esm.js"),r=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js");a("../../../node_modules/.pnpm/github-markdown-css@4.0.0/node_modules/github-markdown-css/github-markdown.css");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var i=function(e){var t=e.description;return r.createElement(u,{className:"markdown-body",dangerouslySetInnerHTML:{__html:t}})},s=i;const l=s;var d,c,u=(0,n.default)("div",{target:"esdleg90",label:"Wrapper"})((function(e){var t=e.theme;return{background:null==t?void 0:t.palette.white,color:null==t?void 0:t.palette.black,padding:null==t?void 0:t.spacing(2,3),ul:{listStyle:"disc"}}}),"");(d="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(d.register(i,"Readme","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailContainer/Readme/Readme.tsx"),d.register(u,"Wrapper","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailContainer/Readme/Readme.tsx"),d.register(s,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailContainer/Readme/Readme.tsx")),(c="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&c(e)},"./src/pages/Version/DetailContainer/Readme/index.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>o.default});var o=a("./src/pages/Version/DetailContainer/Readme/Readme.tsx");"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature},"./src/pages/Version/DetailContainer/UpLinks/UpLinks.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>I});var o,n=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),r=a("../../../node_modules/.pnpm/react-i18next@11.12.0_i18next@20.6.1+react@17.0.2/node_modules/react-i18next/dist/es/useTranslation.js"),i=a("./src/components/List.tsx"),s=a("./src/components/ListItem.tsx"),l=a("./src/utils/package.ts"),d=a("./src/pages/Version/index.ts"),c=a("./src/pages/Version/DetailContainer/NoItems/index.ts"),u=a("./src/pages/Version/DetailContainer/UpLinks/styles.ts");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);var g="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default.signature:function(e){return e},p=function(){var e=(0,n.useContext)(d.DetailContext).packageMeta,t=(0,r.useTranslation)().t;if(!e||!e._uplinks||!e.latest)return null;var a=e._uplinks,o=e.latest;return 0===Object.keys(a).length?n.createElement(c.default,{text:t("uplinks.no-items",{name:o.name})}):n.createElement(n.Fragment,null,n.createElement(u.StyledText,{variant:"subtitle1"},t("uplinks.title")),n.createElement(i.default,null,Object.keys(a).reverse().map((function(e){return n.createElement(s.default,{key:e},n.createElement(u.ListItemText,null,e),n.createElement(u.Spacer,null),n.createElement(u.ListItemText,null,(0,l.formatDateDistance)(a[e].fetched)))}))))};g(p,"useContext{{ packageMeta }}\nuseTranslation{{ t }}",(function(){return[r.useTranslation]}));var m=p;const I=m;var C,A;(C="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(C.register(p,"UpLinks","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailContainer/UpLinks/UpLinks.tsx"),C.register(m,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailContainer/UpLinks/UpLinks.tsx")),(A="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&A(e)},"./src/pages/Version/DetailContainer/UpLinks/index.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>o.default});var o=a("./src/pages/Version/DetailContainer/UpLinks/UpLinks.tsx");"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature},"./src/pages/Version/DetailContainer/UpLinks/styles.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{StyledText:()=>d,Spacer:()=>c,ListItemText:()=>u});var o,n=a("../../../node_modules/.pnpm/@emotion+styled-base@10.0.31_33bb31e1d857102242df3642b32eda18/node_modules/@emotion/styled-base/dist/styled-base.browser.esm.js"),r=a("./src/components/ListItemText.tsx"),i=a("./src/components/Text/index.ts");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var s,l,d=(0,n.default)(i.default,{target:"e1lovynm0",label:"StyledText"})((function(e){var t;return{fontWeight:null===(t=e.theme)||void 0===t?void 0:t.fontWeight.bold}}),""),c=(0,n.default)("div",{target:"e1lovynm1",label:"Spacer"})((function(e){var t=e.theme;return{flex:"1 1 auto",borderBottom:"1px dotted ".concat("light"==(null==t?void 0:t.palette.type)?"rgba(0, 0, 0, 0.2)":"rgba(255, 255, 255, 0.2)"," "),whiteSpace:"nowrap",height:"0.5em"}}),""),u=(0,n.default)(r.default,{target:"e1lovynm2",label:"ListItemText"})((function(e){var t=e.theme;return{flex:"none",color:"light"==(null==t?void 0:t.palette.type)?null==t?void 0:t.palette.black:null==t?void 0:t.palette.white,opacity:.6}}),"");(s="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(s.register(d,"StyledText","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailContainer/UpLinks/styles.ts"),s.register(c,"Spacer","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailContainer/UpLinks/styles.ts"),s.register(u,"ListItemText","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailContainer/UpLinks/styles.ts")),(l="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&l(e)},"./src/pages/Version/DetailContainer/Versions/Versions.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>m});var o,n=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),r=a("../../../node_modules/.pnpm/react-i18next@11.12.0_i18next@20.6.1+react@17.0.2/node_modules/react-i18next/dist/es/useTranslation.js"),i=a("./lib/constants.ts"),s=a("./src/pages/Version/context.ts"),l=a("./src/pages/Version/DetailContainer/Versions/styles.ts"),d=a("./src/pages/Version/DetailContainer/Versions/VersionsHistoryList.tsx"),c=a("./src/pages/Version/DetailContainer/Versions/VersionsTagList.tsx");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);var u="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default.signature:function(e){return e},g=function(){var e=(0,n.useContext)(s.DetailContext),t=(0,r.useTranslation)().t,a=e.packageMeta,o=e.packageName;if(!a)return null;var u=a.versions,g=void 0===u?{}:u,p=a.time,m=void 0===p?{}:p,I=a[i.DIST_TAGS],C=void 0===I?{}:I;return n.createElement(n.Fragment,null,C&&Object.keys(C).length>0&&n.createElement(n.Fragment,null,n.createElement(l.StyledText,{variant:"subtitle1"},t("versions.current-tags")),n.createElement(c.default,{tags:C})),g&&Object.keys(g).length>0&&o&&n.createElement(n.Fragment,null,n.createElement(l.StyledText,{variant:"subtitle1"},t("versions.version-history")),n.createElement(d.default,{packageName:o,time:m,versions:g})))};u(g,"useContext{detailContext}\nuseTranslation{{ t }}",(function(){return[r.useTranslation]}));var p=g;const m=p;var I,C;(I="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(I.register(g,"Versions","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailContainer/Versions/Versions.tsx"),I.register(p,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailContainer/Versions/Versions.tsx")),(C="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&C(e)},"./src/pages/Version/DetailContainer/Versions/VersionsHistoryList.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>p});var o,n=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),r=a("../../../node_modules/.pnpm/react-i18next@11.12.0_i18next@20.6.1+react@17.0.2/node_modules/react-i18next/dist/es/useTranslation.js"),i=a("./src/components/List.tsx"),s=a("./src/components/ListItem.tsx"),l=a("./src/utils/package.ts"),d=a("./src/pages/Version/DetailContainer/Versions/styles.ts");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);var c="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default.signature:function(e){return e},u=function(e){var t=e.versions,a=e.packageName,o=e.time,c=(0,r.useTranslation)().t;return n.createElement(i.default,{dense:!0},Object.keys(t).reverse().map((function(e){return n.createElement(s.default,{className:"version-item",key:e},n.createElement(d.StyledLink,{to:"/-/web/detail/".concat(a,"/v/").concat(e)},n.createElement(d.ListItemText,null,e)),n.createElement(d.Spacer,null),n.createElement(d.ListItemText,null,o[e]?(0,l.formatDateDistance)(o[e]):c("versions.not-available")))})))};c(u,"useTranslation{{ t }}",(function(){return[r.useTranslation]}));var g=u;const p=g;var m,I;(m="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(m.register(u,"VersionsHistoryList","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailContainer/Versions/VersionsHistoryList.tsx"),m.register(g,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailContainer/Versions/VersionsHistoryList.tsx")),(I="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&I(e)},"./src/pages/Version/DetailContainer/Versions/VersionsTagList.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>c});var o,n=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),r=a("./src/components/List.tsx"),i=a("./src/components/ListItem.tsx"),s=a("./src/pages/Version/DetailContainer/Versions/styles.ts");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var l=function(e){var t=e.tags;return n.createElement(r.default,{dense:!0},Object.keys(t).reverse().map((function(e){return n.createElement(i.default,{className:"version-item",key:e},n.createElement(s.ListItemText,null,e),n.createElement(s.Spacer,null),n.createElement(s.ListItemText,null,t[e]))})))},d=l;const c=d;var u,g;(u="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(u.register(l,"VersionsTagList","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailContainer/Versions/VersionsTagList.tsx"),u.register(d,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailContainer/Versions/VersionsTagList.tsx")),(g="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&g(e)},"./src/pages/Version/DetailContainer/Versions/index.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>o.default});var o=a("./src/pages/Version/DetailContainer/Versions/Versions.tsx");"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature},"./src/pages/Version/DetailContainer/Versions/styles.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{StyledText:()=>c,Spacer:()=>u,ListItemText:()=>g,StyledLink:()=>p});var o,n=a("../../../node_modules/.pnpm/@emotion+styled-base@10.0.31_33bb31e1d857102242df3642b32eda18/node_modules/@emotion/styled-base/dist/styled-base.browser.esm.js"),r=a("./src/components/Link.tsx"),i=a("./src/components/ListItemText.tsx"),s=a("./src/components/Text/index.ts");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var l,d,c=(0,n.default)(s.default,{target:"ei59c890",label:"StyledText"})((function(e){var t;return{fontWeight:null===(t=e.theme)||void 0===t?void 0:t.fontWeight.bold}}),""),u=(0,n.default)("div",{target:"ei59c891",label:"Spacer"})((function(e){var t=e.theme;return{flex:"1 1 auto",borderBottom:"1px dotted ".concat("light"==(null==t?void 0:t.palette.type)?"rgba(0, 0, 0, 0.2)":"rgba(255, 255, 255, 0.2)"," "),whiteSpace:"nowrap",height:"0.5em",margin:"0 16px"}}),""),g=(0,n.default)(i.default,{target:"ei59c892",label:"ListItemText"})((function(e){var t=e.theme;return{flex:"none",opacity:.6,color:"light"==(null==t?void 0:t.palette.type)?null==t?void 0:t.palette.black:null==t?void 0:t.palette.white}}),""),p=(0,n.default)(r.default,{target:"ei59c893",label:"StyledLink"})({name:"ytumd6",styles:"text-decoration:none;"});(l="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(l.register(c,"StyledText","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailContainer/Versions/styles.ts"),l.register(u,"Spacer","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailContainer/Versions/styles.ts"),l.register(g,"ListItemText","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailContainer/Versions/styles.ts"),l.register(p,"StyledLink","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailContainer/Versions/styles.ts")),(d="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&d(e)},"./src/pages/Version/DetailContainer/index.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>o.default});var o=a("./src/pages/Version/DetailContainer/DetailContainer.tsx");"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature},"./src/pages/Version/DetailSidebar/DetailSidebar.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>x});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/typeof.js"),r=a("../../../node_modules/.pnpm/@emotion+styled-base@10.0.31_33bb31e1d857102242df3642b32eda18/node_modules/@emotion/styled-base/dist/styled-base.browser.esm.js"),i=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),s=a("./src/components/ActionBar/index.ts"),l=a("./src/components/Author/index.ts"),d=a("./src/components/Paper.tsx"),c=a("./src/pages/Version/index.ts"),u=a("./src/App/utils/loadable.tsx"),g=a("./src/pages/Version/DetailSidebar/DetailSidebarFundButton.tsx"),p=a("./src/pages/Version/DetailSidebar/DetailSidebarTitle.tsx"),m=a("./src/pages/Version/DetailSidebar/Developers/index.ts"),I=a("./src/pages/Version/DetailSidebar/Developers/DevelopersTitle.tsx");function C(e){if("function"!=typeof WeakMap)return null;var t=new WeakMap,a=new WeakMap;return(C=function(e){return e?a:t})(e)}function A(e,t){if(!t&&e&&e.__esModule)return e;if(null===e||"object"!==(0,n.default)(e)&&"function"!=typeof e)return{default:e};var a=C(t);if(a&&a.has(e))return a.get(e);var o={},r=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var i in e)if("default"!==i&&Object.prototype.hasOwnProperty.call(e,i)){var s=r?Object.getOwnPropertyDescriptor(e,i):null;s&&(s.get||s.set)?Object.defineProperty(o,i,s):o[i]=e[i]}return o.default=e,a&&a.set(e,o),o}e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);var f="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default.signature:function(e){return e},h=(0,u.default)((function(){return Promise.resolve().then((function(){return A(a("./src/pages/Version/DetailSidebar/Engines/index.ts"))}))})),b=(0,u.default)((function(){return Promise.resolve().then((function(){return A(a("./src/pages/Version/DetailSidebar/Dist/index.ts"))}))})),v=(0,u.default)((function(){return Promise.resolve().then((function(){return A(a("./src/pages/Version/DetailSidebar/Install/index.ts"))}))})),y=(0,u.default)((function(){return Promise.resolve().then((function(){return A(a("./src/pages/Version/DetailSidebar/Repository/index.ts"))}))})),k=function(){var e,t=(0,i.useContext)(c.DetailContext),a=t.packageMeta,o=t.packageName,n=t.packageVersion;return a&&o?i.createElement(G,{className:"sidebar-info"},i.createElement(p.default,{description:null===(e=a.latest)||void 0===e?void 0:e.description,isLatest:void 0===n,packageName:o,version:n||a.latest.version}),i.createElement(s.default,null),i.createElement(v,null),i.createElement(g.default,null),i.createElement(y,null),i.createElement(h,null),i.createElement(b,null),i.createElement(l.default,null),i.createElement(m.default,{type:I.DeveloperType.MAINTAINERS}),i.createElement(m.default,{type:I.DeveloperType.CONTRIBUTORS})):null};f(k,"useContext{detailContext}");var L=k;const x=L;var w,H,G=(0,r.default)(d.default,{target:"e13qr4yu0",label:"StyledPaper"})((function(e){var t=e.theme;return{padding:null==t?void 0:t.spacing(3,2)}}),"");(w="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(w.register(h,"Engines","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailSidebar/DetailSidebar.tsx"),w.register(b,"Dist","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailSidebar/DetailSidebar.tsx"),w.register(v,"Install","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailSidebar/DetailSidebar.tsx"),w.register(y,"Repository","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailSidebar/DetailSidebar.tsx"),w.register(k,"DetailSidebar","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailSidebar/DetailSidebar.tsx"),w.register(G,"StyledPaper","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailSidebar/DetailSidebar.tsx"),w.register(L,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailSidebar/DetailSidebar.tsx")),(H="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&H(e)},"./src/pages/Version/DetailSidebar/DetailSidebarFundButton.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>I});var o,n=a("../../../node_modules/.pnpm/@emotion+styled-base@10.0.31_33bb31e1d857102242df3642b32eda18/node_modules/@emotion/styled-base/dist/styled-base.browser.esm.js"),r=a("../../../node_modules/.pnpm/@material-ui+icons@4.11.2_842d6fd0a208aabbcab28b4283e0161f/node_modules/@material-ui/icons/Favorite.js"),i=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),s=a("../../../node_modules/.pnpm/react-i18next@11.12.0_i18next@20.6.1+react@17.0.2/node_modules/react-i18next/dist/es/Trans.js"),l=a("./src/components/Button.tsx"),d=a("./src/components/Link.tsx"),c=a("./src/utils/url.ts"),u=a("./src/pages/Version/index.ts");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);var g="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default.signature:function(e){return e},p=function(){var e,t,a=(0,i.useContext)(u.DetailContext).packageMeta,o=null==a||null===(e=a.latest)||void 0===e||null===(t=e.funding)||void 0===t?void 0:t.url;return(0,c.isURL)(o)?i.createElement(f,{external:!0,to:o},i.createElement(l.default,{color:"primary",fullWidth:!0,startIcon:i.createElement(h,null),variant:"outlined"},i.createElement(s.Trans,{components:[i.createElement(b,{key:"fund"})],i18nKey:"button.fund-this-package"}))):null};g(p,"useContext{detailContext}");var m=p;const I=m;var C,A,f=(0,n.default)(d.default,{target:"ei0x75o0",label:"StyledLink"})((function(e){var t=e.theme;return{marginTop:null==t?void 0:t.spacing(1),marginBottom:null==t?void 0:t.spacing(1),textDecoration:"none",display:"block"}}),""),h=(0,n.default)(r.default,{target:"ei0x75o1",label:"StyledFavoriteIcon"})((function(e){var t=e.theme;return{color:null==t?void 0:t.palette.orange}}),""),b=(0,n.default)("strong",{target:"ei0x75o2",label:"StyledFundStrong"})({name:"8er82g",styles:"margin-right:3px;"});(C="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(C.register(p,"DetailSidebarFundButton","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailSidebar/DetailSidebarFundButton.tsx"),C.register(f,"StyledLink","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailSidebar/DetailSidebarFundButton.tsx"),C.register(h,"StyledFavoriteIcon","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailSidebar/DetailSidebarFundButton.tsx"),C.register(b,"StyledFundStrong","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailSidebar/DetailSidebarFundButton.tsx"),C.register(m,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailSidebar/DetailSidebarFundButton.tsx")),(A="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&A(e)},"./src/pages/Version/DetailSidebar/DetailSidebarTitle.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>g});var o,n=a("../../../node_modules/.pnpm/@emotion+styled-base@10.0.31_33bb31e1d857102242df3642b32eda18/node_modules/@emotion/styled-base/dist/styled-base.browser.esm.js"),r=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),i=a("../../../node_modules/.pnpm/react-i18next@11.12.0_i18next@20.6.1+react@17.0.2/node_modules/react-i18next/dist/es/useTranslation.js"),s=a("./src/components/Box.tsx"),l=a("./src/components/Heading.tsx");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);var d="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default.signature:function(e){return e},c=function(e){var t=e.description,a=e.packageName,o=e.version,n=e.isLatest,l=(0,i.useTranslation)().t;return r.createElement(s.default,{className:"detail-info",display:"flex",flexDirection:"column",marginBottom:"8px"},r.createElement(I,null,a),t&&r.createElement("div",null,t),r.createElement(C,null,l(n?"sidebar.detail.latest-version":"sidebar.detail.version",{version:o})))};d(c,"useTranslation{{ t }}",(function(){return[i.useTranslation]}));var u=c;const g=u;var p,m,I=(0,n.default)(l.default,{target:"eyhpj120",label:"StyledHeading"})({name:"1affg1x",styles:"font-size:1rem;font-weight:700;"}),C=(0,n.default)(s.default,{target:"eyhpj121",label:"StyledBoxVersion"})((function(e){var t=e.theme;return{color:t&&t.palette.text.secondary}}),"");(p="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(p.register(c,"DetailSidebarTitle","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailSidebar/DetailSidebarTitle.tsx"),p.register(I,"StyledHeading","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailSidebar/DetailSidebarTitle.tsx"),p.register(C,"StyledBoxVersion","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailSidebar/DetailSidebarTitle.tsx"),p.register(u,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailSidebar/DetailSidebarTitle.tsx")),(m="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&m(e)},"./src/pages/Version/DetailSidebar/Developers/Developers.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{DeveloperType:()=>C,Fab:()=>f,VISIBLE_MAX:()=>b,default:()=>k});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/slicedToArray.js"),r=a("../../../node_modules/.pnpm/@emotion+styled-base@10.0.31_33bb31e1d857102242df3642b32eda18/node_modules/@emotion/styled-base/dist/styled-base.browser.esm.js"),i=a("../../../node_modules/.pnpm/@material-ui+core@4.11.4_9c6a8df88c2691f81f37725d5b4de033/node_modules/@material-ui/core/esm/Avatar/Avatar.js"),s=a("../../../node_modules/.pnpm/@material-ui+icons@4.11.2_842d6fd0a208aabbcab28b4283e0161f/node_modules/@material-ui/icons/Add.js"),l=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),d=a("../../../node_modules/.pnpm/react-i18next@11.12.0_i18next@20.6.1+react@17.0.2/node_modules/react-i18next/dist/es/useTranslation.js"),c=a("./src/components/Box.tsx"),u=a("./src/components/FloatingActionButton.tsx"),g=a("./src/components/Tooltip.tsx"),p=a("./src/pages/Version/index.ts"),m=a("./src/pages/Version/DetailSidebar/Developers/DevelopersTitle.tsx"),I=a("./src/pages/Version/DetailSidebar/Developers/get-unique-developer-values.ts");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);var C,A="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default.signature:function(e){return e};!function(e){e.CONTRIBUTORS="contributors",e.MAINTAINERS="maintainers"}(C||(C={}));var f=(0,r.default)(u.default,{target:"efsbdr30",label:"Fab"})((function(e){var t,a;return{backgroundColor:null===(t=e.theme)||void 0===t?void 0:t.palette.primary.main,color:null===(a=e.theme)||void 0===a?void 0:a.palette.white}}),""),h=(0,r.default)(c.default,{target:"efsbdr31",label:"StyledBox"})({name:"183y8xt",styles:"> *{margin:5px;}"}),b=6,v=function(e){var t=e.type,a=e.visibleMax,o=void 0===a?b:a,r=(0,l.useContext)(p.DetailContext),c=(0,d.useTranslation)().t;if(!r)throw Error(c("app-context-not-correct-used"));var u=(0,l.useMemo)((function(){var e;return(0,I.default)(null===(e=r.packageMeta)||void 0===e?void 0:e.latest[t])}),[r.packageMeta,t]),C=(0,l.useState)(o),A=(0,n.default)(C,2),v=A[0],y=A[1],k=(0,l.useState)(u),L=(0,n.default)(k,2),x=L[0],w=L[1];(0,l.useEffect)((function(){u.length&&w(u.slice(0,v))}),[u,v]);var H=(0,l.useCallback)((function(){y(v+b)}),[v]);return x&&u.length?l.createElement(l.Fragment,null,l.createElement(m.default,{type:t}),l.createElement(h,{display:"flex",flexWrap:"wrap",margin:"10px 0 10px 0"},x.map((function(e){return l.createElement(g.default,{key:e.email,title:e.name},l.createElement(i.default,{alt:e.name,src:e.avatar}))})),v<u.length&&l.createElement(f,{onClick:H,size:"small"},l.createElement(s.default,null)))):null};A(v,"useContext{detailContext}\nuseTranslation{{ t }}\nuseMemo{developers}\nuseState{[visibleDevelopersMax, setVisibleDevelopersMax](visibleMax)}\nuseState{[visibleDevelopers, setVisibleDevelopers](developers)}\nuseEffect{}\nuseCallback{handleSetVisibleDevelopersMax}",(function(){return[d.useTranslation]}));var y=v;const k=y;var L,x;(L="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(L.register(f,"Fab","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailSidebar/Developers/Developers.tsx"),L.register(h,"StyledBox","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailSidebar/Developers/Developers.tsx"),L.register(b,"VISIBLE_MAX","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailSidebar/Developers/Developers.tsx"),L.register(v,"Developers","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailSidebar/Developers/Developers.tsx"),L.register(y,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailSidebar/Developers/Developers.tsx")),(x="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&x(e)},"./src/pages/Version/DetailSidebar/Developers/DevelopersTitle.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{DeveloperType:()=>l,default:()=>g});var o,n=a("../../../node_modules/.pnpm/@emotion+styled-base@10.0.31_33bb31e1d857102242df3642b32eda18/node_modules/@emotion/styled-base/dist/styled-base.browser.esm.js"),r=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),i=a("../../../node_modules/.pnpm/react-i18next@11.12.0_i18next@20.6.1+react@17.0.2/node_modules/react-i18next/dist/es/useTranslation.js"),s=a("./src/components/Text/index.ts");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);var l,d="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default.signature:function(e){return e};!function(e){e.CONTRIBUTORS="contributors",e.MAINTAINERS="maintainers"}(l||(l={}));var c=function(e){var t=e.type,a=(0,i.useTranslation)().t;switch(t){case l.CONTRIBUTORS:return r.createElement(I,{variant:"subtitle1"},a("sidebar.contributors.title"));case l.MAINTAINERS:return r.createElement(I,{variant:"subtitle1"},a("sidebar.maintainers.title"))}};d(c,"useTranslation{{ t }}",(function(){return[i.useTranslation]}));var u=c;const g=u;var p,m,I=(0,n.default)(s.default,{target:"egusi2d0",label:"StyledText"})((function(e){var t=e.theme;return{fontWeight:null==t?void 0:t.fontWeight.bold,marginBottom:"10px"}}),"");(p="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(p.register(c,"DevelopersTitle","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailSidebar/Developers/DevelopersTitle.tsx"),p.register(I,"StyledText","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailSidebar/Developers/DevelopersTitle.tsx"),p.register(u,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailSidebar/Developers/DevelopersTitle.tsx")),(m="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&m(e)},"./src/pages/Version/DetailSidebar/Developers/get-unique-developer-values.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>s});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/toConsumableArray.js");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;function r(e){return e?e.reduce((function(e,t){return e.some((function(e){return e.email===t.email}))?e:[].concat((0,n.default)(e),[t])}),[]):[]}var i=r;const s=i;var l,d;(l="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(l.register(r,"getUniqueDeveloperValues","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailSidebar/Developers/get-unique-developer-values.ts"),l.register(i,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailSidebar/Developers/get-unique-developer-values.ts")),(d="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&d(e)},"./src/pages/Version/DetailSidebar/Developers/index.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>o.default});var o=a("./src/pages/Version/DetailSidebar/Developers/Developers.tsx");"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature},"./src/pages/Version/DetailSidebar/Dist/Dist.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>I});var o,n=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),r=a("../../../node_modules/.pnpm/react-i18next@11.12.0_i18next@20.6.1+react@17.0.2/node_modules/react-i18next/dist/es/useTranslation.js"),i=a("./src/components/List.tsx"),s=a("./src/utils/file-size.ts"),l=a("./src/utils/package.ts"),d=a("./src/pages/Version/context.ts"),c=a("./src/pages/Version/DetailSidebar/Dist/styles.ts");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);var u="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default.signature:function(e){return e},g=function(e){var t=e.name,a=e.children;return a?n.createElement(c.DistChips,{label:n.createElement(n.Fragment,null,n.createElement("b",null,t),": ",a)}):null},p=function(){var e=(0,n.useContext)(d.DetailContext).packageMeta,t=(0,r.useTranslation)().t;if(!e)return null;var a=e&&e.latest,o=a.dist,u=a.license;return n.createElement(i.default,{subheader:n.createElement(c.StyledText,{variant:"subtitle1"},t("sidebar.distribution.title"))},n.createElement(c.DistListItem,{button:!0},n.createElement(g,{name:t("sidebar.distribution.file-count")},o.fileCount),n.createElement(g,{name:t("sidebar.distribution.size")},o.unpackedSize&&(0,s.default)(o.unpackedSize)),n.createElement(g,{name:t("sidebar.distribution.license")},(0,l.formatLicense)(u))))};u(p,"useContext{{ packageMeta }}\nuseTranslation{{ t }}",(function(){return[r.useTranslation]}));var m=p;const I=m;var C,A;(C="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(C.register(g,"DistChip","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailSidebar/Dist/Dist.tsx"),C.register(p,"Dist","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailSidebar/Dist/Dist.tsx"),C.register(m,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailSidebar/Dist/Dist.tsx")),(A="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&A(e)},"./src/pages/Version/DetailSidebar/Dist/index.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>o.default});var o=a("./src/pages/Version/DetailSidebar/Dist/Dist.tsx");"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature},"./src/pages/Version/DetailSidebar/Dist/styles.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{StyledText:()=>u,DistListItem:()=>g,DistChips:()=>p,DownloadButton:()=>m});var o,n=a("../../../node_modules/.pnpm/@emotion+styled-base@10.0.31_33bb31e1d857102242df3642b32eda18/node_modules/@emotion/styled-base/dist/styled-base.browser.esm.js"),r=a("./src/components/Chip.tsx"),i=a("./src/components/FloatingActionButton.tsx"),s=a("./src/components/ListItem.tsx"),l=a("./src/components/Text/index.ts");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var d,c,u=(0,n.default)(l.default,{target:"emhg1mg0",label:"StyledText"})((function(e){return{fontWeight:e.theme&&e.theme.fontWeight.bold,textTransform:"capitalize"}}),""),g=(0,n.default)(s.default,{target:"emhg1mg1",label:"DistListItem"})({name:"1huthg8",styles:"padding-left:0;padding-right:0;"}),p=(0,n.default)(r.default,{target:"emhg1mg2",label:"DistChips"})({name:"42zb18",styles:"margin-right:5px;text-transform:capitalize;"}),m=(0,n.default)(i.default,{target:"emhg1mg3",label:"DownloadButton"})((function(e){return{backgroundColor:e.theme&&e.theme.palette.primary.main,color:e.theme&&e.theme.palette.white}}),"");(d="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(d.register(u,"StyledText","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailSidebar/Dist/styles.ts"),d.register(g,"DistListItem","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailSidebar/Dist/styles.ts"),d.register(p,"DistChips","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailSidebar/Dist/styles.ts"),d.register(m,"DownloadButton","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailSidebar/Dist/styles.ts")),(c="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&c(e)},"./src/pages/Version/DetailSidebar/Engines/Engines.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>A});var o,n=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),r=a("../../../node_modules/.pnpm/react-i18next@11.12.0_i18next@20.6.1+react@17.0.2/node_modules/react-i18next/dist/es/useTranslation.js"),i=a("./src/components/Avatar.tsx"),s=a("./src/components/Grid.tsx"),l=a("./src/components/List.tsx"),d=a("./src/components/ListItemText.tsx"),c=a("./src/pages/Version/context.ts"),u=a("./src/pages/Version/DetailSidebar/Install/img/npm.svg"),g=a("./src/pages/Version/DetailSidebar/Engines/img/node.png"),p=a("./src/pages/Version/DetailSidebar/Engines/styles.ts");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);var m="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default.signature:function(e){return e},I=function(){var e,t=(0,n.useContext)(c.DetailContext).packageMeta,a=(0,r.useTranslation)().t,o=null==t||null===(e=t.latest)||void 0===e?void 0:e.engines;return o&&(o.node||o.npm)?n.createElement(s.default,{container:!0},o.node&&n.createElement(s.default,{item:!0,xs:6},n.createElement(l.default,{subheader:n.createElement(p.StyledText,{variant:"subtitle1"},a("sidebar.engines.node-js"))},n.createElement(p.EngineListItem,{button:!0},n.createElement(i.default,{src:g}),n.createElement(d.default,{primary:o.node})))),o.npm&&n.createElement(s.default,{item:!0,xs:6},n.createElement(l.default,{subheader:n.createElement(p.StyledText,{variant:"subtitle1"},a("sidebar.engines.npm-version"))},n.createElement(p.EngineListItem,{button:!0},n.createElement(i.default,{src:u}),n.createElement(d.default,{primary:o.npm}))))):null};m(I,"useContext{{ packageMeta }}\nuseTranslation{{ t }}",(function(){return[r.useTranslation]}));var C=I;const A=C;var f,h;(f="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(f.register(I,"Engine","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailSidebar/Engines/Engines.tsx"),f.register(C,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailSidebar/Engines/Engines.tsx")),(h="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&h(e)},"./src/pages/Version/DetailSidebar/Engines/index.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>o.default});var o=a("./src/pages/Version/DetailSidebar/Engines/Engines.tsx");"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature},"./src/pages/Version/DetailSidebar/Engines/styles.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{StyledText:()=>d,EngineListItem:()=>c});var o,n=a("../../../node_modules/.pnpm/@emotion+styled-base@10.0.31_33bb31e1d857102242df3642b32eda18/node_modules/@emotion/styled-base/dist/styled-base.browser.esm.js"),r=a("./src/components/ListItem.tsx"),i=a("./src/components/Text/index.ts");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var s,l,d=(0,n.default)(i.default,{target:"e1exuqcw0",label:"StyledText"})((function(e){var t;return{fontWeight:null===(t=e.theme)||void 0===t?void 0:t.fontWeight.bold,textTransform:"capitalize"}}),""),c=(0,n.default)(r.default,{target:"e1exuqcw1",label:"EngineListItem"})({name:"131yq1t",styles:"padding-left:0;"});(s="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(s.register(d,"StyledText","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailSidebar/Engines/styles.ts"),s.register(c,"EngineListItem","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailSidebar/Engines/styles.ts")),(l="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&l(e)},"./src/pages/Version/DetailSidebar/Install/Install.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>C});var o,n=a("../../../node_modules/.pnpm/@emotion+styled-base@10.0.31_33bb31e1d857102242df3642b32eda18/node_modules/@emotion/styled-base/dist/styled-base.browser.esm.js"),r=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),i=a("../../../node_modules/.pnpm/react-i18next@11.12.0_i18next@20.6.1+react@17.0.2/node_modules/react-i18next/dist/es/useTranslation.js"),s=a("./src/components/List.tsx"),l=a("./src/components/Text/index.ts"),d=a("./src/providers/config/index.ts"),c=a("./src/pages/Version/index.ts"),u=a("./src/pages/Version/DetailSidebar/Install/InstallListItem.tsx");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);var g="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default.signature:function(e){return e},p=(0,n.default)(l.default,{target:"exr63xd0",label:"StyledText"})((function(e){var t;return{fontWeight:null===(t=e.theme)||void 0===t?void 0:t.fontWeight.bold,textTransform:"capitalize"}}),""),m=function(){var e,t,a,o,n=(0,i.useTranslation)().t,l=(0,d.useConfig)().configOptions,g=(0,r.useContext)(c.DetailContext),m=g.packageMeta,I=g.packageName;if(!m||!I)return null;var C=null==l||null===(e=l.pkgManagers)||void 0===e?void 0:e.includes("npm"),A=null==l||null===(t=l.pkgManagers)||void 0===t?void 0:t.includes("yarn"),f=null===(a=null==l||null===(o=l.pkgManagers)||void 0===o?void 0:o.includes("pnpm"))||void 0===a||a;return C|f|A?r.createElement(s.default,{"data-testid":"installList",subheader:r.createElement(p,{variant:"subtitle1"},n("sidebar.installation.title"))},C&&r.createElement(u.default,{dependencyManager:u.DependencyManager.NPM,packageName:I}),A&&r.createElement(u.default,{dependencyManager:u.DependencyManager.YARN,packageName:I}),f&&r.createElement(u.default,{dependencyManager:u.DependencyManager.PNPM,packageName:I})):null};g(m,"useTranslation{{ t }}\nuseConfig{{ configOptions }}\nuseContext{detailContext}",(function(){return[i.useTranslation,d.useConfig]}));var I=m;const C=I;var A,f;(A="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(A.register(p,"StyledText","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailSidebar/Install/Install.tsx"),A.register(m,"Install","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailSidebar/Install/Install.tsx"),A.register(I,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailSidebar/Install/Install.tsx")),(f="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&f(e)},"./src/pages/Version/DetailSidebar/Install/InstallListItem.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{DependencyManager:()=>m,default:()=>v});var o,n=a("../../../node_modules/.pnpm/@emotion+styled-base@10.0.31_33bb31e1d857102242df3642b32eda18/node_modules/@emotion/styled-base/dist/styled-base.browser.esm.js"),r=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),i=a("../../../node_modules/.pnpm/react-i18next@11.12.0_i18next@20.6.1+react@17.0.2/node_modules/react-i18next/dist/es/useTranslation.js"),s=a("./src/components/Avatar.tsx"),l=a("./src/components/CopyToClipBoard.tsx"),d=a("./src/components/ListItem.tsx"),c=a("./src/components/ListItemText.tsx"),u=a("./src/pages/Version/DetailSidebar/Install/img/npm.svg"),g=a("./src/pages/Version/DetailSidebar/Install/img/pnpm.svg"),p=a("./src/pages/Version/DetailSidebar/Install/img/yarn.svg");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);var m,I="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default.signature:function(e){return e},C=(0,n.default)(d.default,{target:"e1sfautt0",label:"InstallItem"})({name:"zw46c6",styles:"padding:0;:hover{background-color:transparent;}"}),A=(0,n.default)(c.default,{target:"e1sfautt1",label:"InstallListItemText"})({name:"fipixf",styles:"padding:0 10px;margin:0;"}),f=(0,n.default)(s.default,{target:"e1sfautt2",label:"PackageMangerAvatar"})({name:"17x0n9v",styles:"border-radius:0px;padding:0;img{background-color:transparent;}"});!function(e){e.NPM="npm",e.YARN="yarn",e.PNPM="pnpm"}(m||(m={}));var h=function(e){var t=e.packageName,a=e.dependencyManager,o=(0,i.useTranslation)().t;switch(a){case m.NPM:return r.createElement(C,{button:!0,"data-testid":"installListItem-npm"},r.createElement(f,{alt:"npm",src:u}),r.createElement(A,{primary:r.createElement(l.default,{text:o("sidebar.installation.install-using-npm-command",{packageName:t})}),secondary:o("sidebar.installation.install-using-npm")}));case m.YARN:return r.createElement(C,{button:!0,"data-testid":"installListItem-yarn"},r.createElement(f,{alt:"yarn",src:p}),r.createElement(A,{primary:r.createElement(l.default,{text:o("sidebar.installation.install-using-yarn-command",{packageName:t})}),secondary:o("sidebar.installation.install-using-yarn")}));case m.PNPM:return r.createElement(C,{button:!0,"data-testid":"installListItem-pnpm"},r.createElement(f,{alt:"pnpm",src:g}),r.createElement(A,{primary:r.createElement(l.default,{text:o("sidebar.installation.install-using-pnpm-command",{packageName:t})}),secondary:o("sidebar.installation.install-using-pnpm")}));default:return null}};I(h,"useTranslation{{ t }}",(function(){return[i.useTranslation]}));var b=h;const v=b;var y,k;(y="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(y.register(C,"InstallItem","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailSidebar/Install/InstallListItem.tsx"),y.register(A,"InstallListItemText","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailSidebar/Install/InstallListItem.tsx"),y.register(f,"PackageMangerAvatar","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailSidebar/Install/InstallListItem.tsx"),y.register(h,"InstallListItem","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailSidebar/Install/InstallListItem.tsx"),y.register(b,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailSidebar/Install/InstallListItem.tsx")),(k="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&k(e)},"./src/pages/Version/DetailSidebar/Install/index.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>o.default});var o=a("./src/pages/Version/DetailSidebar/Install/Install.tsx");"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature},"./src/pages/Version/DetailSidebar/Repository/Repository.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>x});var o,n=a("../../../node_modules/.pnpm/@emotion+styled-base@10.0.31_33bb31e1d857102242df3642b32eda18/node_modules/@emotion/styled-base/dist/styled-base.browser.esm.js"),r=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),i=a("../../../node_modules/.pnpm/react-i18next@11.12.0_i18next@20.6.1+react@17.0.2/node_modules/react-i18next/dist/es/useTranslation.js"),s=a("./src/components/Avatar.tsx"),l=a("./src/components/CopyToClipBoard.tsx"),d=a("./src/components/Link.tsx"),c=a("./src/components/List.tsx"),u=a("./src/components/ListItem.tsx"),g=a("./src/components/ListItemText.tsx"),p=a("./src/components/Text/index.ts"),m=a("./src/utils/url.ts"),I=a("./src/pages/Version/context.ts"),C=a("./src/pages/Version/DetailSidebar/Repository/img/git.png");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);var A="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default.signature:function(e){return e},f=(0,n.default)(p.default,{target:"e7tnhe50",label:"StyledText"})((function(e){var t;return{fontWeight:null===(t=e.theme)||void 0===t?void 0:t.fontWeight.bold,textTransform:"capitalize"}}),""),h=(0,n.default)(d.default,{target:"e7tnhe51",label:"GithubLink"})((function(e){var t=e.theme;return{color:"light"===(null==t?void 0:t.palette.type)?null==t?void 0:t.palette.primary.main:null==t?void 0:t.palette.white,":hover":{color:null==t?void 0:t.palette.dodgerBlue}}}),""),b=(0,n.default)(u.default,{target:"e7tnhe52",label:"RepositoryListItem"})({name:"zw46c6",styles:"padding:0;:hover{background-color:transparent;}"}),v=(0,n.default)(g.default,{target:"e7tnhe53",label:"RepositoryListItemText"})({name:"fipixf",styles:"padding:0 10px;margin:0;"}),y=(0,n.default)(s.default,{target:"e7tnhe54",label:"RepositoryAvatar"})({name:"17x0n9v",styles:"border-radius:0px;padding:0;img{background-color:transparent;}"}),k=function(){var e,t,a=r.useContext(I.DetailContext),o=(0,i.useTranslation)().t,n=a.packageMeta;if(null==n||null===(e=n.latest)||void 0===e||null===(t=e.repository)||void 0===t||!t.url||!(0,m.isURL)(n.latest.repository.url))return null;var s=n.latest.repository.url,d=s.includes("git+")?s.split("git+")[1]:s;return r.createElement(c.default,{dense:!0,subheader:r.createElement(f,{variant:"subtitle1"},o("sidebar.repository.title"))},r.createElement(b,{button:!0},r.createElement(y,{src:C}),r.createElement(v,{primary:r.createElement(l.default,{text:d},r.createElement(h,{external:!0,to:d},d))})))};A(k,"useContext{detailContext}\nuseTranslation{{ t }}",(function(){return[i.useTranslation]}));var L=k;const x=L;var w,H;(w="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(w.register(f,"StyledText","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailSidebar/Repository/Repository.tsx"),w.register(h,"GithubLink","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailSidebar/Repository/Repository.tsx"),w.register(b,"RepositoryListItem","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailSidebar/Repository/Repository.tsx"),w.register(v,"RepositoryListItemText","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailSidebar/Repository/Repository.tsx"),w.register(y,"RepositoryAvatar","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailSidebar/Repository/Repository.tsx"),w.register(k,"Repository","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailSidebar/Repository/Repository.tsx"),w.register(L,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/DetailSidebar/Repository/Repository.tsx")),(H="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&H(e)},"./src/pages/Version/DetailSidebar/Repository/index.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>o.default});var o=a("./src/pages/Version/DetailSidebar/Repository/Repository.tsx");"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature},"./src/pages/Version/DetailSidebar/index.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>o.default});var o=a("./src/pages/Version/DetailSidebar/DetailSidebar.tsx");"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature},"./src/pages/Version/Version.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>m});var o,n=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),r=a("../../../node_modules/.pnpm/react-redux@7.2.1_e084f946920a04d85390aa355643c4d5/node_modules/react-redux/es/index.js"),i=a("../../../node_modules/.pnpm/react-router@5.2.1_react@17.0.2/node_modules/react-router/esm/react-router.js"),s=a("./src/components/Loading/index.ts"),l=a("./src/components/NotFound/index.ts"),d=a("./src/pages/Version/get-route-package-name.ts"),c=a("./src/pages/Version/VersionLayout.tsx");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);var u="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default.signature:function(e){return e},g=function(){var e=(0,i.useParams)(),t=e.version,a=e.package,o=e.scope,u=(0,r.useSelector)((function(e){return e.manifest})),g=(0,r.useSelector)((function(e){var t;return null==e||null===(t=e.loading)||void 0===t?void 0:t.models.manifest})),p=(0,r.useDispatch)();return(0,n.useEffect)((function(){var e=(0,d.default)(a,o);p.manifest.getManifest({packageName:e,packageVersion:t})}),[p,a,o,t]),g?n.createElement(s.default,null):u.hasNotBeenFound?n.createElement(l.default,null):n.createElement(c.default,null)};u(g,"useParams{{ version: packageVersion, package: pkgName, scope }}\nuseSelector{manifestStore}\nuseSelector{isLoading}\nuseDispatch{dispatch}\nuseEffect{}",(function(){return[i.useParams,r.useSelector,r.useSelector,r.useDispatch]}));var p=g;const m=p;var I,C;(I="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(I.register(g,"Version","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/Version.tsx"),I.register(p,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/Version.tsx")),(C="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&C(e)},"./src/pages/Version/VersionContextProvider.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>g});var o,n=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),r=a("../../../node_modules/.pnpm/react-redux@7.2.1_e084f946920a04d85390aa355643c4d5/node_modules/react-redux/es/index.js"),i=a("../../../node_modules/.pnpm/react-router@5.2.1_react@17.0.2/node_modules/react-router/esm/react-router.js"),s=a("./src/pages/Version/context.ts"),l=a("./src/pages/Version/get-route-package-name.ts");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);var d="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default.signature:function(e){return e},c=function(e){var t=e.children,a=(0,i.useParams)(),o=a.version,d=a.package,c=a.scope,u=(0,r.useSelector)((function(e){return e.manifest})),g=u.manifest,p=u.readme,m=u.packageName,I=u.hasNotBeenFound,C=(0,r.useSelector)((function(e){var t;return null==e||null===(t=e.loading)||void 0===t?void 0:t.models.manifest})),A=(0,r.useDispatch)();return(0,n.useEffect)((function(){var e=(0,l.default)(d,c);A.manifest.getManifest({packageName:e,packageVersion:o})}),[A,o,d,c]),n.createElement(s.DetailContext.Provider,{value:{packageMeta:g,packageVersion:o,readMe:p,packageName:m,isLoading:C,hasNotBeenFound:I}},t)};d(c,"useParams{{ version: packageVersion, package: pkgName, scope }}\nuseSelector{{ manifest, readme, packageName, hasNotBeenFound }}\nuseSelector{isLoading}\nuseDispatch{dispatch}\nuseEffect{}",(function(){return[i.useParams,r.useSelector,r.useSelector,r.useDispatch]}));var u=c;const g=u;var p,m;(p="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(p.register(c,"VersionContextProvider","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/VersionContextProvider.tsx"),p.register(u,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/VersionContextProvider.tsx")),(m="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&m(e)},"./src/pages/Version/VersionLayout.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>c});var o,n=a("../../../node_modules/.pnpm/@material-ui+core@4.11.4_9c6a8df88c2691f81f37725d5b4de033/node_modules/@material-ui/core/esm/Grid/Grid.js"),r=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),i=a("./src/pages/Version/DetailContainer/index.ts"),s=a("./src/pages/Version/DetailSidebar/index.ts");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var l=function(){return r.createElement(n.default,{className:"container content",container:!0,"data-testid":"version-layout",spacing:0},r.createElement(n.default,{item:!0,md:8,xs:12},r.createElement(i.default,null)),r.createElement(n.default,{item:!0,md:4,xs:12},r.createElement(s.default,null)))},d=l;const c=d;var u,g;(u="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(u.register(l,"VersionLayout","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/VersionLayout.tsx"),u.register(d,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/VersionLayout.tsx")),(g="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&g(e)},"./src/pages/Version/context.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{DetailContext:()=>s,DetailContextProvider:()=>l,DetailContextConsumer:()=>d});var o,n=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var r,i,s=(0,n.createContext)({}),l=s.Provider,d=s.Consumer;(r="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(r.register(s,"DetailContext","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/context.ts"),r.register(l,"DetailContextProvider","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/context.ts"),r.register(d,"DetailContextConsumer","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/context.ts")),(i="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&i(e)},"./src/pages/Version/get-route-package-name.ts":(e,t,a)=>{"use strict";var o;a.r(t),a.d(t,{default:()=>i}),e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;function n(e,t){return t?"@".concat(t,"/").concat(e):e}var r=n;const i=r;var s,l;(s="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(s.register(n,"getRouterPackageName","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/get-route-package-name.ts"),s.register(r,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/Version/get-route-package-name.ts")),(l="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&l(e)},"./src/pages/Version/index.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{DetailContext:()=>o.DetailContext,DetailContextConsumer:()=>o.DetailContextConsumer,DetailContextProvider:()=>o.DetailContextProvider,VersionPageConsumerProps:()=>n.VersionPageConsumerProps,DetailContextProps:()=>n.DetailContextProps,default:()=>r.default});var o=a("./src/pages/Version/context.ts"),n=a("./src/pages/Version/version-config.ts"),r=a("./src/pages/Version/Version.tsx");"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature},"./src/pages/Version/version-config.ts":(e,t,a)=>{"use strict";a.r(t);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature},"./src/pages/home/Home.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>u});var o,n=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),r=a("../../../node_modules/.pnpm/react-redux@7.2.1_e084f946920a04d85390aa355643c4d5/node_modules/react-redux/es/index.js"),i=a("./src/components/Loading/index.ts"),s=a("./src/pages/home/PackageList/index.ts");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);var l="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default.signature:function(e){return e},d=function(){var e=(0,r.useSelector)((function(e){return e.packages.response})),t=(0,r.useSelector)((function(e){var t;return null==e||null===(t=e.loading)||void 0===t?void 0:t.models.packages})),a=(0,r.useDispatch)();return(0,n.useEffect)((function(){a.packages.getPackages()}),[a]),n.createElement("div",{className:"container content","data-testid":"home-page-container"},t?n.createElement(i.default,null):n.createElement(s.PackageList,{packages:e}))};l(d,"useSelector{packages}\nuseSelector{isLoading}\nuseDispatch{dispatch}\nuseEffect{}",(function(){return[r.useSelector,r.useSelector,r.useDispatch]}));var c=d;const u=c;var g,p;(g="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(g.register(d,"Home","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/home/Home.tsx"),g.register(c,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/home/Home.tsx")),(p="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&p(e)},"./src/pages/home/PackageList/Help/Help.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>f});var o,n=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),r=a("../../../node_modules/.pnpm/react-i18next@11.12.0_i18next@20.6.1+react@17.0.2/node_modules/react-i18next/dist/es/useTranslation.js"),i=a("./src/components/Button.tsx"),s=a("./src/components/CardActions.tsx"),l=a("./src/components/CardContent.tsx"),d=a("./src/components/CopyToClipBoard.tsx"),c=a("./src/components/Heading.tsx"),u=a("./src/components/Text/index.ts"),g=a("./src/providers/config/index.ts"),p=a("./src/pages/home/PackageList/Help/styles.ts");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);var m="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default.signature:function(e){return e};function I(e,t){return n.createElement(n.Fragment,null,n.createElement(u.default,{variant:"body1"},e),n.createElement(d.default,{text:t}))}var C=function(){var e=(0,g.useConfig)().configOptions.base,t=(0,r.useTranslation)().t;return n.createElement(p.CardStyled,{id:"help-card"},n.createElement(l.default,null,n.createElement(c.default,{gutterBottom:!0,id:"help-card__title",variant:"h5"},t("help.title")),n.createElement(p.HelpTitle,{color:"textSecondary",gutterBottom:!0},t("help.sub-title")),I(t("help.first-step"),t("help.first-step-command-line",{registryUrl:e})),I(t("help.second-step"),t("help.second-step-command-line",{registryUrl:e})),n.createElement(u.default,{variant:"body2"},t("help.third-step"))),n.createElement(s.default,null,n.createElement(i.default,{color:"primary",href:"https://verdaccio.org/docs/en/installation",size:"small"},t("button.learn-more"))))};m(C,"useConfig{{ configOptions }}\nuseTranslation{{ t }}",(function(){return[g.useConfig,r.useTranslation]}));var A=C;const f=A;var h,b;(h="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(h.register(I,"renderHeadingClipboardSegments","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/home/PackageList/Help/Help.tsx"),h.register(C,"Help","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/home/PackageList/Help/Help.tsx"),h.register(A,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/home/PackageList/Help/Help.tsx")),(b="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&b(e)},"./src/pages/home/PackageList/Help/index.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>o.default});var o=a("./src/pages/home/PackageList/Help/Help.tsx");"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature},"./src/pages/home/PackageList/Help/styles.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{CardStyled:()=>d,HelpTitle:()=>c});var o,n=a("../../../node_modules/.pnpm/@emotion+styled-base@10.0.31_33bb31e1d857102242df3642b32eda18/node_modules/@emotion/styled-base/dist/styled-base.browser.esm.js"),r=a("./src/components/Card.tsx"),i=a("./src/components/Heading.tsx");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var s,l,d=(0,n.default)(r.default,{target:"e1gdaual0",label:"CardStyled"})({name:"1rkew7x",styles:"width:600px;margin:auto;"}),c=(0,n.default)(i.default,{target:"e1gdaual1",label:"HelpTitle"})({name:"uewl2b",styles:"margin-bottom:20px;"});(s="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(s.register(d,"CardStyled","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/home/PackageList/Help/styles.ts"),s.register(c,"HelpTitle","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/home/PackageList/Help/styles.ts")),(l="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&l(e)},"./src/pages/home/PackageList/Package/Package.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>G});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js"),r=a("../../../node_modules/.pnpm/@emotion+styled-base@10.0.31_33bb31e1d857102242df3642b32eda18/node_modules/@emotion/styled-base/dist/styled-base.browser.esm.js"),i=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/regenerator/index.js"),s=a.n(i),l=a("../../../node_modules/.pnpm/@emotion+core@10.1.1_react@17.0.2/node_modules/@emotion/core/dist/core.browser.esm.js"),d=a("../../../node_modules/.pnpm/@material-ui+icons@4.11.2_842d6fd0a208aabbcab28b4283e0161f/node_modules/@material-ui/icons/BugReport.js"),c=a("../../../node_modules/.pnpm/@material-ui+icons@4.11.2_842d6fd0a208aabbcab28b4283e0161f/node_modules/@material-ui/icons/CloudDownload.js"),u=a("../../../node_modules/.pnpm/@material-ui+icons@4.11.2_842d6fd0a208aabbcab28b4283e0161f/node_modules/@material-ui/icons/Home.js"),g=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),p=a("../../../node_modules/.pnpm/react-i18next@11.12.0_i18next@20.6.1+react@17.0.2/node_modules/react-i18next/dist/es/useTranslation.js"),m=a("../../../node_modules/.pnpm/react-redux@7.2.1_e084f946920a04d85390aa355643c4d5/node_modules/react-redux/es/index.js"),I=a("./src/components/Grid.tsx"),C=a("./src/components/Icons/index.ts"),A=a("./src/components/Link.tsx"),f=a("./src/components/ListItem.tsx"),h=a("./src/components/Tooltip.tsx"),b=a("./src/utils/file-size.ts"),v=a("./src/utils/package.ts"),y=a("./src/utils/url.ts"),k=a("./src/pages/home/PackageList/Package/styles.ts"),L=a("./src/pages/home/PackageList/Package/Tag/index.ts");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);var x="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default.signature:function(e){return e},w=function(e){var t,a,o=e.author,r=o.name,i=o.avatar,l=e.bugs,C=e.description,x=e.dist,w=e.homepage,H=e.keywords,G=void 0===H?[]:H,j=e.license,D=e.name,M=e.time,E=e.version,N=(0,m.useSelector)((function(e){return e.configuration})),R=(0,m.useDispatch)(),O=(0,p.useTranslation)().t,V=(0,g.useCallback)(function(){var e=(0,n.default)(s().mark((function e(t){var a;return s().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:a=t.replace("https://registry.npmjs.org/",N.base),R.download.getTarball({link:a});case 2:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),[R,N]),z=function(){return g.createElement(I.default,{container:!0,item:!0,xs:12},g.createElement(I.default,{item:!0,xs:!0},g.createElement(k.WrapperLink,{to:"/-/web/detail/".concat(D)},g.createElement(k.PackageTitle,{className:"package-title"},D))),g.createElement(k.GridRightAligned,{alignItems:"center",container:!0,item:!0,justify:"flex-end",xs:!0},w&&(0,y.isURL)(w)&&g.createElement(A.default,{external:!0,to:w},g.createElement(h.default,{"aria-label":O("package.homepage"),title:O("package.visit-home-page")},g.createElement(k.IconButton,{"aria-label":O("package.homepage")},g.createElement(u.default,null)))),(null==l?void 0:l.url)&&(0,y.isURL)(l.url)&&g.createElement(A.default,{external:!0,to:l.url},g.createElement(h.default,{"aria-label":O("package.bugs"),title:O("package.open-an-issue")},g.createElement(k.IconButton,{"aria-label":O("package.bugs")},g.createElement(d.default,null)))),(null==x?void 0:x.tarball)&&(0,y.isURL)(x.tarball)&&g.createElement(A.default,{external:!0,onClick:function(){V(x.tarball)},to:"#"},g.createElement(h.default,{"aria-label":O("package.download",{what:O("package.the-tar-file")}),title:O("package.tarball")},g.createElement(k.IconButton,{"aria-label":O("package.download")},g.createElement(c.default,null))))))};return g.createElement(k.Wrapper,{className:"package","data-testid":"package-item-list"},g.createElement(f.default,{alignItems:"flex-start"},g.createElement(k.PackageListItemText,{className:"package-link",component:"div",primary:z(),secondary:(a=G.sort().map((function(e,t){return g.createElement(L.default,{key:t},e)})),g.createElement(g.Fragment,null,g.createElement(k.Description,null,C),a.length>0&&g.createElement(k.TagContainer,null,a)))})),g.createElement(f.default,{alignItems:"flex-start"},(t=(0,v.getAuthorName)(r),g.createElement(k.Author,null,g.createElement(k.Avatar,{alt:t,src:i}),g.createElement(k.Details,null,g.createElement(k.Text,{text:t})))),E&&g.createElement(k.OverviewItem,null,g.createElement(T,null),O("package.version",{version:E})),M&&g.createElement(k.OverviewItem,null,g.createElement(S,null),g.createElement(k.Published,null,O("package.published-on",{time:(0,v.formatDate)(M)})),(0,v.formatDateDistance)(M)),(null==x?void 0:x.unpackedSize)&&g.createElement(k.OverviewItem,null,g.createElement(P,null),(0,b.default)(x.unpackedSize)),j&&g.createElement(k.OverviewItem,null,g.createElement(_,null),j)))};x(w,"useSelector{config}\nuseDispatch{dispatch}\nuseTranslation{{ t }}\nuseCallback{handleDownload}",(function(){return[m.useSelector,m.useDispatch,p.useTranslation]}));var H=w;const G=H;var j,D,M=function(e){var t=e.theme;return(0,l.css)("margin:2px 10px 0 0;fill:","light"===(null==t?void 0:t.palette.type)?null==t?void 0:t.palette.greyLight2:null==t?void 0:t.palette.white,";")},T=(0,r.default)(C.Version,{target:"e1mn8d1q0",label:"StyledVersion"})(M,";"),P=(0,r.default)(C.FileBinary,{target:"e1mn8d1q1",label:"StyledFileBinary"})(M,";"),_=(0,r.default)(C.Law,{target:"e1mn8d1q2",label:"StyledLaw"})(M,";"),S=(0,r.default)(C.Time,{target:"e1mn8d1q3",label:"StyledTime"})(M,";");(j="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(j.register(w,"Package","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/home/PackageList/Package/Package.tsx"),j.register(M,"iconStyle","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/home/PackageList/Package/Package.tsx"),j.register(T,"StyledVersion","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/home/PackageList/Package/Package.tsx"),j.register(P,"StyledFileBinary","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/home/PackageList/Package/Package.tsx"),j.register(_,"StyledLaw","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/home/PackageList/Package/Package.tsx"),j.register(S,"StyledTime","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/home/PackageList/Package/Package.tsx"),j.register(H,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/home/PackageList/Package/Package.tsx")),(D="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&D(e)},"./src/pages/home/PackageList/Package/Tag/Tag.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>l});var o,n=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),r=a("./src/pages/home/PackageList/Package/Tag/styles.ts");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var i=function(e){var t=e.children;return n.createElement(r.Wrapper,null,t)},s=i;const l=s;var d,c;(d="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(d.register(i,"Tag","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/home/PackageList/Package/Tag/Tag.tsx"),d.register(s,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/home/PackageList/Package/Tag/Tag.tsx")),(c="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&c(e)},"./src/pages/home/PackageList/Package/Tag/index.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>o.default});var o=a("./src/pages/home/PackageList/Package/Tag/Tag.tsx");"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature},"./src/pages/home/PackageList/Package/Tag/styles.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{Wrapper:()=>s});var o,n=a("../../../node_modules/.pnpm/@emotion+styled-base@10.0.31_33bb31e1d857102242df3642b32eda18/node_modules/@emotion/styled-base/dist/styled-base.browser.esm.js");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var r,i,s=(0,n.default)("span",{target:"e1jm3tg90",label:"Wrapper"})({name:"7c7ib1",styles:"vertical-align:middle;line-height:22px;border-radius:2px;color:#485a3e;background-color:#f3f4f2;padding:0.22rem 0.4rem;margin:8px 8px 0 0;"});(r="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&r.register(s,"Wrapper","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/home/PackageList/Package/Tag/styles.ts"),(i="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&i(e)},"./src/pages/home/PackageList/Package/index.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>o.default,PackageInterface:()=>o.PackageInterface});var o=a("./src/pages/home/PackageList/Package/Package.tsx");"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature},"./src/pages/home/PackageList/Package/styles.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{OverviewItem:()=>C,Published:()=>A,Text:()=>f,Details:()=>h,Author:()=>b,Avatar:()=>v,WrapperLink:()=>y,PackageTitle:()=>k,GridRightAligned:()=>L,Wrapper:()=>x,IconButton:()=>w,TagContainer:()=>H,PackageListItemText:()=>G,Description:()=>j});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/defineProperty.js"),r=a("../../../node_modules/.pnpm/@emotion+styled-base@10.0.31_33bb31e1d857102242df3642b32eda18/node_modules/@emotion/styled-base/dist/styled-base.browser.esm.js"),i=a("../../../node_modules/.pnpm/react-router-dom@5.3.0_react@17.0.2/node_modules/react-router-dom/esm/react-router-dom.js"),s=a("./src/components/Avatar.tsx"),l=a("./src/components/Grid.tsx"),d=a("./src/components/IconButton.tsx"),c=a("./src/components/Label/index.ts"),u=a("./src/components/List.tsx"),g=a("./src/components/ListItemText.tsx"),p=a("./src/components/Text/index.ts");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var m,I,C=(0,r.default)("span",{target:"enspaod0",label:"OverviewItem"})((function(e){var t,a=e.theme;return t={display:"flex",alignItems:"center",margin:"0 0 0 16px",color:"light"===(null==a?void 0:a.palette.type)?null==a?void 0:a.palette.greyLight2:null==a?void 0:a.palette.white,fontSize:12},(0,n.default)(t,"@media (max-width: ".concat(null==a?void 0:a.breakPoints.medium,"px)"),{":nth-of-type(3)":{display:"none"}}),(0,n.default)(t,"@media (max-width: ".concat(null==a?void 0:a.breakPoints.small,"px)"),{":nth-of-type(4)":{display:"none"}}),t}),""),A=(0,r.default)("span",{target:"enspaod1",label:"Published"})((function(e){var t=e.theme;return{color:"light"===(null==t?void 0:t.palette.type)?null==t?void 0:t.palette.greyLight2:null==t?void 0:t.palette.white,margin:"0 5px 0 0"}}),""),f=(0,r.default)(c.default,{target:"enspaod2",label:"Text"})((function(e){var t=e.theme;return{fontSize:"12px",fontWeight:null==t?void 0:t.fontWeight.semiBold,color:"light"===(null==t?void 0:t.palette.type)?null==t?void 0:t.palette.greyLight2:null==t?void 0:t.palette.white}}),""),h=(0,r.default)("span",{target:"enspaod3",label:"Details"})({name:"1w4wxz3",styles:"margin-left:5px;line-height:1.5;display:flex;flex-direction:column;"}),b=(0,r.default)("div",{target:"enspaod4",label:"Author"})({name:"70qvj9",styles:"display:flex;align-items:center;"}),v=(0,r.default)(s.default,{target:"enspaod5",label:"Avatar"})({name:"1t9pz9x",styles:"width:20px;height:20px;"}),y=(0,r.default)(i.Link,{target:"enspaod6",label:"WrapperLink"})({name:"ytumd6",styles:"text-decoration:none;"}),k=(0,r.default)("span",{target:"enspaod7",label:"PackageTitle"})((function(e){var t=e.theme;return(0,n.default)({fontWeight:null==t?void 0:t.fontWeight.bold,fontSize:20,display:"block",marginBottom:12,color:"dark"==(null==t?void 0:t.palette.type)?null==t?void 0:t.palette.dodgerBlue:null==t?void 0:t.palette.eclipse,cursor:"pointer"},"@media (max-width: ".concat(null==t?void 0:t.breakPoints.small,"px)"),{fontSize:14,marginBottom:8})}),""),L=(0,r.default)(l.default,{target:"enspaod8",label:"GridRightAligned"})({name:"s2uf1z",styles:"text-align:right;"}),x=(0,r.default)(u.default,{target:"enspaod9",label:"Wrapper"})((function(e){var t,a,o,n=e.theme;return{":hover":{backgroundColor:"dark"==(null==n||null===(t=n.palette)||void 0===t?void 0:t.type)?null==n||null===(a=n.palette)||void 0===a?void 0:a.secondary.main:null==n||null===(o=n.palette)||void 0===o?void 0:o.greyLight3}}}),""),w=(0,r.default)(d.default,{target:"enspaod10",label:"IconButton"})({name:"8a08e6",styles:"padding:6px;svg{font-size:16px;}"}),H=(0,r.default)("span",{target:"enspaod11",label:"TagContainer"})((function(e){var t=e.theme;return(0,n.default)({marginTop:8,marginBottom:12,display:"flex",flexWrap:"wrap"},"@media (max-width: ".concat(null==t?void 0:t.breakPoints.medium,"px)"),{display:"none"})}),""),G=(0,r.default)(g.default,{target:"enspaod12",label:"PackageListItemText"})({name:"9t8fgp",styles:"padding-right:0;"}),j=(0,r.default)(p.default,{target:"enspaod13",label:"Description"})((function(e){var t=e.theme;return{color:"light"===(null==t?void 0:t.palette.type)?null==t?void 0:t.palette.greyDark2:null==t?void 0:t.palette.white,fontSize:"14px",paddingRight:0}}),"");(m="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(m.register(C,"OverviewItem","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/home/PackageList/Package/styles.ts"),m.register(A,"Published","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/home/PackageList/Package/styles.ts"),m.register(f,"Text","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/home/PackageList/Package/styles.ts"),m.register(h,"Details","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/home/PackageList/Package/styles.ts"),m.register(b,"Author","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/home/PackageList/Package/styles.ts"),m.register(v,"Avatar","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/home/PackageList/Package/styles.ts"),m.register(y,"WrapperLink","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/home/PackageList/Package/styles.ts"),m.register(k,"PackageTitle","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/home/PackageList/Package/styles.ts"),m.register(L,"GridRightAligned","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/home/PackageList/Package/styles.ts"),m.register(x,"Wrapper","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/home/PackageList/Package/styles.ts"),m.register(w,"IconButton","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/home/PackageList/Package/styles.ts"),m.register(H,"TagContainer","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/home/PackageList/Package/styles.ts"),m.register(G,"PackageListItemText","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/home/PackageList/Package/styles.ts"),m.register(j,"Description","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/home/PackageList/Package/styles.ts")),(I="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&I(e)},"./src/pages/home/PackageList/PackageList.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{PackageList:()=>C});var o,n=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),r=a("../../../node_modules/.pnpm/react-virtualized@9.22.3_react-dom@17.0.2+react@17.0.2/node_modules/react-virtualized/dist/commonjs/AutoSizer/index.js"),i=a("../../../node_modules/.pnpm/react-virtualized@9.22.3_react-dom@17.0.2+react@17.0.2/node_modules/react-virtualized/dist/commonjs/CellMeasurer/index.js"),s=a("../../../node_modules/.pnpm/react-virtualized@9.22.3_react-dom@17.0.2+react@17.0.2/node_modules/react-virtualized/dist/commonjs/List/index.js"),l=a("../../../node_modules/.pnpm/react-virtualized@9.22.3_react-dom@17.0.2+react@17.0.2/node_modules/react-virtualized/dist/commonjs/WindowScroller/index.js"),d=a("./src/components/Divider.tsx"),c=a("./src/utils/package.ts"),u=a("./src/pages/home/PackageList/Help/index.ts"),g=a("./src/pages/home/PackageList/Package/index.ts");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var p,m,I=new i.CellMeasurerCache({fixedWidth:!0,defaultHeight:100}),C=function(e){var t=e.packages,a=function(e){var a=e.index,o=e.key,r=e.parent,s=e.style,l=t[a],u=l.name,p=l.version,m=l.description,C=l.time,A=l.keywords,f=l.dist,h=l.homepage,b=l.bugs,v=l.author,y=l.license,k=(0,c.formatLicense)(y);return n.createElement(i.CellMeasurer,{cache:I,columnIndex:0,key:o,parent:r,rowIndex:a},n.createElement("div",{style:s},0!==a&&n.createElement(d.default,null),n.createElement(g.default,{author:v,bugs:b,description:m,dist:f,homepage:h,keywords:A,license:k,name:u,time:C,version:p})))};return 0===t.length?n.createElement(u.default,null):n.createElement(l.WindowScroller,null,(function(e){var o=e.height,i=e.isScrolling,l=e.scrollTop,d=e.onChildScroll;return n.createElement(r.AutoSizer,{disableHeight:!0},(function(e){var r=e.width;return n.createElement(s.List,{autoHeight:!0,deferredMeasurementCache:I,height:o,isScrolling:i,onScroll:d,overscanRowCount:3,rowCount:t.length,rowHeight:I.rowHeight,rowRenderer:a,scrollTop:l,width:r})}))}))};(p="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(p.register(I,"cache","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/home/PackageList/PackageList.tsx"),p.register(C,"PackageList","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/pages/home/PackageList/PackageList.tsx")),(m="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&m(e)},"./src/pages/home/PackageList/index.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{PackageList:()=>o.PackageList});var o=a("./src/pages/home/PackageList/PackageList.tsx");"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature},"./src/pages/home/index.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>o.default});var o=a("./src/pages/home/Home.tsx");"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature},"./src/providers/API/api.ts":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.r(__webpack_exports__),__webpack_require__.d(__webpack_exports__,{handleResponseType:()=>handleResponseType,default:()=>__WEBPACK_DEFAULT_EXPORT__});var _babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/defineProperty.js"),_babel_runtime_helpers_classCallCheck__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/classCallCheck.js"),_babel_runtime_helpers_createClass__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/createClass.js"),_storage__WEBPACK_IMPORTED_MODULE_3__=__webpack_require__("./src/providers/API/storage.ts"),_types__WEBPACK_IMPORTED_MODULE_4__=__webpack_require__("./types/index.ts"),enterModule;function ownKeys(e,t){var a=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),a.push.apply(a,o)}return a}function _objectSpread(e){for(var t=1;t<arguments.length;t++){var a=null!=arguments[t]?arguments[t]:{};t%2?ownKeys(Object(a),!0).forEach((function(t){(0,_babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_0__.default)(e,t,a[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(a)):ownKeys(Object(a)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(a,t))}))}return e}module=__webpack_require__.hmd(module),enterModule="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0,enterModule&&enterModule(module);var __signature__="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default.signature:function(e){return e};function handleResponseType(e){if(e.headers){var t=e.headers.get("Content-Type");if(null!=t&&t.includes("application/pdf"))return Promise.all([e.ok,e.blob()]);if(null!=t&&t.includes("application/json"))return Promise.all([e.ok,e.json()]);if(null!=t&&t.includes("text/"))return Promise.all([e.ok,e.text()]);if(e.url&&!0===e.url.endsWith(".tgz"))return Promise.all([e.ok,e.blob()])}return Promise.all([e.ok,e.text()])}var AuthHeader="Authorization",API=function(){function API(){(0,_babel_runtime_helpers_classCallCheck__WEBPACK_IMPORTED_MODULE_1__.default)(this,API)}return(0,_babel_runtime_helpers_createClass__WEBPACK_IMPORTED_MODULE_2__.default)(API,[{key:"request",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"GET",a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{headers:{}},o=_storage__WEBPACK_IMPORTED_MODULE_3__.default.getItem("token"),n=new Headers(a.headers);return o&&!1===n.has(AuthHeader)&&(n.set(AuthHeader,"Bearer ".concat(o)),a.headers=n),n.set("x-client","verdaccio-ui"),new Promise((function(o,n){fetch(e,_objectSpread({method:t,credentials:"same-origin"},a)).then(handleResponseType).then((function(e){e[0]?o(e[1]):(console.error(e),n(new Error("something went wrong")))})).catch((function(e){n(e)}))}))}},{key:"__reactstandin__regenerateByEval",value:function __reactstandin__regenerateByEval(key,code){this[key]=eval(code)}}]),API}(),_default=new API;const __WEBPACK_DEFAULT_EXPORT__=_default;var reactHotLoader,leaveModule;reactHotLoader="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0,reactHotLoader&&(reactHotLoader.register(handleResponseType,"handleResponseType","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/providers/API/api.ts"),reactHotLoader.register(AuthHeader,"AuthHeader","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/providers/API/api.ts"),reactHotLoader.register(API,"API","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/providers/API/api.ts"),reactHotLoader.register(_default,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/providers/API/api.ts")),leaveModule="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0,leaveModule&&leaveModule(module)},"./src/providers/API/storage.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>l});var o,n=a("../../../node_modules/.pnpm/localstorage-memory@1.0.3/node_modules/localstorage-memory/lib/localstorage-memory.js"),r=a.n(n);e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);var i;"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;try{localStorage.setItem("__TEST__",""),localStorage.removeItem("__TEST__"),i=localStorage}catch(e){i=r()}var s=i;const l=s;var d,c;(d="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(d.register(i,"storage","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/providers/API/storage.ts"),d.register(s,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/providers/API/storage.ts")),(c="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&c(e)},"./src/providers/config/AppConfigurationProvider.tsx":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>A,useConfig:()=>b});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/slicedToArray.js"),r=a("../../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isEmpty.js"),i=a.n(r),s=a("../../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isNil.js"),l=a.n(s),d=a("../../../node_modules/.pnpm/react@17.0.2/node_modules/react/index.js"),c=a("./src/utils/colors.ts");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);var u="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default.signature:function(e){return e},g={configOptions:{primaryColor:c.PRIMARY_COLOR,darkMode:!1,pkgManagers:["yarn","pnpm","npm"],scope:"",base:"",login:!0,url_prefix:"",title:"Verdaccio"},setConfigOptions:function(){}};function p(){var e,t,a=null!==(e=null===(t=window)||void 0===t?void 0:t.__VERDACCIO_BASENAME_UI_OPTIONS)&&void 0!==e?e:g.configOptions;return(l()(a.primaryColor)||i()(a.primaryColor))&&(a.primaryColor=c.PRIMARY_COLOR),a}var m=(0,d.createContext)(g),I=function(e){var t=e.children,a=(0,d.useState)(p()),o=(0,n.default)(a,2),r=o[0],i=o[1],s=(0,d.useMemo)((function(){return{configOptions:r,setConfigOptions:i}}),[r]);return d.createElement(m.Provider,{value:s},t)};u(I,"useState{[configOptions, setConfigOptions](getConfiguration())}\nuseMemo{value}");var C=I;const A=C;var f,h,b=function(){return(0,d.useContext)(m)};u(b,"useContext{}"),(f="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(f.register(g,"defaultValues","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/providers/config/AppConfigurationProvider.tsx"),f.register(p,"getConfiguration","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/providers/config/AppConfigurationProvider.tsx"),f.register(m,"AppConfigurationContext","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/providers/config/AppConfigurationProvider.tsx"),f.register(I,"AppConfigurationProvider","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/providers/config/AppConfigurationProvider.tsx"),f.register(b,"useConfig","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/providers/config/AppConfigurationProvider.tsx"),f.register(C,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/providers/config/AppConfigurationProvider.tsx")),(h="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&h(e)},"./src/providers/config/index.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>o.default,useConfig:()=>o.useConfig});var o=a("./src/providers/config/AppConfigurationProvider.tsx");"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature},"./src/store/index.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{store:()=>o.store});var o=a("./src/store/store.ts");"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature},"./src/store/models/configuration.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{configuration:()=>f});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js"),r=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/regenerator/index.js"),i=a.n(r),s=a("../../../node_modules/.pnpm/@rematch+core@2.1.0_redux@4.1.1/node_modules/@rematch/core/dist/core.esm.js"),l=a("../../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isEmpty.js"),d=a.n(l),c=a("../../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isNil.js"),u=a.n(c),g=a("./src/utils/colors.ts"),p=a("./src/providers/API/api.ts");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var m={primaryColor:g.PRIMARY_COLOR,darkMode:!1,pkgManagers:["yarn","pnpm","npm"],scope:"",base:"",login:!0,url_prefix:"",title:"Verdaccio"};function I(){var e,t,a=null!==(e=null===(t=window)||void 0===t?void 0:t.__VERDACCIO_BASENAME_UI_OPTIONS)&&void 0!==e?e:m;return(u()(a.primaryColor)||d()(a.primaryColor))&&(a.primaryColor=g.PRIMARY_COLOR),a}var C,A,f=(0,s.createModel)()({state:{config:I()},effects:function(e){return{getPackages:function(){return(0,n.default)(i().mark((function t(){var a;return i().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,p.default.request("/-/verdaccio/packages","GET");case 2:a=t.sent,e.packages.savePackages(a);case 4:case"end":return t.stop()}}),t)})))()}}}});(C="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(C.register(m,"defaultValues","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/store/models/configuration.ts"),C.register(I,"getConfiguration","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/store/models/configuration.ts"),C.register(f,"configuration","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/store/models/configuration.ts")),(A="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&A(e)},"./src/store/models/download.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{download:()=>p});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/defineProperty.js"),r=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js"),i=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/regenerator/index.js"),s=a.n(i),l=a("../../../node_modules/.pnpm/@rematch+core@2.1.0_redux@4.1.1/node_modules/@rematch/core/dist/core.esm.js"),d=a("./src/providers/API/api.ts"),c=a("./src/utils/url.ts");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var u,g,p=(0,l.createModel)()({state:{},reducers:{},effects:function(){return{getTarball:function(e){return(0,r.default)(s().mark((function t(){var a,o,r;return s().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return a=e.link,t.prev=1,t.next=4,d.default.request(a,"GET",{headers:(0,n.default)({},"accept","text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3"),credentials:"include"});case 4:o=t.sent,r=(0,c.extractFileName)(a),(0,c.downloadFile)(o,r),t.next=12;break;case 9:t.prev=9,t.t0=t.catch(1),console.error("error on download",t.t0);case 12:case"end":return t.stop()}}),t,null,[[1,9]])})))()}}}});(u="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&u.register(p,"download","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/store/models/download.ts"),(g="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&g(e)},"./src/store/models/index.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{models:()=>g});var o,n=a("./src/store/models/configuration.ts"),r=a("./src/store/models/download.ts"),i=a("./src/store/models/login.ts"),s=a("./src/store/models/manifest.ts"),l=a("./src/store/models/packages.ts"),d=a("./src/store/models/search.ts");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var c,u,g={packages:l.packages,configuration:n.configuration,search:d.search,download:r.download,login:i.login,manifest:s.manifest};(c="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&c.register(g,"models","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/store/models/index.ts"),(u="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&u(e)},"./src/store/models/login.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{login:()=>b});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js"),r=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/defineProperty.js"),i=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/regenerator/index.js"),s=a.n(i),l=a("../../../node_modules/.pnpm/@rematch+core@2.1.0_redux@4.1.1/node_modules/@rematch/core/dist/core.esm.js"),d=a("../../../node_modules/.pnpm/i18next@20.6.1/node_modules/i18next/dist/esm/i18next.js"),c=a("./src/lib/constants.ts"),u=a("./src/providers/API/api.ts"),g=a("./src/utils/storage.ts");function p(e,t){var a=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),a.push.apply(a,o)}return a}function m(e){for(var t=1;t<arguments.length;t++){var a=null!=arguments[t]?arguments[t]:{};t%2?p(Object(a),!0).forEach((function(t){(0,r.default)(e,t,a[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(a)):p(Object(a)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(a,t))}))}return e}e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var I,C,A=g.default.getItem("token"),f=g.default.getItem("username"),h={token:A,username:f},b=(0,l.createModel)()({state:{username:h.username,token:h.token},reducers:{logOutUser:function(e){return g.default.removeItem("username"),g.default.removeItem("token"),m(m({},e),{},{username:null,token:null})},addError:function(e,t){return m(m({},e),{},{error:t})},clearError:function(e){return m(m({},e),{},{error:void 0})},logInUser:function(e,t){return g.default.setItem("username",t.username),g.default.setItem("token",t.token),m(m({},e),{},{token:t.token,username:t.username})}},effects:function(e){return{getUser:function(t,a){return(0,n.default)(s().mark((function o(){var n,r,i,l;return s().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:return n=t.username,r=t.password,i=a.configuration.config.base,o.prev=2,o.next=5,u.default.request("".concat(i,"-/verdaccio/login"),"POST",{body:JSON.stringify({username:n,password:r}),headers:{Accept:c.HEADERS.JSON,"Content-Type":c.HEADERS.JSON}});case 5:l=o.sent,e.login.logInUser(l),e.packages.getPackages(),o.next=13;break;case 10:o.prev=10,o.t0=o.catch(2),e.login.addError({type:"error",description:d.default.t("form-validation.unable-to-sign-in")});case 13:case"end":return o.stop()}}),o,null,[[2,10]])})))()}}}});(I="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(I.register(A,"token","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/store/models/login.ts"),I.register(f,"username","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/store/models/login.ts"),I.register(h,"defaultUserState","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/store/models/login.ts"),I.register(b,"login","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/store/models/login.ts")),(C="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&C(e)},"./src/store/models/manifest.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{manifest:()=>I});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js"),r=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/defineProperty.js"),i=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/regenerator/index.js"),s=a.n(i),l=a("../../../node_modules/.pnpm/@rematch+core@2.1.0_redux@4.1.1/node_modules/@rematch/core/dist/core.esm.js"),d=a("./src/providers/API/api.ts");function c(e,t){var a=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),a.push.apply(a,o)}return a}function u(e){for(var t=1;t<arguments.length;t++){var a=null!=arguments[t]?arguments[t]:{};t%2?c(Object(a),!0).forEach((function(t){(0,r.default)(e,t,a[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(a)):c(Object(a)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(a,t))}))}return e}e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;function g(e,t){return!t||void 0===t||!!e.versions&&Object.keys(e.versions).includes(t)}var p,m,I=(0,l.createModel)()({state:{},reducers:{notFound:function(e){return u(u({},e),{},{hasNotBeenFound:!0,manifest:void 0,packageName:void 0,packageVersion:void 0,readme:void 0})},clearError:function(e){return u(u({},e),{},{isError:null})},isError:function(e){return u(u({},e),{},{isError:!0,hasNotBeenFound:!1,manifest:void 0,packageName:void 0,packageVersion:void 0,readme:void 0})},saveManifest:function(e,t){var a=t.packageName,o=t.packageVersion,n=t.manifest,r=t.readme;return u(u({},e),{},{manifest:n,packageName:a,packageVersion:o,readme:r,hasNotBeenFound:!1})}},effects:function(e){return{getManifest:function(t,a){return(0,n.default)(s().mark((function o(){var n,r,i,l,c;return s().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:if(n=t.packageName,r=t.packageVersion,i=a.configuration.config.base,o.prev=2,g(n,r)){o.next=5;break}throw new Error("not found");case 5:return o.next=7,d.default.request("".concat(i,"-/verdaccio/sidebar/").concat(n).concat(r?"?v=".concat(r):""));case 7:return l=o.sent,o.next=10,d.default.request("".concat(i,"-/verdaccio/package/readme/").concat(n).concat(r?"?v=".concat(r):""),"GET");case 10:c=o.sent,e.manifest.saveManifest({packageName:n,packageVersion:r,manifest:l,readme:c}),o.next=17;break;case 14:o.prev=14,o.t0=o.catch(2),e.manifest.notFound();case 17:case"end":return o.stop()}}),o,null,[[2,14]])})))()}}}});(p="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(p.register(g,"isPackageVersionValid","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/store/models/manifest.ts"),p.register(I,"manifest","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/store/models/manifest.ts")),(m="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&m(e)},"./src/store/models/packages.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{packages:()=>m});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js"),r=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/defineProperty.js"),i=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/regenerator/index.js"),s=a.n(i),l=a("../../../node_modules/.pnpm/@rematch+core@2.1.0_redux@4.1.1/node_modules/@rematch/core/dist/core.esm.js"),d=a("./src/providers/API/api.ts");function c(e,t){var a=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),a.push.apply(a,o)}return a}function u(e){for(var t=1;t<arguments.length;t++){var a=null!=arguments[t]?arguments[t]:{};t%2?c(Object(a),!0).forEach((function(t){(0,r.default)(e,t,a[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(a)):c(Object(a)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(a,t))}))}return e}e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var g,p,m=(0,l.createModel)()({state:{response:[]},reducers:{savePackages:function(e,t){return u(u({},e),{},{response:t})}},effects:function(e){return{getPackages:function(t,a){return(0,n.default)(s().mark((function t(){var o,n;return s().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return o=a.configuration.config.base,t.prev=1,t.next=4,d.default.request("".concat(o,"-/verdaccio/packages"),"GET");case 4:n=t.sent,e.packages.savePackages(n),t.next=11;break;case 8:t.prev=8,t.t0=t.catch(1),console.error({title:"Warning",message:"Unable to load package list: ".concat(t.t0.message)});case 11:case"end":return t.stop()}}),t,null,[[1,8]])})))()}}}});(g="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&g.register(m,"packages","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/store/models/packages.ts"),(p="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&p(e)},"./src/store/models/search.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{search:()=>C});var o,n=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js"),r=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/toConsumableArray.js"),i=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/helpers/esm/defineProperty.js"),s=a("../../../node_modules/.pnpm/@babel+runtime@7.15.4/node_modules/@babel/runtime/regenerator/index.js"),l=a.n(s),d=a("../../../node_modules/.pnpm/@rematch+core@2.1.0_redux@4.1.1/node_modules/@rematch/core/dist/core.esm.js"),c=a("./src/providers/API/api.ts");function u(e,t){var a=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),a.push.apply(a,o)}return a}function g(e){for(var t=1;t<arguments.length;t++){var a=null!=arguments[t]?arguments[t]:{};t%2?u(Object(a),!0).forEach((function(t){(0,i.default)(e,t,a[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(a)):u(Object(a)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(a,t))}))}return e}e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var p,m,I={API_DELAY:300,ABORT_ERROR:"AbortError"},C=(0,d.createModel)()({state:{suggestions:[],controller:[]},reducers:{clearRequestQueue:function(e){return e.controller.forEach((function(e){return e.abort()})),g(g({},e),{},{controller:[]})},addControllerToQueue:function(e,t){var a=t.controller,o=e.controller;return g(g({},e),{},{controller:[].concat((0,r.default)(o),[a])})},setError:function(e){return g(g({},e),{},{isError:!0})},saveSearch:function(e,t){var a=t.suggestions;return g(g({},e),{},{suggestions:a,isError:null})}},effects:function(e){return{getSuggestions:function(t,a){return(0,n.default)(l().mark((function o(){var n,r,i,s,d;return l().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:return n=t.value,r=a.configuration.config.base,o.prev=2,i=new window.AbortController,e.search.addControllerToQueue({controller:i}),s=i.signal,o.next=8,c.default.request("".concat(r,"-/verdaccio/search/").concat(encodeURIComponent(n)),"GET",{signal:s,headers:{}});case 8:d=o.sent,e.search.saveSearch({suggestions:d}),o.next=15;break;case 12:o.prev=12,o.t0=o.catch(2),o.t0.name===I.ABORT_ERROR?e.search.saveSearch({suggestions:[]}):e.search.setError();case 15:case"end":return o.stop()}}),o,null,[[2,12]])})))()}}}});(p="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(p.register(I,"CONSTANTS","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/store/models/search.ts"),p.register(C,"search","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/store/models/search.ts")),(m="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&m(e)},"./src/store/store.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{store:()=>d});var o,n=a("../../../node_modules/.pnpm/@rematch+core@2.1.0_redux@4.1.1/node_modules/@rematch/core/dist/core.esm.js"),r=a("../../../node_modules/.pnpm/@rematch+loading@2.1.0_@rematch+core@2.1.0/node_modules/@rematch/loading/dist/loading.esm.js"),i=a("./src/store/models/index.ts");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var s,l,d=(0,n.init)({models:i.models,plugins:[(0,r.default)()]});(s="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&s.register(d,"store","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/store/store.ts"),(l="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&l(e)},"./src/utils/cli-utils.ts":(e,t,a)=>{"use strict";var o;a.r(t),a.d(t,{copyToClipBoardUtility:()=>i,getCLISetConfigRegistry:()=>s,getCLISetRegistry:()=>l,getCLIChangePassword:()=>d}),e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var n,r,i=function(e){return function(t){t.preventDefault();var a=document.createElement("div");if(a.innerText=e,document.body){document.body.appendChild(a);var o=document.createRange(),n=window.getSelection();o.selectNodeContents(a),n.removeAllRanges(),n.addRange(o),document.execCommand("copy"),document.body.removeChild(a)}}};function s(e,t,a){return"".concat(e," ").concat(t).concat(""!==t?":":"","registry ").concat(a)}function l(e,t){return"".concat(e," --registry ").concat(t)}function d(e,t){return"".concat(e," profile set password --registry ").concat(t)}(n="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(n.register(i,"copyToClipBoardUtility","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/utils/cli-utils.ts"),n.register(s,"getCLISetConfigRegistry","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/utils/cli-utils.ts"),n.register(l,"getCLISetRegistry","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/utils/cli-utils.ts"),n.register(d,"getCLIChangePassword","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/utils/cli-utils.ts")),(r="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&r(e)},"./src/utils/colors.ts":(e,t,a)=>{"use strict";var o;a.r(t),a.d(t,{PRIMARY_COLOR:()=>i}),e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var n,r,i="#4b5e40";(n="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&n.register(i,"PRIMARY_COLOR","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/utils/colors.ts"),(r="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&r(e)},"./src/utils/constants.ts":(e,t,a)=>{"use strict";var o;a.r(t),a.d(t,{NODE_MANAGER:()=>i}),e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var n,r,i={npm:"npm",yarn:"yarn",pnpm:"pnpm"};(n="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&n.register(i,"NODE_MANAGER","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/utils/constants.ts"),(r="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&r(e)},"./src/utils/file-size.ts":(e,t,a)=>{"use strict";var o;a.r(t),a.d(t,{default:()=>i}),e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);var n,r;"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;function i(e,t,a,o,n){return(t=Math,a=t.log,1e3,n=a(e)/a(1e3)|0,e/t.pow(1e3,n)).toFixed(2)+" "+(n?"kMGTPEZY"[--n]+"B":"Bytes")}(n="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&n.register(i,"fileSizeSI","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/utils/file-size.ts"),(r="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&r(e)},"./src/utils/package.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{TIMEFORMAT:()=>I,formatLicense:()=>C,formatRepository:()=>A,formatDate:()=>f,formatDateDistance:()=>h,getLastUpdatedPackageTime:()=>b,getRecentReleases:()=>v,getAuthorName:()=>y});var o,n=a("../../../node_modules/.pnpm/dayjs@1.10.6/node_modules/dayjs/dayjs.min.js"),r=a.n(n),i=a("../../../node_modules/.pnpm/dayjs@1.10.6/node_modules/dayjs/plugin/localizedFormat.js"),s=a.n(i),l=a("../../../node_modules/.pnpm/dayjs@1.10.6/node_modules/dayjs/plugin/relativeTime.js"),d=a.n(l),c=a("../../../node_modules/.pnpm/i18next@20.6.1/node_modules/i18next/dist/esm/i18next.js"),u=a("../../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isString.js"),g=a.n(u);e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var p,m,I="L LTS";function C(e){return g()(e)?e:null!=e&&e.type?e.type:void 0}function A(e){return g()(e)?e:null!=e&&e.url?e.url:null}function f(e){return r()(new Date(e)).format(I)}function h(e){return r()(new Date(e)).fromNow()}function b(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=0;return Object.keys(e).forEach((function(a){var o=e[a];o.fetched>t&&(t=o.fetched)})),t?f(t):""}function v(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=Object.keys(e).map((function(t){return{version:t,time:f(e[t])}}));return t.slice(t.length-3,t.length).reverse()}function y(e){return e?"anonymous"===e.toLowerCase()?c.default.t("author-anonymous"):e:c.default.t("author-unknown")}r().extend(d()),r().extend(s()),(p="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(p.register(I,"TIMEFORMAT","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/utils/package.ts"),p.register(C,"formatLicense","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/utils/package.ts"),p.register(A,"formatRepository","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/utils/package.ts"),p.register(f,"formatDate","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/utils/package.ts"),p.register(h,"formatDateDistance","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/utils/package.ts"),p.register(b,"getLastUpdatedPackageTime","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/utils/package.ts"),p.register(v,"getRecentReleases","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/utils/package.ts"),p.register(y,"getAuthorName","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/utils/package.ts")),(m="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&m(e)},"./src/utils/sec-utils.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{preventXSS:()=>l});var o,n=a("../../../node_modules/.pnpm/xss@1.0.9/node_modules/xss/lib/index.js");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;var r,i,s={onIgnoreTagAttr:function(e,t,a){if(e.match(/^h[0-9]$/)&&"id"===t)return t+'="'+(0,n.escapeAttrValue)(a)+'"'}};function l(e){return(0,n.filterXSS)(e,s)}(r="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(r.register(s,"xssOpts","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/utils/sec-utils.ts"),r.register(l,"preventXSS","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/utils/sec-utils.ts")),(i="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&i(e)},"./src/utils/storage.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>l});var o,n=a("../../../node_modules/.pnpm/localstorage-memory@1.0.3/node_modules/localstorage-memory/lib/localstorage-memory.js"),r=a.n(n);e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);var i;"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;try{localStorage.setItem("__TEST__",""),localStorage.removeItem("__TEST__"),i=localStorage}catch(e){i=r()}var s=i;const l=s;var d,c;(d="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(d.register(i,"storage","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/utils/storage.ts"),d.register(s,"default","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/utils/storage.ts")),(c="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&c(e)},"./src/utils/url.ts":(e,t,a)=>{"use strict";a.r(t),a.d(t,{isURL:()=>c,isEmail:()=>u,extractFileName:()=>g,downloadFile:()=>m});var o,n=a("../../../node_modules/.pnpm/validator@13.6.0/node_modules/validator/lib/isEmail.js"),r=a.n(n),i=a("../../../node_modules/.pnpm/validator@13.6.0/node_modules/validator/lib/isURL.js"),s=a.n(i);a("./types/index.ts");e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);var l,d;"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;function c(e){return s()(e||"",{protocols:["http","https","git+https"],require_protocol:!0,require_tld:!1})}function u(e){return r()(e||"")}function g(e){return e.substring(e.lastIndexOf("/")+1)}function p(e,t){var a=e;return a.lastModified=Date.now(),a.name=t,a}function m(e,t){var a;a=navigator.msSaveBlob?p(new Blob([e],{type:"application/octet-stream"}),t):new File([e],t,{type:"application/octet-stream",lastModified:Date.now()});var o=URL.createObjectURL(a),n=document.createElement("a");n.href=o,n.download=t,document.documentElement.appendChild(n),n.click(),setTimeout((function(){URL.revokeObjectURL(o),document.documentElement.removeChild(n)}),150)}(l="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&(l.register(c,"isURL","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/utils/url.ts"),l.register(u,"isEmail","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/utils/url.ts"),l.register(g,"extractFileName","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/utils/url.ts"),l.register(p,"blobToFile","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/utils/url.ts"),l.register(m,"downloadFile","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/utils/url.ts")),(d="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&d(e)},"./src/utils/windows.ts":(e,t,a)=>{"use strict";var o;a.r(t),a.d(t,{goToVerdaccioWebsite:()=>i}),e=a.hmd(e),(o="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.enterModule:void 0)&&o(e);var n,r;"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature;function i(){window.open("https://verdaccio.org","_blank")}(n="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.default:void 0)&&n.register(i,"goToVerdaccioWebsite","/home/runner/work/verdaccio/verdaccio/packages/plugins/ui-theme/src/utils/windows.ts"),(r="undefined"!=typeof reactHotLoaderGlobal?reactHotLoaderGlobal.leaveModule:void 0)&&r(e)},"./types/index.ts":(e,t,a)=>{"use strict";a.r(t);"undefined"!=typeof reactHotLoaderGlobal&&reactHotLoaderGlobal.default.signature},"./src/i18n/download_translations sync recursive ^\\.\\/.*\\/ui\\.json$":(e,t,a)=>{var o={"./ar-SA/ui.json":"./src/i18n/download_translations/ar-SA/ui.json","./cs-CZ/ui.json":"./src/i18n/download_translations/cs-CZ/ui.json","./de-DE/ui.json":"./src/i18n/download_translations/de-DE/ui.json","./es-ES/ui.json":"./src/i18n/download_translations/es-ES/ui.json","./fi-FI/ui.json":"./src/i18n/download_translations/fi-FI/ui.json","./fil-PH/ui.json":"./src/i18n/download_translations/fil-PH/ui.json","./fr-FR/ui.json":"./src/i18n/download_translations/fr-FR/ui.json","./gl-ES/ui.json":"./src/i18n/download_translations/gl-ES/ui.json","./hi-IN/ui.json":"./src/i18n/download_translations/hi-IN/ui.json","./it-IT/ui.json":"./src/i18n/download_translations/it-IT/ui.json","./ja-JP/ui.json":"./src/i18n/download_translations/ja-JP/ui.json","./km-KH/ui.json":"./src/i18n/download_translations/km-KH/ui.json","./ko-KR/ui.json":"./src/i18n/download_translations/ko-KR/ui.json","./pl-PL/ui.json":"./src/i18n/download_translations/pl-PL/ui.json","./pt-BR/ui.json":"./src/i18n/download_translations/pt-BR/ui.json","./pt-PT/ui.json":"./src/i18n/download_translations/pt-PT/ui.json","./ro-RO/ui.json":"./src/i18n/download_translations/ro-RO/ui.json","./ru-RU/ui.json":"./src/i18n/download_translations/ru-RU/ui.json","./si-LK/ui.json":"./src/i18n/download_translations/si-LK/ui.json","./sr-CS/ui.json":"./src/i18n/download_translations/sr-CS/ui.json","./sr-SP/ui.json":"./src/i18n/download_translations/sr-SP/ui.json","./tg-TJ/ui.json":"./src/i18n/download_translations/tg-TJ/ui.json","./tr-TR/ui.json":"./src/i18n/download_translations/tr-TR/ui.json","./uk-UA/ui.json":"./src/i18n/download_translations/uk-UA/ui.json","./vi-VN/ui.json":"./src/i18n/download_translations/vi-VN/ui.json","./yo-NG/ui.json":"./src/i18n/download_translations/yo-NG/ui.json","./zh-CN/ui.json":"./src/i18n/download_translations/zh-CN/ui.json","./zh-TW/ui.json":"./src/i18n/download_translations/zh-TW/ui.json"};function n(e){var t=r(e);return a(t)}function r(e){if(!a.o(o,e)){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}return o[e]}n.keys=function(){return Object.keys(o)},n.resolve=r,e.exports=n,n.id="./src/i18n/download_translations sync recursive ^\\.\\/.*\\/ui\\.json$"},"./src/components/Logo/img/logo-black-and-white.svg":e=>{"use strict";e.exports="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+PGRlZnM+PGZpbHRlciB4PSItMTkuOCUiIHk9Ii0xMS43JSIgd2lkdGg9IjEzOS42JSIgaGVpZ2h0PSIxNDAuNCUiIGZpbHRlclVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgaWQ9ImEiPjxmZU9mZnNldCBkeT0iNCIgaW49IlNvdXJjZUFscGhhIiByZXN1bHQ9InNoYWRvd09mZnNldE91dGVyMSIvPjxmZUdhdXNzaWFuQmx1ciBzdGREZXZpYXRpb249IjIuNSIgaW49InNoYWRvd09mZnNldE91dGVyMSIgcmVzdWx0PSJzaGFkb3dCbHVyT3V0ZXIxIi8+PGZlQ29tcG9zaXRlIGluPSJzaGFkb3dCbHVyT3V0ZXIxIiBpbjI9IlNvdXJjZUFscGhhIiBvcGVyYXRvcj0ib3V0IiByZXN1bHQ9InNoYWRvd0JsdXJPdXRlcjEiLz48ZmVDb2xvck1hdHJpeCB2YWx1ZXM9IjAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAuMDkwNjY0NjI4NiAwIiBpbj0ic2hhZG93Qmx1ck91dGVyMSIvPjwvZmlsdGVyPjxmaWx0ZXIgeD0iLTMzLjklIiB5PSItNTAlIiB3aWR0aD0iMTY3LjklIiBoZWlnaHQ9IjI3Mi43JSIgZmlsdGVyVW5pdHM9Im9iamVjdEJvdW5kaW5nQm94IiBpZD0iYyI+PGZlT2Zmc2V0IGR5PSI0IiBpbj0iU291cmNlQWxwaGEiIHJlc3VsdD0ic2hhZG93T2Zmc2V0T3V0ZXIxIi8+PGZlR2F1c3NpYW5CbHVyIHN0ZERldmlhdGlvbj0iMi41IiBpbj0ic2hhZG93T2Zmc2V0T3V0ZXIxIiByZXN1bHQ9InNoYWRvd0JsdXJPdXRlcjEiLz48ZmVDb2xvck1hdHJpeCB2YWx1ZXM9IjAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAuMDkwNjY0NjI4NiAwIiBpbj0ic2hhZG93Qmx1ck91dGVyMSIvPjwvZmlsdGVyPjxwYXRoIGlkPSJiIiBkPSJNNDggMTYuNzI5TDMyLjY3MiA0N2gtOC44NzRMMCAwaDE1LjMyOGwxMi45MDcgMjUuNDkyIDQuNDM3LTguNzYzSDQ4eiIvPjxwYXRoIGQ9Ik0zNS4yIDExSDI4VjguNjQzaDguNGwxLjItMi4zNTdIMzJWMy45MjloNi44bC44LTEuNTcySDM2VjBoMjBsLTUuNiAxMUgzNS4yeiIgaWQ9ImQiLz48L2RlZnM+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cmVjdCBmaWxsPSIjMDAwIiB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgcng9IjM3Ii8+PGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjIgMzApIj48dXNlIGZpbGw9IiMwMDAiIGZpbHRlcj0idXJsKCNhKSIgeGxpbms6aHJlZj0iI2IiLz48dXNlIGZpbGwtb3BhY2l0eT0iLjYiIGZpbGw9IiNGRkYiIHhsaW5rOmhyZWY9IiNiIi8+PC9nPjxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIyIDMwKSI+PHVzZSBmaWxsPSIjMDAwIiBmaWx0ZXI9InVybCgjYykiIHhsaW5rOmhyZWY9IiNkIi8+PHVzZSBmaWxsPSIjRkZGIiB4bGluazpocmVmPSIjZCIvPjwvZz48cGF0aCBmaWxsPSIjRkZGIiBkPSJNNTQuNzg1IDc3SDQ1Ljg4TDIyIDMwaDE1LjM4TDU4IDcwLjcxOHoiLz48L2c+PC9zdmc+"},"./src/components/Logo/img/logo.svg":e=>{"use strict";e.exports="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgaWQ9InZlcmRhY2NpbyI+PFRpdGxlPlZlcmRhY2NpbzwvVGl0bGU+PGRlZnM+PHBhdGggaWQ9ImIiIGQ9Ik00OCAxNy42TDMyLjggNDhIMjRMLjQuOGgxNS4ybDEyLjggMjUuNiA0LjQtOC44SDQ4eiIvPjxmaWx0ZXIgeD0iLTIwJSIgeT0iLTExLjclIiB3aWR0aD0iMTM5LjklIiBoZWlnaHQ9IjE0MC4zJSIgZmlsdGVyVW5pdHM9Im9iamVjdEJvdW5kaW5nQm94IiBpZD0iYSI+PGZlT2Zmc2V0IGR5PSI0IiBpbj0iU291cmNlQWxwaGEiIHJlc3VsdD0ic2hhZG93T2Zmc2V0T3V0ZXIxIi8+PGZlR2F1c3NpYW5CbHVyIHN0ZERldmlhdGlvbj0iMi41IiBpbj0ic2hhZG93T2Zmc2V0T3V0ZXIxIiByZXN1bHQ9InNoYWRvd0JsdXJPdXRlcjEiLz48ZmVDb21wb3NpdGUgaW49InNoYWRvd0JsdXJPdXRlcjEiIGluMj0iU291cmNlQWxwaGEiIG9wZXJhdG9yPSJvdXQiIHJlc3VsdD0ic2hhZG93Qmx1ck91dGVyMSIvPjxmZUNvbG9yTWF0cml4IHZhbHVlcz0iMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMC4wOTA2NjQ2Mjg2IDAiIGluPSJzaGFkb3dCbHVyT3V0ZXIxIi8+PC9maWx0ZXI+PHBhdGggaWQ9ImQiIGQ9Ik01MC44IDEySDM1LjZMNDEuMi44aDE1LjJMNTAuOCAxMnoiLz48ZmlsdGVyIHg9Ii00NS43JSIgeT0iLTQ5LjElIiB3aWR0aD0iMTkxLjMlIiBoZWlnaHQ9IjI2OS42JSIgZmlsdGVyVW5pdHM9Im9iamVjdEJvdW5kaW5nQm94IiBpZD0iYyI+PGZlT2Zmc2V0IGR5PSI0IiBpbj0iU291cmNlQWxwaGEiIHJlc3VsdD0ic2hhZG93T2Zmc2V0T3V0ZXIxIi8+PGZlR2F1c3NpYW5CbHVyIHN0ZERldmlhdGlvbj0iMi41IiBpbj0ic2hhZG93T2Zmc2V0T3V0ZXIxIiByZXN1bHQ9InNoYWRvd0JsdXJPdXRlcjEiLz48ZmVDb21wb3NpdGUgaW49InNoYWRvd0JsdXJPdXRlcjEiIGluMj0iU291cmNlQWxwaGEiIG9wZXJhdG9yPSJvdXQiIHJlc3VsdD0ic2hhZG93Qmx1ck91dGVyMSIvPjxmZUNvbG9yTWF0cml4IHZhbHVlcz0iMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMC4wOTA2NjQ2Mjg2IDAiIGluPSJzaGFkb3dCbHVyT3V0ZXIxIi8+PC9maWx0ZXI+PC9kZWZzPjxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+PHJlY3QgZmlsbD0iI0Y3RjhGNiIgd2lkdGg9IjEwMCIgaGVpZ2h0PSIxMDAiIHJ4PSIzNyIvPjxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIyIDI5KSI+PHVzZSBmaWxsPSIjMDAwIiBmaWx0ZXI9InVybCgjYSkiIHhsaW5rOmhyZWY9IiNiIi8+PHBhdGggc3Ryb2tlPSIjNDA1MjM2IiBzdHJva2Utd2lkdGg9IjIuNCIgZD0iTTQ2LjA1OCAxOC44SDMzLjU0MkwyOC40IDI5LjA4MyAxNC44NTggMkgyLjM0MmwyMi40IDQ0LjhoNy4zMTZsMTQtMjh6IiBzdHJva2UtbGluZWpvaW49InNxdWFyZSIgZmlsbD0iIzQwNTIzNiIvPjwvZz48ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyMiAyOSkiPjx1c2UgZmlsbD0iIzAwMCIgZmlsdGVyPSJ1cmwoI2MpIiB4bGluazpocmVmPSIjZCIvPjxwYXRoIHN0cm9rZT0iI0NENDAwMCIgc3Ryb2tlLXdpZHRoPSIyLjQiIGQ9Ik01MC4wNTggMTAuOGw0LjQtOC44SDQxLjk0MmwtNC40IDguOGgxMi41MTZ6IiBzdHJva2UtbGluZWpvaW49InNxdWFyZSIgZmlsbD0iI0NENDAwMCIvPjwvZz48cGF0aCBkPSJNNTQuMDYgNzUuOGwyLjU3NS01LjExMkwzNi44NTcgMzFIMjQuMzQybDIyLjQgNDQuOGg3LjMxOXoiIHN0cm9rZT0iIzQwNTIzNiIgc3Ryb2tlLXdpZHRoPSIyLjQiIGZpbGw9IiM0QTVFM0YiLz48cGF0aCBkPSJNNTkuNiAzMWgxNS4yMjFNNTUuNiAzNWgxNS4yMjFNNTEuNiAzOS44aDE1LjIyMSIgc3Ryb2tlPSIjQ0Q0MDAwIiBzdHJva2Utd2lkdGg9IjIuNCIgc3Ryb2tlLWxpbmVjYXA9InNxdWFyZSIvPjwvZz48L3N2Zz4K"},"./src/components/NotFound/img/package.svg":e=>{"use strict";e.exports="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0OTUuMiA0OTUuMiI+PHBhdGggZmlsbD0iI2QzOGMwZCIgZD0iTTMyNS42IDIyNC40TDQ5NS4yIDEyNiAzMjUuNiAyOC40bC0xNjguOCA5OS4yeiIvPjxnIGZpbGw9IiNlZmJiNjciPjxwYXRoIGQ9Ik0xNzAuNCAyMjQuNGwxNjgtOTcuNi0xNjgtOTguNEwwIDEyNi44eiIvPjxwYXRoIGQ9Ik00MTYgMzY4LjRsLTE2OCA5OC40LTE2OC05OC40di0xOTZMMjQ4IDc0bDE2OCA5OC40eiIvPjwvZz48cGF0aCBmaWxsPSIjZDM4YzBkIiBkPSJNMjQ4IDc0bDE2OCA5OC40djE5NmwtMTY4IDk4LjQiLz48cGF0aCBmaWxsPSIjZWZiYjY3IiBkPSJNMzI2LjQgMzE0LjhMNDk1LjIgMjE4bC0xNjkuNi05OC40TDE1NiAyMTh6Ii8+PHBhdGggZmlsbD0iI2QzOGMwZCIgZD0iTTE3MC40IDMxNi40bDE2OC44LTk5LjItMTY4LjgtOTcuNkwwIDIxOHoiLz48cGF0aCBmaWxsPSIjNzA0YTBlIiBkPSJNMjQ4LjggMjcwLjhMNDE2IDE3Mi40IDI0OC44IDc0IDc4LjQgMTcyLjR6Ii8+PHBhdGggZmlsbD0iIzUxMzMwNyIgZD0iTTI0OC44IDI3MC44TDQxNiAxNzIuNCAyNDguOCA3NCIvPjxwYXRoIGZpbGw9IiMyZDFjMDUiIGQ9Ik0yNDguOCAyNzAuOGwzNi0yMS42LTM2LTIwLjgtMzYgMjAuOHoiLz48ZyBmaWxsPSIjMGRkMzk2Ij48cGF0aCBkPSJNMzY4IDM3OS42bDQwLTIzLjJ2LTEyLjhsLTQwIDIzLjJ6TTM2OCAzNTYuNGw0MC0yMy4ydi0xMi44bC00MCAyMy4yek0zNjggMzMzLjJsNDAtMjMuMnYtMTMuNmwtNDAgMjR6Ii8+PC9nPjwvc3ZnPg=="},"./src/pages/Version/DetailSidebar/Engines/img/node.png":e=>{"use strict";e.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAOAAAAEACAYAAACqHnrXAAAACXBIWXMAABZ0AAAWdAEtIJO3AAA6J2lUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4KPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxMzggNzkuMTU5ODI0LCAyMDE2LzA5LzE0LTAxOjA5OjAxICAgICAgICAiPgogICA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPgogICAgICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIgogICAgICAgICAgICB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iCiAgICAgICAgICAgIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIKICAgICAgICAgICAgeG1sbnM6cGhvdG9zaG9wPSJodHRwOi8vbnMuYWRvYmUuY29tL3Bob3Rvc2hvcC8xLjAvIgogICAgICAgICAgICB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIKICAgICAgICAgICAgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZmLzEuMC8iCiAgICAgICAgICAgIHhtbG5zOmV4aWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20vZXhpZi8xLjAvIj4KICAgICAgICAgPHhtcDpDcmVhdGVEYXRlPjIwMTctMDctMTFUMTI6NTM6MzYtMDQ6MDA8L3htcDpDcmVhdGVEYXRlPgogICAgICAgICA8eG1wOk1vZGlmeURhdGU+MjAxNy0xMi0xMVQxMToyODozMy0wNTowMDwveG1wOk1vZGlmeURhdGU+CiAgICAgICAgIDx4bXA6TWV0YWRhdGFEYXRlPjIwMTctMTItMTFUMTE6Mjg6MzMtMDU6MDA8L3htcDpNZXRhZGF0YURhdGU+CiAgICAgICAgIDx4bXA6Q3JlYXRvclRvb2w+QWRvYmUgUGhvdG9zaG9wIENDIDIwMTcgKE1hY2ludG9zaCk8L3htcDpDcmVhdG9yVG9vbD4KICAgICAgICAgPGRjOmZvcm1hdD5pbWFnZS9wbmc8L2RjOmZvcm1hdD4KICAgICAgICAgPHBob3Rvc2hvcDpDb2xvck1vZGU+MzwvcGhvdG9zaG9wOkNvbG9yTW9kZT4KICAgICAgICAgPHhtcE1NOkluc3RhbmNlSUQ+eG1wLmlpZDplZTBkZTJmMC0xMmEwLTRjOGEtYjg5OC03YzI4OTk5ZTg0MDI8L3htcE1NOkluc3RhbmNlSUQ+CiAgICAgICAgIDx4bXBNTTpEb2N1bWVudElEPmFkb2JlOmRvY2lkOnBob3Rvc2hvcDpiZDI4Y2U0Mi0xZjFlLTExN2ItOWUzYy05NWEyYTE2YTRmZGM8L3htcE1NOkRvY3VtZW50SUQ+CiAgICAgICAgIDx4bXBNTTpPcmlnaW5hbERvY3VtZW50SUQ+eG1wLmRpZDo3NGQ0OGZlMS00YTNjLTRiMzMtOGJkYy0yNTIwNjhiNTQyMjA8L3htcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD4KICAgICAgICAgPHhtcE1NOkhpc3Rvcnk+CiAgICAgICAgICAgIDxyZGY6U2VxPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OmFjdGlvbj5zYXZlZDwvc3RFdnQ6YWN0aW9uPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6aW5zdGFuY2VJRD54bXAuaWlkOjc0ZDQ4ZmUxLTRhM2MtNGIzMy04YmRjLTI1MjA2OGI1NDIyMDwvc3RFdnQ6aW5zdGFuY2VJRD4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OndoZW4+MjAxNy0xMi0xMVQxMToyODozMy0wNTowMDwvc3RFdnQ6d2hlbj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OnNvZnR3YXJlQWdlbnQ+QWRvYmUgUGhvdG9zaG9wIENDIDIwMTcgKE1hY2ludG9zaCk8L3N0RXZ0OnNvZnR3YXJlQWdlbnQ+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDpjaGFuZ2VkPi88L3N0RXZ0OmNoYW5nZWQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OmFjdGlvbj5zYXZlZDwvc3RFdnQ6YWN0aW9uPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6aW5zdGFuY2VJRD54bXAuaWlkOmVlMGRlMmYwLTEyYTAtNGM4YS1iODk4LTdjMjg5OTllODQwMjwvc3RFdnQ6aW5zdGFuY2VJRD4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OndoZW4+MjAxNy0xMi0xMVQxMToyODozMy0wNTowMDwvc3RFdnQ6d2hlbj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OnNvZnR3YXJlQWdlbnQ+QWRvYmUgUGhvdG9zaG9wIENDIDIwMTcgKE1hY2ludG9zaCk8L3N0RXZ0OnNvZnR3YXJlQWdlbnQ+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDpjaGFuZ2VkPi88L3N0RXZ0OmNoYW5nZWQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICA8L3JkZjpTZXE+CiAgICAgICAgIDwveG1wTU06SGlzdG9yeT4KICAgICAgICAgPHRpZmY6T3JpZW50YXRpb24+MTwvdGlmZjpPcmllbnRhdGlvbj4KICAgICAgICAgPHRpZmY6WFJlc29sdXRpb24+MTQ2MDAwMC8xMDAwMDwvdGlmZjpYUmVzb2x1dGlvbj4KICAgICAgICAgPHRpZmY6WVJlc29sdXRpb24+MTQ2MDAwMC8xMDAwMDwvdGlmZjpZUmVzb2x1dGlvbj4KICAgICAgICAgPHRpZmY6UmVzb2x1dGlvblVuaXQ+MjwvdGlmZjpSZXNvbHV0aW9uVW5pdD4KICAgICAgICAgPGV4aWY6Q29sb3JTcGFjZT42NTUzNTwvZXhpZjpDb2xvclNwYWNlPgogICAgICAgICA8ZXhpZjpQaXhlbFhEaW1lbnNpb24+MjI0PC9leGlmOlBpeGVsWERpbWVuc2lvbj4KICAgICAgICAgPGV4aWY6UGl4ZWxZRGltZW5zaW9uPjI1NjwvZXhpZjpQaXhlbFlEaW1lbnNpb24+CiAgICAgIDwvcmRmOkRlc2NyaXB0aW9uPgogICA8L3JkZjpSREY+CjwveDp4bXBtZXRhPgogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIAo8P3hwYWNrZXQgZW5kPSJ3Ij8+EXa2FQAAACBjSFJNAAB6JQAAgIMAAPn/AACA6QAAdTAAAOpgAAA6mAAAF2+SX8VGAAAxAElEQVR42uy955Nc15Xg+Tv3ZRUKKPiCdwRQBAGQBL33IEVRlNSjjtEqWhET+2m/7M78PRszERuxMzHbo+6WJUWxSVGitxKNSIoUaEQLXyifPt+79+yHl5mVvny6uieCRKXPfO/+3vHniqoqXrx46YgYfwi8ePEAevHiAfTixYsH0IsXD6AXL148gF68eAC9ePHiAfTixQPoxYsXD6AXLx5AL168eAC9ePEAevHixQPoxYsH0IsXLx5AL148gF68ePEAevHiAfTixYsH0IsXD6AXL148gF68eAC9ePEAevHixQPoxYsH0IsXLx5AL176XRL+EHS/KIog5dtnJ79hIn2ZRCI+fc5BISywa9MeDo0cbvo6Lx5AL8uA76srn/P2N6/x9/EzTGYmCcQgCtY50pkcmzds59q9N3Dv1acZ3T2KIB7CLhfxuyN1v1yYusifvn2ev419QCo7gwhoFMOFAghhISJXCEFgy4atnNp3Gw+dfJS9W/f6A+gB9LJgjaeKSKyxwqjA61++xKtfPEde09jIYq0tQmdKKjL+x0E2myeyjiBhCEzA8LrNPHLicR44cZrBxLq69/fiAfRSYWqiICKoKh+df5/nP/8dV7LnMAhh3sbPKUKnJbNSS7chiizZbB4RQdSQGDQosG/LIR4/9Y/ceOjm8vsjeNPUA+gFwKnDSKzRvpn6kpc+fZYvpv6Kw+JCUKe4srnZAMAKgHO5kDCMYggxGCNIQggIuG7/TTx6/Q84PHK07nO9eADXtExMjfPmlZd57+tXKUQZnHOoi03LMmetACyeRmuVbLZQfkCQ2OQ0YMQwPLiRu699kPv3P8z2bSP+wHsA17bkwiwfnn+XFz57irSbwllFrWJRpAycLBhABQr5iLAQET9lztAUEcRAYAxbhnbw+KkfcfOR2xgaWO9PhAdwjfh5FUh8dPF93vzqD5xL/x3nIMpHZR+tGriFADj3Ceogl83jnIJUeHpFv09VGRgMEJPgyI5jPHLyMa7ff1OdL+rFA9iX4J2dPsvb5/7IRxffwUpIVLC4SCirPGXpABZvh1FEIVfSghWfXrxtFAgMwUDAAIPcfPQO7rv6Ua7afnBOo/pAjQew5+FThxQDHbP5Gd787EXevvQSeU2BAxcpiqIqlcQuAUCtADGGPp8LiUJH/PHVmrD0j4hBAsEIrB/YzP1HT3PfydNs2bC17vt78QD2pBRsgXe+eYO3vnmO8cJFAgwuUiiag/FCX1kAQYkiRz4bllOGUkne3D9lwILA4NSxe+s+Hj75PW676m4GE4P+BHoAe8vcVAVT9KHe/vZt3rvwEt/MfoyooFbLQAlSAdByAaw2QUt/5/MhNnRFCBtrwSKFccQUxSTi/OE1e67jjtGHuOOq24E4bVGOqnrxAHaznJv5luc/f5ILuc9I5ZK4CNTOVaGI1lSyrBKAqkouG+KcNjVFY/6kYlEQm6XGsGX9Fg5tu5rv3fgjDmw76E+sB7A7tV5pWSdTszz319/yd32P2dwENtRytYqolFd9WwAsPl4II8KCRZoEZMp/li4OpfuMIAJBELB14wgnN93E47f+BzZt3FT3u714ADsKX+hCPjz/Z1678ByX01/FAZZQ50xNOgegU8jnQpwtBWTqISyjV2eaglFBBgKMEfZtu4qHjj7KTUduYyAYiH+/Cp5DD2DHtN4XY2d47osn+Cr1EYEpBlhc5ULvHICl+23kyOctUkwvVKUYGviDtRCKGsQIJiGAY3T7Sb536h85tve414YewM6AdyU5zmvfPMm7428Q2ixqQZyUOSkB1x4A66OgZQCLd+bzEZF1pXgMVR5hw6BMbcCm+FtMbJ6uG9jA7Yfv4qHj32Pnpp0eRA9geyRVSPLnsy/x9qUXmQovYUOHODNnjtUA1y0AWufI56IasBbmD9YCW6ovTRjDyMbd3Hnkfu4avZ+NQ5v8AvEArrTOixeeU8e751/n9fPPcT75GSZhsPnSFb/4rErIENDGAKIm/quNACoQFixRZGugE6QWwFp/sOpxmTNhVQkGA1SVQ9tHuXf0NLcduZPAJIrasObFXjyAC8KupnH144uf8dq5J/g6/QEqlqhQ9POEImTUA9hlGjCuE1Xy+Qh1GkMnrYIyzU3RyttGBQIIEgGBBIzuuI77r3mM6/afaHo8vXgAFwTfxbGLvDL5HO+efQ5ZF8ZpBVtKpBdXYTMAW2jAtgZhKgBEIYoiwtA1NkWXAKFU6kZjGEgY1Ap3HH+IBw48wt5dezyEHsDFBVgyYZq3z7/CK+d/x0zhMgJxMr1Ks80DYBdqwDgtoYSFCGsVI80hbBUVbQphsaImCAyosnXTDh68+lFuP3oPGwaHfaDGA9gcv9Iyeu/SG7x29hm+Tn2EEYOLYni0xs9bjgbslA8Yv1Zx1lEo2AY+XuugTM2fLSEUwCQEh3J0x3Huu+YRbjl4e93x9gB6AeCLiU/4w0dP8HXwAaHL4yJFrKBSWbcpK6IBOw0gxYCMtW5eCOsAbBKUqTVbS/6hBkoiETAQDHJ4/Qkevfn7jO455hfcWgWwtj9vMjPOC18+w3szz2AHCuSTIYKJfRYqIFpBADvpA5Z+v7NKoRAtyrxc8HNrfEeR2IIY2riOhB3gtqse5MHjj7B9eHvDc+IBXAPwFaI8L3/5B96e/HeuhOcRpzgrxehmDNyyAGxrEGbxGlA1nqRmoxZacAEQSo292iq4IyIExoARRjbs4fYj9/HgNQ8zmBhckxCuGQBrc1J/Of8Wv//qF1yRz7BRvMixVNRurgCAXRqEqQQQ4hkypde3StIvSBO2em5F2kICAxL3IO4aPsCjJ3/ITYdvLatzZW2MxVhzGvB88hte+eop3ku9QKSFuGDazUEyp7HWhgYEsJElilwTH2/h/uCCaktrir9FhEQiIBEkuGnPXdx/8hH2bTvgNWC/yURmnFe/eY73Zp8lqZNEWYtUTZcuBUWkRzXg4n3A8vgKp4ShRZ02qH5ZQFR0Pgib5hkrytpQBtYl2Di4hRsP3sN9ow8ysnHEA9iT5mbleHcX8ta5V3jt0q8Zc19jQ8VZwMVrSMqgmTWrAVHFOkdUcA3bkZom6aVBoZksMKFffvnckwyCBEIwELBz/R7uufoxbj98e3ksRj8m8vsKwNoE78eXP+TFs7/g7+H7OBvFPXq2GAzQSkhWCcAe8QFLPpcNXbz3RKtAy0Jal5oGZRo9t/pJRuPZpWIEEyQ4suM4D1zzHa7be0PDC6wHsItim6UTfzF9nhe+fYK3x55DB0Jc5FAnFStY2gNgl5aiNQPQOSUqRDQuxG6m2RoXbTc2RZsBOHdDKj1PE/uHWLj16L08cOy77N2yt2FQzQPYBebmxOwkz3/8HH9LPMNkbixebG5uwVVelr0GrAcQICpqQWlY+bKE1qUFPFdqSK3VpmIMRmDr8AjHR27i9LXfZWTTSF9ow54FsMrPswXeu/A6r04+yfn8p0RZ5nYNkkY/zwPYCEAtfq4tRLiK47ug/sEaDdY6oV+jURv4g9WPmfJnDqxLsGfzQe656jQ3H76dgaC3/cOeBLDS1/vLpx/wtj7Jp9PvEkaFWONZnccy6UcAl2+Clt7DWcVGdpHpBmlQCdPaH6wHsOLdpMH7KGCEwAgDAwmu3nmKWw7ew02Hbm4YA/AArjB2lSdoLHWeF87+jj9P/B4X5LAFh9OFegT1ALY7DdENtaDNAAQIQxtPc2qo2Vr7g0spVVvMcxXFGMPAQIBoglsO3cOD13yHXZv3eA24GlK5j126kOT1s3/klbEnSLorqCouZG5fhSUC6E3QagCdU6Kw2C2xGFN0qVUyTaKiTaOrxZebhEEwDA9t5v7DD3Pn6AMMD22Mf5ZziDEewJUwNVWVty+8wWsXf8E3uc/iBVfcP09lsT/BAzgfgKUdd9Vqi3aklQjKNNOoC9CaxYuDERNP/jbCwU1XcdfoaW4/cnf5wtHNpmlPaMAvJs/wwtkn+Fv6LawtoE7jjSuXfEw7b4J2PYDFqdo2cnUBjnlL1WohXMwEtlptV/tcampEq1IXBpMQTGC4euQUp48/xuiu7m576moAx9IXeeXcM7wz8SwZl4w3r9SVyPz4IMxCAASw1sUDfZuYhU3Ny0X6g7URTJEm7zPPc1UUU+y4WDewgZsP3MW9xx5m16bdHsCFmptZm+HVT5/nT9O/Y0LOYiOFaCmmpgdwuQCqKlHooDLx3SBJX6/tFhloWUxwp+n7zj037rgQgoRh0+AINxy+m0dGv8P6deu7Km3RBQDOjSZQlI8vvssfvvk53yY+wuYULDi32CCLB3AlAVSNtzqTlj7eAvzBBXbRL7XutC6hr8RJfAODg4Ps2XyQ+44+zg0Hb6AyptrJapqOAVjbfPntzBe8+PWT/GX2RZyJ4nEQTlZQ63kAlwogxC1LpfsW5Q8ucZTFQvetaJxnlPpgkYHAGISAa3ffzIMnv8uh7YcbrsW+B7By19WJ1BXevPR7Xhv7dzJuKg6uNCwf6y8AVz4PuMoAqqLlzvmaaGaTIU0LiorOF+lcdFS0he+IYAIBEdYPbuLWq+7lnsMPMLJpR8fM0o5pwGyU4fUzr/LazK+YMudx1sUd6SsTZfFpiBUGUAFnXdwz2FK7rUKSfh6wGpuizQI48bmWIO7GHw62cde+09xz6n7WD2xYGxrwb1fe5/ff/oyLwSfkkiHOaptNcQ/gonzAOdMl7ixpZkIuZ57MYpL0DQI4TUveasbuz7113I1vAmFoeIhdA/u4/5rHObX/xv4FMGuzPHPmX3lz5ilCycVbJ5fnbbb1Z3sAlwqg06VrwSV00bfyBxesMWlSW1o6OwYSCYNIgtv23s/3bvlHhoKhtqzEttXpRK7ALz7677w49XPyLovNF7dQpjvSkNrnn7diC8ZIRYXJHPiVgMdnVasuGlp9dZh7rHINaO1j2uC5c1coVaouDpVrSSufW/3Rxddq+TLlnBIWHJENefPc8zz11s8p2EJ/AfjHL5/lnZnfIaqoZZWim8vRiV6WvGq02W2tf3w+g6vuvRaxTub5HtriBYrGZXcqvH35FV4/80L/AHhp9hJvTz6FBIpz3aP1vCzxYiVzJnr9Qm6u4rUGKq0yubXeBG9EVo1mq32uLsLmqOdVcc4RmIB3LrzOt5Pn+gPAT8b+yoXp8zjnwesbJRhIY3+VJkDoQgDVpgpMF2zIa3OFW/s+Wn/xKJnVZye+5dOLH/cHgO9+9j6ZyQBRvyfO6pm8bTyyRY0lZi4Souj8/mDVQteqRT8HqDYBVqueq7X+YI3vWAthM99Ra3xQUUEULk9P8dInr676oUy043ydufQRuZxhaBMMbiIe/e6lP64iLbpS4q3cKh6vTTWpVocntWTZ6lzUWVpkqJTixjkN3ru2Can8eIN3K44uEQQjwnQ6zeWZGXKFv/aHBsxGGayF9HgirnTxsgpesHYEQDGywCCLzhMoWcDPWEwAR+d5swafK0DkLBcmJwmtJROm+wNAAYyBfMqQmwkQA2siDiN9aoLWfGxtukErbLx50w1Fm1CbBWW0xnerMS/nnltj0jYK0Gj1s7TGbxURJpNJJlNJEiLx1tt9AaBQhi4zEWDDOPnp1VyPa8DS+TXS4Cto4yxEMx+PFs9dQFBGmz6gzb5W1XsaEXJhyIXpqWK9hbTliLYVAxNAmBGyk8Yn3vpM06s0AWJh1l9T81KbRDprgWwJqOq8qUpBGJudIZXLxtuntYuJdptiIpCbShBm14gW7Dp9tXpWji7YJdPGLlpt5UvlsxtERec7oK1yiZV/iBjS+RxXZqZpd4+uadtyEy067WBDyE4E8TH0mrB//F0p1Z42dLxaQtgQLKWhvdis/KzKH2zy2lpTVCRuj7s0NU0uDMvT9/pUAxZDTQZyswGFlKFbhhlrB9ZrvwaddD5TtImq1JYmo7YEqZmBWn0t0AaaW5jJZBhPzWA6sBhN+1ecIhJPNcuMB+Xdirpk7XhZ7oVMmlh8DSthdH6zteq1Ov8FU1t7opXvISqEkeXi1CTWuY7MiGmvBpTq/woZIT9d1IL9mJaQtXsJ0SYwNPLNdDmfscAgS22Ko5x2SCWZyWaK4yroUwAbrA8xse2QmQyI8oIEfUjgmix9VZy4xpqvYakadT5b+bk15WdVAZlWZmuD1qXa82KMkAsLXJqeqi8O70sAKzVg6WYAUV7ITZn6OLaXnhbXoN6wVXGKLuSipfP5g9o88aFVu0OiTrkyO02mkMN0cHx9m0xQba4NBbLThkJWkMAv3H4xo0sF1w1N0VZR0QbmZUtAtXUbYKPHjBHSuTxXkjPl4WD9DWAJQqmwHYraUAw4GyfntUsCMl5WxoyOtWB9ukFLLQlUNb4zX2qiNpjSMCjTsNdw7g9BiJzj8swU+SjqSOSzcyZoGTytui3FtEQ+6Stk+opdBdekJqZV42xDCFuZsQsCNv6/QZhJp5lIJwlM502uttWC1oFVqw2JAzIaeS3YNwCK4lQXpk3na1xoUvnS1B9sVPkiQmgjLs1MLce67k0NKA2CMJXaUASirJCd6Z7kvJflrVIhnnhn1TYGTZtpttaV2q38QVo8JiKMp2dJ5XMdNz074ANWpADrQFQw8bUsOxUQ5fqkTrQfLiS6/NdbVVRdk5RC89alxtPQWs+TURp30RtjyOULjM3O0E0bgrWvFhRtvDljVVpCsYU4KtoXOTQ/Aqfc4R4VAzLQqDJGF3TIFtS6VKc84657VWUsOU2uUGhrt0N3AFhndtb8KdXfKDcrFDJm7TTu9jPtxWHGzimuyTiE5mDpIoMwDSB0igGS2SyTqWRXbEnWMRO0KhVR7I4om6Y1aYnMlFnmLrgel276tYoSueLOOw1AUm3QKVtZL1rXnjR/fjCOLQjOOa4kpwltRLAmAZRmt6ujoGUfMYBCSsjN9m9AZm3FmeLhSFYV6xxVc9Hm7ftrFZSZZ75oTCBT6RRTmTSBCbruwtexWtA5+7PCP6zZoCM7bbARPiraN0grodN5ZitpEx+Pxj5ei/miglCIIsaS0117REzH10gT7SgCUU7IzRjPRM8btXNVmA5L5KKmPl3znJ8uuO+v8tGJ1CzpQr5rL+LtqwUVrbEzG/iHldrQxPdnZwxhr6YltA9ol5V8k3gEQqgOp4o0NUWpKV2r9iWbAVuZthARMoU846lkcSC0rGEAq0BsZIY2NkvFgAslTkv0cUBmrV1EVJXQ2vlN0XkS6438wdIycqqMJ6fJRyHGdO/C6UAQRlt3R9QGaYrzRPMZ6T1f0JugVO3DXXFfqJaoXCHTRAvSrPys2e25RttkNstUNt11Uc+OAFhV/SI1ZmmTbvm5bol4Q8jctMHZHgvIeBO0nAesfUtVpWCjeLPPCh9PGzbmNhpl0TjxLhJ3O4wnZ7DOdU3JWec1oCxCI9a+PIB8WsjPruE5hr16EWmy/kUgUkdYWSfa4CNbBVqa3Z5Kp0jmsiTEdH2+ta0ruorDht0Rrc3S7IxgQ5+W6CkTdJ49Ggo2quiYaNw5sdD5oiJCoVBgPDVTtyPTGgewpgm3qWZsHqQRgaggZGd7qGewH4Yyyeq+iVVHwUbzz6SYbwxasdl2Ip0kGxbaPt+zB0zQ6jSDNO2O0Mb+YTEtkZs1c1O1dcUvEW1TSj2zO5Ku7psIUHBhXKamUl9+VjuMCRo8Fnc7ZPI5JjOpuN6zRy7SHRrKpPUarpFGrO2gMOAsZKZXfnyFt2o7J06VvC3gms6FaQJhBY3WOa6kZght1PWBly4Jwmjd6m/YHVELocQBmUIvpiVWFXjp4h86/3cLnSWycYWMavPAS6NSNSNCMpdhJpfpKfg6owFrzdIGFTJls7QSVqmokCHWgtb6gEyvB2FKwRNVJW/DeZCrf1REiKxlPBk32ooHcCHg1T6ujTWi1L5+rkImzPu0RD9pwNK8lnylFtRGE3ip3uQdmMqkSYf5ntN+bdSA2qLapdYsXUjENNaI2SREBdb0Nmf9dQ0RclFYrBOV+sbcmi56g5ANQyYysz37k9u4dLVF7Wcr7dg4fygCNozTEuq75vvCMo73aI/IRfk516TFYCZFmcokyUdhz7oibQ7C1HfD1/p/ZZO0qnueqtRF5fPzaSHKyrI3eNHuXZe97QMu8rsJkItCwsiWtaBWlqoxt597Kp9jNpsqZqjEAzivd1JrRjY1RRuZpvUasZyWmJFlj6/wsZzuWZJOHdko33R6WWlvh4nMLKGzPZN076gGlIarXRfpH9aYoUUIC1npzm4JaSfwPR6EqXlN3kbkXVijRLX8lrO5DKlcFtMD9Z7d4QNKq1pQbTGyovJ28yBNZqbYLdGj/o+XuYNWGuibKWpBqeBPBEIbMZGe7YvD28bdkVr7cg1L0OYFca6szRYgl5TGgRwf7ejw11rMd5Py/8MoIhMW6k7odDZNNurNtENHNWAzX66hf7iY7vni39mkiTf7XJOaozeLsed7WTbKEzlbrO+MN9WczqYQ+iP31IFaUK2DSOYzPec9l/G+8y6CbFJ6gok1U4wtS/9AQbDOkg5zZYNnOpOOAy9G6IdLbaJ94FUc23KOR6qDNJWpn7htut6R1+YnVYySTwvrNgiDG7Tzg3213UGYLjRDdXkUiwi5KM9QYhBrLclCXO8pleuiydQ0rwGZL7CirTViXdpinohpcR+CzAw4q11dIbO28oDLE6dKqpBlMpvCqRZ9P6Gc/SsWD/eiRuyCkRQ0rAVtbpa2htAYmJmKmBqLOp+W6Ic0hKzE62VZH2gQClFI5KJyzk8qwjVStW58MfbCjq3M7x9Kq/xhgyCNGLBWSc4WGDsfUcjGQK4NDdilX1SX/4LSPYkgUTQ/pSqiHmM3pw2lh7Rh+zviW5WgVZmlWg1iy9TF3MvTqQJRpOSyjiuXwlYuY5/5gD00lnAJKlcBI5AIDJXICVKxPuZAlAoQuxlG07FVuaBoZ/2gpmYaUQyEBUc6FZueRoSpyxGZWde5bc6kbz+sY9/NYDDG1PT9zQUPpOLzpOohPxm7fiRFLYgttrCe3z9UksmQKNL46megUFDGL0TYTkVD+2EmzIp8LV2x3yEiBCU/UCo0XsXikIqF0e3+YXuKsWv9udq9AllMd0S1WYqCMUI2a8mmw6oussDA9HhEcsLGvqB2z/L1taBL/x3GCAZTbWqKlJEr35ZGpqp0lY/Ydg1YBqeZVlxQxLTyZMQph9RsiHOKmOp9sK2DsQsRYUGRoDcNuDWhAXXhv0MpNWFXL5ZKs7Ss/6ou/t2nEdtYC7pQV1vnp6NSGxrIpEPyWdtwEw5jIDVjuyMt4WVlroCl8UAV/p1UQlh1Da4p9qiNmHY4SNPGWlBtrA1p5f+1uF28CkahIzUTNr1wljTuxKWIXNp1bVrCy2JJlDmNV5GKoMIMnWOvNkhT8TkdDtK0NxFf68tVgFgfeKnpnq8NeBXvS82GhAXXsurFGMim44CMKlV+4tpUId3sAy5laTVJRVT6g2WTdJ60RZv9ww4m4rVeU7FADajFKGfekpld2GxCE8DkWERqxiKB+DkyXcu1LuuLitRrxErTVCo0onRBxNR09IQ2mA3TMEhTOy3NxMGV5HRIZHVBvp0xEIXK2PkIG2ofmqK6JokvTUirA0kaLLc6A7RxkEbaCKHp2DGuG9RE3QTsquoX5kxTEcilLdm0XTBIqhAkhNmpiJlJu+whTt2nPWTNXkhUtVyCVhlmKZmUpmGKouK+Cp+x6t42HFLTPRe85j5f1RXNgLWO1FQYtxst9mQ5YexcSCHvMIFXSqv+G5bYEb9Ysc5BuVOiUbBF6jyZ2inalT5iuy5q3WGIyfyPV07JziQt+ZxbUruRMZBJOiYuR31mMPaLCarLeKVWBRSkCi0pF25Tk7aQOjiFdm2w1D2e0HwjKYqBlCjvSE5F5V7eRX9MsUxt4nJIpoNpiTVTCbPo77b032E13l+pPCe0bkSQ1ARpqA7S1H4DWUsAtgRxLtCSmo6IQsUs4+AYA4Ws48r5MI6GSs9Q1u8xlWXqTsU5V2zObezzUeMfVqci6u9fewA2CtQUIcmlHalZi8jyzS0JhOmJiNlpG/sNuioroqeN2pX7WtqW3yEIVl0FhDVaTaQ+u1XVU1ijEdekBmwCo1MlORnGsz9XIDxlDESR4/K5PFGkYHxisB+cYlUlcnYudtAAwtqOibkYTbXeW9sasEpbQTZpya6gz6YKQSCkZi1T42HP7SvXWyakLOIpy/9Aqw7rXEUxttQ02khZG1bdK7QRvR4BMN4FSUlORKtSvaJOuXKhQD5nVz4g4/OAHbtehDZC1dX7d5W6r6ptqRSkKQVqxGvA0pFKTUUUcqtTvWICIZN2jF8KV/7K5/OAHROnrjjQt0rvzasRqypi1roPWIpWpqbd6vEt8TzR8csF0smoh+tE1X+3GgmdxVZtW11Z79koSFOpRduzx0HXAigS+2nJSUsUrt6MTy121Ieh4/KFPM72ap1ov4wlXEktqETFLa/LpmZlikEapB7qzNK1CGAx7ZBNxt0O7TAFgkCYmiwwPbGCARlp90Hzyq/28Ec2wjpbPaypos64eTJe2mKDdieAEm+8mZqy8YTrNi1kZ2HsUo4oXKFoq7Z7ufUDQCv7gU6Vgg2bmJaVzUlzEPZvP+BCl5KB9HQx7RC072AEgZCcjRgfy9F78yt63AfU1bmQiAiRtRRsVNEBUdRx0sTfa+OpN90IX1RQUtNRZ4IhAlcuF8hmLEHQSxD2+PZkq3moRQhthCsHZGo75BtNUJO25IZN160hXd20w7xa0AjZjOXKpWzxAtArG8/3y/Zkq7OsrDoKUVg1fqJS91WOtSj5gGsuCCNAPutIT7uOnTeRuOtifCxPciYkCIoNn/1mFa45U1oJXUTkXHXQpcGo9bXXD1h2mCE5GY+M6NTWYqW0RBQqly9miSKHMUsc4+SLU5a9P+DKXdwFV9aCTQb5Qt1+E2sGQDGQS1mySddygG67IAwSwtRUgamJwtJzQv0QBe2j7yYIoYsIXVQ/qLdOI/brUKYmZp+NYHbCLmnMxGrKpYs58vmaidtdaWh5e3ehRykfhWhxthBS3wEhDdqW+lsDCqSnIwpp11XRfxFIp0PGx7JLW+D9sEFnn2lLASIXUYiiqgnZjTvk14APKAYKOSU1FaFdto5K4ekrV3JkUmHD0ffdo5S0O3mQLvkdNZKPClh1CKZB53xtMKafNaBCeioizLP6U8qWcoCMkM9ZLl3Mxpu/rMkgSn9ZxoJgnSMfFhDR+r2AZI2kIcQU0w6zrqstKCMwOZlndqawuOS8tHNdSh9TvEpa0EaE1lbNi6HGLO1PADVW784qs+PdP6naGCGyyqVLGcJwEQEZPxNm1X/xUhEREVQdubBQHMw1NzGtsluiPwEs/rBsypJN2q40PWtPdCIQZmbyTE7mMLL8DV78Bp3L/x3LHW4uIhRcSGjDkidYNc7Q9KsGjNMOSnLc0kvRO1Xh4sUMuXyELERl+0R8D2hyIRsVcOqqytLalYfo2Fja1JSlkNOeWqRBIKQzBS5fzixMA3oTtOs1ealnMB+F9f2A/agBxUAha0lN27I27JmlIbE/eGUsSzIZYgLjNWA/XBwEslGe0MYzYqVuf4k+AlAVklOrO2ZiNb+7ESEfOi5eSuOs+rjIirOnHeAvrhPNhQXmCrL7sBRNBHIpR2bW9fR+7YERJqeyTE1l29ow3LvqVnrid+RtgdBG5eBL3/UDOqukJsI4od3DAIqAc8qFSynCQovxFf1ggkofXxdqtKCqki3kixu89JEPqMQaLzO7stOtOynGGJLJAlfG023bzNHbrKt9YRXytkAuKhSDE64/ANy1cS9RqCQno76JTJRGGFy+nCGTCZFGDq22c5l1aUd8l/QDLkZj58ICzjn2bt3fHwBeu/NGUtOWqCB9FRk0gZDNhVweSy+6a94n4rv1dwiRs2SjPNfvu64/ADyx5WaySTvXg9UnUkpLjE1mmJ3NE9SWqLW1FtRvT7ZS1wtFyduQaw+c6g8AT+29mdtH7yhGDPuHwFJaIipYLlxKYq1WR858GqIXL6uIMdwxejs3HLypPwAcHhzmpzf+lK1btoDRtg4+bccFPkgIk7M5JiYzCw4w+YbcrkQPjLJ141Z+ess/MbxuuD8ABLjpyK38l4f/L7YMbYEgjiJKP3VxW+XC5RT5vF18424/m6CLvjhIR8AzxkAAW4e28p9P/2duOnJrWz470c4f+ug1j7Nn2x7+67P/jTMXP0FF+8ZMMwlDKp3n8pUUh/Zv7cDFRVYHwmW3HHS/Ka4S1yQf33WC//LY/8kNe29u31lTbf/86UvJS7z05fP86t1fc2V8PB7E5LTnrSjrlHUDAddes4uNG9YVS9UqRhxoxWB0NVWKS7Xad6yKXajU3IZyH3f59Vr2S0sPaOl26bHya2ueqxXPrXlMVef4qfiM8r3la6jG96uipb9R1CkOBVVc+b3iv138AhTKf7vy60vfKf7bxT8E1fi5WrxtK94j/jyHY4GzXAXEGHZsH+FHt/yYfzj2MFs37WnvZbMTAJbki/G/8+QHv+aVr15jcmw6rg3tcY1orbJ7x0aOHRkpLn4P4IIAdFq+fzUBFASV+H22j2zlgaP386Mb/yOjO0c7Y5x3CkAtzulXlFfef5lnvn6at878qbgxYOUS6ilPsKzIj4/uZGTbcLy7U1sAnIOgqwCsAK2TGrDsEpj4+959/E4ev+r7PHDTg8XueG1bAXbXaMDKH51zOV776lV+9tL/5Kups7jIISo9CWEYWbZv3cCJo7sIgqAMSU8CWPmeSwYQULdAAOPSxZUEsKT1zIDh8JZD/Kc7/3fuO3E/QwNDdetwTQHYSKYLE/zixV/y+6+eYTw5BbZ60fSCKIpzcPXB7ezbvRXrXOwJegDbCmC5sz2AHRu289jRx/jJQz9l6/qt3XPB7hYAler84Ofjn/Fvf/5X3jr7FsmpNNJjZql1juH1g1w7uof1QwNxB8haNEGdxiXNbQRQiS0nFdi0ZZi79t3FP939U47tvKbpelvzADaSKIp48d0X+OPYH/jz52+joZYL1LsdRAFC6zi0dytHDoxgbSnpuhYBXIwPuHQAUXA4VIBAuGP0Nr6z51FO3/YwiUSiO9dJtwJYeYXKhhle+vR5fv7Or/j6yte4yNEL4hwkEsK1V+9ly8ahmoCMB3AlAQTBYjGB4dD2q/jJ7T/moeMPs35gQ1dpvJ7SgLUO8kR6kn958//juc/+wGwySdHu6GptaK1j18hGjl21CyMCusZ8wFU2QZ0CEpubGzcM8+joo/zTvf+JkeHtHQ+w9AWAjUD85Nsz/OKdf+P5z18G4gCHOu1KEF1xCPGJw7vYtX0TtjhHpmfygCsShFl5DVg8iJRqOE4ffYAf3/oTjh860RPg9RyAlX6fIIRa4G8X3uH/eelnnBn7mCjvkC7VhpFVtm4c4trRPQwOJIoBmbWUiF9ZDagKahRJGI6NnOD/ePCfOLnvVgZksGqN9IL0FICN/MPZzCzPnnmaJ9/7LeemLoJ15cRqN2lv52D04AgHdm+Lqz60OPrHJ+IXnIiX4vM0EPZs3sUPT/2AR699nE0bNne1n9d3ADYyS89OfsvvzzzFk+89SzIzWzZJu+WEWOtYPzTAdaP7GF6/DmdZYQD7pRa0sQbU4oYiw4Mb+d6Nj/DI8e9zcORQT5mbfQdgIxA/vPgBv373l7x85pVikXd3pC1KaYkDu7YyenAnqsXKGA9gUwAhPj5OHIrj3mP388Ob/gPX7T3V8+D1FYC1JyMf5fnTl6/zs1d/xmcTf8eqIq7zEKrGc2SuP7qXbRs3YG3lYx7AShMUBQ1AnHB462F+fNdPuP3IXQwmBvsGvr4CsKF/WJjl6TO/5Yk//4bLU+OoKsYZHJ3JI8b7EDhGtmzk2iN7MCZAnfogTAWAIDgcYoTtG7fx2C0/4NFrvsfmwd7189YUgI2ujufGzvLUR0/w9JlnSWcyuMh2tE/UqXLi4G727NyCjdYCgPNrQHVxFUswYBgaHOLB0Yd47MQP2b/rQNPz6gHsIRgdjve//AtP/u03vHzm1XjhRHMtUe0OyGwaHuLU0f0MDiSwTssJ+rUGoADOOSiO+L/j6jv5ztXf49ThGzGYvoRuTQFYK6ENefXzl/m3D/6Fz89+iQ1tR9IWkXMc3bODw3tHsE7XZDG2ajwOIrCG/TsO8Q+3/Ii7jt7LQDCwZtbjmgKwyj9Mz/DPb/5PXv76FS5PjMWP2bhvrF1m6GAiwamj+9i4YagqINP3GrCYSFdVtg9v59ZTd/DjEz9l87r+9PM8gDUmKcztfPPVlS/57Ye/4ZmPnyOfy2FtvDHHapulpbTEvpEtHDu0O06ZVEDVX4n4WANqsVvBJAIGBga4+8g9fPf4Dzi063DDc+MBXAO+YayNHK+/9xrPnvt33vj8LdSCWrfqQ6K0WCd68vBedmzZjLWurzUgJm6QvfHw9dy9/RHuvOluTHFPjbWk9TyATczSyEU89eGTPPfJM3x28UvCXBgHAlZJG8Za0DKyeZiTh/eTMEExMtg/AKKACAXNs3/bAU6f+A7fOfk4CTOwpsHzALbQiJemLvLrN3/Jy2df5vLUlYqFxMrnLorV/aP7d3Fg57ZiRLT3AUSL08dQNq/fyuM3/JA7j95XHgfR79FND+AKgPh16it++eYv+fcPnsFZizpdlYiptY7h9eu4/vB+hobWVZmiHfcBF9mOVDLpJYhNy7uvvo+HTjzM0ZHj5ceMGL/QPIALjVY63jn7Bv/6+i/56+WPKORCKA78WUnTNLKWq3bv5MjeHTinvdeQqw6VeGOTgTDg0N4jPHbjDzm172YPnAdw+f5h3ub57Vu/4cXzL/Dp+c+JCm5F60udKgkTcP2RA2weHiKyOucZdTmAaLypSWJdgl3bdnPTyTt5bP8PWBes8+amB3BlzdJvxr/hiVd/xWsTr3NlcjzutlihRuDIWnZv28I1B/cWp/x2AYCNfMCSz1n0i40xbN2yjaMDJ/jhrf/Inl17PXgewNWVLyY/51/f+Bde/PwlokLRP1ymWVo6FScO7mPnti3YUna+y4IwILEvZwxBwnDDgdv47g2Pc9WWUb8wPIDtkyiKeOfbP/E/Xv/vfHL+8xgCYVkTvSNr2Tq8gWuPHGAgCIrd890BoLjY2hQjiML+kf18/7r/yHUHbyJhEn5BeADb6x/GTdpCqpDiuc+e5Ym3fsU3Vy4ggSCWJbU9lSpHRvfuZP/O7YsAcHV9QBHBSHz/jk07ue3kfZw+/CjDg8NFXznWjF48gG31DePp5/HCOz99jt9++Fue+eBpUvkMNrSLPyHEhdrrBwe57vABNqxbF+cGO+YDOkAIBgPWBYPccPhuvnPNd9m7eV/Fp7Cmk+kewC4K1Dh1fHLpDP/jjf+Xd7/+C1Fo4wm9iwhGCELBRhzYMcLo/l1xaVyHTFBjDBIYRnce5x+u/wmHdx6OAyvqFZ4HsIulYAu88dkr/Oovv+av5z+OgzROqrRGK3GqBEa4/qqDbB4enkvOr7IGlJIaFkAMezcf4PS1p7n94APxTk9ePIC9og0BpnKT/P6DZ3j6o6f5dvzcXN5sXggFayNGNm/m+MF9BCaIG1dXUQOigpi4R2/7pp3cc/he7jz2AFsGt5ef77MKHsCeCtSUfKNzU9/yxPu/5qkPnyabyccKZp6yttJIvmv272P3yFZstEoAlhdDAgPccfxeTh/7Lrsr/Dzv43kA+wLID8++z5PvP8mrH71GPgiR4rZlzczSyDk2r1/PtYcOMJBIlBPgK2GC4gARTGDIRQVuOHKU09f8b1wzcp0HzgPYv2apw/Hs35/m6Vd+x8eTn8SbkDaZX1qaCn3Vrp0c2rmjol1p6Rqw9DyTiPvzdq3fxT+c+iknD12PIaj7vl48gH0pY5kxnv/rc/zi3d8ylbpczPnVm6bOOQYHBrj20AE2Dg0Vi7UXD2CpgkVEwMD2oRHuPPoANx69nd3r9/gT4gFcmzKT+ZT/++WneOOL50mlMrHPVWGWlnKDu7du5dj+PcUewsUBGO+THsM9MBRw6467uOXm+xkdutqfAA+gF6eO98+9y/9655/5y98/IIoUI3M+W8kkPHlwP9s3bSKyuiAAcRJrPHEQGEa3H+PhEz/g2O6Tvk3IA+ilDE+xoiYf5njxb8/z83d/zhfjX8eGpo1xstaxdeMwJw/ux5iBuEqlVRBGBZMwoMrm4a08cvX3ue3wvX033t0D6GXFAzUX0uf543t/4Dd/+Q3TuWnUgTrFquPqvXvZO7J9Li3RQAOaQFCEocQQtx2+h4ePfZ9N6zf7g+wB9LIY+Tb5Ff/86j/z+hevk87kiKxleHCQkwcPMTQ4WE7Oa9nPE0QgMWi4fuRm7r/uYQ5uPuYPpAfQy6K0YUXyW1V548vX+Zc//y8+OfsJmSjk0MgOjuzZDY6KidOOdYn17Nx4gIdPPM51e0+VNapPpnsAvSwTxGQ+yZ8vvsVrH7zGJ2N/Y9vGdWwYWIcT2Da8jcPbj3Fw9yHu2Hs/GwY3evA8gF5Wwz8MbcjZqW+YTE9ijDAQBGzdsJ29mw/4xlgPoBcvXhYqPhHkxYsH0IsXD6AXL148gF68eAC9ePHiAfTixQPoxYsXD6AXLx5AL168eAC9ePEAevHixQPoxYsH0IsXLx5AL148gF68ePEAevHiAfTixYsH0IsXD6AXL148gF68eAC9ePHiAfTixQPoxYsH0IsXLx5AL148gF68ePEAevHS9/L/DwDyzh9eJ8i0nQAAAABJRU5ErkJggg=="},"./src/pages/Version/DetailSidebar/Install/img/npm.svg":e=>{"use strict";e.exports="data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJMYXllcl8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCIKCSB2aWV3Qm94PSIwIDAgMjU2IDI1NiIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMjU2IDI1NiIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+Cjxwb2x5Z29uIGZpbGw9IiNDQzAwMDAiIHBvaW50cz0iMjMsNjUuNiAxMzAsMy4zIDIzNyw2NS42IDIzNywxOTAuMSAxMzAsMjUyLjQgMjMsMTkwLjEgIi8+Cjxwb2x5Z29uIGZpbGw9IiNGRkZGRkYiIHBvaW50cz0iMTMzLDEyNy44IDIzMi41LDcwLjUgMjM2LjUsMTg2IDEzMywyNDguNSAiLz4KPGc+Cgk8cGF0aCBmaWxsPSIjQ0MwMDAwIiBkPSJNMjM0LDY3bC0wLjMsMTIyLjRsLTEwMy44LDYwLjJsLTAuNS0xMjAuM0wyMzQsNjd6IE0xNDYuNywxMzkuM2wwLjMsODAuNGwzNC41LTIwLjFsLTAuMS02MC42bDE3LjQtMTAuMwoJCWwwLDYwLjhsMTcuNC0xMC4ybDAuMS04MS40TDE0Ni43LDEzOS4zeiIvPgo8L2c+CjxwYXRoIGZpbGw9IiM5MTA1MDUiIGQ9Ik0xMzYuOCw0LjJjLTQuOC0yLjctMTIuNS0yLjctMTcuMywwTDI0LjcsNTguN2MtNC44LDIuNy04LjYsOS41LTguNiwxNC45djEwOWMwLDUuNSwzLjksMTIuMiw4LjYsMTQuOQoJbDk0LjgsNTQuNWM0LjgsMi43LDEyLjUsMi43LDE3LjMsMGw5NC44LTU0LjVjNC44LTIuNyw4LjYtOS41LDguNi0xNC45di0xMDljMC01LjUtMy45LTEyLjItOC42LTE0LjlMMTM2LjgsNC4yeiBNMjIwLjksNjEuMgoJYzQuOCwyLjcsNC44LDcuMiwwLDkuOWwtODMsNDcuN2MtNC44LDIuNy0xMi41LDIuNy0xNy4zLDBMMzYuNCw3MC40Yy00LjgtMi43LTQuOC03LjIsMC05LjlsODMtNDcuN2M0LjgtMi43LDEyLjUtMi43LDE3LjMsMAoJTDIyMC45LDYxLjJ6IE0yMy41LDgxLjVjMC01LjUsMy45LTcuNyw4LjYtNWw4NC45LDQ4LjhjNC44LDIuNyw4LjYsOS41LDguNiwxNC45VjIzN2MwLDUuNS0zLjksNy43LTguNiw1bC04NC45LTQ4LjgKCWMtNC44LTIuNy04LjYtOS41LTguNi0xNC45VjgxLjV6IE0xNDEuOCwyNDAuNWMtNC44LDIuNy04LjYsMC41LTguNi01di05NS4zYzAtNS41LDMuOS0xMi4yLDguNi0xNC45TDIyNC4yLDc4CgljNC44LTIuNyw4LjYtMC41LDguNiw1djk1LjNjMCw1LjUtMy45LDEyLjItOC42LDE0LjlMMTQxLjgsMjQwLjV6Ii8+Cjwvc3ZnPgo="},"./src/pages/Version/DetailSidebar/Install/img/pnpm.svg":e=>{"use strict";e.exports="data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHByZXNlcnZlQXNwZWN0UmF0aW89InhNaWRZTWlkIG1lZXQiIHZpZXdCb3g9IjY2LjA5MTU3ODA5NDc0MTQyIDMzLjUgMTg0LjUgMTg0LjQ5OTk5OTk5OTk5OTk3IiB3aWR0aD0iMTgwIiBoZWlnaHQ9IjE4MCI+PGRlZnM+PHBhdGggZD0iTTY3LjU5IDM1TDI0Ny41OSAzNUwyNDcuNTkgMjE1TDY3LjU5IDIxNUw2Ny41OSAzNVoiIGlkPSJiMkpaWmNBM2ZUIj48L3BhdGg+PHBhdGggZD0iTTIzNy42IDk1TDE4Ny42IDk1TDE4Ny42IDQ1TDIzNy42IDQ1TDIzNy42IDk1WiIgaWQ9ImJqMHRiMFk4cSI+PC9wYXRoPjxwYXRoIGQ9Ik0xODIuNTkgOTVMMTMyLjU5IDk1TDEzMi41OSA0NUwxODIuNTkgNDVMMTgyLjU5IDk1WiIgaWQ9ImRrRFNUelBqMyI+PC9wYXRoPjxwYXRoIGQ9Ik0xMjcuNTkgOTVMNzcuNTkgOTVMNzcuNTkgNDVMMTI3LjU5IDQ1TDEyNy41OSA5NVoiIGlkPSJhNHZOZGNOTHBGIj48L3BhdGg+PHBhdGggZD0iTTIzNy42IDE1MEwxODcuNiAxNTBMMTg3LjYgMTAwTDIzNy42IDEwMEwyMzcuNiAxNTBaIiBpZD0iaDJ0NFpqMWpTVSI+PC9wYXRoPjxwYXRoIGQ9Ik0xODIuNTkgMTUwTDEzMi41OSAxNTBMMTMyLjU5IDEwMEwxODIuNTkgMTAwTDE4Mi41OSAxNTBaIiBpZD0iYjR0NXBuZ3d2VCI+PC9wYXRoPjxwYXRoIGQ9Ik0xODIuNTkgMjA1TDEzMi41OSAyMDVMMTMyLjU5IDE1NUwxODIuNTkgMTU1TDE4Mi41OSAyMDVaIiBpZD0iYjlzMWdkNW0yIj48L3BhdGg+PHBhdGggZD0iTTIzNy42IDIwNUwxODcuNiAyMDVMMTg3LjYgMTU1TDIzNy42IDE1NUwyMzcuNiAyMDVaIiBpZD0iY210OVdMdno3Ij48L3BhdGg+PHBhdGggZD0iTTEyNy41OSAyMDVMNzcuNTkgMjA1TDc3LjU5IDE1NUwxMjcuNTkgMTU1TDEyNy41OSAyMDVaIiBpZD0iYkpVTnFnRlNnIj48L3BhdGg+PC9kZWZzPjxnPjxnPjx1c2UgeGxpbms6aHJlZj0iI2IySlpaY0EzZlQiIG9wYWNpdHk9IjEiIGZpbGw9IiNmZmZmZmYiIGZpbGwtb3BhY2l0eT0iMSI+PC91c2U+PC9nPjxnPjx1c2UgeGxpbms6aHJlZj0iI2JqMHRiMFk4cSIgb3BhY2l0eT0iMSIgZmlsbD0iI2Y5YWQwMCIgZmlsbC1vcGFjaXR5PSIxIj48L3VzZT48L2c+PGc+PHVzZSB4bGluazpocmVmPSIjZGtEU1R6UGozIiBvcGFjaXR5PSIxIiBmaWxsPSIjZjlhZDAwIiBmaWxsLW9wYWNpdHk9IjEiPjwvdXNlPjwvZz48Zz48dXNlIHhsaW5rOmhyZWY9IiNhNHZOZGNOTHBGIiBvcGFjaXR5PSIxIiBmaWxsPSIjZjlhZDAwIiBmaWxsLW9wYWNpdHk9IjEiPjwvdXNlPjwvZz48Zz48dXNlIHhsaW5rOmhyZWY9IiNoMnQ0WmoxalNVIiBvcGFjaXR5PSIxIiBmaWxsPSIjZjlhZDAwIiBmaWxsLW9wYWNpdHk9IjEiPjwvdXNlPjwvZz48Zz48dXNlIHhsaW5rOmhyZWY9IiNiNHQ1cG5nd3ZUIiBvcGFjaXR5PSIxIiBmaWxsPSIjNGU0ZTRlIiBmaWxsLW9wYWNpdHk9IjEiPjwvdXNlPjwvZz48Zz48dXNlIHhsaW5rOmhyZWY9IiNiOXMxZ2Q1bTIiIG9wYWNpdHk9IjEiIGZpbGw9IiM0ZTRlNGUiIGZpbGwtb3BhY2l0eT0iMSI+PC91c2U+PC9nPjxnPjx1c2UgeGxpbms6aHJlZj0iI2NtdDlXTHZ6NyIgb3BhY2l0eT0iMSIgZmlsbD0iIzRlNGU0ZSIgZmlsbC1vcGFjaXR5PSIxIj48L3VzZT48L2c+PGc+PHVzZSB4bGluazpocmVmPSIjYkpVTnFnRlNnIiBvcGFjaXR5PSIxIiBmaWxsPSIjNGU0ZTRlIiBmaWxsLW9wYWNpdHk9IjEiPjwvdXNlPjwvZz48L2c+PC9zdmc+"},"./src/pages/Version/DetailSidebar/Install/img/yarn.svg":e=>{"use strict";e.exports="data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTE4IDUxOCI+PHN0eWxlPi5zdDB7ZmlsbDojMmM4ZWJifS5zdDF7ZmlsbDojZmZmfTwvc3R5bGU+PHBhdGggY2xhc3M9InN0MCIgZD0iTTI1OSAwYzE0MyAwIDI1OSAxMTYgMjU5IDI1OVM0MDIgNTE4IDI1OSA1MTggMCA0MDIgMCAyNTkgMTE2IDAgMjU5IDB6Ii8+PHBhdGggY2xhc3M9InN0MSIgZD0iTTQzNS4yIDMzNy41Yy0xLjgtMTQuMi0xMy44LTI0LTI5LjItMjMuOC0yMyAuMy00Mi4zIDEyLjItNTUuMSAyMC4xLTUgMy4xLTkuMyA1LjQtMTMgNy4xLjgtMTEuNi4xLTI2LjgtNS45LTQzLjUtNy4zLTIwLTE3LjEtMzIuMy0yNC4xLTM5LjQgOC4xLTExLjggMTkuMi0yOSAyNC40LTU1LjYgNC41LTIyLjcgMy4xLTU4LTcuMi03Ny44LTIuMS00LTUuNi02LjktMTAtOC4xLTEuOC0uNS01LjItMS41LTExLjkuNEMyOTMuMSA5NiAyODkuNiA5My44IDI4Ni45IDkyYy01LjYtMy42LTEyLjItNC40LTE4LjQtMi4xLTguMyAzLTE1LjQgMTEtMjIuMSAyNS4yLTEgMi4xLTEuOSA0LjEtMi43IDYuMS0xMi43LjktMzIuNyA1LjUtNDkuNiAyMy44LTIuMSAyLjMtNi4yIDQtMTAuNSA1LjZoLjFjLTguOCAzLjEtMTIuOCAxMC4zLTE3LjcgMjMuMy02LjggMTguMi4yIDM2LjEgNy4xIDQ3LjctOS40IDguNC0yMS45IDIxLjgtMjguNSAzNy41LTguMiAxOS40LTkuMSAzOC40LTguOCA0OC43LTcgNy40LTE3LjggMjEuMy0xOSAzNi45LTEuNiAyMS44IDYuMyAzNi42IDkuOCA0MiAxIDEuNiAyLjEgMi45IDMuMyA0LjItLjQgMi43LS41IDUuNi4xIDguNiAxLjMgNyA1LjcgMTIuNyAxMi40IDE2LjMgMTMuMiA3IDMxLjYgMTAgNDUuOCAyLjkgNS4xIDUuNCAxNC40IDEwLjYgMzEuMyAxMC42aDFjNC4zIDAgNTguOS0yLjkgNzQuOC02LjggNy4xLTEuNyAxMi00LjcgMTUuMi03LjQgMTAuMi0zLjIgMzguNC0xMi44IDY1LTMwIDE4LjgtMTIuMiAyNS4zLTE0LjggMzkuMy0xOC4yIDEzLjYtMy4zIDIyLjEtMTUuNyAyMC40LTI5LjR6bS0yMy44IDE0LjdjLTE2IDMuOC0yNC4xIDcuMy00My45IDIwLjItMzAuOSAyMC02NC43IDI5LjMtNjQuNyAyOS4zcy0yLjggNC4yLTEwLjkgNi4xYy0xNCAzLjQtNjYuNyA2LjMtNzEuNSA2LjQtMTIuOS4xLTIwLjgtMy4zLTIzLTguNi02LjctMTYgOS42LTIzIDkuNi0yM3MtMy42LTIuMi01LjctNC4yYy0xLjktMS45LTMuOS01LjctNC41LTQuMy0yLjUgNi4xLTMuOCAyMS0xMC41IDI3LjctOS4yIDkuMy0yNi42IDYuMi0zNi45LjgtMTEuMy02IC44LTIwLjEuOC0yMC4xcy02LjEgMy42LTExLTMuOGMtNC40LTYuOC04LjUtMTguNC03LjQtMzIuNyAxLjItMTYuMyAxOS40LTMyLjEgMTkuNC0zMi4xcy0zLjItMjQuMSA3LjMtNDguOGM5LjUtMjIuNSAzNS4xLTQwLjYgMzUuMS00MC42cy0yMS41LTIzLjgtMTMuNS00NS4yYzUuMi0xNCA3LjMtMTMuOSA5LTE0LjUgNi0yLjMgMTEuOC00LjggMTYuMS05LjUgMjEuNS0yMy4yIDQ4LjktMTguOCA0OC45LTE4LjhzMTMtMzkuNSAyNS0zMS44YzMuNyAyLjQgMTcgMzIgMTcgMzJzMTQuMi04LjMgMTUuOC01LjJjOC42IDE2LjcgOS42IDQ4LjYgNS44IDY4LTYuNCAzMi0yMi40IDQ5LjItMjguOCA2MC0xLjUgMi41IDE3LjIgMTAuNCAyOSA0My4xIDEwLjkgMjkuOSAxLjIgNTUgMi45IDU3LjguMy41LjQuNy40LjdzMTIuNSAxIDM3LjYtMTQuNWMxMy40LTguMyAyOS4zLTE3LjYgNDcuNC0xNy44IDE3LjUtLjMgMTguNCAyMC4yIDUuMiAyMy40eiIvPjwvc3ZnPg=="},"./src/pages/Version/DetailSidebar/Repository/img/git.png":e=>{"use strict";e.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAX8AAAF/CAMAAACWmjlVAAAAM1BMVEXwUDPwUDPwUDPwUDPwUDPwUDPwUDPwUDPwUDPwUDPwUDPwUDPwUDPwUDPwUDPwUDPwUDPNJiJ+AAAAEHRSTlMA8DAQ0KDAQGCA4CCQUHCw+BUOAQAACLtJREFUeAHs0YNhRQEAwMBv4+0/bW0zxWWE3Oi3tl8vNsN548VuPx19Y1rOx8PdjntXvqvVZnikzcqZ72iyGJ5otnTny1sPz7Tz52ubHodnm009+sr9s+GFZluXkv1XjSc+BfsBBPsBBPsBZPsBpPsBpPsBpPsBpPsBpPsBpPsBpPsBpPsBpPsBpPsBtPt7APt7APt7APt7APt7APt7APt7APt7APt7APt7APt7APt7APt7APt7APt7APt7APt7APt7APt7APt7AP8BAAAgAAAEAIAABAEAIAAABACAAAD4N38BpPtncwBNV28BpPsBpPsBpPsBpPsBpPsBpPsBpPsBpPsBpPsBpPsBpPsBpPsBpPsBpPsBpPsBpPsBpPsBpPsBpPsB1PsB9PsB9PsB9PsB9Ps/DnDC3n0gWYoDURR9QgaE+7n/1c6Eb28yWnGJRG8FXed28W2J1s7ee21lBvDx+wOkun1ps96fGcDB7wjws+WtAAHC8fsDSGsLEIDn9wfQWgIE4Pn9AdRngC/4gQDLHiAAz29W5+HdJL8/gGqgAH7+GQDlRwMUOADPzwbIOxqA56cDLAYG4Pn5ADcZgOfnAxQwAM/PB1gNDMDz8wEaGIDn5wOsBgSIyG92ybMGBAjJn7I824wLwPPzDwDZgAAB+e2Sbx8gQEB+y9xrMD4Az1/k3GJAgHD8dso7AwKE47cu7woQIBy/rfKuGReA5+f9TwMCROO3Rd51AwJE4zdx/nwAnt8y588H4PltBf39AXh+3v9jQIBo/LZxzz/5ADy/dXmXDAgQjd8+cu4wAwJE47ck5y7jAvD8/AuwakCAePx2y7fduAA8P/8BQDIuAM/PX4AWIEBEfquaAUB+s2MGIPmtagYA+c2WGYDkt6YZAOQ3u2cAkt9smQFIfkt5BgD5zcoMwPDPADz/DMDzm+1LgAA0/3wayvP7144IAXh+/84cIADP71+qOUAAnt+/VXED+Pl5/yVAAD8/79+2AAH8/Ly/RQjg5+f9IwTw8/P+EQL4+Xn/CAH8/Lx/hAB+ft4/QgA/P+8fIYCfn/ePEMDPz/tHCODn5/0jBPDz8/4RAvj5ef8IAfz8vH+EAH5+3j9CAD8/7x8hgJ+f948QwM/P+wcIkIsF8H9iAIAf8H9wAIAf8H9wAIAf8PcFKLVv6/+7+tmAAAP4AX9ngHau+mrruQMBcrGI/rbJsaUOCQDwo/7+ADrOEQEAftbfH0BHGxAA4If9/QG0pQEBAH7Y3x9gKQMCAPywvz9AbgMCAPyAvyMAcDtbgB/wf1gAgB/w9wcY7JOOEef08v6jAqSRf8vcLYz/qADrwBN1FovjPyzAOe5Y5RbIf1iAvI86UWezQP7jAmyjrkB7JP+BAfYx91VcLZK/IwD8C1Df55/k2phHgPQ+//qUp0BVuux9/stTbueZpP4+/yQ95wLU3uf/eczbcHZrf5//LT3lJUCVvc9/1XPeBHqjf37O/ZzTG/31HH97of8u8n5607+F8/dv+ifjNv3LgKSBr//F/vGaTuM2n/+cuozbfP6/KRu3+fr3kD6v8+9y7h5xY8vLqM33P+9Xfv6eHnM78/zG75+YXXJtGXRXxTI//2UuP4fjYT2Cf8qP+A7u6fhgP4S/3U/49GvPjtfVMfx3ObaP+yFyeZe/df7J/+04giKMf8r01b9KQADa3/8a7DOAHwjA+vu/g3sN4AcD8P5pAW+cVCU2AO9vJWN//1gdkcP5W8kcPx+A97eSOX4+AO9vJXP8fADe39JKPPQCAWh//wvhbsP4+QC8v5VVv9haRvLzAXh/s/bTAsfHBvPzAXh/s7bpB7uaAfxAANzfLNXt0BfLV00G8AMBUP8vt7fe73W9e2+7mQH8QADAH1qVuADTv0pcgOlfJS7A9K8SF2D6V4kLMP2rxAWY/lXiAkz/KnEBpn+VuADTv0pcgOlfJS7A9K8SF2D6V4kLMP2rxAWY/lXiAkz/KnEBpn+VuADTv0pcgOlfJS7A9K8SF2D6V4kLMP2rxAWY/lUKHWDv2eEP8IcMkLrk+MImwB8ywCfrV1t3nj9wgHTpN8snzR84QDkcd0wG+IMGaNn7L+T5+QDxv79dpcABmuNfCPBHDVAydlInz88HSAt3Wg/Pzwe4gKPKaX4+gP+8niMB/GEDpEN/uw7whw3QkfPyeH4+gP/Azg3gDxrglGcJ4I8Z4JBnHeAPGaDItQPgDxnglm8F4I8Y4JBvJ8AfMMAu51aAP2CAj7wD+AMG6PJuB/jjBbjkXQP44wVY5d0J8vMBeP8O8McLIMSf5+cD8P48Px9gAf15fj7A6vcH+fkAvH8D+OMF6PKugPx8AP7njcDPByhybgH4IwbI8u0G+CMG2OTbh+PnA/A/dA7CzwfI8mwD+fkA/AWoAPwxA+xybAX5+QD8L0AD+KMG2DP435/n5wN08rNfnp8PsIBvffL8fICSwasPz88HqOBfv1RpBujs/XpngO3p/DPA5OcfAw6AP1wA/wkcVxrHPwOky3H8D8AfNoC1Qz/fto/mnwGsHg59gD9sAGtb1rc7+m6T3xHAt09fv7C/zmI2+V0B/Ev/tUcXBw5AARBCiUzc+q927bTufyJQAm/x1OlfCgjQKyCA+8cDuF+AgADuHw/gfgECArh/PID7BQgI4P7xAO4XICCA+8cDuF+AgADuHw/gfgECArh/PID7BQjcKID7BQgIcKP7BQgIcKP7BQgIcKP7BQjFBAjFBAjFBAjFBAjFBAjFBAjFBAjFBAjFBAjFBAjFBAjFBAjFBAjFBAjFBAjFBAjFBAjFBAjFBAjFBAjFBAjFBAjfzLZz91ebza9ivwChmAChmAChmAChmAChmAChmAChmAChmAChmAChmAChmAChmAChmAChmAChmAChmAChmAChmAChmADhPxNgcfqwA/+brU/vt1ny39l0cXqn3YwB2fJNgWwZlE0zOT1rfpgxNAkOWTwizBe71ZYL7Q7H02m600+YOAAAAABJRU5ErkJggg=="},"data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27 version=%271.1%27 width=%2716%27 height=%2716%27 aria-hidden=%27true%27%3E%3Cpath fill-rule=%27evenodd%27 d=%27M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z%27%3E%3C/path%3E%3C/svg%3E":e=>{"use strict";e.exports="data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27 version=%271.1%27 width=%2716%27 height=%2716%27 aria-hidden=%27true%27%3E%3Cpath fill-rule=%27evenodd%27 d=%27M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z%27%3E%3C/path%3E%3C/svg%3E"},"./src/i18n/crowdin/ui.json":e=>{"use strict";e.exports=JSON.parse('{"copy-to-clipboard":"Copy to clipboard","author-anonymous":"Anonymous","author-unknown":"Unknown","action-bar-action":{"visit-home-page":"Visit homepage","open-an-issue":"Open an issue","download-tarball":"Download tarball"},"dialog":{"registry-info":{"title":"Registry Info"}},"header":{"documentation":"Documentation","registry-info":"Registry Information","registry-info-link":"Learn more","registry-no-conf":"No configurations available","greetings":"Hi "},"search":{"packages":"Search Packages"},"autoComplete":{"loading":"Loading...","no-results-found":"No results found","clear":"Clear","expand":"Expand","collapse":"Collapse"},"tab":{"uplinks":"Uplinks","versions":"Versions","dependencies":"Dependencies","readme":"Readme"},"uplinks":{"title":"Uplinks","no-items":"{{name}} has no uplinks."},"versions":{"current-tags":"Current Tags","version-history":"Version history","not-available":"Not available"},"package":{"published-on":"Published on {{time}} •","version":"v{{version}}","visit-home-page":"Visit homepage","homepage":"Homepage","open-an-issue":"Open an issue","bugs":"Bugs","download":"Download {{what}}","the-tar-file":"the tar file","tarball":"Tarball"},"dependencies":{"has-no-dependencies":"{{package}} has no dependencies.","dependency-block":"{{package}}@{{version}}"},"form":{"username":"Username","password":"Password"},"form-placeholder":{"username":"Your username","password":"Your strong password"},"form-validation":{"required-field":"This field is required","required-min-length":"This field required the min length of {{length}}","unable-to-sign-in":"Unable to sign in","username-or-password-cant-be-empty":"Username or password can\'t be empty!"},"help":{"title":"No Package Published Yet.","sub-title":"To publish your first package just:","first-step":"1. Login","first-step-command-line":"npm adduser --registry {{registryUrl}}","second-step":"2. Publish","second-step-command-line":"npm publish --registry {{registryUrl}}","third-step":"3. Refresh this page"},"sidebar":{"detail":{"latest-version":"Latest v{{version}}","version":"v{{version}}"},"installation":{"title":"Installation","install-using-yarn":"Install using yarn","install-using-yarn-command":"yarn add {{packageName}}","install-using-npm":"Install using npm","install-using-npm-command":"npm install {{packageName}}","install-using-pnpm":"Install using pnpm","install-using-pnpm-command":"pnpm install {{packageName}}"},"repository":{"title":"Repository"},"author":{"title":"Author"},"distribution":{"title":"Latest Distribution","license":"License","size":"Size","file-count":"file count"},"maintainers":{"title":"Maintainers"},"contributors":{"title":"Contributors"},"engines":{"npm-version":"NPM Version","node-js":"NODE JS"}},"footer":{"powered-by":"Powered by","made-with-love-on":"Made with <0>♥</0> on"},"button":{"close":"Close","cancel":"Cancel","login":"Login","logout":"Logout","go-to-the-home-page":"Go to the home page","learn-more":"Learn More","fund-this-package":"<0>Fund</0> this package"},"error":{"404":{"page-not-found":"404 - Page not found","sorry-we-could-not-find-it":"Sorry, we couldn\'t find it..."},"unspecific":"Something went wrong.","app-context-not-correct-used":"The app context was not used correctly","theme-context-not-correct-used":"The theme context was not used correctly","package-meta-is-required-at-detail-context":"packageMeta is required at DetailContext"},"lng":{"english":"English","czech":"Czech","japanese":"Japanese","portuguese":"Portuguese","spanish":"Spanish","german":"German","chinese":"Chinese","chineseTraditional":"Chinese (Traditional)","french":"French","russian":"Russian","turkish":"Turkish","ukraine":"Ukraine","khmer":"Khmer"},"flag":{"austria":"Austria","brazil":"Brazil","spain":"Spain","nicaragua":"Nicaragua","india":"India","china":"China","germany":"Germany","taiwan":"Taiwan"}}')},"./src/i18n/download_translations/ar-SA/ui.json":e=>{"use strict";e.exports=JSON.parse('{"copy-to-clipboard":"Copy to clipboard","author-anonymous":"Anonymous","author-unknown":"Unknown","action-bar-action":{"visit-home-page":"Visit homepage","open-an-issue":"Open an issue","download-tarball":"Download tarball"},"dialog":{"registry-info":{"title":"Registry Info"}},"header":{"documentation":"Documentation","registry-info":"Registry Information","registry-info-link":"Learn more","registry-no-conf":"No configurations available","greetings":"مرحبا"},"search":{"packages":"حزم البحث"},"autoComplete":{"loading":"تحميل...","no-results-found":"لم يتم العثور على نتائج","clear":"واضح","expand":"Expand","collapse":"Collapse"},"tab":{"uplinks":"Uplinks","versions":"Versions","dependencies":"Dependencies","readme":"Readme"},"uplinks":{"title":"Uplinks","no-items":"{{name}} has no uplinks."},"versions":{"current-tags":"Current Tags","version-history":"Version history","not-available":"Not available"},"package":{"published-on":"Published on {{time}} •","version":"v{{version}}","visit-home-page":"Visit homepage","homepage":"Homepage","open-an-issue":"Open an issue","bugs":"Bugs","download":"Download {{what}}","the-tar-file":"the tar file","tarball":"Tarball"},"dependencies":{"has-no-dependencies":"{{package}} has no dependencies.","dependency-block":"{{package}}@{{version}}"},"form":{"username":"Username","password":"Password"},"form-placeholder":{"username":"Your username","password":"Your strong password"},"form-validation":{"required-field":"This field is required","required-min-length":"This field required the min length of {{length}}","unable-to-sign-in":"Unable to sign in","username-or-password-cant-be-empty":"Username or password can\'t be empty!"},"help":{"title":"No Package Published Yet.","sub-title":"To publish your first package just:","first-step":"1. Login","first-step-command-line":"npm adduser --registry {{registryUrl}}","second-step":"2. Publish","second-step-command-line":"npm publish --registry {{registryUrl}}","third-step":"3. Refresh this page"},"sidebar":{"detail":{"latest-version":"Latest v{{version}}","version":"v{{version}}"},"installation":{"title":"Installation","install-using-yarn":"Install using yarn","install-using-yarn-command":"yarn add {{packageName}}","install-using-npm":"Install using npm","install-using-npm-command":"npm install {{packageName}}","install-using-pnpm":"Install using pnpm","install-using-pnpm-command":"pnpm install {{packageName}}"},"repository":{"title":"Repository"},"author":{"title":"Author"},"distribution":{"title":"Latest Distribution","license":"License","size":"Size","file-count":"file count"},"maintainers":{"title":"Maintainers"},"contributors":{"title":"Contributors"},"engines":{"npm-version":"NPM Version","node-js":"NODE JS"}},"footer":{"powered-by":"Powered by","made-with-love-on":"Made with <0>♥</0> on"},"button":{"close":"Close","cancel":"Cancel","login":"Login","logout":"Logout","go-to-the-home-page":"Go to the home page","learn-more":"Learn More","fund-this-package":"<0>Fund</0> this package"},"error":{"404":{"page-not-found":"404 - Page not found","sorry-we-could-not-find-it":"Sorry, we couldn\'t find it..."},"unspecific":"Something went wrong.","app-context-not-correct-used":"The app context was not used correctly","theme-context-not-correct-used":"The theme context was not used correctly","package-meta-is-required-at-detail-context":"packageMeta is required at DetailContext"},"lng":{"english":"English","czech":"Czech","japanese":"Japanese","portuguese":"Portuguese","spanish":"Spanish","german":"German","chinese":"Chinese","chineseTraditional":"Chinese (Traditional)","french":"French","russian":"Russian","turkish":"Turkish","ukraine":"Ukraine","khmer":"Khmer"},"flag":{"austria":"Austria","brazil":"Brazil","spain":"Spain","nicaragua":"Nicaragua","india":"India","china":"China","germany":"Germany","taiwan":"Taiwan"}}')},"./src/i18n/download_translations/cs-CZ/ui.json":e=>{"use strict";e.exports=JSON.parse('{"copy-to-clipboard":"Copy to clipboard","author-anonymous":"Anonymous","author-unknown":"Unknown","action-bar-action":{"visit-home-page":"Visit homepage","open-an-issue":"Open an issue","download-tarball":"Download tarball"},"dialog":{"registry-info":{"title":"Registry Info"}},"header":{"documentation":"Documentation","registry-info":"Registry Information","registry-info-link":"Learn more","registry-no-conf":"No configurations available","greetings":"Hi "},"search":{"packages":"Search Packages"},"autoComplete":{"loading":"Loading...","no-results-found":"No results found","clear":"Clear","expand":"Expand","collapse":"Collapse"},"tab":{"uplinks":"Uplinks","versions":"Versions","dependencies":"Dependencies","readme":"Readme"},"uplinks":{"title":"Uplinks","no-items":"{{name}} has no uplinks."},"versions":{"current-tags":"Current Tags","version-history":"Version history","not-available":"Not available"},"package":{"published-on":"Published on {{time}} •","version":"v{{version}}","visit-home-page":"Visit homepage","homepage":"Homepage","open-an-issue":"Open an issue","bugs":"Bugs","download":"Download {{what}}","the-tar-file":"the tar file","tarball":"Tarball"},"dependencies":{"has-no-dependencies":"{{package}} has no dependencies.","dependency-block":"{{package}}@{{version}}"},"form":{"username":"Username","password":"Password"},"form-placeholder":{"username":"Your username","password":"Your strong password"},"form-validation":{"required-field":"This field is required","required-min-length":"This field required the min length of {{length}}","unable-to-sign-in":"Unable to sign in","username-or-password-cant-be-empty":"Username or password can\'t be empty!"},"help":{"title":"No Package Published Yet.","sub-title":"To publish your first package just:","first-step":"1. Login","first-step-command-line":"npm adduser --registry {{registryUrl}}","second-step":"2. Publish","second-step-command-line":"npm publish --registry {{registryUrl}}","third-step":"3. Refresh this page"},"sidebar":{"detail":{"latest-version":"Latest v{{version}}","version":"v{{version}}"},"installation":{"title":"Installation","install-using-yarn":"Install using yarn","install-using-yarn-command":"yarn add {{packageName}}","install-using-npm":"Install using npm","install-using-npm-command":"npm install {{packageName}}","install-using-pnpm":"Install using pnpm","install-using-pnpm-command":"pnpm install {{packageName}}"},"repository":{"title":"Repository"},"author":{"title":"Author"},"distribution":{"title":"Latest Distribution","license":"License","size":"Size","file-count":"file count"},"maintainers":{"title":"Maintainers"},"contributors":{"title":"Contributors"},"engines":{"npm-version":"NPM Version","node-js":"NODE JS"}},"footer":{"powered-by":"Powered by","made-with-love-on":"Made with <0>♥</0> on"},"button":{"close":"Close","cancel":"Cancel","login":"Login","logout":"Logout","go-to-the-home-page":"Go to the home page","learn-more":"Learn More","fund-this-package":"<0>Fund</0> this package"},"error":{"404":{"page-not-found":"404 - Page not found","sorry-we-could-not-find-it":"Sorry, we couldn\'t find it..."},"unspecific":"Something went wrong.","app-context-not-correct-used":"The app context was not used correctly","theme-context-not-correct-used":"The theme context was not used correctly","package-meta-is-required-at-detail-context":"packageMeta is required at DetailContext"},"lng":{"english":"Anglicky","czech":"Czech","japanese":"Japonština","portuguese":"Portuguese","spanish":"Španělsky","german":"Německy","chinese":"Čínsky","chineseTraditional":"Chinese (Traditional)","french":"Francouzsky","russian":"Russian","turkish":"Turkish","ukraine":"Ukraine","khmer":"Khmer"},"flag":{"austria":"Austria","brazil":"Brazil","spain":"Spain","nicaragua":"Nicaragua","india":"India","china":"China","germany":"Germany","taiwan":"Taiwan"}}')},"./src/i18n/download_translations/de-DE/ui.json":e=>{"use strict";e.exports=JSON.parse('{"copy-to-clipboard":"In die Zwischenablage kopieren","author-anonymous":"Anonym","author-unknown":"Unbekannt","action-bar-action":{"visit-home-page":"Website besuchen","open-an-issue":"Ein Issue erstellen","download-tarball":"Tarball herunterladen"},"dialog":{"registry-info":{"title":"Registry-Info"}},"header":{"documentation":"Dokumentation","registry-info":"Registry-Informationen","registry-info-link":"Mehr erfahren","registry-no-conf":"Keine Konfigurationen verfügbar","greetings":"Hi "},"search":{"packages":"Pakete durchsuchen"},"autoComplete":{"loading":"Laden...","no-results-found":"Keine Resultate gefunden","clear":"Leeren","expand":"Ausklappen","collapse":"Einklappen"},"tab":{"uplinks":"Uplinks","versions":"Versionen","dependencies":"Abhängigkeiten","readme":"Readme"},"uplinks":{"title":"Uplinks","no-items":"{{name}} hat keine Uplinks."},"versions":{"current-tags":"Aktuelle Tags","version-history":"Versionsgeschichte","not-available":"Nicht verfügbar"},"package":{"published-on":"Am {{time}} veröffentlicht •","version":"v{{version}}","visit-home-page":"Website besuchen","homepage":"Website","open-an-issue":"Ein Issue erstellen","bugs":"Bugs","download":"{{what}} herunterladen","the-tar-file":"die Tar-Datei","tarball":"Tarball"},"dependencies":{"has-no-dependencies":"{{package}} hat keine Abhängigkeiten.","dependency-block":"{{package}}@{{version}}"},"form":{"username":"Nutzername","password":"Passwort"},"form-placeholder":{"username":"Ihr Nutzername","password":"Ihr starkes Passwort"},"form-validation":{"required-field":"Dies ist ein Pflichtfeld","required-min-length":"Das Feld benötigt eine Minimallänge von {{length}}","unable-to-sign-in":"Anmelden nicht möglich","username-or-password-cant-be-empty":"Nutzername und Passwort können nicht leer sein!"},"help":{"title":"Es gibt noch keine veröffentlichten Pakete.","sub-title":"Um Ihr erstes Paket zu veröffentlichen, müssen Sie nur:","first-step":"1. Einloggen","first-step-command-line":"npm adduser --registry {{registryUrl}}","second-step":"2. Veröffentlichen","second-step-command-line":"npm publish --registry {{registryUrl}}","third-step":"3. Diese Seite aktualisieren"},"sidebar":{"detail":{"latest-version":"Neueste v{{version}}","version":"v{{version}}"},"installation":{"title":"Installation","install-using-yarn":"Mit yarn installieren","install-using-yarn-command":"yarn add {{packageName}}","install-using-npm":"Mit npm installieren","install-using-npm-command":"npm install {{packageName}}","install-using-pnpm":"Mit pnpm installieren","install-using-pnpm-command":"pnpm install {{packageName}}"},"repository":{"title":"Repository"},"author":{"title":"Autor"},"distribution":{"title":"Neueste Veröffentlichung","license":"Lizenz","size":"Größe","file-count":"Anzahl der Dateien"},"maintainers":{"title":"Maintainer"},"contributors":{"title":"Contributor"},"engines":{"npm-version":"NPM-Version","node-js":"NODE JS"}},"footer":{"powered-by":"Umgesetzt mit","made-with-love-on":"Gemacht mit <0>♥</0> in"},"button":{"close":"Schließen","cancel":"Abbrechen","login":"Einloggen","logout":"Ausloggen","go-to-the-home-page":"Zur Startseite gehen","learn-more":"Mehr erfahren","fund-this-package":"Dieses Paket <0>unterstützen</0>"},"error":{"404":{"page-not-found":"404 - Seite konnte nicht gefunden werden","sorry-we-could-not-find-it":"Sorry, das haben wir nicht gefunden..."},"unspecific":"Etwas ist schiefgegangen.","app-context-not-correct-used":"Der App-Kontext wurde nicht korrekt benutzt","theme-context-not-correct-used":"Der Theme-Kontext wurde nicht korrekt benutzt","package-meta-is-required-at-detail-context":"packageMetadata wird im DetailContext zwingend benötigt"},"lng":{"english":"Englisch","czech":"Tschechisch","japanese":"Japanisch","portuguese":"Portugiesisch","spanish":"Spanisch","german":"Deutsch","chinese":"Chinesisch","chineseTraditional":"Chinesisch (traditionelles)","french":"Französisch","russian":"Russisch","turkish":"Türkisch","ukraine":"Ukraine","khmer":"Khmer"},"flag":{"austria":"Österreich","brazil":"Brasilien","spain":"Spanien","nicaragua":"Nicaragua","india":"Indien","china":"China","germany":"Deutschland","taiwan":"Taiwan"}}')},"./src/i18n/download_translations/es-ES/ui.json":e=>{"use strict";e.exports=JSON.parse('{"copy-to-clipboard":"Copiar al portapapeles","author-anonymous":"Anónimo","author-unknown":"Desconocido","action-bar-action":{"visit-home-page":"Visitar página principal","open-an-issue":"Reportar un error","download-tarball":"Descargar librería"},"dialog":{"registry-info":{"title":"Información del Registro"}},"header":{"documentation":"Documentación","registry-info":"Información del Registro","registry-info-link":"Aprender mas","registry-no-conf":"No hay configuración disponible","greetings":"Hola "},"search":{"packages":"Buscar paquetes"},"autoComplete":{"loading":"Cargando...","no-results-found":"No se encontraron resultados","clear":"Borrar","expand":"Expandir","collapse":"Colapsar"},"tab":{"uplinks":"Uplinks","versions":"Versiones","dependencies":"Dependencias","readme":"Léeme"},"uplinks":{"title":"Uplinks","no-items":"{{name}} no tiene uplinks."},"versions":{"current-tags":"Etiquetas actuales","version-history":"Historial de versiones","not-available":"No disponible"},"package":{"published-on":"Publicado en {{time}} •","version":"v{{version}}","visit-home-page":"Visitar página principal","homepage":"Página principal","open-an-issue":"Reportar un error","bugs":"Error","download":"Descargar {{what}}","the-tar-file":"el archivo tar","tarball":"Librería"},"dependencies":{"has-no-dependencies":"{{package}} no tiene dependencias.","dependency-block":"{{package}}@{{version}}"},"form":{"username":"Usuario","password":"Contraseña"},"form-placeholder":{"username":"Tu usuario","password":"Tu contraseña segura"},"form-validation":{"required-field":"Este campo es requerido","required-min-length":"Este campo es requerido y la mínima longitud es {{length}}","unable-to-sign-in":"No se pudo iniciar sesión","username-or-password-cant-be-empty":"El nombre de usuario o la contraseña no pueden estar vacíos!"},"help":{"title":"Ningún paquete ha sido publicado aún.","sub-title":"Para publicar tu primer paquete:","first-step":"1. Inicia sesión","first-step-command-line":"npm adduser --registry {{registryUrl}}","second-step":"2. Publica","second-step-command-line":"npm publish --registry {{registryUrl}}","third-step":"3. Refresca la página"},"sidebar":{"detail":{"latest-version":"Última v{{version}}","version":"v{{version}}"},"installation":{"title":"Instalación","install-using-yarn":"Instala usando yarn","install-using-yarn-command":"yarn add {{packageName}}","install-using-npm":"Instala usando npm","install-using-npm-command":"npm install {{packageName}}","install-using-pnpm":"Instala usando pnpm","install-using-pnpm-command":"pnpm install {{packageName}}"},"repository":{"title":"Repositorio"},"author":{"title":"Author"},"distribution":{"title":"Latest Distribution","license":"License","size":"Size","file-count":"file count"},"maintainers":{"title":"Maintainers"},"contributors":{"title":"Contributors"},"engines":{"npm-version":"NPM Version","node-js":"NODE JS"}},"footer":{"powered-by":"Powered by","made-with-love-on":"Made with <0>♥</0> on"},"button":{"close":"Close","cancel":"Cancel","login":"Login","logout":"Logout","go-to-the-home-page":"Go to the home page","learn-more":"Learn More","fund-this-package":"<0>Fund</0> this package"},"error":{"404":{"page-not-found":"404 - Page not found","sorry-we-could-not-find-it":"Sorry, we couldn\'t find it..."},"unspecific":"Something went wrong.","app-context-not-correct-used":"The app context was not used correctly","theme-context-not-correct-used":"The theme context was not used correctly","package-meta-is-required-at-detail-context":"packageMeta is required at DetailContext"},"lng":{"english":"English","czech":"Czech","japanese":"Japanese","portuguese":"Portuguese","spanish":"Spanish","german":"German","chinese":"Chinese","chineseTraditional":"Chinese (Traditional)","french":"French","russian":"Russian","turkish":"Turkish","ukraine":"Ukraine","khmer":"Khmer"},"flag":{"austria":"Austria","brazil":"Brazil","spain":"Spain","nicaragua":"Nicaragua","india":"India","china":"China","germany":"Germany","taiwan":"Taiwan"}}')},"./src/i18n/download_translations/fi-FI/ui.json":e=>{"use strict";e.exports=JSON.parse('{"copy-to-clipboard":"Kopioi leikepöydälle","author-anonymous":"Anonyymi","author-unknown":"Tuntematon","action-bar-action":{"visit-home-page":"Vieraile kotisivulla","open-an-issue":"Luo virheilmoitus","download-tarball":"Lataa tarball"},"dialog":{"registry-info":{"title":"Rekistrin tiedot"}},"header":{"documentation":"Dokumentaatio","registry-info":"Rekisterin tiedot","registry-info-link":"Hei ","registry-no-conf":"Hae paketteja","greetings":"Hei "},"search":{"packages":"Hae paketteja"},"autoComplete":{"loading":"Ladataan...","no-results-found":"Ei hakutuloksia","clear":"Tyhjennä","expand":"Avaa","collapse":"Sulje"},"tab":{"uplinks":"Uplinkit","versions":"Versiot","dependencies":"Vaatimukset","readme":"Readme"},"uplinks":{"title":"Uplinkit","no-items":"{{name}}:llä ei ole uplinkkejä"},"versions":{"current-tags":"Tagit","version-history":"Versiohistoria","not-available":"Ei saatavilla"},"package":{"published-on":"Julkaistu {{time}} •","version":"v{{version}}","visit-home-page":"Vieraile kotisivulla","homepage":"Mene etusivulle","open-an-issue":"Avaa virheilmoitus","bugs":"Bugit","download":"Lataa {{what}}","the-tar-file":"tar-tiedosto","tarball":"Tarball"},"dependencies":{"has-no-dependencies":"{{package}}:lla ei ole vaatimuksia.","dependency-block":"{{package}}@{{version}}"},"form":{"username":"Käyttäjänimi","password":"Salasana"},"form-placeholder":{"username":"Sinun käyttäjänimi","password":"Sinun vahva salasana"},"form-validation":{"required-field":"Tämä kenttä on pakollinen","required-min-length":"Tämän kentän täytyy olla vähintään {{length}} merkkiä pitkä","unable-to-sign-in":"Sisäänkirjautuminen ei ole mahdollista","username-or-password-cant-be-empty":"Käyttäjänimi tai salasana ei voi olla tyhjä!"},"help":{"title":"Ei pakettia julkaistu.","sub-title":"Julkaistaksesi paketin:","first-step":"1. Kirjaudu","first-step-command-line":"npm adduser --registry {{registryUrl}}","second-step":"2. Julkaise","second-step-command-line":"npm publish --registry {{registryUrl}}","third-step":"3. Uudelleenlataa tämä sivu"},"sidebar":{"detail":{"latest-version":"Viimeisin v{{version}}","version":"v{{version}}"},"installation":{"title":"Installation","install-using-yarn":"Asenna käyttäen yarn","install-using-yarn-command":"yarn add {{packageName}}","install-using-npm":"Asenna käyttäen npm","install-using-npm-command":"npm install {{packageName}}","install-using-pnpm":"Asenna käyttäen pnpm","install-using-pnpm-command":"pnpm install {{packageName}}"},"repository":{"title":"Säilö"},"author":{"title":"Luoja"},"distribution":{"title":"Latest Distribution","license":"Lisenssi","size":"Koko","file-count":"tiedostomäärä"},"maintainers":{"title":"Ylläpitäjät"},"contributors":{"title":"Avustajat"},"engines":{"npm-version":"NPM-versio","node-js":"NODE JS"}},"footer":{"powered-by":"Moottorina toimii ","made-with-love-on":"Tehty <0>♥</0> "},"button":{"close":"Sulje","cancel":"Peru","login":"Kirjaudu","logout":"Kirjaudu ulos","go-to-the-home-page":"Mene etusivulle","learn-more":"Lue lisää","fund-this-package":"<0>Tue</0> tätä pakettia"},"error":{"404":{"page-not-found":"404 - Sivua ei löytynyt","sorry-we-could-not-find-it":"Pahoittelut, emme löytäneet sitä"},"unspecific":"Jotain meni pieleen.","app-context-not-correct-used":"App contextia ei käytetä oikein","theme-context-not-correct-used":"Theme contextia ei käytetä oikein","package-meta-is-required-at-detail-context":"DetailContext vaatii packageMetan"},"lng":{"english":"Englanti","czech":"Tsekki","japanese":"Japani","portuguese":"Portugali","spanish":"Espanja","german":"Saksa","chinese":"Kiina","chineseTraditional":"Kiina (perinteinen)","french":"Ranska","russian":"Venäjä","turkish":"Turkki","ukraine":"Ukraina","khmer":"Khmer"},"flag":{"austria":"Austria","brazil":"Brazil","spain":"Spain","nicaragua":"Nicaragua","india":"India","china":"China","germany":"Germany","taiwan":"Taiwan"}}')},"./src/i18n/download_translations/fil-PH/ui.json":e=>{"use strict";e.exports=JSON.parse('{"copy-to-clipboard":"Copy to clipboard","author-anonymous":"Anonymous","author-unknown":"Unknown","action-bar-action":{"visit-home-page":"Visit homepage","open-an-issue":"Open an issue","download-tarball":"Download tarball"},"dialog":{"registry-info":{"title":"Registry Info"}},"header":{"documentation":"Documentation","registry-info":"Registry Information","registry-info-link":"Learn more","registry-no-conf":"No configurations available","greetings":"Hi "},"search":{"packages":"Search Packages"},"autoComplete":{"loading":"Loading...","no-results-found":"No results found","clear":"Clear","expand":"Expand","collapse":"Collapse"},"tab":{"uplinks":"Uplinks","versions":"Versions","dependencies":"Dependencies","readme":"Readme"},"uplinks":{"title":"Uplinks","no-items":"{{name}} has no uplinks."},"versions":{"current-tags":"Current Tags","version-history":"Version history","not-available":"Not available"},"package":{"published-on":"Published on {{time}} •","version":"v{{version}}","visit-home-page":"Visit homepage","homepage":"Homepage","open-an-issue":"Open an issue","bugs":"Bugs","download":"Download {{what}}","the-tar-file":"the tar file","tarball":"Tarball"},"dependencies":{"has-no-dependencies":"{{package}} has no dependencies.","dependency-block":"{{package}}@{{version}}"},"form":{"username":"Username","password":"Password"},"form-placeholder":{"username":"Your username","password":"Your strong password"},"form-validation":{"required-field":"This field is required","required-min-length":"This field required the min length of {{length}}","unable-to-sign-in":"Unable to sign in","username-or-password-cant-be-empty":"Username or password can\'t be empty!"},"help":{"title":"No Package Published Yet.","sub-title":"To publish your first package just:","first-step":"1. Login","first-step-command-line":"npm adduser --registry {{registryUrl}}","second-step":"2. Publish","second-step-command-line":"npm publish --registry {{registryUrl}}","third-step":"3. Refresh this page"},"sidebar":{"detail":{"latest-version":"Latest v{{version}}","version":"v{{version}}"},"installation":{"title":"Installation","install-using-yarn":"Install using yarn","install-using-yarn-command":"yarn add {{packageName}}","install-using-npm":"Install using npm","install-using-npm-command":"npm install {{packageName}}","install-using-pnpm":"Install using pnpm","install-using-pnpm-command":"pnpm install {{packageName}}"},"repository":{"title":"Repository"},"author":{"title":"Author"},"distribution":{"title":"Latest Distribution","license":"License","size":"Size","file-count":"file count"},"maintainers":{"title":"Maintainers"},"contributors":{"title":"Contributors"},"engines":{"npm-version":"NPM Version","node-js":"NODE JS"}},"footer":{"powered-by":"Powered by","made-with-love-on":"Made with <0>♥</0> on"},"button":{"close":"Close","cancel":"Cancel","login":"Login","logout":"Logout","go-to-the-home-page":"Go to the home page","learn-more":"Learn More","fund-this-package":"<0>Fund</0> this package"},"error":{"404":{"page-not-found":"404 - Page not found","sorry-we-could-not-find-it":"Sorry, we couldn\'t find it..."},"unspecific":"Something went wrong.","app-context-not-correct-used":"The app context was not used correctly","theme-context-not-correct-used":"The theme context was not used correctly","package-meta-is-required-at-detail-context":"packageMeta is required at DetailContext"},"lng":{"english":"English","czech":"Czech","japanese":"Japanese","portuguese":"Portuguese","spanish":"Spanish","german":"German","chinese":"Chinese","chineseTraditional":"Chinese (Traditional)","french":"French","russian":"Russian","turkish":"Turkish","ukraine":"Ukraine","khmer":"Khmer"},"flag":{"austria":"Austria","brazil":"Brazil","spain":"Spain","nicaragua":"Nicaragua","india":"India","china":"China","germany":"Germany","taiwan":"Taiwan"}}')},"./src/i18n/download_translations/fr-FR/ui.json":e=>{"use strict";e.exports=JSON.parse('{"copy-to-clipboard":"Copy to clipboard","author-anonymous":"Anonymous","author-unknown":"Unknown","action-bar-action":{"visit-home-page":"Visit homepage","open-an-issue":"Open an issue","download-tarball":"Download tarball"},"dialog":{"registry-info":{"title":"Registry Info"}},"header":{"documentation":"Documentation","registry-info":"Registry Information","registry-info-link":"Learn more","registry-no-conf":"No configurations available","greetings":"Hi "},"search":{"packages":"Search Packages"},"autoComplete":{"loading":"Loading...","no-results-found":"No results found","clear":"Clear","expand":"Expand","collapse":"Collapse"},"tab":{"uplinks":"Uplinks","versions":"Versions","dependencies":"Dependencies","readme":"Readme"},"uplinks":{"title":"Uplinks","no-items":"{{name}} has no uplinks."},"versions":{"current-tags":"Current Tags","version-history":"Version history","not-available":"Not available"},"package":{"published-on":"Published on {{time}} •","version":"v{{version}}","visit-home-page":"Visit homepage","homepage":"Homepage","open-an-issue":"Open an issue","bugs":"Bugs","download":"Download {{what}}","the-tar-file":"the tar file","tarball":"Tarball"},"dependencies":{"has-no-dependencies":"{{package}} has no dependencies.","dependency-block":"{{package}}@{{version}}"},"form":{"username":"Username","password":"Password"},"form-placeholder":{"username":"Your username","password":"Your strong password"},"form-validation":{"required-field":"This field is required","required-min-length":"This field required the min length of {{length}}","unable-to-sign-in":"Unable to sign in","username-or-password-cant-be-empty":"Username or password can\'t be empty!"},"help":{"title":"No Package Published Yet.","sub-title":"To publish your first package just:","first-step":"1. Login","first-step-command-line":"npm adduser --registry {{registryUrl}}","second-step":"2. Publish","second-step-command-line":"npm publish --registry {{registryUrl}}","third-step":"3. Refresh this page"},"sidebar":{"detail":{"latest-version":"Latest v{{version}}","version":"v{{version}}"},"installation":{"title":"Installation","install-using-yarn":"Install using yarn","install-using-yarn-command":"yarn add {{packageName}}","install-using-npm":"Install using npm","install-using-npm-command":"npm install {{packageName}}","install-using-pnpm":"Install using pnpm","install-using-pnpm-command":"pnpm install {{packageName}}"},"repository":{"title":"Repository"},"author":{"title":"Author"},"distribution":{"title":"Latest Distribution","license":"License","size":"Size","file-count":"file count"},"maintainers":{"title":"Maintainers"},"contributors":{"title":"Contributors"},"engines":{"npm-version":"NPM Version","node-js":"NODE JS"}},"footer":{"powered-by":"Powered by","made-with-love-on":"Made with <0>♥</0> on"},"button":{"close":"Close","cancel":"Cancel","login":"Login","logout":"Logout","go-to-the-home-page":"Go to the home page","learn-more":"Learn More","fund-this-package":"<0>Fund</0> this package"},"error":{"404":{"page-not-found":"404 - Page not found","sorry-we-could-not-find-it":"Sorry, we couldn\'t find it..."},"unspecific":"Something went wrong.","app-context-not-correct-used":"The app context was not used correctly","theme-context-not-correct-used":"The theme context was not used correctly","package-meta-is-required-at-detail-context":"packageMeta is required at DetailContext"},"lng":{"english":"English","czech":"Czech","japanese":"Japanese","portuguese":"Portuguese","spanish":"Spanish","german":"German","chinese":"Chinese","chineseTraditional":"Chinese (Traditional)","french":"French","russian":"Russian","turkish":"Turkish","ukraine":"Ukraine","khmer":"Khmer"},"flag":{"austria":"Austria","brazil":"Brazil","spain":"Spain","nicaragua":"Nicaragua","india":"India","china":"China","germany":"Germany","taiwan":"Taiwan"}}')},"./src/i18n/download_translations/gl-ES/ui.json":e=>{"use strict";e.exports=JSON.parse('{"copy-to-clipboard":"Copy to clipboard","author-anonymous":"Anonymous","author-unknown":"Unknown","action-bar-action":{"visit-home-page":"Visit homepage","open-an-issue":"Open an issue","download-tarball":"Download tarball"},"dialog":{"registry-info":{"title":"Registry Info"}},"header":{"documentation":"Documentation","registry-info":"Registry Information","registry-info-link":"Learn more","registry-no-conf":"No configurations available","greetings":"Hi "},"search":{"packages":"Search Packages"},"autoComplete":{"loading":"Loading...","no-results-found":"No results found","clear":"Clear","expand":"Expand","collapse":"Collapse"},"tab":{"uplinks":"Uplinks","versions":"Versions","dependencies":"Dependencies","readme":"Readme"},"uplinks":{"title":"Uplinks","no-items":"{{name}} has no uplinks."},"versions":{"current-tags":"Current Tags","version-history":"Version history","not-available":"Not available"},"package":{"published-on":"Published on {{time}} •","version":"v{{version}}","visit-home-page":"Visit homepage","homepage":"Homepage","open-an-issue":"Open an issue","bugs":"Bugs","download":"Download {{what}}","the-tar-file":"the tar file","tarball":"Tarball"},"dependencies":{"has-no-dependencies":"{{package}} has no dependencies.","dependency-block":"{{package}}@{{version}}"},"form":{"username":"Username","password":"Password"},"form-placeholder":{"username":"Your username","password":"Your strong password"},"form-validation":{"required-field":"This field is required","required-min-length":"This field required the min length of {{length}}","unable-to-sign-in":"Unable to sign in","username-or-password-cant-be-empty":"Username or password can\'t be empty!"},"help":{"title":"No Package Published Yet.","sub-title":"To publish your first package just:","first-step":"1. Login","first-step-command-line":"npm adduser --registry {{registryUrl}}","second-step":"2. Publish","second-step-command-line":"npm publish --registry {{registryUrl}}","third-step":"3. Refresh this page"},"sidebar":{"detail":{"latest-version":"Latest v{{version}}","version":"v{{version}}"},"installation":{"title":"Installation","install-using-yarn":"Install using yarn","install-using-yarn-command":"yarn add {{packageName}}","install-using-npm":"Install using npm","install-using-npm-command":"npm install {{packageName}}","install-using-pnpm":"Install using pnpm","install-using-pnpm-command":"pnpm install {{packageName}}"},"repository":{"title":"Repository"},"author":{"title":"Author"},"distribution":{"title":"Latest Distribution","license":"License","size":"Size","file-count":"file count"},"maintainers":{"title":"Maintainers"},"contributors":{"title":"Contributors"},"engines":{"npm-version":"NPM Version","node-js":"NODE JS"}},"footer":{"powered-by":"Powered by","made-with-love-on":"Made with <0>♥</0> on"},"button":{"close":"Close","cancel":"Cancel","login":"Login","logout":"Logout","go-to-the-home-page":"Go to the home page","learn-more":"Learn More","fund-this-package":"<0>Fund</0> this package"},"error":{"404":{"page-not-found":"404 - Page not found","sorry-we-could-not-find-it":"Sorry, we couldn\'t find it..."},"unspecific":"Something went wrong.","app-context-not-correct-used":"The app context was not used correctly","theme-context-not-correct-used":"The theme context was not used correctly","package-meta-is-required-at-detail-context":"packageMeta is required at DetailContext"},"lng":{"english":"English","czech":"Czech","japanese":"Japanese","portuguese":"Portuguese","spanish":"Spanish","german":"German","chinese":"Chinese","chineseTraditional":"Chinese (Traditional)","french":"French","russian":"Russian","turkish":"Turkish","ukraine":"Ukraine","khmer":"Khmer"},"flag":{"austria":"Austria","brazil":"Brazil","spain":"Spain","nicaragua":"Nicaragua","india":"India","china":"China","germany":"Germany","taiwan":"Taiwan"}}')},"./src/i18n/download_translations/hi-IN/ui.json":e=>{"use strict";e.exports=JSON.parse('{"copy-to-clipboard":"Copy to clipboard","author-anonymous":"Anonymous","author-unknown":"Unknown","action-bar-action":{"visit-home-page":"Visit homepage","open-an-issue":"Open an issue","download-tarball":"Download tarball"},"dialog":{"registry-info":{"title":"Registry Info"}},"header":{"documentation":"Documentation","registry-info":"Registry Information","registry-info-link":"Learn more","registry-no-conf":"No configurations available","greetings":"Hi "},"search":{"packages":"Search Packages"},"autoComplete":{"loading":"Loading...","no-results-found":"No results found","clear":"Clear","expand":"Expand","collapse":"Collapse"},"tab":{"uplinks":"Uplinks","versions":"Versions","dependencies":"Dependencies","readme":"Readme"},"uplinks":{"title":"Uplinks","no-items":"{{name}} has no uplinks."},"versions":{"current-tags":"Current Tags","version-history":"Version history","not-available":"Not available"},"package":{"published-on":"Published on {{time}} •","version":"v{{version}}","visit-home-page":"Visit homepage","homepage":"Homepage","open-an-issue":"Open an issue","bugs":"Bugs","download":"Download {{what}}","the-tar-file":"the tar file","tarball":"Tarball"},"dependencies":{"has-no-dependencies":"{{package}} has no dependencies.","dependency-block":"{{package}}@{{version}}"},"form":{"username":"Username","password":"Password"},"form-placeholder":{"username":"Your username","password":"Your strong password"},"form-validation":{"required-field":"This field is required","required-min-length":"This field required the min length of {{length}}","unable-to-sign-in":"Unable to sign in","username-or-password-cant-be-empty":"Username or password can\'t be empty!"},"help":{"title":"No Package Published Yet.","sub-title":"To publish your first package just:","first-step":"1. Login","first-step-command-line":"npm adduser --registry {{registryUrl}}","second-step":"2. Publish","second-step-command-line":"npm publish --registry {{registryUrl}}","third-step":"3. Refresh this page"},"sidebar":{"detail":{"latest-version":"Latest v{{version}}","version":"v{{version}}"},"installation":{"title":"Installation","install-using-yarn":"Install using yarn","install-using-yarn-command":"yarn add {{packageName}}","install-using-npm":"Install using npm","install-using-npm-command":"npm install {{packageName}}","install-using-pnpm":"Install using pnpm","install-using-pnpm-command":"pnpm install {{packageName}}"},"repository":{"title":"Repository"},"author":{"title":"Author"},"distribution":{"title":"Latest Distribution","license":"License","size":"Size","file-count":"file count"},"maintainers":{"title":"Maintainers"},"contributors":{"title":"Contributors"},"engines":{"npm-version":"NPM Version","node-js":"NODE JS"}},"footer":{"powered-by":"Powered by","made-with-love-on":"Made with <0>♥</0> on"},"button":{"close":"Close","cancel":"Cancel","login":"Login","logout":"Logout","go-to-the-home-page":"Go to the home page","learn-more":"Learn More","fund-this-package":"<0>Fund</0> this package"},"error":{"404":{"page-not-found":"404 - Page not found","sorry-we-could-not-find-it":"Sorry, we couldn\'t find it..."},"unspecific":"Something went wrong.","app-context-not-correct-used":"The app context was not used correctly","theme-context-not-correct-used":"The theme context was not used correctly","package-meta-is-required-at-detail-context":"packageMeta is required at DetailContext"},"lng":{"english":"English","czech":"Czech","japanese":"Japanese","portuguese":"Portuguese","spanish":"Spanish","german":"German","chinese":"Chinese","chineseTraditional":"Chinese (Traditional)","french":"French","russian":"Russian","turkish":"Turkish","ukraine":"Ukraine","khmer":"Khmer"},"flag":{"austria":"Austria","brazil":"Brazil","spain":"Spain","nicaragua":"Nicaragua","india":"India","china":"China","germany":"Germany","taiwan":"Taiwan"}}')},"./src/i18n/download_translations/it-IT/ui.json":e=>{"use strict";e.exports=JSON.parse('{"copy-to-clipboard":"Copy to clipboard","author-anonymous":"Anonymous","author-unknown":"Unknown","action-bar-action":{"visit-home-page":"Visit homepage","open-an-issue":"Open an issue","download-tarball":"Download tarball"},"dialog":{"registry-info":{"title":"Registry Info"}},"header":{"documentation":"Documentation","registry-info":"Registry Information","registry-info-link":"Learn more","registry-no-conf":"No configurations available","greetings":"Hi "},"search":{"packages":"Search Packages"},"autoComplete":{"loading":"Loading...","no-results-found":"No results found","clear":"Clear","expand":"Expand","collapse":"Collapse"},"tab":{"uplinks":"Uplink","versions":"Versioni","dependencies":"Dependencies","readme":"Readme"},"uplinks":{"title":"Uplink","no-items":"{{name}} has no uplinks."},"versions":{"current-tags":"Current Tags","version-history":"Version history","not-available":"Not available"},"package":{"published-on":"Published on {{time}} •","version":"v{{version}}","visit-home-page":"Visit homepage","homepage":"Homepage","open-an-issue":"Open an issue","bugs":"Bugs","download":"Download {{what}}","the-tar-file":"the tar file","tarball":"Tarball"},"dependencies":{"has-no-dependencies":"{{package}} has no dependencies.","dependency-block":"{{package}}@{{version}}"},"form":{"username":"Username","password":"Password"},"form-placeholder":{"username":"Your username","password":"Your strong password"},"form-validation":{"required-field":"This field is required","required-min-length":"This field required the min length of {{length}}","unable-to-sign-in":"Unable to sign in","username-or-password-cant-be-empty":"Username or password can\'t be empty!"},"help":{"title":"No Package Published Yet.","sub-title":"To publish your first package just:","first-step":"1. Login","first-step-command-line":"npm adduser --registry {{registryUrl}}","second-step":"2. Publish","second-step-command-line":"npm publish --registry {{registryUrl}}","third-step":"3. Refresh this page"},"sidebar":{"detail":{"latest-version":"Latest v{{version}}","version":"v{{version}}"},"installation":{"title":"Installazione","install-using-yarn":"Install using yarn","install-using-yarn-command":"yarn add {{packageName}}","install-using-npm":"Install using npm","install-using-npm-command":"npm install {{packageName}}","install-using-pnpm":"Install using pnpm","install-using-pnpm-command":"pnpm install {{packageName}}"},"repository":{"title":"Repository"},"author":{"title":"Author"},"distribution":{"title":"Latest Distribution","license":"License","size":"Size","file-count":"file count"},"maintainers":{"title":"Maintainers"},"contributors":{"title":"Collaboratori"},"engines":{"npm-version":"NPM Version","node-js":"NODE JS"}},"footer":{"powered-by":"Powered by","made-with-love-on":"Made with <0>♥</0> on"},"button":{"close":"Chiudi","cancel":"Cancel","login":"Login","logout":"Logout","go-to-the-home-page":"Go to the home page","learn-more":"Learn More","fund-this-package":"<0>Fund</0> this package"},"error":{"404":{"page-not-found":"404 - Page not found","sorry-we-could-not-find-it":"Sorry, we couldn\'t find it..."},"unspecific":"Something went wrong.","app-context-not-correct-used":"The app context was not used correctly","theme-context-not-correct-used":"The theme context was not used correctly","package-meta-is-required-at-detail-context":"packageMeta is required at DetailContext"},"lng":{"english":"Inglese","czech":"Czech","japanese":"Giapponese","portuguese":"Portuguese","spanish":"Spagnolo","german":"Tedesco","chinese":"Cinese","chineseTraditional":"Chinese (Traditional)","french":"Francese","russian":"Russian","turkish":"Turkish","ukraine":"Ukraine","khmer":"Khmer"},"flag":{"austria":"Austria","brazil":"Brazil","spain":"Spain","nicaragua":"Nicaragua","india":"India","china":"China","germany":"Germany","taiwan":"Taiwan"}}')},"./src/i18n/download_translations/ja-JP/ui.json":e=>{"use strict";e.exports=JSON.parse('{"copy-to-clipboard":"Copy to clipboard","author-anonymous":"Anonymous","author-unknown":"Unknown","action-bar-action":{"visit-home-page":"Visit homepage","open-an-issue":"Open an issue","download-tarball":"Download tarball"},"dialog":{"registry-info":{"title":"Registry Info"}},"header":{"documentation":"Documentation","registry-info":"Registry Information","registry-info-link":"Learn more","registry-no-conf":"No configurations available","greetings":"Hi "},"search":{"packages":"Search Packages"},"autoComplete":{"loading":"Loading...","no-results-found":"No results found","clear":"Clear","expand":"Expand","collapse":"Collapse"},"tab":{"uplinks":"Uplinks","versions":"Versions","dependencies":"Dependencies","readme":"Readme"},"uplinks":{"title":"Uplinks","no-items":"{{name}} has no uplinks."},"versions":{"current-tags":"Current Tags","version-history":"Version history","not-available":"Not available"},"package":{"published-on":"Published on {{time}} •","version":"v{{version}}","visit-home-page":"Visit homepage","homepage":"Homepage","open-an-issue":"Open an issue","bugs":"Bugs","download":"Download {{what}}","the-tar-file":"the tar file","tarball":"Tarball"},"dependencies":{"has-no-dependencies":"{{package}} has no dependencies.","dependency-block":"{{package}}@{{version}}"},"form":{"username":"Username","password":"Password"},"form-placeholder":{"username":"Your username","password":"Your strong password"},"form-validation":{"required-field":"This field is required","required-min-length":"This field required the min length of {{length}}","unable-to-sign-in":"Unable to sign in","username-or-password-cant-be-empty":"Username or password can\'t be empty!"},"help":{"title":"No Package Published Yet.","sub-title":"To publish your first package just:","first-step":"1. Login","first-step-command-line":"npm adduser --registry {{registryUrl}}","second-step":"2. Publish","second-step-command-line":"npm publish --registry {{registryUrl}}","third-step":"3. Refresh this page"},"sidebar":{"detail":{"latest-version":"Latest v{{version}}","version":"v{{version}}"},"installation":{"title":"Installation","install-using-yarn":"Install using yarn","install-using-yarn-command":"yarn add {{packageName}}","install-using-npm":"Install using npm","install-using-npm-command":"npm install {{packageName}}","install-using-pnpm":"Install using pnpm","install-using-pnpm-command":"pnpm install {{packageName}}"},"repository":{"title":"Repository"},"author":{"title":"Author"},"distribution":{"title":"Latest Distribution","license":"License","size":"Size","file-count":"file count"},"maintainers":{"title":"Maintainers"},"contributors":{"title":"Contributors"},"engines":{"npm-version":"NPM Version","node-js":"NODE JS"}},"footer":{"powered-by":"Powered by","made-with-love-on":"Made with <0>♥</0> on"},"button":{"close":"Close","cancel":"Cancel","login":"Login","logout":"Logout","go-to-the-home-page":"Go to the home page","learn-more":"Learn More","fund-this-package":"<0>Fund</0> this package"},"error":{"404":{"page-not-found":"404 - Page not found","sorry-we-could-not-find-it":"Sorry, we couldn\'t find it..."},"unspecific":"Something went wrong.","app-context-not-correct-used":"The app context was not used correctly","theme-context-not-correct-used":"The theme context was not used correctly","package-meta-is-required-at-detail-context":"packageMeta is required at DetailContext"},"lng":{"english":"English","czech":"Czech","japanese":"Japanese","portuguese":"Portuguese","spanish":"Spanish","german":"German","chinese":"Chinese","chineseTraditional":"Chinese (Traditional)","french":"French","russian":"Russian","turkish":"Turkish","ukraine":"Ukraine","khmer":"Khmer"},"flag":{"austria":"Austria","brazil":"Brazil","spain":"Spain","nicaragua":"Nicaragua","india":"India","china":"China","germany":"Germany","taiwan":"Taiwan"}}')},"./src/i18n/download_translations/km-KH/ui.json":e=>{"use strict";e.exports=JSON.parse('{"copy-to-clipboard":"ចម្លងទៅក្ដារតម្បៀតខ្ទាស់","author-anonymous":"Anonymous","author-unknown":"Unknown","action-bar-action":{"visit-home-page":"Visit homepage","open-an-issue":"Open an issue","download-tarball":"Download tarball"},"dialog":{"registry-info":{"title":"Registry Info"}},"header":{"documentation":"Documentation","registry-info":"Registry Information","registry-info-link":"Learn more","registry-no-conf":"No configurations available","greetings":"Hi "},"search":{"packages":"Search Packages"},"autoComplete":{"loading":"Loading...","no-results-found":"No results found","clear":"Clear","expand":"Expand","collapse":"Collapse"},"tab":{"uplinks":"Uplinks","versions":"Versions","dependencies":"Dependencies","readme":"Readme"},"uplinks":{"title":"Uplinks","no-items":"{{name}} has no uplinks."},"versions":{"current-tags":"Current Tags","version-history":"Version history","not-available":"Not available"},"package":{"published-on":"Published on {{time}} •","version":"v{{version}}","visit-home-page":"Visit homepage","homepage":"Homepage","open-an-issue":"Open an issue","bugs":"Bugs","download":"Download {{what}}","the-tar-file":"the tar file","tarball":"Tarball"},"dependencies":{"has-no-dependencies":"{{package}} has no dependencies.","dependency-block":"{{package}}@{{version}}"},"form":{"username":"Username","password":"Password"},"form-placeholder":{"username":"Your username","password":"Your strong password"},"form-validation":{"required-field":"This field is required","required-min-length":"This field required the min length of {{length}}","unable-to-sign-in":"Unable to sign in","username-or-password-cant-be-empty":"Username or password can\'t be empty!"},"help":{"title":"No Package Published Yet.","sub-title":"To publish your first package just:","first-step":"1. Login","first-step-command-line":"npm adduser --registry {{registryUrl}}","second-step":"2. Publish","second-step-command-line":"npm publish --registry {{registryUrl}}","third-step":"3. Refresh this page"},"sidebar":{"detail":{"latest-version":"Latest v{{version}}","version":"v{{version}}"},"installation":{"title":"Installation","install-using-yarn":"Install using yarn","install-using-yarn-command":"yarn add {{packageName}}","install-using-npm":"Install using npm","install-using-npm-command":"npm install {{packageName}}","install-using-pnpm":"Install using pnpm","install-using-pnpm-command":"pnpm install {{packageName}}"},"repository":{"title":"Repository"},"author":{"title":"Author"},"distribution":{"title":"Latest Distribution","license":"License","size":"Size","file-count":"file count"},"maintainers":{"title":"Maintainers"},"contributors":{"title":"Contributors"},"engines":{"npm-version":"NPM Version","node-js":"NODE JS"}},"footer":{"powered-by":"Powered by","made-with-love-on":"Made with <0>♥</0> on"},"button":{"close":"Close","cancel":"Cancel","login":"Login","logout":"Logout","go-to-the-home-page":"Go to the home page","learn-more":"Learn More","fund-this-package":"<0>Fund</0> this package"},"error":{"404":{"page-not-found":"404 - Page not found","sorry-we-could-not-find-it":"Sorry, we couldn\'t find it..."},"unspecific":"Something went wrong.","app-context-not-correct-used":"The app context was not used correctly","theme-context-not-correct-used":"The theme context was not used correctly","package-meta-is-required-at-detail-context":"packageMeta is required at DetailContext"},"lng":{"english":"English","czech":"Czech","japanese":"Japanese","portuguese":"Portuguese","spanish":"Spanish","german":"German","chinese":"Chinese","chineseTraditional":"Chinese (Traditional)","french":"French","russian":"Russian","turkish":"Turkish","ukraine":"Ukraine","khmer":"Khmer"},"flag":{"austria":"Austria","brazil":"Brazil","spain":"Spain","nicaragua":"Nicaragua","india":"India","china":"China","germany":"Germany","taiwan":"Taiwan"}}')},"./src/i18n/download_translations/ko-KR/ui.json":e=>{"use strict";e.exports=JSON.parse('{"copy-to-clipboard":"Copy to clipboard","author-anonymous":"Anonymous","author-unknown":"Unknown","action-bar-action":{"visit-home-page":"Visit homepage","open-an-issue":"Open an issue","download-tarball":"Download tarball"},"dialog":{"registry-info":{"title":"Registry Info"}},"header":{"documentation":"Documentation","registry-info":"Registry Information","registry-info-link":"Learn more","registry-no-conf":"No configurations available","greetings":"Hi "},"search":{"packages":"Search Packages"},"autoComplete":{"loading":"Loading...","no-results-found":"No results found","clear":"Clear","expand":"Expand","collapse":"Collapse"},"tab":{"uplinks":"Uplinks","versions":"Versions","dependencies":"Dependencies","readme":"Readme"},"uplinks":{"title":"Uplinks","no-items":"{{name}} has no uplinks."},"versions":{"current-tags":"Current Tags","version-history":"Version history","not-available":"Not available"},"package":{"published-on":"Published on {{time}} •","version":"v{{version}}","visit-home-page":"Visit homepage","homepage":"Homepage","open-an-issue":"Open an issue","bugs":"Bugs","download":"Download {{what}}","the-tar-file":"the tar file","tarball":"Tarball"},"dependencies":{"has-no-dependencies":"{{package}} has no dependencies.","dependency-block":"{{package}}@{{version}}"},"form":{"username":"Username","password":"Password"},"form-placeholder":{"username":"Your username","password":"Your strong password"},"form-validation":{"required-field":"This field is required","required-min-length":"This field required the min length of {{length}}","unable-to-sign-in":"Unable to sign in","username-or-password-cant-be-empty":"Username or password can\'t be empty!"},"help":{"title":"No Package Published Yet.","sub-title":"To publish your first package just:","first-step":"1. Login","first-step-command-line":"npm adduser --registry {{registryUrl}}","second-step":"2. Publish","second-step-command-line":"npm publish --registry {{registryUrl}}","third-step":"3. Refresh this page"},"sidebar":{"detail":{"latest-version":"Latest v{{version}}","version":"v{{version}}"},"installation":{"title":"Installation","install-using-yarn":"Install using yarn","install-using-yarn-command":"yarn add {{packageName}}","install-using-npm":"Install using npm","install-using-npm-command":"npm install {{packageName}}","install-using-pnpm":"Install using pnpm","install-using-pnpm-command":"pnpm install {{packageName}}"},"repository":{"title":"Repository"},"author":{"title":"Author"},"distribution":{"title":"Latest Distribution","license":"License","size":"Size","file-count":"file count"},"maintainers":{"title":"Maintainers"},"contributors":{"title":"Contributors"},"engines":{"npm-version":"NPM Version","node-js":"NODE JS"}},"footer":{"powered-by":"Powered by","made-with-love-on":"Made with <0>♥</0> on"},"button":{"close":"Close","cancel":"Cancel","login":"Login","logout":"Logout","go-to-the-home-page":"Go to the home page","learn-more":"Learn More","fund-this-package":"<0>Fund</0> this package"},"error":{"404":{"page-not-found":"404 - Page not found","sorry-we-could-not-find-it":"Sorry, we couldn\'t find it..."},"unspecific":"Something went wrong.","app-context-not-correct-used":"The app context was not used correctly","theme-context-not-correct-used":"The theme context was not used correctly","package-meta-is-required-at-detail-context":"packageMeta is required at DetailContext"},"lng":{"english":"English","czech":"Czech","japanese":"Japanese","portuguese":"Portuguese","spanish":"Spanish","german":"German","chinese":"Chinese","chineseTraditional":"Chinese (Traditional)","french":"French","russian":"Russian","turkish":"Turkish","ukraine":"Ukraine","khmer":"Khmer"},"flag":{"austria":"Austria","brazil":"Brazil","spain":"Spain","nicaragua":"Nicaragua","india":"India","china":"China","germany":"Germany","taiwan":"Taiwan"}}')},"./src/i18n/download_translations/pl-PL/ui.json":e=>{"use strict";e.exports=JSON.parse('{"copy-to-clipboard":"Copy to clipboard","author-anonymous":"Anonymous","author-unknown":"Unknown","action-bar-action":{"visit-home-page":"Visit homepage","open-an-issue":"Open an issue","download-tarball":"Download tarball"},"dialog":{"registry-info":{"title":"Registry Info"}},"header":{"documentation":"Documentation","registry-info":"Registry Information","registry-info-link":"Learn more","registry-no-conf":"No configurations available","greetings":"Hi "},"search":{"packages":"Search Packages"},"autoComplete":{"loading":"Loading...","no-results-found":"No results found","clear":"Clear","expand":"Expand","collapse":"Collapse"},"tab":{"uplinks":"Uplinks","versions":"Versions","dependencies":"Dependencies","readme":"Readme"},"uplinks":{"title":"Uplinks","no-items":"{{name}} has no uplinks."},"versions":{"current-tags":"Current Tags","version-history":"Version history","not-available":"Not available"},"package":{"published-on":"Published on {{time}} •","version":"v{{version}}","visit-home-page":"Visit homepage","homepage":"Homepage","open-an-issue":"Open an issue","bugs":"Bugs","download":"Download {{what}}","the-tar-file":"the tar file","tarball":"Tarball"},"dependencies":{"has-no-dependencies":"{{package}} has no dependencies.","dependency-block":"{{package}}@{{version}}"},"form":{"username":"Username","password":"Password"},"form-placeholder":{"username":"Your username","password":"Your strong password"},"form-validation":{"required-field":"This field is required","required-min-length":"This field required the min length of {{length}}","unable-to-sign-in":"Unable to sign in","username-or-password-cant-be-empty":"Username or password can\'t be empty!"},"help":{"title":"No Package Published Yet.","sub-title":"To publish your first package just:","first-step":"1. Login","first-step-command-line":"npm adduser --registry {{registryUrl}}","second-step":"2. Publish","second-step-command-line":"npm publish --registry {{registryUrl}}","third-step":"3. Refresh this page"},"sidebar":{"detail":{"latest-version":"Latest v{{version}}","version":"v{{version}}"},"installation":{"title":"Instalacja","install-using-yarn":"Install using yarn","install-using-yarn-command":"yarn add {{packageName}}","install-using-npm":"Install using npm","install-using-npm-command":"npm install {{packageName}}","install-using-pnpm":"Install using pnpm","install-using-pnpm-command":"pnpm install {{packageName}}"},"repository":{"title":"Repository"},"author":{"title":"Author"},"distribution":{"title":"Latest Distribution","license":"License","size":"Size","file-count":"file count"},"maintainers":{"title":"Maintainers"},"contributors":{"title":"Contributors"},"engines":{"npm-version":"NPM Version","node-js":"NODE JS"}},"footer":{"powered-by":"Powered by","made-with-love-on":"Made with <0>♥</0> on"},"button":{"close":"Close","cancel":"Cancel","login":"Login","logout":"Logout","go-to-the-home-page":"Go to the home page","learn-more":"Learn More","fund-this-package":"<0>Fund</0> this package"},"error":{"404":{"page-not-found":"404 - Page not found","sorry-we-could-not-find-it":"Sorry, we couldn\'t find it..."},"unspecific":"Something went wrong.","app-context-not-correct-used":"The app context was not used correctly","theme-context-not-correct-used":"The theme context was not used correctly","package-meta-is-required-at-detail-context":"packageMeta is required at DetailContext"},"lng":{"english":"English","czech":"Czech","japanese":"Japanese","portuguese":"Portuguese","spanish":"Spanish","german":"German","chinese":"Chinese","chineseTraditional":"Chinese (Traditional)","french":"French","russian":"Russian","turkish":"Turkish","ukraine":"Ukraine","khmer":"Khmer"},"flag":{"austria":"Austria","brazil":"Brazil","spain":"Spain","nicaragua":"Nicaragua","india":"India","china":"China","germany":"Germany","taiwan":"Taiwan"}}')},"./src/i18n/download_translations/pt-BR/ui.json":e=>{"use strict";e.exports=JSON.parse('{"copy-to-clipboard":"Copy to clipboard","author-anonymous":"Anonymous","author-unknown":"Unknown","action-bar-action":{"visit-home-page":"Visit homepage","open-an-issue":"Open an issue","download-tarball":"Download tarball"},"dialog":{"registry-info":{"title":"Registry Info"}},"header":{"documentation":"Documentation","registry-info":"Registry Information","registry-info-link":"Learn more","registry-no-conf":"No configurations available","greetings":"Hi "},"search":{"packages":"Search Packages"},"autoComplete":{"loading":"Loading...","no-results-found":"No results found","clear":"Clear","expand":"Expand","collapse":"Collapse"},"tab":{"uplinks":"Uplinks","versions":"Versions","dependencies":"Dependencies","readme":"Readme"},"uplinks":{"title":"Uplinks","no-items":"{{name}} has no uplinks."},"versions":{"current-tags":"Current Tags","version-history":"Version history","not-available":"Not available"},"package":{"published-on":"Published on {{time}} •","version":"v{{version}}","visit-home-page":"Visit homepage","homepage":"Homepage","open-an-issue":"Open an issue","bugs":"Bugs","download":"Download {{what}}","the-tar-file":"the tar file","tarball":"Tarball"},"dependencies":{"has-no-dependencies":"{{package}} has no dependencies.","dependency-block":"{{package}}@{{version}}"},"form":{"username":"Username","password":"Password"},"form-placeholder":{"username":"Your username","password":"Your strong password"},"form-validation":{"required-field":"This field is required","required-min-length":"This field required the min length of {{length}}","unable-to-sign-in":"Unable to sign in","username-or-password-cant-be-empty":"Username or password can\'t be empty!"},"help":{"title":"No Package Published Yet.","sub-title":"To publish your first package just:","first-step":"1. Login","first-step-command-line":"npm adduser --registry {{registryUrl}}","second-step":"2. Publish","second-step-command-line":"npm publish --registry {{registryUrl}}","third-step":"3. Refresh this page"},"sidebar":{"detail":{"latest-version":"Latest v{{version}}","version":"v{{version}}"},"installation":{"title":"Instalação","install-using-yarn":"Install using yarn","install-using-yarn-command":"yarn add {{packageName}}","install-using-npm":"Install using npm","install-using-npm-command":"npm install {{packageName}}","install-using-pnpm":"Install using pnpm","install-using-pnpm-command":"pnpm install {{packageName}}"},"repository":{"title":"Repository"},"author":{"title":"Author"},"distribution":{"title":"Latest Distribution","license":"License","size":"Size","file-count":"file count"},"maintainers":{"title":"Maintainers"},"contributors":{"title":"Contributors"},"engines":{"npm-version":"NPM Version","node-js":"NODE JS"}},"footer":{"powered-by":"Powered by","made-with-love-on":"Made with <0>♥</0> on"},"button":{"close":"Close","cancel":"Cancel","login":"Login","logout":"Logout","go-to-the-home-page":"Go to the home page","learn-more":"Learn More","fund-this-package":"<0>Fund</0> this package"},"error":{"404":{"page-not-found":"404 - Page not found","sorry-we-could-not-find-it":"Sorry, we couldn\'t find it..."},"unspecific":"Something went wrong.","app-context-not-correct-used":"The app context was not used correctly","theme-context-not-correct-used":"The theme context was not used correctly","package-meta-is-required-at-detail-context":"packageMeta is required at DetailContext"},"lng":{"english":"Inglês","czech":"Czech","japanese":"Japonês","portuguese":"Portuguese","spanish":"Espanhol","german":"Alemão","chinese":"Chinês","chineseTraditional":"Chinese (Traditional)","french":"Francês","russian":"Russian","turkish":"Turkish","ukraine":"Ukraine","khmer":"Khmer"},"flag":{"austria":"Austria","brazil":"Brazil","spain":"Spain","nicaragua":"Nicaragua","india":"India","china":"China","germany":"Germany","taiwan":"Taiwan"}}')},"./src/i18n/download_translations/pt-PT/ui.json":e=>{"use strict";e.exports=JSON.parse('{"copy-to-clipboard":"Copy to clipboard","author-anonymous":"Anonymous","author-unknown":"Unknown","action-bar-action":{"visit-home-page":"Visit homepage","open-an-issue":"Open an issue","download-tarball":"Download tarball"},"dialog":{"registry-info":{"title":"Registry Info"}},"header":{"documentation":"Documentation","registry-info":"Registry Information","registry-info-link":"Learn more","registry-no-conf":"No configurations available","greetings":"Hi "},"search":{"packages":"Search Packages"},"autoComplete":{"loading":"Loading...","no-results-found":"No results found","clear":"Clear","expand":"Expand","collapse":"Collapse"},"tab":{"uplinks":"Uplinks","versions":"Versions","dependencies":"Dependencies","readme":"Readme"},"uplinks":{"title":"Uplinks","no-items":"{{name}} has no uplinks."},"versions":{"current-tags":"Current Tags","version-history":"Version history","not-available":"Not available"},"package":{"published-on":"Published on {{time}} •","version":"v{{version}}","visit-home-page":"Visit homepage","homepage":"Homepage","open-an-issue":"Open an issue","bugs":"Bugs","download":"Download {{what}}","the-tar-file":"the tar file","tarball":"Tarball"},"dependencies":{"has-no-dependencies":"{{package}} has no dependencies.","dependency-block":"{{package}}@{{version}}"},"form":{"username":"Username","password":"Password"},"form-placeholder":{"username":"Your username","password":"Your strong password"},"form-validation":{"required-field":"This field is required","required-min-length":"This field required the min length of {{length}}","unable-to-sign-in":"Unable to sign in","username-or-password-cant-be-empty":"Username or password can\'t be empty!"},"help":{"title":"No Package Published Yet.","sub-title":"To publish your first package just:","first-step":"1. Login","first-step-command-line":"npm adduser --registry {{registryUrl}}","second-step":"2. Publish","second-step-command-line":"npm publish --registry {{registryUrl}}","third-step":"3. Refresh this page"},"sidebar":{"detail":{"latest-version":"Latest v{{version}}","version":"v{{version}}"},"installation":{"title":"Installation","install-using-yarn":"Install using yarn","install-using-yarn-command":"yarn add {{packageName}}","install-using-npm":"Install using npm","install-using-npm-command":"npm install {{packageName}}","install-using-pnpm":"Install using pnpm","install-using-pnpm-command":"pnpm install {{packageName}}"},"repository":{"title":"Repository"},"author":{"title":"Author"},"distribution":{"title":"Latest Distribution","license":"License","size":"Size","file-count":"file count"},"maintainers":{"title":"Maintainers"},"contributors":{"title":"Contributors"},"engines":{"npm-version":"NPM Version","node-js":"NODE JS"}},"footer":{"powered-by":"Powered by","made-with-love-on":"Made with <0>♥</0> on"},"button":{"close":"Close","cancel":"Cancel","login":"Login","logout":"Logout","go-to-the-home-page":"Go to the home page","learn-more":"Learn More","fund-this-package":"<0>Fund</0> this package"},"error":{"404":{"page-not-found":"404 - Page not found","sorry-we-could-not-find-it":"Sorry, we couldn\'t find it..."},"unspecific":"Something went wrong.","app-context-not-correct-used":"The app context was not used correctly","theme-context-not-correct-used":"The theme context was not used correctly","package-meta-is-required-at-detail-context":"packageMeta is required at DetailContext"},"lng":{"english":"English","czech":"Czech","japanese":"Japanese","portuguese":"Portuguese","spanish":"Spanish","german":"German","chinese":"Chinese","chineseTraditional":"Chinese (Traditional)","french":"French","russian":"Russian","turkish":"Turkish","ukraine":"Ukraine","khmer":"Khmer"},"flag":{"austria":"Austria","brazil":"Brazil","spain":"Spain","nicaragua":"Nicaragua","india":"India","china":"China","germany":"Germany","taiwan":"Taiwan"}}')},"./src/i18n/download_translations/ro-RO/ui.json":e=>{"use strict";e.exports=JSON.parse('{"copy-to-clipboard":"Copy to clipboard","author-anonymous":"Anonymous","author-unknown":"Unknown","action-bar-action":{"visit-home-page":"Visit homepage","open-an-issue":"Open an issue","download-tarball":"Download tarball"},"dialog":{"registry-info":{"title":"Registry Info"}},"header":{"documentation":"Documentation","registry-info":"Registry Information","registry-info-link":"Learn more","registry-no-conf":"No configurations available","greetings":"Hi "},"search":{"packages":"Search Packages"},"autoComplete":{"loading":"Loading...","no-results-found":"No results found","clear":"Clear","expand":"Expand","collapse":"Collapse"},"tab":{"uplinks":"Uplinks","versions":"Versions","dependencies":"Dependencies","readme":"Readme"},"uplinks":{"title":"Uplinks","no-items":"{{name}} has no uplinks."},"versions":{"current-tags":"Current Tags","version-history":"Version history","not-available":"Not available"},"package":{"published-on":"Published on {{time}} •","version":"v{{version}}","visit-home-page":"Visit homepage","homepage":"Homepage","open-an-issue":"Open an issue","bugs":"Bugs","download":"Download {{what}}","the-tar-file":"the tar file","tarball":"Tarball"},"dependencies":{"has-no-dependencies":"{{package}} has no dependencies.","dependency-block":"{{package}}@{{version}}"},"form":{"username":"Username","password":"Password"},"form-placeholder":{"username":"Your username","password":"Your strong password"},"form-validation":{"required-field":"This field is required","required-min-length":"This field required the min length of {{length}}","unable-to-sign-in":"Unable to sign in","username-or-password-cant-be-empty":"Username or password can\'t be empty!"},"help":{"title":"No Package Published Yet.","sub-title":"To publish your first package just:","first-step":"1. Login","first-step-command-line":"npm adduser --registry {{registryUrl}}","second-step":"2. Publish","second-step-command-line":"npm publish --registry {{registryUrl}}","third-step":"3. Refresh this page"},"sidebar":{"detail":{"latest-version":"Latest v{{version}}","version":"v{{version}}"},"installation":{"title":"Installation","install-using-yarn":"Install using yarn","install-using-yarn-command":"yarn add {{packageName}}","install-using-npm":"Install using npm","install-using-npm-command":"npm install {{packageName}}","install-using-pnpm":"Install using pnpm","install-using-pnpm-command":"pnpm install {{packageName}}"},"repository":{"title":"Repository"},"author":{"title":"Author"},"distribution":{"title":"Latest Distribution","license":"License","size":"Size","file-count":"file count"},"maintainers":{"title":"Maintainers"},"contributors":{"title":"Contributors"},"engines":{"npm-version":"NPM Version","node-js":"NODE JS"}},"footer":{"powered-by":"Powered by","made-with-love-on":"Made with <0>♥</0> on"},"button":{"close":"Close","cancel":"Cancel","login":"Login","logout":"Logout","go-to-the-home-page":"Go to the home page","learn-more":"Learn More","fund-this-package":"<0>Fund</0> this package"},"error":{"404":{"page-not-found":"404 - Page not found","sorry-we-could-not-find-it":"Sorry, we couldn\'t find it..."},"unspecific":"Something went wrong.","app-context-not-correct-used":"The app context was not used correctly","theme-context-not-correct-used":"The theme context was not used correctly","package-meta-is-required-at-detail-context":"packageMeta is required at DetailContext"},"lng":{"english":"English","czech":"Czech","japanese":"Japanese","portuguese":"Portuguese","spanish":"Spanish","german":"German","chinese":"Chinese","chineseTraditional":"Chinese (Traditional)","french":"French","russian":"Russian","turkish":"Turkish","ukraine":"Ukraine","khmer":"Khmer"},"flag":{"austria":"Austria","brazil":"Brazil","spain":"Spain","nicaragua":"Nicaragua","india":"India","china":"China","germany":"Germany","taiwan":"Taiwan"}}')},"./src/i18n/download_translations/ru-RU/ui.json":e=>{"use strict";e.exports=JSON.parse('{"copy-to-clipboard":"Copy to clipboard","author-anonymous":"Anonymous","author-unknown":"Unknown","action-bar-action":{"visit-home-page":"Visit homepage","open-an-issue":"Open an issue","download-tarball":"Download tarball"},"dialog":{"registry-info":{"title":"Registry Info"}},"header":{"documentation":"Documentation","registry-info":"Registry Information","registry-info-link":"Learn more","registry-no-conf":"No configurations available","greetings":"Hi "},"search":{"packages":"Search Packages"},"autoComplete":{"loading":"Loading...","no-results-found":"No results found","clear":"Clear","expand":"Expand","collapse":"Collapse"},"tab":{"uplinks":"Аплинки","versions":"Versions","dependencies":"Dependencies","readme":"Readme"},"uplinks":{"title":"Аплинки","no-items":"{{name}} has no uplinks."},"versions":{"current-tags":"Current Tags","version-history":"Version history","not-available":"Not available"},"package":{"published-on":"Published on {{time}} •","version":"v{{version}}","visit-home-page":"Visit homepage","homepage":"Homepage","open-an-issue":"Open an issue","bugs":"Bugs","download":"Download {{what}}","the-tar-file":"the tar file","tarball":"Tarball"},"dependencies":{"has-no-dependencies":"{{package}} has no dependencies.","dependency-block":"{{package}}@{{version}}"},"form":{"username":"Username","password":"Password"},"form-placeholder":{"username":"Your username","password":"Your strong password"},"form-validation":{"required-field":"This field is required","required-min-length":"This field required the min length of {{length}}","unable-to-sign-in":"Unable to sign in","username-or-password-cant-be-empty":"Username or password can\'t be empty!"},"help":{"title":"No Package Published Yet.","sub-title":"To publish your first package just:","first-step":"1. Login","first-step-command-line":"npm adduser --registry {{registryUrl}}","second-step":"2. Publish","second-step-command-line":"npm publish --registry {{registryUrl}}","third-step":"3. Refresh this page"},"sidebar":{"detail":{"latest-version":"Latest v{{version}}","version":"v{{version}}"},"installation":{"title":"Установка","install-using-yarn":"Install using yarn","install-using-yarn-command":"yarn add {{packageName}}","install-using-npm":"Install using npm","install-using-npm-command":"npm install {{packageName}}","install-using-pnpm":"Install using pnpm","install-using-pnpm-command":"pnpm install {{packageName}}"},"repository":{"title":"Repository"},"author":{"title":"Author"},"distribution":{"title":"Latest Distribution","license":"License","size":"Size","file-count":"file count"},"maintainers":{"title":"Maintainers"},"contributors":{"title":"Contributors"},"engines":{"npm-version":"NPM Version","node-js":"NODE JS"}},"footer":{"powered-by":"Powered by","made-with-love-on":"Made with <0>♥</0> on"},"button":{"close":"Close","cancel":"Cancel","login":"Login","logout":"Logout","go-to-the-home-page":"Go to the home page","learn-more":"Learn More","fund-this-package":"<0>Fund</0> this package"},"error":{"404":{"page-not-found":"404 - Page not found","sorry-we-could-not-find-it":"Sorry, we couldn\'t find it..."},"unspecific":"Something went wrong.","app-context-not-correct-used":"The app context was not used correctly","theme-context-not-correct-used":"The theme context was not used correctly","package-meta-is-required-at-detail-context":"packageMeta is required at DetailContext"},"lng":{"english":"Английский","czech":"Czech","japanese":"Японский","portuguese":"Portuguese","spanish":"Испанский","german":"Немецкий","chinese":"Китайский","chineseTraditional":"Chinese (Traditional)","french":"Французский","russian":"Russian","turkish":"Turkish","ukraine":"Ukraine","khmer":"Khmer"},"flag":{"austria":"Austria","brazil":"Brazil","spain":"Spain","nicaragua":"Nicaragua","india":"India","china":"China","germany":"Germany","taiwan":"Taiwan"}}')},"./src/i18n/download_translations/si-LK/ui.json":e=>{"use strict";e.exports=JSON.parse('{"copy-to-clipboard":"Copy to clipboard","author-anonymous":"Anonymous","author-unknown":"Unknown","action-bar-action":{"visit-home-page":"Visit homepage","open-an-issue":"Open an issue","download-tarball":"Download tarball"},"dialog":{"registry-info":{"title":"Registry Info"}},"header":{"documentation":"Documentation","registry-info":"Registry Information","registry-info-link":"Learn more","registry-no-conf":"No configurations available","greetings":"Hi "},"search":{"packages":"Search Packages"},"autoComplete":{"loading":"Loading...","no-results-found":"No results found","clear":"Clear","expand":"Expand","collapse":"Collapse"},"tab":{"uplinks":"Uplinks","versions":"Versions","dependencies":"Dependencies","readme":"Readme"},"uplinks":{"title":"Uplinks","no-items":"{{name}} has no uplinks."},"versions":{"current-tags":"Current Tags","version-history":"Version history","not-available":"Not available"},"package":{"published-on":"Published on {{time}} •","version":"v{{version}}","visit-home-page":"Visit homepage","homepage":"Homepage","open-an-issue":"Open an issue","bugs":"Bugs","download":"Download {{what}}","the-tar-file":"the tar file","tarball":"Tarball"},"dependencies":{"has-no-dependencies":"{{package}} has no dependencies.","dependency-block":"{{package}}@{{version}}"},"form":{"username":"Username","password":"Password"},"form-placeholder":{"username":"Your username","password":"Your strong password"},"form-validation":{"required-field":"This field is required","required-min-length":"This field required the min length of {{length}}","unable-to-sign-in":"Unable to sign in","username-or-password-cant-be-empty":"Username or password can\'t be empty!"},"help":{"title":"No Package Published Yet.","sub-title":"To publish your first package just:","first-step":"1. Login","first-step-command-line":"npm adduser --registry {{registryUrl}}","second-step":"2. Publish","second-step-command-line":"npm publish --registry {{registryUrl}}","third-step":"3. Refresh this page"},"sidebar":{"detail":{"latest-version":"Latest v{{version}}","version":"v{{version}}"},"installation":{"title":"Installation","install-using-yarn":"Install using yarn","install-using-yarn-command":"yarn add {{packageName}}","install-using-npm":"Install using npm","install-using-npm-command":"npm install {{packageName}}","install-using-pnpm":"Install using pnpm","install-using-pnpm-command":"pnpm install {{packageName}}"},"repository":{"title":"Repository"},"author":{"title":"Author"},"distribution":{"title":"Latest Distribution","license":"License","size":"Size","file-count":"file count"},"maintainers":{"title":"Maintainers"},"contributors":{"title":"Contributors"},"engines":{"npm-version":"NPM Version","node-js":"NODE JS"}},"footer":{"powered-by":"Powered by","made-with-love-on":"Made with <0>♥</0> on"},"button":{"close":"Close","cancel":"Cancel","login":"Login","logout":"Logout","go-to-the-home-page":"Go to the home page","learn-more":"Learn More","fund-this-package":"<0>Fund</0> this package"},"error":{"404":{"page-not-found":"404 - Page not found","sorry-we-could-not-find-it":"Sorry, we couldn\'t find it..."},"unspecific":"Something went wrong.","app-context-not-correct-used":"The app context was not used correctly","theme-context-not-correct-used":"The theme context was not used correctly","package-meta-is-required-at-detail-context":"packageMeta is required at DetailContext"},"lng":{"english":"English","czech":"Czech","japanese":"Japanese","portuguese":"Portuguese","spanish":"Spanish","german":"German","chinese":"Chinese","chineseTraditional":"Chinese (Traditional)","french":"French","russian":"Russian","turkish":"Turkish","ukraine":"Ukraine","khmer":"Khmer"},"flag":{"austria":"Austria","brazil":"Brazil","spain":"Spain","nicaragua":"Nicaragua","india":"India","china":"China","germany":"Germany","taiwan":"Taiwan"}}')},"./src/i18n/download_translations/sr-CS/ui.json":e=>{"use strict";e.exports=JSON.parse('{"copy-to-clipboard":"Copy to clipboard","author-anonymous":"Anonymous","author-unknown":"Unknown","action-bar-action":{"visit-home-page":"Visit homepage","open-an-issue":"Open an issue","download-tarball":"Download tarball"},"dialog":{"registry-info":{"title":"Registry Info"}},"header":{"documentation":"Documentation","registry-info":"Registry Information","registry-info-link":"Learn more","registry-no-conf":"No configurations available","greetings":"Hi "},"search":{"packages":"Search Packages"},"autoComplete":{"loading":"Loading...","no-results-found":"No results found","clear":"Clear","expand":"Expand","collapse":"Collapse"},"tab":{"uplinks":"Uplinks","versions":"Versions","dependencies":"Dependencies","readme":"Readme"},"uplinks":{"title":"Uplinks","no-items":"{{name}} has no uplinks."},"versions":{"current-tags":"Current Tags","version-history":"Version history","not-available":"Not available"},"package":{"published-on":"Published on {{time}} •","version":"v{{version}}","visit-home-page":"Visit homepage","homepage":"Homepage","open-an-issue":"Open an issue","bugs":"Bugs","download":"Download {{what}}","the-tar-file":"the tar file","tarball":"Tarball"},"dependencies":{"has-no-dependencies":"{{package}} has no dependencies.","dependency-block":"{{package}}@{{version}}"},"form":{"username":"Username","password":"Password"},"form-placeholder":{"username":"Your username","password":"Your strong password"},"form-validation":{"required-field":"This field is required","required-min-length":"This field required the min length of {{length}}","unable-to-sign-in":"Unable to sign in","username-or-password-cant-be-empty":"Username or password can\'t be empty!"},"help":{"title":"No Package Published Yet.","sub-title":"To publish your first package just:","first-step":"1. Login","first-step-command-line":"npm adduser --registry {{registryUrl}}","second-step":"2. Publish","second-step-command-line":"npm publish --registry {{registryUrl}}","third-step":"3. Refresh this page"},"sidebar":{"detail":{"latest-version":"Latest v{{version}}","version":"v{{version}}"},"installation":{"title":"Instalacija","install-using-yarn":"Install using yarn","install-using-yarn-command":"yarn add {{packageName}}","install-using-npm":"Install using npm","install-using-npm-command":"npm install {{packageName}}","install-using-pnpm":"Install using pnpm","install-using-pnpm-command":"pnpm install {{packageName}}"},"repository":{"title":"Repository"},"author":{"title":"Author"},"distribution":{"title":"Latest Distribution","license":"License","size":"Size","file-count":"file count"},"maintainers":{"title":"Maintainers"},"contributors":{"title":"Contributors"},"engines":{"npm-version":"NPM Version","node-js":"NODE JS"}},"footer":{"powered-by":"Powered by","made-with-love-on":"Made with <0>♥</0> on"},"button":{"close":"Close","cancel":"Cancel","login":"Login","logout":"Logout","go-to-the-home-page":"Go to the home page","learn-more":"Learn More","fund-this-package":"<0>Fund</0> this package"},"error":{"404":{"page-not-found":"404 - Page not found","sorry-we-could-not-find-it":"Sorry, we couldn\'t find it..."},"unspecific":"Something went wrong.","app-context-not-correct-used":"The app context was not used correctly","theme-context-not-correct-used":"The theme context was not used correctly","package-meta-is-required-at-detail-context":"packageMeta is required at DetailContext"},"lng":{"english":"English","czech":"Czech","japanese":"Japanese","portuguese":"Portuguese","spanish":"Spanish","german":"German","chinese":"Chinese","chineseTraditional":"Chinese (Traditional)","french":"French","russian":"Russian","turkish":"Turkish","ukraine":"Ukraine","khmer":"Khmer"},"flag":{"austria":"Austria","brazil":"Brazil","spain":"Spain","nicaragua":"Nicaragua","india":"India","china":"China","germany":"Germany","taiwan":"Taiwan"}}')},"./src/i18n/download_translations/sr-SP/ui.json":e=>{"use strict";e.exports=JSON.parse('{"copy-to-clipboard":"Copy to clipboard","author-anonymous":"Anonymous","author-unknown":"Unknown","action-bar-action":{"visit-home-page":"Visit homepage","open-an-issue":"Open an issue","download-tarball":"Download tarball"},"dialog":{"registry-info":{"title":"Registry Info"}},"header":{"documentation":"Documentation","registry-info":"Registry Information","registry-info-link":"Learn more","registry-no-conf":"No configurations available","greetings":"Hi "},"search":{"packages":"Search Packages"},"autoComplete":{"loading":"Loading...","no-results-found":"No results found","clear":"Clear","expand":"Expand","collapse":"Collapse"},"tab":{"uplinks":"Uplinks","versions":"Versions","dependencies":"Dependencies","readme":"Readme"},"uplinks":{"title":"Uplinks","no-items":"{{name}} has no uplinks."},"versions":{"current-tags":"Current Tags","version-history":"Version history","not-available":"Not available"},"package":{"published-on":"Published on {{time}} •","version":"v{{version}}","visit-home-page":"Visit homepage","homepage":"Homepage","open-an-issue":"Open an issue","bugs":"Bugs","download":"Download {{what}}","the-tar-file":"the tar file","tarball":"Tarball"},"dependencies":{"has-no-dependencies":"{{package}} has no dependencies.","dependency-block":"{{package}}@{{version}}"},"form":{"username":"Username","password":"Password"},"form-placeholder":{"username":"Your username","password":"Your strong password"},"form-validation":{"required-field":"This field is required","required-min-length":"This field required the min length of {{length}}","unable-to-sign-in":"Unable to sign in","username-or-password-cant-be-empty":"Username or password can\'t be empty!"},"help":{"title":"No Package Published Yet.","sub-title":"To publish your first package just:","first-step":"1. Login","first-step-command-line":"npm adduser --registry {{registryUrl}}","second-step":"2. Publish","second-step-command-line":"npm publish --registry {{registryUrl}}","third-step":"3. Refresh this page"},"sidebar":{"detail":{"latest-version":"Latest v{{version}}","version":"v{{version}}"},"installation":{"title":"Installation","install-using-yarn":"Install using yarn","install-using-yarn-command":"yarn add {{packageName}}","install-using-npm":"Install using npm","install-using-npm-command":"npm install {{packageName}}","install-using-pnpm":"Install using pnpm","install-using-pnpm-command":"pnpm install {{packageName}}"},"repository":{"title":"Repository"},"author":{"title":"Author"},"distribution":{"title":"Latest Distribution","license":"License","size":"Size","file-count":"file count"},"maintainers":{"title":"Maintainers"},"contributors":{"title":"Contributors"},"engines":{"npm-version":"NPM Version","node-js":"NODE JS"}},"footer":{"powered-by":"Powered by","made-with-love-on":"Made with <0>♥</0> on"},"button":{"close":"Close","cancel":"Cancel","login":"Login","logout":"Logout","go-to-the-home-page":"Go to the home page","learn-more":"Learn More","fund-this-package":"<0>Fund</0> this package"},"error":{"404":{"page-not-found":"404 - Page not found","sorry-we-could-not-find-it":"Sorry, we couldn\'t find it..."},"unspecific":"Something went wrong.","app-context-not-correct-used":"The app context was not used correctly","theme-context-not-correct-used":"The theme context was not used correctly","package-meta-is-required-at-detail-context":"packageMeta is required at DetailContext"},"lng":{"english":"English","czech":"Czech","japanese":"Japanese","portuguese":"Portuguese","spanish":"Spanish","german":"German","chinese":"Chinese","chineseTraditional":"Chinese (Traditional)","french":"French","russian":"Russian","turkish":"Turkish","ukraine":"Ukraine","khmer":"Khmer"},"flag":{"austria":"Austria","brazil":"Brazil","spain":"Spain","nicaragua":"Nicaragua","india":"India","china":"China","germany":"Germany","taiwan":"Taiwan"}}')},"./src/i18n/download_translations/tg-TJ/ui.json":e=>{"use strict";e.exports=JSON.parse('{"copy-to-clipboard":"Copy to clipboard","author-anonymous":"Anonymous","author-unknown":"Unknown","action-bar-action":{"visit-home-page":"Visit homepage","open-an-issue":"Open an issue","download-tarball":"Download tarball"},"dialog":{"registry-info":{"title":"Registry Info"}},"header":{"documentation":"Documentation","registry-info":"Registry Information","registry-info-link":"Learn more","registry-no-conf":"No configurations available","greetings":"Hi "},"search":{"packages":"Search Packages"},"autoComplete":{"loading":"Loading...","no-results-found":"No results found","clear":"Clear","expand":"Expand","collapse":"Collapse"},"tab":{"uplinks":"Uplinks","versions":"Versions","dependencies":"Dependencies","readme":"Readme"},"uplinks":{"title":"Uplinks","no-items":"{{name}} has no uplinks."},"versions":{"current-tags":"Current Tags","version-history":"Version history","not-available":"Not available"},"package":{"published-on":"Published on {{time}} •","version":"v{{version}}","visit-home-page":"Visit homepage","homepage":"Homepage","open-an-issue":"Open an issue","bugs":"Bugs","download":"Download {{what}}","the-tar-file":"the tar file","tarball":"Tarball"},"dependencies":{"has-no-dependencies":"{{package}} has no dependencies.","dependency-block":"{{package}}@{{version}}"},"form":{"username":"Username","password":"Password"},"form-placeholder":{"username":"Your username","password":"Your strong password"},"form-validation":{"required-field":"This field is required","required-min-length":"This field required the min length of {{length}}","unable-to-sign-in":"Unable to sign in","username-or-password-cant-be-empty":"Username or password can\'t be empty!"},"help":{"title":"No Package Published Yet.","sub-title":"To publish your first package just:","first-step":"1. Login","first-step-command-line":"npm adduser --registry {{registryUrl}}","second-step":"2. Publish","second-step-command-line":"npm publish --registry {{registryUrl}}","third-step":"3. Refresh this page"},"sidebar":{"detail":{"latest-version":"Latest v{{version}}","version":"v{{version}}"},"installation":{"title":"Installation","install-using-yarn":"Install using yarn","install-using-yarn-command":"yarn add {{packageName}}","install-using-npm":"Install using npm","install-using-npm-command":"npm install {{packageName}}","install-using-pnpm":"Install using pnpm","install-using-pnpm-command":"pnpm install {{packageName}}"},"repository":{"title":"Repository"},"author":{"title":"Author"},"distribution":{"title":"Latest Distribution","license":"License","size":"Size","file-count":"file count"},"maintainers":{"title":"Maintainers"},"contributors":{"title":"Contributors"},"engines":{"npm-version":"NPM Version","node-js":"NODE JS"}},"footer":{"powered-by":"Powered by","made-with-love-on":"Made with <0>♥</0> on"},"button":{"close":"Close","cancel":"Cancel","login":"Login","logout":"Logout","go-to-the-home-page":"Go to the home page","learn-more":"Learn More","fund-this-package":"<0>Fund</0> this package"},"error":{"404":{"page-not-found":"404 - Page not found","sorry-we-could-not-find-it":"Sorry, we couldn\'t find it..."},"unspecific":"Something went wrong.","app-context-not-correct-used":"The app context was not used correctly","theme-context-not-correct-used":"The theme context was not used correctly","package-meta-is-required-at-detail-context":"packageMeta is required at DetailContext"},"lng":{"english":"English","czech":"Czech","japanese":"Japanese","portuguese":"Portuguese","spanish":"Spanish","german":"German","chinese":"Chinese","chineseTraditional":"Chinese (Traditional)","french":"French","russian":"Russian","turkish":"Turkish","ukraine":"Ukraine","khmer":"Khmer"},"flag":{"austria":"Austria","brazil":"Brazil","spain":"Spain","nicaragua":"Nicaragua","india":"India","china":"China","germany":"Germany","taiwan":"Taiwan"}}')},"./src/i18n/download_translations/tr-TR/ui.json":e=>{"use strict";e.exports=JSON.parse('{"copy-to-clipboard":"Panoya kopyala","author-anonymous":"Anonymous","author-unknown":"Unknown","action-bar-action":{"visit-home-page":"Visit homepage","open-an-issue":"Open an issue","download-tarball":"Download tarball"},"dialog":{"registry-info":{"title":"Registry Info"}},"header":{"documentation":"Documentation","registry-info":"Registry Information","registry-info-link":"Learn more","registry-no-conf":"No configurations available","greetings":"Hi "},"search":{"packages":"Search Packages"},"autoComplete":{"loading":"Loading...","no-results-found":"No results found","clear":"Clear","expand":"Expand","collapse":"Collapse"},"tab":{"uplinks":"Uplinks","versions":"Versions","dependencies":"Dependencies","readme":"Readme"},"uplinks":{"title":"Uplinks","no-items":"{{name}} has no uplinks."},"versions":{"current-tags":"Current Tags","version-history":"Version history","not-available":"Not available"},"package":{"published-on":"Published on {{time}} •","version":"v{{version}}","visit-home-page":"Visit homepage","homepage":"Homepage","open-an-issue":"Open an issue","bugs":"Bugs","download":"Download {{what}}","the-tar-file":"the tar file","tarball":"Tarball"},"dependencies":{"has-no-dependencies":"{{package}} has no dependencies.","dependency-block":"{{package}}@{{version}}"},"form":{"username":"Username","password":"Password"},"form-placeholder":{"username":"Your username","password":"Your strong password"},"form-validation":{"required-field":"This field is required","required-min-length":"This field required the min length of {{length}}","unable-to-sign-in":"Unable to sign in","username-or-password-cant-be-empty":"Username or password can\'t be empty!"},"help":{"title":"No Package Published Yet.","sub-title":"To publish your first package just:","first-step":"1. Login","first-step-command-line":"npm adduser --registry {{registryUrl}}","second-step":"2. Publish","second-step-command-line":"npm publish --registry {{registryUrl}}","third-step":"3. Refresh this page"},"sidebar":{"detail":{"latest-version":"Latest v{{version}}","version":"v{{version}}"},"installation":{"title":"Installation","install-using-yarn":"Install using yarn","install-using-yarn-command":"yarn add {{packageName}}","install-using-npm":"Install using npm","install-using-npm-command":"npm install {{packageName}}","install-using-pnpm":"Install using pnpm","install-using-pnpm-command":"pnpm install {{packageName}}"},"repository":{"title":"Repository"},"author":{"title":"Author"},"distribution":{"title":"Latest Distribution","license":"License","size":"Size","file-count":"file count"},"maintainers":{"title":"Maintainers"},"contributors":{"title":"Contributors"},"engines":{"npm-version":"NPM Version","node-js":"NODE JS"}},"footer":{"powered-by":"Powered by","made-with-love-on":"Made with <0>♥</0> on"},"button":{"close":"Close","cancel":"Cancel","login":"Login","logout":"Logout","go-to-the-home-page":"Go to the home page","learn-more":"Learn More","fund-this-package":"<0>Fund</0> this package"},"error":{"404":{"page-not-found":"404 - Page not found","sorry-we-could-not-find-it":"Sorry, we couldn\'t find it..."},"unspecific":"Something went wrong.","app-context-not-correct-used":"The app context was not used correctly","theme-context-not-correct-used":"The theme context was not used correctly","package-meta-is-required-at-detail-context":"packageMeta is required at DetailContext"},"lng":{"english":"English","czech":"Czech","japanese":"Japanese","portuguese":"Portuguese","spanish":"Spanish","german":"German","chinese":"Chinese","chineseTraditional":"Chinese (Traditional)","french":"French","russian":"Russian","turkish":"Turkish","ukraine":"Ukraine","khmer":"Khmer"},"flag":{"austria":"Austria","brazil":"Brazil","spain":"Spain","nicaragua":"Nicaragua","india":"India","china":"China","germany":"Germany","taiwan":"Taiwan"}}')},"./src/i18n/download_translations/uk-UA/ui.json":e=>{"use strict";e.exports=JSON.parse('{"copy-to-clipboard":"Копіювати в буфер обміну","author-anonymous":"Anonymous","author-unknown":"Unknown","action-bar-action":{"visit-home-page":"Visit homepage","open-an-issue":"Open an issue","download-tarball":"Download tarball"},"dialog":{"registry-info":{"title":"Registry Info"}},"header":{"documentation":"Documentation","registry-info":"Registry Information","registry-info-link":"Learn more","registry-no-conf":"No configurations available","greetings":"Hi "},"search":{"packages":"Search Packages"},"autoComplete":{"loading":"Loading...","no-results-found":"No results found","clear":"Clear","expand":"Expand","collapse":"Collapse"},"tab":{"uplinks":"Uplinks","versions":"Versions","dependencies":"Dependencies","readme":"Readme"},"uplinks":{"title":"Uplinks","no-items":"{{name}} has no uplinks."},"versions":{"current-tags":"Current Tags","version-history":"Version history","not-available":"Not available"},"package":{"published-on":"Published on {{time}} •","version":"v{{version}}","visit-home-page":"Visit homepage","homepage":"Homepage","open-an-issue":"Open an issue","bugs":"Bugs","download":"Download {{what}}","the-tar-file":"the tar file","tarball":"Tarball"},"dependencies":{"has-no-dependencies":"{{package}} has no dependencies.","dependency-block":"{{package}}@{{version}}"},"form":{"username":"Username","password":"Password"},"form-placeholder":{"username":"Your username","password":"Your strong password"},"form-validation":{"required-field":"This field is required","required-min-length":"This field required the min length of {{length}}","unable-to-sign-in":"Unable to sign in","username-or-password-cant-be-empty":"Username or password can\'t be empty!"},"help":{"title":"No Package Published Yet.","sub-title":"To publish your first package just:","first-step":"1. Login","first-step-command-line":"npm adduser --registry {{registryUrl}}","second-step":"2. Publish","second-step-command-line":"npm publish --registry {{registryUrl}}","third-step":"3. Refresh this page"},"sidebar":{"detail":{"latest-version":"Latest v{{version}}","version":"v{{version}}"},"installation":{"title":"Installation","install-using-yarn":"Install using yarn","install-using-yarn-command":"yarn add {{packageName}}","install-using-npm":"Install using npm","install-using-npm-command":"npm install {{packageName}}","install-using-pnpm":"Install using pnpm","install-using-pnpm-command":"pnpm install {{packageName}}"},"repository":{"title":"Repository"},"author":{"title":"Author"},"distribution":{"title":"Latest Distribution","license":"License","size":"Size","file-count":"file count"},"maintainers":{"title":"Maintainers"},"contributors":{"title":"Contributors"},"engines":{"npm-version":"NPM Version","node-js":"NODE JS"}},"footer":{"powered-by":"Powered by","made-with-love-on":"Made with <0>♥</0> on"},"button":{"close":"Close","cancel":"Cancel","login":"Login","logout":"Logout","go-to-the-home-page":"Go to the home page","learn-more":"Learn More","fund-this-package":"<0>Fund</0> this package"},"error":{"404":{"page-not-found":"404 - Page not found","sorry-we-could-not-find-it":"Sorry, we couldn\'t find it..."},"unspecific":"Something went wrong.","app-context-not-correct-used":"The app context was not used correctly","theme-context-not-correct-used":"The theme context was not used correctly","package-meta-is-required-at-detail-context":"packageMeta is required at DetailContext"},"lng":{"english":"English","czech":"Czech","japanese":"Japanese","portuguese":"Portuguese","spanish":"Spanish","german":"German","chinese":"Chinese","chineseTraditional":"Chinese (Traditional)","french":"French","russian":"Russian","turkish":"Turkish","ukraine":"Ukraine","khmer":"Khmer"},"flag":{"austria":"Austria","brazil":"Brazil","spain":"Spain","nicaragua":"Nicaragua","india":"India","china":"China","germany":"Germany","taiwan":"Taiwan"}}')},"./src/i18n/download_translations/vi-VN/ui.json":e=>{"use strict";e.exports=JSON.parse('{"copy-to-clipboard":"Copy to clipboard","author-anonymous":"Anonymous","author-unknown":"Unknown","action-bar-action":{"visit-home-page":"Visit homepage","open-an-issue":"Open an issue","download-tarball":"Download tarball"},"dialog":{"registry-info":{"title":"Registry Info"}},"header":{"documentation":"Documentation","registry-info":"Registry Information","registry-info-link":"Learn more","registry-no-conf":"No configurations available","greetings":"Hi "},"search":{"packages":"Search Packages"},"autoComplete":{"loading":"Loading...","no-results-found":"No results found","clear":"Clear","expand":"Expand","collapse":"Collapse"},"tab":{"uplinks":"Uplinks","versions":"Versions","dependencies":"Dependencies","readme":"Readme"},"uplinks":{"title":"Uplinks","no-items":"{{name}} has no uplinks."},"versions":{"current-tags":"Current Tags","version-history":"Version history","not-available":"Not available"},"package":{"published-on":"Published on {{time}} •","version":"v{{version}}","visit-home-page":"Visit homepage","homepage":"Homepage","open-an-issue":"Open an issue","bugs":"Bugs","download":"Download {{what}}","the-tar-file":"the tar file","tarball":"Tarball"},"dependencies":{"has-no-dependencies":"{{package}} has no dependencies.","dependency-block":"{{package}}@{{version}}"},"form":{"username":"Username","password":"Password"},"form-placeholder":{"username":"Your username","password":"Your strong password"},"form-validation":{"required-field":"This field is required","required-min-length":"This field required the min length of {{length}}","unable-to-sign-in":"Unable to sign in","username-or-password-cant-be-empty":"Username or password can\'t be empty!"},"help":{"title":"No Package Published Yet.","sub-title":"To publish your first package just:","first-step":"1. Login","first-step-command-line":"npm adduser --registry {{registryUrl}}","second-step":"2. Publish","second-step-command-line":"npm publish --registry {{registryUrl}}","third-step":"3. Refresh this page"},"sidebar":{"detail":{"latest-version":"Latest v{{version}}","version":"v{{version}}"},"installation":{"title":"Installation","install-using-yarn":"Install using yarn","install-using-yarn-command":"yarn add {{packageName}}","install-using-npm":"Install using npm","install-using-npm-command":"npm install {{packageName}}","install-using-pnpm":"Install using pnpm","install-using-pnpm-command":"pnpm install {{packageName}}"},"repository":{"title":"Repository"},"author":{"title":"Author"},"distribution":{"title":"Latest Distribution","license":"License","size":"Size","file-count":"file count"},"maintainers":{"title":"Maintainers"},"contributors":{"title":"Contributors"},"engines":{"npm-version":"NPM Version","node-js":"NODE JS"}},"footer":{"powered-by":"Powered by","made-with-love-on":"Made with <0>♥</0> on"},"button":{"close":"Close","cancel":"Cancel","login":"Login","logout":"Logout","go-to-the-home-page":"Go to the home page","learn-more":"Learn More","fund-this-package":"<0>Fund</0> this package"},"error":{"404":{"page-not-found":"404 - Page not found","sorry-we-could-not-find-it":"Sorry, we couldn\'t find it..."},"unspecific":"Something went wrong.","app-context-not-correct-used":"The app context was not used correctly","theme-context-not-correct-used":"The theme context was not used correctly","package-meta-is-required-at-detail-context":"packageMeta is required at DetailContext"},"lng":{"english":"English","czech":"Czech","japanese":"Japanese","portuguese":"Portuguese","spanish":"Spanish","german":"German","chinese":"Chinese","chineseTraditional":"Chinese (Traditional)","french":"French","russian":"Russian","turkish":"Turkish","ukraine":"Ukraine","khmer":"Khmer"},"flag":{"austria":"Austria","brazil":"Brazil","spain":"Spain","nicaragua":"Nicaragua","india":"India","china":"China","germany":"Germany","taiwan":"Taiwan"}}')},"./src/i18n/download_translations/yo-NG/ui.json":e=>{"use strict";e.exports=JSON.parse('{"copy-to-clipboard":"Copy to clipboard","author-anonymous":"Anonymous","author-unknown":"Unknown","action-bar-action":{"visit-home-page":"Visit homepage","open-an-issue":"Open an issue","download-tarball":"Download tarball"},"dialog":{"registry-info":{"title":"Registry Info"}},"header":{"documentation":"Documentation","registry-info":"Registry Information","registry-info-link":"Learn more","registry-no-conf":"No configurations available","greetings":"Hi "},"search":{"packages":"Search Packages"},"autoComplete":{"loading":"Loading...","no-results-found":"No results found","clear":"Clear","expand":"Expand","collapse":"Collapse"},"tab":{"uplinks":"Uplinks","versions":"Versions","dependencies":"Dependencies","readme":"Readme"},"uplinks":{"title":"Uplinks","no-items":"{{name}} has no uplinks."},"versions":{"current-tags":"Current Tags","version-history":"Version history","not-available":"Not available"},"package":{"published-on":"Published on {{time}} •","version":"v{{version}}","visit-home-page":"Visit homepage","homepage":"Homepage","open-an-issue":"Open an issue","bugs":"Bugs","download":"Download {{what}}","the-tar-file":"the tar file","tarball":"Tarball"},"dependencies":{"has-no-dependencies":"{{package}} has no dependencies.","dependency-block":"{{package}}@{{version}}"},"form":{"username":"Username","password":"Password"},"form-placeholder":{"username":"Your username","password":"Your strong password"},"form-validation":{"required-field":"This field is required","required-min-length":"This field required the min length of {{length}}","unable-to-sign-in":"Unable to sign in","username-or-password-cant-be-empty":"Username or password can\'t be empty!"},"help":{"title":"No Package Published Yet.","sub-title":"To publish your first package just:","first-step":"1. Login","first-step-command-line":"npm adduser --registry {{registryUrl}}","second-step":"2. Publish","second-step-command-line":"npm publish --registry {{registryUrl}}","third-step":"3. Refresh this page"},"sidebar":{"detail":{"latest-version":"Latest v{{version}}","version":"v{{version}}"},"installation":{"title":"Ifi sori ẹrọ","install-using-yarn":"Install using yarn","install-using-yarn-command":"yarn add {{packageName}}","install-using-npm":"Install using npm","install-using-npm-command":"npm install {{packageName}}","install-using-pnpm":"Install using pnpm","install-using-pnpm-command":"pnpm install {{packageName}}"},"repository":{"title":"Repository"},"author":{"title":"Author"},"distribution":{"title":"Latest Distribution","license":"License","size":"Size","file-count":"file count"},"maintainers":{"title":"Maintainers"},"contributors":{"title":"Contributors"},"engines":{"npm-version":"NPM Version","node-js":"NODE JS"}},"footer":{"powered-by":"Powered by","made-with-love-on":"Made with <0>♥</0> on"},"button":{"close":"Close","cancel":"Cancel","login":"Login","logout":"Logout","go-to-the-home-page":"Go to the home page","learn-more":"Learn More","fund-this-package":"<0>Fund</0> this package"},"error":{"404":{"page-not-found":"404 - Page not found","sorry-we-could-not-find-it":"Sorry, we couldn\'t find it..."},"unspecific":"Something went wrong.","app-context-not-correct-used":"The app context was not used correctly","theme-context-not-correct-used":"The theme context was not used correctly","package-meta-is-required-at-detail-context":"packageMeta is required at DetailContext"},"lng":{"english":"Gẹẹsi","czech":"Czech","japanese":"Japanisi","portuguese":"Portuguese","spanish":"Sipanisi","german":"Jamani","chinese":"Ṣainisi","chineseTraditional":"Chinese (Traditional)","french":"Faranse","russian":"Russian","turkish":"Turkish","ukraine":"Ukraine","khmer":"Khmer"},"flag":{"austria":"Austria","brazil":"Brazil","spain":"Spain","nicaragua":"Nicaragua","india":"India","china":"China","germany":"Germany","taiwan":"Taiwan"}}')},"./src/i18n/download_translations/zh-CN/ui.json":e=>{"use strict";e.exports=JSON.parse('{"copy-to-clipboard":"Copy to clipboard","author-anonymous":"Anonymous","author-unknown":"Unknown","action-bar-action":{"visit-home-page":"Visit homepage","open-an-issue":"Open an issue","download-tarball":"Download tarball"},"dialog":{"registry-info":{"title":"Registry Info"}},"header":{"documentation":"Documentation","registry-info":"Registry Information","registry-info-link":"Learn more","registry-no-conf":"No configurations available","greetings":"Hi "},"search":{"packages":"Search Packages"},"autoComplete":{"loading":"Loading...","no-results-found":"No results found","clear":"Clear","expand":"Expand","collapse":"Collapse"},"tab":{"uplinks":"上行链路","versions":"Versions","dependencies":"Dependencies","readme":"Readme"},"uplinks":{"title":"上行链路","no-items":"{{name}} has no uplinks."},"versions":{"current-tags":"Current Tags","version-history":"Version history","not-available":"Not available"},"package":{"published-on":"Published on {{time}} •","version":"v{{version}}","visit-home-page":"Visit homepage","homepage":"Homepage","open-an-issue":"Open an issue","bugs":"Bugs","download":"Download {{what}}","the-tar-file":"the tar file","tarball":"Tarball"},"dependencies":{"has-no-dependencies":"{{package}} has no dependencies.","dependency-block":"{{package}}@{{version}}"},"form":{"username":"Username","password":"Password"},"form-placeholder":{"username":"Your username","password":"Your strong password"},"form-validation":{"required-field":"This field is required","required-min-length":"This field required the min length of {{length}}","unable-to-sign-in":"Unable to sign in","username-or-password-cant-be-empty":"Username or password can\'t be empty!"},"help":{"title":"No Package Published Yet.","sub-title":"To publish your first package just:","first-step":"1. Login","first-step-command-line":"npm adduser --registry {{registryUrl}}","second-step":"2. Publish","second-step-command-line":"npm publish --registry {{registryUrl}}","third-step":"3. Refresh this page"},"sidebar":{"detail":{"latest-version":"Latest v{{version}}","version":"v{{version}}"},"installation":{"title":"安装","install-using-yarn":"Install using yarn","install-using-yarn-command":"yarn add {{packageName}}","install-using-npm":"Install using npm","install-using-npm-command":"npm install {{packageName}}","install-using-pnpm":"Install using pnpm","install-using-pnpm-command":"pnpm install {{packageName}}"},"repository":{"title":"Repository"},"author":{"title":"Author"},"distribution":{"title":"Latest Distribution","license":"License","size":"Size","file-count":"file count"},"maintainers":{"title":"Maintainers"},"contributors":{"title":"Contributors"},"engines":{"npm-version":"NPM Version","node-js":"NODE JS"}},"footer":{"powered-by":"Powered by","made-with-love-on":"Made with <0>♥</0> on"},"button":{"close":"Close","cancel":"Cancel","login":"Login","logout":"Logout","go-to-the-home-page":"Go to the home page","learn-more":"Learn More","fund-this-package":"<0>Fund</0> this package"},"error":{"404":{"page-not-found":"404 - Page not found","sorry-we-could-not-find-it":"Sorry, we couldn\'t find it..."},"unspecific":"Something went wrong.","app-context-not-correct-used":"The app context was not used correctly","theme-context-not-correct-used":"The theme context was not used correctly","package-meta-is-required-at-detail-context":"packageMeta is required at DetailContext"},"lng":{"english":"English","czech":"Czech","japanese":"Japanese","portuguese":"Portuguese","spanish":"Spanish","german":"German","chinese":"Chinese","chineseTraditional":"Chinese (Traditional)","french":"French","russian":"Russian","turkish":"Turkish","ukraine":"Ukraine","khmer":"Khmer"},"flag":{"austria":"Austria","brazil":"Brazil","spain":"Spain","nicaragua":"Nicaragua","india":"India","china":"China","germany":"Germany","taiwan":"Taiwan"}}')},"./src/i18n/download_translations/zh-TW/ui.json":e=>{"use strict";e.exports=JSON.parse('{"copy-to-clipboard":"Copy to clipboard","author-anonymous":"Anonymous","author-unknown":"Unknown","action-bar-action":{"visit-home-page":"Visit homepage","open-an-issue":"Open an issue","download-tarball":"Download tarball"},"dialog":{"registry-info":{"title":"Registry Info"}},"header":{"documentation":"Documentation","registry-info":"Registry Information","registry-info-link":"Learn more","registry-no-conf":"No configurations available","greetings":"Hi "},"search":{"packages":"Search Packages"},"autoComplete":{"loading":"Loading...","no-results-found":"No results found","clear":"Clear","expand":"Expand","collapse":"Collapse"},"tab":{"uplinks":"Uplinks","versions":"Versions","dependencies":"Dependencies","readme":"Readme"},"uplinks":{"title":"Uplinks","no-items":"{{name}} has no uplinks."},"versions":{"current-tags":"Current Tags","version-history":"Version history","not-available":"Not available"},"package":{"published-on":"Published on {{time}} •","version":"v{{version}}","visit-home-page":"Visit homepage","homepage":"Homepage","open-an-issue":"Open an issue","bugs":"Bugs","download":"Download {{what}}","the-tar-file":"the tar file","tarball":"Tarball"},"dependencies":{"has-no-dependencies":"{{package}} has no dependencies.","dependency-block":"{{package}}@{{version}}"},"form":{"username":"Username","password":"Password"},"form-placeholder":{"username":"Your username","password":"Your strong password"},"form-validation":{"required-field":"This field is required","required-min-length":"This field required the min length of {{length}}","unable-to-sign-in":"Unable to sign in","username-or-password-cant-be-empty":"Username or password can\'t be empty!"},"help":{"title":"No Package Published Yet.","sub-title":"To publish your first package just:","first-step":"1. Login","first-step-command-line":"npm adduser --registry {{registryUrl}}","second-step":"2. Publish","second-step-command-line":"npm publish --registry {{registryUrl}}","third-step":"3. Refresh this page"},"sidebar":{"detail":{"latest-version":"Latest v{{version}}","version":"v{{version}}"},"installation":{"title":"Installation","install-using-yarn":"Install using yarn","install-using-yarn-command":"yarn add {{packageName}}","install-using-npm":"Install using npm","install-using-npm-command":"npm install {{packageName}}","install-using-pnpm":"Install using pnpm","install-using-pnpm-command":"pnpm install {{packageName}}"},"repository":{"title":"Repository"},"author":{"title":"Author"},"distribution":{"title":"Latest Distribution","license":"License","size":"Size","file-count":"file count"},"maintainers":{"title":"Maintainers"},"contributors":{"title":"Contributors"},"engines":{"npm-version":"NPM Version","node-js":"NODE JS"}},"footer":{"powered-by":"Powered by","made-with-love-on":"Made with <0>♥</0> on"},"button":{"close":"Close","cancel":"Cancel","login":"Login","logout":"Logout","go-to-the-home-page":"Go to the home page","learn-more":"Learn More","fund-this-package":"<0>Fund</0> this package"},"error":{"404":{"page-not-found":"404 - Page not found","sorry-we-could-not-find-it":"Sorry, we couldn\'t find it..."},"unspecific":"Something went wrong.","app-context-not-correct-used":"The app context was not used correctly","theme-context-not-correct-used":"The theme context was not used correctly","package-meta-is-required-at-detail-context":"packageMeta is required at DetailContext"},"lng":{"english":"English","czech":"Czech","japanese":"Japanese","portuguese":"Portuguese","spanish":"Spanish","german":"German","chinese":"Chinese","chineseTraditional":"Chinese (Traditional)","french":"French","russian":"Russian","turkish":"Turkish","ukraine":"Ukraine","khmer":"Khmer"},"flag":{"austria":"Austria","brazil":"Brazil","spain":"Spain","nicaragua":"Nicaragua","india":"India","china":"China","germany":"Germany","taiwan":"Taiwan"}}')}},e=>{var t=t=>e(e.s=t);e.O(0,["vendors"],(()=>(t("../../../node_modules/.pnpm/whatwg-fetch@3.6.2/node_modules/whatwg-fetch/fetch.js"),t("./src/index.tsx"))));e.O()}]);