\n\t\tverb=\"POST\"\n\t\tpath={`/partners/members/account-number`}\n\t\t{...props}\n\t/>\n);\n\nexport type UseCreateGUIDProps = Omit<\n\tUseMutateProps<\n\t\tGUIDResponse,\n\t\t| Response400\n\t\t| Response401\n\t\t| Response404\n\t\t| Response500\n\t\t| ErrorResponseResponse,\n\t\tvoid,\n\t\tMemberAccountRequest,\n\t\tvoid\n\t>,\n\t'path' | 'verb'\n>;\n\n/**\n * Save account number and return a GUID.\n */\nexport const useCreateGUID = (props: UseCreateGUIDProps) =>\n\tuseMutate<\n\t\tGUIDResponse,\n\t\t| Response400\n\t\t| Response401\n\t\t| Response404\n\t\t| Response500\n\t\t| ErrorResponseResponse,\n\t\tvoid,\n\t\tMemberAccountRequest,\n\t\tvoid\n\t>('POST', `/partners/members/account-number`, props);\n","/* eslint-disable react-hooks/rules-of-hooks */\nimport config from 'jss-boilerplate/temp/config.js';\n\nimport api from './api/useCreateGUID.api';\n\nexport function useCreateGUID() {\n\tconst base = `${config.australianSuperApi?.apiDomain}${config.australianSuperApi?.apiPathPartner}`;\n\n\tconst { mutate: requestGuid, error, loading } = api.useCreateGUID({\n\t\tbase,\n\t});\n\n\treturn { requestGuid, error, loading };\n}\n","/* eslint-disable react-hooks/rules-of-hooks */\n/* eslint-disable @typescript-eslint/camelcase */\nimport { usePostMock } from 'core/api/mocks';\nimport { smartMockApi } from 'core/api';\nimport { useUpdateProfileActions } from 'core/api/client/MemberApi';\n\nexport default smartMockApi({\n\tuseUpdateProfileActions: {\n\t\tlive: useUpdateProfileActions,\n\t\tmock: () =>\n\t\t\tusePostMock({\n\t\t\t\tpayload: {\n\t\t\t\t\tdata: {\n\t\t\t\t\t\tprofile_actions: {\n\t\t\t\t\t\t\treview_your_personal_details: true,\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t}),\n\t},\n});\n","export const UpdateProfileActionsTypes = {\n\tREVIEW_YOUR_PERSONAL_DETAILS: 'review_your_personal_details',\n\tCOMMUNICATION_PREFERENCE: 'communication_preference',\n\tMANAGE_YOUR_BENEFICIARIES: 'manage_your_beneficiaries',\n\tCONSOLIDATE_YOUR_SUPER: 'consolidate_your_super_last_updated_date',\n\tMAKE_CONTRIBUTION: 'make_contribution_last_updated_date',\n\tTELL_YOUR_EMPLOYER: 'tell_your_employer_last_updated_date',\n\tADD_YOUR_MOBILE_NUMBER: 'add_your_mobile_number',\n};\n\nexport type UpdateProfileActionsValues = {\n\tdata: {\n\t\tprofile_actions: {\n\t\t\treview_your_personal_details?: boolean;\n\t\t\tcommunication_preference?: boolean;\n\t\t\ttell_your_employer_last_updated_date?: string;\n\t\t\tconsolidate_your_super_last_updated_date?: string;\n\t\t\tmake_contribution_last_updated_date?: string;\n\t\t\tadd_your_mobile_number?: boolean;\n\t\t};\n\t};\n};\n","/* eslint-disable @typescript-eslint/camelcase */\n\nimport { format } from 'date-fns';\nimport config from 'jss-boilerplate/temp/config.js';\nimport { useMemberContext } from 'core/hooks';\n\nimport api from './api';\nimport {\n\tUpdateProfileActionsTypes,\n\tUpdateProfileActionsValues,\n} from './useUpdateProfileActions.types';\n\nconst base = `${config.australianSuperApi?.apiDomain}${config.australianSuperApi?.apiPathMember}`;\n\nexport function useUpdateProfileActionsHook() {\n\tconst memberContext = useMemberContext() ?? {};\n\n\tconst { mutate: updateProfileActionsRequest } = api.useUpdateProfileActions({\n\t\tbase,\n\t\tparty_type_id: memberContext.party_type_id ?? '',\n\t});\n\n\tconst updateProfileActions = async (updateType: string) => {\n\t\tconst profileActionsPayload: UpdateProfileActionsValues = {\n\t\t\tdata: { profile_actions: {} },\n\t\t};\n\n\t\tif (\n\t\t\tupdateType === UpdateProfileActionsTypes.CONSOLIDATE_YOUR_SUPER ||\n\t\t\tupdateType === UpdateProfileActionsTypes.TELL_YOUR_EMPLOYER ||\n\t\t\tupdateType === UpdateProfileActionsTypes.MAKE_CONTRIBUTION\n\t\t) {\n\t\t\tconst currDateString = format(new Date(), 'yyyy-MM-dd');\n\t\t\tprofileActionsPayload.data.profile_actions[updateType] = currDateString;\n\t\t} else {\n\t\t\tprofileActionsPayload.data.profile_actions[updateType] = true;\n\t\t}\n\n\t\ttry {\n\t\t\tawait updateProfileActionsRequest(profileActionsPayload);\n\t\t} catch (e) {\n\t\t\tconsole.error('Error in update profile actions');\n\t\t}\n\t};\n\n\treturn {\n\t\tupdateProfileActions,\n\t};\n}\n","/* eslint-disable @typescript-eslint/camelcase */\n/* eslint-disable react-hooks/rules-of-hooks */\n\nimport { useGetMock } from 'core/api/mocks';\nimport { smartMockApi } from 'core/api';\nimport { useGetMember } from 'core/api/client/MemberApi';\nimport GetMemberMockData from 'core/sitecore/member/fallback';\n\nexport default smartMockApi({\n\tuseGetMember: {\n\t\tlive: useGetMember,\n\t\tmock: () => useGetMock({ payload: GetMemberMockData }),\n\t},\n});\n","/* eslint-disable react-hooks/rules-of-hooks */\n/* eslint-disable @typescript-eslint/camelcase */\nimport config from 'jss-boilerplate/temp/config.js';\n\nimport { useMemberContext } from 'core/hooks';\nimport { PHONE_NUMBERS_TYPE } from 'core/constants';\n\nimport api from './api';\n\nexport const useGetMemberData = (isAuthenticated = false) => {\n\tconst base = `${config.australianSuperApi?.apiDomain}${config.australianSuperApi?.apiPathMember}`;\n\tconst memberContext = useMemberContext() ?? {};\n\n\tconst {\n\t\tdata: contactDetailsObject,\n\t\tloading,\n\t\terror,\n\t\trefetch,\n\t} = api.useGetMember({\n\t\tbase,\n\t\tparty_type_id: memberContext.party_type_id ?? '',\n\t\tlazy: !isAuthenticated,\n\t});\n\n\tconst mobileObj = contactDetailsObject?.data?.phone_numbers?.find(\n\t\tphone =>\n\t\t\tphone.type === PHONE_NUMBERS_TYPE.MOBILE &&\n\t\t\tphone.number !== '' &&\n\t\t\tphone.number !== null,\n\t);\n\n\tconst mobileNumberApiResponse = !!mobileObj ? mobileObj?.number : undefined;\n\tconst emailAddressApiResponse =\n\t\tcontactDetailsObject?.data?.email_address ?? '';\n\n\treturn {\n\t\tmobileNumberApiResponse,\n\t\temailAddressApiResponse,\n\t\tcontactDetailsObject,\n\t\tloading,\n\t\terror,\n\t\trefetch,\n\t};\n};\n","import styled from 'styled-components';\n\nimport * as mx from 'core/styles/mixins';\nimport * as vr from 'core/styles/variables';\n\nlet Content = styled.div`\n\twidth: ${vr.mobileLayoutWidth};\n\tpadding: 0 ${vr.mobileLayoutPadding};\n\tmargin: 0 auto;\n\n\t${mx.bp('m')`\n\t\tpadding: 0 ${vr.desktopLayoutPadding};\n\t\tmax-width: ${vr.desktopLayoutWidth};\n\t`}\n`;\n\n// If layout paddings are ever somehow nested,\n// the padding shouldn't double up (potential edge case)\nContent = styled(Content)`\n\t${Content} {\n\t\tpadding: 0;\n\t}\n`;\n\n// Can't export a mutable 'let' binding; so assign to a new const\nexport const Padding = Content;\n","import React from 'react';\n\nimport * as S from './LayoutPadding.style';\n\nexport interface IProps {\n\tchildren: React.ReactNode;\n}\n\nconst LayoutPadding = ({ children }: IProps) => (\n\t{children} \n);\n\nexport default LayoutPadding;\n","/**\n * The only consistent way we can distinguish a Promise from\n * other object is whether it has a .then() function.\n *\n * Ref: https://stackoverflow.com/a/27746324.\n *\n * @param {Object} obj\n * @returns {boolean}\n */\nexport function isPromise(obj) {\n\tconst thenFn = obj && obj.then;\n\n\treturn !!thenFn && typeof thenFn === 'function';\n}\n\n/**\n * Strict object typecheck:\n * - Is type 'object'.\n * - Not a function or an array (these are also type 'object').\n * - Not null (typeof 'object' returns true for this too).\n * - Not a 'Promise' type object.\n *\n * @param {Object} obj\n * @returns {boolean}\n */\nexport function isObject(obj) {\n\tconst correctType = typeof obj === 'object' && obj === Object(obj);\n\tconst notArray = !Array.isArray(obj);\n\tconst notFunction = typeof obj !== 'function';\n\tconst notNull = obj != null;\n\tconst notPromise = !isPromise(obj);\n\n\treturn correctType && notArray && notFunction && notNull && notPromise;\n}\n\n/**\n * JSON parse try/catch check.\n *\n * @param {string} str - JSON string or JavaScript object.\n * @returns {boolean}\n */\nexport function isValidJSON(str) {\n\tif (typeof str !== 'string') {\n\t\tif (isObject(str)) {\n\t\t\tstr = JSON.stringify(str);\n\t\t} else {\n\t\t\treturn false;\n\t\t}\n\t}\n\n\ttry {\n\t\tJSON.parse(str);\n\t} catch (e) {\n\t\treturn false;\n\t}\n\n\treturn true;\n}\n\n/**\n * Loop through nested object keys ensuring they exist, and creating them if they dont.\n * Optionally set a terminal value at the end of the path. This is so one can confidently\n * assign values to nested keys when their existence isn't guaranteed.\n *\n * @param {Object} obj\n * @param {string[]} path - The prospect path.\n * @param {any} terminalValue - Value to set at the end of the path to.\n *\n * @returns {Object} Returns back the object (if required). Note that alone this function already mutates the object passed into it.\n */\nexport function objSet(obj, path, terminalValue) {\n\tlet branch = obj;\n\n\tpath.forEach((nextBranch, idx) => {\n\t\tif (idx === path.length - 1) {\n\t\t\tbranch[nextBranch] = terminalValue;\n\t\t} else if (!branch[nextBranch]) {\n\t\t\tbranch[nextBranch] = {};\n\t\t}\n\n\t\tbranch = branch[nextBranch];\n\t});\n\n\treturn obj;\n}\n","import React from 'react';\n\n// ------------------------------------\n\nexport const FONT_NAMES = {\n\tGOTHAM_ROUNDED_MEDIUM:\n\t\t'GothamRoundedMedium, GothamRoundedBook, GothamRoundedLight, sans-serif',\n\tGOTHAM_ROUNDED_BOOKED:\n\t\t'GothamRoundedBook, GothamRoundedLight, GothamRoundedMedium, sans-serif',\n\tGOTHAM_ROUNDED_LIGHT:\n\t\t'GothamRoundedLight, GothamRoundedBook, GothamRoundedMedium, sans-serif',\n\tGOTHAM: 'Gotham Rounded A, Gotham Rounded B, sans-serif',\n\tOPEN_SANS: 'Open Sans, sans-serif',\n};\n\nexport const FONT_WEIGHT = {\n\t// --------------------\n\t// Gotham Rounded\n\tLIGHT: 300,\n\tULTRA_LIGHT: 325,\n\tSEMI_BOOK: 350,\n\tBOOK: 400,\n\n\t// --------------------\n\t// Open Sans\n\tMEDIUM: 500,\n\tREGULAR: 400,\n\tSEMI_BOLD: 600,\n};\n\n// ------------------------------------\n\nconst Fonts = () => (\n\t<>\n\t\t{/* Gotham Rounded */}\n\t\t \n\t\t \n\n\t\t{/* Open Sans */}\n\t\t \n\t>\n);\n\nexport default Fonts;\n","import styled from 'styled-components';\nimport * as vr from 'core/styles/variables';\nimport * as anim from 'core/styles/animations';\n\nexport const Rotate = styled.span`\n\tdisplay: flex;\n\tjustify-content: center;\n\talign-items: center;\n\tanimation: ${anim.rotate} 1.5s infinite linear;\n\n\t/* Override margin added to the icon by other classes */\n\t&&& i {\n\t\tmargin: 0;\n\t}\n`;\n\nexport const ThreeDots = styled.div<{\n\tdotColor: string;\n}>`\n\t& span {\n\t\tposition: absolute;\n\t\twidth: 10px;\n\t\theight: 10px;\n\t\tborder-radius: 5px;\n\t\tbackground-color: ${props => props.dotColor};\n\t\tcolor: ${props => props.dotColor};\n\t\tanimation: ${anim.threeDotsFlashing} 0.9s infinite alternate;\n\t\tanimation-delay: -0.3s;\n\t\tz-index: ${vr.zIndexBase.top};\n\t}\n\n\t& {\n\t\tposition: relative;\n\t\twidth: 0;\n\t\theight: 10px;\n\t\tborder-radius: 5px;\n\t\tbackground-color: ${props => props.dotColor};\n\t\tcolor: ${props => props.dotColor};\n\t}\n\n\t&::before,\n\t&::after {\n\t\tcontent: '';\n\t\tdisplay: inline-block;\n\t\tposition: absolute;\n\t\ttop: 0;\n\t}\n\n\t&::before {\n\t\tleft: -15px;\n\t\twidth: 10px;\n\t\theight: 10px;\n\t\tborder-radius: 5px;\n\t\tbackground-color: ${props => props.dotColor};\n\t\tcolor: ${props => props.dotColor};\n\t\tanimation: ${anim.threeDotsFlashing} 0.9s infinite alternate;\n\t\tanimation-delay: -0.6s;\n\t}\n\n\t&::after {\n\t\tleft: 15px;\n\t\twidth: 10px;\n\t\theight: 10px;\n\t\tborder-radius: 5px;\n\t\tbackground-color: ${props => props.dotColor};\n\t\tcolor: ${props => props.dotColor};\n\t\tanimation: ${anim.threeDotsFlashing} 0.9s infinite alternate;\n\t\tanimation-delay: 0s;\n\t}\n\n\t/* Override margin added to the icon by other classes */\n\t&&& i {\n\t\tmargin: 0;\n\t}\n`;\n","import React from 'react';\n\n// Sitecore `isExperienceEditorActive()` proxy;\n// (and emulating this mode outside of Sitecore)\nconst ExperienceEditorContext = React.createContext(false);\n\n/**\n * Hook alternative to use the Experience Editor.\n */\nexport const useExperienceEditorContext = () =>\n\tReact.useContext(ExperienceEditorContext);\n\n/**\n * HOC for the React Context 'ExperienceEditorContext'; injects the\n * 'isExperienceEditorActive' prop into the provided .\n */\nexport const withExperienceEditorContext = (\n\tComponent: React.ComponentType
,\n): React.FC
=> props => (\n\t// eslint-disable-next-line react/display-name\n\t\n\t\t{isExperienceEditorActive => (\n\t\t\t \n\t\t)}\n\t \n);\n\nexport default ExperienceEditorContext;\n","import COMPONENTS from 'core/sitecore/definitions/component-definitions';\n\nexport const NAMES = {\n\tROOT: {\n\t\tTOP: 'jss-top',\n\t\tMAIN: 'jss-main',\n\t\tBOTTOM: 'jss-bottom',\n\t},\n\n\tSUB_LAYOUTS: {\n\t\tFULL_WIDTH: 'content-full-width',\n\n\t\tFIFTY_LEFT: 'content-50-50-left',\n\t\tFIFTY_RIGHT: 'content-50-50-right',\n\n\t\tTWO_THIRDS_LEFT: 'content-66-left',\n\t\tTWO_THIRDS_RIGHT: 'content-66-right',\n\n\t\tTHIRDS_LEFT: 'content-33-left',\n\t\tTHIRDS_MIDDLE: 'content-33-middle',\n\t\tTHIRDS_RIGHT: 'content-33-right',\n\n\t\tQUARTERS_FIRST: 'content-25-first',\n\t\tQUARTERS_SECOND: 'content-25-second',\n\t\tQUARTERS_THIRD: 'content-25-third',\n\t\tQUARTERS_FOURTH: 'content-25-fourth',\n\t},\n\n\tPAGE_LAYOUTS: {\n\t\tONE_COLUMN_MAIN: 'content-1-column-main',\n\n\t\t// Yes this is the same as the above, and that's fine;\n\t\t// BEDs assure me although the placeholder key is shared/the-same\n\t\t// they can still have separate placeholder settings for a unique\n\t\t// set of allowed renderings that can be authored within, etc\n\t\tDASHBOARD: 'content-1-column-main',\n\t\tUNAUTHENTICATED_ONE_COLUMN: 'unauthenticated-1-column-main',\n\n\t\tTWO_COLUMN_LEFT_MAIN: 'content-2-column-left-main',\n\t\tTWO_COLUMN_LEFT_ASIDE: 'content-2-column-left-aside',\n\n\t\tTWO_COLUMN_RIGHT_MAIN: 'content-2-column-right-main',\n\t\tTWO_COLUMN_RIGHT_ASIDE: 'content-2-column-right-aside',\n\t},\n};\n\n// Placeholder groupings per component\n// Note: This is only relevant for components that want to\n// iteratively render ; components that use\n// a single placeholder can import directly from NAMES\n//\n// Key: Name of component in Sitecore\n// Value: List of placholders used by that component\nexport const GROUPS = {\n\tSUB_LAYOUTS: {\n\t\t[COMPONENTS.SUB_LAYOUTS.FULL_WIDTH]: [NAMES.SUB_LAYOUTS.FULL_WIDTH],\n\t\t[COMPONENTS.SUB_LAYOUTS.FIFTY_FIFTY]: [\n\t\t\tNAMES.SUB_LAYOUTS.FIFTY_LEFT,\n\t\t\tNAMES.SUB_LAYOUTS.FIFTY_RIGHT,\n\t\t],\n\t\t[COMPONENTS.SUB_LAYOUTS.TWO_THIRDS_SPLIT]: [\n\t\t\tNAMES.SUB_LAYOUTS.TWO_THIRDS_LEFT,\n\t\t\tNAMES.SUB_LAYOUTS.THIRDS_RIGHT,\n\t\t],\n\t\t[COMPONENTS.SUB_LAYOUTS.ONE_THIRD_SPLIT]: [\n\t\t\tNAMES.SUB_LAYOUTS.THIRDS_LEFT,\n\t\t\tNAMES.SUB_LAYOUTS.TWO_THIRDS_RIGHT,\n\t\t],\n\t\t[COMPONENTS.SUB_LAYOUTS.THIRDS]: [\n\t\t\tNAMES.SUB_LAYOUTS.THIRDS_LEFT,\n\t\t\tNAMES.SUB_LAYOUTS.THIRDS_MIDDLE,\n\t\t\tNAMES.SUB_LAYOUTS.THIRDS_RIGHT,\n\t\t],\n\t\t[COMPONENTS.SUB_LAYOUTS.QUARTERS]: [\n\t\t\tNAMES.SUB_LAYOUTS.QUARTERS_FIRST,\n\t\t\tNAMES.SUB_LAYOUTS.QUARTERS_SECOND,\n\t\t\tNAMES.SUB_LAYOUTS.QUARTERS_THIRD,\n\t\t\tNAMES.SUB_LAYOUTS.QUARTERS_FOURTH,\n\t\t],\n\t},\n};\n","import React from 'react';\n\nimport * as S from './JssPlaceholder.style';\n\n/**\n * Rendered when an exception (error) is thrown by any component\n * withing the Placeholder. Error is caught and details logged in console.\n */\nconst ErrorComponent = () => {\n\treturn (\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\tWe're not able to display this information at the moment.\n\t\t\t\t \n\t\t\t\t\n\t\t\t\t\tPlease refresh this page or try again later.\n\t\t\t\t \n\t\t\t \n\t\t \n\t);\n};\n\nexport default ErrorComponent;\n","import React from 'react';\n\nimport * as S from './JssPlaceholder.style';\n\ninterface IProps {\n\trendering: {\n\t\tcomponentName: string;\n\t};\n}\n\n/**\n * Rendered when a component has been specified within a Placeholder,\n * but no corresponding React component exists registered with JSS.\n */\nconst MissingComponent = ({ rendering }: IProps) => {\n\tconst componentName = rendering?.componentName ?? 'Unnamed Component';\n\n\treturn (\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\tComponent missing: \n\t\t\t\t\t \n\t\t\t\t\t{`'${componentName}'`} \n\t\t\t\t \n\t\t\t\t\n\t\t\t\t\tJSS component is missing React implementation. See the web console for\n\t\t\t\t\tmore information.\n\t\t\t\t \n\t\t\t \n\t\t \n\t);\n};\n\nexport default MissingComponent;\n","import React from 'react';\n\nimport * as S from './JssPlaceholder.style';\n\ninterface IProps {\n\tname: string;\n}\n\n/**\n * Rendered when a Placeholder has either has no contents, or\n * when rendered outside of a Sitecore JSS context.\n */\nconst EmptyPlaceholder = ({ name }: IProps) => (\n\t\n\t\t\n\t\t\t\n\t\t\t\tEmpty Placeholder: \n\t\t\t\t \n\t\t\t\t{`'${name}'`} \n\t\t\t \n\t\t \n\t \n);\n\nexport default EmptyPlaceholder;\n","import React from 'react';\n\n// This should be the ONLY file that imports the 'true' JSS Placeholder,\n// as it acts as a centralised wrapper for it, with non-Sitecore rendering\n// support and errorComponent/missingComponent default props\n// eslint-disable-next-line no-restricted-imports\nimport {\n\tPlaceholder as SitecorePlaceholder,\n\tisExperienceEditorActive,\n} from '@sitecore-jss/sitecore-jss-react';\n\nimport _ErrorComponent from './_ErrorComponent';\nimport _MissingComponent from './_MissingComponent';\nimport EmptyPlaceholder from './_EmptyPlaceholder';\n\nconst ErrorComponent = React.memo(_ErrorComponent);\nconst MissingComponent = React.memo(_MissingComponent);\n\ninterface IProps {\n\trendering: any;\n\tname: string;\n}\n\n/**\n * Proxy for default Sitecore JSS , with custom 'error', 'missing'\n * and 'empty' rendering variants. JPlaceholders can only render in the context\n * of Sitecore - in the Experience Editor or in local \"connected mode\".\n *\n * This retains existing Experience Editor and \"connected mode\" functionality\n * (missing/error components) - but also allows \"connected mode\" to visualize empty\n * placeholders, and for components that contain placeholders to be rendered\n * outside of Sitecore. Note that empty placeholder visualisation is a development\n * mode feature, and thus depends on NODE_ENV === 'development'.\n */\nconst JssPlaceholder = (props: IProps) => {\n\tconst { rendering, name } = props;\n\n\t// 'Sitecore powered' could refer to the Experience Editor,\n\t// \"connected mode\", or the live/preview website itself\n\tconst isSitecorePowered = !!rendering;\n\tconst isExperienceEditor = isExperienceEditorActive();\n\tconst isConnectedMode =\n\t\t!isExperienceEditor && process.env.NODE_ENV === 'development';\n\n\t// Contents referring to any controls authored within it\n\t// Note this falls back to an empty array so we dont get length of undefined errors below\n\tconst placeholderContents =\n\t\t(isConnectedMode && rendering?.placeholders[name]) ?? [];\n\tconst isNotEmptyPlaceholder =\n\t\tisConnectedMode && placeholderContents.length > 0;\n\n\tconst shouldShowJSSPlaceholder =\n\t\tisSitecorePowered && (!isConnectedMode || isNotEmptyPlaceholder);\n\n\treturn shouldShowJSSPlaceholder ? (\n\t\t \n\t) : (\n\t\t \n\t);\n};\n\nexport default JssPlaceholder;\n","/* eslint-disable react/prop-types */\n\nimport React from 'react';\nimport T from 'prop-types';\nimport { Element as ScrollElement } from 'react-scroll';\nimport styled from 'styled-components';\n\nimport Placeholder from 'core/sitecore/jss-proxy-components/JssPlaceholder';\nimport { NAMES } from 'core/sitecore/definitions/placeholder-definitions.ts';\n\n// ------------------------------\n// Styled components\n\n// For reference in S.FlexLayout\nconst MainPlaceholder = styled.div``;\n\nconst MainTag = styled.main`\n\t/* Otherwise is clickable/outlined; this is due to the\n\t'tabIndex: -1;' which in-turn is necessary for ScrollElement\n\tfunctionality and focus being re-set back as part of that */\n\toutline: none;\n`;\n\n// Fullscreen page layout; i.e. sticky footer\nconst FlexLayout = styled.div`\n\tdisplay: flex;\n\tflex-direction: column;\n\tmin-height: 100vh;\n\n\t${MainPlaceholder} {\n\t\tflex: 1 0 0;\n\t}\n`;\n\n// Mirror Styled Components `S.*` tag namespacing convention\nconst S = { MainPlaceholder, MainTag, FlexLayout };\n\n// ------------------------------\n\n/**\n * Centralised tag, as it is applied per page-layout\n * so as not to also encapsulate tags in some circumstances.\n *\n * @param {React.ReactNode} children\n */\nexport const Main = ({ children }) => (\n\t\n\t\t{children} \n\t \n);\n\n/**\n * High-level global page layout; achieves sticky footer.\n *\n * @param {Object} props\n */\nconst AppPlaceholders = ({\n\trendering,\n\tTopContent,\n\tMainContent,\n\tBottomContent,\n}) => (\n\t\n\t\t{!!TopContent ? (\n\t\t\t \n\t\t) : (\n\t\t\t \n\t\t)}\n\t\t\n\t\t\t{!!MainContent ? (\n\t\t\t\t \n\t\t\t) : (\n\t\t\t\t<>\n\t\t\t\t\t{/* Empty div prevents the S.MainPlaceholder `flex: 1` from\n\t\t\t\t\taffecting any modules authored in the main Placeholder */}\n\t\t\t\t\t\n\t\t\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t\t>\n\t\t\t)}\n\t\t \n\t\t{!!BottomContent ? (\n\t\t\t \n\t\t) : (\n\t\t\t \n\t\t)}\n\t \n);\n\nAppPlaceholders.propTypes = {\n\trendering: T.object,\n\tTopContent: T.node,\n\tMainContent: T.node,\n\tBottomContent: T.node,\n};\n\nAppPlaceholders.defaultProps = {\n\trendering: null,\n\tTopContent: null,\n\tMainContent: null,\n\tBottomContent: null,\n};\n\nexport default AppPlaceholders;\n","import { getAccessToken } from 'core/browserStorage';\nimport { Member } from 'core/api/client/MemberApi';\nimport { MEMBER_STATUS } from 'core/constants';\n\n/**\n * Checks if user is logged in\n *\n * @description Return true if Member context contains a valid member oject and CAT token is present in browser\n * @param member - current member object from MemberContext\n */\nexport const isAuthenticated = (member?: Member): boolean => {\n\tif (!member) {\n\t\treturn false;\n\t}\n\n\tconst accessToken = getAccessToken();\n\t// Note: Active = Dashboard page | Provisional = Pending profile page\n\treturn (\n\t\t!!accessToken &&\n\t\t[MEMBER_STATUS.CREATED, MEMBER_STATUS.ACTIVE]\n\t\t\t.toString()\n\t\t\t.includes(member?.member_status?.toLowerCase() as string)\n\t);\n};\n","import { Member } from 'core/api/client/MemberApi';\n\n/**\n * Get member name to display across member portal\n *\n * @description Return first name and last name combined for display purposes\n * @param member - current member object from MemberContext\n */\nexport const getDisplayName = (member?: Member): string => {\n\tif (!member) {\n\t\treturn '';\n\t}\n\n\treturn `${member?.first_name ?? ''} ${member?.last_name ?? ''}`.trim();\n};\n","import { Member } from 'core/api/client/MemberApi';\n\n/**\n * Checks if user has multiple accounts\n *\n * @param member - current member object from MemberContext\n */\nexport const isMultipleAccounts = (member?: Member): boolean => {\n\tif (!member || !member.accounts) {\n\t\treturn false;\n\t}\n\n\treturn member?.accounts?.length > 1 ?? false;\n};\n","import { MemberAccount } from 'core/interface/MemberAccount';\nimport { getSelectedAccountNumber } from 'core/browserStorage';\n\n/**\n * Get selected account number from Member context accounts attributed\n *\n * @param memberAccounts - array of accounts from Member context\n */\nexport const getSelectedMemberAccount = (\n\tmemberAccount?: MemberAccount[],\n): MemberAccount | null => {\n\tif (!memberAccount) {\n\t\treturn null;\n\t}\n\tconst selectedAccountNumber = getSelectedAccountNumber();\n\tconst filteredMemberAccounts = memberAccount.filter(\n\t\tx => x.account_number === selectedAccountNumber,\n\t);\n\n\treturn !!selectedAccountNumber ? filteredMemberAccounts[0] : memberAccount[0];\n};\n","import { Address } from 'core/api/client/MemberApi';\n\n/**\n * Get member's full address by with the format found in the link below\n * See E18: {@link https://confluence.australiansuper.net.au/display/MemberPortalV5/T10.E02.P01+-+Member+Contact+Details+Module}\n *\n * @param address - One of member's addresses from MemberContext\n * @param isRichText - Whether to add line breaks to the address or not\n */\nexport const getFormattedAddress = (\n\taddress?: Address,\n\tisRichText = false,\n): string => {\n\tif (!address) {\n\t\treturn '';\n\t}\n\n\tconst isInternational = address.country.toLowerCase() !== 'australia';\n\n\treturn `${address.address_line1 ?? ''} ${\n\t\taddress.address_line2 && address.address_line2.trim()\n\t\t\t? ` ${address.address_line2}`\n\t\t\t: ''\n\t}\n\t${isRichText ? ' ' : ''}\n\t${address.city}, ${address.state} ${address.postcode}${\n\t\tisRichText ? ' ' : ''\n\t}\n\t${isInternational ? address.country : ''}`.trim();\n};\n","import { PhoneNumber } from 'core/api/client/MemberApi';\n\n/**\n * Format member's phone number\n *\n * @description Format phone number based on the following format rules:\n * Local: 9876 9876\n * International: + 56785678\n * Standard: + 432 432 4321\n *\n * @param phone - One of member's phone numbers from MemberContext\n * @param phoneType - phone type values m - mobile, h - home, w - work\n */\nexport const getFormattedPhoneNumber = (\n\tphone?: PhoneNumber,\n\tphoneType = 'm',\n): string => {\n\tif (!phone?.number) {\n\t\treturn '';\n\t}\n\n\tconst phoneNumberStrip = (phone?.number).replace(/\\s+/g, '');\n\tconst numericPhoneNumber = phoneNumberStrip.replace(/[+]/g, '');\n\tconst phoneNumberLength = numericPhoneNumber.length;\n\n\tconst hasPlusSign = phoneNumberStrip.substring(0, 1);\n\t// To verify if it is equal to 61\n\tconst firstTwoDigits = numericPhoneNumber.substring(0, 2);\n\tlet formattedNumber;\n\n\t// If number has plus sign, it is in Standard format already.\n\tif (hasPlusSign === '+') {\n\t\treturn phone?.number;\n\t}\n\n\tif (phoneNumberLength === 10 && phoneType === 'm') {\n\t\t// Mobile number having 10 digits : XXXX XXX XXX\n\t\tconst match = phoneNumberStrip.match(/(\\S{0,4})(\\S{0,3})(\\S{0,3})/);\n\t\tformattedNumber = `+${match?.[1] ?? ''} ${match?.[2] ?? ''} ${match?.[3] ??\n\t\t\t''}`.trim();\n\t} else if (phoneNumberLength === 10 && phoneType !== 'm') {\n\t\t// Home/Work number having 10 digits : XX XXXX XXXX\n\t\tconst match = phoneNumberStrip.match(/(\\S{0,2})(\\S{0,4})(\\S{0,4})/);\n\t\tformattedNumber = `+${match?.[1] ?? ''} ${match?.[2] ?? ''} ${match?.[3] ??\n\t\t\t''}`.trim();\n\t} else if (phoneNumberLength === 11 && firstTwoDigits === '61') {\n\t\t// Mobile/Home/Work number having 11 digits : XX XXX XXX XXX\n\t\tconst match = phoneNumberStrip.match(\n\t\t\t/(\\S{0,2})(\\S{0,3})(\\S{0,3})(\\S{0,3})/,\n\t\t);\n\t\tformattedNumber = `+${match?.[1] ?? ''} ${match?.[2] ?? ''} ${match?.[3] ??\n\t\t\t''} ${match?.[4] ?? ''}`.trim();\n\t} else if (phoneNumberLength === 12 && firstTwoDigits === '61') {\n\t\t// Mobile/Home/Work number having 12 digits : XX XX XXXX XXXX\n\t\tconst match = phoneNumberStrip.match(\n\t\t\t/(\\S{0,2})(\\S{0,2})(\\S{0,4})(\\S{0,4})/,\n\t\t);\n\t\tformattedNumber = `+${match?.[1] ?? ''} ${match?.[2] ?? ''} ${match?.[3] ??\n\t\t\t''} ${match?.[4] ?? ''}`.trim();\n\t} else {\n\t\t// Just return whatever the LINK gives.\n\t\tformattedNumber = phone?.number;\n\t}\n\n\treturn formattedNumber;\n};\n","/* eslint-disable @typescript-eslint/camelcase */\n\nimport { ITrackMemberProps } from 'core/analytics';\nimport { Member } from 'core/interface/MemberAccount';\nimport { getSelectedMemberAccount } from './getSelectedMemberAccount';\n\n/**\n * Get member info for GTM tracking purposes\n *\n * @description Return ITrackMemberProps object to include in GTM tracking\n * @param member - current member object from MemberContext\n */\nexport const getMemberTrackingProps = (member?: Member): ITrackMemberProps => {\n\tlet memberData: ITrackMemberProps = {};\n\n\tif (!member) {\n\t\treturn memberData;\n\t}\n\n\tconst selectedAccount = getSelectedMemberAccount(member.accounts);\n\n\tmemberData = {\n\t\tparty_type_id: member.party_type_id,\n\t\tmember_status: member.member_status?.toLowerCase(),\n\t\tuser_phone_number: member.phone_numbers,\n\t\tuser_email_address: member.email_address,\n\t\taccounts_account_number: selectedAccount?.account_number ?? '',\n\t\taccounts_product_name: selectedAccount?.product_name ?? '',\n\t\taccounts_account_status: selectedAccount?.account_status ?? '',\n\t\taccounts_joined_date: selectedAccount?.joined_date ?? '',\n\t\tclassification_id: member?.classification_id ?? undefined,\n\t\tlife_cycle_profile: member?.lifeCycleProfile ?? undefined,\n\t};\n\n\treturn memberData;\n};\n","import LOGO_DARK from './logo.svg';\n\n// ------------------------------------\n// Core brand colours\n// ! Local DRY use only; don't export\n\nconst ORANGE = {\n\tBASE: '#EA4403',\n\tDARK: '#C66600',\n\tLIGHT: '#FF9F39',\n\tLIGHTER: '#FFB364',\n\tLIGHTEST: '#FFF0E0',\n};\n\nconst BLUE = {\n\tBASE: '#260046',\n\tDARK: '#0E1375',\n\tLIGHT: '#2C32AA',\n\tLIGHTER: '#7D6690',\n\tLIGHTEST: '#E3E4F2',\n};\n\nconst YELLOW = {\n\tBASE: '#FFC600',\n\tDARK: '#C69900',\n\tLIGHT: '#FFD339',\n\tLIGHTER: '#FFDC64',\n\tLIGHTEST: '#F4EDD3',\n};\n\nconst RED = {\n\tBASE: '#BA0C2F',\n\tDARK: '#98001E',\n\tLIGHT: '#DB2A4D',\n\tLIGHTER: '#EA5572',\n\tLIGHTEST: '#F7E2E6',\n};\n\nconst GREEN = {\n\tBASE: '#0C7135',\n\tDARK: '#005723',\n\tMEDIUM_DARK: '#007345',\n\tLIGHT: '#1C8948',\n\tLIGHTER: '#399D61',\n\tLIGHTEST: '#E2EEE7',\n};\n\nconst DARK_GREY = {\n\tBASE: '#53565A',\n\tDARK: '#2E2E2E',\n\tLIGHT: '#585858',\n\tMEDIUM_LIGHT: '#828282',\n\tLIGHTER: '#AEB2B6',\n};\n\nconst PALE_GREY = {\n\tBASE: '#D9D9D6',\n\tDARK: '#B5B5B2',\n\tMEDIUM_LIGHT: '#F5F5F5',\n\tLIGHT: '#E9E9E6',\n\tLIGHTER: '#F9F9F6',\n\tLIGHTEST: '#EBEBEB',\n};\n\nconst LIGHT_BLUE = {\n\tBASE: '#EAE6ED',\n\tDARK: '#D4DEE8',\n\tLIGHT: '#EEF2F6',\n\tLIGHTER: '#F5F7FA',\n\tLIGHTEST: '#F4F2F5',\n};\n\nconst PURPLE = {\n\tBASE: '#913B84',\n};\n\n// ------------------------------------\n// Central colour definitions\n// ! Local DRY use only; don't export\n\nconst BRAND_WHITE = '#FFFFFF';\nconst DARK_TEXT = DARK_GREY.DARK;\nconst LIGHT_TEXT = BRAND_WHITE;\n\n// ------------------------------------\n// Feedback colour\n// ! Local DRY use only; don't export\nconst WARNING = {\n\tBASE: '#DB7100',\n\tLIGHT: '#FBF1E5',\n};\nconst ERROR = {\n\tBASE: '#B00116',\n\tLIGHT: '#F7E6E8',\n};\nconst INFO = {\n\tBASE: '#0488C5',\n\tLIGHT: '#DAEDF7',\n};\n\n// ------------------------------------\n// Shared CTA styles\n// ! Local DRY use only; don't export\n\nconst CTA_DISABLED = {\n\tcolor: DARK_GREY.LIGHTER,\n\ttext: BRAND_WHITE,\n\tborder: null,\n};\n\nconst CTA_PRIMARY = {\n\tbase: {\n\t\tcolor: BLUE.BASE,\n\t\ttext: BRAND_WHITE,\n\t\tborder: null,\n\t},\n\tloading: {\n\t\tcolor: BLUE.BASE,\n\t\ttext: BRAND_WHITE,\n\t\tborder: null,\n\t},\n\n\thover: {\n\t\tcolor: BLUE.LIGHTER,\n\t},\n\n\tactive: {\n\t\tcolor: BLUE.LIGHTER,\n\t},\n\n\tdisabled: CTA_DISABLED,\n};\n\n// Theme Schema\n// TODO set theme schema as a type in separate .types file\n\n// ------------------------------------\n// Core brand (global) colours\n\nconst ORANGE_BASE = {\n\tid: 'orange',\n\tname: 'Orange',\n\tcolor: ORANGE.BASE,\n\tisDark: false,\n\ttext: DARK_TEXT,\n};\n\nconst BLUE_BASE = {\n\tid: 'blue',\n\tname: 'Blue',\n\tcolor: BLUE.BASE,\n\tisDark: true,\n\ttext: LIGHT_TEXT,\n};\n\nconst YELLOW_BASE = {\n\tid: 'yellow',\n\tname: 'Yellow',\n\tcolor: YELLOW.BASE,\n\tisDark: false,\n\ttext: DARK_TEXT,\n};\n\nconst PURPLE_BASE = {\n\tid: 'purple',\n\tname: 'Purple',\n\tcolor: PURPLE.BASE,\n\tisDark: false,\n\ttext: LIGHT_TEXT,\n};\n\n// ------------------------------------\n// Compositions\n\nconst COMPOSITIONS = [\n\t// ------------------------------------\n\t// Orange\n\n\tORANGE_BASE,\n\n\t{\n\t\tid: 'orange-dark',\n\t\tname: 'Orange - Dark',\n\t\tcolor: ORANGE.DARK,\n\t\tisDark: true,\n\t\ttext: LIGHT_TEXT,\n\t},\n\n\t{\n\t\tid: 'orange-light',\n\t\tname: 'Orange - Light',\n\t\tcolor: ORANGE.LIGHT,\n\t\tisDark: false,\n\t\ttext: DARK_TEXT,\n\t},\n\n\t{\n\t\tid: 'orange-lighter',\n\t\tname: 'Orange - Lighter',\n\t\tcolor: ORANGE.LIGHTER,\n\t\tisDark: false,\n\t\ttext: DARK_TEXT,\n\t},\n\n\t{\n\t\tid: 'orange-lightest',\n\t\tname: 'Orange - Lightest',\n\t\tcolor: ORANGE.LIGHTEST,\n\t\tisDark: false,\n\t\ttext: DARK_TEXT,\n\t},\n\n\t// ------------------------------------\n\t// Blue\n\n\tBLUE_BASE,\n\n\t{\n\t\tid: 'blue-dark',\n\t\tname: 'Blue - Dark',\n\t\tcolor: BLUE.DARK,\n\t\tisDark: true,\n\t\ttext: LIGHT_TEXT,\n\t},\n\n\t{\n\t\tid: 'blue-light',\n\t\tname: 'Blue - Light',\n\t\tcolor: BLUE.LIGHT,\n\t\tisDark: true,\n\t\ttext: LIGHT_TEXT,\n\t},\n\n\t{\n\t\tid: 'blue-lighter',\n\t\tname: 'Blue - Lighter',\n\t\tcolor: BLUE.LIGHTER,\n\t\tisDark: true,\n\t\ttext: LIGHT_TEXT,\n\t},\n\n\t{\n\t\tid: 'blue-lightest',\n\t\tname: 'Blue - Lightest',\n\t\tcolor: BLUE.LIGHTEST,\n\t\tisDark: false,\n\t\ttext: DARK_TEXT,\n\t},\n\n\t// ------------------------------------\n\t// Yellow\n\n\tYELLOW_BASE,\n\n\t{\n\t\tid: 'yellow-dark',\n\t\tname: 'Yellow - Dark',\n\t\tcolor: YELLOW.DARK,\n\t\tisDark: true,\n\t\ttext: LIGHT_TEXT,\n\t},\n\n\t{\n\t\tid: 'yellow-light',\n\t\tname: 'Yellow - Light',\n\t\tcolor: YELLOW.LIGHT,\n\t\tisDark: false,\n\t\ttext: DARK_TEXT,\n\t},\n\n\t{\n\t\tid: 'yellow-lighter',\n\t\tname: 'Yellow - Lighter',\n\t\tcolor: YELLOW.LIGHTER,\n\t\tisDark: false,\n\t\ttext: DARK_TEXT,\n\t},\n\n\t{\n\t\tid: 'yellow-lightest',\n\t\tname: 'Yellow - Lightest',\n\t\tcolor: YELLOW.LIGHTEST,\n\t\tisDark: false,\n\t\ttext: DARK_TEXT,\n\t},\n\n\t// ------------------------------------\n\t// Red\n\n\t{\n\t\tid: 'red',\n\t\tname: 'Red',\n\t\tcolor: RED.BASE,\n\t\tisDark: true,\n\t\ttext: LIGHT_TEXT,\n\t},\n\n\t{\n\t\tid: 'red-dark',\n\t\tname: 'Red - Dark',\n\t\tcolor: RED.DARK,\n\t\tisDark: true,\n\t\ttext: LIGHT_TEXT,\n\t},\n\n\t{\n\t\tid: 'red-light',\n\t\tname: 'Red - Light',\n\t\tcolor: RED.LIGHT,\n\t\tisDark: true,\n\t\ttext: LIGHT_TEXT,\n\t},\n\n\t{\n\t\tid: 'red-lighter',\n\t\tname: 'Red - Lighter',\n\t\tcolor: RED.LIGHTER,\n\t\tisDark: false,\n\t\ttext: DARK_TEXT,\n\t},\n\n\t{\n\t\tid: 'red-lightest',\n\t\tname: 'Red - Lightest',\n\t\tcolor: RED.LIGHTEST,\n\t\tisDark: false,\n\t\ttext: DARK_TEXT,\n\t},\n\n\t// ------------------------------------\n\t// Green\n\n\t{\n\t\tid: 'green',\n\t\tname: 'Green',\n\t\tcolor: GREEN.BASE,\n\t\tisDark: true,\n\t\ttext: LIGHT_TEXT,\n\t},\n\n\t{\n\t\tid: 'green-dark',\n\t\tname: 'Green - Dark',\n\t\tcolor: GREEN.DARK,\n\t\tisDark: true,\n\t\ttext: LIGHT_TEXT,\n\t},\n\n\t{\n\t\tid: 'green-medium-dark',\n\t\tname: 'Green - Medium Dark',\n\t\tcolor: GREEN.MEDIUM_DARK,\n\t\tisDark: true,\n\t\ttext: LIGHT_TEXT,\n\t},\n\n\t{\n\t\tid: 'green-light',\n\t\tname: 'Green - Light',\n\t\tcolor: GREEN.LIGHT,\n\t\tisDark: true,\n\t\ttext: LIGHT_TEXT,\n\t},\n\n\t{\n\t\tid: 'green-lighter',\n\t\tname: 'Green - Lighter',\n\t\tcolor: GREEN.LIGHTER,\n\t\tisDark: true,\n\t\ttext: LIGHT_TEXT,\n\t},\n\n\t{\n\t\tid: 'green-lightest',\n\t\tname: 'Green - Lightest',\n\t\tcolor: GREEN.LIGHTEST,\n\t\tisDark: false,\n\t\ttext: DARK_TEXT,\n\t},\n\n\t// ------------------------------------\n\t// Dark Grey\n\n\t{\n\t\tid: 'darkGrey',\n\t\tname: 'Dark Grey',\n\t\tcolor: DARK_GREY.BASE,\n\t\tisDark: true,\n\t\ttext: LIGHT_TEXT,\n\t},\n\n\t{\n\t\tid: 'darkGrey-dark',\n\t\tname: 'Dark Grey - Dark',\n\t\tcolor: DARK_GREY.DARK,\n\t\tisDark: true,\n\t\ttext: LIGHT_TEXT,\n\t},\n\n\t{\n\t\tid: 'darkGrey-light',\n\t\tname: 'Dark Grey - Light',\n\t\tcolor: DARK_GREY.LIGHT,\n\t\tisDark: true,\n\t\ttext: LIGHT_TEXT,\n\t},\n\n\t{\n\t\tid: 'darkGrey-medium-light',\n\t\tname: 'Dark Grey - Medium Light',\n\t\tcolor: DARK_GREY.MEDIUM_LIGHT,\n\t\tisDark: true,\n\t\ttext: LIGHT_TEXT,\n\t},\n\n\t{\n\t\tid: 'darkGrey-lighter',\n\t\tname: 'Dark Grey - Lighter',\n\t\tcolor: DARK_GREY.LIGHTER,\n\t\tisDark: true,\n\t\ttext: LIGHT_TEXT,\n\t},\n\n\t// ------------------------------------\n\t// Pale Grey\n\n\t{\n\t\tid: 'paleGrey',\n\t\tname: 'Pale Grey',\n\t\tcolor: PALE_GREY.BASE,\n\t\tisDark: true,\n\t\ttext: LIGHT_TEXT,\n\t},\n\n\t{\n\t\tid: 'paleGrey-dark',\n\t\tname: 'Pale Grey - Dark',\n\t\tcolor: PALE_GREY.DARK,\n\t\tisDark: false,\n\t\ttext: DARK_TEXT,\n\t},\n\n\t{\n\t\tid: 'paleGrey-light',\n\t\tname: 'Pale Grey - Light',\n\t\tcolor: PALE_GREY.LIGHT,\n\t\tisDark: true,\n\t\ttext: LIGHT_TEXT,\n\t},\n\n\t{\n\t\tid: 'paleGrey-lighter',\n\t\tname: 'Pale Grey - Lighter',\n\t\tcolor: PALE_GREY.LIGHTER,\n\t\tisDark: true,\n\t\ttext: LIGHT_TEXT,\n\t},\n\n\t// ------------------------------------\n\t// Light Blue\n\n\t{\n\t\tid: 'lightBlue',\n\t\tname: 'Light Blue',\n\t\tcolor: LIGHT_BLUE.BASE,\n\t\tisDark: false,\n\t\ttext: DARK_TEXT,\n\t},\n\n\t{\n\t\tid: 'lightBlue-dark',\n\t\tname: 'Light Blue - Dark',\n\t\tcolor: LIGHT_BLUE.DARK,\n\t\tisDark: false,\n\t\ttext: DARK_TEXT,\n\t},\n\n\t{\n\t\tid: 'lightBlue-light',\n\t\tname: 'Light Blue - Light',\n\t\tcolor: LIGHT_BLUE.LIGHT,\n\t\tisDark: false,\n\t\ttext: DARK_TEXT,\n\t},\n\n\t{\n\t\tid: 'lightBlue-lighter',\n\t\tname: 'Light Blue - Lighter',\n\t\tcolor: LIGHT_BLUE.LIGHTER,\n\t\tisDark: false,\n\t\ttext: DARK_TEXT,\n\t},\n\n\t{\n\t\tid: 'lightBlue-lightest',\n\t\tname: 'Light Blue - Lightest',\n\t\tcolor: LIGHT_BLUE.LIGHTEST,\n\t\tisDark: false,\n\t\ttext: DARK_TEXT,\n\t},\n\n\t// ------------------------------------\n\t// Yellow\n\n\tPURPLE_BASE,\n];\n\n// ------------------------------------\n// Types\n\nexport type TypographyColorType =\n\t| 'default'\n\t| 'subdued'\n\t| 'active'\n\t| 'error'\n\t| 'success';\n\nexport default {\n\t// This makes the theme object identifiable amongst other objects\n\t// that live in the JSS Layout Service API `siteSettings` array\n\tid: 'theme-schema',\n\n\tcollectionName: 'Australian Super',\n\n\tglobal: {\n\t\tonboarding: {\n\t\t\tbackgroundColor: '#D93E02',\n\t\t\twelcomeBanner: {\n\t\t\t\tcolor: BLUE.LIGHTEST,\n\t\t\t\tunfundedColor: YELLOW.LIGHTEST,\n\t\t\t},\n\t\t},\n\t\tlogos: {\n\t\t\tdark: LOGO_DARK,\n\t\t},\n\t\tpage: {\n\t\t\tcolor: PALE_GREY.MEDIUM_LIGHT,\n\t\t\tisDark: false,\n\n\t\t\tbreadcrumbs: {\n\t\t\t\tcolor: LIGHT_BLUE.LIGHTEST,\n\t\t\t\tisDark: false,\n\t\t\t},\n\n\t\t\tauthenticatedHeader: {\n\t\t\t\tcolor: BRAND_WHITE,\n\t\t\t\tprimary: {\n\t\t\t\t\tmobile: {\n\t\t\t\t\t\tfontColor: DARK_GREY.LIGHT,\n\t\t\t\t\t\tcolor: LIGHT_BLUE.BASE,\n\t\t\t\t\t\tiaHoverColor: LIGHT_BLUE.LIGHTEST,\n\t\t\t\t\t},\n\t\t\t\t\tdesktop: {\n\t\t\t\t\t\tfontColor: DARK_GREY.DARK,\n\t\t\t\t\t\tdropdownShadowColor: LIGHT_BLUE.BASE,\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t\tsubItems: {\n\t\t\t\t\tcolor: LIGHT_BLUE.BASE,\n\t\t\t\t\tfontColor: DARK_GREY.DARK,\n\t\t\t\t\tdesktop: {\n\t\t\t\t\t\tfontColor: DARK_GREY.BASE,\n\t\t\t\t\t\tiaHoverColor: LIGHT_BLUE.LIGHTEST,\n\t\t\t\t\t\tiaSelectedColor: BLUE.BASE,\n\t\t\t\t\t\tiaSelectedFontColor: BRAND_WHITE,\n\t\t\t\t\t},\n\t\t\t\t\tmobile: {\n\t\t\t\t\t\tiaHoverColor: LIGHT_BLUE.LIGHTEST,\n\t\t\t\t\t\tarrowBack: BLUE.BASE,\n\t\t\t\t\t\tiaSelectedColor: BRAND_WHITE,\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t\tactiveBar: {\n\t\t\t\t\tcolor: ORANGE.BASE,\n\t\t\t\t\tiaColor: PALE_GREY.MEDIUM_LIGHT,\n\t\t\t\t\tiaStrokeColor: BLUE.LIGHTER,\n\t\t\t\t\tiaFontColor: BLUE.BASE,\n\t\t\t\t},\n\t\t\t\tselectedItem: {\n\t\t\t\t\tfontColor: BLUE.BASE,\n\t\t\t\t\tbackgroundColor: LIGHT_BLUE.LIGHTEST,\n\t\t\t\t},\n\t\t\t\thamburgerButton: {\n\t\t\t\t\tcolor: DARK_GREY.LIGHT,\n\t\t\t\t},\n\t\t\t\tcaret: {\n\t\t\t\t\tcolor: DARK_GREY.LIGHT,\n\t\t\t\t},\n\t\t\t\tnotifications: {\n\t\t\t\t\tpill: {\n\t\t\t\t\t\tcolor: ORANGE.BASE,\n\t\t\t\t\t},\n\t\t\t\t\tiaHoverColor: LIGHT_BLUE.LIGHTEST,\n\t\t\t\t},\n\t\t\t},\n\n\t\t\tunauthenticatedFooter: {\n\t\t\t\tcolor: LIGHT_BLUE.LIGHTER,\n\t\t\t\tisDark: false,\n\t\t\t},\n\n\t\t\ttabs: {\n\t\t\t\tarrowButton: {\n\t\t\t\t\tcolor: LIGHT_BLUE.LIGHT,\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\n\t\tmodule: {\n\t\t\tcolor: BRAND_WHITE,\n\t\t\tisDark: false,\n\t\t},\n\n\t\tnotifications: {\n\t\t\tinfo: {\n\t\t\t\tcolor: INFO.BASE,\n\t\t\t\tbackground: INFO.LIGHT,\n\t\t\t},\n\t\t\terror: {\n\t\t\t\tcolor: ERROR.BASE,\n\t\t\t\tbackground: ERROR.LIGHT,\n\t\t\t},\n\t\t\tsuccess: GREEN.BASE,\n\t\t\twarning: {\n\t\t\t\tcolor: WARNING.BASE,\n\t\t\t\tbackground: WARNING.LIGHT,\n\t\t\t},\n\t\t\tloading: {\n\t\t\t\tcolor: BLUE.BASE,\n\t\t\t\tbackground: LIGHT_BLUE.BASE,\n\t\t\t},\n\t\t\tclose: DARK_GREY.LIGHT,\n\t\t\tcolor: BLUE.BASE,\n\t\t},\n\n\t\ttypography: {\n\t\t\tcolors: {\n\t\t\t\tdefault: DARK_GREY.DARK,\n\t\t\t\tsubdued: DARK_GREY.LIGHT,\n\t\t\t\tactive: BLUE.BASE,\n\t\t\t\terror: RED.BASE,\n\t\t\t\tsuccess: GREEN.BASE,\n\n\t\t\t\tgenericDark: DARK_TEXT,\n\t\t\t\tgenericLight: LIGHT_TEXT,\n\t\t\t},\n\n\t\t\thyperlinks: {\n\t\t\t\tcolor: BLUE.BASE,\n\t\t\t\thover: BLUE.LIGHTER,\n\t\t\t\tisDark: true,\n\t\t\t},\n\n\t\t\thighlight: {\n\t\t\t\tcolor: BLUE.BASE,\n\t\t\t\ttext: BRAND_WHITE,\n\t\t\t},\n\t\t},\n\n\t\tcolors: {\n\t\t\tprimary: ORANGE_BASE,\n\t\t\tsecondary: BLUE_BASE,\n\t\t\ttertiary: YELLOW_BASE,\n\n\t\t\tdisabled: COMPOSITIONS.find(cmp => cmp.color === DARK_GREY.LIGHTER),\n\t\t},\n\n\t\tctas: {\n\t\t\tprimary: {\n\t\t\t\tisDark: true,\n\t\t\t\t...CTA_PRIMARY,\n\n\t\t\t\tinverted: {\n\t\t\t\t\tbase: {\n\t\t\t\t\t\tcolor: BRAND_WHITE,\n\t\t\t\t\t\ttext: BLUE.BASE,\n\t\t\t\t\t\tborder: null,\n\t\t\t\t\t},\n\t\t\t\t\thover: {\n\t\t\t\t\t\tcolor: PALE_GREY.LIGHTER,\n\t\t\t\t\t},\n\t\t\t\t\tactive: {\n\t\t\t\t\t\tcolor: PALE_GREY.LIGHT,\n\t\t\t\t\t},\n\t\t\t\t\tdisabled: CTA_DISABLED,\n\t\t\t\t},\n\t\t\t},\n\n\t\t\tsecondary: {\n\t\t\t\tisDark: false,\n\n\t\t\t\tbase: {\n\t\t\t\t\tcolor: BRAND_WHITE,\n\t\t\t\t\ttext: BLUE.BASE,\n\t\t\t\t\tborder: BLUE.BASE,\n\t\t\t\t},\n\n\t\t\t\tloading: {\n\t\t\t\t\tcolor: BRAND_WHITE,\n\t\t\t\t\ttext: BLUE.BASE,\n\t\t\t\t\tborder: BLUE.BASE,\n\t\t\t\t},\n\n\t\t\t\thover: {\n\t\t\t\t\tcolor: BRAND_WHITE,\n\t\t\t\t\ttext: BLUE.LIGHTER,\n\t\t\t\t\tborder: BLUE.LIGHTER,\n\t\t\t\t},\n\n\t\t\t\tactive: {\n\t\t\t\t\tcolor: BRAND_WHITE,\n\t\t\t\t},\n\n\t\t\t\tdisabled: { ...CTA_DISABLED, border: PALE_GREY.LIGHT },\n\t\t\t\tinverted: CTA_PRIMARY,\n\t\t\t},\n\n\t\t\tplain: {\n\t\t\t\tisDark: false,\n\n\t\t\t\tbase: {\n\t\t\t\t\tcolor: null,\n\t\t\t\t\ttext: BLUE.BASE,\n\t\t\t\t\tborder: null,\n\t\t\t\t},\n\n\t\t\t\tloading: {\n\t\t\t\t\tcolor: null,\n\t\t\t\t\ttext: BLUE.BASE,\n\t\t\t\t\tborder: null,\n\t\t\t\t},\n\n\t\t\t\thover: {\n\t\t\t\t\ttext: BLUE.LIGHTER,\n\t\t\t\t},\n\n\t\t\t\tactive: {\n\t\t\t\t\ttext: BLUE.BASE,\n\t\t\t\t},\n\n\t\t\t\tdisabled: {\n\t\t\t\t\ttext: DARK_GREY.LIGHTER,\n\t\t\t\t},\n\n\t\t\t\t// TODO ?\n\t\t\t\tinverted: CTA_PRIMARY,\n\t\t\t},\n\n\t\t\twarning: {\n\t\t\t\tisDark: true,\n\n\t\t\t\tbase: {\n\t\t\t\t\tcolor: RED.BASE,\n\t\t\t\t\ttext: BRAND_WHITE,\n\t\t\t\t\tborder: null,\n\t\t\t\t},\n\n\t\t\t\tloading: {\n\t\t\t\t\tcolor: RED.BASE,\n\t\t\t\t\ttext: BRAND_WHITE,\n\t\t\t\t\tborder: null,\n\t\t\t\t},\n\n\t\t\t\thover: {\n\t\t\t\t\tcolor: RED.LIGHT,\n\t\t\t\t},\n\n\t\t\t\tactive: {\n\t\t\t\t\tcolor: PALE_GREY.LIGHT,\n\t\t\t\t},\n\n\t\t\t\tdisabled: CTA_DISABLED,\n\t\t\t\tinverted: CTA_PRIMARY,\n\t\t\t},\n\t\t},\n\n\t\tborders: {\n\t\t\thr: LIGHT_BLUE.BASE,\n\t\t\thrDark: DARK_GREY.DARK,\n\t\t\tmodule: '#DEE0E4',\n\t\t\tfaded: DARK_GREY.LIGHTER,\n\t\t\tarrowButton: DARK_GREY.MEDIUM_LIGHT,\n\t\t\tlightest: PALE_GREY.LIGHTEST,\n\t\t},\n\n\t\tform: {\n\t\t\tselect: {\n\t\t\t\tactive: ORANGE.BASE,\n\t\t\t\thover: LIGHT_BLUE.BASE,\n\t\t\t\toption: {\n\t\t\t\t\tbase: DARK_GREY.BASE,\n\t\t\t\t\thover: DARK_GREY.DARK,\n\t\t\t\t},\n\t\t\t},\n\t\t\tradio: {\n\t\t\t\tactive: BLUE.BASE,\n\t\t\t\thover: LIGHT_BLUE.BASE,\n\t\t\t},\n\t\t\tprogressBar: {\n\t\t\t\tpastStep: { color: GREEN.BASE },\n\t\t\t\tfutureStep: { color: LIGHT_BLUE.BASE },\n\t\t\t\tactiveStep: { color: BLUE.BASE, text: BRAND_WHITE },\n\t\t\t},\n\t\t},\n\n\t\ticon: {\n\t\t\torangeContainer: ORANGE.LIGHTEST,\n\t\t\tgreen: GREEN.LIGHT,\n\t\t},\n\t},\n\n\tvariables: {\n\t\tbaseTransition: '200ms',\n\t},\n\n\tthemes: [\n\t\t{\n\t\t\tid: 'theme-light',\n\t\t\tname: 'Light',\n\n\t\t\tcompositions: COMPOSITIONS,\n\t\t},\n\t],\n};\n","import { FinancialYearReferenceDataType } from 'core/api/client/ReferenceDataApi';\n\n/**\n * This return an object of Current financial year\n *\n * @param fyValues - an array of financial years associated with member's account\n */\nexport const getFormattedCurrentFY = (\n\tfyValues?: FinancialYearReferenceDataType[],\n) => {\n\tconst filteredFY =\n\t\tfyValues?.filter(\n\t\t\titem => item.description?.toLowerCase() === 'current financial year',\n\t\t) ?? [];\n\n\treturn filteredFY[0]?.date_range;\n};\n\n/**\n * This return an object of the last financial year\n *\n * @param fyValues - an array of financial years associated with member's account\n */\nexport const getFormattedLastFY = (\n\tfyValues?: FinancialYearReferenceDataType[],\n) => {\n\treturn fyValues?.slice(-1)[0]?.date_range;\n};\n\n/***\n * Retrieves the formatted date range of the second financial year from the given array.\n *\n * @param fyValues - An optional array of financial year references.\n * @returns The date range of the second financial year, or undefined if not found.\n */\nexport const getFormattedPreviousFY = (\n\tfyValues?: FinancialYearReferenceDataType[],\n) => {\n\t// Slice the array to get the second financial year, or an empty array if fyValues is undefined or empty\n\tconst slicedFyArray = fyValues?.slice(1, 2) ?? [];\n\n\t// Retrieve the second financial year from the sliced array, or undefined if not found\n\tconst secondFy = slicedFyArray.length > 0 ? slicedFyArray[0] : undefined;\n\n\t// Extract the date range from the second financial year, or undefined if secondFy is undefined\n\tconst dateRange = secondFy?.date_range;\n\n\treturn dateRange;\n};\n","/* eslint-disable @typescript-eslint/camelcase */\n\nimport axios from 'axios';\nimport { v4 as uuidv4 } from 'uuid';\nimport config from 'jss-boilerplate/temp/config.js';\nimport { getCurrentUrlHostname } from 'core/utils/global-utils';\nimport {\n\tAKAMAI_BOT_FLAG,\n\tSITECORE_AUTHORIZATION,\n\tX_CORRELATION_APP,\n} from 'core/constants';\nimport {\n\tILoginPasswordRequestData,\n\tIMobileAuthRequestData,\n\tIMobileAuthPushInitiateRequestData,\n\tIMobileAuthPushDeviceCheckRequestData,\n\tIMobileAuthPushPollingWaitData,\n\tIMobileAuthLoginPushRequestData,\n} from 'jss-components/t07-account-access/Login/Login.types';\n\nconst isDevelopmentEnv = process.env.NODE_ENV === 'development';\n\n/**\n * Call Sitecore API for Member Login\n * @param {any} data Username and Password\n */\nexport function memberLogin(data: any) {\n\t// TODO - define types\n\n\tconst url = `${getCurrentUrlHostname}${config.sitecoreApi.apiPathMemberLogin}`;\n\n\treturn axios({\n\t\turl,\n\t\tmethod: 'POST',\n\t\tdata,\n\t\t// note: axios needs to use `withCredentials: true` in order for Sitecore cookies to be included in CORS requests\n\t\t// which is necessary for analytics and such, same with lines 69 and 84\n\t\twithCredentials: !isDevelopmentEnv,\n\t});\n}\n\n/**\n * MAU Journey 2: Login Pwd Auth for Token ID\n * Second call for password login\n * @param {any} data Username, Password, initial, usernamenew\n */\nexport function memberLoginClassic(data: ILoginPasswordRequestData) {\n\tconst url = `${getCurrentUrlHostname}${config.sitecoreApi.apiPathMemberLoginClassic}`;\n\n\treturn axios({\n\t\turl,\n\t\tmethod: 'POST',\n\t\tdata,\n\t\t// note: axios needs to use `withCredentials: true` in order for Sitecore cookies to be included in CORS requests\n\t\t// which is necessary for analytics and such, same with lines 69 and 84\n\t\twithCredentials: !isDevelopmentEnv,\n\t});\n}\n\n/**\n *\n * @param data Username, device details: containing uuid(), window.navigator, lat/lng\n */\nexport function memberDeviceLogin(data: IMobileAuthRequestData) {\n\tconst url = `${getCurrentUrlHostname}${config.sitecoreApi.apiPathMemberDeviceLogin}`;\n\n\treturn axios({\n\t\turl,\n\t\tmethod: 'POST',\n\t\tdata,\n\t\t// note: axios needs to use `withCredentials: true` in order for Sitecore cookies to be included in CORS requests\n\t\t// which is necessary for analytics and such, same with lines 69 and 84\n\t\twithCredentials: !isDevelopmentEnv,\n\t});\n}\n\n/**\n *\n * @param data Username\n *\n * 1st MAU push call, account existence check\n *\n * TODO: Remove once member login push is confirmed to be used permanently\n * Also check azure-pipelines.yaml\n *\n */\nexport function memberPushInitiate(data: IMobileAuthPushInitiateRequestData) {\n\tconst url = `${getCurrentUrlHostname}${config.sitecoreApi.apiPathMemberPushInitiate}`;\n\n\treturn axios({\n\t\turl,\n\t\tmethod: 'POST',\n\t\tdata,\n\t\t// note: axios needs to use `withCredentials: true` in order for Sitecore cookies to be included in CORS requests\n\t\t// which is necessary for analytics and such, same with lines 69 and 84\n\t\twithCredentials: !isDevelopmentEnv,\n\t});\n}\n\n/**\n *\n * @param data\n *\n * 2nd MAU push call, account locked check\n *\n * TODO: Remove once member login push is confirmed to be used permanently\n * Also check azure-pipelines.yaml\n *\n */\nexport function memberPushAccountCheck(data: {}) {\n\tconst url = `${getCurrentUrlHostname}${config.sitecoreApi.apiPathMemberPushAccountCheck}`;\n\n\treturn axios({\n\t\turl,\n\t\tmethod: 'POST',\n\t\tdata,\n\t\t// note: axios needs to use `withCredentials: true` in order for Sitecore cookies to be included in CORS requests\n\t\t// which is necessary for analytics and such, same with lines 69 and 84\n\t\twithCredentials: !isDevelopmentEnv,\n\t});\n}\n\n/**\n *\n * @param data\n *\n * 3rd MAU push call, check if device is registered\n *\n * TODO: Remove once member login push is confirmed to be used permanently\n * Also check azure-pipelines.yaml\n *\n */\nexport function memberPushDeviceCheck(\n\tdata: IMobileAuthPushDeviceCheckRequestData,\n) {\n\tconst url = `${getCurrentUrlHostname}${config.sitecoreApi.apiPathMemberPushDeviceCheck}`;\n\n\treturn axios({\n\t\turl,\n\t\tmethod: 'POST',\n\t\tdata,\n\t\t// note: axios needs to use `withCredentials: true` in order for Sitecore cookies to be included in CORS requests\n\t\t// which is necessary for analytics and such, same with lines 69 and 84\n\t\twithCredentials: !isDevelopmentEnv,\n\t});\n}\n\n/**\n *\n * @param data\n *\n * Consolidated MAU push and check calls:\n * - check if device is registered\n * - check if account is existing\n * - send push notification\n *\n * TODO: Consider adding unit tests for this\n *\n */\nexport function memberLoginPush(data: IMobileAuthLoginPushRequestData) {\n\tconst url = `${getCurrentUrlHostname}${config.sitecoreApi.apiPathMemberLoginPush}`;\n\n\treturn axios({\n\t\turl,\n\t\tmethod: 'POST',\n\t\tdata,\n\t\t// note: axios needs to use `withCredentials: true` in order for Sitecore cookies to be included in CORS requests\n\t\t// which is necessary for analytics and such, same with lines 69 and 84\n\t\twithCredentials: !isDevelopmentEnv,\n\t});\n}\n\n/**\n *\n * @param data IMobileAuthPushPollingWaitData\n *\n * Actual polling wait call. Loops according to set total duration and intervals\n * Will be waiting for either accept/deny/expired responses\n */\nexport function memberPushPollingWait(data: IMobileAuthPushPollingWaitData) {\n\tconst url = `${getCurrentUrlHostname}${config.sitecoreApi.apiPathMemberPushPollingWait}`;\n\n\treturn axios({\n\t\turl,\n\t\tmethod: 'POST',\n\t\tdata,\n\t\t// note: axios needs to use `withCredentials: true` in order for Sitecore cookies to be included in CORS requests\n\t\t// which is necessary for analytics and such, same with lines 69 and 84\n\t\twithCredentials: !isDevelopmentEnv,\n\t});\n}\n\n/**\n *\n * @param data\n *\n * Absolutely redundant endpoint for resending or canceling while within\n * expired/denied page\n */\nexport function memberPushResend(data: IMobileAuthPushDeviceCheckRequestData) {\n\tconst url = `${getCurrentUrlHostname}${config.sitecoreApi.apiPathMemberPushResend}`;\n\n\treturn axios({\n\t\turl,\n\t\tmethod: 'POST',\n\t\tdata,\n\t\t// note: axios needs to use `withCredentials: true` in order for Sitecore cookies to be included in CORS requests\n\t\t// which is necessary for analytics and such, same with lines 69 and 84\n\t\twithCredentials: !isDevelopmentEnv,\n\t});\n}\n\n/**\n * Call CAT Authorise API for Member Login\n */\nexport function memberAuthorize(ssoTokenId: string, redirectUrl: string) {\n\tconst base = `${config.australianSuperApi?.apiDomain}${config.australianSuperApi?.apiPathIdentity}`;\n\n\tconst url = `${base}/sitecore-authorize`;\n\n\treturn axios({\n\t\turl,\n\t\tmethod: 'POST',\n\t\theaders: {\n\t\t\t'X-API-Key': config?.externalServices?.coarseGrainApiKey, // API Coarse grain\n\t\t\t'X-Correlation-Id': uuidv4(), // FED initiated correlationID\n\t\t\t'X-Correlation-App': X_CORRELATION_APP, // Link detection of request origin\n\t\t},\n\t\twithCredentials: AKAMAI_BOT_FLAG, // akamai bot detection\n\t\tdata: {\n\t\t\tdata: {\n\t\t\t\tsso_token: ssoTokenId,\n\t\t\t\tredirect_uri: redirectUrl,\n\t\t\t\tclient_id: SITECORE_AUTHORIZATION.CLIENT_ID,\n\t\t\t\tdecision: SITECORE_AUTHORIZATION.DECISION,\n\t\t\t\tresponse_type: SITECORE_AUTHORIZATION.RESPONSE_TYPE,\n\t\t\t\tscope: SITECORE_AUTHORIZATION.SCOPE,\n\t\t\t},\n\t\t},\n\t});\n}\n\n/**\n * Call Sitecore API for Member Logout\n */\nexport function memberLogout() {\n\tconst url = `${getCurrentUrlHostname}${config.sitecoreApi.apiPathMemberLogout}`;\n\n\treturn axios({\n\t\turl,\n\t\tmethod: 'POST',\n\t\tdata: {},\n\t\twithCredentials: !isDevelopmentEnv,\n\t});\n}\n\n/**\n * Call Process Auth Code plus Browser Cookies\n * @param {data} response from the previous API\n * @param {domainName} host name from the current/active tab\n */\nexport function memberProcessAuthCode(data: any, domainName: string) {\n\tconst baseUrl = `${data?.redirect_uri}?code=${data?.code}&iss=${data?.issuer}&client_id=${data?.client_id}&redirect_uri=${domainName}`;\n\n\treturn axios({\n\t\turl: baseUrl,\n\t\tmethod: 'POST',\n\t\twithCredentials: !isDevelopmentEnv,\n\t});\n}\n\n/**\n * Call Sitecore API for Member Refresh Token\n * @param {rtoken} old refresh token\n */\nexport function memberRefreshToken(rtoken: string) {\n\tconst url = `${getCurrentUrlHostname}${config.sitecoreApi.apiPathMemberRefreshToken}`;\n\n\treturn axios({\n\t\turl,\n\t\tmethod: 'POST',\n\t\tdata: {\n\t\t\trefresh_token: rtoken,\n\t\t},\n\t\twithCredentials: !isDevelopmentEnv,\n\t});\n}\n","/* Generated by restful-react */\n\nimport React from 'react';\nimport {\n\tGet,\n\tGetProps,\n\tuseGet,\n\tUseGetProps,\n\tMutate,\n\tMutateProps,\n\tuseMutate,\n\tUseMutateProps,\n} from 'restful-react';\n\nexport interface Error {\n\t/**\n\t * HTTP status code\n\t */\n\tstatus: number;\n\t/**\n\t * Code indicating the type error e.g. ERR_VAL_00000001\n\t */\n\terror_code: string;\n\t/**\n\t * Description of the problem\n\t */\n\tdescription: string;\n\t/**\n\t * Optional. More detailed error code, may be used differentiate between variations of the main error type\n\t */\n\terror_sub_code?: string;\n\t/**\n\t * Optional. Further information regarding the problem\n\t */\n\tmore_info?: string;\n\t/**\n\t * Optional. URL to documentation on the error e.g. suggestions for resolution\n\t */\n\tdoc_link?: string;\n}\n\nexport interface MemberData {\n\tdata?: Member;\n}\n\nexport interface Member {\n\tparty_type_id: string;\n\tcustomer_reference_number: string;\n\t/**\n\t * Title of the member contact\n\t */\n\tsalutation: string;\n\t/**\n\t * First name of the member contact\n\t */\n\tfirst_name: string;\n\t/**\n\t * Last name of the member contact\n\t */\n\tlast_name: string;\n\t/**\n\t * Birth date of the member contact\n\t */\n\tbirth_date: string;\n\t/**\n\t * Date of death of the member contact\n\t */\n\tdate_of_death: string;\n\t/**\n\t * age of the member contact\n\t */\n\tage: number;\n\t/**\n\t * gender of the member contact\n\t */\n\tgender: string;\n\t/**\n\t * email address of the member contact\n\t */\n\temail_address: string;\n\t/**\n\t * status of the member contact (Active, Inactive)\n\t */\n\tmember_status: string;\n\t/**\n\t * indicator if first login in web portal\n\t */\n\tfirst_web_portal_login?: boolean;\n\t/**\n\t * indicator of stop payment\n\t */\n\tstop_payment_indicator?: string;\n\t/**\n\t * classification id of the member\n\t */\n\tclassification_id: string;\n\t/**\n\t * phone numbers of the member contact\n\t */\n\tphone_numbers: PhoneNumber[];\n\t/**\n\t * addresses of the member contact\n\t */\n\taddresses: Address[];\n\t/**\n\t * accounts of the member contact\n\t */\n\taccounts: MemberAccount[];\n\tprofile_actions?: ProfileActionsResponse;\n}\n\nexport interface MemberAccount {\n\taccount_number?: string;\n\t/**\n\t * Accumulation or Pension\n\t */\n\tproduct_name?: string;\n\t/**\n\t * Status of account (Active, Inactive, In-Active, Provisional, Holding, Pending)\n\t */\n\taccount_status?: string;\n\t/**\n\t * Date when the member joined\n\t */\n\tjoined_date?: string;\n\t/**\n\t * Account Classification\n\t */\n\tproduct_classification?: string;\n\t/**\n\t * Application type (Direct, Deemed)\n\t */\n\tapplication_type?: string;\n}\n\nexport interface PhoneNumber {\n\ttype: 'WORK' | 'HOME' | 'MOBILE';\n\tnumber: string;\n}\n\nexport type PhoneNumbers = PhoneNumber[];\n\nexport interface PhoneNumbersUpdate {\n\tphone_numbers?: PhoneNumbers;\n}\n\nexport interface PhoneNumbersData {\n\tdata?: PhoneNumbersUpdate;\n}\n\nexport interface Email {\n\tauth_code: string;\n\temail_address: string;\n}\n\nexport interface EmailUpdate {\n\tdata?: Email;\n}\n\nexport interface Address {\n\ttype: 'POSTAL' | 'RESIDENTIAL';\n\taddress_line1: string;\n\taddress_line2?: string;\n\tpostcode: string;\n\tcity: string;\n\tstate: string;\n\tcountry: string;\n\tstatus: 'active' | 'inactive';\n}\n\nexport type Addresses = Address[];\n\nexport interface AddressesUpdate {\n\taddresses?: Addresses;\n}\n\nexport interface AddressesData {\n\tdata?: AddressesUpdate;\n}\n\nexport interface UpdatePhoneNumberData {\n\t/**\n\t * RFC 3339 compliant date time 2017-07-21T17:32:28+10:00\n\t */\n\trestriction_end_datetime?: string;\n\trestricted_applications?: string[];\n}\n\n/**\n * Successful phone number update (includes restriction date for mobile type)\n */\nexport interface UpdatePhoneNumberResponse {\n\tdata?: UpdatePhoneNumberData;\n}\n\nexport interface ProfileActionsResponse {\n\treview_your_personal_details?: boolean;\n\tadd_your_mobile_number?: boolean;\n\tmanage_your_beneficiaries?: boolean;\n\tcommunication_preference?: boolean;\n\ttell_your_employer_last_updated_date?: string;\n\tconsolidate_your_super_last_updated_date?: string;\n\tmake_contribution_last_updated_date?: string;\n}\n\nexport interface ProfileActionsRequestData {\n\tdata?: ProfileActionsRequestObject;\n}\n\nexport interface ProfileActionsRequestObject {\n\tprofile_actions?: ProfileActionsRequest;\n}\n\nexport interface ProfileActionsRequest {\n\treview_your_personal_details?: boolean;\n\tcommunication_preference?: boolean;\n\tmanage_your_beneficiaries?: boolean;\n\ttell_your_employer_last_updated_date?: string;\n\tconsolidate_your_super_last_updated_date?: string;\n\tmake_contribution_last_updated_date?: string;\n}\n\n/**\n * Update successful. No Content\n */\nexport type Response204 = void;\n\n/**\n * Bad request\n */\nexport type Response400 = Error;\n\n/**\n * Unauthorized\n */\nexport type Response401 = Error;\n\n/**\n * Forbidden\n */\nexport type Response403 = Error;\n\n/**\n * Not found\n */\nexport type Response404 = Error;\n\n/**\n * Conflict\n */\nexport type Response409 = Error;\n\n/**\n * Invalid request payload\n */\nexport type Response422 = Error;\n\n/**\n * Internal server error\n */\nexport type Response500 = Error;\n\n/**\n * An error has occurred\n */\nexport type ErrorResponseResponse = Error;\n\nexport interface GetMemberQueryParams {\n\t/**\n\t * Flag for finegrain auth to exclude Link Data Response\n\t */\n\tmode?: 'summary';\n}\n\nexport interface GetMemberPathParams {\n\t/**\n\t * Unique ID assigned to the member at AustralianSuper. This is a hashed value\n\t */\n\tparty_type_id: string;\n}\n\nexport type GetMemberProps = Omit<\n\tGetProps<\n\t\tMemberData,\n\t\tResponse401 | Response404 | Response500 | ErrorResponseResponse,\n\t\tGetMemberQueryParams,\n\t\tGetMemberPathParams\n\t>,\n\t'path'\n> &\n\tGetMemberPathParams;\n\n/**\n * Get member\n */\nexport const GetMember = ({ party_type_id, ...props }: GetMemberProps) => (\n\t\n\t\tpath={`/members/${party_type_id}`}\n\t\t{...props}\n\t/>\n);\n\nexport type UseGetMemberProps = Omit<\n\tUseGetProps<\n\t\tMemberData,\n\t\tResponse401 | Response404 | Response500 | ErrorResponseResponse,\n\t\tGetMemberQueryParams,\n\t\tGetMemberPathParams\n\t>,\n\t'path'\n> &\n\tGetMemberPathParams;\n\n/**\n * Get member\n */\nexport const useGetMember = ({ party_type_id, ...props }: UseGetMemberProps) =>\n\tuseGet<\n\t\tMemberData,\n\t\tResponse401 | Response404 | Response500 | ErrorResponseResponse,\n\t\tGetMemberQueryParams,\n\t\tGetMemberPathParams\n\t>(\n\t\t(paramsInPath: GetMemberPathParams) =>\n\t\t\t`/members/${paramsInPath.party_type_id}`,\n\t\t{ pathParams: { party_type_id }, ...props },\n\t);\n\nexport interface UpdateEmailsPathParams {\n\t/**\n\t * Unique ID assigned to the member at AustralianSuper. This is a hashed value\n\t */\n\tparty_type_id: string;\n}\n\nexport type UpdateEmailsProps = Omit<\n\tMutateProps<\n\t\tResponse204,\n\t\t| Response401\n\t\t| Response403\n\t\t| Response404\n\t\t| Response500\n\t\t| ErrorResponseResponse,\n\t\tvoid,\n\t\tEmailUpdate,\n\t\tUpdateEmailsPathParams\n\t>,\n\t'path' | 'verb'\n> &\n\tUpdateEmailsPathParams;\n\n/**\n * Update member email\n */\nexport const UpdateEmails = ({\n\tparty_type_id,\n\t...props\n}: UpdateEmailsProps) => (\n\t\n\t\tverb=\"PUT\"\n\t\tpath={`/members/${party_type_id}/email`}\n\t\t{...props}\n\t/>\n);\n\nexport type UseUpdateEmailsProps = Omit<\n\tUseMutateProps<\n\t\tResponse204,\n\t\t| Response401\n\t\t| Response403\n\t\t| Response404\n\t\t| Response500\n\t\t| ErrorResponseResponse,\n\t\tvoid,\n\t\tEmailUpdate,\n\t\tUpdateEmailsPathParams\n\t>,\n\t'path' | 'verb'\n> &\n\tUpdateEmailsPathParams;\n\n/**\n * Update member email\n */\nexport const useUpdateEmails = ({\n\tparty_type_id,\n\t...props\n}: UseUpdateEmailsProps) =>\n\tuseMutate<\n\t\tResponse204,\n\t\t| Response401\n\t\t| Response403\n\t\t| Response404\n\t\t| Response500\n\t\t| ErrorResponseResponse,\n\t\tvoid,\n\t\tEmailUpdate,\n\t\tUpdateEmailsPathParams\n\t>(\n\t\t'PUT',\n\t\t(paramsInPath: UpdateEmailsPathParams) =>\n\t\t\t`/members/${paramsInPath.party_type_id}/email`,\n\t\t{ pathParams: { party_type_id }, ...props },\n\t);\n\nexport interface UpdatePhoneNumbersPathParams {\n\t/**\n\t * Unique ID assigned to the member at AustralianSuper. This is a hashed value\n\t */\n\tparty_type_id: string;\n}\n\nexport type UpdatePhoneNumbersProps = Omit<\n\tMutateProps<\n\t\tUpdatePhoneNumberResponse,\n\t\t| Response400\n\t\t| Response401\n\t\t| Response403\n\t\t| Response404\n\t\t| Response500\n\t\t| ErrorResponseResponse,\n\t\tvoid,\n\t\tPhoneNumbersData,\n\t\tUpdatePhoneNumbersPathParams\n\t>,\n\t'path' | 'verb'\n> &\n\tUpdatePhoneNumbersPathParams;\n\n/**\n * Update member phone numbers\n */\nexport const UpdatePhoneNumbers = ({\n\tparty_type_id,\n\t...props\n}: UpdatePhoneNumbersProps) => (\n\t\n\t\tverb=\"PUT\"\n\t\tpath={`/members/${party_type_id}/phone-numbers`}\n\t\t{...props}\n\t/>\n);\n\nexport type UseUpdatePhoneNumbersProps = Omit<\n\tUseMutateProps<\n\t\tUpdatePhoneNumberResponse,\n\t\t| Response400\n\t\t| Response401\n\t\t| Response403\n\t\t| Response404\n\t\t| Response500\n\t\t| ErrorResponseResponse,\n\t\tvoid,\n\t\tPhoneNumbersData,\n\t\tUpdatePhoneNumbersPathParams\n\t>,\n\t'path' | 'verb'\n> &\n\tUpdatePhoneNumbersPathParams;\n\n/**\n * Update member phone numbers\n */\nexport const useUpdatePhoneNumbers = ({\n\tparty_type_id,\n\t...props\n}: UseUpdatePhoneNumbersProps) =>\n\tuseMutate<\n\t\tUpdatePhoneNumberResponse,\n\t\t| Response400\n\t\t| Response401\n\t\t| Response403\n\t\t| Response404\n\t\t| Response500\n\t\t| ErrorResponseResponse,\n\t\tvoid,\n\t\tPhoneNumbersData,\n\t\tUpdatePhoneNumbersPathParams\n\t>(\n\t\t'PUT',\n\t\t(paramsInPath: UpdatePhoneNumbersPathParams) =>\n\t\t\t`/members/${paramsInPath.party_type_id}/phone-numbers`,\n\t\t{ pathParams: { party_type_id }, ...props },\n\t);\n\nexport interface UpdateAddressesPathParams {\n\t/**\n\t * Unique ID assigned to the member at AustralianSuper. This is a hashed value\n\t */\n\tparty_type_id: string;\n}\n\nexport type UpdateAddressesProps = Omit<\n\tMutateProps<\n\t\tResponse204,\n\t\tResponse401 | Response404 | Response500 | ErrorResponseResponse,\n\t\tvoid,\n\t\tAddressesData,\n\t\tUpdateAddressesPathParams\n\t>,\n\t'path' | 'verb'\n> &\n\tUpdateAddressesPathParams;\n\n/**\n * Update member address\n */\nexport const UpdateAddresses = ({\n\tparty_type_id,\n\t...props\n}: UpdateAddressesProps) => (\n\t\n\t\tverb=\"PUT\"\n\t\tpath={`/members/${party_type_id}/addresses`}\n\t\t{...props}\n\t/>\n);\n\nexport type UseUpdateAddressesProps = Omit<\n\tUseMutateProps<\n\t\tResponse204,\n\t\tResponse401 | Response404 | Response500 | ErrorResponseResponse,\n\t\tvoid,\n\t\tAddressesData,\n\t\tUpdateAddressesPathParams\n\t>,\n\t'path' | 'verb'\n> &\n\tUpdateAddressesPathParams;\n\n/**\n * Update member address\n */\nexport const useUpdateAddresses = ({\n\tparty_type_id,\n\t...props\n}: UseUpdateAddressesProps) =>\n\tuseMutate<\n\t\tResponse204,\n\t\tResponse401 | Response404 | Response500 | ErrorResponseResponse,\n\t\tvoid,\n\t\tAddressesData,\n\t\tUpdateAddressesPathParams\n\t>(\n\t\t'PUT',\n\t\t(paramsInPath: UpdateAddressesPathParams) =>\n\t\t\t`/members/${paramsInPath.party_type_id}/addresses`,\n\t\t{ pathParams: { party_type_id }, ...props },\n\t);\n\nexport interface UpdateFirstWebPortalLoginPathParams {\n\t/**\n\t * Unique ID assigned to the member at AustralianSuper. This is a hashed value\n\t */\n\tparty_type_id: string;\n}\n\nexport type UpdateFirstWebPortalLoginProps = Omit<\n\tMutateProps<\n\t\tResponse204,\n\t\tResponse401 | Response404 | Response500 | ErrorResponseResponse,\n\t\tvoid,\n\t\tvoid,\n\t\tUpdateFirstWebPortalLoginPathParams\n\t>,\n\t'path' | 'verb'\n> &\n\tUpdateFirstWebPortalLoginPathParams;\n\n/**\n * Update the first_web_portal_login column in Member_Profiles DB after the member gone through the first time login\n */\nexport const UpdateFirstWebPortalLogin = ({\n\tparty_type_id,\n\t...props\n}: UpdateFirstWebPortalLoginProps) => (\n\t\n\t\tverb=\"PUT\"\n\t\tpath={`/members/${party_type_id}/first-web-portal-login`}\n\t\t{...props}\n\t/>\n);\n\nexport type UseUpdateFirstWebPortalLoginProps = Omit<\n\tUseMutateProps<\n\t\tResponse204,\n\t\tResponse401 | Response404 | Response500 | ErrorResponseResponse,\n\t\tvoid,\n\t\tvoid,\n\t\tUpdateFirstWebPortalLoginPathParams\n\t>,\n\t'path' | 'verb'\n> &\n\tUpdateFirstWebPortalLoginPathParams;\n\n/**\n * Update the first_web_portal_login column in Member_Profiles DB after the member gone through the first time login\n */\nexport const useUpdateFirstWebPortalLogin = ({\n\tparty_type_id,\n\t...props\n}: UseUpdateFirstWebPortalLoginProps) =>\n\tuseMutate<\n\t\tResponse204,\n\t\tResponse401 | Response404 | Response500 | ErrorResponseResponse,\n\t\tvoid,\n\t\tvoid,\n\t\tUpdateFirstWebPortalLoginPathParams\n\t>(\n\t\t'PUT',\n\t\t(paramsInPath: UpdateFirstWebPortalLoginPathParams) =>\n\t\t\t`/members/${paramsInPath.party_type_id}/first-web-portal-login`,\n\t\t{ pathParams: { party_type_id }, ...props },\n\t);\n\nexport interface UpdateProfileActionsPathParams {\n\t/**\n\t * Unique ID assigned to the member at AustralianSuper. This is a hashed value\n\t */\n\tparty_type_id: string;\n}\n\nexport type UpdateProfileActionsProps = Omit<\n\tMutateProps<\n\t\tResponse204,\n\t\tResponse401 | Response404 | Response500 | ErrorResponseResponse,\n\t\tvoid,\n\t\tProfileActionsRequestData,\n\t\tUpdateProfileActionsPathParams\n\t>,\n\t'path' | 'verb'\n> &\n\tUpdateProfileActionsPathParams;\n\n/**\n * This endpoint will be used to update profile actions columns in Member_Profiles table of Members Database.\n */\nexport const UpdateProfileActions = ({\n\tparty_type_id,\n\t...props\n}: UpdateProfileActionsProps) => (\n\t\n\t\tverb=\"PUT\"\n\t\tpath={`/members/${party_type_id}/profile-actions`}\n\t\t{...props}\n\t/>\n);\n\nexport type UseUpdateProfileActionsProps = Omit<\n\tUseMutateProps<\n\t\tResponse204,\n\t\tResponse401 | Response404 | Response500 | ErrorResponseResponse,\n\t\tvoid,\n\t\tProfileActionsRequestData,\n\t\tUpdateProfileActionsPathParams\n\t>,\n\t'path' | 'verb'\n> &\n\tUpdateProfileActionsPathParams;\n\n/**\n * This endpoint will be used to update profile actions columns in Member_Profiles table of Members Database.\n */\nexport const useUpdateProfileActions = ({\n\tparty_type_id,\n\t...props\n}: UseUpdateProfileActionsProps) =>\n\tuseMutate<\n\t\tResponse204,\n\t\tResponse401 | Response404 | Response500 | ErrorResponseResponse,\n\t\tvoid,\n\t\tProfileActionsRequestData,\n\t\tUpdateProfileActionsPathParams\n\t>(\n\t\t'PUT',\n\t\t(paramsInPath: UpdateProfileActionsPathParams) =>\n\t\t\t`/members/${paramsInPath.party_type_id}/profile-actions`,\n\t\t{ pathParams: { party_type_id }, ...props },\n\t);\n","/* eslint-disable @typescript-eslint/camelcase */\nimport { Member } from 'core/interface/MemberAccount';\n\nconst Ashley: Member = {\n\tparty_type_id:\n\t\t'EA1610381710B8FEEAC2177D3C3F5CBF26732D2299BED27B93F6022E73D16EE9B1CE84A4D2921A169472D8612DE83B0C6B5E2E6C95A7686332136FE8685AEB72',\n\tcustomer_reference_number: '31075195',\n\tsalutation: 'MS',\n\tfirst_name: 'Ashley',\n\tlast_name: 'Doe',\n\tbirth_date: '1975-10-11',\n\tdate_of_death: '2020-10-11',\n\tclassification_id: '700',\n\tfirst_web_portal_login: true,\n\tage: 74,\n\temail_address: 'ashley.doe@email.com',\n\tmember_status: 'ACTIVE',\n\tgender: '',\n\tprofile_actions: {\n\t\treview_your_personal_details: true,\n\t\tadd_your_mobile_number: true,\n\t\tmanage_your_beneficiaries: false,\n\t\tcommunication_preference: false,\n\t\ttell_your_employer_last_updated_date: '2022-03-26',\n\t\tconsolidate_your_super_last_updated_date: '2022-03-26',\n\t\tmake_contribution_last_updated_date: '2022-03-26',\n\t},\n\taccounts: [\n\t\t{\n\t\t\taccount_number: '700069092',\n\t\t\tproduct_name: 'Accumulation',\n\t\t\tproduct_classification: 'Accumulation',\n\t\t\taccount_status: 'ACTIVE',\n\t\t\tjoined_date: '2007-07-08',\n\t\t},\n\t\t{\n\t\t\taccount_number: '700069093',\n\t\t\tproduct_name: 'Pension',\n\t\t\tproduct_classification: 'TTR',\n\t\t\taccount_status: 'ACTIVE',\n\t\t\tjoined_date: '2006-07-08',\n\t\t},\n\t\t{\n\t\t\taccount_number: '700069091',\n\t\t\tproduct_name: 'Pension',\n\t\t\tproduct_classification: 'Pension',\n\t\t\taccount_status: 'ACTIVE',\n\t\t\tjoined_date: '2008-07-08',\n\t\t},\n\t],\n\tphone_numbers: [\n\t\t{\n\t\t\ttype: 'MOBILE',\n\n\t\t\tnumber: '432765981',\n\t\t},\n\t\t{\n\t\t\ttype: 'HOME',\n\n\t\t\tnumber: '80329584',\n\t\t},\n\t\t{ type: 'WORK', number: '52767676' },\n\t],\n\taddresses: [\n\t\t{\n\t\t\ttype: 'RESIDENTIAL',\n\t\t\taddress_line1: '50 Lonsdale Street',\n\t\t\taddress_line2: '',\n\t\t\tpostcode: '3000',\n\t\t\tcity: 'Melbourne',\n\t\t\tstate: 'VIC',\n\t\t\tcountry: 'Australia',\n\t\t\tstatus: 'active',\n\t\t},\n\t\t{\n\t\t\ttype: 'POSTAL',\n\t\t\taddress_line1: '50 Lonsdale Street Postal',\n\t\t\taddress_line2: '',\n\t\t\tpostcode: '3000',\n\t\t\tcity: 'Melbourne',\n\t\t\tstate: 'VIC',\n\t\t\tcountry: 'Australia',\n\t\t\tstatus: 'active',\n\t\t},\n\t],\n};\n\nexport default Ashley;\n","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M20 40C31.0457 40 40 31.0457 40 20C40 8.9543 31.0457 0 20 0C8.9543 0 0 8.9543 0 20C0 31.0457 8.9543 40 20 40Z\",\n fill: \"#F5F5F9\"\n});\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M13.7951 25.064C13.7951 25.64 14.2451 26.09 14.8211 26.09C15.2891 26.09 15.6671 25.838 15.8471 25.388L16.9091 22.958H23.0291L24.0551 25.316C24.2531 25.784 24.6131 26.09 25.1351 26.09C25.7291 26.09 26.1791 25.622 26.1791 25.028C26.1791 24.884 26.1431 24.722 26.0531 24.56L21.3731 14.12C21.1211 13.562 20.6891 13.22 20.0591 13.22H19.9511C19.3211 13.22 18.8711 13.562 18.6191 14.12L13.9391 24.56C13.8491 24.74 13.7951 24.902 13.7951 25.064ZM17.7551 20.996L19.9691 15.902L22.1831 20.996H17.7551Z\",\n fill: \"#171A20\"\n});\n\nvar SvgAIcon = function SvgAIcon(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n width: 40,\n height: 40,\n viewBox: \"0 0 40 40\",\n fill: \"none\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgAIcon, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/a-icon.f8f92fdf.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"none\",\n fillRule: \"evenodd\",\n stroke: \"currentColor\",\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n d: \"M1 0l17 32L1 64\"\n});\n\nvar SvgAccountArrowNav = function SvgAccountArrowNav(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 19 64\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgAccountArrowNav, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/account-arrow-nav.7743e2bb.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"account-balance-wallet_svg__a\",\n d: \"M9.5 16V8a2 2 0 012-2h9V5c0-1.1-.9-2-2-2h-14a2 2 0 00-2 2v14a2 2 0 002 2h14c1.1 0 2-.9 2-2v-1h-9a2 2 0 01-2-2zm3-8c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h9V8h-9zm3 5.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#account-balance-wallet_svg__a\"\n});\n\nvar SvgAccountBalanceWallet = function SvgAccountBalanceWallet(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgAccountBalanceWallet, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/account-balance-wallet.a0878471.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"account-circle_svg__a\",\n d: \"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm0 14.2a7.2 7.2 0 01-6-3.22c.03-1.99 4-3.08 6-3.08 1.99 0 5.97 1.09 6 3.08a7.2 7.2 0 01-6 3.22z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#account-circle_svg__a\"\n});\n\nvar SvgAccountCircle = function SvgAccountCircle(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgAccountCircle, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/account-circle.f5097bb4.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"add_svg__a\",\n d: \"M18 13h-5v5c0 .55-.45 1-1 1s-1-.45-1-1v-5H6c-.55 0-1-.45-1-1s.45-1 1-1h5V6c0-.55.45-1 1-1s1 .45 1 1v5h5c.55 0 1 .45 1 1s-.45 1-1 1z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#add_svg__a\"\n});\n\nvar SvgAdd = function SvgAdd(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgAdd, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/add.aba18757.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"add-circle-outline_svg__a\",\n d: \"M12 7c-.55 0-1 .45-1 1v3H8c-.55 0-1 .45-1 1s.45 1 1 1h3v3c0 .55.45 1 1 1s1-.45 1-1v-3h3c.55 0 1-.45 1-1s-.45-1-1-1h-3V8c0-.55-.45-1-1-1zm0-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#add-circle-outline_svg__a\"\n});\n\nvar SvgAddCircleOutline = function SvgAddCircleOutline(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgAddCircleOutline, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/add-circle-outline.3a1095e3.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"g\", {\n fill: \"currentColor\",\n fillRule: \"evenodd\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M15 3h-5c-.6 0-1 .4-1 1s.4 1 1 1h5c.6 0 1-.4 1-1s-.4-1-1-1zM1 5h1v2c0 .6.4 1 1 1h3c.6 0 1-.4 1-1V1c0-.6-.4-1-1-1H3c-.6 0-1 .4-1 1v2H1c-.6 0-1 .4-1 1s.4 1 1 1zM1 13h5c.6 0 1-.4 1-1s-.4-1-1-1H1c-.6 0-1 .4-1 1s.4 1 1 1zM15 11h-1V9c0-.6-.4-1-1-1h-3c-.6 0-1 .4-1 1v6c0 .6.4 1 1 1h3c.6 0 1-.4 1-1v-2h1c.6 0 1-.4 1-1s-.4-1-1-1z\"\n}));\n\nvar SvgAdjustment = function SvgAdjustment(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 16 16\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgAdjustment, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/adjustment.f11c7385.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"style\", null, \".age-pension_svg__st4{fill:#260046}.age-pension_svg__st5{fill:#fff}.age-pension_svg__st6{fill:#f5f5f5}\");\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"switch\", null, /*#__PURE__*/React.createElement(\"g\", null, /*#__PURE__*/React.createElement(\"circle\", {\n cx: 40,\n cy: 40,\n r: 40,\n fill: \"none\"\n}), /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"age-pension_svg__SVGID_1_\",\n d: \"M0 0h80v80H0z\"\n})), /*#__PURE__*/React.createElement(\"clipPath\", {\n id: \"age-pension_svg__SVGID_00000145775020392114982930000004795791585640370111_\"\n}, /*#__PURE__*/React.createElement(\"use\", {\n overflow: \"visible\",\n xlinkHref: \"#age-pension_svg__SVGID_1_\"\n})), /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#age-pension_svg__SVGID_00000145775020392114982930000004795791585640370111_)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#eaeaea\",\n d: \"M40 80c22.093 0 40-17.908 40-39.999C80 17.908 62.093 0 40 0S0 17.908 0 40.001C0 62.092 17.907 80 40 80\"\n})), /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#ababab\",\n d: \"M54.682 18.393c-4.425-3.415-10.735-1.561-12.962 3.173a23.79 23.79 0 01-3.986 5.975c-3.544 3.863-2.976 11.079 6.832 10.618a54.312 54.312 0 015.889.044c3.753.231 10.178.197 10.736-5.223.204-1.984-1.141-4.003-.999-5.842.26-3.382-1.16-7.783-5.51-8.745z\",\n clipPath: \"url(#age-pension_svg__SVGID_00000145775020392114982930000004795791585640370111_)\"\n}), /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#age-pension_svg__SVGID_00000145775020392114982930000004795791585640370111_)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M27.09 41.314c-7.646 0-13.844 6.198-13.844 13.844h27.688c0-7.646-6.198-13.844-13.844-13.844\",\n className: \"age-pension_svg__st4\"\n})), /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#age-pension_svg__SVGID_00000145775020392114982930000004795791585640370111_)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M18.897 32.706a8.215 8.215 0 1116.43 0 8.215 8.215 0 11-16.43 0\",\n className: \"age-pension_svg__st5\"\n})), /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#age-pension_svg__SVGID_00000145775020392114982930000004795791585640370111_)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M30.213 37.709h-6.245v3.93a3.124 3.124 0 006.246 0v-3.93z\",\n className: \"age-pension_svg__st5\"\n})), /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#age-pension_svg__SVGID_00000145775020392114982930000004795791585640370111_)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M30.203 41.736c.001-.033.01-.063.01-.097v-1.337a8.175 8.175 0 01-6.246 0v1.337c0 .033.009.063.009.097.978.338 2.022.529 3.114.529s2.136-.192 3.113-.529\",\n className: \"age-pension_svg__st6\"\n})), /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#age-pension_svg__SVGID_00000145775020392114982930000004795791585640370111_)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#ea4403\",\n d: \"M49.069 37.782c-9.598 0-17.378 7.779-17.378 17.376h34.754c0-9.598-7.778-17.376-17.376-17.376\"\n})), /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#age-pension_svg__SVGID_00000145775020392114982930000004795791585640370111_)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M50.822 55.158L49.9 43.742l.295-.508 1.25-1.92-2.334.139-2.253-.01 1.115 1.791.295.508-.922 11.416z\",\n className: \"age-pension_svg__st4\"\n})), /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#age-pension_svg__SVGID_00000145775020392114982930000004795791585640370111_)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M52.988 33.256h-7.839v4.934a3.92 3.92 0 107.839 0v-4.934z\",\n className: \"age-pension_svg__st5\"\n})), /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#age-pension_svg__SVGID_00000145775020392114982930000004795791585640370111_)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M52.976 38.311c.001-.04.012-.079.012-.121v-1.677a10.263 10.263 0 01-3.919.776c-1.389 0-2.71-.278-3.92-.776v1.677c0 .042.012.081.013.121 1.226.423 2.537.664 3.907.664 1.37-.001 2.68-.241 3.907-.664\",\n className: \"age-pension_svg__st6\"\n})), /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#fff\",\n d: \"M38.758 26.977c0-5.695 4.616-10.312 10.312-10.312 5.695 0 10.31 4.617 10.31 10.312 0 5.695-4.616 10.312-10.31 10.312-5.697-.001-10.312-4.618-10.312-10.312\",\n clipPath: \"url(#age-pension_svg__SVGID_00000145775020392114982930000004795791585640370111_)\"\n}), /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#age-pension_svg__SVGID_00000145775020392114982930000004795791585640370111_)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#a9a9a9\",\n d: \"M27.1 24.358c-4.328 0-7.876 3.428-8.202 7.781a8.79 8.79 0 003.206-3.112 8.476 8.476 0 0011.188.074 8.912 8.912 0 002.026 4.12c.007-.14.01-.282.01-.424 0-4.66-3.684-8.439-8.228-8.439\"\n})), /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#ababab\",\n d: \"M50.057 16.667l.001.002c-5.765-1.165-13.468 5.406-11.261 13.259 7.43.231 11.719-4.921 13.53-8.273 1.474 2.355 3.741 4.83 7.047 5.66 1.078-7.296-2.526-11.118-9.317-10.648z\",\n clipPath: \"url(#age-pension_svg__SVGID_00000145775020392114982930000004795791585640370111_)\"\n})));\n\nvar SvgAgePension = function SvgAgePension(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n id: \"age-pension_svg__Layer_2\",\n x: 0,\n y: 0,\n viewBox: \"0 0 80 80\",\n xmlSpace: \"preserve\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgAgePension, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/age-pension.0fa7805b.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"announcement_svg__a\",\n d: \"M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-8 9c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1s1 .45 1 1v4c0 .55-.45 1-1 1zm1 4h-2v-2h2v2z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#announcement_svg__a\"\n});\n\nvar SvgAnnouncement = function SvgAnnouncement(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgAnnouncement, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/announcement.b304ac62.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#clip0_1121_5269)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M110.135 -0.000114141H9.53468C9.16798 -0.000114141 8.80568 -0.000114141 8.43995 0.00188586C8.1338 0.00388586 7.83009 0.00969586 7.521 0.0145859C6.84951 0.0224877 6.17961 0.0815621 5.5171 0.191296C4.85552 0.303418 4.21467 0.514802 3.61622 0.818296C3.0185 1.12436 2.47235 1.52205 1.99757 1.99696C1.5203 2.47052 1.12246 3.0179 0.81935 3.61805C0.5154 4.21699 0.304641 4.85882 0.19435 5.52137C0.0830109 6.18307 0.0230984 6.85241 0.01515 7.52337C0.00587 7.82997 0.00489 8.13759 0 8.44423V31.5585C0.00489 31.869 0.00587 32.1698 0.01515 32.4804C0.0231008 33.1513 0.0830134 33.8206 0.19435 34.4823C0.304336 35.1452 0.515108 35.7874 0.81935 36.3866C1.12233 36.9848 1.52022 37.53 1.99757 38.0009C2.47054 38.4779 3.01705 38.8759 3.61622 39.1796C4.21467 39.4839 4.85545 39.6965 5.5171 39.8104C6.17972 39.9192 6.84956 39.9783 7.521 39.9872C7.83009 39.994 8.1338 39.9979 8.43995 39.9979C8.80567 39.9999 9.168 39.9999 9.53468 39.9999H110.135C110.494 39.9999 110.859 39.9999 111.219 39.9979C111.523 39.9979 111.836 39.994 112.141 39.9872C112.811 39.9788 113.479 39.9197 114.141 39.8104C114.804 39.6957 115.448 39.4831 116.049 39.1796C116.647 38.8757 117.193 38.4777 117.666 38.0009C118.142 37.5281 118.541 36.9833 118.848 36.3866C119.15 35.787 119.358 35.1448 119.467 34.4823C119.578 33.8205 119.64 33.1514 119.652 32.4804C119.656 32.1698 119.656 31.869 119.656 31.5585C119.664 31.1952 119.664 30.8339 119.664 30.4647V9.53602C119.664 9.16981 119.664 8.80653 119.656 8.44423C119.656 8.13759 119.656 7.82997 119.652 7.52333C119.64 6.85231 119.578 6.18312 119.467 5.52133C119.358 4.85917 119.149 4.21739 118.848 3.61801C118.23 2.41508 117.252 1.43591 116.049 0.818206C115.448 0.515453 114.804 0.304126 114.141 0.191206C113.48 0.0809886 112.811 0.0218936 112.141 0.0144459C111.836 0.00956586 111.523 0.00370586 111.219 0.00175586C110.859 -0.000244141 110.494 -0.000244141 110.135 -0.000244141V-0.000114141Z\",\n fill: \"#A6A6A6\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M8.44487 39.125C8.14019 39.125 7.84287 39.1211 7.54058 39.1143C6.91436 39.1061 6.2896 39.0516 5.67144 38.9512C5.09503 38.8519 4.53664 38.6673 4.0147 38.4033C3.49754 38.1415 3.02585 37.7983 2.6177 37.3867C2.20364 36.98 1.85891 36.5082 1.59719 35.9902C1.33258 35.4688 1.14945 34.9099 1.05419 34.333C0.951311 33.7131 0.895651 33.0863 0.887687 32.458C0.881347 32.2471 0.873047 31.5449 0.873047 31.5449V8.44434C0.873047 8.44434 0.881887 7.75293 0.887737 7.5498C0.895363 6.92248 0.950699 6.29665 1.05327 5.67773C1.14871 5.09925 1.33197 4.53875 1.59673 4.01563C1.85749 3.49794 2.2003 3.02586 2.61187 2.61768C3.02297 2.20562 3.49617 1.8606 4.01421 1.59521C4.53495 1.33209 5.09228 1.14873 5.66753 1.05127C6.28772 0.949836 6.91465 0.894996 7.54304 0.88721L8.44536 0.875H111.214L112.127 0.8877C112.75 0.895099 113.371 0.94945 113.985 1.05029C114.566 1.14898 115.13 1.33362 115.656 1.59814C116.694 2.13299 117.539 2.97916 118.071 4.01807C118.332 4.53758 118.512 5.09351 118.607 5.66699C118.71 6.29099 118.768 6.92174 118.78 7.5542C118.783 7.8374 118.783 8.1416 118.783 8.44434C118.791 8.81934 118.791 9.17627 118.791 9.53613V30.4648C118.791 30.8281 118.791 31.1826 118.783 31.54C118.783 31.8652 118.783 32.1631 118.779 32.4697C118.768 33.0909 118.711 33.7104 118.608 34.3232C118.515 34.9043 118.333 35.4675 118.068 35.9932C117.805 36.5056 117.462 36.9733 117.053 37.3789C116.644 37.7927 116.172 38.1379 115.653 38.4014C115.128 38.6674 114.566 38.8527 113.985 38.9512C113.367 39.0522 112.742 39.1067 112.116 39.1143C111.823 39.1211 111.517 39.125 111.219 39.125L110.135 39.127L8.44487 39.125Z\",\n fill: \"black\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M24.769 20.3006C24.7797 19.4659 25.0014 18.6475 25.4135 17.9216C25.8255 17.1956 26.4145 16.5857 27.1256 16.1485C26.6738 15.5034 26.0779 14.9724 25.385 14.5979C24.6922 14.2233 23.9216 14.0155 23.1344 13.9908C21.4552 13.8146 19.8272 14.9957 18.9715 14.9957C18.0992 14.9957 16.7817 14.0083 15.363 14.0375C14.4453 14.0672 13.551 14.334 12.7671 14.8121C11.9832 15.2901 11.3365 15.9631 10.8901 16.7654C8.95607 20.1138 10.3987 25.0349 12.2513 27.7415C13.1782 29.0668 14.2615 30.5473 15.6789 30.4948C17.066 30.4372 17.584 29.6103 19.2583 29.6103C20.9171 29.6103 21.4031 30.4948 22.8493 30.4614C24.3377 30.4372 25.2754 29.1302 26.1698 27.7923C26.8358 26.8479 27.3483 25.8042 27.6882 24.6997C26.8235 24.334 26.0856 23.7218 25.5665 22.9395C25.0474 22.1572 24.77 21.2394 24.769 20.3006V20.3006Z\",\n fill: \"white\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M22.0376 12.2108C22.8491 11.2366 23.2489 9.98445 23.1521 8.72021C21.9123 8.85044 20.767 9.44299 19.9445 10.3798C19.5424 10.8375 19.2344 11.3699 19.0381 11.9467C18.8419 12.5235 18.7612 13.1333 18.8008 13.7412C19.4209 13.7476 20.0344 13.6132 20.5951 13.3481C21.1558 13.083 21.649 12.6942 22.0376 12.2108Z\",\n fill: \"white\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M42.3022 27.1397H37.5688L36.4321 30.4961H34.4272L38.9106 18.0781H40.9936L45.477 30.4961H43.438L42.3022 27.1397ZM38.0591 25.5908H41.8111L39.9615 20.1436H39.9097L38.0591 25.5908Z\",\n fill: \"white\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M55.1592 25.9697C55.1592 28.7832 53.6533 30.5908 51.3809 30.5908C50.8052 30.6209 50.2327 30.4883 49.7289 30.2082C49.2251 29.928 48.8104 29.5117 48.5323 29.0068H48.4893V33.4912H46.6309V21.4423H48.4297V22.9482H48.4639C48.7549 22.4457 49.1766 22.0316 49.6842 21.7497C50.1918 21.4679 50.7664 21.3289 51.3467 21.3476C53.6445 21.3476 55.1592 23.164 55.1592 25.9697ZM53.2491 25.9697C53.2491 24.1367 52.3018 22.9316 50.8565 22.9316C49.4365 22.9316 48.4815 24.1621 48.4815 25.9697C48.4815 27.7939 49.4365 29.0156 50.8565 29.0156C52.3018 29.0156 53.2491 27.8193 53.2491 25.9697Z\",\n fill: \"white\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M65.1241 25.9697C65.1241 28.7832 63.6182 30.5908 61.3457 30.5908C60.7701 30.6209 60.1976 30.4883 59.6938 30.2081C59.19 29.928 58.7753 29.5117 58.4971 29.0068H58.4541V33.4912H56.5957V21.4423H58.3945V22.9482H58.4287C58.7197 22.4457 59.1414 22.0315 59.649 21.7497C60.1567 21.4679 60.7312 21.3289 61.3115 21.3476C63.6094 21.3476 65.1241 23.164 65.1241 25.9697ZM63.2139 25.9697C63.2139 24.1367 62.2666 22.9316 60.8213 22.9316C59.4014 22.9316 58.4463 24.1621 58.4463 25.9697C58.4463 27.7939 59.4014 29.0156 60.8213 29.0156C62.2666 29.0156 63.2139 27.8193 63.2139 25.9697H63.2139Z\",\n fill: \"white\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M71.71 27.0362C71.8477 28.2676 73.044 29.0762 74.6787 29.0762C76.2452 29.0762 77.3721 28.2676 77.3721 27.1572C77.3721 26.1934 76.6924 25.6162 75.083 25.2207L73.4737 24.833C71.1934 24.2822 70.1348 23.2158 70.1348 21.4854C70.1348 19.3428 72.002 17.8711 74.6534 17.8711C77.2774 17.8711 79.0762 19.3428 79.1367 21.4854H77.2607C77.1484 20.2461 76.124 19.4981 74.627 19.4981C73.1299 19.4981 72.1055 20.2549 72.1055 21.3565C72.1055 22.2344 72.7598 22.751 74.3604 23.1465L75.7285 23.4824C78.2764 24.0849 79.335 25.1084 79.335 26.9248C79.335 29.248 77.4844 30.7031 74.541 30.7031C71.7871 30.7031 69.9277 29.2822 69.8076 27.0361L71.71 27.0362Z\",\n fill: \"white\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M83.3457 19.2998V21.4424H85.0674V22.9141H83.3457V27.9053C83.3457 28.6807 83.6904 29.042 84.4473 29.042C84.6516 29.0384 84.8557 29.0241 85.0586 28.999V30.4619C84.7183 30.5255 84.3725 30.5543 84.0264 30.5478C82.1934 30.5478 81.4785 29.8593 81.4785 28.1035V22.9141H80.1621V21.4424H81.4785V19.2998H83.3457Z\",\n fill: \"white\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M86.0654 25.9697C86.0654 23.1211 87.7432 21.3311 90.3594 21.3311C92.9844 21.3311 94.6543 23.1211 94.6543 25.9697C94.6543 28.8262 92.9932 30.6084 90.3594 30.6084C87.7265 30.6084 86.0654 28.8262 86.0654 25.9697ZM92.7607 25.9697C92.7607 24.0156 91.8652 22.8623 90.3594 22.8623C88.8535 22.8623 87.959 24.0244 87.959 25.9697C87.959 27.9316 88.8535 29.0762 90.3594 29.0762C91.8652 29.0762 92.7607 27.9316 92.7607 25.9697H92.7607Z\",\n fill: \"white\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M96.1856 21.4425H97.958V22.9835H98.001C98.1209 22.5022 98.4029 22.0769 98.7995 21.779C99.1961 21.4811 99.6831 21.3288 100.179 21.3478C100.393 21.347 100.606 21.3703 100.815 21.4171V23.1554C100.545 23.0728 100.263 23.0348 99.9805 23.0431C99.7105 23.0321 99.4413 23.0797 99.1915 23.1826C98.9417 23.2855 98.717 23.4412 98.5331 23.6391C98.3491 23.837 98.2101 24.0724 98.1257 24.3291C98.0413 24.5857 98.0134 24.8576 98.0439 25.1261V30.4962H96.1855L96.1856 21.4425Z\",\n fill: \"white\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M109.384 27.8369C109.134 29.4805 107.533 30.6084 105.485 30.6084C102.852 30.6084 101.217 28.8437 101.217 26.0127C101.217 23.1729 102.86 21.3311 105.407 21.3311C107.912 21.3311 109.487 23.0518 109.487 25.7969V26.4336H103.093V26.5459C103.063 26.8791 103.105 27.2148 103.215 27.5306C103.325 27.8464 103.501 28.1352 103.732 28.3778C103.962 28.6203 104.241 28.8111 104.551 28.9374C104.861 29.0637 105.194 29.1226 105.528 29.1103C105.967 29.1515 106.408 29.0498 106.785 28.8203C107.162 28.5909 107.454 28.246 107.619 27.8369L109.384 27.8369ZM103.102 25.1348H107.628C107.645 24.8352 107.599 24.5354 107.495 24.2541C107.39 23.9729 107.228 23.7164 107.02 23.5006C106.811 23.2849 106.56 23.1145 106.283 23.0003C106.005 22.8861 105.707 22.8305 105.407 22.8369C105.105 22.8351 104.805 22.8933 104.525 23.008C104.245 23.1227 103.99 23.2918 103.776 23.5054C103.561 23.7191 103.391 23.973 103.276 24.2527C103.16 24.5323 103.101 24.8321 103.102 25.1348V25.1348Z\",\n fill: \"white\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M37.8262 8.73065C38.2158 8.70269 38.6067 8.76155 38.9709 8.90298C39.335 9.04441 39.6632 9.26489 39.9317 9.54852C40.2003 9.83214 40.4026 10.1718 40.524 10.5431C40.6454 10.9144 40.6829 11.308 40.6338 11.6955C40.6338 13.6017 39.6035 14.6975 37.8262 14.6975H35.6709V8.73065H37.8262ZM36.5976 13.8536H37.7226C38.0011 13.8703 38.2797 13.8246 38.5382 13.72C38.7967 13.6154 39.0287 13.4545 39.2172 13.2489C39.4057 13.0433 39.546 12.7983 39.6278 12.5317C39.7097 12.2651 39.7311 11.9836 39.6904 11.7076C39.7281 11.4328 39.7046 11.153 39.6215 10.8884C39.5383 10.6237 39.3977 10.3807 39.2096 10.1768C39.0216 9.97285 38.7907 9.81304 38.5337 9.70881C38.2766 9.60457 37.9996 9.55849 37.7226 9.57386H36.5976V13.8536Z\",\n fill: \"white\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M41.6805 12.444C41.6521 12.1481 41.686 11.8496 41.7798 11.5675C41.8737 11.2854 42.0254 11.0261 42.2254 10.8061C42.4253 10.5861 42.669 10.4103 42.9409 10.2901C43.2127 10.1698 43.5067 10.1077 43.804 10.1077C44.1013 10.1077 44.3952 10.1698 44.6671 10.2901C44.939 10.4103 45.1827 10.5861 45.3826 10.8061C45.5825 11.0261 45.7343 11.2854 45.8281 11.5675C45.922 11.8496 45.9558 12.1481 45.9275 12.444C45.9564 12.7403 45.9229 13.0392 45.8293 13.3218C45.7357 13.6043 45.5841 13.8641 45.3841 14.0845C45.1841 14.3049 44.9402 14.4811 44.6681 14.6016C44.3959 14.7221 44.1016 14.7844 43.804 14.7844C43.5064 14.7844 43.212 14.7221 42.9399 14.6016C42.6678 14.4811 42.4239 14.3049 42.2239 14.0845C42.0239 13.8641 41.8722 13.6043 41.7786 13.3218C41.6851 13.0392 41.6516 12.7403 41.6805 12.444V12.444ZM45.0135 12.444C45.0135 11.468 44.575 10.8972 43.8055 10.8972C43.033 10.8972 42.5985 11.468 42.5985 12.4441C42.5985 13.4279 43.033 13.9943 43.8055 13.9943C44.575 13.9943 45.0135 13.424 45.0135 12.444H45.0135Z\",\n fill: \"white\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M51.5732 14.6975H50.6514L49.7207 11.3811H49.6504L48.7236 14.6975H47.8105L46.5693 10.1946H47.4707L48.2773 13.6306H48.3438L49.2695 10.1946H50.1221L51.0479 13.6306H51.1182L51.9209 10.1946H52.8096L51.5732 14.6975Z\",\n fill: \"white\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M53.8535 10.1946H54.709V10.91H54.7754C54.888 10.653 55.0781 10.4377 55.3189 10.2939C55.5598 10.15 55.8395 10.085 56.1191 10.1077C56.3382 10.0912 56.5582 10.1243 56.7628 10.2044C56.9674 10.2845 57.1514 10.4096 57.3011 10.5704C57.4508 10.7313 57.5623 10.9237 57.6275 11.1335C57.6927 11.3434 57.7099 11.5652 57.6777 11.7825V14.6975H56.7891V12.0057C56.7891 11.282 56.4746 10.9222 55.8174 10.9222C55.6686 10.9152 55.5201 10.9406 55.3821 10.9964C55.244 11.0522 55.1197 11.1372 55.0175 11.2456C54.9154 11.354 54.8379 11.4832 54.7904 11.6243C54.7429 11.7655 54.7264 11.9152 54.7422 12.0633V14.6976H53.8535L53.8535 10.1946Z\",\n fill: \"white\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M59.0938 8.43677H59.9824V14.6975H59.0938V8.43677Z\",\n fill: \"white\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M61.218 12.4441C61.1897 12.1482 61.2236 11.8496 61.3175 11.5675C61.4113 11.2854 61.5631 11.0261 61.7631 10.8061C61.963 10.5861 62.2068 10.4104 62.4786 10.2901C62.7505 10.1698 63.0445 10.1077 63.3418 10.1077C63.6391 10.1077 63.9331 10.1698 64.205 10.2901C64.4768 10.4104 64.7206 10.5861 64.9205 10.8061C65.1205 11.0261 65.2723 11.2854 65.3661 11.5675C65.46 11.8496 65.4939 12.1482 65.4656 12.4441C65.4944 12.7404 65.4609 13.0393 65.3673 13.3219C65.2737 13.6044 65.122 13.8642 64.922 14.0846C64.722 14.305 64.478 14.4811 64.2059 14.6017C63.9338 14.7222 63.6394 14.7845 63.3418 14.7845C63.0442 14.7845 62.7498 14.7222 62.4777 14.6017C62.2056 14.4811 61.9617 14.305 61.7616 14.0846C61.5616 13.8642 61.4099 13.6044 61.3163 13.3219C61.2227 13.0393 61.1892 12.7404 61.218 12.4441V12.4441ZM64.551 12.4441C64.551 11.4681 64.1125 10.8973 63.343 10.8973C62.5706 10.8973 62.136 11.4681 62.136 12.4441C62.136 13.428 62.5706 13.9944 63.343 13.9944C64.1126 13.9944 64.551 13.4241 64.551 12.4441H64.551Z\",\n fill: \"white\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M66.4004 13.4241C66.4004 12.6135 67.0039 12.1462 68.0752 12.0798L69.2949 12.0095V11.6208C69.2949 11.1453 68.9805 10.8767 68.373 10.8767C67.877 10.8767 67.5332 11.0588 67.4346 11.3772H66.5742C66.665 10.6038 67.3926 10.1077 68.4141 10.1077C69.543 10.1077 70.1797 10.6697 70.1797 11.6208V14.6975H69.3242V14.0647H69.2539C69.1112 14.2917 68.9108 14.4767 68.6732 14.6009C68.4355 14.7252 68.1692 14.7841 67.9014 14.7717C67.7123 14.7914 67.5213 14.7712 67.3405 14.7125C67.1598 14.6538 66.9933 14.5579 66.8519 14.4309C66.7105 14.3039 66.5972 14.1487 66.5195 13.9753C66.4417 13.8019 66.4011 13.6141 66.4004 13.4241V13.4241ZM69.2949 13.0393V12.6628L68.1953 12.7331C67.5752 12.7746 67.2939 12.9856 67.2939 13.3826C67.2939 13.7878 67.6455 14.0237 68.1289 14.0237C68.2706 14.038 68.4137 14.0237 68.5497 13.9816C68.6857 13.9395 68.8118 13.8705 68.9206 13.7787C69.0294 13.6868 69.1186 13.574 69.1829 13.447C69.2472 13.32 69.2853 13.1813 69.2949 13.0393V13.0393Z\",\n fill: \"white\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M71.3477 12.4441C71.3477 11.0213 72.0791 10.1199 73.2168 10.1199C73.4982 10.1069 73.7775 10.1743 74.022 10.3142C74.2666 10.4541 74.4662 10.6607 74.5977 10.9099H74.6641V8.43677H75.5527V14.6975H74.7012V13.9861H74.6309C74.4893 14.2336 74.2826 14.4376 74.0334 14.5761C73.7841 14.7146 73.5017 14.7822 73.2168 14.7717C72.0713 14.7718 71.3477 13.8704 71.3477 12.4441ZM72.2657 12.4441C72.2657 13.3992 72.7159 13.9739 73.4688 13.9739C74.2178 13.9739 74.6807 13.3909 74.6807 12.448C74.6807 11.5095 74.2129 10.9182 73.4688 10.9182C72.7207 10.9182 72.2656 11.4968 72.2656 12.4441H72.2657Z\",\n fill: \"white\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M79.2298 12.444C79.2015 12.1481 79.2353 11.8496 79.3292 11.5675C79.423 11.2854 79.5748 11.0261 79.7747 10.8061C79.9746 10.5861 80.2183 10.4103 80.4902 10.2901C80.762 10.1698 81.056 10.1077 81.3533 10.1077C81.6506 10.1077 81.9446 10.1698 82.2164 10.2901C82.4883 10.4103 82.732 10.5861 82.9319 10.8061C83.1319 11.0261 83.2836 11.2854 83.3775 11.5675C83.4713 11.8496 83.5052 12.1481 83.4768 12.444C83.5057 12.7403 83.4722 13.0392 83.3786 13.3218C83.2851 13.6043 83.1334 13.8641 82.9334 14.0845C82.7334 14.3049 82.4895 14.4811 82.2174 14.6016C81.9453 14.7221 81.6509 14.7844 81.3533 14.7844C81.0557 14.7844 80.7613 14.7221 80.4892 14.6016C80.2171 14.4811 79.9732 14.3049 79.7732 14.0845C79.5732 13.8641 79.4216 13.6043 79.328 13.3218C79.2344 13.0392 79.2009 12.7403 79.2298 12.444V12.444ZM82.5628 12.444C82.5628 11.468 82.1243 10.8972 81.3548 10.8972C80.5823 10.8972 80.1478 11.468 80.1478 12.4441C80.1478 13.4279 80.5823 13.9943 81.3548 13.9943C82.1243 13.9943 82.5628 13.424 82.5628 12.444Z\",\n fill: \"white\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M84.6689 10.1946H85.5244V10.91H85.5908C85.7035 10.653 85.8935 10.4377 86.1344 10.2939C86.3752 10.15 86.655 10.085 86.9346 10.1077C87.1537 10.0912 87.3737 10.1243 87.5783 10.2044C87.7829 10.2845 87.9668 10.4096 88.1165 10.5704C88.2662 10.7313 88.3778 10.9237 88.443 11.1335C88.5082 11.3434 88.5253 11.5652 88.4932 11.7825V14.6975H87.6045V12.0057C87.6045 11.282 87.2901 10.9222 86.6328 10.9222C86.4841 10.9152 86.3356 10.9406 86.1975 10.9964C86.0594 11.0522 85.9351 11.1372 85.833 11.2456C85.7308 11.354 85.6534 11.4832 85.6058 11.6243C85.5583 11.7655 85.5419 11.9152 85.5576 12.0633V14.6976H84.6689V10.1946Z\",\n fill: \"white\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M93.5146 9.07349V10.2151H94.4902V10.9636H93.5146V13.2791C93.5146 13.7507 93.709 13.9573 94.1514 13.9573C94.2646 13.9569 94.3778 13.9501 94.4902 13.9368V14.677C94.3307 14.7055 94.169 14.7207 94.0068 14.7224C93.0186 14.7224 92.625 14.3747 92.625 13.5066V10.9636H91.9102V10.215H92.625V9.07349H93.5146Z\",\n fill: \"white\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M95.7051 8.43677H96.5859V10.9182H96.6562C96.7744 10.6589 96.9696 10.4423 97.2153 10.298C97.461 10.1536 97.7452 10.0885 98.0292 10.1116C98.2472 10.0997 98.4651 10.1361 98.6674 10.2181C98.8697 10.3002 99.0513 10.4259 99.1995 10.5862C99.3476 10.7465 99.4585 10.9376 99.5243 11.1457C99.5901 11.3539 99.6091 11.5739 99.58 11.7903V14.6975H98.6905V12.0095C98.6905 11.2903 98.3555 10.926 97.7276 10.926C97.5748 10.9135 97.4212 10.9345 97.2774 10.9875C97.1337 11.0406 97.0032 11.1244 96.8952 11.2332C96.7872 11.3419 96.7043 11.4729 96.6522 11.6171C96.6002 11.7612 96.5802 11.915 96.5938 12.0676V14.6975H95.7051L95.7051 8.43677Z\",\n fill: \"white\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M104.761 13.4818C104.641 13.8933 104.379 14.2493 104.022 14.4874C103.666 14.7256 103.237 14.8307 102.81 14.7845C102.514 14.7923 102.219 14.7355 101.946 14.618C101.674 14.5004 101.43 14.325 101.232 14.1039C101.034 13.8827 100.887 13.6212 100.8 13.3374C100.713 13.0535 100.69 12.7543 100.73 12.4603C100.691 12.1654 100.715 11.8655 100.801 11.5808C100.888 11.2961 101.035 11.0334 101.231 10.8103C101.428 10.5872 101.671 10.409 101.943 10.2878C102.214 10.1666 102.509 10.1052 102.806 10.1077C104.059 10.1077 104.815 10.9637 104.815 12.3777V12.6878H101.635V12.7376C101.621 12.9029 101.642 13.0692 101.696 13.226C101.751 13.3827 101.837 13.5264 101.95 13.6479C102.063 13.7693 102.2 13.8658 102.352 13.9312C102.504 13.9966 102.669 14.0295 102.835 14.0276C103.047 14.0532 103.263 14.0149 103.453 13.9177C103.644 13.8205 103.802 13.6687 103.906 13.4817L104.761 13.4818ZM101.635 12.0306H103.91C103.921 11.8795 103.9 11.7277 103.85 11.5849C103.799 11.4422 103.718 11.3117 103.614 11.2019C103.51 11.092 103.383 11.0052 103.243 10.9471C103.103 10.8889 102.953 10.8606 102.801 10.8641C102.648 10.8622 102.495 10.891 102.353 10.949C102.21 11.0069 102.081 11.0928 101.972 11.2015C101.864 11.3102 101.778 11.4396 101.72 11.582C101.662 11.7244 101.633 11.8769 101.635 12.0306H101.635Z\",\n fill: \"white\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"clipPath\", {\n id: \"clip0_1121_5269\"\n}, /*#__PURE__*/React.createElement(\"rect\", {\n width: 119.664,\n height: 40,\n fill: \"white\"\n})));\n\nvar SvgAppstore = function SvgAppstore(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n width: 120,\n height: 40,\n viewBox: \"0 0 120 40\",\n fill: \"none\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgAppstore, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/appstore.63477c0e.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"arrow-back_svg__a\",\n d: \"M18.791 11.005H7.621l4.88-4.88c.39-.39.39-1.03 0-1.42a.996.996 0 00-1.41 0l-6.59 6.59a.996.996 0 000 1.41l6.59 6.59a.996.996 0 101.41-1.41l-4.88-4.88h11.17c.55 0 1-.45 1-1s-.45-1-1-1z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#arrow-back_svg__a\"\n});\n\nvar SvgArrowBack = function SvgArrowBack(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgArrowBack, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/arrow-back.a6a82d5f.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"arrow-back-ios_svg__a\",\n d: \"M17.002 2.985a1.25 1.25 0 00-1.77 0l-8.31 8.31a.996.996 0 000 1.41l8.31 8.31c.49.49 1.28.49 1.77 0s.49-1.28 0-1.77l-7.24-7.25 7.25-7.25c.48-.48.48-1.28-.01-1.76z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#arrow-back-ios_svg__a\"\n});\n\nvar SvgArrowBackIos = function SvgArrowBackIos(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgArrowBackIos, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/arrow-back-ios.c4a566b4.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z\"\n});\n\nvar SvgArrowBackMau = function SvgArrowBackMau(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n fill: \"none\",\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgArrowBackMau, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/arrow_back_mau.36cc2f64.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"arrow-downward_svg__a\",\n d: \"M11.005 5.209v11.17l-4.88-4.88c-.39-.39-1.03-.39-1.42 0a.996.996 0 000 1.41l6.59 6.59c.39.39 1.02.39 1.41 0l6.59-6.59a.996.996 0 10-1.41-1.41l-4.88 4.88V5.209c0-.55-.45-1-1-1s-1 .45-1 1z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#arrow-downward_svg__a\"\n});\n\nvar SvgArrowDownward = function SvgArrowDownward(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgArrowDownward, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/arrow-downward.a188c900.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"arrow-drop-down_svg__a\",\n d: \"M8.706 11.414l2.59 2.59c.39.39 1.02.39 1.41 0l2.59-2.59c.63-.63.18-1.71-.71-1.71h-5.18c-.89 0-1.33 1.08-.7 1.71z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#arrow-drop-down_svg__a\"\n});\n\nvar SvgArrowDropDown = function SvgArrowDropDown(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgArrowDropDown, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/arrow-drop-down.be131167.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"arrow-drop-up_svg__a\",\n d: \"M8.706 12.586l2.59-2.59a.996.996 0 011.41 0l2.59 2.59c.63.63.18 1.71-.71 1.71h-5.18c-.89 0-1.33-1.08-.7-1.71z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#arrow-drop-up_svg__a\"\n});\n\nvar SvgArrowDropUp = function SvgArrowDropUp(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgArrowDropUp, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/arrow-drop-up.7abb7b68.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"arrow-forward_svg__a\",\n d: \"M5.209 13h11.17l-4.88 4.88c-.39.39-.39 1.03 0 1.42.39.39 1.02.39 1.41 0l6.59-6.59a.996.996 0 000-1.41l-6.58-6.6a.996.996 0 10-1.41 1.41l4.87 4.89H5.209c-.55 0-1 .45-1 1s.45 1 1 1z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#arrow-forward_svg__a\"\n});\n\nvar SvgArrowForward = function SvgArrowForward(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgArrowForward, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/arrow-forward.51823d9a.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"arrow-forward-ios_svg__a\",\n d: \"M6.998 21.015c.49.49 1.28.49 1.77 0l8.31-8.31a.996.996 0 000-1.41l-8.31-8.31a1.25 1.25 0 00-1.77 0 1.25 1.25 0 000 1.77l7.24 7.25-7.25 7.25c-.48.48-.48 1.28.01 1.76z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#arrow-forward-ios_svg__a\"\n});\n\nvar SvgArrowForwardIos = function SvgArrowForwardIos(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgArrowForwardIos, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/arrow-forward-ios.250a068a.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"arrow-left_svg__a\",\n d: \"M12.586 8.706l-2.59 2.59a.996.996 0 000 1.41l2.59 2.59c.63.63 1.71.18 1.71-.71v-5.18c0-.89-1.08-1.33-1.71-.7z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#arrow-left_svg__a\"\n});\n\nvar SvgArrowLeft = function SvgArrowLeft(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgArrowLeft, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/arrow-left.cefc4af8.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"arrow-left-alt_svg__a\",\n d: \"M16.119 11.004H5.109c-.55 0-1 .45-1 1s.45 1 1 1h11.01v1.79c0 .45.54.67.85.35l2.78-2.79c.19-.2.19-.51 0-.71l-2.78-2.79c-.31-.32-.85-.09-.85.35v1.8z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n transform: \"rotate(180 12 12)\",\n xlinkHref: \"#arrow-left-alt_svg__a\"\n});\n\nvar SvgArrowLeftAlt = function SvgArrowLeftAlt(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgArrowLeftAlt, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/arrow-left-alt.fd1011cc.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"arrow-right_svg__a\",\n d: \"M11.414 15.292l2.59-2.59a.996.996 0 000-1.41l-2.59-2.59c-.63-.62-1.71-.18-1.71.71v5.17c0 .9 1.08 1.34 1.71.71z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#arrow-right_svg__a\"\n});\n\nvar SvgArrowRight = function SvgArrowRight(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgArrowRight, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/arrow-right.7adcccc2.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"arrow-right-alt_svg__a\",\n d: \"M16.119 11.004H5.109c-.55 0-1 .45-1 1s.45 1 1 1h11.01v1.79c0 .45.54.67.85.35l2.78-2.79c.19-.2.19-.51 0-.71l-2.78-2.79c-.31-.32-.85-.09-.85.35v1.8z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#arrow-right-alt_svg__a\"\n});\n\nvar SvgArrowRightAlt = function SvgArrowRightAlt(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgArrowRightAlt, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/arrow-right-alt.7cb933a6.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"arrow-upward_svg__a\",\n d: \"M13 18.791V7.621l4.88 4.88c.39.39 1.03.39 1.42 0a.996.996 0 000-1.41l-6.59-6.59a.996.996 0 00-1.41 0l-6.6 6.58a.996.996 0 101.41 1.41L11 7.621v11.17c0 .55.45 1 1 1s1-.45 1-1z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#arrow-upward_svg__a\"\n});\n\nvar SvgArrowUpward = function SvgArrowUpward(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgArrowUpward, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/arrow-upward.6dca9d7d.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M12.323 24.707l3.837 8.858H8.457l3.866-8.858zm-1.699-5.291L.168 43.357h4.1l2.695-6.255h10.749l2.724 6.255h4.13L14.108 19.416h-3.485zm29.904 7.074h-3.72v11.167c-.703 1.579-2.138 2.66-3.837 2.66-2.343 0-3.66-1.695-3.66-4.355V26.49h-3.72v10.085c0 4.356 2.577 7.104 6.56 7.104 1.699 0 3.544-.672 4.657-2.076v1.754h3.72V26.49zM71.69 43.328h3.72V32.512c.732-1.754 2.49-2.602 3.983-2.602.586 0 1.113.059 1.464.205l.528-3.595a8.207 8.207 0 00-1.728-.205c-1.904 0-3.603 1.14-4.247 2.426v-2.25h-3.72v16.837zm18.276.351c-5.008 0-8.406-4.005-8.406-8.77s3.398-8.77 8.406-8.77c1.992 0 3.75.673 4.92 1.9V26.49h3.72v16.867h-3.72V41.78c-1.17 1.228-2.928 1.9-4.92 1.9zm.44-3.362c2.167 0 3.602-1.023 4.48-2.368v-6.11c-.878-1.315-2.342-2.338-4.48-2.338-2.959 0-5.038 2.426-5.038 5.379 0 3.01 2.05 5.437 5.037 5.437zm11.569 3.011h3.719V16.463l-3.719 3.625v23.24zm8.933-19.381c-1.348 0-2.461-1.11-2.461-2.485a2.473 2.473 0 012.461-2.455c1.376 0 2.489 1.11 2.489 2.455a2.485 2.485 0 01-2.489 2.485zm-1.875 2.543h3.72v16.867h-3.72V26.49zm14.85 17.189c-5.009 0-8.406-4.005-8.406-8.77s3.397-8.77 8.406-8.77c1.991 0 3.748.673 4.92 1.9V26.49h3.72v16.867h-3.72V41.78c-1.172 1.228-2.929 1.9-4.92 1.9zm.439-3.362c2.167 0 3.602-1.023 4.481-2.368v-6.11c-.879-1.315-2.343-2.338-4.481-2.338-2.958 0-5.038 2.426-5.038 5.379.029 3.01 2.08 5.437 5.038 5.437zm11.335 3.011h3.719V32.161c.703-1.549 2.168-2.66 4.159-2.66 2.373 0 3.72 1.696 3.72 4.356v9.471h3.72V33.243c0-4.356-2.578-7.104-6.62-7.104-1.991 0-3.807.702-4.949 2.134V26.49h-3.72v16.838h-.029zm18.803-3.888c1.464 2.573 4.686 4.327 8.582 4.327 4.686 0 7.966-2.719 7.995-6.9 0-3.566-2.138-5.7-5.652-7.015l-2.431-.906c-2.49-.906-3.661-1.696-3.661-3.45 0-1.724 1.757-2.777 3.778-2.777 1.845 0 3.339.819 4.54 2.222l2.723-2.66c-1.757-2.076-4.276-3.274-7.263-3.274-4.452 0-7.762 2.572-7.762 6.752 0 3.274 1.845 5.35 5.653 6.753l2.636.936c2.285.847 3.397 1.958 3.397 3.654 0 1.783-1.61 2.952-3.895 2.952-2.343 0-4.335-1.14-5.565-3.07l-3.075 2.456zm33.858-12.95h-3.72v11.167c-.703 1.579-2.138 2.66-3.837 2.66-2.343 0-3.661-1.695-3.661-4.355V26.49h-3.72v10.085c0 4.356 2.578 7.104 6.561 7.104 1.699 0 3.544-.672 4.657-2.076v1.754h3.72V26.49zm3.134 0h3.719v1.55c1.172-1.228 2.929-1.9 4.921-1.9 5.037 0 8.435 4.004 8.435 8.77 0 4.764-3.398 8.769-8.435 8.769-1.992 0-3.749-.672-4.921-1.93v9.004h-3.719V26.49zm8.23 13.827c2.987 0 5.037-2.455 5.037-5.437-.029-3.391-3.163-5.964-6.472-5.203a4.948 4.948 0 00-3.076 2.163v6.11c.85 1.344 2.314 2.367 4.511 2.367zm30.079 3.011h3.72V32.512c.732-1.754 2.489-2.602 3.983-2.602.586 0 1.113.059 1.465.205l.527-3.595a8.205 8.205 0 00-1.728-.205c-1.904 0-3.603 1.14-4.247 2.426v-2.25h-3.72v16.837zM50.72 33.331l-1.728-.497c-1.67-.468-2.02-1.17-2.02-1.988 0-1.023 1.142-1.579 2.255-1.579 1.376 0 2.46.673 3.221 1.725l2.343-2.28c-1.2-1.637-3.104-2.543-5.477-2.543-3.368 0-6.004 1.812-6.033 4.823-.03 2.485 1.494 4.356 4.423 5.145l1.493.41c2.021.613 2.607 1.169 2.607 2.163 0 1.169-1.113 1.783-2.431 1.783-1.728 0-3.368-.848-4.042-2.339l-2.49 2.426c1.29 2.076 3.72 3.128 6.532 3.128 3.485 0 6.121-1.988 6.121-5.232-.058-2.777-1.816-4.268-4.774-5.145zm17.896 6.577c-.733.292-1.348.41-2.402.41-1.582 0-2.636-.79-2.636-2.865v-7.66h5.038V26.49h-5.038v-6.372h-3.72v6.372h-3.31v3.304h3.31v8.302c0 3.8 2.607 5.583 5.887 5.583 1.084 0 2.08-.205 2.87-.439v-3.332zM223.524 38.3c-.938 1.199-2.402 2.017-4.452 2.017-2.812 0-5.038-1.812-5.214-4.59h13.268c.03-.525.03-.847.03-1.198 0-5.437-3.72-8.36-8.143-8.36-5.184 0-8.904 3.888-8.816 8.945.088 5.145 4.569 8.945 9.695 8.565 2.841-.205 5.038-1.462 6.443-3.333l-2.811-2.046zm-4.599-9.003c2.168 0 4.13 1.315 4.54 3.741h-9.402c.498-2.514 2.695-3.741 4.862-3.741zM136.273 6.377c-.761.058-.82 1.14-.087 1.315l16.577 3.83c1.289-3.099 1.318-5.847-.879-6.49l-15.611 1.345z\"\n});\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M166.473 3.747c.615-.058.966.702.527 1.14l-17.837 17.365c-.527.526-1.376-.088-1.084-.76l4.657-9.969c1.289-3.098 1.318-5.817-.878-6.49l14.615-1.286z\"\n});\n\nvar _ref4 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"linearGradient\", {\n id: \"as-full-logo_svg__paint0_linear_2255_22124\",\n x1: 139.856,\n x2: 153.716,\n y1: 11.567,\n y2: 3.651,\n gradientUnits: \"userSpaceOnUse\"\n}, /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.115,\n stopColor: \"currentColor\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.921,\n stopColor: \"currentColor\",\n stopOpacity: 0.09\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n stopColor: \"currentColor\",\n stopOpacity: 0\n})));\n\nvar SvgAsFullLogo = function SvgAsFullLogo(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n fill: \"none\",\n viewBox: \"0 0 240 54\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3, _ref4);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgAsFullLogo, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/as-full-logo.a34f7bee.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"rect\", {\n width: 29,\n height: 29,\n rx: 14.5,\n fill: \"white\"\n});\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2.73548 10.5109C2.14449 10.5563 2.09903 11.3957 2.66729 11.5318L15.5327 14.5038C16.5329 12.099 16.5556 9.9664 14.8508 9.46729L2.73548 10.5109Z\",\n fill: \"url(#paint0_linear_450_2376)\"\n});\n\nvar _ref4 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M26.1735 8.47025C26.6508 8.42487 26.9236 9.01473 26.5826 9.35503L12.7398 22.831C12.3306 23.2394 11.6715 22.763 11.8988 22.2412L15.5129 14.505C16.513 12.1001 16.5358 9.99027 14.831 9.46847L26.1735 8.47025Z\",\n fill: \"url(#paint1_linear_450_2376)\"\n});\n\nvar _ref5 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"linearGradient\", {\n id: \"paint0_linear_450_2376\",\n x1: 6.84336,\n y1: 15.1106,\n x2: 13.0338,\n y2: 7.71897,\n gradientUnits: \"userSpaceOnUse\"\n}, /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.1155,\n stopColor: \"#EA4403\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.2632,\n stopColor: \"#EA4A03\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.4566,\n stopColor: \"#EC5A03\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.65,\n stopColor: \"#EE7203\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.7747,\n stopColor: \"#F18402\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n stopColor: \"#F8AE00\"\n})), /*#__PURE__*/React.createElement(\"linearGradient\", {\n id: \"paint1_linear_450_2376\",\n x1: 12.5123,\n y1: 15.1268,\n x2: 26.1095,\n y2: 16.3186,\n gradientUnits: \"userSpaceOnUse\"\n}, /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.1155,\n stopColor: \"#EA4403\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.2356,\n stopColor: \"#EA4A03\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.3928,\n stopColor: \"#EC5A03\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.55,\n stopColor: \"#EE7203\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.6535,\n stopColor: \"#F18402\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.8604,\n stopColor: \"#F9B301\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.9959,\n stopColor: \"#FFD500\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n stopColor: \"#FFD500\"\n})));\n\nvar SvgAsLogo = function SvgAsLogo(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n width: 29,\n height: 29,\n viewBox: \"0 0 29 29\",\n fill: \"none\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3, _ref4, _ref5);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgAsLogo, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/as-logo.43e819d8.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"attachment_svg__a\",\n d: \"M17.252 16H6.672c-2.09 0-3.95-1.53-4.15-3.61A3.998 3.998 0 016.502 8h12.36c1.31 0 2.5.94 2.63 2.24a2.5 2.5 0 01-2.49 2.76h-10.5c-.55 0-1-.45-1-1s.45-1 1-1h8.75c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-8.61c-1.31 0-2.5.94-2.63 2.24a2.5 2.5 0 002.49 2.76h10.33c2.09 0 3.95-1.53 4.15-3.61a3.993 3.993 0 00-3.98-4.39H6.732c-2.87 0-5.44 2.1-5.71 4.96a5.505 5.505 0 005.48 6.04h10.75c.41 0 .75-.34.75-.75s-.34-.75-.75-.75z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#attachment_svg__a\"\n});\n\nvar SvgAttachment = function SvgAttachment(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgAttachment, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/attachment.cb4cf13c.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M173.535 22.63c3.054-.272 4.766 3.415 2.569 5.537l-87.131 83.976c-2.602 2.506-6.786-.415-5.251-3.671l22.764-48.227c6.35-14.986 6.511-28.2-4.362-31.44l71.411-6.175z\"\n});\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M25.882 35.397c-3.716.319-4.072 5.538-.453 6.367l81.057 18.48c6.349-14.985 6.511-28.23-4.362-31.438l-76.242 6.59z\"\n});\n\nvar _ref4 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"linearGradient\", {\n id: \"aus-super-symbol-tonal-white_svg__paint0_linear_2255_22113\",\n x1: 43.383,\n x2: 110.858,\n y1: 60.462,\n y2: 21.552,\n gradientUnits: \"userSpaceOnUse\"\n}, /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.115,\n stopColor: \"currentColor\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.921,\n stopColor: \"currentColor\",\n stopOpacity: 0.09\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n stopColor: \"currentColor\",\n stopOpacity: 0\n})));\n\nvar SvgAusSuperSymbolTonalWhite = function SvgAusSuperSymbolTonalWhite(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n fill: \"none\",\n viewBox: \"0 0 200 136\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3, _ref4);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgAusSuperSymbolTonalWhite, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/aus-super-symbol-tonal-white.51d0f815.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"autorenew_svg__a\",\n d: \"M12 6v1.79c0 .45.54.67.85.35l2.79-2.79c.2-.2.2-.51 0-.71l-2.79-2.79a.5.5 0 00-.85.36V4c-4.42 0-8 3.58-8 8 0 1.04.2 2.04.57 2.95.27.67 1.13.85 1.64.34.27-.27.38-.68.23-1.04C6.15 13.56 6 12.79 6 12c0-3.31 2.69-6 6-6zm5.79 2.71c-.27.27-.38.69-.23 1.04.28.7.44 1.46.44 2.25 0 3.31-2.69 6-6 6v-1.79c0-.45-.54-.67-.85-.35l-2.79 2.79c-.2.2-.2.51 0 .71l2.79 2.79a.5.5 0 00.85-.35V20c4.42 0 8-3.58 8-8 0-1.04-.2-2.04-.57-2.95-.27-.67-1.13-.85-1.64-.34z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#autorenew_svg__a\"\n});\n\nvar SvgAutorenew = function SvgAutorenew(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgAutorenew, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/autorenew.9bde0d0b.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M20 40C31.0457 40 40 31.0457 40 20C40 8.9543 31.0457 0 20 0C8.9543 0 0 8.9543 0 20C0 31.0457 8.9543 40 20 40Z\",\n fill: \"#F5F5F9\"\n});\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M15.1249 24.884C15.1249 25.514 15.6109 26 16.2409 26H20.9569C23.7649 26 25.6189 24.794 25.6189 22.544V22.508C25.6189 20.798 24.5929 19.952 23.1169 19.448C24.0529 18.962 24.9169 18.152 24.9169 16.64V16.604C24.9169 15.758 24.6289 15.074 24.0709 14.516C23.3509 13.796 22.2169 13.4 20.7769 13.4H16.2409C15.6109 13.4 15.1249 13.886 15.1249 14.516V24.884ZM17.3029 18.71V15.362H20.4889C21.9109 15.362 22.7029 15.974 22.7029 16.964V17C22.7029 18.152 21.7489 18.71 20.3269 18.71H17.3029ZM17.3029 24.038V20.582H20.8129C22.5589 20.582 23.4049 21.212 23.4049 22.274V22.31C23.4049 23.444 22.4869 24.038 20.9749 24.038H17.3029Z\",\n fill: \"#171A20\"\n});\n\nvar SvgBIcon = function SvgBIcon(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n width: 40,\n height: 40,\n viewBox: \"0 0 40 40\",\n fill: \"none\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgBIcon, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/b-icon.10af8954.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: 6,\n cy: 12,\n r: 6,\n fill: \"currentColor\",\n fillRule: \"evenodd\",\n transform: \"translate(0 -6)\"\n});\n\nvar SvgBullet = function SvgBullet(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 12 12\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgBullet, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/bullet.82b53792.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M20 40C31.0457 40 40 31.0457 40 20C40 8.9543 31.0457 0 20 0C8.9543 0 0 8.9543 0 20C0 31.0457 8.9543 40 20 40Z\",\n fill: \"#F5F5F9\"\n});\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M20.8255 26.216C22.8595 26.216 24.2095 25.568 25.3975 24.524C25.5955 24.344 25.7575 24.074 25.7575 23.732C25.7575 23.174 25.2715 22.706 24.7135 22.706C24.4435 22.706 24.2095 22.814 24.0475 22.958C23.1295 23.732 22.2295 24.164 20.8975 24.164C18.4855 24.164 16.7395 22.166 16.7395 19.7V19.664C16.7395 17.198 18.5035 15.218 20.8975 15.218C22.1035 15.218 23.0395 15.65 23.9035 16.352C24.0475 16.46 24.2635 16.568 24.5695 16.568C25.1815 16.568 25.6675 16.1 25.6675 15.488C25.6675 15.092 25.4695 14.786 25.2355 14.606C24.1375 13.76 22.8595 13.184 20.9155 13.184C17.0995 13.184 14.4175 16.118 14.4175 19.7V19.736C14.4175 23.354 17.1535 26.216 20.8255 26.216Z\",\n fill: \"#171A20\"\n});\n\nvar SvgCIcon = function SvgCIcon(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n width: 40,\n height: 40,\n viewBox: \"0 0 40 40\",\n fill: \"none\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgCIcon, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/c-icon.609df007.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"style\", null, \".calculator_svg__st4{fill:#fff}.calculator_svg__st5{fill:#260046}\");\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"g\", {\n id: \"calculator_svg__Layer_2\"\n}, /*#__PURE__*/React.createElement(\"circle\", {\n cx: 40,\n cy: 40,\n r: 40,\n fill: \"none\"\n}), /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"calculator_svg__SVGID_1_\",\n d: \"M0 0h80v80H0z\"\n})), /*#__PURE__*/React.createElement(\"clipPath\", {\n id: \"calculator_svg__SVGID_00000096031923281929463680000008870603318382781841_\"\n}, /*#__PURE__*/React.createElement(\"use\", {\n overflow: \"visible\",\n xlinkHref: \"#calculator_svg__SVGID_1_\"\n})), /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#calculator_svg__SVGID_00000096031923281929463680000008870603318382781841_)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#eaeaea\",\n d: \"M40 80c22.093 0 40-17.909 40-40C80 17.907 62.093-.002 40-.002S0 17.907 0 40c0 22.091 17.907 40 40 40\"\n})), /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#calculator_svg__SVGID_00000096031923281929463680000008870603318382781841_)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#ea4403\",\n d: \"M55.287 14.743H23.719c-.682 0-1.24.558-1.24 1.24v48.033c0 .682.558 1.24 1.24 1.24h31.568c.685 0 1.243-.558 1.243-1.24V15.983c0-.682-.558-1.24-1.243-1.24\"\n})), /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#calculator_svg__SVGID_00000096031923281929463680000008870603318382781841_)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M26.629 19.443h25.813v13.825H26.629z\",\n className: \"calculator_svg__st4\"\n})), /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#calculator_svg__SVGID_00000096031923281929463680000008870603318382781841_)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M26.684 37.014h6.005v5.457h-6.005z\",\n className: \"calculator_svg__st4\"\n})), /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#calculator_svg__SVGID_00000096031923281929463680000008870603318382781841_)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M36.622 37.014h6.005v5.457h-6.005z\",\n className: \"calculator_svg__st4\"\n})), /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#calculator_svg__SVGID_00000096031923281929463680000008870603318382781841_)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M46.437 37.014h6.005v5.457h-6.005z\",\n className: \"calculator_svg__st4\"\n})), /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#calculator_svg__SVGID_00000096031923281929463680000008870603318382781841_)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M26.684 46.147h6.005v5.457h-6.005z\",\n className: \"calculator_svg__st4\"\n})), /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#calculator_svg__SVGID_00000096031923281929463680000008870603318382781841_)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M36.622 46.147h6.005v5.457h-6.005z\",\n className: \"calculator_svg__st4\"\n})), /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#calculator_svg__SVGID_00000096031923281929463680000008870603318382781841_)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M46.437 46.147h6.005v5.457h-6.005z\",\n className: \"calculator_svg__st4\"\n})), /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#calculator_svg__SVGID_00000096031923281929463680000008870603318382781841_)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M26.657 55.464h6.005v5.457h-6.005z\",\n className: \"calculator_svg__st4\"\n})), /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#calculator_svg__SVGID_00000096031923281929463680000008870603318382781841_)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M36.596 55.464h6.005v5.457h-6.005z\",\n className: \"calculator_svg__st4\"\n})), /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#calculator_svg__SVGID_00000096031923281929463680000008870603318382781841_)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M46.41 55.464h6.005v5.457H46.41z\",\n className: \"calculator_svg__st4\"\n})), /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#calculator_svg__SVGID_00000096031923281929463680000008870603318382781841_)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M37.619 25.568l-.648.198a.803.803 0 01-.198.027.486.486 0 01-.486-.468c0-.234.144-.414.369-.478l.954-.306c.216-.063.378-.099.541-.099h.018a.54.54 0 01.549.549v5.329a.545.545 0 01-.549.549.551.551 0 01-.549-.549v-4.752zM40.256 29.754l1.936-1.647c.864-.729 1.18-1.134 1.18-1.702 0-.621-.441-.981-1.018-.981-.504 0-.855.234-1.242.703a.508.508 0 01-.387.171.503.503 0 01-.504-.504c0-.117.045-.243.126-.342.513-.639 1.099-1.018 2.089-1.018 1.233 0 2.08.756 2.08 1.882v.018c0 .99-.522 1.53-1.639 2.439l-1.297 1.081h2.557c.271 0 .486.216.486.486s-.216.486-.486.486h-3.574c-.342 0-.594-.198-.594-.522-.001-.217.098-.397.287-.55zM45.764 30.114a.532.532 0 01-.18-.396c0-.288.243-.531.531-.531.162 0 .279.063.369.144.396.396.847.604 1.432.604.621 0 1.089-.378 1.089-.955v-.018c0-.621-.567-.972-1.449-.972h-.225a.48.48 0 01-.478-.477c0-.144.062-.279.234-.45l1.476-1.575h-2.286a.482.482 0 110-.964H49.5c.315 0 .55.189.55.486 0 .261-.126.414-.315.604l-1.485 1.539c.954.117 1.854.604 1.854 1.765v.018c0 1.162-.892 1.999-2.206 1.999-.927-.002-1.621-.326-2.134-.821z\",\n className: \"calculator_svg__st5\"\n})));\n\nvar SvgCalculator = function SvgCalculator(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 80 80\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgCalculator, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/calculator.30a30625.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"title\", null, \"cancel_rounded\");\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"desc\", null, \"Created with Sketch.\");\n\nvar _ref4 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M12,2 C6.47,2 2,6.47 2,12 C2,17.53 6.47,22 12,22 C17.53,22 22,17.53 22,12 C22,6.47 17.53,2 12,2 Z M16.3,16.3 C15.91,16.69 15.28,16.69 14.89,16.3 L12,13.41 L9.11,16.3 C8.72,16.69 8.09,16.69 7.7,16.3 C7.51274733,16.1131685 7.40751439,15.8595176 7.40751439,15.595 C7.40751439,15.3304824 7.51274733,15.0768315 7.7,14.89 L10.59,12 L7.7,9.11 C7.51274733,8.92316847 7.40751439,8.66951764 7.40751439,8.405 C7.40751439,8.14048236 7.51274733,7.88683153 7.7,7.7 C8.09,7.31 8.72,7.31 9.11,7.7 L12,10.59 L14.89,7.7 C15.28,7.31 15.91,7.31 16.3,7.7 C16.69,8.09 16.69,8.72 16.3,9.11 L13.41,12 L16.3,14.89 C16.68,15.27 16.68,15.91 16.3,16.3 Z\",\n id: \"path-1\"\n}));\n\nvar _ref5 = /*#__PURE__*/React.createElement(\"g\", {\n id: \"cancel\",\n stroke: \"none\",\n strokeWidth: 1,\n fill: \"none\",\n fillRule: \"evenodd\"\n}, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask-2\",\n fill: \"white\"\n}, /*#__PURE__*/React.createElement(\"use\", {\n xlinkHref: \"#path-1\"\n})), /*#__PURE__*/React.createElement(\"use\", {\n id: \"Icon/Navigation/cancel\",\n fill: \"#000000\",\n fillRule: \"nonzero\",\n xlinkHref: \"#path-1\"\n}));\n\nvar SvgCancel = function SvgCancel(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n width: \"24px\",\n height: \"24px\",\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title === undefined ? _ref2 : title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref3, _ref4, _ref5);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgCancel, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/cancel.6cdc60a8.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"centrelink-schedule_svg__a\",\n d: \"M19 4h-1V3c0-.55-.45-1-1-1s-1 .45-1 1v1H8V3c0-.55-.45-1-1-1s-1 .45-1 1v1H5c-1.11 0-1.99.9-1.99 2L3 20a2 2 0 002 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-1 16H6c-.55 0-1-.45-1-1V9h14v10c0 .55-.45 1-1 1zM8 11h3c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1H8c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"none\",\n fillRule: \"evenodd\",\n stroke: \"currentColor\",\n d: \"M4 .5a.498.498 0 01.493.42L4.5 1v1.5h9V1c0-.138.057-.262.147-.353.49-.147.615-.09.706 0a.5.5 0 01.14.272L14.5 1v1.5H16c.413 0 .787.17 1.059.441.238.238.397.554.433.906L17.5 4v14c0 .413-.17.787-.441 1.059a1.498 1.498 0 01-.906.433L16 19.5H2a1.497 1.497 0 01-1.492-1.347L.5 18 .51 4c0-.414.166-.791.437-1.064.235-.235.548-.393.9-.428L2 2.5h1.5V1c0-.138.057-.262.147-.353A.498.498 0 014 .5zm12.5 6h-15V17l.008.153c.036.352.194.669.432.907.272.272.648.44 1.06.44h12l.153-.008c.352-.036.669-.194.907-.432.272-.272.44-.647.44-1.06h0V6.5zM8 9.5l.5 3.5-3.5.5-.5-3.5L8 9.5z\"\n});\n\nvar SvgCentrelinkSchedule = function SvgCentrelinkSchedule(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 18 20\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgCentrelinkSchedule, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/centrelink-schedule.0dafc742.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"check_svg__a\",\n d: \"M8.795 15.875l-3.47-3.47a.996.996 0 10-1.41 1.41l4.18 4.18c.39.39 1.02.39 1.41 0l10.58-10.58a.996.996 0 10-1.41-1.41l-9.88 9.87z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#check_svg__a\"\n});\n\nvar SvgCheck = function SvgCheck(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgCheck, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/check.4ddba3ab.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"check-circle_svg__a\",\n d: \"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM9.29 16.29L5.7 12.7a.996.996 0 111.41-1.41L10 14.17l6.88-6.88a.996.996 0 111.41 1.41l-7.59 7.59a.996.996 0 01-1.41 0z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#check-circle_svg__a\"\n});\n\nvar SvgCheckCircle = function SvgCheckCircle(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgCheckCircle, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/check-circle.c9eb57e5.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"check-circle-outline_svg__a\",\n d: \"M5.863 10.583L3.55 8.27a.664.664 0 10-.94.94l2.787 2.787c.26.26.68.26.94 0l7.053-7.054a.664.664 0 10-.94-.94l-6.587 6.58z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"g\", {\n fill: \"none\",\n fillRule: \"evenodd\",\n opacity: 0.9\n}, /*#__PURE__*/React.createElement(\"circle\", {\n cx: 12,\n cy: 12,\n r: 11.5,\n stroke: \"currentColor\"\n}), /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n transform: \"translate(4 4)\",\n xlinkHref: \"#check-circle-outline_svg__a\"\n}));\n\nvar SvgCheckCircleOutline = function SvgCheckCircleOutline(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgCheckCircleOutline, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/check-circle-outline.010d1007.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"title\", null, \"Bitmap Copy 11\");\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"rect\", {\n id: \"path-1\",\n x: 0,\n y: 0,\n width: 48,\n height: 48,\n rx: 24\n}));\n\nvar _ref4 = /*#__PURE__*/React.createElement(\"g\", {\n id: \"New-Icons\",\n stroke: \"none\",\n strokeWidth: 1,\n fill: \"none\",\n fillRule: \"evenodd\"\n}, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group-5\",\n transform: \"translate(-760.000000, -32.000000)\"\n}, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Bitmap-Copy-11\",\n transform: \"translate(760.000000, 32.000000)\"\n}, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask-2\",\n fill: \"white\"\n}, /*#__PURE__*/React.createElement(\"use\", {\n xlinkHref: \"#path-1\"\n})), /*#__PURE__*/React.createElement(\"use\", {\n id: \"Mask\",\n fill: \"#FFF0E0\",\n xlinkHref: \"#path-1\"\n}), /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group\",\n mask: \"url(#mask-2)\"\n}, /*#__PURE__*/React.createElement(\"g\", {\n transform: \"translate(12.000000, 12.000000)\",\n id: \"contact_phone-24px\"\n}, /*#__PURE__*/React.createElement(\"polygon\", {\n id: \"Path\",\n points: \"0 0 24 0 24 24 0 24\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M22,3 L2,3 C0.9,3 0,3.9 0,5 L0,19 C0,20.1 0.9,21 2,21 L22,21 C23.1,21 23.99,20.1 23.99,19 L24,5 C24,3.9 23.1,3 22,3 Z M8,6 C9.66,6 11,7.34 11,9 C11,10.66 9.66,12 8,12 C6.34,12 5,10.66 5,9 C5,7.34 6.34,6 8,6 Z M14,18 L2,18 L2,17 C2,15 6,13.9 8,13.9 C10,13.9 14,15 14,17 L14,18 Z M17.85,14 L19.49,14 L21,16 L19.01,17.99 C17.7,17.01 16.73,15.61 16.28,14 C16.1,13.36 16,12.69 16,12 C16,11.31 16.1,10.64 16.28,10 C16.73,8.38 17.7,6.99 19.01,6.01 L21,8 L19.49,10 L17.85,10 C17.63,10.63 17.5,11.3 17.5,12 C17.5,12.7 17.63,13.37 17.85,14 L17.85,14 Z\",\n id: \"Shape\",\n fill: \"#FF8200\"\n}))))));\n\nvar SvgCheckDetails = function SvgCheckDetails(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n width: \"48px\",\n height: \"48px\",\n viewBox: \"0 0 48 48\",\n ref: svgRef\n }, props), title === undefined ? _ref2 : title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref3, _ref4);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgCheckDetails, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/check-details.f1463a71.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M80 160C124.183 160 160 124.183 160 80C160 35.8172 124.183 0 80 0C35.8172 0 0 35.8172 0 80C0 124.183 35.8172 160 80 160Z\",\n fill: \"#F6F0DA\"\n});\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M50.8 26.3002C50.8 25.7002 51 25.2002 51.3 24.7002C50.5 25.2002 50 26.1002 50 27.2002V76.2002C50.3 76.6002 50.6 77.0002 50.9 77.5002V26.3002H50.8Z\",\n fill: \"#EDE1B5\"\n});\n\nvar _ref4 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M78.8 106.1C78.6 106.4 78.4 106.7 78.2 107H108.5C109.5 107 110.4 106.5 111 105.7C110.5 106 110 106.2 109.4 106.2H78.8V106.1Z\",\n fill: \"#EDE1B5\"\n});\n\nvar _ref5 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M88.2 28.8998C88.2 29.5998 87.7 30.0998 87 30.0998H76.2C75.5 30.0998 74.9 29.4998 74.9 28.7998V27.2998H54.7V102.3H108.3V27.2998H88.2V28.8998Z\",\n fill: \"white\"\n});\n\nvar _ref6 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M109.3 23.2998H53.8C52.8 23.2998 51.9 23.7998 51.3 24.5998C51 25.0998 50.8 25.5998 50.8 26.1998V77.3998C51.5 78.4998 52.2 80.0998 52 81.6998C51.9 83.5998 51 90.0998 50.8 92.1998V103.1C50.8 104.7 52.1 106 53.7 106H78.7H109.2C109.8 106 110.3 105.8 110.8 105.5C111.6 105 112.1 104.1 112.1 103V26.2998C112.2 24.5998 110.9 23.2998 109.3 23.2998ZM108.3 102.2H54.7V27.1998H74.8V28.6998C74.8 29.3998 75.4 29.9998 76.1 29.9998H87C87.7 29.9998 88.2 29.4998 88.2 28.7998V27.0998H108.3V102.2V102.2Z\",\n fill: \"#260046\"\n});\n\nvar _ref7 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M55.3 106.1C52.3 106.1 50.8 103.9 50.8 100.9V92.1998C51.1 89.9998 51.9 83.6998 52 81.7998C52.1 80.1998 51.4 78.5998 50.8 77.4998C50.5 76.9998 50.2 76.5998 49.9 76.1998L49.8 76.0998C49.7 75.9998 49.7 75.9998 49.7 75.9998C48.8 74.9998 47.8 74.3998 47 74.5998C45.3 75.0998 45.7 80.5998 44.5 85.2998C43.3 89.9998 42.2 93.2998 39.9 102C37.5 111 41.4 114.3 40.6 117.4C40.5 117.9 40.2 118.6 39.7 119.4L56 126.1C56.2 126.3 56.5 126.4 56.7 126.6C59.2 124.9 63.4 122.5 74.6 110.9C76.1 109.3 77.3 108 78.1 107C78.4 106.7 78.6 106.3 78.8 106.1H55.3Z\",\n fill: \"#70331C\"\n});\n\nvar _ref8 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M98.7 51.7002H64.4V86.0002H98.7V51.7002Z\",\n fill: \"white\"\n});\n\nvar _ref9 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask0_411_338)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M81.5 85.9998C91 85.9998 98.6 78.2998 98.6 68.8998C98.6 59.3998 90.9 51.7998 81.5 51.7998C72 51.7998 64.4 59.4998 64.4 68.8998C64.4 78.2998 72.1 85.9998 81.5 85.9998Z\",\n fill: \"#FBDACD\"\n}));\n\nvar _ref10 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M98.7 51.7002H64.4V86.0002H98.7V51.7002Z\",\n fill: \"white\"\n});\n\nvar _ref11 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask1_411_338)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M80.9 63.4C80.6 63.4 80.3 63.1 80.3 62.8V57.1C80.3 56.8 80.6 56.5 80.9 56.5C81.2 56.5 81.5 56.8 81.5 57.1V62.8C81.6 63.1 81.3 63.4 80.9 63.4Z\",\n fill: \"#EA4403\"\n}));\n\nvar _ref12 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M98.7 51.7002H64.4V86.0002H98.7V51.7002Z\",\n fill: \"white\"\n});\n\nvar _ref13 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask2_411_338)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M79.1 64.1997C79 64.1997 78.8 64.1997 78.7 64.0997L74.4 60.4997C74.1 60.2997 74.1 59.8997 74.3 59.5997C74.5 59.2997 74.9 59.2997 75.2 59.4997L79.5 63.0997C79.8 63.2997 79.8 63.6997 79.6 63.9997C79.5 64.1997 79.3 64.1997 79.1 64.1997Z\",\n fill: \"#EA4403\"\n}));\n\nvar _ref14 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M98.7 51.7002H64.4V86.0002H98.7V51.7002Z\",\n fill: \"white\"\n});\n\nvar _ref15 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask3_411_338)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M73 67.2001C72.7 67.2001 72.4 67.0001 72.4 66.7001C72.3 66.4001 72.6 66.0001 72.9 66.0001L78.5 65.0001C78.8 64.9001 79.2 65.2001 79.2 65.5001C79.3 65.8001 79 66.2001 78.7 66.2001L73.1 67.2001C73.1 67.2001 73.1 67.2001 73 67.2001Z\",\n fill: \"#EA4403\"\n}));\n\nvar _ref16 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M98.7 51.7002H64.4V86.0002H98.7V51.7002Z\",\n fill: \"white\"\n});\n\nvar _ref17 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask4_411_338)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M77 72.6998C76.9 72.6998 76.8 72.6998 76.7 72.5998C76.4 72.3998 76.3 72.0998 76.5 71.7998L79.3001 66.8998C79.5001 66.5998 79.8 66.4998 80.1 66.6998C80.4 66.8998 80.5001 67.1998 80.3001 67.4998L77.5 72.3998C77.4 72.5998 77.2 72.6998 77 72.6998Z\",\n fill: \"#EA4403\"\n}));\n\nvar _ref18 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M98.7 51.7002H64.4V86.0002H98.7V51.7002Z\",\n fill: \"white\"\n});\n\nvar _ref19 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask5_411_338)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M88.6 68.5004C88.5 68.5004 88.5 68.5004 88.4 68.5004L83 66.5004C82.7 66.4004 82.5 66.0004 82.6 65.7004C82.7 65.4004 83.1 65.2004 83.4 65.3004L88.7 67.2004C89 67.3004 89.2 67.7004 89.1 68.0004C89.1 68.3004 88.8 68.5004 88.6 68.5004Z\",\n fill: \"#EA4403\"\n}));\n\nvar _ref20 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M98.7 51.7002H64.4V86.0002H98.7V51.7002Z\",\n fill: \"white\"\n});\n\nvar _ref21 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask6_411_338)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M83 64.5001C82.8 64.5001 82.6 64.4001 82.5 64.2001C82.3 63.9001 82.4 63.5001 82.7 63.4001L87.6 60.6001C87.9 60.4001 88.3001 60.5001 88.4001 60.8001C88.6001 61.1001 88.5 61.5001 88.2 61.6001L83.3001 64.4001C83.2001 64.5001 83.1 64.5001 83 64.5001Z\",\n fill: \"#EA4403\"\n}));\n\nvar _ref22 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M98.7 51.7002H64.4V86.0002H98.7V51.7002Z\",\n fill: \"white\"\n});\n\nvar _ref23 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask7_411_338)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M89.9 75.3004L81.5 66.9004L81 78.8004L83.8 75.7004L85.7 80.5004L87.7 79.8004L85.8 75.0004L89.9 75.3004Z\",\n fill: \"#260046\"\n}));\n\nvar _ref24 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M141.1 116.5C139.5 113.6 140.5 110.9 130.3 93.4002C127.4 88.4002 126.6 87.1002 124.3 86.6002C122.3 86.1002 121.4 87.1002 121.3 87.6002C121.3 87.6002 120.1 84.7002 116.7 85.1002C115.1 85.3002 113.6 87.2002 113.6 87.2002C113.5 87.1002 113.5 87.0002 113.4 86.9002C111.9 84.5002 109.9 83.9002 107.1 84.5002C105.7 84.8002 104.2 86.8002 104.2 86.8002C102 83.8002 99.6 80.3002 97.7 77.5002C93.1 70.5002 92.7 68.7002 90.8 68.7002C89.3 68.7002 88.2 71.8002 89.2 75.0002C90.1 77.8002 93.9 84.7002 98 91.4002C100.6 95.7002 102.6 98.6002 104.5 101.8C106 104.5 109.1 109.1 108.9 110.7C108.7 112.3 100.2 107.6 96.6 106.7C92.9 105.8 88.8 107.8 88.8 109.5C88.8 111.2 94.1 112.4 98.2 114.8C102.3 117.2 105.1 119.1 112.7 123.6C120.6 128.3 124.6 125.5 127.4 127.1C127.7 127.2 128 127.5 128.3 127.8C130.4 124.3 134.2 120.3 141.1 116.5Z\",\n fill: \"#70331C\"\n});\n\nvar _ref25 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M56.7 126.6C56.5 126.4 56.3 126.3 56 126.1L39.7 119.4L39.3 119.2C36.9 118.2 34.1 119.2 32.8 121.5L22.8 136C29.9 143.2 38.3 149.1 47.7 153.2C51 146.1 54.4 138.6 57.5 134.5C59.3 132.3 60 129.2 56.7 126.6Z\",\n fill: \"#EA4403\"\n});\n\nvar _ref26 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M143.9 115.1C142.9 115.6 142 116 141.1 116.5C134.2 120.3 130.3 124.3 128.2 127.8C126.5 130.6 125.8 133 125.6 134.6C125.5 135.7 125.8 136.8 126.5 137.7L130.4 142.1C138.7 135.4 145.6 127 150.6 117.5L148.8 115.8C147.5 114.6 145.6 114.3 143.9 115.1Z\",\n fill: \"#EA4403\"\n});\n\nvar _ref27 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M66.8 43.1002C66.8 42.9002 67 42.7002 67.2 42.7002H69C69.6 42.7002 70.1 42.9002 70.4 43.2002C70.7 43.5002 70.8 43.8002 70.8 44.2002C70.8 45.0002 70.4 45.4002 69.7 45.6002L70.6 46.8002C70.7 46.9002 70.7 47.0002 70.7 47.1002C70.7 47.3002 70.5 47.5002 70.3 47.5002C70.1 47.5002 70 47.4002 69.9 47.3002L68.7 45.8002H67.6V47.1002C67.6 47.3002 67.4 47.5002 67.2 47.5002C67 47.5002 66.8 47.3002 66.8 47.1002V43.1002ZM68.9 45.0002C69.5 45.0002 69.9 44.7002 69.9 44.2002C69.9 43.7002 69.5 43.4002 68.9 43.4002H67.7V45.0002H68.9Z\",\n fill: \"#EA4403\"\n});\n\nvar _ref28 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M73.2 47.5002C72.2 47.5002 71.3 46.7002 71.3 45.6002C71.3 44.6002 72 43.7002 73.1 43.7002C74.3 43.7002 74.8 44.6002 74.8 45.5002C74.8 45.7002 74.6 45.9002 74.4 45.9002H72.1C72.2 46.5002 72.6 46.8002 73.1 46.8002C73.4 46.8002 73.7 46.7002 74 46.5002C74.1 46.5002 74.1 46.4002 74.2 46.4002C74.4 46.4002 74.5 46.5002 74.5 46.7002C74.5 46.8002 74.5 46.9002 74.4 47.0002C74.1 47.3002 73.7 47.5002 73.2 47.5002ZM74 45.4002C73.9 44.9002 73.6 44.4002 73.1 44.4002C72.6 44.4002 72.2 44.8002 72.2 45.4002H74Z\",\n fill: \"#EA4403\"\n});\n\nvar _ref29 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M75.7 48.2008C75.6 48.1008 75.5 48.0008 75.5 47.9008C75.5 47.7008 75.7 47.6008 75.8 47.6008C75.9 47.6008 75.9 47.6008 76 47.6008C76.3 47.8008 76.7 47.9008 77.1 47.9008C77.8 47.9008 78.2 47.5008 78.2 46.8008V46.5008C77.9 46.9008 77.5 47.2008 76.9 47.2008C76.1 47.2008 75.3 46.6008 75.3 45.5008C75.3 44.4008 76.1 43.8008 76.9 43.8008C77.5 43.8008 77.9 44.1008 78.2 44.4008V44.2008C78.2 44.0008 78.4 43.8008 78.6 43.8008C78.8 43.8008 79 44.0008 79 44.2008V46.7008C79 47.3008 78.8 47.8008 78.5 48.1008C78.2 48.4008 77.7 48.6008 77 48.6008C76.6 48.6008 76.2 48.4008 75.7 48.2008ZM78.2 45.5008C78.2 44.9008 77.7 44.5008 77.1 44.5008C76.5 44.5008 76.1 44.9008 76.1 45.5008C76.1 46.1008 76.6 46.5008 77.1 46.5008C77.8 46.4008 78.2 46.0008 78.2 45.5008Z\",\n fill: \"#EA4403\"\n});\n\nvar _ref30 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M80 42.8004C80 42.6004 80.2 42.4004 80.5 42.4004C80.8 42.4004 81 42.6004 81 42.8004C81 43.0004 80.8 43.2004 80.5 43.2004C80.2 43.3004 80 43.1004 80 42.8004ZM80 44.2004C80 44.0004 80.2 43.8004 80.4 43.8004C80.6 43.8004 80.8 44.0004 80.8 44.2004V47.1004C80.8 47.3004 80.6 47.5004 80.4 47.5004C80.2 47.5004 80 47.3004 80 47.1004V44.2004Z\",\n fill: \"#EA4403\"\n});\n\nvar _ref31 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M81.7 47.1002C81.6 47.1002 81.5 46.9002 81.5 46.8002C81.5 46.6002 81.6 46.5002 81.8 46.5002C81.9 46.5002 81.9 46.5002 82 46.5002C82.3 46.7002 82.7 46.8002 83 46.8002C83.4 46.8002 83.6 46.6002 83.6 46.4002C83.6 46.1002 83.2 46.0002 82.8 45.9002C82.3 45.7002 81.7 45.5002 81.7 44.8002C81.7 44.1002 82.3 43.7002 83 43.7002C83.4 43.7002 83.8 43.8002 84.1 44.0002C84.2 44.1002 84.3 44.2002 84.3 44.3002C84.3 44.5002 84.1 44.6002 84 44.6002C83.9 44.6002 83.9 44.6002 83.8 44.6002C83.5 44.4002 83.2 44.4002 83 44.4002C82.7 44.4002 82.5 44.6002 82.5 44.8002C82.5 45.1002 82.9 45.2002 83.3 45.3002C83.8 45.5002 84.4 45.7002 84.4 46.4002C84.4 47.2002 83.8 47.5002 83.1 47.5002C82.6 47.5002 82.1 47.4002 81.7 47.1002Z\",\n fill: \"#EA4403\"\n});\n\nvar _ref32 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M85.2 46.4002V44.5002H85.1C84.9 44.5002 84.7 44.3002 84.7 44.1002C84.7 43.9002 84.9 43.7002 85.1 43.7002H85.2V43.1002C85.2 42.9002 85.4 42.7002 85.6 42.7002C85.8 42.7002 86 42.9002 86 43.1002V43.7002H86.7C86.9 43.7002 87.1 43.9002 87.1 44.1002C87.1 44.3002 86.9 44.5002 86.7 44.5002H86V46.3002C86 46.6002 86.2 46.8002 86.4 46.8002C86.5 46.8002 86.6 46.8002 86.6 46.8002C86.8 46.8002 86.9 47.0002 86.9 47.1002C86.9 47.3002 86.8 47.4002 86.7 47.4002C86.5 47.5002 86.4 47.5002 86.1 47.5002C85.6 47.5002 85.2 47.2002 85.2 46.4002Z\",\n fill: \"#EA4403\"\n});\n\nvar _ref33 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M89.3 47.5002C88.3 47.5002 87.4 46.7002 87.4 45.6002C87.4 44.6002 88.1 43.7002 89.2 43.7002C90.4 43.7002 90.9 44.6002 90.9 45.5002C90.9 45.7002 90.7 45.9002 90.5 45.9002H88.2C88.3 46.5002 88.7 46.8002 89.2 46.8002C89.5 46.8002 89.8 46.7002 90.1 46.5002C90.2 46.5002 90.2 46.4002 90.3 46.4002C90.5 46.4002 90.6 46.5002 90.6 46.7002C90.6 46.8002 90.6 46.9002 90.5 47.0002C90.2 47.3002 89.8 47.5002 89.3 47.5002ZM90.1 45.4002C90 44.9002 89.7 44.4002 89.2 44.4002C88.7 44.4002 88.3 44.8002 88.3 45.4002H90.1Z\",\n fill: \"#EA4403\"\n});\n\nvar _ref34 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M91.6 44.2008C91.6 44.0008 91.8 43.8008 92 43.8008C92.2 43.8008 92.4 44.0008 92.4 44.2008V44.6008C92.6 44.1008 92.9 43.8008 93.3 43.8008C93.6 43.8008 93.7 44.0008 93.7 44.2008C93.7 44.4008 93.6 44.6008 93.4 44.6008C92.8 44.7008 92.4 45.2008 92.4 46.0008V47.1008C92.4 47.3008 92.2 47.5008 92 47.5008C91.8 47.5008 91.6 47.3008 91.6 47.1008V44.2008V44.2008Z\",\n fill: \"#EA4403\"\n});\n\nvar _ref35 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M66.6 34.9002L67.1 36.1002H66.1L66.6 34.9002ZM66.4 34.2002L65 37.5002H65.6L66 36.6002H67.5L67.9 37.5002H68.5L67.1 34.2002H66.4Z\",\n fill: \"#260046\"\n});\n\nvar _ref36 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M97.6 32.2002H65V38.5002H97.6V32.2002Z\",\n fill: \"white\"\n});\n\nvar _ref37 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask8_411_338)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M70.4 37.5002H69.9V37.3002C69.7 37.5002 69.5 37.6002 69.3 37.6002C68.8 37.6002 68.4 37.2002 68.4 36.6002V35.2002H68.9V36.5002C68.9 36.9002 69.1 37.1002 69.4 37.1002C69.6 37.1002 69.8 37.0002 69.9 36.7002V35.2002H70.4V37.5002Z\",\n fill: \"#260046\"\n}));\n\nvar _ref38 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M97.6 32.2002H65V38.5002H97.6V32.2002Z\",\n fill: \"white\"\n});\n\nvar _ref39 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask9_411_338)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M74.7 35.2002H75.2V35.5002C75.3 35.3002 75.5 35.2002 75.8 35.2002C75.9 35.2002 76 35.2002 76 35.2002L75.9 35.7002C75.9 35.7002 75.8 35.7002 75.7 35.7002C75.5 35.7002 75.3 35.8002 75.2 36.1002V37.6002H74.7V35.2002Z\",\n fill: \"#260046\"\n}));\n\nvar _ref40 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M97.6 32.2002H65V38.5002H97.6V32.2002Z\",\n fill: \"white\"\n});\n\nvar _ref41 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask10_411_338)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M77.2 37.5006C76.5 37.5006 76.1 37.0006 76.1 36.3006C76.1 35.7006 76.6 35.1006 77.2 35.1006C77.5 35.1006 77.7 35.2006 77.9 35.4006V35.2006H78.4V37.5006H77.9V37.3006C77.7 37.4006 77.4 37.5006 77.2 37.5006ZM77.2 37.1006C77.5 37.1006 77.7 37.0006 77.8 36.8006V36.0006C77.7 35.8006 77.5 35.7006 77.2 35.7006C76.8 35.7006 76.5 36.0006 76.5 36.4006C76.5 36.7006 76.8 37.1006 77.2 37.1006Z\",\n fill: \"#260046\"\n}));\n\nvar _ref42 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M97.6 32.2002H65V38.5002H97.6V32.2002Z\",\n fill: \"white\"\n});\n\nvar _ref43 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask11_411_338)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M78.8 34.2998L79.3 33.7998V37.4998H78.8V34.2998Z\",\n fill: \"#260046\"\n}));\n\nvar _ref44 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M97.6 32.2002H65V38.5002H97.6V32.2002Z\",\n fill: \"white\"\n});\n\nvar _ref45 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask12_411_338)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M80 34.8002C79.8 34.8002 79.7 34.6002 79.7 34.5002C79.7 34.3002 79.9 34.2002 80 34.2002C80.2 34.2002 80.3 34.4002 80.3 34.5002C80.3 34.7002 80.2 34.8002 80 34.8002ZM79.8 35.2002H80.3V37.5002H79.8V35.2002Z\",\n fill: \"#260046\"\n}));\n\nvar _ref46 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M97.6 32.2002H65V38.5002H97.6V32.2002Z\",\n fill: \"white\"\n});\n\nvar _ref47 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask13_411_338)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M81.8 37.5006C81.1 37.5006 80.7 37.0006 80.7 36.3006C80.7 35.7006 81.2 35.1006 81.8 35.1006C82.1 35.1006 82.3 35.2006 82.5 35.4006V35.2006H83V37.5006H82.5V37.3006C82.3 37.4006 82 37.5006 81.8 37.5006ZM81.8 37.1006C82.1 37.1006 82.3 37.0006 82.4 36.8006V36.0006C82.3 35.8006 82.1 35.7006 81.8 35.7006C81.4 35.7006 81.1 36.0006 81.1 36.4006C81.2 36.7006 81.4 37.1006 81.8 37.1006Z\",\n fill: \"#260046\"\n}));\n\nvar _ref48 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M97.6 32.2002H65V38.5002H97.6V32.2002Z\",\n fill: \"white\"\n});\n\nvar _ref49 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask14_411_338)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M83.4 35.2006H83.9V35.4006C84.1 35.2006 84.3 35.1006 84.6 35.1006C85.2 35.1006 85.5 35.5006 85.5 36.1006V37.5006H85V36.2006C85 35.8006 84.8 35.6006 84.5 35.6006C84.2 35.6006 84 35.8006 83.9 36.0006V37.5006H83.4V35.2006Z\",\n fill: \"#260046\"\n}));\n\nvar _ref50 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M97.6 32.2002H65V38.5002H97.6V32.2002Z\",\n fill: \"white\"\n});\n\nvar _ref51 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask15_411_338)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M86.4 36.6002C86.6 36.9002 86.8 37.0002 87.2 37.0002C87.5 37.0002 87.7 36.8002 87.7 36.6002C87.7 36.4002 87.5 36.2002 87.2 36.1002L86.9 36.0002C86.4 35.8002 86.1 35.5002 86.1 35.1002C86.1 34.5002 86.6 34.2002 87.2 34.2002C87.6 34.2002 87.9 34.4002 88.2 34.6002L87.8 35.0002C87.6 34.8002 87.4 34.7002 87.2 34.7002C86.9 34.7002 86.7 34.8002 86.7 35.1002C86.7 35.3002 86.9 35.4002 87.2 35.6002L87.5 35.7002C88 35.9002 88.3 36.2002 88.3 36.7002C88.3 37.3002 87.8 37.6002 87.2 37.6002C86.7 37.6002 86.2 37.4002 86 37.0002L86.4 36.6002Z\",\n fill: \"#260046\"\n}));\n\nvar _ref52 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M97.6 32.2002H65V38.5002H97.6V32.2002Z\",\n fill: \"white\"\n});\n\nvar _ref53 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask16_411_338)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M90.6 37.5002H90.1V37.3002C89.9 37.5002 89.7 37.6002 89.5 37.6002C89 37.6002 88.6 37.2002 88.6 36.6002V35.2002H89.1V36.5002C89.1 36.9002 89.3 37.1002 89.6 37.1002C89.8 37.1002 90 37.0002 90.1 36.7002V35.2002H90.6V37.5002Z\",\n fill: \"#260046\"\n}));\n\nvar _ref54 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M97.6 32.2002H65V38.5002H97.6V32.2002Z\",\n fill: \"white\"\n});\n\nvar _ref55 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask17_411_338)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M91 35.2006H91.5V35.4006C91.7 35.2006 91.9 35.1006 92.2 35.1006C92.9 35.1006 93.4 35.6006 93.4 36.3006C93.4 36.9006 92.9 37.5006 92.2 37.5006C91.9 37.5006 91.7 37.4006 91.5 37.2006V38.4006H91V35.2006ZM92.1 37.1006C92.5 37.1006 92.8 36.8006 92.8 36.4006C92.8 35.9006 92.4 35.6006 91.9 35.7006C91.7 35.7006 91.6 35.9006 91.5 36.0006V36.8006C91.6 36.9006 91.8 37.1006 92.1 37.1006Z\",\n fill: \"#260046\"\n}));\n\nvar _ref56 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M97.6 32.2002H65V38.5002H97.6V32.2002Z\",\n fill: \"white\"\n});\n\nvar _ref57 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask18_411_338)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M96.2 35.2002H96.7V35.5002C96.8 35.3002 97 35.2002 97.3 35.2002C97.4 35.2002 97.5 35.2002 97.5 35.2002L97.4 35.7002C97.4 35.7002 97.3 35.7002 97.2 35.7002C97 35.7002 96.8 35.8002 96.7 36.1002V37.6002H96.2V35.2002Z\",\n fill: \"#260046\"\n}));\n\nvar _ref58 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M97.6 32.2002H65V38.5002H97.6V32.2002Z\",\n fill: \"white\"\n});\n\nvar _ref59 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask19_411_338)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M71.8 36.1006L71.6 36.0006C71.4 35.9006 71.3 35.8006 71.3 35.7006C71.3 35.6006 71.5 35.5006 71.6 35.5006C71.8 35.5006 71.9 35.6006 72 35.7006L72.3 35.4006C72.1 35.2006 71.9 35.1006 71.6 35.1006C71.1 35.1006 70.8 35.3006 70.8 35.8006C70.8 36.1006 71 36.4006 71.4 36.5006L71.6 36.6006C71.9 36.7006 72 36.8006 72 36.9006C72 37.1006 71.8 37.1006 71.7 37.1006C71.5 37.1006 71.2 37.0006 71.1 36.8006L70.8 37.1006C71 37.4006 71.3 37.5006 71.7 37.5006C72.2 37.5006 72.5 37.2006 72.5 36.8006C72.5 36.4006 72.2 36.2006 71.8 36.1006Z\",\n fill: \"#260046\"\n}));\n\nvar _ref60 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M97.6 32.2002H65V38.5002H97.6V32.2002Z\",\n fill: \"white\"\n});\n\nvar _ref61 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask20_411_338)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M74.2 36.9998C74.1 36.9998 74 37.0998 73.9 37.0998C73.7 37.0998 73.5 36.9998 73.5 36.6998V35.6998H74.2V35.1998H73.5V34.2998H73V35.1998H72.5V35.6998H73V36.7998C73 37.2998 73.4 37.5998 73.8 37.5998C73.9 37.5998 74.1 37.5998 74.2 37.4998V36.9998Z\",\n fill: \"#260046\"\n}));\n\nvar _ref62 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M97.6 32.2002H65V38.5002H97.6V32.2002Z\",\n fill: \"white\"\n});\n\nvar _ref63 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask21_411_338)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M95.4 36.8002C95.3 37.0002 95.1 37.1002 94.8 37.1002C94.4 37.1002 94.1 36.9002 94.1 36.5002H95.9C95.9 36.4002 95.9 36.4002 95.9 36.3002C95.9 35.6002 95.4 35.2002 94.8 35.2002C94.1 35.2002 93.6 35.7002 93.6 36.4002C93.6 37.1002 94.2 37.6002 94.9 37.6002C95.3 37.6002 95.6 37.4002 95.8 37.1002L95.4 36.8002ZM94.7 35.6002C95 35.6002 95.3 35.8002 95.3 36.1002H94C94.2 35.7002 94.5 35.6002 94.7 35.6002Z\",\n fill: \"#260046\"\n}));\n\nvar _ref64 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M85.6 32.4004L83.5 32.6004C83.4 32.6004 83.4 32.8004 83.5 32.8004L85.8 33.3004C85.9 33.1004 85.9 32.9004 85.9 32.7004C85.8 32.5004 85.8 32.4004 85.6 32.4004Z\",\n fill: \"url(#paint0_linear_411_338)\"\n});\n\nvar _ref65 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M87.6 32.2002L85.6 32.4002C85.8 32.4002 85.8 32.6002 85.8 32.7002C85.8 32.9002 85.8 33.1002 85.7 33.3002L85.1 34.7002C85.1 34.8002 85.2 34.9002 85.2 34.8002L87.6 32.4002C87.7 32.3002 87.7 32.2002 87.6 32.2002Z\",\n fill: \"url(#paint1_linear_411_338)\"\n});\n\nvar _ref66 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M85.9 32.7004C85.9 32.5004 85.8 32.4004 85.7 32.4004C85.8 32.4004 85.8 32.5004 85.9 32.7004Z\",\n fill: \"url(#paint2_linear_411_338)\"\n});\n\nvar _ref67 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M85.9 32.7004C85.9 32.5004 85.8 32.4004 85.7 32.4004C85.8 32.4004 85.8 32.5004 85.9 32.7004Z\",\n fill: \"url(#paint3_linear_411_338)\"\n});\n\nvar _ref68 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M87.2 96.8996H75.6C74.9 96.8996 74.2 96.2996 74.2 95.4996C74.2 94.7996 74.8 94.0996 75.6 94.0996H87.1C87.8 94.0996 88.5 94.6996 88.5 95.4996C88.5 96.2996 87.9 96.8996 87.2 96.8996Z\",\n fill: \"#EA4403\"\n});\n\nvar _ref69 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"linearGradient\", {\n id: \"paint0_linear_411_338\",\n x1: 84.4011,\n y1: 33.4028,\n x2: 85.4903,\n y2: 32.1048,\n gradientUnits: \"userSpaceOnUse\"\n}, /*#__PURE__*/React.createElement(\"stop\", {\n stopColor: \"#E14403\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.1155,\n stopColor: \"#E14403\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.2627,\n stopColor: \"#E24A03\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.4568,\n stopColor: \"#E35A03\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.65,\n stopColor: \"#E57203\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.7917,\n stopColor: \"#E88402\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n stopColor: \"#EFA500\"\n})), /*#__PURE__*/React.createElement(\"linearGradient\", {\n id: \"paint1_linear_411_338\",\n x1: 85.4013,\n y1: 33.5306,\n x2: 87.7867,\n y2: 33.7393,\n gradientUnits: \"userSpaceOnUse\"\n}, /*#__PURE__*/React.createElement(\"stop\", {\n stopColor: \"#E14403\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.1155,\n stopColor: \"#E14403\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.2352,\n stopColor: \"#E24A03\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.393,\n stopColor: \"#E35A03\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.55,\n stopColor: \"#E57203\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.6608,\n stopColor: \"#EA8402\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.8814,\n stopColor: \"#F7B201\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.9959,\n stopColor: \"#FFCC00\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n stopColor: \"#FFCC00\"\n})), /*#__PURE__*/React.createElement(\"linearGradient\", {\n id: \"paint2_linear_411_338\",\n x1: 84.885,\n y1: 33.8088,\n x2: 85.9741,\n y2: 32.5108,\n gradientUnits: \"userSpaceOnUse\"\n}, /*#__PURE__*/React.createElement(\"stop\", {\n stopColor: \"#E14403\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.1155,\n stopColor: \"#E14403\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.2627,\n stopColor: \"#E24A03\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.4568,\n stopColor: \"#E35A03\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.65,\n stopColor: \"#E57203\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.7917,\n stopColor: \"#E88402\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n stopColor: \"#EFA500\"\n})), /*#__PURE__*/React.createElement(\"linearGradient\", {\n id: \"paint3_linear_411_338\",\n x1: 85.478,\n y1: 32.6527,\n x2: 87.8635,\n y2: 32.8614,\n gradientUnits: \"userSpaceOnUse\"\n}, /*#__PURE__*/React.createElement(\"stop\", {\n stopColor: \"#E14403\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.1155,\n stopColor: \"#E14403\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.2352,\n stopColor: \"#E24A03\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.393,\n stopColor: \"#E35A03\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.55,\n stopColor: \"#E57203\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.6608,\n stopColor: \"#EA8402\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.8814,\n stopColor: \"#F7B201\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.9959,\n stopColor: \"#FFCC00\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n stopColor: \"#FFCC00\"\n})), /*#__PURE__*/React.createElement(\"clipPath\", {\n id: \"clip0_411_338\"\n}, /*#__PURE__*/React.createElement(\"rect\", {\n width: 160,\n height: 160,\n fill: \"white\"\n})));\n\nvar SvgChecklist = function SvgChecklist(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n width: 160,\n height: 160,\n viewBox: \"0 0 160 160\",\n fill: \"none\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#clip0_411_338)\"\n }, _ref2, _ref3, _ref4, _ref5, _ref6, _ref7, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask0_411_338\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 64,\n y: 51,\n width: 35,\n height: 35\n }, _ref8), _ref9, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask1_411_338\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 64,\n y: 51,\n width: 35,\n height: 35\n }, _ref10), _ref11, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask2_411_338\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 64,\n y: 51,\n width: 35,\n height: 35\n }, _ref12), _ref13, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask3_411_338\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 64,\n y: 51,\n width: 35,\n height: 35\n }, _ref14), _ref15, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask4_411_338\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 64,\n y: 51,\n width: 35,\n height: 35\n }, _ref16), _ref17, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask5_411_338\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 64,\n y: 51,\n width: 35,\n height: 35\n }, _ref18), _ref19, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask6_411_338\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 64,\n y: 51,\n width: 35,\n height: 35\n }, _ref20), _ref21, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask7_411_338\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 64,\n y: 51,\n width: 35,\n height: 35\n }, _ref22), _ref23, _ref24, _ref25, _ref26, _ref27, _ref28, _ref29, _ref30, _ref31, _ref32, _ref33, _ref34, _ref35, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask8_411_338\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 65,\n y: 32,\n width: 33,\n height: 7\n }, _ref36), _ref37, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask9_411_338\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 65,\n y: 32,\n width: 33,\n height: 7\n }, _ref38), _ref39, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask10_411_338\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 65,\n y: 32,\n width: 33,\n height: 7\n }, _ref40), _ref41, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask11_411_338\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 65,\n y: 32,\n width: 33,\n height: 7\n }, _ref42), _ref43, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask12_411_338\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 65,\n y: 32,\n width: 33,\n height: 7\n }, _ref44), _ref45, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask13_411_338\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 65,\n y: 32,\n width: 33,\n height: 7\n }, _ref46), _ref47, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask14_411_338\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 65,\n y: 32,\n width: 33,\n height: 7\n }, _ref48), _ref49, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask15_411_338\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 65,\n y: 32,\n width: 33,\n height: 7\n }, _ref50), _ref51, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask16_411_338\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 65,\n y: 32,\n width: 33,\n height: 7\n }, _ref52), _ref53, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask17_411_338\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 65,\n y: 32,\n width: 33,\n height: 7\n }, _ref54), _ref55, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask18_411_338\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 65,\n y: 32,\n width: 33,\n height: 7\n }, _ref56), _ref57, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask19_411_338\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 65,\n y: 32,\n width: 33,\n height: 7\n }, _ref58), _ref59, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask20_411_338\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 65,\n y: 32,\n width: 33,\n height: 7\n }, _ref60), _ref61, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask21_411_338\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 65,\n y: 32,\n width: 33,\n height: 7\n }, _ref62), _ref63, _ref64, _ref65, _ref66, _ref67, _ref68), _ref69);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgChecklist, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/checklist.31db78bc.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"chevron-down_svg__a\",\n d: \"M9.875 1l-3.88 3.88L2.115 1a.996.996 0 10-1.41 1.41L5.295 7c.39.39 1.02.39 1.41 0l4.59-4.59a.996.996 0 000-1.41c-.39-.38-1.03-.39-1.42 0z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"evenodd\",\n xlinkHref: \"#chevron-down_svg__a\"\n});\n\nvar SvgChevronDown = function SvgChevronDown(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 12 8\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgChevronDown, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/chevron-down.495b4207.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"chevron-left_svg__a\",\n d: \"M15 6.705a.996.996 0 00-1.41 0L9 11.295a.996.996 0 000 1.41l4.59 4.59a.996.996 0 101.41-1.41l-3.88-3.89L15 8.115c.39-.39.38-1.03 0-1.41z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#chevron-left_svg__a\"\n});\n\nvar SvgChevronLeft = function SvgChevronLeft(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgChevronLeft, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/chevron-left.1ee8fd17.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"chevron-right_svg__a\",\n d: \"M9 6.71a.996.996 0 000 1.41L12.88 12 9 15.88a.996.996 0 101.41 1.41L15 12.7a.996.996 0 000-1.41L10.41 6.7c-.38-.38-1.02-.38-1.41.01z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#chevron-right_svg__a\"\n});\n\nvar SvgChevronRight = function SvgChevronRight(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgChevronRight, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/chevron-right.3c9236cc.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"chevron-up_svg__a\",\n d: \"M9.875 1l-3.88 3.88L2.115 1a.996.996 0 10-1.41 1.41L5.295 7c.39.39 1.02.39 1.41 0l4.59-4.59a.996.996 0 000-1.41c-.39-.38-1.03-.39-1.42 0z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"evenodd\",\n transform: \"matrix(1 0 0 -1 0 8)\",\n xlinkHref: \"#chevron-up_svg__a\"\n});\n\nvar SvgChevronUp = function SvgChevronUp(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 12 8\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgChevronUp, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/chevron-up.1454976c.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"g\", {\n fill: \"currentColor\",\n fillRule: \"evenodd\",\n stroke: \"currentColor\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M16 .5c.392 0 .75.153 1.018.402.266.247.444.588.477.97h0L17.5 8.5h-1v-7h-15V17a1.5 1.5 0 001.357 1.493h0L6.5 18.5V19.5H2a1.498 1.498 0 01-1.495-1.37h0L.51 2c0-.394.15-.754.398-1.023.243-.264.58-.439.962-.471h0z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M14 11.5a4.5 4.5 0 110 9 4.5 4.5 0 010-9zm0 1a1.44 1.44 0 00-1.03.425c-.251.25-.43.607-.47 1.05h0v.525H12l-.147.007c-.34.033-.646.18-.884.418-.245.246-.421.592-.469 1.075 0 .397.153.758.425 1.03.25.251.607.43 1.05.47h0l.525.5.007.147c.033.34.18.646.418.884.246.245.592.421 1.075.469a1.44 1.44 0 001.03-.425c.251-.25.43-.607.47-1.05h0l.5-.525.147-.007c.34-.033.646-.18.884-.418.245-.246.421-.592.469-1.075a1.44 1.44 0 00-.425-1.03 1.677 1.677 0 00-1.05-.47h0L15.5 14l-.007-.147a1.436 1.436 0 00-.418-.884c-.246-.245-.592-.421-1.075-.469z\"\n}));\n\nvar SvgClaim = function SvgClaim(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 19 21\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgClaim, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/claim.e936d4cc.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"clear_svg__a\",\n d: \"M18.3 5.71a.996.996 0 00-1.41 0L12 10.59 7.11 5.7A.996.996 0 105.7 7.11L10.59 12 5.7 16.89a.996.996 0 101.41 1.41L12 13.41l4.89 4.89a.996.996 0 101.41-1.41L13.41 12l4.89-4.89c.38-.38.38-1.02 0-1.4z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#clear_svg__a\"\n});\n\nvar SvgClear = function SvgClear(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgClear, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/clear.31a5d397.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"close_svg__a\",\n d: \"M18.3 5.71a.996.996 0 00-1.41 0L12 10.59 7.11 5.7A.996.996 0 105.7 7.11L10.59 12 5.7 16.89a.996.996 0 101.41 1.41L12 13.41l4.89 4.89a.996.996 0 101.41-1.41L13.41 12l4.89-4.89c.38-.38.38-1.02 0-1.4z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#close_svg__a\"\n});\n\nvar SvgClose = function SvgClose(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgClose, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/close.27507316.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"close-menu_svg__a\",\n d: \"M13.3.71a.996.996 0 00-1.41 0L7 5.59 2.11.7A.996.996 0 10.7 2.11L5.59 7 .7 11.89a.996.996 0 101.41 1.41L7 8.41l4.89 4.89a.996.996 0 101.41-1.41L8.41 7l4.89-4.89c.38-.38.38-1.02 0-1.4z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"evenodd\",\n xlinkHref: \"#close-menu_svg__a\"\n});\n\nvar SvgCloseMenu = function SvgCloseMenu(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 14 14\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgCloseMenu, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/close-menu.74112225.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"g\", {\n fill: \"currentColor\",\n fillRule: \"evenodd\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M12 0h4v14h-4zM6 4h4v10H6zM0 8h4v6H0z\"\n}));\n\nvar SvgColumnGraph = function SvgColumnGraph(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 16 14\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgColumnGraph, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/column-graph.c7355113.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"computer_svg__a\",\n d: \"M20 18c1.1 0 1.99-.9 1.99-2L22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2H1c-.55 0-1 .45-1 1s.45 1 1 1h22c.55 0 1-.45 1-1s-.45-1-1-1h-3zM5 6h14c.55 0 1 .45 1 1v8c0 .55-.45 1-1 1H5c-.55 0-1-.45-1-1V7c0-.55.45-1 1-1z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#computer_svg__a\"\n});\n\nvar SvgComputer = function SvgComputer(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgComputer, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/computer.e7bba85f.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#clip0_411_470)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M80 160C124.186 160 160 124.184 160 80.001C160 35.817 124.186 0 80 0C35.814 0 0 35.817 0 80.001C0 124.184 35.814 160 80 160Z\",\n fill: \"#F6F0DA\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M88.767 33.2606C88.767 34.1246 88.067 34.8246 87.203 34.8246H73.075C72.112 34.8246 71.332 34.0446 71.332 33.0816V31.1016H45.115V128.898H114.984V31.1016H88.767V33.2606Z\",\n fill: \"white\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M116.247 26H43.853C41.732 26 40.013 27.719 40.013 29.84V130.16C40.013 132.281 41.732 134 43.853 134H116.247C118.368 134 120.087 132.281 120.087 130.16V29.84C120.087 27.719 118.367 26 116.247 26ZM114.984 128.897H45.115V31.102H71.332V33.082C71.332 34.045 72.112 34.825 73.075 34.825H87.203C88.067 34.825 88.767 34.125 88.767 33.261V31.102H114.984V128.897Z\",\n fill: \"#260047\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M65.671 39.9086L66.167 41.0516H65.176L65.671 39.9086ZM65.454 39.2256L64.106 42.3126H64.632L64.98 41.5036H66.362L66.714 42.3126H67.244L65.896 39.2256H65.454Z\",\n fill: \"#260047\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M69.264 42.3127H68.786V42.0867C68.643 42.2697 68.404 42.3557 68.186 42.3557C67.673 42.3557 67.343 41.9997 67.343 41.4387V40.1387H67.821V41.3607C67.821 41.7037 67.991 41.9217 68.29 41.9217C68.512 41.9217 68.694 41.7827 68.786 41.5787V40.1397H69.264V42.3127V42.3127Z\",\n fill: \"#260047\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M73.278 40.1392H73.756V40.4302C73.839 40.2652 74.06 40.1172 74.304 40.1172C74.395 40.1172 74.474 40.1302 74.526 40.1432L74.457 40.6082C74.413 40.5912 74.344 40.5822 74.27 40.5822C74.079 40.5822 73.853 40.6912 73.757 40.9172V42.3132H73.279V40.1392H73.278Z\",\n fill: \"#260047\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M75.629 42.3557C74.986 42.3557 74.547 41.8387 74.547 41.2257C74.547 40.6127 74.986 40.0957 75.629 40.0957C75.886 40.0957 76.112 40.1827 76.264 40.3387V40.1387H76.742V42.3127H76.264V42.1087C76.112 42.2687 75.885 42.3557 75.629 42.3557ZM75.685 41.9207C75.963 41.9207 76.15 41.7907 76.263 41.6167V40.8297C76.15 40.6597 75.963 40.5297 75.685 40.5297C75.303 40.5297 75.037 40.8427 75.037 41.2257C75.038 41.6077 75.303 41.9207 75.685 41.9207Z\",\n fill: \"#260047\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M77.174 39.3156L77.653 38.8486V42.3126H77.174V39.3156Z\",\n fill: \"#260047\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M78.324 39.8128C78.15 39.8128 78.007 39.6698 78.007 39.4908C78.007 39.3168 78.15 39.1738 78.324 39.1738C78.502 39.1738 78.646 39.3168 78.646 39.4908C78.646 39.6698 78.502 39.8128 78.324 39.8128ZM78.085 40.1388H78.563V42.3128H78.085V40.1388Z\",\n fill: \"#260047\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M79.997 42.3557C79.354 42.3557 78.914 41.8387 78.914 41.2257C78.914 40.6127 79.353 40.0957 79.997 40.0957C80.254 40.0957 80.48 40.1827 80.632 40.3387V40.1387H81.11V42.3127H80.632V42.1087C80.48 42.2687 80.254 42.3557 79.997 42.3557ZM80.054 41.9207C80.332 41.9207 80.519 41.7907 80.632 41.6167V40.8297C80.519 40.6597 80.332 40.5297 80.054 40.5297C79.671 40.5297 79.406 40.8427 79.406 41.2257C79.406 41.6077 79.671 41.9207 80.054 41.9207Z\",\n fill: \"#260047\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M81.543 40.1387H82.021V40.3687C82.169 40.1857 82.403 40.0947 82.66 40.0947C83.182 40.0947 83.512 40.4507 83.512 41.0117V42.3117H83.034V41.0897C83.034 40.7467 82.86 40.5287 82.556 40.5287C82.299 40.5287 82.113 40.6717 82.021 40.8717V42.3107H81.543V40.1387V40.1387Z\",\n fill: \"#260047\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M84.364 41.4908C84.525 41.7388 84.781 41.8868 85.081 41.8868C85.372 41.8868 85.581 41.7348 85.581 41.5038C85.581 41.2868 85.438 41.1428 85.142 41.0348L84.803 40.9128C84.316 40.7348 84.077 40.4648 84.077 40.0438C84.077 39.5048 84.503 39.1738 85.077 39.1738C85.459 39.1738 85.786 39.3258 86.012 39.5958L85.66 39.9388C85.508 39.7568 85.317 39.6518 85.078 39.6518C84.817 39.6518 84.591 39.7868 84.591 40.0078C84.591 40.2338 84.739 40.3338 85.06 40.4508L85.373 40.5678C85.825 40.7378 86.099 41.0108 86.099 41.4718C86.095 42.0108 85.673 42.3628 85.069 42.3628C84.569 42.3628 84.152 42.1368 83.965 41.8058L84.364 41.4908Z\",\n fill: \"#260047\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M88.321 42.3127H87.843V42.0867C87.7 42.2697 87.461 42.3557 87.243 42.3557C86.73 42.3557 86.4 41.9997 86.4 41.4387V40.1387H86.878V41.3607C86.878 41.7037 87.048 41.9217 87.348 41.9217C87.57 41.9217 87.752 41.7827 87.844 41.5787V40.1397H88.322V42.3127H88.321Z\",\n fill: \"#260047\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M88.723 40.1387H89.201V40.3387C89.353 40.1817 89.579 40.0957 89.836 40.0957C90.484 40.0957 90.923 40.6127 90.923 41.2257C90.923 41.8387 90.484 42.3557 89.836 42.3557C89.579 42.3557 89.353 42.2687 89.201 42.1077V43.2687H88.723V40.1387ZM89.784 41.9207C90.168 41.9207 90.434 41.6047 90.432 41.2197C90.429 40.7837 90.023 40.4497 89.599 40.5497C89.417 40.5927 89.288 40.6997 89.202 40.8287V41.6157C89.314 41.7907 89.501 41.9207 89.784 41.9207Z\",\n fill: \"#260047\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M93.648 40.1392H94.126V40.4302C94.209 40.2652 94.43 40.1172 94.674 40.1172C94.765 40.1172 94.844 40.1302 94.896 40.1432L94.826 40.6082C94.783 40.5912 94.713 40.5822 94.639 40.5822C94.448 40.5822 94.222 40.6912 94.126 40.9172V42.3132H93.648V40.1392Z\",\n fill: \"#260047\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M70.577 41.0217L70.355 40.9567C70.142 40.8957 70.094 40.8047 70.094 40.6997C70.094 40.5697 70.242 40.4957 70.385 40.4957C70.563 40.4957 70.702 40.5827 70.798 40.7177L71.1 40.4237C70.945 40.2117 70.7 40.0967 70.394 40.0967C69.959 40.0967 69.62 40.3317 69.616 40.7187C69.612 41.0407 69.807 41.2797 70.186 41.3837L70.377 41.4357C70.638 41.5137 70.712 41.5877 70.712 41.7137C70.712 41.8657 70.569 41.9437 70.399 41.9437C70.177 41.9437 69.964 41.8347 69.877 41.6437L69.558 41.9547C69.725 42.2237 70.037 42.3567 70.398 42.3567C70.846 42.3567 71.185 42.0997 71.185 41.6827C71.186 41.3257 70.96 41.1347 70.577 41.0217Z\",\n fill: \"#260047\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M72.88 41.8714C72.786 41.9104 72.706 41.9264 72.571 41.9264C72.367 41.9264 72.232 41.8264 72.232 41.5564V40.5654H72.88V40.1394H72.232V39.3164H71.754V40.1394H71.328V40.5654H71.754V41.6354C71.754 42.1264 72.089 42.3574 72.51 42.3574C72.651 42.3574 72.779 42.3324 72.88 42.3024V41.8714V41.8714Z\",\n fill: \"#260047\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M92.845 41.6617C92.726 41.8157 92.537 41.9207 92.272 41.9207C91.911 41.9207 91.624 41.6857 91.603 41.3297H93.312C93.316 41.2607 93.316 41.2207 93.316 41.1737C93.316 40.4737 92.838 40.0957 92.268 40.0957C91.6 40.0957 91.123 40.5977 91.134 41.2477C91.145 41.9097 91.721 42.4017 92.382 42.3517C92.747 42.3247 93.029 42.1647 93.211 41.9217L92.845 41.6617ZM92.25 40.4997C92.528 40.4997 92.78 40.6697 92.833 40.9827H91.624C91.689 40.6607 91.972 40.4997 92.25 40.4997Z\",\n fill: \"#260047\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M81.623 37.6546C81.523 37.6636 81.514 37.8046 81.611 37.8276L83.786 38.3296C83.956 37.9226 83.961 37.5626 83.669 37.4756L81.623 37.6546Z\",\n fill: \"url(#paint0_linear_411_470)\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M85.584 37.308C85.666 37.301 85.712 37.401 85.653 37.458L83.315 39.739C83.245 39.807 83.133 39.728 83.174 39.639L83.785 38.329C83.955 37.922 83.96 37.563 83.668 37.475L85.584 37.308Z\",\n fill: \"url(#paint1_linear_411_470)\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M87.409 121.457H72.379C71.408 121.457 70.613 120.662 70.613 119.691C70.613 118.72 71.408 117.925 72.379 117.925H87.409C88.38 117.925 89.175 118.72 89.175 119.691C89.174 120.662 88.38 121.457 87.409 121.457Z\",\n fill: \"#ED4300\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M79.107 90.2611C80.256 90.2611 81.187 89.3271 81.187 88.1701C81.187 87.0181 80.256 86.0791 79.107 86.0791C77.952 86.0791 77.021 87.0181 77.021 88.1701C77.021 89.3271 77.953 90.2611 79.107 90.2611Z\",\n fill: \"#ED4300\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M79.106 84.4353C77.995 84.4353 77.095 83.5333 77.095 82.4243V71.3333C77.095 70.2233 77.995 69.3223 79.106 69.3223C80.217 69.3223 81.117 70.2243 81.117 71.3333V82.4243C81.117 83.5343 80.217 84.4353 79.106 84.4353Z\",\n fill: \"#ED4300\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M100.825 96.3428H57.82C57.096 96.3428 56.428 95.9528 56.071 95.3228C55.714 94.6928 55.723 93.9208 56.095 93.2988L77.634 57.3208C77.996 56.7148 78.652 56.3418 79.359 56.3418H79.36C80.068 56.3418 80.723 56.7138 81.086 57.3228L102.553 93.3008C102.923 93.9228 102.932 94.6958 102.575 95.3248C102.216 95.9548 101.548 96.3428 100.825 96.3428ZM61.367 92.3208H97.284L79.356 62.2738L61.367 92.3208Z\",\n fill: \"#ED4300\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"linearGradient\", {\n id: \"paint0_linear_411_470\",\n x1: 82.3166,\n y1: 38.4333,\n x2: 83.3649,\n y2: 37.184,\n gradientUnits: \"userSpaceOnUse\"\n}, /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.1155,\n stopColor: \"#EA4403\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.2632,\n stopColor: \"#EA4A03\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.4566,\n stopColor: \"#EC5A03\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.65,\n stopColor: \"#EE7203\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.7747,\n stopColor: \"#F18402\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n stopColor: \"#F8AE00\"\n})), /*#__PURE__*/React.createElement(\"linearGradient\", {\n id: \"paint1_linear_411_470\",\n x1: 83.2741,\n y1: 38.436,\n x2: 85.5716,\n y2: 38.637,\n gradientUnits: \"userSpaceOnUse\"\n}, /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.1155,\n stopColor: \"#EA4403\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.2356,\n stopColor: \"#EA4A03\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.3928,\n stopColor: \"#EC5A03\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.55,\n stopColor: \"#EE7203\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.6535,\n stopColor: \"#F18402\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.8604,\n stopColor: \"#F9B301\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.9959,\n stopColor: \"#FFD500\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n stopColor: \"#FFD500\"\n})), /*#__PURE__*/React.createElement(\"clipPath\", {\n id: \"clip0_411_470\"\n}, /*#__PURE__*/React.createElement(\"rect\", {\n width: 160,\n height: 160,\n fill: \"white\"\n})));\n\nvar SvgComputerError = function SvgComputerError(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n width: 160,\n height: 160,\n viewBox: \"0 0 160 160\",\n fill: \"none\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgComputerError, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/computer-error.0c63302e.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M74 147.63c40.869 0 74-33.13 74-74 0-40.869-33.131-74-74-74-40.87 0-74 33.131-74 74 0 40.87 33.13 74 74 74z\"\n});\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M70.205-.37C31.1 1.607 0 33.961 0 73.583s33.13 74.047 74 74.047c40.869 0 74-33.152 74-74.047C148 32.687 116.904 1.607 77.795-.37h-7.59z\"\n});\n\nvar _ref4 = /*#__PURE__*/React.createElement(\"g\", {\n fill: \"currentColor\",\n mask: \"url(#consolidate_svg__a)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M44.464 75.258c-.6.066-1.09.815-1.492 1.195-.518.495-1.024.996-1.52 1.514a50.62 50.62 0 00-2.885 3.26c-1.823 2.246-3.469 4.657-4.807 7.229-.633 1.222-1.217 2.472-1.894 3.678-.33.583-.672 1.172-1.068 1.712-.16.215-.54.76-.793.848-.749.253.16-1.68.231-1.872.397-1.019.771-2.07 1.261-3.045.953-1.894 1.685-3.92 2.638-5.83.864-1.724 2.075-3.167 3.314-4.631a40.63 40.63 0 004.455-6.437c.726-1.3 1.393-2.814.936-4.223-.05-.16-.127-.325-.27-.402-.176-.094-.391-.038-.578.033-2.511.942-4.273 3.425-6.024 5.33-1.916 2.087-3.838 4.184-5.511 6.47-2.45 3.347-4.108 7.086-6.178 10.648-.347-.457.093-1.118.193-1.608.137-.66.258-1.332.418-1.987.424-1.773.584-3.656 1.255-5.363.579-1.47 1.531-2.764 2.533-3.981 1.8-2.18 3.832-4.207 5.253-6.651.721-1.245 1.387-3.001.886-4.444-.54-1.541-3.188.909-3.771 1.487-1.013 1.002-2.148 1.855-3.111 2.885a134.192 134.192 0 00-3.249 3.607c-1.239 1.426-2.643 2.835-3.634 4.448-.572.93-1.002 1.944-1.404 2.963-1.486 3.766-2.323 7.807-3.92 11.507.512 3.15 1.321 6.051 3.562 8.479.21.232.336.479.391.733a43.65 43.65 0 003.552 2.588c9.817 6.48 11.98 12.994 5.66 24.821 1.327-1.168 2.924-1.894 4.29-3.012 2.317-1.889 3.798-3.695 4.503-6.635.633-2.637.666-5.379.666-8.072 0-4.906.43-9.641 2.682-14.073 1.349-2.66 2.703-5.313 4.052-7.967.831-1.641 1.68-3.58.892-5.242-.198-.418-.655-.831-1.068-.622-.121.06-.215.176-.303.28a80.71 80.71 0 00-4.702 6.388 74.966 74.966 0 00-2.081 3.342c-.32.55-1.305 3.056-1.944 3.04.094-.937.578-1.912.881-2.803.336-.986.683-1.96 1.074-2.924.76-1.878 1.657-3.717 2.857-5.358 1.971-2.68 3.607-5.45 4.466-8.705.137-.522.302-1.299.192-1.822-.088-.418-.462-.81-.886-.765v-.011z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M44.175 75.058c-.6.066-1.09.814-1.492 1.194-.518.496-1.025.997-1.52 1.514a50.619 50.619 0 00-2.885 3.26c-1.823 2.246-3.469 4.658-4.807 7.23-.633 1.222-1.217 2.472-1.894 3.677-.33.584-.672 1.173-1.068 1.713-.16.215-.54.76-.793.848-.749.253.16-1.68.231-1.872.397-1.019.771-2.07 1.261-3.045.953-1.894 1.685-3.92 2.638-5.831.864-1.723 2.075-3.166 3.314-4.63a40.619 40.619 0 004.455-6.437c.726-1.3 1.392-2.814.935-4.223-.049-.16-.126-.325-.27-.402-.175-.094-.39-.039-.577.033-2.511.941-4.273 3.425-6.024 5.33-1.916 2.087-3.838 4.184-5.512 6.47-2.45 3.347-4.107 7.085-6.177 10.648-.347-.457.093-1.118.193-1.608.137-.66.258-1.332.418-1.988.424-1.772.584-3.655 1.255-5.362.578-1.47 1.531-2.764 2.533-3.981 1.8-2.18 3.832-4.207 5.253-6.651.721-1.245 1.387-3.001.886-4.444-.54-1.541-3.188.909-3.771 1.487-1.013 1.002-2.148 1.855-3.111 2.885a134.196 134.196 0 00-3.249 3.606c-1.239 1.426-2.643 2.836-3.634 4.45-.572.93-1.002 1.943-1.404 2.962-1.486 3.766-2.323 7.807-3.92 11.507.512 3.15 1.321 6.051 3.562 8.479.21.231.336.479.391.733.997.814 2.17 1.673 3.552 2.587 9.817 6.481 11.98 12.995 5.66 24.821 1.327-1.167 2.924-1.894 4.289-3.011 2.318-1.889 3.8-3.695 4.504-6.635.633-2.637.666-5.379.666-8.072 0-4.906.43-9.641 2.682-14.073 1.349-2.66 2.703-5.314 4.052-7.967.831-1.641 1.68-3.58.892-5.242-.198-.419-.655-.832-1.068-.622-.121.06-.215.176-.303.28a80.71 80.71 0 00-4.702 6.388 75.022 75.022 0 00-2.081 3.342c-.32.55-1.305 3.055-1.944 3.039.093-.936.578-1.91.88-2.803.337-.985.684-1.96 1.075-2.923.76-1.878 1.657-3.717 2.857-5.358 1.971-2.681 3.607-5.45 4.465-8.705.138-.523.303-1.3.193-1.822-.088-.419-.462-.81-.886-.766v-.01z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M27.321 101.305c-10.506-5.291-10.318-9.382-10.318-9.382-.232-.276-.259-.991-.309-1.333-.12-.88-.115-1.778-.104-2.665.01-1.706.082-3.452-.48-5.065-.56-1.608-1.932-3.072-3.639-3.16-.402-.023-.837.05-1.117.335-.32.325-.358.826-.38 1.278l-.413 9.69c-.044 1.024-.088 2.065.093 3.073.16.908.501 1.778.865 2.626 1.492 3.502 3.392 6.811 4.895 10.302 1.26 2.94 2.863 6.122 2.053 9.36-.853 3.414-2.263 6.701-3.876 9.817-1.872 3.623-4.074 7.064-6.282 10.495-1.035 1.613-3.1 3.815-3.293 5.726-.204 2.037 1.558 3.942 3.017 5.098 3.965 3.15 6.36 12.273 11.381 11.673 2.434-.292 4.08-2.076 4.934-4.295 1.272-3.303 4.647-14.546 5.902-17.878.914-2.433 1.669-4.894 2.841-7.229 1.399-2.769 2.913-5.495 3.987-8.419 3.386-9.228-1.674-15.984-9.763-20.058l.006.011zM120.084 94.642c17.335 8.159 14.701 20.582 13.197 24.025-1.043 2.386-2.751 4.404-4.442 6.39-.939 1.104-2.103 2.305-3.544 2.204-.957-.065-1.764-.706-2.5-1.312-2.52-2.073-5.308-4.836-4.676-8.039.211-1.074.803-2.046.986-3.124.295-1.707-.46-3.406-1.259-4.943a64.383 64.383 0 00-6.362-9.927c-1.761-2.26-7.544-5.173-4.728-7.493 2.676-2.208 10.306.812 13.32 2.23l.008-.01zM119.906 79.516s2.122-3.84-1.693-7.252c-3.815-3.411-5.618-.8-5.618-.8s1.966 2.148 3.222 3.333c1.257 1.184 4.082 4.72 4.082 4.72h.007z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M115.968 109.371l23.737-34.554c2.826-4.108 1.77-9.777-2.338-12.615l-34.554-23.737c-4.102-2.82-9.789-1.771-12.61 2.344l-9.466 13.778 2.842 1.953c3.542-2.235 8.221-2.306 11.896.218 4.913 3.378 6.148 10.093 2.782 15.006-3.379 4.913-10.1 6.155-15.007 2.782a10.796 10.796 0 01-4.475-11.022l-2.842-1.952-9.466 13.778c-2.82 4.115-1.776 9.783 2.332 12.61l34.554 23.737c4.108 2.826 9.783 1.776 12.615-2.338\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M83.393 54.397a10.115 10.115 0 00-8.971 6.612l-3.445.18-.928-18.046c-.175-3.35-3.058-5.944-6.405-5.78l-44.026 2.262c-3.35.174-5.948 3.05-5.78 6.404l2.269 44.023c.174 3.35 3.05 5.948 6.405 5.78l44.026-2.262c3.35-.175 5.947-3.051 5.766-6.397l-.928-18.047 3.449-.173a10.121 10.121 0 009.604 5.657c5.576-.287 9.862-5.04 9.578-10.628-.284-5.569-5.038-9.855-10.618-9.574M99.706 100.111c1.509-.844 5.124.128 6.722 2.905.844 1.468 1.208 3.653 1.553 5.765.533 3.208-.791 4.902 1.393 5.384.523.118 6.717-4.461 9.091-8.652 1.669-2.95 16.612-.189 13.735 15.773-.56 3.116-18.401 26.153-33.775 69.179-.094.224-33.945 4.278-25.868-4.116 8.076-8.393 29.612-47.367 28.509-51.936-.569-2.357-2.075-6.145-.986-12.626 2.327-13.858.573-17.08-.708-19.433l-.112-.21c-.545-1.008-.124-1.71.445-2.027\"\n}));\n\nvar _ref5 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"clipPath\", {\n id: \"consolidate_svg__clip0_2143_52998\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M0 0h148v148H0z\"\n})));\n\nvar SvgConsolidate = function SvgConsolidate(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n fill: \"none\",\n viewBox: \"0 0 148 148\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#consolidate_svg__clip0_2143_52998)\"\n }, _ref2, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"consolidate_svg__a\",\n style: {\n maskType: \"luminance\"\n },\n width: 148,\n height: 149,\n x: 0,\n y: -1,\n maskUnits: \"userSpaceOnUse\"\n }, _ref3), _ref4), _ref5);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgConsolidate, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/consolidate.9988976a.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"g\", {\n fill: \"currentColor\",\n fillRule: \"evenodd\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M13.156 6.984a2.903 2.903 0 013.527-.441l.587-.587-4.629-4.628a.727.727 0 00-1.028 0L6.984 5.956l1.543 1.543-.514.514a1.455 1.455 0 102.057 2.057l.514-.514 1.543 1.542.587-.586a2.903 2.903 0 01.442-3.528z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M17.27 13.156a2.903 2.903 0 01.441 3.527l.587.587 4.628-4.629a.727.727 0 000-1.028l-4.628-4.629-1.543 1.543-.514-.514a1.455 1.455 0 10-2.057 2.057l.514.514-1.542 1.543.586.587a2.903 2.903 0 013.528.442zM6.984 11.098a2.903 2.903 0 01-.441-3.527l-.587-.587-4.628 4.629a.727.727 0 000 1.028l4.628 4.629 1.543-1.543.514.514a1.455 1.455 0 102.057-2.057l-.514-.514 1.542-1.543-.586-.587a2.903 2.903 0 01-3.528-.442z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M11.098 17.27a2.903 2.903 0 01-3.527.441l-.587.587 4.629 4.628a.727.727 0 001.028 0l4.629-4.628-1.543-1.543.514-.514a1.455 1.455 0 10-2.057-2.057l-.514.514-1.543-1.542-.587.586a2.903 2.903 0 01-.442 3.528z\"\n}));\n\nvar SvgConsolidatePuzzle = function SvgConsolidatePuzzle(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgConsolidatePuzzle, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/consolidate-puzzle.2b4787a1.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"style\", null, \".consolidate-super_svg__st1{fill:#eaeaea}\");\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"switch\", null, /*#__PURE__*/React.createElement(\"g\", null, /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"consolidate-super_svg__SVGID_1_\",\n d: \"M0 0h80v80H0z\"\n})), /*#__PURE__*/React.createElement(\"clipPath\", {\n id: \"consolidate-super_svg__SVGID_00000069374963374211811230000015342766305514929287_\"\n}, /*#__PURE__*/React.createElement(\"use\", {\n overflow: \"visible\",\n xlinkHref: \"#consolidate-super_svg__SVGID_1_\"\n})), /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#consolidate-super_svg__SVGID_00000069374963374211811230000015342766305514929287_)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M40 80c22.093 0 40-17.909 40-40C80 17.907 62.093-.001 40-.001 17.908-.001 0 17.907 0 40c0 22.092 17.908 40 40 40\",\n className: \"consolidate-super_svg__st1\"\n})), /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#consolidate-super_svg__SVGID_00000069374963374211811230000015342766305514929287_)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M40 80c22.093 0 40-17.909 40-40C80 17.907 62.093-.001 40-.001 17.908-.001 0 17.907 0 40c0 22.092 17.908 40 40 40\",\n className: \"consolidate-super_svg__st1\"\n})), /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#consolidate-super_svg__SVGID_00000069374963374211811230000015342766305514929287_)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#fff\",\n d: \"M70.208 47.746l-.628-16.658a3.62 3.62 0 00-3.742-3.469l-16.657.627a3.62 3.62 0 00-3.469 3.743l.25 6.644 1.37-.052a4.29 4.29 0 013.847-2.752 4.288 4.288 0 014.448 4.125 4.292 4.292 0 01-8.169 1.996l-1.369.05.251 6.644a3.615 3.615 0 003.739 3.469l16.658-.627a3.619 3.619 0 003.471-3.74\"\n})), /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#consolidate-super_svg__SVGID_00000069374963374211811230000015342766305514929287_)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#ed4300\",\n d: \"M41.02 36.17a4.202 4.202 0 00-4.435 1.333l-.731-.219 1.81-6.025a3.619 3.619 0 00-2.417-4.492L19.28 21.974a3.617 3.617 0 00-4.492 2.417L9.996 40.355a3.616 3.616 0 002.417 4.493l15.964 4.793a3.62 3.62 0 004.493-2.417l2.035-6.781.73.221a4.203 4.203 0 105.385-4.494\"\n}))));\n\nvar SvgConsolidateSuper = function SvgConsolidateSuper(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n id: \"consolidate-super_svg__Layer_1\",\n x: 0,\n y: 0,\n viewBox: \"0 0 80 80\",\n xmlSpace: \"preserve\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgConsolidateSuper, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/consolidate-super.123f41a6.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"g\", {\n fill: \"none\",\n fillRule: \"evenodd\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M0-3h24v24H0z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M22 0H2C.9 0 0 .9 0 2v14c0 1.1.9 2 2 2h20c1.1 0 1.99-.9 1.99-2L24 2c0-1.1-.9-2-2-2zM8 3c1.66 0 3 1.34 3 3S9.66 9 8 9 5 7.66 5 6s1.34-3 3-3zm6 12H2v-1c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1zm3.85-4h1.64L21 13l-1.99 1.99A7.512 7.512 0 0116.28 11c-.18-.64-.28-1.31-.28-2s.1-1.36.28-2a7.474 7.474 0 012.73-3.99L21 5l-1.51 2h-1.64c-.22.63-.35 1.3-.35 2s.13 1.37.35 2z\"\n}));\n\nvar SvgContactDetails = function SvgContactDetails(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 18\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgContactDetails, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/contact-details.4c14f79a.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"contact-support_svg__a\",\n d: \"M12 2c-4.69 0-8.5 3.81-8.5 8.5 0 4.69 3.81 8.5 8.5 8.5h.5v3c4.86-2.34 8-7 8-11.5C20.5 5.81 16.69 2 12 2zm1 14.5h-2v-2h2v2zm.4-4.78c-.01.01-.02.03-.03.05-.05.08-.1.16-.14.24-.02.03-.03.07-.04.11-.03.07-.06.14-.08.21-.07.21-.1.43-.1.68H11c0-.51.08-.94.2-1.3 0-.01 0-.02.01-.03.01-.04.04-.06.05-.1.06-.16.13-.3.22-.44.03-.05.07-.1.1-.15.03-.04.05-.09.08-.12l.01.01c.84-1.1 2.21-1.44 2.32-2.68.09-.98-.61-1.93-1.57-2.13-1.04-.22-1.98.39-2.3 1.28-.14.36-.47.65-.88.65h-.2c-.6 0-1.04-.59-.87-1.17a4.002 4.002 0 014.43-2.79c1.69.25 3.04 1.64 3.33 3.33.44 2.44-1.63 3.03-2.53 4.35z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#contact-support_svg__a\"\n});\n\nvar SvgContactSupport = function SvgContactSupport(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgContactSupport, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/contact-support.8cf92c8f.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"g\", {\n fill: \"currentColor\",\n fillRule: \"evenodd\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M15.125 6.417H7.899C6.917 4.743 5.26 4.483 4.453 4.593l-1.045.149.943 3.235a6.85 6.85 0 00-1.718 2.106H0V16.5h2.627a6.844 6.844 0 005.623 3.636V22h1.833v-1.833h3.667V22h1.833v-1.856C19.16 19.906 22 16.928 22 13.292a6.882 6.882 0 00-6.875-6.875zm.458 5.5H9.167v-1.834h6.416v1.834z\"\n}), /*#__PURE__*/React.createElement(\"circle\", {\n cx: 12.375,\n cy: 2.292,\n r: 2.292\n}));\n\nvar SvgContributionsPiggyBank = function SvgContributionsPiggyBank(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 22 22\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgContributionsPiggyBank, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/contributions -piggy-bank.e64f2b13.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"credit-card_svg__a\",\n d: \"M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm-1 14H5c-.55 0-1-.45-1-1v-5h16v5c0 .55-.45 1-1 1zm1-10H4V6h16v2z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#credit-card_svg__a\"\n});\n\nvar SvgCreditCard = function SvgCreditCard(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgCreditCard, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/credit-card.9ec908b7.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2 0C0.9 0 0 0.9 0 2L0.0100002 5.18C0.0100002 5.71 0.22 6.21 0.59 6.59L4 10L0.59 13.43C0.22 13.8 0.0100002 14.31 0.0100002 14.84L0 18C0 19.1 0.9 20 2 20H10C11.1 20 12 19.1 12 18V14.84C12 14.31 11.79 13.8 11.42 13.43L8 10L11.41 6.6C11.79 6.22 12 5.71 12 5.18V2C12 0.9 11.1 0 10 0H2ZM10 14.91V17C10 17.55 9.55 18 9 18H3C2.45 18 2 17.55 2 17V14.91C2 14.64 2.11 14.39 2.29 14.2L6 10.5L9.71 14.21C9.89 14.39 10 14.65 10 14.91Z\",\n fill: \"#260046\"\n});\n\nvar SvgCsHourglass = function SvgCsHourglass(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n width: 12,\n height: 20,\n viewBox: \"0 0 12 20\",\n fill: \"none\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgCsHourglass, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/cs-hourglass.991d01f2.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"title\", null, \"Group 5\");\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"g\", {\n id: \"\\\\uD83D\\\\uDCF1\\\\u2705-Investments-(I)\",\n stroke: \"none\",\n strokeWidth: 1,\n fill: \"none\",\n fillRule: \"evenodd\"\n}, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Investment-switch---Accum---Current-investment-switch---D01\",\n transform: \"translate(-128.000000, -508.000000)\"\n}, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group\",\n transform: \"translate(104.000000, 463.000000)\"\n}, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group-5\",\n transform: \"translate(24.000000, 45.000000)\"\n}, /*#__PURE__*/React.createElement(\"circle\", {\n id: \"Oval\",\n fill: \"#FFF0E0\",\n cx: 20,\n cy: 20,\n r: 20\n}), /*#__PURE__*/React.createElement(\"g\", {\n id: \"Icon/Quick-Actions/Investment-Change-Current-Balance---Scales\",\n transform: \"translate(8.000000, 8.000000)\",\n fill: \"#FF8200\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3,3 L3.612,4.836 C3.918,5.755125 4.778625,6.375 5.74725,6.375 L10.875,6.375 L10.875,8.715 C7.060125,9.26175 4.125,12.53325 4.125,16.5 L4.125,19.875 C4.125,20.496 4.629,21 5.25,21 L18.75,21 C19.371,21 19.875,20.496 19.875,19.875 L19.875,16.5 C19.875,12.53325 16.939875,9.26175 13.125,8.715 L13.125,6.375 L18.25275,6.375 C19.221375,6.375 20.080875,5.755125 20.386875,4.836 L21,3 L3,3 Z M14.25,15.375 C14.25,16.618125 13.243125,17.625 12,17.625 C10.756875,17.625 9.75,16.618125 9.75,15.375 C9.75,14.131875 10.756875,13.125 12,13.125 C13.243125,13.125 14.25,14.131875 14.25,15.375 Z\",\n id: \"Shape\"\n}))))));\n\nvar SvgCurrentBalance = function SvgCurrentBalance(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n width: \"40px\",\n height: \"40px\",\n viewBox: \"0 0 40 40\",\n ref: svgRef\n }, props), title === undefined ? _ref2 : title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgCurrentBalance, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/current-balance.b2f57899.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M20 40C31.0457 40 40 31.0457 40 20C40 8.9543 31.0457 0 20 0C8.9543 0 0 8.9543 0 20C0 31.0457 8.9543 40 20 40Z\",\n fill: \"#F5F5F9\"\n});\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M14.58 24.884C14.58 25.514 15.066 26 15.696 26H19.278C23.238 26 25.974 23.246 25.974 19.7V19.664C25.974 16.118 23.238 13.4 19.278 13.4H15.696C15.066 13.4 14.58 13.886 14.58 14.516V24.884ZM16.794 23.984V15.416H19.278C21.924 15.416 23.652 17.234 23.652 19.7V19.736C23.652 22.202 21.924 23.984 19.278 23.984H16.794Z\",\n fill: \"#171A20\"\n});\n\nvar SvgDIcon = function SvgDIcon(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n width: 40,\n height: 40,\n viewBox: \"0 0 40 40\",\n fill: \"none\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgDIcon, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/d-icon.5759c25a.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"delete_svg__a\",\n d: \"M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v10zM18 4h-2.5l-.71-.71c-.18-.18-.44-.29-.7-.29H9.91c-.26 0-.52.11-.7.29L8.5 4H6c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#delete_svg__a\"\n});\n\nvar SvgDelete = function SvgDelete(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgDelete, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/delete.d34737b1.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"description_svg__a\",\n d: \"M14.59 2.59c-.38-.38-.89-.59-1.42-.59H6c-1.1 0-2 .9-2 2v16c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8.83c0-.53-.21-1.04-.59-1.41l-4.82-4.83zM15 18H9c-.55 0-1-.45-1-1s.45-1 1-1h6c.55 0 1 .45 1 1s-.45 1-1 1zm0-4H9c-.55 0-1-.45-1-1s.45-1 1-1h6c.55 0 1 .45 1 1s-.45 1-1 1zm-2-6V3.5L18.5 9H14c-.55 0-1-.45-1-1z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#description_svg__a\"\n});\n\nvar SvgDescription = function SvgDescription(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgDescription, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/description.4069c605.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"done_svg__a\",\n d: \"M8.8 15.905l-3.5-3.5a.984.984 0 00-1.4 0 .984.984 0 000 1.4l4.19 4.19c.39.39 1.02.39 1.41 0l10.6-10.59a.984.984 0 000-1.4.984.984 0 00-1.4 0l-9.9 9.9z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#done_svg__a\"\n});\n\nvar SvgDone = function SvgDone(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgDone, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/done.5bd5b43e.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"download_svg__a\",\n d: \"M16.59 9.5H15v-5c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v5H7.41c-.89 0-1.34 1.08-.71 1.71l4.59 4.59c.39.39 1.02.39 1.41 0l4.59-4.59c.63-.63.19-1.71-.7-1.71zM5 19.5c0 .55.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1 .45-1 1z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#download_svg__a\"\n});\n\nvar SvgDownload = function SvgDownload(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgDownload, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/download.6cd8cf43.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"style\", {\n type: \"text/css\"\n}, \"\\n\\t.st0{fill:none;}\\n\\t.st1{clip-path:url(#SVGID_00000130648994518208878010000016025008013316741034_);}\\n\\t.st2{fill:#EAEAEA;}\\n\\t.st3{clip-path:url(#SVGID_00000160160336459789156440000013773701797511601834_);}\\n\\t.st4{fill:#FFFFFF;}\\n\\t.st5{clip-path:url(#SVGID_00000168106964784191687090000011090046626013308086_);}\\n\\t.st6{fill:#EA4403;}\\n\");\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"circle\", {\n className: \"st0\",\n cx: 40,\n cy: 40,\n r: 40\n});\n\nvar _ref4 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"rect\", {\n id: \"a\",\n width: 80,\n height: 80\n}));\n\nvar _ref5 = /*#__PURE__*/React.createElement(\"clipPath\", {\n id: \"e\"\n}, /*#__PURE__*/React.createElement(\"use\", {\n xlinkHref: \"#a\"\n}));\n\nvar _ref6 = /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#e)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n className: \"st2\",\n d: \"M80,40c0,22.09-17.91,40-40.001,40C17.91,80,0,62.09,0,40C0,17.907,17.91,0,39.999,0 C62.09,0,80,17.907,80,40\"\n}));\n\nvar _ref7 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"rect\", {\n id: \"b\",\n width: 80,\n height: 80\n}));\n\nvar _ref8 = /*#__PURE__*/React.createElement(\"clipPath\", {\n id: \"f\"\n}, /*#__PURE__*/React.createElement(\"use\", {\n xlinkHref: \"#b\"\n}));\n\nvar _ref9 = /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#f)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n className: \"st4\",\n d: \"m24.346 28.556c-1.476 0-2.671 1.197-2.671 2.671v26.524c0 1.353 1.013 2.449 2.265 2.449h31.74c1.251 0 2.265-1.096 2.265-2.449v-26.524c0-1.474-1.196-2.671-2.671-2.671h-30.928z\"\n}));\n\nvar _ref10 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"rect\", {\n id: \"d\",\n width: 80,\n height: 80\n}));\n\nvar _ref11 = /*#__PURE__*/React.createElement(\"clipPath\", {\n id: \"c\"\n}, /*#__PURE__*/React.createElement(\"use\", {\n xlinkHref: \"#d\"\n}));\n\nvar _ref12 = /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#c)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n className: \"st6\",\n d: \"m43.205 42.046v-28.149c0-0.64-0.518-1.16-1.158-1.16h-4.293c-0.64 0-1.158 0.519-1.158 1.16v28.18l-7.36 0.033c-1.03 4e-3 -1.542 1.251-0.813 1.978l10.121 10.121c0.44 0.441 1.15 0.453 1.607 0.029l11.015-10.215c0.775-0.718 0.263-2.014-0.793-2.008l-7.168 0.031z\"\n}));\n\nvar SvgDownloadConcrete = function SvgDownloadConcrete(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n enableBackground: \"new 0 0 80 80\",\n viewBox: \"0 0 80 80\",\n xmlSpace: \"preserve\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3, _ref4, _ref5, _ref6, _ref7, _ref8, _ref9, _ref10, _ref11, _ref12);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgDownloadConcrete, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/download-concrete.2a991ae9.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"edit_svg__a\",\n d: \"M2.999 17.461v3.04c0 .28.22.5.5.5h3.04c.13 0 .26-.05.35-.15l10.92-10.91-3.75-3.75-10.91 10.91c-.1.1-.15.22-.15.36zm17.71-10.42a.996.996 0 000-1.41l-2.34-2.34a.996.996 0 00-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#edit_svg__a\"\n});\n\nvar SvgEdit = function SvgEdit(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgEdit, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/edit.72ee6867.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"g\", {\n fill: \"none\",\n fillRule: \"evenodd\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M0 0h24v24H0z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M20 6h-4V4c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-6 0h-4V4h4v2z\"\n}));\n\nvar SvgEmployerSuitcase = function SvgEmployerSuitcase(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgEmployerSuitcase, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/employer-suitcase.9adca7be.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"error_svg__a\",\n d: \"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 11c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v4c0 .55-.45 1-1 1zm1 4h-2v-2h2v2z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#error_svg__a\"\n});\n\nvar SvgError = function SvgError(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgError, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/error.22d07396.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"error-outline_svg__a\",\n d: \"M12 7c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1s-1-.45-1-1V8c0-.55.45-1 1-1zm-.01-5C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm1-3h-2v-2h2v2z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#error-outline_svg__a\"\n});\n\nvar SvgErrorOutline = function SvgErrorOutline(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgErrorOutline, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/error-outline.86bca3db.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"event_svg__a\",\n d: \"M16 13h-3c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1zm0-10v1H8V3c0-.55-.45-1-1-1s-1 .45-1 1v1H5c-1.11 0-1.99.9-1.99 2L3 20a2 2 0 002 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2h-1V3c0-.55-.45-1-1-1s-1 .45-1 1zm2 17H6c-.55 0-1-.45-1-1V9h14v10c0 .55-.45 1-1 1z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#event_svg__a\"\n});\n\nvar SvgEvent = function SvgEvent(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgEvent, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/event.fbdd7982.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"exit-to-app_svg__a\",\n d: \"M10.79 16.29c.39.39 1.02.39 1.41 0l3.59-3.59a.996.996 0 000-1.41L12.2 7.7a.996.996 0 10-1.41 1.41L12.67 11H4c-.55 0-1 .45-1 1s.45 1 1 1h8.67l-1.88 1.88c-.39.39-.38 1.03 0 1.41zM19 3H5a2 2 0 00-2 2v3c0 .55.45 1 1 1s1-.45 1-1V6c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1H6c-.55 0-1-.45-1-1v-2c0-.55-.45-1-1-1s-1 .45-1 1v3c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#exit-to-app_svg__a\"\n});\n\nvar SvgExitToApp = function SvgExitToApp(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgExitToApp, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/exit-to-app.ed1a175f.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"expand-less_svg__a\",\n d: \"M11.295 9l-4.59 4.59A.996.996 0 108.115 15l3.89-3.88 3.88 3.88a.996.996 0 101.41-1.41L12.705 9a.996.996 0 00-1.41 0z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#expand-less_svg__a\"\n});\n\nvar SvgExpandLess = function SvgExpandLess(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgExpandLess, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/expand-less.db92775a.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"expand-more_svg__a\",\n d: \"M15.875 9l-3.88 3.88L8.115 9a.996.996 0 10-1.41 1.41l4.59 4.59c.39.39 1.02.39 1.41 0l4.59-4.59a.996.996 0 000-1.41c-.39-.38-1.03-.39-1.42 0z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#expand-more_svg__a\"\n});\n\nvar SvgExpandMore = function SvgExpandMore(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgExpandMore, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/expand-more.274e16af.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"favorite_svg__a\",\n d: \"M13.35 20.307c-.76.69-1.93.69-2.69-.01l-.11-.1C5.3 15.447 1.87 12.337 2 8.457c.06-1.7.93-3.33 2.34-4.29 2.64-1.8 5.9-.96 7.66 1.1 1.76-2.06 5.02-2.91 7.66-1.1 1.41.96 2.28 2.59 2.34 4.29.14 3.88-3.3 6.99-8.55 11.76l-.1.09z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#favorite_svg__a\"\n});\n\nvar SvgFavorite = function SvgFavorite(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgFavorite, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/favorite.3ceea0eb.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"feedback_svg__a\",\n d: \"M19.995 2H4.005c-1.1 0-2 .9-2 2v18l3.99-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 12h-2v-2h2v2zm0-5c0 .55-.45 1-1 1s-1-.45-1-1V7c0-.55.45-1 1-1s1 .45 1 1v2z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#feedback_svg__a\"\n});\n\nvar SvgFeedback = function SvgFeedback(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgFeedback, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/feedback.d94cb27b.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"filter-list_svg__a\",\n d: \"M11 18h2c.55 0 1-.45 1-1s-.45-1-1-1h-2c-.55 0-1 .45-1 1s.45 1 1 1zM3 7c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1zm4 6h10c.55 0 1-.45 1-1s-.45-1-1-1H7c-.55 0-1 .45-1 1s.45 1 1 1z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#filter-list_svg__a\"\n});\n\nvar SvgFilterList = function SvgFilterList(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgFilterList, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/filter-list.2910525d.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"style\", null, \".flyer-cover_svg__st3{fill:#260046}.flyer-cover_svg__st5{fill:#ea4403}\");\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"switch\", null, /*#__PURE__*/React.createElement(\"g\", null, /*#__PURE__*/React.createElement(\"circle\", {\n cx: 40,\n cy: 40,\n r: 40,\n fill: \"none\"\n}), /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"flyer-cover_svg__SVGID_1_\",\n d: \"M0 0h80v80H0z\"\n})), /*#__PURE__*/React.createElement(\"clipPath\", {\n id: \"flyer-cover_svg__SVGID_00000043431031453273141030000007923507478830660777_\"\n}, /*#__PURE__*/React.createElement(\"use\", {\n overflow: \"visible\",\n xlinkHref: \"#flyer-cover_svg__SVGID_1_\"\n})), /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#flyer-cover_svg__SVGID_00000043431031453273141030000007923507478830660777_)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#eaeaea\",\n d: \"M40 80c22.093 0 40-17.909 40-40C80 17.907 62.093-.001 40-.001S0 17.907 0 40c0 22.092 17.907 40 40 40\"\n})), /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#flyer-cover_svg__SVGID_00000043431031453273141030000007923507478830660777_)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M55.537 57.785c0 1.18-.966 2.146-2.146 2.146h-32.82a2.153 2.153 0 01-2.146-2.146V17.644c0-1.179.967-2.144 2.146-2.144h32.821c1.18 0 2.146.966 2.146 2.144v40.141z\",\n className: \"flyer-cover_svg__st3\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#fff\",\n d: \"M61.575 62.354c0 1.18-.966 2.146-2.146 2.146h-32.82a2.153 2.153 0 01-2.146-2.146V22.213c0-1.179.967-2.144 2.146-2.144H59.43c1.18 0 2.146.966 2.146 2.144v40.141z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M41.491 46.919a2.57 2.57 0 01-2.567-2.566.52.52 0 011.042 0c0 .841.685 1.525 1.525 1.525s1.525-.684 1.525-1.525V31.797a.52.52 0 111.042 0v12.555a2.57 2.57 0 01-2.567 2.567M43.537 27.855a.521.521 0 01-.521-.521v-1.983a.521.521 0 011.043 0v1.983a.522.522 0 01-.522.521\",\n className: \"flyer-cover_svg__st3\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M34.591 35.874c1.32 0 2.456.719 2.99 1.76.534-1.04 1.67-1.76 2.99-1.76 1.32 0 2.457.719 2.991 1.76.533-1.04 1.67-1.76 2.99-1.76s2.456.719 2.99 1.76c.533-1.04 1.67-1.76 2.99-1.76 1.333 0 2.478.733 3.006 1.788-.029-6.604-5.389-11.583-12.001-11.583-6.63 0-12.004 5.007-12.004 11.636h.026c.514-1.083 1.677-1.841 3.032-1.841\",\n className: \"flyer-cover_svg__st5\"\n}), /*#__PURE__*/React.createElement(\"g\", null, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M29.791 52.956c0-.723.59-1.315 1.315-1.315h23.827c.723 0 1.313.592 1.313 1.315v.839c0 .723-.59 1.315-1.313 1.315H31.106a1.318 1.318 0 01-1.315-1.315v-.839z\",\n className: \"flyer-cover_svg__st5\"\n})), /*#__PURE__*/React.createElement(\"g\", null, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M29.791 59.16c0-.723.59-1.315 1.315-1.315h18.505a1.32 1.32 0 011.315 1.315v.839a1.32 1.32 0 01-1.315 1.315H31.106a1.318 1.318 0 01-1.315-1.315v-.839z\",\n className: \"flyer-cover_svg__st5\"\n})))));\n\nvar SvgFlyerCover = function SvgFlyerCover(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n id: \"flyer-cover_svg__Layer_2\",\n x: 0,\n y: 0,\n viewBox: \"0 0 80 80\",\n xmlSpace: \"preserve\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgFlyerCover, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/flyer-cover.dff573f1.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n fillRule: \"evenodd\",\n d: \"M12.5 2H3.75A1.75 1.75 0 002 3.75v8.75c0 .966.784 1.75 1.75 1.75h8.75a1.75 1.75 0 001.75-1.75V3.75A1.75 1.75 0 0012.5 2zm-1.75 8.75H5.5V5.5h5.25v5.25zM28.25 17.75H19.5a1.75 1.75 0 00-1.75 1.75v8.75c0 .966.784 1.75 1.75 1.75h8.75A1.75 1.75 0 0030 28.25V19.5a1.75 1.75 0 00-1.75-1.75zM26.5 26.5h-5.25v-5.25h5.25v5.25zM12.5 17.75H3.75A1.75 1.75 0 002 19.5v8.75c0 .966.784 1.75 1.75 1.75h8.75a1.75 1.75 0 001.75-1.75V19.5a1.75 1.75 0 00-1.75-1.75zm-1.75 8.75H5.5v-5.25h5.25v5.25zM23.875 14.25a1.75 1.75 0 01-1.237-.513l-4.375-4.375a1.75 1.75 0 010-2.475l4.375-4.375a1.75 1.75 0 012.474 0l4.375 4.375a1.75 1.75 0 010 2.475l-4.375 4.375a1.75 1.75 0 01-1.237.513z\",\n clipRule: \"evenodd\"\n});\n\nvar SvgFourStacks = function SvgFourStacks(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n fill: \"none\",\n viewBox: \"0 0 32 32\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgFourStacks, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/four-stacks.f9a284e6.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"title\", null, \"Group 6\");\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"g\", {\n id: \"\\\\uD83D\\\\uDCF1\\\\u2705-Investments-(I)\",\n stroke: \"none\",\n strokeWidth: 1,\n fill: \"none\",\n fillRule: \"evenodd\"\n}, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Investment-switch---Accum---Current-investment-switch---D01\",\n transform: \"translate(-128.000000, -643.000000)\"\n}, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group\",\n transform: \"translate(104.000000, 463.000000)\"\n}, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group-6\",\n transform: \"translate(24.000000, 180.000000)\"\n}, /*#__PURE__*/React.createElement(\"circle\", {\n id: \"Oval\",\n fill: \"#FFF0E0\",\n cx: 20,\n cy: 20,\n r: 20\n}), /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group\",\n transform: \"translate(8.000000, 8.000000)\",\n fill: \"#FF8200\"\n}, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group-6\",\n transform: \"translate(3.000000, 2.000000)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M14,0 C14.55,0 15,0.45 15,1 L15,1 L15,2 L16,2 C17.1,2 18,2.9 18,4 L18,4 L18,9 L16,9 L16,7 L2,7 L2,17 C2,17.55 2.45,18 3,18 L3,18 L7,18 L7,20 L2,20 C0.89,20 0,19.1 0,18 L0,18 L0.01,4 C0.01,2.9 0.89,2 2,2 L2,2 L3,2 L3,1 C3,0.45 3.45,0 4,0 C4.55,0 5,0.45 5,1 L5,1 L5,2 L13,2 L13,1 C13,0.45 13.45,0 14,0 Z\",\n id: \"Combined-Shape\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M14,11 C15.3260824,11 16.597852,11.5267842 17.5355339,12.4644661 C18.4732158,13.402148 19,14.6739176 19,16 C19,18.7614237 16.7614237,21 14,21 C11.2385763,21 9,18.7614237 9,16 C9,13.2385763 11.2385763,11 14,11 Z M14,13 C13.4477153,13 13,13.4477153 13,14 L13,14 L13,15 L12,15 C11.4871642,15 11.0644928,15.3860402 11.0067277,15.8833789 L11,16 C11,16.5522847 11.4477153,17 12,17 L12,17 L13,17 L13,18 C13,18.5128358 13.3860402,18.9355072 13.8833789,18.9932723 L14,19 C14.5522847,19 15,18.5522847 15,18 L15,18 L15,17 L16,17 C16.5128358,17 16.9355072,16.6139598 16.9932723,16.1166211 L17,16 C17,15.4477153 16.5522847,15 16,15 L16,15 L15,15 L15,14 C15,13.4871642 14.6139598,13.0644928 14.1166211,13.0067277 Z\",\n id: \"Combined-Shape\"\n})))))));\n\nvar SvgFutureContributions = function SvgFutureContributions(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n width: \"40px\",\n height: \"40px\",\n viewBox: \"0 0 40 40\",\n ref: svgRef\n }, props), title === undefined ? _ref2 : title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgFutureContributions, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/future-contributions.781fb56f.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"get-app_svg__a\",\n d: \"M16.59 9.5H15v-5c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v5H7.41c-.89 0-1.34 1.08-.71 1.71l4.59 4.59c.39.39 1.02.39 1.41 0l4.59-4.59c.63-.63.19-1.71-.7-1.71zM5 19.5c0 .55.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1 .45-1 1z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#get-app_svg__a\"\n});\n\nvar SvgGetApp = function SvgGetApp(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgGetApp, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/get-app.30248bd9.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#clip0_1121_5270)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n d: \"M130.662 40H5.6659C2.90918 40 0.664062 37.7456 0.664062 35V5C0.664062 2.24439 2.90918 0 5.6659 0H130.662C133.416 0 135.664 2.24439 135.664 5V35C135.664 37.7456 133.416 40 130.662 40Z\",\n fill: \"black\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n d: \"M130.662 0.800499C132.974 0.800499 134.867 2.68828 134.867 5V35C134.867 37.3117 132.987 39.1995 130.662 39.1995H5.6659C3.35373 39.1995 1.46128 37.3117 1.46128 35V5C1.46128 2.68828 3.34131 0.800499 5.6659 0.800499C5.6659 0.800499 130.662 0.800499 130.662 0.800499ZM130.662 0H5.6659C2.90918 0 0.664062 2.25436 0.664062 5V35C0.664062 37.7556 2.90918 40 5.6659 40H130.662C133.416 40 135.664 37.7556 135.664 35V5C135.664 2.25436 133.416 0 130.662 0Z\",\n fill: \"#A6A6A6\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M71.7822 13.232C70.8807 13.232 70.1208 12.9153 69.5197 12.2918C68.9237 11.6858 68.5909 10.8504 68.6058 9.99755C68.6058 9.08732 68.9138 8.31675 69.5197 7.70577C70.1183 7.08233 70.8782 6.76562 71.7797 6.76562C72.6713 6.76562 73.4313 7.08233 74.0422 7.70577C74.6482 8.3367 74.9562 9.10727 74.9562 9.99755C74.9462 10.9103 74.6383 11.6808 74.0422 12.2893C73.4437 12.9177 72.6837 13.232 71.7822 13.232ZM44.9577 13.232C44.0761 13.232 43.3112 12.9202 42.6853 12.3043C42.0644 11.6908 41.749 10.9153 41.749 10C41.749 9.08483 42.0644 8.30927 42.6853 7.6958C43.2987 7.07984 44.0637 6.76812 44.9577 6.76812C45.3948 6.76812 45.8195 6.8554 46.2268 7.03246C46.6267 7.20453 46.952 7.43894 47.1929 7.72572L47.2525 7.79804L46.5795 8.46139L46.5099 8.37909C46.13 7.92523 45.6208 7.70328 44.9478 7.70328C44.3468 7.70328 43.8228 7.91775 43.3906 8.34169C42.956 8.76812 42.735 9.32672 42.735 10.0025C42.735 10.6783 42.956 11.2369 43.3906 11.6634C43.8228 12.0873 44.3468 12.3018 44.9478 12.3018C45.5885 12.3018 46.1275 12.0873 46.5472 11.6634C46.7955 11.414 46.9495 11.0649 47.0042 10.6235H44.846V9.69081H47.9305L47.9429 9.7756C47.9653 9.93271 47.9876 10.0948 47.9876 10.2444C47.9876 11.1048 47.7293 11.8005 47.2177 12.3143C46.6366 12.9227 45.8766 13.232 44.9577 13.232ZM80.6236 13.0998H79.6724L76.7592 8.41899L76.784 9.26188V13.0973H75.8328V6.90029H76.9181L76.948 6.94767L79.6873 11.3566L79.6624 10.5162V6.90029H80.6236V13.0998V13.0998ZM64.6347 13.0998H63.6711V7.83296H61.9996V6.90029H66.3036V7.83296H64.6322V13.0998H64.6347ZM61.2149 13.0998H60.2537V6.90029H61.2149V13.0998ZM55.8132 13.0998H54.8521V7.83296H53.1807V6.90029H57.4846V7.83296H55.8132V13.0998ZM52.5722 13.0898H48.8867V6.90029H52.5722V7.83296H49.8503V9.5337H52.3065V10.4564H49.8503V12.1571H52.5722V13.0898ZM70.2251 11.6509C70.6547 12.0823 71.1763 12.2993 71.7822 12.2993C72.4056 12.2993 72.9147 12.0873 73.3394 11.6509C73.7616 11.227 73.9752 10.6709 73.9752 10C73.9752 9.32922 73.7616 8.77061 73.3419 8.34917C72.9122 7.91774 72.3882 7.70079 71.7847 7.70079C71.1613 7.70079 70.6522 7.91276 70.23 8.34917C69.8078 8.77311 69.5942 9.32922 69.5942 10C69.5942 10.6709 69.8053 11.2295 70.2251 11.6509Z\",\n fill: \"white\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n d: \"M68.5169 21.7557C66.1699 21.7557 64.2675 23.5437 64.2675 26.01C64.2675 28.4539 66.1823 30.2644 68.5169 30.2644C70.8638 30.2644 72.7662 28.4639 72.7662 26.01C72.7662 23.5437 70.8638 21.7557 68.5169 21.7557ZM68.5169 28.5786C67.2329 28.5786 66.1277 27.5113 66.1277 26.0001C66.1277 24.4664 67.2354 23.4215 68.5169 23.4215C69.8009 23.4215 70.906 24.4664 70.906 26.0001C70.9085 27.5212 69.8009 28.5786 68.5169 28.5786ZM59.2458 21.7557C56.8989 21.7557 54.9965 23.5437 54.9965 26.01C54.9965 28.4539 56.9113 30.2644 59.2458 30.2644C61.5928 30.2644 63.4952 28.4639 63.4952 26.01C63.4952 23.5437 61.5903 21.7557 59.2458 21.7557ZM59.2458 28.5786C57.9618 28.5786 56.8567 27.5113 56.8567 26.0001C56.8567 24.4664 57.9643 23.4215 59.2458 23.4215C60.5298 23.4215 61.635 24.4664 61.635 26.0001C61.635 27.5212 60.5298 28.5786 59.2458 28.5786ZM48.2139 23.0549V24.8554H52.5179C52.3863 25.8654 52.0535 26.611 51.5444 27.1222C50.9136 27.7557 49.94 28.4439 48.2239 28.4439C45.5789 28.4439 43.5101 26.2993 43.5101 23.6434C43.5101 20.9876 45.5789 18.8429 48.2239 18.8429C49.6519 18.8429 50.6925 19.409 51.4649 20.1322L52.7365 18.8554C51.6636 17.823 50.2355 17.0325 48.2338 17.0325C44.6054 17.0325 41.5605 20.0001 41.5605 23.6335C41.5605 27.2769 44.6029 30.2345 48.2338 30.2345C50.1933 30.2345 51.6636 29.5911 52.8259 28.3791C54.0105 27.1896 54.3855 25.5113 54.3855 24.1572C54.3855 23.7357 54.3533 23.3567 54.2862 23.035H48.2115C48.2139 23.0325 48.2139 23.0549 48.2139 23.0549ZM93.3374 24.4564C92.9822 23.5013 91.9093 21.7457 89.7089 21.7457C87.5284 21.7457 85.7154 23.4689 85.7154 26.0001C85.7154 28.3891 87.5085 30.2544 89.92 30.2544C91.8572 30.2544 92.9847 29.0649 93.4491 28.3666L92.0111 27.3991C91.5343 28.1098 90.8712 28.5761 89.9299 28.5761C88.9787 28.5761 88.3132 28.1422 87.8711 27.2868L93.536 24.9302C93.536 24.9327 93.3374 24.4564 93.3374 24.4564ZM87.5606 25.8779C87.5159 24.2345 88.8322 23.3991 89.7735 23.3991C90.5161 23.3991 91.1345 23.7656 91.3456 24.2993L87.5606 25.8779ZM82.9587 30.0001H84.8188V17.5013H82.9587V30.0001ZM79.9039 22.7008H79.8368C79.4171 22.1996 78.6199 21.7457 77.6017 21.7457C75.4882 21.7457 73.5411 23.6135 73.5411 26.0125C73.5411 28.4015 75.4782 30.2469 77.6017 30.2469C78.6075 30.2469 79.4171 29.7906 79.8368 29.2794H79.9039V29.8903C79.9039 31.5138 79.0396 32.3891 77.6464 32.3891C76.5064 32.3891 75.7986 31.5661 75.5105 30.8779L73.8937 31.5562C74.3582 32.6784 75.5974 34.0674 77.6439 34.0674C79.8244 34.0674 81.6722 32.7781 81.6722 29.6335V22.0001H79.9138V22.7008C79.9163 22.7008 79.9039 22.7008 79.9039 22.7008ZM77.7681 28.5786C76.4841 28.5786 75.4112 27.5013 75.4112 26.0125C75.4112 24.5113 76.4841 23.424 77.7681 23.424C79.0396 23.424 80.0256 24.5237 80.0256 26.0125C80.038 27.5013 79.0421 28.5786 77.7681 28.5786ZM102.047 17.5013H97.5991V30.0001H99.4593V25.2669H102.05C104.108 25.2669 106.133 23.7681 106.133 21.3891C106.133 19.01 104.116 17.5013 102.047 17.5013ZM102.102 23.5212H99.4568V19.232H102.102C103.495 19.232 104.282 20.3866 104.282 21.3766C104.282 22.3567 103.485 23.5212 102.102 23.5212ZM113.588 21.7332C112.237 21.7332 110.844 22.3342 110.268 23.6434L111.917 24.3317C112.272 23.6434 112.923 23.409 113.61 23.409C114.574 23.409 115.548 23.9876 115.57 25.02V25.1522C115.237 24.9626 114.507 24.6734 113.633 24.6734C111.852 24.6734 110.047 25.6509 110.047 27.4838C110.047 29.1621 111.507 30.2395 113.134 30.2395C114.383 30.2395 115.071 29.6734 115.5 29.0175H115.568V29.9851H117.361V25.1971C117.361 22.9676 115.712 21.7332 113.588 21.7332ZM113.355 28.5786C112.746 28.5786 111.894 28.2794 111.894 27.5113C111.894 26.5437 112.957 26.1771 113.864 26.1771C114.683 26.1771 115.071 26.3542 115.558 26.5986C115.423 27.7207 114.48 28.5686 113.355 28.5786ZM123.902 22.0001L121.766 27.4215H121.699L119.487 22.0001H117.485L120.805 29.5786L118.913 33.7906H120.85L125.959 22.0001H123.902ZM107.158 30.0001H109.018V17.5013H107.158V30.0001Z\",\n fill: \"white\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n d: \"M11.0551 7.53364C10.767 7.84536 10.6006 8.32167 10.6006 8.94511V31.0573C10.6006 31.6808 10.767 32.1571 11.065 32.4563L11.142 32.5237L23.4802 20.1346V19.8578L11.1321 7.46631L11.0551 7.53364Z\",\n fill: \"url(#paint0_linear_1121_5270)\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n d: \"M27.5859 24.2768L23.4707 20.1446V19.8553L27.5859 15.7231L27.6754 15.778L32.5431 18.5561C33.9364 19.3441 33.9364 20.6458 32.5431 21.4438L27.6754 24.2219L27.5859 24.2768Z\",\n fill: \"url(#paint1_linear_1121_5270)\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n d: \"M27.6745 24.2219L23.4699 20L11.0547 32.4663C11.5092 32.9551 12.2716 33.01 13.1235 32.5337L27.6745 24.2219Z\",\n fill: \"url(#paint2_linear_1121_5270)\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n d: \"M27.6745 15.7779L13.1235 7.47869C12.2716 6.98992 11.5067 7.05725 11.0547 7.54603L23.4699 19.9999L27.6745 15.7779Z\",\n fill: \"url(#paint3_linear_1121_5270)\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n opacity: 0.2,\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n d: \"M27.586 24.1323L13.1342 32.3767C12.3271 32.843 11.6068 32.8106 11.1424 32.3867L11.0654 32.464L11.1424 32.5313C11.6068 32.9527 12.3271 32.9877 13.1342 32.5213L27.6853 24.2221L27.586 24.1323Z\",\n fill: \"black\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n opacity: 0.12,\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n d: \"M32.5428 21.2993L27.5732 24.1322L27.6626 24.2219L32.5304 21.4439C33.2282 21.0449 33.571 20.5212 33.571 20C33.5288 20.4788 33.1736 20.9327 32.5428 21.2993Z\",\n fill: \"black\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n opacity: 0.25,\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n d: \"M13.1239 7.62354L32.5426 18.7008C33.1734 19.0575 33.5286 19.5238 33.5832 20.0001C33.5832 19.4789 33.2405 18.9552 32.5426 18.5562L13.1239 7.4789C11.7306 6.6784 10.6006 7.34673 10.6006 8.94523V9.08987C10.6006 7.48887 11.7306 6.83301 13.1239 7.62354Z\",\n fill: \"white\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"linearGradient\", {\n id: \"paint0_linear_1121_5270\",\n x1: 22.3735,\n y1: 8.70654,\n x2: 2.59908,\n y2: 13.9538,\n gradientUnits: \"userSpaceOnUse\"\n}, /*#__PURE__*/React.createElement(\"stop\", {\n stopColor: \"#00A0FF\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.00657,\n stopColor: \"#00A1FF\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.2601,\n stopColor: \"#00BEFF\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.5122,\n stopColor: \"#00D2FF\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.7604,\n stopColor: \"#00DFFF\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n stopColor: \"#00E3FF\"\n})), /*#__PURE__*/React.createElement(\"linearGradient\", {\n id: \"paint1_linear_1121_5270\",\n x1: 34.3601,\n y1: 20,\n x2: 10.2623,\n y2: 20,\n gradientUnits: \"userSpaceOnUse\"\n}, /*#__PURE__*/React.createElement(\"stop\", {\n stopColor: \"#FFE000\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.4087,\n stopColor: \"#FFBD00\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.7754,\n stopColor: \"#FFA500\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n stopColor: \"#FF9C00\"\n})), /*#__PURE__*/React.createElement(\"linearGradient\", {\n id: \"paint2_linear_1121_5270\",\n x1: 25.3882,\n y1: 22.2973,\n x2: 9.42542,\n y2: 49.0538,\n gradientUnits: \"userSpaceOnUse\"\n}, /*#__PURE__*/React.createElement(\"stop\", {\n stopColor: \"#FF3A44\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n stopColor: \"#C31162\"\n})), /*#__PURE__*/React.createElement(\"linearGradient\", {\n id: \"paint3_linear_1121_5270\",\n x1: 7.92841,\n y1: 0.178683,\n x2: 15.0501,\n y2: 12.1286,\n gradientUnits: \"userSpaceOnUse\"\n}, /*#__PURE__*/React.createElement(\"stop\", {\n stopColor: \"#32A071\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.0685,\n stopColor: \"#2DA771\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.4762,\n stopColor: \"#15CF74\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.8009,\n stopColor: \"#06E775\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n stopColor: \"#00F076\"\n})), /*#__PURE__*/React.createElement(\"clipPath\", {\n id: \"clip0_1121_5270\"\n}, /*#__PURE__*/React.createElement(\"rect\", {\n width: 135,\n height: 40,\n fill: \"white\",\n transform: \"translate(0.664062)\"\n})));\n\nvar SvgGoogleplay = function SvgGoogleplay(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n width: 136,\n height: 40,\n viewBox: \"0 0 136 40\",\n fill: \"none\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgGoogleplay, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/googleplay.d75239e4.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"help_svg__a\",\n d: \"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 17h-2v-2h2v2zm2.07-7.75l-.9.92c-.5.51-.86.97-1.04 1.69-.08.32-.13.68-.13 1.14h-2v-.5a3.997 3.997 0 011.17-2.83l1.24-1.26c.46-.44.68-1.1.55-1.8a1.99 1.99 0 00-1.39-1.53c-1.11-.31-2.14.32-2.47 1.27-.12.37-.43.65-.82.65h-.3C8.4 9 8 8.44 8.16 7.88a4.008 4.008 0 013.23-2.83c1.52-.24 2.97.55 3.87 1.8 1.18 1.63.83 3.38-.19 4.4z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#help_svg__a\"\n});\n\nvar SvgHelp = function SvgHelp(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgHelp, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/help.c3f3aee9.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"help-outline_svg__a\",\n d: \"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-1-4h2v2h-2v-2zm1.61-9.96c-2.06-.3-3.88.97-4.43 2.79-.18.58.26 1.17.87 1.17h.2c.41 0 .74-.29.88-.67.32-.89 1.27-1.5 2.3-1.28.95.2 1.65 1.13 1.57 2.1-.1 1.34-1.62 1.63-2.45 2.88 0 .01-.01.01-.01.02-.01.02-.02.03-.03.05-.09.15-.18.32-.25.5-.01.03-.03.05-.04.08-.01.02-.01.04-.02.07-.12.34-.2.75-.2 1.25h2c0-.42.11-.77.28-1.07.02-.03.03-.06.05-.09.08-.14.18-.27.28-.39.01-.01.02-.03.03-.04.1-.12.21-.23.33-.34.96-.91 2.26-1.65 1.99-3.56-.24-1.74-1.61-3.21-3.35-3.47z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#help-outline_svg__a\"\n});\n\nvar SvgHelpOutline = function SvgHelpOutline(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgHelpOutline, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/help-outline.049dc78f.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"home_svg__a\",\n d: \"M9.998 19.328v-5h4v5c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-7h1.7c.46 0 .68-.57.33-.87l-8.36-7.53c-.38-.34-.96-.34-1.34 0l-8.36 7.53c-.34.3-.13.87.33.87h1.7v7c0 .55.45 1 1 1h3c.55 0 1-.45 1-1z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#home_svg__a\"\n});\n\nvar SvgHome = function SvgHome(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgHome, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/home.c7faa96b.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"g\", {\n fill: \"currentColor\",\n fillRule: \"evenodd\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M15 14V8h-2v6h-2V8H9v6H7V8H5v6H3V8H1v6H0v2h16v-2zM15.4 3.1l-7-3c-.3-.1-.5-.1-.8 0l-7 3c-.4.1-.6.5-.6.9v2c0 .6.4 1 1 1h14c.6 0 1-.4 1-1V4c0-.4-.2-.8-.6-.9zM8 5c-.6 0-1-.4-1-1s.4-1 1-1 1 .4 1 1-.4 1-1 1z\"\n}));\n\nvar SvgHomeMunicipal = function SvgHomeMunicipal(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 16 16\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgHomeMunicipal, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/home-municipal.1e06da33.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#clip0_411_2)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M80 160C124.183 160 160 124.183 160 80C160 35.8172 124.183 0 80 0C35.8172 0 0 35.8172 0 80C0 124.183 35.8172 160 80 160Z\",\n fill: \"#F6F0DA\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M111.4 88.5007C117.3 86.5007 123 81.2007 123.2 78.9007C123.5 75.0007 118.9 73.5007 110.2 76.1007C109.346 76.3527 108.543 76.6667 107.786 77.0217V89.4497C108.834 89.2787 110.027 88.9657 111.4 88.5007Z\",\n fill: \"#F9BC84\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M115.4 74.1003C121.3 72.1003 125 68.8003 125.2 66.5003C125.5 62.6003 120.9 61.1003 112.2 63.7003C110.536 64.1913 109.051 64.9033 107.786 65.7443V76.0453C109.842 75.9113 112.473 75.0923 115.4 74.1003Z\",\n fill: \"#F9BC84\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M115.4 97.9007C118 95.8007 120.9 93.7007 118.7 90.4007C116.7 87.3007 112.9 88.0006 110.4 89.2006L107.786 90.8137V104.472L115.4 97.9007Z\",\n fill: \"#F9BC84\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M114.9 60.3C118.5 59.4 126 55.3 126 52C126 48.8 117.9 47.7 113.9 49.1L107.786 50.711V62.158L114.9 60.3Z\",\n fill: \"#F9BC84\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M107.786 50.7112V32.2812C107.786 31.0682 106.794 30.0752 105.58 30.0752H61.668C60.455 30.0752 59.462 31.0672 59.462 32.2812V127.522C59.462 128.735 60.455 129.728 61.668 129.728H105.581C106.794 129.728 107.787 128.735 107.787 127.522V104.47V90.8132V89.4482V77.0212V76.0462V65.7442V62.1572V50.7112H107.786Z\",\n fill: \"white\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M104.7 26.5996H62.6C58.9 26.5996 55.8 29.5996 55.8 33.3996V65.9996V126C55.8 127.5 56.3 128.9 57.1 130C58.3 131.7 60.3 132.8 62.5 132.8H104.6C108.3 132.8 111.4 129.8 111.4 126L111.5 77.4996V73.4996V67.2996V60.2996V33.3996C111.5 29.6996 108.5 26.5996 104.7 26.5996ZM107.4 125.9C107.3 127.3 106.1 128.5 104.8 128.5H62.6C61.2 128.5 60 127.4 60 125.9V33.2996C60 31.8996 61.1 30.6996 62.6 30.6996H70.4V30.7996V32.3996C70.4 33.7996 71.5 34.8996 72.9 34.8996H92.9C94.3 34.8996 95.4 33.7996 95.4 32.3996V30.7996V30.6996H104.8C106.2 30.6996 107.4 31.7996 107.4 33.2996V125.9Z\",\n fill: \"#260046\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M91.1 117.7H76.2C75.2 117.7 74.5 118.5 74.5 119.4C74.5 120.3 75.3 121.1 76.2 121.1H91.1C92.1 121.1 92.8 120.3 92.8 119.4C92.9 118.5 92.1 117.7 91.1 117.7Z\",\n fill: \"#EA4403\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M51.7 134.9C51.1 135.3 50.5 135.7 49.9 136C50.5 135.7 51.1 135.3 51.7 134.9Z\",\n fill: \"#F9BC84\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M51 135.3C50.6 135.5 50.3 135.7 49.9 136C50.5 135.7 51.1 135.3 51.7 134.9C51.5 135 51.3 135.2 51 135.3Z\",\n fill: \"#F9BC84\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n opacity: 0.5,\n d: \"M51 135.3C50.6 135.5 50.3 135.7 49.9 136C50.5 135.7 51.1 135.3 51.7 134.9C51.5 135 51.3 135.2 51 135.3Z\",\n fill: \"#F9BC84\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M65.9 91.7002C64.9 91.7002 64.2 92.5002 64.2 93.4002C64.2 94.4002 65 95.1002 65.9 95.1002H101.9C102.9 95.1002 103.6 94.3002 103.6 93.4002C103.6 92.4002 102.8 91.7002 101.9 91.7002H65.9Z\",\n fill: \"#EAEAEA\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M79.9 72.3702L79.1 71.8702L64.898 62.9202V78.2002C64.898 79.0982 65.733 79.8022 66.8 79.8022H93C94.066 79.8022 94.902 79.0982 94.902 78.2002V62.8232L80.7 71.8702L79.9 72.3702Z\",\n fill: \"#260046\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M94.859 61.85C94.673 61.088 93.898 60.498 93 60.498H66.8C65.802 60.498 65.016 61.117 64.918 61.933L79.9 71.37L94.859 61.85Z\",\n fill: \"#260046\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M93 59.7021H66.8C65.287 59.7021 64.102 60.7551 64.102 62.1001V78.2001C64.102 79.5451 65.287 80.5981 66.8 80.5981H93C94.513 80.5981 95.697 79.5451 95.697 78.2001V62.2001C95.697 60.8231 94.487 59.7021 93 59.7021ZM95.3 62.2001V62.5701L94.902 62.8232V78.2001C94.902 79.0981 94.066 79.8022 93 79.8022H66.8C65.734 79.8022 64.898 79.0981 64.898 78.2001V62.9201L64.5 62.6701V62.1001V61.6701L64.917 61.9331C65.015 61.1171 65.801 60.4981 66.799 60.4981H93C93.898 60.4981 94.673 61.0891 94.859 61.8501L95.3 61.5701V62.2001Z\",\n fill: \"white\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M79.9 71.3703L64.917 61.9333L64.5 61.6703V62.1003V62.6703L64.898 62.9203L79.1 71.8703L79.9 72.3703L80.7 71.8703L94.902 62.8233L95.3 62.5703V62.2003V61.5703L94.859 61.8503L79.9 71.3703Z\",\n fill: \"white\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M65.9 99C64.9 99 64.2 99.8 64.2 100.7C64.2 101.7 65 102.4 65.9 102.4H101.9C102.9 102.4 103.6 101.6 103.6 100.7C103.6 99.7 102.8 99 101.9 99H65.9Z\",\n fill: \"#EAEAEA\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M65.6 106.4C64.6 106.4 63.9 107.2 63.9 108.1C63.9 109.1 64.7 109.8 65.6 109.8H101.6C102.6 109.8 103.3 109 103.3 108.1C103.3 107.1 102.5 106.4 101.6 106.4H65.6Z\",\n fill: \"#EAEAEA\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M100.1 71.0002H88.4C86.7 71.0002 85.2 69.6002 85.2 67.8002V57.4002C85.2 55.7002 86.6 54.2002 88.4 54.2002H100.1C101.8 54.2002 103.3 55.6002 103.3 57.4002V67.8002C103.3 69.6002 101.9 71.0002 100.1 71.0002Z\",\n fill: \"#EA4403\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M89.575 62.6921V62.6621C89.575 59.6001 91.442 57.1221 94.259 57.1221C97.06 57.1221 98.911 59.5701 98.911 62.6321V62.6621C98.911 65.7231 97.044 68.2021 94.227 68.2021C91.412 68.2021 89.575 65.7531 89.575 62.6921ZM96.968 62.6921V62.6621C96.968 60.5501 95.881 58.8201 94.228 58.8201C92.576 58.8201 91.519 60.5041 91.519 62.6321V62.6621C91.519 64.7741 92.59 66.5031 94.259 66.5031C95.927 66.5021 96.968 64.7891 96.968 62.6921Z\",\n fill: \"white\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M66.751 42.3958L67.333 43.7388H66.17L66.751 42.3958ZM66.496 41.5938L64.913 45.2178H65.531L65.94 44.2688H67.563L67.977 45.2178H68.6L67.018 41.5938H66.496Z\",\n fill: \"#260046\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M70.97 45.218H70.408V44.953C70.24 45.167 69.959 45.269 69.703 45.269C69.101 45.269 68.713 44.85 68.713 44.192V42.666H69.275V44.1C69.275 44.503 69.474 44.758 69.826 44.758C70.087 44.758 70.301 44.595 70.408 44.355V42.665H70.97V45.218Z\",\n fill: \"#260046\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M75.684 42.6656H76.246V43.0076C76.343 42.8136 76.603 42.6396 76.889 42.6396C76.996 42.6396 77.088 42.6546 77.149 42.6706L77.067 43.2166C77.016 43.1966 76.934 43.1856 76.847 43.1856C76.623 43.1856 76.357 43.3136 76.245 43.5786V45.2176H75.683V42.6656H75.684Z\",\n fill: \"#260046\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M78.444 45.2692C77.688 45.2692 77.173 44.6622 77.173 43.9422C77.173 43.2222 77.688 42.6152 78.444 42.6152C78.745 42.6152 79.011 42.7172 79.189 42.9012V42.6662H79.75V45.2182H79.189V44.9782C79.011 45.1672 78.745 45.2692 78.444 45.2692ZM78.51 44.7582C78.837 44.7582 79.056 44.6052 79.189 44.4012V43.4772C79.056 43.2782 78.837 43.1252 78.51 43.1252C78.061 43.1252 77.749 43.4932 77.749 43.9422C77.75 44.3912 78.061 44.7582 78.51 44.7582Z\",\n fill: \"#260046\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M80.259 41.6994L80.82 41.1514V45.2184H80.259V41.6994Z\",\n fill: \"#260046\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M81.609 42.2832C81.405 42.2832 81.236 42.1152 81.236 41.9052C81.236 41.7012 81.404 41.5322 81.609 41.5322C81.818 41.5322 81.987 41.7002 81.987 41.9052C81.986 42.1142 81.818 42.2832 81.609 42.2832ZM81.328 42.6652H81.89V45.2172H81.328V42.6652Z\",\n fill: \"#260046\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M83.573 45.2692C82.817 45.2692 82.302 44.6622 82.302 43.9422C82.302 43.2222 82.818 42.6152 83.573 42.6152C83.874 42.6152 84.14 42.7172 84.318 42.9012V42.6662H84.88V45.2182H84.318V44.9782C84.14 45.1672 83.874 45.2692 83.573 45.2692ZM83.639 44.7582C83.966 44.7582 84.185 44.6052 84.318 44.4012V43.4772C84.185 43.2782 83.966 43.1252 83.639 43.1252C83.19 43.1252 82.878 43.4932 82.878 43.9422C82.879 44.3912 83.19 44.7582 83.639 44.7582Z\",\n fill: \"#260046\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M85.388 42.6653H85.95V42.9363C86.123 42.7223 86.399 42.6143 86.7 42.6143C87.313 42.6143 87.701 43.0333 87.701 43.6913V45.2173H87.14V43.7823C87.14 43.3793 86.936 43.1243 86.578 43.1243C86.277 43.1243 86.057 43.2923 85.95 43.5273V45.2173H85.388V42.6653Z\",\n fill: \"#260046\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M88.7 44.2532C88.889 44.5442 89.19 44.7182 89.542 44.7182C89.884 44.7182 90.129 44.5392 90.129 44.2692C90.129 44.0142 89.961 43.8452 89.613 43.7182L89.215 43.5752C88.643 43.3662 88.362 43.0492 88.362 42.5542C88.362 41.9212 88.862 41.5332 89.536 41.5332C89.985 41.5332 90.368 41.7122 90.633 42.0282L90.219 42.4312C90.04 42.2172 89.816 42.0942 89.535 42.0942C89.229 42.0942 88.963 42.2522 88.963 42.5132C88.963 42.7782 89.136 42.8962 89.514 43.0342L89.882 43.1722C90.413 43.3712 90.735 43.6932 90.735 44.2342C90.73 44.8672 90.235 45.2812 89.525 45.2812C88.938 45.2812 88.448 45.0162 88.228 44.6272L88.7 44.2532Z\",\n fill: \"#260046\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M93.346 45.218H92.784V44.953C92.616 45.167 92.335 45.269 92.08 45.269C91.478 45.269 91.09 44.85 91.09 44.192V42.666H91.651V44.1C91.651 44.503 91.85 44.758 92.202 44.758C92.462 44.758 92.677 44.595 92.784 44.355V42.665H93.346V45.218V45.218Z\",\n fill: \"#260046\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M93.819 42.6653H94.381V42.9003C94.56 42.7163 94.825 42.6143 95.126 42.6143C95.887 42.6143 96.402 43.2213 96.402 43.9413C96.402 44.6613 95.886 45.2683 95.126 45.2683C94.825 45.2683 94.559 45.1663 94.381 44.9773V46.3403H93.819V42.6653ZM95.065 44.7583C95.516 44.7583 95.829 44.3873 95.826 43.9353C95.823 43.4233 95.346 43.0303 94.848 43.1493C94.634 43.2003 94.483 43.3253 94.382 43.4773V44.4013C94.513 44.6053 94.733 44.7583 95.065 44.7583Z\",\n fill: \"#260046\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M99.602 42.6656H100.164V43.0076C100.261 42.8136 100.521 42.6396 100.807 42.6396C100.914 42.6396 101.006 42.6546 101.068 42.6706L100.986 43.2166C100.935 43.1966 100.853 43.1856 100.767 43.1856C100.543 43.1856 100.277 43.3136 100.165 43.5786V45.2176H99.603V42.6656H99.602Z\",\n fill: \"#260046\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M72.512 43.7023L72.252 43.6253C72.002 43.5543 71.946 43.4463 71.946 43.3243C71.946 43.1713 72.119 43.0843 72.288 43.0843C72.497 43.0843 72.661 43.1863 72.773 43.3443L73.127 42.9983C72.945 42.7493 72.658 42.6143 72.298 42.6143C71.788 42.6143 71.389 42.8903 71.384 43.3443C71.379 43.7223 71.609 44.0033 72.053 44.1253L72.278 44.1863C72.584 44.2783 72.671 44.3653 72.671 44.5133C72.671 44.6923 72.503 44.7843 72.303 44.7843C72.043 44.7843 71.793 44.6563 71.691 44.4323L71.317 44.7973C71.513 45.1133 71.88 45.2693 72.304 45.2693C72.83 45.2693 73.228 44.9683 73.228 44.4783C73.227 44.0593 72.962 43.8353 72.512 43.7023Z\",\n fill: \"#260046\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M75.216 44.7002C75.106 44.7462 75.012 44.7642 74.853 44.7642C74.613 44.7642 74.455 44.6462 74.455 44.3302V43.1662H75.216V42.6662H74.455V41.6992H73.894V42.6662H73.394V43.1662H73.894V44.4222C73.894 44.9992 74.287 45.2692 74.782 45.2692C74.947 45.2692 75.098 45.2402 75.216 45.2052V44.7002Z\",\n fill: \"#260046\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M98.659 44.4543C98.519 44.6343 98.297 44.7583 97.986 44.7583C97.562 44.7583 97.225 44.4823 97.2 44.0643H99.206C99.211 43.9823 99.211 43.9363 99.211 43.8803C99.211 43.0583 98.649 42.6143 97.981 42.6143C97.196 42.6143 96.636 43.2043 96.649 43.9673C96.662 44.7443 97.338 45.3223 98.114 45.2643C98.543 45.2323 98.873 45.0453 99.088 44.7593L98.659 44.4543ZM97.96 43.0893C98.287 43.0893 98.583 43.2883 98.644 43.6563H97.225C97.302 43.2783 97.634 43.0893 97.96 43.0893Z\",\n fill: \"#260046\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M85.482 39.7491C85.365 39.7591 85.354 39.9261 85.468 39.9521L88.022 40.5411C88.222 40.0631 88.227 39.6411 87.885 39.5381L85.482 39.7491Z\",\n fill: \"url(#paint0_linear_411_2)\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M90.133 39.3423C90.229 39.3333 90.283 39.4513 90.214 39.5193L87.469 42.1973C87.387 42.2773 87.255 42.1843 87.304 42.0803L88.021 40.5423C88.221 40.0643 88.226 39.6433 87.884 39.5393L90.133 39.3423Z\",\n fill: \"url(#paint1_linear_411_2)\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M50 135.9C50.4 135.7 50.7 135.5 51.1 135.2C51.3 135 51.6 134.9 51.8 134.7C66.3 125 66.3 109.8 59.2 95.0996C57.8 92.3996 56.7 89.7996 55.9 87.4996V67.2996C56.7 65.9996 57.6 64.8996 58.4 63.6996C60.3 61.1996 62.4 58.7996 63.3 55.7996C64.3 52.7996 63.9 49.1996 61.5 47.0996C60.9 46.5996 60.2 46.1996 59.5 46.2996C58.7 46.3996 58.1 47.0996 57.5 47.6996C53.8 52.3996 50 56.9996 46.2 61.4996C45 62.8996 43.8 64.3996 42.9 66.0996C42.1 67.5996 41.7 69.1996 41.2 70.8996C39.5 77.6996 38.6 84.5996 36.9 91.3996C35.5 97.0996 34.2 103.5 29.5 107.3C24.5 111.3 18.7 114.5 12.9 117.3C11.922 117.76 10.926 118.184 9.936 118.621C15.617 128.905 23.497 137.797 32.94 144.68C33.909 144.124 34.893 143.592 35.899 143.1C40.6 140.8 45.5 138.7 50 135.9Z\",\n fill: \"#F9BC84\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n opacity: 0.5,\n d: \"M54.7 69.8998C54.7 69.8998 51.3 74.0998 55.9 87.4998V67.2998C55.9 67.3998 55.8 67.3998 55.8 67.4998C55.4 68.0998 54.6 69.1998 54.7 69.8998Z\",\n fill: \"#B18B66\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"linearGradient\", {\n id: \"paint0_linear_411_2\",\n x1: 86.2965,\n y1: 40.6632,\n x2: 87.5274,\n y2: 39.1962,\n gradientUnits: \"userSpaceOnUse\"\n}, /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.1155,\n stopColor: \"#EA4403\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.2632,\n stopColor: \"#EA4A03\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.4566,\n stopColor: \"#EC5A03\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.65,\n stopColor: \"#EE7203\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.7747,\n stopColor: \"#F18402\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n stopColor: \"#F8AE00\"\n})), /*#__PURE__*/React.createElement(\"linearGradient\", {\n id: \"paint1_linear_411_2\",\n x1: 87.4209,\n y1: 40.666,\n x2: 90.1186,\n y2: 40.902,\n gradientUnits: \"userSpaceOnUse\"\n}, /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.1155,\n stopColor: \"#EA4403\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.2356,\n stopColor: \"#EA4A03\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.3928,\n stopColor: \"#EC5A03\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.55,\n stopColor: \"#EE7203\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.6535,\n stopColor: \"#F18402\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.8604,\n stopColor: \"#F9B301\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.9959,\n stopColor: \"#FFD500\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n stopColor: \"#FFD500\"\n})), /*#__PURE__*/React.createElement(\"clipPath\", {\n id: \"clip0_411_2\"\n}, /*#__PURE__*/React.createElement(\"rect\", {\n width: 160,\n height: 160,\n fill: \"white\"\n})));\n\nvar SvgIllustrationNoNotifications = function SvgIllustrationNoNotifications(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n width: 160,\n height: 160,\n viewBox: \"0 0 160 160\",\n fill: \"none\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgIllustrationNoNotifications, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/illustration-no-notifications.42265b10.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"info_svg__a\",\n d: \"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 15c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1s1 .45 1 1v4c0 .55-.45 1-1 1zm1-8h-2V7h2v2z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#info_svg__a\"\n});\n\nvar SvgInfo = function SvgInfo(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgInfo, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/info.dd3171e3.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"title\", null, \"Icon-lady-desk_160x160\");\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"polygon\", {\n id: \"path-1\",\n points: \"0.096 0.064 160 0.064 160 160 0.096 160\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M160,80 C160,124.1824 124.1824,160 80,160 C37.1522654,160 2.17159485,126.313677 0.0972969322,83.9803401 L0.0972969322,76.0196599 C2.12039142,34.7313086 35.4453415,1.66834259 76.841707,0.061202094 L83.158293,0.061202094\",\n id: \"path-3\"\n}));\n\nvar _ref4 = /*#__PURE__*/React.createElement(\"g\", {\n id: \"Illustration-Audit-Overall\",\n stroke: \"none\",\n strokeWidth: 1,\n fill: \"none\",\n fillRule: \"evenodd\"\n}, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Illustration-Audit-5\",\n transform: \"translate(-180.000000, -451.000000)\"\n}, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group-3-Copy-37\",\n transform: \"translate(167.000000, 451.000000)\"\n}, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group\",\n transform: \"translate(13.000000, 0.000000)\"\n}, /*#__PURE__*/React.createElement(\"g\", {\n id: \"100x100_Learn-new-info_scaled-illustration_grey-RGB\"\n}, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group-4\"\n}, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask-2\",\n fill: \"white\"\n}, /*#__PURE__*/React.createElement(\"use\", {\n xlinkHref: \"#path-1\"\n})), /*#__PURE__*/React.createElement(\"g\", {\n id: \"Clip-2\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M160,80 C160,124.1824 124.1824,160 80,160 C35.8176,160 0,124.1824 0,80 C0,35.8176 35.8176,0 80,0 C124.1824,0 160,35.8176 160,80\",\n id: \"Fill-1\",\n fill: \"#D6D5CD\",\n mask: \"url(#mask-2)\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M160,80 C160,124.1824 124.1824,160 80,160 C35.8176,160 0,124.1824 0,80 C0,35.8176 35.8176,0 80,0 C124.1824,0 160,35.8176 160,80\",\n id: \"Fill-3\",\n fill: \"#EEF2F6\",\n mask: \"url(#mask-2)\"\n})), /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group-54\"\n}, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask-4\",\n fill: \"white\"\n}, /*#__PURE__*/React.createElement(\"use\", {\n xlinkHref: \"#path-3\"\n})), /*#__PURE__*/React.createElement(\"g\", {\n id: \"Clip-6\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M95.3264,34.72 C96.0528,40.112 92.1264,45.0912 86.56,45.84 C80.992,46.5888 75.8896,42.8256 75.1648,37.4336 C74.4384,32.04 78.3648,27.0624 83.9312,26.312 C89.4992,25.5632 94.6016,29.328 95.3264,34.72\",\n id: \"Fill-5\",\n fill: \"#AE502D\",\n mask: \"url(#mask-4)\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M97.9136,40.4784 C98.6256,45.7584 93.9088,50.752 87.384,51.6304 C80.8576,52.5088 74.992,48.9392 74.28,43.6576 C73.5696,38.376 78.2848,33.384 84.8112,32.5056 C91.336,31.6272 97.2032,35.1968 97.9136,40.4784\",\n id: \"Fill-7\",\n fill: \"#FFFFFE\",\n mask: \"url(#mask-4)\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M106.8368,51.1984 C108.2992,62.072 100.7936,72.0576 90.072,73.5008 C79.3488,74.944 69.4688,67.2976 68.0064,56.4224 C66.5424,45.5472 74.0496,35.5616 84.7712,34.1184 C95.496,32.6768 105.3728,40.3232 106.8368,51.1984\",\n id: \"Fill-8\",\n fill: \"#AE502D\",\n mask: \"url(#mask-4)\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M89.6704,78.2592 C72.5264,78.2592 66.072,84.2608 66.072,84.2608 L75.2144,134.6592 L104.128,134.6592 L113.2704,84.2608 C113.2704,84.2608 106.816,78.2592 89.6704,78.2592\",\n id: \"Fill-9\",\n fill: \"#D14F2B\",\n mask: \"url(#mask-4)\"\n}), /*#__PURE__*/React.createElement(\"polyline\", {\n id: \"Fill-10\",\n fill: \"#CFA486\",\n mask: \"url(#mask-4)\",\n points: \"82.8752 78 82.4944 61.496 96.3392 61.1744 96.7216 77.656 82.8752 78\"\n}), /*#__PURE__*/React.createElement(\"polyline\", {\n id: \"Fill-11\",\n fill: \"#924429\",\n mask: \"url(#mask-4)\",\n points: \"96.5648 70.8608 96.3392 61.1744 82.592 61.4928 82.4944 55.0112 96.5648 53.2752 96.5648 70.8608\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M88.0528,74.128 C86.2288,74.128 84.4544,73.8656 82.7696,73.3792 L82.592,61.4928 L96.3392,61.1744 L96.5648,70.8608 L96.5648,72.1312 C94.496,73.1584 92.2064,73.8336 89.7648,74.0512 C89.1904,74.1024 88.6192,74.128 88.0528,74.128\",\n id: \"Fill-12\",\n fill: \"#AE8A70\",\n mask: \"url(#mask-4)\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M68.6272,56.3088 C67.2336,45.9536 74.5456,36.424 84.9568,35.024 C95.368,33.6224 104.9376,40.88 106.3312,51.2352 C107.7248,61.5888 100.4144,71.12 90.0016,72.52 C79.592,73.9216 70.0208,66.664 68.6272,56.3088\",\n id: \"Fill-13\",\n fill: \"#CFA486\",\n mask: \"url(#mask-4)\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M94.6416,56.7856 C94.7168,57.3408 94.3232,57.8544 93.7632,57.9296 C93.2016,58.0048 92.6896,57.6144 92.6144,57.0576 C92.5392,56.5024 92.9312,55.9888 93.4912,55.9136 C94.0512,55.8384 94.5664,56.2288 94.6416,56.7856\",\n id: \"Fill-14\",\n fill: \"#3B3C3A\",\n mask: \"url(#mask-4)\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M80.7936,58.7856 C80.8688,59.3424 81.384,59.7328 81.944,59.6576 C82.5024,59.5824 82.896,59.0688 82.8208,58.5136 C82.7456,57.9584 82.232,57.5664 81.672,57.6416 C81.112,57.7168 80.72,58.2304 80.7936,58.7856\",\n id: \"Fill-15\",\n fill: \"#3B3C3A\",\n mask: \"url(#mask-4)\"\n}), /*#__PURE__*/React.createElement(\"polyline\", {\n id: \"Fill-16\",\n fill: \"#CFA486\",\n mask: \"url(#mask-4)\",\n points: \"106.7904 102.3056 117.6944 120.0288 127.1024 119.4896 121.6144 103.8256 106.7904 102.3056\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M89.9968,126.8528 L90.2832,122.5312 L69.4928,116.592 L61.8496,116.424 C61.3184,116.4128 60.9344,116.2384 60.848,116.7632 C59.6208,124.2608 63.896,125.8752 64.7232,126.1664 L89.9968,126.8528\",\n id: \"Fill-17\",\n fill: \"#CFA486\",\n mask: \"url(#mask-4)\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M101.088,125.2816 C101.088,125.2816 99.6128,126.4368 96.2752,127.072 C92.9376,127.7072 89.288,126.7184 89.288,126.7184 L84.8272,123.4448 L89.5712,122.3968 L99.5808,122.1008 C99.952,122.0896 100.3184,122.1744 100.6448,122.3472 L105.6016,124.9696 C105.9648,125.1632 106.032,125.5968 105.9184,126.024 C105.7776,126.5616 105.1872,126.8448 104.6816,126.6192 L101.088,125.2816\",\n id: \"Fill-18\",\n fill: \"#CFA486\",\n mask: \"url(#mask-4)\"\n}), /*#__PURE__*/React.createElement(\"polyline\", {\n id: \"Fill-19\",\n fill: \"#D14F2B\",\n mask: \"url(#mask-4)\",\n points: \"114.0832 114.8832 124.8688 113.1136 116.9312 90.0576 102.5312 95.888 114.0832 114.8832\"\n}), /*#__PURE__*/React.createElement(\"polyline\", {\n id: \"Fill-20\",\n fill: \"#CFA486\",\n mask: \"url(#mask-4)\",\n points: \"73.8768 101.3216 69.5776 121.4976 60.6928 119.2832 62.0864 99.6176 73.8768 101.3216\"\n}), /*#__PURE__*/React.createElement(\"polyline\", {\n id: \"Fill-21\",\n fill: \"#D14F2B\",\n mask: \"url(#mask-4)\",\n points: \"72.5408 114.4288 61.0592 114.1184 62.6672 90.2096 76.7696 94.1824 72.5408 114.4288\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M117,91.1568 C117,95.8352 113.2064,99.6304 108.5248,99.6304 C103.8448,99.6304 100.0512,95.8352 100.0512,91.1568 C100.0512,86.4752 103.8448,82.6816 108.5248,82.6816 C113.2064,82.6816 117,86.4752 117,91.1568\",\n id: \"Fill-22\",\n fill: \"#D14F2B\",\n mask: \"url(#mask-4)\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M79.6304,91.1216 C79.6304,95.8016 75.8368,99.5968 71.1552,99.5968 C66.4752,99.5968 62.6816,95.8016 62.6816,91.1216 C62.6816,86.4416 66.4752,82.648 71.1552,82.648 C75.8368,82.648 79.6304,86.4416 79.6304,91.1216\",\n id: \"Fill-23\",\n fill: \"#D14F2B\",\n mask: \"url(#mask-4)\"\n}), /*#__PURE__*/React.createElement(\"polygon\", {\n id: \"Fill-24\",\n fill: \"#D14F2B\",\n mask: \"url(#mask-4)\",\n points: \"80.9152 79.0208 98.5088 79.0208 98.5088 74.528 80.9152 74.528\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M76.832,45.0144 C76.832,45.0144 77.424,54.1776 95.5616,51.5552 C95.5616,51.5552 102.1632,51.352 100.8848,56.5136 C99.8608,60.6448 98.4672,62.8544 101.9536,65.2256 C104.1456,66.7152 100.4128,71.12 100.4128,71.12 C100.4128,71.12 107.7456,67.488 105.9472,63.4288 C105.1392,61.6032 105.9088,59.7984 106.2672,58.8272 C107.6064,55.2032 108.5552,45.4128 95.1392,40.2624 C81.7232,35.1104 77.1968,39.5648 76.832,45.0144\",\n id: \"Fill-25\",\n fill: \"#AE502D\",\n mask: \"url(#mask-4)\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M76.4496,37.9264 C76.4496,37.9264 84.6416,30.952 96.1696,36.3632 C96.1696,36.3632 112.9568,44.4544 104.7312,63.592 L103.2592,63.152 L101.6368,54.1232 L100.2496,49.0016 L93.5392,46.8848 L81.1824,43.3296 L76.832,45.0144 L76.4496,37.9264\",\n id: \"Fill-26\",\n fill: \"#AE502D\",\n mask: \"url(#mask-4)\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M75.112,69.0096 C74.3696,67.1872 73.7728,65.2752 73.3712,63.3488 C73.0432,61.7808 72.6944,59.8752 73.2976,58.3296 C73.4352,57.9744 73.6336,57.6432 73.9216,57.3904 C76.5392,55.0848 79.672,52.8688 77.5872,46.376 C75.5008,39.8848 82.7088,36.992 82.7088,36.992 C82.1472,36.9216 81.584,36.8528 81.0208,36.7824 C79.7952,36.6304 78.7696,36.3584 77.6752,37.088 C76.7504,37.704 75.824,38.3072 74.9472,38.9936 C73.1344,40.416 71.5136,42.0928 70.312,44.0672 C68.8272,46.5056 67.9776,49.2832 67.8112,52.1312 C67.72,53.6896 67.808,55.256 68.0672,56.7936 C68.4032,58.7776 69.2944,61.4704 70.2752,63.2064 C71.632,65.6048 73.256,66.9712 75.112,69.0096\",\n id: \"Fill-27\",\n fill: \"#AE502D\",\n mask: \"url(#mask-4)\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M107.488,103.16 L105.0896,99.7584 L103.992,98.4832 C103.7392,98.1904 103.2944,98.1488 103.0032,98.4032 C102.8608,98.5264 102.7216,98.7136 102.6064,98.9936 C102.1968,99.9792 103.6272,101.3184 103.7632,101.4832 C103.8992,101.6464 104.7696,102.8288 104.7696,102.8288 L105.904,105.5344 C105.9392,105.6624 108.2192,106.5792 108.225623,105.3376 C108.2304,104.0976 107.488,103.16 107.488,103.16\",\n id: \"Fill-28\",\n fill: \"#CFA486\",\n mask: \"url(#mask-4)\"\n}), /*#__PURE__*/React.createElement(\"polygon\", {\n id: \"Fill-30\",\n fill: \"#FFFFFE\",\n mask: \"url(#mask-4)\",\n points: \"85.2032 116.9296 106.2032 116.9296 106.2032 86.9296 85.2032 86.9296\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M102.1168,123.1712 L103.1872,125.3712 C103.3568,125.5376 103.5536,125.6704 103.7728,125.7568 C104.2448,125.9424 106.936,126.4944 107.5952,126.6272 C107.8336,126.6752 108.072,126.5408 108.1552,126.3104 C108.2928,125.9296 108.1008,125.5088 107.7248,125.3632 L102.1168,123.1712\",\n id: \"Fill-32\",\n fill: \"#CFA486\",\n mask: \"url(#mask-4)\"\n}), /*#__PURE__*/React.createElement(\"polyline\", {\n id: \"Fill-33\",\n fill: \"#CFA486\",\n mask: \"url(#mask-4)\",\n points: \"105.2848 126.1376 99.7776 125.6656 97.76 123.784 105.2848 126.1376\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M78.0848,55.0112 C78.0848,55.0112 79.4272,53.1328 81.9472,53.2272 M95.7552,53.7408 C95.7552,53.7408 93.7248,52.6384 91.4992,53.8272\",\n id: \"Stroke-34\",\n stroke: \"#AE502D\",\n strokeWidth: 1.0672,\n strokeLinecap: \"round\",\n mask: \"url(#mask-4)\"\n}), /*#__PURE__*/React.createElement(\"polygon\", {\n id: \"Fill-40\",\n fill: \"#FFFFFE\",\n mask: \"url(#mask-4)\",\n points: \"20.632 118.2384 68.9136 118.2384 68.9136 108.88 20.632 108.88\"\n}), /*#__PURE__*/React.createElement(\"polygon\", {\n id: \"Fill-41\",\n fill: \"#2A2D70\",\n mask: \"url(#mask-4)\",\n points: \"16.4448 108.8336 64.7264 108.8336 64.7264 101.2864 16.4448 101.2864\"\n}), /*#__PURE__*/React.createElement(\"polygon\", {\n id: \"Fill-42\",\n fill: \"#D14F2B\",\n mask: \"url(#mask-4)\",\n points: \"16.4448 125.7856 64.7264 125.7856 64.7264 118.2384 16.4448 118.2384\"\n}), /*#__PURE__*/React.createElement(\"polygon\", {\n id: \"Fill-43\",\n fill: \"#E7792B\",\n mask: \"url(#mask-4)\",\n points: \"16.4448 125.7856 42.8784 125.7856 42.8784 118.2384 16.4448 118.2384\"\n}), /*#__PURE__*/React.createElement(\"polygon\", {\n id: \"Fill-44\",\n fill: \"#FFFFFE\",\n mask: \"url(#mask-4)\",\n points: \"16.4448 101.2848 64.7264 101.2848 64.7264 96.7504 16.4448 96.7504\"\n}), /*#__PURE__*/React.createElement(\"polygon\", {\n id: \"Fill-45\",\n fill: \"#5D6060\",\n mask: \"url(#mask-4)\",\n points: \"48.7808 101.2848 64.7264 101.2848 64.7264 96.7504 48.7808 96.7504\"\n}), /*#__PURE__*/React.createElement(\"polygon\", {\n id: \"Fill-46\",\n fill: \"#6F7271\",\n mask: \"url(#mask-4)\",\n points: \"7.9936 160 157.9184 160 157.9184 125.8192 7.9936 125.8192\"\n}), /*#__PURE__*/React.createElement(\"line\", {\n x1: 33.9952,\n y1: 79.6752,\n x2: 33.9952,\n y2: 64.0368,\n id: \"Stroke-47\",\n stroke: \"#2A2D70\",\n strokeWidth: 1.0672,\n mask: \"url(#mask-4)\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M37.3488,58.9232 C40.4656,56.432 42.7104,59.0272 42.7104,59.0272 C42.7104,59.0272 44.7504,61.7888 41.6352,64.2816 C38.5184,66.7744 33.696,66.2384 33.696,66.2384 C33.696,66.2384 34.232,61.416 37.3488,58.9232\",\n id: \"Fill-48\",\n fill: \"#2A2D70\",\n mask: \"url(#mask-4)\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M25.4496,59.3296 C25.4496,59.3296 27.6032,56.656 30.8048,59.0384 C32.8544,60.5632 33.88,63.0768 34.3536,64.6912 C34.6208,65.5984 34.7104,66.2208 34.7104,66.2208 C34.7104,66.2208 29.9104,66.9248 26.7088,64.5424 C23.5072,62.1584 25.4496,59.3296 25.4496,59.3296\",\n id: \"Fill-49\",\n fill: \"#2A2D70\",\n mask: \"url(#mask-4)\"\n}), /*#__PURE__*/React.createElement(\"polyline\", {\n id: \"Fill-50\",\n fill: \"#E3772B\",\n mask: \"url(#mask-4)\",\n points: \"41.3376 96.7936 26.6512 96.7936 24.6592 80.4048 43.3328 80.4048 41.3376 96.7936\"\n}), /*#__PURE__*/React.createElement(\"polyline\", {\n id: \"Fill-51\",\n fill: \"#DD5D2B\",\n mask: \"url(#mask-4)\",\n points: \"24.8256 81.7792 25.1344 84.3168 42.856 84.3168 43.1648 81.7792 24.8256 81.7792\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M23.304,80.9872 C23.304,81.424 23.6576,81.7776 24.096,81.7776 L43.8944,81.7776 C44.3328,81.7776 44.6864,81.424 44.6864,80.9872 L44.6864,78.3632 C44.6864,77.9264 44.3328,77.5712 43.8944,77.5712 L24.096,77.5712 C23.6576,77.5712 23.304,77.9264 23.304,78.3632 L23.304,80.9872\",\n id: \"Fill-52\",\n fill: \"#E3772B\",\n mask: \"url(#mask-4)\"\n})), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M103.3888,109.248 C101.2272,108.3408 99.9856,106.216 100.616,104.504 C101.2464,102.792 103.5104,102.1392 105.672,103.0464 C107.8336,103.9536 109.0752,106.0784 108.4432,107.792 C107.8144,109.504 105.5504,110.1568 103.3888,109.248\",\n id: \"Fill-55\",\n fill: \"#CFA486\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M99.944,108.8704 L99.6496,109.0432 L96.264,107.992 C96.3568,107.824 96.4816,107.6832 96.6272,107.5776 L99.7824,108.5568 L99.944,108.8704\",\n id: \"Fill-56\",\n fill: \"#9C796A\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M99.496,106.1184 L99.5472,106.3584 L99.2528,106.5296 L93.992,104.8992 C94.1136,104.7456 94.2688,104.6256 94.4384,104.5488 L94.4944,104.5264 L99.3872,106.0448 L99.496,106.1184\",\n id: \"Fill-57\",\n fill: \"#9C796A\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M94.32,101.888 L94.44,101.9248 L100.0416,103.6624 L100.2032,103.976 L100.1728,104.0416 L99.9088,104.1488 L93.4432,102.1424 C93.688,101.9408 94.0016,101.8432 94.32,101.888\",\n id: \"Fill-58\",\n fill: \"#9C796A\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M100.2032,103.976 L100.0416,103.6624 L94.44,101.9248 L94.4336,101.9088 C94.2704,101.6176 94.2176,101.2576 94.3136,100.904 C94.4992,100.2336 95.1584,99.8464 95.784,100.04 L106.072,103.2336 C106.6992,103.4272 107.0576,104.1296 106.872,104.8016 C106.7744,105.152 106.5504,105.4256 106.2656,105.5776 L109.7968,106.6736 C110.424,106.8688 110.7808,107.5696 110.5968,108.2416 C110.4832,108.656 110.1888,108.9616 109.8336,109.0896 C109.6128,109.1696 109.3664,109.1808 109.1264,109.1056 L108.5328,108.9216 C108.544,109.0688 108.5312,109.2192 108.4912,109.3696 C108.304,110.04 108.0416,109.6896 107.416,109.496 L106.2064,110.1248 C105.4544,111.3824 103.9952,112.0224 102.592,111.5872 L102.4832,111.5456 L102.376,111.5264 L96.9504,109.8416 C96.3232,109.648 95.9664,108.9456 96.1504,108.2736 L96.264,107.992 L99.6496,109.0432 L99.944,108.8704 L99.7824,108.5568 L96.6272,107.5776 L96.6288,107.576 L94.5568,106.9328 C93.9296,106.7392 93.5696,106.0368 93.7568,105.3648 C93.8048,105.1872 93.8864,105.0304 93.992,104.8992 L99.2528,106.5296 L99.5472,106.3584 L99.496,106.1184 L99.3872,106.0448 L94.4944,104.5264 L94.4384,104.5488 L93.8304,104.36 L93.5632,104.2368 C93.1056,103.952 92.872,103.36 93.0288,102.792 C93.1024,102.5232 93.2512,102.3008 93.4432,102.1424 L99.9088,104.1488 L100.1728,104.0416 L100.2032,103.976\",\n id: \"Fill-59\",\n fill: \"#CFA486\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M119.392,112.1136 L103.8368,102.6768 L101.064,106.7328 L118.9648,125.6288 C118.9648,125.6288 123.224,128.16 126.4704,122.7008 C127.256,121.3776 127.3008,119.7392 126.656,118.344 C125.6368,116.1408 124.7712,115.9424 122.8624,114.4448 C120.9584,112.9504 120.0464,112.5104 119.392,112.1136\",\n id: \"Fill-60\",\n fill: \"#CFA486\"\n})), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M92.0691167,63.205104 C92.0691167,63.205104 91.2199678,67.9943918 86.5667167,65.416304 C86.5667167,65.416304 89.4355167,64.990704 92.0691167,63.205104 Z\",\n id: \"Fill-39\",\n fill: \"#3B3C3A\",\n transform: \"translate(89.317917, 64.691772) rotate(16.000000) translate(-89.317917, -64.691772) \"\n})))));\n\nvar SvgLadyDesk = function SvgLadyDesk(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n width: \"160px\",\n height: \"160px\",\n viewBox: \"0 0 160 160\",\n ref: svgRef\n }, props), title === undefined ? _ref2 : title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref3, _ref4);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgLadyDesk, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/lady-desk.d21f0ea7.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M80 160.003C124.186 160.003 160 124.186 160 80.003C160 35.817 124.186 0 80 0C35.814 0 0 35.817 0 80.003C0 124.186 35.814 160.003 80 160.003Z\",\n fill: \"#F6F0DA\"\n});\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M89.035 33.2625C89.035 34.1265 88.335 34.8265 87.471 34.8265H73.343C72.38 34.8265 71.6 34.0465 71.6 33.0835V31.1035H45.383V128.9H115.252V31.1035H89.035V33.2625Z\",\n fill: \"white\"\n});\n\nvar _ref4 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M116.841 26.0029H44.447C42.326 26.0029 40.607 27.7219 40.607 29.8429V130.163C40.607 132.284 42.326 134.003 44.447 134.003H116.841C118.962 134.003 120.681 132.284 120.681 130.163V29.8429C120.681 27.7219 118.962 26.0029 116.841 26.0029ZM115.578 128.9H45.709V31.1049H71.926V33.0849C71.926 34.0479 72.706 34.8279 73.669 34.8279H87.797C88.661 34.8279 89.361 34.1279 89.361 33.2639V31.1049H115.578V128.9V128.9Z\",\n fill: \"#260047\"\n});\n\nvar _ref5 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M66.265 39.9105L66.761 41.0535H65.77L66.265 39.9105ZM66.048 39.2285L64.7 42.3145H65.226L65.574 41.5055H66.956L67.308 42.3145H67.838L66.49 39.2275H66.048V39.2285Z\",\n fill: \"#260047\"\n});\n\nvar _ref6 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M69.858 42.3146H69.38V42.0886C69.237 42.2716 68.998 42.3576 68.78 42.3576C68.267 42.3576 67.937 42.0016 67.937 41.4406V40.1406H68.415V41.3626C68.415 41.7056 68.585 41.9236 68.884 41.9236C69.106 41.9236 69.288 41.7846 69.38 41.5806V40.1416H69.858V42.3146V42.3146Z\",\n fill: \"#260047\"\n});\n\nvar _ref7 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M73.873 40.1421H74.351V40.4331C74.434 40.2681 74.655 40.1201 74.899 40.1201C74.99 40.1201 75.069 40.1331 75.121 40.1461L75.052 40.6111C75.008 40.5941 74.939 40.5851 74.865 40.5851C74.674 40.5851 74.448 40.6941 74.352 40.9201V42.3161H73.874V40.1421H73.873Z\",\n fill: \"#260047\"\n});\n\nvar _ref8 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M76.223 42.3586C75.58 42.3586 75.141 41.8416 75.141 41.2286C75.141 40.6156 75.58 40.0986 76.223 40.0986C76.48 40.0986 76.706 40.1856 76.858 40.3416V40.1416H77.336V42.3156H76.858V42.1116C76.706 42.2716 76.48 42.3586 76.223 42.3586ZM76.28 41.9236C76.558 41.9236 76.745 41.7936 76.858 41.6196V40.8326C76.745 40.6626 76.558 40.5326 76.28 40.5326C75.898 40.5326 75.632 40.8456 75.632 41.2286C75.632 41.6106 75.897 41.9236 76.28 41.9236Z\",\n fill: \"#260047\"\n});\n\nvar _ref9 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M77.769 39.3176L78.247 38.8516V42.3146H77.769V39.3176Z\",\n fill: \"#260047\"\n});\n\nvar _ref10 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M78.918 39.8158C78.744 39.8158 78.601 39.6728 78.601 39.4938C78.601 39.3198 78.744 39.1768 78.918 39.1768C79.096 39.1768 79.24 39.3198 79.24 39.4938C79.24 39.6718 79.097 39.8158 78.918 39.8158ZM78.679 40.1418H79.157V42.3158H78.679V40.1418Z\",\n fill: \"#260047\"\n});\n\nvar _ref11 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M80.591 42.3586C79.948 42.3586 79.508 41.8416 79.508 41.2286C79.508 40.6156 79.947 40.0986 80.591 40.0986C80.848 40.0986 81.074 40.1856 81.226 40.3416V40.1416H81.704V42.3156H81.226V42.1116C81.074 42.2716 80.848 42.3586 80.591 42.3586ZM80.648 41.9236C80.926 41.9236 81.113 41.7936 81.226 41.6196V40.8326C81.113 40.6626 80.926 40.5326 80.648 40.5326C80.265 40.5326 80 40.8456 80 41.2286C80 41.6106 80.265 41.9236 80.648 41.9236Z\",\n fill: \"#260047\"\n});\n\nvar _ref12 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M82.137 40.1417H82.615V40.3717C82.763 40.1887 82.997 40.0977 83.254 40.0977C83.776 40.0977 84.106 40.4537 84.106 41.0147V42.3147H83.628V41.0927C83.628 40.7497 83.454 40.5317 83.15 40.5317C82.893 40.5317 82.707 40.6747 82.615 40.8747V42.3137H82.137V40.1417V40.1417Z\",\n fill: \"#260047\"\n});\n\nvar _ref13 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M84.958 41.4938C85.119 41.7418 85.375 41.8898 85.675 41.8898C85.966 41.8898 86.175 41.7378 86.175 41.5068C86.175 41.2898 86.032 41.1458 85.736 41.0378L85.397 40.9158C84.91 40.7378 84.671 40.4678 84.671 40.0468C84.671 39.5078 85.097 39.1768 85.671 39.1768C86.053 39.1768 86.38 39.3288 86.606 39.5988L86.254 39.9418C86.102 39.7598 85.911 39.6548 85.672 39.6548C85.411 39.6548 85.185 39.7898 85.185 40.0108C85.185 40.2368 85.333 40.3368 85.654 40.4538L85.967 40.5708C86.419 40.7408 86.693 41.0138 86.693 41.4748C86.689 42.0138 86.267 42.3658 85.663 42.3658C85.163 42.3658 84.746 42.1398 84.559 41.8088L84.958 41.4938Z\",\n fill: \"#260047\"\n});\n\nvar _ref14 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M88.915 42.3146H88.437V42.0886C88.294 42.2716 88.055 42.3576 87.837 42.3576C87.324 42.3576 86.994 42.0016 86.994 41.4406V40.1406H87.472V41.3626C87.472 41.7056 87.642 41.9236 87.942 41.9236C88.164 41.9236 88.346 41.7846 88.438 41.5806V40.1416H88.916V42.3146H88.915Z\",\n fill: \"#260047\"\n});\n\nvar _ref15 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M89.317 40.1416H89.795V40.3416C89.947 40.1846 90.173 40.0986 90.43 40.0986C91.078 40.0986 91.517 40.6156 91.517 41.2286C91.517 41.8416 91.078 42.3586 90.43 42.3586C90.173 42.3586 89.947 42.2716 89.795 42.1106V43.2716H89.317V40.1416ZM90.378 41.9236C90.762 41.9236 91.028 41.6076 91.026 41.2226C91.023 40.7866 90.617 40.4526 90.193 40.5526C90.011 40.5956 89.882 40.7026 89.796 40.8316V41.6186C89.909 41.7936 90.095 41.9236 90.378 41.9236Z\",\n fill: \"#260047\"\n});\n\nvar _ref16 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M94.242 40.1421H94.72V40.4331C94.803 40.2681 95.024 40.1201 95.268 40.1201C95.359 40.1201 95.438 40.1331 95.49 40.1461L95.42 40.6111C95.377 40.5941 95.307 40.5851 95.233 40.5851C95.042 40.5851 94.816 40.6941 94.72 40.9201V42.3161H94.242V40.1421Z\",\n fill: \"#260047\"\n});\n\nvar _ref17 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M71.172 41.0236L70.95 40.9586C70.737 40.8976 70.689 40.8066 70.689 40.7016C70.689 40.5716 70.837 40.4976 70.98 40.4976C71.158 40.4976 71.297 40.5846 71.393 40.7196L71.695 40.4256C71.54 40.2136 71.295 40.0986 70.989 40.0986C70.554 40.0986 70.215 40.3336 70.211 40.7206C70.207 41.0426 70.402 41.2816 70.781 41.3856L70.972 41.4376C71.233 41.5156 71.307 41.5896 71.307 41.7156C71.307 41.8676 71.164 41.9456 70.994 41.9456C70.772 41.9456 70.559 41.8366 70.472 41.6456L70.153 41.9566C70.32 42.2256 70.632 42.3586 70.993 42.3586C71.441 42.3586 71.78 42.1016 71.78 41.6846C71.78 41.3286 71.554 41.1366 71.172 41.0236Z\",\n fill: \"#260047\"\n});\n\nvar _ref18 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M73.474 41.8743C73.38 41.9133 73.3 41.9293 73.165 41.9293C72.961 41.9293 72.826 41.8293 72.826 41.5593V40.5683H73.474V40.1423H72.826V39.3193H72.348V40.1423H71.922V40.5683H72.348V41.6383C72.348 42.1293 72.683 42.3603 73.104 42.3603C73.245 42.3603 73.373 42.3353 73.474 42.3053V41.8743V41.8743Z\",\n fill: \"#260047\"\n});\n\nvar _ref19 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M93.439 41.6646C93.32 41.8186 93.131 41.9236 92.866 41.9236C92.505 41.9236 92.218 41.6886 92.197 41.3326H93.906C93.91 41.2636 93.91 41.2236 93.91 41.1766C93.91 40.4766 93.432 40.0986 92.862 40.0986C92.194 40.0986 91.717 40.6006 91.727 41.2506C91.738 41.9126 92.314 42.4046 92.975 42.3546C93.34 42.3276 93.622 42.1676 93.804 41.9246L93.439 41.6646ZM92.844 40.5016C93.122 40.5016 93.374 40.6716 93.427 40.9846H92.218C92.283 40.6626 92.566 40.5016 92.844 40.5016Z\",\n fill: \"#260047\"\n});\n\nvar _ref20 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M82.217 37.6575C82.117 37.6665 82.108 37.8075 82.205 37.8305L84.38 38.3325C84.55 37.9255 84.555 37.5655 84.263 37.4785L82.217 37.6575Z\",\n fill: \"url(#paint0_linear_411_287)\"\n});\n\nvar _ref21 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M86.178 37.3109C86.26 37.3039 86.306 37.4039 86.247 37.4609L83.909 39.7419C83.839 39.8099 83.727 39.7309 83.768 39.6419L84.379 38.3319C84.549 37.9249 84.554 37.5659 84.262 37.4779L86.178 37.3109Z\",\n fill: \"url(#paint1_linear_411_287)\"\n});\n\nvar _ref22 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M88.003 121.459H72.973C72.002 121.459 71.207 120.664 71.207 119.693C71.207 118.722 72.002 117.927 72.973 117.927H88.003C88.974 117.927 89.769 118.722 89.769 119.693C89.768 120.665 88.974 121.459 88.003 121.459Z\",\n fill: \"#ED4300\"\n});\n\nvar _ref23 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M100 51.2031H60V91.2031H100V51.2031Z\",\n fill: \"white\"\n});\n\nvar _ref24 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask0_411_287)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M80 91.2041C91.046 91.2041 100 82.2501 100 71.2041C100 60.1581 91.046 51.2031 80 51.2031C68.954 51.2031 60 60.1571 60 71.2041C60 82.2491 68.954 91.2041 80 91.2041Z\",\n fill: \"#FBD9CC\"\n}));\n\nvar _ref25 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M100 51.2031H60V91.2031H100V51.2031Z\",\n fill: \"white\"\n});\n\nvar _ref26 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask1_411_287)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M76.121 70.8963H73.926V66.0653C73.926 62.6913 76.672 59.9463 80.045 59.9463C83.419 59.9463 86.164 62.6923 86.164 66.0653V70.6863H83.97V66.0653C83.97 63.9013 82.21 62.1403 80.045 62.1403C77.881 62.1403 76.12 63.9013 76.12 66.0653V70.8963H76.121Z\",\n fill: \"#260047\"\n}));\n\nvar _ref27 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M100 51.2031H60V91.2031H100V51.2031Z\",\n fill: \"white\"\n});\n\nvar _ref28 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask2_411_287)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M87.632 78.5663C87.632 79.5393 86.837 80.3363 85.862 80.3363H74.138C73.165 80.3363 72.369 79.5393 72.369 78.5663V70.1333C72.369 69.1603 73.165 68.3643 74.138 68.3643H85.862C86.837 68.3643 87.632 69.1603 87.632 70.1333V78.5663Z\",\n fill: \"#ED4300\"\n}));\n\nvar _ref29 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M100 51.2031H60V91.2031H100V51.2031Z\",\n fill: \"white\"\n});\n\nvar _ref30 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask3_411_287)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M79.189 76.3275V72.3725C79.189 71.9235 79.553 71.5615 80 71.5615C80.448 71.5615 80.811 71.9245 80.811 72.3725V76.3275C80.811 76.7755 80.448 77.1385 80 77.1385C79.553 77.1395 79.189 76.7755 79.189 76.3275Z\",\n fill: \"white\"\n}));\n\nvar _ref31 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M60.9204 106.273C60.8304 106.903 61.2504 107.383 61.8504 107.383C62.4504 107.383 62.8704 106.873 62.7804 106.243L62.4804 103.573L64.7304 105.223C65.0004 105.403 65.2104 105.523 65.4504 105.523C65.9904 105.523 66.4704 105.073 66.4704 104.533C66.4704 104.053 66.1404 103.723 65.7804 103.573L63.1404 102.433L65.7804 101.263C66.1404 101.113 66.4704 100.813 66.4704 100.333C66.4704 99.7934 66.0204 99.3434 65.4804 99.3434C65.2104 99.3434 65.0004 99.4334 64.7304 99.6434L62.4804 101.293L62.7804 98.5934C62.8704 97.9634 62.4504 97.4834 61.8504 97.4834C61.2504 97.4834 60.8304 97.9934 60.9204 98.6234L61.2204 101.293L58.9704 99.6434C58.7004 99.4334 58.5204 99.3434 58.2504 99.3434C57.7104 99.3434 57.2304 99.7934 57.2304 100.333C57.2304 100.783 57.5604 101.113 57.9204 101.263L60.5604 102.433L57.9204 103.573C57.5904 103.723 57.2304 104.053 57.2304 104.503C57.2304 105.043 57.6804 105.523 58.2204 105.523C58.4904 105.523 58.7004 105.403 58.9704 105.223L61.2204 103.573L60.9204 106.273ZM73.811 106.273C73.721 106.903 74.141 107.383 74.741 107.383C75.341 107.383 75.761 106.873 75.671 106.243L75.371 103.573L77.621 105.223C77.891 105.403 78.101 105.523 78.341 105.523C78.881 105.523 79.361 105.073 79.361 104.533C79.361 104.053 79.031 103.723 78.671 103.573L76.031 102.433L78.671 101.263C79.031 101.113 79.361 100.813 79.361 100.333C79.361 99.7934 78.911 99.3434 78.371 99.3434C78.101 99.3434 77.891 99.4334 77.621 99.6434L75.371 101.293L75.671 98.5934C75.761 97.9634 75.341 97.4834 74.741 97.4834C74.141 97.4834 73.721 97.9934 73.811 98.6234L74.111 101.293L71.861 99.6434C71.591 99.4334 71.411 99.3434 71.141 99.3434C70.601 99.3434 70.121 99.7934 70.121 100.333C70.121 100.783 70.451 101.113 70.811 101.263L73.451 102.433L70.811 103.573C70.481 103.723 70.121 104.053 70.121 104.503C70.121 105.043 70.571 105.523 71.111 105.523C71.381 105.523 71.591 105.403 71.861 105.223L74.111 103.573L73.811 106.273ZM86.7016 106.273C86.6116 106.903 87.0316 107.383 87.6316 107.383C88.2316 107.383 88.6516 106.873 88.5616 106.243L88.2616 103.573L90.5116 105.223C90.7816 105.403 90.9916 105.523 91.2316 105.523C91.7716 105.523 92.2516 105.073 92.2516 104.533C92.2516 104.053 91.9216 103.723 91.5616 103.573L88.9216 102.433L91.5616 101.263C91.9216 101.113 92.2516 100.813 92.2516 100.333C92.2516 99.7934 91.8016 99.3434 91.2616 99.3434C90.9916 99.3434 90.7816 99.4334 90.5116 99.6434L88.2616 101.293L88.5616 98.5934C88.6516 97.9634 88.2316 97.4834 87.6316 97.4834C87.0316 97.4834 86.6116 97.9934 86.7016 98.6234L87.0016 101.293L84.7516 99.6434C84.4816 99.4334 84.3016 99.3434 84.0316 99.3434C83.4916 99.3434 83.0116 99.7934 83.0116 100.333C83.0116 100.783 83.3416 101.113 83.7016 101.263L86.3416 102.433L83.7016 103.573C83.3716 103.723 83.0116 104.053 83.0116 104.503C83.0116 105.043 83.4616 105.523 84.0016 105.523C84.2716 105.523 84.4816 105.403 84.7516 105.223L87.0016 103.573L86.7016 106.273ZM99.5923 106.273C99.5023 106.903 99.9223 107.383 100.522 107.383C101.122 107.383 101.542 106.873 101.452 106.243L101.152 103.573L103.402 105.223C103.672 105.403 103.882 105.523 104.122 105.523C104.662 105.523 105.142 105.073 105.142 104.533C105.142 104.053 104.812 103.723 104.452 103.573L101.812 102.433L104.452 101.263C104.812 101.113 105.142 100.813 105.142 100.333C105.142 99.7934 104.692 99.3434 104.152 99.3434C103.882 99.3434 103.672 99.4334 103.402 99.6434L101.152 101.293L101.452 98.5934C101.542 97.9634 101.122 97.4834 100.522 97.4834C99.9223 97.4834 99.5023 97.9934 99.5923 98.6234L99.8923 101.293L97.6423 99.6434C97.3723 99.4334 97.1923 99.3434 96.9223 99.3434C96.3823 99.3434 95.9023 99.7934 95.9023 100.333C95.9023 100.783 96.2323 101.113 96.5923 101.263L99.2323 102.433L96.5923 103.573C96.2623 103.723 95.9023 104.053 95.9023 104.503C95.9023 105.043 96.3523 105.523 96.8923 105.523C97.1623 105.523 97.3723 105.403 97.6423 105.223L99.8923 103.573L99.5923 106.273Z\",\n fill: \"#ED4300\"\n});\n\nvar _ref32 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"linearGradient\", {\n id: \"paint0_linear_411_287\",\n x1: 82.9108,\n y1: 38.4358,\n x2: 83.9591,\n y2: 37.1865,\n gradientUnits: \"userSpaceOnUse\"\n}, /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.1155,\n stopColor: \"#EA4403\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.2632,\n stopColor: \"#EA4A03\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.4566,\n stopColor: \"#EC5A03\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.65,\n stopColor: \"#EE7203\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.7747,\n stopColor: \"#F18402\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n stopColor: \"#F8AE00\"\n})), /*#__PURE__*/React.createElement(\"linearGradient\", {\n id: \"paint1_linear_411_287\",\n x1: 83.8683,\n y1: 38.4385,\n x2: 86.1658,\n y2: 38.6395,\n gradientUnits: \"userSpaceOnUse\"\n}, /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.1155,\n stopColor: \"#EA4403\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.2356,\n stopColor: \"#EA4A03\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.3928,\n stopColor: \"#EC5A03\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.55,\n stopColor: \"#EE7203\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.6535,\n stopColor: \"#F18402\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.8604,\n stopColor: \"#F9B301\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.9959,\n stopColor: \"#FFD500\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n stopColor: \"#FFD500\"\n})), /*#__PURE__*/React.createElement(\"clipPath\", {\n id: \"clip0_411_287\"\n}, /*#__PURE__*/React.createElement(\"rect\", {\n width: 160,\n height: 160,\n fill: \"white\"\n})));\n\nvar SvgLaptopLocked = function SvgLaptopLocked(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n width: 160,\n height: 160,\n viewBox: \"0 0 160 160\",\n fill: \"none\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#clip0_411_287)\"\n }, _ref2, _ref3, _ref4, _ref5, _ref6, _ref7, _ref8, _ref9, _ref10, _ref11, _ref12, _ref13, _ref14, _ref15, _ref16, _ref17, _ref18, _ref19, _ref20, _ref21, _ref22, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask0_411_287\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 60,\n y: 51,\n width: 40,\n height: 41\n }, _ref23), _ref24, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask1_411_287\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 60,\n y: 51,\n width: 40,\n height: 41\n }, _ref25), _ref26, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask2_411_287\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 60,\n y: 51,\n width: 40,\n height: 41\n }, _ref27), _ref28, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask3_411_287\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 60,\n y: 51,\n width: 40,\n height: 41\n }, _ref29), _ref30, _ref31), _ref32);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgLaptopLocked, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/laptop-locked.4eb8a811.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M80 160C124.183 160 160 124.183 160 80C160 35.8172 124.183 0 80 0C35.8172 0 0 35.8172 0 80C0 124.183 35.8172 160 80 160Z\",\n fill: \"#F6F0DA\"\n});\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M50.466 24.668C49.658 25.193 49.121 26.1 49.121 27.135V76.168C49.429 76.541 49.722 76.965 49.988 77.426V26.268C49.989 25.677 50.167 25.129 50.466 24.668Z\",\n fill: \"#EDE1B5\"\n});\n\nvar _ref4 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M77.936 106.141C77.756 106.407 77.547 106.694 77.299 107.008H107.58C108.615 107.008 109.522 106.471 110.047 105.663C109.586 105.963 109.038 106.141 108.447 106.141H77.936Z\",\n fill: \"#EDE1B5\"\n});\n\nvar _ref5 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M87.375 28.8913C87.375 29.5533 86.838 30.0903 86.176 30.0903H75.342C74.604 30.0903 74.006 29.4923 74.006 28.7543V27.2363H53.901V102.228H107.478V27.2363H87.375V28.8913Z\",\n fill: \"white\"\n});\n\nvar _ref6 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M65.783 34.9339L66.308 36.1439H65.259L65.783 34.9339ZM65.553 34.2109L64.127 37.4779H64.684L65.052 36.6219H66.515L66.888 37.4779H67.449L66.023 34.2109H65.553Z\",\n fill: \"#260046\"\n});\n\nvar _ref7 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M96.714 32.2051H64.127V38.4911H96.714V32.2051Z\",\n fill: \"white\"\n});\n\nvar _ref8 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask0_411_152)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M69.585 37.4778H69.079V37.2388C68.927 37.4318 68.674 37.5238 68.444 37.5238C67.901 37.5238 67.551 37.1468 67.551 36.5528V35.1768H68.057V36.4698C68.057 36.8328 68.236 37.0628 68.554 37.0628C68.789 37.0628 68.982 36.9158 69.079 36.6998V35.1768H69.585V37.4778Z\",\n fill: \"#260046\"\n}));\n\nvar _ref9 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M96.714 32.2051H64.127V38.4911H96.714V32.2051Z\",\n fill: \"white\"\n});\n\nvar _ref10 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask1_411_152)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M73.834 35.1773H74.34V35.4853C74.427 35.3103 74.662 35.1543 74.92 35.1543C75.017 35.1543 75.099 35.1683 75.155 35.1823L75.081 35.6743C75.035 35.6563 74.961 35.6463 74.883 35.6463C74.681 35.6463 74.441 35.7613 74.34 36.0003V37.4773H73.834V35.1773Z\",\n fill: \"#260046\"\n}));\n\nvar _ref11 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M96.714 32.2051H64.127V38.4911H96.714V32.2051Z\",\n fill: \"white\"\n});\n\nvar _ref12 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask2_411_152)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M76.322 37.5238C75.641 37.5238 75.176 36.9768 75.176 36.3278C75.176 35.6788 75.641 35.1318 76.322 35.1318C76.593 35.1318 76.833 35.2238 76.994 35.3898V35.1778H77.5V37.4788H76.994V37.2628C76.833 37.4318 76.593 37.5238 76.322 37.5238ZM76.382 37.0638C76.677 37.0638 76.874 36.9258 76.994 36.7418V35.9088C76.874 35.7298 76.676 35.5908 76.382 35.5908C75.977 35.5908 75.697 35.9218 75.697 36.3268C75.696 36.7328 75.977 37.0638 76.382 37.0638Z\",\n fill: \"#260046\"\n}));\n\nvar _ref13 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M96.714 32.2051H64.127V38.4911H96.714V32.2051Z\",\n fill: \"white\"\n});\n\nvar _ref14 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask3_411_152)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M77.958 34.3065L78.464 33.8125V37.4785H77.958V34.3065Z\",\n fill: \"#260046\"\n}));\n\nvar _ref15 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M96.714 32.2051H64.127V38.4911H96.714V32.2051Z\",\n fill: \"white\"\n});\n\nvar _ref16 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask4_411_152)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M79.175 34.8323C78.991 34.8323 78.839 34.6803 78.839 34.4923C78.839 34.3083 78.991 34.1562 79.175 34.1562C79.364 34.1562 79.515 34.3083 79.515 34.4923C79.515 34.6803 79.363 34.8323 79.175 34.8323ZM78.921 35.1772H79.427V37.4783H78.921V35.1772Z\",\n fill: \"#260046\"\n}));\n\nvar _ref17 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M96.714 32.2051H64.127V38.4911H96.714V32.2051Z\",\n fill: \"white\"\n});\n\nvar _ref18 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask5_411_152)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M80.945 37.5238C80.264 37.5238 79.799 36.9768 79.799 36.3278C79.799 35.6788 80.264 35.1318 80.945 35.1318C81.216 35.1318 81.456 35.2238 81.617 35.3898V35.1778H82.123V37.4788H81.617V37.2628C81.456 37.4318 81.217 37.5238 80.945 37.5238ZM81.005 37.0638C81.299 37.0638 81.497 36.9258 81.617 36.7418V35.9088C81.497 35.7298 81.299 35.5908 81.005 35.5908C80.6 35.5908 80.319 35.9218 80.319 36.3268C80.319 36.7328 80.6 37.0638 81.005 37.0638Z\",\n fill: \"#260046\"\n}));\n\nvar _ref19 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M96.714 32.2051H64.127V38.4911H96.714V32.2051Z\",\n fill: \"white\"\n});\n\nvar _ref20 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask6_411_152)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M82.581 35.1769H83.087V35.4209C83.243 35.2279 83.492 35.1309 83.763 35.1309C84.315 35.1309 84.665 35.5079 84.665 36.1019V37.4779H84.159V36.1849C84.159 35.8219 83.975 35.5919 83.653 35.5919C83.382 35.5919 83.184 35.7439 83.087 35.9559V37.4789H82.581V35.1769Z\",\n fill: \"#260046\"\n}));\n\nvar _ref21 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M96.714 32.2051H64.127V38.4911H96.714V32.2051Z\",\n fill: \"white\"\n});\n\nvar _ref22 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask7_411_152)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M85.566 36.6083C85.736 36.8703 86.008 37.0273 86.325 37.0273C86.633 37.0273 86.854 36.8663 86.854 36.6223C86.854 36.3923 86.702 36.2403 86.389 36.1253L86.03 35.9963C85.515 35.8073 85.261 35.5223 85.261 35.0763C85.261 34.5053 85.712 34.1562 86.319 34.1562C86.724 34.1562 87.069 34.3173 87.308 34.6023L86.935 34.9653C86.774 34.7723 86.571 34.6613 86.319 34.6613C86.043 34.6613 85.804 34.8042 85.804 35.0382C85.804 35.2772 85.96 35.3833 86.301 35.5073L86.632 35.6313C87.111 35.8103 87.401 36.1003 87.401 36.5883C87.396 37.1593 86.95 37.5312 86.311 37.5312C85.782 37.5312 85.34 37.2923 85.142 36.9423L85.566 36.6083Z\",\n fill: \"#260046\"\n}));\n\nvar _ref23 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M96.714 32.2051H64.127V38.4911H96.714V32.2051Z\",\n fill: \"white\"\n});\n\nvar _ref24 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask8_411_152)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M89.754 37.4778H89.248V37.2388C89.096 37.4318 88.843 37.5238 88.613 37.5238C88.07 37.5238 87.72 37.1468 87.72 36.5528V35.1768H88.226V36.4698C88.226 36.8328 88.405 37.0628 88.723 37.0628C88.958 37.0628 89.151 36.9158 89.247 36.6998V35.1768H89.753V37.4778H89.754Z\",\n fill: \"#260046\"\n}));\n\nvar _ref25 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M96.714 32.2051H64.127V38.4911H96.714V32.2051Z\",\n fill: \"white\"\n});\n\nvar _ref26 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask9_411_152)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M90.18 35.1769H90.686V35.3889C90.847 35.2229 91.086 35.1309 91.358 35.1309C92.043 35.1309 92.508 35.6779 92.508 36.3269C92.508 36.9759 92.043 37.5229 91.358 37.5229C91.086 37.5229 90.847 37.4309 90.686 37.2609V38.4899H90.18V35.1769ZM91.303 37.0639C91.71 37.0639 91.991 36.7299 91.989 36.3219C91.986 35.8609 91.556 35.5069 91.107 35.6129C90.915 35.6589 90.778 35.7719 90.687 35.9089V36.7419C90.806 36.9259 91.004 37.0639 91.303 37.0639Z\",\n fill: \"#260046\"\n}));\n\nvar _ref27 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M96.714 32.2051H64.127V38.4911H96.714V32.2051Z\",\n fill: \"white\"\n});\n\nvar _ref28 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask10_411_152)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M95.393 35.1773H95.899V35.4853C95.986 35.3103 96.221 35.1543 96.479 35.1543C96.576 35.1543 96.659 35.1683 96.714 35.1823L96.64 35.6743C96.594 35.6563 96.52 35.6463 96.442 35.6463C96.24 35.6463 96 35.7613 95.899 36.0003V37.4773H95.393V35.1773Z\",\n fill: \"#260046\"\n}));\n\nvar _ref29 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M96.714 32.2051H64.127V38.4911H96.714V32.2051Z\",\n fill: \"white\"\n});\n\nvar _ref30 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask11_411_152)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M70.976 36.1108L70.741 36.0418C70.516 35.9778 70.465 35.8808 70.465 35.7708C70.465 35.6328 70.621 35.5548 70.773 35.5548C70.962 35.5548 71.109 35.6468 71.21 35.7898L71.529 35.4788C71.365 35.2538 71.106 35.1328 70.782 35.1328C70.322 35.1328 69.963 35.3808 69.958 35.7908C69.953 36.1308 70.16 36.3848 70.561 36.4948L70.763 36.5498C71.039 36.6328 71.117 36.7108 71.117 36.8438C71.117 37.0048 70.965 37.0878 70.786 37.0878C70.551 37.0878 70.326 36.9728 70.234 36.7708L69.897 37.0998C70.074 37.3848 70.404 37.5248 70.786 37.5248C71.26 37.5248 71.619 37.2528 71.619 36.8118C71.62 36.4328 71.38 36.2308 70.976 36.1108Z\",\n fill: \"#260046\"\n}));\n\nvar _ref31 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M96.714 32.2051H64.127V38.4911H96.714V32.2051Z\",\n fill: \"white\"\n});\n\nvar _ref32 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask12_411_152)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M73.412 37.0106C73.313 37.0526 73.228 37.0686 73.085 37.0686C72.869 37.0686 72.726 36.9626 72.726 36.6776V35.6286H73.412V35.1776H72.726V34.3066H72.22V35.1776H71.77V35.6286H72.221V36.7606C72.221 37.2806 72.575 37.5246 73.022 37.5246C73.171 37.5246 73.307 37.4986 73.413 37.4666V37.0106H73.412Z\",\n fill: \"#260046\"\n}));\n\nvar _ref33 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M96.714 32.2051H64.127V38.4911H96.714V32.2051Z\",\n fill: \"white\"\n});\n\nvar _ref34 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask13_411_152)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M94.543 36.7889C94.417 36.9519 94.217 37.0629 93.936 37.0629C93.554 37.0629 93.251 36.8149 93.227 36.4369H95.035C95.04 36.3629 95.04 36.3219 95.04 36.2709C95.04 35.5299 94.534 35.1299 93.931 35.1299C93.224 35.1299 92.719 35.6619 92.73 36.3489C92.742 37.0499 93.351 37.5699 94.05 37.5179C94.437 37.4889 94.735 37.3199 94.928 37.0629L94.543 36.7889ZM93.913 35.5589C94.207 35.5589 94.474 35.7379 94.53 36.0699H93.251C93.32 35.7289 93.619 35.5589 93.913 35.5589Z\",\n fill: \"#260046\"\n}));\n\nvar _ref35 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M82.664 32.5649C82.56 32.5739 82.55 32.7209 82.651 32.7449L84.911 33.2669C85.088 32.8439 85.092 32.4699 84.79 32.3799L82.664 32.5649Z\",\n fill: \"white\"\n});\n\nvar _ref36 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask14_411_152)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M82.113 32.9L83.601 31.127L85.529 32.746L84.042 34.518L82.113 32.9Z\",\n fill: \"url(#paint0_linear_411_152)\"\n}));\n\nvar _ref37 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M86.78 32.2051L84.79 32.3791C85.093 32.4711 85.089 32.8431 84.911 33.2661L84.276 34.6271C84.233 34.7191 84.35 34.8021 84.422 34.7311L86.851 32.3611C86.91 32.3031 86.868 32.2051 86.788 32.2051C86.786 32.2051 86.783 32.2051 86.78 32.2051Z\",\n fill: \"white\"\n});\n\nvar _ref38 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask15_411_152)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M84.254 31.9717L87.136 32.2237L86.89 35.0347L84.008 34.7817L84.254 31.9717Z\",\n fill: \"url(#paint1_linear_411_152)\"\n}));\n\nvar _ref39 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M49.989 77.458V77.426C49.723 76.965 49.43 76.54 49.122 76.168V76.182C49.323 76.439 49.648 76.884 49.989 77.458Z\",\n fill: \"#70331C\"\n});\n\nvar _ref40 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M108.447 23.3232H52.934C51.899 23.3232 50.992 23.8602 50.467 24.6682C50.167 25.1292 49.989 25.6772 49.989 26.2682V77.4262V77.4582C50.654 78.5802 51.362 80.1852 51.235 81.8042C51.085 83.7282 50.252 90.2712 49.989 92.3172V103.195C49.989 104.821 51.307 106.14 52.934 106.14H77.937H108.448C109.039 106.14 109.587 105.962 110.048 105.662C110.856 105.137 111.393 104.23 111.393 103.195V26.2682C111.392 24.6422 110.073 23.3232 108.447 23.3232ZM107.479 102.228H53.901V27.2362H74.005V28.7542C74.005 29.4922 74.603 30.0902 75.341 30.0902H86.175C86.837 30.0902 87.374 29.5532 87.374 28.8912V27.2352H107.478V102.228H107.479Z\",\n fill: \"#260046\"\n});\n\nvar _ref41 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M86.333 94.2031H74.807C74.062 94.2031 73.453 94.8121 73.453 95.5571C73.453 96.3021 74.062 96.9111 74.807 96.9111H86.333C87.078 96.9111 87.687 96.3021 87.687 95.5571C87.687 94.8121 87.078 94.2031 86.333 94.2031Z\",\n fill: \"#EA4403\"\n});\n\nvar _ref42 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M77.936 106.141C77.953 106.116 77.973 106.089 77.989 106.064H54.468C51.484 106.064 50.009 103.832 50.009 100.848V92.1605C50.291 89.9655 51.089 83.6845 51.235 81.8045C51.36 80.2015 50.668 78.6155 50.009 77.4945V77.4595C49.738 76.9855 49.437 76.5505 49.122 76.1685C49.087 76.1265 49.051 76.0895 49.015 76.0485C48.957 75.9765 48.92 75.9345 48.92 75.9345V75.9415C48 74.9125 46.987 74.3365 46.244 74.5425C44.549 75.0115 44.916 80.5695 43.7 85.2405C42.484 89.9115 41.407 93.1965 39.102 101.969C36.727 111.01 40.555 114.258 39.794 117.39C39.677 117.873 39.363 118.573 38.93 119.397L55.218 126.119C55.46 126.277 55.682 126.439 55.89 126.603C58.354 124.95 62.577 122.552 73.794 110.898C75.332 109.3 76.495 108.025 77.298 107.008C77.422 106.851 77.537 106.701 77.642 106.556C77.748 106.412 77.844 106.275 77.933 106.143C77.935 106.142 77.936 106.141 77.936 106.141Z\",\n fill: \"#70331C\"\n});\n\nvar _ref43 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M55.891 126.602C55.683 126.438 55.46 126.277 55.219 126.118L38.931 119.396L38.51 119.222C36.075 118.217 33.274 119.204 32.006 121.513L22.406 135.493C29.421 142.772 37.798 148.719 47.134 152.933C50.371 145.906 53.698 138.583 56.752 134.565C58.44 132.344 59.177 129.181 55.891 126.602Z\",\n fill: \"#EA4403\"\n});\n\nvar _ref44 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M132.523 120.316C130.469 118.109 130.803 115.587 118.241 102.462C114.677 98.7392 113.658 97.8042 111.562 97.7952C109.761 97.7882 109.103 98.8492 109.162 99.3312C109.162 99.3312 107.478 97.0602 104.611 98.1692C103.245 98.6972 102.34 100.625 102.34 100.625C102.264 100.55 102.189 100.476 102.112 100.4C100.284 98.6122 98.46 98.4922 96.144 99.6032C94.987 100.158 94.138 102.191 94.138 102.191C91.585 100.007 92.546 101.19 90.308 99.1132C84.79 93.9902 84.08 92.5202 82.4 92.8952C81.101 93.1842 80.77 96.1522 82.364 98.7482C83.738 100.985 84.714 102.551 89.686 107.484C92.897 110.67 95.213 112.742 97.552 115.196C99.468 117.206 103.101 120.603 103.257 122.053C103.413 123.503 95.018 121.146 91.655 121.171C88.292 121.196 85.061 123.783 85.411 125.284C85.761 126.785 90.642 126.663 94.688 127.896C98.735 129.129 101.573 130.19 109.173 132.524C117.006 134.929 119.987 131.694 122.703 132.472C122.952 132.543 123.278 132.69 123.636 132.87C124.775 129.412 127.28 125.086 132.523 120.316Z\",\n fill: \"#70331C\"\n});\n\nvar _ref45 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M97.923 48.165H62.923V83.165H97.923V48.165Z\",\n fill: \"white\"\n});\n\nvar _ref46 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask16_411_152)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M80.424 83.168C90.09 83.168 97.925 75.332 97.925 65.667C97.925 56.001 90.09 48.165 80.424 48.165C70.758 48.165 62.923 56.001 62.923 65.667C62.923 75.332 70.758 83.168 80.424 83.168Z\",\n fill: \"#FBDACD\"\n}));\n\nvar _ref47 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M97.923 48.165H62.923V83.165H97.923V48.165Z\",\n fill: \"white\"\n});\n\nvar _ref48 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask17_411_152)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M86.021 59.9984C86.021 63.0894 83.515 65.3834 80.424 65.3834C77.334 65.3834 74.828 63.0894 74.828 59.9984C74.828 56.9074 77.334 54.4014 80.424 54.4014C83.515 54.4024 86.021 56.9074 86.021 59.9984Z\",\n fill: \"#260046\"\n}));\n\nvar _ref49 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M97.923 48.165H62.923V83.165H97.923V48.165Z\",\n fill: \"white\"\n});\n\nvar _ref50 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask18_411_152)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M80.424 65.6123C75.951 65.6123 72.326 69.2383 72.326 73.7103H88.522C88.522 69.2383 84.897 65.6123 80.424 65.6123Z\",\n fill: \"#EA4403\"\n}));\n\nvar _ref51 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M97.923 48.165H62.923V83.165H97.923V48.165Z\",\n fill: \"white\"\n});\n\nvar _ref52 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask19_411_152)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M75.619 60.5775C75.619 57.9235 77.771 55.7725 80.424 55.7725C83.079 55.7725 85.23 57.9235 85.23 60.5775C85.23 63.2315 83.079 65.3825 80.424 65.3825C77.77 65.3825 75.619 63.2315 75.619 60.5775Z\",\n fill: \"white\"\n}));\n\nvar _ref53 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M97.923 48.165H62.923V83.165H97.923V48.165Z\",\n fill: \"white\"\n});\n\nvar _ref54 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask20_411_152)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M82.251 63.5029H78.597V65.8029C78.597 66.8119 79.415 67.6299 80.424 67.6299C81.433 67.6299 82.251 66.8119 82.251 65.8029V63.5029Z\",\n fill: \"white\"\n}));\n\nvar _ref55 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M97.923 48.165H62.923V83.165H97.923V48.165Z\",\n fill: \"white\"\n});\n\nvar _ref56 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask21_411_152)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M82.245 65.8595C82.246 65.8405 82.251 65.8225 82.251 65.8035V65.0215C81.688 65.2535 81.071 65.3835 80.424 65.3835C79.777 65.3835 79.161 65.2535 78.597 65.0215V65.8035C78.597 65.8235 78.603 65.8405 78.603 65.8595C79.175 66.0575 79.786 66.1685 80.424 66.1685C81.063 66.1685 81.674 66.0565 82.245 65.8595Z\",\n fill: \"#F5F5F5\"\n}));\n\nvar _ref57 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M97.923 48.165H62.923V83.165H97.923V48.165Z\",\n fill: \"white\"\n});\n\nvar _ref58 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask22_411_152)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M85.37 59.6681C85.37 60.0491 85.331 60.4161 85.251 60.7701C84.202 60.4731 83.103 59.0641 83.011 57.9701C82.061 59.5051 79.016 61.0681 77.078 61.0681C76.487 61.0681 75.918 60.9711 75.389 60.7971C75.306 60.4341 75.262 60.0571 75.262 59.6681C75.262 58.3291 75.783 57.1131 76.632 56.2071C77.656 55.3711 78.955 54.8721 80.382 54.8721C81.559 54.8721 82.652 55.2131 83.576 55.8041C84.674 56.7321 85.37 58.1191 85.37 59.6681Z\",\n fill: \"#260046\"\n}));\n\nvar _ref59 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M97.923 48.165H62.923V83.165H97.923V48.165Z\",\n fill: \"white\"\n});\n\nvar _ref60 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask23_411_152)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M85.37 59.6683C85.37 60.0493 85.331 60.4163 85.251 60.7703C84.202 60.4733 83.103 59.0643 83.011 57.9703C82.061 59.5053 79.016 61.0683 77.078 61.0683C76.487 61.0683 75.918 60.9713 75.389 60.7973C75.306 60.4343 75.262 60.0573 75.262 59.6683C75.262 58.3293 75.783 57.1133 76.632 56.2073C77.555 55.2263 78.863 54.6143 80.316 54.6143C81.559 54.6143 82.696 55.0603 83.575 55.8043C84.674 56.7323 85.37 58.1193 85.37 59.6683Z\",\n fill: \"#260046\"\n}));\n\nvar _ref61 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M68.309 64.155C72.725 64.155 76.304 60.576 76.304 56.16C76.304 51.744 72.725 48.165 68.309 48.165C63.893 48.165 60.314 51.744 60.314 56.16C60.314 60.576 63.893 64.155 68.309 64.155Z\",\n fill: \"#EA4403\"\n});\n\nvar _ref62 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M67.626 58.4662C67.518 58.4662 67.411 58.4252 67.328 58.3432L65.159 56.1742C64.995 56.0102 64.995 55.7432 65.159 55.5792C65.323 55.4152 65.589 55.4152 65.754 55.5792L67.637 57.4622L71.875 53.5312C72.045 53.3732 72.311 53.3832 72.469 53.5532C72.627 53.7232 72.617 53.9902 72.447 54.1482L67.912 58.3542C67.831 58.4282 67.728 58.4662 67.626 58.4662Z\",\n fill: \"white\"\n});\n\nvar _ref63 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M148.672 121.042L141.459 116.902C139.905 115.98 137.941 116.085 136.503 117.179C135.782 117.728 135.107 118.037 134.457 118.578C134.327 118.687 134.19 118.796 134.062 118.904C128.041 124.006 125.268 128.21 123.666 132.768C123.55 133.097 123.442 133.411 123.343 133.724C122.503 136.385 122.421 138.536 122.534 139.956C122.623 141.078 123.181 142.107 124.08 142.785L125.236 145.977C134.726 139.457 142.739 130.947 148.672 121.042Z\",\n fill: \"#EA4403\"\n});\n\nvar _ref64 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"linearGradient\", {\n id: \"paint0_linear_411_152\",\n x1: 83.5539,\n y1: 33.3884,\n x2: 84.643,\n y2: 32.0905,\n gradientUnits: \"userSpaceOnUse\"\n}, /*#__PURE__*/React.createElement(\"stop\", {\n stopColor: \"#E14403\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.1155,\n stopColor: \"#E14403\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.2627,\n stopColor: \"#E24A03\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.4568,\n stopColor: \"#E35A03\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.65,\n stopColor: \"#E57203\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.7917,\n stopColor: \"#E88402\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n stopColor: \"#EFA500\"\n})), /*#__PURE__*/React.createElement(\"linearGradient\", {\n id: \"paint1_linear_411_152\",\n x1: 84.5624,\n y1: 33.5507,\n x2: 86.9479,\n y2: 33.7594,\n gradientUnits: \"userSpaceOnUse\"\n}, /*#__PURE__*/React.createElement(\"stop\", {\n stopColor: \"#E14403\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.1155,\n stopColor: \"#E14403\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.2352,\n stopColor: \"#E24A03\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.393,\n stopColor: \"#E35A03\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.55,\n stopColor: \"#E57203\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.6608,\n stopColor: \"#EA8402\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.8814,\n stopColor: \"#F7B201\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.9959,\n stopColor: \"#FFCC00\"\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n stopColor: \"#FFCC00\"\n})), /*#__PURE__*/React.createElement(\"clipPath\", {\n id: \"clip0_411_152\"\n}, /*#__PURE__*/React.createElement(\"rect\", {\n width: 160,\n height: 160,\n fill: \"white\"\n})));\n\nvar SvgLaptopTick = function SvgLaptopTick(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n width: 160,\n height: 160,\n viewBox: \"0 0 160 160\",\n fill: \"none\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#clip0_411_152)\"\n }, _ref2, _ref3, _ref4, _ref5, _ref6, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask0_411_152\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 64,\n y: 32,\n width: 33,\n height: 7\n }, _ref7), _ref8, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask1_411_152\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 64,\n y: 32,\n width: 33,\n height: 7\n }, _ref9), _ref10, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask2_411_152\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 64,\n y: 32,\n width: 33,\n height: 7\n }, _ref11), _ref12, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask3_411_152\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 64,\n y: 32,\n width: 33,\n height: 7\n }, _ref13), _ref14, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask4_411_152\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 64,\n y: 32,\n width: 33,\n height: 7\n }, _ref15), _ref16, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask5_411_152\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 64,\n y: 32,\n width: 33,\n height: 7\n }, _ref17), _ref18, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask6_411_152\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 64,\n y: 32,\n width: 33,\n height: 7\n }, _ref19), _ref20, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask7_411_152\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 64,\n y: 32,\n width: 33,\n height: 7\n }, _ref21), _ref22, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask8_411_152\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 64,\n y: 32,\n width: 33,\n height: 7\n }, _ref23), _ref24, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask9_411_152\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 64,\n y: 32,\n width: 33,\n height: 7\n }, _ref25), _ref26, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask10_411_152\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 64,\n y: 32,\n width: 33,\n height: 7\n }, _ref27), _ref28, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask11_411_152\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 64,\n y: 32,\n width: 33,\n height: 7\n }, _ref29), _ref30, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask12_411_152\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 64,\n y: 32,\n width: 33,\n height: 7\n }, _ref31), _ref32, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask13_411_152\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 64,\n y: 32,\n width: 33,\n height: 7\n }, _ref33), _ref34, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask14_411_152\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 82,\n y: 32,\n width: 4,\n height: 2\n }, _ref35), _ref36, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask15_411_152\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 84,\n y: 32,\n width: 3,\n height: 3\n }, _ref37), _ref38, _ref39, _ref40, _ref41, _ref42, _ref43, _ref44, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask16_411_152\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 62,\n y: 48,\n width: 36,\n height: 36\n }, _ref45), _ref46, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask17_411_152\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 62,\n y: 48,\n width: 36,\n height: 36\n }, _ref47), _ref48, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask18_411_152\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 62,\n y: 48,\n width: 36,\n height: 36\n }, _ref49), _ref50, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask19_411_152\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 62,\n y: 48,\n width: 36,\n height: 36\n }, _ref51), _ref52, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask20_411_152\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 62,\n y: 48,\n width: 36,\n height: 36\n }, _ref53), _ref54, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask21_411_152\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 62,\n y: 48,\n width: 36,\n height: 36\n }, _ref55), _ref56, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask22_411_152\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 62,\n y: 48,\n width: 36,\n height: 36\n }, _ref57), _ref58, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask23_411_152\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 62,\n y: 48,\n width: 36,\n height: 36\n }, _ref59), _ref60, _ref61, _ref62, _ref63), _ref64);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgLaptopTick, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/laptop-tick.911218f9.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"launch_svg__a\",\n d: \"M18 19H6c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h5c.55 0 1-.45 1-1s-.45-1-1-1H5a2 2 0 00-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-6c0-.55-.45-1-1-1s-1 .45-1 1v5c0 .55-.45 1-1 1zM14 4c0 .55.45 1 1 1h2.59l-9.13 9.13a.996.996 0 101.41 1.41L19 6.41V9c0 .55.45 1 1 1s1-.45 1-1V3h-6c-.55 0-1 .45-1 1z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#launch_svg__a\"\n});\n\nvar SvgLaunch = function SvgLaunch(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgLaunch, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/launch.6adfa27e.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"link_svg__a\",\n d: \"M17 7h-3c-.55 0-1 .45-1 1s.45 1 1 1h3c1.65 0 3 1.35 3 3s-1.35 3-3 3h-3c-.55 0-1 .45-1 1s.45 1 1 1h3c2.76 0 5-2.24 5-5s-2.24-5-5-5zm-9 5c0 .55.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1H9c-.55 0-1 .45-1 1zm2 3H7c-1.65 0-3-1.35-3-3s1.35-3 3-3h3c.55 0 1-.45 1-1s-.45-1-1-1H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h3c.55 0 1-.45 1-1s-.45-1-1-1z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#link_svg__a\"\n});\n\nvar SvgLink = function SvgLink(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgLink, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/link.8c502bfa.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"clipPath\", {\n id: \"__lottie_element_2\"\n}, /*#__PURE__*/React.createElement(\"rect\", {\n width: 26,\n height: 26,\n x: 0,\n y: 0\n})), /*#__PURE__*/React.createElement(\"clipPath\", {\n id: \"__lottie_element_4\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M0,0 L26,0 L26,26 L0,26z\"\n})), /*#__PURE__*/React.createElement(\"clipPath\", {\n id: \"__lottie_element_5\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#ffffff\",\n clipRule: \"nonzero\",\n d: \" M24,0 C24,0 24,24 24,24 C24,24 0,24 0,24 C0,24 0,0 0,0 C0,0 24,0 24,0\",\n fillOpacity: 1\n})));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"rgb(255,255,255)\",\n fillOpacity: 0,\n d: \" M24,0 C24,0 24,24 24,24 C24,24 0,24 0,24 C0,24 0,0 0,0 C0,0 24,0 24,0z\"\n});\n\nvar _ref4 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"rgb(37,0,69)\",\n fillOpacity: 1,\n d: \" M10,14.90999984741211 C10,14.90999984741211 10,17 10,17 C10,17.549999237060547 9.550000190734863,18 9,18 C9,18 3,18 3,18 C2.450000047683716,18 2,17.549999237060547 2,17 C2,17 2,14.90999984741211 2,14.90999984741211 C2,14.640000343322754 2.109999895095825,14.390000343322754 2.2899999618530273,14.199999809265137 C2.2899999618530273,14.199999809265137 6,10.5 6,10.5 C6,10.5 9.710000038146973,14.210000038146973 9.710000038146973,14.210000038146973 C9.890000343322754,14.390000343322754 10,14.649999618530273 10,14.90999984741211 C10,14.90999984741211 10,14.90999984741211 10,14.90999984741211z M2,0 C0.8999999761581421,0 0,0.8999999761581421 0,2 C0,2 0.009999999776482582,5.179999828338623 0.009999999776482582,5.179999828338623 C0.009999999776482582,5.710000038146973 0.2199999988079071,6.210000038146973 0.5899999737739563,6.590000152587891 C0.5899999737739563,6.590000152587891 4,10 4,10 C4,10 0.5899999737739563,13.430000305175781 0.5899999737739563,13.430000305175781 C0.2199999988079071,13.800000190734863 0.009999999776482582,14.3100004196167 0.009999999776482582,14.84000015258789 C0.009999999776482582,14.84000015258789 0,18 0,18 C0,19.100000381469727 0.8999999761581421,20 2,20 C2,20 10,20 10,20 C11.100000381469727,20 12,19.100000381469727 12,18 C12,18 12,14.84000015258789 12,14.84000015258789 C12,14.3100004196167 11.789999961853027,13.800000190734863 11.420000076293945,13.430000305175781 C11.420000076293945,13.430000305175781 8,10 8,10 C8,10 11.40999984741211,6.599999904632568 11.40999984741211,6.599999904632568 C11.789999961853027,6.21999979019165 12,5.710000038146973 12,5.179999828338623 C12,5.179999828338623 12,2 12,2 C12,0.8999999761581421 11.100000381469727,0 10,0 C10,0 2,0 2,0 C2,0 2,0 2,0z\"\n});\n\nvar SvgLoading = function SvgLoading(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 26 26\",\n width: 26,\n height: 26,\n preserveAspectRatio: \"xMidYMid meet\",\n style: {\n width: \"100%\",\n height: \"100%\",\n transform: \"translate3d(0px, 0px, 0px)\",\n contentVisibility: \"visible\"\n },\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#__lottie_element_2)\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#__lottie_element_4)\",\n transform: \"matrix(1,0,0,1,0,0)\",\n opacity: 1,\n style: {\n display: \"block\"\n }\n }, /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#__lottie_element_5)\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n transform: \"matrix(1,0,0,1,0,0)\",\n opacity: 1,\n style: {\n display: \"block\"\n }\n }, _ref3), /*#__PURE__*/React.createElement(\"g\", {\n transform: \"matrix(1,0,0,1,6,2)\",\n opacity: 1,\n style: {\n display: \"block\"\n }\n }, _ref4)))));\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgLoading, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/loading.e38a3ad6.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"lock_svg__a\",\n d: \"M18 8.5h-1v-2c0-2.76-2.24-5-5-5s-5 2.24-5 5v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm-3-9v-2c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#lock_svg__a\"\n});\n\nvar SvgLock = function SvgLock(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgLock, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/lock.500b120a.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M18 8.5h-1v-2c0-2.76-2.24-5-5-5s-5 2.24-5 5v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-10c0-1.1-.9-2-2-2zm-9-2c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9v-2zm9 14H6v-10h12v10zm-6-3c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z\"\n});\n\nvar SvgLockMau = function SvgLockMau(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n fill: \"none\",\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgLockMau, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/lock_mau.6e827161.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M160 80.5c0 44.46-35.818 80.5-80 80.5S0 124.96 0 80.5 35.818 0 80 0s80 36.04 80 80.5\",\n id: \"a\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"g\", {\n fill: \"none\",\n fillRule: \"evenodd\"\n}, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"b\",\n fill: \"#fff\"\n}, /*#__PURE__*/React.createElement(\"use\", {\n xlinkHref: \"#a\"\n})), /*#__PURE__*/React.createElement(\"use\", {\n fill: \"#EEF2F6\",\n xlinkHref: \"#a\"\n}), /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#b)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#171C94\",\n d: \"M70.244 113.466h19.633V97.14H70.244z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n stroke: \"#171C94\",\n strokeWidth: 0.534,\n d: \"M70.244 113.466h19.633V97.14H70.244z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#211551\",\n d: \"M30.26 94.657h100.158V41.511H30.26z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M125.29 103.083H35.386c-2.832 0-5.128-2.31-5.128-5.16v-6.726h100.158v6.726c0 2.85-2.296 5.16-5.128 5.16\",\n fill: \"#211551\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#EE2737\",\n d: \"M32.493 92.698h95.691V44.904H32.493z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#211551\",\n d: \"M58.36 117.273h43.4v-4.24h-43.4z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M79.962 43.195a.819.819 0 01-.816.821.818.818 0 01-.815-.82c0-.455.365-.822.815-.822.45 0 .816.367.816.821\",\n fill: \"#C8D8ED\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M77.007 51.89L59.262 82.819c-.952 1.657.238 3.727 2.139 3.727h35.492c1.9 0 3.09-2.07 2.14-3.727l-17.747-30.93c-.952-1.655-3.328-1.655-4.279 0\",\n fill: \"#FFF\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M79.146 76.983c1.135 0 1.968.836 1.968 1.922v.28c0 1.087-.833 1.923-1.968 1.923-1.108 0-1.966-.836-1.966-1.924v-.28c0-1.085.858-1.921 1.966-1.921zm-1.966-14.41c-.056-.67.332-1.2.97-1.2h1.992c.638 0 1.054.53.997 1.2l-.968 11.37c-.056.616-.47 1.005-1.025 1.005-.553 0-.941-.39-.996-1.004l-.97-11.371z\",\n fill: \"#EE2737\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M16.98 73.101c-.984-.668-4.444 1.372-7.262 5.12-.167-5.114-2.052-9.149-3.327-9.149-1.274 0-3.16 4.04-3.328 9.156-2.817-3.753-6.28-5.795-7.265-5.127-1.062.72-.303 5.327 2.607 9.668 2.91 4.344 6.458 7.057 7.93 6.06.003-.003.004-.005.008-.007.016 0 .032.006.048.006s.03-.006.046-.006l.008.006c1.468.998 5.02-1.715 7.93-6.059 2.908-4.341 3.669-8.947 2.605-9.668\",\n fill: \"#171C94\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#F58220\",\n d: \"M-9.944 95.288h32.67V85.64h-32.67zM16.34 117.447H-3.556l-3.618-22.158h27.132z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#E35205\",\n d: \"M-6.588 98.898H19.37l.587-3.609h-27.13z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M164.462 73.101c-.984-.668-4.444 1.372-7.262 5.12-.167-5.114-2.052-9.149-3.327-9.149-1.274 0-3.16 4.04-3.328 9.156-2.817-3.753-6.28-5.795-7.265-5.127-1.062.72-.303 5.327 2.607 9.668 2.909 4.344 6.46 7.057 7.93 6.06.003-.003.004-.005.008-.007.016 0 .031.006.048.006.016 0 .03-.006.046-.006l.008.006c1.468.998 5.02-1.715 7.93-6.059 2.907-4.341 3.669-8.947 2.605-9.668\",\n fill: \"#171C94\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#F58220\",\n d: \"M137.539 95.288h32.67V85.64h-32.67zM163.823 117.447h-19.9l-3.615-22.158h27.132z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#E35205\",\n d: \"M140.895 98.898h25.957l.586-3.609h-27.13z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#75787B\",\n d: \"M-4.94 163.431h168.26v-46.158H-4.94z\"\n})));\n\nvar SvgLockedComputer = function SvgLockedComputer(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n width: 160,\n height: 161,\n viewBox: \"0 0 160 161\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgLockedComputer, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/locked-computer.f1847226.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n fillRule: \"evenodd\",\n d: \"M40.335 0c.874 0 1.166.582 1.166 1.165v61.137c0 .582-.292 1.165-1.166 1.165H.972c-.583 0-.972-.486-.972-1.068V14.265h11.955l-4.86 1.747v26.396c0 .777.389 1.165 1.07 1.165h16.23c5.54-.194 10.01-4.755 10.01-10.287 0-3.688-1.943-6.89-4.762-8.734 1.75-1.553 3.11-4.173 3.11-6.793 0-6.793-4.859-10.675-11.76-10.675h-6.706V0h26.048zM21.09 47.163H19.73c-.486 0-.583.194-.778.486-.045.134-.902 2.453-1.81 4.905l-.328.885-1.846 4.981s-.195.486.388.486h.972c.292 0 .583-.097.68-.486.098-.388.68-1.94.68-1.94h5.444s.583 1.65.68 1.94c.097.389.486.486.68.486h.972c.583 0 .389-.486.389-.486s-3.888-10.48-3.985-10.771c-.194-.292-.291-.486-.777-.486zm-9.33 0H7.483c-.389 0-.389.291-.389.486V58.42c0 .486.389.389.486.389h1.07c.193 0 .388-.097.388-.389V54.54h2.721c2.041 0 3.79-1.65 3.79-3.785 0-1.844-1.652-3.59-3.79-3.59zm14.19 0h-1.07c-.544 0-.411.423-.391.48.002.006 1.662 2.943 3.253 5.765l.257.456.38.675v3.881c0 .194.097.389.389.389h.972c.194 0 .486 0 .486-.389v-3.978c1.75-3.106 3.887-6.89 3.887-6.89l.001-.006.005-.04c.005-.103-.033-.343-.492-.343H32.56c-.291 0-.583.097-.68.486l-.486.97-2.138 3.785-2.139-3.785-.485-.97c-.098-.389-.486-.486-.68-.486zm-5.54 1.941l2.04 5.435h-3.985l1.944-5.435zm-8.65 0c1.068 0 1.846.874 1.846 1.844 0 1.067-.778 1.844-1.847 1.844H9.04v-3.688h2.721zm10.107-35.033c2.041 0 3.693 1.747 3.693 3.785a3.689 3.689 0 01-3.693 3.688l-1.36.097c-.68 0-1.07.485-1.167 1.067v4.561c.097.68.486 1.068 1.166 1.068h3.305c2.235 0 3.985 1.747 3.985 3.979 0 2.038-1.652 3.784-3.693 3.978h-9.04c-.68 0-1.068-.388-1.166-1.164V14.07h7.97zM7.095 0v7.084H0V1.067C0 .485.486 0 .972 0h6.123z\"\n});\n\nvar SvgLogoBpay = function SvgLogoBpay(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 42 64\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgLogoBpay, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/logo_bpay.9a6af33b.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"mail_svg__a\",\n d: \"M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-.4 4.25l-6.54 4.09c-.65.41-1.47.41-2.12 0L4.4 8.25a.85.85 0 11.9-1.44L12 11l6.7-4.19a.85.85 0 11.9 1.44z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#mail_svg__a\"\n});\n\nvar SvgMail = function SvgMail(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgMail, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/mail.05571f53.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"title\", null, \"Group 7\");\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"g\", {\n id: \"\\\\uD83D\\\\uDCF1\\\\u2705-Investments-(I)\",\n stroke: \"none\",\n strokeWidth: 1,\n fill: \"none\",\n fillRule: \"evenodd\"\n}, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Investment-switch---Accum---Current-investment-switch---D01\",\n transform: \"translate(-128.000000, -776.000000)\"\n}, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group\",\n transform: \"translate(104.000000, 463.000000)\"\n}, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group-7\",\n transform: \"translate(24.000000, 313.000000)\"\n}, /*#__PURE__*/React.createElement(\"circle\", {\n id: \"Oval\",\n fill: \"#FFF0E0\",\n cx: 20,\n cy: 20,\n r: 20\n}), /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group\",\n transform: \"translate(8.000000, 8.000000)\",\n fill: \"#FF8200\"\n}, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group-3\",\n transform: \"translate(2.000000, 2.000000)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M14.1666667,13.3333333 C11.7075,13.3333333 9.66416667,12.8008333 8.33333333,11.9066667 C8.33333333,12.5283333 8.33333333,12.9383333 8.33333333,13.3333333 C8.33333333,14.7141667 10.945,15.8333333 14.1666667,15.8333333 C17.3883333,15.8333333 20,14.7141667 20,13.3333333 C20,12.9383333 20,12.5283333 20,11.9066667 C18.6691667,12.8008333 16.6258333,13.3333333 14.1666667,13.3333333 Z\",\n id: \"Path\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M14.1666667,17.5 C11.7075,17.5 9.66416667,16.9675 8.33333333,16.0733333 C8.33333333,16.695 8.33333333,17.105 8.33333333,17.5 C8.33333333,18.8808333 10.945,20 14.1666667,20 C17.3883333,20 20,18.8808333 20,17.5 C20,17.105 20,16.695 20,16.0733333 C18.6691667,16.9675 16.6258333,17.5 14.1666667,17.5 Z\",\n id: \"Path\"\n}), /*#__PURE__*/React.createElement(\"ellipse\", {\n id: \"Oval\",\n cx: 14.1666667,\n cy: 9.16666667,\n rx: 5.83333333,\n ry: 2.5\n}), /*#__PURE__*/React.createElement(\"ellipse\", {\n id: \"Oval\",\n cx: 5.83333333,\n cy: 2.5,\n rx: 5.83333333,\n ry: 2.5\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M6.66666667,14.9775 C6.39416667,14.9908333 6.1175,15 5.83333333,15 C3.37416667,15 1.33083333,14.4675 -3.0331293e-13,13.5733333 C-3.0331293e-13,14.195 -3.0331293e-13,14.605 -3.0331293e-13,15 C-3.0331293e-13,16.3808333 2.61166667,17.5 5.83333333,17.5 C6.11666667,17.5 6.39416667,17.4883333 6.66666667,17.4716667 L6.66666667,14.9775 Z\",\n id: \"Path\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M6.66666667,10.8108333 C6.39416667,10.8241667 6.1175,10.8333333 5.83333333,10.8333333 C3.37416667,10.8333333 1.33083333,10.3008333 -3.0331293e-13,9.40666667 C-3.0331293e-13,10.0283333 -3.0331293e-13,10.4383333 -3.0331293e-13,10.8333333 C-3.0331293e-13,12.2141667 2.61166667,13.3333333 5.83333333,13.3333333 C6.11666667,13.3333333 6.39416667,13.3216667 6.66666667,13.305 L6.66666667,10.8108333 Z\",\n id: \"Path\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M8.26666667,6.47166667 C7.515,6.59666667 6.70166667,6.66666667 5.83333333,6.66666667 C3.37416667,6.66666667 1.33083333,6.13416667 -1.21680443e-13,5.24 C-1.21680443e-13,5.86166667 -1.21680443e-13,6.27166667 -1.21680443e-13,6.66666667 C-1.21680443e-13,8.0475 2.61166667,9.16666667 5.83333333,9.16666667 C6.1175,9.16666667 6.395,9.155 6.66916667,9.13833333 C6.67916667,8.08583333 7.25833333,7.17166667 8.26666667,6.47166667 Z\",\n id: \"Path\"\n})))))));\n\nvar SvgMakeChangesInvestments = function SvgMakeChangesInvestments(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n width: \"40px\",\n height: \"40px\",\n viewBox: \"0 0 40 40\",\n ref: svgRef\n }, props), title === undefined ? _ref2 : title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgMakeChangesInvestments, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/make-changes-investments.c7345ce2.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"g\", {\n fill: \"none\",\n fillRule: \"evenodd\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M0-3h24v24H0z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n stroke: \"currentColor\",\n d: \"M22 .5c.413 0 .787.17 1.059.441.238.238.397.554.433.906L23.5 2l-.01 14a1.501 1.501 0 01-1.338 1.492L22 17.5H2c-.413 0-.787-.17-1.059-.441a1.498 1.498 0 01-.433-.906L.5 16V2c0-.412.17-.787.441-1.059.238-.238.554-.397.906-.433L2 .5h20zm-2.934 1.859a7.978 7.978 0 00-3.268 4.507A7.871 7.871 0 0015.5 9c0 .737.106 1.452.299 2.135a8.007 8.007 0 003.267 4.506h0l2.595-2.595L19.74 10.5h-1.523l-.075-.29C18.05 9.82 18 9.416 18 9c0-.52.079-1.021.216-1.5h1.523l1.922-2.546zM8 10.4c-1.21 0-3.116.382-4.518 1.107-.588.303-1.088.668-1.432 1.08-.353.423-.55.897-.55 1.413h0v1.5h13V14l-.01-.191c-.042-.443-.23-.852-.54-1.222-.344-.412-.844-.777-1.432-1.08C11.116 10.782 9.21 10.4 8 10.4zm0-7.9c-.968 0-1.843.391-2.476 1.024A3.489 3.489 0 004.5 6c0 .968.391 1.843 1.024 2.476A3.489 3.489 0 008 9.5c.968 0 1.843-.391 2.476-1.024A3.489 3.489 0 0011.5 6c0-.968-.391-1.843-1.024-2.476A3.489 3.489 0 008 2.5z\"\n}));\n\nvar SvgMemberDetails = function SvgMemberDetails(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 18\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgMemberDetails, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/member-details.2d2b0ecf.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"menu_svg__a\",\n d: \"M4 18h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm0-5h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zM3 7c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#menu_svg__a\"\n});\n\nvar SvgMenu = function SvgMenu(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgMenu, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/menu.1ebb5749.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M18 13H6c-.55 0-1-.45-1-1s.45-1 1-1h12c.55 0 1 .45 1 1s-.45 1-1 1z\"\n});\n\nvar SvgMinus = function SvgMinus(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n fill: \"none\",\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgMinus, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/minus.3eab23d2.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M80 160C124.183 160 160 124.183 160 80C160 35.8172 124.183 0 80 0C35.8172 0 0 35.8172 0 80C0 124.183 35.8172 160 80 160Z\",\n fill: \"white\"\n});\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask0_411_63)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M79.575 159.575C123.758 159.575 159.575 123.758 159.575 79.5752C159.575 35.3924 123.758 -0.424805 79.575 -0.424805C35.3922 -0.424805 -0.425003 35.3924 -0.425003 79.5752C-0.425003 123.758 35.3922 159.575 79.575 159.575Z\",\n fill: \"#F6F0DA\"\n}));\n\nvar _ref4 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M80 160C124.183 160 160 124.183 160 80C160 35.8172 124.183 0 80 0C35.8172 0 0 35.8172 0 80C0 124.183 35.8172 160 80 160Z\",\n fill: \"white\"\n});\n\nvar _ref5 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask1_411_63)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M127.696 27.1992H92.126C90.29 27.1992 88.801 28.6092 88.801 30.3492V50.4152C88.801 52.1552 90.29 53.5652 92.126 53.5652H95.569C95.965 54.8252 97.211 57.3842 97.816 57.4092C98.46 57.4362 100.08 54.7202 100.479 53.5652H127.695C129.531 53.5652 131.02 52.1552 131.02 50.4152V30.3492C131.021 28.6092 129.532 27.1992 127.696 27.1992Z\",\n fill: \"white\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M117.828 31.9226C115.684 31.9496 114.133 32.6966 112.914 33.8156C112.591 34.0846 112.457 34.4396 112.461 34.7706C112.47 35.4326 113.06 35.9766 113.782 35.9676C114.109 35.9636 114.409 35.8276 114.64 35.6486C115.561 34.8416 116.557 34.4106 117.792 34.3956C119.468 34.3746 120.482 35.2226 120.5 36.4586V36.5026C120.52 37.8926 119.319 38.7026 117.133 38.9286C116.505 39.0026 116.139 39.4476 116.239 40.0426L116.498 41.9376C116.575 42.4446 116.977 42.8146 117.513 42.8076L117.653 42.8056C118.187 42.7986 118.554 42.3976 118.64 41.9096L118.719 40.8926C121.299 40.4416 123.401 39.1576 123.363 36.3756L123.362 36.3316C123.326 33.5746 121.089 31.8816 117.828 31.9226Z\",\n fill: \"#260046\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M117.537 44.4201C116.582 44.4321 115.892 45.1021 115.904 45.9631L115.907 46.1841C115.919 47.0451 116.627 47.6981 117.582 47.6861C118.536 47.6741 119.226 47.0041 119.214 46.1431L119.211 45.9221C119.199 45.0611 118.491 44.4081 117.537 44.4201Z\",\n fill: \"#260046\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M106.351 49.2504H98.643C98.173 49.2504 97.789 48.8664 97.789 48.3964V31.4624C97.789 30.9924 98.173 30.6084 98.643 30.6084H106.351C106.821 30.6084 107.205 30.9924 107.205 31.4624V48.3964C107.205 48.8664 106.821 49.2504 106.351 49.2504Z\",\n fill: \"white\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M106.351 49.6367H98.643C97.959 49.6367 97.403 49.0807 97.403 48.3967V31.4627C97.403 30.7787 97.959 30.2227 98.643 30.2227H106.351C107.035 30.2227 107.591 30.7787 107.591 31.4627V48.3967C107.59 49.0807 107.034 49.6367 106.351 49.6367ZM98.643 30.9937C98.385 30.9937 98.174 31.2037 98.174 31.4627V48.3967C98.174 48.6547 98.384 48.8657 98.643 48.8657H106.351C106.609 48.8657 106.82 48.6557 106.82 48.3967V31.4627C106.82 31.2047 106.61 30.9937 106.351 30.9937H98.643Z\",\n fill: \"#260046\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M104.18 31.7494H100.529C100.277 31.7494 100.072 31.5434 100.072 31.2924V30.6084H104.638V31.2924C104.637 31.5444 104.431 31.7494 104.18 31.7494Z\",\n fill: \"#260046\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M104.18 32.1356H100.529C100.064 32.1356 99.686 31.7576 99.686 31.2926V30.6086C99.686 30.3956 99.859 30.2236 100.071 30.2236H104.637C104.85 30.2236 105.022 30.3966 105.022 30.6086V31.2926C105.022 31.7576 104.644 32.1356 104.18 32.1356ZM100.457 30.9936V31.2926C100.457 31.3316 100.49 31.3646 100.529 31.3646H104.18C104.219 31.3646 104.252 31.3316 104.252 31.2926V30.9936H100.457Z\",\n fill: \"#260046\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M104.364 34.6363C104.364 35.6403 103.55 36.3843 102.547 36.3843C101.544 36.3843 100.73 35.6393 100.73 34.6363C100.73 33.6323 101.544 32.8193 102.547 32.8193C103.551 32.8183 104.364 33.6323 104.364 34.6363Z\",\n fill: \"#260046\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M102.547 36.458C101.095 36.458 99.918 37.635 99.918 39.087H105.177C105.176 37.635 103.999 36.458 102.547 36.458Z\",\n fill: \"#EA4403\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M100.987 34.8237C100.987 33.9617 101.686 33.2637 102.547 33.2637C103.409 33.2637 104.107 33.9617 104.107 34.8237C104.107 35.6857 103.409 36.3837 102.547 36.3837C101.686 36.3847 100.987 35.6857 100.987 34.8237Z\",\n fill: \"white\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M103.14 35.7734H101.954V36.5204C101.954 36.8484 102.22 37.1134 102.547 37.1134C102.875 37.1134 103.14 36.8474 103.14 36.5204V35.7734V35.7734Z\",\n fill: \"white\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M103.138 36.5386C103.138 36.5326 103.14 36.5266 103.14 36.5206V36.2666C102.957 36.3416 102.757 36.3836 102.547 36.3836C102.337 36.3836 102.137 36.3416 101.954 36.2666V36.5206C101.954 36.5266 101.956 36.5326 101.956 36.5386C102.142 36.6026 102.34 36.6386 102.547 36.6386C102.754 36.6396 102.953 36.6026 103.138 36.5386Z\",\n fill: \"#F5F5F5\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M104.153 34.5287C104.153 34.6527 104.14 34.7717 104.114 34.8867C103.773 34.7897 103.417 34.3327 103.387 33.9777C103.079 34.4757 102.09 34.9837 101.461 34.9837C101.269 34.9837 101.084 34.9527 100.913 34.8957C100.886 34.7777 100.872 34.6557 100.872 34.5287C100.872 34.0937 101.041 33.6987 101.317 33.4047C101.649 33.1337 102.071 32.9717 102.534 32.9717C102.916 32.9717 103.271 33.0827 103.571 33.2747C103.927 33.5757 104.153 34.0257 104.153 34.5287Z\",\n fill: \"#260046\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M104.153 34.5287C104.153 34.6527 104.14 34.7717 104.114 34.8867C103.773 34.7897 103.417 34.3327 103.387 33.9777C103.079 34.4757 102.09 34.9837 101.461 34.9837C101.269 34.9837 101.084 34.9527 100.913 34.8957C100.886 34.7777 100.872 34.6557 100.872 34.5287C100.872 34.0937 101.041 33.6987 101.317 33.4047C101.617 33.0867 102.041 32.8877 102.513 32.8877C102.916 32.8877 103.286 33.0327 103.571 33.2737C103.927 33.5757 104.153 34.0257 104.153 34.5287Z\",\n fill: \"#260046\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M99.981 42.8914C99.548 42.8914 99.193 42.5374 99.193 42.1034C99.193 41.6704 99.547 41.3154 99.981 41.3154C100.414 41.3154 100.769 41.6694 100.769 42.1034C100.769 42.5364 100.415 42.8914 99.981 42.8914Z\",\n fill: \"#BEB2C7\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M99.981 45.034C99.548 45.034 99.193 44.68 99.193 44.246C99.193 43.813 99.547 43.458 99.981 43.458C100.414 43.458 100.769 43.812 100.769 44.246C100.769 44.679 100.415 45.034 99.981 45.034Z\",\n fill: \"#BEB2C7\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M102.407 42.8914C101.974 42.8914 101.619 42.5374 101.619 42.1034C101.619 41.6704 101.973 41.3154 102.407 41.3154C102.84 41.3154 103.195 41.6694 103.195 42.1034C103.195 42.5364 102.84 42.8914 102.407 42.8914Z\",\n fill: \"#BEB2C7\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M102.407 45.034C101.974 45.034 101.619 44.68 101.619 44.246C101.619 43.813 101.973 43.458 102.407 43.458C102.84 43.458 103.195 43.812 103.195 44.246C103.195 44.679 102.84 45.034 102.407 45.034Z\",\n fill: \"#BEB2C7\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M104.873 42.8914C104.44 42.8914 104.085 42.5374 104.085 42.1034C104.085 41.6704 104.439 41.3154 104.873 41.3154C105.306 41.3154 105.661 41.6694 105.661 42.1034C105.661 42.5364 105.307 42.8914 104.873 42.8914Z\",\n fill: \"#BEB2C7\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M104.873 45.034C104.44 45.034 104.085 44.68 104.085 44.246C104.085 43.813 104.439 43.458 104.873 43.458C105.306 43.458 105.661 43.812 105.661 44.246C105.661 44.679 105.307 45.034 104.873 45.034Z\",\n fill: \"#BEB2C7\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M99.981 47.3162C99.548 47.3162 99.193 46.9622 99.193 46.5282C99.193 46.0952 99.547 45.7402 99.981 45.7402C100.414 45.7402 100.769 46.0942 100.769 46.5282C100.769 46.9612 100.415 47.3162 99.981 47.3162Z\",\n fill: \"#BEB2C7\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M102.407 47.3162C101.974 47.3162 101.619 46.9622 101.619 46.5282C101.619 46.0952 101.973 45.7402 102.407 45.7402C102.84 45.7402 103.195 46.0942 103.195 46.5282C103.195 46.9612 102.84 47.3162 102.407 47.3162Z\",\n fill: \"#BEB2C7\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M104.873 47.3162C104.44 47.3162 104.085 46.9622 104.085 46.5282C104.085 46.0952 104.439 45.7402 104.873 45.7402C105.306 45.7402 105.661 46.0942 105.661 46.5282C105.661 46.9612 105.307 47.3162 104.873 47.3162Z\",\n fill: \"#BEB2C7\"\n}));\n\nvar _ref6 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M80 160C124.183 160 160 124.183 160 80C160 35.8172 124.183 0 80 0C35.8172 0 0 35.8172 0 80C0 124.183 35.8172 160 80 160Z\",\n fill: \"white\"\n});\n\nvar _ref7 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask2_411_63)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M73.793 77.8496C73.793 77.8496 73.793 77.8506 73.794 77.8506C73.794 77.8506 73.793 77.8496 73.793 77.8496Z\",\n fill: \"#260046\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M73.309 76.9834C73.348 76.9824 73.397 77.0374 73.448 77.1074C73.395 77.0294 73.348 76.9824 73.309 76.9834Z\",\n fill: \"#260046\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M80.943 185.64C78.586 180.994 78.456 175.442 78.44 170.348C78.405 159.641 79.425 148.916 80.196 138.256C81.165 124.865 82.538 112.024 79.053 98.9052C78.914 98.3822 78.032 94.3902 76.991 89.9542C76.55 88.0732 76.08 86.1142 75.625 84.3032C72.958 85.9492 69.979 86.5532 67.482 86.5532C64.842 86.5532 61.075 85.9322 58.061 83.6582C57.879 89.2092 57.972 97.1202 57.044 107.858C55.61 124.467 53.746 125.923 52.075 139.856C48.36 170.837 46.771 188.666 45.447 190.326C44.742 191.21 41.758 191.381 38.442 191.274C38.226 199.971 38.208 210.168 38.453 222.222C38.453 222.222 42.362 222.703 48.298 223.187C53.025 223.573 59.04 223.956 65.397 224.104C67.121 224.144 68.866 224.17 70.622 224.17C70.944 224.17 71.254 224.165 71.574 224.163C78.045 224.134 83.841 223.821 88.482 223.452C95.463 222.896 99.827 222.221 99.827 222.221C99.728 209.945 99.347 199.584 98.78 190.693C91.304 190.645 84.098 190.072 84.098 190.072C82.87 188.728 81.769 187.268 80.943 185.64Z\",\n fill: \"#260046\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M75.286 82.9707C75.398 83.4037 75.511 83.8467 75.625 84.3027C75.511 83.8467 75.398 83.4037 75.286 82.9707Z\",\n fill: \"#260046\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M74.974 81.7822C75.037 82.0192 75.101 82.2602 75.166 82.5082C75.101 82.2612 75.037 82.0182 74.974 81.7822Z\",\n fill: \"#260046\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M74.693 80.749C74.729 80.879 74.765 81.007 74.802 81.142C74.765 81.008 74.729 80.879 74.693 80.749Z\",\n fill: \"#260046\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M59.648 77.3056C61.468 72.8186 60.411 71.9546 59.419 68.9786C58.282 65.5676 73.644 65.3046 73.027 68.9786C72.522 71.9806 71.701 73.4936 72.57 76.9196C72.85 76.9396 73.109 76.9606 73.32 76.9836C73.454 76.9796 79.713 76.8156 84.596 77.9086C84.981 77.9476 85.369 78.0056 85.762 78.0946C87.674 78.5266 89.757 79.3476 91.351 80.5306C92.229 81.1826 92.984 81.9546 93.688 82.7836C93.716 82.1096 93.742 81.4346 93.722 80.7656C93.551 75.0816 92.215 69.6856 90.521 64.3856C88.547 58.2096 86.087 52.1646 84.416 45.9496C84.111 44.8166 83.751 43.7376 83.344 42.7136C78.278 29.9626 65.739 25.7626 56.542 33.7956C48.836 36.2596 46.713 46.7706 46.033 53.6846C45.116 63.0166 44.928 72.7456 44.532 82.2466C50.408 79.0676 58.598 77.5246 58.6 77.5236C58.895 77.4426 59.257 77.3716 59.648 77.3056Z\",\n fill: \"#260046\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M112.146 189.741C112.146 189.741 101.57 176.425 99.984 154.439C99.284 144.741 95.266 127.539 92.341 112.279C94.44 117.569 90.259 115.51 93.116 118.635C95.461 121.201 98.227 123.435 101.456 122.148C104.952 120.756 106.45 116.361 104.991 113.116L96.683 87.6026C95.848 85.7656 94.862 84.1696 93.686 82.7836C92.982 81.9546 92.227 81.1826 91.349 80.5306C89.755 79.3466 87.672 78.5256 85.76 78.0946C85.367 78.0056 84.979 77.9476 84.594 77.9086C79.712 76.8156 73.453 76.9796 73.318 76.9836C73.317 76.9836 73.307 76.9836 73.307 76.9836C73.346 76.9826 73.393 77.0296 73.446 77.1076C73.495 77.1806 73.549 77.2806 73.606 77.4026C73.664 77.5256 73.726 77.6756 73.792 77.8496C73.792 77.8496 73.792 77.8506 73.793 77.8506C74.043 78.5086 74.351 79.5226 74.692 80.7486C74.728 80.8786 74.764 81.0076 74.801 81.1416C74.858 81.3496 74.915 81.5636 74.974 81.7816C75.037 82.0176 75.101 82.2606 75.166 82.5076C75.206 82.6616 75.246 82.8126 75.287 82.9706C75.399 83.4036 75.512 83.8456 75.626 84.3026C76.081 86.1136 76.55 88.0726 76.992 89.9536C78.033 94.3896 78.915 98.3816 79.054 98.9046C82.54 112.025 81.166 124.865 80.197 138.256C79.426 148.916 78.406 159.641 78.441 170.348C78.458 175.443 78.587 180.994 80.944 185.64C81.77 187.268 82.871 188.729 84.099 190.074C84.099 190.074 91.305 190.647 98.781 190.695C103.822 190.728 108.985 190.522 112.146 189.741Z\",\n fill: \"#EA4403\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M67.482 86.5521C69.979 86.5521 72.958 85.9481 75.625 84.3021C74.611 80.2651 73.675 76.9721 73.308 76.9831C73.308 76.9831 73.318 76.9831 73.319 76.9831C73.108 76.9601 72.849 76.9391 72.569 76.9191C71.701 73.4931 72.521 71.9801 73.026 68.9781C73.643 65.3041 58.281 65.5671 59.418 68.9781C60.41 71.9551 61.467 72.8191 59.647 77.3051C59.256 77.3711 58.894 77.4411 58.598 77.5221C58.282 79.1111 58.143 81.1421 58.061 83.6581C61.075 85.9311 64.842 86.5521 67.482 86.5521Z\",\n fill: \"#F9BC84\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n opacity: 0.5,\n d: \"M69.018 74.3823C66.422 75.4313 63.365 74.5973 60.526 72.4063C60.647 72.9243 60.687 73.4823 60.553 74.1433C60.465 74.5763 63.667 76.6323 66.503 76.6723C69.384 76.7123 72.176 74.8643 72.15 74.2193C72.12 73.4723 72.245 72.8183 72.406 72.1973C71.756 72.7213 71.097 73.1943 70.427 73.5573C69.992 73.8873 69.529 74.1763 69.018 74.3823Z\",\n fill: \"#F9BC84\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M78.289 44.9438C74.812 39.1928 68.14 36.2118 61.824 38.1188C57.791 39.3358 54.733 42.3048 53.099 46.0388C50.943 49.8418 50.902 56.1348 53.402 62.4168C55.123 66.7418 57.718 70.2387 60.527 72.4067C63.365 74.5977 66.422 75.4318 69.019 74.3828C69.53 74.1768 69.993 73.8878 70.429 73.5578C71.099 73.1948 71.758 72.7218 72.408 72.1978C75.186 69.9568 77.704 66.3368 79.259 61.8598C81.609 55.0918 81.07 48.4398 78.289 44.9438Z\",\n fill: \"#F9BC84\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M82.5202 57.5388C83.1537 55.0011 82.5604 52.6676 81.1952 52.3268C79.8299 51.986 78.2095 53.7669 77.576 56.3045C76.9425 58.8422 77.5358 61.1757 78.901 61.5165C80.2663 61.8574 81.8867 60.0765 82.5202 57.5388Z\",\n fill: \"#F9BC84\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M53.4131 61.5072C54.7784 61.1664 55.3716 58.8329 54.7381 56.2952C54.1046 53.7575 52.4843 51.9766 51.119 52.3174C49.7537 52.6583 49.1605 54.9918 49.794 57.5294C50.4275 60.0671 52.0478 61.848 53.4131 61.5072Z\",\n fill: \"#F9BC84\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M60.83 35.7393C60.902 36.1013 61.019 36.4173 61.136 36.7363C52.755 35.1483 46.134 46.1713 51.551 52.3253C55.475 48.9163 55.242 42.1633 62.246 38.6293C65.999 42.9943 75.604 42.4083 80.755 52.3333C88.112 39.9713 72.112 28.4553 60.83 35.7393Z\",\n fill: \"#260046\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M86.226 88.2461C86.221 88.2461 86.216 88.2461 86.211 88.2461L82.855 88.5401L79.271 88.8541C79.096 88.8691 79.079 89.1181 79.249 89.1571L83.059 90.0371L81.988 92.3321C81.916 92.4871 82.113 92.6261 82.235 92.5071L86.331 88.5101C86.432 88.4131 86.361 88.2461 86.226 88.2461Z\",\n fill: \"#E9E5EC\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M65.15 33.415C51.36 33.415 50.567 50.79 50.56 50.965V50.982H49.728C49.014 50.982 48.436 53.205 48.436 55.947C48.436 58.689 49.015 60.912 49.728 60.912H50.728C51.172 63.322 53.323 70.032 63.505 70.032V69.215C53.985 69.215 51.969 63.226 51.544 60.913H52.312C53.026 60.913 53.604 58.69 53.604 55.948C53.604 53.206 53.025 50.983 52.312 50.983H51.481C51.486 50.853 51.676 46.695 53.452 42.59C55.821 37.113 59.756 34.336 65.149 34.336C78.085 34.336 80.276 52.207 80.297 52.388L81.209 52.283C81.19 52.094 78.907 33.415 65.15 33.415Z\",\n fill: \"#DED9E3\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M62.992 68.6855C62.546 68.6855 62.185 69.1056 62.185 69.6236C62.185 70.1416 62.546 70.5615 62.992 70.5615C63.437 70.5615 63.799 70.1416 63.799 69.6236C63.798 69.1056 63.437 68.6855 62.992 68.6855Z\",\n fill: \"#260046\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M106.274 78.5186C106.249 78.4526 106.227 78.3847 106.207 78.3137C106.02 77.6567 106.043 77.2847 106.501 76.7877C108.036 75.1187 110.494 74.3887 112.667 74.0207C113.308 73.9117 113.965 73.8197 114.547 73.5307C115.708 72.9547 117.436 71.6487 117.997 70.5577C118.441 69.6947 117.976 68.7067 118.791 68.1397C119.04 67.9667 119.503 67.6767 119.721 68.0347C119.896 68.3217 119.721 68.8207 119.611 69.0977C119.111 70.3567 118.721 71.8547 117.693 72.8037C116.509 73.8977 120.238 70.9026 120.42 70.7406C120.602 70.5776 121.868 66.8796 123.395 65.8786C123.744 65.6496 124.316 65.5976 124.4 66.1166C124.479 66.6086 124.058 67.3576 123.875 67.7966C123.305 69.1596 122.665 70.5316 122.665 70.5316C123.139 69.6926 123.644 68.8696 124.169 68.0616C124.587 67.4176 125.02 66.7807 125.493 66.1757C125.821 65.7567 126.22 65.1716 126.706 64.9196C126.954 64.7906 127.246 64.7647 127.483 64.9537C128.256 65.5707 126.985 67.4407 126.654 68.0237C125.312 70.3857 123.233 74.4816 123.111 74.6146C122.989 74.7476 111.157 81.5487 108.102 80.0827C107.789 79.9327 107.368 79.8087 107.093 79.5967C106.711 79.3017 106.44 78.9616 106.274 78.5186Z\",\n fill: \"#F9BC84\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M93.439 113.304C93.451 113.197 93.365 113.102 93.341 112.997C93.11 112 96.876 94.6878 97.227 93.6978C97.795 92.0978 99.155 87.9438 99.723 86.3428C100.433 84.3408 101.143 82.3388 101.853 80.3368C101.853 80.3368 102.508 74.9538 109.59 73.3528C110.541 73.1378 111.52 73.0998 112.491 73.1528C113.455 73.2048 114.353 73.4288 115.307 73.2968C116.355 73.1508 117.396 72.9548 118.429 72.7258C118.958 72.6088 119.486 72.4818 120.011 72.3498C120.464 72.2358 121.051 72.1798 121.436 71.9018C122.944 70.8138 123.864 69.2338 125.178 67.9568C125.864 67.2898 126.674 66.7688 127.479 66.2518C127.667 66.1308 127.884 66.0048 128.101 66.0588C128.37 66.1258 128.499 66.4418 128.502 66.7188C128.51 67.3508 128.099 67.9008 127.717 68.4058C126.811 69.6028 125.972 70.8648 125.137 72.1018C124.358 73.2568 123.547 74.2598 122.293 74.9288C120.244 76.0218 110.303 80.1478 109.227 81.2128C108.978 81.4598 108.923 81.9328 108.853 82.2558C108.236 85.1228 108.096 85.7438 107.308 90.5398C107.088 91.8768 104.74 111.723 104.692 113.077C104.62 115.119 100.831 117.271 99.185 117.502C97.858 117.688 95.915 117.417 94.624 117.039C93.555 116.727 93.155 115.766 93.439 113.304Z\",\n fill: \"#F9BC84\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M113.496 73.1361C114.55 73.0521 115.783 72.0071 116.733 71.5431C117.522 71.1581 117.736 69.3821 118.2 68.6521C118.515 68.1571 118.851 67.6411 119.367 67.3621C119.685 67.1901 120.167 67.1691 120.329 67.4931C120.406 67.6471 120.382 67.8291 120.356 67.9991C120.26 68.6371 120.163 69.2751 120.067 69.9121C119.827 71.5001 119.215 72.9641 118.037 74.0861C117.404 74.6891 116.687 75.1991 116.042 75.7901C115.394 76.3841 114.793 77.0771 113.975 77.4001C113.522 77.5791 113.031 77.6311 112.545 77.6651C112.014 77.7021 111.445 77.7111 110.994 77.4291C110.5 77.1211 110.26 76.5371 110.098 75.9781C109.944 75.4461 109.834 76.0121 109.768 75.4621C109.731 75.1551 109.71 74.8371 109.801 74.5421C110.282 72.9961 112.288 73.2331 113.496 73.1361Z\",\n fill: \"#F9BC84\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M96.277 93.6084L110.659 95.3454C110.659 95.3454 109.386 104.455 104.753 119.192C101.021 131.066 90.967 119.819 90.967 119.819L96.277 93.6084Z\",\n fill: \"#EA4403\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M28.9 151.8L34.824 154.173C30.248 179.85 27.773 190.326 27.773 190.326C27.773 190.326 33.483 191.114 38.442 191.274C41.758 191.381 44.742 191.211 45.447 190.326C46.771 188.666 48.36 170.838 52.075 139.856C53.746 125.923 55.61 124.466 57.044 107.858C57.971 97.1195 57.879 89.2085 58.061 83.6585C58.143 81.1435 58.282 79.1125 58.598 77.5225C58.596 77.5225 50.407 79.0655 44.53 82.2455C43.084 83.0275 34.777 105.826 31.642 116.013C31.487 116.518 15.055 148.002 14.663 148.338\",\n fill: \"#EA4403\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M34.824 154.174C34.824 154.174 38.902 130.449 41.308 116.014C42.745 107.394 42.483 102.3 42.483 102.3C42.483 102.3 35.104 150.102 31.643 152.779L34.824 154.174Z\",\n fill: \"#260046\"\n}));\n\nvar _ref8 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"clipPath\", {\n id: \"clip0_411_63\"\n}, /*#__PURE__*/React.createElement(\"rect\", {\n width: 160,\n height: 160,\n fill: \"white\"\n})));\n\nvar SvgMobileError = function SvgMobileError(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n width: 160,\n height: 160,\n viewBox: \"0 0 160 160\",\n fill: \"none\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#clip0_411_63)\"\n }, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask0_411_63\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 0,\n y: 0,\n width: 160,\n height: 160\n }, _ref2), _ref3, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask1_411_63\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 0,\n y: 0,\n width: 160,\n height: 160\n }, _ref4), _ref5, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask2_411_63\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 0,\n y: 0,\n width: 160,\n height: 160\n }, _ref6), _ref7), _ref8);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgMobileError, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/mobile-error.4eb3b192.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n fillOpacity: 0.8,\n d: \"M0 621.742L375 0v816H0V621.742z\"\n});\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"linearGradient\", {\n id: \"mobile-sunrise-yellow-gradient_svg__paint0_linear_3079_41911\",\n x1: 393.135,\n x2: 49.027,\n y1: -84.294,\n y2: 322.737,\n gradientUnits: \"userSpaceOnUse\"\n}, /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.365,\n stopColor: \"currentColor\",\n stopOpacity: 0.21\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n stopColor: \"currentColor\",\n stopOpacity: 0\n})));\n\nvar SvgMobileSunriseYellowGradient = function SvgMobileSunriseYellowGradient(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n fill: \"none\",\n viewBox: \"0 0 375 816\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgMobileSunriseYellowGradient, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/mobile-sunrise-yellow-gradient.cd4050ed.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"more-horiz_svg__a\",\n d: \"M6 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#more-horiz_svg__a\"\n});\n\nvar SvgMoreHoriz = function SvgMoreHoriz(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgMoreHoriz, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/more-horiz.a390d07d.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"more-vert_svg__a\",\n d: \"M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#more-vert_svg__a\"\n});\n\nvar SvgMoreVert = function SvgMoreVert(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgMoreVert, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/more-vert.7ce75955.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"notifications_svg__a\",\n d: \"M12.001 21.75c1.1 0 2-.9 2-2h-4a2 2 0 002 2zm6-6v-5c0-3.07-1.64-5.64-4.5-6.32v-.68c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68c-2.87.68-4.5 3.24-4.5 6.32v5l-1.29 1.29c-.63.63-.19 1.71.7 1.71h13.17c.89 0 1.34-1.08.71-1.71l-1.29-1.29z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#notifications_svg__a\"\n});\n\nvar SvgNotifications = function SvgNotifications(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgNotifications, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/notifications.dbd9524a.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"style\", null, \".notify-employer_svg__st5{fill:#fff}.notify-employer_svg__st6{fill:#ea4403}.notify-employer_svg__st7{fillRule:evenodd;clip-rule:evenodd;fill:#0e1375}\");\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"switch\", null, /*#__PURE__*/React.createElement(\"g\", null, /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"circle\", {\n id: \"notify-employer_svg__SVGID_1_\",\n cx: 40,\n cy: 40,\n r: 40\n})), /*#__PURE__*/React.createElement(\"clipPath\", {\n id: \"notify-employer_svg__SVGID_00000099658801379492981050000004513783029174021807_\"\n}, /*#__PURE__*/React.createElement(\"use\", {\n overflow: \"visible\",\n xlinkHref: \"#notify-employer_svg__SVGID_1_\"\n})), /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#notify-employer_svg__SVGID_00000099658801379492981050000004513783029174021807_)\"\n}, /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"notify-employer_svg__SVGID_00000054238395243817611210000014499767699019149747_\",\n d: \"M0 0h80v80H0z\"\n})), /*#__PURE__*/React.createElement(\"clipPath\", {\n id: \"notify-employer_svg__SVGID_00000096763793707302027640000015678274913903690933_\"\n}, /*#__PURE__*/React.createElement(\"use\", {\n overflow: \"visible\",\n xlinkHref: \"#notify-employer_svg__SVGID_00000054238395243817611210000014499767699019149747_\"\n})), /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#notify-employer_svg__SVGID_00000096763793707302027640000015678274913903690933_)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#eaeaea\",\n d: \"M80.001 40c0 22.09-17.91 40-40 40-22.091 0-40-17.91-40-40 0-22.093 17.909-40 40-40 22.09 0 40 17.907 40 40\"\n})), /*#__PURE__*/React.createElement(\"g\", null, /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#260046\",\n fillRule: \"evenodd\",\n d: \"M35.636 48.237l-.039-3.242-11.272.136.04 3.241 1.53-.018.23 17.201a2.203 2.203 0 002.231 2.178l3.617-.044a2.203 2.203 0 002.177-2.231l-.23-17.2 1.716-.021z\",\n clipRule: \"evenodd\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#260046\",\n d: \"M66.907 34.685a6.517 6.517 0 00-6.186-6.425l.157 12.997a6.517 6.517 0 006.029-6.572z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M41.609 25.057l-18.608.225h-.006l13.576-.164.239 19.863 5.037-.061c6.64 1.072 13.309 6.067 16.602 8.853L57.991 15.8c-3.224 2.866-9.769 8.025-16.382 9.257zM13.977 34.435l-.005-.001a.89.89 0 10.021 1.779l.005-.001a9.132 9.132 0 009.059 8.926l-.239-19.845a9.13 9.13 0 00-8.841 9.142z\",\n className: \"notify-employer_svg__st5\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M22.995 25.282l-.177.002v.009l.239 19.845.001.08 13.753-.166-.001-.071-.239-19.863zM60.543 13.541a1.29 1.29 0 00-2.58.031l.027 2.228.458 37.973.02 1.656a1.29 1.29 0 102.579-.031l-.171-14.14-.155-12.998-.178-14.719z\",\n className: \"notify-employer_svg__st6\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n id: \"notify-employer_svg__Fill-40\",\n d: \"M16.575 37.427l4.571-.056a.36.36 0 00.357-.366l-.001-.103a.36.36 0 00-.366-.357l-4.57.055a.362.362 0 00-.358.365l.001.104c.003.2.167.36.366.358\",\n className: \"notify-employer_svg__st7\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n id: \"notify-employer_svg__Fill-43\",\n d: \"M16.555 35.741l4.57-.055c.2-.003.36-.166.358-.367l-.002-.103a.36.36 0 00-.365-.357l-4.571.055a.362.362 0 00-.358.365l.001.104a.363.363 0 00.367.358\",\n className: \"notify-employer_svg__st7\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n id: \"notify-employer_svg__Fill-46\",\n d: \"M16.534 34.057l4.571-.055c.2-.003.36-.167.357-.367l-.001-.103a.36.36 0 00-.366-.357l-4.57.055a.361.361 0 00-.358.365v.104c.004.2.168.36.367.358\",\n className: \"notify-employer_svg__st7\"\n})))));\n\nvar SvgNotifyEmployer = function SvgNotifyEmployer(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n id: \"notify-employer_svg__Layer_2\",\n x: 0,\n y: 0,\n viewBox: \"0 0 80 80\",\n xmlSpace: \"preserve\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgNotifyEmployer, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/notify-employer.b1047d5a.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"open-in-new_svg__a\",\n d: \"M18 19H6c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h5c.55 0 1-.45 1-1s-.45-1-1-1H5a2 2 0 00-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-6c0-.55-.45-1-1-1s-1 .45-1 1v5c0 .55-.45 1-1 1zM14 4c0 .55.45 1 1 1h2.59l-9.13 9.13a.996.996 0 101.41 1.41L19 6.41V9c0 .55.45 1 1 1s1-.45 1-1V4c0-.55-.45-1-1-1h-5c-.55 0-1 .45-1 1z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#open-in-new_svg__a\"\n});\n\nvar SvgOpenInNew = function SvgOpenInNew(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgOpenInNew, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/open-in-new.cb578f45.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"open-menu_svg__a\",\n d: \"M1 14h18c.55 0 1-.45 1-1s-.45-1-1-1H1c-.55 0-1 .45-1 1s.45 1 1 1zm0-6h18c.55 0 1-.45 1-1s-.45-1-1-1H1c-.55 0-1 .45-1 1s.45 1 1 1zM0 1c0 .55.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1H1C.45 0 0 .45 0 1z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"evenodd\",\n xlinkHref: \"#open-menu_svg__a\"\n});\n\nvar SvgOpenMenu = function SvgOpenMenu(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 20 14\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgOpenMenu, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/open-menu.41912c26.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#D93E02\",\n d: \"M6 12A6 6 0 106 0a6 6 0 000 12z\"\n});\n\nvar SvgOrangeOvalCopy = function SvgOrangeOvalCopy(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n fill: \"none\",\n viewBox: \"0 0 12 12\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgOrangeOvalCopy, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/orange-oval-copy.ab42339e.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M18 8.5H17V6.5C17 3.74 14.76 1.5 12 1.5C9.24 1.5 7 3.74 7 6.5V8.5H6C4.9 8.5 4 9.4 4 10.5V20.5C4 21.6 4.9 22.5 6 22.5H18C19.1 22.5 20 21.6 20 20.5V10.5C20 9.4 19.1 8.5 18 8.5ZM9 6.5C9 4.84 10.34 3.5 12 3.5C13.66 3.5 15 4.84 15 6.5V8.5H9V6.5ZM18 20.5H6V10.5H18V20.5ZM12 17.5C13.1 17.5 14 16.6 14 15.5C14 14.4 13.1 13.5 12 13.5C10.9 13.5 10 14.4 10 15.5C10 16.6 10.9 17.5 12 17.5Z\",\n fill: \"white\"\n});\n\nvar SvgPadlockIcon = function SvgPadlockIcon(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n width: 24,\n height: 24,\n viewBox: \"0 0 24 24\",\n fill: \"none\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgPadlockIcon, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/padlock-icon.2b07a5ad.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"payment_svg__a\",\n d: \"M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm-1 14H5c-.55 0-1-.45-1-1v-5h16v5c0 .55-.45 1-1 1zm1-10H4V7c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v1z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#payment_svg__a\"\n});\n\nvar SvgPayment = function SvgPayment(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgPayment, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/payment.631274a0.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"people_svg__a\",\n d: \"M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5c-1.66 0-3 1.34-3 3s1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5C6.34 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V18c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-1.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05.02.01.03.03.04.04 1.14.83 1.93 1.94 1.93 3.41V18c0 .35-.07.69-.18 1H22c.55 0 1-.45 1-1v-1.5c0-2.33-4.67-3.5-7-3.5z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#people_svg__a\"\n});\n\nvar SvgPeople = function SvgPeople(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgPeople, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/people.3ee928c4.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"style\", null, \".performance_svg__st3{fill:#ed4300}\");\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"switch\", null, /*#__PURE__*/React.createElement(\"g\", null, /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"performance_svg__SVGID_1_\",\n d: \"M0 0h80v80H0z\"\n})), /*#__PURE__*/React.createElement(\"clipPath\", {\n id: \"performance_svg__SVGID_00000141417775543765324190000014071812468421069955_\"\n}, /*#__PURE__*/React.createElement(\"use\", {\n overflow: \"visible\",\n xlinkHref: \"#performance_svg__SVGID_1_\"\n})), /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#performance_svg__SVGID_00000141417775543765324190000014071812468421069955_)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#eaeaea\",\n d: \"M40.001 80c22.093 0 40-17.909 40-40 0-22.093-17.907-40.001-40-40.001S.001 17.908.001 40s17.907 40 40 40\"\n})), /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#performance_svg__SVGID_00000141417775543765324190000014071812468421069955_)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#260046\",\n d: \"M58.562 60.415H21.438a1.985 1.985 0 01-1.986-1.986V23.337a1.986 1.986 0 013.972 0v33.105h35.138a1.986 1.986 0 110 3.973\"\n})), /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#performance_svg__SVGID_00000141417775543765324190000014071812468421069955_)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M27.033 41.748h6.37v10.609h-6.37z\",\n className: \"performance_svg__st3\"\n})), /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#performance_svg__SVGID_00000141417775543765324190000014071812468421069955_)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M35.748 29.736h6.367v22.621h-6.367z\",\n className: \"performance_svg__st3\"\n})), /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#performance_svg__SVGID_00000141417775543765324190000014071812468421069955_)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M44.464 32.98h6.367v19.377h-6.367z\",\n className: \"performance_svg__st3\"\n})), /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#performance_svg__SVGID_00000141417775543765324190000014071812468421069955_)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M53.179 22.582h6.367v29.775h-6.367z\",\n className: \"performance_svg__st3\"\n}))));\n\nvar SvgPerformance = function SvgPerformance(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n id: \"performance_svg__Layer_1\",\n x: 0,\n y: 0,\n viewBox: \"0 0 80 80\",\n xmlSpace: \"preserve\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgPerformance, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/performance.d1c9a175.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"perm-phone-msg_svg__a\",\n d: \"M19.987 3.013h-7c-.55 0-1 .45-1 1v9l3-3h5c.55 0 1-.45 1-1v-5c0-.55-.45-1-1-1zm-.77 12.26l-2.54-.29a1.99 1.99 0 00-1.64.57l-1.84 1.84a15.045 15.045 0 01-6.59-6.59l1.85-1.85c.43-.43.64-1.03.57-1.64l-.29-2.52a2.001 2.001 0 00-1.99-1.77h-1.73c-1.13 0-2.07.94-2 2.07.53 8.54 7.36 15.36 15.89 15.89 1.13.07 2.07-.87 2.07-2v-1.73c.01-1.01-.75-1.86-1.76-1.98z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#perm-phone-msg_svg__a\"\n});\n\nvar SvgPermPhoneMsg = function SvgPermPhoneMsg(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgPermPhoneMsg, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/perm-phone-msg.dbef5731.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"person_svg__a\",\n d: \"M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v1c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-1c0-2.66-5.33-4-8-4z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#person_svg__a\"\n});\n\nvar SvgPerson = function SvgPerson(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgPerson, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/person.11967206.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"person-add_svg__a\",\n d: \"M15 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm-9-2V8c0-.55-.45-1-1-1s-1 .45-1 1v2H2c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1v-2h2c.55 0 1-.45 1-1s-.45-1-1-1H6zm9 4c-2.67 0-8 1.34-8 4v1c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-1c0-2.66-5.33-4-8-4z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#person-add_svg__a\"\n});\n\nvar SvgPersonAdd = function SvgPersonAdd(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgPersonAdd, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/person-add.813a0b1e.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M74.052 148.104c40.898 0 74.052-33.154 74.052-74.052S114.95 0 74.052 0 0 33.154 0 74.052s33.154 74.052 74.052 74.052z\"\n});\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M74.053 125.544c21.92 0 39.689-2.572 39.689-5.744 0-3.173-17.77-5.745-39.69-5.745-21.92 0-39.689 2.572-39.689 5.745 0 3.172 17.77 5.744 39.69 5.744z\",\n opacity: 0.7\n});\n\nvar _ref4 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M53.059 117.815H47c-1.358 0-2.402-1.044-2.402-2.402l-5.222-17.652c0-1.357 1.044-2.402 2.402-2.402l13.264 3.97c1.358 0 2.403 1.044 2.403 2.401l-2.09 13.787a2.318 2.318 0 01-2.297 2.298zM94.733 117.711h6.058c1.358 0 2.402-1.045 2.402-2.403l5.118-17.651c0-1.358-1.045-2.402-2.402-2.402l-13.265 4.073c-1.358 0-2.402 1.045-2.402 2.402l2.089 13.578c.104 1.358 1.148 2.403 2.402 2.403z\"\n});\n\nvar _ref5 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M76.872 41.57v13.682h-5.849V41.569c-24.44 1.358-37.078 18.487-36.973 38.019.104 20.262 17.964 36.66 40.107 36.66 22.142-.104 40.003-16.607 39.898-36.87-.104-19.53-12.742-36.555-37.183-37.809z\"\n});\n\nvar _ref6 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M74.084 96.3c8.653-.024 15.653-5.28 15.636-11.74-.018-6.461-7.046-11.68-15.699-11.656-8.652.023-15.652 5.28-15.635 11.74.017 6.46 7.046 11.679 15.698 11.655z\"\n});\n\nvar _ref7 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M68.001 86.377c.808-.002 1.46-1.08 1.456-2.406-.004-1.327-.661-2.4-1.469-2.398-.808.002-1.46 1.08-1.456 2.406.004 1.327.662 2.4 1.47 2.398zM81.468 83.975c0 1.357-.626 2.402-1.462 2.402-.835 0-1.462-1.045-1.462-2.402 0-1.358.627-2.403 1.462-2.403.836 0 1.462 1.045 1.462 2.403zM39.794 37.914c-.105 0-.314.104-.418.209-.104.104-7.938 12.951 1.776 25.902.104.105.208.21.313.21.104 0 .104 0 .209-.105l18.173-10.654c.21-.104.21-.313.21-.522 0-.104-6.372-13.682-20.263-15.04zM106.535 37.914c-.105-.105-.209-.209-.418-.209-13.891 1.462-20.158 15.04-20.263 15.25-.104.208 0 .417.21.521l18.277 10.55c.105 0 .105.104.209.104.105 0 .209-.105.314-.21 9.713-13.16 1.775-25.902 1.671-26.006zM90.164 32.683c.166-8.94-6.946-16.32-15.885-16.487-8.94-.166-16.32 6.946-16.487 15.885-.166 8.94 6.946 16.321 15.886 16.487 8.939.166 16.32-6.946 16.486-15.885z\"\n});\n\nvar _ref8 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M87.763 32.53c.08-7.614-6.026-13.851-13.64-13.932-7.613-.08-13.85 6.027-13.931 13.64-.08 7.614 6.026 13.85 13.64 13.931 7.613.08 13.85-6.026 13.931-13.64z\"\n});\n\nvar _ref9 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M62.668 33.11c.313-6.685 6.057-11.803 12.742-11.49 3.865.21 7.311 2.194 9.4 5.223-1.88-3.76-5.744-6.372-10.236-6.58-6.684-.314-12.429 4.804-12.742 11.489-.104 2.82.627 5.43 2.089 7.52-.94-1.88-1.358-3.97-1.253-6.163z\"\n});\n\nvar _ref10 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M74.366 24.44c.522 0 .94.418.94.94v.418c1.253.105 2.297.522 3.237 1.149.314.209.627.522.627 1.044a1.16 1.16 0 01-1.149 1.15c-.209 0-.418-.105-.626-.21a11.831 11.831 0 00-2.09-.94v3.97c3.134.835 4.492 2.088 4.492 4.282 0 2.298-1.776 3.76-4.387 4.073v1.253c0 .523-.418.94-.94.94a.936.936 0 01-.94-.94v-1.253c-1.567-.209-3.029-.731-4.282-1.671-.314-.209-.522-.522-.522-1.045a1.16 1.16 0 011.148-1.148c.21 0 .523.104.732.209a6.64 6.64 0 003.029 1.357v-4.073c-3.03-.836-4.387-1.985-4.387-4.282 0-2.194 1.775-3.76 4.386-3.97v-.417c-.208-.418.21-.836.732-.836zm-.836 7.103v-3.656c-1.358.104-1.984.836-1.984 1.776 0 .73.417 1.357 1.984 1.88zm1.567 2.82v3.76c1.358-.105 2.089-.836 2.089-1.776 0-.94-.418-1.462-2.09-1.984z\"\n});\n\nvar SvgPiggyBank = function SvgPiggyBank(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n fill: \"none\",\n viewBox: \"0 0 149 149\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3, _ref4, _ref5, _ref6, _ref7, _ref8, _ref9, _ref10);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgPiggyBank, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/piggy-bank.6ead81a2.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"print_svg__a\",\n d: \"M19 8H5c-1.66 0-3 1.34-3 3v4c0 1.1.9 2 2 2h2v2c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2v-2h2c1.1 0 2-.9 2-2v-4c0-1.66-1.34-3-3-3zm-4 11H9c-.55 0-1-.45-1-1v-4h8v4c0 .55-.45 1-1 1zm4-7c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-2-9H7c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h10c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#print_svg__a\"\n});\n\nvar SvgPrint = function SvgPrint(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgPrint, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/print.01729756.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"question-answer_svg__a\",\n d: \"M20 6h-1v8c0 .55-.45 1-1 1H6v1c0 1.1.9 2 2 2h10l4 4V8c0-1.1-.9-2-2-2zm-3 5V4c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v13l4-4h9c1.1 0 2-.9 2-2z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#question-answer_svg__a\"\n});\n\nvar SvgQuestionAnswer = function SvgQuestionAnswer(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgQuestionAnswer, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/question-answer.5b0ee5a5.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"refresh_svg__a\",\n d: \"M17.642 6.351a7.95 7.95 0 00-6.48-2.31c-3.67.37-6.69 3.35-7.1 7.02-.55 4.85 3.2 8.94 7.93 8.94a7.98 7.98 0 007.21-4.56c.32-.67-.16-1.44-.9-1.44-.37 0-.72.2-.88.53a5.994 5.994 0 01-6.8 3.31c-2.22-.49-4.01-2.3-4.48-4.52a6.002 6.002 0 015.85-7.32c1.66 0 3.14.69 4.22 1.78l-1.51 1.51c-.63.63-.19 1.71.7 1.71h3.59c.55 0 1-.45 1-1v-3.59c0-.89-1.08-1.34-1.71-.71l-.64.65z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#refresh_svg__a\"\n});\n\nvar SvgRefresh = function SvgRefresh(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgRefresh, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/refresh.43423a5a.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"search_svg__a\",\n d: \"M15.977 14.472h-.79l-.28-.27a6.5 6.5 0 001.48-5.34c-.47-2.78-2.79-5-5.59-5.34a6.505 6.505 0 00-7.27 7.27c.34 2.8 2.56 5.12 5.34 5.59a6.5 6.5 0 005.34-1.48l.27.28v.79l4.25 4.25c.41.41 1.08.41 1.49 0 .41-.41.41-1.08 0-1.49l-4.24-4.26zm-6 0c-2.49 0-4.5-2.01-4.5-4.5s2.01-4.5 4.5-4.5 4.5 2.01 4.5 4.5-2.01 4.5-4.5 4.5z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#search_svg__a\"\n});\n\nvar SvgSearch = function SvgSearch(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgSearch, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/search.b3a195af.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"send_svg__a\",\n d: \"M3.671 20.4l17.45-7.48a1 1 0 000-1.84L3.671 3.6a.993.993 0 00-1.39.91l-.01 4.61c0 .5.37.93.87.99L17.271 12l-14.13 1.88c-.5.07-.87.5-.87 1l.01 4.61c0 .71.73 1.2 1.39.91z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#send_svg__a\"\n});\n\nvar SvgSend = function SvgSend(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgSend, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/send.db43db45.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: 74.494,\n cy: 74,\n r: 74,\n fill: \"currentColor\"\n});\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"rect\", {\n width: 71.548,\n height: 103.166,\n x: 39,\n y: 22,\n fill: \"currentColor\",\n rx: 6\n});\n\nvar _ref4 = /*#__PURE__*/React.createElement(\"rect\", {\n width: 71.548,\n height: 103.166,\n x: 39,\n y: 22,\n stroke: \"currentColor\",\n strokeWidth: 4,\n rx: 6\n});\n\nvar _ref5 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: 74.775,\n cy: 61.209,\n r: 24.399,\n fill: \"currentColor\"\n});\n\nvar _ref6 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: 74.775,\n cy: 61.209,\n r: 24.399,\n fill: \"currentColor\"\n});\n\nvar _ref7 = /*#__PURE__*/React.createElement(\"g\", {\n fill: \"currentColor\",\n mask: \"url(#set-up-complete_svg__a)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M65.956 84.519a.567.567 0 01-.566.565.567.567 0 01-.566-.566c0-.31.255-.565.566-.565.311 0 .566.254.566.566z\"\n}), /*#__PURE__*/React.createElement(\"circle\", {\n cx: 75.002,\n cy: 87.001,\n r: 20\n}));\n\nvar _ref8 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: 75.002,\n cy: 55,\n r: 8,\n fill: \"currentColor\"\n});\n\nvar _ref9 = /*#__PURE__*/React.createElement(\"rect\", {\n width: 21.558,\n height: 2.874,\n x: 63.994,\n y: 92.013,\n fill: \"currentColor\",\n rx: 1.437\n});\n\nvar _ref10 = /*#__PURE__*/React.createElement(\"rect\", {\n width: 50.302,\n height: 2.874,\n x: 49.623,\n y: 100.636,\n fill: \"currentColor\",\n rx: 1.437\n});\n\nvar _ref11 = /*#__PURE__*/React.createElement(\"rect\", {\n width: 50.302,\n height: 2.874,\n x: 49.623,\n y: 104.948,\n fill: \"currentColor\",\n rx: 1.437\n});\n\nvar _ref12 = /*#__PURE__*/React.createElement(\"rect\", {\n width: 50.302,\n height: 2.874,\n x: 49.623,\n y: 109.259,\n fill: \"currentColor\",\n rx: 1.437\n});\n\nvar _ref13 = /*#__PURE__*/React.createElement(\"rect\", {\n width: 14.606,\n height: 14.606,\n x: 79.811,\n y: 67.811,\n fill: \"currentColor\",\n rx: 7.303\n});\n\nvar _ref14 = /*#__PURE__*/React.createElement(\"rect\", {\n width: 14.606,\n height: 14.606,\n x: 79.811,\n y: 67.811,\n stroke: \"currentColor\",\n strokeWidth: 1.623,\n rx: 7.303\n});\n\nvar _ref15 = /*#__PURE__*/React.createElement(\"path\", {\n stroke: \"currentColor\",\n strokeWidth: 1.623,\n d: \"M83.683 75.568l2.154 1.884 4.46-4.899\"\n});\n\nvar SvgSetUpComplete = function SvgSetUpComplete(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n fill: \"none\",\n viewBox: \"0 0 149 148\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3, _ref4, _ref5, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"set-up-complete_svg__a\",\n style: {\n maskType: \"alpha\"\n },\n width: 50,\n height: 50,\n x: 50,\n y: 36,\n maskUnits: \"userSpaceOnUse\"\n }, _ref6), _ref7, _ref8, _ref9, _ref10, _ref11, _ref12, _ref13, _ref14, _ref15);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgSetUpComplete, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/set-up-complete.1de0ae00.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"settings_svg__a\",\n d: \"M19.432 12.98c.04-.32.07-.64.07-.98 0-.34-.03-.66-.07-.98l2.11-1.65c.19-.15.24-.42.12-.64l-2-3.46c-.12-.22-.39-.3-.61-.22l-2.49 1c-.52-.4-1.08-.73-1.69-.98l-.38-2.65a.488.488 0 00-.49-.42h-4c-.25 0-.46.18-.49.42l-.38 2.65c-.61.25-1.17.59-1.69.98l-2.49-1c-.23-.09-.49 0-.61.22l-2 3.46c-.13.22-.07.49.12.64l2.11 1.65c-.04.32-.07.65-.07.98 0 .33.03.66.07.98l-2.11 1.65c-.19.15-.24.42-.12.64l2 3.46c.12.22.39.3.61.22l2.49-1c.52.4 1.08.73 1.69.98l.38 2.65c.03.24.24.42.49.42h4c.25 0 .46-.18.49-.42l.38-2.65c.61-.25 1.17-.59 1.69-.98l2.49 1c.23.09.49 0 .61-.22l2-3.46c.12-.22.07-.49-.12-.64l-2.11-1.65zm-7.43 2.52c-1.93 0-3.5-1.57-3.5-3.5s1.57-3.5 3.5-3.5 3.5 1.57 3.5 3.5-1.57 3.5-3.5 3.5z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#settings_svg__a\"\n});\n\nvar SvgSettings = function SvgSettings(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgSettings, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/settings.c8d42c03.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M48 0H0V48H48V0Z\",\n fill: \"white\"\n});\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask0_411_504)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M24 48C37.256 48 48 37.255 48 24C48 10.744 37.256 -0.000976562 24 -0.000976562C10.745 -0.000976562 0 10.744 0 24C0 37.255 10.745 48 24 48Z\",\n fill: \"#EAEAEA\"\n}));\n\nvar _ref4 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M48 0H0V48H48V0Z\",\n fill: \"white\"\n});\n\nvar _ref5 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask1_411_504)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M24 48C37.256 48 48 37.255 48 24C48 10.745 37.256 0 24 0C10.744 0 0 10.745 0 24C0 37.255 10.744 48 24 48Z\",\n fill: \"#EAEAEA\"\n}));\n\nvar _ref6 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M48 0H0V48H48V0Z\",\n fill: \"white\"\n});\n\nvar _ref7 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask2_411_504)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n d: \"M24 9L12 14.455V22.637C12 30.205 17.12 37.282 24 39C30.88 37.282 36 30.205 36 22.636V14.454L24 9ZM24 23.986H33.333C32.627 29.605 28.96 34.609 24 36.177V24H14.667V16.227L24 11.986V23.986Z\",\n fill: \"#ED4300\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n d: \"M24 23.9858H33.333C32.627 29.6048 28.96 34.6088 24 36.1768V23.9998H14.667V16.2268L24 11.9858V23.9858Z\",\n fill: \"white\"\n}));\n\nvar _ref8 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"clipPath\", {\n id: \"clip0_411_504\"\n}, /*#__PURE__*/React.createElement(\"rect\", {\n width: 48,\n height: 48,\n fill: \"white\"\n})));\n\nvar SvgShieldIcon = function SvgShieldIcon(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n width: 48,\n height: 48,\n viewBox: \"0 0 48 48\",\n fill: \"none\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#clip0_411_504)\"\n }, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask0_411_504\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 0,\n y: 0,\n width: 48,\n height: 48\n }, _ref2), _ref3, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask1_411_504\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 0,\n y: 0,\n width: 48,\n height: 48\n }, _ref4), _ref5, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask2_411_504\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 0,\n y: 0,\n width: 48,\n height: 48\n }, _ref6), _ref7), _ref8);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgShieldIcon, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/shield-icon.31114c1c.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n fillRule: \"evenodd\",\n d: \"M17 0H7C3.1 0 0 3.1 0 7s3.1 7 7 7h10c3.9 0 7-3.1 7-7s-3.1-7-7-7zM7 11c-2.2 0-4-1.8-4-4s1.8-4 4-4 4 1.8 4 4-1.8 4-4 4z\"\n});\n\nvar SvgSlideSwitch = function SvgSlideSwitch(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 14\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgSlideSwitch, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/slide-switch.d832ba4b.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"smartphone_svg__a\",\n d: \"M17 1.01L7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#smartphone_svg__a\"\n});\n\nvar SvgSmartphone = function SvgSmartphone(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgSmartphone, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/smartphone.cb6bee95.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"title\", null, \"05 Feedback indicators/Spinner\");\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"g\", {\n id: \"GL01---Error-Messages\",\n stroke: \"none\",\n strokeWidth: 1,\n fill: \"none\",\n fillRule: \"evenodd\"\n}, /*#__PURE__*/React.createElement(\"g\", {\n id: \"error-module-desk-pre-error\",\n transform: \"translate(-436.000000, -579.000000)\"\n}, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group-5\",\n transform: \"translate(0.000000, -226.000000)\"\n}, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group\",\n transform: \"translate(432.000000, 801.000000)\"\n}, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Icon-FeedbackIndicator\",\n transform: \"translate(4.000000, 4.000000)\"\n}, /*#__PURE__*/React.createElement(\"circle\", {\n id: \"Oval\",\n fill: \"#EBE6F6\",\n cx: 8,\n cy: 8,\n r: 4\n}), /*#__PURE__*/React.createElement(\"circle\", {\n id: \"Oval\",\n fill: \"#CDC3E8\",\n cx: 4,\n cy: 20,\n r: 4\n}), /*#__PURE__*/React.createElement(\"circle\", {\n id: \"Oval\",\n fill: \"#AC9BD9\",\n cx: 8,\n cy: 32,\n r: 4\n}), /*#__PURE__*/React.createElement(\"circle\", {\n id: \"Oval\",\n fill: \"#8B72CA\",\n cx: 20,\n cy: 36,\n r: 4\n}), /*#__PURE__*/React.createElement(\"circle\", {\n id: \"Oval\",\n fill: \"#5738B4\",\n cx: 32,\n cy: 32,\n r: 4\n}), /*#__PURE__*/React.createElement(\"circle\", {\n id: \"Oval\",\n fill: \"#3F2CA5\",\n cx: 36,\n cy: 20,\n r: 4\n}), /*#__PURE__*/React.createElement(\"circle\", {\n id: \"Oval\",\n fill: \"#32269D\",\n cx: 32,\n cy: 8,\n r: 4\n}), /*#__PURE__*/React.createElement(\"circle\", {\n id: \"Oval\",\n fill: \"#171C8F\",\n cx: 20,\n cy: 4,\n r: 4\n}))))));\n\nvar SvgSpinner = function SvgSpinner(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n width: \"40px\",\n height: \"40px\",\n viewBox: \"0 0 40 40\",\n ref: svgRef\n }, props), title === undefined ? _ref2 : title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgSpinner, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/spinner.8da8be6d.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"g\", {\n fill: \"currentColor\",\n fillRule: \"evenodd\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M16 6V1a1 1 0 00-1-1h-5a1 1 0 00-1 1v5a1 1 0 001 1h5a1 1 0 001-1zM7 6V1a1 1 0 00-1-1H1a1 1 0 00-1 1v5a1 1 0 001 1h5a1 1 0 001-1zM5 2v3H2V2h3zM11 13H1a1 1 0 010-2h10V8l5 4-5 4v-3z\"\n}));\n\nvar SvgStacksWithArrows = function SvgStacksWithArrows(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 16 16\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgStacksWithArrows, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/stacks-with-arrows.88eccd32.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n fillOpacity: 0.8,\n d: \"M0 640L1440 0v840H0V640z\"\n});\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"linearGradient\", {\n id: \"sunrise-yellow-gradient_svg__paint0_linear_2949_54897\",\n x1: 1509.64,\n x2: 1354.72,\n y1: -86.904,\n y2: 596.554,\n gradientUnits: \"userSpaceOnUse\"\n}, /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.365,\n stopColor: \"currentColor\",\n stopOpacity: 0.21\n}), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n stopColor: \"currentColor\",\n stopOpacity: 0\n})));\n\nvar SvgSunriseYellowGradient = function SvgSunriseYellowGradient(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n fill: \"none\",\n viewBox: \"0 0 1440 840\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgSunriseYellowGradient, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/sunrise-yellow-gradient.bd5bac03.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"supervisor-account_svg__a\",\n d: \"M16.5 12c1.38 0 2.49-1.12 2.49-2.5S17.88 7 16.5 7a2.5 2.5 0 000 5zM9 11c1.66 0 2.99-1.34 2.99-3S10.66 5 9 5C7.34 5 6 6.34 6 8s1.34 3 3 3zm7.5 3c-1.83 0-5.5.92-5.5 2.75V18c0 .55.45 1 1 1h9c.55 0 1-.45 1-1v-1.25c0-1.83-3.67-2.75-5.5-2.75zM9 13c-2.33 0-7 1.17-7 3.5V18c0 .55.45 1 1 1h6v-2.25c0-.85.33-2.34 2.37-3.47C10.5 13.1 9.66 13 9 13z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#supervisor-account_svg__a\"\n});\n\nvar SvgSupervisorAccount = function SvgSupervisorAccount(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgSupervisorAccount, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/supervisor-account.880da99f.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"switch-closed_svg__a\",\n d: \"M14 12l4 3-4 3v-2H7v-2h7v-2zm-4-6v2h7v2h-7v2L6 9l4-3z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#switch-closed_svg__a\"\n});\n\nvar SvgSwitchClosed = function SvgSwitchClosed(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgSwitchClosed, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/switch-closed.33cd7863.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"switch-open_svg__a\",\n d: \"M14 12l4 3-4 3v-2H7v-2h7v-2zm-4-6v2h7v2h-7v2L6 9l4-3z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n transform: \"rotate(90 12 12)\",\n xlinkHref: \"#switch-open_svg__a\"\n});\n\nvar SvgSwitchOpen = function SvgSwitchOpen(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgSwitchOpen, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/switch-open.ff4c0f32.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n fillRule: \"evenodd\",\n d: \"M15.7 8.3l-8-8C7.5.1 7.3 0 7 0H1C.4 0 0 .4 0 1v6c0 .3.1.5.3.7l8 8c.2.2.4.3.7.3.3 0 .5-.1.7-.3l6-6c.4-.4.4-1 0-1.4zM4 5c-.6 0-1-.4-1-1s.4-1 1-1 1 .4 1 1-.4 1-1 1z\"\n});\n\nvar SvgTag = function SvgTag(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 16 16\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgTag, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/tag.f00ecc2f.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n fillRule: \"evenodd\",\n d: \"M3.62 7.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V17c0 .55-.45 1-1 1C7.61 18 0 10.39 0 1c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z\"\n});\n\nvar SvgTelephone = function SvgTelephone(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 18 18\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgTelephone, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/telephone.1896a032.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: 74,\n cy: 74,\n r: 74,\n fill: \"currentColor\"\n});\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"circle\", {\n cx: 74,\n cy: 74,\n r: 74,\n fill: \"currentColor\"\n});\n\nvar _ref4 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#tell-your-employer_svg__a)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M83.281 140.235c-.51.403-1.428.948-2.404 2.531-2.087 3.39-2.944 3.765-3.573 4.044l-.057.024c-.269.115-.328.341-.29.514.097.453.856.888 1.616.577.395-.164.848-.565 1.278-.955.657-.591 1.336-1.205 1.775-.92.105.067.233.382-.132 1.705-.251.934-.66 2.079-1.025 3.096a46.684 46.684 0 00-.587 1.708c-.503 1.62-.375 2.511-.031 2.672.11.049.394.107.762-.512.173-.287.387-.793.629-1.398-.483 1.741-.472 2-.476 2.098.015.409.163.868.452.919.243.041.51-.212.78-.754.1-.199.22-.501.363-.873-.034.329.003.444.045.506a.142.142 0 00.169.06c.35-.093.754-.598 1.185-1.495.166-.338.331-.734.501-1.17-.008.184.007.323.055.414a.202.202 0 00.17.129c.196.019.423-.182.713-.638.23-.368.5-.899.804-1.58.512-1.17 1.107-2.758 1.633-4.366.765-2.341.543-3.536.387-4.398a5.009 5.009 0 01-.102-.719 8.26 8.26 0 01.372-.966l-4.43-1.13c-.2.42-.4.735-.593.889l.011-.012zM101.394 75.22a15.237 15.237 0 007.701-4.91c-.37-2.609-12.876-2.33-11.911.288.544 1.482 1.109 3.084 1.058 5.069 1.016 0 2.053-.15 3.152-.447z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M138.119 116.024c-2.074-7.161-5.013-25.116-10.26-28.83a11.129 11.129 0 00-3.071-1.535c-.112-.041-4.474-1.435-10.159-2.645-1.688 2.156-3.04 3.876-2.888 3.336-.59.072-2.176-1.963-4.179-4.577-7.525-.997-15.335-.865-18.416 3.052a36.587 36.587 0 00-1.576 2.156c-4.322 4.527-6.39 27.141-8.705 41.037-2.542 15.259-4.067 30.518-4.067 30.518l1.017 1.018 6.64 1.19.986-.173c2.543-6.104 1.017-15.259 3.051-22.889 1.05-3.935 1.912-16.236 1.912-16.236l-4.597 31.495s9.844 1.618 11.329 2.035c5.084 1.444 8.145.498 36.007-3.306.326 6.846.539 13.672 1.007 19.633l.824.102 4.515.529 1.474.173.59.071c2.99-31.139.763-48.575-1.434-56.164v.01z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M111.745 86.735c-.155.541 1.219-1.208 2.934-3.416-2.252-.48-4.7-.937-7.179-1.27 2.035 2.676 3.656 4.759 4.245 4.686zM123.453 117.144s4.478 5.893 4.655 9.299c.178 3.407.122 13.831.122 13.831l-1.038-14.316-3.739-8.804v-.01zM133.247 168.212c-.098.392-.228.669-.408.8a.159.159 0 01-.179.008c-.065-.041-.147-.131-.228-.441.008.376 0 .694-.017.898-.057.579-.204.897-.448.946-.294.065-.604-.294-.759-.653-.041-.089-.138-.31-.334-2.031 0 .628-.008 1.15-.065 1.468-.115.677-.4.735-.514.726-.384-.024-.832-.766-.963-2.381-.041-.449-.057-1.069-.081-1.721-.041-1.028-.082-2.194-.196-3.108-.155-1.305-.392-1.533-.514-1.558-.522-.097-.922.686-1.321 1.444-.261.498-.522 1.02-.84 1.305-.588.547-1.46.424-1.721.057-.098-.138-.131-.359.081-.563l.041-.04c.481-.465 1.142-1.11 1.827-4.853.318-1.754.979-2.561 1.305-3.1.359-.595.253-2.536.09-4.102l-.661-.082c-.367-4.788-.546-10.252-.807-15.741-22.34 3.058-32.96.546-37.038-.612l-.326 4.886-7.765 68.373s27.895 11.117 57.241-1.786c0 0-3.075-17.83-5.4-38.139zM103.512 74.868c.274-.238.531-.51.797-.798a11.76 11.76 0 01-.797.798zM105.107 74.072c.271-.26.542-.518.798-.798-.271.28-.527.539-.798.798zM108.298 70.88c-.252.273-.525.546-.798.797.273-.251.535-.524.798-.797z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M109.81 82.176c-1.509-4.034-1.002-7.536-.486-10.444.083-.46.166-.9.238-1.33a.807.807 0 000-.318c-.238.317-.496.614-.754.911l-.031.03a13.39 13.39 0 01-.755.78c-.051.05-.113.101-.165.153-.207.194-.424.389-.651.573-.114.102-.238.194-.362.297-.165.123-.32.256-.486.368-.186.144-.382.277-.578.41-.104.062-.207.133-.3.195-.258.163-.527.317-.806.47-.041.021-.093.052-.134.072-.321.174-.651.328-.992.481a20.41 20.41 0 01-1.096.43c-.217.072-.424.154-.641.215-1.105.328-2.15.482-3.172.492a12.59 12.59 0 01-.29 2.365c-.258 1.218-.713 2.57-1.446 4.085l-4.558 12.4s10.283-3.226 16.68-11.253c.403-.328.702-.707.868-1.147-.031-.082-.052-.164-.083-.246v.01z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M108.555 73.847s.226-1.542.36-2.255c.082-.445.164-.87.236-1.285a.754.754 0 000-.307c-1.953 2.453-4.614 4.322-7.708 5.212-1.1.317-1.426.778-2.443.788-.02.712-.315 1.18-.5 2 0 0 5.029.278 10.045-4.143l.01-.01z\",\n opacity: 0.5\n}), /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M118.964 60.335c-.276-2.343-2.72-2.997-3.964-2.835-10.14 4.797-21.482-8.87-18.485-17.5-3.242 1.126-5.803 3.51-6.462 7.21 0 0-.393 1.542-.702 3.977-.712 5.68-.946 16.217 5.442 23.346a4.27 4.27 0 002.626 1.39c.223.03.457.04.68.05 1.329.092 2.679-.05 4.135-.466.223-.06.446-.142.659-.223a15.807 15.807 0 007.6-5.477c.372-.487.723-.994 1.031-1.521.138-.243.338-.043.476-.286 2.689.568 7.528-2.878 6.954-7.686l.01.02z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M126.679 52.276C128.5 90 119.801 84.5 114.5 84l-2.5-1c-1.586-.343-.835-.288-2.561-.56-1.465-3.98-.973-7.433-.471-10.3.08-.455.16-.89.231-1.314.01-.11.01-.211 0-.313.09-.12.18-.232.271-.353.351-.485.682-.99.973-1.515a12.9 12.9 0 00.391-.727c2.539.556 7.165-2.423 6.623-7.21-.261-2.343-1.676-2.656-2.85-2.494-9.573 4.776-21.173-9.17-18.343-17.753-3.071 1.11-5.48 3.494-6.102 7.18 0 0-.37 1.535-.662 3.958-2.428-3.18-2.388-6.412-.923-8.977-.17-2.1.452-4.484 2.358-6.554 1.295-1.404 3.914-2.15 5.248-1.596 1.777-1.999 2.98-3.019 5.841-3.382 6.121-.768 14.519 2.449 14.976 5.91 9.679 0 9.679 15.276 9.679 15.276zM57.766 35.727c-3.173-2.81-6.267 3.74-17.293-.76-6.312 2.13-6.754 11.05-6.629 14.959.136.306.272.68.442 1.122 0 0 .363.85.952 1.971 1.144 2.188 3.127 5.44 5.009 5.78 2.855.521 4.906-.329 8.623-.215 3.717.113 5.508 1.065 8.386.713 2.879-.35 3.343-9.1 3.343-9.1.046-.51.09-.94.114-1.291.079-1.78.101-5.077-.51-8.046-.431-2.085-1.168-4.012-2.426-5.133h-.01z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M61.608 50.141c.204-2.3.272-4.351.238-6.198-.362-16.511-9.858-15.605-14.425-15.74-5.1-.148-9.837-1.055-13.576 2.685-4.896 4.884-3.411 14.766-2.81 17.791 0 .034.01.068.022.102v.012c.102.51.17.804.17.804h.011c.08.329.17.714.284 1.11.85 3.038 2.22 6.097 2.22 6.097 2.516 6.63 5.757 10.947 7.185 12.738.216.272.522.487.918.668 1.28.59 3.49.76 6.652.782.827.046 1.62.068 2.38.08.895.01 1.745 0 2.516-.034 1.858-.102 3.263-.408 3.807-1.02 1.53-1.7 4.34-7.547 4.476-14.233 0 0 .182-1.882.102-3.82a15.555 15.555 0 00-.17-1.824zm-.906-1.235c-.023.351-.068.782-.113 1.292 0 0-.465 8.748-3.343 9.1-2.879.35-4.67-.601-8.386-.714-3.717-.114-5.768.736-8.624.215-1.881-.34-3.864-3.592-5.009-5.78-.589-1.133-.952-1.971-.952-1.971-.17-.442-.306-.816-.442-1.122-.124-3.91.318-12.828 6.63-14.959 11.026 4.5 14.12-2.05 17.292.76 1.258 1.122 1.995 3.048 2.426 5.133.611 2.97.589 6.267.51 8.046h.01z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M43.896 77.497h.26l5.519-4.669a8.04 8.04 0 01-1.87.227 9.019 9.019 0 01-5.915-2.81l-.057-.057c-.396-.181-.702-.397-.918-.669-1.428-1.79-4.657-6.096-7.184-12.737 0 0-1.383-3.06-2.221-6.097-.114-.396-.204-.782-.284-1.099h-.011s-.068-.306-.17-.816v-.011c0-.034-.011-.068-.023-.102-1.303-.34-3.082-.26-3.524 2.425-.805 4.918 3.728 8.272 6.505 8.012a29.293 29.293 0 002.47 4.623c.147 2.437.6 5.247.34 7.015l7.094 6.743-.011.022z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M48.498 70.981c-3.162-.011-5.383-.193-6.652-.782l.056.057a9.019 9.019 0 005.916 2.81c.623 0 1.258-.09 1.87-.227l1.507-1.269c-.102-.158-.216-.328-.306-.51-.76-.011-1.553-.045-2.38-.079h-.011z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M54.934 73.553l-3.74-1.983-1.507 1.269-5.519 4.669h-.26l-7.094-6.743-3.638 2.165s.488 19.967 1.598 45.147c.193 4.227-.08 28.943.113 33.386 5.746 1.892 12.976 2.651 20.047 3.037V73.553z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M48.498 70.981c-3.162-.011-5.383-.193-6.652-.782l.056.057a9.019 9.019 0 005.916 2.81c.623 0 1.258-.09 1.87-.227l1.507-1.269c-.102-.158-.216-.328-.306-.51-.76-.011-1.553-.045-2.38-.079h-.011z\",\n opacity: 0.3\n}), /*#__PURE__*/React.createElement(\"path\", {\n stroke: \"currentColor\",\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeWidth: 0.295,\n d: \"M43.86 79.05l-8.091 8.023-2.765-4.68M43.862 79.05l6.8 8.022 4.895-8.963\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M45.822 61.848l8.091.204s.057 3.49-3.773 3.377c-5.02-.159-4.318-3.581-4.318-3.581zM34.105 147.812c.634.068 1.269.125 1.915.193a93.477 93.477 0 01-1.916-.193zM28.71 147.177c1.666.227 3.434.431 5.281.612a198.958 198.958 0 01-5.28-.612zM33.99 147.802s.068 0 .113.011c-.033 0-.067 0-.112-.011z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M86.164 154.952a71.197 71.197 0 01-4.113-1.235c-3.558-1.179-4.771-2.708-5.655-3.819-.215-.272-.42-.51-.623-.725l-.363 1.677c-6.788-.555-13.519-.986-19.91-1.405l.102 14.403-18.97.306c-.182-5.292-.386-10.72-.601-16.171a93.477 93.477 0 01-1.915-.193c-.034 0-.068 0-.113-.011a207.624 207.624 0 01-5.281-.612c-6.64-.884-11.638-2.062-14.154-3.819a12.26 12.26 0 01-1.62-1.36l-6.12 47.765c1.224 1.519 4.012 2.561 7.423 3.286-1.236 42.859-1.349 113.945 2.867 127.306l14.686.974 11.49-117.503 8.976 117.775 18.981-2.72c3.717-25.044 4.023-88.594.952-127.86 3.355-.646 5.768-1.303 5.768-1.303-2.969-8.397-4.997-23.231-6.323-37.011 3.116 10.573 6.765 21.429 10.822 30.155l3.615-1.893 6.221-3.263 3.128-1.643c-3.58-6.448-6.675-13.905-9.236-21.124l-.034.023zM59.33 75.876l-.52-.272c.17.103.34.204.52.306v-.034zM54.923 73.315v.227l3.887 2.05c-2.176-1.291-3.887-2.288-3.887-2.288v.01z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M77.439 124.207c.272-12.964-2.777-39.13-7.423-42.144-.76-.498-1.473-.782-2.153-.918-1.824-1.37-4.93-3.06-4.93-3.06a253.058 253.058 0 00-3.603-2.164c-.17-.102-.351-.204-.521-.306l-3.887-2.05L54 142.02c-2.708-.147-4.337.306-7 0-2.312-.26-5.67-1.257-7.811-1.688-1.836-.374-3.592-.805-5.224-1.349-.193-4.453 1-16.669.808-20.896-1.11-25.18-1.598-45.147-1.598-45.147-1.847 1.258-8.147 2.05-8.147 2.05-5.111 1.032-8.567 1.667-10.8 2.573-3.57 1.258-7.422 3.921-7.422 9.53 0 0-6.845 42.303 6.119 54.927.51.499 1.054.952 1.62 1.36 2.516 1.757 7.514 2.935 14.154 3.819 2.255.306 4.714.567 7.32.816 1.338.125 2.72.249 4.137.363 2.448.204 5.009.396 7.66.578 2.482.17 5.043.34 7.672.51.748.045 1.508.102 2.267.147 5.711.374 11.65.771 17.644 1.258l.363-1.677 10.811 7.119c.454.034-4.697-13.667-4.697-13.667s0-1.005-.528-2.869c-2.56-9.055-3.91-15.571-3.91-15.571z\"\n}));\n\nvar SvgTellYourEmployer = function SvgTellYourEmployer(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n fill: \"none\",\n viewBox: \"0 0 148 148\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"tell-your-employer_svg__a\",\n style: {\n maskType: \"alpha\"\n },\n width: 148,\n height: 148,\n x: 0,\n y: 0,\n maskUnits: \"userSpaceOnUse\"\n }, _ref3), _ref4);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgTellYourEmployer, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/tell-your-employer.b5004543.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"timeline_svg__a\",\n d: \"M23 8c0 1.1-.9 2-2 2a1.7 1.7 0 01-.51-.07l-3.56 3.55c.05.16.07.34.07.52 0 1.1-.9 2-2 2s-2-.9-2-2c0-.18.02-.36.07-.52l-2.55-2.55c-.16.05-.34.07-.52.07s-.36-.02-.52-.07l-4.55 4.56c.05.16.07.33.07.51 0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2c.18 0 .35.02.51.07l4.56-4.55C8.02 9.36 8 9.18 8 9c0-1.1.9-2 2-2s2 .9 2 2c0 .18-.02.36-.07.52l2.55 2.55c.16-.05.34-.07.52-.07s.36.02.52.07l3.55-3.56A1.7 1.7 0 0119 8c0-1.1.9-2 2-2s2 .9 2 2zm0 0c0 1.1-.9 2-2 2a1.7 1.7 0 01-.51-.07l-3.56 3.55c.05.16.07.34.07.52 0 1.1-.9 2-2 2s-2-.9-2-2c0-.18.02-.36.07-.52l-2.55-2.55c-.16.05-.34.07-.52.07s-.36-.02-.52-.07l-4.55 4.56c.05.16.07.33.07.51 0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2c.18 0 .35.02.51.07l4.56-4.55C8.02 9.36 8 9.18 8 9c0-1.1.9-2 2-2s2 .9 2 2c0 .18-.02.36-.07.52l2.55 2.55c.16-.05.34-.07.52-.07s.36.02.52.07l3.55-3.56A1.7 1.7 0 0119 8c0-1.1.9-2 2-2s2 .9 2 2z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#timeline_svg__a\"\n});\n\nvar SvgTimeline = function SvgTimeline(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgTimeline, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/timeline.df4c9cb9.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"today_svg__a\",\n d: \"M19 4h-1V3c0-.55-.45-1-1-1s-1 .45-1 1v1H8V3c0-.55-.45-1-1-1s-1 .45-1 1v1H5c-1.11 0-1.99.9-1.99 2L3 20a2 2 0 002 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-1 16H6c-.55 0-1-.45-1-1V9h14v10c0 .55-.45 1-1 1zM8 11h3c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1H8c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#today_svg__a\"\n});\n\nvar SvgToday = function SvgToday(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgToday, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/today.ba6787d4.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"g\", {\n fill: \"currentColor\",\n fillRule: \"evenodd\",\n stroke: \"currentColor\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M9.764.598c2.858-.095 5.232.969 6.95 2.688A9.482 9.482 0 0119.5 10a9.424 9.424 0 01-2.556 6.472h0l1.555 1.554-4.308.616.615-4.308 1.672 1.671a8.828 8.828 0 001.504-9.79A8.826 8.826 0 0010 1.165a.332.332 0 01-.236-.568zM5.81 1.357l-.616 4.308-1.672-1.671a8.828 8.828 0 00-1.504 9.79A8.826 8.826 0 0010 18.835c-1.85.667-3.615.131-5.113-.824A9.485 9.485 0 011.38 14 9.487 9.487 0 013.055 3.526h0L1.501 1.973l4.308-.616z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M10.27 5.814a7.187 7.187 0 011.9.271l.307.095-.14.35a8 8 0 00-2.042-.391l-.35-.013v.064l-.103-.012a2.134 2.134 0 00-1.346.353l-.146.106a1.32 1.32 0 00-.475 1.02c-.008.372.13.734.414 1.036a3.02 3.02 0 001.733.767l-.077-.01v.083l.866.33c.61.193 1.171.519 1.64.953a1.488 1.488 0 01.368 1.042c.013.485-.193.951-.56 1.27-.596.47-1.34.718-2.104.697l-.21-.012v.025l-.247.018a6.69 6.69 0 01-2.213-.27l-.304-.098v-.38c.256.09.517.167.782.23.558.146 1.133.22 1.71.223l.346-.008v-.014l.168-.008c.622-.045 1.08-.199 1.394-.42l.11-.087c.315-.27.48-.623.482-1.068a1.38 1.38 0 00-.469-1.063 3.389 3.389 0 00-1.758-.73l.073.011v-.072l-.918-.34a3.627 3.627 0 01-1.466-.914 1.73 1.73 0 01-.396-1l-.003-.158v-.025A1.46 1.46 0 017.79 6.49a3.213 3.213 0 012.012-.654l.219.012-.001-.031.25-.003z\"\n}));\n\nvar SvgTransactions = function SvgTransactions(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 20 20\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgTransactions, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/transactions.bd577159.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"trending-down_svg__a\",\n d: \"M16.646 16.951l1.44-1.44-4.88-4.88-3.29 3.29a.996.996 0 01-1.41 0l-6-6.01a.996.996 0 111.41-1.41l5.29 5.3 3.29-3.29a.996.996 0 011.41 0l5.59 5.58 1.44-1.44a.5.5 0 01.85.35v4.29c0 .28-.22.5-.5.5h-4.29c-.44.01-.66-.53-.35-.84z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#trending-down_svg__a\"\n});\n\nvar SvgTrendingDown = function SvgTrendingDown(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgTrendingDown, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/trending-down.fd9369b9.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"trending-flat_svg__a\",\n d: \"M21.254 11.65l-2.79-2.79a.501.501 0 00-.86.35V11h-14c-.55 0-1 .45-1 1s.45 1 1 1h14v1.79c0 .45.54.67.85.35l2.79-2.79c.2-.19.2-.51.01-.7z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#trending-flat_svg__a\"\n});\n\nvar SvgTrendingFlat = function SvgTrendingFlat(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgTrendingFlat, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/trending-flat.20082d5c.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"trending-up_svg__a\",\n d: \"M16.646 7.054l1.44 1.44-4.88 4.88-3.29-3.29a.996.996 0 00-1.41 0l-6 6.01a.996.996 0 101.41 1.41l5.29-5.3 3.29 3.29c.39.39 1.02.39 1.41 0l5.59-5.58 1.44 1.44a.5.5 0 00.85-.35v-4.3a.48.48 0 00-.49-.5h-4.29a.5.5 0 00-.36.85z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#trending-up_svg__a\"\n});\n\nvar SvgTrendingUp = function SvgTrendingUp(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgTrendingUp, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/trending-up.6673f4ab.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n fillRule: \"evenodd\",\n d: \"M11 13c0 .6-.4 1-1 1s-1-.4-1-1V8h7c0-4.4-3.6-8-8-8S0 3.6 0 8h7v5c0 1.7 1.3 3 3 3s3-1.3 3-3v-1h-2v1z\"\n});\n\nvar SvgUmbrella = function SvgUmbrella(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 16 16\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgUmbrella, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/umbrella.f1fad036.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M80 0H0V80H80V0Z\",\n fill: \"white\"\n});\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask0_409_3)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M40.001 80C62.094 80 80.001 62.091 80.001 40C80.001 17.907 62.094 -0.000976562 40.001 -0.000976562C17.908 -0.000976562 0.000976562 17.908 0.000976562 40C0.000976562 62.092 17.908 80 40.001 80Z\",\n fill: \"#EAEAEA\"\n}));\n\nvar _ref4 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M80 0H0V80H80V0Z\",\n fill: \"white\"\n});\n\nvar _ref5 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask1_409_3)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M35.678 62.3264C32.685 62.3264 30.247 59.8904 30.247 56.8974C30.247 56.2904 30.74 55.7964 31.349 55.7964C31.956 55.7964 32.451 56.2894 32.451 56.8974C32.451 58.6774 33.899 60.1244 35.678 60.1244C37.456 60.1244 38.905 58.6774 38.905 56.8974V30.3354C38.905 29.7264 39.398 29.2334 40.006 29.2334C40.615 29.2334 41.109 29.7264 41.109 30.3354V56.8964C41.108 59.8894 38.671 62.3264 35.678 62.3264Z\",\n fill: \"#260046\"\n}));\n\nvar _ref6 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M80 0H0V80H80V0Z\",\n fill: \"white\"\n});\n\nvar _ref7 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask2_409_3)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M40.005 21.9937C39.398 21.9937 38.903 21.5007 38.903 20.8917V16.6977C38.903 16.0907 39.398 15.5967 40.005 15.5967C40.614 15.5967 41.108 16.0897 41.108 16.6977V20.8917C41.108 21.5007 40.614 21.9937 40.005 21.9937Z\",\n fill: \"#260046\"\n}));\n\nvar _ref8 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M80 0H0V80H80V0Z\",\n fill: \"white\"\n});\n\nvar _ref9 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask3_409_3)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M21.079 38.9603C23.871 38.9603 26.276 40.4823 27.405 42.6833C28.534 40.4823 30.937 38.9603 33.73 38.9603C36.522 38.9603 38.928 40.4823 40.058 42.6833C41.186 40.4823 43.59 38.9603 46.383 38.9603C49.176 38.9603 51.58 40.4823 52.709 42.6833C53.837 40.4823 56.241 38.9603 59.034 38.9603C61.854 38.9603 64.277 40.5113 65.393 42.7433C65.331 28.7713 53.991 18.2383 40.004 18.2383C25.978 18.2383 14.608 28.8313 14.608 42.8553H14.663C15.752 40.5633 18.213 38.9603 21.079 38.9603Z\",\n fill: \"#ED4300\"\n}));\n\nvar _ref10 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M80 0H0V80H80V0Z\",\n fill: \"white\"\n});\n\nvar _ref11 = /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#mask4_409_3)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M56.185 26.2764L54.645 21.8614C54.459 21.3064 53.953 20.9004 53.334 20.9004C52.702 20.9004 52.187 21.3304 52.017 21.9074L50.484 26.2764C50.382 26.5804 50.314 26.9014 50.314 27.2404C50.314 28.9094 51.666 30.2634 53.334 30.2634C55.004 30.2634 56.357 28.9094 56.357 27.2404C56.357 26.9014 56.289 26.5814 56.185 26.2764Z\",\n fill: \"white\"\n}));\n\nvar _ref12 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"clipPath\", {\n id: \"clip0_409_3\"\n}, /*#__PURE__*/React.createElement(\"rect\", {\n width: 80,\n height: 80,\n fill: \"white\"\n})));\n\nvar SvgUmbrellaCover = function SvgUmbrellaCover(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n width: 80,\n height: 80,\n viewBox: \"0 0 80 80\",\n fill: \"none\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#clip0_409_3)\"\n }, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask0_409_3\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 0,\n y: 0,\n width: 80,\n height: 80\n }, _ref2), _ref3, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask1_409_3\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 0,\n y: 0,\n width: 80,\n height: 80\n }, _ref4), _ref5, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask2_409_3\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 0,\n y: 0,\n width: 80,\n height: 80\n }, _ref6), _ref7, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask3_409_3\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 0,\n y: 0,\n width: 80,\n height: 80\n }, _ref8), _ref9, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask4_409_3\",\n style: {\n maskType: \"alpha\"\n },\n maskUnits: \"userSpaceOnUse\",\n x: 0,\n y: 0,\n width: 80,\n height: 80\n }, _ref10), _ref11), _ref12);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgUmbrellaCover, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/umbrella-cover.13547905.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M153.498 173c84.774 0 153.497-5.596 153.497-12.5S238.272 148 153.498 148C68.723 148 0 153.596 0 160.5S68.723 173 153.498 173z\"\n});\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M231.585 115.648c-2.745 1.218-5.384 2.873-7.868 4.875a210.75 210.75 0 0010.99-17.46c3.102-5.503 6.137-12.29 4.581-18.844-5.596-.655-10.932 3.117-15.581 7.312-12.884 11.609-23.391 27.08-33.327 43.103 16.779-27.902 32.341-57.715 38.856-92.133 1.45-7.632 2.368-16.073-.309-23.09-11 1.218-19.506 13.033-26.05 24.822a256.611 256.611 0 00-8.293 16.292 404.573 404.573 0 004.427-27.093c1.16-9.07 2.001-18.345 1.015-27.453-.116-1.051-.329-2.232-1.025-2.745-.879-.641-1.942.154-2.745.95-14.305 14.188-22.018 37.24-26.542 60.164a308.954 308.954 0 00-4.301 29.222c-2.3-22.628-7.791-44.68-16.132-64.654-.996-2.386-2.436-5.067-4.495-4.99-1.817 5.824-1.778 12.328-1.662 18.64a1555.1 1555.1 0 003.402 78.341c-1.305-4.9-3.257-9.621-5.345-13.982-8.67-18.178-19.969-34.136-33.105-46.746-2.823-2.707-7.462-4.824-9.173-.796-.474 1.116-.541 2.463-.474 3.746.261 5.067 2.33 9.608 4.36 13.906a2412.175 2412.175 0 0025.102 51.685c2.59 5.169 5.229 10.378 8.264 15.073l-2.968-3.9c1.383 7.094 6.129 12.354 11.309 14.881 5.181 2.54 10.816 2.796 16.335 3.04l22.56.962c6.795.295 13.648.577 20.327-1.103 13.658-3.438 25.711-15.112 33.705-30.185 1.74-3.271 3.247-7.979 1.227-10.942-1.682-2.476-4.697-1.924-7.075-.86l.01-.038z\"\n});\n\nvar _ref4 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M181.994 44.725s-12.483 2.718-18.008 7.253c-6.733 5.499-7.231 16.06-17.511 48.153-4.344 13.553.001 24.869 17.51 14.869l.001 9.5 30.093 1.652V44.524l-12.085.2zM206.165 44.725s12.482 2.718 18.008 7.253c6.733 5.5 7.231 16.06 17.511 48.153 4.343 13.554-1.829 19.304-7.019 17.838-3.485-.99-6.061-4.435-8.525-7.253-1.83-2.105-4.045-3.883-4.045-3.883l-.685 18.903h-27.33V44.512l12.085.2v.013z\"\n});\n\nvar _ref5 = /*#__PURE__*/React.createElement(\"g\", {\n fill: \"currentColor\",\n clipPath: \"url(#unfunded-banner_svg__clip0_3800_42968)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M205.36 79.772c0 1.103-5.085 1.35-6.05 1.433-4.577.39-9.22.406-13.809.118-1.868-.118-3.783-.267-5.585-.633-.562-.114-2.085-.37-2.085-.918 0-.736 2.546-1.011 3.256-1.117 4.697-.7 9.569-.787 14.351-.563 2.174.102 4.446.248 6.62.555.849.118 3.306.307 3.306 1.125h-.004zM191.962 70.626s5.426.72 7.748-6.246c2.318-6.967 3.755-8.545 3.755-8.545s-.089-.528-1.403.118c-.724.358-1.546.559-2.306.822-1.259.441-2.511.925-3.709 1.52-1.224.606-2.441 1.33-3.402 2.326a5.59 5.59 0 00-.946 1.275c-.512.976-.775 2.16-.876 3.247-.089.953.05 1.952.19 2.897a7.47 7.47 0 00.407 1.594c.077.197.163.39.267.575.035.067.194.41.272.417h.003zM190.423 71.338s-3.368 1.374-5.996-2.708c-2.628-4.085-3.81-4.857-3.81-4.857s-.031-.354.919-.161c.949.192 6.701.047 8.022 2.64 1.318 2.594 1.186 4.346.865 5.086z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M187.099 76.668c2.507-.68 5.096-.437 7.639-.189 1.608.158 3.259.327 4.709 1.126 1.449.799 2.682 2.37 2.763 4.259.027.621-.077 1.27-.38 1.794-.376.658-1.004 1.051-1.604 1.413-1.477.89-2.954 1.783-4.43 2.673-.659.397-1.329.799-2.046 1.011-1.097.323-2.237.181-3.345.012a81.466 81.466 0 01-5.418-1.011c-1.086-.24-2.217-.54-3.02-1.41-3.472-3.79 2.244-8.895 5.132-9.678zM177.832 79.699h-.004v.02s.004-.012.004-.02z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M205.556 96.19c0-1.291-.352-14.681-.232-16.327-.427.98-5.097 1.209-6.015 1.287-4.577.39-9.22.406-13.809.118-1.868-.118-3.783-.267-5.585-.633-.562-.114-2.085-.37-2.085-.913 0 4.266.147 8.572.031 12.83-.027 1.004-.074 2.008-.109 3.012-.131 4.081.101 8.371 2.647 11.74 2.151 2.846 5.601 4.613 9.108 4.613h4.372c4.829 0 9.263-3.255 10.894-7.816.9-2.515.783-5.27.787-7.904l-.004-.008zM191.38 78.533a.359.359 0 01-.357-.35c-.534-14.067 7.267-18.058 7.597-18.224a.353.353 0 01.476.17.37.37 0 01-.166.488c-.078.039-7.713 3.975-7.194 17.538.008.2-.147.37-.344.378h-.016.004z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M191.542 73.744a.354.354 0 01-.329-.225c-1.834-4.404-6.771-7.462-6.822-7.494a.37.37 0 01-.124-.5.357.357 0 01.493-.126c.209.13 5.189 3.216 7.111 7.833a.363.363 0 01-.19.476.352.352 0 01-.139.028v.008z\"\n}));\n\nvar _ref6 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M222.442 148.52c.448-7.053-.066-16.895-1.025-23.885h-57.256l-1.346 15.642L164.161 181c8.426 2.342 23.84 0 23.84 0l4.086-15.469V181c8.052 1.917 29.33 0 29.33 0l1.025-32.48zM186.735 33.313c1.22 3.695 2.552 4.384-.821 11.437 2.402 4.083 14.35 4.296 15.893 0-2.302-5.938-1.07-7.441-.411-11.437.66-3.984-15.893-3.696-14.661 0z\"\n});\n\nvar _ref7 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M186.461 33.476c.647 1.966 1.954 3.169 1.494 5.436-.1.464 3.36 2.706 6.409 2.744 3.099.05 6.111-1.967 6.086-2.656-.1-2.318 1.02-3.971 1.282-5.562.659-3.983-16.503-3.658-15.283.038h.012z\"\n});\n\nvar _ref8 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M191.59 32.812l7.679-.025s.149 3.119-3.485 3.106c-4.754-.012-4.194-3.081-4.194-3.081z\"\n});\n\nvar _ref9 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M189.76 32.812l7.678-.025s.15 3.119-3.484 3.106c-4.754-.012-4.194-3.081-4.194-3.081zM159.604 100.244l-7.181 5.687s.684-2.117 1.593-2.956c.908-.839 5.588-2.731 5.588-2.731zM228.179 100.882l8.799 2.142s-1.344-1.403-2.402-1.654c-1.058-.25-6.397-.488-6.397-.488z\"\n});\n\nvar _ref10 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M205.068 92.552c-.56.501-.672 2.142.237 3.207.485.564 1.331 1.027 2.153 1.478 1.244.677 2.538 1.39 2.426 2.368-.024.238-.336 1.303-2.339 1.929-1.407.438-7.356 2.33-8.052 2.505-2.502.664-3.535 1.691-3.448 2.405.025.226.199.739 1.307.764.51.013 1.344-.087 2.327-.263-2.651.815-2.974 1.053-3.099 1.153-.51.388-.983 1.052-.796 1.578.162.439.709.627 1.63.576.336-.012.834-.087 1.419-.212-.448.238-.573.4-.61.538a.34.34 0 00.075.338c.423.489 1.568.188 3.036-.2 1.295-.351 13.939-5.637 19.005-3.758 2.875 1.065 5.762 3.771 5.799 3.771.1 0 5.364-9.057 5.265-9.045 0 0-10.666-2.505-12.384-3.62-.883-.576-2.24-1.741-5.065-2.23-6.036-1.027-7.119-2.217-7.903-3.094l-.074-.075c-.336-.376-.685-.3-.896-.113h-.013zM177.948 82.456c.722.225 1.493 1.666 1.095 3.019-.211.714-.796 1.49-1.356 2.242-.859 1.14-1.743 2.317-1.233 3.157.125.2.847 1.052 2.925.789 1.469-.188 7.654-.952 8.363-1.065 2.552-.438 3.908.063 4.132.752.063.213.112.751-.871 1.24-.46.225-1.257.476-2.228.726 2.751-.363 3.137-.275 3.299-.238.634.138 1.331.552 1.369 1.103.037.463-.386.864-1.245 1.215-.311.125-.797.263-1.381.4.51.038.684.138.784.239a.331.331 0 01.074.338c-.186.614-1.356.827-2.85 1.077-1.319.226-15.009.677-18.855 4.485-2.19 2.167-3.696 5.837-3.721 5.85-.099.037-8.6-6.013-8.5-6.051 0 0 8.674-6.714 9.795-8.443.572-.889 1.319-2.517 3.696-4.133 5.078-3.458 5.563-4.986 5.924-6.1l.037-.101c.15-.476.498-.564.772-.476l-.025-.025z\"\n});\n\nvar _ref11 = /*#__PURE__*/React.createElement(\"g\", {\n fill: \"currentColor\",\n clipPath: \"url(#unfunded-banner_svg__clip1_3800_42968)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M206.704 27.92c2.643-7.572 1.081-14.97-3.489-16.523-4.57-1.554-10.417 3.324-13.06 10.896-2.643 7.571-1.081 14.97 3.488 16.523 4.57 1.554 10.417-3.325 13.061-10.896z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M186.64 9.842c-.313-1.798-.613-3.7.038-5.412 1.102-2.88 4.526-4.195 7.637-4.399.945-.062 1.909-.05 2.836.136 2.103.432 3.906 1.742 5.928 2.453 2.022.716 4.683.618 5.847-1.162.733 1.736.344 3.954-.864 5.406a4.243 4.243 0 002.83-.148c2.122 4.627.951 10.206-1.734 14.544-2.686 4.337-6.698 7.68-10.649 10.941-2.566-2.984-5.127-5.968-7.693-8.952-1.572-1.829-3.168-3.695-4.119-5.9-.952-2.206-1.234-5.4-.076-7.507h.019z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M191.147 33.35c-6.291-3.602-10.085-10.583-10.147-17.762-.019-2.07.319-4.232 1.546-5.907 1.227-1.674 3.537-2.706 5.496-1.977 4.614 7.76 5.378 16.935 3.105 25.646z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M195.592 42a7.105 7.105 0 004.683-2.033c6.998-6.889 5.759-19.535 5.759-19.535 0-4.276-5.234-6.401-10.429-6.376-5.203-.031-10.436 2.094-10.436 6.37 0 0-1.246 12.646 5.747 19.541A7.1 7.1 0 00195.592 42z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M207.198 15.508c0-4.751-5.815-7.118-11.594-7.087-5.778-.03-11.6 2.33-11.6 7.08 0 0-1.383 14.062 6.392 21.723a7.857 7.857 0 005.202 2.262 7.855 7.855 0 005.202-2.262c7.775-7.654 6.404-21.716 6.404-21.716h-.006z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M210.041 23.045c-.802-3.275-3.919-1.13-3.919-1.13l-.989 7.58c2.122.39 5.866-2.54 4.908-6.45zM181.156 23.033c.801-3.275 3.919-1.13 3.919-1.13l.983 7.58c-2.122.383-5.866-2.546-4.908-6.45h.006z\"\n}));\n\nvar _ref12 = /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#unfunded-banner_svg__clip2_3800_42968)\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M108.779 47.744c-3.63 4.9-7.301 10.204-9.282 7.455-3.35-4.66-6.007-6.476-2.156-11.745 3.333-4.56 6.124-8.638 9.282-7.454 3.158 1.183 5.518 7.208 2.156 11.744z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M104.566 50.481c4.224-1.178 6.631-5.814 5.378-10.344-1.253-4.536-5.687-7.255-9.911-6.077-4.225 1.178-6.63 5.814-5.378 10.344 1.252 4.536 5.687 7.255 9.911 6.077zM107.275 53.195c.56-.376.123-2.802-.139-3.148-.257-.351-2.704 1.419-2.413 1.806.292.386 2.179 1.594 2.552 1.342z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M95.86 47.316s-2.365 3.822-7.062 4.015l-.28 4.624 6.73 5.93s.49-7.296 3.805-7.606c3.135-.287-3.193-6.969-3.193-6.969v.006z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M98.11 58.99s3.129 4.296 2.767 8.229c-.309 3.317-3.641 12.167-4.2 14.241a2.248 2.248 0 00.186 1.647c1.043 1.957 1.952 5.814 3.129 7.15.623.703-4.464 3.815-4.464 3.815l-5.646-8.357a3.164 3.164 0 01-.273-1.717c.471-4.038 2.132-23.648 8.5-25.001v-.006zM68.219 110.816c-3.187-2.192 7.645 16.914 8.07 25.939.425 9.02.274 19.252.274 19.252s9.24 1.817 9.16 1.102l1.905-22.001-5.507-32.801-13.902 8.503v.006z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M60.23 96.487c-2.977-2.473-4.166 26.724-4.55 35.756-.38 9.019-2.518 22.903-2.518 22.903s9.037 2.643 9.02 1.922l5.087-23.126 2.47-27.715-9.515-9.746.006.006zM65.52 74.217s3.66-6.857 5.28-10.426c1.62-3.57 4.847-12.718 8.85-12.466h9.142s-1.701 21.016 1.498 23.777c0 0-19.764 10.21-22.334 9.922L65.509 74.21l.011.006z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M96.362 57.215c-5.646 1.823-7.563-5.89-7.563-5.89s-3.59 19-4.912 21.643c0 0 8.437.915 8.99 3.435.548 2.526 5.233-17.418 5.233-17.418l-1.748-1.776v.006z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M94.613 73.162l3.158-4.577s0-4.612.332-9.594l-1.054-1.067c-.542 3.364-1.655 13.404-2.442 15.244l.006-.006zM84.58 71.028s1.433-19.703 1.841-19.709h2.372s-1.935 17.611-1.539 21.644l-2.674-1.94v.005z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M66.47 80.405S51.753 94.125 48 127.003l42.995 2.438c-5.5-18.818-4.964-41.698-1.107-43.738 3.852-2.04 6.887-5.098 7.703-12.436l.187-4.688s-5.874 4.46-12.97-.41c0 0-6.608 8.585-12.942 8.667 0 0-2.668 9.272-5.384 3.564l-.011.005z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M85.64 88.083s.933-.03 1.521.187c.583.206 2.605 1.5 2.826 1.823.222.316.088.832-.437.862-.524.029-2.033-.082-2.027-.604 0-.528-1.882-2.262-1.882-2.262v-.006z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n stroke: \"currentColor\",\n strokeLinecap: \"round\",\n strokeMiterlimit: 10,\n strokeWidth: 1.8,\n d: \"M128.361 110.816l-2.93 11.792\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M122.057 117.439l-22.514-.61.996-7.238 22.206 4.032-.688 3.822v-.006z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M122.605 113.471l5.191-1.992-2.494 10.021-3.88-4.378 1.183-3.651z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n stroke: \"currentColor\",\n strokeMiterlimit: 10,\n strokeWidth: 3.23,\n d: \"M96.274 102.049a7.774 7.774 0 01-11.036.252c-3.117-2.995-3.228-7.965-.25-11.1a7.774 7.774 0 0111.035-.252c3.118 2.995 3.228 7.964.25 11.1z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M94.352 120.68l-13.35-12.841a2.087 2.087 0 01.1-3.089l18.744-15.8 12.429 11.956-14.864 19.533a2.047 2.047 0 01-3.06.241z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M81.102 104.75a2.082 2.082 0 00-.1 3.089l13.35 12.841a2.053 2.053 0 003.065-.241l14.864-19.533L99.852 88.95l-18.744 15.8h-.006z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n stroke: \"currentColor\",\n strokeLinecap: \"round\",\n strokeMiterlimit: 10,\n strokeWidth: 1.97,\n d: \"M98.948 88.077l7.115 6.845 6.84 6.588\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M119.721 114.233l-12.574-16.914-1.089.82 12.574 16.915 1.089-.821zM81.626 56.998L70.468 75.266l10.604 11.281-2.022 3.136S65.697 83.2 65.528 77.827c-.07-2.186 10.558-24.445 10.558-24.445l5.547 3.616h-.006z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M82.034 52.064c-.525-.358-3.188-2.186-7.558 1.77-4.364 3.955-9.864 11.932-10.26 21.315-.146 3.498 3.985 10.32 5.762 11.064 0 0 3.013-1.752 6.579-6.3l-2.984-5.684s3.619-11.388 7.325-13.937c2.895-1.993 2.394-7.379 1.136-8.228zM80.222 90.626s1.002.592 1.363 1.184c.367.598 1.44 2.005 3.106 2.385 1.66.376 2.995-1.066 3.525-1.64.53-.58.501-.551.927-1.202.425-.65-.35-1.207-.35-1.207s-2.127-.733-1.632-1.881c-1.719-.909-3.723-.141-4.86-.797-1.135-.663-1.555-1.266-1.555-1.266l-2.249 3.047 1.719 1.372.006.005z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M74.669 76.31l.885-.335c-1.252-5.175 1.841-11.334 2.185-11.657 0 0-4.754 5.609-3.07 11.991zM108.295 35.583c-1.381-1.3-2.855-1.898-3.98-2.238.321-1.635-.274-3.394-1.695-4.454a4.427 4.427 0 00-6.217.908 4.481 4.481 0 00-.286 4.905c-3.513 2.526-5 7.309-3.321 11.657.35.909.821 1.729 1.375 2.462a.697.697 0 001.23-.229c.302-1.032.81-2.028 1.474-2.971a2.165 2.165 0 01-.53-1.383 2.175 2.175 0 012.144-2.21c1.2-.017 2.179.95 2.196 2.157 0 .31-.058.598-.169.867 3.164.657 6.101.158 8.653-2.743-.606 1.712 1.084 4.337 1.084 4.337s4.073-5.397-1.958-11.065zM52.976 142.475l13.53 1.225-4.125 21.362s-.327 3.622 1.928 5.386c2.25 1.758 4.032 1.922 4.982 2.186.944.263 1.678.914 1.632 1.846-.03.504-.088 1.219-.146 1.776a.82.82 0 01-.886.738l-7.575-.686s-4.847-1.705-5.558-1.77l-.577 1.214-5.96-.54a.9.9 0 01-.81-.978c.128-1.354.378-3.845.629-4.572.343-1.019 1.404-3.235 1.34-4.506-.064-1.272.326-16.48 1.602-22.675l-.011-.012.005.006zM75.252 143.401H88.84l-2.203 21.649s0 3.64 2.395 5.187c2.395 1.553 4.19 1.553 5.157 1.729.967.182 1.753.756 1.788 1.694.024.51.018 1.225.012 1.781a.815.815 0 01-.816.815h-7.61s-4.975-1.26-5.692-1.26l-.466 1.26H75.42a.898.898 0 01-.892-.897c0-1.359.035-3.868.216-4.612.25-1.049 1.107-3.352.926-4.612-.18-1.26-1.148-16.439-.425-22.728v-.011l.006.005zM125.326 160.948s7.394.972 10.552-8.428c3.164-9.4 5.122-11.528 5.122-11.528s-.123-.709-1.912.159c-.984.48-2.109.756-3.14 1.107-1.713.592-3.421 1.248-5.052 2.051-1.666.821-3.327 1.794-4.638 3.136-.501.516-.95 1.084-1.288 1.723-.699 1.318-1.054 2.913-1.194 4.384-.123 1.283.07 2.631.256 3.909.111.732.286 1.459.554 2.15.105.264.221.528.367.774.046.088.262.551.367.563h.006zM123.235 161.909s-4.586 1.852-8.169-3.651c-3.578-5.509-5.192-6.552-5.192-6.552s-.041-.481 1.253-.217c1.293.258 9.13.064 10.931 3.563 1.794 3.499 1.614 5.861 1.177 6.863v-.006zM139.083 174.814h-27.612c1.777-2.819 5.081-5.134 7.225-5.714 1.754-.475 3.531-.616 5.314-.598.326 0 .647.017.979.029 1.375.053 2.744.194 4.113.317 2.197.211 4.44.439 6.416 1.518 1.631.885 3.059 2.484 3.565 4.448z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M124.534 171.608a.486.486 0 01-.484-.474c-.728-18.977 9.9-24.363 10.349-24.585a.476.476 0 01.646.228.492.492 0 01-.227.656c-.105.053-10.505 5.363-9.8 23.666a.49.49 0 01-.472.509h-.024.012z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M124.761 165.15a.482.482 0 01-.449-.305c-2.5-5.942-9.224-10.068-9.294-10.109a.492.492 0 01.502-.844c.285.176 7.067 4.337 9.689 10.567a.493.493 0 01-.256.644.45.45 0 01-.192.035v.012z\"\n}));\n\nvar _ref13 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"clipPath\", {\n id: \"unfunded-banner_svg__clip0_3800_42968\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M0 0h27.839v56.283H0z\",\n transform: \"translate(177.722 55.63)\"\n})), /*#__PURE__*/React.createElement(\"clipPath\", {\n id: \"unfunded-banner_svg__clip1_3800_42968\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M0 0h31v42H0z\",\n transform: \"translate(181)\"\n})), /*#__PURE__*/React.createElement(\"clipPath\", {\n id: \"unfunded-banner_svg__clip2_3800_42968\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M0 0h93v149H0z\",\n transform: \"translate(48 28)\"\n})));\n\nvar SvgUnfundedBanner = function SvgUnfundedBanner(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n fill: \"none\",\n viewBox: \"0 0 307 183\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3, _ref4, _ref5, _ref6, _ref7, _ref8, _ref9, _ref10, _ref11, _ref12, _ref13);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgUnfundedBanner, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/unfunded-banner.b16e808c.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"upload_svg__a\",\n d: \"M10 16.296h4c.55 0 1-.45 1-1v-5h1.59c.89 0 1.34-1.08.71-1.71l-4.59-4.59a.996.996 0 00-1.41 0l-4.59 4.59c-.63.63-.19 1.71.7 1.71H9v5c0 .55.45 1 1 1zm-4 2h12c.55 0 1 .45 1 1s-.45 1-1 1H6c-.55 0-1-.45-1-1s.45-1 1-1z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#upload_svg__a\"\n});\n\nvar SvgUpload = function SvgUpload(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgUpload, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/upload.96778d01.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"verified-user_svg__a\",\n d: \"M11.19 1.266l-7 3.11C3.47 4.696 3 5.416 3 6.206v4.7c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12v-4.7c0-.79-.47-1.51-1.19-1.83l-7-3.11c-.51-.23-1.11-.23-1.62 0zm-1.9 14.93l-2.59-2.59a.996.996 0 111.41-1.41l1.89 1.88 5.88-5.88a.996.996 0 111.41 1.41l-6.59 6.59a.996.996 0 01-1.41 0z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#verified-user_svg__a\"\n});\n\nvar SvgVerifiedUser = function SvgVerifiedUser(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgVerifiedUser, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/verified-user.9acb35fc.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n fillRule: \"evenodd\",\n d: \"M35.124 29.562v28l22-14z\"\n});\n\nvar SvgVideoPlay = function SvgVideoPlay(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 87 87\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgVideoPlay, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/video-play.558f0161.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"g\", {\n fill: \"currentColor\",\n fillRule: \"evenodd\",\n transform: \"translate(.124 .562)\"\n}, /*#__PURE__*/React.createElement(\"circle\", {\n cx: 42.876,\n cy: 42.876,\n r: 42.876,\n fillOpacity: 0.64\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M35 29v28l22-14z\"\n}));\n\nvar SvgVideoPlayBg = function SvgVideoPlayBg(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 87 87\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgVideoPlayBg, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/video-play-bg.ff19db1a.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"visibility_svg__a\",\n d: \"M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#visibility_svg__a\"\n});\n\nvar SvgVisibility = function SvgVisibility(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgVisibility, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/visibility.e5840b60.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"visibility-off_svg__a\",\n d: \"M12 6.47c2.76 0 5 2.24 5 5 0 .51-.1 1-.24 1.46l3.06 3.06c1.39-1.23 2.49-2.77 3.18-4.53-1.73-4.38-6-7.49-11-7.49-1.27 0-2.49.2-3.64.57l2.17 2.17c.47-.14.96-.24 1.47-.24zM2.71 3.13a.996.996 0 000 1.41l1.97 1.97A11.892 11.892 0 001 11.47c1.73 4.39 6 7.5 11 7.5 1.52 0 2.97-.3 4.31-.82l2.72 2.72a.996.996 0 101.41-1.41L4.13 3.13c-.39-.39-1.03-.39-1.42 0zM12 16.47c-2.76 0-5-2.24-5-5 0-.77.18-1.5.49-2.14l1.57 1.57c-.03.18-.06.37-.06.57 0 1.66 1.34 3 3 3 .2 0 .38-.03.57-.07l1.57 1.57c-.65.32-1.37.5-2.14.5zm2.97-5.33a2.97 2.97 0 00-2.64-2.64l2.64 2.64z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#visibility-off_svg__a\"\n});\n\nvar SvgVisibilityOff = function SvgVisibilityOff(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgVisibilityOff, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/visibility-off.8be05035.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"warning_svg__a\",\n d: \"M4.47 20.504h15.06c1.54 0 2.5-1.67 1.73-3l-7.53-13.01c-.77-1.33-2.69-1.33-3.46 0l-7.53 13.01c-.77 1.33.19 3 1.73 3zm7.53-7c-.55 0-1-.45-1-1v-2c0-.55.45-1 1-1s1 .45 1 1v2c0 .55-.45 1-1 1zm1 4h-2v-2h2v2z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#warning_svg__a\"\n});\n\nvar SvgWarning = function SvgWarning(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgWarning, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/warning.5ef52a18.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"warning-amber_svg__a\",\n d: \"M12 5.494l7.53 13.01H4.47L12 5.494zm-9.26 12.01c-.77 1.33.19 3 1.73 3h15.06c1.54 0 2.5-1.67 1.73-3l-7.53-13.01c-.77-1.33-2.69-1.33-3.46 0l-7.53 13.01zm8.26-7v2c0 .55.45 1 1 1s1-.45 1-1v-2c0-.55-.45-1-1-1s-1 .45-1 1zm0 5h2v2h-2v-2z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#warning-amber_svg__a\"\n});\n\nvar SvgWarningAmber = function SvgWarningAmber(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgWarningAmber, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/warning-amber.97ae546f.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"g\", {\n fill: \"none\",\n fillRule: \"evenodd\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n fill: \"currentColor\",\n d: \"M5.48 7.9c-2.27-.59-3-1.2-3-2.15 0-1.09 1.01-1.85 2.7-1.85 1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V0h-3v2.16C1.74 2.58.18 3.84.18 5.77c0 2.31 1.91 3.46 4.7 4.13 2.5.6 3 1.48 3 2.41 0 .69-.49 1.79-2.7 1.79-2.06 0-2.87-.92-2.98-2.1H0c.12 2.19 1.76 3.42 3.68 3.83V18h3v-2.15c1.95-.37 3.5-1.5 3.5-3.55 0-2.84-2.43-3.81-4.7-4.4z\"\n}), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M-7-3h24v24H-7z\"\n}));\n\nvar SvgWithdrawDollar = function SvgWithdrawDollar(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 11 18\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgWithdrawDollar, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/withdraw-dollar.be741a8a.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"title\", null, \"Bitmap Copy 11\");\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"rect\", {\n id: \"path-1\",\n x: 0,\n y: 0,\n width: 48,\n height: 48,\n rx: 24\n}));\n\nvar _ref4 = /*#__PURE__*/React.createElement(\"g\", {\n id: \"New-Icons\",\n stroke: \"none\",\n strokeWidth: 1,\n fill: \"none\",\n fillRule: \"evenodd\"\n}, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group-5\",\n transform: \"translate(-761.000000, -260.000000)\"\n}, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group-7\",\n transform: \"translate(1.000000, 228.000000)\"\n}, /*#__PURE__*/React.createElement(\"g\", {\n id: \"Bitmap-Copy-11\",\n transform: \"translate(760.000000, 32.000000)\"\n}, /*#__PURE__*/React.createElement(\"mask\", {\n id: \"mask-2\",\n fill: \"white\"\n}, /*#__PURE__*/React.createElement(\"use\", {\n xlinkHref: \"#path-1\"\n})), /*#__PURE__*/React.createElement(\"use\", {\n id: \"Mask\",\n fill: \"#FFF0E0\",\n xlinkHref: \"#path-1\"\n}), /*#__PURE__*/React.createElement(\"g\", {\n id: \"Group\",\n mask: \"url(#mask-2)\"\n}, /*#__PURE__*/React.createElement(\"g\", {\n transform: \"translate(12.000000, 12.000000)\",\n id: \"attach_money-24px\"\n}, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M12.48,10.9 C10.21,10.31 9.48,9.7 9.48,8.75 C9.48,7.66 10.49,6.9 12.18,6.9 C13.96,6.9 14.62,7.75 14.68,9 L16.89,9 C16.82,7.28 15.77,5.7 13.68,5.19 L13.68,3 L10.68,3 L10.68,5.16 C8.74,5.58 7.18,6.84 7.18,8.77 C7.18,11.08 9.09,12.23 11.88,12.9 C14.38,13.5 14.88,14.38 14.88,15.31 C14.88,16 14.39,17.1 12.18,17.1 C10.12,17.1 9.31,16.18 9.2,15 L7,15 C7.12,17.19 8.76,18.42 10.68,18.83 L10.68,21 L13.68,21 L13.68,18.85 C15.63,18.48 17.18,17.35 17.18,15.3 C17.18,12.46 14.75,11.49 12.48,10.9 Z\",\n id: \"Path\",\n fill: \"#FF8200\"\n}), /*#__PURE__*/React.createElement(\"polygon\", {\n id: \"Path\",\n points: \"0 0 24 0 24 24 0 24\"\n})))))));\n\nvar SvgWithdrawMoney = function SvgWithdrawMoney(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n width: \"48px\",\n height: \"48px\",\n viewBox: \"0 0 48 48\",\n ref: svgRef\n }, props), title === undefined ? _ref2 : title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref3, _ref4);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgWithdrawMoney, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/withdraw-money.78401f7b.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"zoom-in_svg__a\",\n d: \"M15.97 14.472h-.79l-.28-.27a6.5 6.5 0 001.48-5.34c-.47-2.78-2.79-5-5.59-5.34-4.23-.52-7.78 3.04-7.27 7.27.34 2.8 2.56 5.12 5.34 5.59a6.5 6.5 0 005.34-1.48l.27.28v.79l4.26 4.25c.41.41 1.07.41 1.48 0l.01-.01c.41-.41.41-1.07 0-1.48l-4.25-4.26zm-6 0c-2.49 0-4.5-2.01-4.5-4.5s2.01-4.5 4.5-4.5 4.5 2.01 4.5 4.5-2.01 4.5-4.5 4.5zm0-7c-.28 0-.5.22-.5.5v1.5h-1.5c-.28 0-.5.22-.5.5s.22.5.5.5h1.5v1.5c0 .28.22.5.5.5s.5-.22.5-.5v-1.5h1.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-1.5v-1.5c0-.28-.22-.5-.5-.5z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#zoom-in_svg__a\"\n});\n\nvar SvgZoomIn = function SvgZoomIn(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgZoomIn, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/zoom-in.571e3a14.svg\";\nexport { ForwardRef as ReactComponent };","var _excluded = [\"svgRef\", \"title\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from \"react\";\n\nvar _ref2 = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"path\", {\n id: \"zoom-out_svg__a\",\n d: \"M15.972 14.472h-.79l-.28-.27a6.5 6.5 0 001.48-5.34c-.47-2.78-2.79-5-5.59-5.34a6.505 6.505 0 00-7.27 7.27c.34 2.8 2.56 5.12 5.34 5.59a6.5 6.5 0 005.34-1.48l.27.28v.79l4.26 4.25c.41.41 1.07.41 1.48 0l.01-.01c.41-.41.41-1.07 0-1.48l-4.25-4.26zm-6 0c-2.49 0-4.5-2.01-4.5-4.5s2.01-4.5 4.5-4.5 4.5 2.01 4.5 4.5-2.01 4.5-4.5 4.5zm-2-5h4c.28 0 .5.22.5.5s-.22.5-.5.5h-4c-.28 0-.5-.22-.5-.5s.22-.5.5-.5z\"\n}));\n\nvar _ref3 = /*#__PURE__*/React.createElement(\"use\", {\n fill: \"currentColor\",\n fillRule: \"nonzero\",\n xlinkHref: \"#zoom-out_svg__a\"\n});\n\nvar SvgZoomOut = function SvgZoomOut(_ref) {\n var svgRef = _ref.svgRef,\n title = _ref.title,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n viewBox: \"0 0 24 24\",\n ref: svgRef\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", null, title) : null, _ref2, _ref3);\n};\n\nvar ForwardRef = React.forwardRef(function (props, ref) {\n return /*#__PURE__*/React.createElement(SvgZoomOut, _extends({\n svgRef: ref\n }, props));\n});\nexport default __webpack_public_path__ + \"static/media/zoom-out.87a49ab8.svg\";\nexport { ForwardRef as ReactComponent };","// ------------------------------------------\n// Don't touch anything!!\n\n/* ENTIRE FILE AUTO-GENERATED BY 'yarn generate-icons' SCRIPT */\n\nimport { ReactComponent as AIcon } from './dist/a-icon.svg';\nimport { ReactComponent as AccountArrowNav } from './dist/account-arrow-nav.svg';\nimport { ReactComponent as AccountBalanceWallet } from './dist/account-balance-wallet.svg';\nimport { ReactComponent as AccountCircle } from './dist/account-circle.svg';\nimport { ReactComponent as Add } from './dist/add.svg';\nimport { ReactComponent as AddCircleOutline } from './dist/add-circle-outline.svg';\nimport { ReactComponent as Adjustment } from './dist/adjustment.svg';\nimport { ReactComponent as AgePension } from './dist/age-pension.svg';\nimport { ReactComponent as Announcement } from './dist/announcement.svg';\nimport { ReactComponent as Appstore } from './dist/appstore.svg';\nimport { ReactComponent as ArrowBack } from './dist/arrow-back.svg';\nimport { ReactComponent as ArrowBackIos } from './dist/arrow-back-ios.svg';\nimport { ReactComponent as ArrowBackMau } from './dist/arrow_back_mau.svg';\nimport { ReactComponent as ArrowDownward } from './dist/arrow-downward.svg';\nimport { ReactComponent as ArrowDropDown } from './dist/arrow-drop-down.svg';\nimport { ReactComponent as ArrowDropUp } from './dist/arrow-drop-up.svg';\nimport { ReactComponent as ArrowForward } from './dist/arrow-forward.svg';\nimport { ReactComponent as ArrowForwardIos } from './dist/arrow-forward-ios.svg';\nimport { ReactComponent as ArrowLeft } from './dist/arrow-left.svg';\nimport { ReactComponent as ArrowLeftAlt } from './dist/arrow-left-alt.svg';\nimport { ReactComponent as ArrowRight } from './dist/arrow-right.svg';\nimport { ReactComponent as ArrowRightAlt } from './dist/arrow-right-alt.svg';\nimport { ReactComponent as ArrowUpward } from './dist/arrow-upward.svg';\nimport { ReactComponent as AsFullLogo } from './dist/as-full-logo.svg';\nimport { ReactComponent as AsLogo } from './dist/as-logo.svg';\nimport { ReactComponent as Attachment } from './dist/attachment.svg';\nimport { ReactComponent as AusSuperSymbolTonalWhite } from './dist/aus-super-symbol-tonal-white.svg';\nimport { ReactComponent as Autorenew } from './dist/autorenew.svg';\nimport { ReactComponent as BIcon } from './dist/b-icon.svg';\nimport { ReactComponent as Bullet } from './dist/bullet.svg';\nimport { ReactComponent as CIcon } from './dist/c-icon.svg';\nimport { ReactComponent as Calculator } from './dist/calculator.svg';\nimport { ReactComponent as Cancel } from './dist/cancel.svg';\nimport { ReactComponent as CentrelinkSchedule } from './dist/centrelink-schedule.svg';\nimport { ReactComponent as Check } from './dist/check.svg';\nimport { ReactComponent as CheckCircle } from './dist/check-circle.svg';\nimport { ReactComponent as CheckCircleOutline } from './dist/check-circle-outline.svg';\nimport { ReactComponent as CheckDetails } from './dist/check-details.svg';\nimport { ReactComponent as Checklist } from './dist/checklist.svg';\nimport { ReactComponent as ChevronDown } from './dist/chevron-down.svg';\nimport { ReactComponent as ChevronLeft } from './dist/chevron-left.svg';\nimport { ReactComponent as ChevronRight } from './dist/chevron-right.svg';\nimport { ReactComponent as ChevronUp } from './dist/chevron-up.svg';\nimport { ReactComponent as Claim } from './dist/claim.svg';\nimport { ReactComponent as Clear } from './dist/clear.svg';\nimport { ReactComponent as Close } from './dist/close.svg';\nimport { ReactComponent as CloseMenu } from './dist/close-menu.svg';\nimport { ReactComponent as ColumnGraph } from './dist/column-graph.svg';\nimport { ReactComponent as Computer } from './dist/computer.svg';\nimport { ReactComponent as ComputerError } from './dist/computer-error.svg';\nimport { ReactComponent as Consolidate } from './dist/consolidate.svg';\nimport { ReactComponent as ConsolidatePuzzle } from './dist/consolidate-puzzle.svg';\nimport { ReactComponent as ConsolidateSuper } from './dist/consolidate-super.svg';\nimport { ReactComponent as ContactDetails } from './dist/contact-details.svg';\nimport { ReactComponent as ContactSupport } from './dist/contact-support.svg';\nimport { ReactComponent as ContributionsPiggyBank } from './dist/contributions -piggy-bank.svg';\nimport { ReactComponent as CreditCard } from './dist/credit-card.svg';\nimport { ReactComponent as CsHourglass } from './dist/cs-hourglass.svg';\nimport { ReactComponent as CurrentBalance } from './dist/current-balance.svg';\nimport { ReactComponent as DIcon } from './dist/d-icon.svg';\nimport { ReactComponent as Delete } from './dist/delete.svg';\nimport { ReactComponent as Description } from './dist/description.svg';\nimport { ReactComponent as Done } from './dist/done.svg';\nimport { ReactComponent as Download } from './dist/download.svg';\nimport { ReactComponent as DownloadConcrete } from './dist/download-concrete.svg';\nimport { ReactComponent as Edit } from './dist/edit.svg';\nimport { ReactComponent as EmployerSuitcase } from './dist/employer-suitcase.svg';\nimport { ReactComponent as Error } from './dist/error.svg';\nimport { ReactComponent as ErrorOutline } from './dist/error-outline.svg';\nimport { ReactComponent as Event } from './dist/event.svg';\nimport { ReactComponent as ExitToApp } from './dist/exit-to-app.svg';\nimport { ReactComponent as ExpandLess } from './dist/expand-less.svg';\nimport { ReactComponent as ExpandMore } from './dist/expand-more.svg';\nimport { ReactComponent as Favorite } from './dist/favorite.svg';\nimport { ReactComponent as Feedback } from './dist/feedback.svg';\nimport { ReactComponent as FilterList } from './dist/filter-list.svg';\nimport { ReactComponent as FlyerCover } from './dist/flyer-cover.svg';\nimport { ReactComponent as FourStacks } from './dist/four-stacks.svg';\nimport { ReactComponent as FutureContributions } from './dist/future-contributions.svg';\nimport { ReactComponent as GetApp } from './dist/get-app.svg';\nimport { ReactComponent as Googleplay } from './dist/googleplay.svg';\nimport { ReactComponent as Help } from './dist/help.svg';\nimport { ReactComponent as HelpOutline } from './dist/help-outline.svg';\nimport { ReactComponent as Home } from './dist/home.svg';\nimport { ReactComponent as HomeMunicipal } from './dist/home-municipal.svg';\nimport { ReactComponent as IllustrationNoNotifications } from './dist/illustration-no-notifications.svg';\nimport { ReactComponent as Info } from './dist/info.svg';\nimport { ReactComponent as LadyDesk } from './dist/lady-desk.svg';\nimport { ReactComponent as LaptopLocked } from './dist/laptop-locked.svg';\nimport { ReactComponent as LaptopTick } from './dist/laptop-tick.svg';\nimport { ReactComponent as Launch } from './dist/launch.svg';\nimport { ReactComponent as Link } from './dist/link.svg';\nimport { ReactComponent as Loading } from './dist/loading.svg';\nimport { ReactComponent as Lock } from './dist/lock.svg';\nimport { ReactComponent as LockMau } from './dist/lock_mau.svg';\nimport { ReactComponent as LockedComputer } from './dist/locked-computer.svg';\nimport { ReactComponent as LogoBpay } from './dist/logo_bpay.svg';\nimport { ReactComponent as Mail } from './dist/mail.svg';\nimport { ReactComponent as MakeChangesInvestments } from './dist/make-changes-investments.svg';\nimport { ReactComponent as MemberDetails } from './dist/member-details.svg';\nimport { ReactComponent as Menu } from './dist/menu.svg';\nimport { ReactComponent as Minus } from './dist/minus.svg';\nimport { ReactComponent as MobileError } from './dist/mobile-error.svg';\nimport { ReactComponent as MobileSunriseYellowGradient } from './dist/mobile-sunrise-yellow-gradient.svg';\nimport { ReactComponent as MoreHoriz } from './dist/more-horiz.svg';\nimport { ReactComponent as MoreVert } from './dist/more-vert.svg';\nimport { ReactComponent as Notifications } from './dist/notifications.svg';\nimport { ReactComponent as NotifyEmployer } from './dist/notify-employer.svg';\nimport { ReactComponent as OpenInNew } from './dist/open-in-new.svg';\nimport { ReactComponent as OpenMenu } from './dist/open-menu.svg';\nimport { ReactComponent as OrangeOvalCopy } from './dist/orange-oval-copy.svg';\nimport { ReactComponent as PadlockIcon } from './dist/padlock-icon.svg';\nimport { ReactComponent as Payment } from './dist/payment.svg';\nimport { ReactComponent as People } from './dist/people.svg';\nimport { ReactComponent as Performance } from './dist/performance.svg';\nimport { ReactComponent as PermPhoneMsg } from './dist/perm-phone-msg.svg';\nimport { ReactComponent as Person } from './dist/person.svg';\nimport { ReactComponent as PersonAdd } from './dist/person-add.svg';\nimport { ReactComponent as PiggyBank } from './dist/piggy-bank.svg';\nimport { ReactComponent as Print } from './dist/print.svg';\nimport { ReactComponent as QuestionAnswer } from './dist/question-answer.svg';\nimport { ReactComponent as Refresh } from './dist/refresh.svg';\nimport { ReactComponent as Search } from './dist/search.svg';\nimport { ReactComponent as Send } from './dist/send.svg';\nimport { ReactComponent as SetUpComplete } from './dist/set-up-complete.svg';\nimport { ReactComponent as Settings } from './dist/settings.svg';\nimport { ReactComponent as ShieldIcon } from './dist/shield-icon.svg';\nimport { ReactComponent as SlideSwitch } from './dist/slide-switch.svg';\nimport { ReactComponent as Smartphone } from './dist/smartphone.svg';\nimport { ReactComponent as Spinner } from './dist/spinner.svg';\nimport { ReactComponent as StacksWithArrows } from './dist/stacks-with-arrows.svg';\nimport { ReactComponent as SunriseYellowGradient } from './dist/sunrise-yellow-gradient.svg';\nimport { ReactComponent as SupervisorAccount } from './dist/supervisor-account.svg';\nimport { ReactComponent as SwitchClosed } from './dist/switch-closed.svg';\nimport { ReactComponent as SwitchOpen } from './dist/switch-open.svg';\nimport { ReactComponent as Tag } from './dist/tag.svg';\nimport { ReactComponent as Telephone } from './dist/telephone.svg';\nimport { ReactComponent as TellYourEmployer } from './dist/tell-your-employer.svg';\nimport { ReactComponent as Timeline } from './dist/timeline.svg';\nimport { ReactComponent as Today } from './dist/today.svg';\nimport { ReactComponent as Transactions } from './dist/transactions.svg';\nimport { ReactComponent as TrendingDown } from './dist/trending-down.svg';\nimport { ReactComponent as TrendingFlat } from './dist/trending-flat.svg';\nimport { ReactComponent as TrendingUp } from './dist/trending-up.svg';\nimport { ReactComponent as Umbrella } from './dist/umbrella.svg';\nimport { ReactComponent as UmbrellaCover } from './dist/umbrella-cover.svg';\nimport { ReactComponent as UnfundedBanner } from './dist/unfunded-banner.svg';\nimport { ReactComponent as Upload } from './dist/upload.svg';\nimport { ReactComponent as VerifiedUser } from './dist/verified-user.svg';\nimport { ReactComponent as VideoPlay } from './dist/video-play.svg';\nimport { ReactComponent as VideoPlayBg } from './dist/video-play-bg.svg';\nimport { ReactComponent as Visibility } from './dist/visibility.svg';\nimport { ReactComponent as VisibilityOff } from './dist/visibility-off.svg';\nimport { ReactComponent as Warning } from './dist/warning.svg';\nimport { ReactComponent as WarningAmber } from './dist/warning-amber.svg';\nimport { ReactComponent as WithdrawDollar } from './dist/withdraw-dollar.svg';\nimport { ReactComponent as WithdrawMoney } from './dist/withdraw-money.svg';\nimport { ReactComponent as ZoomIn } from './dist/zoom-in.svg';\nimport { ReactComponent as ZoomOut } from './dist/zoom-out.svg';\n\n// ------------------------------------------\n// Don't touch anything!!\n\n/* ENTIRE FILE AUTO-GENERATED BY 'yarn generate-icons' SCRIPT */\n\nconst RAW_SVGS = {\n\tAIcon: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2040%2040%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M20%2040c11.046%200%2020-8.954%2020-20S31.046%200%2020%200%200%208.954%200%2020s8.954%2020%2020%2020z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M13.795%2025.064c0%20.576.45%201.026%201.026%201.026.468%200%20.846-.252%201.026-.702l1.062-2.43h6.12l1.026%202.358c.198.468.558.774%201.08.774.594%200%201.044-.468%201.044-1.062a.964.964%200%2000-.126-.468l-4.68-10.44c-.252-.558-.684-.9-1.314-.9h-.108c-.63%200-1.08.342-1.332.9l-4.68%2010.44c-.09.18-.144.342-.144.504zm3.96-4.068l2.214-5.094%202.214%205.094h-4.428z%22%2F%3E%3C%2Fsvg%3E',\n\tAccountArrowNav: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2019%2064%22%3E%3Cpath%20fill%3D%22none%22%20fillRule%3D%22evenodd%22%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20d%3D%22M1%200l17%2032L1%2064%22%2F%3E%3C%2Fsvg%3E',\n\tAccountBalanceWallet: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22account-balance-wallet_svg__a%22%20d%3D%22M9.5%2016V8a2%202%200%20012-2h9V5c0-1.1-.9-2-2-2h-14a2%202%200%2000-2%202v14a2%202%200%20002%202h14c1.1%200%202-.9%202-2v-1h-9a2%202%200%2001-2-2zm3-8c-.55%200-1%20.45-1%201v6c0%20.55.45%201%201%201h9V8h-9zm3%205.5c-.83%200-1.5-.67-1.5-1.5s.67-1.5%201.5-1.5%201.5.67%201.5%201.5-.67%201.5-1.5%201.5z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23account-balance-wallet_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tAccountCircle: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22account-circle_svg__a%22%20d%3D%22M12%202C6.48%202%202%206.48%202%2012s4.48%2010%2010%2010%2010-4.48%2010-10S17.52%202%2012%202zm0%203c1.66%200%203%201.34%203%203s-1.34%203-3%203-3-1.34-3-3%201.34-3%203-3zm0%2014.2a7.2%207.2%200%2001-6-3.22c.03-1.99%204-3.08%206-3.08%201.99%200%205.97%201.09%206%203.08a7.2%207.2%200%2001-6%203.22z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23account-circle_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tAdd: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22add_svg__a%22%20d%3D%22M18%2013h-5v5c0%20.55-.45%201-1%201s-1-.45-1-1v-5H6c-.55%200-1-.45-1-1s.45-1%201-1h5V6c0-.55.45-1%201-1s1%20.45%201%201v5h5c.55%200%201%20.45%201%201s-.45%201-1%201z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23add_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tAddCircleOutline: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22add-circle-outline_svg__a%22%20d%3D%22M12%207c-.55%200-1%20.45-1%201v3H8c-.55%200-1%20.45-1%201s.45%201%201%201h3v3c0%20.55.45%201%201%201s1-.45%201-1v-3h3c.55%200%201-.45%201-1s-.45-1-1-1h-3V8c0-.55-.45-1-1-1zm0-5C6.48%202%202%206.48%202%2012s4.48%2010%2010%2010%2010-4.48%2010-10S17.52%202%2012%202zm0%2018c-4.41%200-8-3.59-8-8s3.59-8%208-8%208%203.59%208%208-3.59%208-8%208z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23add-circle-outline_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tAdjustment: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20fill%3D%22currentColor%22%20fillRule%3D%22evenodd%22%3E%3Cpath%20d%3D%22M15%203h-5c-.6%200-1%20.4-1%201s.4%201%201%201h5c.6%200%201-.4%201-1s-.4-1-1-1zM1%205h1v2c0%20.6.4%201%201%201h3c.6%200%201-.4%201-1V1c0-.6-.4-1-1-1H3c-.6%200-1%20.4-1%201v2H1c-.6%200-1%20.4-1%201s.4%201%201%201zM1%2013h5c.6%200%201-.4%201-1s-.4-1-1-1H1c-.6%200-1%20.4-1%201s.4%201%201%201zM15%2011h-1V9c0-.6-.4-1-1-1h-3c-.6%200-1%20.4-1%201v6c0%20.6.4%201%201%201h3c.6%200%201-.4%201-1v-2h1c.6%200%201-.4%201-1s-.4-1-1-1z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E',\n\tAgePension: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20id%3D%22age-pension_svg__Layer_2%22%20x%3D%220%22%20y%3D%220%22%20version%3D%221.1%22%20viewBox%3D%220%200%2080%2080%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%3E.age-pension_svg__st4%7Bfill%3A%23260046%7D.age-pension_svg__st5%7Bfill%3A%23fff%7D.age-pension_svg__st6%7Bfill%3A%23f5f5f5%7D%3C%2Fstyle%3E%3Cswitch%3E%3Cg%3E%3Ccircle%20cx%3D%2240%22%20cy%3D%2240%22%20r%3D%2240%22%20fill%3D%22none%22%2F%3E%3Cdefs%3E%3Cpath%20id%3D%22age-pension_svg__SVGID_1_%22%20d%3D%22M0%200h80v80H0z%22%2F%3E%3C%2Fdefs%3E%3CclipPath%20id%3D%22age-pension_svg__SVGID_00000145775020392114982930000004795791585640370111_%22%3E%3Cuse%20overflow%3D%22visible%22%20xlink%3Ahref%3D%22%23age-pension_svg__SVGID_1_%22%2F%3E%3C%2FclipPath%3E%3Cg%20clip-path%3D%22url(%23age-pension_svg__SVGID_00000145775020392114982930000004795791585640370111_)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M40%2080c22.093%200%2040-17.908%2040-39.999C80%2017.908%2062.093%200%2040%200S0%2017.908%200%2040.001C0%2062.092%2017.907%2080%2040%2080%22%2F%3E%3C%2Fg%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M54.682%2018.393c-4.425-3.415-10.735-1.561-12.962%203.173a23.79%2023.79%200%2001-3.986%205.975c-3.544%203.863-2.976%2011.079%206.832%2010.618a54.312%2054.312%200%20015.889.044c3.753.231%2010.178.197%2010.736-5.223.204-1.984-1.141-4.003-.999-5.842.26-3.382-1.16-7.783-5.51-8.745z%22%20clip-path%3D%22url(%23age-pension_svg__SVGID_00000145775020392114982930000004795791585640370111_)%22%2F%3E%3Cg%20clip-path%3D%22url(%23age-pension_svg__SVGID_00000145775020392114982930000004795791585640370111_)%22%3E%3Cpath%20d%3D%22M27.09%2041.314c-7.646%200-13.844%206.198-13.844%2013.844h27.688c0-7.646-6.198-13.844-13.844-13.844%22%20class%3D%22age-pension_svg__st4%22%2F%3E%3C%2Fg%3E%3Cg%20clip-path%3D%22url(%23age-pension_svg__SVGID_00000145775020392114982930000004795791585640370111_)%22%3E%3Cpath%20d%3D%22M18.897%2032.706a8.215%208.215%200%201116.43%200%208.215%208.215%200%2011-16.43%200%22%20class%3D%22age-pension_svg__st5%22%2F%3E%3C%2Fg%3E%3Cg%20clip-path%3D%22url(%23age-pension_svg__SVGID_00000145775020392114982930000004795791585640370111_)%22%3E%3Cpath%20d%3D%22M30.213%2037.709h-6.245v3.93a3.124%203.124%200%20006.246%200v-3.93z%22%20class%3D%22age-pension_svg__st5%22%2F%3E%3C%2Fg%3E%3Cg%20clip-path%3D%22url(%23age-pension_svg__SVGID_00000145775020392114982930000004795791585640370111_)%22%3E%3Cpath%20d%3D%22M30.203%2041.736c.001-.033.01-.063.01-.097v-1.337a8.175%208.175%200%2001-6.246%200v1.337c0%20.033.009.063.009.097.978.338%202.022.529%203.114.529s2.136-.192%203.113-.529%22%20class%3D%22age-pension_svg__st6%22%2F%3E%3C%2Fg%3E%3Cg%20clip-path%3D%22url(%23age-pension_svg__SVGID_00000145775020392114982930000004795791585640370111_)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M49.069%2037.782c-9.598%200-17.378%207.779-17.378%2017.376h34.754c0-9.598-7.778-17.376-17.376-17.376%22%2F%3E%3C%2Fg%3E%3Cg%20clip-path%3D%22url(%23age-pension_svg__SVGID_00000145775020392114982930000004795791585640370111_)%22%3E%3Cpath%20d%3D%22M50.822%2055.158L49.9%2043.742l.295-.508%201.25-1.92-2.334.139-2.253-.01%201.115%201.791.295.508-.922%2011.416z%22%20class%3D%22age-pension_svg__st4%22%2F%3E%3C%2Fg%3E%3Cg%20clip-path%3D%22url(%23age-pension_svg__SVGID_00000145775020392114982930000004795791585640370111_)%22%3E%3Cpath%20d%3D%22M52.988%2033.256h-7.839v4.934a3.92%203.92%200%20107.839%200v-4.934z%22%20class%3D%22age-pension_svg__st5%22%2F%3E%3C%2Fg%3E%3Cg%20clip-path%3D%22url(%23age-pension_svg__SVGID_00000145775020392114982930000004795791585640370111_)%22%3E%3Cpath%20d%3D%22M52.976%2038.311c.001-.04.012-.079.012-.121v-1.677a10.263%2010.263%200%2001-3.919.776c-1.389%200-2.71-.278-3.92-.776v1.677c0%20.042.012.081.013.121%201.226.423%202.537.664%203.907.664%201.37-.001%202.68-.241%203.907-.664%22%20class%3D%22age-pension_svg__st6%22%2F%3E%3C%2Fg%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M38.758%2026.977c0-5.695%204.616-10.312%2010.312-10.312%205.695%200%2010.31%204.617%2010.31%2010.312%200%205.695-4.616%2010.312-10.31%2010.312-5.697-.001-10.312-4.618-10.312-10.312%22%20clip-path%3D%22url(%23age-pension_svg__SVGID_00000145775020392114982930000004795791585640370111_)%22%2F%3E%3Cg%20clip-path%3D%22url(%23age-pension_svg__SVGID_00000145775020392114982930000004795791585640370111_)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M27.1%2024.358c-4.328%200-7.876%203.428-8.202%207.781a8.79%208.79%200%20003.206-3.112%208.476%208.476%200%200011.188.074%208.912%208.912%200%20002.026%204.12c.007-.14.01-.282.01-.424%200-4.66-3.684-8.439-8.228-8.439%22%2F%3E%3C%2Fg%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M50.057%2016.667l.001.002c-5.765-1.165-13.468%205.406-11.261%2013.259%207.43.231%2011.719-4.921%2013.53-8.273%201.474%202.355%203.741%204.83%207.047%205.66%201.078-7.296-2.526-11.118-9.317-10.648z%22%20clip-path%3D%22url(%23age-pension_svg__SVGID_00000145775020392114982930000004795791585640370111_)%22%2F%3E%3C%2Fg%3E%3C%2Fswitch%3E%3C%2Fsvg%3E',\n\tAnnouncement: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22announcement_svg__a%22%20d%3D%22M20%202H4c-1.1%200-2%20.9-2%202v18l4-4h14c1.1%200%202-.9%202-2V4c0-1.1-.9-2-2-2zm-8%209c-.55%200-1-.45-1-1V6c0-.55.45-1%201-1s1%20.45%201%201v4c0%20.55-.45%201-1%201zm1%204h-2v-2h2v2z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23announcement_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tAppstore: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%20120%2040%22%3E%3Cg%20fill%3D%22currentColor%22%20clip-path%3D%22url(%23appstore_svg__clip0_1121_5269)%22%3E%3Cpath%20d%3D%22M110.135%200H9.535c-.367%200-.73%200-1.095.002-.306.002-.61.008-.919.013C6.85.022%206.18.082%205.517.19a6.665%206.665%200%2000-1.9.627A6.438%206.438%200%2000.193%205.521a12.993%2012.993%200%2000-.179%202.002c-.01.307-.01.615-.015.921v23.114c.005.311.006.612.015.922.008.671.068%201.34.18%202.002.11.663.32%201.305.624%201.905.303.598.701%201.143%201.179%201.614.473.477%201.019.875%201.618%201.179.599.304%201.24.517%201.901.63a13.47%2013.47%200%20002.004.177c.31.007.613.01.919.01.366.003.728.003%201.095.003h100.6c.359%200%20.724%200%201.084-.002.304%200%20.617-.004.922-.01.67-.01%201.338-.068%202-.178a6.811%206.811%200%20001.908-.63%206.296%206.296%200%20001.617-1.18%206.407%206.407%200%20001.182-1.613c.302-.6.51-1.242.619-1.905.111-.661.173-1.33.185-2.002.004-.31.004-.611.004-.921.008-.364.008-.725.008-1.094V9.536c0-.366%200-.73-.008-1.092%200-.306%200-.614-.004-.92a13.57%2013.57%200%2000-.185-2.003%206.648%206.648%200%2000-.619-1.903%206.469%206.469%200%2000-2.799-2.8%206.77%206.77%200%2000-1.908-.627c-.661-.11-1.33-.17-2-.177-.305-.004-.618-.01-.922-.012-.36-.002-.725-.002-1.084-.002z%22%2F%3E%3Cpath%20d%3D%22M8.445%2039.125c-.305%200-.602-.004-.904-.01a12.696%2012.696%200%2001-1.87-.164%205.884%205.884%200%2001-1.656-.548%205.406%205.406%200%2001-1.397-1.016%205.321%205.321%200%2001-1.02-1.397%205.722%205.722%200%2001-.544-1.657%2012.413%2012.413%200%2001-.166-1.875c-.007-.21-.015-.913-.015-.913v-23.1s.009-.692.015-.895a12.37%2012.37%200%2001.165-1.872%205.755%205.755%200%2001.544-1.662c.26-.518.603-.99%201.015-1.398A5.565%205.565%200%20015.668%201.05C6.288.95%206.915.895%207.543.887l.902-.012h102.769l.913.013a12.37%2012.37%200%20011.858.162%205.933%205.933%200%20011.671.548%205.589%205.589%200%20012.415%202.42c.261.52.441%201.076.536%201.649.103.624.161%201.255.173%201.887.003.283.003.588.003.89.008.375.008.732.008%201.092v20.929c0%20.363%200%20.718-.008%201.075%200%20.325%200%20.623-.004.93-.011.62-.068%201.24-.171%201.853a5.716%205.716%200%2001-.54%201.67%205.47%205.47%200%2001-1.015%201.386%205.414%205.414%200%2001-1.4%201.022%205.855%205.855%200%2001-1.668.55c-.618.101-1.243.156-1.869.163-.293.007-.599.011-.897.011l-1.084.002-101.69-.002z%22%2F%3E%3Cpath%20d%3D%22M24.769%2020.3a4.947%204.947%200%20012.357-4.152%205.066%205.066%200%2000-3.992-2.157c-1.679-.176-3.307%201.005-4.163%201.005-.872%200-2.19-.988-3.608-.959a5.315%205.315%200%2000-4.473%202.728c-1.934%203.349-.491%208.27%201.361%2010.976.927%201.326%202.01%202.806%203.428%202.754%201.387-.058%201.905-.885%203.58-.885%201.658%200%202.144.885%203.59.851%201.489-.024%202.426-1.33%203.32-2.669a10.96%2010.96%200%20001.52-3.092%204.782%204.782%200%2001-2.92-4.4zM22.038%2012.21a4.873%204.873%200%20001.114-3.49%204.958%204.958%200%2000-3.207%201.66A4.638%204.638%200%200018.8%2013.74a4.099%204.099%200%20003.237-1.53zM42.302%2027.14H37.57l-1.137%203.356h-2.005l4.484-12.418h2.083l4.483%2012.418h-2.039l-1.136-3.356zm-4.243-1.55h3.752l-1.85-5.446h-.051l-1.85%205.447zM55.16%2025.97c0%202.813-1.507%204.62-3.78%204.62a3.07%203.07%200%2001-2.848-1.583h-.043v4.484h-1.858V21.442h1.799v1.506h.034a3.212%203.212%200%20012.883-1.6c2.297%200%203.812%201.816%203.812%204.622zm-1.91%200c0-1.833-.948-3.038-2.394-3.038-1.42%200-2.375%201.23-2.375%203.038%200%201.824.956%203.046%202.375%203.046%201.446%200%202.393-1.197%202.393-3.046zM65.124%2025.97c0%202.813-1.506%204.62-3.778%204.62a3.069%203.069%200%2001-2.849-1.583h-.043v4.484h-1.858V21.442h1.799v1.506h.034a3.212%203.212%200%20012.883-1.6c2.297%200%203.812%201.816%203.812%204.622zm-1.91%200c0-1.833-.947-3.038-2.393-3.038-1.42%200-2.375%201.23-2.375%203.038%200%201.824.955%203.046%202.375%203.046%201.446%200%202.393-1.197%202.393-3.046zM71.71%2027.036c.138%201.232%201.334%202.04%202.969%202.04%201.566%200%202.693-.808%202.693-1.919%200-.964-.68-1.54-2.289-1.936l-1.61-.388c-2.28-.55-3.338-1.617-3.338-3.348%200-2.142%201.867-3.614%204.518-3.614%202.624%200%204.423%201.472%204.484%203.614H77.26c-.113-1.239-1.137-1.987-2.634-1.987-1.497%200-2.521.757-2.521%201.858%200%20.878.654%201.395%202.254%201.79l1.368.336c2.548.603%203.607%201.626%203.607%203.443%200%202.323-1.85%203.778-4.794%203.778-2.754%200-4.613-1.42-4.733-3.667h1.902zM83.346%2019.3v2.142h1.721v1.472h-1.721v4.991c0%20.776.344%201.137%201.101%201.137.205-.004.409-.018.612-.043v1.463c-.34.064-.686.092-1.033.086-1.833%200-2.547-.689-2.547-2.444v-5.19h-1.317v-1.472h1.316V19.3h1.868zM86.065%2025.97c0-2.849%201.678-4.639%204.294-4.639%202.625%200%204.295%201.79%204.295%204.639%200%202.856-1.66%204.638-4.295%204.638-2.632%200-4.294-1.782-4.294-4.638zm6.696%200c0-1.954-.896-3.108-2.402-3.108-1.505%200-2.4%201.162-2.4%203.108%200%201.962.894%203.106%202.4%203.106%201.506%200%202.402-1.144%202.402-3.106zM96.186%2021.442h1.772v1.541h.043a2.16%202.16%200%20012.178-1.635c.214-.001.427.022.636.07v1.737a2.593%202.593%200%2000-.834-.112%201.872%201.872%200%2000-1.937%202.083v5.37h-1.858v-9.053zM109.384%2027.837c-.25%201.643-1.851%202.771-3.899%202.771-2.633%200-4.268-1.764-4.268-4.595%200-2.84%201.643-4.682%204.19-4.682%202.505%200%204.08%201.72%204.08%204.466v.637h-6.394v.112a2.353%202.353%200%20001.458%202.391c.31.127.643.186.977.173a2.05%202.05%200%20002.091-1.273h1.765zm-6.282-2.702h4.526a2.184%202.184%200%2000-.608-1.634%202.188%202.188%200%2000-1.613-.664%202.292%202.292%200%2000-2.305%202.298zM37.826%208.73a2.64%202.64%200%20012.808%202.965c0%201.907-1.03%203.002-2.808%203.002h-2.155V8.732h2.155zm-1.228%205.124h1.125a1.875%201.875%200%20001.967-2.146%201.881%201.881%200%2000-1.967-2.134h-1.125v4.28zM41.68%2012.444a2.132%202.132%200%20114.248%200%202.133%202.133%200%2011-4.247%200zm3.334%200c0-.976-.439-1.547-1.209-1.547-.772%200-1.206.571-1.206%201.547%200%20.984.434%201.55%201.207%201.55.769%200%201.208-.57%201.208-1.55zM51.573%2014.697h-.922l-.93-3.316h-.07l-.927%203.316h-.913l-1.242-4.502h.902l.806%203.436h.067l.925-3.436h.853l.926%203.436h.07l.803-3.436h.889l-1.237%204.502zM53.853%2010.195h.856v.715h.066a1.348%201.348%200%20011.344-.802%201.464%201.464%200%20011.559%201.675v2.915h-.889v-2.692c0-.724-.314-1.084-.972-1.084a1.032%201.032%200%2000-1.075%201.141v2.635h-.889v-4.503zM59.094%208.437h.888v6.26h-.888v-6.26zM61.218%2012.444a2.133%202.133%200%20114.248%200%202.135%202.135%200%2011-4.248%200zm3.333%200c0-.976-.439-1.547-1.208-1.547-.772%200-1.207.571-1.207%201.547%200%20.984.435%201.55%201.207%201.55.77%200%201.208-.57%201.208-1.55zM66.4%2013.424c0-.81.604-1.278%201.675-1.344l1.22-.07v-.39c0-.475-.314-.743-.922-.743-.496%200-.84.182-.938.5h-.86c.09-.773.818-1.27%201.84-1.27%201.128%200%201.765.563%201.765%201.514v3.076h-.856v-.632h-.07a1.515%201.515%200%2001-1.353.707%201.36%201.36%200%2001-1.5-1.348zm2.895-.385v-.376l-1.1.07c-.62.042-.901.253-.901.65%200%20.405.352.64.835.64a1.062%201.062%200%20001.166-.984zM71.348%2012.444c0-1.423.731-2.324%201.869-2.324a1.483%201.483%200%20011.38.79h.067V8.437h.889v6.26H74.7v-.71h-.07a1.563%201.563%200%2001-1.414.785c-1.146%200-1.87-.902-1.87-2.328zm.918%200c0%20.955.45%201.53%201.203%201.53.749%200%201.212-.583%201.212-1.526%200-.939-.468-1.53-1.212-1.53-.748%200-1.203.579-1.203%201.526zM79.23%2012.444a2.132%202.132%200%20114.247%200%202.133%202.133%200%2011-4.247%200zm3.333%200c0-.976-.439-1.547-1.208-1.547-.773%200-1.207.571-1.207%201.547%200%20.984.434%201.55%201.207%201.55.77%200%201.208-.57%201.208-1.55zM84.669%2010.195h.855v.715h.067a1.348%201.348%200%20011.344-.802%201.464%201.464%200%20011.558%201.675v2.915h-.888v-2.692c0-.724-.315-1.084-.972-1.084a1.032%201.032%200%2000-1.075%201.141v2.635h-.89v-4.503zM93.515%209.073v1.142h.975v.749h-.975v2.315c0%20.472.194.678.636.678.114%200%20.227-.007.34-.02v.74c-.16.029-.322.044-.484.045-.988%200-1.382-.347-1.382-1.215v-2.543h-.715v-.749h.715V9.073h.89zM95.705%208.437h.88v2.481h.071a1.386%201.386%200%20011.373-.806%201.484%201.484%200%20011.551%201.678v2.908h-.89v-2.689c0-.719-.334-1.083-.962-1.083a1.053%201.053%200%2000-1.134%201.142v2.63h-.889V8.436zM104.761%2013.482a1.823%201.823%200%2001-1.951%201.303%202.05%202.05%200%2001-2.01-1.448%202.05%202.05%200%2001-.07-.877%202.093%202.093%200%2001.071-.88%202.079%202.079%200%20012.005-1.473c1.253%200%202.009.857%202.009%202.27v.31h-3.18v.05a1.191%201.191%200%20001.2%201.29%201.076%201.076%200%20001.071-.545h.855zm-3.126-1.451h2.275a1.093%201.093%200%2000-1.109-1.166%201.15%201.15%200%2000-1.166%201.166z%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3CclipPath%20id%3D%22appstore_svg__clip0_1121_5269%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M0%200h119.664v40H0z%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3C%2Fsvg%3E',\n\tArrowBack: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22arrow-back_svg__a%22%20d%3D%22M18.791%2011.005H7.621l4.88-4.88c.39-.39.39-1.03%200-1.42a.996.996%200%2000-1.41%200l-6.59%206.59a.996.996%200%20000%201.41l6.59%206.59a.996.996%200%20101.41-1.41l-4.88-4.88h11.17c.55%200%201-.45%201-1s-.45-1-1-1z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23arrow-back_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tArrowBackIos: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22arrow-back-ios_svg__a%22%20d%3D%22M17.002%202.985a1.25%201.25%200%2000-1.77%200l-8.31%208.31a.996.996%200%20000%201.41l8.31%208.31c.49.49%201.28.49%201.77%200s.49-1.28%200-1.77l-7.24-7.25%207.25-7.25c.48-.48.48-1.28-.01-1.76z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23arrow-back-ios_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tArrowBackMau: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M20%2011H7.83l5.59-5.59L12%204l-8%208%208%208%201.41-1.41L7.83%2013H20v-2z%22%2F%3E%3C%2Fsvg%3E',\n\tArrowDownward: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22arrow-downward_svg__a%22%20d%3D%22M11.005%205.209v11.17l-4.88-4.88c-.39-.39-1.03-.39-1.42%200a.996.996%200%20000%201.41l6.59%206.59c.39.39%201.02.39%201.41%200l6.59-6.59a.996.996%200%2010-1.41-1.41l-4.88%204.88V5.209c0-.55-.45-1-1-1s-1%20.45-1%201z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23arrow-downward_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tArrowDropDown: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22arrow-drop-down_svg__a%22%20d%3D%22M8.706%2011.414l2.59%202.59c.39.39%201.02.39%201.41%200l2.59-2.59c.63-.63.18-1.71-.71-1.71h-5.18c-.89%200-1.33%201.08-.7%201.71z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23arrow-drop-down_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tArrowDropUp: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22arrow-drop-up_svg__a%22%20d%3D%22M8.706%2012.586l2.59-2.59a.996.996%200%20011.41%200l2.59%202.59c.63.63.18%201.71-.71%201.71h-5.18c-.89%200-1.33-1.08-.7-1.71z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23arrow-drop-up_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tArrowForward: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22arrow-forward_svg__a%22%20d%3D%22M5.209%2013h11.17l-4.88%204.88c-.39.39-.39%201.03%200%201.42.39.39%201.02.39%201.41%200l6.59-6.59a.996.996%200%20000-1.41l-6.58-6.6a.996.996%200%2010-1.41%201.41l4.87%204.89H5.209c-.55%200-1%20.45-1%201s.45%201%201%201z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23arrow-forward_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tArrowForwardIos: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22arrow-forward-ios_svg__a%22%20d%3D%22M6.998%2021.015c.49.49%201.28.49%201.77%200l8.31-8.31a.996.996%200%20000-1.41l-8.31-8.31a1.25%201.25%200%2000-1.77%200%201.25%201.25%200%20000%201.77l7.24%207.25-7.25%207.25c-.48.48-.48%201.28.01%201.76z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23arrow-forward-ios_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tArrowLeft: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22arrow-left_svg__a%22%20d%3D%22M12.586%208.706l-2.59%202.59a.996.996%200%20000%201.41l2.59%202.59c.63.63%201.71.18%201.71-.71v-5.18c0-.89-1.08-1.33-1.71-.7z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23arrow-left_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tArrowLeftAlt: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22arrow-left-alt_svg__a%22%20d%3D%22M16.119%2011.004H5.109c-.55%200-1%20.45-1%201s.45%201%201%201h11.01v1.79c0%20.45.54.67.85.35l2.78-2.79c.19-.2.19-.51%200-.71l-2.78-2.79c-.31-.32-.85-.09-.85.35v1.8z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20transform%3D%22rotate(180%2012%2012)%22%20xlink%3Ahref%3D%22%23arrow-left-alt_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tArrowRight: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22arrow-right_svg__a%22%20d%3D%22M11.414%2015.292l2.59-2.59a.996.996%200%20000-1.41l-2.59-2.59c-.63-.62-1.71-.18-1.71.71v5.17c0%20.9%201.08%201.34%201.71.71z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23arrow-right_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tArrowRightAlt: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22arrow-right-alt_svg__a%22%20d%3D%22M16.119%2011.004H5.109c-.55%200-1%20.45-1%201s.45%201%201%201h11.01v1.79c0%20.45.54.67.85.35l2.78-2.79c.19-.2.19-.51%200-.71l-2.78-2.79c-.31-.32-.85-.09-.85.35v1.8z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23arrow-right-alt_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tArrowUpward: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22arrow-upward_svg__a%22%20d%3D%22M13%2018.791V7.621l4.88%204.88c.39.39%201.03.39%201.42%200a.996.996%200%20000-1.41l-6.59-6.59a.996.996%200%2000-1.41%200l-6.6%206.58a.996.996%200%20101.41%201.41L11%207.621v11.17c0%20.55.45%201%201%201s1-.45%201-1z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23arrow-upward_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tAsFullLogo: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%20240%2054%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M12.323%2024.707l3.837%208.858H8.457l3.866-8.858zm-1.699-5.291L.168%2043.357h4.1l2.695-6.255h10.749l2.724%206.255h4.13L14.108%2019.416h-3.485zm29.904%207.074h-3.72v11.167c-.703%201.579-2.138%202.66-3.837%202.66-2.343%200-3.66-1.695-3.66-4.355V26.49h-3.72v10.085c0%204.356%202.577%207.104%206.56%207.104%201.699%200%203.544-.672%204.657-2.076v1.754h3.72V26.49zM71.69%2043.328h3.72V32.512c.732-1.754%202.49-2.602%203.983-2.602.586%200%201.113.059%201.464.205l.528-3.595a8.207%208.207%200%2000-1.728-.205c-1.904%200-3.603%201.14-4.247%202.426v-2.25h-3.72v16.837zm18.276.351c-5.008%200-8.406-4.005-8.406-8.77s3.398-8.77%208.406-8.77c1.992%200%203.75.673%204.92%201.9V26.49h3.72v16.867h-3.72V41.78c-1.17%201.228-2.928%201.9-4.92%201.9zm.44-3.362c2.167%200%203.602-1.023%204.48-2.368v-6.11c-.878-1.315-2.342-2.338-4.48-2.338-2.959%200-5.038%202.426-5.038%205.379%200%203.01%202.05%205.437%205.037%205.437zm11.569%203.011h3.719V16.463l-3.719%203.625v23.24zm8.933-19.381c-1.348%200-2.461-1.11-2.461-2.485a2.473%202.473%200%20012.461-2.455c1.376%200%202.489%201.11%202.489%202.455a2.485%202.485%200%2001-2.489%202.485zm-1.875%202.543h3.72v16.867h-3.72V26.49zm14.85%2017.189c-5.009%200-8.406-4.005-8.406-8.77s3.397-8.77%208.406-8.77c1.991%200%203.748.673%204.92%201.9V26.49h3.72v16.867h-3.72V41.78c-1.172%201.228-2.929%201.9-4.92%201.9zm.439-3.362c2.167%200%203.602-1.023%204.481-2.368v-6.11c-.879-1.315-2.343-2.338-4.481-2.338-2.958%200-5.038%202.426-5.038%205.379.029%203.01%202.08%205.437%205.038%205.437zm11.335%203.011h3.719V32.161c.703-1.549%202.168-2.66%204.159-2.66%202.373%200%203.72%201.696%203.72%204.356v9.471h3.72V33.243c0-4.356-2.578-7.104-6.62-7.104-1.991%200-3.807.702-4.949%202.134V26.49h-3.72v16.838h-.029zm18.803-3.888c1.464%202.573%204.686%204.327%208.582%204.327%204.686%200%207.966-2.719%207.995-6.9%200-3.566-2.138-5.7-5.652-7.015l-2.431-.906c-2.49-.906-3.661-1.696-3.661-3.45%200-1.724%201.757-2.777%203.778-2.777%201.845%200%203.339.819%204.54%202.222l2.723-2.66c-1.757-2.076-4.276-3.274-7.263-3.274-4.452%200-7.762%202.572-7.762%206.752%200%203.274%201.845%205.35%205.653%206.753l2.636.936c2.285.847%203.397%201.958%203.397%203.654%200%201.783-1.61%202.952-3.895%202.952-2.343%200-4.335-1.14-5.565-3.07l-3.075%202.456zm33.858-12.95h-3.72v11.167c-.703%201.579-2.138%202.66-3.837%202.66-2.343%200-3.661-1.695-3.661-4.355V26.49h-3.72v10.085c0%204.356%202.578%207.104%206.561%207.104%201.699%200%203.544-.672%204.657-2.076v1.754h3.72V26.49zm3.134%200h3.719v1.55c1.172-1.228%202.929-1.9%204.921-1.9%205.037%200%208.435%204.004%208.435%208.77%200%204.764-3.398%208.769-8.435%208.769-1.992%200-3.749-.672-4.921-1.93v9.004h-3.719V26.49zm8.23%2013.827c2.987%200%205.037-2.455%205.037-5.437-.029-3.391-3.163-5.964-6.472-5.203a4.948%204.948%200%2000-3.076%202.163v6.11c.85%201.344%202.314%202.367%204.511%202.367zm30.079%203.011h3.72V32.512c.732-1.754%202.489-2.602%203.983-2.602.586%200%201.113.059%201.465.205l.527-3.595a8.205%208.205%200%2000-1.728-.205c-1.904%200-3.603%201.14-4.247%202.426v-2.25h-3.72v16.837zM50.72%2033.331l-1.728-.497c-1.67-.468-2.02-1.17-2.02-1.988%200-1.023%201.142-1.579%202.255-1.579%201.376%200%202.46.673%203.221%201.725l2.343-2.28c-1.2-1.637-3.104-2.543-5.477-2.543-3.368%200-6.004%201.812-6.033%204.823-.03%202.485%201.494%204.356%204.423%205.145l1.493.41c2.021.613%202.607%201.169%202.607%202.163%200%201.169-1.113%201.783-2.431%201.783-1.728%200-3.368-.848-4.042-2.339l-2.49%202.426c1.29%202.076%203.72%203.128%206.532%203.128%203.485%200%206.121-1.988%206.121-5.232-.058-2.777-1.816-4.268-4.774-5.145zm17.896%206.577c-.733.292-1.348.41-2.402.41-1.582%200-2.636-.79-2.636-2.865v-7.66h5.038V26.49h-5.038v-6.372h-3.72v6.372h-3.31v3.304h3.31v8.302c0%203.8%202.607%205.583%205.887%205.583%201.084%200%202.08-.205%202.87-.439v-3.332zM223.524%2038.3c-.938%201.199-2.402%202.017-4.452%202.017-2.812%200-5.038-1.812-5.214-4.59h13.268c.03-.525.03-.847.03-1.198%200-5.437-3.72-8.36-8.143-8.36-5.184%200-8.904%203.888-8.816%208.945.088%205.145%204.569%208.945%209.695%208.565%202.841-.205%205.038-1.462%206.443-3.333l-2.811-2.046zm-4.599-9.003c2.168%200%204.13%201.315%204.54%203.741h-9.402c.498-2.514%202.695-3.741%204.862-3.741zM136.273%206.377c-.761.058-.82%201.14-.087%201.315l16.577%203.83c1.289-3.099%201.318-5.847-.879-6.49l-15.611%201.345z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M166.473%203.747c.615-.058.966.702.527%201.14l-17.837%2017.365c-.527.526-1.376-.088-1.084-.76l4.657-9.969c1.289-3.098%201.318-5.817-.878-6.49l14.615-1.286z%22%2F%3E%3Cdefs%3E%3ClinearGradient%20id%3D%22as-full-logo_svg__paint0_linear_2255_22124%22%20x1%3D%22139.856%22%20x2%3D%22153.716%22%20y1%3D%2211.567%22%20y2%3D%223.651%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%3Cstop%20offset%3D%22.115%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.921%22%20stop-color%3D%22currentColor%22%20stop-opacity%3D%22.09%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22currentColor%22%20stop-opacity%3D%220%22%2F%3E%3C%2FlinearGradient%3E%3C%2Fdefs%3E%3C%2Fsvg%3E',\n\tAsLogo: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2029%2029%22%3E%3Crect%20width%3D%2229%22%20height%3D%2229%22%20fill%3D%22currentColor%22%20rx%3D%2214.5%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M2.735%2010.51c-.59.046-.636.886-.068%201.022l12.866%202.972c1-2.405%201.023-4.538-.682-5.037L2.735%2010.511z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M26.174%208.47c.477-.045.75.545.409.885L12.74%2022.831c-.41.408-1.069-.068-.841-.59l3.614-7.736c1-2.405%201.023-4.515-.682-5.037l11.343-.998z%22%2F%3E%3Cdefs%3E%3ClinearGradient%20id%3D%22as-logo_svg__paint0_linear_450_2376%22%20x1%3D%226.843%22%20x2%3D%2213.034%22%20y1%3D%2215.111%22%20y2%3D%227.719%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%3Cstop%20offset%3D%22.116%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.263%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.457%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.65%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.775%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22currentColor%22%2F%3E%3C%2FlinearGradient%3E%3ClinearGradient%20id%3D%22as-logo_svg__paint1_linear_450_2376%22%20x1%3D%2212.512%22%20x2%3D%2226.11%22%20y1%3D%2215.127%22%20y2%3D%2216.319%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%3Cstop%20offset%3D%22.116%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.236%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.393%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.55%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.653%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.86%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.996%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22currentColor%22%2F%3E%3C%2FlinearGradient%3E%3C%2Fdefs%3E%3C%2Fsvg%3E',\n\tAttachment: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22attachment_svg__a%22%20d%3D%22M17.252%2016H6.672c-2.09%200-3.95-1.53-4.15-3.61A3.998%203.998%200%20016.502%208h12.36c1.31%200%202.5.94%202.63%202.24a2.5%202.5%200%2001-2.49%202.76h-10.5c-.55%200-1-.45-1-1s.45-1%201-1h8.75c.41%200%20.75-.34.75-.75s-.34-.75-.75-.75h-8.61c-1.31%200-2.5.94-2.63%202.24a2.5%202.5%200%20002.49%202.76h10.33c2.09%200%203.95-1.53%204.15-3.61a3.993%203.993%200%2000-3.98-4.39H6.732c-2.87%200-5.44%202.1-5.71%204.96a5.505%205.505%200%20005.48%206.04h10.75c.41%200%20.75-.34.75-.75s-.34-.75-.75-.75z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23attachment_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tAusSuperSymbolTonalWhite: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%20200%20136%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M173.535%2022.63c3.054-.272%204.766%203.415%202.569%205.537l-87.131%2083.976c-2.602%202.506-6.786-.415-5.251-3.671l22.764-48.227c6.35-14.986%206.511-28.2-4.362-31.44l71.411-6.175z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M25.882%2035.397c-3.716.319-4.072%205.538-.453%206.367l81.057%2018.48c6.349-14.985%206.511-28.23-4.362-31.438l-76.242%206.59z%22%2F%3E%3Cdefs%3E%3ClinearGradient%20id%3D%22aus-super-symbol-tonal-white_svg__paint0_linear_2255_22113%22%20x1%3D%2243.383%22%20x2%3D%22110.858%22%20y1%3D%2260.462%22%20y2%3D%2221.552%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%3Cstop%20offset%3D%22.115%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.921%22%20stop-color%3D%22currentColor%22%20stop-opacity%3D%22.09%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22currentColor%22%20stop-opacity%3D%220%22%2F%3E%3C%2FlinearGradient%3E%3C%2Fdefs%3E%3C%2Fsvg%3E',\n\tAutorenew: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22autorenew_svg__a%22%20d%3D%22M12%206v1.79c0%20.45.54.67.85.35l2.79-2.79c.2-.2.2-.51%200-.71l-2.79-2.79a.5.5%200%2000-.85.36V4c-4.42%200-8%203.58-8%208%200%201.04.2%202.04.57%202.95.27.67%201.13.85%201.64.34.27-.27.38-.68.23-1.04C6.15%2013.56%206%2012.79%206%2012c0-3.31%202.69-6%206-6zm5.79%202.71c-.27.27-.38.69-.23%201.04.28.7.44%201.46.44%202.25%200%203.31-2.69%206-6%206v-1.79c0-.45-.54-.67-.85-.35l-2.79%202.79c-.2.2-.2.51%200%20.71l2.79%202.79a.5.5%200%2000.85-.35V20c4.42%200%208-3.58%208-8%200-1.04-.2-2.04-.57-2.95-.27-.67-1.13-.85-1.64-.34z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23autorenew_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tBIcon: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2040%2040%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M20%2040c11.046%200%2020-8.954%2020-20S31.046%200%2020%200%200%208.954%200%2020s8.954%2020%2020%2020z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M15.125%2024.884c0%20.63.486%201.116%201.116%201.116h4.716c2.808%200%204.662-1.206%204.662-3.456v-.036c0-1.71-1.026-2.556-2.502-3.06.936-.486%201.8-1.296%201.8-2.808v-.036c0-.846-.288-1.53-.846-2.088-.72-.72-1.854-1.116-3.294-1.116H16.24c-.63%200-1.116.486-1.116%201.116v10.368zm2.178-6.174v-3.348h3.186c1.422%200%202.214.612%202.214%201.602V17c0%201.152-.954%201.71-2.376%201.71h-3.024zm0%205.328v-3.456h3.51c1.746%200%202.592.63%202.592%201.692v.036c0%201.134-.918%201.728-2.43%201.728h-3.672z%22%2F%3E%3C%2Fsvg%3E',\n\tBullet: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2012%2012%22%3E%3Ccircle%20cx%3D%226%22%20cy%3D%2212%22%20r%3D%226%22%20fill%3D%22currentColor%22%20fillRule%3D%22evenodd%22%20transform%3D%22translate(0%20-6)%22%2F%3E%3C%2Fsvg%3E',\n\tCIcon: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2040%2040%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M20%2040c11.046%200%2020-8.954%2020-20S31.046%200%2020%200%200%208.954%200%2020s8.954%2020%2020%2020z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M20.826%2026.216c2.034%200%203.383-.648%204.572-1.692.198-.18.36-.45.36-.792%200-.558-.486-1.026-1.044-1.026-.27%200-.505.108-.666.252-.918.774-1.818%201.206-3.15%201.206-2.413%200-4.159-1.998-4.159-4.464v-.036c0-2.466%201.764-4.446%204.159-4.446%201.206%200%202.142.432%203.006%201.134.143.108.36.216.666.216.611%200%201.098-.468%201.098-1.08%200-.396-.198-.702-.433-.882-1.098-.846-2.375-1.422-4.32-1.422-3.816%200-6.497%202.934-6.497%206.516v.036c0%203.618%202.736%206.48%206.408%206.48z%22%2F%3E%3C%2Fsvg%3E',\n\tCalculator: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2080%2080%22%3E%3Cstyle%3E.calculator_svg__st4%7Bfill%3A%23fff%7D.calculator_svg__st5%7Bfill%3A%23260046%7D%3C%2Fstyle%3E%3Cg%20id%3D%22calculator_svg__Layer_2%22%3E%3Ccircle%20cx%3D%2240%22%20cy%3D%2240%22%20r%3D%2240%22%20fill%3D%22none%22%2F%3E%3Cdefs%3E%3Cpath%20id%3D%22calculator_svg__SVGID_1_%22%20d%3D%22M0%200h80v80H0z%22%2F%3E%3C%2Fdefs%3E%3CclipPath%20id%3D%22calculator_svg__SVGID_00000096031923281929463680000008870603318382781841_%22%3E%3Cuse%20overflow%3D%22visible%22%20xlink%3Ahref%3D%22%23calculator_svg__SVGID_1_%22%2F%3E%3C%2FclipPath%3E%3Cg%20clip-path%3D%22url(%23calculator_svg__SVGID_00000096031923281929463680000008870603318382781841_)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M40%2080c22.093%200%2040-17.909%2040-40C80%2017.907%2062.093-.002%2040-.002S0%2017.907%200%2040c0%2022.091%2017.907%2040%2040%2040%22%2F%3E%3C%2Fg%3E%3Cg%20clip-path%3D%22url(%23calculator_svg__SVGID_00000096031923281929463680000008870603318382781841_)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M55.287%2014.743H23.719c-.682%200-1.24.558-1.24%201.24v48.033c0%20.682.558%201.24%201.24%201.24h31.568c.685%200%201.243-.558%201.243-1.24V15.983c0-.682-.558-1.24-1.243-1.24%22%2F%3E%3C%2Fg%3E%3Cg%20clip-path%3D%22url(%23calculator_svg__SVGID_00000096031923281929463680000008870603318382781841_)%22%3E%3Cpath%20d%3D%22M26.629%2019.443h25.813v13.825H26.629z%22%20class%3D%22calculator_svg__st4%22%2F%3E%3C%2Fg%3E%3Cg%20clip-path%3D%22url(%23calculator_svg__SVGID_00000096031923281929463680000008870603318382781841_)%22%3E%3Cpath%20d%3D%22M26.684%2037.014h6.005v5.457h-6.005z%22%20class%3D%22calculator_svg__st4%22%2F%3E%3C%2Fg%3E%3Cg%20clip-path%3D%22url(%23calculator_svg__SVGID_00000096031923281929463680000008870603318382781841_)%22%3E%3Cpath%20d%3D%22M36.622%2037.014h6.005v5.457h-6.005z%22%20class%3D%22calculator_svg__st4%22%2F%3E%3C%2Fg%3E%3Cg%20clip-path%3D%22url(%23calculator_svg__SVGID_00000096031923281929463680000008870603318382781841_)%22%3E%3Cpath%20d%3D%22M46.437%2037.014h6.005v5.457h-6.005z%22%20class%3D%22calculator_svg__st4%22%2F%3E%3C%2Fg%3E%3Cg%20clip-path%3D%22url(%23calculator_svg__SVGID_00000096031923281929463680000008870603318382781841_)%22%3E%3Cpath%20d%3D%22M26.684%2046.147h6.005v5.457h-6.005z%22%20class%3D%22calculator_svg__st4%22%2F%3E%3C%2Fg%3E%3Cg%20clip-path%3D%22url(%23calculator_svg__SVGID_00000096031923281929463680000008870603318382781841_)%22%3E%3Cpath%20d%3D%22M36.622%2046.147h6.005v5.457h-6.005z%22%20class%3D%22calculator_svg__st4%22%2F%3E%3C%2Fg%3E%3Cg%20clip-path%3D%22url(%23calculator_svg__SVGID_00000096031923281929463680000008870603318382781841_)%22%3E%3Cpath%20d%3D%22M46.437%2046.147h6.005v5.457h-6.005z%22%20class%3D%22calculator_svg__st4%22%2F%3E%3C%2Fg%3E%3Cg%20clip-path%3D%22url(%23calculator_svg__SVGID_00000096031923281929463680000008870603318382781841_)%22%3E%3Cpath%20d%3D%22M26.657%2055.464h6.005v5.457h-6.005z%22%20class%3D%22calculator_svg__st4%22%2F%3E%3C%2Fg%3E%3Cg%20clip-path%3D%22url(%23calculator_svg__SVGID_00000096031923281929463680000008870603318382781841_)%22%3E%3Cpath%20d%3D%22M36.596%2055.464h6.005v5.457h-6.005z%22%20class%3D%22calculator_svg__st4%22%2F%3E%3C%2Fg%3E%3Cg%20clip-path%3D%22url(%23calculator_svg__SVGID_00000096031923281929463680000008870603318382781841_)%22%3E%3Cpath%20d%3D%22M46.41%2055.464h6.005v5.457H46.41z%22%20class%3D%22calculator_svg__st4%22%2F%3E%3C%2Fg%3E%3Cg%20clip-path%3D%22url(%23calculator_svg__SVGID_00000096031923281929463680000008870603318382781841_)%22%3E%3Cpath%20d%3D%22M37.619%2025.568l-.648.198a.803.803%200%2001-.198.027.486.486%200%2001-.486-.468c0-.234.144-.414.369-.478l.954-.306c.216-.063.378-.099.541-.099h.018a.54.54%200%2001.549.549v5.329a.545.545%200%2001-.549.549.551.551%200%2001-.549-.549v-4.752zM40.256%2029.754l1.936-1.647c.864-.729%201.18-1.134%201.18-1.702%200-.621-.441-.981-1.018-.981-.504%200-.855.234-1.242.703a.508.508%200%2001-.387.171.503.503%200%2001-.504-.504c0-.117.045-.243.126-.342.513-.639%201.099-1.018%202.089-1.018%201.233%200%202.08.756%202.08%201.882v.018c0%20.99-.522%201.53-1.639%202.439l-1.297%201.081h2.557c.271%200%20.486.216.486.486s-.216.486-.486.486h-3.574c-.342%200-.594-.198-.594-.522-.001-.217.098-.397.287-.55zM45.764%2030.114a.532.532%200%2001-.18-.396c0-.288.243-.531.531-.531.162%200%20.279.063.369.144.396.396.847.604%201.432.604.621%200%201.089-.378%201.089-.955v-.018c0-.621-.567-.972-1.449-.972h-.225a.48.48%200%2001-.478-.477c0-.144.062-.279.234-.45l1.476-1.575h-2.286a.482.482%200%20110-.964H49.5c.315%200%20.55.189.55.486%200%20.261-.126.414-.315.604l-1.485%201.539c.954.117%201.854.604%201.854%201.765v.018c0%201.162-.892%201.999-2.206%201.999-.927-.002-1.621-.326-2.134-.821z%22%20class%3D%22calculator_svg__st5%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E',\n\tCancel: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22cancel_svg__a%22%20d%3D%22M12%202C6.47%202%202%206.47%202%2012s4.47%2010%2010%2010%2010-4.47%2010-10S17.53%202%2012%202zm4.3%2014.3a.996.996%200%2001-1.41%200L12%2013.41%209.11%2016.3a.996.996%200%2011-1.41-1.41L10.59%2012%207.7%209.11A.996.996%200%20119.11%207.7L12%2010.59l2.89-2.89a.996.996%200%20111.41%201.41L13.41%2012l2.89%202.89c.38.38.38%201.02%200%201.41z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23cancel_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tCentrelinkSchedule: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2020%22%3E%3Cdefs%3E%3Cpath%20id%3D%22centrelink-schedule_svg__a%22%20d%3D%22M19%204h-1V3c0-.55-.45-1-1-1s-1%20.45-1%201v1H8V3c0-.55-.45-1-1-1s-1%20.45-1%201v1H5c-1.11%200-1.99.9-1.99%202L3%2020a2%202%200%20002%202h14c1.1%200%202-.9%202-2V6c0-1.1-.9-2-2-2zm-1%2016H6c-.55%200-1-.45-1-1V9h14v10c0%20.55-.45%201-1%201zM8%2011h3c.55%200%201%20.45%201%201v3c0%20.55-.45%201-1%201H8c-.55%200-1-.45-1-1v-3c0-.55.45-1%201-1z%22%2F%3E%3C%2Fdefs%3E%3Cpath%20fill%3D%22none%22%20fillRule%3D%22evenodd%22%20stroke%3D%22currentColor%22%20d%3D%22M4%20.5a.498.498%200%2001.493.42L4.5%201v1.5h9V1c0-.138.057-.262.147-.353.49-.147.615-.09.706%200a.5.5%200%2001.14.272L14.5%201v1.5H16c.413%200%20.787.17%201.059.441.238.238.397.554.433.906L17.5%204v14c0%20.413-.17.787-.441%201.059a1.498%201.498%200%2001-.906.433L16%2019.5H2a1.497%201.497%200%2001-1.492-1.347L.5%2018%20.51%204c0-.414.166-.791.437-1.064.235-.235.548-.393.9-.428L2%202.5h1.5V1c0-.138.057-.262.147-.353A.498.498%200%20014%20.5zm12.5%206h-15V17l.008.153c.036.352.194.669.432.907.272.272.648.44%201.06.44h12l.153-.008c.352-.036.669-.194.907-.432.272-.272.44-.647.44-1.06h0V6.5zM8%209.5l.5%203.5-3.5.5-.5-3.5L8%209.5z%22%2F%3E%3C%2Fsvg%3E',\n\tCheck: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22check_svg__a%22%20d%3D%22M8.795%2015.875l-3.47-3.47a.996.996%200%2010-1.41%201.41l4.18%204.18c.39.39%201.02.39%201.41%200l10.58-10.58a.996.996%200%2010-1.41-1.41l-9.88%209.87z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23check_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tCheckCircle: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22check-circle_svg__a%22%20d%3D%22M12%202C6.48%202%202%206.48%202%2012s4.48%2010%2010%2010%2010-4.48%2010-10S17.52%202%2012%202zM9.29%2016.29L5.7%2012.7a.996.996%200%20111.41-1.41L10%2014.17l6.88-6.88a.996.996%200%20111.41%201.41l-7.59%207.59a.996.996%200%2001-1.41%200z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23check-circle_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tCheckCircleOutline: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22check-circle-outline_svg__a%22%20d%3D%22M5.863%2010.583L3.55%208.27a.664.664%200%2010-.94.94l2.787%202.787c.26.26.68.26.94%200l7.053-7.054a.664.664%200%2010-.94-.94l-6.587%206.58z%22%2F%3E%3C%2Fdefs%3E%3Cg%20fill%3D%22none%22%20fillRule%3D%22evenodd%22%20opacity%3D%22.9%22%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2212%22%20r%3D%2211.5%22%20stroke%3D%22currentColor%22%2F%3E%3Cuse%20fill%3D%22currentColor%22%20transform%3D%22translate(4%204)%22%20xlink%3Ahref%3D%22%23check-circle-outline_svg__a%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E',\n\tCheckDetails: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2048%2048%22%3E%3Cdefs%3E%3Crect%20id%3D%22check-details_svg__a%22%20width%3D%2248%22%20height%3D%2248%22%20x%3D%220%22%20y%3D%220%22%20rx%3D%2224%22%2F%3E%3C%2Fdefs%3E%3Cg%20fill%3D%22none%22%20fillRule%3D%22evenodd%22%3E%3Cmask%20id%3D%22check-details_svg__b%22%20fill%3D%22currentColor%22%3E%3Cuse%20xlink%3Ahref%3D%22%23check-details_svg__a%22%2F%3E%3C%2Fmask%3E%3Cuse%20fill%3D%22currentColor%22%20xlink%3Ahref%3D%22%23check-details_svg__a%22%2F%3E%3Cg%20mask%3D%22url(%23check-details_svg__b)%22%3E%3Cpath%20d%3D%22M12%2012h24v24H12z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M34%2015H14c-1.1%200-2%20.9-2%202v14c0%201.1.9%202%202%202h20c1.1%200%201.99-.9%201.99-2L36%2017c0-1.1-.9-2-2-2zm-14%203c1.66%200%203%201.34%203%203s-1.34%203-3%203-3-1.34-3-3%201.34-3%203-3zm6%2012H14v-1c0-2%204-3.1%206-3.1s6%201.1%206%203.1v1zm3.85-4h1.64L33%2028l-1.99%201.99A7.512%207.512%200%200128.28%2026c-.18-.64-.28-1.31-.28-2s.1-1.36.28-2a7.474%207.474%200%20012.73-3.99L33%2020l-1.51%202h-1.64c-.22.63-.35%201.3-.35%202s.13%201.37.35%202z%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E',\n\tChecklist: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%20160%20160%22%3E%3Cg%20clip-path%3D%22url(%23checklist_svg__clip0_411_338)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M80%20160c44.183%200%2080-35.817%2080-80S124.183%200%2080%200%200%2035.817%200%2080s35.817%2080%2080%2080z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M50.8%2026.3c0-.6.2-1.1.5-1.6-.8.5-1.3%201.4-1.3%202.5v49c.3.4.6.8.9%201.3V26.3h-.1zM78.8%20106.1l-.6.9h30.3c1%200%201.9-.5%202.5-1.3-.5.3-1%20.5-1.6.5H78.8v-.1zM88.2%2028.9c0%20.7-.5%201.2-1.2%201.2H76.2c-.7%200-1.3-.6-1.3-1.3v-1.5H54.7v75h53.6v-75H88.2v1.6z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M109.3%2023.3H53.8c-1%200-1.9.5-2.5%201.3-.3.5-.5%201-.5%201.6v51.2c.7%201.1%201.4%202.7%201.2%204.3-.1%201.9-1%208.4-1.2%2010.5v10.9c0%201.6%201.3%202.9%202.9%202.9h55.5c.6%200%201.1-.2%201.6-.5.8-.5%201.3-1.4%201.3-2.5V26.3c.1-1.7-1.2-3-2.8-3zm-1%2078.9H54.7v-75h20.1v1.5c0%20.7.6%201.3%201.3%201.3H87c.7%200%201.2-.5%201.2-1.2v-1.7h20.1v75.1z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M55.3%20106.1c-3%200-4.5-2.2-4.5-5.2v-8.7c.3-2.2%201.1-8.5%201.2-10.4.1-1.6-.6-3.2-1.2-4.3-.3-.5-.6-.9-.9-1.3l-.1-.1-.1-.1c-.9-1-1.9-1.6-2.7-1.4-1.7.5-1.3%206-2.5%2010.7-1.2%204.7-2.3%208-4.6%2016.7-2.4%209%201.5%2012.3.7%2015.4-.1.5-.4%201.2-.9%202l16.3%206.7c.2.2.5.3.7.5%202.5-1.7%206.7-4.1%2017.9-15.7%201.5-1.6%202.7-2.9%203.5-3.9.3-.3.5-.7.7-.9H55.3z%22%2F%3E%3Cmask%20id%3D%22checklist_svg__a%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%2235%22%20height%3D%2235%22%20x%3D%2264%22%20y%3D%2251%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M98.7%2051.7H64.4V86h34.3V51.7z%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url(%23checklist_svg__a)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M81.5%2086c9.5%200%2017.1-7.7%2017.1-17.1%200-9.5-7.7-17.1-17.1-17.1-9.5%200-17.1%207.7-17.1%2017.1%200%209.4%207.7%2017.1%2017.1%2017.1z%22%2F%3E%3C%2Fg%3E%3Cmask%20id%3D%22checklist_svg__b%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%2235%22%20height%3D%2235%22%20x%3D%2264%22%20y%3D%2251%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M98.7%2051.7H64.4V86h34.3V51.7z%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url(%23checklist_svg__b)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M80.9%2063.4c-.3%200-.6-.3-.6-.6v-5.7c0-.3.3-.6.6-.6s.6.3.6.6v5.7c.1.3-.2.6-.6.6z%22%2F%3E%3C%2Fg%3E%3Cmask%20id%3D%22checklist_svg__c%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%2235%22%20height%3D%2235%22%20x%3D%2264%22%20y%3D%2251%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M98.7%2051.7H64.4V86h34.3V51.7z%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url(%23checklist_svg__c)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M79.1%2064.2c-.1%200-.3%200-.4-.1l-4.3-3.6c-.3-.2-.3-.6-.1-.9.2-.3.6-.3.9-.1l4.3%203.6c.3.2.3.6.1.9-.1.2-.3.2-.5.2z%22%2F%3E%3C%2Fg%3E%3Cmask%20id%3D%22checklist_svg__d%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%2235%22%20height%3D%2235%22%20x%3D%2264%22%20y%3D%2251%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M98.7%2051.7H64.4V86h34.3V51.7z%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url(%23checklist_svg__d)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M73%2067.2c-.3%200-.6-.2-.6-.5-.1-.3.2-.7.5-.7l5.6-1c.3-.1.7.2.7.5.1.3-.2.7-.5.7l-5.6%201H73z%22%2F%3E%3C%2Fg%3E%3Cmask%20id%3D%22checklist_svg__e%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%2235%22%20height%3D%2235%22%20x%3D%2264%22%20y%3D%2251%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M98.7%2051.7H64.4V86h34.3V51.7z%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url(%23checklist_svg__e)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M77%2072.7c-.1%200-.2%200-.3-.1-.3-.2-.4-.5-.2-.8l2.8-4.9c.2-.3.5-.4.8-.2.3.2.4.5.2.8l-2.8%204.9c-.1.2-.3.3-.5.3z%22%2F%3E%3C%2Fg%3E%3Cmask%20id%3D%22checklist_svg__f%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%2235%22%20height%3D%2235%22%20x%3D%2264%22%20y%3D%2251%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M98.7%2051.7H64.4V86h34.3V51.7z%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url(%23checklist_svg__f)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M88.6%2068.5h-.2l-5.4-2c-.3-.1-.5-.5-.4-.8.1-.3.5-.5.8-.4l5.3%201.9c.3.1.5.5.4.8%200%20.3-.3.5-.5.5z%22%2F%3E%3C%2Fg%3E%3Cmask%20id%3D%22checklist_svg__g%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%2235%22%20height%3D%2235%22%20x%3D%2264%22%20y%3D%2251%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M98.7%2051.7H64.4V86h34.3V51.7z%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url(%23checklist_svg__g)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M83%2064.5c-.2%200-.4-.1-.5-.3-.2-.3-.1-.7.2-.8l4.9-2.8c.3-.2.7-.1.8.2.2.3.1.7-.2.8l-4.9%202.8c-.1.1-.2.1-.3.1z%22%2F%3E%3C%2Fg%3E%3Cmask%20id%3D%22checklist_svg__h%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%2235%22%20height%3D%2235%22%20x%3D%2264%22%20y%3D%2251%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M98.7%2051.7H64.4V86h34.3V51.7z%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url(%23checklist_svg__h)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M89.9%2075.3l-8.4-8.4-.5%2011.9%202.8-3.1%201.9%204.8%202-.7-1.9-4.8%204.1.3z%22%2F%3E%3C%2Fg%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M141.1%20116.5c-1.6-2.9-.6-5.6-10.8-23.1-2.9-5-3.7-6.3-6-6.8-2-.5-2.9.5-3%201%200%200-1.2-2.9-4.6-2.5-1.6.2-3.1%202.1-3.1%202.1-.1-.1-.1-.2-.2-.3-1.5-2.4-3.5-3-6.3-2.4-1.4.3-2.9%202.3-2.9%202.3-2.2-3-4.6-6.5-6.5-9.3-4.6-7-5-8.8-6.9-8.8-1.5%200-2.6%203.1-1.6%206.3.9%202.8%204.7%209.7%208.8%2016.4%202.6%204.3%204.6%207.2%206.5%2010.4%201.5%202.7%204.6%207.3%204.4%208.9-.2%201.6-8.7-3.1-12.3-4-3.7-.9-7.8%201.1-7.8%202.8%200%201.7%205.3%202.9%209.4%205.3%204.1%202.4%206.9%204.3%2014.5%208.8%207.9%204.7%2011.9%201.9%2014.7%203.5.3.1.6.4.9.7%202.1-3.5%205.9-7.5%2012.8-11.3zM56.7%20126.6c-.2-.2-.4-.3-.7-.5l-16.3-6.7-.4-.2c-2.4-1-5.2%200-6.5%202.3l-10%2014.5c7.1%207.2%2015.5%2013.1%2024.9%2017.2%203.3-7.1%206.7-14.6%209.8-18.7%201.8-2.2%202.5-5.3-.8-7.9z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M143.9%20115.1c-1%20.5-1.9.9-2.8%201.4-6.9%203.8-10.8%207.8-12.9%2011.3-1.7%202.8-2.4%205.2-2.6%206.8-.1%201.1.2%202.2.9%203.1l3.9%204.4c8.3-6.7%2015.2-15.1%2020.2-24.6l-1.8-1.7c-1.3-1.2-3.2-1.5-4.9-.7zM66.8%2043.1c0-.2.2-.4.4-.4H69c.6%200%201.1.2%201.4.5.3.3.4.6.4%201%200%20.8-.4%201.2-1.1%201.4l.9%201.2c.1.1.1.2.1.3%200%20.2-.2.4-.4.4s-.3-.1-.4-.2l-1.2-1.5h-1.1v1.3c0%20.2-.2.4-.4.4s-.4-.2-.4-.4v-4zm2.1%201.9c.6%200%201-.3%201-.8s-.4-.8-1-.8h-1.2V45h1.2zM73.2%2047.5c-1%200-1.9-.8-1.9-1.9%200-1%20.7-1.9%201.8-1.9%201.2%200%201.7.9%201.7%201.8%200%20.2-.2.4-.4.4h-2.3c.1.6.5.9%201%20.9.3%200%20.6-.1.9-.3.1%200%20.1-.1.2-.1.2%200%20.3.1.3.3%200%20.1%200%20.2-.1.3-.3.3-.7.5-1.2.5zm.8-2.1c-.1-.5-.4-1-.9-1s-.9.4-.9%201H74zM75.7%2048.2c-.1-.1-.2-.2-.2-.3%200-.2.2-.3.3-.3h.2c.3.2.7.3%201.1.3.7%200%201.1-.4%201.1-1.1v-.3c-.3.4-.7.7-1.3.7-.8%200-1.6-.6-1.6-1.7s.8-1.7%201.6-1.7c.6%200%201%20.3%201.3.6v-.2c0-.2.2-.4.4-.4s.4.2.4.4v2.5c0%20.6-.2%201.1-.5%201.4-.3.3-.8.5-1.5.5-.4%200-.8-.2-1.3-.4zm2.5-2.7c0-.6-.5-1-1.1-1-.6%200-1%20.4-1%201s.5%201%201%201c.7-.1%201.1-.5%201.1-1zM80%2042.8c0-.2.2-.4.5-.4s.5.2.5.4-.2.4-.5.4c-.3.1-.5-.1-.5-.4zm0%201.4c0-.2.2-.4.4-.4s.4.2.4.4v2.9c0%20.2-.2.4-.4.4s-.4-.2-.4-.4v-2.9zM81.7%2047.1c-.1%200-.2-.2-.2-.3%200-.2.1-.3.3-.3h.2c.3.2.7.3%201%20.3.4%200%20.6-.2.6-.4%200-.3-.4-.4-.8-.5-.5-.2-1.1-.4-1.1-1.1%200-.7.6-1.1%201.3-1.1.4%200%20.8.1%201.1.3.1.1.2.2.2.3%200%20.2-.2.3-.3.3h-.2c-.3-.2-.6-.2-.8-.2-.3%200-.5.2-.5.4%200%20.3.4.4.8.5.5.2%201.1.4%201.1%201.1%200%20.8-.6%201.1-1.3%201.1-.5%200-1-.1-1.4-.4zM85.2%2046.4v-1.9h-.1c-.2%200-.4-.2-.4-.4s.2-.4.4-.4h.1v-.6c0-.2.2-.4.4-.4s.4.2.4.4v.6h.7c.2%200%20.4.2.4.4s-.2.4-.4.4H86v1.8c0%20.3.2.5.4.5h.2c.2%200%20.3.2.3.3%200%20.2-.1.3-.2.3-.2.1-.3.1-.6.1-.5%200-.9-.3-.9-1.1zM89.3%2047.5c-1%200-1.9-.8-1.9-1.9%200-1%20.7-1.9%201.8-1.9%201.2%200%201.7.9%201.7%201.8%200%20.2-.2.4-.4.4h-2.3c.1.6.5.9%201%20.9.3%200%20.6-.1.9-.3.1%200%20.1-.1.2-.1.2%200%20.3.1.3.3%200%20.1%200%20.2-.1.3-.3.3-.7.5-1.2.5zm.8-2.1c-.1-.5-.4-1-.9-1s-.9.4-.9%201h1.8zM91.6%2044.2c0-.2.2-.4.4-.4s.4.2.4.4v.4c.2-.5.5-.8.9-.8.3%200%20.4.2.4.4s-.1.4-.3.4c-.6.1-1%20.6-1%201.4v1.1c0%20.2-.2.4-.4.4s-.4-.2-.4-.4v-2.9zM66.6%2034.9l.5%201.2h-1l.5-1.2zm-.2-.7L65%2037.5h.6l.4-.9h1.5l.4.9h.6l-1.4-3.3h-.7z%22%2F%3E%3Cmask%20id%3D%22checklist_svg__i%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%2233%22%20height%3D%227%22%20x%3D%2265%22%20y%3D%2232%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M97.6%2032.2H65v6.3h32.6v-6.3z%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url(%23checklist_svg__i)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M70.4%2037.5h-.5v-.2c-.2.2-.4.3-.6.3-.5%200-.9-.4-.9-1v-1.4h.5v1.3c0%20.4.2.6.5.6.2%200%20.4-.1.5-.4v-1.5h.5v2.3z%22%2F%3E%3C%2Fg%3E%3Cmask%20id%3D%22checklist_svg__j%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%2233%22%20height%3D%227%22%20x%3D%2265%22%20y%3D%2232%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M97.6%2032.2H65v6.3h32.6v-6.3z%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url(%23checklist_svg__j)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M74.7%2035.2h.5v.3c.1-.2.3-.3.6-.3h.2l-.1.5h-.2c-.2%200-.4.1-.5.4v1.5h-.5v-2.4z%22%2F%3E%3C%2Fg%3E%3Cmask%20id%3D%22checklist_svg__k%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%2233%22%20height%3D%227%22%20x%3D%2265%22%20y%3D%2232%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M97.6%2032.2H65v6.3h32.6v-6.3z%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url(%23checklist_svg__k)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M77.2%2037.5c-.7%200-1.1-.5-1.1-1.2%200-.6.5-1.2%201.1-1.2.3%200%20.5.1.7.3v-.2h.5v2.3h-.5v-.2c-.2.1-.5.2-.7.2zm0-.4c.3%200%20.5-.1.6-.3V36c-.1-.2-.3-.3-.6-.3-.4%200-.7.3-.7.7%200%20.3.3.7.7.7z%22%2F%3E%3C%2Fg%3E%3Cmask%20id%3D%22checklist_svg__l%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%2233%22%20height%3D%227%22%20x%3D%2265%22%20y%3D%2232%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M97.6%2032.2H65v6.3h32.6v-6.3z%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url(%23checklist_svg__l)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M78.8%2034.3l.5-.5v3.7h-.5v-3.2z%22%2F%3E%3C%2Fg%3E%3Cmask%20id%3D%22checklist_svg__m%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%2233%22%20height%3D%227%22%20x%3D%2265%22%20y%3D%2232%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M97.6%2032.2H65v6.3h32.6v-6.3z%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url(%23checklist_svg__m)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M80%2034.8c-.2%200-.3-.2-.3-.3%200-.2.2-.3.3-.3.2%200%20.3.2.3.3%200%20.2-.1.3-.3.3zm-.2.4h.5v2.3h-.5v-2.3z%22%2F%3E%3C%2Fg%3E%3Cmask%20id%3D%22checklist_svg__n%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%2233%22%20height%3D%227%22%20x%3D%2265%22%20y%3D%2232%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M97.6%2032.2H65v6.3h32.6v-6.3z%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url(%23checklist_svg__n)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M81.8%2037.5c-.7%200-1.1-.5-1.1-1.2%200-.6.5-1.2%201.1-1.2.3%200%20.5.1.7.3v-.2h.5v2.3h-.5v-.2c-.2.1-.5.2-.7.2zm0-.4c.3%200%20.5-.1.6-.3V36c-.1-.2-.3-.3-.6-.3-.4%200-.7.3-.7.7.1.3.3.7.7.7z%22%2F%3E%3C%2Fg%3E%3Cmask%20id%3D%22checklist_svg__o%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%2233%22%20height%3D%227%22%20x%3D%2265%22%20y%3D%2232%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M97.6%2032.2H65v6.3h32.6v-6.3z%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url(%23checklist_svg__o)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M83.4%2035.2h.5v.2c.2-.2.4-.3.7-.3.6%200%20.9.4.9%201v1.4H85v-1.3c0-.4-.2-.6-.5-.6s-.5.2-.6.4v1.5h-.5v-2.3z%22%2F%3E%3C%2Fg%3E%3Cmask%20id%3D%22checklist_svg__p%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%2233%22%20height%3D%227%22%20x%3D%2265%22%20y%3D%2232%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M97.6%2032.2H65v6.3h32.6v-6.3z%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url(%23checklist_svg__p)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M86.4%2036.6c.2.3.4.4.8.4.3%200%20.5-.2.5-.4s-.2-.4-.5-.5l-.3-.1c-.5-.2-.8-.5-.8-.9%200-.6.5-.9%201.1-.9.4%200%20.7.2%201%20.4l-.4.4c-.2-.2-.4-.3-.6-.3-.3%200-.5.1-.5.4%200%20.2.2.3.5.5l.3.1c.5.2.8.5.8%201%200%20.6-.5.9-1.1.9-.5%200-1-.2-1.2-.6l.4-.4z%22%2F%3E%3C%2Fg%3E%3Cmask%20id%3D%22checklist_svg__q%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%2233%22%20height%3D%227%22%20x%3D%2265%22%20y%3D%2232%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M97.6%2032.2H65v6.3h32.6v-6.3z%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url(%23checklist_svg__q)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M90.6%2037.5h-.5v-.2c-.2.2-.4.3-.6.3-.5%200-.9-.4-.9-1v-1.4h.5v1.3c0%20.4.2.6.5.6.2%200%20.4-.1.5-.4v-1.5h.5v2.3z%22%2F%3E%3C%2Fg%3E%3Cmask%20id%3D%22checklist_svg__r%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%2233%22%20height%3D%227%22%20x%3D%2265%22%20y%3D%2232%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M97.6%2032.2H65v6.3h32.6v-6.3z%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url(%23checklist_svg__r)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M91%2035.2h.5v.2c.2-.2.4-.3.7-.3.7%200%201.2.5%201.2%201.2%200%20.6-.5%201.2-1.2%201.2-.3%200-.5-.1-.7-.3v1.2H91v-3.2zm1.1%201.9c.4%200%20.7-.3.7-.7%200-.5-.4-.8-.9-.7-.2%200-.3.2-.4.3v.8c.1.1.3.3.6.3z%22%2F%3E%3C%2Fg%3E%3Cmask%20id%3D%22checklist_svg__s%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%2233%22%20height%3D%227%22%20x%3D%2265%22%20y%3D%2232%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M97.6%2032.2H65v6.3h32.6v-6.3z%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url(%23checklist_svg__s)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M96.2%2035.2h.5v.3c.1-.2.3-.3.6-.3h.2l-.1.5h-.2c-.2%200-.4.1-.5.4v1.5h-.5v-2.4z%22%2F%3E%3C%2Fg%3E%3Cmask%20id%3D%22checklist_svg__t%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%2233%22%20height%3D%227%22%20x%3D%2265%22%20y%3D%2232%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M97.6%2032.2H65v6.3h32.6v-6.3z%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url(%23checklist_svg__t)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M71.8%2036.1l-.2-.1c-.2-.1-.3-.2-.3-.3%200-.1.2-.2.3-.2.2%200%20.3.1.4.2l.3-.3c-.2-.2-.4-.3-.7-.3-.5%200-.8.2-.8.7%200%20.3.2.6.6.7l.2.1c.3.1.4.2.4.3%200%20.2-.2.2-.3.2-.2%200-.5-.1-.6-.3l-.3.3c.2.3.5.4.9.4.5%200%20.8-.3.8-.7%200-.4-.3-.6-.7-.7z%22%2F%3E%3C%2Fg%3E%3Cmask%20id%3D%22checklist_svg__u%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%2233%22%20height%3D%227%22%20x%3D%2265%22%20y%3D%2232%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M97.6%2032.2H65v6.3h32.6v-6.3z%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url(%23checklist_svg__u)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M74.2%2037c-.1%200-.2.1-.3.1-.2%200-.4-.1-.4-.4v-1h.7v-.5h-.7v-.9H73v.9h-.5v.5h.5v1.1c0%20.5.4.8.8.8.1%200%20.3%200%20.4-.1V37z%22%2F%3E%3C%2Fg%3E%3Cmask%20id%3D%22checklist_svg__v%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%2233%22%20height%3D%227%22%20x%3D%2265%22%20y%3D%2232%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M97.6%2032.2H65v6.3h32.6v-6.3z%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url(%23checklist_svg__v)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M95.4%2036.8c-.1.2-.3.3-.6.3-.4%200-.7-.2-.7-.6h1.8v-.2c0-.7-.5-1.1-1.1-1.1-.7%200-1.2.5-1.2%201.2s.6%201.2%201.3%201.2c.4%200%20.7-.2.9-.5l-.4-.3zm-.7-1.2c.3%200%20.6.2.6.5H94c.2-.4.5-.5.7-.5z%22%2F%3E%3C%2Fg%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M85.6%2032.4l-2.1.2c-.1%200-.1.2%200%20.2l2.3.5c.1-.2.1-.4.1-.6-.1-.2-.1-.3-.3-.3z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M87.6%2032.2l-2%20.2c.2%200%20.2.2.2.3%200%20.2%200%20.4-.1.6l-.6%201.4c0%20.1.1.2.1.1l2.4-2.4c.1-.1.1-.2%200-.2z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M85.9%2032.7c0-.2-.1-.3-.2-.3.1%200%20.1.1.2.3z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M85.9%2032.7c0-.2-.1-.3-.2-.3.1%200%20.1.1.2.3zM87.2%2096.9H75.6c-.7%200-1.4-.6-1.4-1.4%200-.7.6-1.4%201.4-1.4h11.5c.7%200%201.4.6%201.4%201.4%200%20.8-.6%201.4-1.3%201.4z%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3ClinearGradient%20id%3D%22checklist_svg__paint0_linear_411_338%22%20x1%3D%2284.401%22%20x2%3D%2285.49%22%20y1%3D%2233.403%22%20y2%3D%2232.105%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%3Cstop%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.116%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.263%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.457%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.65%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.792%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22currentColor%22%2F%3E%3C%2FlinearGradient%3E%3ClinearGradient%20id%3D%22checklist_svg__paint1_linear_411_338%22%20x1%3D%2285.401%22%20x2%3D%2287.787%22%20y1%3D%2233.531%22%20y2%3D%2233.739%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%3Cstop%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.116%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.235%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.393%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.55%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.661%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.881%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.996%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22currentColor%22%2F%3E%3C%2FlinearGradient%3E%3ClinearGradient%20id%3D%22checklist_svg__paint2_linear_411_338%22%20x1%3D%2284.885%22%20x2%3D%2285.974%22%20y1%3D%2233.809%22%20y2%3D%2232.511%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%3Cstop%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.116%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.263%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.457%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.65%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.792%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22currentColor%22%2F%3E%3C%2FlinearGradient%3E%3ClinearGradient%20id%3D%22checklist_svg__paint3_linear_411_338%22%20x1%3D%2285.478%22%20x2%3D%2287.864%22%20y1%3D%2232.653%22%20y2%3D%2232.861%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%3Cstop%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.116%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.235%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.393%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.55%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.661%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.881%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.996%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22currentColor%22%2F%3E%3C%2FlinearGradient%3E%3CclipPath%20id%3D%22checklist_svg__clip0_411_338%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M0%200h160v160H0z%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3C%2Fsvg%3E',\n\tChevronDown: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2012%208%22%3E%3Cdefs%3E%3Cpath%20id%3D%22chevron-down_svg__a%22%20d%3D%22M9.875%201l-3.88%203.88L2.115%201a.996.996%200%2010-1.41%201.41L5.295%207c.39.39%201.02.39%201.41%200l4.59-4.59a.996.996%200%20000-1.41c-.39-.38-1.03-.39-1.42%200z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22evenodd%22%20xlink%3Ahref%3D%22%23chevron-down_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tChevronLeft: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22chevron-left_svg__a%22%20d%3D%22M15%206.705a.996.996%200%2000-1.41%200L9%2011.295a.996.996%200%20000%201.41l4.59%204.59a.996.996%200%20101.41-1.41l-3.88-3.89L15%208.115c.39-.39.38-1.03%200-1.41z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23chevron-left_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tChevronRight: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22chevron-right_svg__a%22%20d%3D%22M9%206.71a.996.996%200%20000%201.41L12.88%2012%209%2015.88a.996.996%200%20101.41%201.41L15%2012.7a.996.996%200%20000-1.41L10.41%206.7c-.38-.38-1.02-.38-1.41.01z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23chevron-right_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tChevronUp: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2012%208%22%3E%3Cdefs%3E%3Cpath%20id%3D%22chevron-up_svg__a%22%20d%3D%22M9.875%201l-3.88%203.88L2.115%201a.996.996%200%2010-1.41%201.41L5.295%207c.39.39%201.02.39%201.41%200l4.59-4.59a.996.996%200%20000-1.41c-.39-.38-1.03-.39-1.42%200z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22evenodd%22%20transform%3D%22matrix(1%200%200%20-1%200%208)%22%20xlink%3Ahref%3D%22%23chevron-up_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tClaim: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2019%2021%22%3E%3Cg%20fill%3D%22currentColor%22%20fillRule%3D%22evenodd%22%20stroke%3D%22currentColor%22%3E%3Cpath%20d%3D%22M16%20.5c.392%200%20.75.153%201.018.402.266.247.444.588.477.97h0L17.5%208.5h-1v-7h-15V17a1.5%201.5%200%20001.357%201.493h0L6.5%2018.5V19.5H2a1.498%201.498%200%2001-1.495-1.37h0L.51%202c0-.394.15-.754.398-1.023.243-.264.58-.439.962-.471h0z%22%2F%3E%3Cpath%20d%3D%22M14%2011.5a4.5%204.5%200%20110%209%204.5%204.5%200%20010-9zm0%201a1.44%201.44%200%2000-1.03.425c-.251.25-.43.607-.47%201.05h0v.525H12l-.147.007c-.34.033-.646.18-.884.418-.245.246-.421.592-.469%201.075%200%20.397.153.758.425%201.03.25.251.607.43%201.05.47h0l.525.5.007.147c.033.34.18.646.418.884.246.245.592.421%201.075.469a1.44%201.44%200%20001.03-.425c.251-.25.43-.607.47-1.05h0l.5-.525.147-.007c.34-.033.646-.18.884-.418.245-.246.421-.592.469-1.075a1.44%201.44%200%2000-.425-1.03%201.677%201.677%200%2000-1.05-.47h0L15.5%2014l-.007-.147a1.436%201.436%200%2000-.418-.884c-.246-.245-.592-.421-1.075-.469z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E',\n\tClear: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22clear_svg__a%22%20d%3D%22M18.3%205.71a.996.996%200%2000-1.41%200L12%2010.59%207.11%205.7A.996.996%200%20105.7%207.11L10.59%2012%205.7%2016.89a.996.996%200%20101.41%201.41L12%2013.41l4.89%204.89a.996.996%200%20101.41-1.41L13.41%2012l4.89-4.89c.38-.38.38-1.02%200-1.4z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23clear_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tClose: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22close_svg__a%22%20d%3D%22M18.3%205.71a.996.996%200%2000-1.41%200L12%2010.59%207.11%205.7A.996.996%200%20105.7%207.11L10.59%2012%205.7%2016.89a.996.996%200%20101.41%201.41L12%2013.41l4.89%204.89a.996.996%200%20101.41-1.41L13.41%2012l4.89-4.89c.38-.38.38-1.02%200-1.4z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23close_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tCloseMenu: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2014%2014%22%3E%3Cdefs%3E%3Cpath%20id%3D%22close-menu_svg__a%22%20d%3D%22M13.3.71a.996.996%200%2000-1.41%200L7%205.59%202.11.7A.996.996%200%2010.7%202.11L5.59%207%20.7%2011.89a.996.996%200%20101.41%201.41L7%208.41l4.89%204.89a.996.996%200%20101.41-1.41L8.41%207l4.89-4.89c.38-.38.38-1.02%200-1.4z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22evenodd%22%20xlink%3Ahref%3D%22%23close-menu_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tColumnGraph: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2016%2014%22%3E%3Cg%20fill%3D%22currentColor%22%20fillRule%3D%22evenodd%22%3E%3Cpath%20d%3D%22M12%200h4v14h-4zM6%204h4v10H6zM0%208h4v6H0z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E',\n\tComputer: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22computer_svg__a%22%20d%3D%22M20%2018c1.1%200%201.99-.9%201.99-2L22%206c0-1.1-.9-2-2-2H4c-1.1%200-2%20.9-2%202v10c0%201.1.9%202%202%202H1c-.55%200-1%20.45-1%201s.45%201%201%201h22c.55%200%201-.45%201-1s-.45-1-1-1h-3zM5%206h14c.55%200%201%20.45%201%201v8c0%20.55-.45%201-1%201H5c-.55%200-1-.45-1-1V7c0-.55.45-1%201-1z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23computer_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tComputerError: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%20160%20160%22%3E%3Cg%20fill%3D%22currentColor%22%20clip-path%3D%22url(%23computer-error_svg__clip0_411_470)%22%3E%3Cpath%20d%3D%22M80%20160c44.186%200%2080-35.816%2080-79.999C160%2035.817%20124.186%200%2080%200S0%2035.817%200%2080.001C0%20124.184%2035.814%20160%2080%20160z%22%2F%3E%3Cpath%20d%3D%22M88.767%2033.26c0%20.865-.7%201.565-1.564%201.565H73.075c-.963%200-1.743-.78-1.743-1.743v-1.98H45.115v97.796h69.869V31.102H88.767v2.159z%22%2F%3E%3Cpath%20d%3D%22M116.247%2026H43.853a3.84%203.84%200%2000-3.84%203.84v100.32a3.84%203.84%200%20003.84%203.84h72.394a3.84%203.84%200%20003.84-3.84V29.84a3.84%203.84%200%2000-3.84-3.84zm-1.263%20102.897H45.115V31.102h26.217v1.98c0%20.963.78%201.743%201.743%201.743h14.128c.864%200%201.564-.7%201.564-1.564v-2.159h26.217v97.795z%22%2F%3E%3Cpath%20d%3D%22M65.671%2039.909l.496%201.143h-.991l.495-1.143zm-.217-.683l-1.348%203.087h.526l.348-.81h1.382l.352.81h.53l-1.348-3.087h-.442zM69.264%2042.313h-.478v-.226c-.143.183-.382.269-.6.269-.513%200-.843-.356-.843-.917v-1.3h.478v1.222c0%20.343.17.56.469.56.222%200%20.404-.138.496-.342v-1.44h.478v2.174zM73.278%2040.14h.478v.29c.083-.165.304-.313.548-.313.091%200%20.17.013.222.026l-.069.465a.564.564%200%2000-.187-.026.563.563%200%2000-.513.335v1.396h-.478V40.14h-.001zM75.629%2042.356c-.643%200-1.082-.517-1.082-1.13%200-.613.439-1.13%201.082-1.13.257%200%20.483.087.635.243v-.2h.478v2.174h-.478v-.204a.862.862%200%2001-.635.247zm.056-.435c.278%200%20.465-.13.578-.304v-.787a.662.662%200%2000-.578-.3c-.382%200-.648.313-.648.696.001.382.266.695.648.695zM77.174%2039.316l.479-.467v3.464h-.479v-2.997zM78.324%2039.813a.32.32%200%2011.005-.64.32.32%200%2001-.005.64zm-.239.326h.478v2.174h-.478v-2.174zM79.997%2042.356c-.643%200-1.083-.517-1.083-1.13%200-.613.439-1.13%201.083-1.13.257%200%20.483.087.635.243v-.2h.478v2.174h-.478v-.204c-.152.16-.378.247-.635.247zm.057-.435c.278%200%20.465-.13.578-.304v-.787a.662.662%200%2000-.578-.3c-.383%200-.648.313-.648.696%200%20.382.265.695.648.695zM81.543%2040.139h.478v.23c.148-.183.382-.274.639-.274.522%200%20.852.356.852.917v1.3h-.478V41.09c0-.343-.174-.561-.478-.561a.57.57%200%2000-.535.343v1.439h-.478v-2.172zM84.364%2041.49a.84.84%200%2000.717.397c.291%200%20.5-.152.5-.383%200-.217-.143-.361-.439-.47l-.339-.121c-.487-.178-.726-.448-.726-.87%200-.538.426-.87%201-.87.382%200%20.709.153.935.423l-.352.343a.734.734%200%2000-.582-.287c-.261%200-.487.135-.487.356%200%20.226.148.326.469.443l.313.117c.452.17.726.443.726.904-.004.539-.426.89-1.03.89-.5%200-.917-.225-1.104-.556l.399-.315zM88.321%2042.313h-.478v-.226c-.143.183-.382.269-.6.269-.513%200-.843-.356-.843-.917v-1.3h.478v1.222c0%20.343.17.56.47.56.222%200%20.404-.138.496-.342v-1.44h.478v2.174h-.001zM88.723%2040.139h.478v.2c.152-.157.378-.243.635-.243.648%200%201.087.517%201.087%201.13%200%20.613-.439%201.13-1.087%201.13-.257%200-.483-.087-.635-.248v1.16h-.478v-3.13zm1.061%201.782c.384%200%20.65-.316.648-.701a.687.687%200%2000-.833-.67.647.647%200%2000-.397.279v.787a.655.655%200%2000.582.305zM93.648%2040.14h.478v.29c.083-.165.304-.313.548-.313.091%200%20.17.013.222.026l-.07.465a.56.56%200%2000-.187-.026.563.563%200%2000-.513.335v1.396h-.478V40.14zM70.577%2041.022l-.222-.065c-.213-.061-.261-.152-.261-.257%200-.13.148-.204.291-.204.178%200%20.317.087.413.222l.302-.294c-.155-.212-.4-.327-.706-.327-.435%200-.774.235-.778.622-.004.322.191.56.57.665l.191.052c.261.078.335.152.335.278%200%20.152-.143.23-.313.23-.222%200-.435-.11-.522-.3l-.319.31c.167.27.479.403.84.403.448%200%20.787-.257.787-.674.001-.357-.225-.548-.608-.661zM72.88%2041.871a.724.724%200%2001-.309.055c-.204%200-.339-.1-.339-.37v-.99h.648v-.427h-.648v-.823h-.478v.823h-.426v.426h.426v1.07c0%20.491.335.722.756.722.141%200%20.269-.025.37-.055v-.43zM92.845%2041.662c-.119.154-.308.259-.573.259-.361%200-.648-.235-.669-.591h1.709c.004-.07.004-.11.004-.156%200-.7-.478-1.078-1.048-1.078-.668%200-1.145.502-1.134%201.152.011.662.587%201.154%201.248%201.104.365-.027.647-.187.829-.43l-.366-.26zM92.25%2040.5c.278%200%20.53.17.583.483h-1.209c.065-.322.348-.483.626-.483zM81.623%2037.655c-.1.009-.109.15-.012.173l2.175.502c.17-.407.175-.767-.117-.854l-2.046.179z%22%2F%3E%3Cpath%20d%3D%22M85.584%2037.308c.082-.007.128.093.069.15l-2.338%202.281c-.07.068-.182-.011-.141-.1l.611-1.31c.17-.407.175-.766-.117-.854l1.916-.167zM87.409%20121.457h-15.03a1.772%201.772%200%2001-1.766-1.766c0-.971.795-1.766%201.766-1.766h15.03c.971%200%201.766.795%201.766%201.766a1.772%201.772%200%2001-1.766%201.766zM79.107%2090.261c1.149%200%202.08-.934%202.08-2.09a2.087%202.087%200%2000-2.08-2.092%202.088%202.088%200%2000-2.086%202.091c0%201.157.932%202.091%202.086%202.091zM79.106%2084.435a2.012%202.012%200%2001-2.011-2.01V71.332a2.011%202.011%200%20014.022%200v11.091c0%201.11-.9%202.011-2.011%202.011z%22%2F%3E%3Cpath%20d%3D%22M100.825%2096.343H57.82a2.01%202.01%200%2001-1.725-3.044L77.634%2057.32a2.011%202.011%200%20011.725-.98h.001c.708%200%201.363.373%201.726.982L102.553%2093.3c.37.622.379%201.395.022%202.024a2.014%202.014%200%2001-1.75%201.018zM61.367%2092.32h35.917L79.356%2062.274%2061.367%2092.32z%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3ClinearGradient%20id%3D%22computer-error_svg__paint0_linear_411_470%22%20x1%3D%2282.317%22%20x2%3D%2283.365%22%20y1%3D%2238.433%22%20y2%3D%2237.184%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%3Cstop%20offset%3D%22.116%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.263%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.457%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.65%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.775%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22currentColor%22%2F%3E%3C%2FlinearGradient%3E%3ClinearGradient%20id%3D%22computer-error_svg__paint1_linear_411_470%22%20x1%3D%2283.274%22%20x2%3D%2285.572%22%20y1%3D%2238.436%22%20y2%3D%2238.637%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%3Cstop%20offset%3D%22.116%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.236%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.393%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.55%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.653%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.86%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.996%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22currentColor%22%2F%3E%3C%2FlinearGradient%3E%3CclipPath%20id%3D%22computer-error_svg__clip0_411_470%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M0%200h160v160H0z%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3C%2Fsvg%3E',\n\tConsolidate: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%20148%20148%22%3E%3Cg%20clip-path%3D%22url(%23consolidate_svg__clip0_2143_52998)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M74%20147.63c40.869%200%2074-33.13%2074-74%200-40.869-33.131-74-74-74-40.87%200-74%2033.131-74%2074%200%2040.87%2033.13%2074%2074%2074z%22%2F%3E%3Cmask%20id%3D%22consolidate_svg__a%22%20style%3D%22mask-type%3Aluminance%22%20width%3D%22148%22%20height%3D%22149%22%20x%3D%220%22%20y%3D%22-1%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M70.205-.37C31.1%201.607%200%2033.961%200%2073.583s33.13%2074.047%2074%2074.047c40.869%200%2074-33.152%2074-74.047C148%2032.687%20116.904%201.607%2077.795-.37h-7.59z%22%2F%3E%3C%2Fmask%3E%3Cg%20fill%3D%22currentColor%22%20mask%3D%22url(%23consolidate_svg__a)%22%3E%3Cpath%20d%3D%22M44.464%2075.258c-.6.066-1.09.815-1.492%201.195-.518.495-1.024.996-1.52%201.514a50.62%2050.62%200%2000-2.885%203.26c-1.823%202.246-3.469%204.657-4.807%207.229-.633%201.222-1.217%202.472-1.894%203.678-.33.583-.672%201.172-1.068%201.712-.16.215-.54.76-.793.848-.749.253.16-1.68.231-1.872.397-1.019.771-2.07%201.261-3.045.953-1.894%201.685-3.92%202.638-5.83.864-1.724%202.075-3.167%203.314-4.631a40.63%2040.63%200%20004.455-6.437c.726-1.3%201.393-2.814.936-4.223-.05-.16-.127-.325-.27-.402-.176-.094-.391-.038-.578.033-2.511.942-4.273%203.425-6.024%205.33-1.916%202.087-3.838%204.184-5.511%206.47-2.45%203.347-4.108%207.086-6.178%2010.648-.347-.457.093-1.118.193-1.608.137-.66.258-1.332.418-1.987.424-1.773.584-3.656%201.255-5.363.579-1.47%201.531-2.764%202.533-3.981%201.8-2.18%203.832-4.207%205.253-6.651.721-1.245%201.387-3.001.886-4.444-.54-1.541-3.188.909-3.771%201.487-1.013%201.002-2.148%201.855-3.111%202.885a134.192%20134.192%200%2000-3.249%203.607c-1.239%201.426-2.643%202.835-3.634%204.448-.572.93-1.002%201.944-1.404%202.963-1.486%203.766-2.323%207.807-3.92%2011.507.512%203.15%201.321%206.051%203.562%208.479.21.232.336.479.391.733a43.65%2043.65%200%20003.552%202.588c9.817%206.48%2011.98%2012.994%205.66%2024.821%201.327-1.168%202.924-1.894%204.29-3.012%202.317-1.889%203.798-3.695%204.503-6.635.633-2.637.666-5.379.666-8.072%200-4.906.43-9.641%202.682-14.073%201.349-2.66%202.703-5.313%204.052-7.967.831-1.641%201.68-3.58.892-5.242-.198-.418-.655-.831-1.068-.622-.121.06-.215.176-.303.28a80.71%2080.71%200%2000-4.702%206.388%2074.966%2074.966%200%2000-2.081%203.342c-.32.55-1.305%203.056-1.944%203.04.094-.937.578-1.912.881-2.803.336-.986.683-1.96%201.074-2.924.76-1.878%201.657-3.717%202.857-5.358%201.971-2.68%203.607-5.45%204.466-8.705.137-.522.302-1.299.192-1.822-.088-.418-.462-.81-.886-.765v-.011z%22%2F%3E%3Cpath%20d%3D%22M44.175%2075.058c-.6.066-1.09.814-1.492%201.194-.518.496-1.025.997-1.52%201.514a50.619%2050.619%200%2000-2.885%203.26c-1.823%202.246-3.469%204.658-4.807%207.23-.633%201.222-1.217%202.472-1.894%203.677-.33.584-.672%201.173-1.068%201.713-.16.215-.54.76-.793.848-.749.253.16-1.68.231-1.872.397-1.019.771-2.07%201.261-3.045.953-1.894%201.685-3.92%202.638-5.831.864-1.723%202.075-3.166%203.314-4.63a40.619%2040.619%200%20004.455-6.437c.726-1.3%201.392-2.814.935-4.223-.049-.16-.126-.325-.27-.402-.175-.094-.39-.039-.577.033-2.511.941-4.273%203.425-6.024%205.33-1.916%202.087-3.838%204.184-5.512%206.47-2.45%203.347-4.107%207.085-6.177%2010.648-.347-.457.093-1.118.193-1.608.137-.66.258-1.332.418-1.988.424-1.772.584-3.655%201.255-5.362.578-1.47%201.531-2.764%202.533-3.981%201.8-2.18%203.832-4.207%205.253-6.651.721-1.245%201.387-3.001.886-4.444-.54-1.541-3.188.909-3.771%201.487-1.013%201.002-2.148%201.855-3.111%202.885a134.196%20134.196%200%2000-3.249%203.606c-1.239%201.426-2.643%202.836-3.634%204.45-.572.93-1.002%201.943-1.404%202.962-1.486%203.766-2.323%207.807-3.92%2011.507.512%203.15%201.321%206.051%203.562%208.479.21.231.336.479.391.733.997.814%202.17%201.673%203.552%202.587%209.817%206.481%2011.98%2012.995%205.66%2024.821%201.327-1.167%202.924-1.894%204.289-3.011%202.318-1.889%203.8-3.695%204.504-6.635.633-2.637.666-5.379.666-8.072%200-4.906.43-9.641%202.682-14.073%201.349-2.66%202.703-5.314%204.052-7.967.831-1.641%201.68-3.58.892-5.242-.198-.419-.655-.832-1.068-.622-.121.06-.215.176-.303.28a80.71%2080.71%200%2000-4.702%206.388%2075.022%2075.022%200%2000-2.081%203.342c-.32.55-1.305%203.055-1.944%203.039.093-.936.578-1.91.88-2.803.337-.985.684-1.96%201.075-2.923.76-1.878%201.657-3.717%202.857-5.358%201.971-2.681%203.607-5.45%204.465-8.705.138-.523.303-1.3.193-1.822-.088-.419-.462-.81-.886-.766v-.01z%22%2F%3E%3Cpath%20d%3D%22M27.321%20101.305c-10.506-5.291-10.318-9.382-10.318-9.382-.232-.276-.259-.991-.309-1.333-.12-.88-.115-1.778-.104-2.665.01-1.706.082-3.452-.48-5.065-.56-1.608-1.932-3.072-3.639-3.16-.402-.023-.837.05-1.117.335-.32.325-.358.826-.38%201.278l-.413%209.69c-.044%201.024-.088%202.065.093%203.073.16.908.501%201.778.865%202.626%201.492%203.502%203.392%206.811%204.895%2010.302%201.26%202.94%202.863%206.122%202.053%209.36-.853%203.414-2.263%206.701-3.876%209.817-1.872%203.623-4.074%207.064-6.282%2010.495-1.035%201.613-3.1%203.815-3.293%205.726-.204%202.037%201.558%203.942%203.017%205.098%203.965%203.15%206.36%2012.273%2011.381%2011.673%202.434-.292%204.08-2.076%204.934-4.295%201.272-3.303%204.647-14.546%205.902-17.878.914-2.433%201.669-4.894%202.841-7.229%201.399-2.769%202.913-5.495%203.987-8.419%203.386-9.228-1.674-15.984-9.763-20.058l.006.011zM120.084%2094.642c17.335%208.159%2014.701%2020.582%2013.197%2024.025-1.043%202.386-2.751%204.404-4.442%206.39-.939%201.104-2.103%202.305-3.544%202.204-.957-.065-1.764-.706-2.5-1.312-2.52-2.073-5.308-4.836-4.676-8.039.211-1.074.803-2.046.986-3.124.295-1.707-.46-3.406-1.259-4.943a64.383%2064.383%200%2000-6.362-9.927c-1.761-2.26-7.544-5.173-4.728-7.493%202.676-2.208%2010.306.812%2013.32%202.23l.008-.01zM119.906%2079.516s2.122-3.84-1.693-7.252c-3.815-3.411-5.618-.8-5.618-.8s1.966%202.148%203.222%203.333c1.257%201.184%204.082%204.72%204.082%204.72h.007z%22%2F%3E%3Cpath%20d%3D%22M115.968%20109.371l23.737-34.554c2.826-4.108%201.77-9.777-2.338-12.615l-34.554-23.737c-4.102-2.82-9.789-1.771-12.61%202.344l-9.466%2013.778%202.842%201.953c3.542-2.235%208.221-2.306%2011.896.218%204.913%203.378%206.148%2010.093%202.782%2015.006-3.379%204.913-10.1%206.155-15.007%202.782a10.796%2010.796%200%2001-4.475-11.022l-2.842-1.952-9.466%2013.778c-2.82%204.115-1.776%209.783%202.332%2012.61l34.554%2023.737c4.108%202.826%209.783%201.776%2012.615-2.338%22%2F%3E%3Cpath%20d%3D%22M83.393%2054.397a10.115%2010.115%200%2000-8.971%206.612l-3.445.18-.928-18.046c-.175-3.35-3.058-5.944-6.405-5.78l-44.026%202.262c-3.35.174-5.948%203.05-5.78%206.404l2.269%2044.023c.174%203.35%203.05%205.948%206.405%205.78l44.026-2.262c3.35-.175%205.947-3.051%205.766-6.397l-.928-18.047%203.449-.173a10.121%2010.121%200%20009.604%205.657c5.576-.287%209.862-5.04%209.578-10.628-.284-5.569-5.038-9.855-10.618-9.574M99.706%20100.111c1.509-.844%205.124.128%206.722%202.905.844%201.468%201.208%203.653%201.553%205.765.533%203.208-.791%204.902%201.393%205.384.523.118%206.717-4.461%209.091-8.652%201.669-2.95%2016.612-.189%2013.735%2015.773-.56%203.116-18.401%2026.153-33.775%2069.179-.094.224-33.945%204.278-25.868-4.116%208.076-8.393%2029.612-47.367%2028.509-51.936-.569-2.357-2.075-6.145-.986-12.626%202.327-13.858.573-17.08-.708-19.433l-.112-.21c-.545-1.008-.124-1.71.445-2.027%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cdefs%3E%3CclipPath%20id%3D%22consolidate_svg__clip0_2143_52998%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M0%200h148v148H0z%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3C%2Fsvg%3E',\n\tConsolidatePuzzle: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cg%20fill%3D%22currentColor%22%20fillRule%3D%22evenodd%22%3E%3Cpath%20d%3D%22M13.156%206.984a2.903%202.903%200%20013.527-.441l.587-.587-4.629-4.628a.727.727%200%2000-1.028%200L6.984%205.956l1.543%201.543-.514.514a1.455%201.455%200%20102.057%202.057l.514-.514%201.543%201.542.587-.586a2.903%202.903%200%2001.442-3.528z%22%2F%3E%3Cpath%20d%3D%22M17.27%2013.156a2.903%202.903%200%2001.441%203.527l.587.587%204.628-4.629a.727.727%200%20000-1.028l-4.628-4.629-1.543%201.543-.514-.514a1.455%201.455%200%2010-2.057%202.057l.514.514-1.542%201.543.586.587a2.903%202.903%200%20013.528.442zM6.984%2011.098a2.903%202.903%200%2001-.441-3.527l-.587-.587-4.628%204.629a.727.727%200%20000%201.028l4.628%204.629%201.543-1.543.514.514a1.455%201.455%200%20102.057-2.057l-.514-.514%201.542-1.543-.586-.587a2.903%202.903%200%2001-3.528-.442z%22%2F%3E%3Cpath%20d%3D%22M11.098%2017.27a2.903%202.903%200%2001-3.527.441l-.587.587%204.629%204.628a.727.727%200%20001.028%200l4.629-4.628-1.543-1.543.514-.514a1.455%201.455%200%2010-2.057-2.057l-.514.514-1.543-1.542-.587.586a2.903%202.903%200%2001-.442%203.528z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E',\n\tConsolidateSuper: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20id%3D%22consolidate-super_svg__Layer_1%22%20x%3D%220%22%20y%3D%220%22%20version%3D%221.1%22%20viewBox%3D%220%200%2080%2080%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%3E.consolidate-super_svg__st1%7Bfill%3A%23eaeaea%7D%3C%2Fstyle%3E%3Cswitch%3E%3Cg%3E%3Cdefs%3E%3Cpath%20id%3D%22consolidate-super_svg__SVGID_1_%22%20d%3D%22M0%200h80v80H0z%22%2F%3E%3C%2Fdefs%3E%3CclipPath%20id%3D%22consolidate-super_svg__SVGID_00000069374963374211811230000015342766305514929287_%22%3E%3Cuse%20overflow%3D%22visible%22%20xlink%3Ahref%3D%22%23consolidate-super_svg__SVGID_1_%22%2F%3E%3C%2FclipPath%3E%3Cg%20clip-path%3D%22url(%23consolidate-super_svg__SVGID_00000069374963374211811230000015342766305514929287_)%22%3E%3Cpath%20d%3D%22M40%2080c22.093%200%2040-17.909%2040-40C80%2017.907%2062.093-.001%2040-.001%2017.908-.001%200%2017.907%200%2040c0%2022.092%2017.908%2040%2040%2040%22%20class%3D%22consolidate-super_svg__st1%22%2F%3E%3C%2Fg%3E%3Cg%20clip-path%3D%22url(%23consolidate-super_svg__SVGID_00000069374963374211811230000015342766305514929287_)%22%3E%3Cpath%20d%3D%22M40%2080c22.093%200%2040-17.909%2040-40C80%2017.907%2062.093-.001%2040-.001%2017.908-.001%200%2017.907%200%2040c0%2022.092%2017.908%2040%2040%2040%22%20class%3D%22consolidate-super_svg__st1%22%2F%3E%3C%2Fg%3E%3Cg%20clip-path%3D%22url(%23consolidate-super_svg__SVGID_00000069374963374211811230000015342766305514929287_)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M70.208%2047.746l-.628-16.658a3.62%203.62%200%2000-3.742-3.469l-16.657.627a3.62%203.62%200%2000-3.469%203.743l.25%206.644%201.37-.052a4.29%204.29%200%20013.847-2.752%204.288%204.288%200%20014.448%204.125%204.292%204.292%200%2001-8.169%201.996l-1.369.05.251%206.644a3.615%203.615%200%20003.739%203.469l16.658-.627a3.619%203.619%200%20003.471-3.74%22%2F%3E%3C%2Fg%3E%3Cg%20clip-path%3D%22url(%23consolidate-super_svg__SVGID_00000069374963374211811230000015342766305514929287_)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M41.02%2036.17a4.202%204.202%200%2000-4.435%201.333l-.731-.219%201.81-6.025a3.619%203.619%200%2000-2.417-4.492L19.28%2021.974a3.617%203.617%200%2000-4.492%202.417L9.996%2040.355a3.616%203.616%200%20002.417%204.493l15.964%204.793a3.62%203.62%200%20004.493-2.417l2.035-6.781.73.221a4.203%204.203%200%20105.385-4.494%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fswitch%3E%3C%2Fsvg%3E',\n\tContactDetails: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2018%22%3E%3Cg%20fill%3D%22none%22%20fillRule%3D%22evenodd%22%3E%3Cpath%20d%3D%22M0-3h24v24H0z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M22%200H2C.9%200%200%20.9%200%202v14c0%201.1.9%202%202%202h20c1.1%200%201.99-.9%201.99-2L24%202c0-1.1-.9-2-2-2zM8%203c1.66%200%203%201.34%203%203S9.66%209%208%209%205%207.66%205%206s1.34-3%203-3zm6%2012H2v-1c0-2%204-3.1%206-3.1s6%201.1%206%203.1v1zm3.85-4h1.64L21%2013l-1.99%201.99A7.512%207.512%200%200116.28%2011c-.18-.64-.28-1.31-.28-2s.1-1.36.28-2a7.474%207.474%200%20012.73-3.99L21%205l-1.51%202h-1.64c-.22.63-.35%201.3-.35%202s.13%201.37.35%202z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E',\n\tContactSupport: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22contact-support_svg__a%22%20d%3D%22M12%202c-4.69%200-8.5%203.81-8.5%208.5%200%204.69%203.81%208.5%208.5%208.5h.5v3c4.86-2.34%208-7%208-11.5C20.5%205.81%2016.69%202%2012%202zm1%2014.5h-2v-2h2v2zm.4-4.78c-.01.01-.02.03-.03.05-.05.08-.1.16-.14.24-.02.03-.03.07-.04.11-.03.07-.06.14-.08.21-.07.21-.1.43-.1.68H11c0-.51.08-.94.2-1.3%200-.01%200-.02.01-.03.01-.04.04-.06.05-.1.06-.16.13-.3.22-.44.03-.05.07-.1.1-.15.03-.04.05-.09.08-.12l.01.01c.84-1.1%202.21-1.44%202.32-2.68.09-.98-.61-1.93-1.57-2.13-1.04-.22-1.98.39-2.3%201.28-.14.36-.47.65-.88.65h-.2c-.6%200-1.04-.59-.87-1.17a4.002%204.002%200%20014.43-2.79c1.69.25%203.04%201.64%203.33%203.33.44%202.44-1.63%203.03-2.53%204.35z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23contact-support_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tContributionsPiggyBank: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2022%2022%22%3E%3Cg%20fill%3D%22currentColor%22%20fillRule%3D%22evenodd%22%3E%3Cpath%20d%3D%22M15.125%206.417H7.899C6.917%204.743%205.26%204.483%204.453%204.593l-1.045.149.943%203.235a6.85%206.85%200%2000-1.718%202.106H0V16.5h2.627a6.844%206.844%200%20005.623%203.636V22h1.833v-1.833h3.667V22h1.833v-1.856C19.16%2019.906%2022%2016.928%2022%2013.292a6.882%206.882%200%2000-6.875-6.875zm.458%205.5H9.167v-1.834h6.416v1.834z%22%2F%3E%3Ccircle%20cx%3D%2212.375%22%20cy%3D%222.292%22%20r%3D%222.292%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E',\n\tCreditCard: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22credit-card_svg__a%22%20d%3D%22M20%204H4c-1.11%200-1.99.89-1.99%202L2%2018c0%201.11.89%202%202%202h16c1.11%200%202-.89%202-2V6c0-1.11-.89-2-2-2zm-1%2014H5c-.55%200-1-.45-1-1v-5h16v5c0%20.55-.45%201-1%201zm1-10H4V6h16v2z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23credit-card_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tCsHourglass: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2012%2020%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M2%200C.9%200%200%20.9%200%202l.01%203.18c0%20.53.21%201.03.58%201.41L4%2010%20.59%2013.43c-.37.37-.58.88-.58%201.41L0%2018c0%201.1.9%202%202%202h8c1.1%200%202-.9%202-2v-3.16c0-.53-.21-1.04-.58-1.41L8%2010l3.41-3.4c.38-.38.59-.89.59-1.42V2c0-1.1-.9-2-2-2H2zm8%2014.91V17c0%20.55-.45%201-1%201H3c-.55%200-1-.45-1-1v-2.09c0-.27.11-.52.29-.71L6%2010.5l3.71%203.71c.18.18.29.44.29.7z%22%2F%3E%3C%2Fsvg%3E',\n\tCurrentBalance: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2040%2040%22%3E%3Cg%20fill%3D%22currentColor%22%20fillRule%3D%22evenodd%22%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%2220%22%2F%3E%3Cpath%20d%3D%22M11%2011l.612%201.836a2.25%202.25%200%20002.135%201.539h5.128v2.34c-3.815.547-6.75%203.818-6.75%207.785v3.375c0%20.621.504%201.125%201.125%201.125h13.5c.621%200%201.125-.504%201.125-1.125V24.5c0-3.967-2.935-7.238-6.75-7.785v-2.34h5.128a2.25%202.25%200%20002.134-1.539L29%2011H11zm11.25%2012.375a2.25%202.25%200%2011-4.499.001%202.25%202.25%200%20014.499-.001z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E',\n\tDIcon: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2040%2040%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M20%2040c11.046%200%2020-8.954%2020-20S31.046%200%2020%200%200%208.954%200%2020s8.954%2020%2020%2020z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M14.58%2024.884c0%20.63.486%201.116%201.116%201.116h3.582c3.96%200%206.696-2.754%206.696-6.3v-.036c0-3.546-2.736-6.264-6.696-6.264h-3.582c-.63%200-1.116.486-1.116%201.116v10.368zm2.214-.9v-8.568h2.484c2.646%200%204.374%201.818%204.374%204.284v.036c0%202.466-1.728%204.248-4.374%204.248h-2.484z%22%2F%3E%3C%2Fsvg%3E',\n\tDelete: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22delete_svg__a%22%20d%3D%22M6%2019c0%201.1.9%202%202%202h8c1.1%200%202-.9%202-2V9c0-1.1-.9-2-2-2H8c-1.1%200-2%20.9-2%202v10zM18%204h-2.5l-.71-.71c-.18-.18-.44-.29-.7-.29H9.91c-.26%200-.52.11-.7.29L8.5%204H6c-.55%200-1%20.45-1%201s.45%201%201%201h12c.55%200%201-.45%201-1s-.45-1-1-1z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23delete_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tDescription: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22description_svg__a%22%20d%3D%22M14.59%202.59c-.38-.38-.89-.59-1.42-.59H6c-1.1%200-2%20.9-2%202v16c0%201.1.89%202%201.99%202H18c1.1%200%202-.9%202-2V8.83c0-.53-.21-1.04-.59-1.41l-4.82-4.83zM15%2018H9c-.55%200-1-.45-1-1s.45-1%201-1h6c.55%200%201%20.45%201%201s-.45%201-1%201zm0-4H9c-.55%200-1-.45-1-1s.45-1%201-1h6c.55%200%201%20.45%201%201s-.45%201-1%201zm-2-6V3.5L18.5%209H14c-.55%200-1-.45-1-1z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23description_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tDone: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22done_svg__a%22%20d%3D%22M8.8%2015.905l-3.5-3.5a.984.984%200%2000-1.4%200%20.984.984%200%20000%201.4l4.19%204.19c.39.39%201.02.39%201.41%200l10.6-10.59a.984.984%200%20000-1.4.984.984%200%2000-1.4%200l-9.9%209.9z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23done_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tDownload: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22download_svg__a%22%20d%3D%22M16.59%209.5H15v-5c0-.55-.45-1-1-1h-4c-.55%200-1%20.45-1%201v5H7.41c-.89%200-1.34%201.08-.71%201.71l4.59%204.59c.39.39%201.02.39%201.41%200l4.59-4.59c.63-.63.19-1.71-.7-1.71zM5%2019.5c0%20.55.45%201%201%201h12c.55%200%201-.45%201-1s-.45-1-1-1H6c-.55%200-1%20.45-1%201z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23download_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tDownloadConcrete: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2080%2080%22%3E%3Cstyle%3E%3C%2Fstyle%3E%3Ccircle%20cx%3D%2240%22%20cy%3D%2240%22%20r%3D%2240%22%20fill%3D%22none%22%2F%3E%3Cdefs%3E%3Cpath%20id%3D%22download-concrete_svg__a%22%20d%3D%22M0%200h80v80H0z%22%2F%3E%3C%2Fdefs%3E%3CclipPath%20id%3D%22download-concrete_svg__e%22%3E%3Cuse%20xlink%3Ahref%3D%22%23download-concrete_svg__a%22%2F%3E%3C%2FclipPath%3E%3Cg%20clip-path%3D%22url(%23download-concrete_svg__e)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M80%2040c0%2022.09-17.91%2040-40.001%2040C17.91%2080%200%2062.09%200%2040%200%2017.907%2017.91%200%2039.999%200%2062.09%200%2080%2017.907%2080%2040%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3Cpath%20id%3D%22download-concrete_svg__b%22%20d%3D%22M0%200h80v80H0z%22%2F%3E%3C%2Fdefs%3E%3CclipPath%20id%3D%22download-concrete_svg__f%22%3E%3Cuse%20xlink%3Ahref%3D%22%23download-concrete_svg__b%22%2F%3E%3C%2FclipPath%3E%3Cg%20clip-path%3D%22url(%23download-concrete_svg__f)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M24.346%2028.556a2.671%202.671%200%2000-2.671%202.671v26.524c0%201.353%201.013%202.449%202.265%202.449h31.74c1.251%200%202.265-1.096%202.265-2.449V31.227a2.672%202.672%200%2000-2.671-2.671H24.346z%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3Cpath%20id%3D%22download-concrete_svg__d%22%20d%3D%22M0%200h80v80H0z%22%2F%3E%3C%2Fdefs%3E%3CclipPath%20id%3D%22download-concrete_svg__c%22%3E%3Cuse%20xlink%3Ahref%3D%22%23download-concrete_svg__d%22%2F%3E%3C%2FclipPath%3E%3Cg%20clip-path%3D%22url(%23download-concrete_svg__c)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M43.205%2042.046V13.897c0-.64-.518-1.16-1.158-1.16h-4.293c-.64%200-1.158.519-1.158%201.16v28.18l-7.36.033c-1.03.004-1.542%201.251-.813%201.978l10.121%2010.121c.44.441%201.15.453%201.607.029l11.015-10.215c.775-.718.263-2.014-.793-2.008l-7.168.031z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E',\n\tEdit: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22edit_svg__a%22%20d%3D%22M2.999%2017.461v3.04c0%20.28.22.5.5.5h3.04c.13%200%20.26-.05.35-.15l10.92-10.91-3.75-3.75-10.91%2010.91c-.1.1-.15.22-.15.36zm17.71-10.42a.996.996%200%20000-1.41l-2.34-2.34a.996.996%200%2000-1.41%200l-1.83%201.83%203.75%203.75%201.83-1.83z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23edit_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tEmployerSuitcase: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cg%20fill%3D%22none%22%20fillRule%3D%22evenodd%22%3E%3Cpath%20d%3D%22M0%200h24v24H0z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M20%206h-4V4c0-1.11-.89-2-2-2h-4c-1.11%200-2%20.89-2%202v2H4c-1.11%200-1.99.89-1.99%202L2%2019c0%201.11.89%202%202%202h16c1.11%200%202-.89%202-2V8c0-1.11-.89-2-2-2zm-6%200h-4V4h4v2z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E',\n\tError: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22error_svg__a%22%20d%3D%22M12%202C6.48%202%202%206.48%202%2012s4.48%2010%2010%2010%2010-4.48%2010-10S17.52%202%2012%202zm0%2011c-.55%200-1-.45-1-1V8c0-.55.45-1%201-1s1%20.45%201%201v4c0%20.55-.45%201-1%201zm1%204h-2v-2h2v2z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23error_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tErrorOutline: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22error-outline_svg__a%22%20d%3D%22M12%207c.55%200%201%20.45%201%201v4c0%20.55-.45%201-1%201s-1-.45-1-1V8c0-.55.45-1%201-1zm-.01-5C6.47%202%202%206.48%202%2012s4.47%2010%209.99%2010C17.52%2022%2022%2017.52%2022%2012S17.52%202%2011.99%202zM12%2020c-4.42%200-8-3.58-8-8s3.58-8%208-8%208%203.58%208%208-3.58%208-8%208zm1-3h-2v-2h2v2z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23error-outline_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tEvent: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22event_svg__a%22%20d%3D%22M16%2013h-3c-.55%200-1%20.45-1%201v3c0%20.55.45%201%201%201h3c.55%200%201-.45%201-1v-3c0-.55-.45-1-1-1zm0-10v1H8V3c0-.55-.45-1-1-1s-1%20.45-1%201v1H5c-1.11%200-1.99.9-1.99%202L3%2020a2%202%200%20002%202h14c1.1%200%202-.9%202-2V6c0-1.1-.9-2-2-2h-1V3c0-.55-.45-1-1-1s-1%20.45-1%201zm2%2017H6c-.55%200-1-.45-1-1V9h14v10c0%20.55-.45%201-1%201z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23event_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tExitToApp: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22exit-to-app_svg__a%22%20d%3D%22M10.79%2016.29c.39.39%201.02.39%201.41%200l3.59-3.59a.996.996%200%20000-1.41L12.2%207.7a.996.996%200%2010-1.41%201.41L12.67%2011H4c-.55%200-1%20.45-1%201s.45%201%201%201h8.67l-1.88%201.88c-.39.39-.38%201.03%200%201.41zM19%203H5a2%202%200%2000-2%202v3c0%20.55.45%201%201%201s1-.45%201-1V6c0-.55.45-1%201-1h12c.55%200%201%20.45%201%201v12c0%20.55-.45%201-1%201H6c-.55%200-1-.45-1-1v-2c0-.55-.45-1-1-1s-1%20.45-1%201v3c0%201.1.9%202%202%202h14c1.1%200%202-.9%202-2V5c0-1.1-.9-2-2-2z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23exit-to-app_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tExpandLess: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22expand-less_svg__a%22%20d%3D%22M11.295%209l-4.59%204.59A.996.996%200%20108.115%2015l3.89-3.88%203.88%203.88a.996.996%200%20101.41-1.41L12.705%209a.996.996%200%2000-1.41%200z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23expand-less_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tExpandMore: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22expand-more_svg__a%22%20d%3D%22M15.875%209l-3.88%203.88L8.115%209a.996.996%200%2010-1.41%201.41l4.59%204.59c.39.39%201.02.39%201.41%200l4.59-4.59a.996.996%200%20000-1.41c-.39-.38-1.03-.39-1.42%200z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23expand-more_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tFavorite: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22favorite_svg__a%22%20d%3D%22M13.35%2020.307c-.76.69-1.93.69-2.69-.01l-.11-.1C5.3%2015.447%201.87%2012.337%202%208.457c.06-1.7.93-3.33%202.34-4.29%202.64-1.8%205.9-.96%207.66%201.1%201.76-2.06%205.02-2.91%207.66-1.1%201.41.96%202.28%202.59%202.34%204.29.14%203.88-3.3%206.99-8.55%2011.76l-.1.09z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23favorite_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tFeedback: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22feedback_svg__a%22%20d%3D%22M19.995%202H4.005c-1.1%200-2%20.9-2%202v18l3.99-4h14c1.1%200%202-.9%202-2V4c0-1.1-.9-2-2-2zm-7%2012h-2v-2h2v2zm0-5c0%20.55-.45%201-1%201s-1-.45-1-1V7c0-.55.45-1%201-1s1%20.45%201%201v2z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23feedback_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tFilterList: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22filter-list_svg__a%22%20d%3D%22M11%2018h2c.55%200%201-.45%201-1s-.45-1-1-1h-2c-.55%200-1%20.45-1%201s.45%201%201%201zM3%207c0%20.55.45%201%201%201h16c.55%200%201-.45%201-1s-.45-1-1-1H4c-.55%200-1%20.45-1%201zm4%206h10c.55%200%201-.45%201-1s-.45-1-1-1H7c-.55%200-1%20.45-1%201s.45%201%201%201z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23filter-list_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tFlyerCover: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20id%3D%22flyer-cover_svg__Layer_2%22%20x%3D%220%22%20y%3D%220%22%20version%3D%221.1%22%20viewBox%3D%220%200%2080%2080%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%3E.flyer-cover_svg__st3%7Bfill%3A%23260046%7D.flyer-cover_svg__st5%7Bfill%3A%23ea4403%7D%3C%2Fstyle%3E%3Cswitch%3E%3Cg%3E%3Ccircle%20cx%3D%2240%22%20cy%3D%2240%22%20r%3D%2240%22%20fill%3D%22none%22%2F%3E%3Cdefs%3E%3Cpath%20id%3D%22flyer-cover_svg__SVGID_1_%22%20d%3D%22M0%200h80v80H0z%22%2F%3E%3C%2Fdefs%3E%3CclipPath%20id%3D%22flyer-cover_svg__SVGID_00000043431031453273141030000007923507478830660777_%22%3E%3Cuse%20overflow%3D%22visible%22%20xlink%3Ahref%3D%22%23flyer-cover_svg__SVGID_1_%22%2F%3E%3C%2FclipPath%3E%3Cg%20clip-path%3D%22url(%23flyer-cover_svg__SVGID_00000043431031453273141030000007923507478830660777_)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M40%2080c22.093%200%2040-17.909%2040-40C80%2017.907%2062.093-.001%2040-.001S0%2017.907%200%2040c0%2022.092%2017.907%2040%2040%2040%22%2F%3E%3C%2Fg%3E%3Cg%20clip-path%3D%22url(%23flyer-cover_svg__SVGID_00000043431031453273141030000007923507478830660777_)%22%3E%3Cpath%20d%3D%22M55.537%2057.785c0%201.18-.966%202.146-2.146%202.146h-32.82a2.153%202.153%200%2001-2.146-2.146V17.644c0-1.179.967-2.144%202.146-2.144h32.821c1.18%200%202.146.966%202.146%202.144v40.141z%22%20class%3D%22flyer-cover_svg__st3%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M61.575%2062.354c0%201.18-.966%202.146-2.146%202.146h-32.82a2.153%202.153%200%2001-2.146-2.146V22.213c0-1.179.967-2.144%202.146-2.144H59.43c1.18%200%202.146.966%202.146%202.144v40.141z%22%2F%3E%3Cpath%20d%3D%22M41.491%2046.919a2.57%202.57%200%2001-2.567-2.566.52.52%200%20011.042%200c0%20.841.685%201.525%201.525%201.525s1.525-.684%201.525-1.525V31.797a.52.52%200%20111.042%200v12.555a2.57%202.57%200%2001-2.567%202.567M43.537%2027.855a.521.521%200%2001-.521-.521v-1.983a.521.521%200%20011.043%200v1.983a.522.522%200%2001-.522.521%22%20class%3D%22flyer-cover_svg__st3%22%2F%3E%3Cpath%20d%3D%22M34.591%2035.874c1.32%200%202.456.719%202.99%201.76.534-1.04%201.67-1.76%202.99-1.76%201.32%200%202.457.719%202.991%201.76.533-1.04%201.67-1.76%202.99-1.76s2.456.719%202.99%201.76c.533-1.04%201.67-1.76%202.99-1.76%201.333%200%202.478.733%203.006%201.788-.029-6.604-5.389-11.583-12.001-11.583-6.63%200-12.004%205.007-12.004%2011.636h.026c.514-1.083%201.677-1.841%203.032-1.841%22%20class%3D%22flyer-cover_svg__st5%22%2F%3E%3Cg%3E%3Cpath%20d%3D%22M29.791%2052.956c0-.723.59-1.315%201.315-1.315h23.827c.723%200%201.313.592%201.313%201.315v.839c0%20.723-.59%201.315-1.313%201.315H31.106a1.318%201.318%200%2001-1.315-1.315v-.839z%22%20class%3D%22flyer-cover_svg__st5%22%2F%3E%3C%2Fg%3E%3Cg%3E%3Cpath%20d%3D%22M29.791%2059.16c0-.723.59-1.315%201.315-1.315h18.505a1.32%201.32%200%20011.315%201.315v.839a1.32%201.32%200%2001-1.315%201.315H31.106a1.318%201.318%200%2001-1.315-1.315v-.839z%22%20class%3D%22flyer-cover_svg__st5%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fswitch%3E%3C%2Fsvg%3E',\n\tFourStacks: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22currentColor%22%20fillRule%3D%22evenodd%22%20d%3D%22M12.5%202H3.75A1.75%201.75%200%20002%203.75v8.75c0%20.966.784%201.75%201.75%201.75h8.75a1.75%201.75%200%20001.75-1.75V3.75A1.75%201.75%200%200012.5%202zm-1.75%208.75H5.5V5.5h5.25v5.25zM28.25%2017.75H19.5a1.75%201.75%200%2000-1.75%201.75v8.75c0%20.966.784%201.75%201.75%201.75h8.75A1.75%201.75%200%200030%2028.25V19.5a1.75%201.75%200%2000-1.75-1.75zM26.5%2026.5h-5.25v-5.25h5.25v5.25zM12.5%2017.75H3.75A1.75%201.75%200%20002%2019.5v8.75c0%20.966.784%201.75%201.75%201.75h8.75a1.75%201.75%200%20001.75-1.75V19.5a1.75%201.75%200%2000-1.75-1.75zm-1.75%208.75H5.5v-5.25h5.25v5.25zM23.875%2014.25a1.75%201.75%200%2001-1.237-.513l-4.375-4.375a1.75%201.75%200%20010-2.475l4.375-4.375a1.75%201.75%200%20012.474%200l4.375%204.375a1.75%201.75%200%20010%202.475l-4.375%204.375a1.75%201.75%200%2001-1.237.513z%22%20clip-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E',\n\tFutureContributions: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2040%2040%22%3E%3Cg%20fill%3D%22currentColor%22%20fillRule%3D%22evenodd%22%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%2220%22%2F%3E%3Cpath%20d%3D%22M25%2010c.55%200%201%20.45%201%201v1h1c1.1%200%202%20.9%202%202v5h-2v-2H13v10c0%20.55.45%201%201%201h4v2h-5a2%202%200%2001-2-2l.01-14c0-1.1.88-2%201.99-2h1v-1c0-.55.45-1%201-1s1%20.45%201%201v1h8v-1c0-.55.45-1%201-1z%22%2F%3E%3Cpath%20d%3D%22M25%2021a5%205%200%20110%2010%205%205%200%20010-10zm0%202a1%201%200%2000-1%201v1h-1a1%201%200%2000-.993.883L22%2026a1%201%200%20001%201h1v1a1%201%200%2000.883.993L25%2029a1%201%200%20001-1v-1h1a1%201%200%2000.993-.883L28%2026a1%201%200%2000-1-1h-1v-1a1%201%200%2000-.883-.993z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E',\n\tGetApp: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22get-app_svg__a%22%20d%3D%22M16.59%209.5H15v-5c0-.55-.45-1-1-1h-4c-.55%200-1%20.45-1%201v5H7.41c-.89%200-1.34%201.08-.71%201.71l4.59%204.59c.39.39%201.02.39%201.41%200l4.59-4.59c.63-.63.19-1.71-.7-1.71zM5%2019.5c0%20.55.45%201%201%201h12c.55%200%201-.45%201-1s-.45-1-1-1H6c-.55%200-1%20.45-1%201z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23get-app_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tGoogleplay: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%20136%2040%22%3E%3Cg%20fill%3D%22currentColor%22%20clip-path%3D%22url(%23googleplay_svg__clip0_1121_5270)%22%3E%3Cpath%20fillRule%3D%22evenodd%22%20d%3D%22M130.662%2040H5.666a5.015%205.015%200%2001-5.002-5V5c0-2.756%202.245-5%205.002-5h124.996a5.01%205.01%200%20015.002%205v30c0%202.746-2.248%205-5.002%205z%22%20clip-rule%3D%22evenodd%22%2F%3E%3Cpath%20fillRule%3D%22evenodd%22%20d%3D%22M130.662.8c2.312%200%204.205%201.888%204.205%204.2v30c0%202.312-1.88%204.2-4.205%204.2H5.666A4.213%204.213%200%20011.46%2035V5c0-2.312%201.88-4.2%204.205-4.2h124.996zm0-.8H5.666A5.015%205.015%200%2000.664%205v30c0%202.756%202.245%205%205.002%205h124.996a5.01%205.01%200%20005.002-5V5c0-2.746-2.248-5-5.002-5z%22%20clip-rule%3D%22evenodd%22%2F%3E%3Cpath%20d%3D%22M71.782%2013.232c-.901%200-1.661-.317-2.262-.94a3.209%203.209%200%2001-.914-2.294c0-.91.308-1.681.914-2.292.598-.624%201.358-.94%202.26-.94.891%200%201.651.316%202.262.94.606.63.914%201.401.914%202.292-.01.912-.318%201.683-.914%202.291-.598.629-1.358.943-2.26.943zm-26.824%200a3.136%203.136%200%2001-2.273-.928c-.62-.613-.936-1.389-.936-2.304%200-.915.315-1.69.936-2.304.614-.616%201.379-.928%202.273-.928.437%200%20.861.087%201.269.264.4.173.725.407.966.694l.06.072-.673.663-.07-.082c-.38-.454-.89-.676-1.562-.676-.601%200-1.125.215-1.557.639-.435.426-.656.985-.656%201.66%200%20.676.221%201.235.656%201.661.432.424.956.639%201.557.639.64%200%201.18-.215%201.6-.639.247-.249.401-.598.456-1.04h-2.158v-.932h3.085l.012.085c.022.157.045.319.045.468%200%20.86-.259%201.556-.77%202.07-.581.609-1.341.918-2.26.918zm35.666-.132h-.952L76.76%208.419l.025.843v3.835h-.951V6.9h1.085l.03.048%202.74%204.409-.026-.84V6.9h.962v6.2zm-15.99%200h-.963V7.833H62V6.9h4.304v.933h-1.672V13.1h.003zm-3.42%200h-.96V6.9h.96v6.2zm-5.4%200h-.962V7.833h-1.671V6.9h4.304v.933h-1.672V13.1zm-3.242-.01h-3.685V6.9h3.685v.933H49.85v1.7h2.456v.923H49.85v1.701h2.722v.933zm17.653-1.44c.43.432.951.65%201.557.65.624%200%201.133-.213%201.557-.65.423-.423.636-.98.636-1.65%200-.67-.213-1.23-.633-1.65a2.126%202.126%200%2000-1.557-.65c-.624%200-1.133.213-1.555.65-.422.423-.636.98-.636%201.65%200%20.67.211%201.23.631%201.65z%22%2F%3E%3Cpath%20fillRule%3D%22evenodd%22%20d%3D%22M68.517%2021.756c-2.347%200-4.25%201.788-4.25%204.254%200%202.444%201.915%204.254%204.25%204.254%202.347%200%204.25-1.8%204.25-4.254%200-2.466-1.903-4.254-4.25-4.254zm0%206.823c-1.284%200-2.39-1.068-2.39-2.579%200-1.534%201.108-2.578%202.39-2.578%201.284%200%202.389%201.044%202.389%202.578.002%201.521-1.105%202.579-2.39%202.579zm-9.271-6.823c-2.347%200-4.25%201.788-4.25%204.254%200%202.444%201.915%204.254%204.25%204.254%202.347%200%204.25-1.8%204.25-4.254%200-2.466-1.906-4.254-4.25-4.254zm0%206.823c-1.284%200-2.39-1.068-2.39-2.579%200-1.534%201.108-2.578%202.39-2.578%201.284%200%202.389%201.044%202.389%202.578%200%201.521-1.105%202.579-2.39%202.579zm-11.032-5.524v1.8h4.304c-.132%201.01-.465%201.756-.974%202.267-.63.634-1.604%201.322-3.32%201.322-2.645%200-4.714-2.145-4.714-4.8%200-2.656%202.069-4.801%204.714-4.801%201.428%200%202.469.566%203.24%201.29l1.273-1.278c-1.073-1.032-2.502-1.823-4.503-1.823-3.629%200-6.674%202.968-6.674%206.602%200%203.643%203.043%206.6%206.674%206.6%201.96%200%203.43-.643%204.592-1.855%201.184-1.19%201.56-2.868%201.56-4.222%200-.421-.033-.8-.1-1.122h-6.075c.003-.003.003.02.003.02zm45.123%201.401c-.355-.955-1.428-2.71-3.628-2.71-2.18%200-3.994%201.723-3.994%204.254%200%202.39%201.793%204.254%204.205%204.254%201.937%200%203.065-1.19%203.53-1.887l-1.439-.968c-.477.71-1.14%201.177-2.081%201.177-.951%200-1.617-.434-2.059-1.29l5.665-2.356c0%20.003-.199-.474-.199-.474zm-5.776%201.422c-.045-1.643%201.271-2.479%202.212-2.479.743%200%201.362.367%201.573.9l-3.785%201.579zM82.959%2030h1.86V17.501h-1.86v12.5zm-3.055-7.3h-.067c-.42-.5-1.217-.954-2.235-.954-2.114%200-4.06%201.867-4.06%204.267%200%202.388%201.936%204.234%204.06%204.234%201.005%200%201.815-.456%202.235-.968h.067v.611c0%201.624-.864%202.5-2.258%202.5-1.14%200-1.847-.824-2.136-1.512l-1.616.678c.464%201.122%201.703%202.511%203.75%202.511%202.18%200%204.028-1.289%204.028-4.433V22h-1.758v.7h-.01zm-2.136%205.879c-1.284%200-2.357-1.078-2.357-2.567%200-1.5%201.073-2.588%202.357-2.588%201.272%200%202.258%201.1%202.258%202.588.012%201.49-.984%202.567-2.258%202.567zM102.047%2017.5h-4.448v12.5h1.86v-4.734h2.591c2.058%200%204.083-1.499%204.083-3.878s-2.017-3.888-4.086-3.888zm.055%206.02h-2.645v-4.289h2.645c1.393%200%202.18%201.155%202.18%202.145%200%20.98-.797%202.144-2.18%202.144zm11.486-1.788c-1.351%200-2.744.601-3.32%201.91l1.649.689c.355-.689%201.006-.923%201.693-.923.964%200%201.938.579%201.96%201.611v.132c-.333-.19-1.063-.479-1.937-.479-1.781%200-3.586.978-3.586%202.81%200%201.68%201.46%202.756%203.087%202.756%201.249%200%201.937-.566%202.366-1.222h.068v.968h1.793v-4.788c0-2.23-1.649-3.464-3.773-3.464zm-.233%206.846c-.609%200-1.461-.3-1.461-1.068%200-.967%201.063-1.334%201.97-1.334.819%200%201.207.177%201.694.422a2.243%202.243%200%2001-2.203%201.98zM123.902%2022l-2.136%205.422h-.067L119.487%2022h-2.002l3.32%207.579-1.892%204.212h1.937L125.959%2022h-2.057zm-16.744%208h1.86V17.501h-1.86v12.5zM11.055%207.534c-.288.311-.454.788-.454%201.411v22.112c0%20.624.166%201.1.464%201.4l.077.067%2012.338-12.39v-.276L11.132%207.466l-.077.068z%22%20clip-rule%3D%22evenodd%22%2F%3E%3Cpath%20fillRule%3D%22evenodd%22%20d%3D%22M27.586%2024.277l-4.115-4.132v-.29l4.115-4.132.09.055%204.867%202.778c1.393.788%201.393%202.09%200%202.888l-4.868%202.778-.09.055z%22%20clip-rule%3D%22evenodd%22%2F%3E%3Cpath%20fillRule%3D%22evenodd%22%20d%3D%22M27.674%2024.222L23.47%2020%2011.055%2032.466c.454.49%201.217.544%202.069.068l14.55-8.312zM27.674%2015.778l-14.55-8.3c-.852-.488-1.617-.42-2.07.068L23.47%2020l4.204-4.222z%22%20clip-rule%3D%22evenodd%22%2F%3E%3Cpath%20fillRule%3D%22evenodd%22%20d%3D%22M27.586%2024.132l-14.452%208.245c-.807.466-1.527.434-1.992.01l-.077.077.077.067c.465.422%201.185.457%201.992-.01l14.551-8.299-.099-.09z%22%20clip-rule%3D%22evenodd%22%20opacity%3D%22.2%22%2F%3E%3Cpath%20fillRule%3D%22evenodd%22%20d%3D%22M32.543%2021.3l-4.97%202.832.09.09%204.867-2.778c.698-.4%201.041-.923%201.041-1.444-.042.479-.397.933-1.028%201.3z%22%20clip-rule%3D%22evenodd%22%20opacity%3D%22.12%22%2F%3E%3Cpath%20fillRule%3D%22evenodd%22%20d%3D%22M13.124%207.624L32.543%2018.7c.63.357.986.823%201.04%201.3%200-.522-.343-1.046-1.04-1.445L13.123%207.48c-1.392-.8-2.522-.132-2.522%201.466v.145c0-1.601%201.13-2.257%202.523-1.466z%22%20clip-rule%3D%22evenodd%22%20opacity%3D%22.25%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3ClinearGradient%20id%3D%22googleplay_svg__paint0_linear_1121_5270%22%20x1%3D%2222.373%22%20x2%3D%222.599%22%20y1%3D%228.707%22%20y2%3D%2213.954%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%3Cstop%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.007%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.26%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.512%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.76%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22currentColor%22%2F%3E%3C%2FlinearGradient%3E%3ClinearGradient%20id%3D%22googleplay_svg__paint1_linear_1121_5270%22%20x1%3D%2234.36%22%20x2%3D%2210.262%22%20y1%3D%2220%22%20y2%3D%2220%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%3Cstop%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.409%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.775%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22currentColor%22%2F%3E%3C%2FlinearGradient%3E%3ClinearGradient%20id%3D%22googleplay_svg__paint2_linear_1121_5270%22%20x1%3D%2225.388%22%20x2%3D%229.425%22%20y1%3D%2222.297%22%20y2%3D%2249.054%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%3Cstop%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22currentColor%22%2F%3E%3C%2FlinearGradient%3E%3ClinearGradient%20id%3D%22googleplay_svg__paint3_linear_1121_5270%22%20x1%3D%227.928%22%20x2%3D%2215.05%22%20y1%3D%22.179%22%20y2%3D%2212.129%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%3Cstop%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.069%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.476%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.801%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22currentColor%22%2F%3E%3C%2FlinearGradient%3E%3CclipPath%20id%3D%22googleplay_svg__clip0_1121_5270%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M0%200h135v40H0z%22%20transform%3D%22translate(.664)%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3C%2Fsvg%3E',\n\tHelp: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22help_svg__a%22%20d%3D%22M12%202C6.48%202%202%206.48%202%2012s4.48%2010%2010%2010%2010-4.48%2010-10S17.52%202%2012%202zm1%2017h-2v-2h2v2zm2.07-7.75l-.9.92c-.5.51-.86.97-1.04%201.69-.08.32-.13.68-.13%201.14h-2v-.5a3.997%203.997%200%20011.17-2.83l1.24-1.26c.46-.44.68-1.1.55-1.8a1.99%201.99%200%2000-1.39-1.53c-1.11-.31-2.14.32-2.47%201.27-.12.37-.43.65-.82.65h-.3C8.4%209%208%208.44%208.16%207.88a4.008%204.008%200%20013.23-2.83c1.52-.24%202.97.55%203.87%201.8%201.18%201.63.83%203.38-.19%204.4z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23help_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tHelpOutline: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22help-outline_svg__a%22%20d%3D%22M12%202C6.48%202%202%206.48%202%2012s4.48%2010%2010%2010%2010-4.48%2010-10S17.52%202%2012%202zm0%2018c-4.41%200-8-3.59-8-8s3.59-8%208-8%208%203.59%208%208-3.59%208-8%208zm-1-4h2v2h-2v-2zm1.61-9.96c-2.06-.3-3.88.97-4.43%202.79-.18.58.26%201.17.87%201.17h.2c.41%200%20.74-.29.88-.67.32-.89%201.27-1.5%202.3-1.28.95.2%201.65%201.13%201.57%202.1-.1%201.34-1.62%201.63-2.45%202.88%200%20.01-.01.01-.01.02-.01.02-.02.03-.03.05-.09.15-.18.32-.25.5-.01.03-.03.05-.04.08-.01.02-.01.04-.02.07-.12.34-.2.75-.2%201.25h2c0-.42.11-.77.28-1.07.02-.03.03-.06.05-.09.08-.14.18-.27.28-.39.01-.01.02-.03.03-.04.1-.12.21-.23.33-.34.96-.91%202.26-1.65%201.99-3.56-.24-1.74-1.61-3.21-3.35-3.47z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23help-outline_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tHome: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22home_svg__a%22%20d%3D%22M9.998%2019.328v-5h4v5c0%20.55.45%201%201%201h3c.55%200%201-.45%201-1v-7h1.7c.46%200%20.68-.57.33-.87l-8.36-7.53c-.38-.34-.96-.34-1.34%200l-8.36%207.53c-.34.3-.13.87.33.87h1.7v7c0%20.55.45%201%201%201h3c.55%200%201-.45%201-1z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23home_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tHomeMunicipal: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20fill%3D%22currentColor%22%20fillRule%3D%22evenodd%22%3E%3Cpath%20d%3D%22M15%2014V8h-2v6h-2V8H9v6H7V8H5v6H3V8H1v6H0v2h16v-2zM15.4%203.1l-7-3c-.3-.1-.5-.1-.8%200l-7%203c-.4.1-.6.5-.6.9v2c0%20.6.4%201%201%201h14c.6%200%201-.4%201-1V4c0-.4-.2-.8-.6-.9zM8%205c-.6%200-1-.4-1-1s.4-1%201-1%201%20.4%201%201-.4%201-1%201z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E',\n\tIllustrationNoNotifications: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%20160%20160%22%3E%3Cg%20fill%3D%22currentColor%22%20clip-path%3D%22url(%23illustration-no-notifications_svg__clip0_411_2)%22%3E%3Cpath%20d%3D%22M80%20160c44.183%200%2080-35.817%2080-80S124.183%200%2080%200%200%2035.817%200%2080s35.817%2080%2080%2080z%22%2F%3E%3Cpath%20d%3D%22M111.4%2088.5c5.9-2%2011.6-7.3%2011.8-9.6.3-3.9-4.3-5.4-13-2.8-.854.253-1.657.567-2.414.922V89.45c1.048-.171%202.241-.484%203.614-.95zM115.4%2074.1c5.9-2%209.6-5.3%209.8-7.6.3-3.9-4.3-5.4-13-2.8a16.327%2016.327%200%2000-4.414%202.044v10.301c2.056-.134%204.687-.953%207.614-1.945zM115.4%2097.9c2.6-2.1%205.5-4.2%203.3-7.5-2-3.1-5.8-2.4-8.3-1.2l-2.614%201.614v13.658l7.614-6.571zM114.9%2060.3c3.6-.9%2011.1-5%2011.1-8.3%200-3.2-8.1-4.3-12.1-2.9l-6.114%201.611v11.447L114.9%2060.3z%22%2F%3E%3Cpath%20d%3D%22M107.786%2050.711v-18.43a2.212%202.212%200%2000-2.206-2.206H61.668a2.212%202.212%200%2000-2.206%202.206v95.241c0%201.213.993%202.206%202.206%202.206h43.913a2.213%202.213%200%20002.206-2.206V50.711h-.001z%22%2F%3E%3Cpath%20d%3D%22M104.7%2026.6H62.6c-3.7%200-6.8%203-6.8%206.8V126c0%201.5.5%202.9%201.3%204%201.2%201.7%203.2%202.8%205.4%202.8h42.1c3.7%200%206.8-3%206.8-6.8l.1-48.5V33.4c0-3.7-3-6.8-6.8-6.8zm2.7%2099.3c-.1%201.4-1.3%202.6-2.6%202.6H62.6c-1.4%200-2.6-1.1-2.6-2.6V33.3c0-1.4%201.1-2.6%202.6-2.6h7.8V32.4c0%201.4%201.1%202.5%202.5%202.5h20c1.4%200%202.5-1.1%202.5-2.5V30.7h9.4c1.4%200%202.6%201.1%202.6%202.6v92.6z%22%2F%3E%3Cpath%20d%3D%22M91.1%20117.7H76.2c-1%200-1.7.8-1.7%201.7%200%20.9.8%201.7%201.7%201.7h14.9c1%200%201.7-.8%201.7-1.7.1-.9-.7-1.7-1.7-1.7zM51.7%20134.9c-.6.4-1.2.8-1.8%201.1.6-.3%201.2-.7%201.8-1.1z%22%2F%3E%3Cpath%20d%3D%22M51%20135.3c-.4.2-.7.4-1.1.7.6-.3%201.2-.7%201.8-1.1-.2.1-.4.3-.7.4z%22%2F%3E%3Cpath%20d%3D%22M51%20135.3c-.4.2-.7.4-1.1.7.6-.3%201.2-.7%201.8-1.1-.2.1-.4.3-.7.4z%22%20opacity%3D%22.5%22%2F%3E%3Cpath%20d%3D%22M65.9%2091.7c-1%200-1.7.8-1.7%201.7%200%201%20.8%201.7%201.7%201.7h36c1%200%201.7-.8%201.7-1.7%200-1-.8-1.7-1.7-1.7h-36zM79.9%2072.37l-.8-.5-14.202-8.95V78.2c0%20.898.835%201.602%201.902%201.602H93c1.066%200%201.902-.704%201.902-1.602V62.823L80.7%2071.87l-.8.5z%22%2F%3E%3Cpath%20d%3D%22M94.859%2061.85c-.186-.762-.961-1.352-1.859-1.352H66.8c-.998%200-1.784.619-1.882%201.435L79.9%2071.37l14.959-9.52z%22%2F%3E%3Cpath%20d%3D%22M93%2059.702H66.8c-1.513%200-2.698%201.053-2.698%202.398v16.1c0%201.345%201.185%202.398%202.698%202.398H93c1.513%200%202.697-1.053%202.697-2.398v-16c0-1.377-1.21-2.498-2.697-2.498zm2.3%202.498v.37l-.398.253V78.2c0%20.898-.836%201.602-1.902%201.602H66.8c-1.066%200-1.902-.704-1.902-1.602V62.92l-.398-.25v-1l.417.263c.098-.816.884-1.435%201.882-1.435H93c.898%200%201.673.591%201.859%201.352l.441-.28v.63z%22%2F%3E%3Cpath%20d%3D%22M79.9%2071.37l-14.983-9.437-.417-.263v1l.398.25L79.1%2071.87l.8.5.8-.5%2014.202-9.047.398-.253v-1l-.441.28L79.9%2071.37zM65.9%2099c-1%200-1.7.8-1.7%201.7%200%201%20.8%201.7%201.7%201.7h36c1%200%201.7-.8%201.7-1.7%200-1-.8-1.7-1.7-1.7h-36zM65.6%20106.4c-1%200-1.7.8-1.7%201.7%200%201%20.8%201.7%201.7%201.7h36c1%200%201.7-.8%201.7-1.7%200-1-.8-1.7-1.7-1.7h-36z%22%2F%3E%3Cpath%20d%3D%22M100.1%2071H88.4c-1.7%200-3.2-1.4-3.2-3.2V57.4c0-1.7%201.4-3.2%203.2-3.2h11.7c1.7%200%203.2%201.4%203.2%203.2v10.4c0%201.8-1.4%203.2-3.2%203.2z%22%2F%3E%3Cpath%20d%3D%22M89.575%2062.692v-.03c0-3.062%201.867-5.54%204.684-5.54%202.801%200%204.652%202.448%204.652%205.51v.03c0%203.061-1.867%205.54-4.684%205.54-2.815%200-4.652-2.449-4.652-5.51zm7.393%200v-.03c0-2.112-1.087-3.842-2.74-3.842-1.652%200-2.709%201.684-2.709%203.812v.03c0%202.112%201.071%203.841%202.74%203.841%201.668%200%202.709-1.714%202.709-3.81zM66.751%2042.396l.582%201.343H66.17l.581-1.343zm-.255-.802l-1.583%203.624h.618l.409-.95h1.623l.414.95h.623l-1.582-3.624h-.522zM70.97%2045.218h-.562v-.265c-.168.214-.449.316-.705.316-.602%200-.99-.419-.99-1.077v-1.526h.562V44.1c0%20.403.199.658.551.658.261%200%20.475-.163.582-.403v-1.69h.562v2.553zM75.684%2042.666h.562v.342c.097-.194.357-.368.643-.368.107%200%20.199.015.26.03l-.082.547a.66.66%200%2000-.22-.031.66.66%200%2000-.602.393v1.639h-.562v-2.552h.001zM78.444%2045.27c-.756%200-1.271-.608-1.271-1.328%200-.72.515-1.327%201.271-1.327.301%200%20.567.102.745.286v-.235h.561v2.552h-.561v-.24c-.178.19-.444.291-.745.291zm.066-.512a.772.772%200%2000.679-.357v-.924a.779.779%200%2000-.679-.352c-.449%200-.761.368-.761.817.001.45.312.816.761.816zM80.259%2041.7l.561-.549v4.067h-.561V41.7zM81.609%2042.283a.376.376%200%2011.006-.752.376.376%200%2001-.006.752zm-.281.382h.562v2.552h-.562v-2.552zM83.573%2045.27c-.756%200-1.271-.608-1.271-1.328%200-.72.516-1.327%201.271-1.327.301%200%20.567.102.745.286v-.235h.562v2.552h-.562v-.24c-.178.19-.444.291-.745.291zm.066-.512a.772.772%200%2000.679-.357v-.924a.779.779%200%2000-.679-.352c-.449%200-.761.368-.761.817.001.45.312.816.761.816zM85.388%2042.665h.562v.271c.173-.214.449-.322.75-.322.613%200%201.001.42%201.001%201.077v1.526h-.561v-1.435c0-.403-.204-.658-.562-.658a.67.67%200%2000-.628.403v1.69h-.562v-2.552zM88.7%2044.253c.189.291.49.465.842.465.342%200%20.587-.179.587-.449%200-.255-.168-.424-.516-.55l-.398-.144c-.572-.209-.853-.526-.853-1.02%200-.634.5-1.022%201.174-1.022.449%200%20.832.18%201.097.495l-.414.403c-.179-.214-.403-.337-.684-.337-.306%200-.572.158-.572.42%200%20.264.173.382.551.52l.368.138c.531.2.853.521.853%201.062-.005.633-.5%201.047-1.21%201.047-.587%200-1.077-.265-1.297-.654l.472-.374zM93.346%2045.218h-.562v-.265c-.168.214-.449.316-.704.316-.602%200-.99-.419-.99-1.077v-1.526h.561V44.1c0%20.403.199.658.551.658.26%200%20.475-.163.582-.403v-1.69h.562v2.553zM93.819%2042.665h.562v.235c.179-.184.444-.286.745-.286.761%200%201.276.607%201.276%201.327s-.516%201.327-1.276%201.327c-.301%200-.567-.102-.745-.29v1.362h-.562v-3.675zm1.246%202.093c.451%200%20.764-.37.761-.823-.003-.512-.48-.905-.978-.786a.76.76%200%2000-.466.328v.924a.77.77%200%2000.683.357zM99.602%2042.666h.562v.342c.097-.194.357-.368.643-.368.107%200%20.199.015.261.03l-.082.547a.657.657%200%2000-.219-.031.66.66%200%2000-.602.393v1.639h-.562v-2.552h-.001zM72.512%2043.702l-.26-.077c-.25-.07-.306-.179-.306-.3%200-.154.173-.24.342-.24a.58.58%200%2001.485.26l.354-.347c-.182-.249-.469-.384-.829-.384-.51%200-.909.276-.914.73-.005.378.225.66.669.781l.225.061c.306.092.393.18.393.327%200%20.18-.168.271-.368.271-.26%200-.51-.128-.612-.352l-.374.365c.196.316.563.472.987.472.526%200%20.924-.3.924-.79-.001-.42-.266-.644-.716-.777zM75.216%2044.7a.846.846%200%2001-.363.064c-.24%200-.398-.118-.398-.434v-1.164h.761v-.5h-.761V41.7h-.561v.967h-.5v.5h.5v1.256c0%20.577.393.847.888.847.165%200%20.316-.029.434-.064V44.7zM98.659%2044.454c-.14.18-.362.304-.673.304-.424%200-.761-.276-.786-.694h2.006c.005-.082.005-.128.005-.184%200-.822-.562-1.266-1.23-1.266-.785%200-1.345.59-1.332%201.353.013.777.689%201.355%201.465%201.297.429-.032.759-.219.974-.505l-.429-.305zm-.699-1.365c.327%200%20.623.2.684.567h-1.419c.077-.378.409-.567.735-.567zM85.482%2039.75c-.117.01-.128.176-.014.202l2.554.59c.2-.479.205-.9-.137-1.004l-2.403.211z%22%2F%3E%3Cpath%20d%3D%22M90.133%2039.342c.096-.009.15.11.081.177l-2.745%202.678c-.082.08-.214-.013-.165-.117l.717-1.538c.2-.478.205-.899-.137-1.003l2.249-.197zM50%20135.9c.4-.2.7-.4%201.1-.7.2-.2.5-.3.7-.5%2014.5-9.7%2014.5-24.9%207.4-39.6-1.4-2.7-2.5-5.3-3.3-7.6V67.3c.8-1.3%201.7-2.4%202.5-3.6%201.9-2.5%204-4.9%204.9-7.9%201-3%20.6-6.6-1.8-8.7-.6-.5-1.3-.9-2-.8-.8.1-1.4.8-2%201.4-3.7%204.7-7.5%209.3-11.3%2013.8-1.2%201.4-2.4%202.9-3.3%204.6-.8%201.5-1.2%203.1-1.7%204.8-1.7%206.8-2.6%2013.7-4.3%2020.5-1.4%205.7-2.7%2012.1-7.4%2015.9-5%204-10.8%207.2-16.6%2010-.978.46-1.974.884-2.964%201.321A80.372%2080.372%200%200032.94%20144.68a50.779%2050.779%200%20012.959-1.58c4.701-2.3%209.601-4.4%2014.101-7.2z%22%2F%3E%3Cpath%20d%3D%22M54.7%2069.9s-3.4%204.2%201.2%2017.6V67.3c0%20.1-.1.1-.1.2-.4.6-1.2%201.7-1.1%202.4z%22%20opacity%3D%22.5%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3ClinearGradient%20id%3D%22illustration-no-notifications_svg__paint0_linear_411_2%22%20x1%3D%2286.296%22%20x2%3D%2287.527%22%20y1%3D%2240.663%22%20y2%3D%2239.196%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%3Cstop%20offset%3D%22.116%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.263%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.457%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.65%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.775%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22currentColor%22%2F%3E%3C%2FlinearGradient%3E%3ClinearGradient%20id%3D%22illustration-no-notifications_svg__paint1_linear_411_2%22%20x1%3D%2287.421%22%20x2%3D%2290.119%22%20y1%3D%2240.666%22%20y2%3D%2240.902%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%3Cstop%20offset%3D%22.116%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.236%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.393%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.55%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.653%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.86%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.996%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22currentColor%22%2F%3E%3C%2FlinearGradient%3E%3CclipPath%20id%3D%22illustration-no-notifications_svg__clip0_411_2%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M0%200h160v160H0z%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3C%2Fsvg%3E',\n\tInfo: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22info_svg__a%22%20d%3D%22M12%202C6.48%202%202%206.48%202%2012s4.48%2010%2010%2010%2010-4.48%2010-10S17.52%202%2012%202zm0%2015c-.55%200-1-.45-1-1v-4c0-.55.45-1%201-1s1%20.45%201%201v4c0%20.55-.45%201-1%201zm1-8h-2V7h2v2z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23info_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tLadyDesk: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%20160%20160%22%3E%3Cdefs%3E%3Cpath%20id%3D%22lady-desk_svg__a%22%20d%3D%22M.096.064H160V160H.096z%22%2F%3E%3Cpath%20id%3D%22lady-desk_svg__c%22%20d%3D%22M160%2080c0%2044.182-35.818%2080-80%2080C37.152%20160%202.172%20126.314.097%2083.98v-7.96C2.12%2034.73%2035.445%201.668%2076.842.06h6.316%22%2F%3E%3C%2Fdefs%3E%3Cg%20fill%3D%22none%22%20fillRule%3D%22evenodd%22%3E%3Cg%3E%3Cmask%20id%3D%22lady-desk_svg__b%22%20fill%3D%22currentColor%22%3E%3Cuse%20xlink%3Ahref%3D%22%23lady-desk_svg__a%22%2F%3E%3C%2Fmask%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M160%2080c0%2044.182-35.818%2080-80%2080S0%20124.182%200%2080%2035.818%200%2080%200s80%2035.818%2080%2080%22%20mask%3D%22url(%23lady-desk_svg__b)%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M160%2080c0%2044.182-35.818%2080-80%2080S0%20124.182%200%2080%2035.818%200%2080%200s80%2035.818%2080%2080%22%20mask%3D%22url(%23lady-desk_svg__b)%22%2F%3E%3C%2Fg%3E%3Cg%3E%3Cmask%20id%3D%22lady-desk_svg__d%22%20fill%3D%22currentColor%22%3E%3Cuse%20xlink%3Ahref%3D%22%23lady-desk_svg__c%22%2F%3E%3C%2Fmask%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M95.326%2034.72c.727%205.392-3.2%2010.371-8.766%2011.12-5.568.749-10.67-3.014-11.395-8.406-.727-5.394%203.2-10.372%208.766-11.122%205.568-.749%2010.67%203.016%2011.395%208.408%22%20mask%3D%22url(%23lady-desk_svg__d)%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M97.914%2040.478c.712%205.28-4.005%2010.274-10.53%2011.152-6.526.879-12.392-2.69-13.104-7.972-.71-5.282%204.005-10.274%2010.531-11.152%206.525-.879%2012.392%202.69%2013.103%207.972%22%20mask%3D%22url(%23lady-desk_svg__d)%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M106.837%2051.198c1.462%2010.874-6.043%2020.86-16.765%2022.303-10.723%201.443-20.603-6.203-22.066-17.079-1.464-10.875%206.044-20.86%2016.765-22.304%2010.725-1.441%2020.602%206.205%2022.066%2017.08M89.67%2078.26c-17.144%200-23.598%206-23.598%206l9.142%2050.4h28.914l9.142-50.4s-6.454-6-23.6-6%22%20mask%3D%22url(%23lady-desk_svg__d)%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M82.875%2078l-.38-16.504%2013.844-.322.383%2016.482L82.875%2078%22%20mask%3D%22url(%23lady-desk_svg__d)%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M96.565%2070.86l-.226-9.686-13.747.319-.098-6.482%2014.07-1.736v17.586%22%20mask%3D%22url(%23lady-desk_svg__d)%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M88.053%2074.128c-1.824%200-3.599-.262-5.283-.749l-.178-11.886%2013.747-.319.226%209.687v1.27a19.063%2019.063%200%2001-8.512%201.997%22%20mask%3D%22url(%23lady-desk_svg__d)%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M68.627%2056.309c-1.393-10.355%205.919-19.885%2016.33-21.285%2010.411-1.402%2019.98%205.856%2021.374%2016.211%201.394%2010.354-5.917%2019.885-16.33%2021.285-10.409%201.402-19.98-5.856-21.374-16.211%22%20mask%3D%22url(%23lady-desk_svg__d)%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M94.642%2056.786a1.02%201.02%200%2001-.879%201.144%201.019%201.019%200%2001-1.149-.872%201.02%201.02%200%2001.877-1.144%201.021%201.021%200%20011.15.872M80.794%2058.786c.075.556.59.947%201.15.872a1.02%201.02%200%2000.877-1.144%201.021%201.021%200%2000-1.149-.872c-.56.075-.952.588-.878%201.144M106.79%20102.306l10.904%2017.723%209.408-.54-5.488-15.663-14.824-1.52M89.997%20126.853l.286-4.322-20.79-5.939-7.643-.168c-.532-.011-.916-.186-1.002.34-1.227%207.497%203.048%209.111%203.875%209.402l25.274.687%22%20mask%3D%22url(%23lady-desk_svg__d)%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M101.088%20125.282s-1.475%201.155-4.813%201.79c-3.337.635-6.987-.354-6.987-.354l-4.46-3.273%204.743-1.048%2010.01-.296c.371-.011.737.073%201.064.246l4.957%202.623c.363.193.43.627.316%201.054a.901.901%200%2001-1.236.595l-3.594-1.337M114.083%20114.883l10.786-1.77-7.938-23.055-14.4%205.83%2011.552%2018.995M73.877%20101.322l-4.3%2020.176-8.884-2.215%201.393-19.665%2011.79%201.704%22%20mask%3D%22url(%23lady-desk_svg__d)%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M72.54%20114.429l-11.48-.31%201.607-23.91%2014.103%203.973-4.23%2020.247M117%2091.157a8.475%208.475%200%2011-16.95-.003%208.475%208.475%200%200116.95.003%22%20mask%3D%22url(%23lady-desk_svg__d)%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M79.63%2091.122a8.475%208.475%200%2011-16.95%200%208.475%208.475%200%200116.95%200M80.915%2079.02H98.51v-4.492H80.915zM76.832%2045.014s.592%209.164%2018.73%206.541c0%200%206.601-.203%205.323%204.959-1.024%204.13-2.418%206.34%201.069%208.712%202.192%201.49-1.541%205.894-1.541%205.894s7.333-3.632%205.534-7.691c-.808-1.826-.038-3.63.32-4.602%201.34-3.624%202.288-13.414-11.128-18.565-13.416-5.152-17.942-.697-18.307%204.752%22%20mask%3D%22url(%23lady-desk_svg__d)%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M76.45%2037.926s8.192-6.974%2019.72-1.563c0%200%2016.787%208.091%208.561%2027.229l-1.472-.44-1.622-9.029-1.387-5.121-6.71-2.117-12.358-3.555-4.35%201.684-.382-7.088%22%20mask%3D%22url(%23lady-desk_svg__d)%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M75.112%2069.01a32.88%2032.88%200%2001-1.74-5.661c-.329-1.568-.678-3.474-.074-5.02.137-.355.336-.686.624-.939%202.617-2.305%205.75-4.521%203.665-11.014-2.086-6.491%205.122-9.384%205.122-9.384l-1.688-.21c-1.226-.152-2.251-.424-3.346.306-.925.616-1.851%201.22-2.728%201.906-1.813%201.422-3.433%203.099-4.635%205.073a17.47%2017.47%200%2000-2.5%208.064%2020.771%2020.771%200%2000.255%204.663c.336%201.984%201.227%204.676%202.208%206.412%201.357%202.399%202.981%203.765%204.837%205.804M107.488%20103.16l-2.398-3.402-1.098-1.275a.7.7%200%2000-.989-.08c-.142.123-.281.31-.397.59-.41.986%201.021%202.325%201.157%202.49a83.558%2083.558%200%20011.007%201.346l1.134%202.705c.035.128%202.315%201.045%202.322-.196.004-1.24-.738-2.178-.738-2.178%22%20mask%3D%22url(%23lady-desk_svg__d)%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M85.203%20116.93h21v-30h-21zM102.117%20123.171l1.07%202.2c.17.167.367.3.586.386.472.185%203.163.737%203.822.87a.493.493%200%2000.56-.317.745.745%200%2000-.43-.947l-5.608-2.192%22%20mask%3D%22url(%23lady-desk_svg__d)%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M105.285%20126.138l-5.507-.472-2.018-1.882%207.525%202.354%22%20mask%3D%22url(%23lady-desk_svg__d)%22%2F%3E%3Cpath%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221.067%22%20d%3D%22M78.085%2055.011s1.342-1.878%203.862-1.784m13.808.514s-2.03-1.103-4.256.086%22%20mask%3D%22url(%23lady-desk_svg__d)%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M20.632%20118.238h48.282v-9.358H20.632zM16.445%20108.834h48.281v-7.548H16.445zM16.445%20125.786h48.281v-7.548H16.445z%22%20mask%3D%22url(%23lady-desk_svg__d)%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M16.445%20125.786h26.433v-7.548H16.445zM16.445%20101.285h48.281V96.75H16.445z%22%20mask%3D%22url(%23lady-desk_svg__d)%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M48.78%20101.285h15.946V96.75H48.781zM7.994%20160h149.924v-34.18H7.994z%22%20mask%3D%22url(%23lady-desk_svg__d)%22%2F%3E%3Cpath%20stroke%3D%22currentColor%22%20stroke-width%3D%221.067%22%20d%3D%22M33.995%2079.675V64.037%22%20mask%3D%22url(%23lady-desk_svg__d)%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M37.349%2058.923c3.117-2.491%205.361.104%205.361.104s2.04%202.762-1.075%205.255c-3.117%202.492-7.939%201.956-7.939%201.956s.536-4.822%203.653-7.315%22%20mask%3D%22url(%23lady-desk_svg__d)%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M25.45%2059.33s2.153-2.674%205.355-.292c2.05%201.525%203.075%204.039%203.549%205.653.267.907.356%201.53.356%201.53s-4.8.704-8.001-1.679c-3.202-2.384-1.26-5.212-1.26-5.212M41.338%2096.794H26.65l-1.992-16.39h18.674l-1.995%2016.39%22%20mask%3D%22url(%23lady-desk_svg__d)%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M24.826%2081.78l.308%202.537h17.722l.309-2.538h-18.34M23.304%2080.987c0%20.437.354.79.792.79h19.798a.79.79%200%2000.792-.79v-2.624a.792.792%200%2000-.792-.792H24.096a.792.792%200%2000-.792.792v2.624%22%20mask%3D%22url(%23lady-desk_svg__d)%22%2F%3E%3C%2Fg%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M103.389%20109.248c-2.162-.907-3.403-3.032-2.773-4.744.63-1.712%202.894-2.365%205.056-1.458%202.162.908%203.403%203.032%202.771%204.746-.629%201.712-2.893%202.365-5.054%201.456M99.944%20108.87l-.294.173-3.386-1.051c.093-.168.218-.309.363-.414l3.155.979.162.313M99.496%20106.118l.051.24-.294.172-5.261-1.63c.122-.154.277-.274.446-.351l.056-.023%204.893%201.519.109.073M94.32%20101.888l.12.037%205.602%201.737.161.314-.03.066-.264.107-6.466-2.007c.245-.201.559-.299.877-.254%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M100.203%20103.976l-.161-.314-5.602-1.737-.006-.016a1.338%201.338%200%2001-.12-1.005c.185-.67.844-1.058%201.47-.864l10.288%203.194c.627.193.986.896.8%201.568-.098.35-.322.624-.606.776l3.53%201.096c.628.195.985.896.8%201.568-.113.414-.407.72-.762.848a1.1%201.1%200%2001-.708.016l-.593-.184a1.34%201.34%200%2001-.042.448c-.187.67-.45.32-1.075.126l-1.21.629c-.752%201.257-2.21%201.897-3.614%201.462l-.109-.041-.107-.02-5.426-1.684c-.627-.194-.984-.896-.8-1.568l.114-.282%203.386%201.051.294-.173-.162-.313-3.155-.98.002-.001-2.072-.643c-.627-.194-.987-.896-.8-1.568.048-.178.13-.335.235-.466l5.26%201.63.295-.17-.051-.24-.109-.074-4.893-1.519-.056.023-.608-.189-.267-.123c-.457-.285-.691-.877-.534-1.445.073-.269.222-.491.414-.65l6.466%202.007.264-.107.03-.066%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M119.392%20112.114l-15.555-9.437-2.773%204.056%2017.9%2018.896s4.26%202.531%207.506-2.928c.786-1.323.83-2.962.186-4.357-1.02-2.203-1.885-2.402-3.794-3.9-1.904-1.494-2.816-1.934-3.47-2.33M92.372%2064.021s-2.136%204.37-5.898.609c0%200%202.875.382%205.898-.609z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E',\n\tLaptopLocked: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%20160%20160%22%3E%3Cg%20clip-path%3D%22url(%23laptop-locked_svg__clip0_411_287)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M80%20160.003c44.186%200%2080-35.817%2080-80C160%2035.817%20124.186%200%2080%200S0%2035.817%200%2080.003c0%2044.183%2035.814%2080%2080%2080z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M89.035%2033.263c0%20.864-.7%201.564-1.564%201.564H73.343c-.963%200-1.743-.78-1.743-1.743v-1.98H45.383V128.9h69.869V31.103H89.035v2.16z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M116.841%2026.003H44.447a3.84%203.84%200%2000-3.84%203.84v100.32a3.84%203.84%200%20003.84%203.84h72.394a3.84%203.84%200%20003.84-3.84V29.843a3.84%203.84%200%2000-3.84-3.84zM115.578%20128.9H45.709V31.105h26.217v1.98c0%20.963.78%201.743%201.743%201.743h14.128c.864%200%201.564-.7%201.564-1.564v-2.16h26.217V128.9z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M66.265%2039.91l.496%201.144h-.991l.495-1.144zm-.217-.681L64.7%2042.314h.526l.348-.81h1.382l.352.81h.53l-1.348-3.087h-.442zM69.858%2042.315h-.478v-.226c-.143.183-.382.269-.6.269-.513%200-.843-.356-.843-.917v-1.3h.478v1.222c0%20.343.17.56.469.56.222%200%20.404-.138.496-.342v-1.44h.478v2.174zM73.873%2040.142h.478v.291c.083-.165.304-.313.548-.313.091%200%20.17.013.222.026l-.069.465a.564.564%200%2000-.187-.026.563.563%200%2000-.513.335v1.396h-.478v-2.174h-.001zM76.223%2042.359c-.643%200-1.082-.517-1.082-1.13%200-.613.439-1.13%201.082-1.13.257%200%20.483.087.635.243v-.2h.478v2.174h-.478v-.204c-.152.16-.378.247-.635.247zm.057-.435c.278%200%20.465-.13.578-.304v-.787a.662.662%200%2000-.578-.3c-.382%200-.648.313-.648.696%200%20.382.265.695.648.695zM77.769%2039.318l.478-.466v3.463h-.478v-2.997zM78.918%2039.816a.32.32%200%2011.005-.64.32.32%200%2001-.005.64zm-.239.326h.478v2.174h-.478v-2.174zM80.591%2042.359c-.643%200-1.083-.517-1.083-1.13%200-.613.439-1.13%201.083-1.13.257%200%20.483.087.635.243v-.2h.478v2.174h-.478v-.204c-.152.16-.378.247-.635.247zm.057-.435c.278%200%20.465-.13.578-.304v-.787a.662.662%200%2000-.578-.3c-.383%200-.648.313-.648.696%200%20.382.265.695.648.695zM82.137%2040.142h.478v.23c.148-.183.382-.274.639-.274.522%200%20.852.356.852.917v1.3h-.478v-1.222c0-.343-.174-.561-.478-.561a.57.57%200%2000-.535.343v1.439h-.478v-2.172zM84.958%2041.494a.84.84%200%2000.717.396c.291%200%20.5-.152.5-.383%200-.217-.143-.361-.439-.47l-.339-.121c-.487-.178-.726-.448-.726-.87%200-.538.426-.87%201-.87.382%200%20.709.153.935.423l-.352.343a.734.734%200%2000-.582-.287c-.261%200-.487.135-.487.356%200%20.226.148.326.469.443l.313.117c.452.17.726.443.726.904-.004.539-.426.89-1.03.89-.5%200-.917-.225-1.104-.556l.399-.315zM88.915%2042.315h-.478v-.226c-.143.183-.382.269-.6.269-.513%200-.843-.356-.843-.917v-1.3h.478v1.222c0%20.343.17.56.47.56.222%200%20.404-.138.496-.342v-1.44h.478v2.174h-.001zM89.317%2040.142h.478v.2c.152-.157.378-.243.635-.243.648%200%201.087.517%201.087%201.13%200%20.613-.439%201.13-1.087%201.13-.257%200-.483-.087-.635-.248v1.16h-.478v-3.13zm1.061%201.782c.384%200%20.65-.316.648-.701a.687.687%200%2000-.833-.67.647.647%200%2000-.397.279v.787a.656.656%200%2000.582.305zM94.242%2040.142h.478v.291c.083-.165.304-.313.548-.313.091%200%20.17.013.222.026l-.07.465a.56.56%200%2000-.187-.026.563.563%200%2000-.513.335v1.396h-.478v-2.174zM71.172%2041.024l-.222-.065c-.213-.061-.261-.152-.261-.257%200-.13.148-.204.291-.204.178%200%20.317.087.413.222l.302-.294c-.155-.212-.4-.327-.706-.327-.435%200-.774.235-.778.622-.004.322.191.56.57.665l.191.052c.261.078.335.152.335.278%200%20.152-.143.23-.313.23-.222%200-.435-.11-.522-.3l-.319.31c.167.27.479.403.84.403.448%200%20.787-.257.787-.674%200-.356-.226-.548-.608-.661zM73.474%2041.874a.724.724%200%2001-.309.055c-.204%200-.339-.1-.339-.37v-.99h.648v-.427h-.648v-.823h-.478v.823h-.426v.426h.426v1.07c0%20.491.335.722.756.722.141%200%20.269-.025.37-.055v-.43zM93.439%2041.665c-.119.154-.308.259-.573.259-.361%200-.648-.235-.669-.591h1.709c.004-.07.004-.11.004-.156%200-.7-.478-1.078-1.048-1.078-.668%200-1.145.502-1.135%201.152.011.662.587%201.154%201.248%201.104.365-.027.647-.187.829-.43l-.365-.26zm-.595-1.163c.278%200%20.53.17.583.483h-1.209c.065-.322.348-.483.626-.483zM82.217%2037.657c-.1.01-.109.15-.012.174l2.175.502c.17-.407.175-.767-.117-.855l-2.046.18z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M86.178%2037.31c.082-.006.128.094.069.15l-2.338%202.282c-.07.068-.182-.011-.141-.1l.611-1.31c.17-.407.175-.766-.117-.854l1.916-.167zM88.003%20121.459h-15.03a1.772%201.772%200%2001-1.766-1.766c0-.971.795-1.766%201.766-1.766h15.03c.971%200%201.766.795%201.766%201.766a1.772%201.772%200%2001-1.766%201.766z%22%2F%3E%3Cmask%20id%3D%22laptop-locked_svg__a%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%2240%22%20height%3D%2241%22%20x%3D%2260%22%20y%3D%2251%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M100%2051.203H60v40h40v-40z%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url(%23laptop-locked_svg__a)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M80%2091.204c11.046%200%2020-8.954%2020-20s-8.954-20-20-20-20%208.953-20%2020c0%2011.045%208.954%2020%2020%2020z%22%2F%3E%3C%2Fg%3E%3Cmask%20id%3D%22laptop-locked_svg__b%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%2240%22%20height%3D%2241%22%20x%3D%2260%22%20y%3D%2251%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M100%2051.203H60v40h40v-40z%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url(%23laptop-locked_svg__b)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M76.121%2070.896h-2.195v-4.83a6.127%206.127%200%20016.119-6.12%206.127%206.127%200%20016.119%206.12v4.62H83.97v-4.62a3.93%203.93%200%2000-3.925-3.926%203.93%203.93%200%2000-3.925%203.925v4.831h.001z%22%2F%3E%3C%2Fg%3E%3Cmask%20id%3D%22laptop-locked_svg__c%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%2240%22%20height%3D%2241%22%20x%3D%2260%22%20y%3D%2251%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M100%2051.203H60v40h40v-40z%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url(%23laptop-locked_svg__c)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M87.632%2078.566c0%20.973-.795%201.77-1.77%201.77H74.138a1.775%201.775%200%2001-1.769-1.77v-8.433c0-.973.796-1.769%201.769-1.769h11.724c.975%200%201.77.796%201.77%201.77v8.432z%22%2F%3E%3C%2Fg%3E%3Cmask%20id%3D%22laptop-locked_svg__d%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%2240%22%20height%3D%2241%22%20x%3D%2260%22%20y%3D%2251%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M100%2051.203H60v40h40v-40z%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url(%23laptop-locked_svg__d)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M79.189%2076.328v-3.956a.81.81%200%20111.622%200v3.956a.81.81%200%2011-1.622%200z%22%2F%3E%3C%2Fg%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M60.92%20106.273c-.09.63.33%201.11.93%201.11.6%200%201.02-.51.93-1.14l-.3-2.67%202.25%201.65c.27.18.48.3.72.3.54%200%201.02-.45%201.02-.99%200-.48-.33-.81-.69-.96l-2.64-1.14%202.64-1.17c.36-.15.69-.45.69-.93%200-.54-.45-.99-.99-.99-.27%200-.48.09-.75.3l-2.25%201.65.3-2.7c.09-.63-.33-1.11-.93-1.11-.6%200-1.02.51-.93%201.14l.3%202.67-2.25-1.65c-.27-.21-.45-.3-.72-.3-.54%200-1.02.45-1.02.99%200%20.45.33.78.69.93l2.64%201.17-2.64%201.14c-.33.15-.69.48-.69.93%200%20.54.45%201.02.99%201.02.27%200%20.48-.12.75-.3l2.25-1.65-.3%202.7zm12.891%200c-.09.63.33%201.11.93%201.11.6%200%201.02-.51.93-1.14l-.3-2.67%202.25%201.65c.27.18.48.3.72.3.54%200%201.02-.45%201.02-.99%200-.48-.33-.81-.69-.96l-2.64-1.14%202.64-1.17c.36-.15.69-.45.69-.93%200-.54-.45-.99-.99-.99-.27%200-.48.09-.75.3l-2.25%201.65.3-2.7c.09-.63-.33-1.11-.93-1.11-.6%200-1.02.51-.93%201.14l.3%202.67-2.25-1.65c-.27-.21-.45-.3-.72-.3-.54%200-1.02.45-1.02.99%200%20.45.33.78.69.93l2.64%201.17-2.64%201.14c-.33.15-.69.48-.69.93%200%20.54.45%201.02.99%201.02.27%200%20.48-.12.75-.3l2.25-1.65-.3%202.7zm12.89%200c-.09.63.33%201.11.93%201.11.6%200%201.02-.51.93-1.14l-.3-2.67%202.25%201.65c.27.18.48.3.72.3.54%200%201.02-.45%201.02-.99%200-.48-.33-.81-.69-.96l-2.64-1.14%202.64-1.17c.36-.15.69-.45.69-.93%200-.54-.45-.99-.99-.99-.27%200-.48.09-.75.3l-2.25%201.65.3-2.7c.09-.63-.33-1.11-.93-1.11-.6%200-1.02.51-.93%201.14l.3%202.67-2.25-1.65c-.27-.21-.45-.3-.72-.3-.54%200-1.02.45-1.02.99%200%20.45.33.78.69.93l2.64%201.17-2.64%201.14c-.33.15-.69.48-.69.93%200%20.54.45%201.02.99%201.02.27%200%20.48-.12.75-.3l2.25-1.65-.3%202.7zm12.891%200c-.09.63.33%201.11.93%201.11.6%200%201.02-.51.93-1.14l-.3-2.67%202.25%201.65c.27.18.48.3.72.3.54%200%201.02-.45%201.02-.99%200-.48-.33-.81-.69-.96l-2.64-1.14%202.64-1.17c.36-.15.69-.45.69-.93%200-.54-.45-.99-.99-.99-.27%200-.48.09-.75.3l-2.25%201.65.3-2.7c.09-.63-.33-1.11-.93-1.11-.6%200-1.02.51-.93%201.14l.3%202.67-2.25-1.65c-.27-.21-.45-.3-.72-.3-.54%200-1.02.45-1.02.99%200%20.45.33.78.69.93l2.64%201.17-2.64%201.14c-.33.15-.69.48-.69.93%200%20.54.45%201.02.99%201.02.27%200%20.48-.12.75-.3l2.25-1.65-.3%202.7z%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3ClinearGradient%20id%3D%22laptop-locked_svg__paint0_linear_411_287%22%20x1%3D%2282.911%22%20x2%3D%2283.959%22%20y1%3D%2238.436%22%20y2%3D%2237.187%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%3Cstop%20offset%3D%22.116%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.263%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.457%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.65%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.775%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22currentColor%22%2F%3E%3C%2FlinearGradient%3E%3ClinearGradient%20id%3D%22laptop-locked_svg__paint1_linear_411_287%22%20x1%3D%2283.868%22%20x2%3D%2286.166%22%20y1%3D%2238.438%22%20y2%3D%2238.639%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%3Cstop%20offset%3D%22.116%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.236%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.393%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.55%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.653%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.86%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.996%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22currentColor%22%2F%3E%3C%2FlinearGradient%3E%3CclipPath%20id%3D%22laptop-locked_svg__clip0_411_287%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M0%200h160v160H0z%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3C%2Fsvg%3E',\n\tLaptopTick: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%20160%20160%22%3E%3Cg%20clip-path%3D%22url(%23laptop-tick_svg__clip0_411_152)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M80%20160c44.183%200%2080-35.817%2080-80S124.183%200%2080%200%200%2035.817%200%2080s35.817%2080%2080%2080z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M50.466%2024.668a2.938%202.938%200%2000-1.345%202.467v49.033c.308.373.601.797.867%201.258V26.268a2.94%202.94%200%2001.478-1.6zM77.936%20106.141c-.18.266-.389.553-.637.867h30.281a2.938%202.938%200%20002.467-1.345c-.461.3-1.009.478-1.6.478H77.936zM87.375%2028.891a1.2%201.2%200%2001-1.199%201.2H75.342a1.336%201.336%200%2001-1.336-1.337v-1.518H53.901v74.992h53.577V27.236H87.375v1.655z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M65.783%2034.934l.525%201.21h-1.049l.524-1.21zm-.23-.723l-1.426%203.267h.557l.368-.856h1.463l.373.856h.561l-1.426-3.267h-.47z%22%2F%3E%3Cmask%20id%3D%22laptop-tick_svg__a%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%2233%22%20height%3D%227%22%20x%3D%2264%22%20y%3D%2232%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M96.714%2032.205H64.127v6.286h32.587v-6.286z%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url(%23laptop-tick_svg__a)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M69.585%2037.478h-.506v-.24c-.152.194-.405.286-.635.286-.543%200-.893-.377-.893-.971v-1.376h.506v1.293c0%20.363.179.593.497.593.235%200%20.428-.147.525-.363v-1.523h.506v2.3z%22%2F%3E%3C%2Fg%3E%3Cmask%20id%3D%22laptop-tick_svg__b%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%2233%22%20height%3D%227%22%20x%3D%2264%22%20y%3D%2232%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M96.714%2032.205H64.127v6.286h32.587v-6.286z%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url(%23laptop-tick_svg__b)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M73.834%2035.177h.506v.308c.087-.175.322-.33.58-.33.097%200%20.179.013.235.027l-.074.492a.595.595%200%2000-.198-.028.595.595%200%2000-.543.354v1.477h-.506v-2.3z%22%2F%3E%3C%2Fg%3E%3Cmask%20id%3D%22laptop-tick_svg__c%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%2233%22%20height%3D%227%22%20x%3D%2264%22%20y%3D%2232%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M96.714%2032.205H64.127v6.286h32.587v-6.286z%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url(%23laptop-tick_svg__c)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M76.322%2037.524c-.681%200-1.146-.547-1.146-1.196%200-.65.465-1.196%201.146-1.196.271%200%20.511.092.672.258v-.212h.506v2.3h-.506v-.215c-.161.169-.401.26-.672.26zm.06-.46a.695.695%200%2000.612-.322v-.833a.705.705%200%2000-.612-.318c-.405%200-.685.33-.685.736-.001.406.28.737.685.737z%22%2F%3E%3C%2Fg%3E%3Cmask%20id%3D%22laptop-tick_svg__d%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%2233%22%20height%3D%227%22%20x%3D%2264%22%20y%3D%2232%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M96.714%2032.205H64.127v6.286h32.587v-6.286z%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url(%23laptop-tick_svg__d)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M77.958%2034.306l.506-.493v3.665h-.506v-3.172z%22%2F%3E%3C%2Fg%3E%3Cmask%20id%3D%22laptop-tick_svg__e%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%2233%22%20height%3D%227%22%20x%3D%2264%22%20y%3D%2232%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M96.714%2032.205H64.127v6.286h32.587v-6.286z%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url(%23laptop-tick_svg__e)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M79.175%2034.832a.339.339%200%20010-.676.338.338%200%20110%20.676zm-.254.345h.506v2.301h-.506v-2.3z%22%2F%3E%3C%2Fg%3E%3Cmask%20id%3D%22laptop-tick_svg__f%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%2233%22%20height%3D%227%22%20x%3D%2264%22%20y%3D%2232%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M96.714%2032.205H64.127v6.286h32.587v-6.286z%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url(%23laptop-tick_svg__f)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M80.945%2037.524c-.681%200-1.146-.547-1.146-1.196%200-.65.465-1.196%201.146-1.196.271%200%20.511.092.672.258v-.212h.506v2.3h-.506v-.215c-.161.169-.4.26-.672.26zm.06-.46a.696.696%200%2000.612-.322v-.833a.705.705%200%2000-.612-.318c-.405%200-.686.33-.686.736%200%20.406.281.737.686.737z%22%2F%3E%3C%2Fg%3E%3Cmask%20id%3D%22laptop-tick_svg__g%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%2233%22%20height%3D%227%22%20x%3D%2264%22%20y%3D%2232%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M96.714%2032.205H64.127v6.286h32.587v-6.286z%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url(%23laptop-tick_svg__g)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M82.581%2035.177h.506v.244c.156-.193.405-.29.676-.29.552%200%20.902.377.902.97v1.377h-.506v-1.293c0-.363-.184-.593-.506-.593a.605.605%200%2000-.566.364v1.523h-.506v-2.302z%22%2F%3E%3C%2Fg%3E%3Cmask%20id%3D%22laptop-tick_svg__h%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%2233%22%20height%3D%227%22%20x%3D%2264%22%20y%3D%2232%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M96.714%2032.205H64.127v6.286h32.587v-6.286z%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url(%23laptop-tick_svg__h)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M85.566%2036.608a.89.89%200%2000.759.42c.308%200%20.529-.162.529-.406%200-.23-.152-.382-.465-.497l-.359-.129c-.515-.189-.769-.474-.769-.92%200-.57.451-.92%201.058-.92.405%200%20.75.161.989.446l-.373.363a.777.777%200%2000-.616-.304c-.276%200-.515.143-.515.377%200%20.24.156.345.497.47l.331.123c.479.18.769.47.769.957-.005.571-.451.943-1.09.943-.529%200-.971-.239-1.169-.589l.424-.334z%22%2F%3E%3C%2Fg%3E%3Cmask%20id%3D%22laptop-tick_svg__i%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%2233%22%20height%3D%227%22%20x%3D%2264%22%20y%3D%2232%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M96.714%2032.205H64.127v6.286h32.587v-6.286z%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url(%23laptop-tick_svg__i)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M89.754%2037.478h-.506v-.24c-.152.194-.405.286-.635.286-.543%200-.893-.377-.893-.971v-1.376h.506v1.293c0%20.363.179.593.497.593.235%200%20.428-.147.524-.363v-1.523h.506v2.3h.001z%22%2F%3E%3C%2Fg%3E%3Cmask%20id%3D%22laptop-tick_svg__j%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%2233%22%20height%3D%227%22%20x%3D%2264%22%20y%3D%2232%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M96.714%2032.205H64.127v6.286h32.587v-6.286z%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url(%23laptop-tick_svg__j)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M90.18%2035.177h.506v.212c.161-.166.4-.258.672-.258.685%200%201.15.547%201.15%201.196%200%20.649-.465%201.196-1.15%201.196-.272%200-.511-.092-.672-.262v1.229h-.506v-3.313zm1.123%201.887c.407%200%20.688-.334.686-.742-.003-.461-.433-.815-.882-.71a.688.688%200%2000-.42.297v.833a.696.696%200%2000.616.322z%22%2F%3E%3C%2Fg%3E%3Cmask%20id%3D%22laptop-tick_svg__k%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%2233%22%20height%3D%227%22%20x%3D%2264%22%20y%3D%2232%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M96.714%2032.205H64.127v6.286h32.587v-6.286z%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url(%23laptop-tick_svg__k)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M95.393%2035.177h.506v.308c.087-.175.322-.33.58-.33.097%200%20.18.013.235.027l-.074.492a.595.595%200%2000-.198-.028.595.595%200%2000-.543.354v1.477h-.506v-2.3z%22%2F%3E%3C%2Fg%3E%3Cmask%20id%3D%22laptop-tick_svg__l%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%2233%22%20height%3D%227%22%20x%3D%2264%22%20y%3D%2232%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M96.714%2032.205H64.127v6.286h32.587v-6.286z%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url(%23laptop-tick_svg__l)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M70.976%2036.11l-.235-.068c-.225-.064-.276-.161-.276-.271%200-.138.156-.216.308-.216a.52.52%200%2001.437.235l.319-.311c-.164-.225-.423-.346-.747-.346-.46%200-.819.248-.824.658-.005.34.202.594.603.704l.202.055c.276.083.354.16.354.294%200%20.16-.152.244-.331.244-.235%200-.46-.115-.552-.317l-.337.329c.177.285.507.425.889.425.474%200%20.833-.272.833-.713.001-.38-.239-.581-.643-.701z%22%2F%3E%3C%2Fg%3E%3Cmask%20id%3D%22laptop-tick_svg__m%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%2233%22%20height%3D%227%22%20x%3D%2264%22%20y%3D%2232%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M96.714%2032.205H64.127v6.286h32.587v-6.286z%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url(%23laptop-tick_svg__m)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M73.412%2037.01a.754.754%200%2001-.327.059c-.216%200-.359-.106-.359-.391v-1.05h.686v-.45h-.686v-.871h-.506v.87h-.45v.452h.451v1.132c0%20.52.354.764.801.764.149%200%20.285-.026.391-.058v-.456h-.001z%22%2F%3E%3C%2Fg%3E%3Cmask%20id%3D%22laptop-tick_svg__n%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%2233%22%20height%3D%227%22%20x%3D%2264%22%20y%3D%2232%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M96.714%2032.205H64.127v6.286h32.587v-6.286z%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url(%23laptop-tick_svg__n)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M94.543%2036.789c-.126.163-.326.274-.607.274-.382%200-.685-.248-.709-.626h1.808c.005-.074.005-.115.005-.166%200-.741-.506-1.141-1.109-1.141-.707%200-1.212.532-1.201%201.219.012.7.621%201.22%201.32%201.169.387-.03.685-.198.878-.455l-.385-.274zm-.63-1.23c.294%200%20.561.179.617.51h-1.279c.069-.34.368-.51.662-.51z%22%2F%3E%3C%2Fg%3E%3Cmask%20id%3D%22laptop-tick_svg__o%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%224%22%20height%3D%222%22%20x%3D%2282%22%20y%3D%2232%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M82.664%2032.565c-.104.009-.114.156-.013.18l2.26.522c.177-.423.181-.797-.121-.887l-2.126.185z%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url(%23laptop-tick_svg__o)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M82.113%2032.9l1.488-1.773%201.928%201.619-1.487%201.772-1.929-1.618z%22%2F%3E%3C%2Fg%3E%3Cmask%20id%3D%22laptop-tick_svg__p%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%223%22%20height%3D%223%22%20x%3D%2284%22%20y%3D%2232%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M86.78%2032.205l-1.99.174c.303.092.299.464.121.887l-.635%201.361c-.043.092.074.175.146.104l2.429-2.37a.09.09%200%2000-.063-.156h-.008z%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url(%23laptop-tick_svg__p)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M84.254%2031.972l2.882.252-.246%202.81-2.882-.252.246-2.81z%22%2F%3E%3C%2Fg%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M49.989%2077.458v-.032a9.155%209.155%200%2000-.867-1.258v.014c.201.257.526.702.867%201.276zM108.447%2023.323H52.934a2.938%202.938%200%2000-2.467%201.345%202.923%202.923%200%2000-.478%201.6v51.19c.665%201.122%201.373%202.727%201.246%204.346-.15%201.924-.983%208.467-1.246%2010.513v10.878a2.945%202.945%200%20002.945%202.945H108.448c.591%200%201.139-.178%201.6-.478a2.938%202.938%200%20001.345-2.467V26.268a2.947%202.947%200%2000-2.946-2.945zm-.968%2078.905H53.901V27.236h20.104v1.518c0%20.738.598%201.336%201.336%201.336h10.834a1.2%201.2%200%20001.199-1.199v-1.656h20.104v74.993h.001z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M86.333%2094.203H74.807c-.745%200-1.354.61-1.354%201.354%200%20.745.609%201.354%201.354%201.354h11.526c.745%200%201.354-.609%201.354-1.354%200-.745-.609-1.354-1.354-1.354zM77.936%20106.141l.053-.077H54.468c-2.984%200-4.459-2.232-4.459-5.216V92.16c.282-2.194%201.08-8.475%201.226-10.355.125-1.604-.567-3.19-1.226-4.31v-.035a9.266%209.266%200%2000-.887-1.291c-.035-.043-.071-.08-.107-.12-.058-.073-.095-.115-.095-.115v.008c-.92-1.03-1.933-1.605-2.676-1.4-1.695.47-1.328%206.028-2.544%2010.698-1.216%204.672-2.293%207.957-4.598%2016.729-2.375%209.041%201.453%2012.289.692%2015.421-.117.483-.431%201.183-.864%202.007l16.288%206.722c.242.158.464.32.672.484%202.464-1.653%206.687-4.051%2017.904-15.705%201.538-1.598%202.701-2.873%203.504-3.89a13.688%2013.688%200%2000.635-.865l.003-.002z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M55.891%20126.602a9.793%209.793%200%2000-.672-.484l-16.288-6.722-.421-.174a5.17%205.17%200%2000-6.504%202.291l-9.6%2013.98a80.15%2080.15%200%200024.728%2017.44c3.237-7.027%206.564-14.35%209.618-18.368%201.688-2.221%202.425-5.384-.861-7.963zM132.523%20120.316c-2.054-2.207-1.72-4.729-14.282-17.854-3.564-3.723-4.583-4.658-6.679-4.667-1.801-.007-2.459%201.054-2.4%201.536%200%200-1.684-2.27-4.551-1.162-1.366.528-2.271%202.456-2.271%202.456l-.228-.225c-1.828-1.788-3.652-1.908-5.968-.797-1.157.555-2.006%202.588-2.006%202.588-2.553-2.184-1.592-1.001-3.83-3.078-5.518-5.123-6.228-6.593-7.908-6.218-1.299.29-1.63%203.257-.036%205.853%201.374%202.237%202.35%203.803%207.322%208.736%203.211%203.186%205.527%205.258%207.866%207.712%201.916%202.01%205.549%205.407%205.705%206.857.156%201.45-8.239-.907-11.602-.882-3.363.025-6.594%202.612-6.244%204.113.35%201.501%205.231%201.379%209.277%202.612%204.047%201.233%206.885%202.294%2014.485%204.628%207.833%202.405%2010.814-.83%2013.53-.052.249.071.575.218.933.398%201.139-3.458%203.644-7.784%208.887-12.554z%22%2F%3E%3Cmask%20id%3D%22laptop-tick_svg__q%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%2236%22%20height%3D%2236%22%20x%3D%2262%22%20y%3D%2248%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M97.923%2048.165h-35v35h35v-35z%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url(%23laptop-tick_svg__q)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M80.424%2083.168c9.666%200%2017.501-7.836%2017.501-17.501%200-9.666-7.835-17.502-17.501-17.502s-17.501%207.836-17.501%2017.502c0%209.665%207.835%2017.501%2017.501%2017.501z%22%2F%3E%3C%2Fg%3E%3Cmask%20id%3D%22laptop-tick_svg__r%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%2236%22%20height%3D%2236%22%20x%3D%2262%22%20y%3D%2248%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M97.923%2048.165h-35v35h35v-35z%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url(%23laptop-tick_svg__r)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M86.021%2059.998c0%203.091-2.506%205.385-5.597%205.385-3.09%200-5.596-2.294-5.596-5.385a5.597%205.597%200%201111.193%200z%22%2F%3E%3C%2Fg%3E%3Cmask%20id%3D%22laptop-tick_svg__s%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%2236%22%20height%3D%2236%22%20x%3D%2262%22%20y%3D%2248%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M97.923%2048.165h-35v35h35v-35z%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url(%23laptop-tick_svg__s)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M80.424%2065.612a8.098%208.098%200%2000-8.098%208.098h16.196a8.098%208.098%200%2000-8.098-8.098z%22%2F%3E%3C%2Fg%3E%3Cmask%20id%3D%22laptop-tick_svg__t%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%2236%22%20height%3D%2236%22%20x%3D%2262%22%20y%3D%2248%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M97.923%2048.165h-35v35h35v-35z%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url(%23laptop-tick_svg__t)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M75.619%2060.578a4.805%204.805%200%20119.61%200%204.805%204.805%200%2001-9.61%200z%22%2F%3E%3C%2Fg%3E%3Cmask%20id%3D%22laptop-tick_svg__u%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%2236%22%20height%3D%2236%22%20x%3D%2262%22%20y%3D%2248%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M97.923%2048.165h-35v35h35v-35z%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url(%23laptop-tick_svg__u)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M82.251%2063.503h-3.654v2.3a1.827%201.827%200%20003.654%200v-2.3z%22%2F%3E%3C%2Fg%3E%3Cmask%20id%3D%22laptop-tick_svg__v%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%2236%22%20height%3D%2236%22%20x%3D%2262%22%20y%3D%2248%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M97.923%2048.165h-35v35h35v-35z%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url(%23laptop-tick_svg__v)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M82.245%2065.86c.001-.02.006-.037.006-.056v-.782a4.786%204.786%200%2001-3.654%200v.781c0%20.02.006.038.006.056a5.551%205.551%200%20001.821.31c.639%200%201.25-.112%201.821-.31z%22%2F%3E%3C%2Fg%3E%3Cmask%20id%3D%22laptop-tick_svg__w%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%2236%22%20height%3D%2236%22%20x%3D%2262%22%20y%3D%2248%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M97.923%2048.165h-35v35h35v-35z%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url(%23laptop-tick_svg__w)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M85.37%2059.668c0%20.381-.039.748-.119%201.102-1.049-.297-2.148-1.706-2.24-2.8-.95%201.535-3.995%203.098-5.933%203.098-.591%200-1.16-.097-1.689-.27a5.044%205.044%200%20011.243-4.59%205.895%205.895%200%20013.75-1.336%205.9%205.9%200%20013.194.932%205.046%205.046%200%20011.794%203.864z%22%2F%3E%3C%2Fg%3E%3Cmask%20id%3D%22laptop-tick_svg__x%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%2236%22%20height%3D%2236%22%20x%3D%2262%22%20y%3D%2248%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M97.923%2048.165h-35v35h35v-35z%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url(%23laptop-tick_svg__x)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M85.37%2059.668c0%20.381-.039.748-.119%201.102-1.049-.297-2.148-1.706-2.24-2.8-.95%201.535-3.995%203.098-5.933%203.098-.591%200-1.16-.097-1.689-.27a5.044%205.044%200%20011.243-4.59%205.041%205.041%200%20013.684-1.594c1.243%200%202.38.446%203.259%201.19a5.043%205.043%200%20011.795%203.864z%22%2F%3E%3C%2Fg%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M68.309%2064.155a7.994%207.994%200%20007.995-7.995%207.994%207.994%200%2000-7.995-7.995%207.994%207.994%200%2000-7.995%207.995%207.994%207.994%200%20007.995%207.995z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M67.626%2058.466a.422.422%200%2001-.298-.123l-2.169-2.169a.421.421%200%2001.595-.595l1.883%201.883%204.238-3.93a.42.42%200%2011.572.616l-4.535%204.206a.425.425%200%2001-.286.112zM148.672%20121.042l-7.213-4.14a4.446%204.446%200%2000-4.956.277c-.721.549-1.396.858-2.046%201.399-.13.109-.267.218-.395.326-6.021%205.102-8.794%209.306-10.396%2013.864-.116.329-.224.643-.323.956-.84%202.661-.922%204.812-.809%206.232a3.924%203.924%200%20001.546%202.829l1.156%203.192a80.416%2080.416%200%200023.436-24.935z%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3ClinearGradient%20id%3D%22laptop-tick_svg__paint0_linear_411_152%22%20x1%3D%2283.554%22%20x2%3D%2284.643%22%20y1%3D%2233.388%22%20y2%3D%2232.09%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%3Cstop%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.116%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.263%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.457%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.65%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.792%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22currentColor%22%2F%3E%3C%2FlinearGradient%3E%3ClinearGradient%20id%3D%22laptop-tick_svg__paint1_linear_411_152%22%20x1%3D%2284.562%22%20x2%3D%2286.948%22%20y1%3D%2233.551%22%20y2%3D%2233.759%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%3Cstop%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.116%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.235%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.393%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.55%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.661%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.881%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%22.996%22%20stop-color%3D%22currentColor%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22currentColor%22%2F%3E%3C%2FlinearGradient%3E%3CclipPath%20id%3D%22laptop-tick_svg__clip0_411_152%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M0%200h160v160H0z%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3C%2Fsvg%3E',\n\tLaunch: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22launch_svg__a%22%20d%3D%22M18%2019H6c-.55%200-1-.45-1-1V6c0-.55.45-1%201-1h5c.55%200%201-.45%201-1s-.45-1-1-1H5a2%202%200%2000-2%202v14c0%201.1.9%202%202%202h14c1.1%200%202-.9%202-2v-6c0-.55-.45-1-1-1s-1%20.45-1%201v5c0%20.55-.45%201-1%201zM14%204c0%20.55.45%201%201%201h2.59l-9.13%209.13a.996.996%200%20101.41%201.41L19%206.41V9c0%20.55.45%201%201%201s1-.45%201-1V3h-6c-.55%200-1%20.45-1%201z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23launch_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tLink: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22link_svg__a%22%20d%3D%22M17%207h-3c-.55%200-1%20.45-1%201s.45%201%201%201h3c1.65%200%203%201.35%203%203s-1.35%203-3%203h-3c-.55%200-1%20.45-1%201s.45%201%201%201h3c2.76%200%205-2.24%205-5s-2.24-5-5-5zm-9%205c0%20.55.45%201%201%201h6c.55%200%201-.45%201-1s-.45-1-1-1H9c-.55%200-1%20.45-1%201zm2%203H7c-1.65%200-3-1.35-3-3s1.35-3%203-3h3c.55%200%201-.45%201-1s-.45-1-1-1H7c-2.76%200-5%202.24-5%205s2.24%205%205%205h3c.55%200%201-.45%201-1s-.45-1-1-1z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23link_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tLoading: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2026%2026%22%20style%3D%22width%3A100%25%3Bheight%3A100%25%3Bcontent-visibility%3Avisible%22%3E%3Cdefs%3E%3CclipPath%20id%3D%22loading_svg__a%22%3E%3Cpath%20d%3D%22M0%200h26v26H0z%22%2F%3E%3C%2FclipPath%3E%3CclipPath%20id%3D%22loading_svg__b%22%3E%3Cpath%20d%3D%22M0%200h26v26H0z%22%2F%3E%3C%2FclipPath%3E%3CclipPath%20id%3D%22loading_svg__c%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M24%200v24H0V0h24%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3Cg%20clip-path%3D%22url(%23loading_svg__a)%22%3E%3Cg%20clip-path%3D%22url(%23loading_svg__b)%22%20display%3D%22block%22%3E%3Cg%20clip-path%3D%22url(%23loading_svg__c)%22%3E%3Cpath%20fill%3D%22currentColor%22%20fill-opacity%3D%220%22%20d%3D%22M24%200v24H0V0h24z%22%20display%3D%22block%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M16%2016.91V19c0%20.55-.45%201-1%201H9c-.55%200-1-.45-1-1v-2.09c0-.27.11-.52.29-.71L12%2012.5l3.71%203.71c.18.18.29.44.29.7zM8%202c-1.1%200-2%20.9-2%202l.01%203.18c0%20.53.21%201.03.58%201.41L10%2012l-3.41%203.43c-.37.37-.58.88-.58%201.41L6%2020c0%201.1.9%202%202%202h8c1.1%200%202-.9%202-2v-3.16c0-.53-.21-1.04-.58-1.41L14%2012l3.41-3.4c.38-.38.59-.89.59-1.42V4c0-1.1-.9-2-2-2H8z%22%20display%3D%22block%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E',\n\tLock: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22lock_svg__a%22%20d%3D%22M18%208.5h-1v-2c0-2.76-2.24-5-5-5s-5%202.24-5%205v2H6c-1.1%200-2%20.9-2%202v10c0%201.1.9%202%202%202h12c1.1%200%202-.9%202-2v-10c0-1.1-.9-2-2-2zm-6%209c-1.1%200-2-.9-2-2s.9-2%202-2%202%20.9%202%202-.9%202-2%202zm-3-9v-2c0-1.66%201.34-3%203-3s3%201.34%203%203v2H9z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23lock_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tLockMau: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M18%208.5h-1v-2c0-2.76-2.24-5-5-5s-5%202.24-5%205v2H6c-1.1%200-2%20.9-2%202v10c0%201.1.9%202%202%202h12c1.1%200%202-.9%202-2v-10c0-1.1-.9-2-2-2zm-9-2c0-1.66%201.34-3%203-3s3%201.34%203%203v2H9v-2zm9%2014H6v-10h12v10zm-6-3c1.1%200%202-.9%202-2s-.9-2-2-2-2%20.9-2%202%20.9%202%202%202z%22%2F%3E%3C%2Fsvg%3E',\n\tLockedComputer: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%20160%20161%22%3E%3Cdefs%3E%3Cpath%20id%3D%22locked-computer_svg__a%22%20d%3D%22M160%2080.5c0%2044.46-35.818%2080.5-80%2080.5S0%20124.96%200%2080.5%2035.818%200%2080%200s80%2036.04%2080%2080.5%22%2F%3E%3C%2Fdefs%3E%3Cg%20fill%3D%22none%22%20fillRule%3D%22evenodd%22%3E%3Cmask%20id%3D%22locked-computer_svg__b%22%20fill%3D%22currentColor%22%3E%3Cuse%20xlink%3Ahref%3D%22%23locked-computer_svg__a%22%2F%3E%3C%2Fmask%3E%3Cuse%20fill%3D%22currentColor%22%20xlink%3Ahref%3D%22%23locked-computer_svg__a%22%2F%3E%3Cg%20mask%3D%22url(%23locked-computer_svg__b)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M70.244%20113.466h19.633V97.14H70.244z%22%2F%3E%3Cpath%20stroke%3D%22currentColor%22%20stroke-width%3D%22.534%22%20d%3D%22M70.244%20113.466h19.633V97.14H70.244z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M30.26%2094.657h100.158V41.511H30.26z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M125.29%20103.083H35.386c-2.832%200-5.128-2.31-5.128-5.16v-6.726h100.158v6.726c0%202.85-2.296%205.16-5.128%205.16%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M32.493%2092.698h95.691V44.904H32.493zM58.36%20117.273h43.4v-4.24h-43.4zM79.962%2043.195a.819.819%200%2001-.816.821.818.818%200%2001-.815-.82c0-.455.365-.822.815-.822.45%200%20.816.367.816.821%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M77.007%2051.89L59.262%2082.819c-.952%201.657.238%203.727%202.139%203.727h35.492c1.9%200%203.09-2.07%202.14-3.727l-17.747-30.93c-.952-1.655-3.328-1.655-4.279%200%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M79.146%2076.983c1.135%200%201.968.836%201.968%201.922v.28c0%201.087-.833%201.923-1.968%201.923-1.108%200-1.966-.836-1.966-1.924v-.28c0-1.085.858-1.921%201.966-1.921zm-1.966-14.41c-.056-.67.332-1.2.97-1.2h1.992c.638%200%201.054.53.997%201.2l-.968%2011.37c-.056.616-.47%201.005-1.025%201.005-.553%200-.941-.39-.996-1.004l-.97-11.371zM16.98%2073.101c-.984-.668-4.444%201.372-7.262%205.12-.167-5.114-2.052-9.149-3.327-9.149-1.274%200-3.16%204.04-3.328%209.156-2.817-3.753-6.28-5.795-7.265-5.127-1.062.72-.303%205.327%202.607%209.668%202.91%204.344%206.458%207.057%207.93%206.06.003-.003.004-.005.008-.007.016%200%20.032.006.048.006s.03-.006.046-.006l.008.006c1.468.998%205.02-1.715%207.93-6.059%202.908-4.341%203.669-8.947%202.605-9.668%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M-9.944%2095.288h32.67V85.64h-32.67zm26.284%2022.159H-3.556l-3.618-22.158h27.132z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M-6.588%2098.898H19.37l.587-3.609h-27.13zM164.462%2073.101c-.984-.668-4.444%201.372-7.262%205.12-.167-5.114-2.052-9.149-3.327-9.149-1.274%200-3.16%204.04-3.328%209.156-2.817-3.753-6.28-5.795-7.265-5.127-1.062.72-.303%205.327%202.607%209.668%202.909%204.344%206.46%207.057%207.93%206.06.003-.003.004-.005.008-.007.016%200%20.031.006.048.006.016%200%20.03-.006.046-.006l.008.006c1.468.998%205.02-1.715%207.93-6.059%202.907-4.341%203.669-8.947%202.605-9.668%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M137.539%2095.288h32.67V85.64h-32.67zm26.284%2022.159h-19.9l-3.615-22.158h27.132z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M140.895%2098.898h25.957l.586-3.609h-27.13zM-4.94%20163.431h168.26v-46.158H-4.94z%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E',\n\tLogoBpay: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2042%2064%22%3E%3Cpath%20fill%3D%22currentColor%22%20fillRule%3D%22evenodd%22%20d%3D%22M40.335%200c.874%200%201.166.582%201.166%201.165v61.137c0%20.582-.292%201.165-1.166%201.165H.972c-.583%200-.972-.486-.972-1.068V14.265h11.955l-4.86%201.747v26.396c0%20.777.389%201.165%201.07%201.165h16.23c5.54-.194%2010.01-4.755%2010.01-10.287%200-3.688-1.943-6.89-4.762-8.734%201.75-1.553%203.11-4.173%203.11-6.793%200-6.793-4.859-10.675-11.76-10.675h-6.706V0h26.048zM21.09%2047.163H19.73c-.486%200-.583.194-.778.486-.045.134-.902%202.453-1.81%204.905l-.328.885-1.846%204.981s-.195.486.388.486h.972c.292%200%20.583-.097.68-.486.098-.388.68-1.94.68-1.94h5.444s.583%201.65.68%201.94c.097.389.486.486.68.486h.972c.583%200%20.389-.486.389-.486s-3.888-10.48-3.985-10.771c-.194-.292-.291-.486-.777-.486zm-9.33%200H7.483c-.389%200-.389.291-.389.486V58.42c0%20.486.389.389.486.389h1.07c.193%200%20.388-.097.388-.389V54.54h2.721c2.041%200%203.79-1.65%203.79-3.785%200-1.844-1.652-3.59-3.79-3.59zm14.19%200h-1.07c-.544%200-.411.423-.391.48.002.006%201.662%202.943%203.253%205.765l.257.456.38.675v3.881c0%20.194.097.389.389.389h.972c.194%200%20.486%200%20.486-.389v-3.978c1.75-3.106%203.887-6.89%203.887-6.89l.001-.006.005-.04c.005-.103-.033-.343-.492-.343H32.56c-.291%200-.583.097-.68.486l-.486.97-2.138%203.785-2.139-3.785-.485-.97c-.098-.389-.486-.486-.68-.486zm-5.54%201.941l2.04%205.435h-3.985l1.944-5.435zm-8.65%200c1.068%200%201.846.874%201.846%201.844%200%201.067-.778%201.844-1.847%201.844H9.04v-3.688h2.721zm10.107-35.033c2.041%200%203.693%201.747%203.693%203.785a3.689%203.689%200%2001-3.693%203.688l-1.36.097c-.68%200-1.07.485-1.167%201.067v4.561c.097.68.486%201.068%201.166%201.068h3.305c2.235%200%203.985%201.747%203.985%203.979%200%202.038-1.652%203.784-3.693%203.978h-9.04c-.68%200-1.068-.388-1.166-1.164V14.07h7.97zM7.095%200v7.084H0V1.067C0%20.485.486%200%20.972%200h6.123z%22%2F%3E%3C%2Fsvg%3E',\n\tMail: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22mail_svg__a%22%20d%3D%22M20%204H4c-1.1%200-2%20.9-2%202v12c0%201.1.9%202%202%202h16c1.1%200%202-.9%202-2V6c0-1.1-.9-2-2-2zm-.4%204.25l-6.54%204.09c-.65.41-1.47.41-2.12%200L4.4%208.25a.85.85%200%2011.9-1.44L12%2011l6.7-4.19a.85.85%200%2011.9%201.44z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23mail_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tMakeChangesInvestments: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2040%2040%22%3E%3Cg%20fill%3D%22currentColor%22%20fillRule%3D%22evenodd%22%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%2220%22%2F%3E%3Cg%20transform%3D%22translate(10%2010)%22%3E%3Cpath%20d%3D%22M14.167%2013.333c-2.46%200-4.503-.532-5.834-1.426v1.426c0%201.381%202.612%202.5%205.834%202.5%203.221%200%205.833-1.119%205.833-2.5v-1.426c-1.33.894-3.374%201.426-5.833%201.426zM14.167%2017.5c-2.46%200-4.503-.532-5.834-1.427V17.5c0%201.38%202.612%202.5%205.834%202.5C17.388%2020%2020%2018.88%2020%2017.5v-1.427c-1.33.895-3.374%201.427-5.833%201.427z%22%2F%3E%3Cellipse%20cx%3D%2214.167%22%20cy%3D%229.167%22%20rx%3D%225.833%22%20ry%3D%222.5%22%2F%3E%3Cellipse%20cx%3D%225.833%22%20cy%3D%222.5%22%20rx%3D%225.833%22%20ry%3D%222.5%22%2F%3E%3Cpath%20d%3D%22M6.667%2014.977c-.273.014-.55.023-.834.023-2.459%200-4.502-.533-5.833-1.427V15c0%201.38%202.612%202.5%205.833%202.5.284%200%20.561-.012.834-.028v-2.495zM6.667%2010.81c-.273.014-.55.023-.834.023-2.459%200-4.502-.532-5.833-1.426v1.426c0%201.381%202.612%202.5%205.833%202.5.284%200%20.561-.011.834-.028v-2.494zM8.267%206.472c-.752.125-1.565.195-2.434.195-2.459%200-4.502-.533-5.833-1.427v1.427c0%201.38%202.612%202.5%205.833%202.5.284%200%20.562-.012.836-.029.01-1.052.59-1.966%201.598-2.666z%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E',\n\tMemberDetails: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2018%22%3E%3Cg%20fill%3D%22none%22%20fillRule%3D%22evenodd%22%3E%3Cpath%20d%3D%22M0-3h24v24H0z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20stroke%3D%22currentColor%22%20d%3D%22M22%20.5c.413%200%20.787.17%201.059.441.238.238.397.554.433.906L23.5%202l-.01%2014a1.501%201.501%200%2001-1.338%201.492L22%2017.5H2c-.413%200-.787-.17-1.059-.441a1.498%201.498%200%2001-.433-.906L.5%2016V2c0-.412.17-.787.441-1.059.238-.238.554-.397.906-.433L2%20.5h20zm-2.934%201.859a7.978%207.978%200%2000-3.268%204.507A7.871%207.871%200%200015.5%209c0%20.737.106%201.452.299%202.135a8.007%208.007%200%20003.267%204.506h0l2.595-2.595L19.74%2010.5h-1.523l-.075-.29C18.05%209.82%2018%209.416%2018%209c0-.52.079-1.021.216-1.5h1.523l1.922-2.546zM8%2010.4c-1.21%200-3.116.382-4.518%201.107-.588.303-1.088.668-1.432%201.08-.353.423-.55.897-.55%201.413h0v1.5h13V14l-.01-.191c-.042-.443-.23-.852-.54-1.222-.344-.412-.844-.777-1.432-1.08C11.116%2010.782%209.21%2010.4%208%2010.4zm0-7.9c-.968%200-1.843.391-2.476%201.024A3.489%203.489%200%20004.5%206c0%20.968.391%201.843%201.024%202.476A3.489%203.489%200%20008%209.5c.968%200%201.843-.391%202.476-1.024A3.489%203.489%200%200011.5%206c0-.968-.391-1.843-1.024-2.476A3.489%203.489%200%20008%202.5z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E',\n\tMenu: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22menu_svg__a%22%20d%3D%22M4%2018h16c.55%200%201-.45%201-1s-.45-1-1-1H4c-.55%200-1%20.45-1%201s.45%201%201%201zm0-5h16c.55%200%201-.45%201-1s-.45-1-1-1H4c-.55%200-1%20.45-1%201s.45%201%201%201zM3%207c0%20.55.45%201%201%201h16c.55%200%201-.45%201-1s-.45-1-1-1H4c-.55%200-1%20.45-1%201z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23menu_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tMinus: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M18%2013H6c-.55%200-1-.45-1-1s.45-1%201-1h12c.55%200%201%20.45%201%201s-.45%201-1%201z%22%2F%3E%3C%2Fsvg%3E',\n\tMobileError: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%20160%20160%22%3E%3Cg%20clip-path%3D%22url(%23mobile-error_svg__clip0_411_63)%22%3E%3Cmask%20id%3D%22mobile-error_svg__a%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%22160%22%20height%3D%22160%22%20x%3D%220%22%20y%3D%220%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M80%20160c44.183%200%2080-35.817%2080-80S124.183%200%2080%200%200%2035.817%200%2080s35.817%2080%2080%2080z%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url(%23mobile-error_svg__a)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M79.575%20159.575c44.183%200%2080-35.817%2080-80s-35.817-80-80-80-80%2035.817-80%2080%2035.817%2080%2080%2080z%22%2F%3E%3C%2Fg%3E%3Cmask%20id%3D%22mobile-error_svg__b%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%22160%22%20height%3D%22160%22%20x%3D%220%22%20y%3D%220%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M80%20160c44.183%200%2080-35.817%2080-80S124.183%200%2080%200%200%2035.817%200%2080s35.817%2080%2080%2080z%22%2F%3E%3C%2Fmask%3E%3Cg%20fill%3D%22currentColor%22%20mask%3D%22url(%23mobile-error_svg__b)%22%3E%3Cpath%20d%3D%22M127.696%2027.2h-35.57c-1.836%200-3.325%201.41-3.325%203.15v20.065c0%201.74%201.489%203.15%203.325%203.15h3.443c.396%201.26%201.642%203.82%202.247%203.844.644.027%202.264-2.689%202.663-3.844h27.216c1.836%200%203.325-1.41%203.325-3.15V30.35c.001-1.74-1.488-3.15-3.324-3.15z%22%2F%3E%3Cpath%20d%3D%22M117.828%2031.923c-2.144.027-3.695.774-4.914%201.893a1.213%201.213%200%2000-.453.955c.009.662.599%201.206%201.321%201.197a1.45%201.45%200%2000.858-.32c.921-.806%201.917-1.237%203.152-1.252%201.676-.021%202.69.827%202.708%202.063v.044c.02%201.39-1.181%202.2-3.367%202.426-.628.074-.994.519-.894%201.114l.259%201.895c.077.507.479.877%201.015.87l.14-.002c.534-.007.901-.408.987-.896l.079-1.017c2.58-.451%204.682-1.735%204.644-4.517l-.001-.044c-.036-2.757-2.273-4.45-5.534-4.41zM117.537%2044.42c-.955.012-1.645.682-1.633%201.543l.003.221c.012.861.72%201.514%201.675%201.502.954-.012%201.644-.682%201.632-1.543l-.003-.22c-.012-.862-.72-1.515-1.674-1.503zM106.351%2049.25h-7.708a.856.856%200%2001-.854-.854V31.462c0-.47.384-.854.854-.854h7.708c.47%200%20.854.384.854.854v16.934c0%20.47-.384.854-.854.854z%22%2F%3E%3Cpath%20d%3D%22M106.351%2049.637h-7.708c-.684%200-1.24-.556-1.24-1.24V31.463c0-.684.556-1.24%201.24-1.24h7.708c.684%200%201.24.556%201.24%201.24v16.934a1.242%201.242%200%2001-1.24%201.24zm-7.708-18.643a.47.47%200%2000-.469.469v16.934c0%20.258.21.469.469.469h7.708a.47.47%200%2000.469-.47V31.464a.47.47%200%2000-.469-.47h-7.708z%22%2F%3E%3Cpath%20d%3D%22M104.18%2031.75h-3.651a.458.458%200%2001-.457-.458v-.684h4.566v.684a.46.46%200%2001-.458.457z%22%2F%3E%3Cpath%20d%3D%22M104.18%2032.136h-3.651a.844.844%200%2001-.843-.843v-.684c0-.213.173-.385.385-.385h4.566c.213%200%20.385.173.385.385v.684a.844.844%200%2001-.842.843zm-3.723-1.142v.299c0%20.039.033.072.072.072h3.651a.073.073%200%2000.072-.072v-.3h-3.795zM104.364%2034.636c0%201.004-.814%201.748-1.817%201.748-1.003%200-1.817-.745-1.817-1.748a1.817%201.817%200%20013.634%200zM102.547%2036.458a2.629%202.629%200%2000-2.629%202.629h5.259a2.63%202.63%200%2000-2.63-2.629z%22%2F%3E%3Cpath%20d%3D%22M100.987%2034.824a1.56%201.56%200%20113.12%200%201.56%201.56%200%2001-3.12%200z%22%2F%3E%3Cpath%20d%3D%22M103.14%2035.773h-1.186v.747a.593.593%200%20001.186%200v-.747z%22%2F%3E%3Cpath%20d%3D%22M103.138%2036.539l.002-.018v-.254a1.56%201.56%200%2001-1.186%200v.254l.002.018a1.81%201.81%200%20001.182%200zM104.153%2034.529c0%20.124-.013.243-.039.358-.341-.097-.697-.554-.727-.91-.308.499-1.297%201.007-1.926%201.007-.192%200-.377-.031-.548-.088a1.636%201.636%200%2001.404-1.491%201.914%201.914%200%20011.217-.433c.382%200%20.737.11%201.037.303.356.3.582.75.582%201.254z%22%2F%3E%3Cpath%20d%3D%22M104.153%2034.529c0%20.124-.013.243-.039.358-.341-.097-.697-.554-.727-.91-.308.499-1.297%201.007-1.926%201.007-.192%200-.377-.031-.548-.088a1.636%201.636%200%20011.6-2.008%201.641%201.641%200%20011.64%201.641zM99.981%2042.891a.79.79%200%2001-.788-.788.79.79%200%2001.788-.788.79.79%200%2001.788.788.79.79%200%2001-.788.788zM99.981%2045.034a.79.79%200%2001-.788-.788.79.79%200%2001.788-.788.79.79%200%2001.788.788.79.79%200%2001-.788.788zM102.407%2042.891a.79.79%200%2001-.788-.788.79.79%200%2001.788-.788.79.79%200%2001.788.788.79.79%200%2001-.788.788zM102.407%2045.034a.79.79%200%2001-.788-.788.79.79%200%2001.788-.788.79.79%200%2001.788.788.79.79%200%2001-.788.788zM104.873%2042.891a.79.79%200%2001-.788-.788.79.79%200%2001.788-.788.79.79%200%2001.788.788.79.79%200%2001-.788.788zM104.873%2045.034a.79.79%200%2001-.788-.788.79.79%200%2001.788-.788.79.79%200%2001.788.788.79.79%200%2001-.788.788zM99.981%2047.316a.79.79%200%2001-.788-.788.79.79%200%2001.788-.788.79.79%200%2001.788.788.79.79%200%2001-.788.788zM102.407%2047.316a.79.79%200%2001-.788-.788.79.79%200%2001.788-.788.79.79%200%2001.788.788.79.79%200%2001-.788.788zM104.873%2047.316a.79.79%200%2001-.788-.788.79.79%200%2001.788-.788.79.79%200%2001.788.788.79.79%200%2001-.788.788z%22%2F%3E%3C%2Fg%3E%3Cmask%20id%3D%22mobile-error_svg__c%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%22160%22%20height%3D%22160%22%20x%3D%220%22%20y%3D%220%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M80%20160c44.183%200%2080-35.817%2080-80S124.183%200%2080%200%200%2035.817%200%2080s35.817%2080%2080%2080z%22%2F%3E%3C%2Fmask%3E%3Cg%20fill%3D%22currentColor%22%20mask%3D%22url(%23mobile-error_svg__c)%22%3E%3Cpath%20d%3D%22M73.793%2077.85h0zM73.309%2076.983c.039%200%20.088.054.139.124-.053-.078-.1-.125-.139-.124zM80.943%20185.64c-2.357-4.646-2.487-10.198-2.503-15.292-.035-10.707.985-21.432%201.756-32.092.969-13.391%202.342-26.232-1.143-39.35-.139-.524-1.021-4.516-2.062-8.952-.441-1.88-.911-3.84-1.366-5.65-2.667%201.645-5.646%202.25-8.143%202.25-2.64%200-6.407-.622-9.421-2.896-.182%205.551-.089%2013.462-1.017%2024.2-1.434%2016.609-3.298%2018.065-4.969%2031.998-3.715%2030.981-5.304%2048.81-6.628%2050.47-.705.884-3.689%201.055-7.005.948-.216%208.697-.234%2018.894.011%2030.948%200%200%203.909.481%209.845.965a299.34%20299.34%200%200017.099.917c1.724.04%203.469.066%205.225.066.322%200%20.632-.005.952-.007a227.751%20227.751%200%200016.908-.711c6.981-.556%2011.345-1.231%2011.345-1.231-.099-12.276-.48-22.637-1.047-31.528-7.476-.048-14.682-.621-14.682-.621-1.228-1.344-2.329-2.804-3.155-4.432zM75.286%2082.97zM74.974%2081.782zM74.693%2080.749l.109.393-.109-.393z%22%2F%3E%3Cpath%20d%3D%22M59.648%2077.306c1.82-4.487.763-5.351-.229-8.327-1.137-3.411%2014.225-3.674%2013.608%200-.505%203.002-1.326%204.515-.457%207.94.28.02.539.042.75.065.134-.004%206.393-.168%2011.276.925.385.039.773.097%201.166.186%201.912.432%203.995%201.253%205.589%202.436.878.652%201.633%201.424%202.337%202.253a28.35%2028.35%200%2000.034-2.018c-.171-5.684-1.507-11.08-3.201-16.38-1.974-6.176-4.434-12.221-6.105-18.436a29.564%2029.564%200%2000-1.072-3.236c-5.066-12.751-17.605-16.951-26.802-8.918-7.706%202.464-9.829%2012.975-10.509%2019.889-.917%209.332-1.105%2019.06-1.501%2028.562%205.876-3.18%2014.066-4.722%2014.068-4.723.295-.081.657-.152%201.048-.218z%22%2F%3E%3Cpath%20d%3D%22M112.146%20189.741s-10.576-13.316-12.162-35.302c-.7-9.698-4.718-26.9-7.643-42.16%202.099%205.29-2.082%203.231.775%206.356%202.345%202.566%205.111%204.8%208.34%203.513%203.496-1.392%204.994-5.787%203.535-9.032l-8.308-25.513c-.835-1.837-1.821-3.433-2.997-4.82-.704-.828-1.459-1.6-2.337-2.252-1.594-1.184-3.677-2.005-5.589-2.436a9.666%209.666%200%2000-1.166-.186c-4.882-1.093-11.141-.93-11.276-.925h-.011c.039-.001.086.046.139.124.049.073.103.173.16.295a6.365%206.365%200%2001.187.448c.25.658.558%201.672.899%202.898l.109.393.173.64.192.726.121.463c.112.433.225.875.339%201.332.455%201.81.924%203.77%201.366%205.65%201.041%204.437%201.923%208.429%202.062%208.952%203.486%2013.12%202.112%2025.96%201.143%2039.351-.771%2010.66-1.791%2021.385-1.756%2032.092.017%205.095.146%2010.646%202.503%2015.292.826%201.628%201.927%203.089%203.155%204.434%200%200%207.206.573%2014.682.621%205.041.033%2010.204-.173%2013.365-.954z%22%2F%3E%3Cpath%20d%3D%22M67.482%2086.552c2.497%200%205.476-.604%208.143-2.25-1.014-4.037-1.95-7.33-2.317-7.319h.011c-.211-.023-.47-.044-.75-.064-.868-3.426-.048-4.939.457-7.94.617-3.675-14.745-3.412-13.608%200%20.992%202.976%202.049%203.84.229%208.326-.391.066-.753.136-1.049.217-.316%201.59-.455%203.62-.537%206.136%203.014%202.273%206.781%202.894%209.421%202.894z%22%2F%3E%3Cpath%20d%3D%22M69.018%2074.382c-2.596%201.05-5.653.215-8.492-1.976.121.518.161%201.076.027%201.737-.088.433%203.114%202.49%205.95%202.53%202.881.04%205.673-1.809%205.647-2.454-.03-.747.095-1.4.256-2.022-.65.524-1.309.997-1.979%201.36-.435.33-.898.62-1.409.825z%22%20opacity%3D%22.5%22%2F%3E%3Cpath%20d%3D%22M78.289%2044.944c-3.477-5.751-10.149-8.732-16.465-6.825-4.033%201.217-7.091%204.186-8.725%207.92-2.156%203.803-2.197%2010.096.303%2016.378%201.721%204.325%204.316%207.822%207.125%209.99%202.838%202.19%205.895%203.025%208.492%201.976a6.166%206.166%200%20001.41-.825c.67-.363%201.329-.836%201.979-1.36%202.778-2.241%205.296-5.861%206.851-10.338%202.35-6.768%201.811-13.42-.97-16.916z%22%2F%3E%3Cpath%20d%3D%22M82.52%2057.539c.634-2.538.04-4.871-1.325-5.212-1.365-.341-2.985%201.44-3.619%203.977-.633%202.538-.04%204.872%201.325%205.212%201.365.341%202.986-1.44%203.62-3.977zM53.413%2061.507c1.365-.34%201.959-2.674%201.325-5.212-.633-2.538-2.254-4.318-3.619-3.978-1.365.341-1.959%202.675-1.325%205.212.634%202.538%202.254%204.319%203.62%203.978z%22%2F%3E%3Cpath%20d%3D%22M60.83%2035.74c.072.361.189.677.306.996-8.381-1.588-15.002%209.435-9.585%2015.59%203.924-3.41%203.691-10.163%2010.695-13.697%203.753%204.365%2013.358%203.78%2018.509%2013.704%207.357-12.362-8.643-23.878-19.925-16.594zM86.226%2088.246h-.015l-3.356.294-3.584.314c-.175.015-.192.264-.022.303l3.81.88-1.071%202.295c-.072.155.125.294.247.175l4.096-3.997a.153.153%200%2000-.105-.264z%22%2F%3E%3Cpath%20d%3D%22M65.15%2033.415c-13.79%200-14.583%2017.375-14.59%2017.55v.017h-.832c-.714%200-1.292%202.223-1.292%204.965s.579%204.965%201.292%204.965h1c.444%202.41%202.595%209.12%2012.777%209.12v-.817c-9.52%200-11.536-5.989-11.961-8.302h.768c.714%200%201.292-2.223%201.292-4.965s-.579-4.965-1.292-4.965h-.831c.005-.13.195-4.288%201.971-8.393%202.369-5.477%206.304-8.254%2011.697-8.254%2012.936%200%2015.127%2017.871%2015.148%2018.052l.912-.105c-.019-.189-2.302-18.868-16.059-18.868z%22%2F%3E%3Cpath%20d%3D%22M62.992%2068.686c-.446%200-.807.42-.807.938s.361.938.807.938c.445%200%20.807-.42.807-.938-.001-.518-.362-.938-.807-.938zM106.274%2078.519a2.457%202.457%200%2001-.067-.205c-.187-.657-.164-1.03.294-1.526%201.535-1.67%203.993-2.4%206.166-2.767.641-.11%201.298-.201%201.88-.49%201.161-.576%202.889-1.882%203.45-2.973.444-.863-.021-1.851.794-2.418.249-.173.712-.463.93-.105.175.287%200%20.786-.11%201.063-.5%201.259-.89%202.757-1.918%203.706-1.184%201.094%202.545-1.901%202.727-2.063.182-.163%201.448-3.861%202.975-4.862.349-.23.921-.281%201.005.238.079.492-.342%201.24-.525%201.68-.57%201.363-1.21%202.735-1.21%202.735.474-.84.979-1.662%201.504-2.47.418-.644.851-1.281%201.324-1.886.328-.42.727-1.004%201.213-1.256.248-.13.54-.155.777.034.773.617-.498%202.487-.829%203.07-1.342%202.362-3.421%206.458-3.543%206.59-.122.134-11.954%206.935-15.009%205.469-.313-.15-.734-.274-1.009-.486-.382-.295-.653-.635-.819-1.078z%22%2F%3E%3Cpath%20d%3D%22M93.439%20113.304c.012-.107-.074-.202-.098-.307-.231-.997%203.535-18.31%203.886-19.3.568-1.6%201.928-5.753%202.496-7.354l2.13-6.006s.655-5.383%207.737-6.984c.951-.215%201.93-.253%202.901-.2.964.052%201.862.276%202.816.144a39.825%2039.825%200%20003.122-.571%2056.798%2056.798%200%20001.582-.376c.453-.114%201.04-.17%201.425-.448%201.508-1.088%202.428-2.668%203.742-3.945.686-.667%201.496-1.188%202.301-1.705.188-.121.405-.247.622-.193.269.067.398.383.401.66.008.632-.403%201.182-.785%201.687-.906%201.197-1.745%202.459-2.58%203.696-.779%201.155-1.59%202.158-2.844%202.827-2.049%201.093-11.99%205.219-13.066%206.284-.249.247-.304.72-.374%201.043-.617%202.867-.757%203.488-1.545%208.284-.22%201.337-2.568%2021.183-2.616%2022.537-.072%202.042-3.861%204.194-5.507%204.425-1.327.186-3.27-.085-4.561-.463-1.069-.312-1.469-1.273-1.185-3.735z%22%2F%3E%3Cpath%20d%3D%22M113.496%2073.136c1.054-.084%202.287-1.129%203.237-1.593.789-.385%201.003-2.16%201.467-2.89.315-.496.651-1.012%201.167-1.29.318-.173.8-.194.962.13.077.154.053.336.027.506l-.289%201.913c-.24%201.588-.852%203.052-2.03%204.174-.633.603-1.35%201.113-1.995%201.704-.648.594-1.249%201.287-2.067%201.61-.453.18-.944.231-1.43.265-.531.037-1.1.046-1.551-.236-.494-.308-.734-.892-.896-1.45-.154-.533-.264.033-.33-.517-.037-.307-.058-.625.033-.92.481-1.546%202.487-1.309%203.695-1.406zM96.277%2093.608l14.382%201.737s-1.273%209.11-5.906%2023.847c-3.732%2011.874-13.786.627-13.786.627l5.31-26.21zM28.9%20151.8l5.924%202.373c-4.576%2025.677-7.051%2036.153-7.051%2036.153s5.71.788%2010.669.948c3.316.107%206.3-.063%207.005-.948%201.324-1.66%202.913-19.488%206.628-50.47%201.671-13.933%203.535-15.39%204.969-31.998.927-10.739.835-18.65%201.017-24.2.082-2.514.221-4.546.537-6.136-.002%200-8.191%201.543-14.068%204.724-1.446.782-9.753%2023.58-12.888%2033.767-.155.505-16.587%2031.989-16.979%2032.325%22%2F%3E%3Cpath%20d%3D%22M34.824%20154.174s4.078-23.725%206.484-38.16c1.437-8.62%201.175-13.714%201.175-13.714s-7.379%2047.802-10.84%2050.479l3.181%201.395z%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cdefs%3E%3CclipPath%20id%3D%22mobile-error_svg__clip0_411_63%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M0%200h160v160H0z%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3C%2Fsvg%3E',\n\tMobileSunriseYellowGradient: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%20375%20816%22%3E%3Cpath%20fill%3D%22currentColor%22%20fill-opacity%3D%22.8%22%20d%3D%22M0%20621.742L375%200v816H0V621.742z%22%2F%3E%3Cdefs%3E%3ClinearGradient%20id%3D%22mobile-sunrise-yellow-gradient_svg__paint0_linear_3079_41911%22%20x1%3D%22393.135%22%20x2%3D%2249.027%22%20y1%3D%22-84.294%22%20y2%3D%22322.737%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%3Cstop%20offset%3D%22.365%22%20stop-color%3D%22currentColor%22%20stop-opacity%3D%22.21%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22currentColor%22%20stop-opacity%3D%220%22%2F%3E%3C%2FlinearGradient%3E%3C%2Fdefs%3E%3C%2Fsvg%3E',\n\tMoreHoriz: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22more-horiz_svg__a%22%20d%3D%22M6%2010c-1.1%200-2%20.9-2%202s.9%202%202%202%202-.9%202-2-.9-2-2-2zm12%200c-1.1%200-2%20.9-2%202s.9%202%202%202%202-.9%202-2-.9-2-2-2zm-6%200c-1.1%200-2%20.9-2%202s.9%202%202%202%202-.9%202-2-.9-2-2-2z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23more-horiz_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tMoreVert: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22more-vert_svg__a%22%20d%3D%22M12%208c1.1%200%202-.9%202-2s-.9-2-2-2-2%20.9-2%202%20.9%202%202%202zm0%202c-1.1%200-2%20.9-2%202s.9%202%202%202%202-.9%202-2-.9-2-2-2zm0%206c-1.1%200-2%20.9-2%202s.9%202%202%202%202-.9%202-2-.9-2-2-2z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23more-vert_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tNotifications: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22notifications_svg__a%22%20d%3D%22M12.001%2021.75c1.1%200%202-.9%202-2h-4a2%202%200%20002%202zm6-6v-5c0-3.07-1.64-5.64-4.5-6.32v-.68c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5%201.5v.68c-2.87.68-4.5%203.24-4.5%206.32v5l-1.29%201.29c-.63.63-.19%201.71.7%201.71h13.17c.89%200%201.34-1.08.71-1.71l-1.29-1.29z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23notifications_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tNotifyEmployer: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20id%3D%22notify-employer_svg__Layer_2%22%20x%3D%220%22%20y%3D%220%22%20version%3D%221.1%22%20viewBox%3D%220%200%2080%2080%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%3E.notify-employer_svg__st5%7Bfill%3A%23fff%7D.notify-employer_svg__st6%7Bfill%3A%23ea4403%7D.notify-employer_svg__st7%7BfillRule%3Aevenodd%3Bclip-rule%3Aevenodd%3Bfill%3A%230e1375%7D%3C%2Fstyle%3E%3Cswitch%3E%3Cg%3E%3Cdefs%3E%3Ccircle%20id%3D%22notify-employer_svg__SVGID_1_%22%20cx%3D%2240%22%20cy%3D%2240%22%20r%3D%2240%22%2F%3E%3C%2Fdefs%3E%3CclipPath%20id%3D%22notify-employer_svg__SVGID_00000099658801379492981050000004513783029174021807_%22%3E%3Cuse%20overflow%3D%22visible%22%20xlink%3Ahref%3D%22%23notify-employer_svg__SVGID_1_%22%2F%3E%3C%2FclipPath%3E%3Cg%20clip-path%3D%22url(%23notify-employer_svg__SVGID_00000099658801379492981050000004513783029174021807_)%22%3E%3Cdefs%3E%3Cpath%20id%3D%22notify-employer_svg__SVGID_00000054238395243817611210000014499767699019149747_%22%20d%3D%22M0%200h80v80H0z%22%2F%3E%3C%2Fdefs%3E%3CclipPath%20id%3D%22notify-employer_svg__SVGID_00000096763793707302027640000015678274913903690933_%22%3E%3Cuse%20overflow%3D%22visible%22%20xlink%3Ahref%3D%22%23notify-employer_svg__SVGID_00000054238395243817611210000014499767699019149747_%22%2F%3E%3C%2FclipPath%3E%3Cg%20clip-path%3D%22url(%23notify-employer_svg__SVGID_00000096763793707302027640000015678274913903690933_)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M80.001%2040c0%2022.09-17.91%2040-40%2040-22.091%200-40-17.91-40-40%200-22.093%2017.909-40%2040-40%2022.09%200%2040%2017.907%2040%2040%22%2F%3E%3C%2Fg%3E%3Cg%3E%3Cpath%20fill%3D%22currentColor%22%20fillRule%3D%22evenodd%22%20d%3D%22M35.636%2048.237l-.039-3.242-11.272.136.04%203.241%201.53-.018.23%2017.201a2.203%202.203%200%20002.231%202.178l3.617-.044a2.203%202.203%200%20002.177-2.231l-.23-17.2%201.716-.021z%22%20clip-rule%3D%22evenodd%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M66.907%2034.685a6.517%206.517%200%2000-6.186-6.425l.157%2012.997a6.517%206.517%200%20006.029-6.572z%22%2F%3E%3Cpath%20d%3D%22M41.609%2025.057l-18.608.225h-.006l13.576-.164.239%2019.863%205.037-.061c6.64%201.072%2013.309%206.067%2016.602%208.853L57.991%2015.8c-3.224%202.866-9.769%208.025-16.382%209.257zM13.977%2034.435l-.005-.001a.89.89%200%2010.021%201.779l.005-.001a9.132%209.132%200%20009.059%208.926l-.239-19.845a9.13%209.13%200%2000-8.841%209.142z%22%20class%3D%22notify-employer_svg__st5%22%2F%3E%3Cpath%20d%3D%22M22.995%2025.282l-.177.002v.009l.239%2019.845.001.08%2013.753-.166-.001-.071-.239-19.863zM60.543%2013.541a1.29%201.29%200%2000-2.58.031l.027%202.228.458%2037.973.02%201.656a1.29%201.29%200%20102.579-.031l-.171-14.14-.155-12.998-.178-14.719z%22%20class%3D%22notify-employer_svg__st6%22%2F%3E%3Cpath%20id%3D%22notify-employer_svg__Fill-40%22%20d%3D%22M16.575%2037.427l4.571-.056a.36.36%200%2000.357-.366l-.001-.103a.36.36%200%2000-.366-.357l-4.57.055a.362.362%200%2000-.358.365l.001.104c.003.2.167.36.366.358%22%20class%3D%22notify-employer_svg__st7%22%2F%3E%3Cpath%20id%3D%22notify-employer_svg__Fill-43%22%20d%3D%22M16.555%2035.741l4.57-.055c.2-.003.36-.166.358-.367l-.002-.103a.36.36%200%2000-.365-.357l-4.571.055a.362.362%200%2000-.358.365l.001.104a.363.363%200%2000.367.358%22%20class%3D%22notify-employer_svg__st7%22%2F%3E%3Cpath%20id%3D%22notify-employer_svg__Fill-46%22%20d%3D%22M16.534%2034.057l4.571-.055c.2-.003.36-.167.357-.367l-.001-.103a.36.36%200%2000-.366-.357l-4.57.055a.361.361%200%2000-.358.365v.104c.004.2.168.36.367.358%22%20class%3D%22notify-employer_svg__st7%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fswitch%3E%3C%2Fsvg%3E',\n\tOpenInNew: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22open-in-new_svg__a%22%20d%3D%22M18%2019H6c-.55%200-1-.45-1-1V6c0-.55.45-1%201-1h5c.55%200%201-.45%201-1s-.45-1-1-1H5a2%202%200%2000-2%202v14c0%201.1.9%202%202%202h14c1.1%200%202-.9%202-2v-6c0-.55-.45-1-1-1s-1%20.45-1%201v5c0%20.55-.45%201-1%201zM14%204c0%20.55.45%201%201%201h2.59l-9.13%209.13a.996.996%200%20101.41%201.41L19%206.41V9c0%20.55.45%201%201%201s1-.45%201-1V4c0-.55-.45-1-1-1h-5c-.55%200-1%20.45-1%201z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23open-in-new_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tOpenMenu: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2020%2014%22%3E%3Cdefs%3E%3Cpath%20id%3D%22open-menu_svg__a%22%20d%3D%22M1%2014h18c.55%200%201-.45%201-1s-.45-1-1-1H1c-.55%200-1%20.45-1%201s.45%201%201%201zm0-6h18c.55%200%201-.45%201-1s-.45-1-1-1H1c-.55%200-1%20.45-1%201s.45%201%201%201zM0%201c0%20.55.45%201%201%201h18c.55%200%201-.45%201-1s-.45-1-1-1H1C.45%200%200%20.45%200%201z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22evenodd%22%20xlink%3Ahref%3D%22%23open-menu_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tOrangeOvalCopy: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2012%2012%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M6%2012A6%206%200%20106%200a6%206%200%20000%2012z%22%2F%3E%3C%2Fsvg%3E',\n\tPadlockIcon: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M18%208.5h-1v-2c0-2.76-2.24-5-5-5s-5%202.24-5%205v2H6c-1.1%200-2%20.9-2%202v10c0%201.1.9%202%202%202h12c1.1%200%202-.9%202-2v-10c0-1.1-.9-2-2-2zm-9-2c0-1.66%201.34-3%203-3s3%201.34%203%203v2H9v-2zm9%2014H6v-10h12v10zm-6-3c1.1%200%202-.9%202-2s-.9-2-2-2-2%20.9-2%202%20.9%202%202%202z%22%2F%3E%3C%2Fsvg%3E',\n\tPayment: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22payment_svg__a%22%20d%3D%22M20%204H4c-1.11%200-1.99.89-1.99%202L2%2018c0%201.11.89%202%202%202h16c1.11%200%202-.89%202-2V6c0-1.11-.89-2-2-2zm-1%2014H5c-.55%200-1-.45-1-1v-5h16v5c0%20.55-.45%201-1%201zm1-10H4V7c0-.55.45-1%201-1h14c.55%200%201%20.45%201%201v1z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23payment_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tPeople: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22people_svg__a%22%20d%3D%22M16%2011c1.66%200%202.99-1.34%202.99-3S17.66%205%2016%205c-1.66%200-3%201.34-3%203s1.34%203%203%203zm-8%200c1.66%200%202.99-1.34%202.99-3S9.66%205%208%205C6.34%205%205%206.34%205%208s1.34%203%203%203zm0%202c-2.33%200-7%201.17-7%203.5V18c0%20.55.45%201%201%201h12c.55%200%201-.45%201-1v-1.5c0-2.33-4.67-3.5-7-3.5zm8%200c-.29%200-.62.02-.97.05.02.01.03.03.04.04%201.14.83%201.93%201.94%201.93%203.41V18c0%20.35-.07.69-.18%201H22c.55%200%201-.45%201-1v-1.5c0-2.33-4.67-3.5-7-3.5z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23people_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tPerformance: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20id%3D%22performance_svg__Layer_1%22%20x%3D%220%22%20y%3D%220%22%20version%3D%221.1%22%20viewBox%3D%220%200%2080%2080%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%3E.performance_svg__st3%7Bfill%3A%23ed4300%7D%3C%2Fstyle%3E%3Cswitch%3E%3Cg%3E%3Cdefs%3E%3Cpath%20id%3D%22performance_svg__SVGID_1_%22%20d%3D%22M0%200h80v80H0z%22%2F%3E%3C%2Fdefs%3E%3CclipPath%20id%3D%22performance_svg__SVGID_00000141417775543765324190000014071812468421069955_%22%3E%3Cuse%20overflow%3D%22visible%22%20xlink%3Ahref%3D%22%23performance_svg__SVGID_1_%22%2F%3E%3C%2FclipPath%3E%3Cg%20clip-path%3D%22url(%23performance_svg__SVGID_00000141417775543765324190000014071812468421069955_)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M40.001%2080c22.093%200%2040-17.909%2040-40%200-22.093-17.907-40.001-40-40.001S.001%2017.908.001%2040s17.907%2040%2040%2040%22%2F%3E%3C%2Fg%3E%3Cg%20clip-path%3D%22url(%23performance_svg__SVGID_00000141417775543765324190000014071812468421069955_)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M58.562%2060.415H21.438a1.985%201.985%200%2001-1.986-1.986V23.337a1.986%201.986%200%20013.972%200v33.105h35.138a1.986%201.986%200%20110%203.973%22%2F%3E%3C%2Fg%3E%3Cg%20clip-path%3D%22url(%23performance_svg__SVGID_00000141417775543765324190000014071812468421069955_)%22%3E%3Cpath%20d%3D%22M27.033%2041.748h6.37v10.609h-6.37z%22%20class%3D%22performance_svg__st3%22%2F%3E%3C%2Fg%3E%3Cg%20clip-path%3D%22url(%23performance_svg__SVGID_00000141417775543765324190000014071812468421069955_)%22%3E%3Cpath%20d%3D%22M35.748%2029.736h6.367v22.621h-6.367z%22%20class%3D%22performance_svg__st3%22%2F%3E%3C%2Fg%3E%3Cg%20clip-path%3D%22url(%23performance_svg__SVGID_00000141417775543765324190000014071812468421069955_)%22%3E%3Cpath%20d%3D%22M44.464%2032.98h6.367v19.377h-6.367z%22%20class%3D%22performance_svg__st3%22%2F%3E%3C%2Fg%3E%3Cg%20clip-path%3D%22url(%23performance_svg__SVGID_00000141417775543765324190000014071812468421069955_)%22%3E%3Cpath%20d%3D%22M53.179%2022.582h6.367v29.775h-6.367z%22%20class%3D%22performance_svg__st3%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fswitch%3E%3C%2Fsvg%3E',\n\tPermPhoneMsg: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22perm-phone-msg_svg__a%22%20d%3D%22M19.987%203.013h-7c-.55%200-1%20.45-1%201v9l3-3h5c.55%200%201-.45%201-1v-5c0-.55-.45-1-1-1zm-.77%2012.26l-2.54-.29a1.99%201.99%200%2000-1.64.57l-1.84%201.84a15.045%2015.045%200%2001-6.59-6.59l1.85-1.85c.43-.43.64-1.03.57-1.64l-.29-2.52a2.001%202.001%200%2000-1.99-1.77h-1.73c-1.13%200-2.07.94-2%202.07.53%208.54%207.36%2015.36%2015.89%2015.89%201.13.07%202.07-.87%202.07-2v-1.73c.01-1.01-.75-1.86-1.76-1.98z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23perm-phone-msg_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tPerson: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22person_svg__a%22%20d%3D%22M12%2012c2.21%200%204-1.79%204-4s-1.79-4-4-4-4%201.79-4%204%201.79%204%204%204zm0%202c-2.67%200-8%201.34-8%204v1c0%20.55.45%201%201%201h14c.55%200%201-.45%201-1v-1c0-2.66-5.33-4-8-4z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23person_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tPersonAdd: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22person-add_svg__a%22%20d%3D%22M15%2012c2.21%200%204-1.79%204-4s-1.79-4-4-4-4%201.79-4%204%201.79%204%204%204zm-9-2V8c0-.55-.45-1-1-1s-1%20.45-1%201v2H2c-.55%200-1%20.45-1%201s.45%201%201%201h2v2c0%20.55.45%201%201%201s1-.45%201-1v-2h2c.55%200%201-.45%201-1s-.45-1-1-1H6zm9%204c-2.67%200-8%201.34-8%204v1c0%20.55.45%201%201%201h14c.55%200%201-.45%201-1v-1c0-2.66-5.33-4-8-4z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23person-add_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tPiggyBank: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%20149%20149%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M74.052%20148.104c40.898%200%2074.052-33.154%2074.052-74.052S114.95%200%2074.052%200%200%2033.154%200%2074.052s33.154%2074.052%2074.052%2074.052z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M74.053%20125.544c21.92%200%2039.689-2.572%2039.689-5.744%200-3.173-17.77-5.745-39.69-5.745-21.92%200-39.689%202.572-39.689%205.745%200%203.172%2017.77%205.744%2039.69%205.744z%22%20opacity%3D%22.7%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M53.059%20117.815H47c-1.358%200-2.402-1.044-2.402-2.402l-5.222-17.652c0-1.357%201.044-2.402%202.402-2.402l13.264%203.97c1.358%200%202.403%201.044%202.403%202.401l-2.09%2013.787a2.318%202.318%200%2001-2.297%202.298zM94.733%20117.711h6.058c1.358%200%202.402-1.045%202.402-2.403l5.118-17.651c0-1.358-1.045-2.402-2.402-2.402l-13.265%204.073c-1.358%200-2.402%201.045-2.402%202.402l2.089%2013.578c.104%201.358%201.148%202.403%202.402%202.403z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M76.872%2041.57v13.682h-5.849V41.569c-24.44%201.358-37.078%2018.487-36.973%2038.019.104%2020.262%2017.964%2036.66%2040.107%2036.66%2022.142-.104%2040.003-16.607%2039.898-36.87-.104-19.53-12.742-36.555-37.183-37.809z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M74.084%2096.3c8.653-.024%2015.653-5.28%2015.636-11.74-.018-6.461-7.046-11.68-15.699-11.656-8.652.023-15.652%205.28-15.635%2011.74.017%206.46%207.046%2011.679%2015.698%2011.655z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M68.001%2086.377c.808-.002%201.46-1.08%201.456-2.406-.004-1.327-.661-2.4-1.469-2.398-.808.002-1.46%201.08-1.456%202.406.004%201.327.662%202.4%201.47%202.398zM81.468%2083.975c0%201.357-.626%202.402-1.462%202.402-.835%200-1.462-1.045-1.462-2.402%200-1.358.627-2.403%201.462-2.403.836%200%201.462%201.045%201.462%202.403zM39.794%2037.914c-.105%200-.314.104-.418.209-.104.104-7.938%2012.951%201.776%2025.902.104.105.208.21.313.21.104%200%20.104%200%20.209-.105l18.173-10.654c.21-.104.21-.313.21-.522%200-.104-6.372-13.682-20.263-15.04zM106.535%2037.914c-.105-.105-.209-.209-.418-.209-13.891%201.462-20.158%2015.04-20.263%2015.25-.104.208%200%20.417.21.521l18.277%2010.55c.105%200%20.105.104.209.104.105%200%20.209-.105.314-.21%209.713-13.16%201.775-25.902%201.671-26.006zM90.164%2032.683c.166-8.94-6.946-16.32-15.885-16.487-8.94-.166-16.32%206.946-16.487%2015.885-.166%208.94%206.946%2016.321%2015.886%2016.487%208.939.166%2016.32-6.946%2016.486-15.885z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M87.763%2032.53c.08-7.614-6.026-13.851-13.64-13.932-7.613-.08-13.85%206.027-13.931%2013.64-.08%207.614%206.026%2013.85%2013.64%2013.931%207.613.08%2013.85-6.026%2013.931-13.64z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M62.668%2033.11c.313-6.685%206.057-11.803%2012.742-11.49%203.865.21%207.311%202.194%209.4%205.223-1.88-3.76-5.744-6.372-10.236-6.58-6.684-.314-12.429%204.804-12.742%2011.489-.104%202.82.627%205.43%202.089%207.52-.94-1.88-1.358-3.97-1.253-6.163z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M74.366%2024.44c.522%200%20.94.418.94.94v.418c1.253.105%202.297.522%203.237%201.149.314.209.627.522.627%201.044a1.16%201.16%200%2001-1.149%201.15c-.209%200-.418-.105-.626-.21a11.831%2011.831%200%2000-2.09-.94v3.97c3.134.835%204.492%202.088%204.492%204.282%200%202.298-1.776%203.76-4.387%204.073v1.253c0%20.523-.418.94-.94.94a.936.936%200%2001-.94-.94v-1.253c-1.567-.209-3.029-.731-4.282-1.671-.314-.209-.522-.522-.522-1.045a1.16%201.16%200%20011.148-1.148c.21%200%20.523.104.732.209a6.64%206.64%200%20003.029%201.357v-4.073c-3.03-.836-4.387-1.985-4.387-4.282%200-2.194%201.775-3.76%204.386-3.97v-.417c-.208-.418.21-.836.732-.836zm-.836%207.103v-3.656c-1.358.104-1.984.836-1.984%201.776%200%20.73.417%201.357%201.984%201.88zm1.567%202.82v3.76c1.358-.105%202.089-.836%202.089-1.776%200-.94-.418-1.462-2.09-1.984z%22%2F%3E%3C%2Fsvg%3E',\n\tPrint: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22print_svg__a%22%20d%3D%22M19%208H5c-1.66%200-3%201.34-3%203v4c0%201.1.9%202%202%202h2v2c0%201.1.9%202%202%202h8c1.1%200%202-.9%202-2v-2h2c1.1%200%202-.9%202-2v-4c0-1.66-1.34-3-3-3zm-4%2011H9c-.55%200-1-.45-1-1v-4h8v4c0%20.55-.45%201-1%201zm4-7c-.55%200-1-.45-1-1s.45-1%201-1%201%20.45%201%201-.45%201-1%201zm-2-9H7c-.55%200-1%20.45-1%201v2c0%20.55.45%201%201%201h10c.55%200%201-.45%201-1V4c0-.55-.45-1-1-1z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23print_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tQuestionAnswer: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22question-answer_svg__a%22%20d%3D%22M20%206h-1v8c0%20.55-.45%201-1%201H6v1c0%201.1.9%202%202%202h10l4%204V8c0-1.1-.9-2-2-2zm-3%205V4c0-1.1-.9-2-2-2H4c-1.1%200-2%20.9-2%202v13l4-4h9c1.1%200%202-.9%202-2z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23question-answer_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tRefresh: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22refresh_svg__a%22%20d%3D%22M17.642%206.351a7.95%207.95%200%2000-6.48-2.31c-3.67.37-6.69%203.35-7.1%207.02-.55%204.85%203.2%208.94%207.93%208.94a7.98%207.98%200%20007.21-4.56c.32-.67-.16-1.44-.9-1.44-.37%200-.72.2-.88.53a5.994%205.994%200%2001-6.8%203.31c-2.22-.49-4.01-2.3-4.48-4.52a6.002%206.002%200%20015.85-7.32c1.66%200%203.14.69%204.22%201.78l-1.51%201.51c-.63.63-.19%201.71.7%201.71h3.59c.55%200%201-.45%201-1v-3.59c0-.89-1.08-1.34-1.71-.71l-.64.65z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23refresh_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tSearch: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22search_svg__a%22%20d%3D%22M15.977%2014.472h-.79l-.28-.27a6.5%206.5%200%20001.48-5.34c-.47-2.78-2.79-5-5.59-5.34a6.505%206.505%200%2000-7.27%207.27c.34%202.8%202.56%205.12%205.34%205.59a6.5%206.5%200%20005.34-1.48l.27.28v.79l4.25%204.25c.41.41%201.08.41%201.49%200%20.41-.41.41-1.08%200-1.49l-4.24-4.26zm-6%200c-2.49%200-4.5-2.01-4.5-4.5s2.01-4.5%204.5-4.5%204.5%202.01%204.5%204.5-2.01%204.5-4.5%204.5z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23search_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tSend: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22send_svg__a%22%20d%3D%22M3.671%2020.4l17.45-7.48a1%201%200%20000-1.84L3.671%203.6a.993.993%200%2000-1.39.91l-.01%204.61c0%20.5.37.93.87.99L17.271%2012l-14.13%201.88c-.5.07-.87.5-.87%201l.01%204.61c0%20.71.73%201.2%201.39.91z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23send_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tSetUpComplete: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%20149%20148%22%3E%3Ccircle%20cx%3D%2274.494%22%20cy%3D%2274%22%20r%3D%2274%22%20fill%3D%22currentColor%22%2F%3E%3Crect%20width%3D%2271.548%22%20height%3D%22103.166%22%20x%3D%2239%22%20y%3D%2222%22%20fill%3D%22currentColor%22%20rx%3D%226%22%2F%3E%3Crect%20width%3D%2271.548%22%20height%3D%22103.166%22%20x%3D%2239%22%20y%3D%2222%22%20stroke%3D%22currentColor%22%20stroke-width%3D%224%22%20rx%3D%226%22%2F%3E%3Ccircle%20cx%3D%2274.775%22%20cy%3D%2261.209%22%20r%3D%2224.399%22%20fill%3D%22currentColor%22%2F%3E%3Cmask%20id%3D%22set-up-complete_svg__a%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%2250%22%20height%3D%2250%22%20x%3D%2250%22%20y%3D%2236%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Ccircle%20cx%3D%2274.775%22%20cy%3D%2261.209%22%20r%3D%2224.399%22%20fill%3D%22currentColor%22%2F%3E%3C%2Fmask%3E%3Cg%20fill%3D%22currentColor%22%20mask%3D%22url(%23set-up-complete_svg__a)%22%3E%3Cpath%20d%3D%22M65.956%2084.519a.567.567%200%2001-.566.565.567.567%200%2001-.566-.566c0-.31.255-.565.566-.565.311%200%20.566.254.566.566z%22%2F%3E%3Ccircle%20cx%3D%2275.002%22%20cy%3D%2287.001%22%20r%3D%2220%22%2F%3E%3C%2Fg%3E%3Ccircle%20cx%3D%2275.002%22%20cy%3D%2255%22%20r%3D%228%22%20fill%3D%22currentColor%22%2F%3E%3Crect%20width%3D%2221.558%22%20height%3D%222.874%22%20x%3D%2263.994%22%20y%3D%2292.013%22%20fill%3D%22currentColor%22%20rx%3D%221.437%22%2F%3E%3Crect%20width%3D%2250.302%22%20height%3D%222.874%22%20x%3D%2249.623%22%20y%3D%22100.636%22%20fill%3D%22currentColor%22%20rx%3D%221.437%22%2F%3E%3Crect%20width%3D%2250.302%22%20height%3D%222.874%22%20x%3D%2249.623%22%20y%3D%22104.948%22%20fill%3D%22currentColor%22%20rx%3D%221.437%22%2F%3E%3Crect%20width%3D%2250.302%22%20height%3D%222.874%22%20x%3D%2249.623%22%20y%3D%22109.259%22%20fill%3D%22currentColor%22%20rx%3D%221.437%22%2F%3E%3Crect%20width%3D%2214.606%22%20height%3D%2214.606%22%20x%3D%2279.811%22%20y%3D%2267.811%22%20fill%3D%22currentColor%22%20rx%3D%227.303%22%2F%3E%3Crect%20width%3D%2214.606%22%20height%3D%2214.606%22%20x%3D%2279.811%22%20y%3D%2267.811%22%20stroke%3D%22currentColor%22%20stroke-width%3D%221.623%22%20rx%3D%227.303%22%2F%3E%3Cpath%20stroke%3D%22currentColor%22%20stroke-width%3D%221.623%22%20d%3D%22M83.683%2075.568l2.154%201.884%204.46-4.899%22%2F%3E%3C%2Fsvg%3E',\n\tSettings: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22settings_svg__a%22%20d%3D%22M19.432%2012.98c.04-.32.07-.64.07-.98%200-.34-.03-.66-.07-.98l2.11-1.65c.19-.15.24-.42.12-.64l-2-3.46c-.12-.22-.39-.3-.61-.22l-2.49%201c-.52-.4-1.08-.73-1.69-.98l-.38-2.65a.488.488%200%2000-.49-.42h-4c-.25%200-.46.18-.49.42l-.38%202.65c-.61.25-1.17.59-1.69.98l-2.49-1c-.23-.09-.49%200-.61.22l-2%203.46c-.13.22-.07.49.12.64l2.11%201.65c-.04.32-.07.65-.07.98%200%20.33.03.66.07.98l-2.11%201.65c-.19.15-.24.42-.12.64l2%203.46c.12.22.39.3.61.22l2.49-1c.52.4%201.08.73%201.69.98l.38%202.65c.03.24.24.42.49.42h4c.25%200%20.46-.18.49-.42l.38-2.65c.61-.25%201.17-.59%201.69-.98l2.49%201c.23.09.49%200%20.61-.22l2-3.46c.12-.22.07-.49-.12-.64l-2.11-1.65zm-7.43%202.52c-1.93%200-3.5-1.57-3.5-3.5s1.57-3.5%203.5-3.5%203.5%201.57%203.5%203.5-1.57%203.5-3.5%203.5z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23settings_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tShieldIcon: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2048%2048%22%3E%3Cg%20clip-path%3D%22url(%23shield-icon_svg__clip0_411_504)%22%3E%3Cmask%20id%3D%22shield-icon_svg__a%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%2248%22%20height%3D%2248%22%20x%3D%220%22%20y%3D%220%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M48%200H0v48h48V0z%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url(%23shield-icon_svg__a)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M24%2048c13.256%200%2024-10.745%2024-24C48%2010.744%2037.256-.001%2024-.001%2010.745-.001%200%2010.744%200%2024c0%2013.255%2010.745%2024%2024%2024z%22%2F%3E%3C%2Fg%3E%3Cmask%20id%3D%22shield-icon_svg__b%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%2248%22%20height%3D%2248%22%20x%3D%220%22%20y%3D%220%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M48%200H0v48h48V0z%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url(%23shield-icon_svg__b)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M24%2048c13.256%200%2024-10.745%2024-24S37.256%200%2024%200%200%2010.745%200%2024s10.744%2024%2024%2024z%22%2F%3E%3C%2Fg%3E%3Cmask%20id%3D%22shield-icon_svg__c%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%2248%22%20height%3D%2248%22%20x%3D%220%22%20y%3D%220%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M48%200H0v48h48V0z%22%2F%3E%3C%2Fmask%3E%3Cg%20fill%3D%22currentColor%22%20fillRule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20mask%3D%22url(%23shield-icon_svg__c)%22%3E%3Cpath%20d%3D%22M24%209l-12%205.455v8.182C12%2030.205%2017.12%2037.282%2024%2039c6.88-1.718%2012-8.795%2012-16.364v-8.182L24%209zm0%2014.986h9.333C32.627%2029.605%2028.96%2034.609%2024%2036.177V24h-9.333v-7.773L24%2011.986v12z%22%2F%3E%3Cpath%20d%3D%22M24%2023.986h9.333c-.706%205.619-4.373%2010.623-9.333%2012.19V24h-9.333v-7.773L24%2011.986v12z%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cdefs%3E%3CclipPath%20id%3D%22shield-icon_svg__clip0_411_504%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M0%200h48v48H0z%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3C%2Fsvg%3E',\n\tSlideSwitch: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2014%22%3E%3Cpath%20fill%3D%22currentColor%22%20fillRule%3D%22evenodd%22%20d%3D%22M17%200H7C3.1%200%200%203.1%200%207s3.1%207%207%207h10c3.9%200%207-3.1%207-7s-3.1-7-7-7zM7%2011c-2.2%200-4-1.8-4-4s1.8-4%204-4%204%201.8%204%204-1.8%204-4%204z%22%2F%3E%3C%2Fsvg%3E',\n\tSmartphone: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22smartphone_svg__a%22%20d%3D%22M17%201.01L7%201c-1.1%200-2%20.9-2%202v18c0%201.1.9%202%202%202h10c1.1%200%202-.9%202-2V3c0-1.1-.9-1.99-2-1.99zM17%2019H7V5h10v14z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23smartphone_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tSpinner: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2040%2040%22%3E%3Cg%20fill%3D%22currentColor%22%20fillRule%3D%22evenodd%22%3E%3Ccircle%20cx%3D%228%22%20cy%3D%228%22%20r%3D%224%22%2F%3E%3Ccircle%20cx%3D%224%22%20cy%3D%2220%22%20r%3D%224%22%2F%3E%3Ccircle%20cx%3D%228%22%20cy%3D%2232%22%20r%3D%224%22%2F%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2236%22%20r%3D%224%22%2F%3E%3Ccircle%20cx%3D%2232%22%20cy%3D%2232%22%20r%3D%224%22%2F%3E%3Ccircle%20cx%3D%2236%22%20cy%3D%2220%22%20r%3D%224%22%2F%3E%3Ccircle%20cx%3D%2232%22%20cy%3D%228%22%20r%3D%224%22%2F%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%224%22%20r%3D%224%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E',\n\tStacksWithArrows: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20fill%3D%22currentColor%22%20fillRule%3D%22evenodd%22%3E%3Cpath%20d%3D%22M16%206V1a1%201%200%2000-1-1h-5a1%201%200%2000-1%201v5a1%201%200%20001%201h5a1%201%200%20001-1zM7%206V1a1%201%200%2000-1-1H1a1%201%200%2000-1%201v5a1%201%200%20001%201h5a1%201%200%20001-1zM5%202v3H2V2h3zM11%2013H1a1%201%200%20010-2h10V8l5%204-5%204v-3z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E',\n\tSunriseYellowGradient: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%201440%20840%22%3E%3Cpath%20fill%3D%22currentColor%22%20fill-opacity%3D%22.8%22%20d%3D%22M0%20640L1440%200v840H0V640z%22%2F%3E%3Cdefs%3E%3ClinearGradient%20id%3D%22sunrise-yellow-gradient_svg__paint0_linear_2949_54897%22%20x1%3D%221509.64%22%20x2%3D%221354.72%22%20y1%3D%22-86.904%22%20y2%3D%22596.554%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%3Cstop%20offset%3D%22.365%22%20stop-color%3D%22currentColor%22%20stop-opacity%3D%22.21%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22currentColor%22%20stop-opacity%3D%220%22%2F%3E%3C%2FlinearGradient%3E%3C%2Fdefs%3E%3C%2Fsvg%3E',\n\tSupervisorAccount: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22supervisor-account_svg__a%22%20d%3D%22M16.5%2012c1.38%200%202.49-1.12%202.49-2.5S17.88%207%2016.5%207a2.5%202.5%200%20000%205zM9%2011c1.66%200%202.99-1.34%202.99-3S10.66%205%209%205C7.34%205%206%206.34%206%208s1.34%203%203%203zm7.5%203c-1.83%200-5.5.92-5.5%202.75V18c0%20.55.45%201%201%201h9c.55%200%201-.45%201-1v-1.25c0-1.83-3.67-2.75-5.5-2.75zM9%2013c-2.33%200-7%201.17-7%203.5V18c0%20.55.45%201%201%201h6v-2.25c0-.85.33-2.34%202.37-3.47C10.5%2013.1%209.66%2013%209%2013z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23supervisor-account_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tSwitchClosed: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22switch-closed_svg__a%22%20d%3D%22M14%2012l4%203-4%203v-2H7v-2h7v-2zm-4-6v2h7v2h-7v2L6%209l4-3z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23switch-closed_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tSwitchOpen: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22switch-open_svg__a%22%20d%3D%22M14%2012l4%203-4%203v-2H7v-2h7v-2zm-4-6v2h7v2h-7v2L6%209l4-3z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20transform%3D%22rotate(90%2012%2012)%22%20xlink%3Ahref%3D%22%23switch-open_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tTag: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cpath%20fill%3D%22currentColor%22%20fillRule%3D%22evenodd%22%20d%3D%22M15.7%208.3l-8-8C7.5.1%207.3%200%207%200H1C.4%200%200%20.4%200%201v6c0%20.3.1.5.3.7l8%208c.2.2.4.3.7.3.3%200%20.5-.1.7-.3l6-6c.4-.4.4-1%200-1.4zM4%205c-.6%200-1-.4-1-1s.4-1%201-1%201%20.4%201%201-.4%201-1%201z%22%2F%3E%3C%2Fsvg%3E',\n\tTelephone: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22currentColor%22%20fillRule%3D%22evenodd%22%20d%3D%22M3.62%207.79c1.44%202.83%203.76%205.14%206.59%206.59l2.2-2.2c.27-.27.67-.36%201.02-.24%201.12.37%202.33.57%203.57.57.55%200%201%20.45%201%201V17c0%20.55-.45%201-1%201C7.61%2018%200%2010.39%200%201c0-.55.45-1%201-1h3.5c.55%200%201%20.45%201%201%200%201.25.2%202.45.57%203.57.11.35.03.74-.25%201.02l-2.2%202.2z%22%2F%3E%3C%2Fsvg%3E',\n\tTellYourEmployer: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%20148%20148%22%3E%3Ccircle%20cx%3D%2274%22%20cy%3D%2274%22%20r%3D%2274%22%20fill%3D%22currentColor%22%2F%3E%3Cmask%20id%3D%22tell-your-employer_svg__a%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%22148%22%20height%3D%22148%22%20x%3D%220%22%20y%3D%220%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Ccircle%20cx%3D%2274%22%20cy%3D%2274%22%20r%3D%2274%22%20fill%3D%22currentColor%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url(%23tell-your-employer_svg__a)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M83.281%20140.235c-.51.403-1.428.948-2.404%202.531-2.087%203.39-2.944%203.765-3.573%204.044l-.057.024c-.269.115-.328.341-.29.514.097.453.856.888%201.616.577.395-.164.848-.565%201.278-.955.657-.591%201.336-1.205%201.775-.92.105.067.233.382-.132%201.705-.251.934-.66%202.079-1.025%203.096a46.684%2046.684%200%2000-.587%201.708c-.503%201.62-.375%202.511-.031%202.672.11.049.394.107.762-.512.173-.287.387-.793.629-1.398-.483%201.741-.472%202-.476%202.098.015.409.163.868.452.919.243.041.51-.212.78-.754.1-.199.22-.501.363-.873-.034.329.003.444.045.506a.142.142%200%2000.169.06c.35-.093.754-.598%201.185-1.495.166-.338.331-.734.501-1.17-.008.184.007.323.055.414a.202.202%200%2000.17.129c.196.019.423-.182.713-.638.23-.368.5-.899.804-1.58.512-1.17%201.107-2.758%201.633-4.366.765-2.341.543-3.536.387-4.398a5.009%205.009%200%2001-.102-.719%208.26%208.26%200%2001.372-.966l-4.43-1.13c-.2.42-.4.735-.593.889l.011-.012zM101.394%2075.22a15.237%2015.237%200%20007.701-4.91c-.37-2.609-12.876-2.33-11.911.288.544%201.482%201.109%203.084%201.058%205.069%201.016%200%202.053-.15%203.152-.447z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M138.119%20116.024c-2.074-7.161-5.013-25.116-10.26-28.83a11.129%2011.129%200%2000-3.071-1.535c-.112-.041-4.474-1.435-10.159-2.645-1.688%202.156-3.04%203.876-2.888%203.336-.59.072-2.176-1.963-4.179-4.577-7.525-.997-15.335-.865-18.416%203.052a36.587%2036.587%200%2000-1.576%202.156c-4.322%204.527-6.39%2027.141-8.705%2041.037-2.542%2015.259-4.067%2030.518-4.067%2030.518l1.017%201.018%206.64%201.19.986-.173c2.543-6.104%201.017-15.259%203.051-22.889%201.05-3.935%201.912-16.236%201.912-16.236l-4.597%2031.495s9.844%201.618%2011.329%202.035c5.084%201.444%208.145.498%2036.007-3.306.326%206.846.539%2013.672%201.007%2019.633l.824.102%204.515.529%201.474.173.59.071c2.99-31.139.763-48.575-1.434-56.164v.01z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M111.745%2086.735c-.155.541%201.219-1.208%202.934-3.416-2.252-.48-4.7-.937-7.179-1.27%202.035%202.676%203.656%204.759%204.245%204.686zM123.453%20117.144s4.478%205.893%204.655%209.299c.178%203.407.122%2013.831.122%2013.831l-1.038-14.316-3.739-8.804v-.01zM133.247%20168.212c-.098.392-.228.669-.408.8a.159.159%200%2001-.179.008c-.065-.041-.147-.131-.228-.441.008.376%200%20.694-.017.898-.057.579-.204.897-.448.946-.294.065-.604-.294-.759-.653-.041-.089-.138-.31-.334-2.031%200%20.628-.008%201.15-.065%201.468-.115.677-.4.735-.514.726-.384-.024-.832-.766-.963-2.381-.041-.449-.057-1.069-.081-1.721-.041-1.028-.082-2.194-.196-3.108-.155-1.305-.392-1.533-.514-1.558-.522-.097-.922.686-1.321%201.444-.261.498-.522%201.02-.84%201.305-.588.547-1.46.424-1.721.057-.098-.138-.131-.359.081-.563l.041-.04c.481-.465%201.142-1.11%201.827-4.853.318-1.754.979-2.561%201.305-3.1.359-.595.253-2.536.09-4.102l-.661-.082c-.367-4.788-.546-10.252-.807-15.741-22.34%203.058-32.96.546-37.038-.612l-.326%204.886-7.765%2068.373s27.895%2011.117%2057.241-1.786c0%200-3.075-17.83-5.4-38.139zM103.512%2074.868c.274-.238.531-.51.797-.798a11.76%2011.76%200%2001-.797.798zM105.107%2074.072c.271-.26.542-.518.798-.798-.271.28-.527.539-.798.798zM108.298%2070.88c-.252.273-.525.546-.798.797.273-.251.535-.524.798-.797z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M109.81%2082.176c-1.509-4.034-1.002-7.536-.486-10.444.083-.46.166-.9.238-1.33a.807.807%200%20000-.318c-.238.317-.496.614-.754.911l-.031.03a13.39%2013.39%200%2001-.755.78c-.051.05-.113.101-.165.153-.207.194-.424.389-.651.573-.114.102-.238.194-.362.297-.165.123-.32.256-.486.368-.186.144-.382.277-.578.41-.104.062-.207.133-.3.195-.258.163-.527.317-.806.47-.041.021-.093.052-.134.072-.321.174-.651.328-.992.481a20.41%2020.41%200%2001-1.096.43c-.217.072-.424.154-.641.215-1.105.328-2.15.482-3.172.492a12.59%2012.59%200%2001-.29%202.365c-.258%201.218-.713%202.57-1.446%204.085l-4.558%2012.4s10.283-3.226%2016.68-11.253c.403-.328.702-.707.868-1.147-.031-.082-.052-.164-.083-.246v.01z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M108.555%2073.847s.226-1.542.36-2.255c.082-.445.164-.87.236-1.285a.754.754%200%20000-.307c-1.953%202.453-4.614%204.322-7.708%205.212-1.1.317-1.426.778-2.443.788-.02.712-.315%201.18-.5%202%200%200%205.029.278%2010.045-4.143l.01-.01z%22%20opacity%3D%22.5%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M118.964%2060.335c-.276-2.343-2.72-2.997-3.964-2.835-10.14%204.797-21.482-8.87-18.485-17.5-3.242%201.126-5.803%203.51-6.462%207.21%200%200-.393%201.542-.702%203.977-.712%205.68-.946%2016.217%205.442%2023.346a4.27%204.27%200%20002.626%201.39c.223.03.457.04.68.05%201.329.092%202.679-.05%204.135-.466.223-.06.446-.142.659-.223a15.807%2015.807%200%20007.6-5.477c.372-.487.723-.994%201.031-1.521.138-.243.338-.043.476-.286%202.689.568%207.528-2.878%206.954-7.686l.01.02z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M126.679%2052.276C128.5%2090%20119.801%2084.5%20114.5%2084l-2.5-1c-1.586-.343-.835-.288-2.561-.56-1.465-3.98-.973-7.433-.471-10.3.08-.455.16-.89.231-1.314.01-.11.01-.211%200-.313.09-.12.18-.232.271-.353.351-.485.682-.99.973-1.515a12.9%2012.9%200%2000.391-.727c2.539.556%207.165-2.423%206.623-7.21-.261-2.343-1.676-2.656-2.85-2.494-9.573%204.776-21.173-9.17-18.343-17.753-3.071%201.11-5.48%203.494-6.102%207.18%200%200-.37%201.535-.662%203.958-2.428-3.18-2.388-6.412-.923-8.977-.17-2.1.452-4.484%202.358-6.554%201.295-1.404%203.914-2.15%205.248-1.596%201.777-1.999%202.98-3.019%205.841-3.382%206.121-.768%2014.519%202.449%2014.976%205.91%209.679%200%209.679%2015.276%209.679%2015.276zM57.766%2035.727c-3.173-2.81-6.267%203.74-17.293-.76-6.312%202.13-6.754%2011.05-6.629%2014.959.136.306.272.68.442%201.122%200%200%20.363.85.952%201.971%201.144%202.188%203.127%205.44%205.009%205.78%202.855.521%204.906-.329%208.623-.215%203.717.113%205.508%201.065%208.386.713%202.879-.35%203.343-9.1%203.343-9.1.046-.51.09-.94.114-1.291.079-1.78.101-5.077-.51-8.046-.431-2.085-1.168-4.012-2.426-5.133h-.01z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M61.608%2050.141c.204-2.3.272-4.351.238-6.198-.362-16.511-9.858-15.605-14.425-15.74-5.1-.148-9.837-1.055-13.576%202.685-4.896%204.884-3.411%2014.766-2.81%2017.791%200%20.034.01.068.022.102v.012c.102.51.17.804.17.804h.011c.08.329.17.714.284%201.11.85%203.038%202.22%206.097%202.22%206.097%202.516%206.63%205.757%2010.947%207.185%2012.738.216.272.522.487.918.668%201.28.59%203.49.76%206.652.782.827.046%201.62.068%202.38.08.895.01%201.745%200%202.516-.034%201.858-.102%203.263-.408%203.807-1.02%201.53-1.7%204.34-7.547%204.476-14.233%200%200%20.182-1.882.102-3.82a15.555%2015.555%200%2000-.17-1.824zm-.906-1.235c-.023.351-.068.782-.113%201.292%200%200-.465%208.748-3.343%209.1-2.879.35-4.67-.601-8.386-.714-3.717-.114-5.768.736-8.624.215-1.881-.34-3.864-3.592-5.009-5.78-.589-1.133-.952-1.971-.952-1.971-.17-.442-.306-.816-.442-1.122-.124-3.91.318-12.828%206.63-14.959%2011.026%204.5%2014.12-2.05%2017.292.76%201.258%201.122%201.995%203.048%202.426%205.133.611%202.97.589%206.267.51%208.046h.01z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M43.896%2077.497h.26l5.519-4.669a8.04%208.04%200%2001-1.87.227%209.019%209.019%200%2001-5.915-2.81l-.057-.057c-.396-.181-.702-.397-.918-.669-1.428-1.79-4.657-6.096-7.184-12.737%200%200-1.383-3.06-2.221-6.097-.114-.396-.204-.782-.284-1.099h-.011s-.068-.306-.17-.816v-.011c0-.034-.011-.068-.023-.102-1.303-.34-3.082-.26-3.524%202.425-.805%204.918%203.728%208.272%206.505%208.012a29.293%2029.293%200%20002.47%204.623c.147%202.437.6%205.247.34%207.015l7.094%206.743-.011.022z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M48.498%2070.981c-3.162-.011-5.383-.193-6.652-.782l.056.057a9.019%209.019%200%20005.916%202.81c.623%200%201.258-.09%201.87-.227l1.507-1.269c-.102-.158-.216-.328-.306-.51-.76-.011-1.553-.045-2.38-.079h-.011z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M54.934%2073.553l-3.74-1.983-1.507%201.269-5.519%204.669h-.26l-7.094-6.743-3.638%202.165s.488%2019.967%201.598%2045.147c.193%204.227-.08%2028.943.113%2033.386%205.746%201.892%2012.976%202.651%2020.047%203.037V73.553z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M48.498%2070.981c-3.162-.011-5.383-.193-6.652-.782l.056.057a9.019%209.019%200%20005.916%202.81c.623%200%201.258-.09%201.87-.227l1.507-1.269c-.102-.158-.216-.328-.306-.51-.76-.011-1.553-.045-2.38-.079h-.011z%22%20opacity%3D%22.3%22%2F%3E%3Cpath%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%22.295%22%20d%3D%22M43.86%2079.05l-8.091%208.023-2.765-4.68M43.862%2079.05l6.8%208.022%204.895-8.963%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M45.822%2061.848l8.091.204s.057%203.49-3.773%203.377c-5.02-.159-4.318-3.581-4.318-3.581zM34.105%20147.812c.634.068%201.269.125%201.915.193a93.477%2093.477%200%2001-1.916-.193zM28.71%20147.177c1.666.227%203.434.431%205.281.612a198.958%20198.958%200%2001-5.28-.612zM33.99%20147.802s.068%200%20.113.011c-.033%200-.067%200-.112-.011z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M86.164%20154.952a71.197%2071.197%200%2001-4.113-1.235c-3.558-1.179-4.771-2.708-5.655-3.819-.215-.272-.42-.51-.623-.725l-.363%201.677c-6.788-.555-13.519-.986-19.91-1.405l.102%2014.403-18.97.306c-.182-5.292-.386-10.72-.601-16.171a93.477%2093.477%200%2001-1.915-.193c-.034%200-.068%200-.113-.011a207.624%20207.624%200%2001-5.281-.612c-6.64-.884-11.638-2.062-14.154-3.819a12.26%2012.26%200%2001-1.62-1.36l-6.12%2047.765c1.224%201.519%204.012%202.561%207.423%203.286-1.236%2042.859-1.349%20113.945%202.867%20127.306l14.686.974%2011.49-117.503%208.976%20117.775%2018.981-2.72c3.717-25.044%204.023-88.594.952-127.86%203.355-.646%205.768-1.303%205.768-1.303-2.969-8.397-4.997-23.231-6.323-37.011%203.116%2010.573%206.765%2021.429%2010.822%2030.155l3.615-1.893%206.221-3.263%203.128-1.643c-3.58-6.448-6.675-13.905-9.236-21.124l-.034.023zM59.33%2075.876l-.52-.272c.17.103.34.204.52.306v-.034zM54.923%2073.315v.227l3.887%202.05c-2.176-1.291-3.887-2.288-3.887-2.288v.01z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M77.439%20124.207c.272-12.964-2.777-39.13-7.423-42.144-.76-.498-1.473-.782-2.153-.918-1.824-1.37-4.93-3.06-4.93-3.06a253.058%20253.058%200%2000-3.603-2.164c-.17-.102-.351-.204-.521-.306l-3.887-2.05L54%20142.02c-2.708-.147-4.337.306-7%200-2.312-.26-5.67-1.257-7.811-1.688-1.836-.374-3.592-.805-5.224-1.349-.193-4.453%201-16.669.808-20.896-1.11-25.18-1.598-45.147-1.598-45.147-1.847%201.258-8.147%202.05-8.147%202.05-5.111%201.032-8.567%201.667-10.8%202.573-3.57%201.258-7.422%203.921-7.422%209.53%200%200-6.845%2042.303%206.119%2054.927.51.499%201.054.952%201.62%201.36%202.516%201.757%207.514%202.935%2014.154%203.819%202.255.306%204.714.567%207.32.816%201.338.125%202.72.249%204.137.363%202.448.204%205.009.396%207.66.578%202.482.17%205.043.34%207.672.51.748.045%201.508.102%202.267.147%205.711.374%2011.65.771%2017.644%201.258l.363-1.677%2010.811%207.119c.454.034-4.697-13.667-4.697-13.667s0-1.005-.528-2.869c-2.56-9.055-3.91-15.571-3.91-15.571z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E',\n\tTimeline: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22timeline_svg__a%22%20d%3D%22M23%208c0%201.1-.9%202-2%202a1.7%201.7%200%2001-.51-.07l-3.56%203.55c.05.16.07.34.07.52%200%201.1-.9%202-2%202s-2-.9-2-2c0-.18.02-.36.07-.52l-2.55-2.55c-.16.05-.34.07-.52.07s-.36-.02-.52-.07l-4.55%204.56c.05.16.07.33.07.51%200%201.1-.9%202-2%202s-2-.9-2-2%20.9-2%202-2c.18%200%20.35.02.51.07l4.56-4.55C8.02%209.36%208%209.18%208%209c0-1.1.9-2%202-2s2%20.9%202%202c0%20.18-.02.36-.07.52l2.55%202.55c.16-.05.34-.07.52-.07s.36.02.52.07l3.55-3.56A1.7%201.7%200%200119%208c0-1.1.9-2%202-2s2%20.9%202%202zm0%200c0%201.1-.9%202-2%202a1.7%201.7%200%2001-.51-.07l-3.56%203.55c.05.16.07.34.07.52%200%201.1-.9%202-2%202s-2-.9-2-2c0-.18.02-.36.07-.52l-2.55-2.55c-.16.05-.34.07-.52.07s-.36-.02-.52-.07l-4.55%204.56c.05.16.07.33.07.51%200%201.1-.9%202-2%202s-2-.9-2-2%20.9-2%202-2c.18%200%20.35.02.51.07l4.56-4.55C8.02%209.36%208%209.18%208%209c0-1.1.9-2%202-2s2%20.9%202%202c0%20.18-.02.36-.07.52l2.55%202.55c.16-.05.34-.07.52-.07s.36.02.52.07l3.55-3.56A1.7%201.7%200%200119%208c0-1.1.9-2%202-2s2%20.9%202%202z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23timeline_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tToday: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22today_svg__a%22%20d%3D%22M19%204h-1V3c0-.55-.45-1-1-1s-1%20.45-1%201v1H8V3c0-.55-.45-1-1-1s-1%20.45-1%201v1H5c-1.11%200-1.99.9-1.99%202L3%2020a2%202%200%20002%202h14c1.1%200%202-.9%202-2V6c0-1.1-.9-2-2-2zm-1%2016H6c-.55%200-1-.45-1-1V9h14v10c0%20.55-.45%201-1%201zM8%2011h3c.55%200%201%20.45%201%201v3c0%20.55-.45%201-1%201H8c-.55%200-1-.45-1-1v-3c0-.55.45-1%201-1z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23today_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tTransactions: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2020%2020%22%3E%3Cg%20fill%3D%22currentColor%22%20fillRule%3D%22evenodd%22%20stroke%3D%22currentColor%22%3E%3Cpath%20d%3D%22M9.764.598c2.858-.095%205.232.969%206.95%202.688A9.482%209.482%200%200119.5%2010a9.424%209.424%200%2001-2.556%206.472h0l1.555%201.554-4.308.616.615-4.308%201.672%201.671a8.828%208.828%200%20001.504-9.79A8.826%208.826%200%200010%201.165a.332.332%200%2001-.236-.568zM5.81%201.357l-.616%204.308-1.672-1.671a8.828%208.828%200%2000-1.504%209.79A8.826%208.826%200%200010%2018.835c-1.85.667-3.615.131-5.113-.824A9.485%209.485%200%20011.38%2014%209.487%209.487%200%20013.055%203.526h0L1.501%201.973l4.308-.616z%22%2F%3E%3Cpath%20d%3D%22M10.27%205.814a7.187%207.187%200%20011.9.271l.307.095-.14.35a8%208%200%2000-2.042-.391l-.35-.013v.064l-.103-.012a2.134%202.134%200%2000-1.346.353l-.146.106a1.32%201.32%200%2000-.475%201.02c-.008.372.13.734.414%201.036a3.02%203.02%200%20001.733.767l-.077-.01v.083l.866.33c.61.193%201.171.519%201.64.953a1.488%201.488%200%2001.368%201.042c.013.485-.193.951-.56%201.27-.596.47-1.34.718-2.104.697l-.21-.012v.025l-.247.018a6.69%206.69%200%2001-2.213-.27l-.304-.098v-.38c.256.09.517.167.782.23.558.146%201.133.22%201.71.223l.346-.008v-.014l.168-.008c.622-.045%201.08-.199%201.394-.42l.11-.087c.315-.27.48-.623.482-1.068a1.38%201.38%200%2000-.469-1.063%203.389%203.389%200%2000-1.758-.73l.073.011v-.072l-.918-.34a3.627%203.627%200%2001-1.466-.914%201.73%201.73%200%2001-.396-1l-.003-.158v-.025A1.46%201.46%200%20017.79%206.49a3.213%203.213%200%20012.012-.654l.219.012-.001-.031.25-.003z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E',\n\tTrendingDown: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22trending-down_svg__a%22%20d%3D%22M16.646%2016.951l1.44-1.44-4.88-4.88-3.29%203.29a.996.996%200%2001-1.41%200l-6-6.01a.996.996%200%20111.41-1.41l5.29%205.3%203.29-3.29a.996.996%200%20011.41%200l5.59%205.58%201.44-1.44a.5.5%200%2001.85.35v4.29c0%20.28-.22.5-.5.5h-4.29c-.44.01-.66-.53-.35-.84z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23trending-down_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tTrendingFlat: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22trending-flat_svg__a%22%20d%3D%22M21.254%2011.65l-2.79-2.79a.501.501%200%2000-.86.35V11h-14c-.55%200-1%20.45-1%201s.45%201%201%201h14v1.79c0%20.45.54.67.85.35l2.79-2.79c.2-.19.2-.51.01-.7z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23trending-flat_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tTrendingUp: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22trending-up_svg__a%22%20d%3D%22M16.646%207.054l1.44%201.44-4.88%204.88-3.29-3.29a.996.996%200%2000-1.41%200l-6%206.01a.996.996%200%20101.41%201.41l5.29-5.3%203.29%203.29c.39.39%201.02.39%201.41%200l5.59-5.58%201.44%201.44a.5.5%200%2000.85-.35v-4.3a.48.48%200%2000-.49-.5h-4.29a.5.5%200%2000-.36.85z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23trending-up_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tUmbrella: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cpath%20fill%3D%22currentColor%22%20fillRule%3D%22evenodd%22%20d%3D%22M11%2013c0%20.6-.4%201-1%201s-1-.4-1-1V8h7c0-4.4-3.6-8-8-8S0%203.6%200%208h7v5c0%201.7%201.3%203%203%203s3-1.3%203-3v-1h-2v1z%22%2F%3E%3C%2Fsvg%3E',\n\tUmbrellaCover: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2080%2080%22%3E%3Cg%20clip-path%3D%22url(%23umbrella-cover_svg__clip0_409_3)%22%3E%3Cmask%20id%3D%22umbrella-cover_svg__a%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%2280%22%20height%3D%2280%22%20x%3D%220%22%20y%3D%220%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M80%200H0v80h80V0z%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url(%23umbrella-cover_svg__a)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M40.001%2080c22.093%200%2040-17.909%2040-40%200-22.093-17.907-40.001-40-40.001S.001%2017.908.001%2040s17.907%2040%2040%2040z%22%2F%3E%3C%2Fg%3E%3Cmask%20id%3D%22umbrella-cover_svg__b%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%2280%22%20height%3D%2280%22%20x%3D%220%22%20y%3D%220%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M80%200H0v80h80V0z%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url(%23umbrella-cover_svg__b)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M35.678%2062.326a5.438%205.438%200%2001-5.431-5.429%201.102%201.102%200%20012.204%200%203.23%203.23%200%20003.227%203.227%203.231%203.231%200%20003.227-3.227V30.335a1.101%201.101%200%20112.204%200v26.561a5.44%205.44%200%2001-5.431%205.43z%22%2F%3E%3C%2Fg%3E%3Cmask%20id%3D%22umbrella-cover_svg__c%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%2280%22%20height%3D%2280%22%20x%3D%220%22%20y%3D%220%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M80%200H0v80h80V0z%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url(%23umbrella-cover_svg__c)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M40.005%2021.994a1.103%201.103%200%2001-1.102-1.102v-4.194a1.103%201.103%200%20012.205%200v4.194c0%20.609-.494%201.102-1.103%201.102z%22%2F%3E%3C%2Fg%3E%3Cmask%20id%3D%22umbrella-cover_svg__d%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%2280%22%20height%3D%2280%22%20x%3D%220%22%20y%3D%220%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M80%200H0v80h80V0z%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url(%23umbrella-cover_svg__d)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M21.079%2038.96c2.792%200%205.197%201.522%206.326%203.723%201.129-2.2%203.532-3.723%206.325-3.723%202.792%200%205.198%201.522%206.328%203.723%201.128-2.2%203.532-3.723%206.325-3.723s5.197%201.522%206.326%203.723c1.128-2.2%203.532-3.723%206.325-3.723%202.82%200%205.243%201.551%206.359%203.783-.062-13.972-11.402-24.505-25.389-24.505-14.026%200-25.396%2010.593-25.396%2024.617h.055c1.089-2.292%203.55-3.895%206.416-3.895z%22%2F%3E%3C%2Fg%3E%3Cmask%20id%3D%22umbrella-cover_svg__e%22%20style%3D%22mask-type%3Aalpha%22%20width%3D%2280%22%20height%3D%2280%22%20x%3D%220%22%20y%3D%220%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M80%200H0v80h80V0z%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url(%23umbrella-cover_svg__e)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M56.185%2026.276l-1.54-4.415a1.384%201.384%200%2000-1.311-.96c-.632%200-1.147.43-1.317%201.006l-1.533%204.37c-.102.303-.17.624-.17.963a3.022%203.022%200%20106.043%200%202.97%202.97%200%2000-.172-.964z%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cdefs%3E%3CclipPath%20id%3D%22umbrella-cover_svg__clip0_409_3%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M0%200h80v80H0z%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3C%2Fsvg%3E',\n\tUnfundedBanner: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%20307%20183%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M153.498%20173c84.774%200%20153.497-5.596%20153.497-12.5S238.272%20148%20153.498%20148C68.723%20148%200%20153.596%200%20160.5S68.723%20173%20153.498%20173z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M231.585%20115.648c-2.745%201.218-5.384%202.873-7.868%204.875a210.75%20210.75%200%200010.99-17.46c3.102-5.503%206.137-12.29%204.581-18.844-5.596-.655-10.932%203.117-15.581%207.312-12.884%2011.609-23.391%2027.08-33.327%2043.103%2016.779-27.902%2032.341-57.715%2038.856-92.133%201.45-7.632%202.368-16.073-.309-23.09-11%201.218-19.506%2013.033-26.05%2024.822a256.611%20256.611%200%2000-8.293%2016.292%20404.573%20404.573%200%20004.427-27.093c1.16-9.07%202.001-18.345%201.015-27.453-.116-1.051-.329-2.232-1.025-2.745-.879-.641-1.942.154-2.745.95-14.305%2014.188-22.018%2037.24-26.542%2060.164a308.954%20308.954%200%2000-4.301%2029.222c-2.3-22.628-7.791-44.68-16.132-64.654-.996-2.386-2.436-5.067-4.495-4.99-1.817%205.824-1.778%2012.328-1.662%2018.64a1555.1%201555.1%200%20003.402%2078.341c-1.305-4.9-3.257-9.621-5.345-13.982-8.67-18.178-19.969-34.136-33.105-46.746-2.823-2.707-7.462-4.824-9.173-.796-.474%201.116-.541%202.463-.474%203.746.261%205.067%202.33%209.608%204.36%2013.906a2412.175%202412.175%200%200025.102%2051.685c2.59%205.169%205.229%2010.378%208.264%2015.073l-2.968-3.9c1.383%207.094%206.129%2012.354%2011.309%2014.881%205.181%202.54%2010.816%202.796%2016.335%203.04l22.56.962c6.795.295%2013.648.577%2020.327-1.103%2013.658-3.438%2025.711-15.112%2033.705-30.185%201.74-3.271%203.247-7.979%201.227-10.942-1.682-2.476-4.697-1.924-7.075-.86l.01-.038z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M181.994%2044.725s-12.483%202.718-18.008%207.253c-6.733%205.499-7.231%2016.06-17.511%2048.153-4.344%2013.553.001%2024.869%2017.51%2014.869l.001%209.5%2030.093%201.652V44.524l-12.085.2zM206.165%2044.725s12.482%202.718%2018.008%207.253c6.733%205.5%207.231%2016.06%2017.511%2048.153%204.343%2013.554-1.829%2019.304-7.019%2017.838-3.485-.99-6.061-4.435-8.525-7.253-1.83-2.105-4.045-3.883-4.045-3.883l-.685%2018.903h-27.33V44.512l12.085.2v.013z%22%2F%3E%3Cg%20fill%3D%22currentColor%22%20clip-path%3D%22url(%23unfunded-banner_svg__clip0_3800_42968)%22%3E%3Cpath%20d%3D%22M205.36%2079.772c0%201.103-5.085%201.35-6.05%201.433-4.577.39-9.22.406-13.809.118-1.868-.118-3.783-.267-5.585-.633-.562-.114-2.085-.37-2.085-.918%200-.736%202.546-1.011%203.256-1.117%204.697-.7%209.569-.787%2014.351-.563%202.174.102%204.446.248%206.62.555.849.118%203.306.307%203.306%201.125h-.004zM191.962%2070.626s5.426.72%207.748-6.246c2.318-6.967%203.755-8.545%203.755-8.545s-.089-.528-1.403.118c-.724.358-1.546.559-2.306.822-1.259.441-2.511.925-3.709%201.52-1.224.606-2.441%201.33-3.402%202.326a5.59%205.59%200%2000-.946%201.275c-.512.976-.775%202.16-.876%203.247-.089.953.05%201.952.19%202.897a7.47%207.47%200%2000.407%201.594c.077.197.163.39.267.575.035.067.194.41.272.417h.003zM190.423%2071.338s-3.368%201.374-5.996-2.708c-2.628-4.085-3.81-4.857-3.81-4.857s-.031-.354.919-.161c.949.192%206.701.047%208.022%202.64%201.318%202.594%201.186%204.346.865%205.086z%22%2F%3E%3Cpath%20d%3D%22M187.099%2076.668c2.507-.68%205.096-.437%207.639-.189%201.608.158%203.259.327%204.709%201.126%201.449.799%202.682%202.37%202.763%204.259.027.621-.077%201.27-.38%201.794-.376.658-1.004%201.051-1.604%201.413-1.477.89-2.954%201.783-4.43%202.673-.659.397-1.329.799-2.046%201.011-1.097.323-2.237.181-3.345.012a81.466%2081.466%200%2001-5.418-1.011c-1.086-.24-2.217-.54-3.02-1.41-3.472-3.79%202.244-8.895%205.132-9.678zM177.832%2079.699h-.004v.02s.004-.012.004-.02z%22%2F%3E%3Cpath%20d%3D%22M205.556%2096.19c0-1.291-.352-14.681-.232-16.327-.427.98-5.097%201.209-6.015%201.287-4.577.39-9.22.406-13.809.118-1.868-.118-3.783-.267-5.585-.633-.562-.114-2.085-.37-2.085-.913%200%204.266.147%208.572.031%2012.83-.027%201.004-.074%202.008-.109%203.012-.131%204.081.101%208.371%202.647%2011.74%202.151%202.846%205.601%204.613%209.108%204.613h4.372c4.829%200%209.263-3.255%2010.894-7.816.9-2.515.783-5.27.787-7.904l-.004-.008zM191.38%2078.533a.359.359%200%2001-.357-.35c-.534-14.067%207.267-18.058%207.597-18.224a.353.353%200%2001.476.17.37.37%200%2001-.166.488c-.078.039-7.713%203.975-7.194%2017.538.008.2-.147.37-.344.378h-.016.004z%22%2F%3E%3Cpath%20d%3D%22M191.542%2073.744a.354.354%200%2001-.329-.225c-1.834-4.404-6.771-7.462-6.822-7.494a.37.37%200%2001-.124-.5.357.357%200%2001.493-.126c.209.13%205.189%203.216%207.111%207.833a.363.363%200%2001-.19.476.352.352%200%2001-.139.028v.008z%22%2F%3E%3C%2Fg%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M222.442%20148.52c.448-7.053-.066-16.895-1.025-23.885h-57.256l-1.346%2015.642L164.161%20181c8.426%202.342%2023.84%200%2023.84%200l4.086-15.469V181c8.052%201.917%2029.33%200%2029.33%200l1.025-32.48zM186.735%2033.313c1.22%203.695%202.552%204.384-.821%2011.437%202.402%204.083%2014.35%204.296%2015.893%200-2.302-5.938-1.07-7.441-.411-11.437.66-3.984-15.893-3.696-14.661%200z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M186.461%2033.476c.647%201.966%201.954%203.169%201.494%205.436-.1.464%203.36%202.706%206.409%202.744%203.099.05%206.111-1.967%206.086-2.656-.1-2.318%201.02-3.971%201.282-5.562.659-3.983-16.503-3.658-15.283.038h.012z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M191.59%2032.812l7.679-.025s.149%203.119-3.485%203.106c-4.754-.012-4.194-3.081-4.194-3.081z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M189.76%2032.812l7.678-.025s.15%203.119-3.484%203.106c-4.754-.012-4.194-3.081-4.194-3.081zM159.604%20100.244l-7.181%205.687s.684-2.117%201.593-2.956c.908-.839%205.588-2.731%205.588-2.731zM228.179%20100.882l8.799%202.142s-1.344-1.403-2.402-1.654c-1.058-.25-6.397-.488-6.397-.488z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M205.068%2092.552c-.56.501-.672%202.142.237%203.207.485.564%201.331%201.027%202.153%201.478%201.244.677%202.538%201.39%202.426%202.368-.024.238-.336%201.303-2.339%201.929-1.407.438-7.356%202.33-8.052%202.505-2.502.664-3.535%201.691-3.448%202.405.025.226.199.739%201.307.764.51.013%201.344-.087%202.327-.263-2.651.815-2.974%201.053-3.099%201.153-.51.388-.983%201.052-.796%201.578.162.439.709.627%201.63.576.336-.012.834-.087%201.419-.212-.448.238-.573.4-.61.538a.34.34%200%2000.075.338c.423.489%201.568.188%203.036-.2%201.295-.351%2013.939-5.637%2019.005-3.758%202.875%201.065%205.762%203.771%205.799%203.771.1%200%205.364-9.057%205.265-9.045%200%200-10.666-2.505-12.384-3.62-.883-.576-2.24-1.741-5.065-2.23-6.036-1.027-7.119-2.217-7.903-3.094l-.074-.075c-.336-.376-.685-.3-.896-.113h-.013zM177.948%2082.456c.722.225%201.493%201.666%201.095%203.019-.211.714-.796%201.49-1.356%202.242-.859%201.14-1.743%202.317-1.233%203.157.125.2.847%201.052%202.925.789%201.469-.188%207.654-.952%208.363-1.065%202.552-.438%203.908.063%204.132.752.063.213.112.751-.871%201.24-.46.225-1.257.476-2.228.726%202.751-.363%203.137-.275%203.299-.238.634.138%201.331.552%201.369%201.103.037.463-.386.864-1.245%201.215-.311.125-.797.263-1.381.4.51.038.684.138.784.239a.331.331%200%2001.074.338c-.186.614-1.356.827-2.85%201.077-1.319.226-15.009.677-18.855%204.485-2.19%202.167-3.696%205.837-3.721%205.85-.099.037-8.6-6.013-8.5-6.051%200%200%208.674-6.714%209.795-8.443.572-.889%201.319-2.517%203.696-4.133%205.078-3.458%205.563-4.986%205.924-6.1l.037-.101c.15-.476.498-.564.772-.476l-.025-.025z%22%2F%3E%3Cg%20fill%3D%22currentColor%22%20clip-path%3D%22url(%23unfunded-banner_svg__clip1_3800_42968)%22%3E%3Cpath%20d%3D%22M206.704%2027.92c2.643-7.572%201.081-14.97-3.489-16.523-4.57-1.554-10.417%203.324-13.06%2010.896-2.643%207.571-1.081%2014.97%203.488%2016.523%204.57%201.554%2010.417-3.325%2013.061-10.896z%22%2F%3E%3Cpath%20d%3D%22M186.64%209.842c-.313-1.798-.613-3.7.038-5.412%201.102-2.88%204.526-4.195%207.637-4.399.945-.062%201.909-.05%202.836.136%202.103.432%203.906%201.742%205.928%202.453%202.022.716%204.683.618%205.847-1.162.733%201.736.344%203.954-.864%205.406a4.243%204.243%200%20002.83-.148c2.122%204.627.951%2010.206-1.734%2014.544-2.686%204.337-6.698%207.68-10.649%2010.941-2.566-2.984-5.127-5.968-7.693-8.952-1.572-1.829-3.168-3.695-4.119-5.9-.952-2.206-1.234-5.4-.076-7.507h.019z%22%2F%3E%3Cpath%20d%3D%22M191.147%2033.35c-6.291-3.602-10.085-10.583-10.147-17.762-.019-2.07.319-4.232%201.546-5.907%201.227-1.674%203.537-2.706%205.496-1.977%204.614%207.76%205.378%2016.935%203.105%2025.646z%22%2F%3E%3Cpath%20d%3D%22M195.592%2042a7.105%207.105%200%20004.683-2.033c6.998-6.889%205.759-19.535%205.759-19.535%200-4.276-5.234-6.401-10.429-6.376-5.203-.031-10.436%202.094-10.436%206.37%200%200-1.246%2012.646%205.747%2019.541A7.1%207.1%200%2000195.592%2042z%22%2F%3E%3Cpath%20d%3D%22M207.198%2015.508c0-4.751-5.815-7.118-11.594-7.087-5.778-.03-11.6%202.33-11.6%207.08%200%200-1.383%2014.062%206.392%2021.723a7.857%207.857%200%20005.202%202.262%207.855%207.855%200%20005.202-2.262c7.775-7.654%206.404-21.716%206.404-21.716h-.006z%22%2F%3E%3Cpath%20d%3D%22M210.041%2023.045c-.802-3.275-3.919-1.13-3.919-1.13l-.989%207.58c2.122.39%205.866-2.54%204.908-6.45zM181.156%2023.033c.801-3.275%203.919-1.13%203.919-1.13l.983%207.58c-2.122.383-5.866-2.546-4.908-6.45h.006z%22%2F%3E%3C%2Fg%3E%3Cg%20clip-path%3D%22url(%23unfunded-banner_svg__clip2_3800_42968)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M108.779%2047.744c-3.63%204.9-7.301%2010.204-9.282%207.455-3.35-4.66-6.007-6.476-2.156-11.745%203.333-4.56%206.124-8.638%209.282-7.454%203.158%201.183%205.518%207.208%202.156%2011.744z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M104.566%2050.481c4.224-1.178%206.631-5.814%205.378-10.344-1.253-4.536-5.687-7.255-9.911-6.077-4.225%201.178-6.63%205.814-5.378%2010.344%201.252%204.536%205.687%207.255%209.911%206.077zM107.275%2053.195c.56-.376.123-2.802-.139-3.148-.257-.351-2.704%201.419-2.413%201.806.292.386%202.179%201.594%202.552%201.342z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M95.86%2047.316s-2.365%203.822-7.062%204.015l-.28%204.624%206.73%205.93s.49-7.296%203.805-7.606c3.135-.287-3.193-6.969-3.193-6.969v.006z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M98.11%2058.99s3.129%204.296%202.767%208.229c-.309%203.317-3.641%2012.167-4.2%2014.241a2.248%202.248%200%2000.186%201.647c1.043%201.957%201.952%205.814%203.129%207.15.623.703-4.464%203.815-4.464%203.815l-5.646-8.357a3.164%203.164%200%2001-.273-1.717c.471-4.038%202.132-23.648%208.5-25.001v-.006zM68.219%20110.816c-3.187-2.192%207.645%2016.914%208.07%2025.939.425%209.02.274%2019.252.274%2019.252s9.24%201.817%209.16%201.102l1.905-22.001-5.507-32.801-13.902%208.503v.006z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M60.23%2096.487c-2.977-2.473-4.166%2026.724-4.55%2035.756-.38%209.019-2.518%2022.903-2.518%2022.903s9.037%202.643%209.02%201.922l5.087-23.126%202.47-27.715-9.515-9.746.006.006zM65.52%2074.217s3.66-6.857%205.28-10.426c1.62-3.57%204.847-12.718%208.85-12.466h9.142s-1.701%2021.016%201.498%2023.777c0%200-19.764%2010.21-22.334%209.922L65.509%2074.21l.011.006z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M96.362%2057.215c-5.646%201.823-7.563-5.89-7.563-5.89s-3.59%2019-4.912%2021.643c0%200%208.437.915%208.99%203.435.548%202.526%205.233-17.418%205.233-17.418l-1.748-1.776v.006z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M94.613%2073.162l3.158-4.577s0-4.612.332-9.594l-1.054-1.067c-.542%203.364-1.655%2013.404-2.442%2015.244l.006-.006zM84.58%2071.028s1.433-19.703%201.841-19.709h2.372s-1.935%2017.611-1.539%2021.644l-2.674-1.94v.005z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M66.47%2080.405S51.753%2094.125%2048%20127.003l42.995%202.438c-5.5-18.818-4.964-41.698-1.107-43.738%203.852-2.04%206.887-5.098%207.703-12.436l.187-4.688s-5.874%204.46-12.97-.41c0%200-6.608%208.585-12.942%208.667%200%200-2.668%209.272-5.384%203.564l-.011.005z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M85.64%2088.083s.933-.03%201.521.187c.583.206%202.605%201.5%202.826%201.823.222.316.088.832-.437.862-.524.029-2.033-.082-2.027-.604%200-.528-1.882-2.262-1.882-2.262v-.006z%22%2F%3E%3Cpath%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-miterlimit%3D%2210%22%20stroke-width%3D%221.8%22%20d%3D%22M128.361%20110.816l-2.93%2011.792%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M122.057%20117.439l-22.514-.61.996-7.238%2022.206%204.032-.688%203.822v-.006z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M122.605%20113.471l5.191-1.992-2.494%2010.021-3.88-4.378%201.183-3.651z%22%2F%3E%3Cpath%20stroke%3D%22currentColor%22%20stroke-miterlimit%3D%2210%22%20stroke-width%3D%223.23%22%20d%3D%22M96.274%20102.049a7.774%207.774%200%2001-11.036.252c-3.117-2.995-3.228-7.965-.25-11.1a7.774%207.774%200%200111.035-.252c3.118%202.995%203.228%207.964.25%2011.1z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M94.352%20120.68l-13.35-12.841a2.087%202.087%200%2001.1-3.089l18.744-15.8%2012.429%2011.956-14.864%2019.533a2.047%202.047%200%2001-3.06.241z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M81.102%20104.75a2.082%202.082%200%2000-.1%203.089l13.35%2012.841a2.053%202.053%200%20003.065-.241l14.864-19.533L99.852%2088.95l-18.744%2015.8h-.006z%22%2F%3E%3Cpath%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-miterlimit%3D%2210%22%20stroke-width%3D%221.97%22%20d%3D%22M98.948%2088.077l7.115%206.845%206.84%206.588%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M119.721%20114.233l-12.574-16.914-1.089.82%2012.574%2016.915%201.089-.821zM81.626%2056.998L70.468%2075.266l10.604%2011.281-2.022%203.136S65.697%2083.2%2065.528%2077.827c-.07-2.186%2010.558-24.445%2010.558-24.445l5.547%203.616h-.006z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M82.034%2052.064c-.525-.358-3.188-2.186-7.558%201.77-4.364%203.955-9.864%2011.932-10.26%2021.315-.146%203.498%203.985%2010.32%205.762%2011.064%200%200%203.013-1.752%206.579-6.3l-2.984-5.684s3.619-11.388%207.325-13.937c2.895-1.993%202.394-7.379%201.136-8.228zM80.222%2090.626s1.002.592%201.363%201.184c.367.598%201.44%202.005%203.106%202.385%201.66.376%202.995-1.066%203.525-1.64.53-.58.501-.551.927-1.202.425-.65-.35-1.207-.35-1.207s-2.127-.733-1.632-1.881c-1.719-.909-3.723-.141-4.86-.797-1.135-.663-1.555-1.266-1.555-1.266l-2.249%203.047%201.719%201.372.006.005z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M74.669%2076.31l.885-.335c-1.252-5.175%201.841-11.334%202.185-11.657%200%200-4.754%205.609-3.07%2011.991zM108.295%2035.583c-1.381-1.3-2.855-1.898-3.98-2.238.321-1.635-.274-3.394-1.695-4.454a4.427%204.427%200%2000-6.217.908%204.481%204.481%200%2000-.286%204.905c-3.513%202.526-5%207.309-3.321%2011.657.35.909.821%201.729%201.375%202.462a.697.697%200%20001.23-.229c.302-1.032.81-2.028%201.474-2.971a2.165%202.165%200%2001-.53-1.383%202.175%202.175%200%20012.144-2.21c1.2-.017%202.179.95%202.196%202.157%200%20.31-.058.598-.169.867%203.164.657%206.101.158%208.653-2.743-.606%201.712%201.084%204.337%201.084%204.337s4.073-5.397-1.958-11.065zM52.976%20142.475l13.53%201.225-4.125%2021.362s-.327%203.622%201.928%205.386c2.25%201.758%204.032%201.922%204.982%202.186.944.263%201.678.914%201.632%201.846-.03.504-.088%201.219-.146%201.776a.82.82%200%2001-.886.738l-7.575-.686s-4.847-1.705-5.558-1.77l-.577%201.214-5.96-.54a.9.9%200%2001-.81-.978c.128-1.354.378-3.845.629-4.572.343-1.019%201.404-3.235%201.34-4.506-.064-1.272.326-16.48%201.602-22.675l-.011-.012.005.006zM75.252%20143.401H88.84l-2.203%2021.649s0%203.64%202.395%205.187c2.395%201.553%204.19%201.553%205.157%201.729.967.182%201.753.756%201.788%201.694.024.51.018%201.225.012%201.781a.815.815%200%2001-.816.815h-7.61s-4.975-1.26-5.692-1.26l-.466%201.26H75.42a.898.898%200%2001-.892-.897c0-1.359.035-3.868.216-4.612.25-1.049%201.107-3.352.926-4.612-.18-1.26-1.148-16.439-.425-22.728v-.011l.006.005zM125.326%20160.948s7.394.972%2010.552-8.428c3.164-9.4%205.122-11.528%205.122-11.528s-.123-.709-1.912.159c-.984.48-2.109.756-3.14%201.107-1.713.592-3.421%201.248-5.052%202.051-1.666.821-3.327%201.794-4.638%203.136-.501.516-.95%201.084-1.288%201.723-.699%201.318-1.054%202.913-1.194%204.384-.123%201.283.07%202.631.256%203.909.111.732.286%201.459.554%202.15.105.264.221.528.367.774.046.088.262.551.367.563h.006zM123.235%20161.909s-4.586%201.852-8.169-3.651c-3.578-5.509-5.192-6.552-5.192-6.552s-.041-.481%201.253-.217c1.293.258%209.13.064%2010.931%203.563%201.794%203.499%201.614%205.861%201.177%206.863v-.006zM139.083%20174.814h-27.612c1.777-2.819%205.081-5.134%207.225-5.714%201.754-.475%203.531-.616%205.314-.598.326%200%20.647.017.979.029%201.375.053%202.744.194%204.113.317%202.197.211%204.44.439%206.416%201.518%201.631.885%203.059%202.484%203.565%204.448z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M124.534%20171.608a.486.486%200%2001-.484-.474c-.728-18.977%209.9-24.363%2010.349-24.585a.476.476%200%2001.646.228.492.492%200%2001-.227.656c-.105.053-10.505%205.363-9.8%2023.666a.49.49%200%2001-.472.509h-.024.012z%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M124.761%20165.15a.482.482%200%2001-.449-.305c-2.5-5.942-9.224-10.068-9.294-10.109a.492.492%200%2001.502-.844c.285.176%207.067%204.337%209.689%2010.567a.493.493%200%2001-.256.644.45.45%200%2001-.192.035v.012z%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3CclipPath%20id%3D%22unfunded-banner_svg__clip0_3800_42968%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M0%200h27.839v56.283H0z%22%20transform%3D%22translate(177.722%2055.63)%22%2F%3E%3C%2FclipPath%3E%3CclipPath%20id%3D%22unfunded-banner_svg__clip1_3800_42968%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M0%200h31v42H0z%22%20transform%3D%22translate(181)%22%2F%3E%3C%2FclipPath%3E%3CclipPath%20id%3D%22unfunded-banner_svg__clip2_3800_42968%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M0%200h93v149H0z%22%20transform%3D%22translate(48%2028)%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3C%2Fsvg%3E',\n\tUpload: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22upload_svg__a%22%20d%3D%22M10%2016.296h4c.55%200%201-.45%201-1v-5h1.59c.89%200%201.34-1.08.71-1.71l-4.59-4.59a.996.996%200%2000-1.41%200l-4.59%204.59c-.63.63-.19%201.71.7%201.71H9v5c0%20.55.45%201%201%201zm-4%202h12c.55%200%201%20.45%201%201s-.45%201-1%201H6c-.55%200-1-.45-1-1s.45-1%201-1z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23upload_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tVerifiedUser: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22verified-user_svg__a%22%20d%3D%22M11.19%201.266l-7%203.11C3.47%204.696%203%205.416%203%206.206v4.7c0%205.55%203.84%2010.74%209%2012%205.16-1.26%209-6.45%209-12v-4.7c0-.79-.47-1.51-1.19-1.83l-7-3.11c-.51-.23-1.11-.23-1.62%200zm-1.9%2014.93l-2.59-2.59a.996.996%200%20111.41-1.41l1.89%201.88%205.88-5.88a.996.996%200%20111.41%201.41l-6.59%206.59a.996.996%200%2001-1.41%200z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23verified-user_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tVideoPlay: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2087%2087%22%3E%3Cpath%20fill%3D%22currentColor%22%20fillRule%3D%22evenodd%22%20d%3D%22M35.124%2029.562v28l22-14z%22%2F%3E%3C%2Fsvg%3E',\n\tVideoPlayBg: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2087%2087%22%3E%3Cg%20fill%3D%22currentColor%22%20fillRule%3D%22evenodd%22%20transform%3D%22translate(.124%20.562)%22%3E%3Ccircle%20cx%3D%2242.876%22%20cy%3D%2242.876%22%20r%3D%2242.876%22%20fill-opacity%3D%22.64%22%2F%3E%3Cpath%20d%3D%22M35%2029v28l22-14z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E',\n\tVisibility: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22visibility_svg__a%22%20d%3D%22M12%204.5C7%204.5%202.73%207.61%201%2012c1.73%204.39%206%207.5%2011%207.5s9.27-3.11%2011-7.5c-1.73-4.39-6-7.5-11-7.5zM12%2017c-2.76%200-5-2.24-5-5s2.24-5%205-5%205%202.24%205%205-2.24%205-5%205zm0-8c-1.66%200-3%201.34-3%203s1.34%203%203%203%203-1.34%203-3-1.34-3-3-3z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23visibility_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tVisibilityOff: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22visibility-off_svg__a%22%20d%3D%22M12%206.47c2.76%200%205%202.24%205%205%200%20.51-.1%201-.24%201.46l3.06%203.06c1.39-1.23%202.49-2.77%203.18-4.53-1.73-4.38-6-7.49-11-7.49-1.27%200-2.49.2-3.64.57l2.17%202.17c.47-.14.96-.24%201.47-.24zM2.71%203.13a.996.996%200%20000%201.41l1.97%201.97A11.892%2011.892%200%20001%2011.47c1.73%204.39%206%207.5%2011%207.5%201.52%200%202.97-.3%204.31-.82l2.72%202.72a.996.996%200%20101.41-1.41L4.13%203.13c-.39-.39-1.03-.39-1.42%200zM12%2016.47c-2.76%200-5-2.24-5-5%200-.77.18-1.5.49-2.14l1.57%201.57c-.03.18-.06.37-.06.57%200%201.66%201.34%203%203%203%20.2%200%20.38-.03.57-.07l1.57%201.57c-.65.32-1.37.5-2.14.5zm2.97-5.33a2.97%202.97%200%2000-2.64-2.64l2.64%202.64z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23visibility-off_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tWarning: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22warning_svg__a%22%20d%3D%22M4.47%2020.504h15.06c1.54%200%202.5-1.67%201.73-3l-7.53-13.01c-.77-1.33-2.69-1.33-3.46%200l-7.53%2013.01c-.77%201.33.19%203%201.73%203zm7.53-7c-.55%200-1-.45-1-1v-2c0-.55.45-1%201-1s1%20.45%201%201v2c0%20.55-.45%201-1%201zm1%204h-2v-2h2v2z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23warning_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tWarningAmber: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22warning-amber_svg__a%22%20d%3D%22M12%205.494l7.53%2013.01H4.47L12%205.494zm-9.26%2012.01c-.77%201.33.19%203%201.73%203h15.06c1.54%200%202.5-1.67%201.73-3l-7.53-13.01c-.77-1.33-2.69-1.33-3.46%200l-7.53%2013.01zm8.26-7v2c0%20.55.45%201%201%201s1-.45%201-1v-2c0-.55-.45-1-1-1s-1%20.45-1%201zm0%205h2v2h-2v-2z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23warning-amber_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tWithdrawDollar: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2011%2018%22%3E%3Cg%20fill%3D%22none%22%20fillRule%3D%22evenodd%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M5.48%207.9c-2.27-.59-3-1.2-3-2.15%200-1.09%201.01-1.85%202.7-1.85%201.78%200%202.44.85%202.5%202.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V0h-3v2.16C1.74%202.58.18%203.84.18%205.77c0%202.31%201.91%203.46%204.7%204.13%202.5.6%203%201.48%203%202.41%200%20.69-.49%201.79-2.7%201.79-2.06%200-2.87-.92-2.98-2.1H0c.12%202.19%201.76%203.42%203.68%203.83V18h3v-2.15c1.95-.37%203.5-1.5%203.5-3.55%200-2.84-2.43-3.81-4.7-4.4z%22%2F%3E%3Cpath%20d%3D%22M-7-3h24v24H-7z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E',\n\tWithdrawMoney: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2048%2048%22%3E%3Cdefs%3E%3Crect%20id%3D%22withdraw-money_svg__a%22%20width%3D%2248%22%20height%3D%2248%22%20x%3D%220%22%20y%3D%220%22%20rx%3D%2224%22%2F%3E%3C%2Fdefs%3E%3Cg%20fill%3D%22none%22%20fillRule%3D%22evenodd%22%3E%3Cmask%20id%3D%22withdraw-money_svg__b%22%20fill%3D%22currentColor%22%3E%3Cuse%20xlink%3Ahref%3D%22%23withdraw-money_svg__a%22%2F%3E%3C%2Fmask%3E%3Cuse%20fill%3D%22currentColor%22%20xlink%3Ahref%3D%22%23withdraw-money_svg__a%22%2F%3E%3Cg%20mask%3D%22url(%23withdraw-money_svg__b)%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M24.48%2022.9c-2.27-.59-3-1.2-3-2.15%200-1.09%201.01-1.85%202.7-1.85%201.78%200%202.44.85%202.5%202.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V15h-3v2.16c-1.94.42-3.5%201.68-3.5%203.61%200%202.31%201.91%203.46%204.7%204.13%202.5.6%203%201.48%203%202.41%200%20.69-.49%201.79-2.7%201.79-2.06%200-2.87-.92-2.98-2.1H19c.12%202.19%201.76%203.42%203.68%203.83V33h3v-2.15c1.95-.37%203.5-1.5%203.5-3.55%200-2.84-2.43-3.81-4.7-4.4z%22%2F%3E%3Cpath%20d%3D%22M12%2012h24v24H12z%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E',\n\tZoomIn: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22zoom-in_svg__a%22%20d%3D%22M15.97%2014.472h-.79l-.28-.27a6.5%206.5%200%20001.48-5.34c-.47-2.78-2.79-5-5.59-5.34-4.23-.52-7.78%203.04-7.27%207.27.34%202.8%202.56%205.12%205.34%205.59a6.5%206.5%200%20005.34-1.48l.27.28v.79l4.26%204.25c.41.41%201.07.41%201.48%200l.01-.01c.41-.41.41-1.07%200-1.48l-4.25-4.26zm-6%200c-2.49%200-4.5-2.01-4.5-4.5s2.01-4.5%204.5-4.5%204.5%202.01%204.5%204.5-2.01%204.5-4.5%204.5zm0-7c-.28%200-.5.22-.5.5v1.5h-1.5c-.28%200-.5.22-.5.5s.22.5.5.5h1.5v1.5c0%20.28.22.5.5.5s.5-.22.5-.5v-1.5h1.5c.28%200%20.5-.22.5-.5s-.22-.5-.5-.5h-1.5v-1.5c0-.28-.22-.5-.5-.5z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23zoom-in_svg__a%22%2F%3E%3C%2Fsvg%3E',\n\tZoomOut: '%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cdefs%3E%3Cpath%20id%3D%22zoom-out_svg__a%22%20d%3D%22M15.972%2014.472h-.79l-.28-.27a6.5%206.5%200%20001.48-5.34c-.47-2.78-2.79-5-5.59-5.34a6.505%206.505%200%2000-7.27%207.27c.34%202.8%202.56%205.12%205.34%205.59a6.5%206.5%200%20005.34-1.48l.27.28v.79l4.26%204.25c.41.41%201.07.41%201.48%200l.01-.01c.41-.41.41-1.07%200-1.48l-4.25-4.26zm-6%200c-2.49%200-4.5-2.01-4.5-4.5s2.01-4.5%204.5-4.5%204.5%202.01%204.5%204.5-2.01%204.5-4.5%204.5zm-2-5h4c.28%200%20.5.22.5.5s-.22.5-.5.5h-4c-.28%200-.5-.22-.5-.5s.22-.5.5-.5z%22%2F%3E%3C%2Fdefs%3E%3Cuse%20fill%3D%22currentColor%22%20fillRule%3D%22nonzero%22%20xlink%3Ahref%3D%22%23zoom-out_svg__a%22%2F%3E%3C%2Fsvg%3E',\n};\n\n// ------------------------------------------\n// Don't touch anything!!\n\n/* ENTIRE FILE AUTO-GENERATED BY 'yarn generate-icons' SCRIPT */\n\nconst REACT_SVGS = {\n\tAIcon,\n\tAccountArrowNav,\n\tAccountBalanceWallet,\n\tAccountCircle,\n\tAdd,\n\tAddCircleOutline,\n\tAdjustment,\n\tAgePension,\n\tAnnouncement,\n\tAppstore,\n\tArrowBack,\n\tArrowBackIos,\n\tArrowBackMau,\n\tArrowDownward,\n\tArrowDropDown,\n\tArrowDropUp,\n\tArrowForward,\n\tArrowForwardIos,\n\tArrowLeft,\n\tArrowLeftAlt,\n\tArrowRight,\n\tArrowRightAlt,\n\tArrowUpward,\n\tAsFullLogo,\n\tAsLogo,\n\tAttachment,\n\tAusSuperSymbolTonalWhite,\n\tAutorenew,\n\tBIcon,\n\tBullet,\n\tCIcon,\n\tCalculator,\n\tCancel,\n\tCentrelinkSchedule,\n\tCheck,\n\tCheckCircle,\n\tCheckCircleOutline,\n\tCheckDetails,\n\tChecklist,\n\tChevronDown,\n\tChevronLeft,\n\tChevronRight,\n\tChevronUp,\n\tClaim,\n\tClear,\n\tClose,\n\tCloseMenu,\n\tColumnGraph,\n\tComputer,\n\tComputerError,\n\tConsolidate,\n\tConsolidatePuzzle,\n\tConsolidateSuper,\n\tContactDetails,\n\tContactSupport,\n\tContributionsPiggyBank,\n\tCreditCard,\n\tCsHourglass,\n\tCurrentBalance,\n\tDIcon,\n\tDelete,\n\tDescription,\n\tDone,\n\tDownload,\n\tDownloadConcrete,\n\tEdit,\n\tEmployerSuitcase,\n\tError,\n\tErrorOutline,\n\tEvent,\n\tExitToApp,\n\tExpandLess,\n\tExpandMore,\n\tFavorite,\n\tFeedback,\n\tFilterList,\n\tFlyerCover,\n\tFourStacks,\n\tFutureContributions,\n\tGetApp,\n\tGoogleplay,\n\tHelp,\n\tHelpOutline,\n\tHome,\n\tHomeMunicipal,\n\tIllustrationNoNotifications,\n\tInfo,\n\tLadyDesk,\n\tLaptopLocked,\n\tLaptopTick,\n\tLaunch,\n\tLink,\n\tLoading,\n\tLock,\n\tLockMau,\n\tLockedComputer,\n\tLogoBpay,\n\tMail,\n\tMakeChangesInvestments,\n\tMemberDetails,\n\tMenu,\n\tMinus,\n\tMobileError,\n\tMobileSunriseYellowGradient,\n\tMoreHoriz,\n\tMoreVert,\n\tNotifications,\n\tNotifyEmployer,\n\tOpenInNew,\n\tOpenMenu,\n\tOrangeOvalCopy,\n\tPadlockIcon,\n\tPayment,\n\tPeople,\n\tPerformance,\n\tPermPhoneMsg,\n\tPerson,\n\tPersonAdd,\n\tPiggyBank,\n\tPrint,\n\tQuestionAnswer,\n\tRefresh,\n\tSearch,\n\tSend,\n\tSetUpComplete,\n\tSettings,\n\tShieldIcon,\n\tSlideSwitch,\n\tSmartphone,\n\tSpinner,\n\tStacksWithArrows,\n\tSunriseYellowGradient,\n\tSupervisorAccount,\n\tSwitchClosed,\n\tSwitchOpen,\n\tTag,\n\tTelephone,\n\tTellYourEmployer,\n\tTimeline,\n\tToday,\n\tTransactions,\n\tTrendingDown,\n\tTrendingFlat,\n\tTrendingUp,\n\tUmbrella,\n\tUmbrellaCover,\n\tUnfundedBanner,\n\tUpload,\n\tVerifiedUser,\n\tVideoPlay,\n\tVideoPlayBg,\n\tVisibility,\n\tVisibilityOff,\n\tWarning,\n\tWarningAmber,\n\tWithdrawDollar,\n\tWithdrawMoney,\n\tZoomIn,\n\tZoomOut,\n};\n\n// ------------------------------------------\n// Don't touch anything!!\n\n/* ENTIRE FILE AUTO-GENERATED BY 'yarn generate-icons' SCRIPT */\n\nenum ICONS {\n\tACCOUNT_ARROW_NAV = 'AccountArrowNav',\n\tACCOUNT_BALANCE_WALLET = 'AccountBalanceWallet',\n\tACCOUNT_CIRCLE = 'AccountCircle',\n\tADD = 'Add',\n\tADD_CIRCLE_OUTLINE = 'AddCircleOutline',\n\tADJUSTMENT = 'Adjustment',\n\tAGE_PENSION = 'AgePension',\n\tANNOUNCEMENT = 'Announcement',\n\tAPPSTORE = 'Appstore',\n\tARROW_BACK = 'ArrowBack',\n\tARROW_BACK_IOS = 'ArrowBackIos',\n\tARROW_BACK_MAU = 'ArrowBackMau',\n\tARROW_DOWNWARD = 'ArrowDownward',\n\tARROW_DROP_DOWN = 'ArrowDropDown',\n\tARROW_DROP_UP = 'ArrowDropUp',\n\tARROW_FORWARD = 'ArrowForward',\n\tARROW_FORWARD_IOS = 'ArrowForwardIos',\n\tARROW_LEFT = 'ArrowLeft',\n\tARROW_LEFT_ALT = 'ArrowLeftAlt',\n\tARROW_RIGHT = 'ArrowRight',\n\tARROW_RIGHT_ALT = 'ArrowRightAlt',\n\tARROW_UPWARD = 'ArrowUpward',\n\tAS_FULL_LOGO = 'AsFullLogo',\n\tAS_LOGO = 'AsLogo',\n\tATTACHMENT = 'Attachment',\n\tAUS_SUPER_SYMBOL_TONAL_WHITE = 'AusSuperSymbolTonalWhite',\n\tAUTORENEW = 'Autorenew',\n\tA_ICON = 'AIcon',\n\tBULLET = 'Bullet',\n\tB_ICON = 'BIcon',\n\tCALCULATOR = 'Calculator',\n\tCANCEL = 'Cancel',\n\tCENTRELINK_SCHEDULE = 'CentrelinkSchedule',\n\tCHECK = 'Check',\n\tCHECKLIST = 'Checklist',\n\tCHECK_CIRCLE = 'CheckCircle',\n\tCHECK_CIRCLE_OUTLINE = 'CheckCircleOutline',\n\tCHECK_DETAILS = 'CheckDetails',\n\tCHEVRON_DOWN = 'ChevronDown',\n\tCHEVRON_LEFT = 'ChevronLeft',\n\tCHEVRON_RIGHT = 'ChevronRight',\n\tCHEVRON_UP = 'ChevronUp',\n\tCLAIM = 'Claim',\n\tCLEAR = 'Clear',\n\tCLOSE = 'Close',\n\tCLOSE_MENU = 'CloseMenu',\n\tCOLUMN_GRAPH = 'ColumnGraph',\n\tCOMPUTER = 'Computer',\n\tCOMPUTER_ERROR = 'ComputerError',\n\tCONSOLIDATE = 'Consolidate',\n\tCONSOLIDATE_PUZZLE = 'ConsolidatePuzzle',\n\tCONSOLIDATE_SUPER = 'ConsolidateSuper',\n\tCONTACT_DETAILS = 'ContactDetails',\n\tCONTACT_SUPPORT = 'ContactSupport',\n\tCONTRIBUTIONS_PIGGY_BANK = 'ContributionsPiggyBank',\n\tCREDIT_CARD = 'CreditCard',\n\tCS_HOURGLASS = 'CsHourglass',\n\tCURRENT_BALANCE = 'CurrentBalance',\n\tC_ICON = 'CIcon',\n\tDELETE = 'Delete',\n\tDESCRIPTION = 'Description',\n\tDONE = 'Done',\n\tDOWNLOAD = 'Download',\n\tDOWNLOAD_CONCRETE = 'DownloadConcrete',\n\tD_ICON = 'DIcon',\n\tEDIT = 'Edit',\n\tEMPLOYER_SUITCASE = 'EmployerSuitcase',\n\tERROR = 'Error',\n\tERROR_OUTLINE = 'ErrorOutline',\n\tEVENT = 'Event',\n\tEXIT_TO_APP = 'ExitToApp',\n\tEXPAND_LESS = 'ExpandLess',\n\tEXPAND_MORE = 'ExpandMore',\n\tFAVORITE = 'Favorite',\n\tFEEDBACK = 'Feedback',\n\tFILTER_LIST = 'FilterList',\n\tFLYER_COVER = 'FlyerCover',\n\tFOUR_STACKS = 'FourStacks',\n\tFUTURE_CONTRIBUTIONS = 'FutureContributions',\n\tGET_APP = 'GetApp',\n\tGOOGLEPLAY = 'Googleplay',\n\tHELP = 'Help',\n\tHELP_OUTLINE = 'HelpOutline',\n\tHOME = 'Home',\n\tHOME_MUNICIPAL = 'HomeMunicipal',\n\tILLUSTRATION_NO_NOTIFICATIONS = 'IllustrationNoNotifications',\n\tINFO = 'Info',\n\tLADY_DESK = 'LadyDesk',\n\tLAPTOP_LOCKED = 'LaptopLocked',\n\tLAPTOP_TICK = 'LaptopTick',\n\tLAUNCH = 'Launch',\n\tLINK = 'Link',\n\tLOADING = 'Loading',\n\tLOCK = 'Lock',\n\tLOCKED_COMPUTER = 'LockedComputer',\n\tLOCK_MAU = 'LockMau',\n\tLOGO_BPAY = 'LogoBpay',\n\tMAIL = 'Mail',\n\tMAKE_CHANGES_INVESTMENTS = 'MakeChangesInvestments',\n\tMEMBER_DETAILS = 'MemberDetails',\n\tMENU = 'Menu',\n\tMINUS = 'Minus',\n\tMOBILE_ERROR = 'MobileError',\n\tMOBILE_SUNRISE_YELLOW_GRADIENT = 'MobileSunriseYellowGradient',\n\tMORE_HORIZ = 'MoreHoriz',\n\tMORE_VERT = 'MoreVert',\n\tNOTIFICATIONS = 'Notifications',\n\tNOTIFY_EMPLOYER = 'NotifyEmployer',\n\tOPEN_IN_NEW = 'OpenInNew',\n\tOPEN_MENU = 'OpenMenu',\n\tORANGE_OVAL_COPY = 'OrangeOvalCopy',\n\tPADLOCK_ICON = 'PadlockIcon',\n\tPAYMENT = 'Payment',\n\tPEOPLE = 'People',\n\tPERFORMANCE = 'Performance',\n\tPERM_PHONE_MSG = 'PermPhoneMsg',\n\tPERSON = 'Person',\n\tPERSON_ADD = 'PersonAdd',\n\tPIGGY_BANK = 'PiggyBank',\n\tPRINT = 'Print',\n\tQUESTION_ANSWER = 'QuestionAnswer',\n\tREFRESH = 'Refresh',\n\tSEARCH = 'Search',\n\tSEND = 'Send',\n\tSETTINGS = 'Settings',\n\tSET_UP_COMPLETE = 'SetUpComplete',\n\tSHIELD_ICON = 'ShieldIcon',\n\tSLIDE_SWITCH = 'SlideSwitch',\n\tSMARTPHONE = 'Smartphone',\n\tSPINNER = 'Spinner',\n\tSTACKS_WITH_ARROWS = 'StacksWithArrows',\n\tSUNRISE_YELLOW_GRADIENT = 'SunriseYellowGradient',\n\tSUPERVISOR_ACCOUNT = 'SupervisorAccount',\n\tSWITCH_CLOSED = 'SwitchClosed',\n\tSWITCH_OPEN = 'SwitchOpen',\n\tTAG = 'Tag',\n\tTELEPHONE = 'Telephone',\n\tTELL_YOUR_EMPLOYER = 'TellYourEmployer',\n\tTIMELINE = 'Timeline',\n\tTODAY = 'Today',\n\tTRANSACTIONS = 'Transactions',\n\tTRENDING_DOWN = 'TrendingDown',\n\tTRENDING_FLAT = 'TrendingFlat',\n\tTRENDING_UP = 'TrendingUp',\n\tUMBRELLA = 'Umbrella',\n\tUMBRELLA_COVER = 'UmbrellaCover',\n\tUNFUNDED_BANNER = 'UnfundedBanner',\n\tUPLOAD = 'Upload',\n\tVERIFIED_USER = 'VerifiedUser',\n\tVIDEO_PLAY = 'VideoPlay',\n\tVIDEO_PLAY_BG = 'VideoPlayBg',\n\tVISIBILITY = 'Visibility',\n\tVISIBILITY_OFF = 'VisibilityOff',\n\tWARNING = 'Warning',\n\tWARNING_AMBER = 'WarningAmber',\n\tWITHDRAW_DOLLAR = 'WithdrawDollar',\n\tWITHDRAW_MONEY = 'WithdrawMoney',\n\tZOOM_IN = 'ZoomIn',\n\tZOOM_OUT = 'ZoomOut',\n}\n\nexport { RAW_SVGS, REACT_SVGS, ICONS };\n","import { useState, useEffect } from 'react';\nimport { UseGetReturn, UseMutateReturn } from 'restful-react';\nimport { isStorybook } from 'stories/utils';\n\nexport const DEFAULT_MOCK_RESPONSE = isStorybook() ? 0 : 2000; // Ms\n\n// ------------------------------------\n\nconst [VARIABLE_MIN, VARIABLE_MAX] = [500, 1500];\nconst VARIABLE_ROUNDTO = 100;\n\n/**\n * Additional random response time in addition to the base\n * mock response time `DEFAULT_MOCK_RESPONSE`. This is so\n * adjacent loading modules don't all resolve at the same time\n * in mock scenarios (Storybook, Experience Editor) - which looks unnatural.\n */\nconst getVariableResponseTimeMock = (): number =>\n\tMath.round(\n\t\t(Math.random() * (VARIABLE_MAX - VARIABLE_MIN + 1) + VARIABLE_MIN) /\n\t\t\tVARIABLE_ROUNDTO,\n\t) * VARIABLE_ROUNDTO;\n\n// ------------------------------------\ninterface IMockPostProps {\n\t/** Mock response */\n\tpayload?: object;\n\t/** Mock error object */\n\terror?: {\n\t\tmessage: string;\n\t\tdata: any | null;\n\t};\n\thasError?: boolean;\n}\n\ninterface IMockProps {\n\t/** Mock response */\n\tpayload: object;\n\t/** Mock error object */\n\terror?: {\n\t\tmessage: string;\n\t\tdata: any | null;\n\t};\n\t/** Is lazy fetching, from the useGet props */\n\tlazy?: boolean;\n\t/** Resolve callback, from the useGet props */\n\tresolve?: (data: any) => any;\n\t/** Request params, from the useGet props */\n\tqueryParams?: object;\n\t/** Simulate error for GET method */\n\thasError?: boolean;\n}\n\n/**\n * Emulates `restful-react`'s `useGet` functionality, by allowing\n * mock payloads and errors to be passed through.\n *\n * @param responseGenerator - optional generate mock response callback to mock different response based on params, etc.\n */\nexport const useGetMock = (\n\t{\n\t\terror = {\n\t\t\tmessage: 'Error: Simulated mock error',\n\t\t\tdata: null,\n\t\t},\n\t\tpayload,\n\t\tresolve,\n\t\tlazy = false,\n\t\tqueryParams = {},\n\t\thasError,\n\t\t...rest\n\t}: IMockProps,\n\tresponseGenerator: ((props: object) => object) | null = null,\n): UseGetReturn => {\n\tconst [isLoading, setIsLoading] = useState(!lazy);\n\tconst [isError, setIsError] = useState(false);\n\tconst [data, setData] = useState(payload);\n\n\t/**\n\t * Mock the refetch method from the Restful-React useGet hook.\n\t *\n\t * @param props - useGet props\n\t * @param props.queryParams - Request params\n\t */\n\tconst refetch = (props: { queryParams?: any } = {}): Promise => {\n\t\tsetIsLoading(true);\n\t\tsetIsError(false);\n\t\ttry {\n\t\t\t// If hasError is true, throw an error and let the catch block handle error scenario\n\t\t\tif (hasError) {\n\t\t\t\tthrow error;\n\t\t\t}\n\n\t\t\tlet resData = payload;\n\n\t\t\tif (typeof responseGenerator === 'function') {\n\t\t\t\t// Override response data with the value from responseGenerator\n\t\t\t\tresData = responseGenerator({ ...rest, ...props });\n\t\t\t\tsetData(resData);\n\t\t\t}\n\n\t\t\treturn new Promise(res => {\n\t\t\t\tsetTimeout(\n\t\t\t\t\t() => {\n\t\t\t\t\t\tif (typeof resolve === 'function') {\n\t\t\t\t\t\t\tresolve(resData);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tsetIsLoading(false);\n\t\t\t\t\t\tsetIsError(false);\n\t\t\t\t\t\tres();\n\t\t\t\t\t},\n\t\t\t\t\t// NOTE: if API driven module loading state is finished after EE initialized,\n\t\t\t\t\t// JSS text won't registered correctly to allow CAs to edit therefore\n\t\t\t\t\t// remove the delay in the Sitecore Experience editor env.\n\t\t\t\t\tisStorybook() ? getVariableResponseTimeMock() : undefined,\n\t\t\t\t);\n\t\t\t});\n\t\t} catch {\n\t\t\treturn new Promise((_, rej) => {\n\t\t\t\tsetTimeout(() => {\n\t\t\t\t\tsetIsLoading(false);\n\t\t\t\t\tsetIsError(true);\n\t\t\t\t\trej();\n\t\t\t\t}, getVariableResponseTimeMock());\n\t\t\t});\n\t\t}\n\t};\n\n\t// Emulate `componentDidMount` - init fetch/load on mount\n\t/* eslint-disable react-hooks/exhaustive-deps */\n\tuseEffect(() => {\n\t\t// Do not fetch on component mount if is is lazy fetching\n\t\t!lazy && refetch({ queryParams, ...rest });\n\t}, [lazy]);\n\t/* eslint-enable react-hooks/exhaustive-deps */\n\n\treturn {\n\t\tdata: !isLoading && !isError ? data : null,\n\t\tloading: isLoading,\n\t\terror: isError ? error : null,\n\t\tabsolutePath: '',\n\t\tresponse: null,\n\t\tcancel: () => {\n\t\t\tsetIsLoading(false);\n\t\t\tsetIsError(false);\n\t\t},\n\t\trefetch,\n\t};\n};\n\nexport const usePostMock = ({\n\tpayload,\n\terror = {\n\t\tmessage: 'Error: Simulated mock error',\n\t\tdata: null,\n\t},\n\thasError,\n}: IMockPostProps): UseMutateReturn => {\n\tconst [isLoading, setIsLoading] = useState(false);\n\tconst [isError, setIsError] = useState(false);\n\tconst cancel = () => {\n\t\tsetIsLoading(false);\n\t\tsetIsError(false);\n\t};\n\tconst mutate = (): Promise => {\n\t\tsetIsLoading(true);\n\n\t\ttry {\n\t\t\t// If hasError is true, throw an error and let the catch block handle error scenario\n\t\t\tif (hasError) {\n\t\t\t\tthrow error;\n\t\t\t}\n\n\t\t\treturn new Promise(res => {\n\t\t\t\tsetTimeout(() => {\n\t\t\t\t\tsetIsLoading(false);\n\t\t\t\t\tsetIsError(false);\n\t\t\t\t\tres(payload);\n\t\t\t\t}, getVariableResponseTimeMock());\n\t\t\t});\n\t\t} catch (error) {\n\t\t\treturn new Promise((_, rej) => {\n\t\t\t\tsetTimeout(() => {\n\t\t\t\t\tsetIsLoading(false);\n\t\t\t\t\tsetIsError(true);\n\t\t\t\t\trej(error);\n\t\t\t\t}, getVariableResponseTimeMock());\n\t\t\t});\n\t\t}\n\t};\n\n\treturn {\n\t\tmutate,\n\t\tcancel,\n\t\tloading: isLoading,\n\t\terror: isError ? error : null,\n\t};\n};\n","export default {\n\tDATA_LAYER: {\n\t\tDOESNT_EXIST:\n\t\t\t'!! Attempted to send an analytics event but no `dataLayer` object was found to push it to; GTM not initialised.',\n\t\tEVENT: 'Event details:',\n\t},\n\n\tSITECORE: {\n\t\tINACTIVE:\n\t\t\t\"GTM is not enabled in Sitecore's Experience Editor, so this tracking event purposefully did not fire.\",\n\t},\n};\n","/* eslint-disable @typescript-eslint/camelcase */\nimport { isExperienceEditorActive } from '@sitecore-jss/sitecore-jss-react';\nimport { PhoneNumber } from 'core/api/client/MemberApi';\nimport {\n\tisWebBrowser,\n\tisInSitecorePreviewOrEditMode,\n} from 'core/utils/global-utils';\n\nimport { EventSectionType, EventTriggerType } from './analytics.types';\nimport CONTENT from './analytics.content';\n\n// --------------------------------\n// Variables\n\nconst TRACKING_EVENT_ID = 'member_portal';\n\n// --------------------------------\n// Event tracking\n\n/**\n * Props for per-instance-per-component event tracking,\n * fed into object that's ultimately pushed into the `dataLayer`\n * along with some other constants in `IAnalyticsEventProps`.\n */\nexport interface ITrackEventProps {\n\tevent_section: EventSectionType;\n\tevent_type: string;\n\tevent_title: string;\n\tevent_label: string;\n\tevent_trigger: EventTriggerType;\n\tevent_url?: string;\n\tevent_message?: string;\n}\n\n/**\n * Props for loggged in member info tracking\n */\nexport interface ITrackMemberProps {\n\tparty_type_id?: string;\n\tmember_status?: string;\n\taccounts_account_number?: string;\n\taccounts_product_name?: string;\n\taccounts_account_status?: string;\n\taccounts_joined_date?: string;\n\tuser_phone_number?: PhoneNumber[];\n\tuser_email_address?: string;\n\tclassification_id?: string | undefined;\n\tlife_cycle_profile?: string | undefined;\n}\n\n/**\n * The props required for every tracking event object\n * pushed to the `dataLayer` object.\n */\ninterface IAnalyticsEventProps extends ITrackEventProps, ITrackMemberProps {\n\t/** Universal identifier for `dataLayer` tracking events. Should be uniform across all tracking events sent to GTM. */\n\tevent: string;\n\t/** Page location pathname. */\n\tevent_bread: string;\n}\n\n/**\n * Push an new event object to the GTM `dataLayer`.\n * For per-component manual tracking events as per specs.\n */\nexport const trackEvent = (props: ITrackEventProps) => {\n\tconst eventData: IAnalyticsEventProps = {\n\t\tevent: TRACKING_EVENT_ID,\n\t\tevent_bread: isWebBrowser ? window.location.pathname : '',\n\n\t\t// These are technically optional, but the analytics team\n\t\t// always want them to exist in the event object, even if undefined\n\t\tevent_url: undefined,\n\t\tevent_message: undefined,\n\t\tparty_type_id: undefined,\n\t\tmember_status: undefined,\n\t\taccounts_account_number: undefined,\n\t\taccounts_product_name: undefined,\n\t\taccounts_account_status: undefined,\n\t\taccounts_joined_date: undefined,\n\t\tuser_phone_number: undefined,\n\t\tuser_email_address: undefined,\n\t\tclassification_id: undefined,\n\t\tlife_cycle_profile: undefined,\n\n\t\t...props,\n\t};\n\n\tconst { DATA_LAYER, SITECORE } = CONTENT;\n\n\tif (isExperienceEditorActive() || isInSitecorePreviewOrEditMode()) {\n\t\tconsole.warn('-------------------------------');\n\t\tconsole.warn(SITECORE.INACTIVE);\n\t\tconsole.warn(DATA_LAYER.EVENT, props);\n\t\tconsole.warn('-------------------------------');\n\t} else if (isWebBrowser && !window?.dataLayer) {\n\t\tconsole.warn('-------------------------------');\n\t\tconsole.warn(DATA_LAYER.DOESNT_EXIST);\n\t\tconsole.warn(DATA_LAYER.EVENT, props);\n\t\tconsole.warn('-------------------------------');\n\t} else {\n\t\tif (isWebBrowser) {\n\t\t\twindow.dataLayer.push(eventData);\n\t\t}\n\t}\n};\n\n// --------------------------------\n","import styled, { css } from 'styled-components';\n\nimport * as vr from 'core/styles/variables';\nimport * as mx from 'core/styles/mixins';\n\nexport const Label = styled.label`\n\tdisplay: flex;\n\talign-items: center;\n`;\n\nexport const Content = styled.span<{\n\treadonly: boolean;\n\twithoutTextWrap: boolean;\n}>`\n\tpadding: 6px 0;\n\tfont-weight: 400;\n\tfont-size: 16px;\n\tmax-width: 500px;\n\n\t${({ withoutTextWrap }) =>\n\t\t!withoutTextWrap &&\n\t\tcss`\n\t\t\t${mx.ellipsis}\n\t\t`}\n\n\t${({ readonly }) =>\n\t\treadonly &&\n\t\tcss`\n\t\t\tpadding: 2px 0 0 0;\n\t\t`}\n`;\n\nexport const Optional = styled.span`\n\tcolor: ${vr.formfieldLabelOptionalColor};\n`;\n","/* stylelint-disable selector-type-no-unknown */\n\nimport styled, { css } from 'styled-components';\n\nimport * as vr from 'core/styles/variables';\nimport * as mx from 'core/styles/mixins';\nimport Cta from 'core/components/Cta';\nimport { FONT_WEIGHT } from 'core/styles/fonts';\n\nimport { Label } from 'pods/forms/components/base/Label/Label.style';\n\nexport const baseInputStyles = ({ hasError, readOnly, disabled }: any) => css`\n\twidth: 100%;\n\tcolor: ${vr.formfieldColor};\n\tpadding: 17px 45px;\n\tpadding-left: ${vr.formfieldTextInset};\n\tborder: 1px solid ${vr.formfieldBorderColor};\n\tbox-shadow: 0 0 0 1px transparent;\n\tborder-radius: ${vr.formfieldBorderRadius};\n\tline-height: 1.5;\n\n\t${readOnly &&\n\t\tcss`\n\t\t\tborder: 0;\n\t\t\tpadding: 0;\n\t\t`}\n\n\t${disabled &&\n\t\tcss`\n\t\t\tborder-color: ${vr.radioCheckboxDisabled};\n\t\t\tcolor: ${vr.radioCheckboxDisabled};\n\t\t\tbackground-color: ${vr.formfieldDisabledBackground};\n\t\t`}\n\n\t${hasError &&\n\t\tcss`\n\t\t\tmargin: 0;\n\t\t\tborder: 1px solid ${vr.formfieldErrorBorderColor};\n\t\t\tbox-shadow: 0 0 0 1px ${vr.formfieldErrorBorderColor};\n\t\t\tcolor: ${vr.formfieldErrorBorderColor};\n\t\t\toutline: none;\n\t\t`}\n\n\n\t/* Hide browser 'clear' buttons */\n\t&::-ms-clear,\n\t&::-webkit-clear-button {\n\t\tdisplay: none;\n\t}\n\n\t&:focus {\n\t\tmargin: 0;\n\n\t\t${hasError &&\n\t\t\tcss`\n\t\t\t\tmargin: 0;\n\t\t\t\tborder: 1px solid ${vr.formfieldErrorBorderColor};\n\t\t\t\tbox-shadow: 0 0 0 1px ${vr.formfieldErrorBorderColor};\n\t\t\t\tcolor: ${vr.formfieldErrorBorderColor};\n\t\t\t\toutline: none;\n\t\t\t`}\n\n\t\t~ ${Label} {\n\t\t\tcolor: ${vr.formfieldBorderColorFocus};\n\t\t}\n\t}\n\n\t~ ${Label} {\n\t\tcolor: ${vr.formlabelColor};\n\t\tfont-size: ${vr.formlabelFontSize};\n\t\tline-height: ${vr.formfieldLineHeight};\n\t\tpadding: 0 10px;\n\t\ttransition-property: top, font-size, color;\n\t\ttransition-duration: 200ms;\n\t}\n`;\n\nexport const Input = styled.input.attrs(props => ({ className: '' }))<{\n\tisInline: boolean;\n\thasStartAdornment: boolean;\n\thasEndAdornment: boolean;\n\thasError: boolean;\n\tdisabled: boolean;\n\treadOnly: boolean;\n\tfullWidth: boolean;\n}>`\n\t${props => baseInputStyles(props)}\n\n\tpadding: 12px 16px;\n\n\t${({ isInline }) =>\n\t\tisInline &&\n\t\tcss`\n\t\t\tdisplay: inline-block;\n\t\t\twidth: auto;\n\t\t`}\n\n\t${({ hasStartAdornment }) =>\n\t\thasStartAdornment &&\n\t\tcss`\n\t\t\tpadding-left: 30px;\n\t\t`}\n\n\t${({ hasEndAdornment }) =>\n\t\thasEndAdornment &&\n\t\tcss`\n\t\t\tpadding-right: 30px;\n\t\t`}\n\n\t&[type='date'] {\n\t\tpadding-right: 15px;\n\t}\n\n\t&[type='date']::-webkit-inner-spin-button,\n\t&[type='date']::-webkit-outer-spin-button,\n\t&[type='number']::-webkit-inner-spin-button,\n\t&[type='number']::-webkit-outer-spin-button {\n\t\tappearance: none;\n\t\tmargin: 0;\n\t}\n\n\t&:focus {\n\t\tcolor: ${props =>\n\t\t\t!!props.hasError\n\t\t\t\t? vr.formfieldOnHoverBorderColor\n\t\t\t\t: vr.formfieldOnHoverBorderColor};\n\t}\n\n\t&::placeholder {\n\t\tcolor: ${props =>\n\t\t\t!!props.hasError\n\t\t\t\t? vr.formfieldErrorColor\n\t\t\t\t: vr.formfieldOnHoverBorderColor};\n\t}\n\t&:focus::placeholder {\n\t\tcolor: ${props =>\n\t\t\t!!props.hasError\n\t\t\t\t? vr.formfieldOnHoverBorderColor\n\t\t\t\t: vr.formfieldOnHoverBorderColor};\n\t}\n\n\t${props =>\n\t\tprops.readOnly\n\t\t\t? css`\n\t\t\t\t\tborder: 2px solid ${vr.borderGrey};\n\t\t\t `\n\t\t\t: ``}\n\n\t${({ hasError, disabled }) =>\n\t\t!disabled &&\n\t\tcss`\n\t\t\t&:hover {\n\t\t\t\toutline: none;\n\t\t\t\tborder: 1px solid\n\t\t\t\t\t${hasError ? vr.formfieldErrorColor : vr.formfieldOnHoverBorderColor};\n\t\t\t\tbox-shadow: 0 0 0 1px\n\t\t\t\t\t${hasError ? vr.formfieldErrorColor : vr.formfieldOnHoverBorderColor};\n\t\t\t}\n\n\t\t\t&:focus {\n\t\t\t\toutline: none;\n\t\t\t\tborder: 1px solid\n\t\t\t\t\t${hasError\n\t\t\t\t\t\t? vr.formfieldBorderColorFocus\n\t\t\t\t\t\t: vr.formfieldBorderColorFocus};\n\t\t\t\tbox-shadow: 0 0 0 1px\n\t\t\t\t\t${hasError\n\t\t\t\t\t\t? vr.formfieldBorderColorFocus\n\t\t\t\t\t\t: vr.formfieldBorderColorFocus};\n\t\t\t}\n\t\t`}\n\n`;\n\nexport const ButtonWithin = styled.button<{\n\thasCloseIcon: boolean | undefined;\n\thasValue: boolean;\n}>`\n\t${mx.buttonReset}\n\t${mx.tabFocus}\n\n\tposition: absolute;\n\tright: 0;\n\ttop: 0;\n\tbottom: 0;\n\tz-index: 2;\n\tcolor: ${vr.formfieldBorderColorFocus};\n\tcursor: pointer;\n\tvisibility: hidden;\n\tpadding-right: 10px;\n\n\t${Input}:focus-within + & {\n\t\tvisibility: ${props => (props.hasValue ? `visible` : `hidden`)};\n\t}\n`;\n\nexport const ShowHideLabel = styled(Cta)`\n\t${mx.buttonReset}\n\t${mx.tabFocus}\n\n\tfont-size: 14px;\n\tfont-weight: ${FONT_WEIGHT.SEMI_BOLD};\n`;\n\nexport const Container = styled.div<{\n\tstartAdornment?: string;\n\tendAdornment?: string;\n\tfullWidth?: boolean;\n}>`\n\tposition: relative;\n\n\t${({ fullWidth }) =>\n\t\t!!fullWidth &&\n\t\tcss`\n\t\t\tmax-width: 100%;\n\t\t`}\n\n\t${({ startAdornment }) =>\n\t\t!!startAdornment &&\n\t\tcss`\n\t\t\t&::before {\n\t\t\t\tposition: absolute;\n\t\t\t\tcontent: '${startAdornment}';\n\t\t\t\ttop: 20px;\n\t\t\t\tleft: 10px;\n\t\t\t\tcolor: ${vr.formfieldPlaceholderColor};\n\n\t\t\t}\n\t\t`}\n\n\t${({ endAdornment }) =>\n\t\t!!endAdornment &&\n\t\tcss`\n\t\t\t&::after {\n\t\t\t\tposition: absolute;\n\t\t\t\tcontent: '${endAdornment}';\n\t\t\t\ttop: 20px;\n\t\t\t\tright: 10px;\n\t\t\t\tcolor: ${vr.formfieldPlaceholderColor};\n\t\t\t}\n\t\t`}\n`;\n","import React from 'react';\nimport ReactHtmlParser from 'react-html-parser';\n\ninterface IProps {\n\tcontent: string;\n}\n\nconst Richtext = ({ content }: IProps) => (\n\t<>\n\t\t{(content &&\n\t\t\tReactHtmlParser(\n\t\t\t\tcontent?.replaceAll('<', '<')?.replaceAll('>', '>'),\n\t\t\t)) || <>>}\n\t>\n);\n\nexport default Richtext;\n","export const MONTH = [\n\t'January',\n\t'February',\n\t'March',\n\t'April',\n\t'May',\n\t'June',\n\t'July',\n\t'August',\n\t'September',\n\t'October',\n\t'November',\n\t'December',\n];\n\nexport const MONTH_OPTIONS = [\n\t{\n\t\tlabel: 'January',\n\t\tvalue: '01',\n\t},\n\t{\n\t\tlabel: 'February',\n\t\tvalue: '02',\n\t},\n\t{\n\t\tlabel: 'March',\n\t\tvalue: '03',\n\t},\n\t{\n\t\tlabel: 'April',\n\t\tvalue: '04',\n\t},\n\t{\n\t\tlabel: 'May',\n\t\tvalue: '05',\n\t},\n\t{\n\t\tlabel: 'June',\n\t\tvalue: '06',\n\t},\n\t{\n\t\tlabel: 'July',\n\t\tvalue: '07',\n\t},\n\t{\n\t\tlabel: 'August',\n\t\tvalue: '08',\n\t},\n\t{\n\t\tlabel: 'September',\n\t\tvalue: '09',\n\t},\n\t{\n\t\tlabel: 'October',\n\t\tvalue: '10',\n\t},\n\t{\n\t\tlabel: 'November',\n\t\tvalue: '11',\n\t},\n\t{\n\t\tlabel: 'December',\n\t\tvalue: '12',\n\t},\n];\n","export const BSB_REGEX = /^\\d{0,3}(?:\\-)?(?:\\s)?\\d{0,3}$/gm;\nexport const BSB_SPEC_CHARS = /[^a-zA-Z0-9-]/gm;\n","import styled, { css } from 'styled-components';\nimport { rgba } from 'polished';\n\nimport * as mx from 'core/styles/mixins';\nimport { IThemeObject } from 'pods/theme';\nimport { ICONS, cssIcon } from 'core/components/Icon';\nimport { Icon } from 'core/components/Icon/Icon.style';\nimport { DESKTOP_BP } from 'src/_AppContainer';\n\nconst BORDER_RADIUS = {\n\tDEFAULT: '8px',\n\tIN_CARD: '3px',\n};\n\ninterface IProps {\n\thasCloseButton?: boolean;\n\ttype?: string;\n\tmargin?: string;\n\ttheme: IThemeObject;\n\toptionalIcon?: ICONS | string;\n\thasCloseButtonLabel?: boolean;\n\tisAnimated?: boolean;\n}\n\n/**\n * Deterministic styles like this so that `sitecoreRteStyles` can\n * render a visual-parity version of the 'info' notification without\n * hardcoding or other work-arounds.\n */\nexport const notificationStyles = ({\n\thasCloseButton,\n\ttype,\n\tmargin,\n\ttheme,\n\toptionalIcon,\n\thasCloseButtonLabel,\n\tisAnimated,\n}: IProps) => css`\n\tdisplay: block;\n\tposition: relative;\n\tpadding: 16px 24px 16px 16px;\n\tborder: 1px solid;\n\tborder-radius: ${BORDER_RADIUS.DEFAULT};\n\n\t${mx.bp(DESKTOP_BP)`\n\t\tpadding-top: 20px;\n\t\tpadding-bottom: 20px;\n\t`}\n\n\t/* No border, modified border radius, when within a Card component */\n\t.core-component--card & {\n\t\tborder: none;\n\t\tborder-radius: ${BORDER_RADIUS.IN_CARD};\n\t}\n\n\t/* Conditional padding to accommodate close button */\n\t${hasCloseButton &&\n\t\tcss`\n\t\t\tpadding-right: 56px;\n\t\t`}\n\n\t/* Padding to accommodate icon */\n\tpadding-left: 60px;\n\n\t${margin &&\n\t\tcss`\n\t\t\tmargin: ${margin};\n\t\t`}\n\n\t${hasCloseButtonLabel &&\n\t\tcss`\n\t\t\t.typography--bodySmall:first-of-type {\n\t\t\t\tcolor: ${theme.global.typography.colors.genericDark};\n\t\t\t\tmargin-top: 0;\n\t\t\t\tpadding: 0 4px 0 0;\n\t\t\t}\n\t\t`}\n\n\t${() => {\n\t\tlet icon;\n\t\tlet color;\n\t\tlet background;\n\n\t\tconst themeColours = theme.global.notifications;\n\n\t\tconst ERROR: any = [ICONS.CANCEL, themeColours.error];\n\t\tconst SUCCESS: any = [ICONS.CHECK_CIRCLE, themeColours.success];\n\t\tconst WARNING: any = [ICONS.WARNING, themeColours.warning];\n\t\tconst INFO: any = [ICONS.INFO, themeColours.info];\n\t\tconst LOADING: any = [ICONS.LOADING, themeColours.loading];\n\n\t\tswitch (type) {\n\t\t\tcase 'error':\n\t\t\t\ticon = ERROR[0];\n\t\t\t\tcolor = ERROR[1].color;\n\t\t\t\tbackground = ERROR[1].background;\n\t\t\t\tbreak;\n\t\t\tcase 'success':\n\t\t\t\ticon = SUCCESS[0];\n\t\t\t\tcolor = SUCCESS[1];\n\t\t\t\tbreak;\n\t\t\tcase 'warning':\n\t\t\t\ticon = WARNING[0];\n\t\t\t\tcolor = WARNING[1].color;\n\t\t\t\tbackground = WARNING[1].background;\n\t\t\t\tbreak;\n\t\t\tcase 'loading':\n\t\t\t\ticon = LOADING[0];\n\t\t\t\tcolor = LOADING[1].color;\n\t\t\t\tbackground = LOADING[1].background;\n\t\t\t\tbreak;\n\t\t\tcase 'info':\n\t\t\tdefault:\n\t\t\t\ticon = INFO[0];\n\t\t\t\tcolor = INFO[1].color;\n\t\t\t\tbackground = INFO[1].background;\n\t\t}\n\n\t\ticon = optionalIcon ?? icon;\n\n\t\treturn css`\n\t\t\tbackground-color: ${background || rgba(color, 0.06)};\n\t\t\tborder-color: ${background || rgba(color, 0.06)};\n\n\t\t\t/* Left border */\n\t\t\t&::before {\n\t\t\t\t${mx.pseudo}\n\t\t\t\tbackground-color: ${color};\n\t\t\t\theight: 100%;\n\t\t\t\tleft: 0;\n\t\t\t\ttop: 0;\n\t\t\t\twidth: 4px;\n\t\t\t\tborder-radius: ${BORDER_RADIUS.DEFAULT} 0 0 ${BORDER_RADIUS.DEFAULT};\n\n\t\t\t\t.core-component--card & {\n\t\t\t\t\tborder-radius: ${BORDER_RADIUS.IN_CARD} 0 0 ${BORDER_RADIUS.IN_CARD};\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t/* Icon */\n\t\t\t&::after {\n\t\t\t\t${mx.pseudo}\n\t\t\t\t${mx.square('26px')}\n\t\t\t\t${mx.alignVerticalCentre}\n\t\t\t\tleft: 24px;\n\t\t\t\tbackground: ${cssIcon(icon as ICONS, color)};\n\t\t\t\t${isAnimated &&\n\t\t\t\t\tcss`\n\t\t\t\t\t\ttop: 26px;\n\t\t\t\t\t\tanimation: rotate 2s linear alternate infinite;\n\t\t\t\t\t`}\n\t\t\t}\n\n\t\t\t@keyframes rotate {\n\t\t\t\tfrom {\n\t\t\t\t\ttransform: rotate(0deg);\n\t\t\t\t}\n\t\t\t\tto {\n\t\t\t\t\ttransform: rotate(180deg);\n\t\t\t\t}\n\t\t\t}\n\t\t`;\n\t}}\n`;\n\nexport const Wrapper = styled.div`\n\t${props => notificationStyles(props)}\n`;\n\nexport const CloseButton = styled.button<{\n\thasCloseButtonLabel: boolean;\n\tmoveToTop: boolean;\n}>`\n\n${mx.square('45px')}\n\n\t${({ hasCloseButtonLabel }) =>\n\t\thasCloseButtonLabel &&\n\t\tcss`\n\t\t\t${mx.square('85px')};\n\n\t\t\t.typography--caption:first-of-type {\n\t\t\t\tmargin-top: 10px;\n\t\t\t}\n\n\t\t\t.typography--body {\n\t\t\t\tmargin-bottom: 0;\n\t\t\t}\n\t\t`}\n\n\n\t${mx.buttonReset}\n\t${mx.alignVerticalCentre}\n\tposition: absolute;\n\tright: 10px;\n\tcursor: pointer;\n\tdisplay: flex;\n\talign-items: flex-start;\n\tjustify-content: center;\n\tpadding-top: 12px;\n\t${({ moveToTop }) =>\n\t\tmoveToTop &&\n\t\tcss`\n\t\t\tpadding-top: 0;\n\t\t`}\n\n\t&:hover,\n\t&:focus {\n\t\t&:not(:active) {\n\t\t\t${Icon} {\n\t\t\t\ttransform: scale(1.2);\n\t\t\t}\n\t\t}\n\t}\n\n\t${Icon} {\n\t\t${({ theme }) => css`\n\t\t\ttransform: scale(1);\n\t\t\ttransition: transform ${theme.variables.baseTransition};\n\t\t\tcolor: ${theme.global.typography.colors.active};\n\t\t`}\n\t}\n`;\n","/* stylelint-disable selector-type-no-unknown */\n\nimport styled, { css } from 'styled-components';\n\nimport * as vr from 'core/styles/variables';\n\nimport { baseInputStyles } from 'pods/forms/components/inputs/Text/Text.style';\n\nexport const SELECT_INPUT_CLASS = 'formBuilder__select';\n\nexport const SelectContainer = styled.div<{\n\tisInline: boolean;\n\twidth?: number;\n\thasError: boolean;\n\tselectedOption: any;\n}>`\n\t${`.${SELECT_INPUT_CLASS}`} {\n\t\t${props => baseInputStyles(props)}\n\t\tpadding: 0;\n\t\tborder: none;\n\t\tcursor: pointer;\n\n\t\t${({ isInline }) =>\n\t\t\tisInline &&\n\t\t\tcss`\n\t\t\t\tdisplay: inline-block;\n\t\t\t\twidth: auto;\n\t\t\t`}\n\n\t\t${({ width }) =>\n\t\t\twidth &&\n\t\t\tcss`\n\t\t\t\twidth: ${width}px;\n\t\t\t`}\n\n\t\t.${SELECT_INPUT_CLASS}__indicator-separator {\n\t\t\tdisplay: none;\n\t\t}\n\n\t\t.${SELECT_INPUT_CLASS}__value-container {\n\t\t\tpadding: 0;\n\n\t\t\t& > .${SELECT_INPUT_CLASS}__single-value {\n\t\t\t\t${({ hasError }) =>\n\t\t\t\t\thasError &&\n\t\t\t\t\tcss`\n\t\t\t\t\t\tcolor: ${vr.formfieldErrorColor};\n\t\t\t\t\t`}\n\t\t\t}\n\t\t}\n\n\t\t.${SELECT_INPUT_CLASS}__dropdown-indicator {\n\t\t\tcolor: ${vr.formSelectIndicatorColor};\n\t\t\tpadding: 0;\n\n\t\t\t${({ hasError }) =>\n\t\t\t\thasError &&\n\t\t\t\tcss`\n\t\t\t\t\tcolor: ${vr.formfieldErrorColor};\n\t\t\t\t`}\n\t\t}\n\n\t\t.${SELECT_INPUT_CLASS}__control {\n\t\t\tpadding: 12px 16px;\n\t\t\ttransition: none !important;\n\n\t\t\t&--is-focused {\n\t\t\t\tborder: 1px solid\n\t\t\t\t\t${({ hasError }) =>\n\t\t\t\t\t\thasError\n\t\t\t\t\t\t\t? vr.formfieldErrorColor\n\t\t\t\t\t\t\t: vr.formfieldBorderColorFocus} !important;\n\t\t\t\tbox-shadow: 0 0 0 1px\n\t\t\t\t\t${({ hasError }) =>\n\t\t\t\t\t\thasError\n\t\t\t\t\t\t\t? vr.formfieldErrorColor\n\t\t\t\t\t\t\t: vr.formfieldBorderColorFocus} !important;\n\t\t\t\tpadding: 12px 16px;\n\n\t\t\t\t.${SELECT_INPUT_CLASS}__indicators {\n\t\t\t\t\tcolor: ${vr.formfieldBorderColorFocus};\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t${({ hasError }) =>\n\t\t\t\thasError &&\n\t\t\t\tcss`\n\t\t\t\t\tborder: 1px solid ${vr.formfieldErrorColor} !important;\n\t\t\t\t\tbox-shadow: 0 0 0 1px ${vr.formfieldErrorColor};\n\t\t\t\t\tpadding: 12px 16px;\n\t\t\t\t`}\n\n\t\t\t&:hover {\n\t\t\t\tborder: 1px solid\n\t\t\t\t\t${({ hasError }) =>\n\t\t\t\t\t\thasError ? vr.formfieldErrorColor : vr.formfieldOnHoverBorderColor};\n\t\t\t\tbox-shadow: 0 0 0 1px\n\t\t\t\t\t${({ hasError }) =>\n\t\t\t\t\t\thasError ? vr.formfieldErrorColor : vr.formfieldOnHoverBorderColor};\n\t\t\t}\n\t\t}\n\n\t\t.${SELECT_INPUT_CLASS}__placeholder {\n\t\t\tcolor: ${vr.formfieldPlaceholderColor}\n\n\t\t\t${({ hasError }) =>\n\t\t\t\thasError &&\n\t\t\t\tcss`\n\t\t\t\t\tcolor: ${vr.formfieldErrorColor} !important;\n\t\t\t\t`}\n\t\t}\n\n\t\t.${SELECT_INPUT_CLASS}__control--menu-is-open {\n\t\t\tborder-bottom-left-radius: 0;\n\t\t\tborder-bottom-right-radius: 0;\n\t\t}\n\n\t\t.${SELECT_INPUT_CLASS}__menu {\n\t\t\tmargin: 0;\n\t\t\tborder-radius: 0;\n\t\t\tbox-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.18);\n\t\t}\n\n\t\t.${SELECT_INPUT_CLASS}__option {\n\t\t\tpadding: 12px 16px;\n\t\t\tposition: relative;\n\t\t\tcolor: ${({ theme }) => theme.global.form.select.option.base};\n\n\t\t\t&:first-child {\n\t\t\t\tmargin-top: -4px;\n\t\t\t}\n\n\t\t\t&:last-child {\n\t\t\t\tmargin-bottom: -4px;\n\t\t\t}\n\n\t\t\t&--is-selected {\n\t\t\t\tbackground-color: ${vr.brandWhite};\n\t\t\t\tcolor: ${({ theme }) => theme.global.form.select.option.base};\n\n\t\t\t\t&::before {\n\t\t\t\t\tcontent: '';\n\t\t\t\t\tposition: absolute;\n\t\t\t\t\twidth: 4px;\n\t\t\t\t\theight: 100%;\n\t\t\t\t\ttop: 0;\n\t\t\t\t\tleft: 0;\n\t\t\t\t\tbackground-color: ${({ theme }) => theme.global.form.select.active};\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t&--is-focused {\n\t\t\t\tbackground-color: ${({ theme }) => theme.global.form.select.hover};\n\t\t\t\tcolor: ${({ theme }) => theme.global.form.select.option.hover};\n\t\t\t\tcursor: pointer;\n\n\t\t\t\t&::before {\n\t\t\t\t\tcontent: '';\n\t\t\t\t\tposition: absolute;\n\t\t\t\t\twidth: 4px;\n\t\t\t\t\theight: 100%;\n\t\t\t\t\ttop: 0;\n\t\t\t\t\tleft: 0;\n\t\t\t\t\tbackground-color: ${({ theme }) => theme.global.form.select.active};\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t&--is-disabled {\n\t\t\t.${SELECT_INPUT_CLASS}__indicators {\n\t\t\t\tcolor: ${vr.radioCheckboxDisabled};\n\t\t\t}\n\n\n\t\t}\n\t}\n`;\n\n/**\n * @note GlobalSelectPortal is used inside GlobalStyles.js\n * since the portal is appended to the body\n *\n * CSS below is the same inside SelectContainer, the difference is that\n * it is wrapped in the body tag\n */\n\nexport const GlobalSelectPortal = css<{\n\ttheme: any;\n}>`\n\tbody {\n\t\t.${SELECT_INPUT_CLASS}__menu {\n\t\t\tmargin: 0;\n\t\t\tborder-radius: 0;\n\t\t\tbox-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.18);\n\t\t}\n\n\t\t.${SELECT_INPUT_CLASS}__option {\n\t\t\tpadding: 12px 16px;\n\t\t\tposition: relative;\n\t\t\tcolor: ${({ theme }) => theme.global.form.select.option.base};\n\n\t\t\t&:first-child {\n\t\t\t\tmargin-top: -4px;\n\t\t\t}\n\n\t\t\t&:last-child {\n\t\t\t\tmargin-bottom: -4px;\n\t\t\t}\n\n\t\t\t&--is-selected {\n\t\t\t\tbackground-color: ${vr.brandWhite};\n\t\t\t\tcolor: ${({ theme }) => theme.global.form.select.option.base};\n\n\t\t\t\t&::before {\n\t\t\t\t\tcontent: '';\n\t\t\t\t\tposition: absolute;\n\t\t\t\t\twidth: 4px;\n\t\t\t\t\theight: 100%;\n\t\t\t\t\ttop: 0;\n\t\t\t\t\tleft: 0;\n\t\t\t\t\tbackground-color: ${({ theme }) => theme.global.form.select.active};\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t&--is-focused {\n\t\t\t\tbackground-color: ${({ theme }) => theme.global.form.select.hover};\n\t\t\t\tcolor: ${({ theme }) => theme.global.form.select.option.hover};\n\t\t\t\tcursor: pointer;\n\n\t\t\t\t&::before {\n\t\t\t\t\tcontent: '';\n\t\t\t\t\tposition: absolute;\n\t\t\t\t\twidth: 4px;\n\t\t\t\t\theight: 100%;\n\t\t\t\t\ttop: 0;\n\t\t\t\t\tleft: 0;\n\t\t\t\t\tbackground-color: ${({ theme }) => theme.global.form.select.active};\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t&--is-disabled {\n\t\t\t\tdisplay: inline-flex;\n\t\t\t\tjustify-content: space-between;\n\t\t\t\tbackground-color: ${({ theme }) => theme.global.page.color};\n\n\t\t\t\t&::after {\n\t\t\t\t\tcontent: 'Restricted';\n\t\t\t\t\tdisplay: flex;\n\t\t\t\t\tjustify-content: flex-end;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n`;\n\nexport const LoadingWrapper = styled.div`\n\talign-items: center;\n\tdisplay: flex;\n\tpadding: 3px;\n`;\n\nexport const CustomOptionSubLabel = styled.div`\n\tdisplay: flex;\n\tflex-direction: column;\n\talign-items: flex-start;\n\n\tp:nth-child(1) {\n\t\tmargin: 0 0 4px 0;\n\t}\n\n\tp:nth-child(2) {\n\t\tmargin: 0;\n\t\tfont-size: 12px;\n\t\tcolor: ${({ theme }) => theme.global.typography.colors.subdued};\n\t}\n`;\n","// Note: Some of these WithdrawalTypes values are highly dependent on withdrawalTypeDropdownOptions Key values\nexport enum WithdrawalTypes {\n\tDEFAULT = '',\n\tRPA = 'Reached preservation age',\n\tUNP = 'Unrestricted non-preserved super',\n\tSMSF = 'Transfer to another super fund',\n\tPENSION = 'Pension',\n\tFHA = 'Severe financial hardship (Type A)',\n\tFHB = 'Severe financial hardship (Type B)',\n\tBALANCE_OF_200_OR_LESS = 'Balance of $200 or less',\n\tTERMINAL_ILLNESS = 'Terminal illness',\n}\n\nexport enum WITHDRAWAL_MIN_BALANCE {\n\tRPA = 6000,\n\tTRANSFER_TO_ANOTHER = 6000,\n\tUNP = 6000,\n}\n\nexport enum WITHDRAWAL_MAX_AMOUNT {\n\tFHA = 10000,\n}\n\nexport enum FORM_STATUS {\n\tSAVED = 'SAVED',\n\tSUBMITTED = 'SUBMITTED',\n}\n\nexport const WITHDRAWAL_STORAGE_ITEM = 'WITHDRAWAL_PAYLOAD';\n\n// Analytics constants section\nexport const WITHDRAWALS_EVENT_SECTION = 'withdrawals';\nexport const ACCUM_EVENT_TYPE = 'make a withdrawal claim - accum';\nexport const PENSION_EVENT_TYPE = 'make a withdrawal claim - pension';\n\nexport const SMSF_PAGE_TITLE = 'Transfer to Another Fund';\nexport const FHA_PAGE_TITLE = 'Financial Hardship Claim Type A';\nexport const FHB_PAGE_TITLE = 'Financial Hardship Claim Type B';\nexport const UNP_PAGE_TITLE = 'Unrestricted Non Preserved';\nexport const PENSION_PAGE_TITLE = 'Pension Withdrawal Claim';\nexport const RPA_PAGE_TITLE = 'Reached Preservation Age Withdrawal';\n\nexport const VIEW_EVENT_LABEL = 'view';\nexport const NEXT_EVENT_LABEL = 'next';\nexport const BACK_EVENT_LABEL = 'back';\nexport const EDIT_EVENT_LABEL = 'edit';\nexport const CLICK_BUTTON_EVENT_TRIGGER = 'click button';\nexport const SCREEN_LOAD_EVENT_TRIGGER = 'screen load';\nexport const TFN_EVENT_LABEL =\n\t'what are the benefits of providing my tax file number?';\n\nexport const TFN_EVENT_TYPE = 'withdrawal tfn form';\nexport const DECLARATION_EVENT_TYPE = 'declaration form';\nexport const GID_EVENT_TYPE = 'withdrawal identification check form';\nexport const FH_EVENT_TYPE = 'financial hardship claim form';\n\nexport const NO_OPTIONS_SELECTED = 'No options selected';\nexport const AN_AMOUNT_I_CHOOSE = 'An amount I choose';\n\nexport enum WITHDRAWAL_TYPE {\n\tPARTIAL_WITHDRAWAL = 'Partial withdrawal',\n\tFULL_WITHDRAWAL = 'Full withdrawal',\n\tPARTIAL_BALANCE_TRANSFER = 'Partial balance transfer',\n\tFULL_BALANCE_TRANSFER = 'Full balance transfer',\n}\n\nexport const ACTIVE_FUND_STATUS = 'ACTIVE';\n\nexport const MEMBER_DIRECT = 'MEMBER_DIRECT';\n","/* eslint-disable react-hooks/rules-of-hooks */\n\nimport { useGetMock } from 'core/api/mocks';\nimport { smartMockApi } from 'core/api';\nimport { useGetAddress } from 'core/api/client/SystemValidatorApi';\nimport GetAddressMock from './mocks/GetAddress.mock.json';\n\nexport default smartMockApi({\n\tuseGetAddress: {\n\t\tlive: useGetAddress,\n\t\tmock: params => {\n\t\t\treturn useGetMock({\n\t\t\t\t...params,\n\t\t\t\tpayload: GetAddressMock,\n\t\t\t});\n\t\t},\n\t},\n});\n","/* Generated by restful-react */\n\nimport React from 'react';\nimport {\n\tGet,\n\tGetProps,\n\tuseGet,\n\tUseGetProps,\n\tMutate,\n\tMutateProps,\n\tuseMutate,\n\tUseMutateProps,\n} from 'restful-react';\n\nexport interface Error {\n\t/**\n\t * HTTP status code\n\t */\n\tstatus: number;\n\t/**\n\t * Code indicating the type error e.g. ERR_VALIDATOR_xxx\n\t */\n\terror_code: string;\n\t/**\n\t * Description of the problem\n\t */\n\tdescription: string;\n\t/**\n\t * Optional. More detailed error code, may be used differentiate between variations of the main error type\n\t */\n\terror_sub_code?: string;\n\t/**\n\t * Optional. Further information regarding the problem\n\t */\n\tmore_info?: string;\n\t/**\n\t * Optional. URL to documentation on the error e.g. suggestions for resolution\n\t */\n\tdoc_link?: string;\n}\n\n/**\n * Used to store metadata of a pagination.\n */\nexport interface Meta {\n\t/**\n\t * The total number of records for this object\n\t */\n\ttotal_records?: number;\n\t/**\n\t * The total number of pages for this object\n\t */\n\ttotal_pages?: number;\n}\n\nexport interface ValidatorAddressResponse {\n\tdata?: ValidatorAddressDataType;\n\tmeta?: Meta;\n}\n\nexport interface ValidatorPhoneResponse {\n\tdata?: ValidatorPhoneDataType;\n\tmeta?: Meta;\n}\n\nexport interface ValidatorAddressDataType {\n\taddresses?: RetrieveAddressResponseDataType[];\n}\n\nexport interface ValidatorPhoneDataType {\n\tphones?: RetrievePhoneResponseDataType[];\n}\n\nexport interface RetrievePhoneResponseDataType {\n\tphone_number: string;\n\tcountry: string;\n\tarea_code: string;\n\tlocal_number: string;\n\toperator_name?: string;\n\tstatus?: string;\n}\n\nexport interface RetrieveAddressResponseDataType {\n\tfull_address: string;\n\taddress: AddressDataType;\n}\n\nexport interface AddressDataType {\n\tpostal?: string;\n\tbuilding?: string;\n\tsubdwelling_name?: string;\n\tunit_number?: string;\n\tunit_type?: string;\n\tfloor_level_number?: string;\n\tfloor_level_type?: string;\n\tlot?: string;\n\tstreet_number?: string;\n\tstreet_name?: string;\n\tstreet_type?: string;\n\tstreet_suffix?: string;\n\tsuburb?: string;\n\tstate?: string;\n\tpostcode?: string;\n\tcountry?: string;\n\tbarcode?: string;\n\tbsp?: string;\n\tdpid?: string;\n\tpostal_delivery_type?: string;\n\tpostal_service_number?: string;\n}\n\n/**\n * Bad request\n */\nexport type Response400 = Error;\n\n/**\n * Unauthorized\n */\nexport type Response401 = Error;\n\n/**\n * Forbidden\n */\nexport type Response403 = Error;\n\n/**\n * Not found\n */\nexport type Response404 = Error;\n\n/**\n * Conflict\n */\nexport type Response409 = Error;\n\n/**\n * Invalid request payload\n */\nexport type Response422 = Error;\n\n/**\n * Internal server error\n */\nexport type Response500 = Error;\n\n/**\n * An error has occurred\n */\nexport type ErrorResponseResponse = Error;\n\nexport interface GetAddressQueryParams {\n\t/**\n\t * full address query parameter\n\t */\n\tfull_address?: string;\n}\n\nexport type GetAddressProps = Omit<\n\tGetProps<\n\t\tValidatorAddressResponse,\n\t\t| Response400\n\t\t| Response401\n\t\t| Response403\n\t\t| Response500\n\t\t| ErrorResponseResponse,\n\t\tGetAddressQueryParams,\n\t\tvoid\n\t>,\n\t'path'\n>;\n\n/**\n * This endpoint will be used for retrieving list of Australian addresses based on a possible match for a supplied (partial) address.\n */\nexport const GetAddress = (props: GetAddressProps) => (\n\t\n\t\tpath={`/validators/address-lookup`}\n\t\t{...props}\n\t/>\n);\n\nexport type UseGetAddressProps = Omit<\n\tUseGetProps<\n\t\tValidatorAddressResponse,\n\t\t| Response400\n\t\t| Response401\n\t\t| Response403\n\t\t| Response500\n\t\t| ErrorResponseResponse,\n\t\tGetAddressQueryParams,\n\t\tvoid\n\t>,\n\t'path'\n>;\n\n/**\n * This endpoint will be used for retrieving list of Australian addresses based on a possible match for a supplied (partial) address.\n */\nexport const useGetAddress = (props: UseGetAddressProps) =>\n\tuseGet<\n\t\tValidatorAddressResponse,\n\t\t| Response400\n\t\t| Response401\n\t\t| Response403\n\t\t| Response500\n\t\t| ErrorResponseResponse,\n\t\tGetAddressQueryParams,\n\t\tvoid\n\t>(`/validators/address-lookup`, props);\n\nexport type PostAddressProps = Omit<\n\tMutateProps<\n\t\tvoid,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tvoid,\n\t\tvoid,\n\t\tvoid\n\t>,\n\t'path' | 'verb'\n>;\n\n/**\n * This endpoint will be used to indicate to Mastersoft system that address-lookup transaction is complete.\n */\nexport const PostAddress = (props: PostAddressProps) => (\n\t\n\t\tverb=\"POST\"\n\t\tpath={`/validators/address-lookup/completed`}\n\t\t{...props}\n\t/>\n);\n\nexport type UsePostAddressProps = Omit<\n\tUseMutateProps<\n\t\tvoid,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tvoid,\n\t\tvoid,\n\t\tvoid\n\t>,\n\t'path' | 'verb'\n>;\n\n/**\n * This endpoint will be used to indicate to Mastersoft system that address-lookup transaction is complete.\n */\nexport const usePostAddress = (props: UsePostAddressProps) =>\n\tuseMutate<\n\t\tvoid,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tvoid,\n\t\tvoid,\n\t\tvoid\n\t>('POST', `/validators/address-lookup/completed`, props);\n\nexport interface GetParsedAddressQueryParams {\n\t/**\n\t * full address query parameter\n\t */\n\tfull_address?: string;\n}\n\nexport type GetParsedAddressProps = Omit<\n\tGetProps<\n\t\tValidatorAddressResponse,\n\t\tResponse400 | Response401 | Response500 | ErrorResponseResponse,\n\t\tGetParsedAddressQueryParams,\n\t\tvoid\n\t>,\n\t'path'\n>;\n\n/**\n * This endpoint will be used for parsing an unstructured address in standard format.\n */\nexport const GetParsedAddress = (props: GetParsedAddressProps) => (\n\t\n\t\tpath={`/validators/address-parser`}\n\t\t{...props}\n\t/>\n);\n\nexport type UseGetParsedAddressProps = Omit<\n\tUseGetProps<\n\t\tValidatorAddressResponse,\n\t\tResponse400 | Response401 | Response500 | ErrorResponseResponse,\n\t\tGetParsedAddressQueryParams,\n\t\tvoid\n\t>,\n\t'path'\n>;\n\n/**\n * This endpoint will be used for parsing an unstructured address in standard format.\n */\nexport const useGetParsedAddress = (props: UseGetParsedAddressProps) =>\n\tuseGet<\n\t\tValidatorAddressResponse,\n\t\tResponse400 | Response401 | Response500 | ErrorResponseResponse,\n\t\tGetParsedAddressQueryParams,\n\t\tvoid\n\t>(`/validators/address-parser`, props);\n","// Global form fields\n\nexport const ADDRESS = {\n\tCOUNTRY: 'country',\n\tADDRESS_LOOKUP: 'addressLookup',\n\tADDRESS: 'address',\n\tSTREET_1: 'address_line1',\n\tSTREET_2: 'address_line2',\n\t/*** @note: added SUBURB_CITY for SMSF postal address, and leave SUBURB for contact details form */\n\tSUBURB: 'city',\n\tSUBURB_CITY: 'suburb',\n\tSTATE: 'state',\n\tPOSTCODE: 'postcode',\n\tAU_POSTCODE: 'au_postcode',\n\tINTL_POSTCODE: 'intl_postcode',\n\tMANUAL_ADDRESS: 'manual',\n\tADDITIONAL_ADDRESS: 'additionalAddress',\n};\n\nexport const ADDRESS_TYPE = {\n\tRESIDENTIAL: 'RESIDENTIAL',\n\tPOSTAL: 'POSTAL',\n};\n\nexport const MANUAL_ADDRESS = 'manual';\n\nexport const STATE_POSTCODE = 'state-and-postcode';\n\nexport enum DOB {\n\tDAY = 'dob-day',\n\tMONTH = 'dob-month',\n\tYEAR = 'dob-year',\n}\n","import styled from 'styled-components';\n\nexport const InlineFlex = styled.div`\n\tdisplay: inline-flex;\n\tpadding-top: 7px;\n\tpadding-bottom: 7px;\n\tmargin-left: -8px;\n\tjustify-content: center;\n\twidth: 70px;\n`;\n","import React from 'react';\n\nimport * as AC from 'core/styles/AnimationComponents';\nimport * as S from './LoadingDots.style';\n\ninterface IProps {\n\tdotColor: string;\n}\n\nconst LoadingDots = ({ dotColor }: IProps) => (\n\t\n\t\t\n\t\t\t \n\t\t \n\t \n);\n\nexport default LoadingDots;\n","import range from 'lodash/range';\n\n/**\n * Get page numbers that should be displayed in the Pagination component.\n *\n * @description At maximum five numbers of pagination items to display after reach the threshold,\n * including the current page number, start page, end page, and most adjacent page numbers.\n * @param current - the current number that is active\n * @param total - total number of pages\n * @param threshold - maximum number of the page that could be displayed without shortened\n * @return {number[]} - page numbers to display\n * @example\n * // total=10, current=1\n * [1,2,3,4,10]\n * // total=10, current=4\n * [1,3,4,5,10]\n * // total=10, current=5, threshold = 10\n * [1,2,3,4,5,6,7,8,9,10]\n */\nexport const getDisplayedPageNumbers = (\n\tcurrent: number,\n\ttotal: number,\n\tthreshold = 5,\n) => {\n\tif (total <= threshold) {\n\t\treturn range(1, total + 1);\n\t}\n\n\t// edge case when current is near the start\n\tif (current <= 3) {\n\t\treturn [1, 2, 3, 4, total];\n\t}\n\n\t// edge case when current is near the end\n\tif (current >= total - 2) {\n\t\treturn [1, ...range(total - 3, total + 1)];\n\t}\n\n\treturn [1, current - 1, current, current + 1, total];\n};\n","import { css } from 'styled-components';\n\nimport { FONT_NAMES, FONT_WEIGHT } from 'core/styles/fonts';\nimport * as mx from 'core/styles/mixins';\n\n// ------------------------------------\n\nexport const UNIFORM_MARGIN = '0 0 1em 0';\n\nconst uniformMarginCss: any = css`\n\tmargin: ${UNIFORM_MARGIN};\n\n\t&:first-of-type {\n\t\tmargin-top: 0;\n\t}\n`;\n\n// ------------------------------------\n// Core typography styles\n\nexport const displayXLarge: any = css`\n\tfont-size: 44px;\n\tline-height: 40px;\n\tfont-family: ${FONT_NAMES.GOTHAM_ROUNDED_LIGHT};\n\tfont-weight: ${FONT_WEIGHT.LIGHT};\n\n\t/* No explicit margin-top set here as it should always be first child */\n\tmargin: 0 0 32px;\n`;\n\nexport const displayLarge: any = css`\n\tfont-size: 28px;\n\tline-height: 36px;\n\tfont-family: ${FONT_NAMES.GOTHAM_ROUNDED_LIGHT};\n\tfont-weight: ${FONT_WEIGHT.LIGHT};\n\tmargin: 36px 0 24px;\n\n\t${mx.bp('s')`\n\t\tfont-size: 32px;\n\t\tline-height: 40px;\n\t`}\n`;\n\nexport const displayMedium: any = css`\n\tfont-size: 24px;\n\tline-height: 32px;\n\tfont-family: ${FONT_NAMES.GOTHAM_ROUNDED_BOOKED};\n\tfont-weight: ${FONT_WEIGHT.BOOK};\n\tmargin: 24px 0 12px;\n`;\n\nexport const displaySmall: any = css`\n\tfont-size: 20px;\n\tline-height: 28px;\n\tfont-family: ${FONT_NAMES.GOTHAM_ROUNDED_BOOKED};\n\tfont-weight: ${FONT_WEIGHT.BOOK};\n\tmargin: 24px 0 12px;\n`;\n\nexport const displayMediumLight: any = css`\n\tfont-size: 24px;\n\tline-height: 40px;\n\tfont-family: ${FONT_NAMES.GOTHAM_ROUNDED_BOOKED};\n\tfont-weight: ${FONT_WEIGHT.LIGHT};\n\tmargin: 24px 0 12px;\n`;\n\nexport const headingXLarge: any = css`\n\tfont-size: 32px;\n\tline-height: 40px;\n\tfont-family: ${FONT_NAMES.GOTHAM_ROUNDED_LIGHT};\n\tfont-weight: ${FONT_WEIGHT.LIGHT};\n\t${mx.bp('m')`\n\t\tfont-size: 44px;\n\t\tline-height: 52px;\n\t`}\n`;\n\nexport const headingLarge: any = css`\n\tfont-size: 28px;\n\tline-height: 36px;\n\tfont-family: ${FONT_NAMES.GOTHAM_ROUNDED_LIGHT};\n\tfont-weight: ${FONT_WEIGHT.LIGHT};\n\t${mx.bp('m')`\n\t\tfont-size: 32px;\n\t\tline-height: 40px;\n\t`}\n`;\n\nexport const headingSmall: any = css`\n\tfont-size: 24px;\n\tline-height: 32px;\n\tfont-family: ${FONT_NAMES.GOTHAM_ROUNDED_BOOKED};\n\tfont-weight: ${FONT_WEIGHT.BOOK};\n`;\nexport const heading: any = css`\n\tfont-size: 18px;\n\tline-height: 28px;\n\tfont-family: ${FONT_NAMES.GOTHAM_ROUNDED_BOOKED};\n\tfont-weight: ${FONT_WEIGHT.MEDIUM};\n\tmargin: 24px 0 18px;\n`;\n\nexport const h5Heading: any = css`\n\tfont-size: 18px;\n\tline-height: 28px;\n\tfont-family: ${FONT_NAMES.GOTHAM_ROUNDED_MEDIUM};\n\tfont-weight: ${FONT_WEIGHT.MEDIUM};\n\tmargin: 24px 0 18px;\n`;\n\nexport const subHeading: any = css`\n\tfont-size: 16px;\n\tline-height: 24px;\n\tfont-family: ${FONT_NAMES.GOTHAM_ROUNDED_BOOKED};\n\tfont-weight: ${FONT_WEIGHT.SEMI_BOLD};\n`;\n\nexport const subHeadingMedium: any = css`\n\tfont-size: 18px;\n\tline-height: 28px;\n\tfont-family: ${FONT_NAMES.GOTHAM_ROUNDED_BOOKED};\n\tfont-weight: ${FONT_WEIGHT.MEDIUM};\n\tmargin: 24px 0 18px;\n`;\n\nexport const subHeadingSmall: any = css`\n\tfont-size: 12px;\n\tline-height: 16px;\n\tfont-family: ${FONT_NAMES.GOTHAM_ROUNDED_BOOKED};\n\tfont-weight: ${FONT_WEIGHT.MEDIUM};\n\ttext-transform: uppercase;\n`;\n\nexport const bodyMedium = css`\n\tfont-size: 16px;\n\tline-height: 24px;\n\tfont-family: ${FONT_NAMES.GOTHAM_ROUNDED_MEDIUM};\n\tfont-weight: ${FONT_WEIGHT.MEDIUM};\n`;\n\nexport const body = css`\n\tfont-size: 16px;\n\tline-height: 24px;\n\tfont-family: ${FONT_NAMES.OPEN_SANS};\n\tfont-weight: ${FONT_WEIGHT.REGULAR};\n`;\n\nexport const bodySmall: any = css`\n\tfont-size: 14px;\n\tline-height: 20px;\n\tfont-family: ${FONT_NAMES.OPEN_SANS};\n\tfont-weight: ${FONT_WEIGHT.REGULAR};\n`;\n\nexport const caption: any = css`\n\tfont-size: 12px;\n\tline-height: 20px;\n\tfont-family: ${FONT_NAMES.OPEN_SANS};\n\tfont-weight: ${FONT_WEIGHT.REGULAR};\n`;\n\nexport const footnote: any = css`\n\tfont-size: 12px;\n\tline-height: 20px;\n\tcolor: rgba(0, 0, 0, 0.6);\n\tfont-family: ${FONT_NAMES.OPEN_SANS};\n\tfont-weight: ${FONT_WEIGHT.REGULAR};\n`;\n\nexport const inline: any = css`\n\tdisplay: inline;\n\tmargin: 0;\n\tfont: inherit;\n`;\n\n// ------------------------------------\n// Class-driven typography (for Sitecore's rich text editor).\n// Makes all typography styles accessible via class name.\n//\n// NOTE: Don't use these in your components! Use the styled component\n// exports available in the adjacent 'Typography.tsx' file\n\nexport const TYPOGRAPHY_CLASS_PREFIX = 'typography--';\n\n// NOTE: Changing or adding classNames here would also entail\n// like changes in the adjacent Typography.tsx file\nexport const classNameTypography: any = css`\n\t.${TYPOGRAPHY_CLASS_PREFIX}displayXLarge {\n\t\t${displayXLarge}\n\t}\n\n\t.${TYPOGRAPHY_CLASS_PREFIX}displayLarge {\n\t\t${displayLarge}\n\t}\n\n\t.${TYPOGRAPHY_CLASS_PREFIX}displayMedium {\n\t\t${displayMedium}\n\t}\n\n\t.${TYPOGRAPHY_CLASS_PREFIX}displayMediumLight {\n\t\t${displayMediumLight}\n\t}\n\n\t.${TYPOGRAPHY_CLASS_PREFIX}displaySmall {\n\t\t${uniformMarginCss}\n\t\t${displaySmall}\n\t}\n\n\t.${TYPOGRAPHY_CLASS_PREFIX}heading {\n\t\t${uniformMarginCss}\n\t\t${heading}\n\t}\n\n\t.${TYPOGRAPHY_CLASS_PREFIX}subHeading {\n\t\t${uniformMarginCss}\n\t\t${subHeading}\n\t}\n\n\t.${TYPOGRAPHY_CLASS_PREFIX}subHeadingMedium {\n\t\t${uniformMarginCss}\n\t\t${subHeadingMedium}\n\t}\n\n\t.${TYPOGRAPHY_CLASS_PREFIX}subHeadingSmall {\n\t\t${uniformMarginCss}\n\t\t${subHeadingSmall}\n\t}\n\n\t.${TYPOGRAPHY_CLASS_PREFIX}bodyMedium {\n\t\t${uniformMarginCss}\n\t\t${bodyMedium}\n\t}\n\n\t.${TYPOGRAPHY_CLASS_PREFIX}body {\n\t\t${uniformMarginCss}\n\t\t${body}\n\t}\n\n\t.${TYPOGRAPHY_CLASS_PREFIX}bodySmall {\n\t\t${uniformMarginCss}\n\t\t${bodySmall}\n\t}\n\n\t.${TYPOGRAPHY_CLASS_PREFIX}caption {\n\t\t${uniformMarginCss}\n\t\t${caption}\n\t}\n`;\n\n// ------------------------------------\n// Global styles\n\nexport const globalTypography: any = css`\n\t/* ------------------------------------\n\tDefault site-wide fonts and semantic typography */\n\n\thtml {\n\t\tcolor: ${({ theme }) => theme.global.typography.colors.default};\n\t\t${body}\n\t}\n\n\th1 {\n\t\t${displayXLarge}\n\t}\n\n\th2 {\n\t\t${displayLarge}\n\t}\n\n\th3 {\n\t\t${displayMedium}\n\t}\n\n\th4 {\n\t\t${displaySmall}\n\t}\n\n\th5 {\n\t\t${h5Heading}\n\t}\n\n\th6 {\n\t\t${subHeading}\n\t}\n\n\tcaption {\n\t\t${caption}\n\t}\n\n\t/* ------------------------------------\n\tLists */\n\n\t/* Shared logic between ordered/unordered lists */\n\tul,\n\tol {\n\t\tpadding-left: 17px;\n\n\t\tli {\n\t\t\t/* Additional padding is applied here for a total\n\t\t\tof 40px so that list items are offset\n\t\t\tby the additional 10px for nicer alignment. */\n\t\t\tpadding-left: 10px;\n\t\t\tposition: relative;\n\t\t\tmargin-top: 8px;\n\t\t\tline-height: 24px;\n\n\t\t\t&:first-of-type {\n\t\t\t\tmargin-top: 0;\n\t\t\t}\n\t\t}\n\n\t\t/* For nested list elements, have their margins a little\n\t\ttighter so they are visually a little more grouped with\n\t\tthe list item they are nested within. */\n\t\tul,\n\t\tol {\n\t\t\t> li:first-of-type {\n\t\t\t\tmargin-top: 4px;\n\t\t\t}\n\t\t}\n\t}\n\n\tul {\n\t\t/* Fully replacing the default bullet styles so they can\n\t\tvisually be much tighter (smaller) and spaced differently. */\n\t\tlist-style: none;\n\n\t\t> li {\n\t\t\t&::before {\n\t\t\t\t${mx.pseudo}\n\t\t\t\tcontent: '·';\n\t\t\t\tfont-size: 50px;\n\t\t\t\tleft: -18px;\n\t\t\t\ttop: 11px;\n\t\t\t\tline-height: 0;\n\n\t\t\t\t/* So the content in any given pseudo element are\n\t\t\t\tnot selectable with the cursor. */\n\t\t\t\tpointer-events: none;\n\t\t\t}\n\n\t\t\tul > li {\n\t\t\t\t&::before {\n\t\t\t\t\tcontent: 'o';\n\t\t\t\t\tleft: -12px;\n\t\t\t\t\tfont-size: 10px;\n\t\t\t\t}\n\n\t\t\t\t/* Note the selector isn't 'ul > li' here, as nested\n\t\t\t\tlevels 3 and below will share the same ligature. */\n\t\t\t\tul li::before {\n\t\t\t\t\tcontent: '■';\n\t\t\t\t\tfont-size: 8px;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t/* ------------------------------------\n\tMargins */\n\n\th1,\n\th2,\n\th3,\n\th4,\n\th5,\n\th6,\n\tp {\n\t\t${uniformMarginCss}\n\t}\n`;\n","/**\n * @description An array containing all DB components that have API calls\n */\nexport const DbAPIComponents = {\n\tDbAccountSnapshot: 'DbAccountSnapshot',\n\tDbBeneficiaries: 'DbBeneficiaries',\n\tDbBPAY: 'DbBPAY',\n\tDbFinancialAdviserModule: 'DbFinancialAdviserModule',\n\tDbHeroBanner: 'DbHeroBanner',\n\tDbInsuranceCover: 'DbInsuranceCover',\n\tDbInvestments: 'DbInvestments',\n\tDbLatestContributionModule: 'DbLatestContributionModule',\n\tDbPaymentInformation: 'DbPaymentInformation',\n};\n","export const ERROR_CODES = {\n\tTIMEOUT: 'ER02',\n\tGENERIC: 'ER10',\n\tINVALID_TFN: 'ER18',\n\tINVALID_TFN_API: 'ER18a',\n\tAMOUNT_EXCEEDS_BALANCE: 'ER21',\n\tFUND_NOT_SELECTED: 'ER22',\n\tESA_NOT_SELECTED: 'ER55',\n\tNO_SMSF_SELECTED: 'ER56',\n\tUNEXPECTED_REQUEST_API_ERROR: 'ER148',\n\t//Income Payment\n\tAMOUNT_LOW: 'ER48',\n\tAMOUNT_HIGH: 'ER49',\n\tINVALID_BSB: 'ER20',\n\tREQUIRED_CHECK_RADIO: 'ER29',\n\tINVALID_VALUES: 'ER40',\n\tACCOUNT_MAX_9_NUMBERS: 'ER41',\n\tTAL_SSO_NOT_AVAILABLE: 'ER72',\n\tCANNOT_SUBMIT: 'ER89',\n\tDELETE_ALL_BENEFICIARIES: 'ER86',\n\t//Direct Debit\n\tINVALID_ACCOUNT_NAME: 'ER42',\n\tINVALID_ZERO_CONTRIBUTION: 'ER95',\n\tINVALID_ACCOUNT_HOLDER: 'ER29',\n\tACCOUNT_NAME_VALIDATION: 'ER135',\n};\n\nexport const OTP_ERRORS = {\n\tNO_MEMBER: 'ER01',\n\tIDENTITY_LOCKED: 'ER02',\n\tINCORRECT_OTP: 'ER13',\n\tLOCKED_ACCOUNT: 'ER47',\n};\n\nexport const REGISTRATION_EXP_ERRORS = {\n\tNOT_FOUND: 'ER02',\n\tGENERIC: 'ER10',\n};\n\nexport const USERNAME_ERRORS = {\n\tUSERNAME_TAKEN: 'ERU001',\n\tOTHERS: 'ERU002',\n\tINVALID_USERNAME: 'ER100',\n};\n\n// TODO: NO_PREVIOUSLY_USED wil be consume by Edit Username and Pwd cmp\nexport const PASSWORD_ERRORS = {\n\tNO_DISALLOWED_FIELDS: 'ERP001',\n\tNO_BLACKLISTED: 'ERP002',\n\tNO_EMAIL_FORMAT: 'ERP003',\n\tMIN_LENGTH: 'ERP004',\n\tMAX_LENGTH: 'ERP005',\n\tNO_REPEATING: 'ERP006',\n\tNO_PERSONAL_INFO: 'ERP007',\n\tNO_CONSECUTIVE: 'ERP009',\n\tNO_PREVIOUSLY_USED: 'ERP010',\n\tNO_BANNED_WORDS: 'ERP008',\n\tDEFAULT: 'ERP008',\n};\n\nexport const USERNAME_ERRORS_CONTENT = {\n\tUSERNAME_TAKEN: 'ER63',\n};\n\nexport const PASSWORD_ERRORS_CONTENT = {\n\tNO_PERSONAL_INFO: 'ER59',\n\tNO_EMAIL_FORMAT: 'ER60',\n\tNO_USERNAME: 'ER61',\n\tNO_BANNED_WORDS: 'ER62',\n\tOTHER_ERROR: 'ER98',\n};\n\nexport const LOGIN_ERRORS = {\n\tINCORRECT: 'ER03',\n\tUNREGISTERED: 'ER107',\n\tLOCKED_CHILD_ACCOUNT: 'ER139',\n\tCLOSED_ACCOUNT: 'ER140',\n\tGENERIC_LOGIN_ERROR: 'ER152',\n\tMAU_AUTH_FAILURE: 'ER150',\n};\n\nexport const REQUIRED_FIELD = 'ER01';\n\nexport const CONTACT_DETAILS_ERRORS = {\n\tINVALID_EMAIL: 'ER06',\n\tINVALID_HOME_MOBILE: 'ER07',\n\tINVALID_ADDRESS: 'ER08',\n\tINVALID_STREET_ADDRESS: 'ER12',\n\tINVALID_SUBURB: 'ER12',\n\tINVALID_POSTCODE_AU: 'ER09',\n\tINVALID_POSTCODE_INTEL: 'ER66',\n\tCANNOT_SUBMIT_FORM: 'ER89a',\n\tINVALID_MOBILE_NUMBER: 'ER142',\n};\n\nexport const ADDRESS_AUTOCOMPLETE_ERRORS = {\n\tINVALID_ADDRESS: 'ER08',\n\tINVALID_POSTCODE_AU: 'ER09',\n\tINVALID_STREET_ADDRESS: 'ER12',\n\tINVALID_SUBURB: 'ER15',\n\tINVALID_POSTCODE_INTEL: 'ER66',\n};\n\nexport const INVESTMENT_ERRORS = {\n\tDEFAULT: 'ER10',\n\tDECIMAL_NOT_ALLOWED: 'ER131',\n\tINVALID_ALLOCATION_ITEM: 'ER71',\n\tINVALID_ALLOCATION_TOTAL: 'ER50',\n\tINVALID_ORDER_SEQUENCE: 'ER68',\n\tCANCEL_SWITCH_NOT_ALLOWED: 'ER52',\n\tMEMBER_DIRECT_REGISTERED_BUTINELIGIBLE: 'ER45',\n\tPENDING_SWITCH_NOT_AVAILABLE: 'ER51',\n};\n\n// TODO Add error for locked account\nexport const RECOVER_USERNAME_ERRORS = {\n\tDEFAULT: 'ER10',\n\tMULTIPLE_ACCOUNTS_ERROR: 'ER54',\n\tNAME_REQUIRED: 'ER16',\n\tNO_DETAILS_FOUND: 'ER70',\n\tREADY_TO_REGISTER: 'ER77',\n\tFULL_DOB_REQUIRED: 'ER138',\n\t// LOCKED_ACCOUNT_ERROR: '__TODO__'\n};\n\nexport const PASSWORD_USERNAME_RESET_ERRORS = {\n\tINCOMPLETE_REGISTRATION: 'ER107',\n};\n\nexport const WITHDRAWAL_ERRORS = {\n\tFIELD_REQUIRED: 'ER01',\n\tCHECKBOX_REQUIRED: 'ER29',\n\tMISSING_CENTRELINK: 'ER35',\n\tNO_DEBT_ENTERED: 'ER31',\n\tWITHDRAWAL_AMOUNT_MISMATCH: 'ER36',\n\tMINIMUM_BALANCE: 'ER37',\n\tMINIMUM_BALANCE_6K: 'ER39',\n\tMINIMUM_PENSION_AMOUNT: 'ER73',\n\tABN_NOT_FOUND: 'ER57',\n\tAMT_MORE_THAN_10K: 'ER30',\n\tINSUFFICIENT_FUNDS_AVAILABLE: 'ER33',\n\tINVALID_CRN: 'ER28',\n\tAMOUNT_MORE_THAN_AVAILABLE_BALANCE: 'ER34',\n\tMISSING_VALID_FUND: 'ER38',\n\tWHOLE_NUMBER: 'ER99',\n\tAMT_LESS_THAN_1K: 'ER73',\n\tINVALID_SMSF_ABN: 'ER103',\n\tMOBILE_RESTRICTED: 'ER151',\n};\n\nexport const CO_BROWSE_ERRORS = {\n\tSERVICE_CODE_INVALID: 'ER65',\n};\n\nexport const COMM_PREF_ERRORS = {\n\tUNABLE_TO_UPDATE_PRIMARY_COMMS_PREF: 'ER24',\n\tNO_CHANGES_DETECTED: 'ER27',\n};\n\nexport const GREENID_ERRORS = {\n\tAPI_ERROR: 'ER80',\n\tLOCKED_PDF_DOWNLOAD_ERROR: 'ER85',\n};\n\nexport const DIRECT_DEBIT_ERRORS = {\n\tMAX_CONTRIBUTION_AMOUNT: 'ER132',\n};\n","import styled, { css } from 'styled-components';\n\nimport { Cta } from 'core/components/Cta/Cta.style';\nimport { Icon } from 'core/components/Icon/Icon.style';\nimport * as mx from 'core/styles/mixins';\n\nexport const PaginationNavBar = styled.nav<{ theme: any }>`\n\tdisplay: inline-flex;\n\tposition: relative;\n\tjustify-content: center;\n\tmargin: 0 44px;\n\n\t${Cta} > * {\n\t\t${mx.bp('xxs')`\n\t\t\t${mx.circle('32px')}\n\t\t`}\n\n\t\t${mx.circle('24px')}\n\n\t\tpadding: 0;\n\t\tdisplay: flex;\n\t\tjustify-content: center;\n\n\t\t&:hover {\n\t\t\tbackground-color: ${({ theme }) =>\n\t\t\t\ttheme.global.page.tabs.arrowButton.color};\n\t\t}\n\t}\n\n\t${Icon} {\n\t\tmargin: 0;\n\t}\n`;\n\nexport const PageNumberList = styled.ul`\n\t${mx.listReset}\n\t${mx.bp('xxs')`\n\t\tmax-width: 212px;\n\t`}\n\n\tdisplay:inline-flex;\n\talign-items: center;\n\tmax-width: 170px;\n\n\tli {\n\t\tmargin-top: 0;\n\t}\n`;\n\nexport const PaginationItem = styled.li<{\n\tisActive?: boolean;\n\tisHiddenPageIndicator?: boolean;\n}>`\n\tdisplay: inline-flex;\n\tjustify-content: center;\n\tflex-shrink: ${({ isHiddenPageIndicator }) =>\n\t\tisHiddenPageIndicator ? 1 : 0};\n\tflex-grow: ${({ isHiddenPageIndicator }) => (isHiddenPageIndicator ? 1 : 0)};\n\n\t${Cta} > * {\n\t\t${({ isHiddenPageIndicator }) =>\n\t\t\tisHiddenPageIndicator &&\n\t\t\tcss`\n\t\t\t\tpointer-events: none;\n\t\t\t\twidth: auto;\n\t\t\t\theight: auto;\n\t\t\t`}\n\n\t\t${({ isActive, theme }) =>\n\t\t\tisActive &&\n\t\t\tcss`\n\t\t\t\tbackground-color: ${theme.global.ctas.primary.base.color};\n\t\t\t\tcolor: ${theme.global.ctas.primary.base.text};\n\t\t\t\tpointer-events: none;\n\t\t\t`}\n\t}\n\n\t& + & {\n\t\tmargin: 0 0 0 4px;\n\t}\n`;\n\nexport const ArrowContainer = styled.div<{ isForwardArrow?: boolean }>`\n\tdisplay: inline-block;\n\tposition: absolute;\n\tmargin: 0;\n\n\t${({ isForwardArrow }) =>\n\t\tisForwardArrow\n\t\t\t? css`\n\t\t\t\t\t${mx.bp('xxs')`\n\t\t\t\t\t\tright: -20px;\n\t\t\t\t\t`}\n\n\t\t\t\t\tright: -10px;\n\t\t\t\t\ttransform: translate(100%, 0);\n\t\t\t `\n\t\t\t: css`\n\t\t\t\t\t${mx.bp('xxs')`\n\t\t\t\t\t\tleft: -20px;\n\t\t\t\t\t`}\n\n\t\t\t\t\tleft: -10px;\n\t\t\t\t\ttransform: translate(-100%, 0);\n\t\t\t `}\n`;\n\nexport const PaginationBarContainer = styled.div`\n\twidth: 100%;\n\tpadding: 10px 24px;\n\tdisplay: flex;\n\tjustify-content: center;\n\tborder-top: 1px solid ${({ theme }) => theme.global.borders.module};\n`;\n\nexport const PaginationStatusContainer = styled.div<{\n\thasBorderBottom?: boolean;\n\twithoutPadding?: boolean;\n}>`\n\twidth: 100%;\n\tpadding: ${({ withoutPadding }) => `${withoutPadding ? '0' : '10px 24px'}`};\n\tdisplay: flex;\n\tjustify-content: center;\n\t${({ hasBorderBottom }) =>\n\t\tcss`\n\t\t\tborder-bottom: ${hasBorderBottom ? '1px' : '0px'} solid\n\t\t\t\t${({ theme }) => theme.global.borders.module};\n\t\t`};\n`;\n","import React from 'react';\n\nimport Cta from 'core/components/Cta';\nimport { ICONS, Icon } from 'core/components/Icon';\n\nimport { getDisplayedPageNumbers } from './Pagination.helpers';\nimport * as S from './Pagination.style';\n\ninterface IPageIndicator extends Partial> {\n\tpage?: number;\n\tisActive?: boolean;\n}\n\n/**\n * PaginationItem component to handle the page navigation.\n *\n * @note component that indicate hidden page numbers is hidden from the ScreenReaders to avoid confusion.\n */\nconst PaginationItem = ({\n\tpage,\n\tisActive = false,\n\tsetCurrent,\n}: IPageIndicator) => (\n\t\n\t\t setCurrent(page) })}\n\t\t\t{...(page\n\t\t\t\t? {\n\t\t\t\t\t\t'aria-label': `${\n\t\t\t\t\t\t\tisActive ? `Currently on page ${page}` : `Go to page ${page}`\n\t\t\t\t\t\t}`,\n\t\t\t\t\t\t'aria-current': isActive,\n\t\t\t\t }\n\t\t\t\t: { 'aria-hidden': true, 'tabIndex': -1 })}\n\t\t>\n\t\t\t{page ?? '...'}\n\t\t \n\t \n);\n\ninterface IPagination {\n\t/** Total number of the page */\n\ttotal: number;\n\t/** Current page number */\n\tcurrent: number;\n\t/** Set the current page number */\n\tsetCurrent: React.Dispatch>;\n\t/** Increment the current page number by one */\n\thandleForward: () => void;\n\t/** Decrement the current page number by one */\n\thandleBackward: () => void;\n\t/** Data target id for testing */\n\tdataTarget?: string;\n}\n\n/**\n * Pagination component.\n *\n * @description Always has maximum four clickable page indicators and a indicator for the current page.\n */\nconst PaginationBar = ({\n\ttotal = 5,\n\tcurrent = 2,\n\tsetCurrent,\n\thandleForward,\n\thandleBackward,\n\tdataTarget = 'pagination',\n}: IPagination) => {\n\treturn (\n\t\t\n\t\t\t{current !== 1 && (\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t \n\t\t\t\t\t \n\t\t\t\t \n\t\t\t)}\n\t\t\t\n\t\t\t\t{getDisplayedPageNumbers(current, total).map(\n\t\t\t\t\t(pageNumber, index, displayedPageNumbers) => (\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t{!!index &&\n\t\t\t\t\t\t\t\tdisplayedPageNumbers[index - 1] + 1 !== pageNumber && (\n\t\t\t\t\t\t\t\t\t \n\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t \n\t\t\t\t\t\t \n\t\t\t\t\t),\n\t\t\t\t)}\n\t\t\t \n\t\t\t{current !== total && (\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t \n\t\t\t\t\t \n\t\t\t\t \n\t\t\t)}\n\t\t \n\t);\n};\n\nexport default PaginationBar;\n","/* eslint-disable react/prop-types */\n// TODOs:\n// - change url params when page number changes if required\n\nimport React from 'react';\nimport template from 'lodash/template';\n\nimport * as Typo from 'core/styles/Typography';\n\nimport PaginationBar from '../Pagination';\nimport * as S from '../Pagination.style';\n\ninterface IPagination extends React.HTMLAttributes {\n\tdataTarget?: string;\n}\n\ninterface IStatus extends React.HTMLAttributes {\n\tchildren?: React.ReactNode | React.ReactNodeArray;\n\thasBorderBottom?: boolean;\n\twithoutPadding?: boolean;\n}\n\n/**\n * A hook for a controlled Pagination component.\n *\n * @param data \t\t\t - an array of data that should be displayed page by page\n * @param limit\t\t\t\t\t - the maximum number of item to display per page\n * @param defaultPage \t - the default page that is currently active\n * @param statusTemplate - a template string for the page status\n * @example 'Showing ${numOfCurrentItems} of ${totalItems}'\n */\nexport const usePagination = (\n\tdata: T,\n\tlimit = 10,\n\tdefaultPage = 1,\n\tstatusTemplate = 'Showing ${numOfCurrentItems} of ${totalItems}',\n) => {\n\tconst [current, setCurrent] = React.useState(defaultPage);\n\t// total number of pages\n\tconst total = Math.ceil(data.length / limit);\n\t// offset of the items show in current page\n\tconst offset = (current - 1) * limit;\n\tconst currentItems = data.slice(offset, offset + limit);\n\t// NOTE: this string is return by the hook too for situation of having a custom Status component\n\tconst status = template(statusTemplate)({\n\t\tnumOfCurrentItems:\n\t\t\t// Checking if the total items left is equal to current page and current item is only 1 remaining\n\t\t\ttotal === current && currentItems.length === 1\n\t\t\t\t? data.length\n\t\t\t\t: `${1 + offset}-${\n\t\t\t\t\t\tcurrentItems.length === limit ? offset + limit : data.length\n\t\t\t\t }`, //Displays Showing n of n if the current items is equal to limit\n\t\ttotalItems: data.length,\n\t});\n\tconst handleForward = React.useCallback(() => {\n\t\tsetCurrent(current => current + 1);\n\t}, []);\n\n\tconst handleBackward = React.useCallback(() => {\n\t\tsetCurrent(current => current - 1);\n\t}, []);\n\tconst isLastPage = total === current;\n\t/**\n\t * Pagination bar component with its container.\n\t */\n\tconst Pagination = ({ dataTarget, ...restProps }: IPagination) => (\n\t\t\n\t\t\t \n\t\t \n\t);\n\n\t/**\n\t * Status component with its container.\n\t *\n\t * @note for a custom Status component, use the return `status` string to build your own.\n\t */\n\tconst Status = ({\n\t\tchildren,\n\t\thasBorderBottom = true,\n\t\twithoutPadding = false,\n\t\t...restProps\n\t}: IStatus) => (\n\t\t\n\t\t\t\n\t\t\t\t{status}\n\t\t\t \n\t\t\t{children}\n\t\t \n\t);\n\n\treturn { Pagination, Status, status, currentItems, isLastPage };\n};\n","/* Generated by restful-react */\n\nimport React from 'react';\nimport {\n\tGet,\n\tGetProps,\n\tuseGet,\n\tUseGetProps,\n\tMutate,\n\tMutateProps,\n\tuseMutate,\n\tUseMutateProps,\n} from 'restful-react';\n\nexport interface Error {\n\t/**\n\t * HTTP status code\n\t */\n\tstatus: number;\n\t/**\n\t * Code indicating the type error e.g. ERR_VAL_00000001\n\t */\n\terror_code: string;\n\t/**\n\t * Description of the problem\n\t */\n\tdescription: string;\n\t/**\n\t * Optional. More detailed error code, may be used differentiate between variations of the main error type\n\t */\n\terror_sub_code?: string;\n\t/**\n\t * Optional. Further information regarding the problem\n\t */\n\tmore_info?: string;\n\t/**\n\t * Optional. URL to documentation on the error e.g. suggestions for resolution\n\t */\n\tdoc_link?: string;\n}\n\nexport interface PaymentDataType {\n\tdata?: Pensions;\n\tmeta?: Meta;\n}\n\nexport interface ConfigurationDetailsDataType {\n\tdata?: PensionConfiguration;\n}\n\n/**\n * Details of a pensions\n */\nexport interface Pensions {\n\tpension_details?: PensionDetails[];\n\tbank_account_details?: BankAccountDetails[];\n}\n\n/**\n * Configuration Details of a pensions\n */\nexport interface PensionConfiguration {\n\tconfiguration_details?: ConfigurationDetails;\n}\n\nexport interface ConfigurationDetails {\n\t/**\n\t * pension type code\n\t */\n\ttype_code?: string;\n\t/**\n\t * pension type description\n\t */\n\ttype_description?: string;\n\t/**\n\t * pension type status\n\t */\n\ttype_status?: string;\n\t/**\n\t * pension commencent date\n\t */\n\tcommencement_date?: string;\n\t/**\n\t * pension is non commutable\n\t */\n\tis_non_commutable?: boolean;\n\t/**\n\t * pension is death benefit pension\n\t */\n\tis_death_benefit_pension?: boolean;\n\t/**\n\t * pension is death benefit taxfree\n\t */\n\tis_death_benefit_taxfree?: boolean;\n\t/**\n\t * pension is pre1994 pension\n\t */\n\tis_pre1994_pension?: boolean;\n\t/**\n\t * pension is reversionary beeficiary elected\n\t */\n\tis_reversionary_beneficiary_elected?: boolean;\n\t/**\n\t * pension is crystalised\n\t */\n\tis_crystalised?: boolean;\n}\n\nexport interface PensionDetails {\n\t/**\n\t * pension detail effective date\n\t */\n\teffective_date?: string;\n\t/**\n\t * pension detail next payment date\n\t */\n\tnext_payment_date?: string;\n\taccount_based_details?: AccountBasedDetails;\n\tpayment_frequency_details?: PaymentFrequencyDetails;\n\tpayment_calendar?: PaymentCalendar[];\n\ttotal_paid_ytd?: TotalPaidYtd;\n\tpayment_calendar_total_paid?: PaymentCalendarTotalPaid;\n\tpension_benefit_details?: PensionBenefitDetails;\n\tpayment_method_details?: PaymentMethodDetails;\n\tpension_tax?: PensionTax;\n\tcurrent_pension_nomination_details?: CurrentPensionNominationDetails;\n}\n\nexport interface TotalPaidYtd {\n\t/**\n\t * pension details total payment\n\t */\n\ttotal_payment?: number;\n\t/**\n\t * pension details is_payment_complete_ytda\n\t */\n\tis_payment_complete_ytd?: boolean;\n}\n\nexport interface AccountBasedDetails {\n\t/**\n\t * account based details minimum percentage\n\t */\n\tminimum_percentage?: number;\n\t/**\n\t * account based details maximum percentage\n\t */\n\tmaximum_percentage?: number;\n\t/**\n\t * account based details minimum payable\n\t */\n\tminimum_payable?: number;\n\t/**\n\t * account based details maximum payable\n\t */\n\tmaximum_payable?: number;\n}\n\nexport interface PaymentFrequencyDetails {\n\t/**\n\t * payment frequency details payment frequency\n\t */\n\tpayment_frequency?: string;\n\t/**\n\t * payment frequency details day of month 1\n\t */\n\tday_of_month1?: number;\n\t/**\n\t * payment frequency details day of month 2\n\t */\n\tday_of_month2?: number;\n}\n\nexport interface PaymentCalendar {\n\t/**\n\t * payment calendar payment frequency\n\t */\n\tpayment_frequency?: string;\n\t/**\n\t * payment calendar payment due date\n\t */\n\tpayment_due_date?: string;\n\t/**\n\t * payment calendar payment payable date\n\t */\n\tpayment_payable_date?: string;\n\t/**\n\t * paymet calendar gross installment pension\n\t */\n\tgross_installment_pension?: number;\n\t/**\n\t * payment calendar payment status code\n\t */\n\tpayment_status_code?: string;\n\t/**\n\t * payment paid date\n\t */\n\tpaid_date?: string;\n}\n\nexport interface PaymentCalendarTotalPaid {\n\t/**\n\t * gross installment pension\n\t */\n\tgross_installment_pension?: number;\n\t/**\n\t * net installment pension\n\t */\n\tnet_installment_pension?: number;\n}\n\nexport interface PensionBenefitDetails {\n\tannual_pension_details?: AnnualPensionDetails;\n}\n\nexport interface AnnualPensionDetails {\n\t/**\n\t * annual pension details gross elected\n\t */\n\tgross_elected?: number;\n\t/**\n\t * annual pension details taxfree component\n\t */\n\ttaxfree_component?: number;\n\t/**\n\t * annual pension details taxable component\n\t */\n\ttaxable_component?: number;\n}\n\nexport interface PaymentMethodDetails {\n\t/**\n\t * payment method details payment method code\n\t */\n\tpayment_method_code?: string;\n}\n\nexport interface PensionTax {\n\t/**\n\t * pension tax is claiming tax free threshold\n\t */\n\tis_claiming_tax_free_threshold?: boolean;\n\t/**\n\t * pension tax is claiming tax rebate\n\t */\n\tis_claiming_tax_rebate?: boolean;\n\t/**\n\t * pension tax is claiming deductable amount\n\t */\n\tis_claiming_deductible_amount?: boolean;\n\t/**\n\t * pension tax is claiming sr au tax offset\n\t */\n\tis_claiming_sr_au_tax_offset?: boolean;\n\t/**\n\t * pension tax is claiming medicare levy full exempt\n\t */\n\tis_claiming_medicare_levy_full_exempt?: boolean;\n\t/**\n\t * pension tax is claiming medicare levy half exempt\n\t */\n\tis_claiming_medicare_levy_half_exempt?: boolean;\n\t/**\n\t * pension tax is claiming medicare levy surcharge\n\t */\n\tis_claiming_medicare_levy_surcharge?: boolean;\n\t/**\n\t * pension tax is claiming family tax benefit offset\n\t */\n\tis_claiming_family_tax_benefit_offset?: boolean;\n\t/**\n\t * pension tax is claiming specia offset\n\t */\n\tis_claiming_special_offset?: boolean;\n\t/**\n\t * pension tax rebate value\n\t */\n\trebate_value?: number;\n\t/**\n\t * pension tax override deductible value\n\t */\n\toverride_deductible_value?: number;\n\t/**\n\t * pension tax is claiming help offset\n\t */\n\tis_claiming_help_offset?: boolean;\n\t/**\n\t * pension tax is claiming sfss offset\n\t */\n\tis_claiming_sfss_offset?: boolean;\n\t/**\n\t * pension tax benefit value\n\t */\n\ttax_benefit_value?: number;\n\t/**\n\t * pension tax offset value\n\t */\n\ttax_offset_value?: number;\n}\n\nexport interface CurrentPensionNominationDetails {\n\t/**\n\t * current pension nomination details payment type\n\t */\n\tpayment_type?: string;\n\t/**\n\t * current pension nomination details type\n\t */\n\ttype?: string;\n\t/**\n\t * current pension nomination details type description\n\t */\n\ttype_description?: string;\n\t/**\n\t * current pension nomination details type value\n\t */\n\tvalue?: number;\n\t/**\n\t * current pension nomination details index factor\n\t */\n\tindex_factor?: string;\n\t/**\n\t * current pension nomination details index factor descripion\n\t */\n\tindex_factor_description?: string;\n\t/**\n\t * current pension nomination pension period balance\n\t */\n\tpension_period_balance?: number;\n}\n\nexport interface BankAccountDetails {\n\t/**\n\t * bank account details bank id\n\t */\n\tbank_id?: number;\n\t/**\n\t * bank account details amount\n\t */\n\tamount?: number;\n}\n\nexport interface PaymentUpdate {\n\tdata?: PaymentDetails;\n}\n\nexport interface PaymentDetails {\n\t/**\n\t * The date range of the contribution made.This field represents the from date. ISO8601 format.\n\t */\n\teffective_date: string;\n\tpayment_frequency: RefDataBodyDetails;\n\tpayment_date: RefDataBodyDetails;\n\tmonth_nominated: RefDataBodyDetails;\n\tpayment_type: RefDataBodyDetails;\n\tindexation_factor: RefDataBodyDetails;\n\tamount: number;\n}\n\n/**\n * Used to store metadata of a pagination.\n */\nexport interface RefDataBodyDetails {\n\tcode?: string;\n}\n\n/**\n * Used to store metadata of a pagination.\n */\nexport interface Meta {\n\t/**\n\t * The total number of records for this object\n\t */\n\ttotal_records?: number;\n\t/**\n\t * The total number of pages for this object\n\t */\n\ttotal_pages?: number;\n}\n\n/**\n * No Content\n */\nexport type Response201 = void;\n\n/**\n * No Content\n */\nexport type Response204 = void;\n\n/**\n * Bad request\n */\nexport type Response400 = Error;\n\n/**\n * Unauthorized\n */\nexport type Response401 = Error;\n\n/**\n * Not found\n */\nexport type Response404 = Error;\n\n/**\n * Invalid request payload\n */\nexport type Response422 = Error;\n\n/**\n * Internal server error\n */\nexport type Response500 = Error;\n\n/**\n * An error has occurred\n */\nexport type ErrorResponseResponse = Error;\n\nexport interface GetConfigurationDetailsPathParams {\n\t/**\n\t * Product name. i.e Pension\n\t */\n\tproduct_name: 'Pension';\n\t/**\n\t * The member account ID in LINK\n\t */\n\taccount_number: string;\n}\n\nexport type GetConfigurationDetailsProps = Omit<\n\tGetProps<\n\t\tConfigurationDetailsDataType,\n\t\tResponse401 | Response404 | Response500 | ErrorResponseResponse,\n\t\tvoid,\n\t\tGetConfigurationDetailsPathParams\n\t>,\n\t'path'\n> &\n\tGetConfigurationDetailsPathParams;\n\n/**\n * Retrieves all the configuration details of payment of the account.\n */\nexport const GetConfigurationDetails = ({\n\tproduct_name,\n\taccount_number,\n\t...props\n}: GetConfigurationDetailsProps) => (\n\t\n\t\tpath={`/payments/${product_name}/${account_number}/configuration-details`}\n\t\t{...props}\n\t/>\n);\n\nexport type UseGetConfigurationDetailsProps = Omit<\n\tUseGetProps<\n\t\tConfigurationDetailsDataType,\n\t\tResponse401 | Response404 | Response500 | ErrorResponseResponse,\n\t\tvoid,\n\t\tGetConfigurationDetailsPathParams\n\t>,\n\t'path'\n> &\n\tGetConfigurationDetailsPathParams;\n\n/**\n * Retrieves all the configuration details of payment of the account.\n */\nexport const useGetConfigurationDetails = ({\n\tproduct_name,\n\taccount_number,\n\t...props\n}: UseGetConfigurationDetailsProps) =>\n\tuseGet<\n\t\tConfigurationDetailsDataType,\n\t\tResponse401 | Response404 | Response500 | ErrorResponseResponse,\n\t\tvoid,\n\t\tGetConfigurationDetailsPathParams\n\t>(\n\t\t(paramsInPath: GetConfigurationDetailsPathParams) =>\n\t\t\t`/payments/${paramsInPath.product_name}/${paramsInPath.account_number}/configuration-details`,\n\t\t{ pathParams: { product_name, account_number }, ...props },\n\t);\n\nexport interface GetPaymentSummaryQueryParams {\n\t/**\n\t * The date range of the contribution made.This field represents the from date. ISO8601 format.\n\t */\n\tfrom_date?: string;\n\t/**\n\t * The date range of the contribution made. This field represents the to date. ISO8601 format.\n\t */\n\tto_date?: string;\n}\n\nexport interface GetPaymentSummaryPathParams {\n\t/**\n\t * Product name. i.e Pension\n\t */\n\tproduct_name: 'Pension';\n\t/**\n\t * The member account ID in LINK\n\t */\n\taccount_number: string;\n}\n\nexport type GetPaymentSummaryProps = Omit<\n\tGetProps<\n\t\tPaymentDataType,\n\t\tResponse401 | Response404 | Response500 | ErrorResponseResponse,\n\t\tGetPaymentSummaryQueryParams,\n\t\tGetPaymentSummaryPathParams\n\t>,\n\t'path'\n> &\n\tGetPaymentSummaryPathParams;\n\n/**\n * Retrieves all the payment summary of the account.\n */\nexport const GetPaymentSummary = ({\n\tproduct_name,\n\taccount_number,\n\t...props\n}: GetPaymentSummaryProps) => (\n\t\n\t\tpath={`/payments/${product_name}/${account_number}/pensions`}\n\t\t{...props}\n\t/>\n);\n\nexport type UseGetPaymentSummaryProps = Omit<\n\tUseGetProps<\n\t\tPaymentDataType,\n\t\tResponse401 | Response404 | Response500 | ErrorResponseResponse,\n\t\tGetPaymentSummaryQueryParams,\n\t\tGetPaymentSummaryPathParams\n\t>,\n\t'path'\n> &\n\tGetPaymentSummaryPathParams;\n\n/**\n * Retrieves all the payment summary of the account.\n */\nexport const useGetPaymentSummary = ({\n\tproduct_name,\n\taccount_number,\n\t...props\n}: UseGetPaymentSummaryProps) =>\n\tuseGet<\n\t\tPaymentDataType,\n\t\tResponse401 | Response404 | Response500 | ErrorResponseResponse,\n\t\tGetPaymentSummaryQueryParams,\n\t\tGetPaymentSummaryPathParams\n\t>(\n\t\t(paramsInPath: GetPaymentSummaryPathParams) =>\n\t\t\t`/payments/${paramsInPath.product_name}/${paramsInPath.account_number}/pensions`,\n\t\t{ pathParams: { product_name, account_number }, ...props },\n\t);\n\nexport interface UpdatePaymentSummaryPathParams {\n\t/**\n\t * Product name. i.e Pension\n\t */\n\tproduct_name: 'Pension';\n\t/**\n\t * The member account ID in LINK\n\t */\n\taccount_number: string;\n}\n\nexport type UpdatePaymentSummaryProps = Omit<\n\tMutateProps<\n\t\tResponse204,\n\t\tResponse401 | Response404 | Response500 | ErrorResponseResponse,\n\t\tvoid,\n\t\tPaymentUpdate,\n\t\tUpdatePaymentSummaryPathParams\n\t>,\n\t'path' | 'verb'\n> &\n\tUpdatePaymentSummaryPathParams;\n\n/**\n * updates the payment details of the account.\n */\nexport const UpdatePaymentSummary = ({\n\tproduct_name,\n\taccount_number,\n\t...props\n}: UpdatePaymentSummaryProps) => (\n\t\n\t\tverb=\"POST\"\n\t\tpath={`/payments/${product_name}/${account_number}/pensions`}\n\t\t{...props}\n\t/>\n);\n\nexport type UseUpdatePaymentSummaryProps = Omit<\n\tUseMutateProps<\n\t\tResponse204,\n\t\tResponse401 | Response404 | Response500 | ErrorResponseResponse,\n\t\tvoid,\n\t\tPaymentUpdate,\n\t\tUpdatePaymentSummaryPathParams\n\t>,\n\t'path' | 'verb'\n> &\n\tUpdatePaymentSummaryPathParams;\n\n/**\n * updates the payment details of the account.\n */\nexport const useUpdatePaymentSummary = ({\n\tproduct_name,\n\taccount_number,\n\t...props\n}: UseUpdatePaymentSummaryProps) =>\n\tuseMutate<\n\t\tResponse204,\n\t\tResponse401 | Response404 | Response500 | ErrorResponseResponse,\n\t\tvoid,\n\t\tPaymentUpdate,\n\t\tUpdatePaymentSummaryPathParams\n\t>(\n\t\t'POST',\n\t\t(paramsInPath: UpdatePaymentSummaryPathParams) =>\n\t\t\t`/payments/${paramsInPath.product_name}/${paramsInPath.account_number}/pensions`,\n\t\t{ pathParams: { product_name, account_number }, ...props },\n\t);\n","export enum PRODUCT_NAME {\n\tACCUMULATION = 'Accumulation',\n\tPENSION = 'Pension',\n}\n\nexport enum TRANSACTION_SUMMARY_TYPE {\n\tACCOUNT_BALANCES_ESTIMATED_EARNINGS = 'ACCOUNT_BALANCES_ESTIMATED_EARNINGS',\n\tCONTRIBUTIONS = 'CONTRIBUTIONS',\n\tINVESTMENT_RETURNS = 'INVESTMENT_RETURNS',\n\tFEES = 'FEES',\n\tINSURANCE_PREMIUMS = 'INSURANCE_PREMIUMS',\n\tGOVERNMENT_TAXES = 'GOVERNMENT_TAXES',\n\tINCOME_PAYMENTS = 'INCOME_PAYMENTS',\n}\n\nexport enum TRANSACTIONS_URL_PARAM_KEYS {\n\tTRANSACTION_TYPE = 'transactionType',\n\tFY = 'financialYear',\n}\n","export enum PLAN_CODE {\n\tACCUMULATION = 'BF',\n\tPENSION = 'BG',\n}\nexport enum PRODUCT_CLASSIFICATION {\n\tACCUMULATION = 'Accumulation',\n\tTTR = 'TTR',\n\tPENSION = 'Pension',\n\tCI = 'Choice Income',\n}\n\nexport enum TFN_STATUS {\n\tSUPPLIED = 'SUPPLIED',\n\tNOT_SUPPLIED = 'NOT_SUPPLIED',\n}\n\nexport enum TFN_STATUS_READABLE {\n\tSUPPLIED = 'Supplied',\n\tNOT_SUPPLIED = 'Not supplied',\n}\n","export enum BENEFICIARY_TYPE {\n\tNOMINATED = 'NON BINDING',\n\tREVERSIONARY = 'REVERSIONARY',\n\tBINDING = 'BINDING',\n}\n\nexport const TRUSTEE_DETERMINED = 'TrusteeDetermined';\n","export * from './Icon';\n","/* eslint-disable react-hooks/rules-of-hooks */\n\nimport { useGetMock } from 'core/api/mocks';\nimport { smartMockApi } from 'core/api';\nimport {\n\tuseGetBPayReference,\n\tuseGetTfnStatus,\n} from 'core/api/client/AccountApi';\n\nimport GetBPayReferenceMock from './mocks/GetBPayReference.mock.json';\n\nimport GetTfnSuppliedStatus from './mocks/GetTfnSuppliedStatus.mock.json';\n\nexport default smartMockApi({\n\tuseGetBPayReference: {\n\t\tlive: useGetBPayReference,\n\t\tmock: params => useGetMock({ ...params, payload: GetBPayReferenceMock }),\n\t},\n\tuseGetTfnStatus: {\n\t\tlive: useGetTfnStatus,\n\t\tmock: params => useGetMock({ ...params, payload: GetTfnSuppliedStatus }),\n\t},\n});\n","/* eslint-disable @typescript-eslint/camelcase */\nimport React from 'react';\nimport config from 'jss-boilerplate/temp/config.js';\n\nimport { useMemberContext } from 'core/hooks';\nimport { JssTextType } from 'core/utils/sitecore-utils';\nimport { getSelectedMemberAccount } from 'core/sitecore/member';\nimport { ProductNameValues } from 'core/api/client/AccountApi';\n\nimport api from './api';\n\nconst base = `${config.australianSuperApi?.apiDomain}${config.australianSuperApi?.apiPathAccount}`;\n\nexport const useGetBPAYInfo = (\n\tnoTfnMessage: JssTextType,\n\tover75Message: JssTextType,\n\tsitecoreErrMessage?: string,\n) => {\n\tconst [isLoading, setIsLoading] = React.useState(false);\n\tconst [hasModuleError, setHasModuleError] = React.useState(false);\n\n\tconst { age, accounts = [] } = useMemberContext();\n\n\tconst selectedAccount = getSelectedMemberAccount(accounts);\n\tconst accountNumber = selectedAccount?.account_number ?? '';\n\tconst productName = selectedAccount?.product_name ?? '';\n\n\tconst {\n\t\tdata: apiDataTfnStatus,\n\t\terror: apiErrorTfnStatus,\n\t\tloading: apiLoadingTfnStatus,\n\t\trefetch: apiRefetchTfnStatus,\n\t} = api.useGetTfnStatus({\n\t\tbase,\n\t\taccount_number: accountNumber as string,\n\t\tproduct_name: productName as ProductNameValues,\n\t});\n\n\tconst {\n\t\tdata: apiDataBPAY,\n\t\terror: apiErrorBPAY,\n\t\tloading: apiLoadingBPAY,\n\t\trefetch: apiRefetchBPAY,\n\t} = api.useGetBPayReference({\n\t\tbase,\n\t\taccount_number: accountNumber as string,\n\t\tproduct_name: productName as ProductNameValues,\n\t\tqueryParams: {\n\t\t\tcontribution_code: 'MEMBER',\n\t\t},\n\t});\n\n\t/**\n\t * Refetch callback to only refetch failed requests.\n\t */\n\tconst refetch = React.useCallback(() => {\n\t\tapiErrorTfnStatus && apiRefetchTfnStatus();\n\t\tapiErrorBPAY && apiRefetchBPAY();\n\t}, [apiErrorTfnStatus, apiErrorBPAY, apiRefetchBPAY, apiRefetchTfnStatus]);\n\n\t// --------------------------------------------------\n\t// Hook states\n\n\tReact.useEffect(() => {\n\t\tsetIsLoading(apiLoadingTfnStatus || apiLoadingBPAY);\n\t}, [apiLoadingTfnStatus, apiLoadingBPAY]);\n\n\tReact.useEffect(() => {\n\t\tsetHasModuleError(!!apiErrorTfnStatus || !!apiErrorBPAY);\n\t}, [apiErrorTfnStatus, apiErrorBPAY]);\n\n\tconst bPAYInfo = () => {\n\t\tif (!isLoading && !hasModuleError && apiDataTfnStatus) {\n\t\t\tconst tfn_status = apiDataTfnStatus.data?.tfn_status;\n\t\t\tconst noTfn = tfn_status !== 'SUPPLIED';\n\t\t\tconst over75 = Number(age) >= 75;\n\t\t\tconst hasMessage = over75 || noTfn;\n\n\t\t\tif (hasMessage) {\n\t\t\t\treturn {\n\t\t\t\t\t// NOTE: always prioritize the over 75 message than the ano tfn message.\n\t\t\t\t\ttype: over75 ? 'error' : 'warning',\n\t\t\t\t\tmessage: over75 ? over75Message : noTfnMessage,\n\t\t\t\t\tshowBPAYInfo: false,\n\t\t\t\t\tnoTfn,\n\t\t\t\t};\n\t\t\t}\n\t\t}\n\t\t// show BPAY info when there is no any message\n\n\t\treturn { showBPAYInfo: true };\n\t};\n\n\tconst { showBPAYInfo, type, message, noTfn } = bPAYInfo();\n\n\treturn {\n\t\tshowBPAYInfo,\n\t\ttype,\n\t\tmessage,\n\t\tdataBPAY: apiDataBPAY?.data,\n\t\tloading: isLoading,\n\t\terror: apiErrorTfnStatus ?? apiErrorBPAY,\n\t\terrorMessage:\n\t\t\tsitecoreErrMessage ?? apiErrorTfnStatus?.message ?? apiErrorBPAY?.message,\n\t\trefetch,\n\t\tnoTfn,\n\t};\n};\n","import styled from 'styled-components';\n\nexport const Wrapper = styled.div`\n\tmargin: 176px 0;\n`;\n\nexport const Container = styled.div`\n\twidth: 100%;\n\tdisplay: flex;\n\tjustify-content: space-between;\n\talign-items: center;\n\tflex-flow: column wrap;\n\tmargin: 60px 0;\n\n\t> * {\n\t\tmargin: 12px 0;\n\t}\n\n\timg {\n\t\twidth: 40px;\n\t\theight: 40px;\n\t}\n\n\tanimation: fadeIn ease 1s;\n\t@-webkit-animation: fadeIn ease 1s;\n\t@-moz-animation: fadeIn ease 1s;\n\t@-o-animation: fadeIn ease 1s;\n\t@-ms-animation: fadeIn ease 1s;\n\n\t@keyframes fadeIn {\n\t\t0% {\n\t\t\topacity: 0;\n\t\t}\n\t\t100% {\n\t\t\topacity: 1;\n\t\t}\n\t}\n\n\t@-moz-keyframes fadeIn {\n\t\t0% {\n\t\t\topacity: 0;\n\t\t}\n\t\t100% {\n\t\t\topacity: 1;\n\t\t}\n\t}\n\n\t@-webkit-keyframes fadeIn {\n\t\t0% {\n\t\t\topacity: 0;\n\t\t}\n\t\t100% {\n\t\t\topacity: 1;\n\t\t}\n\t}\n\n\t@-o-keyframes fadeIn {\n\t\t0% {\n\t\t\topacity: 0;\n\t\t}\n\t\t100% {\n\t\t\topacity: 1;\n\t\t}\n\t}\n\n\t@-ms-keyframes fadeIn {\n\t\t0% {\n\t\t\topacity: 0;\n\t\t}\n\t\t100% {\n\t\t\topacity: 1;\n\t\t}\n\t}\n`;\n","import React from 'react';\n\nimport * as Typo from 'core/styles/Typography';\nimport { Icon, ICONS } from 'core/components/Icon';\nimport * as AC from 'core/styles/AnimationComponents';\n\nimport * as S from './LoginSpinner.style';\n\ninterface IProps {\n\tdataTargetId?: string;\n}\n\nexport const LoginSpinner = ({ dataTargetId = 'login-spinner' }: IProps) => (\n\t\n\t\t\n\t\t\t\n\t\t\t\t \n\t\t\t \n\t\t\t\n\t\t\t\t{/* TODO: Use sitecore content */}\n\t\t\t\t{`Securely logging you in...`}\n\t\t\t \n\t\t \n\t \n);\n","/* eslint-disable no-restricted-imports */\n\nimport { isExperienceEditorActive } from '@sitecore-jss/sitecore-jss-react';\nimport { isStorybook } from 'stories/utils';\nimport { isInSitecorePreviewOrEditMode } from 'core/utils/global-utils';\n\n// ------------------------\n// Types\n\n// Extract the live api function type out\ntype LiveApiFunction = T extends { live: infer U; mock: any } ? U : T;\n\ntype SmartMockedApiFunctions = { [key in keyof T]: LiveApiFunction };\n\n// ------------------------\n\nconst shouldMock =\n\tisStorybook() ||\n\tisExperienceEditorActive() ||\n\tisInSitecorePreviewOrEditMode();\n\nexport const smartMockApi = <\n\tT extends { [key: string]: { live: any; mock: (props: any) => any } }\n>(\n\tapiFunctions: T,\n): SmartMockedApiFunctions =>\n\tObject.keys(apiFunctions).reduce((acc, apiObjKey) => {\n\t\tconst { mock, live } = (apiFunctions as any)[apiObjKey];\n\t\t(acc as any)[apiObjKey] = shouldMock ? mock : live;\n\n\t\treturn acc;\n\t}, {}) as SmartMockedApiFunctions;\n","/* Note this Context's Provider is applied in _AppContainer */\n\nimport React from 'react';\n\nimport { Member } from 'core/interface/MemberAccount';\n\n// Note fallback member is applied in src/_AppContainer\nexport const MemberContext = React.createContext({});\n\n/**\n * HOC for the React Context 'MemberContext'; injects the\n * 'member' prop into the provided .\n *\n * @param {Node} Component\n */\nexport const withMemberContext = (\n\tComponent: React.ComponentType
,\n): React.FC>> => {\n\tconst WithMemberContext = (\n\t\tprops: Pick>,\n\t) => {\n\t\treturn (\n\t\t\t\n\t\t\t\t{member => }\n\t\t\t \n\t\t);\n\t};\n\n\tconst wrappedComponentName =\n\t\t(Component.displayName ?? Component.name) || 'Component';\n\tWithMemberContext.displayName = `withMemberContext(${wrappedComponentName})`;\n\n\treturn WithMemberContext;\n};\n\nexport const useMemberContext = () =>\n\tReact.useContext(MemberContext as any);\n","export default {\n\tLOGO_ALT: 'AustralianSuper logo',\n};\n","import styled from 'styled-components';\n\nexport const Wrapper = styled.header`\n\tbackground-color: ${({ theme }) => theme.global.page.color};\n`;\n\nexport const Content = styled.div`\n\tdisplay: flex;\n\tflex-direction: column;\n\talign-items: center;\n\tpadding: 59px 0 39px;\n\n\timg {\n\t\twidth: 237px;\n\t}\n`;\n","import React from 'react';\nimport { withTheme } from 'styled-components';\n\nimport { IThemeObject } from 'pods/theme';\nimport LayoutPadding from 'core/components/LayoutPadding';\nimport {\n\tJssLinkType,\n\tJssImageType,\n\tgetCleanImageSrc,\n} from 'core/utils/sitecore-utils';\n\nimport * as S from './UnauthenticatedHeader.style';\nimport CONTENT from '../../Header.content';\n\ninterface IProps {\n\ttheme: IThemeObject;\n\tlogoUrl?: JssLinkType;\n\tlogoSrc?: JssImageType;\n}\n\nconst UnauthenticatedHeader = ({ logoUrl, logoSrc }: IProps) => (\n\t\n\t\t\n\t\t\t{(logoSrc && (\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t \n\t\t\t\t\t \n\t\t\t\t \n\t\t\t)) || <>>}\n\t\t \n\t \n);\n\nexport default withTheme(UnauthenticatedHeader);\n","import styled from 'styled-components';\n\nimport * as mx from 'core/styles/mixins';\n\nconst MOBILE_BP = 'm';\n\nexport const Wrapper = styled.div`\n\tbackground-color: ${({ theme }) => theme.global.page.color};\n\tpadding: 20px 0 32px; /* Offset 12px li margin-top */\n\n\t${mx.bp(MOBILE_BP)`\n\t\tpadding: 52px 0 32px; /* Offset 12px li margin-top */\n\t`}\n`;\n\nexport const ListItem = styled.li`\n\t&,\n\ta {\n\t\tcolor: ${({ theme }) => theme.global.typography.colors.subdued};\n\t\tfont-size: 12px;\n\t\tline-height: 20px;\n\n\t\t${mx.bp(MOBILE_BP)`\n\t\t\tfont-size: 14px;\n\t\t\tline-height: 24px;\n\t\t`}\n\t}\n\n\ta {\n\t\ttext-decoration: none;\n\n\t\t&:hover,\n\t\t&:focus {\n\t\t\ttext-decoration: underline;\n\t\t\tcolor: ${({ theme }) => theme.global.typography.colors.active};\n\t\t}\n\t}\n`;\n\nexport const List = styled.ul`\n\t${mx.listReset}\n\tdisplay: flex;\n\tflex-direction: column;\n\talign-items: center;\n\tjustify-content: center;\n\n\t${ListItem} {\n\t\tmargin: 12px 24px 0;\n\t}\n\n\t${mx.bp(MOBILE_BP)`\n\t\tflex-flow: row wrap;\n\t`}\n`;\n","/* eslint-disable-next-line no-restricted-imports */\nimport React from 'react';\nimport { uid } from 'react-uid';\nimport { template } from 'lodash';\n\nimport { useAppContext } from 'core/hooks';\nimport LayoutPadding from 'core/components/LayoutPadding';\nimport { LIVE_ASSIST_BUTTON_TEXT } from 'core/constants';\n\nimport Cta from 'core/components/Cta';\n\nimport * as S from './UnauthenticatedFooter.style';\nimport { IFields } from '../../Footer.sitecore';\n\ninterface IProps {\n\tfields: IFields;\n}\n\nconst UnauthenticatedFooter = ({ fields }: IProps) => {\n\tconst { footerLinksUnAuth } = fields;\n\n\tif (\n\t\ttypeof fields?.footerLinksUnAuth === 'undefined' ||\n\t\t!fields?.footerLinksUnAuth\n\t) {\n\t\tconsole.log(\n\t\t\t'[for monitoring] - unauth footer fields: ',\n\t\t\tfields?.footerLinksUnAuth,\n\t\t);\n\t}\n\n\tconst { handleLivePersonModal } = useAppContext();\n\n\tconst footerYearText = template(fields?.copyrightText?.value)({\n\t\tcurrentYear: new Date().getFullYear(),\n\t});\n\n\treturn (\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t{footerLinksUnAuth &&\n\t\t\t\t\t\tfooterLinksUnAuth.map(({ id, fields }) => {\n\t\t\t\t\t\t\tconst linkText = fields?.footerLink?.value?.text;\n\n\t\t\t\t\t\t\treturn linkText !== undefined ? (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{linkText === LIVE_ASSIST_BUTTON_TEXT ? (\n\t\t\t\t\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\t\t\t\t\thandleLivePersonModal(true);\n\t\t\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\t\t{linkText}\n\t\t\t\t\t\t\t\t\t\t \n\t\t\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\t\t \n\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t \n\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\tconsole.error(\n\t\t\t\t\t\t\t\t\t`[For monitoring] Footer UnAuth - linktext value is ${linkText}`,\n\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t);\n\t\t\t\t\t\t})}\n\t\t\t\t\t\n\t\t\t\t\t\t{fields?.copyrightText === undefined &&\n\t\t\t\t\t\t\tconsole.error(\n\t\t\t\t\t\t\t\t`[For monitoring] Footer UnAuth - copyrightText value is ${fields?.copyrightText}`,\n\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t{footerYearText}\n\t\t\t\t\t \n\t\t\t\t \n\t\t\t \n\t\t \n\t);\n};\n\nexport default UnauthenticatedFooter;\n","module.exports = __webpack_public_path__ + \"static/media/logo.968ba1f2.svg\";","import React from 'react';\n\nimport { MemberContext, fallbackMember } from 'core/sitecore/member';\nimport { Member } from 'core/api/client/MemberApi';\n\n/**\n * Detects whether the current environment is within Storybook,\n * based on custom node environment variable set at both run/build time.\n */\nexport const isStorybook = (): boolean => !!process.env.STORYBOOK_ACTIVE;\n\ninterface IMemberContextProvider extends Partial {\n\tchildren: React.ReactNode | React.ReactNodeArray;\n}\n\n/**\n * A mock member context to provide component access to member object in storybook.\n * Member object is default to the 'ashley' mock data, but can be override.\n */\nexport const MemberContextProvider = ({\n\tchildren,\n\t...restProps\n}: IMemberContextProvider) => {\n\tconst member = { ...fallbackMember, ...restProps };\n\n\treturn (\n\t\t{children} \n\t);\n};\n","import styled, {\n\tcss,\n\tFlattenSimpleInterpolation as CSS,\n} from 'styled-components';\n\nimport * as mx from 'core/styles/mixins';\nimport { Icon } from 'core/components/Icon/Icon.style';\nimport { CtaType, CtaStateType } from 'pods/theme';\nimport { FONT_WEIGHT, FONT_NAMES } from 'core/styles/fonts';\n\n// ------------------------------------\n// Variables\n\nexport const CTA_CLASS_WRAPPER = 'cta-wrapper';\nexport const CTA_CLASS = 'cta';\nexport const JSS_CTA_CLASS = '-JssCtaLink';\n\nexport const CTA_PADDING = '8px 20px';\nconst CTA_BORDER_WIDTH = 1;\n\nconst CTA_SIZE = {\n\textraSmall: '12px',\n\tsmall: '14px',\n\tmedium: '16px',\n\tlarge: '18px',\n};\n\n// ------------------------------------\n\nconst getCtaStyles = (cta: CtaType, isInverted: boolean): CSS => {\n\tconst base = isInverted ? cta.inverted.base : cta.base;\n\tconst hover = { ...base, ...cta.hover };\n\tconst active = { ...base, ...cta.active };\n\tconst alert = { ...base, ...cta.alert };\n\tconst disabled = { ...base, ...cta.disabled };\n\tconst loading = { ...base, ...cta.loading };\n\n\tconst getState = (state: CtaStateType): CSS => css`\n\t\tbackground-color: ${!state.color ? 'unset' : state.color};\n\t\tborder: none;\n\n\t\t/* Set text color, ensuring to override any nested semantic anchor global styles. */\n\t\t&,\n\t\ta {\n\t\t\tcolor: ${state.text};\n\t\t}\n\n\t\t&:not(.-disabled) {\n\t\t\t${!!state.border &&\n\t\t\t\tcss`\n\t\t\t\t\t/* If the cta has a border, offset the vertical padding\n\t\t\t\t\tso the height of the cta is equal to other CTAs without borders. */\n\t\t\t\t\tpadding: ${CTA_PADDING.split(' ')\n\t\t\t\t\t\t.map((px: string, idx) =>\n\t\t\t\t\t\t\tidx === 0 ? `${parseInt(px) - CTA_BORDER_WIDTH}px` : px,\n\t\t\t\t\t\t)\n\t\t\t\t\t\t.join(' ')};\n\t\t\t\t\tborder: ${CTA_BORDER_WIDTH}px solid ${state.border};\n\t\t\t\t`}\n\t\t}\n\t`;\n\n\treturn (css as any)`\n\t\t${getState(base)}\n\n\t\t&:not(.-disabled) {\n\t\t\t&:hover,\n\t\t\t&.-hovered,\n\t\t\t&:focus {\n\t\t\t\t${getState(hover)}\n\t\t\t\ttext-decoration: none;\n\t\t\t}\n\n\t\t\t&:focus {\n\t\t\t\t${mx.mimicFocus}\n\t\t\t}\n\n\t\t\t&:active {\n\t\t\t\t${getState(active)}\n\t\t\t}\n\t\t}\n\n\t\t${alert &&\n\t\t\tcss`\n\t\t\t\t&.-alert {\n\t\t\t\t\t${getState(alert)}\n\t\t\t\t}\n\t\t\t`}\n\n\t\t&.-disabled {\n\t\t\t${getState(disabled)}\n\t\t\tcursor: not-allowed;\n\t\t}\n\n\t\t&.-loading {\n\t\t\t${getState(loading)}\n\t\t\tcursor: not-allowed;\n\t\t}\n\t`;\n};\n\n// CTAs are driven by the `.cta` class name and modifiers\n// due to CMS requirements wherein authors need to be able\n// to get visual parity in Sitecore RTE when making hyperlinks\n// \"look like CTAs\" by adding a className to them\n//\n// ! Don't use the .cta class names in your components!\n// ! -- The Cta component just uses these under the hood,\n// ! -- and has corresponding component props for all these options\nexport const classNameCtas = css`\n\t.${CTA_CLASS},\n\t\t.${CTA_CLASS}-primary,\n\t\t.${CTA_CLASS}-secondary,\n\t\t.${CTA_CLASS}-plain\n\t\t.${CTA_CLASS}-warning {\n\t\t${mx.buttonReset};\n\t\tfont-size: 16px;\n\t\tline-height: 1.5; /* TODO: Adjust to 1.2 when Cta size is small */\n\t\tdisplay: inline-flex;\n\t\talign-items: center;\n\t\toutline: none;\n\t\tpadding: ${CTA_PADDING};\n\t\ttext-align: center;\n\t\tborder-width: 2px;\n\t\tborder-style: solid;\n\t\tborder-radius: 24px;\n\t\tmargin: 10px 0;\n\t\tposition: relative;\n\t\tcursor: pointer;\n\t\ttext-decoration: none;\n\t\tuser-select: none;\n\t\tfont-family: ${FONT_NAMES.OPEN_SANS};\n\t\tfont-weight: ${FONT_WEIGHT.SEMI_BOLD};\n\n\t\t/* Emulates 'press down' */\n\t\t&:not(.-plain):not(.-disabled):active {\n\t\t\ttop: 2px;\n\t\t}\n\t}\n\n\t.${CTA_CLASS} {\n\t\t${({ theme }) => {\n\t\t\tconst ctas = theme.global.ctas;\n\n\t\t\treturn css`\n\t\t\t\t/* --------------------------------\n\t\t\t\tPrimary (by default) */\n\n\t\t\t\t&-primary {\n\t\t\t\t\t${getCtaStyles(ctas.primary, false)}\n\n\t\t\t\t\t&.-inverted {\n\t\t\t\t\t\t${getCtaStyles(ctas.primary, true)}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t/* -------------------------------- */\n\n\t\t\t\t&-secondary {\n\t\t\t\t\t${getCtaStyles(ctas.secondary, false)}\n\n\t\t\t\t\t&.-inverted {\n\t\t\t\t\t\t${getCtaStyles(ctas.secondary, true)}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t&-plain {\n\t\t\t\t\t${getCtaStyles(ctas.plain, false)}\n\n\t\t\t\t\t&.-inverted {\n\t\t\t\t\t\t${getCtaStyles(ctas.plain, true)}\n\t\t\t\t\t}\n\n\t\t\t\t\t/* Link alike cta that has a underline */\n\t\t\t\t\t&.-linkAlike {\n\t\t\t\t\t\tpadding: 0;\n\t\t\t\t\t\ttext-decoration: underline;\n\t\t\t\t\t\ttext-decoration-color: inherit;\n\t\t\t\t\t\tfont-weight: ${FONT_WEIGHT.REGULAR};\n\t\t\t\t\t}\n\n\t\t\t\t\t&.-withoutPadding {\n\t\t\t\t\t\tpadding: 0;\n\n\t\t\t\t\t\t&.-isJssWithIcon {\n\t\t\t\t\t\t\tline-height: normal;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t&-warning {\n\t\t\t\t\t${getCtaStyles(ctas.warning, false)}\n\n\t\t\t\t\t&.-inverted {\n\t\t\t\t\t\t${getCtaStyles(ctas.warning, true)}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t`;\n\t\t}}\n\t}\n`;\n\n// -----------------------------------\n\n// Wraps the component purely so we can\n// target it from other Styled Components\nexport const Cta = styled.div`\n\tdisplay: inline-block;\n\n\t> .${CTA_CLASS} {\n\t\t/* Width 100% so this div controls the CTA tag (a, button, span) width */\n\t\twidth: 100%;\n\t}\n`;\n\nexport const CtaJssWithIcon = styled.i`\n\tdisplay: flex;\n\tmargin-left: 5px;\n`;\n\nexport const Content = styled.span<{\n\ticonAlign: 'left' | 'right';\n\tsize: 'extraSmall' | 'small' | 'medium' | 'large';\n}>`\n\tposition: relative;\n\tdisplay: flex;\n\talign-items: center;\n\n\t${({ size }) => css`\n\t\tfont-size: ${CTA_SIZE[size] ?? '16px'};\n\t`}\n\n\t${Icon} {\n\t\tright: auto;\n\t\tmargin-left: 8px;\n\t\talign-self: center;\n\t}\n\n\t${({ iconAlign }) =>\n\t\ticonAlign === 'left' &&\n\t\tcss`\n\t\t\tflex-direction: row-reverse;\n\n\t\t\t${Icon} {\n\t\t\t\tmargin: 0 8px 0 0;\n\t\t\t}\n\t\t`};\n\n\t/* Override the style set from the scTextWrapper for align icon inside the anchor component */\n\t&&& > a {\n\t\tdisplay: inherit;\n\t\tflex-direction: inherit;\n\t}\n`;\n\nexport const SitecoreOverrides = styled.div<{\n\tisDisabled?: boolean;\n\tisLoading?: boolean;\n\tisWithoutPadding?: boolean;\n\tisJssWithIcon?: boolean;\n}>`\n\t> .${CTA_CLASS} {\n\t\t/* Move padding to Sitecore's anchor tag so the click-to-edit\n\t\tarea is as large as the whole CTA and not just its text. !important\n\t\tso as to override with certainty and not fight with derivative/calculated\n\t\tpadding like on CTAs with borders. */\n\n\t\t/* Note: padding should be preserved for the loading state when there is no sitecore anchor tag */\n\t\t${({ isLoading }) =>\n\t\t\t!isLoading &&\n\t\t\tcss`\n\t\t\t\tpadding: 0 !important;\n\t\t\t`}\n\t}\n\n\t/* Sitecore's Experience Editor renders JSS links a little differently;\n\tlinks are just rendered as regular anchors, which we can target by the class name\n\tadded in the component - it's preferable to have padding on the anchor itself\n\tand not on the 'CTA_CLASS' tag so that the actual clickable anchor is the ENTIRE CTA.\n\tEmpty links (unauthored) omit the anchor tag and instead render a span with 'scTextWrapper'\n\tclass, which we can hook into for visual parity with CTA content parity. */\n\t.${CTA_CLASS} a,\n\t.scTextWrapper {\n\t\ttext-decoration: none;\n\t\tdisplay: block;\n\t\tpadding: ${({ isWithoutPadding }) => (isWithoutPadding ? 0 : CTA_PADDING)};\n\n\t\t&:focus {\n\t\t\t${mx.mimicFocus}\n\t\t}\n\n\t\t${({ isDisabled }) =>\n\t\t\tisDisabled &&\n\t\t\tcss`\n\t\t\t\tpointer-events: none;\n\t\t\t`}\n\t}\n`;\n","/* Generated by restful-react */\n\nimport React from 'react';\nimport { Get, GetProps, useGet, UseGetProps } from 'restful-react';\n\nexport interface Error {\n\t/**\n\t * HTTP status code\n\t */\n\tstatus: number;\n\t/**\n\t * Code indicating the type error e.g. ERR_VAL_00000001\n\t */\n\terror_code: string;\n\t/**\n\t * Description of the problem\n\t */\n\tdescription: string;\n\t/**\n\t * Optional. More detailed error code, may be used differentiate between variations of the main error type\n\t */\n\terror_sub_code?: string;\n\t/**\n\t * Optional. Further information regarding the problem\n\t */\n\tmore_info?: string;\n\t/**\n\t * Optional. URL to documentation on the error e.g. suggestions for resolution\n\t */\n\tdoc_link?: string;\n}\n\nexport interface FinancialYearReference {\n\tdata?: {\n\t\tvalues?: FinancialYearReferenceDataTypes;\n\t};\n\tmeta?: Meta;\n}\n\nexport interface FormStatusReference {\n\tdata?: {\n\t\tvalues?: FormStatusReferenceDataTypes;\n\t};\n\tmeta?: Meta;\n}\n\nexport type FormStatusReferenceDataTypes = FormStatusReferenceDataType[];\n\nexport interface FormStatusReferenceDataType {\n\tcode?: string;\n\tdescription?: string;\n\tsupplemental_data?: FormStatusSupplementalDataType;\n}\n\nexport interface FormStatusSupplementalDataType {\n\tvalues?: { [key: string]: any };\n}\n\nexport type FinancialYearReferenceDataTypes = FinancialYearReferenceDataType[];\n\nexport interface FinancialYearReferenceDataType {\n\tdescription?: string;\n\tdate_range?: FinancialYearDateRangeDataType;\n}\n\nexport interface FinancialYearDateRangeDataType {\n\tfrom_date?: string;\n\tto_date?: string;\n}\n\nexport interface EmployerClassificationDataType {\n\tdata?: {\n\t\tvalues?: EmployerClassificationDataTypeData;\n\t};\n\tmeta?: Meta;\n}\n\nexport type EmployerClassificationDataTypeData = EmployerClassificationDataTypeDataValues[];\n\nexport interface EmployerClassificationDataTypeDataValues {\n\tdefault_classification_id_field?: string;\n\tdefault_classification_id?: string;\n\tdefault_classifications?: DefaultClassificationDataTypeArray;\n\trestricted_classification_ids?: RestrictedClassificationIdDataTypeArray;\n\toccupation_minimum?: OccupationMinimumType;\n}\n\nexport type DefaultClassificationDataTypeArray = DefaultClassificationDataTypeItem[];\n\nexport interface DefaultClassificationDataTypeItem {\n\temployment_type?: string;\n\tdefault_classification_id?: string;\n}\n\nexport type RestrictedClassificationIdDataTypeArray = RestrictedClassificationIdDataTypeItem[];\n\nexport interface RestrictedClassificationIdDataTypeItem {\n\tid?: string;\n\tshort_description?: string;\n\tlong_description?: string;\n}\n\nexport interface OccupationMinimumType {\n\tcode?: string;\n\tshort_description?: string;\n\tlong_description?: string;\n}\n\nexport interface AdditionalDataDefinitionsAsync {\n\tdata?: {\n\t\tvalues?: AdditionalDataDefinitionsAsyncDataTypes;\n\t};\n\tmeta?: Meta;\n}\n\nexport type AdditionalDataDefinitionsAsyncDataTypes = AdditionalDataDefinitionsAsyncDataTypeValues[];\n\nexport interface AdditionalDataDefinitionsAsyncDataTypeValues {\n\tadditional_data_category?: string;\n\tplan_code?: string;\n\tname?: string;\n\tlabel?: string;\n\tshort_description?: string;\n\tlong_description?: string;\n\tis_mandatory?: boolean;\n\tallowed_values?: AdditionalDataDefinitionsAsyncDataTypeAllowedValues[];\n\tdata_type?: string;\n}\n\nexport interface AdditionalDataDefinitionsAsyncDataTypeAllowedValues {\n\tcode?: string;\n\tshort_description?: string;\n\tlong_description?: string;\n}\n\nexport interface ReferenceDataSuperFunds {\n\tdata?: ReferenceDataSuperFundsData;\n\tmeta?: Meta;\n}\n\nexport interface ReferenceDataSuperFundsData {\n\tvalues?: ReferenceDataSuperFundsDataValues[];\n}\n\nexport interface ReferenceDataSuperFundsDataValues {\n\teRollover?: boolean;\n\t/**\n\t * Unique Superannuation Identifier. Note usi and spin are used interchangibly and either of them can be empty\n\t */\n\tusi?: string;\n\tfund_code?: string;\n\t/**\n\t * flag to identify if the fund is registered with super stream\n\t */\n\tsuperstream_registered_flag?: boolean;\n\t/**\n\t * Australian Business Number\n\t */\n\tabn: string;\n\t/**\n\t * number identifying superannuation fund\n\t */\n\tsuperannuation_fund_number: string;\n\t/**\n\t * short description of the superannuation fund\n\t */\n\tshort_description?: string;\n\t/**\n\t * name of the superannuation fund\n\t */\n\tname: string;\n\t/**\n\t * name of the body regulating the fund. Possible values are APRA - Australian Prudential Regulation Authority\n\t */\n\tregulator?: string;\n\t/**\n\t * Super Product Identifier Number. Note usi and spin are used interchangibly and either of them can be empty\n\t */\n\tspin?: string;\n}\n\nexport interface ReferenceDataSMSFFunds {\n\tdata?: ReferenceDataSMSFData;\n\tmeta?: Meta;\n}\n\nexport interface ReferenceDataSMSFData {\n\tvalues?: ReferenceDataSMSFDataValues[];\n}\n\nexport interface ReferenceDataSMSFDataValues {\n\t/**\n\t * number identifying smsf provider\n\t */\n\tid: string;\n\t/**\n\t * electronic service address\n\t */\n\tesi_alias: string;\n\t/**\n\t * name of the smsf message provider\n\t */\n\tname: string;\n}\n\nexport interface ReferenceDataInvestmentPerformance {\n\tdata: ReferenceDataInvestmentPerformanceData;\n}\n\nexport interface ReferenceDataInvestmentPerformanceData {\n\tproduct_name: string;\n\tinvestment_performance: InvestmentPerformance[];\n}\n\nexport interface InvestmentPerformance {\n\tinvestment_code: string;\n\tinvestment_description: string;\n\tas_at: string;\n\tten_years_rates: InvestmentPerformanceYearRates;\n\tfive_years_rates: InvestmentPerformanceYearRates;\n\tthree_years_rates: InvestmentPerformanceYearRates;\n\tone_year_rates: InvestmentPerformanceYearRates;\n}\n\nexport interface InvestmentPerformanceYearRates {\n\taustraliansuper: number;\n\tbenchmark: number;\n\tcpi: number;\n}\n\nexport interface ReferenceDataType {\n\tdata?: DataReferenceDataType;\n\tmeta?: Meta;\n}\n\nexport interface InsurancePlanReferenceDataType {\n\tdata?: InsurancePlanDataReferenceDataType;\n\tmeta?: Meta;\n}\n\nexport interface BsbReferenceDataType {\n\tdata?: BsbValueReferenceDataType;\n}\n\nexport interface MemberClassificationReferenceDataType {\n\tdata?: MemberClassificationDataReferenceDataType;\n\tmeta?: Meta;\n}\n\nexport interface OccupationReferenceDataType {\n\tdata?: OccupationDataReferenceDataType;\n\tmeta?: Meta;\n}\n\nexport interface InvestmentReferenceDataType {\n\tdata?: InvestmentDataReferenceDataType;\n\tmeta?: Meta;\n}\n\nexport interface OutboundCommunicationCaseReferenceDataType {\n\tdata?: OutboundCommunicationCaseDataType;\n\tmeta?: Meta;\n}\n\nexport interface DataReferenceDataType {\n\tvalues?: ValueReferenceDataType[];\n}\n\nexport interface InsurancePlanDataReferenceDataType {\n\tvalues?: InsurancePlanValueReferenceDataType[];\n}\n\nexport interface MemberClassificationDataReferenceDataType {\n\tvalues?: MemberClassificationValueReferenceDataType[];\n}\n\nexport interface OccupationDataReferenceDataType {\n\tvalues?: OccupationValueReferenceDataType[];\n}\n\nexport interface InvestmentDataReferenceDataType {\n\tvalues?: InvestmentValueReferenceDataType[];\n}\n\nexport interface OutboundCommunicationCaseDataType {\n\tvalues?: OutboundCommunicationValueCaseDataType[];\n}\n\nexport interface ValueReferenceDataType {\n\tcode?: string;\n\tdescription?: string;\n\tis_selectable?: boolean;\n\tsupplemental_data?: SupplementalDataType;\n}\n\nexport interface InsurancePlanValueReferenceDataType {\n\tcode?: string;\n\tdescription?: string;\n\ttal_description?: string;\n}\n\nexport interface OutboundCommunicationValueCaseDataType {\n\tcode?: string;\n\tdescription?: string;\n\tsupplemental_data?: OutboundCommunicationSupplementalDataType;\n}\n\nexport interface BeneficiaryRelationshipDataType {\n\tdata?: BeneficiaryRelationshipValues;\n\tmeta?: Meta;\n}\n\nexport interface BsbValueReferenceDataType {\n\t/**\n\t * BSB (Bank-State-Branch) number is a six-digit number that identifies banks and branches across Australia\n\t */\n\tbsb_number: string;\n\tinstitution: string;\n\tbranch: string;\n\tstreet_address: string;\n\tsuburb: string;\n\tstate: 'ACT' | 'NSW' | 'NT' | 'QLD' | 'SA' | 'TAS' | 'VIC' | 'WA';\n\tpostcode: string;\n}\n\nexport interface MemberClassificationValueReferenceDataType {\n\tplan_code?: string;\n\tid?: string;\n\tpension_type?: string;\n\temployee_category?: string;\n\tstatus?: string;\n\towner?: MemberClassificationOwnerValueReferenceDataType;\n\tgender_premium_rate_option?: string;\n}\n\nexport interface OccupationValueReferenceDataType {\n\tplan_code?: string;\n\tcode?: string;\n\tdescription?: string;\n}\n\nexport interface MemberClassificationOwnerValueReferenceDataType {\n\tid?: string;\n\ttype?: string;\n}\n\nexport interface InvestmentValueReferenceDataType {\n\tcode?: string;\n\tdescription?: string;\n\tcategory?: string;\n\tdisplay_order?: number;\n\tstatus?: 'ACTIVE' | 'INACTIVE';\n\tis_editable?: boolean;\n\tmaximum_allocation?: number;\n\tis_selectable?: boolean;\n\tsupplemental_data?: SupplementalDataType;\n}\n\nexport interface InvestmentSupplementalDataType {\n\tlink?: InvestmentsDataType;\n}\n\nexport interface SupplementalDataType {\n\tlink?: { [key: string]: any };\n}\n\nexport interface OutboundCommunicationSupplementalDataType {\n\ttemplate_meta?: OutboundCommunicationTemplateDataType[];\n}\n\nexport interface OutboundCommunicationTemplateDataType {\n\ttype?: 'SMS' | 'EMAIL';\n\tid?: string;\n}\n\nexport interface BeneficiaryRelationshipValues {\n\tvalues?: BeneficiaryRelationshipValueDataType[];\n}\n\nexport interface BeneficiaryRelationshipValueDataType {\n\tcode: string;\n\tdescription: string;\n\tnon_binding_is_selectable: boolean;\n}\n\nexport interface PensionsDataType {\n\tvalues?: PensionDataType;\n}\n\nexport interface InvestmentsDataType {\n\tvalues?: InvestmentDetailDataType;\n}\n\nexport interface InvestmentDataTypeValue {\n\tvalues?: InvestmentDetailDataType;\n}\n\nexport interface PensionDataType {\n\tpayment_type?: string;\n\tyearly_installments?: string;\n\tindex_factor_code?: string;\n\tyearly?: string;\n\tquarterly?: string;\n\thalf_yearly?: string;\n}\n\nexport interface InsuranceDesignReferenceDataType {\n\tdata?: InsuranceDesignDataReferenceDataType;\n\tmeta?: Meta;\n}\n\nexport interface InsuranceDesignDataReferenceDataType {\n\tvalues?: InsuranceDesignDataType[];\n}\n\nexport interface InsuranceDesignDataType {\n\tinsurance_formula?: string;\n\tinsurance_design?: string;\n}\n\nexport interface ChoiceIncomeReferenceDataType {\n\tdata?: ChoiceIncomeDataReferenceDataType;\n\tmeta?: Meta;\n}\n\nexport interface ChoiceIncomeDataReferenceDataType {\n\tvalues?: ChoiceIncomeDataType[];\n}\n\nexport interface ChoiceIncomeDataType {\n\tchoice_sequence?: number;\n\tfrequency?: string;\n\tvalues?: string;\n}\n\nexport interface InvestmentDetailDataType {\n\taccumulation?: string;\n\tpension_choice_income?: string;\n\ttransition_to_retirement?: string;\n}\n\nexport interface PartyTypeReferenceDataType {\n\tdata?: PartyTypeDataReferenceDataType;\n\tmeta?: Meta;\n}\n\nexport interface PartyTypeDataReferenceDataType {\n\tvalues?: PartyTypeDataType[];\n}\n\nexport interface PartyTypeDataType {\n\tvalue?: string;\n\tcrm_entity?: string;\n\tcrm_value?: string;\n\tas_partytype?: number;\n}\n\nexport interface DeliveryMethodReferenceDataType {\n\tdata?: DeliveryMethodDataReferenceDataType;\n\tmeta?: Meta;\n}\n\nexport interface DeliveryMethodDataReferenceDataType {\n\tvalues?: DeliveryMethodDataType[];\n}\n\nexport interface DeliveryMethodDataType {\n\tvalue?: string;\n\tas_delivery_method?: number;\n}\n\nexport interface DeliverySourceReferenceDataType {\n\tdata?: DeliverySourceDataReferenceDataType;\n\tmeta?: Meta;\n}\n\nexport interface DeliverySourceDataReferenceDataType {\n\tvalues?: DeliverySourceDataType[];\n}\n\nexport interface DeliverySourceDataType {\n\tvalue?: string;\n\tas_source?: number;\n}\n\nexport interface MemberCommPrefReferenceDataType {\n\tdata?: MemberCommPrefDataReferenceDataType[];\n}\n\nexport interface MemberCommPrefDataReferenceDataType {\n\tkey?: string;\n\ttitle?: string;\n\tdescription?: string;\n\tdisplay_sort_index?: number;\n\tis_unsubscribable?: boolean;\n\toption_type?: string;\n\tapplicable_person_types?: string[];\n\tapplicable_communication_channels?: string[];\n\tdefault_communication_channel?: string[];\n\toptions?: string[];\n\tgroup?: string;\n}\n\nexport interface ProductClassificationsReferenceDataType {\n\tdata?: ProductClassificationsDataType;\n}\n\nexport interface ProductClassificationsDataType {\n\tcode?: number;\n\tdivision?: string;\n\tplan?: string;\n}\n\nexport interface ReferenceDataSubPlans {\n\tdata?: {\n\t\tvalues?: ReferenceDataSubPlanTypes;\n\t};\n\tmeta?: Meta;\n}\n\nexport type ReferenceDataSubPlanTypes = ReferenceDataSubPlanDataTypes[];\n\nexport interface ReferenceDataSubPlanDataTypes {\n\tlink_code?: string;\n\ttal_code?: string;\n}\n\n/**\n * Used to store metadata of a pagination.\n */\nexport interface Meta {\n\t/**\n\t * The total number of records for this object\n\t */\n\ttotal_records?: number;\n\t/**\n\t * The total number of pages for this object\n\t */\n\ttotal_pages?: number;\n}\n\nexport type ProductNameValues = 'Accumulation' | 'Pension';\n\n/**\n * Bad request\n */\nexport type Response400 = Error;\n\n/**\n * Unauthorized\n */\nexport type Response401 = Error;\n\n/**\n * Not found\n */\nexport type Response404 = Error;\n\n/**\n * Invalid request payload\n */\nexport type Response422 = Error;\n\n/**\n * Internal server error\n */\nexport type Response500 = Error;\n\n/**\n * An error has occurred\n */\nexport type ErrorResponseResponse = Error;\n\nexport interface GetFormStatusQueryParams {\n\tcode?: 'EXPORTED' | 'NOT_EXPORTED';\n\tinclude?: string;\n}\n\nexport type GetFormStatusProps = Omit<\n\tGetProps<\n\t\tFormStatusReference,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tGetFormStatusQueryParams,\n\t\tvoid\n\t>,\n\t'path'\n>;\n\n/**\n * A list of form status\n */\nexport const GetFormStatus = (props: GetFormStatusProps) => (\n\t\n\t\tpath={`/datasets/form-status`}\n\t\t{...props}\n\t/>\n);\n\nexport type UseGetFormStatusProps = Omit<\n\tUseGetProps<\n\t\tFormStatusReference,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tGetFormStatusQueryParams,\n\t\tvoid\n\t>,\n\t'path'\n>;\n\n/**\n * A list of form status\n */\nexport const useGetFormStatus = (props: UseGetFormStatusProps) =>\n\tuseGet<\n\t\tFormStatusReference,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tGetFormStatusQueryParams,\n\t\tvoid\n\t>(`/datasets/form-status`, props);\n\nexport interface GetFinancialYearsQueryParams {\n\t/**\n\t * Product type. i.e Accumulation or Pension (case sensitive)\n\t */\n\tproduct_name: 'Accumulation' | 'Pension';\n}\n\nexport interface GetFinancialYearsPathParams {\n\t/**\n\t * The member account ID in LINK\n\t */\n\taccount_number: string;\n}\n\nexport type GetFinancialYearsProps = Omit<\n\tGetProps<\n\t\tFinancialYearReference,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tGetFinancialYearsQueryParams,\n\t\tGetFinancialYearsPathParams\n\t>,\n\t'path'\n> &\n\tGetFinancialYearsPathParams;\n\n/**\n * A list of valid financial years for the product and the member join date specified\n */\nexport const GetFinancialYears = ({\n\taccount_number,\n\t...props\n}: GetFinancialYearsProps) => (\n\t\n\t\tpath={`/datasets/${account_number}/financial-years`}\n\t\t{...props}\n\t/>\n);\n\nexport type UseGetFinancialYearsProps = Omit<\n\tUseGetProps<\n\t\tFinancialYearReference,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tGetFinancialYearsQueryParams,\n\t\tGetFinancialYearsPathParams\n\t>,\n\t'path'\n> &\n\tGetFinancialYearsPathParams;\n\n/**\n * A list of valid financial years for the product and the member join date specified\n */\nexport const useGetFinancialYears = ({\n\taccount_number,\n\t...props\n}: UseGetFinancialYearsProps) =>\n\tuseGet<\n\t\tFinancialYearReference,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tGetFinancialYearsQueryParams,\n\t\tGetFinancialYearsPathParams\n\t>(\n\t\t(paramsInPath: GetFinancialYearsPathParams) =>\n\t\t\t`/datasets/${paramsInPath.account_number}/financial-years`,\n\t\t{ pathParams: { account_number }, ...props },\n\t);\n\nexport interface GetSuperFundsQueryParams {\n\tusi?: string;\n\t/**\n\t * Name of the fund. Required for APRA search\n\t */\n\tfund_name?: string;\n\t/**\n\t * Australian business number. Required For SMSF search\n\t */\n\tabn?: string;\n\t/**\n\t * Default Value is APRA\n\t */\n\tfund_type?: 'ATO' | 'APRA' | 'ALL';\n}\n\nexport type GetSuperFundsProps = Omit<\n\tGetProps<\n\t\tReferenceDataSuperFunds,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tGetSuperFundsQueryParams,\n\t\tvoid\n\t>,\n\t'path'\n>;\n\n/**\n * Used to search for Superannuation Funds as potential sources for Rollovers.\n */\nexport const GetSuperFunds = (props: GetSuperFundsProps) => (\n\t\n\t\tpath={`/datasets/funds`}\n\t\t{...props}\n\t/>\n);\n\nexport type UseGetSuperFundsProps = Omit<\n\tUseGetProps<\n\t\tReferenceDataSuperFunds,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tGetSuperFundsQueryParams,\n\t\tvoid\n\t>,\n\t'path'\n>;\n\n/**\n * Used to search for Superannuation Funds as potential sources for Rollovers.\n */\nexport const useGetSuperFunds = (props: UseGetSuperFundsProps) =>\n\tuseGet<\n\t\tReferenceDataSuperFunds,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tGetSuperFundsQueryParams,\n\t\tvoid\n\t>(`/datasets/funds`, props);\n\nexport type GetSMSFFundsProps = Omit<\n\tGetProps<\n\t\tReferenceDataSMSFFunds,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tvoid,\n\t\tvoid\n\t>,\n\t'path'\n>;\n\n/**\n * Used to search for a SMSF super funds\n */\nexport const GetSMSFFunds = (props: GetSMSFFundsProps) => (\n\t\n\t\tpath={`/datasets/smsf-funds`}\n\t\t{...props}\n\t/>\n);\n\nexport type UseGetSMSFFundsProps = Omit<\n\tUseGetProps<\n\t\tReferenceDataSMSFFunds,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tvoid,\n\t\tvoid\n\t>,\n\t'path'\n>;\n\n/**\n * Used to search for a SMSF super funds\n */\nexport const useGetSMSFFunds = (props: UseGetSMSFFundsProps) =>\n\tuseGet<\n\t\tReferenceDataSMSFFunds,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tvoid,\n\t\tvoid\n\t>(`/datasets/smsf-funds`, props);\n\nexport interface GetAdditionalDataDefinitionsQueryParams {\n\tadditionalDataCategories:\n\t\t| 'Member'\n\t\t| 'MemberEnquiry'\n\t\t| 'Employer'\n\t\t| 'EmployerEnquiry';\n}\n\nexport interface GetAdditionalDataDefinitionsPathParams {\n\t/**\n\t * Product type. i.e Accumulation or Pension (case sensitive)\n\t */\n\tproduct_name: ProductNameValues;\n}\n\nexport type GetAdditionalDataDefinitionsProps = Omit<\n\tGetProps<\n\t\tAdditionalDataDefinitionsAsync,\n\t\tResponse401 | Response404 | Response500 | ErrorResponseResponse,\n\t\tGetAdditionalDataDefinitionsQueryParams,\n\t\tGetAdditionalDataDefinitionsPathParams\n\t>,\n\t'path'\n> &\n\tGetAdditionalDataDefinitionsPathParams;\n\n/**\n * This API retrieves a list additional data fields for Plan, for member and/or Employee.\n */\nexport const GetAdditionalDataDefinitions = ({\n\tproduct_name,\n\t...props\n}: GetAdditionalDataDefinitionsProps) => (\n\t\n\t\tpath={`/datasets/${product_name}/additional-data-definitions`}\n\t\t{...props}\n\t/>\n);\n\nexport type UseGetAdditionalDataDefinitionsProps = Omit<\n\tUseGetProps<\n\t\tAdditionalDataDefinitionsAsync,\n\t\tResponse401 | Response404 | Response500 | ErrorResponseResponse,\n\t\tGetAdditionalDataDefinitionsQueryParams,\n\t\tGetAdditionalDataDefinitionsPathParams\n\t>,\n\t'path'\n> &\n\tGetAdditionalDataDefinitionsPathParams;\n\n/**\n * This API retrieves a list additional data fields for Plan, for member and/or Employee.\n */\nexport const useGetAdditionalDataDefinitions = ({\n\tproduct_name,\n\t...props\n}: UseGetAdditionalDataDefinitionsProps) =>\n\tuseGet<\n\t\tAdditionalDataDefinitionsAsync,\n\t\tResponse401 | Response404 | Response500 | ErrorResponseResponse,\n\t\tGetAdditionalDataDefinitionsQueryParams,\n\t\tGetAdditionalDataDefinitionsPathParams\n\t>(\n\t\t(paramsInPath: GetAdditionalDataDefinitionsPathParams) =>\n\t\t\t`/datasets/${paramsInPath.product_name}/additional-data-definitions`,\n\t\t{ pathParams: { product_name }, ...props },\n\t);\n\nexport interface GetEmployerClassificationPathParams {\n\t/**\n\t * Product type. i.e Accumulation or Pension (case sensitive)\n\t */\n\tproduct_name: ProductNameValues;\n\t/**\n\t * The employer account ID in LINK\n\t */\n\temployer_id: string;\n}\n\nexport type GetEmployerClassificationProps = Omit<\n\tGetProps<\n\t\tEmployerClassificationDataType,\n\t\tResponse401 | Response404 | Response500 | ErrorResponseResponse,\n\t\tvoid,\n\t\tGetEmployerClassificationPathParams\n\t>,\n\t'path'\n> &\n\tGetEmployerClassificationPathParams;\n\n/**\n * employer_number.\n */\nexport const GetEmployerClassification = ({\n\tproduct_name,\n\temployer_id,\n\t...props\n}: GetEmployerClassificationProps) => (\n\t\n\t\tpath={`/datasets/${product_name}/${employer_id}/employer-classifications`}\n\t\t{...props}\n\t/>\n);\n\nexport type UseGetEmployerClassificationProps = Omit<\n\tUseGetProps<\n\t\tEmployerClassificationDataType,\n\t\tResponse401 | Response404 | Response500 | ErrorResponseResponse,\n\t\tvoid,\n\t\tGetEmployerClassificationPathParams\n\t>,\n\t'path'\n> &\n\tGetEmployerClassificationPathParams;\n\n/**\n * employer_number.\n */\nexport const useGetEmployerClassification = ({\n\tproduct_name,\n\temployer_id,\n\t...props\n}: UseGetEmployerClassificationProps) =>\n\tuseGet<\n\t\tEmployerClassificationDataType,\n\t\tResponse401 | Response404 | Response500 | ErrorResponseResponse,\n\t\tvoid,\n\t\tGetEmployerClassificationPathParams\n\t>(\n\t\t(paramsInPath: GetEmployerClassificationPathParams) =>\n\t\t\t`/datasets/${paramsInPath.product_name}/${paramsInPath.employer_id}/employer-classifications`,\n\t\t{ pathParams: { product_name, employer_id }, ...props },\n\t);\n\nexport type GetSubplansProps = Omit<\n\tGetProps<\n\t\tReferenceDataSubPlans,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tvoid,\n\t\tvoid\n\t>,\n\t'path'\n>;\n\n/**\n * Used to map Link Subplan to TAL Subplan\n */\nexport const GetSubplans = (props: GetSubplansProps) => (\n\t\n\t\tpath={`/datasets/subplans`}\n\t\t{...props}\n\t/>\n);\n\nexport type UseGetSubplansProps = Omit<\n\tUseGetProps<\n\t\tReferenceDataSubPlans,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tvoid,\n\t\tvoid\n\t>,\n\t'path'\n>;\n\n/**\n * Used to map Link Subplan to TAL Subplan\n */\nexport const useGetSubplans = (props: UseGetSubplansProps) =>\n\tuseGet<\n\t\tReferenceDataSubPlans,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tvoid,\n\t\tvoid\n\t>(`/datasets/subplans`, props);\n\nexport interface GetPaymentTypesQueryParams {\n\t/**\n\t * Valid values 'supplemental_data' retrieves link codes 'view' retrieves properties that is selectable in getPension 'edit' retrieves properties that is selectable in postPension\n\t */\n\tinclude?: string;\n}\n\nexport type GetPaymentTypesProps = Omit<\n\tGetProps<\n\t\tReferenceDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tGetPaymentTypesQueryParams,\n\t\tvoid\n\t>,\n\t'path'\n>;\n\n/**\n * A list of payment types\n */\nexport const GetPaymentTypes = (props: GetPaymentTypesProps) => (\n\t\n\t\tpath={`/datasets/payment-types`}\n\t\t{...props}\n\t/>\n);\n\nexport type UseGetPaymentTypesProps = Omit<\n\tUseGetProps<\n\t\tReferenceDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tGetPaymentTypesQueryParams,\n\t\tvoid\n\t>,\n\t'path'\n>;\n\n/**\n * A list of payment types\n */\nexport const useGetPaymentTypes = (props: UseGetPaymentTypesProps) =>\n\tuseGet<\n\t\tReferenceDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tGetPaymentTypesQueryParams,\n\t\tvoid\n\t>(`/datasets/payment-types`, props);\n\nexport interface GetPaymentFrequenciesQueryParams {\n\tinclude?: string;\n}\n\nexport type GetPaymentFrequenciesProps = Omit<\n\tGetProps<\n\t\tReferenceDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tGetPaymentFrequenciesQueryParams,\n\t\tvoid\n\t>,\n\t'path'\n>;\n\n/**\n * A list of payment frequencies\n */\nexport const GetPaymentFrequencies = (props: GetPaymentFrequenciesProps) => (\n\t\n\t\tpath={`/datasets/payment-frequencies`}\n\t\t{...props}\n\t/>\n);\n\nexport type UseGetPaymentFrequenciesProps = Omit<\n\tUseGetProps<\n\t\tReferenceDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tGetPaymentFrequenciesQueryParams,\n\t\tvoid\n\t>,\n\t'path'\n>;\n\n/**\n * A list of payment frequencies\n */\nexport const useGetPaymentFrequencies = (\n\tprops: UseGetPaymentFrequenciesProps,\n) =>\n\tuseGet<\n\t\tReferenceDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tGetPaymentFrequenciesQueryParams,\n\t\tvoid\n\t>(`/datasets/payment-frequencies`, props);\n\nexport interface GetPaymentMonthsQueryParams {\n\tinclude?: string;\n}\n\nexport type GetPaymentMonthsProps = Omit<\n\tGetProps<\n\t\tReferenceDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tGetPaymentMonthsQueryParams,\n\t\tvoid\n\t>,\n\t'path'\n>;\n\n/**\n * A list of payment months\n */\nexport const GetPaymentMonths = (props: GetPaymentMonthsProps) => (\n\t\n\t\tpath={`/datasets/payment-months`}\n\t\t{...props}\n\t/>\n);\n\nexport type UseGetPaymentMonthsProps = Omit<\n\tUseGetProps<\n\t\tReferenceDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tGetPaymentMonthsQueryParams,\n\t\tvoid\n\t>,\n\t'path'\n>;\n\n/**\n * A list of payment months\n */\nexport const useGetPaymentMonths = (props: UseGetPaymentMonthsProps) =>\n\tuseGet<\n\t\tReferenceDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tGetPaymentMonthsQueryParams,\n\t\tvoid\n\t>(`/datasets/payment-months`, props);\n\nexport type GetPaymentDaysProps = Omit<\n\tGetProps<\n\t\tReferenceDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tvoid,\n\t\tvoid\n\t>,\n\t'path'\n>;\n\n/**\n * A list of payment days\n */\nexport const GetPaymentDays = (props: GetPaymentDaysProps) => (\n\t\n\t\tpath={`/datasets/payment-days`}\n\t\t{...props}\n\t/>\n);\n\nexport type UseGetPaymentDaysProps = Omit<\n\tUseGetProps<\n\t\tReferenceDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tvoid,\n\t\tvoid\n\t>,\n\t'path'\n>;\n\n/**\n * A list of payment days\n */\nexport const useGetPaymentDays = (props: UseGetPaymentDaysProps) =>\n\tuseGet<\n\t\tReferenceDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tvoid,\n\t\tvoid\n\t>(`/datasets/payment-days`, props);\n\nexport interface GetPaymentIndexationFactorsQueryParams {\n\tinclude?: string;\n}\n\nexport type GetPaymentIndexationFactorsProps = Omit<\n\tGetProps<\n\t\tReferenceDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tGetPaymentIndexationFactorsQueryParams,\n\t\tvoid\n\t>,\n\t'path'\n>;\n\n/**\n * A list of valid payment types\n */\nexport const GetPaymentIndexationFactors = (\n\tprops: GetPaymentIndexationFactorsProps,\n) => (\n\t\n\t\tpath={`/datasets/indexation-factors`}\n\t\t{...props}\n\t/>\n);\n\nexport type UseGetPaymentIndexationFactorsProps = Omit<\n\tUseGetProps<\n\t\tReferenceDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tGetPaymentIndexationFactorsQueryParams,\n\t\tvoid\n\t>,\n\t'path'\n>;\n\n/**\n * A list of valid payment types\n */\nexport const useGetPaymentIndexationFactors = (\n\tprops: UseGetPaymentIndexationFactorsProps,\n) =>\n\tuseGet<\n\t\tReferenceDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tGetPaymentIndexationFactorsQueryParams,\n\t\tvoid\n\t>(`/datasets/indexation-factors`, props);\n\nexport type GetChoiceSequencesProps = Omit<\n\tGetProps<\n\t\tChoiceIncomeReferenceDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tvoid,\n\t\tvoid\n\t>,\n\t'path'\n>;\n\n/**\n * A list of choice sequences\n */\nexport const GetChoiceSequences = (props: GetChoiceSequencesProps) => (\n\t\n\t\tpath={`/datasets/choice-sequences`}\n\t\t{...props}\n\t/>\n);\n\nexport type UseGetChoiceSequencesProps = Omit<\n\tUseGetProps<\n\t\tChoiceIncomeReferenceDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tvoid,\n\t\tvoid\n\t>,\n\t'path'\n>;\n\n/**\n * A list of choice sequences\n */\nexport const useGetChoiceSequences = (props: UseGetChoiceSequencesProps) =>\n\tuseGet<\n\t\tChoiceIncomeReferenceDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tvoid,\n\t\tvoid\n\t>(`/datasets/choice-sequences`, props);\n\nexport interface GetInvestmentDetailsQueryParams {\n\t'include'?: string;\n\t'status'?: 'ACTIVE' | 'INACTIVE';\n\t'is-selectable'?: boolean;\n}\n\nexport type GetInvestmentDetailsProps = Omit<\n\tGetProps<\n\t\tInvestmentReferenceDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tGetInvestmentDetailsQueryParams,\n\t\tvoid\n\t>,\n\t'path'\n>;\n\n/**\n * Returns a list of all active investments options that maps LINK specific details to more readable details.\n */\nexport const GetInvestmentDetails = (props: GetInvestmentDetailsProps) => (\n\t\n\t\tpath={`/datasets/investment-details`}\n\t\t{...props}\n\t/>\n);\n\nexport type UseGetInvestmentDetailsProps = Omit<\n\tUseGetProps<\n\t\tInvestmentReferenceDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tGetInvestmentDetailsQueryParams,\n\t\tvoid\n\t>,\n\t'path'\n>;\n\n/**\n * Returns a list of all active investments options that maps LINK specific details to more readable details.\n */\nexport const useGetInvestmentDetails = (props: UseGetInvestmentDetailsProps) =>\n\tuseGet<\n\t\tInvestmentReferenceDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tGetInvestmentDetailsQueryParams,\n\t\tvoid\n\t>(`/datasets/investment-details`, props);\n\nexport interface GetInvestmentPerformanceQueryParams {\n\t/**\n\t * To specify if account type is TTR\n\t */\n\taccount_type?: 'TTR';\n}\n\nexport interface GetInvestmentPerformancePathParams {\n\t/**\n\t * Product type. i.e Accumulation or Pension (case sensitive)\n\t */\n\tproduct_name: ProductNameValues;\n\t/**\n\t * e.g annual-rates\n\t */\n\ttype: string;\n}\n\nexport type GetInvestmentPerformanceProps = Omit<\n\tGetProps<\n\t\tReferenceDataInvestmentPerformance,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tGetInvestmentPerformanceQueryParams,\n\t\tGetInvestmentPerformancePathParams\n\t>,\n\t'path'\n> &\n\tGetInvestmentPerformancePathParams;\n\n/**\n * Retrieve investment performance data.\n */\nexport const GetInvestmentPerformance = ({\n\tproduct_name,\n\ttype,\n\t...props\n}: GetInvestmentPerformanceProps) => (\n\t\n\t\tpath={`/datasets/investment-performance/${product_name}/${type}`}\n\t\t{...props}\n\t/>\n);\n\nexport type UseGetInvestmentPerformanceProps = Omit<\n\tUseGetProps<\n\t\tReferenceDataInvestmentPerformance,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tGetInvestmentPerformanceQueryParams,\n\t\tGetInvestmentPerformancePathParams\n\t>,\n\t'path'\n> &\n\tGetInvestmentPerformancePathParams;\n\n/**\n * Retrieve investment performance data.\n */\nexport const useGetInvestmentPerformance = ({\n\tproduct_name,\n\ttype,\n\t...props\n}: UseGetInvestmentPerformanceProps) =>\n\tuseGet<\n\t\tReferenceDataInvestmentPerformance,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tGetInvestmentPerformanceQueryParams,\n\t\tGetInvestmentPerformancePathParams\n\t>(\n\t\t(paramsInPath: GetInvestmentPerformancePathParams) =>\n\t\t\t`/datasets/investment-performance/${paramsInPath.product_name}/${paramsInPath.type}`,\n\t\t{ pathParams: { product_name, type }, ...props },\n\t);\n\nexport interface GetCommunicationCasesQueryParams {\n\tinclude?: string;\n}\n\nexport type GetCommunicationCasesProps = Omit<\n\tGetProps<\n\t\tOutboundCommunicationCaseReferenceDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tGetCommunicationCasesQueryParams,\n\t\tvoid\n\t>,\n\t'path'\n>;\n\n/**\n * A list of communication cases\n */\nexport const GetCommunicationCases = (props: GetCommunicationCasesProps) => (\n\t\n\t\tpath={`/datasets/communication-cases`}\n\t\t{...props}\n\t/>\n);\n\nexport type UseGetCommunicationCasesProps = Omit<\n\tUseGetProps<\n\t\tOutboundCommunicationCaseReferenceDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tGetCommunicationCasesQueryParams,\n\t\tvoid\n\t>,\n\t'path'\n>;\n\n/**\n * A list of communication cases\n */\nexport const useGetCommunicationCases = (\n\tprops: UseGetCommunicationCasesProps,\n) =>\n\tuseGet<\n\t\tOutboundCommunicationCaseReferenceDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tGetCommunicationCasesQueryParams,\n\t\tvoid\n\t>(`/datasets/communication-cases`, props);\n\nexport interface GetRelationshipCodesQueryParams {\n\t'non-binding-is-selectable'?: boolean;\n}\n\nexport type GetRelationshipCodesProps = Omit<\n\tGetProps<\n\t\tBeneficiaryRelationshipDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tGetRelationshipCodesQueryParams,\n\t\tvoid\n\t>,\n\t'path'\n>;\n\n/**\n * A list of relationship codes\n */\nexport const GetRelationshipCodes = (props: GetRelationshipCodesProps) => (\n\t\n\t\tpath={`/datasets/beneficiary-relationship-codes`}\n\t\t{...props}\n\t/>\n);\n\nexport type UseGetRelationshipCodesProps = Omit<\n\tUseGetProps<\n\t\tBeneficiaryRelationshipDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tGetRelationshipCodesQueryParams,\n\t\tvoid\n\t>,\n\t'path'\n>;\n\n/**\n * A list of relationship codes\n */\nexport const useGetRelationshipCodes = (props: UseGetRelationshipCodesProps) =>\n\tuseGet<\n\t\tBeneficiaryRelationshipDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tGetRelationshipCodesQueryParams,\n\t\tvoid\n\t>(`/datasets/beneficiary-relationship-codes`, props);\n\nexport type GetNominationTypesProps = Omit<\n\tGetProps<\n\t\tReferenceDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tvoid,\n\t\tvoid\n\t>,\n\t'path'\n>;\n\n/**\n * A list of nomination types\n */\nexport const GetNominationTypes = (props: GetNominationTypesProps) => (\n\t\n\t\tpath={`/datasets/beneficiary-nomination-types`}\n\t\t{...props}\n\t/>\n);\n\nexport type UseGetNominationTypesProps = Omit<\n\tUseGetProps<\n\t\tReferenceDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tvoid,\n\t\tvoid\n\t>,\n\t'path'\n>;\n\n/**\n * A list of nomination types\n */\nexport const useGetNominationTypes = (props: UseGetNominationTypesProps) =>\n\tuseGet<\n\t\tReferenceDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tvoid,\n\t\tvoid\n\t>(`/datasets/beneficiary-nomination-types`, props);\n\nexport interface GetBsbPathParams {\n\t/**\n\t * BSB (Bank-State-Branch) number is a six-digit number (including hyphen seperator) that identifies banks and branches across Australia\n\t */\n\tbsb_number: string;\n}\n\nexport type GetBsbProps = Omit<\n\tGetProps<\n\t\tBsbReferenceDataType,\n\t\tResponse401 | Error | Response500 | ErrorResponseResponse,\n\t\tvoid,\n\t\tGetBsbPathParams\n\t>,\n\t'path'\n> &\n\tGetBsbPathParams;\n\n/**\n * Retrieve BSB (Bank-State-Branch) details identifying an Australian banks or branch.\n */\nexport const GetBsb = ({ bsb_number, ...props }: GetBsbProps) => (\n\t\n\t\tpath={`/datasets/bsbs/${bsb_number}`}\n\t\t{...props}\n\t/>\n);\n\nexport type UseGetBsbProps = Omit<\n\tUseGetProps<\n\t\tBsbReferenceDataType,\n\t\tResponse401 | Error | Response500 | ErrorResponseResponse,\n\t\tvoid,\n\t\tGetBsbPathParams\n\t>,\n\t'path'\n> &\n\tGetBsbPathParams;\n\n/**\n * Retrieve BSB (Bank-State-Branch) details identifying an Australian banks or branch.\n */\nexport const useGetBsb = ({ bsb_number, ...props }: UseGetBsbProps) =>\n\tuseGet<\n\t\tBsbReferenceDataType,\n\t\tResponse401 | Error | Response500 | ErrorResponseResponse,\n\t\tvoid,\n\t\tGetBsbPathParams\n\t>(\n\t\t(paramsInPath: GetBsbPathParams) =>\n\t\t\t`/datasets/bsbs/${paramsInPath.bsb_number}`,\n\t\t{ pathParams: { bsb_number }, ...props },\n\t);\n\nexport type GeInsurancePlanProps = Omit<\n\tGetProps<\n\t\tInsurancePlanReferenceDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tvoid,\n\t\tvoid\n\t>,\n\t'path'\n>;\n\n/**\n * A list of insurance plans\n */\nexport const GeInsurancePlan = (props: GeInsurancePlanProps) => (\n\t\n\t\tpath={`/datasets/insurance-plans`}\n\t\t{...props}\n\t/>\n);\n\nexport type UseGeInsurancePlanProps = Omit<\n\tUseGetProps<\n\t\tInsurancePlanReferenceDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tvoid,\n\t\tvoid\n\t>,\n\t'path'\n>;\n\n/**\n * A list of insurance plans\n */\nexport const useGeInsurancePlan = (props: UseGeInsurancePlanProps) =>\n\tuseGet<\n\t\tInsurancePlanReferenceDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tvoid,\n\t\tvoid\n\t>(`/datasets/insurance-plans`, props);\n\nexport interface GetInsuranceDesignsQueryParams {\n\t/**\n\t * Product type. i.e Accumulation or Pension (case sensitive)\n\t */\n\tproduct_name: 'Accumulation' | 'Pension';\n}\n\nexport type GetInsuranceDesignsProps = Omit<\n\tGetProps<\n\t\tInsuranceDesignReferenceDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tGetInsuranceDesignsQueryParams,\n\t\tvoid\n\t>,\n\t'path'\n>;\n\n/**\n * A list of insurance designs\n */\nexport const GetInsuranceDesigns = (props: GetInsuranceDesignsProps) => (\n\t\n\t\tpath={`/datasets/insurance-designs`}\n\t\t{...props}\n\t/>\n);\n\nexport type UseGetInsuranceDesignsProps = Omit<\n\tUseGetProps<\n\t\tInsuranceDesignReferenceDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tGetInsuranceDesignsQueryParams,\n\t\tvoid\n\t>,\n\t'path'\n>;\n\n/**\n * A list of insurance designs\n */\nexport const useGetInsuranceDesigns = (props: UseGetInsuranceDesignsProps) =>\n\tuseGet<\n\t\tInsuranceDesignReferenceDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tGetInsuranceDesignsQueryParams,\n\t\tvoid\n\t>(`/datasets/insurance-designs`, props);\n\nexport interface GetMemberClassificationsQueryParams {\n\tproduct_name: string;\n}\n\nexport interface GetMemberClassificationsPathParams {\n\t/**\n\t * The member account ID in LINK\n\t */\n\taccount_number: string;\n}\n\nexport type GetMemberClassificationsProps = Omit<\n\tGetProps<\n\t\tMemberClassificationReferenceDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tGetMemberClassificationsQueryParams,\n\t\tGetMemberClassificationsPathParams\n\t>,\n\t'path'\n> &\n\tGetMemberClassificationsPathParams;\n\n/**\n * A list of member classifications\n */\nexport const GetMemberClassifications = ({\n\taccount_number,\n\t...props\n}: GetMemberClassificationsProps) => (\n\t\n\t\tpath={`/datasets/${account_number}/member-classifications`}\n\t\t{...props}\n\t/>\n);\n\nexport type UseGetMemberClassificationsProps = Omit<\n\tUseGetProps<\n\t\tMemberClassificationReferenceDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tGetMemberClassificationsQueryParams,\n\t\tGetMemberClassificationsPathParams\n\t>,\n\t'path'\n> &\n\tGetMemberClassificationsPathParams;\n\n/**\n * A list of member classifications\n */\nexport const useGetMemberClassifications = ({\n\taccount_number,\n\t...props\n}: UseGetMemberClassificationsProps) =>\n\tuseGet<\n\t\tMemberClassificationReferenceDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tGetMemberClassificationsQueryParams,\n\t\tGetMemberClassificationsPathParams\n\t>(\n\t\t(paramsInPath: GetMemberClassificationsPathParams) =>\n\t\t\t`/datasets/${paramsInPath.account_number}/member-classifications`,\n\t\t{ pathParams: { account_number }, ...props },\n\t);\n\nexport interface GetProductOccupationsPathParams {\n\t/**\n\t * The member account ID in LINK\n\t */\n\taccount_number: string;\n}\n\nexport type GetProductOccupationsProps = Omit<\n\tGetProps<\n\t\tOccupationReferenceDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tvoid,\n\t\tGetProductOccupationsPathParams\n\t>,\n\t'path'\n> &\n\tGetProductOccupationsPathParams;\n\n/**\n * A list of member occupations based on product name\n */\nexport const GetProductOccupations = ({\n\taccount_number,\n\t...props\n}: GetProductOccupationsProps) => (\n\t\n\t\tpath={`/datasets/${account_number}/occupational-ratings`}\n\t\t{...props}\n\t/>\n);\n\nexport type UseGetProductOccupationsProps = Omit<\n\tUseGetProps<\n\t\tOccupationReferenceDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tvoid,\n\t\tGetProductOccupationsPathParams\n\t>,\n\t'path'\n> &\n\tGetProductOccupationsPathParams;\n\n/**\n * A list of member occupations based on product name\n */\nexport const useGetProductOccupations = ({\n\taccount_number,\n\t...props\n}: UseGetProductOccupationsProps) =>\n\tuseGet<\n\t\tOccupationReferenceDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tvoid,\n\t\tGetProductOccupationsPathParams\n\t>(\n\t\t(paramsInPath: GetProductOccupationsPathParams) =>\n\t\t\t`/datasets/${paramsInPath.account_number}/occupational-ratings`,\n\t\t{ pathParams: { account_number }, ...props },\n\t);\n\nexport type GetPartyTypeProps = Omit<\n\tGetProps<\n\t\tPartyTypeReferenceDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tvoid,\n\t\tvoid\n\t>,\n\t'path'\n>;\n\n/**\n * A list of party types\n */\nexport const GetPartyType = (props: GetPartyTypeProps) => (\n\t\n\t\tpath={`/datasets/party-types`}\n\t\t{...props}\n\t/>\n);\n\nexport type UseGetPartyTypeProps = Omit<\n\tUseGetProps<\n\t\tPartyTypeReferenceDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tvoid,\n\t\tvoid\n\t>,\n\t'path'\n>;\n\n/**\n * A list of party types\n */\nexport const useGetPartyType = (props: UseGetPartyTypeProps) =>\n\tuseGet<\n\t\tPartyTypeReferenceDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tvoid,\n\t\tvoid\n\t>(`/datasets/party-types`, props);\n\nexport type GetDeliveryMethodProps = Omit<\n\tGetProps<\n\t\tDeliveryMethodReferenceDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tvoid,\n\t\tvoid\n\t>,\n\t'path'\n>;\n\n/**\n * A list of delivery methods\n */\nexport const GetDeliveryMethod = (props: GetDeliveryMethodProps) => (\n\t\n\t\tpath={`/datasets/delivery-methods`}\n\t\t{...props}\n\t/>\n);\n\nexport type UseGetDeliveryMethodProps = Omit<\n\tUseGetProps<\n\t\tDeliveryMethodReferenceDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tvoid,\n\t\tvoid\n\t>,\n\t'path'\n>;\n\n/**\n * A list of delivery methods\n */\nexport const useGetDeliveryMethod = (props: UseGetDeliveryMethodProps) =>\n\tuseGet<\n\t\tDeliveryMethodReferenceDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tvoid,\n\t\tvoid\n\t>(`/datasets/delivery-methods`, props);\n\nexport type GetDeliverySourceProps = Omit<\n\tGetProps<\n\t\tDeliverySourceReferenceDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tvoid,\n\t\tvoid\n\t>,\n\t'path'\n>;\n\n/**\n * A list of delivery sources\n */\nexport const GetDeliverySource = (props: GetDeliverySourceProps) => (\n\t\n\t\tpath={`/datasets/delivery-sources`}\n\t\t{...props}\n\t/>\n);\n\nexport type UseGetDeliverySourceProps = Omit<\n\tUseGetProps<\n\t\tDeliverySourceReferenceDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tvoid,\n\t\tvoid\n\t>,\n\t'path'\n>;\n\n/**\n * A list of delivery sources\n */\nexport const useGetDeliverySource = (props: UseGetDeliverySourceProps) =>\n\tuseGet<\n\t\tDeliverySourceReferenceDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tvoid,\n\t\tvoid\n\t>(`/datasets/delivery-sources`, props);\n\nexport interface GetCountryCodesQueryParams {\n\tinclude?: string;\n}\n\nexport type GetCountryCodesProps = Omit<\n\tGetProps<\n\t\tReferenceDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tGetCountryCodesQueryParams,\n\t\tvoid\n\t>,\n\t'path'\n>;\n\n/**\n * A list of country codes\n */\nexport const GetCountryCodes = (props: GetCountryCodesProps) => (\n\t\n\t\tpath={`/datasets/country-codes`}\n\t\t{...props}\n\t/>\n);\n\nexport type UseGetCountryCodesProps = Omit<\n\tUseGetProps<\n\t\tReferenceDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tGetCountryCodesQueryParams,\n\t\tvoid\n\t>,\n\t'path'\n>;\n\n/**\n * A list of country codes\n */\nexport const useGetCountryCodes = (props: UseGetCountryCodesProps) =>\n\tuseGet<\n\t\tReferenceDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tGetCountryCodesQueryParams,\n\t\tvoid\n\t>(`/datasets/country-codes`, props);\n\nexport type GetMemberCommunicationPreferencesProps = Omit<\n\tGetProps<\n\t\tMemberCommPrefReferenceDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tvoid,\n\t\tvoid\n\t>,\n\t'path'\n>;\n\n/**\n * A list of member communication preferences\n */\nexport const GetMemberCommunicationPreferences = (\n\tprops: GetMemberCommunicationPreferencesProps,\n) => (\n\t\n\t\tpath={`/datasets/member-communication-preferences`}\n\t\t{...props}\n\t/>\n);\n\nexport type UseGetMemberCommunicationPreferencesProps = Omit<\n\tUseGetProps<\n\t\tMemberCommPrefReferenceDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tvoid,\n\t\tvoid\n\t>,\n\t'path'\n>;\n\n/**\n * A list of member communication preferences\n */\nexport const useGetMemberCommunicationPreferences = (\n\tprops: UseGetMemberCommunicationPreferencesProps,\n) =>\n\tuseGet<\n\t\tMemberCommPrefReferenceDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tvoid,\n\t\tvoid\n\t>(`/datasets/member-communication-preferences`, props);\n\nexport interface GetDivisionQueryParams {\n\t/**\n\t * The member classification code\n\t */\n\tclassification_code: number;\n}\n\nexport type GetDivisionProps = Omit<\n\tGetProps<\n\t\tProductClassificationsReferenceDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tGetDivisionQueryParams,\n\t\tvoid\n\t>,\n\t'path'\n>;\n\n/**\n * A list of product classifications\n */\nexport const GetDivision = (props: GetDivisionProps) => (\n\t\n\t\tpath={`/datasets/division`}\n\t\t{...props}\n\t/>\n);\n\nexport type UseGetDivisionProps = Omit<\n\tUseGetProps<\n\t\tProductClassificationsReferenceDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tGetDivisionQueryParams,\n\t\tvoid\n\t>,\n\t'path'\n>;\n\n/**\n * A list of product classifications\n */\nexport const useGetDivision = (props: UseGetDivisionProps) =>\n\tuseGet<\n\t\tProductClassificationsReferenceDataType,\n\t\tResponse401 | Response500 | ErrorResponseResponse,\n\t\tGetDivisionQueryParams,\n\t\tvoid\n\t>(`/datasets/division`, props);\n","/* eslint-disable */\n// Do not edit this file, it is auto-generated at build time!\n// See scripts/jss/bootstrap.js to modify the generation of this file.\nexport default {\n \"sitecoreApiKey\": \"{020EFD69-08D4-44AE-BC20-16285EBCBEBF}\",\n \"sitecoreApiHost\": \"\",\n \"sitecoreApiHostNonPep\": \"\",\n \"sitecoreApiHostStaging\": \"\",\n \"jssAppName\": \"memberportal\",\n \"sitecoreApi\": {\n \"apiPathMemberLogin\": \"/api/login\",\n \"apiPathMemberLogout\": \"/api/logout\",\n \"apiPathMemberRefreshToken\": \"/api/refreshtoken\",\n \"apiPathMemberLoginClassic\": \"/api/loginpassword\",\n \"apiPathMemberDeviceLogin\": \"/api/loginpushnotify\",\n \"apiPathMemberPushInitiate\": \"/api/loginpushinitiate\",\n \"apiPathMemberPushAccountCheck\": \"/api/loginpushaccountcheck\",\n \"apiPathMemberPushDeviceCheck\": \"/api/loginpushdevicecheck\",\n \"apiPathMemberPushPollingWait\": \"/api/loginpushpollingwait\",\n \"apiPathMemberPushResend\": \"/api/loginpushresend\",\n \"apiPathMemberLoginPush\": \"/api/loginpush\"\n },\n \"australianSuperApi\": {\n \"apiDomain\": \"https://apis-v5.australiansuper.com\",\n \"apiPathAccount\": \"/account/v1\",\n \"apiPathBeneficiaries\": \"/beneficiary/v1\",\n \"apiPathDocument\": \"/document/v1\",\n \"apiPathForm\": \"/form/v1\",\n \"apiPathIdentity\": \"/identity/v1\",\n \"apiPathInvestment\": \"/investment/v1\",\n \"apiPathMember\": \"/member/v1\",\n \"apiPathOtp\": \"/otp/v1\",\n \"apiPathOutboundCommunication\": \"/communications/outbound-communication-system/v1\",\n \"apiPathPayment\": \"/payment/v1\",\n \"apiPathReferenceData\": \"/reference-data/v1\",\n \"apiPathTransaction\": \"/transaction/v1\",\n \"apiPathExpTransaction\": \"{AUS_API_PATH_TRANSACTION_EXPORT}\",\n \"apiPathTransactionSummary\": \"/transaction/v1\",\n \"apiPathInsurance\": \"/insurance/v1\",\n \"apiPathPartner\": \"/partner/v1\",\n \"apiPathTransactionExperience\": \"/exp-transaction/v1\",\n \"apiPathDocumentAnnualStatement\": \"/document/annual-statement/v1\",\n \"apiPathSignificantEventNotice\": \"/document/significant-event-notice/v1\",\n \"apiPathCommunicationPreference\": \"/communications/preference/v1\",\n \"apiPathRegistration\": \"/registration-exp/v1\",\n \"apiPathNotifyEmployer\": \"/notify-employer/v1\",\n \"apiPathWithdrawals\": \"/withdrawal/v1\",\n \"apiPathSystemIdentityVerification\": \"/identity-verification/v1\",\n \"apiPathSystemValidation\": \"/system-validation/v1\",\n \"apiPathRollover\": \"/rollover/v1\",\n \"apiPathNoi\": \"/contributions/v1\",\n \"apiPathContributions\": \"/contributions/v1\",\n \"apiPathSystemAudit\": \"/audit-system/v1\",\n \"apiPathSystemMemberRestriction\": \"/member-restriction-system/v1\"\n },\n \"externalServices\": {\n \"azureAppInsightsInstrumentationKey\": \"20abfedc-fb09-4c10-a036-d504b800eaae\",\n \"coarseGrainApiKey\": \"6d7f4b17-d97e-47af-b5ae-cb696ef3c2df\",\n \"postAuditStaticIPAddress\": \"20.211.64.9\",\n \"greenIdAssetsUrl\": \"https://simpleui-au.vixverify.com\"\n },\n \"defaultLanguage\": \"en\"\n};","/**\n * TODO: Update all property values and use the global variables\n * Also add reusable values to global\n * e.g font-weight/font-size\n */\nimport styled, { css } from 'styled-components';\nimport { rgba } from 'polished';\nimport { FONT_NAMES, FONT_WEIGHT } from 'core/styles/fonts';\nimport * as vr from 'core/styles/variables';\n\nexport const BaseContainer = styled.div`\n\tmin-height: 200px;\n\tborder-radius: 10px;\n\tposition: relative;\n\tdisplay: flex;\n\tflex-direction: column;\n\talign-items: center;\n\tjustify-content: center;\n\tfont-family: 'Arial';\n\tfont-size: ${vr.componentErrorTitleFontSize};\n\tcolor: #4a4a4a;\n\ttext-align: center;\n\tpadding: 0 20px;\n\tborder: 1px solid;\n\tborder-color: inherit;\n`;\n\nconst BaseText = styled.p`\n\twidth: 100%;\n\tmax-width: 500px;\n\tcolor: inherit;\n\tpadding: 0 10px;\n`;\n\nexport const Wrapper = styled.div<{\n\tcolor: string;\n}>`\n\twidth: 100%;\n\tpadding: 10px;\n\n\t${({ color }) => css`\n\t\tborder: 1px dashed ${color};\n\t`}\n`;\n\nexport const Title = styled(BaseText)`\n\tfont-size: 24px;\n\tmargin: 0;\n\tline-height: 1.2;\n\n\tstrong {\n\t\tfont-weight: 500;\n\t\tmargin-bottom: 10px;\n\t}\n\n\tspan {\n\t\tfont-size: 20px;\n\t}\n`;\n\nexport const Description = styled(BaseText)`\n\tfont-size: 18px;\n\tmargin: 30px auto 0;\n`;\n\nexport const EmptyPlaceholder = styled(BaseContainer)`\n\tborder-width: 2px;\n\tborder-style: dashed;\n\tbackground-color: #e7e7e7;\n\tpadding: 2px;\n\tbackground-clip: padding-box;\n`;\n\nexport const ErrorComponentWrapper = styled(BaseContainer)`\n\tbackground-color: ${vr.componentErrortBackground};\n\tcolor: ${vr.brandBlack};\n\tborder-color: ${vr.componentErrortBackground};\n`;\n\nexport const ErrorComponent = styled.div`\n\tmax-width: 375px;\n`;\n\nexport const MissingComponent = styled(BaseContainer)`\n\tbackground-color: gold;\n\tcolor: brown;\n`;\n\nexport const UnauthoredComponent = styled(BaseContainer)`\n\tbackground-color: ${rgba('cornflowerblue', 0.75)};\n\tcolor: darkblue;\n`;\n\nexport const ErrorTitle = styled.h5`\n\tfont-size: ${vr.componentErrorTitleFontSize};\n\tline-height: 28px;\n\tfont-weight: ${FONT_WEIGHT.SEMI_BOOK};\n\tmargin-bottom: 12px;\n\tfont-family: ${FONT_NAMES.GOTHAM_ROUNDED_MEDIUM};\n`;\n\nexport const ErrorDescription = styled.p`\n\tfont-weight: ${FONT_WEIGHT.BOOK};\n\tfont-size: ${vr.formfieldFontSize};\n\tline-height: 24px;\n\tmargin: 0;\n\tfont-family: ${FONT_NAMES.OPEN_SANS};\n`;\n","import { LOGIN_UUID_KEY } from 'core/constants';\nimport { isWebBrowser } from 'core/utils/global-utils';\n\nexport const getLocalStorageItem = (key: string): string => {\n\tif (!isWebBrowser || !window?.localStorage) {\n\t\t// skip use of localstorage in server side rendering\n\t\treturn '';\n\t}\n\n\tconst itemValue = window?.localStorage?.getItem(key) ?? '';\n\n\treturn itemValue;\n};\n\nexport const setLocalStorageItem = (key: string, itemValue: string) => {\n\tif (!isWebBrowser || !window?.localStorage) {\n\t\t// skip use of localstorage in server side rendering\n\t\treturn;\n\t}\n\twindow?.localStorage?.setItem(key, itemValue);\n};\n\nexport const removeLocalStorageItem = (key: string) => {\n\tif (!isWebBrowser || !window?.localStorage) {\n\t\t// skip use of localstorage in server side rendering\n\t\treturn;\n\t}\n\twindow?.localStorage?.removeItem(key);\n};\n\nexport const clearLocalStorage = () => {\n\t// Wrapper for localStorage.clear(). Clears everything EXCEPT keys\n\t// listed below\n\tconst exemptedKeys = [LOGIN_UUID_KEY];\n\tinterface StorageKeyPair {\n\t\tkey: string;\n\t\tdata: string;\n\t}\n\n\tconst exemptData: StorageKeyPair[] = [];\n\n\t// Store exempted keys separately\n\texemptedKeys.map(key => {\n\t\tconst tempData = getLocalStorageItem(key);\n\t\texemptData.push({ key: key, data: tempData });\n\t});\n\n\twindow?.localStorage?.clear();\n\n\t// Put all exempted keys and data back to localStorage\n\texemptData.map((value: StorageKeyPair) => {\n\t\tsetLocalStorageItem(value.key, value.data);\n\t});\n};\n","/* eslint-disable no-console */\n\nimport { isExperienceEditorActive } from '@sitecore-jss/sitecore-jss-react';\nimport isArray from 'lodash/isArray';\nimport get from 'lodash/get';\nimport inRange from 'lodash/inRange';\nimport { GetDataError } from 'restful-react';\n\nimport { Error as IdentityError } from 'core/api/client/IdentityApi';\nimport { Error as RegistrationExpError } from 'core/api/client/RegistrationExperienceApi';\nimport { isObject } from 'core/utils/object-utils';\nimport { isInSitecorePreviewOrEditMode } from 'core/utils/global-utils';\nimport { ICONS } from 'core/components/Icon';\n\n/**\n * A recursive loop over the placeholders in Sitecore's\n * layout service; checks if any components in any of those\n * renderings are missing a 'dataSource', and replaces them\n * with an 'Unauthored' (read: debug) component. This prevents\n * the vague 'An error occurred.' popup in the Experience Editor,\n * and also prevents JSS's 'Connected Mode' from outright crashing.\n *\n * @param {Object} placeholdersObj - The root placeholders object.\n * @returns {Object} The above, with any problem components filtered.\n */\nexport function recursiveFilterPlaceholders(placeholdersObj: {\n\t[key: string]: any;\n}) {\n\tconst placeholderNames = Object.keys(placeholdersObj);\n\n\treturn placeholderNames.reduce((acc: { [key: string]: any }, key) => {\n\t\t// Array of components\n\t\tlet placeholderComponents = placeholdersObj[key] || [];\n\n\t\tplaceholderComponents = placeholderComponents.map(\n\t\t\t(\n\t\t\t\tcomponent: {\n\t\t\t\t\tcomponentName: string;\n\t\t\t\t\tplaceholders?: {\n\t\t\t\t\t\t[key: string]: any;\n\t\t\t\t\t};\n\t\t\t\t\tdataSource: string;\n\t\t\t\t\tfields: {\n\t\t\t\t\t\t[key: string]: any;\n\t\t\t\t\t};\n\t\t\t\t} | null,\n\t\t\t) => {\n\t\t\t\tconst { dataSource, placeholders, componentName, fields } = component!;\n\t\t\t\t// Considered broken if it has a name, but no dataSource (content)\n\t\t\t\t// Exceptions are made for components that have placeholders of their own\n\t\t\t\tconst isBroken =\n\t\t\t\t\t!!componentName && !dataSource && !placeholders && !fields;\n\t\t\t\tconst showDebugComponent =\n\t\t\t\t\tisExperienceEditorActive() ||\n\t\t\t\t\tisInSitecorePreviewOrEditMode() ||\n\t\t\t\t\tprocess.env.NODE_ENV === 'development';\n\n\t\t\t\tif (isBroken) {\n\t\t\t\t\tconsole.log('------------------------');\n\t\t\t\t\tconsole.log(\n\t\t\t\t\t\t`Component '${componentName}' is missing a 'dataSource':`,\n\t\t\t\t\t);\n\t\t\t\t\tconsole.log(component);\n\t\t\t\t\tconsole.log('------------------------');\n\n\t\t\t\t\tif (showDebugComponent) {\n\t\t\t\t\t\t// Reassign component rendering to a predefined 'UnauthoredComponent'\n\t\t\t\t\t\t// which won't crash Sitecore, and displays an informative message\n\t\t\t\t\t\tcomponent = {\n\t\t\t\t\t\t\t...component,\n\n\t\t\t\t\t\t\t// Just some value, potentially preventing edge-cases\n\t\t\t\t\t\t\t// should this component structure even get re-scanned\n\t\t\t\t\t\t\tdataSource: '/',\n\n\t\t\t\t\t\t\tfields: {\n\t\t\t\t\t\t\t\t// Retain the original componentName so we can render it\n\t\t\t\t\t\t\t\t// in the 'UnauthoredComponent' for logging purposes\n\t\t\t\t\t\t\t\tsourceComponentName: componentName,\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\tcomponentName: 'UnauthoredComponent',\n\t\t\t\t\t\t};\n\t\t\t\t\t} else {\n\t\t\t\t\t\t// Delete the component entirely if it's in a mode like\n\t\t\t\t\t\t// preview or - somehow - production. Edge-case.\n\t\t\t\t\t\tcomponent = null;\n\t\t\t\t\t}\n\t\t\t\t} else if (!!placeholders && Object.keys(placeholders).length > 0) {\n\t\t\t\t\tcomponent!.placeholders = recursiveFilterPlaceholders(placeholders);\n\t\t\t\t}\n\n\t\t\t\treturn component;\n\t\t\t},\n\t\t);\n\n\t\tacc[key] = placeholderComponents;\n\n\t\treturn acc;\n\t}, {});\n}\n\n/**\n * Determines whether field could be considered a 'valid' JSS object.\n *\n * @param {Object} field\n */\nexport const isJssField = (field?: any) =>\n\t!!field && isObject(field) && typeof field !== 'string' && !!field.value;\n\n// ------------------------------\n// JSS types\n\nexport type JssTextType = {\n\tvalue: T;\n};\n\nexport type JssImageType = {\n\tvalue: {\n\t\tsrc: string;\n\t\talt: string;\n\t\tclass?: string;\n\t\ttitle?: string;\n\t};\n};\n\nexport type JssLinkType = {\n\teditable?: boolean;\n\tvalue: {\n\t\ttext: string;\n\t\thref: string;\n\t\tlinktype?: string;\n\t\turl?: string;\n\t\tanchor?: string;\n\t\ttitle?: string;\n\t\ttarget?: string;\n\t\tclass?: string;\n\t\tid?: string;\n\t\teventLabel?: string;\n\t};\n};\n\nexport type JssPhoneLinkType = {\n\teditable?: boolean;\n\tvalue: {\n\t\ttext: string;\n\t\turl: string;\n\t\thref: string;\n\t\tlinktype?: string;\n\t\ttitle?: string;\n\t\ttarget?: string;\n\t\tclass?: string;\n\t};\n};\n\nexport type JssBooleanType = {\n\tvalue: boolean;\n};\n\nexport type JssIconType = {\n\tvalue: ICONS;\n};\n\nexport type SitecoreItemType = {\n\tid: string;\n\tfields: T;\n};\n\nexport type SitecoreErrorMsgItemType = SitecoreItemType<{\n\tcode: JssTextType;\n\terrorMessage: JssTextType;\n\terrorTitle?: JssTextType;\n\terrorIcon?: JssImageType;\n}>;\n\nexport type SitecoreSuccessMsgItemType = SitecoreItemType<{\n\tcode: JssTextType;\n\tsuccessMessage: JssTextType;\n}>;\n\nexport type JssPdfLinkType = {\n\tvalue: {\n\t\thref: string;\n\t\tlinktype: string;\n\t\turl: string;\n\t};\n};\n\nexport type JssPdfLinksItemType = {\n\tid: string;\n\tfields: {\n\t\tcodeFrom: JssTextType;\n\t\tcodeTo: JssTextType;\n\t\tlink: JssPdfLinkType;\n\t};\n};\n\nexport type SitecoreTreeOptionsItemType = {\n\tid: string;\n\tfields: {\n\t\tKey: JssTextType;\n\t\tValue: JssTextType;\n\t\tHelp: JssTextType;\n\t};\n};\n\n// ------------------------------\n\n/**\n * Get the message value from an array of messages (success or error type)\n * References:\n * https://confluence.australiansuper.net.au/display/MemberPortalV5/GL02+-+Success+Notifications\n * https://confluence.australiansuper.net.au/display/MemberPortalV5/GL01+-+Error+Messages\n *\n * @param {string} code - code of certain message base on confluence. e.g. SN08\n * @param {array} messageItems - array of message.\n * @param {string} messageType - The type of message to be fetch. It can be errorMessage (by default) | successMessage\n * @returns {string} The description pair of the code being fetch.\n */\nexport const getMessageByCode = (\n\tcode: string | undefined,\n\tmessageItems: (SitecoreErrorMsgItemType | SitecoreSuccessMsgItemType)[],\n\tmessageType: 'errorMessage' | 'successMessage' = 'errorMessage',\n) => {\n\tif (!isArray(messageItems) || !code) return '';\n\n\tconst messageItemTypeDetail = messageItems.find(\n\t\titem => item.fields.code.value === code,\n\t);\n\n\treturn get(messageItemTypeDetail, `fields.${messageType}.value`, '');\n};\n\n/**\n * Get the TMD PDF url based on the classification id of logged in member.\n *\n * @param {string} code - classification id from sitecore member context\n * @param {array} pdfLinks - array of TMD PDF links.\n * @returns {string} The description pair of the code being fetch.\n */\nexport const getPdfLink = (\n\tcode: string | undefined,\n\tpdfLinks: JssPdfLinksItemType[],\n) => {\n\tif (!isArray(pdfLinks) || !code)\n\t\t/* https://confluence.australiansuper.net.au/pages/viewpage.action?pageId=102270356\n\t\t * B09 - if NO CODE AVAILABLE redirect to the URL below.\n\t\t */\n\t\treturn 'https://www.australiansuper.com/tools-and-advice/learn/target-market-determinations';\n\n\tconst pdfLinkItemTypeDetail = pdfLinks.find(\n\t\titem =>\n\t\t\titem.fields.codeFrom.value === code ||\n\t\t\tinRange(\n\t\t\t\tparseInt(code),\n\t\t\t\tparseInt(item.fields.codeFrom.value ?? 0),\n\t\t\t\tparseInt(item.fields.codeTo.value ?? 0),\n\t\t\t),\n\t);\n\n\treturn get(pdfLinkItemTypeDetail, `fields.link.value.url`, '');\n};\n\n/**\n * Get the page state and database use, and returns a boolean.\n *\n * @param {string} pageState - page state of the current page location on sitecore admin panel\n * @param {string} database - active database on sitecore admin panel\n * @returns {boolean} - returns a boolean if state is in preview or edit mode.\n */\nexport const getSitecorePageState = (\n\tpageState: string | undefined,\n\tdatabase: string | undefined,\n) => {\n\tconst masterDB = 'master';\n\n\tif (!pageState && !database) {\n\t\treturn false;\n\t}\n\n\treturn (\n\t\t(database?.toLowerCase() === masterDB &&\n\t\t\tpageState?.toLowerCase() === 'edit') ||\n\t\t(database?.toLowerCase() === masterDB &&\n\t\t\tpageState?.toLowerCase() === 'preview') ||\n\t\tdatabase?.toLowerCase() === masterDB\n\t);\n};\n\n/**\n * @description This method returns OTP error message from Sitecore or API response\n * @param {string} sitecoreMessage Should be the raw message from getMessageByCode\n * since the fallback value is also string. This is also in relation with the ReactHTMLParser\n * that should accept only string content.\n * @param {GetDataError | null} otpError Fallback value\n * @returns {string} Error message\n */\nexport const getOtpErrorMessage = (\n\tsitecoreMessage: string,\n\totpError: GetDataError | null,\n) => {\n\treturn ([401, 504].includes(otpError?.status!)\n\t\t? sitecoreMessage\n\t\t: otpError?.message ?? 'Unable to parse error') as string;\n};\n\n/**\n * This method returns the image path without hostname\n */\nexport const getCleanImageSrc = (src?: string) => {\n\tconst isValidURL =\n\t\tsrc?.toLowerCase().substring(0, 8) === 'https://' ||\n\t\tsrc?.toLowerCase().substring(0, 7) === 'http://';\n\n\tif (!src || !isValidURL) {\n\t\treturn src;\n\t}\n\n\tconst urlObj = new URL(String(src));\n\tconst newURL = urlObj?.href?.replace(urlObj?.origin, '');\n\n\treturn newURL;\n};\n\n/**\n * This method returns JSS image field without hostname\n */\nexport const getFormattedJSSImage = (imgField: JssImageType | undefined) => {\n\tif (!imgField) {\n\t\treturn {\n\t\t\tvalue: {\n\t\t\t\talt: '',\n\t\t\t\tsrc: '',\n\t\t\t},\n\t\t};\n\t}\n\n\treturn {\n\t\tvalue: {\n\t\t\talt: imgField?.value?.alt,\n\t\t\tsrc: getCleanImageSrc(imgField?.value?.src) ?? '',\n\t\t},\n\t};\n};\n\n/**\n * @description Parses richtext string with image into HTML element\n * to find the img src. It then uses `getCleanImageSrc` method.\n * @param {string | JssTextType} field - Sitecore field value\n * @returns {string}\n */\nexport const getFormattedRichTextWithImage = (field: string | JssTextType) => {\n\tconst el = document.createElement('html');\n\tel.innerHTML = typeof field === 'string' ? field : field?.value;\n\n\tconst imgCollection = el.getElementsByTagName('img');\n\n\tfor (let i = 0; i < imgCollection?.length; i++) {\n\t\tconst cleanImgSrc = getCleanImageSrc(imgCollection[i]?.src);\n\t\tif (typeof cleanImgSrc === 'string') {\n\t\t\timgCollection[i].src = cleanImgSrc;\n\t\t}\n\t}\n\n\tconst newRichText = el.getElementsByTagName('body')[0].innerHTML;\n\n\treturn typeof field === 'string'\n\t\t? newRichText\n\t\t: ({ value: newRichText } as JssTextType);\n};\n","import styled, { css } from 'styled-components';\n\nimport * as mx from 'core/styles/mixins';\n\nexport const Icon = styled.i<{\n\trotate?: number;\n\tsize: number;\n\tflip?: boolean;\n}>`\n\tposition: relative;\n\tdisplay: inline-flex;\n\tcolor: inherit;\n\tjustify-content: center;\n\talign-items: center;\n\ttransition: 0.3s all ease-in-out;\n\n\t${({ rotate, flip }) =>\n\t\t(!!rotate || !!flip) &&\n\t\tcss`\n\t\t\ttransform: ${!!rotate && `rotate(${rotate}deg)`} ${!!flip && 'scaleX(-1)'};\n\t\t\ttransition: 0.3s all ease-in-out;\n\t\t`}\n\n\t${({ size }) => css`\n\t\t${mx.square(`${size}px`)}\n\t`}\n\n\tsvg {\n\t\t${mx.alignCentre}\n\t\t${mx.square('100%')}\n\t}\n\n\t/** @note This is an NOI specific or custom style for their modal icons.\n \tSee https://australiansuper.atlassian.net/browse/MI0031-1062 for reference ***/\n\t&&.claimableAmountModalIcon {\n\t\tmargin-left: 3px;\n\t}\n`;\n","import { isJwtExpired } from 'jwt-check-expiration';\nimport {\n\tTransactionDetail,\n\tTransactionClaim,\n\tTransactionContribution,\n\tTransactionTransferIn,\n} from 'core/api/client/TransactionApi';\nimport {\n\tclearLocalStorage,\n\tclearSessionCookie,\n\tgetAccessToken,\n\tgetRefreshToken,\n\tgetSessionStorageItem,\n\tsetAccessToken,\n\tsetDisplayLogoutSuccessFlag,\n\tsetRefreshToken,\n\tsetSessionStorageItem,\n} from 'core/browserStorage';\nimport { memberRefreshToken } from 'core/api';\nimport { LOGOUT_STATUS, SITECORE_PAGES } from 'core/constants';\n\nexport enum ResponseCodes {\n\tResponse200 = 200,\n\tResponse401 = 401,\n\tResponse404 = 404,\n\tResponse500 = 500,\n}\n\nexport const TOKEN_REFRESH_KEY = 'isTokenRefreshOngoing';\n\n/**\n * Get error message from API error object\n *\n * @param {any} error - error object from Restful-React resonse\n * @param {ResponseCodes[]} ignoreResponses - if provided, ignore error message for this list of response error codes\n * @param {string} sitecoreMessage - optional, custom error message - data source can be from Sitecore.\n */\nexport const getErrorMessage = (\n\terror: any,\n\tignoreResponses: ResponseCodes[] = [],\n\tsitecoreMessage?: string,\n): string => {\n\tif (!error || !error.message) {\n\t\t// no error\n\t\treturn '';\n\t}\n\n\tif (!error.status) {\n\t\t// error contains message but contains NO status, likely a browser side connection issue or CORS error\n\t\treturn sitecoreMessage ?? error.message;\n\t}\n\n\tif (!ignoreResponses.includes(error.status)) {\n\t\t// error contains a status, which is considered a false positive\n\t\treturn sitecoreMessage ?? error.message;\n\t}\n\n\t// default scenario\n\treturn '';\n};\n\n{\n\t/**---------------------TRANSACTIONS--------------------*/\n}\n\n/**\n * Type guard for TransactionDetail - checking if props is in TransactionClaim\n * @param txnDetails - TransactionDetail\n */\nexport function isTransactionClaim(\n\ttxnDetails?: TransactionDetail,\n): txnDetails is TransactionClaim {\n\treturn (txnDetails as TransactionClaim)?.claim_distribution !== undefined;\n}\n\n/**\n * Type guard for TransactionDetail - checking if props is in TransactionContribution\n * @param txnDetails - TransactionDetail\n */\nexport function isTransactionContribution(\n\ttxnDetails?: TransactionDetail,\n): txnDetails is TransactionContribution {\n\treturn (txnDetails as TransactionContribution)?.employer_number !== undefined;\n}\n\n/**\n * Type guard for TransactionDetail - checking if props is in TransactionTransferIn\n * @param txnDetails - TransactionDetail\n */\nexport function isTransactionTransferIn(\n\ttxnDetails?: TransactionDetail,\n): txnDetails is TransactionTransferIn {\n\treturn (txnDetails as TransactionTransferIn)?.fund_name !== undefined;\n}\n\nexport function doRefreshToken() {\n\tlet isAccesTokenExpired;\n\tconst isTokenRefreshOngoing = getSessionStorageItem(TOKEN_REFRESH_KEY);\n\n\tif (isTokenRefreshOngoing !== '1') {\n\t\ttry {\n\t\t\tisAccesTokenExpired = isJwtExpired(getAccessToken());\n\t\t} catch (e) {\n\t\t\t// Token retrieval error\n\t\t\treturn Promise.reject(\n\t\t\t\t'token retrieval error, user likely unauthenticated',\n\t\t\t);\n\t\t}\n\n\t\tif (isAccesTokenExpired) {\n\t\t\tsetSessionStorageItem(TOKEN_REFRESH_KEY, '1');\n\t\t\tconst rToken = getRefreshToken();\n\n\t\t\treturn memberRefreshToken(rToken)\n\t\t\t\t.then(result => {\n\t\t\t\t\tif (result.status === 200) {\n\t\t\t\t\t\tsetSessionStorageItem(TOKEN_REFRESH_KEY, '0');\n\t\t\t\t\t\tconst { accessToken, refreshToken, isValid } = result?.data;\n\n\t\t\t\t\t\tif (isValid === true) {\n\t\t\t\t\t\t\tsetAccessToken(accessToken);\n\t\t\t\t\t\t\tsetRefreshToken(refreshToken);\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tsessionStorage.clear();\n\t\t\t\t\t\t\tclearLocalStorage();\n\t\t\t\t\t\t\tclearSessionCookie();\n\t\t\t\t\t\t\tsetDisplayLogoutSuccessFlag(LOGOUT_STATUS.LOGOUT_JWT);\n\t\t\t\t\t\t\twindow.location.assign(SITECORE_PAGES.LOGIN);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t})\n\t\t\t\t.catch(() => {\n\t\t\t\t\tsetSessionStorageItem(TOKEN_REFRESH_KEY, '0');\n\t\t\t\t\t// Redirect to login screen since token will be invalid hereon, user needs to relogin\n\t\t\t\t\tsessionStorage.clear();\n\t\t\t\t\tclearLocalStorage();\n\t\t\t\t\tclearSessionCookie();\n\t\t\t\t\tsetDisplayLogoutSuccessFlag(LOGOUT_STATUS.LOGOUT_JWT);\n\t\t\t\t\twindow.location.assign(SITECORE_PAGES.LOGIN);\n\t\t\t\t});\n\t\t}\n\t}\n\n\treturn Promise.resolve();\n}\n"],"sourceRoot":""}