qpp-style 0.0.8 → 0.0.10
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/.eslintrc.js +28 -28
- package/.husky/pre-commit +5 -0
- package/README.md +45 -0
- package/components/Accordion/index.jsx +35 -43
- package/components/Alert/index.js +53 -0
- package/components/Breadcrumb/Breadcrumb.md +28 -0
- package/components/Breadcrumb/index.js +69 -11
- package/components/Button/index.js +90 -0
- package/components/CalloutBox/index.js +109 -0
- package/components/Card/index.js +137 -0
- package/components/Details/DetailsIcons.js +50 -0
- package/components/Details/index.js +53 -0
- package/components/Dropdown/index.js +85 -0
- package/components/DropdownButton/Menu.js +25 -0
- package/components/DropdownButton/MenuButton.js +41 -0
- package/components/DropdownButton/MenuItem.js +25 -0
- package/components/DropdownButton/MenuItemLink.js +27 -0
- package/components/Error/Collapsible.jsx +2 -2
- package/components/Footer/FooterUI.jsx +175 -177
- package/components/Footer/footer.js +2 -12
- package/components/GovBanner/index.js +117 -0
- package/components/Header/HeaderAccountMenu.jsx +63 -234
- package/components/Header/HeaderCancel.jsx +5 -10
- package/components/Header/HeaderContainer.jsx +74 -0
- package/components/Header/HeaderLogo.jsx +42 -0
- package/components/Header/HeaderMenuButton.js +50 -0
- package/components/Header/HeaderMenuItem.jsx +239 -0
- package/components/Header/HeaderMenuLink.js +56 -0
- package/components/Header/HeaderMenuSignOutButton.js +62 -0
- package/components/Header/HeaderMobileButton.js +37 -0
- package/components/Header/HeaderUI.jsx +130 -361
- package/components/Header/HelpIcon.jsx +32 -0
- package/components/Header/ImpersonatorBanner.jsx +81 -0
- package/components/Header/default-content.json +158 -87
- package/components/Header/header.js +2 -0
- package/components/Header/hooks.js +66 -0
- package/components/Header/utag-helpers.js +9 -0
- package/components/Infotip/Infotip.jsx +6 -10
- package/components/Infotip/InfotipContent.jsx +46 -0
- package/components/Infotip/InfotipIcon.jsx +3 -3
- package/components/Link/index.js +61 -0
- package/components/Modal/LegacyModal.jsx +72 -0
- package/components/Modal/Modal.jsx +140 -0
- package/components/Modal/index.jsx +13 -63
- package/components/NotificationBanner/CollapsedView.js +39 -0
- package/components/NotificationBanner/ExpandedView.js +45 -0
- package/components/NotificationBanner/index.js +219 -30
- package/components/Search/index.js +98 -0
- package/components/SessionDialog/sessionDialog.js +26 -0
- package/components/SessionDialogUI.jsx +34 -26
- package/components/SideNav/AnimationGroup/AnimationGroup.jsx +10 -4
- package/components/SideNav/Chart/ScoreChart.jsx +81 -109
- package/components/SideNav/Chart/__tests__/ScoreChart.test.js +3 -12
- package/components/SideNav/Chart/__tests__/__snapshots__/ScoreChart.test.js.snap +144 -35
- package/components/SideNav/Chart/index.js +1 -1
- package/components/SideNav/Content/LevelOneContent.jsx +146 -258
- package/components/SideNav/Content/LevelTwoContent.jsx +6 -4
- package/components/SideNav/Content/SelectRole/index.js +77 -0
- package/components/SideNav/Content/SelectRole/utils.js +140 -0
- package/components/SideNav/Details/PracticeDetails.jsx +4 -0
- package/components/SideNav/Links/CmsSwitchLink.jsx +1 -1
- package/components/SideNav/Links/NavLinkContainer.jsx +29 -34
- package/components/SideNav/Links/NavLinkDrawer.jsx +192 -124
- package/components/SideNav/Links/NavLinkInline.jsx +7 -2
- package/components/SideNav/Links/NavLinkToggle.jsx +1 -1
- package/components/SideNav/SideNav.md +28 -27
- package/components/SideNav/UI/SideNavUI.jsx +198 -268
- package/components/SideNav/UI/default-content.json +117 -0
- package/components/SideNav/helpers.js +316 -4
- package/components/Tabs/TabPanel.js +5 -0
- package/components/Tabs/Tabs.js +73 -0
- package/components/TextInput/index.js +137 -0
- package/components/hooks/useGetConfig.js +75 -0
- package/components/index.js +106 -9
- package/coverage/clover.xml +1194 -748
- package/coverage/coverage-final.json +72 -50
- package/coverage/lcov-report/block-navigation.js +8 -0
- package/coverage/lcov-report/components/Accordion/index.html +26 -21
- package/coverage/lcov-report/components/Accordion/index.jsx.html +106 -131
- package/coverage/lcov-report/{SideNav/Chart → components/Button}/index.html +29 -24
- package/coverage/lcov-report/{Error/Collapsible.jsx.html → components/Button/index.js.html} +125 -114
- package/coverage/lcov-report/components/Error/Collapsible.jsx.html +92 -87
- package/coverage/lcov-report/components/Error/ErrorUI.jsx.html +32 -33
- package/coverage/lcov-report/components/Error/index.html +11 -6
- package/coverage/lcov-report/components/Footer/FooterUI.jsx.html +200 -189
- package/coverage/lcov-report/components/Footer/SocialLinks.jsx.html +24 -61
- package/coverage/lcov-report/components/Footer/Subscribe.jsx.html +18 -13
- package/coverage/lcov-report/components/Footer/index.html +35 -45
- package/coverage/lcov-report/components/{InfoModal → GovBanner}/index.html +27 -22
- package/coverage/lcov-report/components/{InfoModal/index.jsx.html → GovBanner/index.js.html} +157 -122
- package/coverage/lcov-report/components/Header/HeaderAccountMenu.jsx.html +93 -520
- package/coverage/lcov-report/components/Header/HeaderCancel.jsx.html +19 -23
- package/coverage/lcov-report/components/Header/HeaderContainer.jsx.html +280 -0
- package/coverage/lcov-report/components/Header/HeaderLogo.jsx.html +211 -0
- package/coverage/lcov-report/components/Header/HeaderMenuButton.js.html +235 -0
- package/coverage/lcov-report/components/{Footer/LegacyFooterUI.jsx.html → Header/HeaderMenuItem.jsx.html} +334 -200
- package/coverage/lcov-report/components/Header/HeaderMenuLink.js.html +253 -0
- package/coverage/lcov-report/components/Header/HeaderMenuSignOutButton.js.html +271 -0
- package/coverage/lcov-report/components/Header/HeaderMobileButton.js.html +196 -0
- package/coverage/lcov-report/components/Header/HeaderUI.jsx.html +176 -756
- package/coverage/lcov-report/components/Header/HelpIcon.jsx.html +181 -0
- package/coverage/lcov-report/{Accordion/index.jsx.html → components/Header/ImpersonatorBanner.jsx.html} +109 -167
- package/coverage/lcov-report/components/Header/NavigationButtonIcon.jsx.html +24 -19
- package/coverage/lcov-report/components/Header/hooks.js.html +283 -0
- package/coverage/lcov-report/components/Header/index.html +203 -33
- package/coverage/lcov-report/components/{SideNav/Links/index.js.html → Header/utag-helpers.js.html} +35 -42
- package/coverage/lcov-report/components/Infotip/Infotip.jsx.html +53 -48
- package/coverage/lcov-report/components/Infotip/InfotipIcon.jsx.html +37 -32
- package/coverage/lcov-report/components/Infotip/index.html +8 -3
- package/coverage/lcov-report/components/Infotip/index.js.html +8 -3
- package/coverage/lcov-report/components/Modal/LegacyModal.jsx.html +301 -0
- package/coverage/lcov-report/components/Modal/Modal.jsx.html +505 -0
- package/coverage/lcov-report/components/Modal/index.html +146 -0
- package/coverage/lcov-report/components/{SideNav/Details/IndividualDetails.jsx.html → Modal/index.jsx.html} +50 -42
- package/coverage/lcov-report/components/NotificationBanner/CollapsedView.js.html +202 -0
- package/coverage/lcov-report/components/NotificationBanner/ExpandedView.js.html +220 -0
- package/coverage/lcov-report/components/NotificationBanner/index.html +58 -23
- package/coverage/lcov-report/components/{SideNav/Content/LevelTwoContent.jsx.html → NotificationBanner/index.js.html} +292 -272
- package/coverage/lcov-report/components/SanitizedContent/index.html +8 -3
- package/coverage/lcov-report/components/SanitizedContent/index.jsx.html +475 -50
- package/coverage/lcov-report/components/SessionDialogUI.jsx.html +248 -255
- package/coverage/lcov-report/components/SideNav/Chart/ScoreChart.jsx.html +272 -408
- package/coverage/lcov-report/components/SideNav/Chart/index.html +28 -38
- package/coverage/lcov-report/components/SideNav/Content/SelectRole/index.html +116 -0
- package/coverage/lcov-report/components/SideNav/Content/SelectRole/utils.js.html +505 -0
- package/coverage/lcov-report/components/SideNav/helpers.js.html +987 -46
- package/coverage/lcov-report/components/SideNav/index.html +24 -19
- package/coverage/lcov-report/components/Tooltip/Tooltip.jsx.html +70 -65
- package/coverage/lcov-report/components/Tooltip/index.html +8 -3
- package/coverage/lcov-report/components/Tooltip/index.js.html +8 -3
- package/coverage/lcov-report/components/Tooltip/position.js.html +57 -64
- package/coverage/lcov-report/components/hooks/index.html +116 -0
- package/coverage/lcov-report/components/hooks/useGetConfig.js.html +310 -0
- package/coverage/lcov-report/components/index.html +10 -5
- package/coverage/lcov-report/index.html +249 -154
- package/coverage/lcov-report/{Error/ErrorUI.jsx.html → lib/Chevron.jsx.html} +44 -42
- package/coverage/lcov-report/lib/SvgComponents.jsx.html +1840 -0
- package/coverage/lcov-report/lib/index.html +34 -14
- package/coverage/lcov-report/react/components/Accordion/index.html +26 -21
- package/coverage/lcov-report/react/components/Accordion/index.jsx.html +106 -131
- package/coverage/lcov-report/react/components/{FlashNotification → Button}/index.html +23 -33
- package/coverage/lcov-report/{components/SideNav/Links/NavLinkInline.jsx.html → react/components/Button/index.js.html} +119 -120
- package/coverage/lcov-report/react/components/{Tabs → Dropdown}/index.html +23 -33
- package/coverage/lcov-report/react/components/{InfoModal/index.jsx.html → Dropdown/index.js.html} +103 -155
- package/coverage/lcov-report/react/components/Error/Collapsible.jsx.html +92 -87
- package/coverage/lcov-report/react/components/Error/ErrorUI.jsx.html +32 -33
- package/coverage/lcov-report/react/components/Error/error.js.html +25 -20
- package/coverage/lcov-report/react/components/Error/index.html +11 -6
- package/coverage/lcov-report/react/components/Footer/FooterUI.jsx.html +200 -189
- package/coverage/lcov-report/react/components/Footer/LegacyFooterUI.jsx.html +14 -15
- package/coverage/lcov-report/react/components/Footer/SocialLinks.jsx.html +18 -13
- package/coverage/lcov-report/react/components/Footer/Subscribe.jsx.html +18 -13
- package/coverage/lcov-report/react/components/Footer/footer.js.html +12 -34
- package/coverage/lcov-report/react/components/Footer/index.html +35 -45
- package/coverage/lcov-report/react/components/{InfoModal → GovBanner}/index.html +27 -22
- package/coverage/lcov-report/react/components/{Tabs/TabsUI.jsx.html → GovBanner/index.js.html} +146 -153
- package/coverage/lcov-report/react/components/Header/HeaderAccountMenu.jsx.html +93 -520
- package/coverage/lcov-report/react/components/Header/HeaderCancel.jsx.html +19 -23
- package/coverage/lcov-report/react/components/Header/HeaderContainer.jsx.html +307 -0
- package/coverage/lcov-report/{components/SideNav/Links/CmsSwitchLink.jsx.html → react/components/Header/HeaderLogo.jsx.html} +64 -53
- package/coverage/lcov-report/{components/SideNav/Links/NavItemInline.jsx.html → react/components/Header/HeaderMenuButton.js.html} +64 -71
- package/coverage/lcov-report/{components/SideNav/Links/NavLinkDrawer.jsx.html → react/components/Header/HeaderMenuItem.jsx.html} +284 -261
- package/coverage/lcov-report/react/components/Header/HeaderMenuLink.js.html +253 -0
- package/coverage/lcov-report/react/components/Header/HeaderMenuSignOutButton.js.html +271 -0
- package/coverage/lcov-report/{components/SideNav/Links/NavLinkToggle.jsx.html → react/components/Header/HeaderMobileButton.js.html} +58 -41
- package/coverage/lcov-report/react/components/Header/HeaderUI.jsx.html +189 -745
- package/coverage/lcov-report/react/components/Header/HelpIcon.jsx.html +181 -0
- package/coverage/lcov-report/react/components/Header/ImpersonatorBanner.jsx.html +331 -0
- package/coverage/lcov-report/react/components/Header/NavigationButtonIcon.jsx.html +18 -13
- package/coverage/lcov-report/react/components/Header/header.js.html +18 -4
- package/coverage/lcov-report/react/components/Header/hooks.js.html +283 -0
- package/coverage/lcov-report/react/components/Header/index.html +205 -35
- package/coverage/lcov-report/react/components/{Spinner/index.js.html → Header/utag-helpers.js.html} +26 -21
- package/coverage/lcov-report/react/components/Infotip/Infotip.jsx.html +53 -48
- package/coverage/lcov-report/{components/SideNav/Links/NavLinkContainer.jsx.html → react/components/Infotip/InfotipContent.jsx.html} +83 -60
- package/coverage/lcov-report/react/components/Infotip/InfotipIcon.jsx.html +37 -32
- package/coverage/lcov-report/react/components/Infotip/index.html +8 -3
- package/coverage/lcov-report/react/components/Infotip/index.js.html +8 -3
- package/coverage/lcov-report/react/components/{FlashNotification/FlashNotificationUI.jsx.html → Modal/LegacyModal.jsx.html} +89 -84
- package/coverage/lcov-report/react/components/Modal/Modal.jsx.html +505 -0
- package/coverage/lcov-report/react/components/Modal/index.html +52 -17
- package/coverage/lcov-report/react/components/Modal/index.jsx.html +38 -201
- package/coverage/lcov-report/react/components/{Tabs/tabs.js.html → NotificationBanner/CollapsedView.js.html} +61 -47
- package/coverage/lcov-report/{components/SideNav/Details/PracticeDetails.jsx.html → react/components/NotificationBanner/ExpandedView.js.html} +74 -57
- package/coverage/lcov-report/react/components/NotificationBanner/index.html +58 -23
- package/coverage/lcov-report/react/components/NotificationBanner/index.js.html +615 -43
- package/coverage/lcov-report/react/components/SanitizedContent/index.html +8 -3
- package/coverage/lcov-report/react/components/SanitizedContent/index.jsx.html +478 -53
- package/coverage/lcov-report/react/components/{Spinner → SessionDialog}/index.html +11 -6
- package/coverage/lcov-report/react/components/{FlashNotification/index.js.html → SessionDialog/sessionDialog.js.html} +35 -42
- package/coverage/lcov-report/react/components/SessionDialogUI.jsx.html +248 -255
- package/coverage/lcov-report/react/components/SideNav/AnimationGroup/AnimationGroup.jsx.html +53 -18
- package/coverage/lcov-report/react/components/SideNav/AnimationGroup/index.html +18 -13
- package/coverage/lcov-report/react/components/SideNav/Chart/ScoreChart.jsx.html +272 -402
- package/coverage/lcov-report/react/components/SideNav/Chart/index.html +28 -23
- package/coverage/lcov-report/react/components/SideNav/Chart/index.js.html +9 -4
- package/coverage/lcov-report/react/components/SideNav/Content/LevelOneContent.jsx.html +190 -521
- package/coverage/lcov-report/react/components/SideNav/Content/LevelTwoContent.jsx.html +23 -12
- package/coverage/lcov-report/{components/SideNav/Details → react/components/SideNav/Content/SelectRole}/index.html +42 -52
- package/coverage/lcov-report/react/components/SideNav/Content/SelectRole/index.js.html +316 -0
- package/coverage/lcov-report/react/components/SideNav/Content/SelectRole/utils.js.html +505 -0
- package/coverage/lcov-report/react/components/SideNav/Content/index.html +32 -27
- package/coverage/lcov-report/react/components/SideNav/Content/index.js.html +8 -3
- package/coverage/lcov-report/react/components/SideNav/Details/IndividualDetails.jsx.html +20 -24
- package/coverage/lcov-report/react/components/SideNav/Details/PracticeDetails.jsx.html +54 -37
- package/coverage/lcov-report/react/components/SideNav/Details/index.html +23 -18
- package/coverage/lcov-report/react/components/SideNav/Details/index.js.html +8 -3
- package/coverage/lcov-report/react/components/SideNav/Links/CmsSwitchLink.jsx.html +9 -4
- package/coverage/lcov-report/react/components/SideNav/Links/NavItemInline.jsx.html +8 -3
- package/coverage/lcov-report/react/components/SideNav/Links/NavLinkContainer.jsx.html +56 -57
- package/coverage/lcov-report/react/components/SideNav/Links/NavLinkDrawer.jsx.html +351 -142
- package/coverage/lcov-report/react/components/SideNav/Links/NavLinkInline.jsx.html +60 -40
- package/coverage/lcov-report/react/components/SideNav/Links/NavLinkToggle.jsx.html +9 -4
- package/coverage/lcov-report/react/components/SideNav/Links/index.html +44 -39
- package/coverage/lcov-report/react/components/SideNav/Links/index.js.html +8 -3
- package/coverage/lcov-report/react/components/SideNav/UI/SideNavUI.jsx.html +243 -433
- package/coverage/lcov-report/react/components/SideNav/UI/index.html +28 -23
- package/coverage/lcov-report/react/components/SideNav/UI/index.js.html +8 -3
- package/coverage/lcov-report/react/components/SideNav/helpers.js.html +958 -17
- package/coverage/lcov-report/react/components/SideNav/index.html +27 -22
- package/coverage/lcov-report/react/components/SideNav/index.js.html +8 -3
- package/coverage/lcov-report/react/components/Tooltip/Tooltip.jsx.html +70 -65
- package/coverage/lcov-report/react/components/Tooltip/index.html +8 -3
- package/coverage/lcov-report/react/components/Tooltip/index.js.html +8 -3
- package/coverage/lcov-report/react/components/Tooltip/position.js.html +57 -64
- package/coverage/lcov-report/{components/SideNav/AnimationGroup → react/components/hooks}/index.html +29 -24
- package/coverage/lcov-report/react/components/hooks/useGetConfig.js.html +310 -0
- package/coverage/lcov-report/react/components/index.html +10 -5
- package/coverage/lcov-report/react/index.html +20 -15
- package/coverage/lcov-report/react/index.js.html +29 -9
- package/coverage/lcov-report/react/lib/Chevron.jsx.html +181 -0
- package/coverage/lcov-report/react/lib/SvgComponents.jsx.html +195 -106
- package/coverage/lcov-report/react/lib/index.html +37 -17
- package/coverage/lcov-report/react/lib/svg-definitions.svg.html +57 -916
- package/coverage/lcov-report/react/session/index.html +32 -27
- package/coverage/lcov-report/react/session/index.js.html +8 -3
- package/coverage/lcov-report/react/session/logout.js.html +121 -17
- package/coverage/lcov-report/react/session/refresh.js.html +11 -6
- package/coverage/lcov-report/react/session/ttl.js.html +8 -3
- package/coverage/lcov-report/session/index.html +50 -45
- package/coverage/lcov-report/session/index.js.html +8 -3
- package/coverage/lcov-report/session/logout.js.html +144 -49
- package/coverage/lcov-report/session/refresh.js.html +41 -36
- package/coverage/lcov-report/session/ttl.js.html +34 -29
- package/coverage/lcov-report/sorter.js +26 -0
- package/coverage/lcov.info +2427 -1491
- package/dist/browser.js +1 -1
- package/dist/browser.js.LICENSE.txt +1 -7
- package/dist/browser.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.LICENSE.txt +1 -7
- package/dist/index.js.map +1 -1
- package/dist/react/index.js +1 -1
- package/dist/react/index.js.LICENSE.txt +16 -16
- package/dist/react/index.js.map +1 -1
- package/fonts/PublicSans-Black.ttf +0 -0
- package/fonts/PublicSans-BlackItalic.ttf +0 -0
- package/fonts/PublicSans-Bold.ttf +0 -0
- package/fonts/PublicSans-BoldItalic.ttf +0 -0
- package/fonts/PublicSans-ExtraBold.ttf +0 -0
- package/fonts/PublicSans-ExtraBoldItalic.ttf +0 -0
- package/fonts/PublicSans-ExtraLight.ttf +0 -0
- package/fonts/PublicSans-ExtraLightItalic.ttf +0 -0
- package/fonts/PublicSans-Italic.ttf +0 -0
- package/fonts/PublicSans-Light.ttf +0 -0
- package/fonts/PublicSans-LightItalic.ttf +0 -0
- package/fonts/PublicSans-Medium.ttf +0 -0
- package/fonts/PublicSans-MediumItalic.ttf +0 -0
- package/fonts/PublicSans-Regular.ttf +0 -0
- package/fonts/PublicSans-SemiBold.ttf +0 -0
- package/fonts/PublicSans-SemiBoldItalic.ttf +0 -0
- package/fonts/PublicSans-Thin.ttf +0 -0
- package/fonts/PublicSans-ThinItalic.ttf +0 -0
- package/images/icon-dot-gov.svg +1 -0
- package/images/icon-https.svg +1 -0
- package/images/icons/close-x.svg +6 -0
- package/images/icons/svg/arrow-down.svg +3 -0
- package/images/icons/svg/arrow-download.svg +1 -0
- package/images/icons/svg/arrow-right.svg +1 -0
- package/images/icons/svg/arrow-up.svg +3 -0
- package/images/icons/svg/block.svg +5 -0
- package/images/icons/svg/calendar.svg +1 -0
- package/images/icons/svg/check-circle.svg +5 -0
- package/images/icons/svg/checkmark.svg +7 -0
- package/images/icons/svg/chevron-down.svg +11 -0
- package/images/icons/svg/chevron-left.svg +12 -0
- package/images/icons/svg/chevron-right.svg +12 -0
- package/images/icons/svg/chevron-up.svg +12 -0
- package/images/icons/svg/clipboard.svg +1 -0
- package/images/icons/svg/close.svg +1 -0
- package/images/icons/svg/divide.svg +13 -0
- package/images/icons/svg/doctors-and-clinicians-preview.svg +10 -0
- package/images/icons/svg/download.svg +1 -0
- package/images/icons/svg/dropdown-arrow.svg +1 -0
- package/images/icons/svg/equals.svg +13 -0
- package/images/icons/svg/exclamation.svg +11 -0
- package/images/icons/svg/external.svg +1 -0
- package/images/icons/svg/file-download.svg +1 -0
- package/images/icons/svg/file-upload.svg +1 -0
- package/images/icons/svg/info.svg +20 -0
- package/images/icons/svg/manage-user-access.svg +8 -0
- package/images/icons/svg/multiply.svg +12 -0
- package/images/icons/svg/performance-feedback.svg +1 -0
- package/images/icons/svg/plus.svg +12 -0
- package/images/icons/svg/preview.svg +17 -0
- package/images/icons/svg/print.svg +1 -0
- package/images/icons/svg/registration.svg +8 -0
- package/images/icons/svg/reporting.svg +17 -0
- package/images/icons/svg/save-disk.svg +5 -0
- package/images/icons/svg/search.svg +1 -0
- package/images/icons/svg/subtract.svg +15 -0
- package/images/icons/svg/targeted-review.svg +15 -0
- package/images/icons/svg/tooltip-question.svg +1 -0
- package/images/icons/svg/trash.svg +1 -0
- package/images/icons/svg/upload.svg +1 -0
- package/images/us_flag_small.png +0 -0
- package/index.js +5 -0
- package/jest.config.js +138 -134
- package/lib/Chevron.jsx +32 -0
- package/lib/SvgComponents.jsx +197 -49
- package/package.json +62 -77
- package/session/logout.js +35 -2
- package/styles/_global.scss +63 -62
- package/styles/_main.scss +6 -0
- package/styles/_qpp-style.scss +0 -3
- package/styles/components/_accordion.scss +249 -246
- package/styles/components/_autocomplete.scss +0 -3
- package/styles/components/_modals.scss +9 -9
- package/styles/components/_spinner.scss +0 -2
- package/styles/components/_tables.scss +77 -67
- package/styles/components/_text.scss +102 -102
- package/styles/components/_variables.scss +12 -12
- package/styles/qppds/base/_backgrounds.scss +7 -0
- package/styles/qppds/base/_fonts.scss +24 -0
- package/styles/qppds/base/_icon.scss +31 -0
- package/styles/qppds/base/_layout.scss +5 -0
- package/styles/qppds/base/_typography.scss +78 -44
- package/styles/qppds/base/index.scss +4 -5
- package/styles/qppds/components/_alert.scss +101 -0
- package/styles/qppds/components/_breadcrumbs.scss +42 -6
- package/styles/qppds/components/_button.scss +129 -11
- package/styles/qppds/components/_card.scss +175 -0
- package/styles/qppds/components/_checkbox.scss +199 -0
- package/styles/qppds/components/_circular-loader.scss +47 -0
- package/styles/qppds/components/_details.scss +90 -0
- package/styles/qppds/components/_dropdown-menu.scss +125 -0
- package/styles/qppds/components/_dropdown.scss +7 -1
- package/styles/qppds/components/_footer.scss +606 -0
- package/styles/qppds/components/_gov-banner.scss +344 -0
- package/styles/qppds/components/_header.scss +913 -0
- package/styles/qppds/components/_link.scss +52 -0
- package/styles/qppds/components/_modal.scss +118 -0
- package/styles/qppds/components/_page-header.scss +65 -2
- package/styles/qppds/components/_pagination.scss +227 -0
- package/styles/qppds/components/_process-list.scss +104 -0
- package/styles/qppds/components/_radio-button.scss +184 -0
- package/styles/qppds/components/_search.scss +118 -0
- package/styles/{components → qppds/components}/_sidebar.scss +2 -0
- package/styles/qppds/components/_step-indicator.scss +190 -0
- package/styles/qppds/components/_table.scss +157 -0
- package/styles/qppds/components/_tabs.scss +197 -0
- package/styles/qppds/components/_text-input.scss +60 -0
- package/styles/qppds/components/index.scss +20 -0
- package/styles/{components → qppds/components}/sidebar/_links.scss +48 -1
- package/styles/qppds/components/sidebar/_select-role-dropdown.scss +21 -0
- package/styles/qppds/components/sidebar/_sidebar-animation.scss +125 -0
- package/styles/qppds/components/sidebar/_sidebar.scss +146 -0
- package/styles/{components → qppds/components}/sidebar/project-specific/_wi.scss +1 -37
- package/styles/qppds/settings/_functions.scss +3 -1
- package/styles/qppds/settings/mixins/_borders.scss +6 -0
- package/styles/qppds/settings/mixins/_focus.scss +28 -0
- package/styles/qppds/settings/mixins/_icons.scss +39 -4
- package/styles/qppds/settings/mixins/_index.scss +4 -0
- package/styles/qppds/settings/mixins/_layout.scss +46 -7
- package/styles/qppds/settings/mixins/_table.scss +91 -0
- package/styles/qppds/settings/mixins/_type.scss +89 -0
- package/styles/qppds/settings/variables/_color.scss +47 -1
- package/styles/qppds/settings/variables/_index.scss +2 -1
- package/styles/qppds/settings/variables/_layout.scss +34 -9
- package/styles/qppds/settings/variables/_type.scss +41 -0
- package/styles/qppds/settings/variables/_z-index.scss +8 -0
- package/styles/qppds/utilities/_background-color.scss +4 -0
- package/styles/qppds/utilities/_color.scss +28 -0
- package/styles/qppds/utilities/{_display-visability.scss → _display-visibility.scss} +8 -0
- package/styles/qppds/utilities/_flexbox.scss +113 -0
- package/styles/qppds/utilities/_font-family.scss +4 -0
- package/styles/qppds/utilities/_gap.scss +38 -0
- package/styles/qppds/utilities/_height.scss +79 -0
- package/styles/qppds/utilities/_list-style.scss +18 -0
- package/styles/qppds/utilities/_position.scss +24 -0
- package/styles/qppds/utilities/_text-align.scss +40 -0
- package/styles/qppds/utilities/_text-transform.scss +7 -0
- package/styles/qppds/utilities/_truncate.scss +5 -5
- package/styles/qppds/utilities/_vertical-align.scss +72 -0
- package/styles/qppds/utilities/_width.scss +38 -1
- package/styles/qppds/utilities/index.scss +8 -2
- package/styles/third-party/legacy-bootstrap/_dropdowns.scss +0 -1
- package/svgo.config.js +14 -0
- package/test/components/Accordion.test.js +4 -13
- package/test/components/ErrorUI.test.js +10 -46
- package/test/components/FooterUI.test.js +0 -30
- package/test/components/HeaderUI.test.js +33 -15
- package/test/components/Infotip.test.js +18 -12
- package/test/components/SessionDialogUI.test.js +55 -70
- package/test/components/SideNavUI.test.js +6 -13
- package/test-setup.js +1 -3
- package/webpack.config.js +29 -39
- package/webpack.config.react.js +7 -18
- package/.storybook/.babelrc +0 -4
- package/.storybook/main.js +0 -89
- package/.storybook/preview-head.html +0 -9
- package/.storybook/preview.js +0 -16
- package/components/Accordion/Accordion.stories.js +0 -20
- package/components/Breadcrumb/Breadcrumb.js +0 -58
- package/components/Breadcrumb/Breadcrumb.stories.js +0 -62
- package/components/Breadcrumb/LegacyBreadcrumb.js +0 -46
- package/components/Footer/Footer.stories.js +0 -22
- package/components/Footer/LegacyFooterUI.jsx +0 -194
- package/components/Header/Header.stories.js +0 -32
- package/components/InfoModal/InfoModal.stories.js +0 -98
- package/components/InfoModal/index.jsx +0 -104
- package/components/Infotip/Infotip.stories.js +0 -58
- package/components/NotificationBanner/NotificationBanner.stories.js +0 -24
- package/components/NotificationBanner/NotificationBannerUI.jsx +0 -282
- package/components/SideNav/SideNav.stories.js +0 -320
- package/components/Spinner/index.js +0 -9
- package/components/Tabs/TabsUI.jsx +0 -118
- package/components/Tabs/tabs.js +0 -36
- package/components/Tooltip/Tooltip.jsx +0 -88
- package/components/Tooltip/Tooltip.stories.js +0 -90
- package/components/Tooltip/index.js +0 -3
- package/components/Tooltip/position.js +0 -68
- package/components/UnwrappedSpinner/index.js +0 -8
- package/components/UnwrappedTabs/TabPanelUI.jsx +0 -16
- package/components/UnwrappedTabs/TabsUI.jsx +0 -82
- package/coverage/lcov-report/Accordion/index.html +0 -111
- package/coverage/lcov-report/Error/index.html +0 -126
- package/coverage/lcov-report/ScoreChart.jsx.html +0 -1025
- package/coverage/lcov-report/SideNav/Chart/ScoreChart.jsx.html +0 -1025
- package/coverage/lcov-report/components/NotificationBanner/NotificationBannerUI.jsx.html +0 -1010
- package/coverage/lcov-report/components/SideNav/AnimationGroup/AnimationGroup.jsx.html +0 -131
- package/coverage/lcov-report/components/SideNav/Chart/index.js.html +0 -89
- package/coverage/lcov-report/components/SideNav/Content/LevelOneContent.jsx.html +0 -1007
- package/coverage/lcov-report/components/SideNav/Content/index.html +0 -141
- package/coverage/lcov-report/components/SideNav/Content/index.js.html +0 -92
- package/coverage/lcov-report/components/SideNav/Details/index.js.html +0 -92
- package/coverage/lcov-report/components/SideNav/Links/index.html +0 -201
- package/coverage/lcov-report/components/SideNav/UI/SideNavUI.jsx.html +0 -1298
- package/coverage/lcov-report/components/SideNav/UI/index.html +0 -126
- package/coverage/lcov-report/components/SideNav/UI/index.js.html +0 -89
- package/coverage/lcov-report/lib/svg-definitions.svg.html +0 -1319
- package/coverage/lcov-report/react/components/NotificationBanner/NotificationBannerUI.jsx.html +0 -926
- package/styles/components/_footer.scss +0 -593
- package/styles/components/_header.scss +0 -526
- package/styles/components/sidebar/_sidebar-animation.scss +0 -85
- package/styles/components/sidebar/_sidebar.scss +0 -141
- package/test/components/Tooltip.test.js +0 -147
- package/test/components/__snapshots__/Accordion.test.js.snap +0 -11439
- /package/styles/{components → qppds/components}/sidebar/_animations.scss +0 -0
- /package/styles/{components → qppds/components}/sidebar/_cms.scss +0 -0
- /package/styles/{components → qppds/components}/sidebar/_details.scss +0 -0
- /package/styles/{components → qppds/components}/sidebar/_sidebar-tooltip.scss +0 -0
|
@@ -54,6 +54,12 @@
|
|
|
54
54
|
<p class="quiet">
|
|
55
55
|
Press <em>n</em> or <em>j</em> to go to the next uncovered block, <em>b</em>, <em>p</em> or <em>k</em> for the previous block.
|
|
56
56
|
</p>
|
|
57
|
+
<template id="filterTemplate">
|
|
58
|
+
<div class="quiet">
|
|
59
|
+
Filter:
|
|
60
|
+
<input oninput="onInput()" type="search" id="fileSearch">
|
|
61
|
+
</div>
|
|
62
|
+
</template>
|
|
57
63
|
</div>
|
|
58
64
|
<div class='status-line high'></div>
|
|
59
65
|
<pre><table class="coverage">
|
|
@@ -182,583 +188,7 @@
|
|
|
182
188
|
<a name='L123'></a><a href='#L123'>123</a>
|
|
183
189
|
<a name='L124'></a><a href='#L124'>124</a>
|
|
184
190
|
<a name='L125'></a><a href='#L125'>125</a>
|
|
185
|
-
<a name='L126'></a><a href='#L126'>126</a>
|
|
186
|
-
<a name='L127'></a><a href='#L127'>127</a>
|
|
187
|
-
<a name='L128'></a><a href='#L128'>128</a>
|
|
188
|
-
<a name='L129'></a><a href='#L129'>129</a>
|
|
189
|
-
<a name='L130'></a><a href='#L130'>130</a>
|
|
190
|
-
<a name='L131'></a><a href='#L131'>131</a>
|
|
191
|
-
<a name='L132'></a><a href='#L132'>132</a>
|
|
192
|
-
<a name='L133'></a><a href='#L133'>133</a>
|
|
193
|
-
<a name='L134'></a><a href='#L134'>134</a>
|
|
194
|
-
<a name='L135'></a><a href='#L135'>135</a>
|
|
195
|
-
<a name='L136'></a><a href='#L136'>136</a>
|
|
196
|
-
<a name='L137'></a><a href='#L137'>137</a>
|
|
197
|
-
<a name='L138'></a><a href='#L138'>138</a>
|
|
198
|
-
<a name='L139'></a><a href='#L139'>139</a>
|
|
199
|
-
<a name='L140'></a><a href='#L140'>140</a>
|
|
200
|
-
<a name='L141'></a><a href='#L141'>141</a>
|
|
201
|
-
<a name='L142'></a><a href='#L142'>142</a>
|
|
202
|
-
<a name='L143'></a><a href='#L143'>143</a>
|
|
203
|
-
<a name='L144'></a><a href='#L144'>144</a>
|
|
204
|
-
<a name='L145'></a><a href='#L145'>145</a>
|
|
205
|
-
<a name='L146'></a><a href='#L146'>146</a>
|
|
206
|
-
<a name='L147'></a><a href='#L147'>147</a>
|
|
207
|
-
<a name='L148'></a><a href='#L148'>148</a>
|
|
208
|
-
<a name='L149'></a><a href='#L149'>149</a>
|
|
209
|
-
<a name='L150'></a><a href='#L150'>150</a>
|
|
210
|
-
<a name='L151'></a><a href='#L151'>151</a>
|
|
211
|
-
<a name='L152'></a><a href='#L152'>152</a>
|
|
212
|
-
<a name='L153'></a><a href='#L153'>153</a>
|
|
213
|
-
<a name='L154'></a><a href='#L154'>154</a>
|
|
214
|
-
<a name='L155'></a><a href='#L155'>155</a>
|
|
215
|
-
<a name='L156'></a><a href='#L156'>156</a>
|
|
216
|
-
<a name='L157'></a><a href='#L157'>157</a>
|
|
217
|
-
<a name='L158'></a><a href='#L158'>158</a>
|
|
218
|
-
<a name='L159'></a><a href='#L159'>159</a>
|
|
219
|
-
<a name='L160'></a><a href='#L160'>160</a>
|
|
220
|
-
<a name='L161'></a><a href='#L161'>161</a>
|
|
221
|
-
<a name='L162'></a><a href='#L162'>162</a>
|
|
222
|
-
<a name='L163'></a><a href='#L163'>163</a>
|
|
223
|
-
<a name='L164'></a><a href='#L164'>164</a>
|
|
224
|
-
<a name='L165'></a><a href='#L165'>165</a>
|
|
225
|
-
<a name='L166'></a><a href='#L166'>166</a>
|
|
226
|
-
<a name='L167'></a><a href='#L167'>167</a>
|
|
227
|
-
<a name='L168'></a><a href='#L168'>168</a>
|
|
228
|
-
<a name='L169'></a><a href='#L169'>169</a>
|
|
229
|
-
<a name='L170'></a><a href='#L170'>170</a>
|
|
230
|
-
<a name='L171'></a><a href='#L171'>171</a>
|
|
231
|
-
<a name='L172'></a><a href='#L172'>172</a>
|
|
232
|
-
<a name='L173'></a><a href='#L173'>173</a>
|
|
233
|
-
<a name='L174'></a><a href='#L174'>174</a>
|
|
234
|
-
<a name='L175'></a><a href='#L175'>175</a>
|
|
235
|
-
<a name='L176'></a><a href='#L176'>176</a>
|
|
236
|
-
<a name='L177'></a><a href='#L177'>177</a>
|
|
237
|
-
<a name='L178'></a><a href='#L178'>178</a>
|
|
238
|
-
<a name='L179'></a><a href='#L179'>179</a>
|
|
239
|
-
<a name='L180'></a><a href='#L180'>180</a>
|
|
240
|
-
<a name='L181'></a><a href='#L181'>181</a>
|
|
241
|
-
<a name='L182'></a><a href='#L182'>182</a>
|
|
242
|
-
<a name='L183'></a><a href='#L183'>183</a>
|
|
243
|
-
<a name='L184'></a><a href='#L184'>184</a>
|
|
244
|
-
<a name='L185'></a><a href='#L185'>185</a>
|
|
245
|
-
<a name='L186'></a><a href='#L186'>186</a>
|
|
246
|
-
<a name='L187'></a><a href='#L187'>187</a>
|
|
247
|
-
<a name='L188'></a><a href='#L188'>188</a>
|
|
248
|
-
<a name='L189'></a><a href='#L189'>189</a>
|
|
249
|
-
<a name='L190'></a><a href='#L190'>190</a>
|
|
250
|
-
<a name='L191'></a><a href='#L191'>191</a>
|
|
251
|
-
<a name='L192'></a><a href='#L192'>192</a>
|
|
252
|
-
<a name='L193'></a><a href='#L193'>193</a>
|
|
253
|
-
<a name='L194'></a><a href='#L194'>194</a>
|
|
254
|
-
<a name='L195'></a><a href='#L195'>195</a>
|
|
255
|
-
<a name='L196'></a><a href='#L196'>196</a>
|
|
256
|
-
<a name='L197'></a><a href='#L197'>197</a>
|
|
257
|
-
<a name='L198'></a><a href='#L198'>198</a>
|
|
258
|
-
<a name='L199'></a><a href='#L199'>199</a>
|
|
259
|
-
<a name='L200'></a><a href='#L200'>200</a>
|
|
260
|
-
<a name='L201'></a><a href='#L201'>201</a>
|
|
261
|
-
<a name='L202'></a><a href='#L202'>202</a>
|
|
262
|
-
<a name='L203'></a><a href='#L203'>203</a>
|
|
263
|
-
<a name='L204'></a><a href='#L204'>204</a>
|
|
264
|
-
<a name='L205'></a><a href='#L205'>205</a>
|
|
265
|
-
<a name='L206'></a><a href='#L206'>206</a>
|
|
266
|
-
<a name='L207'></a><a href='#L207'>207</a>
|
|
267
|
-
<a name='L208'></a><a href='#L208'>208</a>
|
|
268
|
-
<a name='L209'></a><a href='#L209'>209</a>
|
|
269
|
-
<a name='L210'></a><a href='#L210'>210</a>
|
|
270
|
-
<a name='L211'></a><a href='#L211'>211</a>
|
|
271
|
-
<a name='L212'></a><a href='#L212'>212</a>
|
|
272
|
-
<a name='L213'></a><a href='#L213'>213</a>
|
|
273
|
-
<a name='L214'></a><a href='#L214'>214</a>
|
|
274
|
-
<a name='L215'></a><a href='#L215'>215</a>
|
|
275
|
-
<a name='L216'></a><a href='#L216'>216</a>
|
|
276
|
-
<a name='L217'></a><a href='#L217'>217</a>
|
|
277
|
-
<a name='L218'></a><a href='#L218'>218</a>
|
|
278
|
-
<a name='L219'></a><a href='#L219'>219</a>
|
|
279
|
-
<a name='L220'></a><a href='#L220'>220</a>
|
|
280
|
-
<a name='L221'></a><a href='#L221'>221</a>
|
|
281
|
-
<a name='L222'></a><a href='#L222'>222</a>
|
|
282
|
-
<a name='L223'></a><a href='#L223'>223</a>
|
|
283
|
-
<a name='L224'></a><a href='#L224'>224</a>
|
|
284
|
-
<a name='L225'></a><a href='#L225'>225</a>
|
|
285
|
-
<a name='L226'></a><a href='#L226'>226</a>
|
|
286
|
-
<a name='L227'></a><a href='#L227'>227</a>
|
|
287
|
-
<a name='L228'></a><a href='#L228'>228</a>
|
|
288
|
-
<a name='L229'></a><a href='#L229'>229</a>
|
|
289
|
-
<a name='L230'></a><a href='#L230'>230</a>
|
|
290
|
-
<a name='L231'></a><a href='#L231'>231</a>
|
|
291
|
-
<a name='L232'></a><a href='#L232'>232</a>
|
|
292
|
-
<a name='L233'></a><a href='#L233'>233</a>
|
|
293
|
-
<a name='L234'></a><a href='#L234'>234</a>
|
|
294
|
-
<a name='L235'></a><a href='#L235'>235</a>
|
|
295
|
-
<a name='L236'></a><a href='#L236'>236</a>
|
|
296
|
-
<a name='L237'></a><a href='#L237'>237</a>
|
|
297
|
-
<a name='L238'></a><a href='#L238'>238</a>
|
|
298
|
-
<a name='L239'></a><a href='#L239'>239</a>
|
|
299
|
-
<a name='L240'></a><a href='#L240'>240</a>
|
|
300
|
-
<a name='L241'></a><a href='#L241'>241</a>
|
|
301
|
-
<a name='L242'></a><a href='#L242'>242</a>
|
|
302
|
-
<a name='L243'></a><a href='#L243'>243</a>
|
|
303
|
-
<a name='L244'></a><a href='#L244'>244</a>
|
|
304
|
-
<a name='L245'></a><a href='#L245'>245</a>
|
|
305
|
-
<a name='L246'></a><a href='#L246'>246</a>
|
|
306
|
-
<a name='L247'></a><a href='#L247'>247</a>
|
|
307
|
-
<a name='L248'></a><a href='#L248'>248</a>
|
|
308
|
-
<a name='L249'></a><a href='#L249'>249</a>
|
|
309
|
-
<a name='L250'></a><a href='#L250'>250</a>
|
|
310
|
-
<a name='L251'></a><a href='#L251'>251</a>
|
|
311
|
-
<a name='L252'></a><a href='#L252'>252</a>
|
|
312
|
-
<a name='L253'></a><a href='#L253'>253</a>
|
|
313
|
-
<a name='L254'></a><a href='#L254'>254</a>
|
|
314
|
-
<a name='L255'></a><a href='#L255'>255</a>
|
|
315
|
-
<a name='L256'></a><a href='#L256'>256</a>
|
|
316
|
-
<a name='L257'></a><a href='#L257'>257</a>
|
|
317
|
-
<a name='L258'></a><a href='#L258'>258</a>
|
|
318
|
-
<a name='L259'></a><a href='#L259'>259</a>
|
|
319
|
-
<a name='L260'></a><a href='#L260'>260</a>
|
|
320
|
-
<a name='L261'></a><a href='#L261'>261</a>
|
|
321
|
-
<a name='L262'></a><a href='#L262'>262</a>
|
|
322
|
-
<a name='L263'></a><a href='#L263'>263</a>
|
|
323
|
-
<a name='L264'></a><a href='#L264'>264</a>
|
|
324
|
-
<a name='L265'></a><a href='#L265'>265</a>
|
|
325
|
-
<a name='L266'></a><a href='#L266'>266</a>
|
|
326
|
-
<a name='L267'></a><a href='#L267'>267</a>
|
|
327
|
-
<a name='L268'></a><a href='#L268'>268</a>
|
|
328
|
-
<a name='L269'></a><a href='#L269'>269</a>
|
|
329
|
-
<a name='L270'></a><a href='#L270'>270</a>
|
|
330
|
-
<a name='L271'></a><a href='#L271'>271</a>
|
|
331
|
-
<a name='L272'></a><a href='#L272'>272</a>
|
|
332
|
-
<a name='L273'></a><a href='#L273'>273</a>
|
|
333
|
-
<a name='L274'></a><a href='#L274'>274</a>
|
|
334
|
-
<a name='L275'></a><a href='#L275'>275</a>
|
|
335
|
-
<a name='L276'></a><a href='#L276'>276</a>
|
|
336
|
-
<a name='L277'></a><a href='#L277'>277</a>
|
|
337
|
-
<a name='L278'></a><a href='#L278'>278</a>
|
|
338
|
-
<a name='L279'></a><a href='#L279'>279</a>
|
|
339
|
-
<a name='L280'></a><a href='#L280'>280</a>
|
|
340
|
-
<a name='L281'></a><a href='#L281'>281</a>
|
|
341
|
-
<a name='L282'></a><a href='#L282'>282</a>
|
|
342
|
-
<a name='L283'></a><a href='#L283'>283</a>
|
|
343
|
-
<a name='L284'></a><a href='#L284'>284</a>
|
|
344
|
-
<a name='L285'></a><a href='#L285'>285</a>
|
|
345
|
-
<a name='L286'></a><a href='#L286'>286</a>
|
|
346
|
-
<a name='L287'></a><a href='#L287'>287</a>
|
|
347
|
-
<a name='L288'></a><a href='#L288'>288</a>
|
|
348
|
-
<a name='L289'></a><a href='#L289'>289</a>
|
|
349
|
-
<a name='L290'></a><a href='#L290'>290</a>
|
|
350
|
-
<a name='L291'></a><a href='#L291'>291</a>
|
|
351
|
-
<a name='L292'></a><a href='#L292'>292</a>
|
|
352
|
-
<a name='L293'></a><a href='#L293'>293</a>
|
|
353
|
-
<a name='L294'></a><a href='#L294'>294</a>
|
|
354
|
-
<a name='L295'></a><a href='#L295'>295</a>
|
|
355
|
-
<a name='L296'></a><a href='#L296'>296</a>
|
|
356
|
-
<a name='L297'></a><a href='#L297'>297</a>
|
|
357
|
-
<a name='L298'></a><a href='#L298'>298</a>
|
|
358
|
-
<a name='L299'></a><a href='#L299'>299</a>
|
|
359
|
-
<a name='L300'></a><a href='#L300'>300</a>
|
|
360
|
-
<a name='L301'></a><a href='#L301'>301</a>
|
|
361
|
-
<a name='L302'></a><a href='#L302'>302</a>
|
|
362
|
-
<a name='L303'></a><a href='#L303'>303</a>
|
|
363
|
-
<a name='L304'></a><a href='#L304'>304</a>
|
|
364
|
-
<a name='L305'></a><a href='#L305'>305</a>
|
|
365
|
-
<a name='L306'></a><a href='#L306'>306</a>
|
|
366
|
-
<a name='L307'></a><a href='#L307'>307</a>
|
|
367
|
-
<a name='L308'></a><a href='#L308'>308</a>
|
|
368
|
-
<a name='L309'></a><a href='#L309'>309</a>
|
|
369
|
-
<a name='L310'></a><a href='#L310'>310</a>
|
|
370
|
-
<a name='L311'></a><a href='#L311'>311</a>
|
|
371
|
-
<a name='L312'></a><a href='#L312'>312</a>
|
|
372
|
-
<a name='L313'></a><a href='#L313'>313</a>
|
|
373
|
-
<a name='L314'></a><a href='#L314'>314</a>
|
|
374
|
-
<a name='L315'></a><a href='#L315'>315</a>
|
|
375
|
-
<a name='L316'></a><a href='#L316'>316</a>
|
|
376
|
-
<a name='L317'></a><a href='#L317'>317</a>
|
|
377
|
-
<a name='L318'></a><a href='#L318'>318</a>
|
|
378
|
-
<a name='L319'></a><a href='#L319'>319</a>
|
|
379
|
-
<a name='L320'></a><a href='#L320'>320</a>
|
|
380
|
-
<a name='L321'></a><a href='#L321'>321</a>
|
|
381
|
-
<a name='L322'></a><a href='#L322'>322</a>
|
|
382
|
-
<a name='L323'></a><a href='#L323'>323</a>
|
|
383
|
-
<a name='L324'></a><a href='#L324'>324</a>
|
|
384
|
-
<a name='L325'></a><a href='#L325'>325</a>
|
|
385
|
-
<a name='L326'></a><a href='#L326'>326</a>
|
|
386
|
-
<a name='L327'></a><a href='#L327'>327</a>
|
|
387
|
-
<a name='L328'></a><a href='#L328'>328</a>
|
|
388
|
-
<a name='L329'></a><a href='#L329'>329</a>
|
|
389
|
-
<a name='L330'></a><a href='#L330'>330</a>
|
|
390
|
-
<a name='L331'></a><a href='#L331'>331</a>
|
|
391
|
-
<a name='L332'></a><a href='#L332'>332</a>
|
|
392
|
-
<a name='L333'></a><a href='#L333'>333</a>
|
|
393
|
-
<a name='L334'></a><a href='#L334'>334</a>
|
|
394
|
-
<a name='L335'></a><a href='#L335'>335</a>
|
|
395
|
-
<a name='L336'></a><a href='#L336'>336</a>
|
|
396
|
-
<a name='L337'></a><a href='#L337'>337</a>
|
|
397
|
-
<a name='L338'></a><a href='#L338'>338</a>
|
|
398
|
-
<a name='L339'></a><a href='#L339'>339</a>
|
|
399
|
-
<a name='L340'></a><a href='#L340'>340</a>
|
|
400
|
-
<a name='L341'></a><a href='#L341'>341</a>
|
|
401
|
-
<a name='L342'></a><a href='#L342'>342</a>
|
|
402
|
-
<a name='L343'></a><a href='#L343'>343</a>
|
|
403
|
-
<a name='L344'></a><a href='#L344'>344</a>
|
|
404
|
-
<a name='L345'></a><a href='#L345'>345</a>
|
|
405
|
-
<a name='L346'></a><a href='#L346'>346</a>
|
|
406
|
-
<a name='L347'></a><a href='#L347'>347</a>
|
|
407
|
-
<a name='L348'></a><a href='#L348'>348</a>
|
|
408
|
-
<a name='L349'></a><a href='#L349'>349</a>
|
|
409
|
-
<a name='L350'></a><a href='#L350'>350</a>
|
|
410
|
-
<a name='L351'></a><a href='#L351'>351</a>
|
|
411
|
-
<a name='L352'></a><a href='#L352'>352</a>
|
|
412
|
-
<a name='L353'></a><a href='#L353'>353</a>
|
|
413
|
-
<a name='L354'></a><a href='#L354'>354</a>
|
|
414
|
-
<a name='L355'></a><a href='#L355'>355</a>
|
|
415
|
-
<a name='L356'></a><a href='#L356'>356</a>
|
|
416
|
-
<a name='L357'></a><a href='#L357'>357</a>
|
|
417
|
-
<a name='L358'></a><a href='#L358'>358</a>
|
|
418
|
-
<a name='L359'></a><a href='#L359'>359</a>
|
|
419
|
-
<a name='L360'></a><a href='#L360'>360</a>
|
|
420
|
-
<a name='L361'></a><a href='#L361'>361</a>
|
|
421
|
-
<a name='L362'></a><a href='#L362'>362</a>
|
|
422
|
-
<a name='L363'></a><a href='#L363'>363</a>
|
|
423
|
-
<a name='L364'></a><a href='#L364'>364</a>
|
|
424
|
-
<a name='L365'></a><a href='#L365'>365</a>
|
|
425
|
-
<a name='L366'></a><a href='#L366'>366</a>
|
|
426
|
-
<a name='L367'></a><a href='#L367'>367</a>
|
|
427
|
-
<a name='L368'></a><a href='#L368'>368</a>
|
|
428
|
-
<a name='L369'></a><a href='#L369'>369</a>
|
|
429
|
-
<a name='L370'></a><a href='#L370'>370</a>
|
|
430
|
-
<a name='L371'></a><a href='#L371'>371</a>
|
|
431
|
-
<a name='L372'></a><a href='#L372'>372</a>
|
|
432
|
-
<a name='L373'></a><a href='#L373'>373</a>
|
|
433
|
-
<a name='L374'></a><a href='#L374'>374</a>
|
|
434
|
-
<a name='L375'></a><a href='#L375'>375</a>
|
|
435
|
-
<a name='L376'></a><a href='#L376'>376</a>
|
|
436
|
-
<a name='L377'></a><a href='#L377'>377</a>
|
|
437
|
-
<a name='L378'></a><a href='#L378'>378</a>
|
|
438
|
-
<a name='L379'></a><a href='#L379'>379</a>
|
|
439
|
-
<a name='L380'></a><a href='#L380'>380</a>
|
|
440
|
-
<a name='L381'></a><a href='#L381'>381</a>
|
|
441
|
-
<a name='L382'></a><a href='#L382'>382</a>
|
|
442
|
-
<a name='L383'></a><a href='#L383'>383</a>
|
|
443
|
-
<a name='L384'></a><a href='#L384'>384</a>
|
|
444
|
-
<a name='L385'></a><a href='#L385'>385</a>
|
|
445
|
-
<a name='L386'></a><a href='#L386'>386</a>
|
|
446
|
-
<a name='L387'></a><a href='#L387'>387</a>
|
|
447
|
-
<a name='L388'></a><a href='#L388'>388</a>
|
|
448
|
-
<a name='L389'></a><a href='#L389'>389</a>
|
|
449
|
-
<a name='L390'></a><a href='#L390'>390</a>
|
|
450
|
-
<a name='L391'></a><a href='#L391'>391</a>
|
|
451
|
-
<a name='L392'></a><a href='#L392'>392</a>
|
|
452
|
-
<a name='L393'></a><a href='#L393'>393</a>
|
|
453
|
-
<a name='L394'></a><a href='#L394'>394</a>
|
|
454
|
-
<a name='L395'></a><a href='#L395'>395</a>
|
|
455
|
-
<a name='L396'></a><a href='#L396'>396</a>
|
|
456
|
-
<a name='L397'></a><a href='#L397'>397</a>
|
|
457
|
-
<a name='L398'></a><a href='#L398'>398</a>
|
|
458
|
-
<a name='L399'></a><a href='#L399'>399</a>
|
|
459
|
-
<a name='L400'></a><a href='#L400'>400</a>
|
|
460
|
-
<a name='L401'></a><a href='#L401'>401</a>
|
|
461
|
-
<a name='L402'></a><a href='#L402'>402</a>
|
|
462
|
-
<a name='L403'></a><a href='#L403'>403</a>
|
|
463
|
-
<a name='L404'></a><a href='#L404'>404</a>
|
|
464
|
-
<a name='L405'></a><a href='#L405'>405</a>
|
|
465
|
-
<a name='L406'></a><a href='#L406'>406</a>
|
|
466
|
-
<a name='L407'></a><a href='#L407'>407</a>
|
|
467
|
-
<a name='L408'></a><a href='#L408'>408</a>
|
|
468
|
-
<a name='L409'></a><a href='#L409'>409</a>
|
|
469
|
-
<a name='L410'></a><a href='#L410'>410</a>
|
|
470
|
-
<a name='L411'></a><a href='#L411'>411</a>
|
|
471
|
-
<a name='L412'></a><a href='#L412'>412</a>
|
|
472
|
-
<a name='L413'></a><a href='#L413'>413</a>
|
|
473
|
-
<a name='L414'></a><a href='#L414'>414</a></td><td class="line-coverage quiet"><span class="cline-any cline-yes">4x</span>
|
|
474
|
-
<span class="cline-any cline-neutral"> </span>
|
|
475
|
-
<span class="cline-any cline-neutral"> </span>
|
|
476
|
-
<span class="cline-any cline-neutral"> </span>
|
|
477
|
-
<span class="cline-any cline-neutral"> </span>
|
|
478
|
-
<span class="cline-any cline-neutral"> </span>
|
|
479
|
-
<span class="cline-any cline-neutral"> </span>
|
|
480
|
-
<span class="cline-any cline-neutral"> </span>
|
|
481
|
-
<span class="cline-any cline-neutral"> </span>
|
|
482
|
-
<span class="cline-any cline-neutral"> </span>
|
|
483
|
-
<span class="cline-any cline-neutral"> </span>
|
|
484
|
-
<span class="cline-any cline-neutral"> </span>
|
|
485
|
-
<span class="cline-any cline-neutral"> </span>
|
|
486
|
-
<span class="cline-any cline-neutral"> </span>
|
|
487
|
-
<span class="cline-any cline-neutral"> </span>
|
|
488
|
-
<span class="cline-any cline-neutral"> </span>
|
|
489
|
-
<span class="cline-any cline-neutral"> </span>
|
|
490
|
-
<span class="cline-any cline-neutral"> </span>
|
|
491
|
-
<span class="cline-any cline-neutral"> </span>
|
|
492
|
-
<span class="cline-any cline-neutral"> </span>
|
|
493
|
-
<span class="cline-any cline-neutral"> </span>
|
|
494
|
-
<span class="cline-any cline-neutral"> </span>
|
|
495
|
-
<span class="cline-any cline-neutral"> </span>
|
|
496
|
-
<span class="cline-any cline-neutral"> </span>
|
|
497
|
-
<span class="cline-any cline-neutral"> </span>
|
|
498
|
-
<span class="cline-any cline-neutral"> </span>
|
|
499
|
-
<span class="cline-any cline-neutral"> </span>
|
|
500
|
-
<span class="cline-any cline-neutral"> </span>
|
|
501
|
-
<span class="cline-any cline-neutral"> </span>
|
|
502
|
-
<span class="cline-any cline-neutral"> </span>
|
|
503
|
-
<span class="cline-any cline-neutral"> </span>
|
|
504
|
-
<span class="cline-any cline-neutral"> </span>
|
|
505
|
-
<span class="cline-any cline-neutral"> </span>
|
|
506
|
-
<span class="cline-any cline-neutral"> </span>
|
|
507
|
-
<span class="cline-any cline-neutral"> </span>
|
|
508
|
-
<span class="cline-any cline-neutral"> </span>
|
|
509
|
-
<span class="cline-any cline-neutral"> </span>
|
|
510
|
-
<span class="cline-any cline-neutral"> </span>
|
|
511
|
-
<span class="cline-any cline-neutral"> </span>
|
|
512
|
-
<span class="cline-any cline-neutral"> </span>
|
|
513
|
-
<span class="cline-any cline-neutral"> </span>
|
|
514
|
-
<span class="cline-any cline-neutral"> </span>
|
|
515
|
-
<span class="cline-any cline-neutral"> </span>
|
|
516
|
-
<span class="cline-any cline-neutral"> </span>
|
|
517
|
-
<span class="cline-any cline-neutral"> </span>
|
|
518
|
-
<span class="cline-any cline-neutral"> </span>
|
|
519
|
-
<span class="cline-any cline-neutral"> </span>
|
|
520
|
-
<span class="cline-any cline-neutral"> </span>
|
|
521
|
-
<span class="cline-any cline-neutral"> </span>
|
|
522
|
-
<span class="cline-any cline-neutral"> </span>
|
|
523
|
-
<span class="cline-any cline-neutral"> </span>
|
|
524
|
-
<span class="cline-any cline-neutral"> </span>
|
|
525
|
-
<span class="cline-any cline-neutral"> </span>
|
|
526
|
-
<span class="cline-any cline-neutral"> </span>
|
|
527
|
-
<span class="cline-any cline-neutral"> </span>
|
|
528
|
-
<span class="cline-any cline-neutral"> </span>
|
|
529
|
-
<span class="cline-any cline-neutral"> </span>
|
|
530
|
-
<span class="cline-any cline-neutral"> </span>
|
|
531
|
-
<span class="cline-any cline-neutral"> </span>
|
|
532
|
-
<span class="cline-any cline-neutral"> </span>
|
|
533
|
-
<span class="cline-any cline-neutral"> </span>
|
|
534
|
-
<span class="cline-any cline-neutral"> </span>
|
|
535
|
-
<span class="cline-any cline-neutral"> </span>
|
|
536
|
-
<span class="cline-any cline-neutral"> </span>
|
|
537
|
-
<span class="cline-any cline-neutral"> </span>
|
|
538
|
-
<span class="cline-any cline-neutral"> </span>
|
|
539
|
-
<span class="cline-any cline-neutral"> </span>
|
|
540
|
-
<span class="cline-any cline-neutral"> </span>
|
|
541
|
-
<span class="cline-any cline-neutral"> </span>
|
|
542
|
-
<span class="cline-any cline-neutral"> </span>
|
|
543
|
-
<span class="cline-any cline-neutral"> </span>
|
|
544
|
-
<span class="cline-any cline-neutral"> </span>
|
|
545
|
-
<span class="cline-any cline-neutral"> </span>
|
|
546
|
-
<span class="cline-any cline-neutral"> </span>
|
|
547
|
-
<span class="cline-any cline-neutral"> </span>
|
|
548
|
-
<span class="cline-any cline-neutral"> </span>
|
|
549
|
-
<span class="cline-any cline-neutral"> </span>
|
|
550
|
-
<span class="cline-any cline-neutral"> </span>
|
|
551
|
-
<span class="cline-any cline-neutral"> </span>
|
|
552
|
-
<span class="cline-any cline-neutral"> </span>
|
|
553
|
-
<span class="cline-any cline-neutral"> </span>
|
|
554
|
-
<span class="cline-any cline-neutral"> </span>
|
|
555
|
-
<span class="cline-any cline-neutral"> </span>
|
|
556
|
-
<span class="cline-any cline-neutral"> </span>
|
|
557
|
-
<span class="cline-any cline-neutral"> </span>
|
|
558
|
-
<span class="cline-any cline-neutral"> </span>
|
|
559
|
-
<span class="cline-any cline-neutral"> </span>
|
|
560
|
-
<span class="cline-any cline-neutral"> </span>
|
|
561
|
-
<span class="cline-any cline-neutral"> </span>
|
|
562
|
-
<span class="cline-any cline-neutral"> </span>
|
|
563
|
-
<span class="cline-any cline-neutral"> </span>
|
|
564
|
-
<span class="cline-any cline-neutral"> </span>
|
|
565
|
-
<span class="cline-any cline-neutral"> </span>
|
|
566
|
-
<span class="cline-any cline-neutral"> </span>
|
|
567
|
-
<span class="cline-any cline-neutral"> </span>
|
|
568
|
-
<span class="cline-any cline-neutral"> </span>
|
|
569
|
-
<span class="cline-any cline-neutral"> </span>
|
|
570
|
-
<span class="cline-any cline-neutral"> </span>
|
|
571
|
-
<span class="cline-any cline-neutral"> </span>
|
|
572
|
-
<span class="cline-any cline-neutral"> </span>
|
|
573
|
-
<span class="cline-any cline-neutral"> </span>
|
|
574
|
-
<span class="cline-any cline-neutral"> </span>
|
|
575
|
-
<span class="cline-any cline-neutral"> </span>
|
|
576
|
-
<span class="cline-any cline-neutral"> </span>
|
|
577
|
-
<span class="cline-any cline-neutral"> </span>
|
|
578
|
-
<span class="cline-any cline-neutral"> </span>
|
|
579
|
-
<span class="cline-any cline-neutral"> </span>
|
|
580
|
-
<span class="cline-any cline-neutral"> </span>
|
|
581
|
-
<span class="cline-any cline-neutral"> </span>
|
|
582
|
-
<span class="cline-any cline-neutral"> </span>
|
|
583
|
-
<span class="cline-any cline-neutral"> </span>
|
|
584
|
-
<span class="cline-any cline-neutral"> </span>
|
|
585
|
-
<span class="cline-any cline-neutral"> </span>
|
|
586
|
-
<span class="cline-any cline-neutral"> </span>
|
|
587
|
-
<span class="cline-any cline-neutral"> </span>
|
|
588
|
-
<span class="cline-any cline-neutral"> </span>
|
|
589
|
-
<span class="cline-any cline-neutral"> </span>
|
|
590
|
-
<span class="cline-any cline-neutral"> </span>
|
|
591
|
-
<span class="cline-any cline-neutral"> </span>
|
|
592
|
-
<span class="cline-any cline-neutral"> </span>
|
|
593
|
-
<span class="cline-any cline-neutral"> </span>
|
|
594
|
-
<span class="cline-any cline-neutral"> </span>
|
|
595
|
-
<span class="cline-any cline-neutral"> </span>
|
|
596
|
-
<span class="cline-any cline-neutral"> </span>
|
|
597
|
-
<span class="cline-any cline-neutral"> </span>
|
|
598
|
-
<span class="cline-any cline-neutral"> </span>
|
|
599
|
-
<span class="cline-any cline-neutral"> </span>
|
|
600
|
-
<span class="cline-any cline-neutral"> </span>
|
|
601
|
-
<span class="cline-any cline-neutral"> </span>
|
|
602
|
-
<span class="cline-any cline-neutral"> </span>
|
|
603
|
-
<span class="cline-any cline-neutral"> </span>
|
|
604
|
-
<span class="cline-any cline-neutral"> </span>
|
|
605
|
-
<span class="cline-any cline-neutral"> </span>
|
|
606
|
-
<span class="cline-any cline-neutral"> </span>
|
|
607
|
-
<span class="cline-any cline-neutral"> </span>
|
|
608
|
-
<span class="cline-any cline-neutral"> </span>
|
|
609
|
-
<span class="cline-any cline-neutral"> </span>
|
|
610
|
-
<span class="cline-any cline-neutral"> </span>
|
|
611
|
-
<span class="cline-any cline-neutral"> </span>
|
|
612
|
-
<span class="cline-any cline-neutral"> </span>
|
|
613
|
-
<span class="cline-any cline-neutral"> </span>
|
|
614
|
-
<span class="cline-any cline-neutral"> </span>
|
|
615
|
-
<span class="cline-any cline-neutral"> </span>
|
|
616
|
-
<span class="cline-any cline-neutral"> </span>
|
|
617
|
-
<span class="cline-any cline-neutral"> </span>
|
|
618
|
-
<span class="cline-any cline-neutral"> </span>
|
|
619
|
-
<span class="cline-any cline-neutral"> </span>
|
|
620
|
-
<span class="cline-any cline-neutral"> </span>
|
|
621
|
-
<span class="cline-any cline-neutral"> </span>
|
|
622
|
-
<span class="cline-any cline-neutral"> </span>
|
|
623
|
-
<span class="cline-any cline-neutral"> </span>
|
|
624
|
-
<span class="cline-any cline-neutral"> </span>
|
|
625
|
-
<span class="cline-any cline-neutral"> </span>
|
|
626
|
-
<span class="cline-any cline-neutral"> </span>
|
|
627
|
-
<span class="cline-any cline-neutral"> </span>
|
|
628
|
-
<span class="cline-any cline-neutral"> </span>
|
|
629
|
-
<span class="cline-any cline-neutral"> </span>
|
|
630
|
-
<span class="cline-any cline-neutral"> </span>
|
|
631
|
-
<span class="cline-any cline-neutral"> </span>
|
|
632
|
-
<span class="cline-any cline-neutral"> </span>
|
|
633
|
-
<span class="cline-any cline-neutral"> </span>
|
|
634
|
-
<span class="cline-any cline-neutral"> </span>
|
|
635
|
-
<span class="cline-any cline-neutral"> </span>
|
|
636
|
-
<span class="cline-any cline-neutral"> </span>
|
|
637
|
-
<span class="cline-any cline-neutral"> </span>
|
|
638
|
-
<span class="cline-any cline-neutral"> </span>
|
|
639
|
-
<span class="cline-any cline-neutral"> </span>
|
|
640
|
-
<span class="cline-any cline-neutral"> </span>
|
|
641
|
-
<span class="cline-any cline-neutral"> </span>
|
|
642
|
-
<span class="cline-any cline-neutral"> </span>
|
|
643
|
-
<span class="cline-any cline-neutral"> </span>
|
|
644
|
-
<span class="cline-any cline-neutral"> </span>
|
|
645
|
-
<span class="cline-any cline-neutral"> </span>
|
|
646
|
-
<span class="cline-any cline-neutral"> </span>
|
|
647
|
-
<span class="cline-any cline-neutral"> </span>
|
|
648
|
-
<span class="cline-any cline-neutral"> </span>
|
|
649
|
-
<span class="cline-any cline-neutral"> </span>
|
|
650
|
-
<span class="cline-any cline-neutral"> </span>
|
|
651
|
-
<span class="cline-any cline-neutral"> </span>
|
|
652
|
-
<span class="cline-any cline-neutral"> </span>
|
|
653
|
-
<span class="cline-any cline-neutral"> </span>
|
|
654
|
-
<span class="cline-any cline-neutral"> </span>
|
|
655
|
-
<span class="cline-any cline-neutral"> </span>
|
|
656
|
-
<span class="cline-any cline-neutral"> </span>
|
|
657
|
-
<span class="cline-any cline-neutral"> </span>
|
|
658
|
-
<span class="cline-any cline-neutral"> </span>
|
|
659
|
-
<span class="cline-any cline-neutral"> </span>
|
|
660
|
-
<span class="cline-any cline-neutral"> </span>
|
|
661
|
-
<span class="cline-any cline-neutral"> </span>
|
|
662
|
-
<span class="cline-any cline-neutral"> </span>
|
|
663
|
-
<span class="cline-any cline-neutral"> </span>
|
|
664
|
-
<span class="cline-any cline-neutral"> </span>
|
|
665
|
-
<span class="cline-any cline-neutral"> </span>
|
|
666
|
-
<span class="cline-any cline-neutral"> </span>
|
|
667
|
-
<span class="cline-any cline-neutral"> </span>
|
|
668
|
-
<span class="cline-any cline-neutral"> </span>
|
|
669
|
-
<span class="cline-any cline-neutral"> </span>
|
|
670
|
-
<span class="cline-any cline-neutral"> </span>
|
|
671
|
-
<span class="cline-any cline-neutral"> </span>
|
|
672
|
-
<span class="cline-any cline-neutral"> </span>
|
|
673
|
-
<span class="cline-any cline-neutral"> </span>
|
|
674
|
-
<span class="cline-any cline-neutral"> </span>
|
|
675
|
-
<span class="cline-any cline-neutral"> </span>
|
|
676
|
-
<span class="cline-any cline-neutral"> </span>
|
|
677
|
-
<span class="cline-any cline-neutral"> </span>
|
|
678
|
-
<span class="cline-any cline-neutral"> </span>
|
|
679
|
-
<span class="cline-any cline-neutral"> </span>
|
|
680
|
-
<span class="cline-any cline-neutral"> </span>
|
|
681
|
-
<span class="cline-any cline-neutral"> </span>
|
|
682
|
-
<span class="cline-any cline-neutral"> </span>
|
|
683
|
-
<span class="cline-any cline-neutral"> </span>
|
|
684
|
-
<span class="cline-any cline-neutral"> </span>
|
|
685
|
-
<span class="cline-any cline-neutral"> </span>
|
|
686
|
-
<span class="cline-any cline-neutral"> </span>
|
|
687
|
-
<span class="cline-any cline-neutral"> </span>
|
|
688
|
-
<span class="cline-any cline-neutral"> </span>
|
|
689
|
-
<span class="cline-any cline-neutral"> </span>
|
|
690
|
-
<span class="cline-any cline-neutral"> </span>
|
|
691
|
-
<span class="cline-any cline-neutral"> </span>
|
|
692
|
-
<span class="cline-any cline-neutral"> </span>
|
|
693
|
-
<span class="cline-any cline-neutral"> </span>
|
|
694
|
-
<span class="cline-any cline-neutral"> </span>
|
|
695
|
-
<span class="cline-any cline-neutral"> </span>
|
|
696
|
-
<span class="cline-any cline-neutral"> </span>
|
|
697
|
-
<span class="cline-any cline-neutral"> </span>
|
|
698
|
-
<span class="cline-any cline-neutral"> </span>
|
|
699
|
-
<span class="cline-any cline-neutral"> </span>
|
|
700
|
-
<span class="cline-any cline-neutral"> </span>
|
|
701
|
-
<span class="cline-any cline-neutral"> </span>
|
|
702
|
-
<span class="cline-any cline-neutral"> </span>
|
|
703
|
-
<span class="cline-any cline-neutral"> </span>
|
|
704
|
-
<span class="cline-any cline-neutral"> </span>
|
|
705
|
-
<span class="cline-any cline-neutral"> </span>
|
|
706
|
-
<span class="cline-any cline-neutral"> </span>
|
|
707
|
-
<span class="cline-any cline-neutral"> </span>
|
|
708
|
-
<span class="cline-any cline-neutral"> </span>
|
|
709
|
-
<span class="cline-any cline-neutral"> </span>
|
|
710
|
-
<span class="cline-any cline-neutral"> </span>
|
|
711
|
-
<span class="cline-any cline-neutral"> </span>
|
|
712
|
-
<span class="cline-any cline-neutral"> </span>
|
|
713
|
-
<span class="cline-any cline-neutral"> </span>
|
|
714
|
-
<span class="cline-any cline-neutral"> </span>
|
|
715
|
-
<span class="cline-any cline-neutral"> </span>
|
|
716
|
-
<span class="cline-any cline-neutral"> </span>
|
|
717
|
-
<span class="cline-any cline-neutral"> </span>
|
|
718
|
-
<span class="cline-any cline-neutral"> </span>
|
|
719
|
-
<span class="cline-any cline-neutral"> </span>
|
|
720
|
-
<span class="cline-any cline-neutral"> </span>
|
|
721
|
-
<span class="cline-any cline-neutral"> </span>
|
|
722
|
-
<span class="cline-any cline-neutral"> </span>
|
|
723
|
-
<span class="cline-any cline-neutral"> </span>
|
|
724
|
-
<span class="cline-any cline-neutral"> </span>
|
|
725
|
-
<span class="cline-any cline-neutral"> </span>
|
|
726
|
-
<span class="cline-any cline-neutral"> </span>
|
|
727
|
-
<span class="cline-any cline-neutral"> </span>
|
|
728
|
-
<span class="cline-any cline-neutral"> </span>
|
|
729
|
-
<span class="cline-any cline-neutral"> </span>
|
|
730
|
-
<span class="cline-any cline-neutral"> </span>
|
|
731
|
-
<span class="cline-any cline-neutral"> </span>
|
|
732
|
-
<span class="cline-any cline-neutral"> </span>
|
|
733
|
-
<span class="cline-any cline-neutral"> </span>
|
|
734
|
-
<span class="cline-any cline-neutral"> </span>
|
|
735
|
-
<span class="cline-any cline-neutral"> </span>
|
|
736
|
-
<span class="cline-any cline-neutral"> </span>
|
|
737
|
-
<span class="cline-any cline-neutral"> </span>
|
|
738
|
-
<span class="cline-any cline-neutral"> </span>
|
|
739
|
-
<span class="cline-any cline-neutral"> </span>
|
|
740
|
-
<span class="cline-any cline-neutral"> </span>
|
|
741
|
-
<span class="cline-any cline-neutral"> </span>
|
|
742
|
-
<span class="cline-any cline-neutral"> </span>
|
|
743
|
-
<span class="cline-any cline-neutral"> </span>
|
|
744
|
-
<span class="cline-any cline-neutral"> </span>
|
|
745
|
-
<span class="cline-any cline-neutral"> </span>
|
|
746
|
-
<span class="cline-any cline-neutral"> </span>
|
|
747
|
-
<span class="cline-any cline-neutral"> </span>
|
|
748
|
-
<span class="cline-any cline-neutral"> </span>
|
|
749
|
-
<span class="cline-any cline-neutral"> </span>
|
|
750
|
-
<span class="cline-any cline-neutral"> </span>
|
|
751
|
-
<span class="cline-any cline-neutral"> </span>
|
|
752
|
-
<span class="cline-any cline-neutral"> </span>
|
|
753
|
-
<span class="cline-any cline-neutral"> </span>
|
|
754
|
-
<span class="cline-any cline-neutral"> </span>
|
|
755
|
-
<span class="cline-any cline-neutral"> </span>
|
|
756
|
-
<span class="cline-any cline-neutral"> </span>
|
|
757
|
-
<span class="cline-any cline-neutral"> </span>
|
|
758
|
-
<span class="cline-any cline-neutral"> </span>
|
|
759
|
-
<span class="cline-any cline-neutral"> </span>
|
|
760
|
-
<span class="cline-any cline-neutral"> </span>
|
|
761
|
-
<span class="cline-any cline-neutral"> </span>
|
|
191
|
+
<a name='L126'></a><a href='#L126'>126</a></td><td class="line-coverage quiet"><span class="cline-any cline-yes">2x</span>
|
|
762
192
|
<span class="cline-any cline-neutral"> </span>
|
|
763
193
|
<span class="cline-any cline-neutral"> </span>
|
|
764
194
|
<span class="cline-any cline-neutral"> </span>
|
|
@@ -885,219 +315,6 @@
|
|
|
885
315
|
<span class="cline-any cline-neutral"> </span>
|
|
886
316
|
<span class="cline-any cline-neutral"> </span></td><td class="text"><pre class="prettyprint lang-js"><svg aria-hidden="true" style="position: absolute; width: 0; height: 0; overflow: hidden;"
|
|
887
317
|
width="0" height="0" version="1.1" xmlns="https://www.w3.org/2000/svg" xmlns:xlink="https://www.w3.org/1999/xlink">
|
|
888
|
-
<symbol id="user-sign-in" viewBox="0 0 25 25">
|
|
889
|
-
<title>user-sign-in</title>
|
|
890
|
-
<path d="M26.6,22.9c-1.2-2.3-3.3-4-5.7-4.7l-2.5-0.7c-0.1,0-0.1,0-0.1-0.1c0,0,0-0.1,0-0.2l1.8-2
|
|
891
|
-
c1.5-1.6,2.1-3.8,1.9-5.9l-0.3-2.4c-0.3-2.3-1.5-4.3-3.4-5.5l-0.1,0c-1.2-0.8-2.6-1.1-4-1.1c-1.5,0-2.9,0.4-4.3,1.3
|
|
892
|
-
c-1.8,1.2-2.9,3-3.2,5.1L6.2,9.1c-0.3,2.2,0.3,4.5,1.8,6.2l1.7,1.9c0,0,0,0,0,0.1c0,0.1,0,0.1,0,0.2c0,0.1-0.1,0.1-0.1,0.1l-2.5,0.7
|
|
893
|
-
c-2.4,0.7-4.5,2.4-5.7,4.7c-0.5,1-0.5,2.3,0.1,3.3c0.7,1,1.8,1.6,2.9,1.6h19.3c1.2,0,2.3-0.6,2.9-1.6C27.2,25.3,27.2,24,26.6,22.9z
|
|
894
|
-
M11.1,18.1c0.2-0.4,0.2-0.9,0.1-1.4c-0.1-0.2-0.2-0.4-0.3-0.5l-1.7-1.9C8,13,7.5,11.1,7.7,9.3l0.4-2.6c0.3-1.7,1.2-3.2,2.6-4.1
|
|
895
|
-
c1-0.7,2.2-1,3.4-1c1.2,0,2.3,0.3,3.3,1l0.1,0h0C19,3.6,20,5.2,20.2,7l0.3,2.4c0.2,1.7-0.3,3.4-1.5,4.7l-1.8,2
|
|
896
|
-
c-0.1,0.2-0.2,0.3-0.3,0.5c-0.2,0.4-0.1,0.9,0.1,1.4c0.2,0.4,0.6,0.7,1,0.9l2.5,0.7c2.1,0.6,3.8,2,4.8,3.9c0.3,0.6,0.3,1.3-0.1,1.8
|
|
897
|
-
c-0.3,0.5-0.9,0.9-1.6,0.9H4.4c-0.7,0-1.2-0.4-1.6-0.9c-0.3-0.6-0.3-1.2,0-1.8l0,0c1-1.9,2.7-3.3,4.8-3.9l2.5-0.7
|
|
898
|
-
C10.5,18.8,10.9,18.5,11.1,18.1z"/>
|
|
899
|
-
</symbol>
|
|
900
|
-
<symbol id="report-data" viewBox="0 0 35 35">
|
|
901
|
-
<title>report-data</title>
|
|
902
|
-
<g>
|
|
903
|
-
<polygon points="11.5,15.5 12.6,16.5 16.9,11.8 16.9,26.3 18.1,26.3 18.1,11.8 22.4,16.5 23.5,15.5 17.5,9 "/>
|
|
904
|
-
<path d="M32.8,17.5c0-2.1-0.4-4.1-1.2-6c-2.3-5.5-7.8-9.4-14.1-9.4c-6.7,0-12.4,4.3-14.4,10.3c-0.5,1.6-0.9,3.3-0.9,5
|
|
905
|
-
c0,3.7,1.3,7.1,3.5,9.8c2.8,3.4,7,5.5,11.8,5.5c3.2,0,6.1-1,8.6-2.6C30.1,27.4,32.8,22.8,32.8,17.5z M17.5,31.6c-3.1,0-6-1-8.3-2.7
|
|
906
|
-
c-3.5-2.6-5.8-6.7-5.8-11.4c0-1.5,0.2-2.9,0.6-4.2c1.8-5.7,7.2-9.9,13.5-9.9c5.9,0,10.9,3.6,13.1,8.8c0.7,1.7,1.1,3.5,1.1,5.4
|
|
907
|
-
c0,6-3.7,11.1-8.9,13.1C21.1,31.3,19.3,31.6,17.5,31.6z"/>
|
|
908
|
-
</g>
|
|
909
|
-
</symbol>
|
|
910
|
-
<symbol id="dashboard" viewBox="0 0 25 25">
|
|
911
|
-
<title>dashboard</title>
|
|
912
|
-
<g>
|
|
913
|
-
<path d="M22.2,12.8H12.1V2.8c0-0.3-0.2-0.5-0.5-0.5h-0.1c-6.2,0-11.2,5-11.2,11.2c0,6.2,5,11.2,11.2,11.2
|
|
914
|
-
c6.2,0,11.2-5,11.2-11.2v-0.1C22.7,13.1,22.5,12.8,22.2,12.8z M11.6,13.9h10c-0.2,5.4-4.7,9.7-10.1,9.7c-5.6,0-10.2-4.6-10.2-10.2
|
|
915
|
-
c0-5.4,4.3-9.9,9.7-10.1v10C11.1,13.7,11.3,13.9,11.6,13.9z"/>
|
|
916
|
-
<path d="M24.7,9.9l0-0.1C24,4.9,20.1,1,15.2,0.3l-0.1,0l0,0c-0.1,0-0.3,0-0.4,0.1c-0.1,0.1-0.2,0.2-0.2,0.4V10
|
|
917
|
-
c0,0.3,0.2,0.5,0.5,0.5h9.2c0.2,0,0.3-0.1,0.4-0.2C24.7,10.2,24.7,10.1,24.7,9.9z M23.5,9.5h-8v-8C19.5,2.2,22.8,5.5,23.5,9.5z"/>
|
|
918
|
-
</g>
|
|
919
|
-
</symbol>
|
|
920
|
-
<symbol id="manage-users" viewBox="0 0 25 25">
|
|
921
|
-
<title>manage-users</title>
|
|
922
|
-
<g>
|
|
923
|
-
<path d="M4.4,10.8V0.2H3.6v10.7c-1.9,0.2-3.4,1.8-3.4,3.8s1.5,3.6,3.4,3.8v6.4h0.9v-6.4c1.9-0.2,3.4-1.8,3.4-3.8
|
|
924
|
-
S6.3,11.1,4.4,10.8z M4,17.6c-1.6,0-3-1.3-3-3s1.3-3,3-3s3,1.3,3,3S5.6,17.6,4,17.6z"/>
|
|
925
|
-
<path d="M12.9,2.3V0.2h-0.9v2.2c-1.9,0.2-3.4,1.8-3.4,3.8c0,2,1.5,3.6,3.4,3.8v14.9h0.9V9.9c1.9-0.2,3.4-1.8,3.4-3.8
|
|
926
|
-
C16.3,4.2,14.8,2.6,12.9,2.3z M12.5,9.1c-1.6,0-3-1.3-3-3s1.3-3,3-3s3,1.3,3,3S14.1,9.1,12.5,9.1z"/>
|
|
927
|
-
<path d="M24.8,18.9c0-2-1.5-3.6-3.4-3.8V0.2h-0.9v14.9c-1.9,0.2-3.4,1.8-3.4,3.8s1.5,3.6,3.4,3.8v2.2h0.9v-2.2
|
|
928
|
-
C23.3,22.4,24.8,20.8,24.8,18.9z M21,21.8c-1.6,0-3-1.3-3-3c0-1.6,1.3-3,3-3s3,1.3,3,3C24,20.5,22.6,21.8,21,21.8z"/>
|
|
929
|
-
</g>
|
|
930
|
-
</symbol>
|
|
931
|
-
<symbol id="account-settings" viewBox="0 0 25 25">
|
|
932
|
-
<title>account-settings</title>
|
|
933
|
-
<g>
|
|
934
|
-
<path d="M12.5,6.5c-3.3,0-6,2.7-6,6s2.7,6,6,6s6-2.7,6-6S15.8,6.5,12.5,6.5z M12.5,17.5c-2.8,0-5-2.3-5-5s2.3-5,5-5
|
|
935
|
-
s5,2.3,5,5S15.3,17.5,12.5,17.5z"/>
|
|
936
|
-
<path d="M24.5,9.8l-3-0.7c-0.1-0.2-0.2-0.4-0.2-0.6l1.6-2.6c0.1-0.2,0.1-0.4-0.1-0.6l-3.1-3.1
|
|
937
|
-
c-0.1-0.2-0.4-0.2-0.6-0.1l-2.6,1.6c-0.2-0.1-0.4-0.2-0.6-0.3l-0.7-3c-0.1-0.2-0.2-0.3-0.5-0.3h-4.4c-0.2,0-0.4,0.1-0.5,0.4l-0.7,3
|
|
938
|
-
C9,3.6,8.8,3.7,8.6,3.8L5.9,2.2C5.7,2,5.5,2.1,5.3,2.2L2.2,5.3C2.1,5.5,2.1,5.8,2.2,5.9l1.6,2.6C3.7,8.7,3.6,8.9,3.6,9.1l-3,0.7
|
|
939
|
-
c-0.2,0-0.4,0.2-0.4,0.5v4.4c0,0.2,0.2,0.4,0.4,0.5l3,0.7c0.1,0.2,0.2,0.4,0.2,0.6l-1.6,2.6c-0.1,0.2-0.1,0.4,0.1,0.6l3.1,3.1
|
|
940
|
-
c0.2,0.2,0.4,0.2,0.6,0.1l2.6-1.6c0.2,0.1,0.4,0.2,0.6,0.3l0.7,3c0,0.2,0.2,0.4,0.5,0.4h4.4c0.2,0,0.4-0.2,0.5-0.4l0.7-3
|
|
941
|
-
c0.2-0.1,0.4-0.2,0.6-0.3l2.6,1.6c0.2,0.1,0.4,0.1,0.6-0.1l3.1-3.1c0.1-0.2,0.2-0.4,0.1-0.6l-1.6-2.6c0.1-0.2,0.2-0.4,0.2-0.6
|
|
942
|
-
l3-0.7c0.2,0,0.4-0.2,0.4-0.5v-4.4C24.8,10.1,24.7,9.9,24.5,9.8z M20.7,15.3c-0.1,0.3-0.3,0.7-0.4,1c-0.1,0.1-0.1,0.3,0,0.5
|
|
943
|
-
l1.6,2.5l-2.6,2.6l-2.5-1.6c-0.1-0.1-0.3-0.1-0.4,0c-0.3,0.1-0.6,0.3-1,0.4c-0.2,0-0.3,0.2-0.3,0.3l-0.7,2.9h-3.7L10,21
|
|
944
|
-
c0-0.2-0.2-0.3-0.3-0.3c-0.4-0.1-0.7-0.3-1-0.4c-0.1-0.1-0.3-0.1-0.5,0l-2.5,1.6l-2.6-2.6l1.6-2.5c0.1-0.1,0.1-0.3,0-0.5
|
|
945
|
-
c-0.2-0.3-0.3-0.7-0.4-1C4.3,15.1,4.2,15,4,15l-2.9-0.7v-3.7L4,10c0.2,0,0.3-0.2,0.3-0.3c0.1-0.3,0.2-0.6,0.4-1
|
|
946
|
-
c0.1-0.1,0.1-0.3,0-0.5L3.1,5.8l2.6-2.6l2.5,1.6c0.1,0.1,0.3,0.1,0.4,0c0.3-0.1,0.6-0.3,1-0.4C9.8,4.3,10,4.2,10,4l0.7-2.9h3.7
|
|
947
|
-
L15,4c0,0.2,0.2,0.3,0.3,0.3c0.4,0.1,0.7,0.3,1,0.4c0.1,0.1,0.3,0.1,0.5,0l2.5-1.6l2.6,2.6l-1.6,2.5c-0.1,0.1-0.1,0.3,0,0.5
|
|
948
|
-
c0.2,0.3,0.3,0.7,0.4,1C20.7,9.8,20.8,10,21,10l2.9,0.7v3.7L21,15C20.8,15,20.7,15.1,20.7,15.3z"/>
|
|
949
|
-
</g>
|
|
950
|
-
</symbol>
|
|
951
|
-
<symbol id="help-support" viewBox="0 0 25 25">
|
|
952
|
-
<title>help-support</title>
|
|
953
|
-
<g>
|
|
954
|
-
<path d="M12.5,0.3C5.8,0.3,0.3,5.8,0.3,12.5s5.5,12.2,12.2,12.2s12.2-5.5,12.2-12.2S19.2,0.3,12.5,0.3z M12.5,23.8
|
|
955
|
-
c-6.2,0-11.3-5.1-11.3-11.3S6.3,1.2,12.5,1.2s11.3,5.1,11.3,11.3S18.7,23.8,12.5,23.8z"/>
|
|
956
|
-
<path d="M12.5,10.7h-0.4c-0.1,0-0.3,0-0.3,0.1c-0.1,0.1-0.1,0.2-0.1,0.3v8c0,0.1,0,0.3,0.1,0.3
|
|
957
|
-
c0.1,0.1,0.2,0.1,0.3,0.1h0.4c0.1,0,0.3,0,0.3-0.1c0.1-0.1,0.1-0.2,0.1-0.3v-8c0-0.1,0-0.3-0.1-0.3C12.8,10.7,12.7,10.7,12.5,10.7z"/>
|
|
958
|
-
<path d="M12.6,6.7h-0.5c-0.1,0-0.3,0-0.4,0.1c-0.1,0.1-0.1,0.3-0.1,0.4v0.5c0,0.1,0,0.3,0.1,0.3
|
|
959
|
-
c0.1,0.1,0.2,0.1,0.3,0.1h0.5c0.1,0,0.3,0,0.4-0.1C13,7.9,13,7.8,13,7.6V7.2c0-0.1,0-0.3-0.1-0.4C12.8,6.7,12.7,6.7,12.6,6.7z"/>
|
|
960
|
-
</g>
|
|
961
|
-
</symbol>
|
|
962
|
-
<symbol id="details" viewBox="0 0 25 25">
|
|
963
|
-
<title>details</title>
|
|
964
|
-
<g>
|
|
965
|
-
<path d="M21.8,0.4H3.2c-1.2,0-2.1,1-2.1,2.1v20c0,1.2,1,2.1,2.1,2.1h18.6c1.2,0,2.1-1,2.1-2.1v-20
|
|
966
|
-
C23.9,1.3,23,0.4,21.8,0.4z M22.9,22.5c0,0.6-0.5,1.1-1.1,1.1H3.2c-0.6,0-1.1-0.5-1.1-1.1v-20c0-0.6,0.5-1.1,1.1-1.1h18.6
|
|
967
|
-
c0.6,0,1.1,0.5,1.1,1.1V22.5z"/>
|
|
968
|
-
<rect x="6.2" y="17.3" width="1.6" height="1"/>
|
|
969
|
-
<rect x="6.2" y="12.4" width="1.6" height="1"/>
|
|
970
|
-
<rect x="6.2" y="7.4" width="1.6" height="1"/>
|
|
971
|
-
<rect x="9.3" y="17.3" width="6.1" height="1"/>
|
|
972
|
-
<rect x="9.3" y="12.4" width="9.3" height="1"/>
|
|
973
|
-
<rect x="9.3" y="7.4" width="6.5" height="1"/>
|
|
974
|
-
</g>
|
|
975
|
-
</symbol>
|
|
976
|
-
<symbol id="clinicians" viewBox="0 0 25 25">
|
|
977
|
-
<title>clinicians</title>
|
|
978
|
-
<g>
|
|
979
|
-
<path d="M24.7,18.8L24.7,18.8c-0.7-1.4-2-2.5-3.6-2.9l-1.6-0.5c0,0-0.1,0-0.1-0.1v-0.1l0,0l1.1-1.3
|
|
980
|
-
c0.9-1,1.3-2.4,1.2-3.7l-0.2-1.5c-0.2-1.4-0.9-2.6-2.1-3.3l-0.1-0.1c-0.7-0.5-1.6-0.7-2.5-0.7S15,4.9,14.1,5.4
|
|
981
|
-
c-0.2,0.1-0.3,0.2-0.5,0.4l-0.1,0.1l0,0c-0.4-0.8-0.8-1.5-1.6-2l0,0C11.1,3.3,10,3,9.1,3C8,3,7,3.3,6.2,3.9C5,4.7,4.2,5.9,4,7.3
|
|
982
|
-
L3.7,9.1c-0.2,1.5,0.2,3,1.2,4.2l1.2,1.3c0,0,0,0,0.1,0.1c0,0.1,0,0.2,0,0.2c0,0.1-0.1,0.2-0.2,0.2l-1.7,0.5
|
|
983
|
-
c-1.7,0.5-3.1,1.7-3.9,3.2C0,19.5,0,20.3,0.4,21c0.4,0.6,1.1,1,1.9,1h8.5h4.9c0.3,0,0.5-0.1,0.7-0.1h6.4c0.7,0,1.4-0.4,1.8-1
|
|
984
|
-
C25,20.2,25,19.5,24.7,18.8z M15.7,21.3l-5.3-0.1H9l-6.7,0.1c-1.1,0-1.8-1.2-1.2-2.1c0.7-1.4,2-2.4,3.4-2.8l1.7-0.5
|
|
985
|
-
c0.6-0.2,0.9-0.8,0.7-1.4c-0.1-0.1-0.1-0.2-0.2-0.3l-1.2-1.3c-0.9-1-1.3-2.3-1.1-3.6l0.3-1.8c0.3-1.2,0.9-2.3,1.9-3
|
|
986
|
-
C7.4,4,8.2,3.8,9.1,3.8c0.8,0,1.6,0.2,2.3,0.7l0,0c0.8,0.5,1.4,1.3,1.8,2.2c0.1,0.3,0.2,0.6,0.2,1l0,0l0.2,1.7
|
|
987
|
-
c0.1,1.1-0.2,2.1-0.8,3c-0.1,0.1-0.2,0.3-0.3,0.4L12.3,13l-1.1,1.2c-0.1,0.1-0.2,0.2-0.2,0.3c-0.2,0.6,0.1,1.1,0.7,1.3l1.1,0.4
|
|
988
|
-
l0.7,0.2c0.3,0.1,0.3,0.1,0.5,0.2c1.3,0.5,2.3,1.4,3,2.6C17.5,20.1,16.8,21.3,15.7,21.3z M13.1,14.2l1.1,1.2l0,0v0.1l-0.1,0.1
|
|
989
|
-
l-0.1,0c-0.1,0-0.2,0-0.2,0l-1.6-0.6c-0.1,0-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.2,0-0.3l0.1-0.1l0.8-0.9C12.9,13.9,13,14,13.1,14.2z
|
|
990
|
-
M23.8,20.4c-0.2,0.3-0.6,0.6-1,0.6h-5.3l0,0c0.4-0.7,0.4-1.5,0.1-2.2c-0.6-1.1-1.6-2.1-2.7-2.7c0.2-0.3,0.2-0.6,0.1-0.9
|
|
991
|
-
c0-0.1-0.1-0.2-0.2-0.3l-1.1-1.2c-0.2-0.2-0.3-0.4-0.5-0.6l0,0c0.8-1.1,1.2-2.4,1.1-3.8l-0.2-1.7c0-0.2-0.1-0.5-0.1-0.7
|
|
992
|
-
c0,0,0,0,0-0.1l0.1-0.1c0.2-0.2,0.4-0.4,0.6-0.5c0.7-0.4,1.4-0.7,2.1-0.7c0.7,0,1.4,0.1,2,0.5l0.1,0.1l0,0c0.9,0.6,1.6,1.6,1.7,2.8
|
|
993
|
-
l0.2,1.5c0.1,1.1-0.2,2.1-0.9,3l-1.1,1.3c-0.1,0.1-0.2,0.2-0.2,0.3c-0.1,0.3-0.1,0.6,0.1,0.9c0.1,0.3,0.6,0.4,0.9,0.5l1.6,0.5
|
|
994
|
-
c1.3,0.4,2.2,1.4,2.8,2.6C24.1,19.6,24.1,20.1,23.8,20.4z"/>
|
|
995
|
-
</g>
|
|
996
|
-
</symbol>
|
|
997
|
-
<symbol id="group-reporting" viewBox="0 0 25 25">
|
|
998
|
-
<title>group-reporting</title>
|
|
999
|
-
<g>
|
|
1000
|
-
<path d="M16.9,9C12.5,9,9,12.6,9,16.9s3.6,7.9,7.9,7.9c4.4,0,7.9-3.6,7.9-7.9S21.2,9,16.9,9z M16.9,23.8
|
|
1001
|
-
c-3.8,0-6.9-3.1-6.9-6.9s3.1-6.9,6.9-6.9s6.9,3.1,6.9,6.9S20.6,23.8,16.9,23.8z"/>
|
|
1002
|
-
<polygon points="13.5,17.2 14.3,17.9 16.5,15.5 16.5,20.6 17.4,20.6 17.4,15.5 19.6,17.9 20.4,17.2 17,13.5 "/>
|
|
1003
|
-
<rect x="8.5" y="4" width="2" height="2.2"/>
|
|
1004
|
-
<rect x="12.9" y="4" width="2" height="2.2"/>
|
|
1005
|
-
<rect x="8.5" y="8.8" width="2" height="2.2"/>
|
|
1006
|
-
<path d="M7.2,21.9h-2V1h13v5.2l0,0v0.6c0,0.1,0,0.3,0.1,0.3c0.2,0,0.1,0,0.2,0h0.3c0.1,0,0.3,0,0.3-0.1
|
|
1007
|
-
c0,0,0-0.1,0-0.2V1.5c0,0,0,0,0-0.1V0.6c0-0.2-0.1-0.4-0.3-0.4l0,0l0,0l0,0h-0.1c0,0,0,0,0.1,0H7.6l0,0H4.8c-0.2,0-0.4,0.2-0.4,0.4
|
|
1008
|
-
v21.3H0.6c-0.1,0-0.2,0-0.3,0.1s-0.1,0.2-0.1,0.3v0.3c0,0.1,0,0.2,0.1,0.3C0.4,23,0.5,23,0.6,23h6.6c0.1,0,0.2,0,0.3-0.1
|
|
1009
|
-
c0.1-0.1,0.1-0.2,0.1-0.3v-0.3c0-0.1,0-0.2-0.1-0.3C7.4,21.9,7.3,21.9,7.2,21.9z"/>
|
|
1010
|
-
</g>
|
|
1011
|
-
</symbol>
|
|
1012
|
-
<symbol id="account-home" viewBox="0 0 25 25">
|
|
1013
|
-
<title>Account Home</title>
|
|
1014
|
-
<path d="M8.5,24 L8.5,15 C8.5,14.7238576 8.72385763,14.5 9,14.5 L16,14.5 C16.2761424,14.5 16.5,14.7238576 16.5,15 L16.5,24 L22.5,24 L22.5,9.238536 L12.5,1.14329791 L2.5,9.238536 L2.5,24 L8.5,24 Z M1.68540089,8.61137756 L12.1854009,0.111377565 C12.3688463,-0.0371258549 12.6311537,-0.0371258549 12.8145991,0.111377565 L23.3145991,8.61137756 C23.4318689,8.70631024 23.5,8.8491212 23.5,9 L23.5,24.5 C23.5,24.7761424 23.2761424,25 23,25 L2,25 C1.72385763,25 1.5,24.7761424 1.5,24.5 L1.5,9 C1.5,8.8491212 1.56813111,8.70631024 1.68540089,8.61137756 Z M9.5,15.5 L9.5,24 L15.5,24 L15.5,15.5 L9.5,15.5 Z"></path>
|
|
1015
|
-
</symbol>
|
|
1016
|
-
<symbol id="individual-reporting" viewBox="0 0 25 25">
|
|
1017
|
-
<title>individual-reporting</title>
|
|
1018
|
-
<g>
|
|
1019
|
-
<path d="M5.1,5.6C5.3,4.3,6.6,3,7.7,2.3c0.9-0.6,1.8-0.9,2.8-0.9c0.9,0,1.9,0.3,2.7,0.8l0,0c1.2,0.8,2,2,2.3,3.4l0,0
|
|
1020
|
-
l0,0c0,0.1,0,0.4,0.1,0.4c0.1,0,0.2,0,0.2,0h0.3c0.1,0,0.2,0,0.2-0.1V5.8l0,0c0,0,0,0,0-0.1l0,0l0,0c-0.2-1.7-1.2-3.2-2.6-4.1l0,0
|
|
1021
|
-
c-0.9-0.6-2-0.9-3.2-0.9s-2.3,0.4-3.3,1c-1.4,0.9-2.8,2.4-3,4l-0.3,2C3.6,9.3,3.6,11,4.8,12.3l1.3,1.5c0,0,0,0,0.1,0.1
|
|
1022
|
-
c0,0.1,0,0.2,0,0.3S6.1,14.3,6,14.4L4,15c-1.9,0.6-2.6,1.9-3.5,3.7c-0.4,0.8-0.4,1.7,0.1,2.5s1.3,1.2,2.2,1.2h3.8l0,0h0.1
|
|
1023
|
-
c0.1,0,0.3,0,0.3-0.1s0-0.2,0-0.3v-0.2c0-0.1,0-0.3-0.1-0.3c-0.1-0.1-0.1,0-0.2,0H5.2l0,0H2.8c-1.2,0-2-1.3-1.4-2.4
|
|
1024
|
-
c0.8-1.6,1.3-2.7,3-3.2l2-0.6c0.7-0.2,1-0.9,0.8-1.6c-0.1-0.2-0.2-0.3-0.3-0.4l-1.4-1.5c-1-1.1-1-2.6-0.7-4.1L5.1,5.6z"/>
|
|
1025
|
-
<path d="M16.9,8.6c-4.4,0-7.9,3.6-7.9,7.9s3.6,7.9,7.9,7.9s7.9-3.6,7.9-7.9S21.3,8.6,16.9,8.6z M16.9,23.4
|
|
1026
|
-
c-3.8,0-6.9-3.1-6.9-6.9s3.1-6.9,6.9-6.9s6.9,3.1,6.9,6.9S20.7,23.4,16.9,23.4z"/>
|
|
1027
|
-
<polygon points="13.6,16.8 14.3,17.5 16.6,15.1 16.6,20.2 17.4,20.2 17.4,15.1 19.7,17.5 20.4,16.8 17,13.1 "/>
|
|
1028
|
-
</g>
|
|
1029
|
-
</symbol>
|
|
1030
|
-
<symbol id="nav-collapse" viewBox="0 0 25 25">
|
|
1031
|
-
<title>nav-collapse</title>
|
|
1032
|
-
<g>
|
|
1033
|
-
<polygon points="6.8,9.1 10,12.1 0.1,12.1 0.1,12.9 10,12.9 6.8,15.9 7.5,16.6 12,12.5 7.5,8.4 "/>
|
|
1034
|
-
<polygon points="24.9,12.1 15,12.1 18.2,9.1 17.5,8.4 13,12.5 17.5,16.6 18.2,15.9 15,12.9 24.9,12.9 "/>
|
|
1035
|
-
</g>
|
|
1036
|
-
</symbol>
|
|
1037
|
-
<symbol id="nav-expand" viewBox="0 0 25 25">
|
|
1038
|
-
<title>nav-expand</title>
|
|
1039
|
-
<g>
|
|
1040
|
-
<polygon points="5.2,9.1 4.5,8.4 0.1,12.5 4.5,16.6 5.2,15.9 2,12.9 11,12.9 11,12.1 2,12.1 "/>
|
|
1041
|
-
<polygon points="20.5,8.4 19.8,9.1 23,12.1 14,12.1 14,12.9 23,12.9 19.8,15.9 20.5,16.6 24.9,12.5 "/>
|
|
1042
|
-
</g>
|
|
1043
|
-
</symbol>
|
|
1044
|
-
<symbol id="chevron-left" viewBox="0 0 1792 1792">
|
|
1045
|
-
<title>chevron-left</title>
|
|
1046
|
-
<g>
|
|
1047
|
-
<path d="M1427 301l-531 531 531 531q19 19 19 45t-19 45l-166 166q-19 19-45 19t-45-19l-742-742q-19-19-19-45t19-45l742-742q19-19 45-19t45 19l166 166q19 19 19 45t-19 45z"/>
|
|
1048
|
-
</g>
|
|
1049
|
-
</symbol>
|
|
1050
|
-
<symbol id="chevron-right" viewBox="0 0 1792 1792">
|
|
1051
|
-
<title>chevron-right</title>
|
|
1052
|
-
<g>
|
|
1053
|
-
<path d="M1363 877l-742 742q-19 19-45 19t-45-19l-166-166q-19-19-19-45t19-45l531-531-531-531q-19-19-19-45t19-45l166-166q19-19 45-19t45 19l742 742q19 19 19 45t-19 45z"/>
|
|
1054
|
-
</g>
|
|
1055
|
-
</symbol>
|
|
1056
|
-
<symbol id="chevron-down" viewBox="0 0 1792 1792">
|
|
1057
|
-
<title>chevron-down</title>
|
|
1058
|
-
<g>
|
|
1059
|
-
<path d="M1683 808l-742 741q-19 19-45 19t-45-19l-742-741q-19-19-19-45.5t19-45.5l166-165q19-19 45-19t45 19l531 531 531-531q19-19 45-19t45 19l166 165q19 19 19 45.5t-19 45.5z"/>
|
|
1060
|
-
</g>
|
|
1061
|
-
</symbol>
|
|
1062
|
-
<symbol id="switch-practice" viewBox="0 0 15 15">
|
|
1063
|
-
<title>switch-practice</title>
|
|
1064
|
-
<g>
|
|
1065
|
-
<path d="M14,8.7h-1.8c-0.1,0-0.2,0.1-0.3,0.2c-0.2,0.4-0.3,0.7-0.5,1.1c-0.9,1.4-2.4,2.2-4,2.2c-1.2,0-2.3-0.5-3.2-1.3l1.3-1.3
|
|
1066
|
-
c0.1-0.1,0.2-0.3,0.2-0.4c0-0.3-0.3-0.6-0.6-0.6H1c-0.3,0-0.6,0.3-0.6,0.6v4.1C0.4,13.7,0.7,14,1,14c0.2,0,0.3-0.1,0.4-0.2l1.2-1.2
|
|
1067
|
-
c1.3,1.2,3,2,4.8,2c3.4,0,6.1-2.3,6.9-5.5c0,0,0,0,0-0.1C14.3,8.8,14.2,8.7,14,8.7z"/>
|
|
1068
|
-
<path d="M14,1c-0.2,0-0.3,0.1-0.4,0.2l-1.2,1.2c-1.3-1.2-3.1-2-4.9-2C4.1,0.4,1.4,2.7,0.6,6c0,0,0,0,0,0.1c0,0.2,0.1,0.3,0.3,0.3
|
|
1069
|
-
h1.8C2.9,6.3,3,6.2,3,6.1C3.2,5.7,3.3,5.4,3.5,5c0.9-1.4,2.4-2.2,4-2.2c1.2,0,2.3,0.5,3.2,1.3L9.4,5.3C9.3,5.4,9.3,5.6,9.3,5.7
|
|
1070
|
-
c0,0.3,0.3,0.6,0.6,0.6H14c0.3,0,0.6-0.3,0.6-0.6V1.6C14.6,1.3,14.3,1,14,1z"/>
|
|
1071
|
-
</g>
|
|
1072
|
-
</symbol>
|
|
1073
|
-
<symbol id="score-increase" viewBox="0 0 15 15">
|
|
1074
|
-
<title>score-increase</title>
|
|
1075
|
-
<g>
|
|
1076
|
-
<path d="M9.7,4c0,0.4,0.3,0.7,0.7,0.7h2.2l-4.1,4L5.8,6.4C5.4,6,5.1,6,4.8,6.3l-4.5,4.3c-0.3,0.2-0.3,0.7-0.1,1
|
|
1077
|
-
s0.6,0.3,0.9,0.1l4.1-3.9L7.9,10c0.2,0.4,0.7,0.5,1,0.1l4.8-4.6v2.7c0,0.4,0.3,0.7,0.6,0.7c0.4,0,0.6-0.4,0.6-0.7V3.9
|
|
1078
|
-
c0-0.4-0.3-0.7-0.6-0.7h-3.9C10,3.2,9.7,3.6,9.7,4z"/>
|
|
1079
|
-
</g>
|
|
1080
|
-
</symbol>
|
|
1081
|
-
<symbol id="tooltip" viewBox="0 0 15 15">
|
|
1082
|
-
<title>tooltip</title>
|
|
1083
|
-
<g>
|
|
1084
|
-
<path d="M7.5,0.2c-4,0-7.3,3.3-7.3,7.3s3.3,7.3,7.3,7.3s7.3-3.3,7.3-7.3S11.5,0.2,7.5,0.2z M7.5,13.6c-3.4,0-6.1-2.7-6.1-6.1
|
|
1085
|
-
s2.7-6.1,6.1-6.1s6.1,2.7,6.1,6.1S10.9,13.6,7.5,13.6z"/>
|
|
1086
|
-
<path d="M8,9.9H6.9c-0.1,0-0.1,0-0.2,0.1s-0.1,0.1-0.1,0.2v1c0,0.1,0,0.1,0.1,0.2c0.1,0.1,0.1,0.1,0.2,0.1H8c0.1,0,0.1,0,0.2-0.1
|
|
1087
|
-
c0.1-0.1,0.1-0.1,0.1-0.2v-1c0-0.1,0-0.1-0.1-0.2C8.2,10,8.1,9.9,8,9.9z"/>
|
|
1088
|
-
<path d="M9.1,3.9C8.7,3.7,8.2,3.6,7.6,3.6S6.5,3.7,6,3.9C5.6,4.1,5.3,4.4,5,4.8C4.8,5.1,4.7,5.5,4.7,5.9c0,0.1,0,0.1,0.1,0.2
|
|
1089
|
-
c0,0.1,0.1,0.1,0.2,0.1h1c0.2,0,0.3-0.1,0.3-0.3c0.1-0.7,0.6-1.1,1.3-1.1c0.3,0,0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.4,0.3,0.7
|
|
1090
|
-
c0,0.2-0.1,0.3-0.2,0.5C8.3,6.5,8.1,6.7,7.8,7S7.3,7.6,7.1,7.9C6.9,8.1,6.8,8.4,6.7,8.8c0,0.1,0,0.2,0,0.4c0,0.1,0,0.1,0.1,0.2
|
|
1091
|
-
c0,0,0.1,0.1,0.2,0.1h1.1c0.1,0,0.1,0,0.2-0.1s0.1-0.1,0.1-0.2c0-0.1,0-0.2,0.1-0.4c0-0.2,0.1-0.4,0.3-0.6C8.9,7.8,9,7.7,9.2,7.5
|
|
1092
|
-
c0.4-0.4,0.6-0.7,0.8-1s0.3-0.6,0.3-1c0-0.3-0.1-0.6-0.3-0.9C9.8,4.3,9.5,4.1,9.1,3.9z"/>
|
|
1093
|
-
</g>
|
|
1094
|
-
</symbol>
|
|
1095
|
-
<symbol id="closex" viewBox="0 0 15 15">
|
|
1096
|
-
<title>close</title>
|
|
1097
|
-
<g stroke-width="1" transform="translate(-968.000000, -236.000000)">
|
|
1098
|
-
<path d="M982.725141,249.399456 L976.82556,243.499875 L982.725141,237.600294 C983.091286,237.234148 983.091286,236.640905 982.725141,236.274609 C982.359295,235.908464 981.765752,235.908464 981.399456,236.274609 L975.499875,242.17419 L969.600294,236.274609 C969.234448,235.908464 968.640905,235.908464 968.274609,236.274609 C967.908464,236.640155 967.908464,237.233998 968.274609,237.600294 L974.17419,243.499875 L968.274609,249.399456 C967.908464,249.765602 967.908464,250.358845 968.274609,250.725141 C968.640755,251.091286 969.233998,251.091286 969.600294,250.725141 L975.499875,244.82556 L981.399456,250.725141 C981.765602,251.091286 982.359295,251.091286 982.725141,250.725141 C983.091286,250.358995 983.091286,249.765752 982.725141,249.399456 Z" id="Shape"></path>
|
|
1099
|
-
</g>
|
|
1100
|
-
</symbol>
|
|
1101
318
|
<symbol id="icon-warning" viewBox="-2 -2 25 25">
|
|
1102
319
|
<style>
|
|
1103
320
|
.st0{clip-path:url(#SVGID_2_);} .st1{clip-path:url(#SVGID_4_);fill:#999999;} .st2{enable-background:new ;} .st3{clip-path:url(#SVGID_7_);} .st4{clip-path:url(#SVGID_8_);fill:#999999;}
|
|
@@ -1133,6 +350,13 @@
|
|
|
1133
350
|
<path d="M10 11.7c-.6 0-1-.4-1-1V5.8c0-.6.4-1 1-1s1 .4 1 1v4.9c0 .5-.4 1-1 1zM10 15.3c-.6 0-1-.4-1-1v-.4c0-.6.4-1 1-1s1 .4 1 1v.4c0 .6-.4 1-1 1z"/>
|
|
1134
351
|
</g>
|
|
1135
352
|
</symbol>
|
|
353
|
+
<symbol id="search" viewBox="0 0 25 25">
|
|
354
|
+
<title>magnifying glass</title>
|
|
355
|
+
<path d="M3.9,12.8c-1.2-1.2-1.8-2.7-1.8-4.4c0-1.7,0.6-3.2,1.8-4.4c1.2-1.2,2.7-1.8,4.4-1.8c1.7,0,3.2,0.6,4.4,1.8
|
|
356
|
+
c2.4,2.4,2.4,6.4,0,8.8c-1.2,1.2-2.7,1.8-4.4,1.8C6.6,14.6,5.1,14,3.9,12.8z M19.7,18.3l-4.8-4.8c2.5-3.3,2.3-8-0.7-11
|
|
357
|
+
C12.6,1,10.5,0.1,8.3,0.1C6.1,0.1,4,1,2.4,2.6C0.9,4.1,0,6.2,0,8.4c0,2.2,0.9,4.3,2.4,5.9c1.6,1.6,3.7,2.4,5.9,2.4
|
|
358
|
+
c1.9,0,3.6-0.6,5.1-1.7l4.8,4.8c0.2,0.2,0.5,0.3,0.7,0.3c0.3,0,0.5-0.1,0.7-0.3C20.1,19.4,20.1,18.8,19.7,18.3z"/>
|
|
359
|
+
</symbol>
|
|
1136
360
|
<symbol id="star-icon" viewBox="0 0 25 25">
|
|
1137
361
|
<title>star</title>
|
|
1138
362
|
<path d="M24.7,9.4c-0.1-0.1-0.2-0.1-0.3-0.2L16.6,8L13,0.9c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1,0-0.3,0-0.4,0
|
|
@@ -1141,27 +365,21 @@
|
|
|
1141
365
|
M7.1,15.8c0-0.2,0-0.4-0.2-0.5l-5.1-5.1l7-1.1C9,9.1,9.1,9,9.2,8.8l3.2-6.4l3.2,6.4C15.7,9,15.8,9.1,16,9.1l7,1.1l-4.9,5
|
|
1142
366
|
c-0.1,0.1-0.3,0.4-0.3,0.6l1.4,7l-6.7-3.2c-0.2-0.1-0.4-0.1-0.5,0l-6.3,3.3L7.1,15.8z"/>
|
|
1143
367
|
</symbol>
|
|
1144
|
-
<symbol id="
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
<g id="Page-1" stroke="none" stroke-width="1">
|
|
1154
|
-
<g id="Physician-Compare_Physician-Compare">
|
|
1155
|
-
<path d="M19.2204301,5 L18.1451613,5 C17.7419355,5 17.4731183,5.2601626 17.4731183,5.6504065 C17.4731183,6.04065041 17.7419355,6.30081301 18.1451613,6.30081301 L19.2204301,6.30081301 C19.3548387,6.30081301 19.4892473,6.43089431 19.4892473,6.56097561 L19.4892473,11.8943089 C19.4892473,13.3252033 18.2795699,14.6260163 16.6666667,14.6260163 C15.0537634,14.6260163 13.844086,13.4552846 13.844086,11.8943089 L13.844086,6.56097561 C13.844086,6.43089431 13.9784946,6.30081301 14.1129032,6.30081301 L15.188172,6.30081301 C15.5913978,6.30081301 15.8602151,6.04065041 15.8602151,5.6504065 C15.8602151,5.2601626 15.5913978,5 15.188172,5 L14.1129032,5 C13.3064516,5 12.5,5.6504065 12.5,6.56097561 L12.5,11.8943089 C12.5,13.8455285 13.9784946,15.5365854 15.9946237,15.9268293 C15.8602151,18.398374 14.6505376,19.699187 12.5,19.699187 L12.2311828,19.699187 C9.40860215,19.699187 8.33333333,17.2276423 8.33333333,15.6666667 L8.33333333,14.495935 C9.67741935,14.1056911 10.6182796,12.9349593 10.6182796,11.504065 C10.7526882,9.81300813 9.27419355,8.38211382 7.52688172,8.38211382 C5.77956989,8.38211382 4.16666667,9.81300813 4.16666667,11.504065 C4.16666667,13.0650407 5.37634409,14.3658537 6.98924731,14.6260163 L6.98924731,15.6666667 C6.98924731,18.2682927 8.87096774,21 12.2311828,21 L12.5,21 C15.4569892,21 17.2043011,19.1788618 17.3387097,15.796748 C19.3548387,15.5365854 20.8333333,13.8455285 20.8333333,11.7642276 L20.8333333,6.56097561 C20.8333333,5.6504065 20.1612903,5 19.2204301,5 Z M5.77956989,11.504065 C5.77956989,10.5934959 6.58602151,9.94308943 7.39247312,9.94308943 C8.19892473,9.94308943 9.00537634,10.7235772 9.00537634,11.504065 C9.00537634,12.2845528 8.33333333,13.195122 7.52688172,13.195122 C6.72043011,13.195122 5.77956989,12.4146341 5.77956989,11.504065 Z" id="Shape"></path>
|
|
1156
|
-
<path d="M20.718232,0 L4.14364641,0 C1.79558011,0 0,1.82291667 0,3.90625 L0,21.09375 C0,23.3072917 1.93370166,25 4.14364641,25 L20.8563536,25 C23.2044199,25 25,23.1770833 25,21.09375 L25,3.90625 C24.8618785,1.82291667 23.0662983,0 20.718232,0 Z M23.480663,21.09375 C23.480663,22.5260417 22.2375691,23.6979167 20.718232,23.6979167 L4.14364641,23.6979167 C2.62430939,23.6979167 1.38121547,22.5260417 1.38121547,21.09375 L1.38121547,3.90625 C1.38121547,2.47395833 2.62430939,1.30208333 4.14364641,1.30208333 L20.8563536,1.30208333 C22.3756906,1.30208333 23.6187845,2.47395833 23.6187845,3.90625 L23.6187845,21.09375 L23.480663,21.09375 Z" id="Shape"></path>
|
|
1157
|
-
</g>
|
|
1158
|
-
</g>
|
|
368
|
+
<symbol id="dashboard" viewBox="0 0 25 25">
|
|
369
|
+
<title>dashboard</title>
|
|
370
|
+
<g>
|
|
371
|
+
<path d="M22.2,12.8H12.1V2.8c0-0.3-0.2-0.5-0.5-0.5h-0.1c-6.2,0-11.2,5-11.2,11.2c0,6.2,5,11.2,11.2,11.2
|
|
372
|
+
c6.2,0,11.2-5,11.2-11.2v-0.1C22.7,13.1,22.5,12.8,22.2,12.8z M11.6,13.9h10c-0.2,5.4-4.7,9.7-10.1,9.7c-5.6,0-10.2-4.6-10.2-10.2
|
|
373
|
+
c0-5.4,4.3-9.9,9.7-10.1v10C11.1,13.7,11.3,13.9,11.6,13.9z"/>
|
|
374
|
+
<path d="M24.7,9.9l0-0.1C24,4.9,20.1,1,15.2,0.3l-0.1,0l0,0c-0.1,0-0.3,0-0.4,0.1c-0.1,0.1-0.2,0.2-0.2,0.4V10
|
|
375
|
+
c0,0.3,0.2,0.5,0.5,0.5h9.2c0.2,0,0.3-0.1,0.4-0.2C24.7,10.2,24.7,10.1,24.7,9.9z M23.5,9.5h-8v-8C19.5,2.2,22.8,5.5,23.5,9.5z"/>
|
|
376
|
+
</g>
|
|
1159
377
|
</symbol>
|
|
1160
378
|
<symbol id="early-claims-icon" viewBox="0 0 25 25">
|
|
1161
379
|
<title>Claims Icon list</title>
|
|
1162
|
-
<g
|
|
1163
|
-
<g
|
|
1164
|
-
<g
|
|
380
|
+
<g>
|
|
381
|
+
<g transform="translate(2.000000, 0.000000)">
|
|
382
|
+
<g transform="translate(3.000000, 8.000000)">
|
|
1165
383
|
<polygon points="0 1 15 1 15 0 0 0"></polygon>
|
|
1166
384
|
<polygon points="0 4 15 4 15 3 0 3"></polygon>
|
|
1167
385
|
<polygon points="0 7 15 7 15 6 0 6"></polygon>
|
|
@@ -1172,90 +390,25 @@
|
|
|
1172
390
|
</g>
|
|
1173
391
|
</g>
|
|
1174
392
|
</symbol>
|
|
1175
|
-
<symbol id="
|
|
1176
|
-
<
|
|
1177
|
-
|
|
1178
|
-
<
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
<symbol id="clinicians-list-icon" viewBox="0 0 25 25">
|
|
1182
|
-
<g>
|
|
1183
|
-
<path class="st0" d="M21.8,0.4H3.2c-1.2,0-2.1,1-2.1,2.1v20c0,1.2,1,2.1,2.1,2.1h18.6c1.2,0,2.1-1,2.1-2.1v-20
|
|
1184
|
-
C23.9,1.3,23,0.4,21.8,0.4z M22.9,22.5c0,0.6-0.5,1.1-1.1,1.1H3.2c-0.6,0-1.1-0.5-1.1-1.1v-20c0-0.6,0.5-1.1,1.1-1.1h18.6
|
|
1185
|
-
c0.6,0,1.1,0.5,1.1,1.1V22.5z"/>
|
|
1186
|
-
<rect x="6.2" y="17.3" class="st0" width="1.6" height="1"/>
|
|
1187
|
-
<rect x="6.2" y="12.4" class="st0" width="1.6" height="1"/>
|
|
1188
|
-
<rect x="6.2" y="7.4" class="st0" width="1.6" height="1"/>
|
|
1189
|
-
<rect x="9.3" y="17.3" class="st0" width="6.1" height="1"/>
|
|
1190
|
-
<rect x="9.3" y="12.4" class="st0" width="9.3" height="1"/>
|
|
1191
|
-
<rect x="9.3" y="7.4" class="st0" width="6.5" height="1"/>
|
|
1192
|
-
</g>
|
|
1193
|
-
</symbol>
|
|
1194
|
-
<symbol id="wi-view-reports" viewBox="0 0 25 25">
|
|
1195
|
-
<title>WI View Reports</title>
|
|
1196
|
-
<g>
|
|
1197
|
-
<path d="M20.8680556,0.0569444444 L3.37638889,0.0569444444 C3.11944444,0.0569444444 2.9125,0.265277778 2.9125,0.520833333 L2.9125,2.07777778 L1.35555556,2.07777778 C1.09861111,2.07777778 0.891666667,2.28472222 0.891666667,2.54027778 L0.891666667,24.4763889 C0.891666667,24.7333333 1.09861111,24.9402778 1.35555556,24.9402778 L18.8472222,24.9402778 C19.1027778,24.9402778 19.3097222,24.7319444 19.3097222,24.4763889 L19.3097222,22.9208333 L20.8680556,22.9208333 C21.1236111,22.9208333 21.3305556,22.7125 21.3305556,22.4583333 L21.3305556,0.522222222 C21.3305556,0.265277778 21.1236111,0.0569444444 20.8680556,0.0569444444 Z M1.82222222,24.0111111 L1.82222222,3.00833333 L18.3861111,3.00833333 L18.3861111,24.0125 L1.82222222,24.0125 L1.82222222,24.0111111 Z M18.8472222,2.07777778 L3.84305556,2.07777778 L3.84305556,0.986111111 L20.4027778,0.986111111 L20.4027778,21.9930556 L19.3097222,21.9930556 L19.3097222,2.54166667 C19.3097222,2.28611111 19.1027778,2.07777778 18.8472222,2.07777778 Z"></path>
|
|
1198
|
-
<path d="M14.8069444,7.05138889 L5.4,7.05138889 C5.14305556,7.05138889 4.93611111,7.25972222 4.93611111,7.51666667 C4.93611111,7.77222222 5.14305556,7.97916667 5.4,7.97916667 L14.8069444,7.97916667 C15.0638889,7.97916667 15.2708333,7.77083333 15.2708333,7.51666667 C15.2708333,7.25972222 15.0638889,7.05138889 14.8069444,7.05138889 Z"></path>
|
|
1199
|
-
<path d="M14.8069444,11.0472222 L5.4,11.0472222 C5.14305556,11.0472222 4.93611111,11.2569444 4.93611111,11.5138889 C4.93611111,11.7694444 5.14305556,11.9763889 5.4,11.9763889 L14.8069444,11.9763889 C15.0638889,11.9763889 15.2708333,11.7680556 15.2708333,11.5138889 C15.2708333,11.2569444 15.0638889,11.0472222 14.8069444,11.0472222 Z"></path>
|
|
1200
|
-
<path d="M14.8069444,15.0416667 L5.4,15.0416667 C5.14305556,15.0416667 4.93611111,15.25 4.93611111,15.5069444 C4.93611111,15.7638889 5.14305556,15.9722222 5.4,15.9722222 L14.8069444,15.9722222 C15.0638889,15.9722222 15.2708333,15.7638889 15.2708333,15.5069444 C15.2708333,15.25 15.0638889,15.0416667 14.8069444,15.0416667 Z"></path>
|
|
1201
|
-
<path d="M14.8069444,18.5819444 L5.4,18.5819444 C5.14305556,18.5819444 4.93611111,18.7902778 4.93611111,19.0472222 C4.93611111,19.3041667 5.14305556,19.5125 5.4,19.5125 L14.8069444,19.5125 C15.0638889,19.5125 15.2708333,19.3041667 15.2708333,19.0472222 C15.2708333,18.7902778 15.0638889,18.5819444 14.8069444,18.5819444 Z"></path>
|
|
1202
|
-
</g>
|
|
1203
|
-
</symbol>
|
|
1204
|
-
<symbol id="wi-view-progress" viewBox="0 0 25 25">
|
|
1205
|
-
<title>WI View Progress</title>
|
|
1206
|
-
<g>
|
|
1207
|
-
<path d="M22.2,25.5H2.8c-1.8,0-3.3-1.5-3.3-3.3V2.8C-0.5,1,1-0.5,2.8-0.5h19.4c1.8,0,3.3,1.5,3.3,3.3v19.4C25.5,24,24,25.5,22.2,25.5z M2.8,0.5c-1.3,0-2.3,1-2.3,2.3v19.4c0,1.3,1,2.3,2.3,2.3h19.4c1.3,0,2.3-1,2.3-2.3V2.8c0-1.3-1-2.3-2.3-2.3H2.8z"/>
|
|
1208
|
-
<path d="M7.8,18.8c0.5,0,0.9-0.4,0.9-0.9v-4.6c0-0.5-0.4-0.9-0.9-0.9s-0.9,0.4-0.9,0.9v4.6C6.9,18.3,7.3,18.8,7.8,18.8z"/>
|
|
1209
|
-
<path d="M17.4,18.8c0.5,0,0.9-0.4,0.9-0.9V7.4c0-0.5-0.4-0.9-0.9-0.9c-0.5,0-0.9,0.4-0.9,0.9v10.5C16.5,18.3,16.9,18.8,17.4,18.8z"/>
|
|
1210
|
-
<path d="M12.6,18.8c0.5,0,0.9-0.4,0.9-0.9v-7.5c0-0.5-0.4-0.9-0.9-0.9c-0.5,0-0.9,0.4-0.9,0.9v7.5C11.7,18.3,12.1,18.8,12.6,18.8z"/>
|
|
1211
|
-
</g>
|
|
1212
|
-
</symbol>
|
|
1213
|
-
<symbol id="wi-manage-group" viewBox="0 0 25 25">
|
|
1214
|
-
<title>WI Manage Group</title>
|
|
1215
|
-
<g>
|
|
1216
|
-
<path d="M12.7775,0.110555556 C12.6219444,-0.0366666667 12.3783333,-0.0366666667 12.2227778,0.110555556 L0.125833333,11.5741667 C0.0455555556,11.6502778 0,11.7561111 0,11.8669444 L0,24.5969444 C0,24.7030556 0.0430555556,24.8069444 0.118055556,24.8819444 C0.193055556,24.9569444 0.296944444,25 0.403333333,25 L24.5969444,25 C24.7030556,25 24.8069444,24.9569444 24.8819444,24.8819444 C24.9569444,24.8066667 25,24.7027778 25,24.5966667 L25,11.8669444 C25,11.7561111 24.9544444,11.6505556 24.8741667,11.5741667 L12.7775,0.110555556 Z M0.806388889,12.0402778 L12.5,0.958611111 L24.1936111,12.0402778 L24.1936111,24.1936111 L0.806388889,24.1936111 L0.806388889,12.0402778 Z"></path>
|
|
1217
|
-
<path d="M18.1452778,12.2311111 L14.785,12.2311111 L14.785,8.87083333 C14.785,8.76472222 14.7419444,8.66083333 14.6669444,8.58583333 C14.5919444,8.51083333 14.4880556,8.46777778 14.3819444,8.46777778 L10.6183333,8.46777778 C10.5122222,8.46777778 10.4083333,8.51083333 10.3333333,8.58583333 C10.2583333,8.66083333 10.2152778,8.76472222 10.2152778,8.87083333 L10.2152778,12.2311111 L6.855,12.2311111 C6.74888889,12.2311111 6.645,12.2741667 6.57,12.3491667 C6.495,12.4241667 6.45194444,12.5280556 6.45194444,12.6341667 L6.45194444,16.3975 C6.45194444,16.5036111 6.495,16.6075 6.57,16.6825 C6.645,16.7575 6.74888889,16.8005556 6.855,16.8005556 L10.2152778,16.8005556 L10.2152778,20.1608333 C10.2152778,20.2669444 10.2583333,20.3708333 10.3333333,20.4458333 C10.4083333,20.5208333 10.5122222,20.5638889 10.6183333,20.5638889 L14.3816667,20.5638889 C14.4877778,20.5638889 14.5916667,20.5208333 14.6666667,20.4458333 C14.7416667,20.3708333 14.7847222,20.2669444 14.7847222,20.1608333 L14.7847222,16.8011111 L18.145,16.8011111 C18.2511111,16.8011111 18.355,16.7580556 18.43,16.6830556 C18.505,16.6080556 18.5480556,16.5041667 18.5480556,16.3980556 L18.5480556,12.6344444 C18.5480556,12.5283333 18.505,12.4244444 18.43,12.3494444 C18.3552778,12.2741667 18.2513889,12.2311111 18.1452778,12.2311111 Z M17.7419444,15.9947222 L14.3816667,15.9947222 C14.2755556,15.9947222 14.1716667,16.0377778 14.0966667,16.1127778 C14.0216667,16.1877778 13.9786111,16.2916667 13.9786111,16.3977778 L13.9786111,19.7580556 L11.0213889,19.7580556 L11.0213889,16.3977778 C11.0213889,16.2916667 10.9783333,16.1877778 10.9033333,16.1127778 C10.8283333,16.0377778 10.7244444,15.9947222 10.6183333,15.9947222 L7.25805556,15.9947222 L7.25805556,13.0375 L10.6183333,13.0375 C10.7244444,13.0375 10.8283333,12.9944444 10.9033333,12.9194444 C10.9783333,12.8444444 11.0213889,12.7405556 11.0213889,12.6344444 L11.0213889,9.27416667 L13.9783333,9.27416667 L13.9783333,12.6344444 C13.9783333,12.7405556 14.0213889,12.8444444 14.0963889,12.9194444 C14.1713889,12.9944444 14.2752778,13.0375 14.3813889,13.0375 L17.7416667,13.0375 L17.7416667,15.9947222 L17.7419444,15.9947222 Z"></path>
|
|
1218
|
-
</g>
|
|
1219
|
-
</symbol>
|
|
1220
|
-
<symbol id="bell-outline" viewBox="0 0 448 512"><path d="M433.884 366.059C411.634 343.809 384 316.118 384 208c0-79.394-57.831-145.269-133.663-157.83A31.845 31.845 0 0 0 256 32c0-17.673-14.327-32-32-32s-32 14.327-32 32c0 6.75 2.095 13.008 5.663 18.17C121.831 62.731 64 128.606 64 208c0 108.118-27.643 135.809-49.893 158.059C-16.042 396.208 5.325 448 48.048 448H160c0 35.29 28.71 64 64 64s64-28.71 64-64h111.943c42.638 0 64.151-51.731 33.941-81.941zM224 480c-17.645 0-32-14.355-32-32h64c0 17.645-14.355 32-32 32zm175.943-64H48.048c-14.223 0-21.331-17.296-11.314-27.314C71.585 353.836 96 314.825 96 208c0-70.741 57.249-128 128-128 70.74 0 128 57.249 128 128 0 106.419 24.206 145.635 59.257 180.686C421.314 398.744 414.11 416 399.943 416z"/></symbol>
|
|
1221
|
-
<symbol id="my-applications" viewBox="0 0 25 25">
|
|
1222
|
-
<g>
|
|
1223
|
-
<g transform="translate(0.000000, 0.629018)">
|
|
1224
|
-
<polygon id="Combined-Shape" points="12 23.0964379 24 15.374457 24 16.3397046 12 24.0616855 0 16.3397046 0 15.374457"></polygon>
|
|
1225
|
-
<polygon id="Combined-Shape" points="12 19.2701998 24 11.5482189 24 12.5134666 12 20.2354474 0 12.5134666 0 11.5482189"></polygon>
|
|
1226
|
-
<path d="M23.25,8.20460469 L12,0.965247611 L0.75,8.20460469 L12,15.4439618 L23.25,8.20460469 Z M24,7.72198089 L24,8.6872285 L12,16.4092094 L0,8.6872285 L0,7.72198089 L12,0 L24,7.72198089 Z" id="Combined-Shape"></path>
|
|
393
|
+
<symbol id="physician-compare-icon" viewBox="0 0 25 25">
|
|
394
|
+
<title>Physician Compare</title>
|
|
395
|
+
<g stroke="none" stroke-width="1">
|
|
396
|
+
<g>
|
|
397
|
+
<path d="M19.2204301,5 L18.1451613,5 C17.7419355,5 17.4731183,5.2601626 17.4731183,5.6504065 C17.4731183,6.04065041 17.7419355,6.30081301 18.1451613,6.30081301 L19.2204301,6.30081301 C19.3548387,6.30081301 19.4892473,6.43089431 19.4892473,6.56097561 L19.4892473,11.8943089 C19.4892473,13.3252033 18.2795699,14.6260163 16.6666667,14.6260163 C15.0537634,14.6260163 13.844086,13.4552846 13.844086,11.8943089 L13.844086,6.56097561 C13.844086,6.43089431 13.9784946,6.30081301 14.1129032,6.30081301 L15.188172,6.30081301 C15.5913978,6.30081301 15.8602151,6.04065041 15.8602151,5.6504065 C15.8602151,5.2601626 15.5913978,5 15.188172,5 L14.1129032,5 C13.3064516,5 12.5,5.6504065 12.5,6.56097561 L12.5,11.8943089 C12.5,13.8455285 13.9784946,15.5365854 15.9946237,15.9268293 C15.8602151,18.398374 14.6505376,19.699187 12.5,19.699187 L12.2311828,19.699187 C9.40860215,19.699187 8.33333333,17.2276423 8.33333333,15.6666667 L8.33333333,14.495935 C9.67741935,14.1056911 10.6182796,12.9349593 10.6182796,11.504065 C10.7526882,9.81300813 9.27419355,8.38211382 7.52688172,8.38211382 C5.77956989,8.38211382 4.16666667,9.81300813 4.16666667,11.504065 C4.16666667,13.0650407 5.37634409,14.3658537 6.98924731,14.6260163 L6.98924731,15.6666667 C6.98924731,18.2682927 8.87096774,21 12.2311828,21 L12.5,21 C15.4569892,21 17.2043011,19.1788618 17.3387097,15.796748 C19.3548387,15.5365854 20.8333333,13.8455285 20.8333333,11.7642276 L20.8333333,6.56097561 C20.8333333,5.6504065 20.1612903,5 19.2204301,5 Z M5.77956989,11.504065 C5.77956989,10.5934959 6.58602151,9.94308943 7.39247312,9.94308943 C8.19892473,9.94308943 9.00537634,10.7235772 9.00537634,11.504065 C9.00537634,12.2845528 8.33333333,13.195122 7.52688172,13.195122 C6.72043011,13.195122 5.77956989,12.4146341 5.77956989,11.504065 Z"></path>
|
|
398
|
+
<path d="M20.718232,0 L4.14364641,0 C1.79558011,0 0,1.82291667 0,3.90625 L0,21.09375 C0,23.3072917 1.93370166,25 4.14364641,25 L20.8563536,25 C23.2044199,25 25,23.1770833 25,21.09375 L25,3.90625 C24.8618785,1.82291667 23.0662983,0 20.718232,0 Z M23.480663,21.09375 C23.480663,22.5260417 22.2375691,23.6979167 20.718232,23.6979167 L4.14364641,23.6979167 C2.62430939,23.6979167 1.38121547,22.5260417 1.38121547,21.09375 L1.38121547,3.90625 C1.38121547,2.47395833 2.62430939,1.30208333 4.14364641,1.30208333 L20.8563536,1.30208333 C22.3756906,1.30208333 23.6187845,2.47395833 23.6187845,3.90625 L23.6187845,21.09375 L23.480663,21.09375 Z"></path>
|
|
1227
399
|
</g>
|
|
1228
400
|
</g>
|
|
1229
401
|
</symbol>
|
|
1230
|
-
<symbol id="my-test-data" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
1231
|
-
<path d="M0 0h24v24H0z" fill="none"/>
|
|
1232
|
-
<path d="M2 20h20v-4H2v4zm2-3h2v2H4v-2zM2 4v4h20V4H2zm4 3H4V5h2v2zm-4 7h20v-4H2v4zm2-3h2v2H4v-2z"/>
|
|
1233
|
-
</symbol>
|
|
1234
|
-
<symbol id="clinicians-icon" viewBox="0 0 25 25" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
1235
|
-
<g id="clinicians">
|
|
1236
|
-
<path d="M24.7,18.8 L24.7,18.8 C24,17.4 22.7,16.3 21.1,15.9 L19.5,15.4 C19.5,15.4 19.4,15.4 19.4,15.3 L19.4,15.2 L19.4,15.2 L20.5,13.9 C21.4,12.9 21.8,11.5 21.7,10.2 L21.5,8.7 C21.3,7.3 20.6,6.1 19.4,5.4 L19.3,5.3 C18.6,4.8 17.7,4.6 16.8,4.6 C15.9,4.6 15,4.9 14.1,5.4 C13.9,5.5 13.8,5.6 13.6,5.8 L13.5,5.9 L13.5,5.9 C13.1,5.1 12.7,4.4 11.9,3.9 L11.9,3.9 C11.1,3.3 10,3 9.1,3 C8,3 7,3.3 6.2,3.9 C5,4.7 4.2,5.9 4,7.3 L3.7,9.1 C3.5,10.6 3.9,12.1 4.9,13.3 L6.1,14.6 C6.1,14.6 6.1,14.6 6.2,14.7 C6.2,14.8 6.2,14.9 6.2,14.9 C6.2,15 6.1,15.1 6,15.1 L4.3,15.6 C2.6,16.1 1.2,17.3 0.4,18.8 C-3.46944695e-16,19.5 -3.46944695e-16,20.3 0.4,21 C0.8,21.6 1.5,22 2.3,22 L10.8,22 L15.7,22 C16,22 16.2,21.9 16.4,21.9 L22.8,21.9 C23.5,21.9 24.2,21.5 24.6,20.9 C25,20.2 25,19.5 24.7,18.8 Z M15.7,21.3 L10.4,21.2 L9,21.2 L2.3,21.3 C1.2,21.3 0.5,20.1 1.1,19.2 C1.8,17.8 3.1,16.8 4.5,16.4 L6.2,15.9 C6.8,15.7 7.1,15.1 6.9,14.5 C6.8,14.4 6.8,14.3 6.7,14.2 L5.5,12.9 C4.6,11.9 4.2,10.6 4.4,9.3 L4.7,7.5 C5,6.3 5.6,5.2 6.6,4.5 C7.4,4 8.2,3.8 9.1,3.8 C9.9,3.8 10.7,4 11.4,4.5 L11.4,4.5 C12.2,5 12.8,5.8 13.2,6.7 C13.3,7 13.4,7.3 13.4,7.7 L13.4,7.7 L13.6,9.4 C13.7,10.5 13.4,11.5 12.8,12.4 C12.7,12.5 12.6,12.7 12.5,12.8 L12.3,13 L11.2,14.2 C11.1,14.3 11,14.4 11,14.5 C10.8,15.1 11.1,15.6 11.7,15.8 L12.8,16.2 L13.5,16.4 C13.8,16.5 13.8,16.5 14,16.6 C15.3,17.1 16.3,18 17,19.2 C17.5,20.1 16.8,21.3 15.7,21.3 Z M13.1,14.2 L14.2,15.4 L14.2,15.4 L14.2,15.5 L14.1,15.6 L14,15.6 C13.9,15.6 13.8,15.6 13.8,15.6 L12.2,15 C12.1,15 12,14.9 11.9,14.8 C11.8,14.7 11.8,14.6 11.9,14.5 L12,14.4 L12.8,13.5 C12.9,13.9 13,14 13.1,14.2 Z M23.8,20.4 C23.6,20.7 23.2,21 22.8,21 L17.5,21 L17.5,21 C17.9,20.3 17.9,19.5 17.6,18.8 C17,17.7 16,16.7 14.9,16.1 C15.1,15.8 15.1,15.5 15,15.2 C15,15.1 14.9,15 14.8,14.9 L13.7,13.7 C13.5,13.5 13.4,13.3 13.2,13.1 L13.2,13.1 C14,12 14.4,10.7 14.3,9.3 L14.1,7.6 C14.1,7.4 14,7.1 14,6.9 C14,6.9 14,6.9 14,6.8 L14.1,6.7 C14.3,6.5 14.5,6.3 14.7,6.2 C15.4,5.8 16.1,5.5 16.8,5.5 C17.5,5.5 18.2,5.6 18.8,6 L18.9,6.1 L18.9,6.1 C19.8,6.7 20.5,7.7 20.6,8.9 L20.8,10.4 C20.9,11.5 20.6,12.5 19.9,13.4 L18.8,14.7 C18.7,14.8 18.6,14.9 18.6,15 C18.5,15.3 18.5,15.6 18.7,15.9 C18.8,16.2 19.3,16.3 19.6,16.4 L21.2,16.9 C22.5,17.3 23.4,18.3 24,19.5 C24.1,19.6 24.1,20.1 23.8,20.4 Z"></path>
|
|
1237
|
-
</g>
|
|
1238
|
-
</symbol>
|
|
1239
|
-
<symbol id="payment-icon" viewBox="0 0 25 25">
|
|
1240
|
-
<g id="payment">
|
|
1241
|
-
<path d="M12.1618195,20.7968379 L12.1618195,12.9463878 C10.781964,12.4923749 9.69910643,12.0472873 8.91321499,11.6111111 C8.11242203,11.1666644 7.51873961,10.6203736 7.1321499,9.97222222 C6.7455602,9.32407083 6.55226824,8.5 6.55226824,7.5 C6.55226824,6.14814139 7.0447025,5.01389347 8.0295858,4.09722222 C9.01446909,3.18055097 10.3905237,2.65740806 12.1577909,2.52777778 L12.1577909,0.611111111 C12.1577909,0.425925 12.2130172,0.277778333 12.3234714,0.166666667 C12.4339256,0.055555 12.5811957,0 12.765286,0 L13.2899408,0 C13.4740312,0 13.6213012,0.055555 13.7317554,0.166666667 C13.8422096,0.277778333 13.8974359,0.425925 13.8974359,0.611111111 L13.8974359,2.55555556 C15.057205,2.66666722 16.0512779,2.97221972 16.8796844,3.47222222 C17.7080909,3.97222472 18.3339887,4.56944097 18.7573964,5.26388889 C19.1808042,5.95833681 19.4109137,6.65740389 19.4477318,7.36111111 C19.4477318,7.50926 19.3971077,7.63888833 19.295858,7.75 C19.1946083,7.86111167 19.0519404,7.91666667 18.8678501,7.91666667 L18.3155819,7.91666667 C18.1867186,7.91666667 18.0578573,7.87500042 17.9289941,7.79166667 C17.8001308,7.70833292 17.7264958,7.56481583 17.7080868,7.36111111 C17.5976326,6.43518056 17.1051983,5.67129931 16.2307692,5.06944444 C15.5784594,4.62047057 14.8006641,4.33896279 13.8973694,4.22491735 L13.8973694,11.7499783 C15.4069766,12.2314839 16.5851371,12.6944422 17.4319527,13.1388889 C18.2787682,13.5833356 18.9184725,14.1203672 19.3510848,14.75 C19.7836971,15.3796328 20,16.1944394 20,17.1944444 C20,18.7500078 19.4615438,19.9861065 18.3846154,20.9027778 C17.3076869,21.819449 15.8119754,22.3425919 13.8974359,22.4722222 L13.8974359,24.3888889 C13.8974359,24.574075 13.8422096,24.7222217 13.7317554,24.8333333 C13.6213012,24.944445 13.4740312,25 13.2899408,25 L12.765286,25 C12.5811957,25 12.4339256,24.944445 12.3234714,24.8333333 C12.2130172,24.7222217 12.1577909,24.574075 12.1577909,24.3888889 L12.1577909,22.4444444 C10.9059766,22.3518514 9.81985996,22.0648172 8.89940828,21.5833333 C7.97895661,21.1018494 7.27482164,20.5046332 6.78698225,19.7916667 C6.29914286,19.0787001 6.03681807,18.3148189 6,17.5 C6,17.3518511 6.05522627,17.2222228 6.16568047,17.1111111 C6.27613467,17 6.41420036,16.9444444 6.57988166,16.9444444 L7.1321499,16.9444444 C7.4635125,16.9444444 7.66600884,17.1296278 7.73964497,17.5 C7.86850821,18.3888933 8.37474903,19.1666633 9.25838264,19.8333333 C9.97320875,20.3726414 10.9410143,20.6938096 12.1618195,20.7968379 Z M13.8973694,20.8073012 C15.2350836,20.7193579 16.2613967,20.4085927 16.9763314,19.875 C17.8323514,19.2361079 18.260355,18.3425983 18.260355,17.1944444 C18.260355,16.4907372 18.0532565,15.9120393 17.6390533,15.4583333 C17.22485,15.0046274 16.6219632,14.6064832 15.8303748,14.2638889 C15.3408921,14.052044 14.6965598,13.8065676 13.8973694,13.5274567 L13.8973694,20.8073012 Z M12.1618195,4.19615363 C11.0995324,4.28099937 10.2283731,4.54894668 9.54832347,5 C8.71071245,5.55555833 8.29191321,6.38888333 8.29191321,7.5 C8.29191321,8.22222583 8.48060298,8.81944208 8.85798817,9.29166667 C9.23537335,9.76389125 9.80144264,10.1712946 10.556213,10.5138889 C10.9788577,10.7057296 11.5140579,10.9193435 12.1618195,11.1547327 L12.1618195,4.19615363 Z"></path>
|
|
1242
|
-
</g>
|
|
1243
|
-
</symbol>
|
|
1244
|
-
<symbol id="reports-icon" viewBox="0 0 25 25">
|
|
1245
|
-
<g id="reports-icon" >
|
|
1246
|
-
<path d="M17.933,0 C18.1717358,0 18.3968908,0.110656353 18.5402903,0.296256203 L22.7874693,5.70648432 C22.9255465,5.88258285 23,6.10021604 23,6.324 L23,24 C23,24.5521424 22.5521424,25 22,25 L3,25 C2.44785763,25 2,24.5521424 2,24 L2,1 C2,0.447857625 2.44785763,0 3,0 L17.933,0 Z M16.937,1 L3,1 L3,24 L22,24 L22,7 L18.4371948,7 C17.6087677,7 16.9371948,6.32842712 16.9371948,5.5 L16.937,1 Z M16.5,20 C16.7761424,20 17,20.2238576 17,20.5 C17,20.7761424 16.7761424,21 16.5,21 L8.5,21 C8.22385763,21 8,20.7761424 8,20.5 C8,20.2238576 8.22385763,20 8.5,20 L16.5,20 Z M12.5,6 C12.7761424,6 13,6.22385763 13,6.5 L12.999,16.41 L15.4105156,14 C15.5840819,13.8264336 15.8535063,13.8071485 16.0483745,13.9421445 L16.1176224,14 C16.3128845,14.1952621 16.3128845,14.5118446 16.1176224,14.7071068 L16.1176224,14.7071068 L12.8535534,17.9711757 C12.6582912,18.1664379 12.3417088,18.1664379 12.1464466,17.9711757 L12.1464466,17.9711757 L8.88237764,14.7071068 C8.6871155,14.5118446 8.6871155,14.1952621 8.88237764,14 C9.07763979,13.8047379 9.39422228,13.8047379 9.58948443,14 L9.58948443,14 L11.999,16.41 L12,6.5 C12,6.22385763 12.2238576,6 12.5,6 Z M17.937,1.148 L17.9371948,5.5 C17.9371948,5.77614237 18.1610524,6 18.4371948,6 L21.746,6 L17.937,1.148 Z" id="Combined-Shape"></path>
|
|
1247
|
-
</g>
|
|
1248
|
-
</symbol>
|
|
1249
402
|
<symbol id="hardship-icon" viewBox="0 0 25 25" version="1.1">
|
|
1250
403
|
<title>Hardship Icon</title>
|
|
1251
404
|
<g>
|
|
1252
|
-
<g
|
|
1253
|
-
<path d="M18.7721739,2.6119403 L14.4991304,2.6119403 L12.4813043,2.6119403 C12.5178261,2.44402985 12.5543478,2.2761194 12.5543478,2.0988806 C12.5543478,0.942164179 11.6321739,0 10.5,0 C9.36782609,0 8.44565217,0.942164179 8.44565217,2.0988806 C8.44565217,2.2761194 8.47304348,2.44402985 8.51869565,2.6119403 L6.49173913,2.6119403 L2.21869565,2.6119403 C0.995217391,2.6119403 0,3.62873134 0,4.8880597 L0,22.733209 C0,23.983209 0.995217391,25 2.21869565,25 L18.7721739,25 C19.9956522,25 21,23.983209 21,22.7238806 L21,4.8880597 C21,3.62873134 19.9956522,2.6119403 18.7721739,2.6119403 Z M10.5,0.932835821 C11.13,0.932835821 11.6413043,1.45522388 11.6413043,2.0988806 C11.6413043,2.31343284 11.5682609,2.5 11.4769565,2.66791045 C11.403913,2.7891791 11.3126087,2.9011194 11.2030435,2.99440299 C11.1482609,3.04104478 11.0843478,3.08768657 11.0204348,3.125 C10.9747826,3.14365672 10.9382609,3.17164179 10.8926087,3.19029851 C10.7647826,3.22761194 10.6369565,3.26492537 10.5,3.26492537 C10.3630435,3.26492537 10.2352174,3.22761194 10.1165217,3.18097015 C10.0708696,3.16231343 10.0343478,3.14365672 9.98869565,3.11567164 C9.92478261,3.07835821 9.86086957,3.03171642 9.80608696,2.98507463 C9.6873913,2.89179104 9.59608696,2.77052239 9.52304348,2.63992537 C9.43173913,2.47201493 9.36782609,2.29477612 9.36782609,2.08955224 C9.35869565,1.45522388 9.87,0.932835821 10.5,0.932835821 Z M20.0869565,22.7238806 C20.0869565,23.4608209 19.5026087,24.0671642 18.7721739,24.0671642 L2.21869565,24.0671642 C1.4973913,24.0671642 0.903913043,23.4701493 0.903913043,22.7238806 L0.903913043,4.8880597 C0.913043478,4.14179104 1.4973913,3.54477612 2.21869565,3.54477612 L6.49173913,3.54477612 L6.49173913,4.38432836 C6.49173913,4.95335821 6.93913043,5.41044776 7.49608696,5.41044776 L13.503913,5.41044776 C14.0608696,5.41044776 14.5082609,4.95335821 14.5082609,4.38432836 L14.5082609,3.54477612 L18.7813043,3.54477612 C19.5026087,3.54477612 20.096087,4.14179104 20.096087,4.8880597 L20.096087,22.7238806 L20.0869565,22.7238806 L20.0869565,22.7238806 Z"
|
|
1254
|
-
<g
|
|
1255
|
-
<rect
|
|
1256
|
-
<rect
|
|
1257
|
-
<rect
|
|
1258
|
-
<polygon
|
|
405
|
+
<g transform="translate(2.000000, 0.000000)" fill-rule="nonzero">
|
|
406
|
+
<path d="M18.7721739,2.6119403 L14.4991304,2.6119403 L12.4813043,2.6119403 C12.5178261,2.44402985 12.5543478,2.2761194 12.5543478,2.0988806 C12.5543478,0.942164179 11.6321739,0 10.5,0 C9.36782609,0 8.44565217,0.942164179 8.44565217,2.0988806 C8.44565217,2.2761194 8.47304348,2.44402985 8.51869565,2.6119403 L6.49173913,2.6119403 L2.21869565,2.6119403 C0.995217391,2.6119403 0,3.62873134 0,4.8880597 L0,22.733209 C0,23.983209 0.995217391,25 2.21869565,25 L18.7721739,25 C19.9956522,25 21,23.983209 21,22.7238806 L21,4.8880597 C21,3.62873134 19.9956522,2.6119403 18.7721739,2.6119403 Z M10.5,0.932835821 C11.13,0.932835821 11.6413043,1.45522388 11.6413043,2.0988806 C11.6413043,2.31343284 11.5682609,2.5 11.4769565,2.66791045 C11.403913,2.7891791 11.3126087,2.9011194 11.2030435,2.99440299 C11.1482609,3.04104478 11.0843478,3.08768657 11.0204348,3.125 C10.9747826,3.14365672 10.9382609,3.17164179 10.8926087,3.19029851 C10.7647826,3.22761194 10.6369565,3.26492537 10.5,3.26492537 C10.3630435,3.26492537 10.2352174,3.22761194 10.1165217,3.18097015 C10.0708696,3.16231343 10.0343478,3.14365672 9.98869565,3.11567164 C9.92478261,3.07835821 9.86086957,3.03171642 9.80608696,2.98507463 C9.6873913,2.89179104 9.59608696,2.77052239 9.52304348,2.63992537 C9.43173913,2.47201493 9.36782609,2.29477612 9.36782609,2.08955224 C9.35869565,1.45522388 9.87,0.932835821 10.5,0.932835821 Z M20.0869565,22.7238806 C20.0869565,23.4608209 19.5026087,24.0671642 18.7721739,24.0671642 L2.21869565,24.0671642 C1.4973913,24.0671642 0.903913043,23.4701493 0.903913043,22.7238806 L0.903913043,4.8880597 C0.913043478,4.14179104 1.4973913,3.54477612 2.21869565,3.54477612 L6.49173913,3.54477612 L6.49173913,4.38432836 C6.49173913,4.95335821 6.93913043,5.41044776 7.49608696,5.41044776 L13.503913,5.41044776 C14.0608696,5.41044776 14.5082609,4.95335821 14.5082609,4.38432836 L14.5082609,3.54477612 L18.7813043,3.54477612 C19.5026087,3.54477612 20.096087,4.14179104 20.096087,4.8880597 L20.096087,22.7238806 L20.0869565,22.7238806 L20.0869565,22.7238806 Z"></path>
|
|
407
|
+
<g transform="translate(4.000000, 9.000000)">
|
|
408
|
+
<rect x="3.50571429" y="7.24" width="7.97142857" height="1"></rect>
|
|
409
|
+
<rect x="0.848571429" y="7.24" width="1.37142857" height="1"></rect>
|
|
410
|
+
<rect x="6.50571429" y="2.17" width="4.97142857" height="1"></rect>
|
|
411
|
+
<polygon points="2.13428571 4.04 0.402857143 2.01 1.01142857 1.31 2.13428571 2.62 4.03714286 0.41 4.64571429 1.11"></polygon>
|
|
1259
412
|
</g>
|
|
1260
413
|
</g>
|
|
1261
414
|
</g>
|
|
@@ -1264,36 +417,25 @@
|
|
|
1264
417
|
<title>Targeted Review</title>
|
|
1265
418
|
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
1266
419
|
<g transform="translate(1.000000, 1.000000)">
|
|
1267
|
-
<path d="M15.6521739,13.3410862 C14.9799955,14.9155188 13.3391142,15.8471825 11.6426584,15.617619 C9.9462025,15.3880555 8.61194453,14.0537975 8.38238102,12.3573416 C8.15281751,10.6608858 9.08448121,9.0200045 10.6589138,8.34782609"
|
|
1268
|
-
<path d="M19.826087,11.4686261 C19.5475194,15.6524455 16.0240274,18.8752139 11.8318419,18.780577 C7.63965639,18.6859401 4.26519733,15.3074531 4.17572893,11.1153254 C4.08626053,6.92319774 7.31350554,3.40382874 11.4978365,3.13043478"
|
|
1269
|
-
<path d="M22.9565217,10.4801044 C22.9565217,10.8094757 22.9565217,11.1488279 22.9565217,11.4781992 C22.9565217,16.1251852 20.1544991,20.3136359 15.8592987,22.0872623 C11.5640982,23.8608888 6.62327363,22.8696906 3.3445233,19.5766243 C0.065772964,16.283558 -0.903887735,11.3384639 0.888438166,7.05103466 C2.68076407,2.7636054 6.8813862,-0.0200950351 11.5283306,0 C11.867683,0 12.2070354,0 12.5264259,0"
|
|
1270
|
-
<path d="M23.4104348,8.34782609 C23.4626087,8.69217391 23.5147826,9.04695652 23.546087,9.39130435"
|
|
1271
|
-
<path d="M19.0559527,8.3085908 L16.1993898,7.27346855 C15.9679825,7.18675289 15.7867762,7.00255341 15.7042523,6.77015223 L14.6758896,3.9211919 C14.5392501,3.60164864 14.6150694,3.23112279 14.8663271,2.99053153 L17.5610181,0.255529619 C17.7680939,0.0454487694 18.069052,-0.043464617 18.357445,0.020237671 C18.6458381,0.083939959 18.8810085,0.291277194 18.9797777,0.568915255 L19.7415278,2.61067015 C19.8301804,2.85007338 20.017334,3.04018548 20.2557092,3.13297955 L22.4076532,3.94968151 C22.6793557,4.05644917 22.8788566,4.29253202 22.938341,4.57768034 C22.9978255,4.86282867 22.9092906,5.15867892 22.7028314,5.36466513 L19.960531,8.07117744 C19.7289278,8.31564041 19.3782081,8.40768945 19.0559527,8.3085908 Z"
|
|
1272
|
-
<line x1="12.5217391" y1="10.4347826" x2="16.6956522" y2="6.26086957"
|
|
1273
|
-
</g>
|
|
1274
|
-
</g>
|
|
1275
|
-
</symbol>
|
|
1276
|
-
<symbol id="youtube-icon" width="19px" height="14px" viewBox="0 0 19 14" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
1277
|
-
<g id="5.3.2020" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
1278
|
-
<g id="QPP-Footer-Desktop-SPECS" transform="translate(-801.000000, -179.000000)" fill="#242424" fill-rule="nonzero">
|
|
1279
|
-
<g id="Group-3" transform="translate(763.000000, 140.000000)">
|
|
1280
|
-
<g id="Group" transform="translate(38.000000, 39.000000)">
|
|
1281
|
-
<path d="M17.7486957,2.84298208 C17.551087,2.10010036 16.9670652,1.51515412 16.2265217,1.3162724 C14.8843478,0.955555556 9.5,0.955555556 9.5,0.955555556 C9.5,0.955555556 4.11565217,0.955555556 2.77347826,1.3162724 C2.03293478,1.51515412 1.44891304,2.10010036 1.25130435,2.84298208 C0.891304348,4.19030824 0.891304348,7 0.891304348,7 C0.891304348,7 0.891304348,9.80969176 1.25130435,11.1570179 C1.44891304,11.8998996 2.03293478,12.4848459 2.77347826,12.6837276 C4.11565217,13.0444444 9.5,13.0444444 9.5,13.0444444 C9.5,13.0444444 14.8843478,13.0444444 16.2265217,12.6837276 C16.9670652,12.4848459 17.551087,11.8998996 17.7486957,11.1570179 C18.1086957,9.80969176 18.1086957,7 18.1086957,7 C18.1086957,7 18.1086957,4.19030824 17.7486957,2.84298208 Z M7.73913043,9.5513405 L7.73913043,4.4486595 L12.2391304,7 L7.73913043,9.5513405 Z" id="Youtube-icon"></path>
|
|
1282
|
-
</g>
|
|
1283
|
-
</g>
|
|
420
|
+
<path d="M15.6521739,13.3410862 C14.9799955,14.9155188 13.3391142,15.8471825 11.6426584,15.617619 C9.9462025,15.3880555 8.61194453,14.0537975 8.38238102,12.3573416 C8.15281751,10.6608858 9.08448121,9.0200045 10.6589138,8.34782609" stroke-linecap="round"></path>
|
|
421
|
+
<path d="M19.826087,11.4686261 C19.5475194,15.6524455 16.0240274,18.8752139 11.8318419,18.780577 C7.63965639,18.6859401 4.26519733,15.3074531 4.17572893,11.1153254 C4.08626053,6.92319774 7.31350554,3.40382874 11.4978365,3.13043478" stroke-linecap="round"></path>
|
|
422
|
+
<path d="M22.9565217,10.4801044 C22.9565217,10.8094757 22.9565217,11.1488279 22.9565217,11.4781992 C22.9565217,16.1251852 20.1544991,20.3136359 15.8592987,22.0872623 C11.5640982,23.8608888 6.62327363,22.8696906 3.3445233,19.5766243 C0.065772964,16.283558 -0.903887735,11.3384639 0.888438166,7.05103466 C2.68076407,2.7636054 6.8813862,-0.0200950351 11.5283306,0 C11.867683,0 12.2070354,0 12.5264259,0" stroke-linecap="round"></path>
|
|
423
|
+
<path d="M23.4104348,8.34782609 C23.4626087,8.69217391 23.5147826,9.04695652 23.546087,9.39130435" stroke-linecap="round"></path>
|
|
424
|
+
<path d="M19.0559527,8.3085908 L16.1993898,7.27346855 C15.9679825,7.18675289 15.7867762,7.00255341 15.7042523,6.77015223 L14.6758896,3.9211919 C14.5392501,3.60164864 14.6150694,3.23112279 14.8663271,2.99053153 L17.5610181,0.255529619 C17.7680939,0.0454487694 18.069052,-0.043464617 18.357445,0.020237671 C18.6458381,0.083939959 18.8810085,0.291277194 18.9797777,0.568915255 L19.7415278,2.61067015 C19.8301804,2.85007338 20.017334,3.04018548 20.2557092,3.13297955 L22.4076532,3.94968151 C22.6793557,4.05644917 22.8788566,4.29253202 22.938341,4.57768034 C22.9978255,4.86282867 22.9092906,5.15867892 22.7028314,5.36466513 L19.960531,8.07117744 C19.7289278,8.31564041 19.3782081,8.40768945 19.0559527,8.3085908 Z"></path>
|
|
425
|
+
<line x1="12.5217391" y1="10.4347826" x2="16.6956522" y2="6.26086957" stroke-linecap="round"></line>
|
|
1284
426
|
</g>
|
|
1285
427
|
</g>
|
|
1286
428
|
</symbol>
|
|
1287
|
-
<symbol id="
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
|
|
429
|
+
<symbol id="manage-users" viewBox="0 0 25 25">
|
|
430
|
+
<title>manage-users</title>
|
|
431
|
+
<g>
|
|
432
|
+
<path d="M4.4,10.8V0.2H3.6v10.7c-1.9,0.2-3.4,1.8-3.4,3.8s1.5,3.6,3.4,3.8v6.4h0.9v-6.4c1.9-0.2,3.4-1.8,3.4-3.8
|
|
433
|
+
S6.3,11.1,4.4,10.8z M4,17.6c-1.6,0-3-1.3-3-3s1.3-3,3-3s3,1.3,3,3S5.6,17.6,4,17.6z"/>
|
|
434
|
+
<path d="M12.9,2.3V0.2h-0.9v2.2c-1.9,0.2-3.4,1.8-3.4,3.8c0,2,1.5,3.6,3.4,3.8v14.9h0.9V9.9c1.9-0.2,3.4-1.8,3.4-3.8
|
|
435
|
+
C16.3,4.2,14.8,2.6,12.9,2.3z M12.5,9.1c-1.6,0-3-1.3-3-3s1.3-3,3-3s3,1.3,3,3S14.1,9.1,12.5,9.1z"/>
|
|
436
|
+
<path d="M24.8,18.9c0-2-1.5-3.6-3.4-3.8V0.2h-0.9v14.9c-1.9,0.2-3.4,1.8-3.4,3.8s1.5,3.6,3.4,3.8v2.2h0.9v-2.2
|
|
437
|
+
C23.3,22.4,24.8,20.8,24.8,18.9z M21,21.8c-1.6,0-3-1.3-3-3c0-1.6,1.3-3,3-3s3,1.3,3,3C24,20.5,22.6,21.8,21,21.8z"/>
|
|
438
|
+
</g>
|
|
1297
439
|
</symbol>
|
|
1298
440
|
</svg>
|
|
1299
441
|
</pre></td></tr></table></pre>
|
|
@@ -1302,10 +444,9 @@
|
|
|
1302
444
|
</div><!-- /wrapper -->
|
|
1303
445
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
1304
446
|
Code coverage generated by
|
|
1305
|
-
<a href="https://istanbul.js.org/" target="_blank">istanbul</a>
|
|
1306
|
-
at
|
|
447
|
+
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
|
|
448
|
+
at Sun Sep 11 2022 11:32:55 GMT-0700 (Pacific Daylight Time)
|
|
1307
449
|
</div>
|
|
1308
|
-
</div>
|
|
1309
450
|
<script src="../../prettify.js"></script>
|
|
1310
451
|
<script>
|
|
1311
452
|
window.onload = function () {
|