* Migrate vault entries to new schema (#2092) * Migrate existing vault entries to new schema * Read+write new vault schema * Drop VaultEntry table * Refactor vaultPrismaFragments * Remove wrong comment * Remove TODO * Fix possible race condition on update of vault key * Remove lib/object.js * Wallet schema v2 (#2146) * Add wallet-v2 TODOs * Update checkWallet * Wallet list * Delete almost all wallet v1 code and add some code for wallet protocol forms * Define protocol display name in JSON * Show form per protocol * Increase max-height of image in form * Add JSdoc for protocols, form validation * Use wallet cards again My wallet list was quite ugly and I couldn't look at it anymore. * Refactor hooks in wallet provider * Fix PasswordInput not used * Read encrypted wallets * Decrypt wallets * useWalletQuery now returns decrypted wallets * Refactor useIndexedDB because its only purpose will be to store the key, so no need for pagination code etc. * There is still a bug: if the wallet is not decrypted on first render, the form will not see the decrypted value. See TODO. * Rename protocolJson to protocol it no longer uses a JSON file * Fix form not updated with decrypted API key * Fix wallet template forms * Fix optional shown as hint * Rename to mapUserWalletResolveTypes * Save LNbits send and recv TODO: * implement resolvers for other protocols * fix double update required for trigger? * add missing validation on server * add missing network tests * don't import from wallets/client on server * Move definitions to lib/wallets.json and lib/protocols * Fix ProtocolWallet.updated_at not updated by trigger * Move wallet fragments into wallets/client/fragments/ * move invoice fragments to fragments/invoice.js * remove some unused fragments that I don't think I also will not use * move fragments that will be generated in own file * Move wallet resolvers into wallets/server/resolvers * Fix missing authorization check on wallet update * Run all shared code in generic wallet update function * Fix 'encrypt' flag not set for blink send currency * Add mutations for all protocols * Fix macaroon validation * Fix CLN socket value not set * Add server-side schema validation * Fix JSDoc typedef for protocols * Don't put JSDoc into separate file * Create test invoices on save * Also move type resolvers into wallets/server/resolvers * Fix unconfigured protocols of UserWallet not found * Fix Blink API key in wallet seed * Test send payment on save (except LNC) This does not include LNC because LNC cannot be saved yet * Check if window.webln is defined on save * Create new wallets from templates * Separate protocols in wallets/lib into individual files * Use justify-content-start for protocol tabs and larger margin at the top * Add LNC to client protocols * Only return wallets from useWallets * Query decrypted wallets * Payments with new wallets * More wallet logos * Fix TypeError in useIndexedDB * Add protocol attach docs * Fix undefined useWalletRecvPrompt import * Remove outdated TODOs * First successful zap to new wallets * Fix walletLogger imports * Fix sequences * the sequences for InvoiceForward and DirectPayment were still starting at 1 * when using setval() with two arguments, nextval() will return the second argument+1 (see https://www.postgresql.org/docs/current/functions-sequence.html) * Rename ProtocolWallet columns * Remove more outdated TODOs * Update wallet indicator * Fix page reset on route change * Refactor __typename checks into functions * Refactor protocol selection into own hook * Add button to detach protocol * Refetch wallet on save and detach * Refetch wallets on change * Always show all templates * Refactor WalletLink component * Also put wallet into forms context * Remove outdated TODOs * Use useMemo in wallets hooks * Passphrase modals * prompt for password if decryption failed * add button to reveal passphrase on wallet page TODO: * remove button if passphrase was revealed or imported * encrypt wallets with new key on passphrase reveal * Fix protocol missing as callback dependency * Encrypt wallets with new key on passphrase export * Update 'unlock wallets' text * Rename wallet mutation hooks * Remove 'removeWallet' mutation Wallets are automatically deleted when all protocols are deleted * Passphrase reset * Use 110px as minimum width for bip39 words longest bip39 words are 8 characters and they fit into 103px so I rounded up to 110px. * Also disable passphrase export on save * Wallet settings * Fix wallet receive prompt * Remove unused parameters from postgres function * Rename UserWallet to Wallet, ProtocolWallet to WalletProtocol * Use danger variant for button to show passphrase * Fix inconsistent imports and exports * Remove outdated TODOs * wallet logs * Remove outdated comment * Make sure wallets are used in priority order * Separate wallets from templates in reducer * Fix missing useCallback dependencies * Refactor with useWalletLogger hook * Move enabled to WalletProtocol * Add checkbox to enable/disable protocol * Fix migration with prod db dump * Parse Coinos relay URLs * Skip network tests if only enabled changed * Allow IndexedDB calls without session * Add code to migrate old CryptoKey * first try to use existing CryptoKey before generating a new one * bump IDB version to delete old object stores and create new ones * return IDB callbacks with useMemo * don't delete old IDB right away, wait until next release * Fix ghost import error *Sometimes*, I get import errors because it tries to resolve @/wallets/server to wallets/server.js instead of wallets/server/index.js. For the files in wallets/server, it kind of makes sense because it's a circular import. But I don't know why the files in worker/ have this problem. Interestingly, it only seems to happen with walletLogger imports, so I guess its related to its import chain. Anyway, this commit should make sure this never happens again ... * Skip wallets queries if not logged in * Split CUSTOM wallet into NWC and LN_ADDR * Migrate local wallets * Link to /wallets/:id/receive if send not supported * Hide separator if there are no configured wallets * Save LNC * Add one-liner to attach LNC * Update wallet priorities via DnD * Wallet logs are part of protocol resolvers * Fix logging to deleted protocol * Fix trying to fetch logs for template * also change type to Int so GraphQL layer can catch trying to fetch string IDs as is the case for templates * Fix embedded flag for wallets logs not set * Remove TODO * Decrease max-height for embedded wallet logs on big screens * Fix missing refetch on wallet priority update * Set priorities of all wallets in one tx * Fix nested state update * Add DragIcon * DnD mobile support and refactor * Add CancelButton to wallet settings * Remount form if path changes This fixes the following warning in the console: """ Warning: A component is changing an uncontrolled input to be controlled. This is likely caused by the value changing from undefined to a defined value, which should not happen. Decide between using a controlled or uncontrolled input element for the lifetime of the component. """ * Support string and object for wallet.image JSON * Append domain to lightning address inputs * Remove outdated TODOs * Add template IDs to wallet JSON * Fix missing callback dependency * Implement lightning address save in receive prompt * Update TODOs * Fix missing check for enabled * Pay QR codes with WebLN as anon * Add logo for NWC * Fix trying to save logs for template * Add template logs * Fix inconsistent margin * Always throw on missing key * Remove misleading comment Wallets are returned even if decryption fails so we can show the unlock page if a wallet is stored as encrypted in the context. Maybe I should rethink this. * Check for existing wallets on local wallet migration * Fix local wallet migration causing duplicates * Fix protocol reattached on detach due to migration * Fix form not centered * Fix ZEUS lightning address domain * Add placeholder, help, hints etc. to wallet form inputs * Fix wallet badges not updated * Remove unused declared variables * Rename to ATTACH_PAGE * Fix 500 error if no amount was given to LNURLp endpoint * Tag log messages with wallet name * Only skip network tests if we're disabling the wallet * Rename var to networkTests * Continue to store key hash in IndexedDB * Rethink wallet state management If decryption failed, the function to decrypt the wallets didn't throw but simply returned wallets that were still encrypted. This was bad because it meant we could not rely on the wallets in the state being decrypted, even though this was the original idea behind the query hooks: hide the details of encryption and decryption inside them. Because of this, we had to check if the wallets were still encrypted before we ran the wallet migration since we want to check if a protocol already exists. This commit fixes this by making encryption and decryption always throw (and catching the errors), as well as returning a ready state from hooks. A hook might not be ready because it still needs to load something (in the case of the crypto hooks, it's loading the key from IndexedDB). Callers check that ready state before they call the function returned by the hook. So now, the wallet migration hook can itself simply check if the hook to encrypt wallets is ready and if the wallets are no longer loading to let callers know if it itself is ready. Since we also relied on wallets stored as encrypted in the context to show the unlock page, this was also changed by comparing the local and remote key hash. * Add empty line * Save new key hash during wallet reset * Only receive protocol upserts require networkTests param * Compare key hashes on server on each save * Delete old code * Fix card shows attach instead of configure * Fix empty wallets created during migration The old schema can contain '' instead of NULL in the columns of wallets for receiving. * Update reset passphrase text * Wrap passphrase reset in try/catch * Fix migrate called multiple times * Update key hash on migration if not set * Fetch local wallets in migrate * Fix missing await on setKey * Let first device set key hash * Fix indicator not shown if wallets locked * Check if IndexedDB is available * Fix inconsistent WebLN error message * Disable WebLN if not available * Remove outdated TODO * Cursor-based pagination for wallet logs * Fix log message x-overflow * Add context to wallet logs * Wrap errors are warnings in logs * Rename wallet v2 migrations * Update wallet status during logging * Fix wallet logs loading state The loading state would go from false -> true -> false because it's false when the lazy query wasn't called yet. * Add wallet search * Add Alby Go wallet * Revert "Add Alby Go wallet" This reverts commit 926c70638f1673756480c848237e52d5889dc037. * Fix wallet logs sent by client don't update protocol status * Fix mutation name * put drag icon on opposite corner * Add wallets/README.md * Fix inconsistent case in wallets/README.md * Fix autoprefixer warning about mixed support This warning was in the app logs: app | Warning app | app | (31:3) autoprefixer: end value has mixed support, consider using flex-end instead app | app | Import trace for requested module: app | ./styles/wallet.module.css app | ./wallets/client/hooks/prompt.js app | ./wallets/client/hooks/index.js app | ./wallets/client/context/hooks.js app | ./wallets/client/context/provider.js app | ./wallets/client/context/index.js * fix effect of wallet indicators on logo * Fix deleting wallet template logs * Use name as primary key of WalletTemplate * Fix wallet_clear_vault trigger not mentioned in README * Fix wallet receive prompt Also remove no longer needed templateId from wallets.json and helper functions * Use findUnique since name is now primary key * Merge Alby wallets into one * Remove unused name parameter from WalletsForm component * Fix number check to decide if wallet or template * Update wallet encryption on click, not as effect * add cashu.me and lightning address logos * add images * Use recommended typeof to check if IDB available * Also check if IDB available on delete * Use constraint triggers * Add indices on columns used for joins * Fix inconsistent CLEAR OR REPLACE TRIGGER * Attach wallet_check_support trigger to WalletProtocol table * Update wallets/README.md * Remove debugging code * Refactor reducer: replace page with status * Show 'wallets unavailable' if device does not support IndexedDB * Remove duplicate ELSIF condition * Fix hasSendWallet The useSendWallets hook was not checking if the returned send wallets are enabled. Since the components that used that hook only need to know if there is a send wallet, I replaced the useSendWallets hook with a useHasSendWallet hook. * Add Cash App wallet * fix changes loglevel enum * Fix key init race condition in strict mode if no key exists yet * Formatting * Fix key init race condition via transactions in readwrite mode * Replace Promise.withResolvers with regular promises * replace generic spinner with our usual --------- Co-authored-by: k00b <k00b@stacker.news>
21 lines
12 KiB
XML
21 lines
12 KiB
XML
<svg width="405" height="72" viewBox="0 0 405 72" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
<rect width="72" height="72" fill="url(#pattern0_4238_1215)"/>
|
|
<path d="M399.209 55.7166C396.281 55.7166 394.057 54.9752 392.536 53.4924C391.054 52.0096 390.312 49.8424 390.312 46.9909V32.3338H386.092V25.7752H388.202C389.343 25.7752 390.122 25.5091 390.54 24.9768C390.958 24.4065 391.168 23.608 391.168 22.5815V17.6768H398.753V25.7752H404.684V32.3338H398.753V49.158H404.228V55.7166H399.209Z" fill="white"/>
|
|
<path d="M369.181 56.401C366.9 56.401 364.866 56.0398 363.079 55.3174C361.292 54.557 359.771 53.5114 358.516 52.1807C357.299 50.8119 356.368 49.158 355.722 47.219C355.113 45.2799 354.809 43.1127 354.809 40.7174C354.809 38.3601 355.113 36.2309 355.722 34.3299C356.33 32.3908 357.223 30.7369 358.402 29.3682C359.619 27.9994 361.102 26.9538 362.85 26.2314C364.599 25.471 366.596 25.0908 368.839 25.0908C371.31 25.0908 373.42 25.509 375.169 26.3455C376.956 27.182 378.401 28.3036 379.504 29.7104C380.644 31.1171 381.462 32.752 381.956 34.615C382.488 36.4401 382.754 38.3601 382.754 40.3752V42.8846H363.535V43.3408C363.535 45.3179 364.067 46.8958 365.132 48.0744C366.196 49.2151 367.869 49.7854 370.151 49.7854C371.899 49.7854 373.325 49.4432 374.428 48.7588C375.53 48.0364 376.557 47.1809 377.508 46.1924L381.728 51.4393C380.397 52.9981 378.648 54.2148 376.481 55.0893C374.352 55.9638 371.918 56.401 369.181 56.401ZM369.01 31.3072C367.299 31.3072 365.949 31.8775 364.961 33.0182C364.01 34.1208 363.535 35.6036 363.535 37.4666V37.9229H374.029V37.4096C374.029 35.5846 373.61 34.1208 372.774 33.0182C371.976 31.8775 370.721 31.3072 369.01 31.3072Z" fill="white"/>
|
|
<path d="M347.809 55.7164C344.92 55.7164 342.791 55.013 341.422 53.6062C340.091 52.1994 339.426 50.1653 339.426 47.5038V13.5132H347.866V49.1578H351.63V55.7164H347.809Z" fill="white"/>
|
|
<path d="M330.99 55.7164C328.1 55.7164 325.971 55.013 324.602 53.6062C323.271 52.1994 322.606 50.1653 322.606 47.5038V13.5132H331.047V49.1578H334.811V55.7164H330.99Z" fill="white"/>
|
|
<path d="M312.264 55.7166C310.743 55.7166 309.469 55.2414 308.443 54.2909C307.454 53.3403 306.827 52.0666 306.561 50.4698H306.219C305.762 52.4088 304.755 53.8916 303.196 54.9182C301.637 55.9067 299.717 56.401 297.436 56.401C294.432 56.401 292.132 55.6026 290.535 54.0057C288.938 52.4088 288.14 50.2987 288.14 47.6752C288.14 44.5195 289.28 42.1812 291.562 40.6604C293.881 39.1015 297.018 38.3221 300.972 38.3221H305.705V36.44C305.705 34.9953 305.325 33.8546 304.565 33.0182C303.804 32.1437 302.531 31.7065 300.744 31.7065C299.071 31.7065 297.74 32.0676 296.751 32.79C295.763 33.5124 294.945 34.3299 294.299 35.2424L289.28 30.794C290.497 29.007 292.018 27.6192 293.843 26.6307C295.706 25.6041 298.215 25.0908 301.371 25.0908C305.629 25.0908 308.823 26.0223 310.952 27.8854C313.081 29.7484 314.146 32.4669 314.146 36.0408V49.158H316.94V55.7166H312.264ZM300.572 50.5268C301.979 50.5268 303.177 50.2226 304.165 49.6143C305.192 49.006 305.705 48.0174 305.705 46.6487V43.1127H301.599C298.291 43.1127 296.637 44.2343 296.637 46.4776V47.333C296.637 48.4356 296.98 49.2531 297.664 49.7854C298.348 50.2796 299.318 50.5268 300.572 50.5268Z" fill="white"/>
|
|
<path d="M243.12 55.7165L234.109 15.9087H242.664L246.428 35.0142L248.538 46.0783H248.709L251.219 35.0142L255.61 15.9087H265.077L269.526 35.0142L271.978 46.0783H272.149L274.259 35.0142L278.081 15.9087H286.293L277.054 55.7165H267.188L262.169 34.1587L260.23 25.4329H260.059L258.063 34.1587L253.044 55.7165H243.12Z" fill="white"/>
|
|
<path d="M211.574 55.7166C208.646 55.7166 206.422 54.9752 204.901 53.4924C203.418 52.0096 202.677 49.8424 202.677 46.9909V32.3338H198.457V25.7752H200.567C201.707 25.7752 202.487 25.5091 202.905 24.9768C203.323 24.4065 203.532 23.608 203.532 22.5815V17.6768H211.117V25.7752H217.049V32.3338H211.117V49.158H216.593V55.7166H211.574Z" fill="white"/>
|
|
<path d="M166.258 55.7163L176.125 40.489L166.372 25.7749H175.954L181.543 35.1851H181.771L187.189 25.7749H196.086L186.162 40.7741L196.143 55.7163H186.561L180.801 45.964H180.573L175.041 55.7163H166.258Z" fill="white"/>
|
|
<path d="M157.069 22.5813C155.358 22.5813 154.103 22.2011 153.305 21.4406C152.544 20.6422 152.164 19.6346 152.164 18.418V17.1633C152.164 15.9466 152.544 14.9581 153.305 14.1977C154.103 13.3992 155.358 13 157.069 13C158.78 13 160.015 13.3992 160.776 14.1977C161.574 14.9581 161.973 15.9466 161.973 17.1633V18.418C161.973 19.6346 161.574 20.6422 160.776 21.4406C160.015 22.2011 158.78 22.5813 157.069 22.5813ZM152.848 25.775H161.289V55.7165H152.848V25.775Z" fill="white"/>
|
|
<path d="M143.967 55.7164C141.078 55.7164 138.948 55.013 137.58 53.6062C136.249 52.1994 135.583 50.1653 135.583 47.5038V13.5132H144.024V49.1578H147.788V55.7164H143.967Z" fill="white"/>
|
|
<path d="M98 15.9087H117.334C120.641 15.9087 123.208 16.8402 125.033 18.7032C126.896 20.5662 127.827 23.0376 127.827 26.1173C127.827 27.6381 127.618 28.9308 127.2 29.9954C126.82 31.06 126.288 31.9345 125.603 32.6189C124.957 33.3032 124.177 33.8165 123.265 34.1587C122.39 34.4629 121.44 34.634 120.413 34.672V35.0142C121.364 35.0142 122.352 35.1853 123.379 35.5275C124.444 35.8696 125.413 36.421 126.288 37.1814C127.162 37.9038 127.884 38.8543 128.455 40.0329C129.063 41.2116 129.367 42.6564 129.367 44.3673C129.367 45.9262 129.101 47.409 128.569 48.8158C128.075 50.1845 127.371 51.3822 126.459 52.4087C125.546 53.4353 124.463 54.2527 123.208 54.8611C121.953 55.4314 120.584 55.7165 119.102 55.7165H98V15.9087ZM106.669 48.4165H116.649C117.79 48.4165 118.683 48.1124 119.33 47.504C120.014 46.8577 120.356 45.9642 120.356 44.8236V42.8845C120.356 41.7439 120.014 40.8694 119.33 40.2611C118.683 39.6147 117.79 39.2915 116.649 39.2915H106.669V48.4165ZM106.669 32.2196H115.28C116.421 32.2196 117.315 31.8965 117.961 31.2501C118.607 30.6038 118.93 29.7103 118.93 28.5696V26.8587C118.93 25.7181 118.607 24.8246 117.961 24.1782C117.315 23.5319 116.421 23.2087 115.28 23.2087H106.669V32.2196Z" fill="white"/>
|
|
<defs>
|
|
<pattern id="pattern0_4238_1215" patternContentUnits="objectBoundingBox" width="1" height="1">
|
|
<use xlink:href="#image0_4238_1215" transform="scale(0.0138889)"/>
|
|
</pattern>
|
|
<image id="image0_4238_1215" width="72" height="72" preserveAspectRatio="none" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEgAAABICAYAAABV7bNHAAAQR0lEQVR42uVcCXRTVRoOYF1QKkhFoEAX6JqkSZomFRFsXUBExQVGXHBc8VQHHGbUg8t4OCqiB2f0DKOOA4JaESgUulK677SlFQdwm5ZWEEqbfaNr8nrn/+97r03StDRtXoszOec79+Xed//le//9770v70UkGsMPIaJxHMYPANou+n/5UIdTVk4gxQmXYTnkfk59/ucIo5GAzkHpsb1h6RXWOmVA+1HVbHPdTXMReIx12DYcmb8NYrir7lxnrVFPtVXHJ0L5irU6PtlWo6601cQ3AvRQ32atVnch2GOoo23qSjwX+rzM9Z3qosfLaBx7Ytgr2zsMLlTH3wBOPX2hRp0BDmvAWYKwVHkHvh/KsB2NT6cyQbbL8HW7IJdexDiFPDgwHxzYAVfdaEUH0dEjgGo1Y66MdyDgu8NcpWIsVWoG6nt6UUXB0DY85wh3PtYfYeWgPJSNOlCXy/C71CLK+crZqm5MAMPzbdVOpPQ5yPAODhtVLMEo042sfNTtyaaxTcBc1Jhr1CFg5D5btRoMVoPhamKuVHNXXc05qHZCvIc657Yh1FepeqgOrg31gv59aIu7faNPTp3SzynPvGirUndYqaFgdAUareqxVML30YCbTrClE23yZOuokmOsU14LpGRRYsAwMNI+mCPmYbZ5A7QBZaFN1kp1Nto4qiTximyVcRIw4jQaZaJGqRgwjrig0u37UFA5/DZL77GKMZWDTRWUtNPGUqV0VEjiE5+hTL0EyOmk5HCGXIros03Veb5AdaegyZtn31wWt8J6RIVKwQCVA0vOiAEwWNtQgP3jnY7VXulhbcQojyPNubEPCRJJvEBDqXKxtRIUl4PiMlBczh4LCUvNMpitbh2RDLTVAmQZy+JIY6b8Lp+SxIeksRhyTqWqczTJsR69h7T99Docq0csiydJX6Ls/CFFLvfJcOPXEIbqeH9LedxpCyoqBXLKQKnAsFTeQjrO7SbW2gd9JhNtRx9aC2LPlO+STnH2cUQEmcrisjhy7KNBjrl8Pmlv/JB0nP0G8shNPpXN+3A6R5EDro0bNkF8+EFIroPoIcbSODsQRdxhplARb9sGw4UfXyf29rPEcvQBF1kDnT8MG+y6YiX54UDMS8Maavxmr6VYHgwK2k2lKFTJ0FJQQN6pe4TY286QzuYD9LsgesAXvOjNebHtpTujwpx99oogWGDtxStgLIHoEZwcuNKViaTbUE0cHRpi/e5pQXWhT+AfqU+XHaBDbagE8eGmLVQssmA4lip7TCVQCgxz+SLSAVHDMAyUqaA3XnCd4F9Pa34sqdkhXjLkodY7cxUr88zIdHGcQ3iCVKSt4QPi6L4AsMEwe4yMxkXhfWtIkxUNKWH35p7DMrUFws8EicxUEgsRxB27o4SDx7Y4z/XubdDfeuxp4ugy0ejpbMmGHHHTwH092sA77WbPxWwA39DPllwFKd0eteiiuYgPMV2BYrsZFBmLlI4hGzpMWGpWELu1npLj6DIT67dPEqF1OgN9NBbHkh/2SpMHHWZ8eDWkKK6Hjnojdi6JZYy8IGehTvDU5n6ep++0LE8kna35lBwaPZoiuKrqQft4gukiega1AXw0QxSdzpIbtr0yb9aAi0eeueZDiqews6FIwQC7REi0n0kmjKOrL3q+SyJC6/SIEgXTmqcgRz4XvzBgFHFjb5wmX5FGCSqE0BPKoGI1sX2/gTD2zr7oac2FmWvhmBDE+3pij/QQcND/pj//M83hv4mvMxTGtrAd+QiKdYOnulivzrPUPgaLwV97yWEc3ZCon/NCjtJLWy4GBYM5tzFNptm0JmiGMycus9epVFmiie3Q4xvF/WGuuJN0m0/0kYPRoy2DqLqRCKVzSHYVx/acz5GTrA/DliEXxRudhhk/5k5nxryMBBkKYh1CGGEqWUA6z2fRiOHJcXRZiO34+jElh6Iw1qHNV5CK7ZFv0jWRcx7iImj8uSxZMpxIDPlAUCHt5DsUwSb0p81Ajt0leroMR2FGWUB8rs9LoM+GAgWp+zJ6r0secnrEZILmsLzclwQZnI5tx1/uXQz2Ro+9HWauFwfs42sbBmtDn01QntwjqQIuLu/lhU9GCcGiK7W58gZkUZ8vZ7BEAbT0hEHbnNthfB95kNhtjS7k0OjRVcIUmziArFgyIhu87Is+m8Dun/dJGiMCRJN6EzXZyC6KPn1p7jR9nlxDO/AE+QDG4kVARAUQ4uhHUMf5bGI7sQGi6I/E8m0SzG5PEnP1I0DoA8RUsYwYS2+D/jj1x8NVjusjTQhwBJ1KlWrXPhrILhiRG56gg5uDg/V5CksvQfk+IKfoJlgM7vJIDj+904UirofsHXTIUXS3sRtXGJJ2WxPkqVrScS4dNrT/IJZjayHqbvU9WRxBv6TFWN9PmhnRj6A974aG6/MV7ZSYfHkPW44EkHd+eAuctHomp5ekLrqDd3QaYG10jnTpa4DUPeTCj+/BviyJmKtWweb1LiB7AUsKL78AduNF8yHCboEF5mLY062GKHyeXpTh2SvvMQFRp9Nk7ZuSZsX0Iyj57ZAIXxJkBoMdncZ+hOC03m35CVbORaSt6Qsg4l0g4gUYUvfCMLpxYJnQZqpYTknA2bD9ly9BRiHI+pnKxAjECzJ8m/sIemttoKwfQTs2zAnV5cRYDbAnMeTKGEOenLhCQfrXeYap5HbIL4dJl/HflIj2ph2Qa96A/LKathmLbgEy5tMoc5aPV99UthSi5mFiqUuiUdR+Zi9EVTVEVzONMow2fv/WF4V20PEFK3OINvYD+GzKl5PGVInt1SenR/cRxM1ir60JmKHNkWn4k4etCGAsuhmu9v2UCEO+0rUdvxfAjr0QybgbiMCI2EI6zh4gXdoKGl32Dg1ERNfgQ7MXDshRdayuEdjME9SwT6Jddd/k4L5ZjCMoAKa2lixZA8xkRHc4hsHSEwwD1F+sjUUsJcV6bD25UP8x6fg1FZJvFkRbHkRaMemEab9LX0u6TcdhOwJEWRuJ/cJZYm/XQPLu8EhQt7UeLsaDXtjgGeizEQj6fpekyd9fdJ0LQRxJV/+aHlOhz4WTc+QOLIUBrDnyFJQsfb4KIioeIgqGRiEk4aKFABh+RYmQfGGKL1kMuBNIvZeS1T+fmSAC/8DKG6Fd6LMBytovomuAC3+XZ7S5ZfVV9SniXcIT5D3MNc/0XyrA0gCjUJ8X5xMd6LPusIwUfxK2H7lwueXBbcwuP7o94g0DnKQ7JHPoobwUYChcSDo1pW5J2QE5Kx3IUfpOV47M0ZIZQ1I3hb5LtxoeNquXpWwKXWa4RIjhYal9np25nLcokKeMpct8pgNmb2LMlZEzByVky7rA3yEXrrc72LE2/oFbJwe1ZEnOA5tEfwgSdQ5lduyQq6TLBJe802GApLzKp3p02ZCggajvd0W13qaeFE538+6vPHCMXfuf3eJMthMMszEiRseVltoX6L1q50Wm5bsN0Cb3MUEyh+5QDCncGpYHHEx2iR63PDQx96OwdWigNlvK6JyM1V0EQzlH54Ucfa6KdDTn9iVn2Le1ndpJ64djw+BtMczZNCnZ9mrwBuSg7jMPD1dxIeV3/6KpUc3pUi0yqkOSsPQIGRm4bTh9XNtMFQ/D2qfTaedfQPQFi3xugzZLyhggB32fHKVPUE3GB6v8BnyjKGWj+HIorqvdEZXMdo5xeG/AyKHPVcMslem0GGyC9dHtwujLjnG0ZkpJ5pbQfeg7x8GgPz1PfPfZwLtbM6REn02jqEdHy9GDqXI1bDd0lBx7u5aYa9cJogeip8cAJJ3aKyZ/XnX9CvTdY/5x/qxdOg/f0Zp+/MvIQiokE6JoVAmSQfRkc7dkO4j15CZaJwhBnG8FH4WVg88zON8H/3AMTtqcFLjyfProR5Gp/GE6leMOva1pN6xT5gsaPQ17xOSV1dNWo8+frRnik69PJARfCcXMyk/D0rWZEmBaatdlSYngOKQEUr5hd+jGk7BSXiScLvCpNV1CMt4LxV9TZ3I+D+2TslKEuWjSyoQpNzemRFv1VKCEQcFaN0Vap1LroX0offh6Y8kD9A5kt+UUHD84oHNaL7+712kzJIw+W0qO74ywLoufnIi+bkwQefec4sYnKKPTk9+cs/HcATEy7oBIIkJBl60gbY1fU4LMtevBIZkgejQZEupL095osnX9zM3o4/qVs64azoOu4xZEBODPH6GlW8NyW9JgqGVI7UIRZCxZAdP5L+TCz5/CIjVWSHLs6EvG5tBC8G0u5+Pw3qTmwm5K4DQ/2Xc7IhpZJcKQ1Na4C2avQxBJcSOTlTEYQZBLoSz/OKxpRoCfEn1boxSN7JWENffMnAjFDasSpyz78atIqx6StiZd4oBxTHwFfcFiWCkXwWLwbuJLuc5Am9H2Y9vCbfcvnLwcfeJ8G/nn0aXX+UMx67XHb3iq/usIxqckZcqJ7eQWYixdJTg5J3eGM396aNpz4Mtszief/UnBuPvkkydDGfz2szPX/vwVkMQqt2vSxEQL0+Vwoc9NgJXzMyArZkRyPAFtA3LsaCuS88bvZ6xHH5ZJr53iS3L4z/ibWcGhLz98wzMndkZa0AidFyRpPNTpchZCFCkFIQdt08Hxt9sirC+uoJETOl/sjzfkBXvRd/xtkZPwnw9CViYG3Fv1SVhTcyqSI2Za08SMhiNhrIG2oE3NsDwp+/u8puW3TL0fbeZsF/wt6PFL2KsQ5D/RT5X9XkjeqW8iiS6dDefWg9E9mjQuvF0gcSuHAm/OFROqOx2jRkxOfRNFDr4TUuB/lZ8abV0icOT0y0m3K6fg28SBAMlHawM3HdsWZm5OjeaIEnNEiclogCVGTIlBG779V5j5ry/MfA9sw5d5AzlbR/1fY8YpZ4omBgVMxIcewxfK/JekvhWUBQmctCBRaPwBsaP1QDSjOQjHAoDKBh2oC44J6k7ZGJR9s9gfX+ANR9vQxrEgx/lzmZod23MA4qTl05/M2hxS+tMX4UzzPpYoHeYnjixAzwgI6WFlUFIYlN28P5qgLtT53H3XP402oC2cTZfMn53QaAqZdjX+G0soIObxO6Y+tvv14JTaf4a1Nu2KIi3giA6cRGjBQU0qEIbYH8W0AFpTo11A62g9ey724fujrF8gx6Bs1LH6jql4uwIfWQlFGy6FqBnoMyF+nsg/KEA0gyNKHBF0TeL7awL/kvF2cG7Np2Hn6pMjyJndkeT8/igYgkgaC+3BvmNnaOEcPPfXPZGkAfrWgYzMd4IPo0yUzUVMKOpE3WjDb+FvhCYsiBBNkoTQiJoNwCe2pLNnXLkwaXnAM1vXzdqyb2NQav4HIVVHts6th6R6/sTn4YYfd4ZbEHh8DOqqPp5bj+fsfysodeu62VuwL8rgogVlzkEdqOu3Qky/JcG8eaIrcIEZMk2EZOGzf3MBkTj7+fn5KQAqdDo+8urFC6T+SxF4jHXQFofn4LlcH+w7C2WhTJQ9mlO34GSJxaLL8WrjajZm7jXTrr9aNB3vBXPEYZIP4jCHq5uB5+C52Af7ooz/JVIGTezoaEKC6DKlUuS3FKIBH0VG4DHWJbC3W8aPZcL9L6+c41XuyMRVAAAAAElFTkSuQmCC"/>
|
|
</defs>
|
|
</svg>
|