react-jupiter 5.12.0 → 6.0.0-beta.2
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.
- package/.babelrc +12 -0
- package/.env +3 -0
- package/.eslintignore +2 -0
- package/.eslintrc +18 -0
- package/.eslintrc.js +47 -0
- package/.eslintrc.json +16 -0
- package/.flowconfig +0 -0
- package/.storybook/main.js +27 -0
- package/.storybook/preview-head.html +1 -0
- package/.storybook/preview.js +30 -0
- package/.storybook/style.css +9 -0
- package/.vscode/settings.json +4 -0
- package/__mocks__/fileMock.js +1 -0
- package/config-overrides.js +34 -0
- package/dist/App.js +13 -0
- package/dist/components/accordion/index.js +25 -0
- package/dist/components/accordion/index.stories.js +82 -0
- package/dist/components/accordion/index.styles.js +52 -0
- package/dist/components/accordion/panel.js +41 -0
- package/dist/components/avatar/index.js +41 -0
- package/dist/components/avatar/index.stories.js +59 -0
- package/dist/components/avatar/index.styles.js +17 -0
- package/dist/components/avatar/index.test.js +10 -0
- package/dist/components/avatar/theme.js +13 -0
- package/dist/components/button/__snapshots__/index.test.js.snap +489 -0
- package/dist/components/button/index.js +209 -0
- package/dist/components/button/index.stories.js +304 -0
- package/dist/components/button/index.styles.js +104 -0
- package/dist/components/button/theme.js +58 -0
- package/dist/components/button/utils.js +12 -0
- package/dist/components/card/card-template/index.js +74 -0
- package/dist/components/card/card-template/index.stories.js +110 -0
- package/dist/components/card/card-template/index.style.js +25 -0
- package/dist/components/card/card-template/index.test.js +85 -0
- package/dist/components/card/event-card/constants.js +3 -0
- package/dist/components/card/event-card/event-card-label/index.js +24 -0
- package/dist/components/card/event-card/event-card-label/index.style.js +10 -0
- package/dist/components/card/event-card/event-card-label/index.test.js +23 -0
- package/dist/components/card/event-card/index.js +227 -0
- package/dist/components/card/event-card/index.stories.js +166 -0
- package/dist/components/card/event-card/index.style.js +129 -0
- package/dist/components/card/event-card/index.test.js +79 -0
- package/dist/components/card/index.js +16 -0
- package/dist/components/card/organization-card/index.js +59 -0
- package/dist/components/card/organization-card/index.stories.js +49 -0
- package/dist/components/card/organization-card/index.style.js +10 -0
- package/dist/components/card/organization-card/index.test.js +25 -0
- package/dist/components/card/orgnizer-card/buttons.js +48 -0
- package/dist/components/card/orgnizer-card/index.js +179 -0
- package/dist/components/card/orgnizer-card/index.stories.js +81 -0
- package/dist/components/card/orgnizer-card/index.style.js +58 -0
- package/dist/components/cover/index.js +74 -0
- package/dist/components/cover/index.style.js +48 -0
- package/dist/components/cover/index.test.js +25 -0
- package/dist/components/display/index.js +42 -0
- package/dist/components/display/index.style.js +79 -0
- package/dist/components/file-item/fileImgIcon.js +37 -0
- package/dist/components/file-item/fileImgsFont.js +800 -0
- package/dist/components/file-item/index.js +101 -0
- package/dist/components/file-item/index.stories.js +71 -0
- package/dist/components/file-item/index.style.js +31 -0
- package/dist/components/file-item/index.test.js +106 -0
- package/dist/components/file-item/theme.js +12 -0
- package/dist/components/file-item/utils.js +3 -0
- package/dist/components/form/captcha/index.js +86 -0
- package/dist/components/form/captcha/index.stories.js +42 -0
- package/dist/components/form/captcha/index.style.js +38 -0
- package/dist/components/form/captcha/index.test.js +31 -0
- package/dist/components/form/checkbox/checkbox-option.js +41 -0
- package/dist/components/form/checkbox/checkbox.js +54 -0
- package/dist/components/form/checkbox/index.js +10 -0
- package/dist/components/form/checkbox/index.stories.js +121 -0
- package/dist/components/form/checkbox/index.style.js +62 -0
- package/dist/components/form/dropdown/index.js +10 -0
- package/dist/components/form/dropdown/index.stories.js +119 -0
- package/dist/components/form/dropdown/index.style.js +57 -0
- package/dist/components/form/dropdown/index.test.js +20 -0
- package/dist/components/form/dropdown/option.js +22 -0
- package/dist/components/form/dropdown/select.js +68 -0
- package/dist/components/form/errorMsg.js +21 -0
- package/dist/components/form/index.js +22 -0
- package/dist/components/form/radio/index.js +10 -0
- package/dist/components/form/radio/index.stories.js +119 -0
- package/dist/components/form/radio/index.style.js +61 -0
- package/dist/components/form/radio/radio-option.js +45 -0
- package/dist/components/form/radio/radio.js +56 -0
- package/dist/components/form/text-input/index.js +92 -0
- package/dist/components/form/text-input/index.stories.js +77 -0
- package/dist/components/form/text-input/index.style.js +57 -0
- package/dist/components/form/text-input/index.test.js +63 -0
- package/dist/components/form/textarea/index.js +59 -0
- package/dist/components/form/textarea/index.stories.js +90 -0
- package/dist/components/form/textarea/index.style.js +25 -0
- package/dist/components/form/theme.js +16 -0
- package/dist/components/form-v7/captcha/index.js +101 -0
- package/dist/components/form-v7/captcha/index.stories.js +60 -0
- package/dist/components/form-v7/captcha/index.style.js +38 -0
- package/dist/components/form-v7/captcha/index.test.js +31 -0
- package/dist/components/form-v7/checkbox/checkbox-option.js +44 -0
- package/dist/components/form-v7/checkbox/checkbox.js +70 -0
- package/dist/components/form-v7/checkbox/index.js +10 -0
- package/dist/components/form-v7/checkbox/index.stories.js +113 -0
- package/dist/components/form-v7/checkbox/index.style.js +62 -0
- package/dist/components/form-v7/dropdown/index.js +10 -0
- package/dist/components/form-v7/dropdown/index.stories.js +130 -0
- package/dist/components/form-v7/dropdown/index.style.js +57 -0
- package/dist/components/form-v7/dropdown/index.test.js +20 -0
- package/dist/components/form-v7/dropdown/option.js +18 -0
- package/dist/components/form-v7/dropdown/select.js +85 -0
- package/dist/components/form-v7/errorMsg.js +21 -0
- package/dist/components/form-v7/file-input/index.js +73 -0
- package/dist/components/form-v7/file-input/index.stories.js +73 -0
- package/dist/components/form-v7/file-input/index.style.js +62 -0
- package/dist/components/form-v7/file-input/index.test.js +63 -0
- package/dist/components/form-v7/form/index.stories.js +276 -0
- package/dist/components/form-v7/index.js +25 -0
- package/dist/components/form-v7/index.style.js +11 -0
- package/dist/components/form-v7/label/index.js +31 -0
- package/dist/components/form-v7/label/index.style.js +12 -0
- package/dist/components/form-v7/radio/index.js +10 -0
- package/dist/components/form-v7/radio/index.stories.js +117 -0
- package/dist/components/form-v7/radio/index.style.js +61 -0
- package/dist/components/form-v7/radio/radio-option.js +45 -0
- package/dist/components/form-v7/radio/radio.js +75 -0
- package/dist/components/form-v7/text-input/index.js +132 -0
- package/dist/components/form-v7/text-input/index.stories.js +96 -0
- package/dist/components/form-v7/text-input/index.style.js +49 -0
- package/dist/components/form-v7/text-input/index.test.js +63 -0
- package/dist/components/form-v7/textarea/index.js +71 -0
- package/dist/components/form-v7/textarea/index.stories.js +91 -0
- package/dist/components/form-v7/textarea/index.style.js +25 -0
- package/dist/components/form-v7/theme.js +20 -0
- package/dist/components/globalStyle.js +28 -0
- package/dist/components/grid/index.js +83 -0
- package/dist/components/icon/iconFont.js +806 -0
- package/dist/components/icon/index.js +116 -0
- package/dist/components/icon/index.stories.js +45 -0
- package/dist/components/icon/index.styles.js +12 -0
- package/dist/components/icon/index.test.js +66 -0
- package/dist/components/icon/theme.js +23 -0
- package/dist/components/index.js +75 -0
- package/dist/components/modal/index.js +100 -0
- package/dist/components/modal/index.stories.js +86 -0
- package/dist/components/modal/index.style.js +40 -0
- package/dist/components/modal/theme.js +11 -0
- package/dist/components/numeric-summery-report/index.js +28 -0
- package/dist/components/numeric-summery-report/index.stories.js +37 -0
- package/dist/components/numeric-summery-report/index.style.js +16 -0
- package/dist/components/numeric-summery-report/index.test.js +22 -0
- package/dist/components/product-menu/index.js +10 -0
- package/dist/components/product-menu/index.stories.js +33 -0
- package/dist/components/product-menu/index.style.js +38 -0
- package/dist/components/product-menu/index.test.js +27 -0
- package/dist/components/product-menu/menu-item.js +23 -0
- package/dist/components/product-menu/menu.js +88 -0
- package/dist/components/product-menu/theme.js +16 -0
- package/dist/components/product-owner/index.js +85 -0
- package/dist/components/product-owner/index.style.js +16 -0
- package/dist/components/product-owner/index.test.js +75 -0
- package/dist/components/product-properties/index.js +65 -0
- package/dist/components/product-properties/index.stories.js +52 -0
- package/dist/components/product-properties/index.style.js +14 -0
- package/dist/components/product-properties/index.test.js +31 -0
- package/dist/components/product-properties/product-property/index.js +49 -0
- package/dist/components/product-properties/product-property/index.style.js +9 -0
- package/dist/components/progress-bar/index.js +46 -0
- package/dist/components/progress-bar/index.stories.js +33 -0
- package/dist/components/progress-bar/index.styles.js +65 -0
- package/dist/components/responsive/index.js +44 -0
- package/dist/components/show-date/index.js +25 -0
- package/dist/components/show-date/index.stories.js +51 -0
- package/dist/components/show-date/index.test.js +24 -0
- package/dist/components/spacing/core.js +106 -0
- package/dist/components/spacing/index.js +10 -0
- package/dist/components/spacing/margin/index.js +26 -0
- package/dist/components/spacing/padding/index.js +26 -0
- package/dist/components/storybook.css +54 -0
- package/dist/components/table/actionCell.js +57 -0
- package/dist/components/table/index.js +56 -0
- package/dist/components/table/index.stories.js +188 -0
- package/dist/components/table/index.style.js +107 -0
- package/dist/components/table/index.test.js +119 -0
- package/dist/components/table/tableHeaderRow.js +28 -0
- package/dist/components/table/tableRow.js +60 -0
- package/dist/components/table/theme.js +8 -0
- package/dist/components/tabs/index.js +10 -0
- package/dist/components/tabs/index.stories.js +61 -0
- package/dist/components/tabs/index.style.js +35 -0
- package/dist/components/tabs/index.test.js +30 -0
- package/dist/components/tabs/tabPanel.js +17 -0
- package/dist/components/tabs/tabs.js +71 -0
- package/dist/components/tabs/theme.js +10 -0
- package/dist/components/themes.js +97 -0
- package/dist/components/titled-avatar/index.js +48 -0
- package/dist/components/titled-avatar/index.stories.js +52 -0
- package/dist/components/titled-avatar/index.style.js +30 -0
- package/dist/components/titled-avatar/index.test.js +25 -0
- package/dist/components/typography/heading/index.js +59 -0
- package/dist/components/typography/heading/index.stories.js +94 -0
- package/dist/components/typography/heading/index.styles.js +69 -0
- package/dist/components/typography/heading/index.test.js +122 -0
- package/dist/components/typography/index.js +16 -0
- package/dist/components/typography/link/index.js +82 -0
- package/dist/components/typography/link/index.stories.js +70 -0
- package/dist/components/typography/link/index.styles.js +8 -0
- package/dist/components/typography/link/index.test.js +60 -0
- package/dist/components/typography/paragraph/index.js +37 -0
- package/dist/components/typography/paragraph/index.stories.js +56 -0
- package/dist/components/typography/paragraph/index.styles.js +12 -0
- package/dist/components/typography/paragraph/index.test.js +47 -0
- package/dist/components/typography/text/index.js +156 -0
- package/dist/components/typography/text/index.stories.js +196 -0
- package/dist/components/typography/text/index.styles.js +73 -0
- package/dist/components/typography/text/index.test.js +333 -0
- package/dist/components/typography/theme.js +66 -0
- package/dist/components/typography/utils.js +53 -0
- package/dist/components/typography/utils.test.js +188 -0
- package/dist/components/utils/date.js +7 -0
- package/dist/components/utils/date.test.js +15 -0
- package/dist/components/utils/detectMobile.js +15 -0
- package/dist/components/utils/index.js +7 -0
- package/dist/components/utils/media-query.js +12 -0
- package/dist/components/utils/numbers.js +25 -0
- package/dist/components/utils/test.js +6 -0
- package/dist/components/utils/theme.js +67 -0
- package/dist/docs/App.css +33 -0
- package/dist/docs/App.js +52 -0
- package/dist/docs/assets/ads-label.svg +13 -0
- package/dist/docs/assets/avatar-sample.jpeg +0 -0
- package/dist/docs/assets/cover-sample.png +0 -0
- package/dist/docs/assets/fonts/filesImgs.woff +0 -0
- package/dist/docs/assets/fonts/icomoon.woff +0 -0
- package/dist/docs/assets/fonts/iransharp_bold_web.woff +0 -0
- package/dist/docs/assets/fonts/iransharp_bold_web.woff2 +0 -0
- package/dist/docs/assets/fonts/iransharp_regular_web.woff +0 -0
- package/dist/docs/assets/fonts/iransharp_regular_web.woff2 +0 -0
- package/dist/docs/assets/fonts/wer6t7890- +0 -0
- package/dist/docs/assets/logo.svg +7 -0
- package/dist/docs/components/header/index.js +10 -0
- package/dist/docs/components/header/index.styles.js +10 -0
- package/dist/docs/components/side-navigation/index.js +167 -0
- package/dist/docs/components/side-navigation/index.styles.js +46 -0
- package/dist/docs/containers/avatar/index.js +92 -0
- package/dist/docs/containers/button/index.js +295 -0
- package/dist/docs/containers/card/index.js +153 -0
- package/dist/docs/containers/cover/index.js +77 -0
- package/dist/docs/containers/form/index.js +41 -0
- package/dist/docs/containers/home/index.js +41 -0
- package/dist/docs/containers/icon/index.js +56 -0
- package/dist/docs/containers/icons/index.js +1488 -0
- package/dist/docs/containers/product/index.js +123 -0
- package/dist/docs/containers/typography/index.js +138 -0
- package/dist/docs/globalStyle.js +58 -0
- package/dist/index.css +3 -0
- package/dist/index.js +18 -0
- package/dist/playground/index.js +144 -0
- package/dist/playground.css +26 -0
- package/dist/serviceWorker.js +135 -0
- package/dist/setupTests.js +24 -0
- package/dist/stories/Page.js +67 -0
- package/dist/storybook.css +58 -0
- package/dist/styles.css +3 -0
- package/dist/test-utils.js +21 -0
- package/doctor-storybook.log +25 -0
- package/migration-storybook.log +329 -0
- package/package.json +132 -12
- package/package.lib.json +75 -0
- package/postcss.config.js +6 -0
- package/public/assets/fonts/iransharp_bold_web.woff2 +0 -0
- package/public/assets/fonts/iransharp_light_web.woff2 +0 -0
- package/public/assets/fonts/iransharp_regular_web.woff2 +0 -0
- package/public/favicon.ico +0 -0
- package/public/index.html +43 -0
- package/public/logo.svg +1 -0
- package/public/logo142.svg +1 -0
- package/public/manifest.json +25 -0
- package/public/robots.txt +2 -0
- package/src/App.js +13 -0
- package/src/components/accordion/index.js +25 -0
- package/src/components/accordion/index.stories.js +82 -0
- package/src/components/accordion/index.styles.js +52 -0
- package/src/components/accordion/panel.js +41 -0
- package/src/components/avatar/index.js +41 -0
- package/src/components/avatar/index.stories.js +59 -0
- package/src/components/avatar/index.styles.js +17 -0
- package/src/components/avatar/index.test.js +10 -0
- package/src/components/avatar/theme.js +13 -0
- package/src/components/button/__snapshots__/index.test.js.snap +489 -0
- package/src/components/button/index.js +209 -0
- package/src/components/button/index.stories.js +304 -0
- package/src/components/button/index.styles.js +104 -0
- package/src/components/button/theme.js +60 -0
- package/src/components/button/utils.js +12 -0
- package/src/components/card/card-template/index.js +74 -0
- package/src/components/card/card-template/index.stories.js +110 -0
- package/src/components/card/card-template/index.style.js +25 -0
- package/src/components/card/card-template/index.test.js +85 -0
- package/src/components/card/event-card/constants.js +3 -0
- package/src/components/card/event-card/event-card-label/index.js +24 -0
- package/src/components/card/event-card/event-card-label/index.style.js +10 -0
- package/src/components/card/event-card/event-card-label/index.test.js +23 -0
- package/src/components/card/event-card/index.js +227 -0
- package/src/components/card/event-card/index.stories.js +166 -0
- package/src/components/card/event-card/index.style.js +129 -0
- package/src/components/card/event-card/index.test.js +79 -0
- package/src/components/card/index.js +16 -0
- package/src/components/card/organization-card/index.js +59 -0
- package/src/components/card/organization-card/index.stories.js +49 -0
- package/src/components/card/organization-card/index.style.js +10 -0
- package/src/components/card/organization-card/index.test.js +25 -0
- package/src/components/card/orgnizer-card/buttons.js +48 -0
- package/src/components/card/orgnizer-card/index.js +179 -0
- package/src/components/card/orgnizer-card/index.stories.js +81 -0
- package/src/components/card/orgnizer-card/index.style.js +58 -0
- package/src/components/cover/index.js +74 -0
- package/src/components/cover/index.style.js +48 -0
- package/src/components/cover/index.test.js +25 -0
- package/src/components/display/index.js +42 -0
- package/src/components/display/index.style.js +80 -0
- package/src/components/file-item/fileImgIcon.js +37 -0
- package/src/components/file-item/fileImgsFont.js +800 -0
- package/src/components/file-item/index.js +101 -0
- package/src/components/file-item/index.stories.js +71 -0
- package/src/components/file-item/index.style.js +31 -0
- package/src/components/file-item/index.test.js +106 -0
- package/src/components/file-item/theme.js +12 -0
- package/src/components/file-item/utils.js +3 -0
- package/src/components/form/captcha/index.js +86 -0
- package/src/components/form/captcha/index.stories.js +42 -0
- package/src/components/form/captcha/index.style.js +38 -0
- package/src/components/form/captcha/index.test.js +31 -0
- package/src/components/form/checkbox/checkbox-option.js +41 -0
- package/src/components/form/checkbox/checkbox.js +54 -0
- package/src/components/form/checkbox/index.js +10 -0
- package/src/components/form/checkbox/index.stories.js +121 -0
- package/src/components/form/checkbox/index.style.js +62 -0
- package/src/components/form/dropdown/index.js +10 -0
- package/src/components/form/dropdown/index.stories.js +119 -0
- package/src/components/form/dropdown/index.style.js +57 -0
- package/src/components/form/dropdown/index.test.js +20 -0
- package/src/components/form/dropdown/option.js +22 -0
- package/src/components/form/dropdown/select.js +68 -0
- package/src/components/form/errorMsg.js +21 -0
- package/src/components/form/index.js +22 -0
- package/src/components/form/radio/index.js +10 -0
- package/src/components/form/radio/index.stories.js +119 -0
- package/src/components/form/radio/index.style.js +61 -0
- package/src/components/form/radio/radio-option.js +45 -0
- package/src/components/form/radio/radio.js +56 -0
- package/src/components/form/text-input/index.js +92 -0
- package/src/components/form/text-input/index.stories.js +77 -0
- package/src/components/form/text-input/index.style.js +57 -0
- package/src/components/form/text-input/index.test.js +63 -0
- package/src/components/form/textarea/index.js +59 -0
- package/src/components/form/textarea/index.stories.js +90 -0
- package/src/components/form/textarea/index.style.js +25 -0
- package/src/components/form/theme.js +16 -0
- package/src/components/form-v7/captcha/index.js +101 -0
- package/src/components/form-v7/captcha/index.stories.js +60 -0
- package/src/components/form-v7/captcha/index.style.js +38 -0
- package/src/components/form-v7/captcha/index.test.js +31 -0
- package/src/components/form-v7/checkbox/checkbox-option.js +44 -0
- package/src/components/form-v7/checkbox/checkbox.js +70 -0
- package/src/components/form-v7/checkbox/index.js +10 -0
- package/src/components/form-v7/checkbox/index.stories.js +113 -0
- package/src/components/form-v7/checkbox/index.style.js +62 -0
- package/src/components/form-v7/dropdown/index.js +10 -0
- package/src/components/form-v7/dropdown/index.stories.js +130 -0
- package/src/components/form-v7/dropdown/index.style.js +57 -0
- package/src/components/form-v7/dropdown/index.test.js +20 -0
- package/src/components/form-v7/dropdown/option.js +18 -0
- package/src/components/form-v7/dropdown/select.js +85 -0
- package/src/components/form-v7/errorMsg.js +21 -0
- package/src/components/form-v7/file-input/index.js +73 -0
- package/src/components/form-v7/file-input/index.stories.js +73 -0
- package/src/components/form-v7/file-input/index.style.js +62 -0
- package/src/components/form-v7/file-input/index.test.js +63 -0
- package/src/components/form-v7/form/index.stories.js +276 -0
- package/src/components/form-v7/index.js +25 -0
- package/src/components/form-v7/index.style.js +11 -0
- package/src/components/form-v7/label/index.js +31 -0
- package/src/components/form-v7/label/index.style.js +12 -0
- package/src/components/form-v7/radio/index.js +10 -0
- package/src/components/form-v7/radio/index.stories.js +117 -0
- package/src/components/form-v7/radio/index.style.js +61 -0
- package/src/components/form-v7/radio/radio-option.js +45 -0
- package/src/components/form-v7/radio/radio.js +75 -0
- package/src/components/form-v7/text-input/index.js +132 -0
- package/src/components/form-v7/text-input/index.stories.js +96 -0
- package/src/components/form-v7/text-input/index.style.js +49 -0
- package/src/components/form-v7/text-input/index.test.js +63 -0
- package/src/components/form-v7/textarea/index.js +71 -0
- package/src/components/form-v7/textarea/index.stories.js +91 -0
- package/src/components/form-v7/textarea/index.style.js +25 -0
- package/src/components/form-v7/theme.js +20 -0
- package/src/components/globalStyle.js +28 -0
- package/src/components/grid/index.js +83 -0
- package/src/components/icon/iconFont.js +806 -0
- package/src/components/icon/index.js +116 -0
- package/src/components/icon/index.stories.js +45 -0
- package/src/components/icon/index.styles.js +12 -0
- package/src/components/icon/index.test.js +66 -0
- package/src/components/icon/theme.js +23 -0
- package/src/components/index.js +75 -0
- package/src/components/modal/index.js +100 -0
- package/src/components/modal/index.stories.js +86 -0
- package/src/components/modal/index.style.js +40 -0
- package/src/components/modal/theme.js +11 -0
- package/src/components/numeric-summery-report/index.js +28 -0
- package/src/components/numeric-summery-report/index.stories.js +37 -0
- package/src/components/numeric-summery-report/index.style.js +16 -0
- package/src/components/numeric-summery-report/index.test.js +22 -0
- package/src/components/product-menu/index.js +10 -0
- package/src/components/product-menu/index.stories.js +33 -0
- package/src/components/product-menu/index.style.js +38 -0
- package/src/components/product-menu/index.test.js +27 -0
- package/src/components/product-menu/menu-item.js +23 -0
- package/src/components/product-menu/menu.js +88 -0
- package/src/components/product-menu/theme.js +16 -0
- package/src/components/product-owner/index.js +85 -0
- package/src/components/product-owner/index.style.js +16 -0
- package/src/components/product-owner/index.test.js +75 -0
- package/src/components/product-properties/index.js +65 -0
- package/src/components/product-properties/index.stories.js +52 -0
- package/src/components/product-properties/index.style.js +14 -0
- package/src/components/product-properties/index.test.js +31 -0
- package/src/components/product-properties/product-property/index.js +49 -0
- package/src/components/product-properties/product-property/index.style.js +9 -0
- package/src/components/progress-bar/index.js +46 -0
- package/src/components/progress-bar/index.stories.js +33 -0
- package/src/components/progress-bar/index.styles.js +65 -0
- package/src/components/responsive/index.js +44 -0
- package/src/components/show-date/index.js +25 -0
- package/src/components/show-date/index.stories.js +51 -0
- package/src/components/show-date/index.style.js +1 -0
- package/src/components/show-date/index.test.js +24 -0
- package/src/components/spacing/core.js +106 -0
- package/src/components/spacing/index.js +10 -0
- package/src/components/spacing/margin/index.js +26 -0
- package/src/components/spacing/padding/index.js +26 -0
- package/src/components/storybook.css +54 -0
- package/src/components/table/actionCell.js +57 -0
- package/src/components/table/index.js +56 -0
- package/src/components/table/index.stories.js +188 -0
- package/src/components/table/index.style.js +107 -0
- package/src/components/table/index.test.js +119 -0
- package/src/components/table/tableHeaderRow.js +28 -0
- package/src/components/table/tableRow.js +60 -0
- package/src/components/table/theme.js +8 -0
- package/src/components/tabs/index.js +10 -0
- package/src/components/tabs/index.stories.js +61 -0
- package/src/components/tabs/index.style.js +35 -0
- package/src/components/tabs/index.test.js +30 -0
- package/src/components/tabs/tabPanel.js +17 -0
- package/src/components/tabs/tabs.js +71 -0
- package/src/components/tabs/theme.js +10 -0
- package/src/components/themes.js +97 -0
- package/src/components/titled-avatar/index.js +48 -0
- package/src/components/titled-avatar/index.stories.js +52 -0
- package/src/components/titled-avatar/index.style.js +30 -0
- package/src/components/titled-avatar/index.test.js +25 -0
- package/src/components/typography/heading/index.js +59 -0
- package/src/components/typography/heading/index.stories.js +94 -0
- package/src/components/typography/heading/index.styles.js +69 -0
- package/src/components/typography/heading/index.test.js +122 -0
- package/src/components/typography/index.js +16 -0
- package/src/components/typography/index.styles.js +1 -0
- package/src/components/typography/link/index.js +82 -0
- package/src/components/typography/link/index.stories.js +70 -0
- package/src/components/typography/link/index.styles.js +8 -0
- package/src/components/typography/link/index.test.js +60 -0
- package/src/components/typography/paragraph/index.js +37 -0
- package/src/components/typography/paragraph/index.stories.js +56 -0
- package/src/components/typography/paragraph/index.styles.js +12 -0
- package/src/components/typography/paragraph/index.test.js +47 -0
- package/src/components/typography/text/index.js +156 -0
- package/src/components/typography/text/index.stories.js +196 -0
- package/src/components/typography/text/index.styles.js +73 -0
- package/src/components/typography/text/index.test.js +333 -0
- package/src/components/typography/theme.js +66 -0
- package/src/components/typography/utils.js +53 -0
- package/src/components/typography/utils.test.js +188 -0
- package/src/components/utils/date.js +7 -0
- package/src/components/utils/date.test.js +15 -0
- package/src/components/utils/detectMobile.js +15 -0
- package/src/components/utils/index.js +7 -0
- package/src/components/utils/media-query.js +12 -0
- package/src/components/utils/numbers.js +25 -0
- package/src/components/utils/test.js +6 -0
- package/src/components/utils/theme.js +67 -0
- package/src/docs/App.css +33 -0
- package/src/docs/App.js +52 -0
- package/src/docs/assets/ads-label.svg +13 -0
- package/src/docs/assets/avatar-sample.jpeg +0 -0
- package/src/docs/assets/cover-sample.png +0 -0
- package/src/docs/assets/fonts/filesImgs.woff +0 -0
- package/src/docs/assets/fonts/icomoon.woff +0 -0
- package/src/docs/assets/fonts/iransharp_bold_web.woff +0 -0
- package/src/docs/assets/fonts/iransharp_bold_web.woff2 +0 -0
- package/src/docs/assets/fonts/iransharp_regular_web.woff +0 -0
- package/src/docs/assets/fonts/iransharp_regular_web.woff2 +0 -0
- package/src/docs/assets/fonts/wer6t7890- +0 -0
- package/src/docs/assets/logo.svg +7 -0
- package/src/docs/components/header/index.js +10 -0
- package/src/docs/components/header/index.styles.js +10 -0
- package/src/docs/components/side-navigation/index.js +167 -0
- package/src/docs/components/side-navigation/index.styles.js +46 -0
- package/src/docs/containers/avatar/index.js +92 -0
- package/src/docs/containers/button/index.js +295 -0
- package/src/docs/containers/card/index.js +153 -0
- package/src/docs/containers/cover/index.js +77 -0
- package/src/docs/containers/form/index.js +41 -0
- package/src/docs/containers/home/index.js +41 -0
- package/src/docs/containers/icon/index.js +56 -0
- package/src/docs/containers/icons/index.js +1488 -0
- package/src/docs/containers/product/index.js +123 -0
- package/src/docs/containers/typography/index.js +138 -0
- package/src/docs/globalStyle.js +58 -0
- package/src/index.css +3 -0
- package/src/index.js +18 -0
- package/src/playground/index.js +144 -0
- package/src/playground.css +26 -0
- package/src/serviceWorker.js +135 -0
- package/src/setupTests.js +24 -0
- package/src/stories/Page.jsx +67 -0
- package/src/storybook.css +58 -0
- package/src/styles.css +3 -0
- package/src/test-utils.js +21 -0
- package/storybook.log +113 -0
- package/tailwind.config.js +26 -0
- package/update-stories.js +41 -0
- package/accordion/index.js +0 -25
- package/accordion/index.styles.js +0 -10
- package/accordion/panel.js +0 -41
- package/avatar/index.js +0 -41
- package/avatar/index.styles.js +0 -17
- package/avatar/theme.js +0 -13
- package/button/index.js +0 -116
- package/button/index.styles.js +0 -101
- package/button/theme.js +0 -34
- package/button/utils.js +0 -12
- package/card/card-template/index.js +0 -74
- package/card/card-template/index.stories.js +0 -70
- package/card/card-template/index.style.js +0 -25
- package/card/card-template/index.test.js +0 -85
- package/card/event-card/constants.js +0 -3
- package/card/event-card/event-card-label/index.js +0 -24
- package/card/event-card/event-card-label/index.style.js +0 -10
- package/card/event-card/event-card-label/index.test.js +0 -23
- package/card/event-card/index.js +0 -227
- package/card/event-card/index.stories.js +0 -155
- package/card/event-card/index.style.js +0 -119
- package/card/event-card/index.test.js +0 -79
- package/card/index.js +0 -16
- package/card/organization-card/index.js +0 -59
- package/card/organization-card/index.stories.js +0 -19
- package/card/organization-card/index.style.js +0 -10
- package/card/organization-card/index.test.js +0 -25
- package/card/orgnizer-card/buttons.js +0 -48
- package/card/orgnizer-card/index.js +0 -179
- package/card/orgnizer-card/index.stories.js +0 -25
- package/card/orgnizer-card/index.style.js +0 -47
- package/cover/index.js +0 -74
- package/cover/index.style.js +0 -41
- package/display/index.js +0 -42
- package/display/index.style.js +0 -78
- package/file-item/fileImgIcon.js +0 -37
- package/file-item/fileImgsFont.js +0 -800
- package/file-item/index.js +0 -101
- package/file-item/index.style.js +0 -30
- package/file-item/theme.js +0 -12
- package/file-item/utils.js +0 -3
- package/form/captcha/index.js +0 -86
- package/form/captcha/index.stories.js +0 -23
- package/form/captcha/index.style.js +0 -36
- package/form/captcha/index.test.js +0 -31
- package/form/checkbox/checkbox-option.js +0 -41
- package/form/checkbox/checkbox.js +0 -54
- package/form/checkbox/index.js +0 -10
- package/form/checkbox/index.stories.js +0 -56
- package/form/checkbox/index.style.js +0 -40
- package/form/dropdown/index.js +0 -10
- package/form/dropdown/index.stories.js +0 -62
- package/form/dropdown/index.style.js +0 -55
- package/form/dropdown/index.test.js +0 -20
- package/form/dropdown/option.js +0 -22
- package/form/dropdown/select.js +0 -68
- package/form/errorMsg.js +0 -21
- package/form/index.js +0 -22
- package/form/radio/index.js +0 -10
- package/form/radio/index.stories.js +0 -56
- package/form/radio/index.style.js +0 -52
- package/form/radio/radio-option.js +0 -45
- package/form/radio/radio.js +0 -56
- package/form/text-input/index.js +0 -92
- package/form/text-input/index.stories.js +0 -26
- package/form/text-input/index.style.js +0 -55
- package/form/text-input/index.test.js +0 -63
- package/form/textarea/index.js +0 -59
- package/form/textarea/index.stories.js +0 -31
- package/form/textarea/index.style.js +0 -25
- package/form/theme.js +0 -16
- package/form-v7/captcha/index.js +0 -101
- package/form-v7/captcha/index.stories.js +0 -30
- package/form-v7/captcha/index.style.js +0 -36
- package/form-v7/captcha/index.test.js +0 -31
- package/form-v7/checkbox/checkbox-option.js +0 -42
- package/form-v7/checkbox/checkbox.js +0 -68
- package/form-v7/checkbox/index.js +0 -10
- package/form-v7/checkbox/index.stories.js +0 -80
- package/form-v7/checkbox/index.style.js +0 -40
- package/form-v7/dropdown/index.js +0 -10
- package/form-v7/dropdown/index.stories.js +0 -121
- package/form-v7/dropdown/index.style.js +0 -55
- package/form-v7/dropdown/index.test.js +0 -20
- package/form-v7/dropdown/option.js +0 -18
- package/form-v7/dropdown/select.js +0 -84
- package/form-v7/errorMsg.js +0 -21
- package/form-v7/file-input/index.js +0 -73
- package/form-v7/file-input/index.stories.js +0 -32
- package/form-v7/file-input/index.style.js +0 -54
- package/form-v7/file-input/index.test.js +0 -63
- package/form-v7/form/index.stories.js +0 -173
- package/form-v7/index.js +0 -25
- package/form-v7/index.style.js +0 -3
- package/form-v7/label/index.js +0 -31
- package/form-v7/label/index.style.js +0 -12
- package/form-v7/radio/index.js +0 -10
- package/form-v7/radio/index.stories.js +0 -82
- package/form-v7/radio/index.style.js +0 -52
- package/form-v7/radio/radio-option.js +0 -43
- package/form-v7/radio/radio.js +0 -73
- package/form-v7/text-input/index.js +0 -131
- package/form-v7/text-input/index.stories.js +0 -77
- package/form-v7/text-input/index.style.js +0 -41
- package/form-v7/text-input/index.test.js +0 -63
- package/form-v7/textarea/index.js +0 -70
- package/form-v7/textarea/index.stories.js +0 -45
- package/form-v7/textarea/index.style.js +0 -25
- package/form-v7/theme.js +0 -20
- package/globalStyle.js +0 -28
- package/icon/iconFont.js +0 -796
- package/icon/index.js +0 -52
- package/icon/index.styles.js +0 -12
- package/icon/theme.js +0 -23
- package/icons/index.js +0 -29
- package/icons/index.style.js +0 -30
- package/icons/theme.js +0 -12
- package/icons/utils.js +0 -672
- package/index.js +0 -75
- package/modal/index.js +0 -100
- package/modal/index.style.js +0 -40
- package/modal/theme.js +0 -11
- package/numeric-summery-report/index.js +0 -28
- package/numeric-summery-report/index.style.js +0 -11
- package/product-menu/index.js +0 -10
- package/product-menu/index.style.js +0 -37
- package/product-menu/menu-item.js +0 -23
- package/product-menu/menu.js +0 -88
- package/product-menu/theme.js +0 -12
- package/product-owner/index.js +0 -85
- package/product-owner/index.style.js +0 -10
- package/product-properties/index.js +0 -65
- package/product-properties/index.style.js +0 -11
- package/product-properties/product-property/index.js +0 -49
- package/product-properties/product-property/index.style.js +0 -9
- package/progress-bar/index.js +0 -46
- package/progress-bar/index.styles.js +0 -63
- package/responsive/index.js +0 -44
- package/show-date/index.js +0 -25
- package/spacing/core.js +0 -70
- package/spacing/index.js +0 -10
- package/spacing/margin/index.js +0 -26
- package/spacing/padding/index.js +0 -26
- package/table/actionCell.js +0 -57
- package/table/index.js +0 -56
- package/table/index.style.js +0 -106
- package/table/tableHeaderRow.js +0 -28
- package/table/tableRow.js +0 -60
- package/table/theme.js +0 -8
- package/tabs/index.js +0 -10
- package/tabs/index.style.js +0 -32
- package/tabs/tabPanel.js +0 -17
- package/tabs/tabs.js +0 -71
- package/tabs/theme.js +0 -10
- package/themes.js +0 -97
- package/titled-avatar/index.js +0 -48
- package/titled-avatar/index.style.js +0 -25
- package/typography/heading/index.js +0 -59
- package/typography/heading/index.stories.js +0 -41
- package/typography/heading/index.styles.js +0 -67
- package/typography/heading/index.test.js +0 -122
- package/typography/index.js +0 -16
- package/typography/link/index.js +0 -82
- package/typography/link/index.stories.js +0 -12
- package/typography/link/index.styles.js +0 -8
- package/typography/link/index.test.js +0 -60
- package/typography/paragraph/index.js +0 -37
- package/typography/paragraph/index.stories.js +0 -27
- package/typography/paragraph/index.styles.js +0 -12
- package/typography/paragraph/index.test.js +0 -47
- package/typography/text/index.js +0 -156
- package/typography/text/index.stories.js +0 -26
- package/typography/text/index.styles.js +0 -72
- package/typography/text/index.test.js +0 -333
- package/typography/theme.js +0 -66
- package/typography/utils.js +0 -53
- package/utils/date.js +0 -7
- package/utils/detectMobile.js +0 -15
- package/utils/index.js +0 -7
- package/utils/media-query.js +0 -12
- package/utils/numbers.js +0 -25
- package/utils/test.js +0 -6
- package/utils/theme.js +0 -67
- /package/{show-date → dist/components/show-date}/index.style.js +0 -0
- /package/{typography → dist/components/typography}/index.styles.js +0 -0
package/icon/iconFont.js
DELETED
|
@@ -1,796 +0,0 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=void 0;var _templateObject,_styledComponents=require("styled-components");function _taggedTemplateLiteral(a,b){return b||(b=a.slice(0)),Object.freeze(Object.defineProperties(a,{raw:{value:Object.freeze(b)}}))}
|
|
2
|
-
|
|
3
|
-
const FontStyle=(0,_styledComponents.createGlobalStyle)(_templateObject||(_templateObject=_taggedTemplateLiteral(["\n i.jupiter-icon {\n /* use !important to prevent issues with browser extensions that change fonts */\n display: inline-block;\n vertical-align: middle;\n font-family: 'Jupiterico' !important;\n font-style: normal;\n font-weight: normal;\n font-variant: normal;\n text-transform: none;\n line-height: 1;\n\n /* Better Font Rendering =========== */\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n }\n\n .new-icon-refresh:before {\n content: \"\\e9fa\";\n }\n .new-icon-account-balance-wallet:before {\n content: \"\\e900\";\n }\n .new-icon-account-box:before {\n content: \"\\e901\";\n }\n .new-icon-account-circle:before {\n content: \"\\e902\";\n }\n .new-icon-add-a-photo:before {\n content: \"\\e903\";\n }\n .new-icon-add-alert:before {\n content: \"\\e904\";\n }\n .new-icon-add-box:before {\n content: \"\\e905\";\n }\n .new-icon-add-circle-outline:before {\n content: \"\\e906\";\n }\n .new-icon-add-circle:before {\n content: \"\\e907\";\n }\n .new-icon-add-photo-alternate:before {\n content: \"\\e908\";\n }\n .new-icon-add:before {\n content: \"\\e909\";\n }\n .new-icon-alarm-add:before {\n content: \"\\e90a\";\n }\n .new-icon-alarm-off:before {\n content: \"\\e90b\";\n }\n .new-icon-alarm-on:before {\n content: \"\\e90c\";\n }\n .new-icon-alarm:before {\n content: \"\\e90d\";\n }\n .new-icon-apps:before {\n content: \"\\e90e\";\n }\n .new-icon-arrow-back:before {\n content: \"\\e90f\";\n }\n .new-icon-arrow-backward-ios:before {\n content: \"\\e910\";\n }\n .new-icon-arrow-downward:before {\n content: \"\\e911\";\n }\n .new-icon-arrow-drop-down-circle:before {\n content: \"\\e912\";\n }\n .new-icon-arrow-drop-down:before {\n content: \"\\e913\";\n }\n .new-icon-arrow-drop-up:before {\n content: \"\\e914\";\n }\n .new-icon-arrow-forward-ios:before {\n content: \"\\e915\";\n }\n .new-icon-arrow-forward:before {\n content: \"\\e916\";\n }\n .new-icon-arrow-left:before {\n content: \"\\e917\";\n }\n .new-icon-arrow-right:before {\n content: \"\\e918\";\n }\n .new-icon-arrow-upward:before {\n content: \"\\e919\";\n }\n .new-icon-aspect-ratio:before {\n content: \"\\e91a\";\n }\n .new-icon-assessment:before {\n content: \"\\e91b\";\n }\n .new-icon-assignment-ind:before {\n content: \"\\e91c\";\n }\n .new-icon-assignment:before {\n content: \"\\e91d\";\n }\n .new-icon-attachment:before {\n content: \"\\e91e\";\n }\n .new-icon-attendees:before {\n content: \"\\e91f\";\n color: #535353;\n }\n .new-icon-autorenew:before {\n content: \"\\e920\";\n }\n .new-icon-backup:before {\n content: \"\\e921\";\n }\n .new-icon-block:before {\n content: \"\\e922\";\n }\n .new-icon-bluetooth-connected:before {\n content: \"\\e923\";\n }\n .new-icon-bluetooth-disabled:before {\n content: \"\\e924\";\n }\n .new-icon-bluetooth-searching:before {\n content: \"\\e925\";\n }\n .new-icon-bluetooth:before {\n content: \"\\e926\";\n }\n .new-icon-bookmark-border:before {\n content: \"\\e927\";\n }\n .new-icon-bookmark:before {\n content: \"\\e928\";\n }\n .new-icon-bookmarks:before {\n content: \"\\e929\";\n }\n .new-icon-build:before {\n content: \"\\e92a\";\n }\n .new-icon-cake:before {\n content: \"\\e92b\";\n }\n .new-icon-calendar-today:before {\n content: \"\\e92c\";\n }\n .new-icon-call-end:before {\n content: \"\\e92d\";\n }\n .new-icon-call-message:before {\n content: \"\\e92e\";\n }\n .new-icon-call:before {\n content: \"\\e92f\";\n }\n .new-icon-camera-alt:before {\n content: \"\\e930\";\n }\n .new-icon-cancel:before {\n content: \"\\e931\";\n }\n .new-icon-card-giftcard:before {\n content: \"\\e932\";\n }\n .new-icon-categories:before {\n content: \"\\e933\";\n color: #535353;\n }\n .new-icon-category:before {\n content: \"\\e934\";\n }\n .new-icon-chat-bubble:before {\n content: \"\\e935\";\n }\n .new-icon-chat:before {\n content: \"\\e936\";\n }\n .new-icon-check-box-outline-blank:before {\n content: \"\\e937\";\n }\n .new-icon-check-box:before {\n content: \"\\e938\";\n }\n .new-icon-check-circle-outline:before {\n content: \"\\e939\";\n }\n .new-icon-check-circle:before {\n content: \"\\e93a\";\n }\n .new-icon-check:before {\n content: \"\\e93b\";\n }\n .new-icon-chevron-left:before {\n content: \"\\e93c\";\n }\n .new-icon-chevron-right:before {\n content: \"\\e93d\";\n }\n .new-icon-close:before {\n content: \"\\e93e\";\n }\n .new-icon-cloud-circle:before {\n content: \"\\e93f\";\n }\n .new-icon-cloud-done:before {\n content: \"\\e940\";\n }\n .new-icon-cloud-download:before {\n content: \"\\e941\";\n }\n .new-icon-cloud-off:before {\n content: \"\\e942\";\n }\n .new-icon-cloud-queue:before {\n content: \"\\e943\";\n }\n .new-icon-cloud-upload:before {\n content: \"\\e944\";\n }\n .new-icon-cloud:before {\n content: \"\\e945\";\n }\n .new-icon-code:before {\n content: \"\\e946\";\n }\n .new-icon-colleague:before {\n content: \"\\e947\";\n }\n .new-icon-commute:before {\n content: \"\\e948\";\n }\n .new-icon-copyright:before {\n content: \"\\e949\";\n }\n .new-icon-create:before {\n content: \"\\e94a\";\n }\n .new-icon-credit-card:before {\n content: \"\\e94b\";\n }\n .new-icon-crop-rotate:before {\n content: \"\\e94c\";\n }\n .new-icon-dashboard:before {\n content: \"\\e94d\";\n }\n .new-icon-delete-outline:before {\n content: \"\\e94e\";\n }\n .new-icon-delete-sweep:before {\n content: \"\\e94f\";\n }\n .new-icon-delete:before {\n content: \"\\e950\";\n }\n .new-icon-description:before {\n content: \"\\e951\";\n }\n .new-icon-dialpad:before {\n content: \"\\e952\";\n }\n .new-icon-drafts:before {\n content: \"\\e953\";\n }\n .new-icon-email:before {\n content: \"\\e954\";\n }\n .new-icon-equalizer:before {\n content: \"\\e955\";\n }\n .new-icon-error-outline:before {\n content: \"\\e956\";\n }\n .new-icon-error:before {\n content: \"\\e957\";\n }\n .new-icon-event-seat:before {\n content: \"\\e958\";\n }\n .new-icon-event:before {\n content: \"\\e959\";\n }\n .new-icon-exit-to-app:before {\n content: \"\\e95a\";\n }\n .new-icon-expand-less:before {\n content: \"\\e95b\";\n }\n .new-icon-expand-more:before {\n content: \"\\e95c\";\n }\n .new-icon-facebook-alt:before {\n content: \"\\e95d\";\n }\n .new-icon-facebook:before {\n content: \"\\e95e\";\n }\n .new-icon-favorite-border:before {\n content: \"\\e95f\";\n }\n .new-icon-favorite:before {\n content: \"\\e960\";\n }\n .new-icon-file .path1:before {\n content: \"\\e961\";\n color: rgb(255, 255, 255);\n }\n .new-icon-file .path2:before {\n content: \"\\e962\";\n margin-left: -1em;\n color: rgb(59, 65, 65);\n }\n .new-icon-fingerprint:before {\n content: \"\\e963\";\n }\n .new-icon-follower:before {\n content: \"\\e964\";\n color: #535353;\n }\n .new-icon-forum:before {\n content: \"\\e965\";\n }\n .new-icon-get-app:before {\n content: \"\\e966\";\n }\n .new-icon-google-alt:before {\n content: \"\\e967\";\n }\n .new-icon-google-plus-alt:before {\n content: \"\\e968\";\n }\n .new-icon-google-plus:before {\n content: \"\\e969\";\n }\n .new-icon-google:before {\n content: \"\\e96a\";\n }\n .new-icon-gps-fixed:before {\n content: \"\\e96b\";\n }\n .new-icon-gps-not-fixed:before {\n content: \"\\e96c\";\n }\n .new-icon-gps-off:before {\n content: \"\\e96d\";\n }\n .new-icon-group:before {\n content: \"\\e96e\";\n }\n .new-icon-headset-mic:before {\n content: \"\\e96f\";\n }\n .new-icon-headset:before {\n content: \"\\e970\";\n }\n .new-icon-help-outline:before {\n content: \"\\e971\";\n }\n .new-icon-help:before {\n content: \"\\e972\";\n }\n .new-icon-highlight-off:before {\n content: \"\\e973\";\n }\n .new-icon-history:before {\n content: \"\\e974\";\n }\n .new-icon-home:before {\n content: \"\\e975\";\n }\n .new-icon-hourglass-empty:before {\n content: \"\\e976\";\n }\n .new-icon-hourglass-full:before {\n content: \"\\e977\";\n }\n .new-icon-ic-content-copy:before {\n content: \"\\e978\";\n }\n .new-icon-import-contacts:before {\n content: \"\\e979\";\n }\n .new-icon-indeterminate-check-box:before {\n content: \"\\e97a\";\n }\n .new-icon-info:before {\n content: \"\\e97b\";\n }\n .new-icon-instagram-alt:before {\n content: \"\\e97c\";\n }\n .new-icon-instagram:before {\n content: \"\\e97d\";\n }\n .new-icon-keyboard-backspace:before {\n content: \"\\e97e\";\n }\n .new-icon-keyboard-voice:before {\n content: \"\\e97f\";\n }\n .new-icon-keyboard:before {\n content: \"\\e980\";\n }\n .new-icon-language:before {\n content: \"\\e981\";\n }\n .new-icon-link-off:before {\n content: \"\\e982\";\n }\n .new-icon-link:before {\n content: \"\\e983\";\n }\n .new-icon-linkedin-alt:before {\n content: \"\\e984\";\n }\n .new-icon-linkedin:before {\n content: \"\\e985\";\n }\n .new-icon-local-offer .path1:before {\n content: \"\\e986\";\n color: rgb(255, 255, 255);\n }\n .new-icon-local-offer .path2:before {\n content: \"\\e987\";\n margin-left: -1em;\n color: rgb(59, 65, 65);\n }\n .new-icon-location-off:before {\n content: \"\\e988\";\n }\n .new-icon-location-on:before {\n content: \"\\e989\";\n }\n .new-icon-lock-open:before {\n content: \"\\e98a\";\n }\n .new-icon-lock:before {\n content: \"\\e98b\";\n }\n .new-icon-loop:before {\n content: \"\\e98c\";\n }\n .new-icon-loyalty:before {\n content: \"\\e98d\";\n }\n .new-icon-mail-outline:before {\n content: \"\\e98e\";\n }\n .new-icon-mail:before {\n content: \"\\e98f\";\n }\n .new-icon-menu:before {\n content: \"\\e990\";\n }\n .new-icon-mic-none:before {\n content: \"\\e991\";\n }\n .new-icon-mic-off:before {\n content: \"\\e992\";\n }\n .new-icon-mic:before {\n content: \"\\e993\";\n }\n .new-icon-mood-bad:before {\n content: \"\\e994\";\n }\n .new-icon-mood:before {\n content: \"\\e995\";\n }\n .new-icon-more-horiz:before {\n content: \"\\e996\";\n }\n .new-icon-more-vert:before {\n content: \"\\e997\";\n }\n .new-icon-not-interested:before {\n content: \"\\e998\";\n }\n .new-icon-note-add:before {\n content: \"\\e999\";\n }\n .new-icon-note:before {\n content: \"\\e99a\";\n }\n .new-icon-notification-important:before {\n content: \"\\e99b\";\n }\n .new-icon-notifications-active:before {\n content: \"\\e99c\";\n }\n .new-icon-notifications-none:before {\n content: \"\\e99d\";\n }\n .new-icon-notifications-off:before {\n content: \"\\e99e\";\n }\n .new-icon-notifications-paused:before {\n content: \"\\e99f\";\n }\n .new-icon-notifications:before {\n content: \"\\e9a0\";\n }\n .new-icon-offline-pin:before {\n content: \"\\e9a1\";\n }\n .new-icon-ondemand-video:before {\n content: \"\\e9a2\";\n }\n .new-icon-outlined-flag:before {\n content: \"\\e9a3\";\n }\n .new-icon-partner:before {\n content: \"\\e9a4\";\n }\n .new-icon-pause-circle-outline:before {\n content: \"\\e9a5\";\n }\n .new-icon-perm-contact-calendar:before {\n content: \"\\e9a6\";\n }\n .new-icon-perm-identity:before {\n content: \"\\e9a7\";\n }\n .new-icon-place:before {\n content: \"\\e9a8\";\n }\n .new-icon-play-arrow:before {\n content: \"\\e9a9\";\n }\n .new-icon-play-circle-filled:before {\n content: \"\\e9aa\";\n }\n .new-icon-play-circle-outline:before {\n content: \"\\e9ab\";\n }\n .new-icon-playlist-add-check:before {\n content: \"\\e9ac\";\n }\n .new-icon-playlist-add:before {\n content: \"\\e9ad\";\n }\n .new-icon-playlist-play:before {\n content: \"\\e9ae\";\n }\n .new-icon-print:before {\n content: \"\\e9af\";\n }\n .new-icon-query-builder:before {\n content: \"\\e9b0\";\n }\n .new-icon-question-answer:before {\n content: \"\\e9b1\";\n }\n .new-icon-radio-button-checked:before {\n content: \"\\e9b2\";\n }\n .new-icon-radio-button-unchecked:before {\n content: \"\\e9b3\";\n }\n .new-icon-remove-circle-outline:before {\n content: \"\\e9b4\";\n }\n .new-icon-remove-circle:before {\n content: \"\\e9b5\";\n }\n .new-icon-remove-red-eye-2 .path1:before {\n content: \"\\e9b6\";\n color: rgb(255, 255, 255);\n }\n .new-icon-remove-red-eye-2 .path2:before {\n content: \"\\e9b7\";\n margin-left: -1em;\n color: rgb(59, 65, 65);\n }\n .new-icon-remove-red-eye .path1:before {\n content: \"\\e9b8\";\n color: rgb(255, 255, 255);\n }\n .new-icon-remove-red-eye .path2:before {\n content: \"\\e9b9\";\n margin-left: -1em;\n color: rgb(59, 65, 65);\n }\n .new-icon-report-problem:before {\n content: \"\\e9ba\";\n }\n .new-icon-restore:before {\n content: \"\\e9bb\";\n }\n .new-icon-search:before {\n content: \"\\e9bc\";\n }\n .new-icon-send:before {\n content: \"\\e9bd\";\n }\n .new-icon-sentiment-dissatisfied:before {\n content: \"\\e9be\";\n }\n .new-icon-sentiment-satisfied:before {\n content: \"\\e9bf\";\n }\n .new-icon-sentiment-very-dissatisfied:before {\n content: \"\\e9c0\";\n }\n .new-icon-sentiment-very-satisfied:before {\n content: \"\\e9c1\";\n }\n .new-icon-setting:before {\n content: \"\\e9c2\";\n }\n .new-icon-settings-applications:before {\n content: \"\\e9c3\";\n }\n .new-icon-settings-ethernet:before {\n content: \"\\e9c4\";\n }\n .new-icon-share:before {\n content: \"\\e9c5\";\n }\n .new-icon-shopping-cart:before {\n content: \"\\e9c6\";\n }\n .new-icon-smartphone:before {\n content: \"\\e9c7\";\n }\n .new-icon-sort-by-alpha:before {\n content: \"\\e9c8\";\n }\n .new-icon-speaker:before {\n content: \"\\e9c9\";\n color: #535353;\n }\n .new-icon-star-border:before {\n content: \"\\e9ca\";\n }\n .new-icon-star-half:before {\n content: \"\\e9cb\";\n }\n .new-icon-star:before {\n content: \"\\e9cc\";\n }\n .new-icon-stay-current-landscape:before {\n content: \"\\e9cd\";\n }\n .new-icon-stay-current-portrait:before {\n content: \"\\e9ce\";\n }\n .new-icon-Subtraction:before {\n content: \"\\e9cf\";\n }\n .new-icon-supervised-user-circle:before {\n content: \"\\e9d0\";\n }\n .new-icon-supervisor-account:before {\n content: \"\\e9d1\";\n }\n .new-icon-tablet-android:before {\n content: \"\\e9d2\";\n }\n .new-icon-tablet:before {\n content: \"\\e9d3\";\n }\n .new-icon-telegram-alt:before {\n content: \"\\e9d4\";\n }\n .new-icon-telegram:before {\n content: \"\\e9d5\";\n }\n .new-icon-textsms:before {\n content: \"\\e9d6\";\n }\n .new-icon-theaters:before {\n content: \"\\e9d7\";\n }\n .new-icon-thumb-down-alt:before {\n content: \"\\e9d8\";\n }\n .new-icon-thumb-down:before {\n content: \"\\e9d9\";\n }\n .new-icon-thumb-up-alt:before {\n content: \"\\e9da\";\n }\n .new-icon-thumb-up:before {\n content: \"\\e9db\";\n }\n .new-icon-ticket:before {\n content: \"\\e9dc\";\n }\n .new-icon-today:before {\n content: \"\\e9dd\";\n }\n .new-icon-toggle-off:before {\n content: \"\\e9de\";\n }\n .new-icon-toggle-on:before {\n content: \"\\e9df\";\n }\n .new-icon-touch-app:before {\n content: \"\\e9e0\";\n }\n .new-icon-tv .path1:before {\n content: \"\\e9e1\";\n color: rgb(255, 255, 255);\n }\n .new-icon-tv .path2:before {\n content: \"\\e9e2\";\n margin-left: -1em;\n color: rgb(59, 65, 65);\n }\n .new-icon-twitter-alt:before {\n content: \"\\e9e3\";\n }\n .new-icon-twitter:before {\n content: \"\\e9e4\";\n }\n .new-icon-update:before {\n content: \"\\e9e5\";\n }\n .new-icon-verified-user:before {\n content: \"\\e9e6\";\n }\n .new-icon-view-carousel:before {\n content: \"\\e9e7\";\n }\n .new-icon-visibility-off:before {\n content: \"\\e9e8\";\n }\n .new-icon-visibility:before {\n content: \"\\e9e9\";\n }\n .new-icon-volume-down:before {\n content: \"\\e9ea\";\n }\n .new-icon-volume-mute:before {\n content: \"\\e9eb\";\n }\n .new-icon-volume-off:before {\n content: \"\\e9ec\";\n }\n .new-icon-volume-up:before {\n content: \"\\e9ed\";\n }\n .new-icon-vpn-key:before {\n content: \"\\e9ee\";\n }\n .new-icon-warning:before {\n content: \"\\e9ef\";\n }\n .new-icon-watch-later:before {\n content: \"\\e9f0\";\n }\n .new-icon-watch:before {\n content: \"\\e9f1\";\n }\n .new-icon-Whatsapp-alt:before {\n content: \"\\e9f2\";\n }\n .new-icon-where-to-vote:before {\n content: \"\\e9f3\";\n }\n .new-icon-work-off:before {\n content: \"\\e9f4\";\n }\n .new-icon-work-outline:before {\n content: \"\\e9f5\";\n }\n .new-icon-work:before {\n content: \"\\e9f6\";\n }\n .new-icon-zoom-in:before {\n content: \"\\e9f7\";\n }\n .new-icon-zoom-out-map:before {\n content: \"\\e9f8\";\n }\n .new-icon-zoom-out:before {\n content: \"\\e9f9\";\n }\n \n \n"],["\n i.jupiter-icon {\n /* use !important to prevent issues with browser extensions that change fonts */\n display: inline-block;\n vertical-align: middle;\n font-family: 'Jupiterico' !important;\n font-style: normal;\n font-weight: normal;\n font-variant: normal;\n text-transform: none;\n line-height: 1;\n\n /* Better Font Rendering =========== */\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n }\n\n .new-icon-refresh:before {\n content: \"\\\\e9fa\";\n }\n .new-icon-account-balance-wallet:before {\n content: \"\\\\e900\";\n }\n .new-icon-account-box:before {\n content: \"\\\\e901\";\n }\n .new-icon-account-circle:before {\n content: \"\\\\e902\";\n }\n .new-icon-add-a-photo:before {\n content: \"\\\\e903\";\n }\n .new-icon-add-alert:before {\n content: \"\\\\e904\";\n }\n .new-icon-add-box:before {\n content: \"\\\\e905\";\n }\n .new-icon-add-circle-outline:before {\n content: \"\\\\e906\";\n }\n .new-icon-add-circle:before {\n content: \"\\\\e907\";\n }\n .new-icon-add-photo-alternate:before {\n content: \"\\\\e908\";\n }\n .new-icon-add:before {\n content: \"\\\\e909\";\n }\n .new-icon-alarm-add:before {\n content: \"\\\\e90a\";\n }\n .new-icon-alarm-off:before {\n content: \"\\\\e90b\";\n }\n .new-icon-alarm-on:before {\n content: \"\\\\e90c\";\n }\n .new-icon-alarm:before {\n content: \"\\\\e90d\";\n }\n .new-icon-apps:before {\n content: \"\\\\e90e\";\n }\n .new-icon-arrow-back:before {\n content: \"\\\\e90f\";\n }\n .new-icon-arrow-backward-ios:before {\n content: \"\\\\e910\";\n }\n .new-icon-arrow-downward:before {\n content: \"\\\\e911\";\n }\n .new-icon-arrow-drop-down-circle:before {\n content: \"\\\\e912\";\n }\n .new-icon-arrow-drop-down:before {\n content: \"\\\\e913\";\n }\n .new-icon-arrow-drop-up:before {\n content: \"\\\\e914\";\n }\n .new-icon-arrow-forward-ios:before {\n content: \"\\\\e915\";\n }\n .new-icon-arrow-forward:before {\n content: \"\\\\e916\";\n }\n .new-icon-arrow-left:before {\n content: \"\\\\e917\";\n }\n .new-icon-arrow-right:before {\n content: \"\\\\e918\";\n }\n .new-icon-arrow-upward:before {\n content: \"\\\\e919\";\n }\n .new-icon-aspect-ratio:before {\n content: \"\\\\e91a\";\n }\n .new-icon-assessment:before {\n content: \"\\\\e91b\";\n }\n .new-icon-assignment-ind:before {\n content: \"\\\\e91c\";\n }\n .new-icon-assignment:before {\n content: \"\\\\e91d\";\n }\n .new-icon-attachment:before {\n content: \"\\\\e91e\";\n }\n .new-icon-attendees:before {\n content: \"\\\\e91f\";\n color: #535353;\n }\n .new-icon-autorenew:before {\n content: \"\\\\e920\";\n }\n .new-icon-backup:before {\n content: \"\\\\e921\";\n }\n .new-icon-block:before {\n content: \"\\\\e922\";\n }\n .new-icon-bluetooth-connected:before {\n content: \"\\\\e923\";\n }\n .new-icon-bluetooth-disabled:before {\n content: \"\\\\e924\";\n }\n .new-icon-bluetooth-searching:before {\n content: \"\\\\e925\";\n }\n .new-icon-bluetooth:before {\n content: \"\\\\e926\";\n }\n .new-icon-bookmark-border:before {\n content: \"\\\\e927\";\n }\n .new-icon-bookmark:before {\n content: \"\\\\e928\";\n }\n .new-icon-bookmarks:before {\n content: \"\\\\e929\";\n }\n .new-icon-build:before {\n content: \"\\\\e92a\";\n }\n .new-icon-cake:before {\n content: \"\\\\e92b\";\n }\n .new-icon-calendar-today:before {\n content: \"\\\\e92c\";\n }\n .new-icon-call-end:before {\n content: \"\\\\e92d\";\n }\n .new-icon-call-message:before {\n content: \"\\\\e92e\";\n }\n .new-icon-call:before {\n content: \"\\\\e92f\";\n }\n .new-icon-camera-alt:before {\n content: \"\\\\e930\";\n }\n .new-icon-cancel:before {\n content: \"\\\\e931\";\n }\n .new-icon-card-giftcard:before {\n content: \"\\\\e932\";\n }\n .new-icon-categories:before {\n content: \"\\\\e933\";\n color: #535353;\n }\n .new-icon-category:before {\n content: \"\\\\e934\";\n }\n .new-icon-chat-bubble:before {\n content: \"\\\\e935\";\n }\n .new-icon-chat:before {\n content: \"\\\\e936\";\n }\n .new-icon-check-box-outline-blank:before {\n content: \"\\\\e937\";\n }\n .new-icon-check-box:before {\n content: \"\\\\e938\";\n }\n .new-icon-check-circle-outline:before {\n content: \"\\\\e939\";\n }\n .new-icon-check-circle:before {\n content: \"\\\\e93a\";\n }\n .new-icon-check:before {\n content: \"\\\\e93b\";\n }\n .new-icon-chevron-left:before {\n content: \"\\\\e93c\";\n }\n .new-icon-chevron-right:before {\n content: \"\\\\e93d\";\n }\n .new-icon-close:before {\n content: \"\\\\e93e\";\n }\n .new-icon-cloud-circle:before {\n content: \"\\\\e93f\";\n }\n .new-icon-cloud-done:before {\n content: \"\\\\e940\";\n }\n .new-icon-cloud-download:before {\n content: \"\\\\e941\";\n }\n .new-icon-cloud-off:before {\n content: \"\\\\e942\";\n }\n .new-icon-cloud-queue:before {\n content: \"\\\\e943\";\n }\n .new-icon-cloud-upload:before {\n content: \"\\\\e944\";\n }\n .new-icon-cloud:before {\n content: \"\\\\e945\";\n }\n .new-icon-code:before {\n content: \"\\\\e946\";\n }\n .new-icon-colleague:before {\n content: \"\\\\e947\";\n }\n .new-icon-commute:before {\n content: \"\\\\e948\";\n }\n .new-icon-copyright:before {\n content: \"\\\\e949\";\n }\n .new-icon-create:before {\n content: \"\\\\e94a\";\n }\n .new-icon-credit-card:before {\n content: \"\\\\e94b\";\n }\n .new-icon-crop-rotate:before {\n content: \"\\\\e94c\";\n }\n .new-icon-dashboard:before {\n content: \"\\\\e94d\";\n }\n .new-icon-delete-outline:before {\n content: \"\\\\e94e\";\n }\n .new-icon-delete-sweep:before {\n content: \"\\\\e94f\";\n }\n .new-icon-delete:before {\n content: \"\\\\e950\";\n }\n .new-icon-description:before {\n content: \"\\\\e951\";\n }\n .new-icon-dialpad:before {\n content: \"\\\\e952\";\n }\n .new-icon-drafts:before {\n content: \"\\\\e953\";\n }\n .new-icon-email:before {\n content: \"\\\\e954\";\n }\n .new-icon-equalizer:before {\n content: \"\\\\e955\";\n }\n .new-icon-error-outline:before {\n content: \"\\\\e956\";\n }\n .new-icon-error:before {\n content: \"\\\\e957\";\n }\n .new-icon-event-seat:before {\n content: \"\\\\e958\";\n }\n .new-icon-event:before {\n content: \"\\\\e959\";\n }\n .new-icon-exit-to-app:before {\n content: \"\\\\e95a\";\n }\n .new-icon-expand-less:before {\n content: \"\\\\e95b\";\n }\n .new-icon-expand-more:before {\n content: \"\\\\e95c\";\n }\n .new-icon-facebook-alt:before {\n content: \"\\\\e95d\";\n }\n .new-icon-facebook:before {\n content: \"\\\\e95e\";\n }\n .new-icon-favorite-border:before {\n content: \"\\\\e95f\";\n }\n .new-icon-favorite:before {\n content: \"\\\\e960\";\n }\n .new-icon-file .path1:before {\n content: \"\\\\e961\";\n color: rgb(255, 255, 255);\n }\n .new-icon-file .path2:before {\n content: \"\\\\e962\";\n margin-left: -1em;\n color: rgb(59, 65, 65);\n }\n .new-icon-fingerprint:before {\n content: \"\\\\e963\";\n }\n .new-icon-follower:before {\n content: \"\\\\e964\";\n color: #535353;\n }\n .new-icon-forum:before {\n content: \"\\\\e965\";\n }\n .new-icon-get-app:before {\n content: \"\\\\e966\";\n }\n .new-icon-google-alt:before {\n content: \"\\\\e967\";\n }\n .new-icon-google-plus-alt:before {\n content: \"\\\\e968\";\n }\n .new-icon-google-plus:before {\n content: \"\\\\e969\";\n }\n .new-icon-google:before {\n content: \"\\\\e96a\";\n }\n .new-icon-gps-fixed:before {\n content: \"\\\\e96b\";\n }\n .new-icon-gps-not-fixed:before {\n content: \"\\\\e96c\";\n }\n .new-icon-gps-off:before {\n content: \"\\\\e96d\";\n }\n .new-icon-group:before {\n content: \"\\\\e96e\";\n }\n .new-icon-headset-mic:before {\n content: \"\\\\e96f\";\n }\n .new-icon-headset:before {\n content: \"\\\\e970\";\n }\n .new-icon-help-outline:before {\n content: \"\\\\e971\";\n }\n .new-icon-help:before {\n content: \"\\\\e972\";\n }\n .new-icon-highlight-off:before {\n content: \"\\\\e973\";\n }\n .new-icon-history:before {\n content: \"\\\\e974\";\n }\n .new-icon-home:before {\n content: \"\\\\e975\";\n }\n .new-icon-hourglass-empty:before {\n content: \"\\\\e976\";\n }\n .new-icon-hourglass-full:before {\n content: \"\\\\e977\";\n }\n .new-icon-ic-content-copy:before {\n content: \"\\\\e978\";\n }\n .new-icon-import-contacts:before {\n content: \"\\\\e979\";\n }\n .new-icon-indeterminate-check-box:before {\n content: \"\\\\e97a\";\n }\n .new-icon-info:before {\n content: \"\\\\e97b\";\n }\n .new-icon-instagram-alt:before {\n content: \"\\\\e97c\";\n }\n .new-icon-instagram:before {\n content: \"\\\\e97d\";\n }\n .new-icon-keyboard-backspace:before {\n content: \"\\\\e97e\";\n }\n .new-icon-keyboard-voice:before {\n content: \"\\\\e97f\";\n }\n .new-icon-keyboard:before {\n content: \"\\\\e980\";\n }\n .new-icon-language:before {\n content: \"\\\\e981\";\n }\n .new-icon-link-off:before {\n content: \"\\\\e982\";\n }\n .new-icon-link:before {\n content: \"\\\\e983\";\n }\n .new-icon-linkedin-alt:before {\n content: \"\\\\e984\";\n }\n .new-icon-linkedin:before {\n content: \"\\\\e985\";\n }\n .new-icon-local-offer .path1:before {\n content: \"\\\\e986\";\n color: rgb(255, 255, 255);\n }\n .new-icon-local-offer .path2:before {\n content: \"\\\\e987\";\n margin-left: -1em;\n color: rgb(59, 65, 65);\n }\n .new-icon-location-off:before {\n content: \"\\\\e988\";\n }\n .new-icon-location-on:before {\n content: \"\\\\e989\";\n }\n .new-icon-lock-open:before {\n content: \"\\\\e98a\";\n }\n .new-icon-lock:before {\n content: \"\\\\e98b\";\n }\n .new-icon-loop:before {\n content: \"\\\\e98c\";\n }\n .new-icon-loyalty:before {\n content: \"\\\\e98d\";\n }\n .new-icon-mail-outline:before {\n content: \"\\\\e98e\";\n }\n .new-icon-mail:before {\n content: \"\\\\e98f\";\n }\n .new-icon-menu:before {\n content: \"\\\\e990\";\n }\n .new-icon-mic-none:before {\n content: \"\\\\e991\";\n }\n .new-icon-mic-off:before {\n content: \"\\\\e992\";\n }\n .new-icon-mic:before {\n content: \"\\\\e993\";\n }\n .new-icon-mood-bad:before {\n content: \"\\\\e994\";\n }\n .new-icon-mood:before {\n content: \"\\\\e995\";\n }\n .new-icon-more-horiz:before {\n content: \"\\\\e996\";\n }\n .new-icon-more-vert:before {\n content: \"\\\\e997\";\n }\n .new-icon-not-interested:before {\n content: \"\\\\e998\";\n }\n .new-icon-note-add:before {\n content: \"\\\\e999\";\n }\n .new-icon-note:before {\n content: \"\\\\e99a\";\n }\n .new-icon-notification-important:before {\n content: \"\\\\e99b\";\n }\n .new-icon-notifications-active:before {\n content: \"\\\\e99c\";\n }\n .new-icon-notifications-none:before {\n content: \"\\\\e99d\";\n }\n .new-icon-notifications-off:before {\n content: \"\\\\e99e\";\n }\n .new-icon-notifications-paused:before {\n content: \"\\\\e99f\";\n }\n .new-icon-notifications:before {\n content: \"\\\\e9a0\";\n }\n .new-icon-offline-pin:before {\n content: \"\\\\e9a1\";\n }\n .new-icon-ondemand-video:before {\n content: \"\\\\e9a2\";\n }\n .new-icon-outlined-flag:before {\n content: \"\\\\e9a3\";\n }\n .new-icon-partner:before {\n content: \"\\\\e9a4\";\n }\n .new-icon-pause-circle-outline:before {\n content: \"\\\\e9a5\";\n }\n .new-icon-perm-contact-calendar:before {\n content: \"\\\\e9a6\";\n }\n .new-icon-perm-identity:before {\n content: \"\\\\e9a7\";\n }\n .new-icon-place:before {\n content: \"\\\\e9a8\";\n }\n .new-icon-play-arrow:before {\n content: \"\\\\e9a9\";\n }\n .new-icon-play-circle-filled:before {\n content: \"\\\\e9aa\";\n }\n .new-icon-play-circle-outline:before {\n content: \"\\\\e9ab\";\n }\n .new-icon-playlist-add-check:before {\n content: \"\\\\e9ac\";\n }\n .new-icon-playlist-add:before {\n content: \"\\\\e9ad\";\n }\n .new-icon-playlist-play:before {\n content: \"\\\\e9ae\";\n }\n .new-icon-print:before {\n content: \"\\\\e9af\";\n }\n .new-icon-query-builder:before {\n content: \"\\\\e9b0\";\n }\n .new-icon-question-answer:before {\n content: \"\\\\e9b1\";\n }\n .new-icon-radio-button-checked:before {\n content: \"\\\\e9b2\";\n }\n .new-icon-radio-button-unchecked:before {\n content: \"\\\\e9b3\";\n }\n .new-icon-remove-circle-outline:before {\n content: \"\\\\e9b4\";\n }\n .new-icon-remove-circle:before {\n content: \"\\\\e9b5\";\n }\n .new-icon-remove-red-eye-2 .path1:before {\n content: \"\\\\e9b6\";\n color: rgb(255, 255, 255);\n }\n .new-icon-remove-red-eye-2 .path2:before {\n content: \"\\\\e9b7\";\n margin-left: -1em;\n color: rgb(59, 65, 65);\n }\n .new-icon-remove-red-eye .path1:before {\n content: \"\\\\e9b8\";\n color: rgb(255, 255, 255);\n }\n .new-icon-remove-red-eye .path2:before {\n content: \"\\\\e9b9\";\n margin-left: -1em;\n color: rgb(59, 65, 65);\n }\n .new-icon-report-problem:before {\n content: \"\\\\e9ba\";\n }\n .new-icon-restore:before {\n content: \"\\\\e9bb\";\n }\n .new-icon-search:before {\n content: \"\\\\e9bc\";\n }\n .new-icon-send:before {\n content: \"\\\\e9bd\";\n }\n .new-icon-sentiment-dissatisfied:before {\n content: \"\\\\e9be\";\n }\n .new-icon-sentiment-satisfied:before {\n content: \"\\\\e9bf\";\n }\n .new-icon-sentiment-very-dissatisfied:before {\n content: \"\\\\e9c0\";\n }\n .new-icon-sentiment-very-satisfied:before {\n content: \"\\\\e9c1\";\n }\n .new-icon-setting:before {\n content: \"\\\\e9c2\";\n }\n .new-icon-settings-applications:before {\n content: \"\\\\e9c3\";\n }\n .new-icon-settings-ethernet:before {\n content: \"\\\\e9c4\";\n }\n .new-icon-share:before {\n content: \"\\\\e9c5\";\n }\n .new-icon-shopping-cart:before {\n content: \"\\\\e9c6\";\n }\n .new-icon-smartphone:before {\n content: \"\\\\e9c7\";\n }\n .new-icon-sort-by-alpha:before {\n content: \"\\\\e9c8\";\n }\n .new-icon-speaker:before {\n content: \"\\\\e9c9\";\n color: #535353;\n }\n .new-icon-star-border:before {\n content: \"\\\\e9ca\";\n }\n .new-icon-star-half:before {\n content: \"\\\\e9cb\";\n }\n .new-icon-star:before {\n content: \"\\\\e9cc\";\n }\n .new-icon-stay-current-landscape:before {\n content: \"\\\\e9cd\";\n }\n .new-icon-stay-current-portrait:before {\n content: \"\\\\e9ce\";\n }\n .new-icon-Subtraction:before {\n content: \"\\\\e9cf\";\n }\n .new-icon-supervised-user-circle:before {\n content: \"\\\\e9d0\";\n }\n .new-icon-supervisor-account:before {\n content: \"\\\\e9d1\";\n }\n .new-icon-tablet-android:before {\n content: \"\\\\e9d2\";\n }\n .new-icon-tablet:before {\n content: \"\\\\e9d3\";\n }\n .new-icon-telegram-alt:before {\n content: \"\\\\e9d4\";\n }\n .new-icon-telegram:before {\n content: \"\\\\e9d5\";\n }\n .new-icon-textsms:before {\n content: \"\\\\e9d6\";\n }\n .new-icon-theaters:before {\n content: \"\\\\e9d7\";\n }\n .new-icon-thumb-down-alt:before {\n content: \"\\\\e9d8\";\n }\n .new-icon-thumb-down:before {\n content: \"\\\\e9d9\";\n }\n .new-icon-thumb-up-alt:before {\n content: \"\\\\e9da\";\n }\n .new-icon-thumb-up:before {\n content: \"\\\\e9db\";\n }\n .new-icon-ticket:before {\n content: \"\\\\e9dc\";\n }\n .new-icon-today:before {\n content: \"\\\\e9dd\";\n }\n .new-icon-toggle-off:before {\n content: \"\\\\e9de\";\n }\n .new-icon-toggle-on:before {\n content: \"\\\\e9df\";\n }\n .new-icon-touch-app:before {\n content: \"\\\\e9e0\";\n }\n .new-icon-tv .path1:before {\n content: \"\\\\e9e1\";\n color: rgb(255, 255, 255);\n }\n .new-icon-tv .path2:before {\n content: \"\\\\e9e2\";\n margin-left: -1em;\n color: rgb(59, 65, 65);\n }\n .new-icon-twitter-alt:before {\n content: \"\\\\e9e3\";\n }\n .new-icon-twitter:before {\n content: \"\\\\e9e4\";\n }\n .new-icon-update:before {\n content: \"\\\\e9e5\";\n }\n .new-icon-verified-user:before {\n content: \"\\\\e9e6\";\n }\n .new-icon-view-carousel:before {\n content: \"\\\\e9e7\";\n }\n .new-icon-visibility-off:before {\n content: \"\\\\e9e8\";\n }\n .new-icon-visibility:before {\n content: \"\\\\e9e9\";\n }\n .new-icon-volume-down:before {\n content: \"\\\\e9ea\";\n }\n .new-icon-volume-mute:before {\n content: \"\\\\e9eb\";\n }\n .new-icon-volume-off:before {\n content: \"\\\\e9ec\";\n }\n .new-icon-volume-up:before {\n content: \"\\\\e9ed\";\n }\n .new-icon-vpn-key:before {\n content: \"\\\\e9ee\";\n }\n .new-icon-warning:before {\n content: \"\\\\e9ef\";\n }\n .new-icon-watch-later:before {\n content: \"\\\\e9f0\";\n }\n .new-icon-watch:before {\n content: \"\\\\e9f1\";\n }\n .new-icon-Whatsapp-alt:before {\n content: \"\\\\e9f2\";\n }\n .new-icon-where-to-vote:before {\n content: \"\\\\e9f3\";\n }\n .new-icon-work-off:before {\n content: \"\\\\e9f4\";\n }\n .new-icon-work-outline:before {\n content: \"\\\\e9f5\";\n }\n .new-icon-work:before {\n content: \"\\\\e9f6\";\n }\n .new-icon-zoom-in:before {\n content: \"\\\\e9f7\";\n }\n .new-icon-zoom-out-map:before {\n content: \"\\\\e9f8\";\n }\n .new-icon-zoom-out:before {\n content: \"\\\\e9f9\";\n }\n \n \n"])));var _default=exports.default=
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
FontStyle;
|