diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml deleted file mode 100644 index f2002d21d..000000000 --- a/.github/workflows/docs.yaml +++ /dev/null @@ -1,12 +0,0 @@ -name: build docs - -on: - pull_request: - branches: [ master ] - -jobs: - build_pages: - permissions: - contents: write - uses: bavix/.github/.github/workflows/compile-assets.yml@0.3.0 - secrets: inherit diff --git a/docs/.vitepress/.gitignore b/docs/.vitepress/.gitignore index 6e25fa8f1..c670ee771 100644 --- a/docs/.vitepress/.gitignore +++ b/docs/.vitepress/.gitignore @@ -1 +1,2 @@ -cache/ \ No newline at end of file +cache/ +dist/ diff --git a/docs/.vitepress/dist/404.html b/docs/.vitepress/dist/404.html deleted file mode 100644 index 4312446c9..000000000 --- a/docs/.vitepress/dist/404.html +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - 404 | Laravel Wallet - - - - - - - - - - - - - -
- - - - \ No newline at end of file diff --git a/docs/.vitepress/dist/_include/composer.html b/docs/.vitepress/dist/_include/composer.html deleted file mode 100644 index 84aaaac97..000000000 --- a/docs/.vitepress/dist/_include/composer.html +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - Laravel Wallet - - - - - - - - - - - - - - - - -
Skip to content

Composer

The recommended installation method is using Composer.

In your project root just run:

bash
composer req bavix/laravel-wallet

Ensure that you’ve set up your project to autoload Composer-installed packages.

- - - - \ No newline at end of file diff --git a/docs/.vitepress/dist/_include/eager_loading.html b/docs/.vitepress/dist/_include/eager_loading.html deleted file mode 100644 index 279764e2c..000000000 --- a/docs/.vitepress/dist/_include/eager_loading.html +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - Laravel Wallet - - - - - - - - - - - - - - - - -
Skip to content

Eager Loading

When accessing Eloquent relationships as properties, the relationship data is "lazy loaded". This means the relationship data is not actually loaded until you first access the property. However, Eloquent can "eager load" relationships at the time you query the parent model. Eager loading alleviates the N + 1 query problem. To illustrate the N + 1 query problem, consider a Wallet model that is related to User:

Add the HasWallet trait and Wallet interface to model.

php
use Bavix\Wallet\Traits\HasWallet;
-use Bavix\Wallet\Interfaces\Wallet;
-
-class User extends Model implements Wallet
-{
-    use HasWallet; // public function wallet(): MorphOne...
-}

Now, let's retrieve all wallets and their users:

php
$users = User::all();
-
-foreach ($users as $user) {
-    // echo $user->wallet->balance;
-    echo $user->balance; // Abbreviated notation
-}

This loop will execute 1 query to retrieve all of the users on the table, then another query for each user to retrieve the wallet. So, if we have 25 users, the code above would run 26 queries: 1 for the original user, and 25 additional queries to retrieve the wallet of each user.

Thankfully, we can use eager loading to reduce this operation to just 2 queries. When querying, you may specify which relationships should be eager loaded using the with method:

php
$users = User::with('wallet')->all();
-
-foreach ($users as $user) {
-    // echo $user->wallet->balance;
-    echo $user->balance; // Abbreviated notation
-}

For this operation, only two queries will be executed.

- - - - \ No newline at end of file diff --git a/docs/.vitepress/dist/_include/models/user_simple.html b/docs/.vitepress/dist/_include/models/user_simple.html deleted file mode 100644 index ff9300305..000000000 --- a/docs/.vitepress/dist/_include/models/user_simple.html +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - Laravel Wallet - - - - - - - - - - - - - - - - -
Skip to content

It is necessary to expand the model that will have the wallet. This is done in two stages:

  • Add Wallet interface;
  • Add the HasWallet trait;

Let's get started.

php
use Bavix\Wallet\Traits\HasWallet;
-use Bavix\Wallet\Interfaces\Wallet;
-
-class User extends Model implements Wallet
-{
-    use HasWallet;
-}

The model is prepared to work with a wallet.

- - - - \ No newline at end of file diff --git a/docs/.vitepress/dist/_include/models/user_simple_float.html b/docs/.vitepress/dist/_include/models/user_simple_float.html deleted file mode 100644 index 6cc6d7746..000000000 --- a/docs/.vitepress/dist/_include/models/user_simple_float.html +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - Laravel Wallet - - - - - - - - - - - - - - - - -
Skip to content

It is necessary to expand the model that will have the wallet. This is done in two stages:

  • Add Wallet interface;
  • Add the HasWalletFloat trait;

Let's get started.

php
use Bavix\Wallet\Traits\HasWalletFloat;
-use Bavix\Wallet\Interfaces\Wallet;
-
-class User extends Model implements Wallet
-{
-    use HasWalletFloat;
-}

The model is prepared to work with a wallet.

- - - - \ No newline at end of file diff --git a/docs/.vitepress/dist/assets/app.CWErTm4J.js b/docs/.vitepress/dist/assets/app.CWErTm4J.js deleted file mode 100644 index 73c8b52f9..000000000 --- a/docs/.vitepress/dist/assets/app.CWErTm4J.js +++ /dev/null @@ -1 +0,0 @@ -import{U as o,a4 as p,a5 as u,a6 as l,a7 as c,a8 as f,a9 as d,aa as m,ab as h,ac as g,ad as A,d as P,u as v,y,x as C,ae as b,af as w,ag as E,ah as R}from"./chunks/framework.OdeEVNy0.js";import{t as S}from"./chunks/theme.Cw_-CB8X.js";function i(e){if(e.extends){const a=i(e.extends);return{...a,...e,async enhanceApp(t){a.enhanceApp&&await a.enhanceApp(t),e.enhanceApp&&await e.enhanceApp(t)}}}return e}const s=i(S),_=P({name:"VitePressApp",setup(){const{site:e,lang:a,dir:t}=v();return y(()=>{C(()=>{document.documentElement.lang=a.value,document.documentElement.dir=t.value})}),e.value.router.prefetchLinks&&b(),w(),E(),s.setup&&s.setup(),()=>R(s.Layout)}});async function T(){globalThis.__VITEPRESS__=!0;const e=D(),a=x();a.provide(u,e);const t=l(e.route);return a.provide(c,t),a.component("Content",f),a.component("ClientOnly",d),Object.defineProperties(a.config.globalProperties,{$frontmatter:{get(){return t.frontmatter.value}},$params:{get(){return t.page.value.params}}}),s.enhanceApp&&await s.enhanceApp({app:a,router:e,siteData:m}),{app:a,router:e,data:t}}function x(){return h(_)}function D(){let e=o,a;return g(t=>{let n=A(t),r=null;return n&&(e&&(a=n),(e||a===n)&&(n=n.replace(/\.js$/,".lean.js")),r=import(n)),o&&(e=!1),r},s.NotFound)}o&&T().then(({app:e,router:a,data:t})=>{a.go().then(()=>{p(a.route,t.site),e.mount("#app")})});export{T as createApp}; diff --git a/docs/.vitepress/dist/assets/chunks/@localSearchIndexroot.D1JipNN-.js b/docs/.vitepress/dist/assets/chunks/@localSearchIndexroot.D1JipNN-.js deleted file mode 100644 index b5459eb0a..000000000 --- a/docs/.vitepress/dist/assets/chunks/@localSearchIndexroot.D1JipNN-.js +++ /dev/null @@ -1 +0,0 @@ -const e='{"documentCount":145,"nextId":145,"documentIds":{"0":"/laravel-wallet/_include/composer.html#composer","1":"/laravel-wallet/_include/eager_loading.html#eager-loading","2":"/laravel-wallet/guide/additions/swap.html#laravel-wallet-swap","3":"/laravel-wallet/guide/additions/swap.html#composer","4":"/laravel-wallet/guide/additions/swap.html#user-model","5":"/laravel-wallet/guide/additions/swap.html#simple-example","6":"/laravel-wallet/guide/additions/uuid.html#laravel-wallet-uuid","7":"/laravel-wallet/guide/additions/uuid.html#composer","8":"/laravel-wallet/guide/cqrs/create-wallet.html#asynchronous-wallet-creation","9":"/laravel-wallet/guide/cqrs/create-wallet.html#user-model","10":"/laravel-wallet/guide/cqrs/create-wallet.html#action-handler","11":"/laravel-wallet/guide/cqrs/create-wallet.html#command-handler","12":"/laravel-wallet/guide/db/atomic-service.html#atomic-service","13":"/laravel-wallet/guide/db/race-condition.html#race-condition","14":"/laravel-wallet/guide/db/transaction.html#transaction","15":"/laravel-wallet/guide/events/balance-updated-event.html#tracking-balance-changes","16":"/laravel-wallet/guide/events/customize.html#customizing-events","17":"/laravel-wallet/guide/events/transaction-created-event.html#tracking-the-creation-of-wallet-transactions","18":"/laravel-wallet/guide/events/wallet-created-event.html#tracking-the-creation-of-wallets","19":"/laravel-wallet/guide/fractional/deposit.html#deposit-float","20":"/laravel-wallet/guide/fractional/deposit.html#user-model","21":"/laravel-wallet/guide/fractional/deposit.html#make-a-deposit","22":"/laravel-wallet/guide/fractional/transfer.html#transfer","23":"/laravel-wallet/guide/fractional/transfer.html#user-model","24":"/laravel-wallet/guide/fractional/transfer.html#example-contract","25":"/laravel-wallet/guide/fractional/transfer.html#make-a-transfer","26":"/laravel-wallet/guide/fractional/transfer.html#force-transfer","27":"/laravel-wallet/guide/fractional/withdraw.html#withdraw","28":"/laravel-wallet/guide/fractional/withdraw.html#user-model","29":"/laravel-wallet/guide/fractional/withdraw.html#make-a-withdraw","30":"/laravel-wallet/guide/fractional/withdraw.html#force-withdraw","31":"/laravel-wallet/guide/fractional/withdraw.html#and-what-will-happen-if-the-money-is-not-enough","32":"/laravel-wallet/guide/helpers/formatter.html#formatter","33":"/laravel-wallet/guide/helpers/formatter.html#to-fractional-numbers","34":"/laravel-wallet/guide/helpers/formatter.html#to-whole-numbers","35":"/laravel-wallet/guide/high-performance/batch-transactions.html#batch-transactions","36":"/laravel-wallet/guide/high-performance/batch-transfers.html#batch-transfers","37":"/laravel-wallet/guide/introduction/basic-usage.html#basic-usage","38":"/laravel-wallet/guide/introduction/basic-usage.html#simple-wallet","39":"/laravel-wallet/guide/introduction/basic-usage.html#simple-wallet-transactions","40":"/laravel-wallet/guide/introduction/basic-usage.html#purchases","41":"/laravel-wallet/guide/introduction/basic-usage.html#eager-loading","42":"/laravel-wallet/guide/introduction/basic-usage.html#how-to-work-with-fractional-numbers","43":"/laravel-wallet/guide/introduction/configuration.html#configuration","44":"/laravel-wallet/guide/introduction/configuration.html#environment","45":"/laravel-wallet/guide/introduction/configuration.html#configure-default-wallet","46":"/laravel-wallet/guide/introduction/configuration.html#extend-base-wallet-model","47":"/laravel-wallet/guide/introduction/configuration.html#register-base-wallet-model","48":"/laravel-wallet/guide/introduction/configuration.html#changing-wallet-decimal-places","49":"/laravel-wallet/guide/introduction/#introduction","50":"/laravel-wallet/guide/introduction/#support","51":"/laravel-wallet/guide/introduction/installation.html#installation","52":"/laravel-wallet/guide/introduction/installation.html#composer","53":"/laravel-wallet/guide/introduction/installation.html#customize","54":"/laravel-wallet/guide/introduction/installation.html#run-migrations","55":"/laravel-wallet/guide/introduction/installation.html#configuration","56":"/laravel-wallet/guide/introduction/upgrade.html#upgrade-guide","57":"/laravel-wallet/guide/introduction/upgrade.html#_1-x-x-→-2-x-x","58":"/laravel-wallet/guide/introduction/upgrade.html#_2-1-x-→-2-2-x","59":"/laravel-wallet/guide/introduction/upgrade.html#_2-2-x-→-2-4-x","60":"/laravel-wallet/guide/introduction/upgrade.html#_2-4-x-→-3-0-x","61":"/laravel-wallet/guide/introduction/upgrade.html#_3-0-x-→-3-1-x","62":"/laravel-wallet/guide/introduction/upgrade.html#_3-1-x-→-4-0-x","63":"/laravel-wallet/guide/introduction/upgrade.html#if-you-use-payment-for-goods","64":"/laravel-wallet/guide/introduction/upgrade.html#_4-0-x-→-5-0-x","65":"/laravel-wallet/guide/introduction/upgrade.html#_5-x-x-→-6-0-x","66":"/laravel-wallet/guide/introduction/upgrade.html#_6-x-x-→-6-2-4","67":"/laravel-wallet/guide/introduction/upgrade.html#_6-2-4-→-7-x-x","68":"/laravel-wallet/guide/introduction/upgrade.html#_7-x-x-→-8-0-x","69":"/laravel-wallet/guide/introduction/upgrade.html#_8-0-x-→-8-1-x","70":"/laravel-wallet/guide/introduction/upgrade.html#_8-1-x-→-9-0-x","71":"/laravel-wallet/guide/introduction/upgrade.html#_9-x-x-→-10-0-x","72":"/laravel-wallet/guide/introduction/upgrade.html#_10-x-x-→-11-0-x","73":"/laravel-wallet/guide/multi/new-wallet.html#new-wallet","74":"/laravel-wallet/guide/multi/new-wallet.html#user-model","75":"/laravel-wallet/guide/multi/new-wallet.html#create-a-wallet","76":"/laravel-wallet/guide/multi/new-wallet.html#how-to-get-the-right-wallet","77":"/laravel-wallet/guide/multi/new-wallet.html#default-wallet-multiwallet","78":"/laravel-wallet/guide/multi/transaction-filter.html#transaction-filter","79":"/laravel-wallet/guide/multi/transfer.html#transfer-between-wallets","80":"/laravel-wallet/guide/multi/transfer.html#user-model","81":"/laravel-wallet/guide/multi/transfer.html#make-a-transfer","82":"/laravel-wallet/guide/multi/transfer.html#force-transfer","83":"/laravel-wallet/guide/multi/transfer.html#change-the-meta-and-confirmation","84":"/laravel-wallet/guide/purchases/cart.html#cart","85":"/laravel-wallet/guide/purchases/cart.html#user-model","86":"/laravel-wallet/guide/purchases/cart.html#item-model","87":"/laravel-wallet/guide/purchases/cart.html#fill-the-cart","88":"/laravel-wallet/guide/purchases/commissions.html#commissions","89":"/laravel-wallet/guide/purchases/commissions.html#user-model","90":"/laravel-wallet/guide/purchases/commissions.html#item-model","91":"/laravel-wallet/guide/purchases/commissions.html#tax-process","92":"/laravel-wallet/guide/purchases/commissions.html#minimal-taxing","93":"/laravel-wallet/guide/purchases/commissions.html#successfully","94":"/laravel-wallet/guide/purchases/commissions.html#failed","95":"/laravel-wallet/guide/purchases/gift.html#gift","96":"/laravel-wallet/guide/purchases/gift.html#user-model","97":"/laravel-wallet/guide/purchases/gift.html#item-model","98":"/laravel-wallet/guide/purchases/gift.html#santa-claus-give-gifts","99":"/laravel-wallet/guide/purchases/payment-free.html#payment-free","100":"/laravel-wallet/guide/purchases/payment-free.html#user-model","101":"/laravel-wallet/guide/purchases/payment-free.html#item-model","102":"/laravel-wallet/guide/purchases/payment-free.html#pay-free","103":"/laravel-wallet/guide/purchases/payment.html#payment","104":"/laravel-wallet/guide/purchases/payment.html#user-model","105":"/laravel-wallet/guide/purchases/payment.html#item-model","106":"/laravel-wallet/guide/purchases/payment.html#proceed-to-purchase","107":"/laravel-wallet/guide/purchases/payment.html#safe-pay","108":"/laravel-wallet/guide/purchases/receiving.html#payment-customize-receiving","109":"/laravel-wallet/guide/purchases/receiving.html#user-model","110":"/laravel-wallet/guide/purchases/receiving.html#item-model","111":"/laravel-wallet/guide/purchases/receiving.html#proceed-to-purchase","112":"/laravel-wallet/guide/purchases/refund.html#refund","113":"/laravel-wallet/guide/purchases/refund.html#user-model","114":"/laravel-wallet/guide/purchases/refund.html#item-model","115":"/laravel-wallet/guide/purchases/refund.html#make-a-refund","116":"/laravel-wallet/guide/single/cancel.html#cancel-transaction","117":"/laravel-wallet/guide/single/cancel.html#user-model","118":"/laravel-wallet/guide/single/cancel.html#to-cancel","119":"/laravel-wallet/guide/single/cancel.html#example","120":"/laravel-wallet/guide/single/confirm.html#confirm-transaction","121":"/laravel-wallet/guide/single/confirm.html#user-model","122":"/laravel-wallet/guide/single/confirm.html#to-confirmation","123":"/laravel-wallet/guide/single/confirm.html#example","124":"/laravel-wallet/guide/single/credit-limits.html#credit-limits","125":"/laravel-wallet/guide/single/deposit.html#deposit","126":"/laravel-wallet/guide/single/deposit.html#user-model","127":"/laravel-wallet/guide/single/deposit.html#make-a-deposit","128":"/laravel-wallet/guide/single/exchange.html#exchange","129":"/laravel-wallet/guide/single/exchange.html#service-for-working-with-currency","130":"/laravel-wallet/guide/single/exchange.html#service-registration","131":"/laravel-wallet/guide/single/exchange.html#exchange-process","132":"/laravel-wallet/guide/single/refresh.html#to-refresh-the-balance","133":"/laravel-wallet/guide/single/refresh.html#user-model","134":"/laravel-wallet/guide/single/refresh.html#get-the-current-balance-for-your-wallet","135":"/laravel-wallet/guide/single/transfer.html#transfer","136":"/laravel-wallet/guide/single/transfer.html#user-model","137":"/laravel-wallet/guide/single/transfer.html#example-contract","138":"/laravel-wallet/guide/single/transfer.html#make-a-transfer","139":"/laravel-wallet/guide/single/transfer.html#force-transfer","140":"/laravel-wallet/guide/single/withdraw.html#withdraw","141":"/laravel-wallet/guide/single/withdraw.html#user-model","142":"/laravel-wallet/guide/single/withdraw.html#make-a-withdraw","143":"/laravel-wallet/guide/single/withdraw.html#force-withdraw","144":"/laravel-wallet/guide/single/withdraw.html#and-what-will-happen-if-the-money-is-not-enough"},"fieldIds":{"title":0,"titles":1,"text":2},"fieldLength":{"0":[1,1,29],"1":[2,1,128],"2":[3,1,1],"3":[1,3,20],"4":[2,3,26],"5":[2,3,42],"6":[3,1,57],"7":[1,3,47],"8":[3,1,27],"9":[2,3,22],"10":[2,3,31],"11":[2,3,69],"12":[2,1,148],"13":[2,1,95],"14":[1,1,74],"15":[3,1,72],"16":[2,1,116],"17":[6,1,71],"18":[5,1,71],"19":[2,1,28],"20":[2,2,41],"21":[3,2,35],"22":[1,1,23],"23":[2,1,1],"24":[2,3,21],"25":[3,1,44],"26":[2,1,25],"27":[1,1,31],"28":[2,1,1],"29":[3,1,40],"30":[2,1,27],"31":[11,1,30],"32":[1,1,23],"33":[3,1,13],"34":[3,1,16],"35":[2,1,219],"36":[2,1,163],"37":[2,1,1],"38":[2,2,41],"39":[3,2,38],"40":[1,2,142],"41":[2,2,128],"42":[7,2,54],"43":[1,1,22],"44":[1,1,39],"45":[3,1,14],"46":[4,1,36],"47":[4,5,41],"48":[4,5,26],"49":[1,1,7],"50":[1,1,9],"51":[1,1,1],"52":[1,1,29],"53":[1,1,5],"54":[2,2,13],"55":[1,2,28],"56":[2,1,1],"57":[4,2,6],"58":[4,2,7],"59":[4,2,5],"60":[6,2,47],"61":[5,2,5],"62":[6,2,29],"63":[6,8,27],"64":[5,2,47],"65":[5,2,46],"66":[5,2,12],"67":[6,2,124],"68":[5,2,6],"69":[5,2,48],"70":[7,2,97],"71":[5,2,32],"72":[5,2,79],"73":[2,1,18],"74":[2,2,21],"75":[3,2,30],"76":[7,2,13],"77":[4,2,42],"78":[2,1,84],"79":[3,1,23],"80":[2,3,21],"81":[3,3,48],"82":[2,3,25],"83":[5,3,56],"84":[1,1,28],"85":[2,1,31],"86":[2,1,113],"87":[3,1,63],"88":[1,1,33],"89":[2,1,31],"90":[2,1,64],"91":[2,1,32],"92":[2,1,46],"93":[1,3,33],"94":[1,3,36],"95":[1,1,40],"96":[2,1,31],"97":[2,1,111],"98":[4,1,57],"99":[2,1,17],"100":[2,2,31],"101":[2,2,111],"102":[2,2,29],"103":[1,1,17],"104":[2,1,31],"105":[2,1,111],"106":[3,1,54],"107":[2,1,20],"108":[3,1,48],"109":[2,3,31],"110":[2,3,110],"111":[3,3,47],"112":[1,1,19],"113":[2,1,31],"114":[2,1,111],"115":[3,1,30],"116":[2,1,25],"117":[2,2,33],"118":[2,2,1],"119":[2,4,26],"120":[2,1,32],"121":[2,2,33],"122":[2,2,1],"123":[2,4,36],"124":[2,1,88],"125":[1,1,28],"126":[2,1,41],"127":[3,1,40],"128":[1,1,46],"129":[5,1,60],"130":[2,1,23],"131":[2,1,69],"132":[4,1,33],"133":[2,4,41],"134":[7,4,44],"135":[1,1,23],"136":[2,1,41],"137":[2,3,20],"138":[3,1,42],"139":[2,1,25],"140":[1,1,31],"141":[2,1,41],"142":[3,1,36],"143":[2,1,27],"144":[11,1,30]},"averageFieldLength":[2.717241379310345,1.675862068965517,42.84827586206897],"storedFields":{"0":{"title":"Composer","titles":[]},"1":{"title":"Eager Loading","titles":[]},"2":{"title":"Laravel Wallet Swap","titles":[]},"3":{"title":"Composer","titles":["Laravel Wallet Swap"]},"4":{"title":"User model","titles":["Laravel Wallet Swap"]},"5":{"title":"Simple example","titles":["Laravel Wallet Swap"]},"6":{"title":"Laravel Wallet UUID","titles":[]},"7":{"title":"Composer","titles":["Laravel Wallet UUID"]},"8":{"title":"Asynchronous wallet creation","titles":[]},"9":{"title":"User Model","titles":["Asynchronous wallet creation"]},"10":{"title":"Action Handler","titles":["Asynchronous wallet creation"]},"11":{"title":"Command Handler","titles":["Asynchronous wallet creation"]},"12":{"title":"Atomic Service","titles":[]},"13":{"title":"Race Condition","titles":[]},"14":{"title":"Transaction","titles":[]},"15":{"title":"Tracking balance changes","titles":[]},"16":{"title":"Customizing events","titles":[]},"17":{"title":"Tracking the creation of wallet transactions","titles":[]},"18":{"title":"Tracking the creation of wallets","titles":[]},"19":{"title":"Deposit float","titles":[]},"20":{"title":"User Model","titles":["Deposit float"]},"21":{"title":"Make a Deposit","titles":["Deposit float"]},"22":{"title":"Transfer","titles":[]},"23":{"title":"User Model","titles":["Transfer"]},"24":{"title":"Example contract","titles":["Transfer","User Model"]},"25":{"title":"Make a Transfer","titles":["Transfer"]},"26":{"title":"Force Transfer","titles":["Transfer"]},"27":{"title":"Withdraw","titles":[]},"28":{"title":"User Model","titles":["Withdraw"]},"29":{"title":"Make a Withdraw","titles":["Withdraw"]},"30":{"title":"Force Withdraw","titles":["Withdraw"]},"31":{"title":"And what will happen if the money is not enough?","titles":["Withdraw"]},"32":{"title":"Formatter","titles":[]},"33":{"title":"To fractional numbers","titles":["Formatter"]},"34":{"title":"To whole numbers","titles":["Formatter"]},"35":{"title":"Batch Transactions","titles":[]},"36":{"title":"Batch Transfers","titles":[]},"37":{"title":"Basic Usage","titles":[]},"38":{"title":"Simple Wallet","titles":["Basic Usage"]},"39":{"title":"Simple wallet transactions","titles":["Basic Usage"]},"40":{"title":"Purchases","titles":["Basic Usage"]},"41":{"title":"Eager Loading","titles":["Basic Usage"]},"42":{"title":"How to work with fractional numbers?","titles":["Basic Usage"]},"43":{"title":"Configuration","titles":[]},"44":{"title":"Environment","titles":["Configuration"]},"45":{"title":"Configure default wallet","titles":["Configuration"]},"46":{"title":"Extend base Wallet model","titles":["Configuration"]},"47":{"title":"Register base Wallet model","titles":["Configuration","Extend base Wallet model"]},"48":{"title":"Changing wallet decimal places","titles":["Configuration","Extend base Wallet model"]},"49":{"title":"Introduction","titles":[]},"50":{"title":"Support","titles":["Introduction"]},"51":{"title":"Installation","titles":[]},"52":{"title":"Composer","titles":["Installation"]},"53":{"title":"Customize","titles":["Installation"]},"54":{"title":"Run Migrations","titles":["Installation","Customize"]},"55":{"title":"Configuration","titles":["Installation","Customize"]},"56":{"title":"Upgrade Guide","titles":[]},"57":{"title":"1.x.x → 2.x.x","titles":["Upgrade Guide"]},"58":{"title":"2.1.x → 2.2.x","titles":["Upgrade Guide"]},"59":{"title":"2.2.x → 2.4.x","titles":["Upgrade Guide"]},"60":{"title":"2.4.x → 3.0.x","titles":["Upgrade Guide"]},"61":{"title":"3.0.x → 3.1.x","titles":["Upgrade Guide"]},"62":{"title":"3.1.x → 4.0.x","titles":["Upgrade Guide"]},"63":{"title":"If you use payment for goods","titles":["Upgrade Guide","3.1.x → 4.0.x"]},"64":{"title":"4.0.x → 5.0.x","titles":["Upgrade Guide"]},"65":{"title":"5.x.x → 6.0.x","titles":["Upgrade Guide"]},"66":{"title":"6.x.x → 6.2.4","titles":["Upgrade Guide"]},"67":{"title":"6.2.4 → 7.x.x","titles":["Upgrade Guide"]},"68":{"title":"7.x.x → 8.0.x","titles":["Upgrade Guide"]},"69":{"title":"8.0.x → 8.1.x","titles":["Upgrade Guide"]},"70":{"title":"8.1.x+ → 9.0.x","titles":["Upgrade Guide"]},"71":{"title":"9.x.x → 10.0.x","titles":["Upgrade Guide"]},"72":{"title":"10.x.x → 11.0.x","titles":["Upgrade Guide"]},"73":{"title":"New Wallet","titles":[]},"74":{"title":"User Model","titles":["New Wallet"]},"75":{"title":"Create a wallet","titles":["New Wallet"]},"76":{"title":"How to get the right wallet?","titles":["New Wallet"]},"77":{"title":"Default Wallet + MultiWallet","titles":["New Wallet"]},"78":{"title":"Transaction Filter","titles":[]},"79":{"title":"Transfer between wallets","titles":[]},"80":{"title":"User Model","titles":["Transfer between wallets"]},"81":{"title":"Make a Transfer","titles":["Transfer between wallets"]},"82":{"title":"Force Transfer","titles":["Transfer between wallets"]},"83":{"title":"Change the meta and confirmation","titles":["Transfer between wallets"]},"84":{"title":"Cart","titles":[]},"85":{"title":"User Model","titles":["Cart"]},"86":{"title":"Item Model","titles":["Cart"]},"87":{"title":"Fill the cart","titles":["Cart"]},"88":{"title":"Commissions","titles":[]},"89":{"title":"User Model","titles":["Commissions"]},"90":{"title":"Item Model","titles":["Commissions"]},"91":{"title":"Tax process","titles":["Commissions"]},"92":{"title":"Minimal Taxing","titles":["Commissions"]},"93":{"title":"Successfully","titles":["Commissions","Minimal Taxing"]},"94":{"title":"Failed","titles":["Commissions","Minimal Taxing"]},"95":{"title":"Gift","titles":[]},"96":{"title":"User Model","titles":["Gift"]},"97":{"title":"Item Model","titles":["Gift"]},"98":{"title":"Santa Claus, give gifts","titles":["Gift"]},"99":{"title":"Payment Free","titles":[]},"100":{"title":"User Model","titles":["Payment Free"]},"101":{"title":"Item Model","titles":["Payment Free"]},"102":{"title":"Pay Free","titles":["Payment Free"]},"103":{"title":"Payment","titles":[]},"104":{"title":"User Model","titles":["Payment"]},"105":{"title":"Item Model","titles":["Payment"]},"106":{"title":"Proceed to purchase","titles":["Payment"]},"107":{"title":"Safe Pay","titles":["Payment"]},"108":{"title":"Payment. Customize receiving","titles":[]},"109":{"title":"User Model","titles":["Payment. Customize receiving"]},"110":{"title":"Item Model","titles":["Payment. Customize receiving"]},"111":{"title":"Proceed to purchase","titles":["Payment. Customize receiving"]},"112":{"title":"Refund","titles":[]},"113":{"title":"User Model","titles":["Refund"]},"114":{"title":"Item Model","titles":["Refund"]},"115":{"title":"Make a refund","titles":["Refund"]},"116":{"title":"Cancel Transaction","titles":[]},"117":{"title":"User Model","titles":["Cancel Transaction"]},"118":{"title":"To cancel","titles":["Cancel Transaction"]},"119":{"title":"Example:","titles":["Cancel Transaction","To cancel"]},"120":{"title":"Confirm Transaction","titles":[]},"121":{"title":"User Model","titles":["Confirm Transaction"]},"122":{"title":"To confirmation","titles":["Confirm Transaction"]},"123":{"title":"Example:","titles":["Confirm Transaction","To confirmation"]},"124":{"title":"Credit Limits","titles":[]},"125":{"title":"Deposit","titles":[]},"126":{"title":"User Model","titles":["Deposit"]},"127":{"title":"Make a Deposit","titles":["Deposit"]},"128":{"title":"Exchange","titles":[]},"129":{"title":"Service for working with currency","titles":["Exchange"]},"130":{"title":"Service Registration","titles":["Exchange"]},"131":{"title":"Exchange process","titles":["Exchange"]},"132":{"title":"To refresh the balance","titles":[]},"133":{"title":"User Model","titles":["To refresh the balance"]},"134":{"title":"Get the current balance for your wallet","titles":["To refresh the balance"]},"135":{"title":"Transfer","titles":[]},"136":{"title":"User Model","titles":["Transfer"]},"137":{"title":"Example contract","titles":["Transfer","User Model"]},"138":{"title":"Make a Transfer","titles":["Transfer"]},"139":{"title":"Force Transfer","titles":["Transfer"]},"140":{"title":"Withdraw","titles":[]},"141":{"title":"User Model","titles":["Withdraw"]},"142":{"title":"Make a Withdraw","titles":["Withdraw"]},"143":{"title":"Force Withdraw","titles":["Withdraw"]},"144":{"title":"And what will happen if the money is not enough?","titles":["Withdraw"]}},"dirtCount":0,"index":[["это",{"2":{"131":1}}],["🔑",{"2":{"67":1}}],["\\t",{"2":{"65":9}}],["→",{"0":{"57":1,"58":1,"59":1,"60":1,"61":1,"62":1,"64":1,"65":1,"66":1,"67":1,"68":1,"69":1,"70":1,"71":1,"72":1},"1":{"63":1}}],["8",{"0":{"68":1,"69":2,"70":1}}],["81f1",{"2":{"36":2}}],["8715",{"2":{"36":2}}],["62",{"2":{"131":1}}],["622",{"2":{"5":1}}],["61",{"2":{"129":1}}],["67",{"2":{"129":1}}],["6",{"0":{"65":1,"66":2,"67":1},"2":{"65":1}}],["64",{"2":{"44":1}}],["6e87dbf2",{"2":{"35":2}}],["kopecks",{"2":{"131":2}}],["kernel",{"2":{"67":1}}],["key",{"2":{"67":1}}],["keep",{"2":{"35":1,"36":1}}],["known",{"2":{"22":1,"79":1,"135":1}}],["know",{"2":{"11":1,"14":1,"36":1,"106":1,"112":1}}],["knows",{"2":{"11":1}}],["x+",{"0":{"70":1}}],["x",{"0":{"57":4,"58":2,"59":2,"60":2,"61":2,"62":2,"64":2,"65":3,"66":2,"67":2,"68":3,"69":2,"70":1,"71":3,"72":3},"1":{"63":2},"2":{"35":1,"36":1,"40":1,"63":2,"64":6,"65":2,"67":1,"86":1,"97":1,"101":1,"105":1,"110":1,"114":1}}],["x3c",{"2":{"35":4}}],["42",{"2":{"134":1}}],["47",{"2":{"131":1}}],["48455",{"2":{"72":1}}],["48c2",{"2":{"35":2}}],["4",{"0":{"59":1,"60":1,"62":1,"64":1,"66":1,"67":1},"1":{"63":1},"2":{"62":1,"63":1,"64":3}}],["43d7",{"2":{"36":2}}],["419d",{"2":{"36":2}}],["464f",{"2":{"36":2}}],["4d03",{"2":{"35":2}}],["45",{"2":{"33":1,"34":1}}],["400",{"2":{"26":1,"82":1,"139":1}}],["511",{"2":{"137":1}}],["54",{"2":{"134":1}}],["5f7820d1",{"2":{"35":2}}],["500",{"2":{"26":2,"82":2,"83":2,"87":2,"124":3,"139":2}}],["5",{"0":{"64":1,"65":1},"2":{"24":1,"25":2,"35":1,"64":3,"65":1,"78":4,"81":2,"92":2,"93":1,"94":1,"134":1,"138":2}}],["zero",{"2":{"21":1,"31":2,"124":1,"127":1,"144":2}}],["38",{"2":{"131":1}}],["3805730b",{"2":{"36":2}}],["37",{"2":{"42":3}}],["3993",{"2":{"36":2}}],["39a1",{"2":{"36":2}}],["345",{"2":{"33":1,"34":1}}],["3",{"0":{"60":1,"61":2,"62":1},"1":{"63":1},"2":{"18":1,"33":1,"34":1,"63":1,"78":2,"87":1,"90":1,"91":1,"92":2}}],["7+",{"2":{"62":1}}],["7a725c72e976",{"2":{"36":2}}],["71cecafe",{"2":{"36":2}}],["7be7",{"2":{"35":2}}],["7",{"0":{"67":1,"68":1},"2":{"15":1,"18":1,"62":1,"67":3}}],["yet",{"2":{"13":1}}],["yes",{"2":{"12":1,"77":1,"78":1}}],["you",{"0":{"63":1},"2":{"0":1,"1":3,"6":2,"7":3,"11":4,"12":4,"13":7,"14":2,"15":2,"16":2,"17":1,"18":1,"19":2,"27":2,"29":1,"32":1,"35":3,"36":6,"40":5,"41":3,"42":1,"43":1,"46":1,"48":1,"52":1,"55":2,"62":3,"63":1,"64":1,"65":1,"66":1,"67":7,"70":1,"71":6,"72":4,"73":1,"78":2,"84":1,"86":4,"97":4,"101":4,"105":4,"106":1,"108":1,"110":3,"112":1,"114":4,"116":2,"117":2,"120":2,"121":2,"123":1,"124":4,"125":2,"128":2,"130":1,"131":3,"132":2,"140":2,"142":1}}],["yourself",{"2":{"36":1,"67":1,"128":1}}],["your",{"0":{"134":1},"2":{"0":2,"3":1,"7":2,"12":1,"16":1,"27":1,"40":1,"43":1,"52":2,"55":1,"60":1,"63":3,"64":5,"65":3,"67":2,"85":1,"89":1,"96":1,"100":1,"104":1,"109":1,"113":1,"117":1,"121":1,"128":1,"131":1,"140":1}}],["var",{"2":{"40":4,"78":1,"83":1,"124":4}}],["vacuum",{"2":{"13":1}}],["virtual",{"2":{"27":1,"49":1,"140":1}}],["via",{"2":{"15":1,"17":1,"18":1,"67":1,"128":1}}],["void",{"2":{"11":1,"15":1,"16":1,"17":1,"18":1}}],["very",{"2":{"14":1,"67":1}}],["versions",{"2":{"62":1}}],["version",{"2":{"6":1,"15":1,"17":1,"18":1,"35":3,"36":3,"40":1,"62":1,"66":1,"67":1,"70":1,"72":1,"86":1,"97":1,"101":1,"105":1,"110":1,"114":1}}],["vendor",{"2":{"13":1,"54":1,"55":1,"67":1}}],["ve",{"2":{"0":1,"52":1}}],["json",{"2":{"10":1}}],["just",{"2":{"0":1,"1":1,"3":1,"7":1,"13":1,"41":1,"52":1}}],["globally",{"2":{"67":3}}],["guide",{"0":{"56":1},"1":{"57":1,"58":1,"59":1,"60":1,"61":1,"62":1,"63":1,"64":1,"65":1,"66":1,"67":1,"68":1,"69":1,"70":1,"71":1,"72":1}}],["gives",{"2":{"98":1}}],["give",{"0":{"98":1},"2":{"98":1}}],["given",{"2":{"35":1,"36":1,"95":1}}],["gifts",{"0":{"98":1},"2":{"95":2}}],["gift",{"0":{"95":1},"1":{"96":1,"97":1,"98":1},"2":{"95":1,"98":1}}],["github",{"2":{"7":1,"50":1,"72":1}}],["greater",{"2":{"31":1,"144":1}}],["greatly",{"2":{"6":1}}],["goods",{"0":{"63":1},"2":{"64":1,"70":1,"84":2,"88":1,"91":1,"93":1,"94":1,"99":1,"102":1,"103":1,"106":1,"108":1,"111":1,"115":1}}],["good",{"2":{"35":1,"84":1}}],["go",{"2":{"16":1,"65":1,"70":1}}],["going",{"2":{"12":1}}],["generation",{"2":{"36":1}}],["generate",{"2":{"35":1,"36":1}}],["generated",{"2":{"11":1}}],["generates",{"2":{"8":1,"12":1}}],["getavailablebalanceattribute",{"2":{"69":1}}],["getavailablebalance",{"2":{"69":1}}],["getamountproduct",{"2":{"40":2,"63":3,"64":2,"86":2,"90":1,"92":1,"97":2,"101":2,"105":2,"110":2,"114":2}}],["getminimalfee",{"2":{"64":2,"92":1}}],["getmetaproduct",{"2":{"40":2,"86":2,"90":1,"92":1,"97":2,"101":2,"105":2,"110":2,"114":2}}],["getfeepercent",{"2":{"64":2,"90":1,"92":1}}],["getuniqueid",{"2":{"60":2}}],["getupdatedat",{"2":{"16":1}}],["getting",{"2":{"35":1}}],["getbalance",{"2":{"16":1}}],["getwalletuuid",{"2":{"16":1}}],["getwalletid",{"2":{"16":1}}],["get",{"0":{"76":1,"134":1},"2":{"11":1,"14":1,"20":1,"31":1,"38":1,"42":1,"77":1,"78":1,"124":1,"126":1,"131":1,"133":1,"136":1,"141":1,"144":1}}],["99",{"2":{"131":1}}],["9938",{"2":{"131":1}}],["9e00",{"2":{"36":2}}],["9414",{"2":{"35":2}}],["90",{"2":{"29":1,"30":1,"142":2}}],["9000",{"2":{"29":2}}],["95",{"2":{"25":1,"81":1,"138":1}}],["9",{"0":{"70":1,"71":1},"2":{"6":1,"17":1,"39":1,"40":1,"86":1,"97":1,"101":1,"105":1,"110":1,"114":1}}],["03",{"2":{"90":1,"92":1}}],["0b7cc3f1ffc2",{"2":{"36":2}}],["05d0c44da9a1",{"2":{"35":2}}],["000",{"2":{"83":2}}],["00",{"2":{"25":1,"29":2,"30":2,"42":1,"75":1,"76":1}}],["0",{"0":{"60":1,"61":1,"62":1,"64":2,"65":1,"68":1,"69":1,"70":1,"71":1,"72":1},"1":{"63":1},"2":{"5":1,"6":1,"21":3,"25":1,"26":1,"39":1,"40":1,"62":1,"67":3,"77":1,"78":1,"81":1,"82":1,"83":1,"87":2,"90":1,"91":1,"92":1,"93":1,"98":3,"102":2,"106":2,"111":1,"115":2,"119":2,"123":2,"124":1,"127":2,"131":2,"138":1,"139":1}}],["$1",{"2":{"131":1}}],["$100",{"2":{"111":1}}],["$secondwallet",{"2":{"83":3}}],["$query",{"2":{"78":1}}],["$quantity",{"2":{"40":1,"60":2,"86":1,"90":1,"97":1,"101":1,"105":1,"110":1,"114":1}}],["$product",{"2":{"69":4,"87":3,"124":3}}],["$products",{"2":{"69":2,"87":3}}],["$carttotal",{"2":{"87":2}}],["$cart",{"2":{"69":5,"87":7,"111":1}}],["$customer",{"2":{"40":4,"60":2,"63":2,"64":2,"86":4,"90":3,"92":1,"97":4,"101":4,"105":4,"110":3,"114":4,"124":3}}],["$bcloaded",{"2":{"65":1}}],["$mathservice",{"2":{"129":3}}],["$mathclass",{"2":{"65":5}}],["$mywallet",{"2":{"76":2}}],["$message",{"2":{"10":2,"11":4}}],["$tocurrency",{"2":{"129":2}}],["$to",{"2":{"129":3}}],["$transfer",{"2":{"83":5}}],["$transaction",{"2":{"42":1,"119":4,"123":4}}],["$this",{"2":{"16":5,"40":5,"60":1,"63":2,"86":7,"90":3,"92":2,"97":5,"101":5,"105":5,"110":4,"114":5,"129":7}}],["$item",{"2":{"40":6,"91":2,"93":2,"94":2,"98":5,"102":5,"106":4,"107":1,"111":3,"115":4}}],["$force",{"2":{"40":1,"60":2,"86":1,"90":1,"97":1,"101":1,"105":1,"110":1,"114":1}}],["$fromcurrency",{"2":{"129":2}}],["$from",{"2":{"36":6,"129":3}}],["$firstwallet",{"2":{"81":3,"82":1,"83":3}}],["$first",{"2":{"25":2,"26":1,"81":2,"98":4,"138":2,"139":1}}],["$objects",{"2":{"35":4}}],["$amountflaot",{"2":{"36":1}}],["$amountfloat",{"2":{"35":2}}],["$amount",{"2":{"35":8,"36":4,"129":3}}],["$list",{"2":{"87":2}}],["$listen",{"2":{"15":1,"16":1,"17":1,"18":1}}],["$lastwallet",{"2":{"81":4,"82":3}}],["$last",{"2":{"25":5,"26":3,"81":3,"98":6,"138":5,"139":3}}],["$eur",{"2":{"78":4}}],["$event",{"2":{"15":1,"16":1,"17":1,"18":1}}],["$entity",{"2":{"12":2}}],["$wallets",{"2":{"35":8,"36":3}}],["$wallet2",{"2":{"12":3}}],["$wallet1",{"2":{"12":3}}],["$wallet",{"2":{"12":3,"14":1,"16":3,"35":12,"36":6,"64":4,"75":4,"77":2,"78":2,"124":8}}],["$updatedat",{"2":{"16":1}}],["$uuid",{"2":{"10":2}}],["$usd",{"2":{"5":4,"78":4,"131":5}}],["$user2",{"2":{"24":1,"137":1}}],["$user1",{"2":{"24":1,"137":1}}],["$user",{"2":{"1":6,"5":4,"10":2,"11":2,"21":5,"29":5,"30":2,"39":7,"40":7,"41":6,"42":5,"47":1,"75":2,"76":1,"77":1,"78":9,"87":10,"91":3,"93":3,"94":3,"102":4,"106":5,"107":1,"111":4,"115":4,"119":4,"123":4,"124":2,"127":3,"131":2,"134":3,"142":3,"143":4}}],["$users",{"2":{"1":2,"41":2}}],["$name",{"2":{"10":2}}],["$rate",{"2":{"129":2}}],["$rates",{"2":{"129":3}}],["$receiving",{"2":{"111":3}}],["$request",{"2":{"10":3}}],["$rub",{"2":{"5":4,"131":5}}],["due",{"2":{"131":1}}],["dump",{"2":{"40":4}}],["da10",{"2":{"36":2}}],["datetimeimmutable",{"2":{"16":3}}],["database",{"2":{"11":1,"36":1,"40":1,"86":1,"97":1,"101":1,"105":1,"110":1,"114":1,"129":1}}],["data",{"2":{"1":2,"15":1,"17":1,"18":1,"41":2,"78":1,"129":1}}],["dto",{"2":{"36":6,"69":1,"83":2}}],["db",{"2":{"14":3}}],["driver",{"2":{"13":2,"44":2}}],["dollar",{"2":{"111":1}}],["dollars",{"2":{"5":1,"131":2}}],["don",{"2":{"72":2}}],["done",{"2":{"15":1,"16":1,"17":1,"18":1,"20":1,"38":1,"68":1,"126":1,"130":1,"133":1,"136":1,"141":1}}],["down",{"2":{"67":1}}],["does",{"2":{"36":2,"106":1,"123":1,"124":1}}],["documentation",{"2":{"15":1,"17":1,"18":1}}],["doingmagic",{"2":{"14":1}}],["do",{"2":{"13":1,"15":1,"35":2,"40":2,"67":1,"86":1,"97":1,"101":1,"105":1,"106":1,"110":1,"114":1}}],["debts",{"2":{"124":1}}],["debited",{"2":{"88":1,"116":1}}],["debiting",{"2":{"12":2,"120":1}}],["debit",{"2":{"12":1}}],["designed",{"2":{"108":1}}],["describing",{"2":{"67":1}}],["description",{"2":{"39":1,"40":2,"44":1,"86":2,"90":1,"92":1,"97":2,"101":2,"105":2,"110":2,"114":2}}],["desc",{"2":{"25":1,"81":1,"98":1,"138":1}}],["developers",{"2":{"78":1}}],["delete",{"2":{"72":2}}],["deleted",{"2":{"72":1}}],["details",{"2":{"72":1}}],["decimal",{"0":{"48":1},"2":{"48":2}}],["demands",{"2":{"43":1}}],["default",{"0":{"45":1,"77":1},"2":{"43":1,"44":7,"45":2,"47":3,"48":1,"77":2,"78":3,"124":2}}],["definitely",{"2":{"14":1}}],["depend",{"2":{"35":1}}],["depositing",{"2":{"108":1}}],["deposit",{"0":{"19":1,"21":1,"125":1,"127":1},"1":{"20":1,"21":1,"126":1,"127":1},"2":{"19":2,"22":1,"24":2,"36":6,"39":1,"79":1,"83":1,"125":2,"135":1,"137":2}}],["dealing",{"2":{"13":1}}],["deduct",{"2":{"12":1}}],["different",{"2":{"128":1}}],["difference",{"2":{"12":1}}],["displays",{"2":{"78":1}}],["dispatch",{"2":{"10":1}}],["divided",{"2":{"70":1}}],["division",{"2":{"8":1}}],["directly",{"2":{"70":1}}],["did",{"2":{"67":1}}],["bx",{"2":{"70":1}}],["brick",{"2":{"65":1}}],["brickmath",{"2":{"65":2}}],["break",{"2":{"65":2}}],["broadcaston",{"2":{"16":1}}],["broadcasting",{"2":{"16":1}}],["broadcast",{"2":{"16":1}}],["bigdecimal",{"2":{"65":1}}],["bcmath",{"2":{"65":2}}],["by",{"2":{"36":1,"42":1,"43":1,"46":1,"64":1,"95":1,"116":1,"124":1}}],["b688",{"2":{"35":2}}],["blue",{"2":{"35":1}}],["blocking",{"2":{"14":2}}],["blocked",{"2":{"12":1,"14":2}}],["blocks",{"2":{"12":1}}],["block",{"2":{"12":2}}],["bought",{"2":{"95":1}}],["bookkeeperserviceinterface",{"2":{"71":1}}],["bool",{"2":{"40":7,"60":4,"75":2,"86":2,"87":1,"90":2,"97":2,"98":2,"101":2,"102":2,"105":2,"106":2,"110":2,"114":2,"115":4,"119":3,"123":3}}],["bonus",{"2":{"35":1}}],["both",{"2":{"12":2}}],["bugs",{"2":{"67":1}}],["built",{"2":{"39":1}}],["buys",{"2":{"98":1}}],["buyer",{"2":{"88":1,"108":1}}],["buying",{"2":{"84":1}}],["buy",{"2":{"19":1,"27":2,"40":1,"84":2,"91":2,"93":2,"94":2,"106":2,"107":1,"111":2,"112":1,"125":1,"140":2}}],["but",{"2":{"12":1,"13":2,"16":1,"31":1,"35":3,"70":1,"73":1,"83":1,"84":1,"108":1,"112":2,"144":1}}],["beginning",{"2":{"67":1}}],["begintransaction",{"2":{"14":1}}],["been",{"2":{"67":1,"70":1,"72":4}}],["became",{"2":{"35":1,"36":1}}],["because",{"2":{"11":1,"36":2}}],["better",{"2":{"35":1,"67":1}}],["between",{"0":{"79":1},"1":{"80":1,"81":1,"82":1,"83":1},"2":{"22":1,"36":1,"70":2,"79":1,"135":1}}],["before",{"2":{"12":1,"35":1,"36":1}}],["be",{"2":{"1":2,"8":1,"11":1,"12":2,"25":1,"26":1,"31":1,"35":3,"40":2,"41":2,"47":1,"48":1,"67":3,"68":1,"70":4,"72":1,"73":1,"78":1,"81":1,"82":1,"86":2,"88":1,"90":1,"97":2,"101":2,"105":2,"110":1,"114":2,"130":1,"132":1,"138":1,"139":1,"144":1}}],["bad",{"2":{"70":1}}],["batch",{"0":{"35":1,"36":1},"2":{"35":2}}],["balanceisempty",{"2":{"31":1,"144":1}}],["balanceupdatedeventassemblerinterface",{"2":{"16":2}}],["balanceupdatedeventinterface",{"2":{"15":4,"16":7}}],["balance",{"0":{"15":1,"132":1,"134":1},"1":{"133":1,"134":1},"2":{"13":1,"15":1,"16":1,"17":1,"18":1,"21":3,"25":2,"26":1,"29":3,"31":2,"32":1,"35":2,"36":1,"44":2,"57":1,"69":1,"82":1,"83":1,"87":1,"91":1,"93":1,"94":1,"98":1,"102":1,"106":1,"111":1,"115":2,"127":4,"132":2,"134":2,"138":2,"139":1,"142":3,"144":2}}],["back",{"2":{"12":1,"131":1}}],["backend",{"2":{"11":1}}],["basket",{"2":{"67":1,"84":1}}],["base",{"0":{"46":1,"47":1},"1":{"47":1,"48":1},"2":{"46":1,"47":1,"48":1,"67":1}}],["based",{"2":{"8":1}}],["basic",{"0":{"37":1},"1":{"38":1,"39":1,"40":1,"41":1,"42":1}}],["bashphp",{"2":{"13":1,"54":1,"55":1,"67":1}}],["bashcomposer",{"2":{"0":1,"3":1,"7":1,"52":1}}],["bavix",{"2":{"0":1,"1":2,"3":1,"4":3,"7":2,"9":3,"12":2,"15":2,"16":7,"17":2,"18":2,"20":2,"31":2,"35":8,"36":10,"38":2,"40":8,"41":2,"42":3,"46":2,"52":1,"60":8,"69":2,"70":2,"72":1,"74":2,"77":3,"78":1,"80":2,"83":3,"85":2,"86":6,"87":1,"89":2,"90":4,"92":4,"96":2,"97":6,"100":2,"101":6,"104":2,"105":6,"109":2,"110":8,"113":2,"114":6,"117":4,"121":4,"124":4,"126":2,"129":2,"133":2,"136":2,"141":2,"144":2}}],["212",{"2":{"134":1}}],["27",{"2":{"87":2,"134":2}}],["24x",{"2":{"67":1}}],["24h",{"2":{"44":1}}],["237",{"2":{"42":1}}],["202",{"2":{"10":1}}],["200",{"2":{"5":1,"39":1,"78":1}}],["2",{"0":{"57":1,"58":3,"59":3,"60":1,"66":1,"67":1},"2":{"1":1,"15":1,"33":1,"34":1,"41":1,"42":1}}],["26",{"2":{"1":1,"41":1}}],["25",{"2":{"1":2,"41":2}}],["owner",{"2":{"78":2}}],["overridden",{"2":{"72":1}}],["override",{"2":{"40":1,"86":1,"97":1,"101":1,"105":1,"110":1,"114":1}}],["obsolete",{"2":{"72":1}}],["objects",{"2":{"69":2,"87":1}}],["older",{"2":{"62":1}}],["old",{"2":{"60":2,"69":2,"70":1}}],["out",{"2":{"35":1}}],["our",{"2":{"16":1,"22":1,"79":1,"135":1}}],["other",{"2":{"35":2}}],["or",{"2":{"27":1,"55":1,"69":1,"90":1,"92":1,"116":1,"120":1,"128":1,"140":1}}],["orderby",{"2":{"25":1,"81":1,"98":1,"138":1}}],["original",{"2":{"1":1,"41":1}}],["option",{"2":{"24":1,"36":4,"83":2,"137":1}}],["optimize",{"2":{"12":1,"36":1}}],["opportunity",{"2":{"12":1,"35":1}}],["operations",{"2":{"12":1,"14":1,"22":1,"35":1,"79":1,"124":1,"132":1,"135":1}}],["operation",{"2":{"1":2,"12":4,"35":1,"41":2,"123":1}}],["online",{"2":{"67":1}}],["only",{"2":{"1":1,"6":1,"17":1,"18":1,"41":1,"78":1,"117":1,"121":1,"124":1}}],["once",{"2":{"35":1,"40":1,"84":1,"86":1,"90":1,"97":1,"101":1,"105":1,"114":1}}],["one",{"2":{"5":1,"11":1,"16":1,"22":1,"40":1,"69":1,"70":1,"78":1,"79":1,"84":1,"86":1,"97":1,"98":1,"101":1,"105":1,"110":1,"114":1,"135":1}}],["on",{"2":{"1":1,"8":1,"11":2,"12":3,"27":1,"35":2,"36":1,"39":1,"41":1,"42":1,"50":1,"63":2,"64":4,"65":2,"67":1,"124":1,"127":1,"140":1}}],["offers",{"2":{"13":1}}],["often",{"2":{"6":1,"78":1}}],["of",{"0":{"17":1,"18":1},"2":{"1":2,"6":1,"8":1,"11":1,"12":2,"13":5,"14":3,"15":1,"16":2,"17":2,"18":2,"19":4,"35":6,"36":4,"39":2,"40":7,"41":2,"43":1,"45":1,"62":1,"63":1,"67":2,"70":3,"73":1,"78":1,"83":2,"84":2,"86":7,"88":1,"90":1,"92":1,"95":1,"97":7,"99":1,"101":7,"103":1,"105":7,"108":1,"110":7,"114":7,"115":1,"116":1,"120":1,"124":2,"125":4,"128":1,"132":1}}],[">div",{"2":{"129":1}}],[">deposit",{"2":{"35":1,"39":1,"75":1,"78":4,"81":1,"83":2,"87":2,"119":1,"123":1,"127":1,"131":1}}],[">depositfloat",{"2":{"21":1,"42":1}}],[">rates",{"2":{"129":4}}],[">refreshbalance",{"2":{"134":1}}],[">refund",{"2":{"40":1,"115":1}}],[">resetconfirm",{"2":{"119":1}}],[">mul",{"2":{"129":1}}],[">mathservice",{"2":{"129":3}}],[">meta",{"2":{"83":2,"124":1}}],[">gift",{"2":{"98":1}}],[">getamountproduct",{"2":{"91":1,"93":1,"94":1,"98":1,"102":1,"106":1,"111":1,"124":1}}],[">getattributes",{"2":{"16":1}}],[">gettotal",{"2":{"87":1}}],[">getkey",{"2":{"16":1,"25":2,"60":1,"81":2,"98":2,"138":2}}],[">getuser",{"2":{"11":1}}],[">get",{"2":{"10":2,"87":1}}],[">getwalletname",{"2":{"11":1}}],[">getwalletuuid",{"2":{"11":1}}],[">getwallet",{"2":{"5":2,"76":1}}],[">haswallet",{"2":{"75":2}}],[">helloworld",{"2":{"47":1}}],[">save",{"2":{"124":1}}],[">safepay",{"2":{"40":1,"94":1,"107":1}}],[">slug",{"2":{"87":1}}],[">setmeta",{"2":{"69":1}}],[">price",{"2":{"63":2,"86":2}}],[">payfree",{"2":{"102":1}}],[">paycart",{"2":{"87":1,"111":1}}],[">pay",{"2":{"40":1,"91":1,"93":1,"106":2,"124":1}}],[">paid",{"2":{"40":3,"86":1,"90":1,"97":1,"98":1,"101":1,"102":1,"105":1,"106":1,"114":1,"115":1}}],[">id",{"2":{"40":2,"86":2,"90":1,"92":1,"97":2,"101":2,"105":2,"110":2,"114":2,"134":1}}],[">intvalue",{"2":{"34":2}}],[">increasesales",{"2":{"12":1}}],[">transfer",{"2":{"81":1,"83":1,"137":1,"138":1}}],[">transferfloat",{"2":{"24":1,"25":1}}],[">transactions",{"2":{"78":5}}],[">title",{"2":{"40":2,"86":2,"90":1,"92":1,"97":2,"101":2,"105":2,"110":2,"114":2}}],[">confirm",{"2":{"123":1}}],[">confirmed",{"2":{"83":2,"119":2,"123":2}}],[">count",{"2":{"78":9}}],[">checkpotential",{"2":{"35":1}}],[">createwallet",{"2":{"5":2,"11":1,"75":1,"78":2,"81":2,"111":1,"124":1,"128":1,"131":2}}],[">additem",{"2":{"69":2}}],[">additems",{"2":{"69":1}}],[">amountfloat",{"2":{"42":1}}],[">amount",{"2":{"42":1}}],[">apply",{"2":{"35":2,"36":1}}],[">all",{"2":{"1":1,"41":1}}],[">floatvalue",{"2":{"33":2}}],[">forcewithdraw",{"2":{"39":1,"143":1}}],[">forcewithdrawfloat",{"2":{"30":1}}],[">forcetransfer",{"2":{"36":1,"82":1,"139":1}}],[">forcetransferfloat",{"2":{"26":1}}],[">first",{"2":{"25":1,"81":1,"98":1,"138":1}}],[">updatedat",{"2":{"16":1}}],[">uuid",{"2":{"16":1}}],[">wherein",{"2":{"87":1}}],[">withmeta",{"2":{"69":1}}],[">withitem",{"2":{"69":2,"87":2,"111":1}}],[">withitems",{"2":{"69":1}}],[">withdrawfloat",{"2":{"29":1}}],[">withdraw",{"2":{"12":3,"39":1,"78":1,"83":2,"142":1}}],[">wallettransactions",{"2":{"78":5}}],[">wallet",{"2":{"1":2,"16":4,"41":2,"47":1,"77":1,"78":4,"124":1,"134":1}}],[">blocks",{"2":{"12":1,"35":2}}],[">block",{"2":{"12":1,"36":1}}],[">balancefloat",{"2":{"42":2,"87":3}}],[">balancefloatnum",{"2":{"21":2,"25":4,"26":4,"29":2,"30":2,"75":1,"76":1,"77":1}}],[">balanceint",{"2":{"14":1,"16":1,"21":2,"29":2,"83":4,"87":2,"111":1,"124":2,"127":2,"142":2,"143":2}}],[">balance",{"2":{"1":4,"5":4,"21":2,"29":2,"39":4,"40":2,"41":4,"42":2,"75":1,"76":1,"77":1,"81":4,"82":4,"87":1,"91":2,"93":2,"94":2,"98":6,"102":4,"106":3,"111":2,"115":4,"119":3,"123":3,"127":2,"131":5,"134":3,"138":4,"139":4,"142":2,"143":2}}],[">exchange",{"2":{"5":1,"131":2}}],["==",{"2":{"25":1,"81":1,"98":1,"138":1}}],["=>",{"2":{"5":8,"11":2,"13":5,"15":1,"16":3,"17":1,"18":1,"24":3,"35":2,"36":3,"39":1,"40":4,"45":4,"47":8,"48":3,"65":2,"69":2,"75":2,"78":2,"81":2,"83":4,"86":4,"87":2,"90":2,"92":2,"97":4,"101":4,"105":4,"110":4,"111":3,"114":4,"124":3,"128":3,"129":4,"130":2,"131":6,"137":3}}],["=",{"2":{"1":2,"5":4,"10":3,"11":1,"15":1,"16":1,"17":1,"18":1,"21":1,"24":1,"25":2,"29":1,"39":1,"40":4,"41":2,"42":1,"60":3,"65":4,"69":3,"75":2,"76":1,"77":1,"78":3,"81":4,"83":1,"86":2,"87":7,"90":2,"91":3,"93":3,"94":3,"97":2,"98":3,"101":2,"102":2,"105":2,"106":2,"110":2,"111":4,"114":2,"115":2,"119":1,"123":1,"124":3,"127":1,"129":3,"131":4,"137":1,"138":2,"142":1}}],["sqlupdate",{"2":{"134":1}}],["say",{"2":{"134":1}}],["safepay",{"2":{"107":1}}],["safe",{"0":{"107":1}}],["santa",{"0":{"98":1},"2":{"98":1}}],["same",{"2":{"12":1,"16":1,"47":1,"77":1,"106":1}}],["schema",{"2":{"67":1}}],["scale",{"2":{"44":1}}],["switching",{"2":{"67":1}}],["switch",{"2":{"65":1}}],["swap",{"0":{"2":1},"1":{"3":1,"4":1,"5":1},"2":{"3":1}}],["shopping",{"2":{"40":2,"86":2,"87":1,"97":2,"101":2,"105":2,"110":2,"114":2}}],["shouldbroadcast",{"2":{"16":2}}],["should",{"2":{"1":1,"40":1,"41":1,"67":1,"70":1,"73":1,"86":1,"97":1,"101":1,"105":1,"110":1,"114":1,"124":1}}],["small",{"2":{"32":1,"35":1,"67":2}}],["spam",{"2":{"30":1,"143":1}}],["specific",{"2":{"71":1,"116":1}}],["specify",{"2":{"1":1,"41":1,"108":1}}],["special",{"2":{"6":1}}],["system",{"2":{"13":1,"22":1,"27":1,"35":1,"79":1,"135":1,"140":1}}],["such",{"2":{"108":1,"120":1}}],["success",{"2":{"91":1,"93":1,"124":1}}],["successfully",{"0":{"93":1}}],["successful",{"2":{"12":1}}],["suit",{"2":{"43":2,"55":1}}],["sum",{"2":{"19":1,"125":1}}],["subscribe",{"2":{"15":1,"17":1,"18":1}}],["sure",{"2":{"12":1,"72":1}}],["supported",{"2":{"72":1}}],["support",{"0":{"50":1},"2":{"10":1,"14":1,"16":1,"62":2,"64":1,"69":1,"72":2}}],["supports",{"2":{"6":1,"13":1}}],["see",{"2":{"35":1}}],["server",{"2":{"13":1}}],["services",{"2":{"12":2,"27":1,"35":3,"36":1,"129":1,"130":1,"140":1}}],["service",{"0":{"12":1,"129":1,"130":1},"2":{"12":2,"13":2,"40":1,"64":1,"86":1,"90":1,"97":1,"101":1,"105":1,"114":1,"128":1,"129":2,"130":1}}],["select",{"2":{"13":1,"44":1}}],["secondwallet",{"2":{"83":2}}],["second",{"2":{"25":1,"26":1,"81":1,"82":1,"138":1,"139":1}}],["seconds",{"2":{"13":1}}],["section",{"2":{"12":1,"99":1,"103":1}}],["search",{"2":{"12":1,"27":1,"140":1}}],["settings",{"2":{"16":1,"67":1}}],["setting",{"2":{"13":1}}],["set",{"2":{"0":1,"12":1,"14":1,"52":1,"128":1,"134":1}}],["structure",{"2":{"70":1}}],["strictly",{"2":{"70":1}}],["stringency",{"2":{"67":1}}],["string",{"2":{"6":1,"16":2,"35":2,"46":1,"60":2,"129":3}}],["strong",{"2":{"64":1}}],["strongly",{"2":{"36":1}}],["still",{"2":{"35":1}}],["storage",{"2":{"13":1}}],["storing",{"2":{"13":1,"70":1}}],["store",{"2":{"6":1}}],["study",{"2":{"12":1}}],["static",{"2":{"35":2,"36":1}}],["state",{"2":{"13":2}}],["stages",{"2":{"20":1,"38":1,"126":1,"133":1,"136":1,"141":1}}],["standard",{"2":{"15":1,"16":2,"17":1,"18":1}}],["starting",{"2":{"40":1,"70":1,"86":1,"97":1,"101":1,"105":1,"110":1,"114":1}}],["started",{"2":{"12":1,"20":1,"38":1,"126":1,"133":1,"136":1,"141":1}}],["starts",{"2":{"12":1,"70":1}}],["start",{"2":{"12":1,"87":1}}],["stable",{"2":{"11":1}}],["single",{"2":{"35":1,"36":1}}],["since",{"2":{"6":1,"27":1,"35":1,"140":1}}],["situation",{"2":{"35":1}}],["situations",{"2":{"31":1,"35":1,"120":1,"132":1,"144":1}}],["similar",{"2":{"17":1,"18":1}}],["simply",{"2":{"16":1}}],["simplify",{"2":{"6":1,"32":1}}],["simple",{"0":{"5":1,"38":1,"39":1},"2":{"4":1,"5":1,"7":1,"11":1,"12":1,"13":1,"14":1,"15":1,"16":1,"17":1,"18":1,"25":1,"26":1,"29":1,"32":1,"34":1,"35":1,"36":1,"39":1,"77":1,"78":1,"81":1,"83":1,"87":1,"94":1,"98":1,"102":1,"107":1,"111":1,"115":1,"119":1,"123":1,"124":1,"129":1,"131":1,"134":1,"138":1,"139":1,"142":1}}],["side",{"2":{"11":1,"35":1,"36":1}}],["slug",{"2":{"5":2,"44":2,"45":2,"47":1,"73":1,"75":1,"87":1}}],["soft",{"2":{"72":2}}],["solution",{"2":{"64":1}}],["someone",{"2":{"95":1}}],["something",{"2":{"15":1,"19":1,"27":1,"35":1,"83":2,"125":1,"140":1}}],["sometimes",{"2":{"12":1,"16":1,"32":1,"35":1,"53":1,"116":1,"123":1}}],["some",{"2":{"12":1,"32":1,"35":1}}],["sort",{"2":{"12":1}}],["so",{"2":{"1":1,"29":1,"41":1,"142":1}}],["s",{"2":{"1":1,"5":2,"7":1,"9":1,"11":1,"12":4,"13":1,"14":1,"15":2,"16":3,"17":1,"18":1,"20":1,"21":1,"25":2,"26":2,"29":2,"31":1,"34":1,"35":2,"36":1,"38":1,"41":1,"67":1,"74":1,"77":1,"78":2,"80":1,"81":1,"82":1,"83":2,"84":1,"87":2,"88":1,"94":1,"95":1,"98":2,"102":1,"107":1,"111":1,"115":1,"119":1,"123":1,"124":1,"126":1,"127":1,"128":1,"131":1,"132":1,"133":1,"134":3,"136":1,"138":2,"139":2,"141":1,"142":2,"144":1}}],["fee",{"2":{"88":1,"91":1,"93":1,"94":1}}],["feature",{"2":{"14":1}}],["fledged",{"2":{"70":1}}],["fluent",{"2":{"69":2}}],["float|int|string",{"2":{"129":1}}],["float",{"0":{"19":1},"1":{"20":1,"21":1},"2":{"35":1,"36":1,"42":1,"64":3}}],["f8becf81",{"2":{"36":2}}],["found",{"2":{"67":1,"88":1}}],["following",{"2":{"36":1}}],["forget",{"2":{"72":1}}],["format",{"2":{"32":1}}],["formatterserviceinterface",{"2":{"33":2,"34":2}}],["formatter",{"0":{"32":1},"1":{"33":1,"34":1}}],["forcetransfer",{"2":{"36":1}}],["forcedelete",{"2":{"72":1}}],["forced",{"2":{"30":1,"132":1,"143":1}}],["force",{"0":{"26":1,"30":1,"82":1,"139":1,"143":1},"2":{"67":1,"124":1}}],["for",{"0":{"63":1,"129":1,"134":1},"2":{"1":3,"6":1,"8":1,"11":1,"12":3,"13":2,"14":2,"17":2,"18":2,"27":1,"30":3,"35":6,"40":2,"41":3,"44":4,"62":1,"66":1,"67":1,"69":1,"70":1,"71":1,"72":1,"73":1,"78":2,"81":1,"86":2,"88":1,"97":2,"99":1,"101":2,"103":1,"105":2,"108":2,"110":3,"114":2,"116":1,"124":4,"128":1,"140":1,"143":3}}],["foreach",{"2":{"1":2,"35":2,"36":1,"41":2,"87":1,"129":2}}],["f46ba4e25786",{"2":{"35":2}}],["fn",{"2":{"35":2,"36":1}}],["failed",{"0":{"94":1},"2":{"94":1}}],["fails",{"2":{"70":1}}],["fast",{"2":{"36":2}}],["false",{"2":{"24":1,"40":2,"60":2,"75":1,"83":2,"86":1,"90":1,"97":1,"101":1,"105":1,"110":1,"114":1,"119":1,"123":2,"137":1}}],["facades",{"2":{"10":1,"14":1}}],["free",{"0":{"99":1,"102":1},"1":{"100":1,"101":1,"102":1}}],["frequent",{"2":{"15":1,"17":1,"18":1}}],["fractional",{"0":{"33":1,"42":1},"2":{"48":1}}],["framework",{"2":{"13":1,"72":1}}],["front",{"2":{"15":1,"17":1,"18":1}}],["from",{"2":{"5":1,"12":5,"14":1,"16":1,"25":1,"26":1,"36":1,"39":1,"40":1,"64":1,"70":1,"72":1,"81":1,"82":1,"86":1,"88":1,"97":1,"101":1,"105":1,"110":1,"114":1,"129":2,"138":1,"139":1}}],["fullest",{"2":{"67":1}}],["full",{"2":{"19":1,"70":1,"125":1}}],["future",{"2":{"12":1}}],["funds",{"2":{"12":3,"29":1,"30":1,"35":1,"83":1,"106":1,"108":1,"115":1,"142":1,"143":1}}],["functionality",{"2":{"95":1,"108":1,"124":2,"128":1}}],["functions",{"2":{"67":1}}],["function",{"2":{"1":1,"10":1,"11":1,"12":2,"15":1,"16":8,"17":1,"18":1,"35":4,"36":1,"40":5,"41":1,"46":1,"60":3,"63":2,"64":10,"86":5,"90":4,"92":4,"97":5,"101":5,"105":5,"110":5,"114":5,"129":2}}],["fill",{"0":{"87":1}}],["filter",{"0":{"78":1},"2":{"78":1}}],["file",{"2":{"43":1,"47":1,"48":1,"55":1,"65":1,"130":1}}],["fix",{"2":{"70":1}}],["fine",{"2":{"30":1,"143":1}}],["finally",{"2":{"70":1}}],["final",{"2":{"16":1}}],["find",{"2":{"5":1,"7":1,"21":1,"25":1,"29":1,"75":1,"81":1,"87":1,"91":2,"93":2,"94":2,"98":2,"102":2,"106":2,"111":2,"115":2,"127":1,"138":1,"142":1}}],["fight",{"2":{"13":1}}],["field",{"2":{"6":1,"67":2,"123":1}}],["first",{"2":{"1":1,"21":1,"25":2,"26":1,"29":1,"39":1,"40":2,"41":1,"42":1,"75":1,"81":3,"82":1,"87":1,"91":2,"93":2,"94":2,"98":3,"102":2,"106":2,"111":2,"115":2,"127":1,"138":2,"139":1,"142":1}}],["huge",{"2":{"36":1}}],["his",{"2":{"127":1}}],["highload",{"2":{"67":1}}],["highly",{"2":{"35":1}}],["high",{"2":{"36":1}}],["himself",{"2":{"8":1}}],["how",{"0":{"42":1,"76":1},"2":{"77":1,"106":1,"112":1}}],["however",{"2":{"1":1,"41":1}}],["hood",{"2":{"35":1}}],["help",{"2":{"35":1,"108":1,"128":1}}],["helper",{"2":{"32":1}}],["helloworld",{"2":{"46":1}}],["hello",{"2":{"24":1,"46":1,"69":2,"83":2,"137":1}}],["he",{"2":{"21":1,"25":1,"29":1,"127":1,"134":1,"138":1,"142":1}}],["here",{"2":{"12":1,"13":1,"14":1,"35":1,"72":1}}],["http",{"2":{"10":2}}],["https",{"2":{"7":1,"72":1}}],["happens",{"2":{"35":1,"106":1,"108":1}}],["happen",{"0":{"31":1,"144":1}}],["hasmany",{"2":{"71":1}}],["has",{"2":{"30":1,"32":1,"67":4,"70":2,"72":3,"120":1,"134":1,"143":1}}],["haswalletfloat",{"2":{"20":3,"21":1,"25":1,"29":1,"42":3}}],["haswallets",{"2":{"4":2,"9":3,"74":3,"77":2,"80":3,"110":5,"124":1}}],["haswallet",{"2":{"1":3,"4":2,"9":3,"38":3,"40":6,"41":3,"77":2,"85":1,"86":5,"89":1,"90":3,"92":2,"96":1,"97":5,"100":1,"101":5,"104":1,"105":5,"109":1,"110":5,"113":1,"114":5,"117":2,"121":2,"126":3,"127":1,"133":3,"136":3,"138":1,"141":3,"142":1}}],["handles",{"2":{"35":2}}],["handle",{"2":{"15":1,"16":1,"17":1,"18":1,"35":1,"36":1}}],["handler",{"0":{"10":1,"11":1}}],["have",{"2":{"1":1,"13":1,"20":1,"21":1,"25":1,"29":1,"35":1,"36":1,"38":1,"40":1,"41":1,"65":1,"67":4,"71":2,"72":2,"106":1,"124":2,"126":1,"127":1,"131":1,"133":1,"136":1,"138":1,"141":1,"142":1}}],["147",{"2":{"131":1}}],["15",{"2":{"98":1}}],["156",{"2":{"87":1}}],["15627",{"2":{"87":1}}],["151",{"2":{"87":1}}],["15127+500",{"2":{"87":1}}],["15127",{"2":{"87":2}}],["150",{"2":{"67":1}}],["18",{"2":{"48":1}}],["1s",{"2":{"44":1}}],["137",{"2":{"42":1}}],["191",{"2":{"39":1}}],["190",{"2":{"5":1}}],["1e82",{"2":{"35":2}}],["12",{"2":{"33":1,"34":1}}],["123",{"2":{"33":1,"34":1}}],["12345",{"2":{"33":2,"34":2}}],["115",{"2":{"98":1}}],["11",{"0":{"72":1},"2":{"24":1,"30":1}}],["105",{"2":{"93":2,"94":1}}],["103",{"2":{"91":2,"94":2}}],["101",{"2":{"30":1,"143":1}}],["1010",{"2":{"21":2}}],["10000",{"2":{"29":2,"124":1,"131":2}}],["100",{"2":{"12":3,"25":1,"26":1,"29":1,"40":3,"42":1,"75":2,"76":1,"78":3,"81":2,"82":1,"86":2,"90":1,"91":2,"92":1,"93":2,"94":2,"97":2,"98":2,"101":2,"102":3,"105":2,"106":2,"110":2,"111":2,"114":2,"115":2,"119":2,"123":2,"131":2,"138":1,"139":1,"142":2,"143":2}}],["10",{"0":{"71":1,"72":1},"2":{"5":1,"21":2,"29":1,"35":1,"36":1,"39":2,"72":2,"77":2,"87":1,"127":5,"142":1}}],["1",{"0":{"57":1,"58":1,"61":1,"62":1,"69":1,"70":1},"1":{"63":1},"2":{"1":4,"13":1,"17":1,"21":2,"39":1,"40":1,"41":4,"42":3,"60":1,"62":1,"67":1,"75":1,"76":1,"78":3,"83":2,"86":1,"90":1,"97":1,"101":1,"105":1,"110":1,"114":1,"129":2,"143":2}}],["+",{"0":{"77":1},"2":{"1":2,"41":2,"91":1,"93":1,"94":1}}],["nine",{"2":{"70":1}}],["null",{"2":{"35":6,"36":5,"123":1}}],["number",{"2":{"35":1,"36":1,"40":4,"70":1,"73":1,"86":4,"97":4,"101":4,"105":4,"110":4,"114":4}}],["numbers",{"0":{"33":1,"34":1,"42":1},"2":{"48":1}}],["next",{"2":{"16":1}}],["necessary",{"2":{"12":1,"14":1,"20":1,"30":1,"38":1,"64":1,"69":1,"108":1,"120":1,"126":1,"133":1,"136":1,"141":1,"143":1}}],["new",{"0":{"73":1},"1":{"74":1,"75":1,"76":1,"77":1},"2":{"10":1,"16":3,"24":2,"35":1,"36":9,"46":2,"60":2,"69":2,"72":3,"75":2,"81":1,"83":2,"137":2}}],["needed",{"2":{"70":2,"72":1}}],["needs",{"2":{"11":1,"43":1,"55":1,"68":1}}],["need",{"2":{"4":1,"6":2,"7":1,"12":3,"13":4,"14":2,"15":1,"16":2,"32":1,"35":3,"36":2,"62":1,"66":1,"70":1,"71":3,"72":1,"78":1,"110":1,"116":1,"123":1,"124":1,"128":1}}],["name",{"2":{"5":2,"10":1,"11":1,"44":9,"45":2,"47":1,"75":1,"78":2,"81":2,"111":1,"124":1,"128":1,"131":2}}],["non",{"2":{"35":4}}],["no",{"2":{"11":1,"30":1,"40":1,"67":1,"70":1,"71":1,"86":1,"97":1,"101":1,"105":1,"110":1,"114":1,"143":1}}],["now",{"2":{"1":1,"7":1,"13":1,"14":1,"16":1,"35":1,"36":1,"41":1,"42":1,"67":1,"69":1,"78":1}}],["notifications",{"2":{"124":1}}],["noting",{"2":{"35":1}}],["nothing",{"2":{"35":1,"68":1,"124":1}}],["notation",{"2":{"1":2,"41":2}}],["not",{"0":{"31":1,"144":1},"2":{"1":1,"6":1,"11":1,"12":3,"13":2,"16":1,"29":1,"31":1,"35":2,"36":3,"40":2,"41":1,"62":1,"67":2,"72":1,"86":1,"88":1,"95":1,"97":1,"101":1,"105":1,"106":1,"107":1,"108":1,"110":1,"114":1,"123":1,"124":1,"129":1,"131":2,"132":1,"142":1,"144":1}}],["n",{"2":{"1":2,"12":1,"40":1,"41":2,"86":1,"97":1,"101":1,"105":1,"110":1,"114":1}}],["ms",{"2":{"134":1}}],["msg",{"2":{"24":1,"137":1}}],["must",{"2":{"63":1,"70":1,"130":1,"132":1}}],["much",{"2":{"14":1}}],["multiwallet",{"0":{"77":1}}],["multiple",{"2":{"35":3,"36":1}}],["multi",{"2":{"4":1,"77":1,"78":1,"110":1,"124":1}}],["mistake",{"2":{"116":1}}],["minimaltaxable",{"2":{"92":3}}],["minimal",{"0":{"92":1},"1":{"93":1,"94":1},"2":{"93":1,"94":1}}],["minimum",{"2":{"72":1,"92":1}}],["minimize",{"2":{"14":1}}],["migrate",{"2":{"7":1,"70":1}}],["migrations",{"0":{"54":1},"2":{"54":2,"66":1,"72":2}}],["migration",{"2":{"6":1,"7":1,"67":2}}],["maximaltaxable",{"2":{"92":1}}],["maximum",{"2":{"14":1}}],["mariadb",{"2":{"72":1}}],["marketplaces",{"2":{"108":1}}],["mark",{"2":{"67":1}}],["mathserviceinterface",{"2":{"129":3}}],["mathable",{"2":{"65":2}}],["mathematics",{"2":{"64":1}}],["mathematical",{"2":{"44":1,"131":1}}],["math",{"2":{"44":1,"65":3}}],["making",{"2":{"35":1}}],["make",{"0":{"21":1,"25":1,"29":1,"81":1,"115":1,"127":1,"138":1,"142":1},"2":{"35":1,"42":1,"72":1}}],["map",{"2":{"35":2,"36":1}}],["many",{"2":{"35":1}}],["main",{"2":{"12":1,"35":1,"36":1}}],["master",{"2":{"7":1}}],["made",{"2":{"6":1}}],["maybe",{"2":{"12":1}}],["may",{"2":{"1":1,"41":1,"67":1}}],["myexchangeservice",{"2":{"129":1,"130":1}}],["mysql",{"2":{"67":1}}],["mywallet",{"2":{"46":3,"47":1}}],["mywalletcreatedlistener",{"2":{"18":2}}],["mywallettransactioncreatedlistener",{"2":{"17":2}}],["myupdatedeventassembler",{"2":{"16":2}}],["myupdatedevent",{"2":{"16":2}}],["mybalanceupdatedlistener",{"2":{"15":2,"16":2}}],["my",{"2":{"5":2,"75":3,"76":1,"124":1,"128":1,"131":2}}],["mode",{"2":{"120":1}}],["models",{"2":{"6":1,"7":1,"16":2,"46":3,"47":2,"60":4,"78":1,"124":1,"134":1}}],["model",{"0":{"4":1,"9":1,"20":1,"23":1,"28":1,"46":1,"47":1,"74":1,"80":1,"85":1,"86":1,"89":1,"90":1,"96":1,"97":1,"100":1,"101":1,"104":1,"105":1,"109":1,"110":1,"113":1,"114":1,"117":1,"121":1,"126":1,"133":1,"136":1,"141":1},"1":{"24":1,"47":1,"48":1,"137":1},"2":{"1":4,"4":2,"9":2,"20":3,"38":3,"40":5,"41":4,"42":3,"46":1,"47":1,"48":1,"60":1,"63":1,"74":2,"77":1,"80":2,"85":2,"86":3,"89":2,"90":2,"92":1,"96":2,"97":3,"100":2,"101":3,"104":2,"105":3,"109":2,"110":3,"113":2,"114":3,"117":2,"121":2,"126":3,"133":3,"136":3,"141":3}}],["modify",{"2":{"16":1}}],["morphmany",{"2":{"71":1}}],["morphone",{"2":{"1":1,"41":1}}],["more",{"2":{"14":1,"15":1,"17":1,"18":1,"67":1,"72":1,"84":1}}],["moment",{"2":{"14":1}}],["money",{"0":{"31":1,"144":1},"2":{"12":1,"19":1,"27":1,"40":1,"70":1,"95":1,"108":2,"116":1,"125":1,"127":1,"140":1}}],["most",{"2":{"11":1,"43":1,"124":1}}],["message",{"2":{"83":2}}],["me",{"2":{"78":1}}],["metadata",{"2":{"36":2}}],["meta",{"0":{"83":1},"2":{"5":2,"45":2,"47":1,"83":1,"111":1,"124":1,"128":2,"131":2}}],["methods",{"2":{"15":1,"17":1,"18":1,"69":1,"72":1}}],["method",{"2":{"0":1,"1":1,"3":1,"7":1,"12":1,"41":1,"47":1,"52":1,"60":3,"63":1,"69":1,"72":2,"78":4,"107":1}}],["means",{"2":{"1":1,"41":1}}],["quantity",{"2":{"87":1}}],["question",{"2":{"106":1}}],["questions",{"2":{"50":1}}],["queuing",{"2":{"36":1}}],["queries",{"2":{"1":4,"35":3,"36":1,"40":1,"41":4,"86":1,"97":1,"101":1,"105":1,"110":1,"114":1}}],["querying",{"2":{"1":1,"41":1}}],["query",{"2":{"1":5,"35":1,"41":5,"87":1}}],["quite",{"2":{"16":1}}],["quot",{"2":{"1":4,"8":2,"12":4,"41":4,"124":2}}],["cents",{"2":{"127":2}}],["certain",{"2":{"43":1}}],["credit",{"0":{"124":1},"2":{"124":8}}],["crediting",{"2":{"120":1}}],["credited",{"2":{"70":1,"88":1,"108":1,"127":1}}],["creating",{"2":{"8":1,"36":1,"46":1,"47":1,"48":1,"124":1}}],["creation",{"0":{"8":1,"17":1,"18":1},"1":{"9":1,"10":1,"11":1},"2":{"8":1,"11":1,"17":1,"18":1}}],["created",{"2":{"108":1,"119":1}}],["createdeposit",{"2":{"35":3}}],["createwithdraw",{"2":{"35":3}}],["createwalletcommandmessage",{"2":{"10":1,"11":1}}],["create",{"0":{"75":1},"2":{"5":1,"11":3,"15":1,"16":3,"17":1,"18":1,"35":1,"36":1,"70":1,"73":1,"75":1,"81":1,"120":2,"123":1,"131":1,"132":1}}],["crafted",{"2":{"43":1}}],["c80437bb4c3e",{"2":{"36":2}}],["currencies",{"2":{"128":1}}],["currency",{"0":{"129":1},"2":{"5":3,"27":1,"111":1,"128":2,"131":2,"140":1}}],["current",{"0":{"134":1},"2":{"87":1}}],["custom",{"2":{"71":1}}],["customize",{"0":{"53":1,"108":1},"1":{"54":1,"55":1,"109":1,"110":1,"111":1},"2":{"45":1}}],["customizing",{"0":{"16":1}}],["customer",{"2":{"40":8,"60":2,"63":2,"64":2,"85":3,"86":5,"89":3,"90":3,"92":2,"96":3,"97":5,"100":3,"101":5,"104":3,"105":5,"109":3,"110":5,"113":3,"114":5,"124":1}}],["changing",{"0":{"48":1}}],["changed",{"2":{"67":3,"70":1}}],["change",{"0":{"83":1},"2":{"16":1,"35":1,"48":1,"67":2,"132":1}}],["changes",{"0":{"15":1},"2":{"15":1,"35":3,"67":1}}],["check",{"2":{"21":1,"25":1,"26":1,"29":1,"35":1,"36":1,"40":1,"71":1,"82":1,"83":1,"86":1,"87":1,"91":2,"93":2,"94":2,"97":1,"98":1,"101":1,"102":2,"105":1,"106":2,"110":1,"111":2,"114":1,"115":2,"127":1,"138":1,"139":1,"142":1}}],["choose",{"2":{"13":1}}],["choosing",{"2":{"13":1}}],["catch",{"2":{"71":1,"107":1}}],["cashier",{"2":{"62":1}}],["cases",{"2":{"30":1,"143":1}}],["case",{"2":{"12":1,"15":1,"17":1,"18":1,"19":1,"35":1,"65":2,"108":1,"125":1,"132":1}}],["calculatebalance",{"2":{"59":1}}],["carrot",{"2":{"87":2}}],["cart",{"0":{"84":1,"87":1},"1":{"85":1,"86":1,"87":1},"2":{"40":2,"69":3,"86":2,"87":2,"97":2,"101":2,"105":2,"110":2,"111":1,"114":2}}],["care",{"2":{"36":1}}],["cause",{"2":{"40":1,"85":1,"89":1,"96":1,"100":1,"104":1,"109":1,"113":1}}],["cache",{"2":{"13":2,"36":1,"44":4}}],["canconfirm",{"2":{"117":3,"121":3}}],["cancel",{"0":{"116":1,"118":1},"1":{"117":1,"118":1,"119":2},"2":{"116":1,"117":1}}],["canceled",{"2":{"12":1}}],["canbepaidfloat",{"2":{"58":1}}],["canbepaid",{"2":{"58":1}}],["canbuy",{"2":{"40":1,"60":3,"86":1,"90":1,"97":1,"101":1,"105":1,"110":1,"114":1}}],["canpayfloat",{"2":{"58":1}}],["canpay",{"2":{"40":4,"58":1,"85":4,"89":4,"96":4,"100":4,"104":4,"109":4,"113":4}}],["can",{"2":{"1":2,"6":1,"7":2,"8":1,"13":1,"15":1,"17":1,"18":1,"27":2,"29":1,"31":1,"35":3,"36":3,"40":2,"41":2,"42":1,"43":1,"46":1,"47":1,"48":2,"55":2,"67":2,"73":1,"78":2,"84":1,"86":2,"88":1,"90":1,"91":1,"93":1,"94":1,"97":2,"101":2,"105":2,"106":1,"110":1,"111":1,"112":1,"114":2,"116":1,"117":1,"121":1,"128":1,"140":2,"142":1,"144":1}}],["claus",{"0":{"98":1}}],["class",{"2":{"1":1,"4":1,"9":1,"12":2,"15":3,"16":7,"17":3,"18":3,"20":1,"33":2,"34":2,"35":5,"36":2,"38":1,"40":3,"41":1,"42":1,"46":3,"47":1,"60":4,"65":7,"69":2,"74":1,"77":1,"80":1,"85":1,"86":2,"87":1,"89":1,"90":1,"92":2,"96":1,"97":2,"100":1,"101":2,"104":1,"105":2,"109":1,"110":2,"111":1,"113":1,"114":2,"117":1,"121":1,"126":1,"129":1,"130":1,"133":1,"136":1,"141":1}}],["closer",{"2":{"14":1}}],["client",{"2":{"8":1,"11":2,"35":1,"36":1}}],["cost",{"2":{"91":1,"93":1,"94":1,"102":1,"106":1,"111":1}}],["course",{"2":{"84":1}}],["could",{"2":{"70":1}}],["collecting",{"2":{"124":1}}],["collapse",{"2":{"35":1}}],["columns",{"2":{"72":1}}],["column",{"2":{"11":1,"72":1,"88":1}}],["correct",{"2":{"70":1}}],["correctly",{"2":{"35":1}}],["core",{"2":{"13":1}}],["conversion",{"2":{"131":1}}],["convertto",{"2":{"64":2,"129":1}}],["convert",{"2":{"32":1}}],["convenient",{"2":{"84":1,"108":1}}],["continue",{"2":{"70":1}}],["contract",{"0":{"24":1,"137":1},"2":{"67":1,"71":1,"72":1}}],["contracts",{"2":{"16":1}}],["confirm",{"0":{"120":1},"1":{"121":1,"122":1,"123":1},"2":{"120":1,"121":1,"123":2,"132":1,"134":1}}],["confirmable",{"2":{"117":3,"121":3}}],["confirmation",{"0":{"83":1,"122":1},"1":{"123":1},"2":{"83":1,"116":1,"119":1,"120":1}}],["confirmed=0",{"2":{"134":1}}],["confirmed=1",{"2":{"134":1}}],["confirmed",{"2":{"24":1,"83":1,"116":1,"119":1,"137":1}}],["configuration",{"0":{"43":1,"55":1},"1":{"44":1,"45":1,"46":1,"47":1,"48":1},"2":{"13":1,"14":1,"43":1,"47":1,"67":1}}],["configure",{"0":{"45":1},"2":{"12":1,"13":1,"55":1}}],["config",{"2":{"13":2,"45":1,"46":1,"47":1,"48":2,"55":2,"65":1,"67":4,"130":1}}],["constraint",{"2":{"40":1,"86":1,"97":1,"101":1,"105":1,"114":1}}],["construct",{"2":{"16":1,"129":1}}],["consistencyserviceinterface",{"2":{"35":2}}],["considered",{"2":{"12":1}}],["consider",{"2":{"1":1,"39":1,"41":1}}],["conditions",{"2":{"13":3}}],["condition",{"0":{"13":1},"2":{"12":1}}],["combine",{"2":{"35":1}}],["commerce",{"2":{"99":1,"103":1}}],["commission",{"2":{"88":2}}],["commissions",{"0":{"88":1},"1":{"89":1,"90":1,"91":1,"92":1,"93":1,"94":1},"2":{"88":1}}],["commit",{"2":{"14":1}}],["common",{"2":{"13":1}}],["command",{"0":{"11":1},"2":{"54":1,"55":1,"70":4}}],["completed",{"2":{"67":1}}],["complete",{"2":{"12":1}}],["composer",{"0":{"0":1,"3":1,"7":1,"52":1},"2":{"0":2,"3":1,"7":1,"52":2}}],["com",{"2":{"7":1,"72":1}}],["code",{"2":{"1":1,"35":2,"36":1,"41":1,"63":2,"64":4,"65":3,"69":1,"78":1}}],["affected",{"2":{"134":1}}],["after",{"2":{"7":1,"35":1,"55":1,"119":1}}],["available",{"2":{"62":1,"69":1}}],["availability",{"2":{"40":1,"86":1,"97":1,"101":1,"105":1,"110":1,"114":1}}],["amp",{"2":{"36":1}}],["amountfloat",{"2":{"42":1}}],["amount",{"2":{"12":1,"42":1,"88":2}}],["apm",{"2":{"64":1}}],["api",{"2":{"35":8,"36":3}}],["approach",{"2":{"70":1}}],["appear",{"2":{"66":1}}],["appeared",{"2":{"32":1}}],["app",{"2":{"12":2,"33":1,"34":1,"35":5,"36":2,"46":1,"60":2,"69":2,"87":1,"111":1,"134":1}}],["applied",{"2":{"67":1}}],["application",{"2":{"11":1,"35":1}}],["apply",{"2":{"12":1,"35":2,"72":1}}],["again",{"2":{"40":1,"107":1}}],["against",{"2":{"13":1,"36":1}}],["agree",{"2":{"19":1,"125":1}}],["automatically",{"2":{"14":1,"67":1}}],["autoload",{"2":{"0":1,"52":1}}],["architecture",{"2":{"108":1}}],["arbitrary",{"2":{"64":1}}],["argument",{"2":{"63":1}}],["arises",{"2":{"106":1}}],["arise",{"2":{"35":1}}],["array",{"2":{"13":2,"16":1,"35":10,"36":1,"40":2,"44":2,"86":2,"90":1,"92":1,"97":2,"101":2,"105":2,"110":2,"114":2,"129":2}}],["artisan",{"2":{"13":1,"54":2,"55":2,"67":1,"70":1}}],["are",{"2":{"12":2,"14":1,"15":1,"17":1,"18":1,"22":2,"35":3,"40":2,"62":1,"79":2,"86":2,"88":1,"95":1,"97":2,"99":1,"101":2,"103":1,"105":2,"108":1,"110":2,"114":2,"120":1,"128":1,"132":1,"135":2}}],["administration",{"2":{"95":1}}],["administrator",{"2":{"35":1}}],["advise",{"2":{"36":1,"67":1}}],["ad",{"2":{"12":4}}],["added",{"2":{"67":2,"72":2}}],["additional",{"2":{"1":1,"41":1}}],["add",{"2":{"1":1,"9":1,"16":1,"20":2,"38":2,"40":2,"41":1,"42":1,"60":2,"63":1,"67":1,"74":1,"80":1,"85":1,"86":1,"89":1,"90":1,"92":1,"96":1,"97":1,"100":1,"101":1,"104":1,"105":1,"109":1,"110":2,"113":1,"114":1,"117":1,"121":1,"126":2,"128":1,"133":2,"136":2,"141":2}}],["always",{"2":{"88":1}}],["along",{"2":{"88":1}}],["almost",{"2":{"14":1}}],["also",{"2":{"12":1}}],["already",{"2":{"11":1,"40":1,"85":1,"89":1,"96":1,"100":1,"104":1,"109":1,"112":1,"113":1}}],["allows",{"2":{"124":1}}],["all",{"2":{"1":3,"14":1,"16":1,"35":1,"36":1,"40":1,"41":3,"66":1,"67":2,"70":1,"72":1,"78":2,"86":1,"97":1,"101":1,"105":1,"108":1,"110":1,"114":1,"134":1}}],["alleviates",{"2":{"1":1,"41":1}}],["abruptly",{"2":{"132":1}}],["about",{"2":{"13":1,"78":1,"99":1,"103":1,"112":1}}],["above",{"2":{"1":1,"41":1,"47":1}}],["able",{"2":{"11":1,"35":3}}],["ability",{"2":{"4":1,"124":1}}],["abbreviated",{"2":{"1":2,"41":2}}],["anything",{"2":{"83":2}}],["any",{"2":{"27":1,"140":1}}],["an",{"2":{"6":1,"12":3,"15":1,"16":1,"17":1,"18":1,"31":1,"35":2,"39":1,"40":5,"70":1,"72":1,"73":1,"85":1,"86":3,"89":1,"96":1,"97":3,"99":1,"100":1,"101":3,"103":1,"104":1,"105":3,"106":1,"109":1,"110":3,"113":1,"114":3,"123":1,"124":1,"144":1}}],["another",{"2":{"1":1,"5":1,"41":1,"98":1}}],["and",{"0":{"31":1,"83":1,"144":1},"2":{"1":3,"5":1,"9":1,"11":2,"12":8,"13":2,"15":2,"16":2,"17":2,"18":2,"19":1,"22":1,"32":1,"35":6,"36":2,"40":2,"41":3,"42":1,"45":1,"46":1,"47":2,"65":1,"67":4,"74":1,"77":1,"78":1,"79":1,"80":1,"85":1,"86":1,"87":1,"88":1,"89":1,"90":1,"91":2,"93":2,"94":2,"95":1,"96":1,"97":1,"98":2,"100":1,"101":1,"102":2,"104":1,"105":1,"106":2,"107":1,"108":2,"109":1,"110":1,"111":2,"112":1,"113":1,"114":1,"115":2,"117":1,"119":1,"120":1,"121":1,"123":1,"125":1,"128":1,"129":1,"131":1,"132":1,"134":3,"135":1}}],["a",{"0":{"21":1,"25":1,"29":1,"75":1,"81":1,"115":1,"127":1,"138":1,"142":1},"2":{"1":1,"4":1,"6":3,"8":2,"11":2,"12":2,"13":6,"14":2,"15":2,"16":3,"17":3,"18":3,"19":2,"20":1,"30":1,"32":2,"35":6,"36":5,"38":1,"40":4,"41":1,"46":1,"67":6,"69":1,"71":2,"75":1,"78":3,"84":3,"86":4,"91":1,"93":1,"94":1,"95":1,"97":4,"98":1,"101":4,"105":4,"106":1,"108":2,"110":5,"111":1,"114":4,"116":2,"119":1,"120":4,"124":2,"125":2,"126":1,"129":1,"132":1,"133":1,"136":1,"141":1,"143":1}}],["attached",{"2":{"95":1}}],["attribute",{"2":{"42":1}}],["attention",{"2":{"6":1}}],["at=now",{"2":{"12":1}}],["atomicservice",{"2":{"36":1}}],["atomicserviceinterface",{"2":{"12":4,"35":4,"36":2}}],["atomically",{"2":{"12":1}}],["atomicity",{"2":{"12":1}}],["atomic",{"0":{"12":1},"2":{"12":4,"35":1}}],["at",{"2":{"1":1,"12":1,"35":2,"36":1,"41":1,"67":2,"77":1,"78":2,"84":2}}],["achieve",{"2":{"110":1}}],["accrues",{"2":{"35":1}}],["accounts",{"2":{"70":1}}],["account",{"2":{"27":1,"88":1,"127":1,"140":1}}],["acceleration",{"2":{"67":1}}],["accelerated",{"2":{"8":1}}],["access",{"2":{"1":1,"41":1}}],["accessing",{"2":{"1":1,"41":1,"42":1}}],["actively",{"2":{"67":1}}],["actions",{"2":{"12":1}}],["action",{"0":{"10":1}}],["actually",{"2":{"1":1,"41":1}}],["ask",{"2":{"50":1,"78":1}}],["assemblers",{"2":{"16":1}}],["assembler",{"2":{"16":2}}],["asynchronously",{"2":{"11":1}}],["asynchronous",{"0":{"8":1},"1":{"9":1,"10":1,"11":1}}],["as",{"2":{"1":3,"10":1,"14":2,"16":1,"21":1,"25":1,"29":1,"35":3,"36":1,"41":3,"46":1,"87":1,"99":1,"103":1,"106":1,"127":1,"129":2,"138":1,"142":1}}],["wrote",{"2":{"130":1}}],["write",{"2":{"107":1,"124":1,"128":1,"129":1}}],["written",{"2":{"36":1}}],["way",{"2":{"88":1,"108":1}}],["was",{"2":{"13":1,"64":1,"95":1,"116":1}}],["wants",{"2":{"98":1}}],["want",{"2":{"12":1,"16":1,"110":1}}],["wait",{"2":{"11":1}}],["wallettransactions",{"2":{"78":1}}],["walletbase",{"2":{"46":2}}],["walletfloat",{"2":{"42":3}}],["walletcreatedeventinterface",{"2":{"18":4}}],["wallets",{"0":{"18":1,"79":1},"1":{"80":1,"81":1,"82":1,"83":1},"2":{"1":1,"4":1,"5":2,"8":1,"11":1,"12":4,"13":1,"22":1,"35":2,"36":1,"41":1,"44":3,"47":1,"70":1,"73":1,"77":1,"78":1,"79":1,"81":1,"108":1,"110":1,"124":2,"128":1,"131":1,"135":1}}],["wallet",{"0":{"2":1,"6":1,"8":1,"17":1,"38":1,"39":1,"45":1,"46":1,"47":1,"48":1,"73":1,"75":1,"76":1,"77":1,"134":1},"1":{"3":1,"4":1,"5":1,"7":1,"9":1,"10":1,"11":1,"47":1,"48":1,"74":1,"75":1,"76":1,"77":1},"2":{"0":1,"1":10,"3":1,"4":5,"6":2,"7":2,"8":2,"9":6,"10":2,"11":2,"12":9,"13":3,"14":8,"15":2,"16":10,"17":3,"18":3,"19":1,"20":7,"31":2,"35":11,"36":12,"38":7,"39":2,"40":8,"41":10,"42":5,"44":19,"45":2,"46":6,"47":3,"48":5,"49":2,"52":1,"54":1,"55":1,"57":1,"60":10,"64":4,"65":1,"67":6,"69":2,"70":2,"72":2,"73":1,"74":5,"75":5,"76":1,"77":7,"78":8,"80":5,"81":2,"83":4,"84":1,"85":2,"86":6,"87":1,"89":2,"90":4,"92":4,"95":1,"96":2,"97":6,"100":2,"101":6,"104":2,"105":6,"108":3,"109":2,"110":8,"113":2,"114":6,"117":7,"120":2,"121":7,"124":7,"125":1,"126":7,"128":2,"129":2,"130":1,"131":1,"133":7,"136":7,"141":7,"144":2}}],["worth",{"2":{"35":1,"36":1}}],["world",{"2":{"24":1,"46":1,"69":2,"131":1,"137":1}}],["worked",{"2":{"82":1}}],["works",{"2":{"35":1}}],["working",{"0":{"129":1},"2":{"12":2,"35":1,"40":2,"48":1,"86":2,"97":2,"101":2,"105":2,"110":2,"114":2,"124":1,"128":1}}],["work",{"0":{"42":1},"2":{"4":1,"6":1,"13":1,"20":1,"38":1,"49":1,"70":1,"126":1,"133":1,"136":1,"141":1}}],["wow",{"2":{"21":1,"127":1}}],["would",{"2":{"1":1,"35":2,"36":2,"41":1,"67":1}}],["without",{"2":{"83":1,"120":2}}],["within",{"2":{"14":1,"124":1}}],["withdrawal",{"2":{"30":1,"39":1,"83":1,"106":1,"143":1}}],["withdraw",{"0":{"27":1,"29":1,"30":1,"140":1,"142":1,"143":1},"1":{"28":1,"29":1,"30":1,"31":1,"141":1,"142":1,"143":1,"144":1},"2":{"12":1,"22":1,"24":2,"27":1,"29":1,"36":4,"39":1,"79":1,"83":1,"135":1,"137":2,"140":1,"142":1}}],["with",{"0":{"42":1,"129":1},"2":{"1":2,"4":1,"5":1,"11":1,"12":2,"13":2,"16":1,"20":1,"35":1,"36":1,"38":1,"40":6,"41":2,"48":1,"49":1,"54":1,"55":1,"57":2,"65":1,"69":1,"70":2,"72":2,"86":6,"95":1,"97":6,"101":6,"105":6,"106":1,"110":6,"114":6,"117":2,"121":2,"124":1,"126":1,"128":2,"131":1,"133":1,"136":1,"141":1}}],["will",{"0":{"31":1,"144":1},"2":{"1":2,"6":1,"11":1,"12":4,"14":1,"16":1,"20":1,"21":1,"25":2,"26":1,"29":1,"32":1,"35":4,"36":1,"38":1,"40":2,"41":2,"67":1,"70":1,"81":1,"82":1,"83":1,"85":1,"86":1,"89":1,"96":1,"97":1,"98":1,"100":1,"101":1,"104":1,"105":1,"108":2,"109":1,"110":1,"113":1,"114":1,"126":1,"127":1,"129":2,"131":2,"132":1,"133":1,"136":1,"138":2,"139":1,"141":1,"142":1}}],["whom",{"2":{"95":1}}],["who",{"2":{"95":1}}],["whopping",{"2":{"67":1}}],["whole",{"0":{"34":1}}],["whatever",{"2":{"13":1}}],["what",{"0":{"31":1,"144":1},"2":{"12":1,"21":1,"35":1,"106":1,"112":1,"123":1,"127":1}}],["where",{"2":{"12":1,"40":1,"86":1,"97":1,"101":1,"105":1,"114":1,"134":1}}],["when",{"2":{"1":2,"15":2,"19":1,"27":1,"30":1,"35":1,"40":1,"41":2,"48":1,"86":1,"95":1,"97":1,"101":1,"105":1,"108":2,"110":1,"114":1,"120":1,"124":1,"125":1,"132":1,"140":1,"143":1}}],["which",{"2":{"1":1,"15":1,"16":1,"17":1,"18":1,"19":2,"21":1,"41":1,"67":1,"125":2,"127":1}}],["website",{"2":{"27":1,"140":1}}],["websockets",{"2":{"15":1,"17":1,"18":1}}],["well",{"2":{"22":1,"79":1,"135":1}}],["we",{"2":{"1":2,"4":1,"6":1,"12":4,"15":1,"16":3,"17":1,"18":1,"21":1,"31":1,"35":2,"41":2,"42":1,"62":1,"78":1,"83":1,"110":2,"112":1,"127":1,"129":2,"131":2,"144":1}}],["left",{"2":{"70":1,"131":1}}],["least",{"2":{"67":1}}],["lead",{"2":{"36":2}}],["let",{"2":{"1":1,"5":1,"12":1,"16":1,"20":1,"35":1,"38":1,"41":1,"78":1,"87":1,"126":1,"133":1,"134":1,"136":1,"141":1}}],["limit",{"2":{"124":6}}],["limits",{"0":{"124":1}}],["limited",{"2":{"40":3,"70":1,"86":3,"97":3,"101":3,"105":3,"110":3,"114":3}}],["livelier",{"2":{"78":1}}],["library",{"2":{"64":1,"128":1}}],["like",{"2":{"35":5}}],["likely",{"2":{"14":1}}],["little",{"2":{"32":1,"120":1}}],["listener",{"2":{"15":1,"16":1,"17":1,"18":1}}],["ll",{"2":{"12":1}}],["lost",{"2":{"88":1,"131":1}}],["lose",{"2":{"64":1}}],["logic",{"2":{"40":1,"70":1,"86":1,"97":1,"101":1,"105":1,"114":1,"124":1}}],["look",{"2":{"35":4,"78":1}}],["loop",{"2":{"1":1,"41":1}}],["long",{"2":{"14":1}}],["longer",{"2":{"11":1,"14":3,"71":1}}],["lot",{"2":{"12":1,"67":1,"132":1}}],["lockprovidernotfoundexception",{"2":{"71":1}}],["locks",{"2":{"13":1}}],["lockserviceinterface",{"2":{"12":1}}],["lock",{"2":{"12":3,"13":2,"14":1,"44":4}}],["load",{"2":{"1":1,"41":1}}],["loaded",{"2":{"1":3,"41":3,"65":1}}],["loading",{"0":{"1":1,"41":1},"2":{"1":2,"41":2}}],["later",{"2":{"120":1}}],["latest",{"2":{"66":1}}],["large",{"2":{"36":2}}],["laravel",{"0":{"2":1,"6":1},"1":{"3":1,"4":1,"5":1,"7":1},"2":{"0":1,"3":1,"6":1,"7":2,"15":1,"17":1,"18":1,"49":1,"52":1,"62":1,"72":1,"84":1,"108":1,"120":1}}],["last",{"2":{"25":1,"81":2,"98":1,"138":1}}],["lazy",{"2":{"1":1,"41":1}}],["e",{"2":{"99":1,"103":1}}],["else",{"2":{"95":1}}],["eloquent",{"2":{"1":2,"41":2}}],["eur",{"2":{"78":2}}],["eth",{"2":{"45":1}}],["ethereum",{"2":{"45":1}}],["etc",{"2":{"8":1,"124":1}}],["edit",{"2":{"43":1,"65":1}}],["efficient",{"2":{"35":1}}],["empty",{"2":{"29":1,"35":4,"129":1,"142":1}}],["everyone",{"2":{"128":1}}],["everything",{"2":{"16":1,"35":1,"132":1}}],["event",{"2":{"16":5}}],["events",{"0":{"16":1},"2":{"15":2,"16":6,"17":4,"18":4}}],["error",{"2":{"12":1,"31":1,"40":1,"85":1,"89":1,"96":1,"100":1,"104":1,"109":1,"113":1,"144":1}}],["entries",{"2":{"70":1}}],["entity",{"2":{"12":1}}],["environment",{"0":{"44":1}}],["end",{"2":{"14":2,"15":1,"17":1,"18":1}}],["enable",{"2":{"13":1}}],["enough",{"0":{"31":1,"144":1},"2":{"11":1,"12":2,"27":1,"31":1,"40":1,"140":1,"144":1}}],["ensure",{"2":{"0":1,"52":1}}],["easy",{"2":{"49":1}}],["each",{"2":{"1":2,"35":2,"41":2,"67":1,"73":1}}],["eager",{"0":{"1":1,"41":1},"2":{"1":4,"41":4}}],["exist",{"2":{"112":1}}],["exists",{"2":{"65":1,"71":1}}],["executing",{"2":{"70":1}}],["executed",{"2":{"1":1,"41":1}}],["execute",{"2":{"1":1,"36":1,"41":1,"83":1}}],["exception",{"2":{"40":1,"71":1,"106":1}}],["exceptioninterface",{"2":{"35":2}}],["exceptions",{"2":{"31":2,"144":2}}],["exchangeserviceinterface",{"2":{"129":2}}],["exchange",{"0":{"128":1,"131":1},"1":{"129":1,"130":1,"131":1},"2":{"5":1,"64":1,"128":1,"130":1,"131":1}}],["extension",{"2":{"65":1}}],["extended",{"2":{"47":1,"72":1}}],["extend",{"0":{"46":1},"1":{"47":1,"48":1},"2":{"46":1,"47":1}}],["extends",{"2":{"1":1,"4":1,"9":1,"20":1,"38":1,"40":3,"41":1,"42":1,"46":2,"60":1,"74":1,"77":1,"80":1,"85":1,"86":2,"89":1,"90":1,"92":1,"96":1,"97":2,"100":1,"101":2,"104":1,"105":2,"109":1,"110":2,"113":1,"114":2,"117":1,"121":1,"126":1,"133":1,"136":1,"141":1}}],["external",{"2":{"35":5,"36":9,"83":2}}],["extra",{"2":{"24":4,"36":4,"72":1,"83":2,"137":4}}],["expected",{"2":{"21":1,"127":1}}],["expensive",{"2":{"12":1}}],["expand",{"2":{"20":1,"38":1,"126":1,"133":1,"136":1,"141":1}}],["examples",{"2":{"7":1}}],["example",{"0":{"5":1,"24":1,"119":1,"123":1,"137":1},"2":{"12":2,"27":1,"30":1,"35":2,"39":1,"40":2,"46":1,"69":1,"78":1,"86":2,"97":2,"101":2,"105":2,"110":2,"114":2,"116":1,"124":1,"128":1,"140":1,"143":1}}],["echo",{"2":{"1":4,"41":4}}],["physically",{"2":{"72":1}}],["phpreturn",{"2":{"130":1}}],["phpif",{"2":{"107":1}}],["phpclass",{"2":{"60":1}}],["phpecho",{"2":{"47":1}}],["phpapp",{"2":{"33":1,"34":1}}],["php",{"2":{"13":4,"16":2,"35":1,"45":2,"46":3,"47":2,"48":2,"60":2,"62":2,"63":2,"64":4,"65":3,"67":2,"69":1,"78":1,"106":1,"115":1,"124":2,"130":1}}],["phppublic",{"2":{"11":1}}],["php$cart",{"2":{"111":1}}],["php$item",{"2":{"91":1,"93":1,"94":1,"98":1,"102":1,"106":1,"111":1,"115":1}}],["php$wallet",{"2":{"77":1}}],["php$mywallet",{"2":{"76":1}}],["php$bcloaded",{"2":{"65":1}}],["php$transaction",{"2":{"42":1}}],["php$transfer",{"2":{"24":1,"131":2,"137":1}}],["php$fist",{"2":{"25":1}}],["php$firstwallet",{"2":{"81":2,"82":2,"83":1}}],["php$first",{"2":{"25":2,"26":2,"81":1,"98":2,"138":3,"139":2}}],["php$rub",{"2":{"5":1,"131":1}}],["php$user",{"2":{"21":3,"29":3,"30":1,"39":1,"40":1,"42":1,"75":2,"78":1,"87":1,"91":2,"93":2,"94":2,"102":2,"106":3,"111":1,"115":1,"119":1,"123":1,"127":3,"128":1,"134":2,"142":3,"143":1}}],["php$users",{"2":{"1":2,"41":2}}],["php$usd",{"2":{"5":1,"131":1}}],["phpuse",{"2":{"1":1,"4":1,"9":1,"10":1,"12":2,"14":1,"15":2,"16":4,"17":2,"18":2,"20":1,"35":4,"36":3,"38":1,"40":3,"41":1,"42":1,"46":1,"74":1,"77":1,"80":1,"83":1,"85":1,"86":2,"87":1,"89":1,"90":1,"92":1,"96":1,"97":2,"100":1,"101":2,"104":1,"105":2,"109":1,"110":2,"113":1,"114":2,"117":1,"121":1,"126":1,"129":1,"133":1,"136":1,"141":1}}],["pt",{"2":{"67":1}}],["please",{"2":{"50":1}}],["places",{"0":{"48":1},"2":{"48":2}}],["place",{"2":{"22":1,"79":1,"135":1}}],["put",{"2":{"127":1}}],["purchasing",{"2":{"88":1,"108":2}}],["purchased",{"2":{"40":1,"86":1,"90":1,"97":1,"101":1,"105":1,"106":1,"114":1}}],["purchase",{"0":{"106":1,"111":1},"2":{"40":3,"86":2,"90":1,"92":1,"95":1,"97":2,"101":2,"102":1,"105":2,"110":2,"114":2}}],["purchaseserviceinterface",{"2":{"40":1,"86":1,"97":1,"101":1,"105":1,"110":1,"114":1}}],["purchases",{"0":{"40":1}}],["pull",{"2":{"67":1,"72":1}}],["publish",{"2":{"13":1,"54":2,"55":2,"67":1}}],["public",{"2":{"1":1,"10":1,"15":1,"16":8,"17":1,"18":1,"35":2,"40":5,"41":1,"46":1,"60":3,"63":2,"64":8,"86":5,"90":4,"92":4,"97":5,"101":5,"105":5,"110":5,"114":5,"129":2}}],["perfect",{"2":{"131":1}}],["performed",{"2":{"22":1,"79":1,"135":1}}],["perform",{"2":{"6":1,"72":1}}],["performance",{"2":{"6":1,"35":1,"36":1,"67":1}}],["person",{"2":{"95":2}}],["peculiarity",{"2":{"95":1}}],["pen",{"2":{"36":1}}],["potato",{"2":{"87":2}}],["possible",{"2":{"14":1,"35":1,"36":1,"77":1}}],["point",{"2":{"14":1,"67":1}}],["prepare",{"2":{"80":1}}],["prepared",{"2":{"20":1,"38":1,"126":1,"133":1,"136":1,"141":1}}],["precision",{"2":{"44":1,"64":1}}],["previously",{"2":{"13":1,"35":1,"36":1,"70":1}}],["priority",{"2":{"27":1,"140":1}}],["priceperitem",{"2":{"87":1}}],["price",{"2":{"19":1,"125":1}}],["private",{"2":{"16":2,"129":2}}],["proceed",{"0":{"106":1,"111":1},"2":{"40":1,"55":1}}],["processing",{"2":{"64":1}}],["process",{"0":{"91":1,"131":1},"2":{"6":1,"12":1,"32":1}}],["productlimitedinterface",{"2":{"40":3,"70":2,"86":3,"90":3,"97":3,"101":3,"105":3,"110":3,"114":3}}],["productinterface",{"2":{"40":3,"70":1,"86":3,"90":1,"92":2,"97":3,"101":3,"105":3,"110":3,"114":3,"124":1}}],["products",{"2":{"40":5,"67":1,"70":1,"86":5,"97":5,"101":5,"105":5,"110":5,"114":5}}],["product",{"2":{"40":3,"60":2,"70":3,"86":3,"88":1,"90":1,"91":2,"92":1,"93":2,"94":2,"97":3,"98":3,"101":3,"105":3,"106":2,"108":1,"110":4,"111":1,"114":3}}],["promotion",{"2":{"35":1}}],["protected",{"2":{"15":1,"16":1,"17":1,"18":1,"64":2}}],["provider",{"2":{"13":1}}],["problem",{"2":{"1":2,"41":2}}],["property",{"2":{"1":1,"21":1,"25":1,"29":1,"41":1,"69":1,"127":1,"138":1,"142":1}}],["properties",{"2":{"1":1,"41":1}}],["project",{"2":{"0":2,"3":1,"7":1,"13":1,"52":2,"67":2,"70":1}}],["paid",{"2":{"117":1,"121":1}}],["path",{"2":{"60":3}}],["page",{"2":{"50":1}}],["pack",{"2":{"84":1}}],["packs",{"2":{"36":1}}],["package",{"2":{"6":2,"7":1,"13":2,"16":4,"35":2,"36":2,"39":1,"43":1,"55":1,"67":2,"72":1}}],["packages",{"2":{"0":1,"52":1}}],["payable",{"2":{"134":2}}],["payments",{"2":{"99":1,"103":1}}],["payment",{"0":{"63":1,"99":1,"103":1,"108":1},"1":{"100":1,"101":1,"102":1,"104":1,"105":1,"106":1,"107":1,"109":1,"110":1,"111":1},"2":{"39":1,"99":1,"103":1}}],["pay",{"0":{"102":1,"107":1},"2":{"19":1,"98":1,"125":1}}],["parameter",{"2":{"60":1}}],["param",{"2":{"35":2,"129":1}}],["participating",{"2":{"35":1}}],["part",{"2":{"13":1,"19":1,"88":1,"99":2,"103":2,"125":1}}],["parent",{"2":{"1":1,"41":1}}],["t",{"2":{"72":2}}],["typing",{"2":{"64":1}}],["type=",{"2":{"134":1}}],["type",{"2":{"24":2,"72":2,"137":2}}],["ttl",{"2":{"44":4}}],["title",{"2":{"40":2,"86":2,"90":1,"92":1,"97":2,"101":2,"105":2,"110":2,"114":2}}],["time",{"2":{"1":1,"12":1,"14":2,"41":1,"77":1,"78":1,"84":1}}],["tax",{"0":{"91":1},"2":{"98":1}}],["taxable",{"2":{"61":1,"90":2,"98":1}}],["taxing",{"0":{"92":1},"1":{"93":1,"94":1},"2":{"61":1}}],["taxes",{"2":{"39":1}}],["take",{"2":{"36":1,"78":1,"129":1}}],["takes",{"2":{"14":1,"22":1,"79":1,"135":1}}],["tasks",{"2":{"15":1,"128":1}}],["tag=laravel",{"2":{"13":1,"54":1,"55":1,"67":1}}],["table",{"2":{"1":1,"36":2,"41":1,"44":6,"47":1,"67":1,"72":2}}],["tell",{"2":{"35":1}}],["teams",{"2":{"8":1}}],["tests",{"2":{"7":2}}],["trey",{"2":{"123":1}}],["tree",{"2":{"7":1}}],["try",{"2":{"40":1,"107":2}}],["true",{"2":{"25":1,"40":3,"65":1,"75":1,"81":1,"83":1,"86":1,"87":1,"90":1,"97":1,"98":3,"101":1,"102":1,"105":1,"106":1,"110":1,"114":1,"115":2,"119":2,"123":2,"138":1}}],["transferfloatquery",{"2":{"36":1}}],["transfer>",{"2":{"35":1}}],["transferquery",{"2":{"36":4}}],["transferquery>",{"2":{"35":1}}],["transferqueryhandlerinterface",{"2":{"35":1,"36":2}}],["transfers",{"0":{"36":1},"2":{"35":1,"36":4,"44":1,"70":1,"71":1,"72":2}}],["transfer",{"0":{"22":1,"25":1,"26":1,"79":1,"81":1,"82":1,"135":1,"138":1,"139":1},"1":{"23":1,"24":1,"25":1,"26":1,"80":1,"81":1,"82":1,"83":1,"136":1,"137":1,"138":1,"139":1},"2":{"22":2,"25":1,"26":1,"27":1,"36":2,"44":2,"47":1,"60":2,"70":1,"79":2,"81":1,"82":1,"83":1,"108":1,"135":2,"138":1,"139":1,"140":1}}],["transferring",{"2":{"15":1,"17":1,"18":1,"36":1}}],["transactionfloatquery",{"2":{"35":2}}],["transaction>",{"2":{"35":1}}],["transactionquery",{"2":{"35":7}}],["transactionquery>",{"2":{"35":1}}],["transactionqueryhandlerinterface",{"2":{"35":5}}],["transactioncreatedeventinterface",{"2":{"17":4}}],["transaction",{"0":{"14":1,"78":1,"116":1,"120":1},"1":{"117":1,"118":1,"119":1,"121":1,"122":1,"123":1},"2":{"12":3,"14":4,"22":1,"36":5,"42":1,"44":2,"47":1,"60":4,"79":1,"116":2,"117":1,"119":2,"120":2,"121":1,"135":1}}],["transactions",{"0":{"17":1,"35":1,"39":1},"2":{"8":1,"14":3,"35":2,"36":1,"39":1,"42":1,"44":1,"70":1,"78":4,"120":1,"134":3}}],["tracking",{"0":{"15":1,"17":1,"18":1}}],["traits",{"2":{"1":1,"4":2,"9":2,"20":1,"38":1,"40":3,"41":1,"42":1,"74":1,"77":2,"80":1,"85":1,"86":2,"89":1,"90":1,"92":1,"96":1,"97":2,"100":1,"101":2,"104":1,"105":2,"109":1,"110":4,"113":1,"114":2,"117":2,"121":2,"124":1,"126":1,"133":1,"136":1,"141":1}}],["trait",{"2":{"1":1,"9":1,"20":1,"38":1,"40":3,"41":1,"42":1,"74":1,"80":1,"85":2,"86":1,"89":2,"90":1,"96":2,"97":1,"100":2,"101":1,"104":2,"105":1,"109":2,"110":1,"113":2,"114":1,"117":1,"121":1,"126":1,"133":1,"136":1,"141":1}}],["two",{"2":{"1":1,"11":1,"12":1,"20":1,"22":1,"31":1,"38":1,"40":1,"41":1,"70":1,"79":1,"86":1,"97":1,"101":1,"105":1,"110":1,"114":1,"126":1,"131":1,"133":1,"135":1,"136":1,"141":1,"144":1}}],["together",{"2":{"78":1}}],["toned",{"2":{"67":1}}],["too",{"2":{"13":1}}],["to",{"0":{"33":1,"34":1,"42":1,"76":1,"106":1,"111":1,"118":1,"122":1,"132":1},"1":{"119":1,"123":1,"133":1,"134":1},"2":{"0":1,"1":8,"4":1,"5":1,"6":4,"7":1,"9":1,"11":4,"12":8,"13":4,"14":5,"15":3,"16":5,"17":3,"18":3,"19":1,"20":2,"25":1,"26":1,"32":2,"35":11,"36":6,"38":2,"40":4,"41":8,"42":1,"43":2,"47":1,"52":1,"55":2,"57":1,"58":2,"59":1,"60":5,"61":1,"62":2,"63":1,"64":2,"65":1,"66":3,"67":4,"68":1,"69":2,"70":7,"71":4,"72":4,"74":1,"77":2,"78":2,"81":1,"82":1,"84":1,"85":1,"86":1,"89":1,"90":1,"95":4,"96":1,"97":1,"98":2,"100":1,"101":1,"104":1,"105":1,"107":2,"108":2,"109":1,"110":3,"112":1,"113":1,"114":1,"116":1,"117":1,"120":2,"121":1,"123":1,"124":2,"125":1,"126":2,"128":2,"131":1,"132":1,"133":2,"136":2,"138":1,"139":1,"141":2}}],["though",{"2":{"43":1}}],["those",{"2":{"30":1,"143":1}}],["throw",{"2":{"40":1,"106":1}}],["throws",{"2":{"35":2}}],["thing",{"2":{"35":1,"36":1}}],["things",{"2":{"35":2}}],["this",{"2":{"1":4,"6":1,"12":2,"13":1,"15":1,"16":1,"17":1,"18":1,"19":1,"20":1,"35":5,"36":3,"38":1,"40":1,"41":4,"43":1,"47":1,"48":1,"54":1,"55":1,"64":1,"67":1,"70":1,"71":1,"78":1,"86":1,"88":1,"95":1,"97":1,"99":1,"101":1,"103":1,"105":1,"108":5,"114":1,"123":1,"124":1,"125":1,"126":1,"128":1,"130":1,"132":1,"133":1,"136":1,"141":1}}],["thanks",{"2":{"70":1}}],["thankfully",{"2":{"1":1,"41":1}}],["than",{"2":{"31":1,"144":1}}],["that",{"2":{"0":1,"1":1,"12":1,"13":1,"14":1,"16":1,"20":1,"22":1,"32":1,"35":2,"36":2,"38":1,"41":1,"46":1,"52":1,"67":2,"79":1,"95":1,"106":1,"108":2,"123":1,"126":1,"133":1,"135":1,"136":1,"141":1}}],["they",{"2":{"35":1,"72":1,"112":1}}],["these",{"2":{"35":1,"70":1}}],["them",{"2":{"11":1,"36":1,"72":1,"108":1,"112":1}}],["therefore",{"2":{"14":1}}],["there",{"2":{"6":2,"12":3,"13":2,"15":1,"27":1,"31":1,"35":2,"40":2,"67":2,"70":1,"86":2,"97":2,"101":2,"105":2,"110":2,"114":2,"120":1,"132":1,"140":1,"144":1}}],["then",{"2":{"1":1,"12":1,"13":1,"15":2,"16":3,"17":2,"18":2,"31":1,"35":1,"40":2,"41":1,"62":1,"67":4,"70":1,"71":3,"72":3,"86":2,"90":1,"97":2,"98":1,"101":2,"105":2,"110":2,"114":2,"124":1,"132":1,"144":1}}],["their",{"2":{"1":1,"41":1}}],["the",{"0":{"17":1,"18":1,"31":1,"76":1,"83":1,"87":1,"132":1,"134":1,"144":1},"1":{"133":1,"134":1},"2":{"0":1,"1":15,"3":1,"4":1,"6":2,"7":3,"8":4,"9":1,"11":9,"12":26,"13":13,"14":21,"15":4,"16":10,"17":7,"18":7,"19":4,"20":4,"21":3,"22":1,"25":5,"26":4,"27":3,"29":3,"30":1,"31":2,"32":2,"35":18,"36":13,"38":4,"39":3,"40":9,"41":15,"42":4,"43":1,"46":1,"47":3,"48":1,"50":1,"52":1,"54":1,"55":2,"60":2,"63":2,"64":2,"66":1,"67":15,"69":1,"70":10,"71":4,"72":7,"73":1,"74":1,"77":3,"78":7,"79":1,"80":2,"81":3,"82":4,"83":3,"85":2,"86":7,"87":2,"88":6,"89":2,"90":2,"91":5,"93":5,"94":5,"95":6,"96":2,"97":7,"98":7,"100":2,"101":7,"102":4,"104":2,"105":7,"106":11,"108":3,"109":2,"110":5,"111":5,"113":2,"114":7,"115":4,"116":1,"117":3,"120":1,"121":3,"124":6,"125":4,"126":4,"127":5,"128":2,"129":3,"130":2,"131":2,"132":2,"133":4,"134":2,"135":1,"136":4,"138":5,"139":4,"140":3,"141":4,"142":3,"143":1,"144":2}}],["urgently",{"2":{"15":1}}],["unfortunately",{"2":{"131":1}}],["unconfirmed",{"2":{"120":1,"132":1,"134":1}}],["unnecessary",{"2":{"65":1}}],["unlimited",{"2":{"40":2,"73":1,"86":2,"97":2,"101":2,"105":2,"110":2,"114":2}}],["unlock",{"2":{"14":1}}],["under",{"2":{"35":1}}],["uniqueness",{"2":{"35":1,"36":1}}],["unique",{"2":{"11":1,"73":1}}],["until",{"2":{"1":1,"14":1,"41":1,"70":1}}],["ulid",{"2":{"6":1}}],["uuid4",{"2":{"11":1}}],["uuid",{"0":{"6":1},"1":{"7":1},"2":{"6":4,"7":3,"10":1,"11":3,"35":5,"36":9,"67":2,"70":1}}],["usually",{"2":{"95":1}}],["usage",{"0":{"37":1},"1":{"38":1,"39":1,"40":1,"41":1,"42":1}}],["us",{"2":{"35":1}}],["usd",{"2":{"5":3,"78":2,"111":1,"128":2,"129":1,"131":1}}],["useful",{"2":{"48":1,"53":1}}],["uses",{"2":{"21":1,"25":1,"29":1,"98":1,"127":1,"138":1,"142":1}}],["used",{"2":{"14":1,"36":1,"47":1,"67":1,"72":1,"78":1,"95":1}}],["use",{"0":{"63":1},"2":{"1":3,"4":3,"6":2,"7":1,"9":3,"10":2,"12":3,"14":1,"16":1,"20":2,"35":7,"36":3,"38":2,"40":8,"41":3,"42":3,"55":1,"67":1,"72":1,"74":2,"77":4,"78":1,"80":2,"83":1,"85":2,"86":6,"89":2,"90":4,"92":4,"96":2,"97":6,"100":2,"101":6,"104":2,"105":6,"107":1,"109":2,"110":8,"112":1,"113":2,"114":6,"117":4,"121":4,"124":1,"126":2,"128":1,"129":1,"133":2,"136":2,"141":2}}],["userconfirm",{"2":{"117":1,"121":1}}],["users",{"2":{"1":3,"35":1,"41":3,"81":1,"95":1}}],["user",{"0":{"4":1,"9":1,"20":1,"23":1,"28":1,"74":1,"80":1,"85":1,"89":1,"96":1,"100":1,"104":1,"109":1,"113":1,"117":1,"121":1,"126":1,"133":1,"136":1,"141":1},"1":{"24":1,"137":1},"2":{"1":7,"4":1,"9":1,"10":1,"11":1,"12":1,"15":1,"20":1,"21":4,"25":7,"26":2,"29":4,"30":1,"31":1,"38":1,"39":1,"40":3,"41":7,"42":2,"70":1,"74":1,"75":2,"77":1,"80":1,"81":7,"82":2,"83":1,"85":2,"87":2,"89":2,"91":3,"93":3,"94":3,"96":2,"98":6,"100":2,"102":2,"104":2,"106":4,"109":2,"111":3,"113":2,"115":2,"117":1,"121":1,"126":1,"127":4,"132":1,"133":1,"134":2,"136":1,"138":7,"139":2,"141":1,"142":4,"143":1,"144":1}}],["using",{"2":{"0":1,"1":1,"3":1,"6":2,"7":1,"15":1,"17":1,"18":1,"40":1,"41":1,"52":1,"62":1,"71":1,"86":1,"97":1,"101":1,"105":1,"110":1,"114":1}}],["upgrade",{"0":{"56":1},"1":{"57":1,"58":1,"59":1,"60":1,"61":1,"62":1,"63":1,"64":1,"65":1,"66":1,"67":1,"68":1,"69":1,"70":1,"71":1,"72":1}}],["updating",{"2":{"17":1,"18":1,"64":1}}],["updatewalletsuuidtable",{"2":{"67":1}}],["updated",{"2":{"16":1}}],["update",{"2":{"12":1,"35":1,"62":1,"66":1,"67":1,"71":1,"124":1}}],["up",{"2":{"0":1,"52":1}}],["right",{"0":{"76":1},"2":{"84":1}}],["rows",{"2":{"134":1}}],["rounding",{"2":{"131":1}}],["round",{"2":{"86":2}}],["roll",{"2":{"12":1}}],["root",{"2":{"0":1,"3":1,"7":1,"52":1}}],["rates",{"2":{"128":1}}],["rate",{"2":{"64":3}}],["raise",{"2":{"12":4}}],["race",{"0":{"13":1},"2":{"12":1,"13":3,"14":1}}],["rub",{"2":{"5":3,"129":1,"131":1}}],["rubles",{"2":{"131":4}}],["ruble",{"2":{"5":1,"131":2}}],["running",{"2":{"14":1}}],["run",{"0":{"54":1},"2":{"0":1,"1":1,"3":1,"7":1,"41":1,"52":1,"67":1,"70":1}}],["registration",{"0":{"130":1}}],["registered",{"2":{"130":1}}],["register",{"0":{"47":1}}],["registering",{"2":{"46":1,"47":1}}],["refresh",{"0":{"132":1},"1":{"133":1,"134":1},"2":{"132":1,"134":1}}],["refreshbalance",{"2":{"59":1}}],["refund",{"0":{"112":1,"115":1},"1":{"113":1,"114":1,"115":1}}],["reward",{"2":{"95":1}}],["rewrite",{"2":{"71":1}}],["reuse",{"2":{"40":1,"85":1,"89":1,"96":1,"100":1,"104":1,"109":1,"113":1}}],["replenish",{"2":{"131":1}}],["replenishment",{"2":{"19":1,"39":1,"125":1}}],["replaced",{"2":{"70":1,"72":1}}],["replace",{"2":{"57":1,"58":2,"59":1,"60":3,"61":1,"65":1,"67":1,"69":2,"70":1}}],["report",{"2":{"36":1}}],["remove",{"2":{"71":1}}],["removed",{"2":{"12":1,"62":1,"72":1}}],["removing",{"2":{"65":1}}],["remembering",{"2":{"36":1}}],["resetting",{"2":{"119":1}}],["reset",{"2":{"116":1}}],["restarted",{"2":{"70":1}}],["result",{"2":{"35":1}}],["results",{"2":{"27":1,"140":1}}],["responsefactory",{"2":{"10":2}}],["response",{"2":{"10":3,"36":1}}],["redis",{"2":{"13":5}}],["reduces",{"2":{"6":1}}],["reduce",{"2":{"1":1,"35":1,"41":1}}],["receiving",{"0":{"108":1},"1":{"109":1,"110":1,"111":1},"2":{"111":1}}],["received",{"2":{"116":1}}],["receivedtransfers",{"2":{"72":1}}],["receive",{"2":{"11":1}}],["recommend",{"2":{"6":1,"13":2,"40":1,"67":2,"86":1,"97":1,"101":1,"105":1,"110":1,"114":1}}],["recommended",{"2":{"0":1,"3":1,"7":1,"13":1,"52":1}}],["returned",{"2":{"95":2}}],["returns",{"2":{"78":1,"112":1}}],["return",{"2":{"10":1,"16":6,"35":2,"40":6,"46":1,"60":1,"63":2,"67":1,"86":6,"90":5,"92":4,"97":6,"101":6,"105":6,"110":5,"114":6,"115":1,"129":1}}],["retrieve",{"2":{"1":4,"41":4}}],["ready",{"2":{"6":1,"16":1}}],["relative",{"2":{"78":1}}],["relation",{"2":{"71":2}}],["relationship",{"2":{"1":2,"41":2}}],["relationships",{"2":{"1":3,"41":3}}],["related",{"2":{"1":1,"41":1}}],["required",{"2":{"13":1}}],["requests",{"2":{"11":1,"12":1,"36":1,"71":1}}],["request",{"2":{"10":2,"36":1,"40":1,"67":1,"86":1,"97":1,"101":1,"105":1,"110":1,"114":1}}],["req",{"2":{"0":1,"3":1,"7":1,"52":1}}],["i",{"2":{"12":1,"13":2,"35":1,"36":1,"40":1,"67":3,"86":1,"97":1,"101":1,"105":1,"110":1,"114":1}}],["impressive",{"2":{"35":1}}],["improve",{"2":{"35":1}}],["important",{"2":{"14":1,"99":1,"103":1}}],["imported",{"2":{"13":1}}],["implement",{"2":{"16":2,"40":1,"72":1,"86":1,"97":1,"101":1,"105":1,"114":1}}],["implementation",{"2":{"7":1,"15":1,"16":1,"17":1,"18":1,"72":1}}],["implements",{"2":{"1":1,"4":1,"9":1,"16":2,"20":1,"38":1,"40":3,"41":1,"42":1,"60":1,"74":1,"77":1,"80":1,"85":1,"86":2,"89":1,"90":1,"92":1,"96":1,"97":2,"100":1,"101":2,"104":1,"105":2,"109":1,"110":2,"113":1,"114":2,"117":1,"121":1,"126":1,"129":1,"133":1,"136":1,"141":1}}],["immediately",{"2":{"12":1,"70":1}}],["illuminate",{"2":{"10":3,"14":1,"16":1}}],["illustrate",{"2":{"1":1,"41":1}}],["id=5",{"2":{"134":1}}],["id=123",{"2":{"12":1}}],["idea",{"2":{"8":1}}],["identifiers",{"2":{"6":1,"70":1}}],["identifier",{"2":{"6":1}}],["id",{"2":{"6":1,"25":1,"81":1,"98":1,"138":1}}],["its",{"2":{"119":1,"123":1}}],["item",{"0":{"86":1,"90":1,"97":1,"101":1,"105":1,"110":1,"114":1},"2":{"40":4,"60":1,"86":3,"87":1,"90":2,"91":1,"92":2,"93":1,"94":1,"97":3,"98":1,"101":3,"102":1,"105":3,"106":1,"110":3,"111":1,"114":3,"115":1}}],["it",{"2":{"5":1,"6":1,"7":1,"11":3,"12":4,"13":2,"14":4,"15":1,"16":1,"17":1,"18":1,"19":1,"20":1,"25":1,"26":1,"27":1,"29":1,"31":1,"34":1,"35":6,"36":4,"38":1,"40":1,"53":1,"55":2,"65":2,"67":4,"69":1,"71":1,"77":2,"78":1,"81":1,"82":1,"83":1,"84":1,"86":1,"87":1,"94":1,"95":2,"97":1,"98":2,"101":1,"102":1,"105":1,"107":1,"108":1,"110":1,"111":1,"114":1,"115":1,"119":1,"120":2,"123":1,"124":2,"125":1,"126":1,"127":1,"131":1,"133":1,"134":1,"136":1,"138":1,"139":1,"140":1,"141":1,"142":1,"144":1}}],["if",{"0":{"31":1,"63":1,"144":1},"2":{"1":1,"8":1,"12":2,"13":1,"31":1,"35":1,"36":1,"40":4,"41":1,"62":1,"65":1,"67":4,"70":1,"71":3,"72":4,"78":1,"86":2,"90":1,"97":2,"98":1,"101":2,"105":2,"106":1,"110":2,"114":2,"124":1,"129":1,"144":1}}],["infinite",{"2":{"70":1}}],["info",{"2":{"36":2}}],["information",{"2":{"15":1,"17":1,"18":1}}],["inherits",{"2":{"40":1,"85":1,"89":1,"96":1,"100":1,"104":1,"109":1,"113":1}}],["increase",{"2":{"36":1}}],["independent",{"2":{"35":1}}],["insert",{"2":{"35":3}}],["insufficientfunds",{"2":{"31":1,"144":1}}],["inside",{"2":{"16":1,"35":1,"36":1}}],["instead",{"2":{"6":1}}],["installing",{"2":{"55":1}}],["installed",{"2":{"0":1,"52":1}}],["installation",{"0":{"51":1},"1":{"52":1,"53":1,"54":1,"55":1},"2":{"0":1,"3":1,"7":1,"52":1}}],["invoke",{"2":{"10":1,"11":1}}],["introduction",{"0":{"49":1},"1":{"50":1}}],["introduces",{"2":{"15":1,"17":1,"18":1}}],["int|string",{"2":{"40":2,"86":2,"90":1,"92":1,"97":2,"101":2,"105":2,"110":2,"114":2}}],["interest",{"2":{"124":1}}],["internal",{"2":{"15":2,"16":5,"17":2,"18":2,"129":1}}],["interfaces",{"2":{"1":1,"4":1,"9":1,"20":1,"38":1,"40":6,"41":1,"42":2,"70":3,"72":1,"74":1,"77":1,"80":1,"83":1,"85":1,"86":5,"89":1,"90":3,"92":3,"96":1,"97":5,"100":1,"101":5,"104":1,"105":5,"109":1,"110":5,"113":1,"114":5,"117":2,"121":2,"124":2,"126":1,"133":1,"136":1,"141":1}}],["interface",{"2":{"1":1,"9":1,"12":1,"15":1,"16":1,"17":1,"18":1,"20":1,"35":2,"38":1,"40":4,"41":1,"42":1,"60":1,"70":1,"74":1,"80":1,"85":1,"86":3,"89":1,"90":1,"92":1,"96":1,"97":3,"98":1,"100":1,"101":3,"104":1,"105":3,"109":1,"110":3,"113":1,"114":3,"117":1,"121":1,"126":1,"133":1,"136":1,"141":1}}],["into",{"2":{"8":1,"13":1,"35":2,"70":1,"131":1}}],["int",{"2":{"6":1,"16":1,"35":1,"36":1,"40":1,"60":1,"63":2,"64":2,"86":1,"90":1,"97":1,"101":1,"105":1,"110":1,"114":1}}],["in",{"2":{"0":1,"3":1,"6":2,"7":3,"11":1,"12":4,"13":2,"14":1,"15":1,"17":1,"18":1,"19":1,"20":1,"22":2,"27":3,"35":4,"36":5,"38":1,"40":1,"46":1,"47":1,"48":1,"52":1,"64":2,"67":3,"70":1,"72":1,"79":2,"84":2,"86":1,"88":1,"92":1,"97":1,"101":1,"105":1,"108":2,"110":1,"114":1,"125":1,"126":1,"130":1,"132":1,"133":1,"134":1,"135":2,"136":1,"140":3,"141":1}}],["issues",{"2":{"50":1}}],["issue",{"2":{"13":2}}],["is",{"0":{"31":1,"144":1},"2":{"0":1,"1":3,"3":1,"6":2,"7":1,"8":1,"11":3,"12":5,"13":4,"14":7,"15":1,"16":3,"17":1,"18":1,"19":3,"20":3,"21":2,"27":2,"29":1,"30":1,"31":3,"35":6,"36":3,"38":3,"39":1,"40":1,"41":3,"43":1,"52":1,"53":1,"62":1,"67":4,"69":1,"72":2,"77":1,"84":1,"86":1,"88":3,"95":4,"97":1,"99":1,"101":1,"103":1,"105":1,"106":1,"108":4,"114":1,"120":1,"123":1,"124":2,"125":3,"126":3,"127":4,"128":1,"130":1,"131":1,"133":3,"136":3,"140":2,"141":3,"142":1,"143":1,"144":3}}]],"serializationVersion":2}';export{e as default}; diff --git a/docs/.vitepress/dist/assets/chunks/VPLocalSearchBox.DL0hJ4hG.js b/docs/.vitepress/dist/assets/chunks/VPLocalSearchBox.DL0hJ4hG.js deleted file mode 100644 index a3d916fd5..000000000 --- a/docs/.vitepress/dist/assets/chunks/VPLocalSearchBox.DL0hJ4hG.js +++ /dev/null @@ -1,7 +0,0 @@ -var Ct=Object.defineProperty;var It=(o,e,t)=>e in o?Ct(o,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):o[e]=t;var Oe=(o,e,t)=>It(o,typeof e!="symbol"?e+"":e,t);import{X as Dt,s as oe,v as $e,ai as kt,aj as Ot,d as Rt,G as xe,ak as tt,h as Fe,al as _t,am as Mt,x as Lt,an as Pt,y as Re,R as de,Q as Ee,ao as zt,ap as Bt,Y as Vt,U as $t,aq as Wt,o as ee,b as Kt,j as k,a1 as Jt,k as j,ar as Ut,as as jt,at as Gt,c as re,n as rt,e as Se,E as at,F as nt,a as ve,t as pe,au as Qt,p as qt,l as Ht,av as it,aw as Yt,a7 as Zt,ad as Xt,ax as er,_ as tr}from"./framework.OdeEVNy0.js";import{u as rr,c as ar}from"./theme.Cw_-CB8X.js";const nr={root:()=>Dt(()=>import("./@localSearchIndexroot.D1JipNN-.js"),[])};/*! -* tabbable 6.2.0 -* @license MIT, https://github.com/focus-trap/tabbable/blob/master/LICENSE -*/var yt=["input:not([inert])","select:not([inert])","textarea:not([inert])","a[href]:not([inert])","button:not([inert])","[tabindex]:not(slot):not([inert])","audio[controls]:not([inert])","video[controls]:not([inert])",'[contenteditable]:not([contenteditable="false"]):not([inert])',"details>summary:first-of-type:not([inert])","details:not([inert])"],Ne=yt.join(","),mt=typeof Element>"u",ue=mt?function(){}:Element.prototype.matches||Element.prototype.msMatchesSelector||Element.prototype.webkitMatchesSelector,Ce=!mt&&Element.prototype.getRootNode?function(o){var e;return o==null||(e=o.getRootNode)===null||e===void 0?void 0:e.call(o)}:function(o){return o==null?void 0:o.ownerDocument},Ie=function o(e,t){var r;t===void 0&&(t=!0);var n=e==null||(r=e.getAttribute)===null||r===void 0?void 0:r.call(e,"inert"),a=n===""||n==="true",i=a||t&&e&&o(e.parentNode);return i},ir=function(e){var t,r=e==null||(t=e.getAttribute)===null||t===void 0?void 0:t.call(e,"contenteditable");return r===""||r==="true"},gt=function(e,t,r){if(Ie(e))return[];var n=Array.prototype.slice.apply(e.querySelectorAll(Ne));return t&&ue.call(e,Ne)&&n.unshift(e),n=n.filter(r),n},bt=function o(e,t,r){for(var n=[],a=Array.from(e);a.length;){var i=a.shift();if(!Ie(i,!1))if(i.tagName==="SLOT"){var s=i.assignedElements(),u=s.length?s:i.children,l=o(u,!0,r);r.flatten?n.push.apply(n,l):n.push({scopeParent:i,candidates:l})}else{var h=ue.call(i,Ne);h&&r.filter(i)&&(t||!e.includes(i))&&n.push(i);var d=i.shadowRoot||typeof r.getShadowRoot=="function"&&r.getShadowRoot(i),v=!Ie(d,!1)&&(!r.shadowRootFilter||r.shadowRootFilter(i));if(d&&v){var y=o(d===!0?i.children:d.children,!0,r);r.flatten?n.push.apply(n,y):n.push({scopeParent:i,candidates:y})}else a.unshift.apply(a,i.children)}}return n},wt=function(e){return!isNaN(parseInt(e.getAttribute("tabindex"),10))},se=function(e){if(!e)throw new Error("No node provided");return e.tabIndex<0&&(/^(AUDIO|VIDEO|DETAILS)$/.test(e.tagName)||ir(e))&&!wt(e)?0:e.tabIndex},or=function(e,t){var r=se(e);return r<0&&t&&!wt(e)?0:r},sr=function(e,t){return e.tabIndex===t.tabIndex?e.documentOrder-t.documentOrder:e.tabIndex-t.tabIndex},xt=function(e){return e.tagName==="INPUT"},ur=function(e){return xt(e)&&e.type==="hidden"},lr=function(e){var t=e.tagName==="DETAILS"&&Array.prototype.slice.apply(e.children).some(function(r){return r.tagName==="SUMMARY"});return t},cr=function(e,t){for(var r=0;rsummary:first-of-type"),i=a?e.parentElement:e;if(ue.call(i,"details:not([open]) *"))return!0;if(!r||r==="full"||r==="legacy-full"){if(typeof n=="function"){for(var s=e;e;){var u=e.parentElement,l=Ce(e);if(u&&!u.shadowRoot&&n(u)===!0)return ot(e);e.assignedSlot?e=e.assignedSlot:!u&&l!==e.ownerDocument?e=l.host:e=u}e=s}if(vr(e))return!e.getClientRects().length;if(r!=="legacy-full")return!0}else if(r==="non-zero-area")return ot(e);return!1},yr=function(e){if(/^(INPUT|BUTTON|SELECT|TEXTAREA)$/.test(e.tagName))for(var t=e.parentElement;t;){if(t.tagName==="FIELDSET"&&t.disabled){for(var r=0;r=0)},gr=function o(e){var t=[],r=[];return e.forEach(function(n,a){var i=!!n.scopeParent,s=i?n.scopeParent:n,u=or(s,i),l=i?o(n.candidates):s;u===0?i?t.push.apply(t,l):t.push(s):r.push({documentOrder:a,tabIndex:u,item:n,isScope:i,content:l})}),r.sort(sr).reduce(function(n,a){return a.isScope?n.push.apply(n,a.content):n.push(a.content),n},[]).concat(t)},br=function(e,t){t=t||{};var r;return t.getShadowRoot?r=bt([e],t.includeContainer,{filter:We.bind(null,t),flatten:!1,getShadowRoot:t.getShadowRoot,shadowRootFilter:mr}):r=gt(e,t.includeContainer,We.bind(null,t)),gr(r)},wr=function(e,t){t=t||{};var r;return t.getShadowRoot?r=bt([e],t.includeContainer,{filter:De.bind(null,t),flatten:!0,getShadowRoot:t.getShadowRoot}):r=gt(e,t.includeContainer,De.bind(null,t)),r},le=function(e,t){if(t=t||{},!e)throw new Error("No node provided");return ue.call(e,Ne)===!1?!1:We(t,e)},xr=yt.concat("iframe").join(","),_e=function(e,t){if(t=t||{},!e)throw new Error("No node provided");return ue.call(e,xr)===!1?!1:De(t,e)};/*! -* focus-trap 7.5.4 -* @license MIT, https://github.com/focus-trap/focus-trap/blob/master/LICENSE -*/function st(o,e){var t=Object.keys(o);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(o);e&&(r=r.filter(function(n){return Object.getOwnPropertyDescriptor(o,n).enumerable})),t.push.apply(t,r)}return t}function ut(o){for(var e=1;e0){var r=e[e.length-1];r!==t&&r.pause()}var n=e.indexOf(t);n===-1||e.splice(n,1),e.push(t)},deactivateTrap:function(e,t){var r=e.indexOf(t);r!==-1&&e.splice(r,1),e.length>0&&e[e.length-1].unpause()}},Ar=function(e){return e.tagName&&e.tagName.toLowerCase()==="input"&&typeof e.select=="function"},Tr=function(e){return(e==null?void 0:e.key)==="Escape"||(e==null?void 0:e.key)==="Esc"||(e==null?void 0:e.keyCode)===27},ge=function(e){return(e==null?void 0:e.key)==="Tab"||(e==null?void 0:e.keyCode)===9},Nr=function(e){return ge(e)&&!e.shiftKey},Cr=function(e){return ge(e)&&e.shiftKey},ct=function(e){return setTimeout(e,0)},ft=function(e,t){var r=-1;return e.every(function(n,a){return t(n)?(r=a,!1):!0}),r},ye=function(e){for(var t=arguments.length,r=new Array(t>1?t-1:0),n=1;n1?p-1:0),I=1;I=0)c=r.activeElement;else{var f=i.tabbableGroups[0],p=f&&f.firstTabbableNode;c=p||h("fallbackFocus")}if(!c)throw new Error("Your focus-trap needs to have at least one focusable element");return c},v=function(){if(i.containerGroups=i.containers.map(function(c){var f=br(c,a.tabbableOptions),p=wr(c,a.tabbableOptions),C=f.length>0?f[0]:void 0,I=f.length>0?f[f.length-1]:void 0,M=p.find(function(m){return le(m)}),P=p.slice().reverse().find(function(m){return le(m)}),z=!!f.find(function(m){return se(m)>0});return{container:c,tabbableNodes:f,focusableNodes:p,posTabIndexesFound:z,firstTabbableNode:C,lastTabbableNode:I,firstDomTabbableNode:M,lastDomTabbableNode:P,nextTabbableNode:function(x){var $=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!0,K=f.indexOf(x);return K<0?$?p.slice(p.indexOf(x)+1).find(function(Q){return le(Q)}):p.slice(0,p.indexOf(x)).reverse().find(function(Q){return le(Q)}):f[K+($?1:-1)]}}}),i.tabbableGroups=i.containerGroups.filter(function(c){return c.tabbableNodes.length>0}),i.tabbableGroups.length<=0&&!h("fallbackFocus"))throw new Error("Your focus-trap must have at least one container with at least one tabbable node in it at all times");if(i.containerGroups.find(function(c){return c.posTabIndexesFound})&&i.containerGroups.length>1)throw new Error("At least one node with a positive tabindex was found in one of your focus-trap's multiple containers. Positive tabindexes are only supported in single-container focus-traps.")},y=function w(c){var f=c.activeElement;if(f)return f.shadowRoot&&f.shadowRoot.activeElement!==null?w(f.shadowRoot):f},b=function w(c){if(c!==!1&&c!==y(document)){if(!c||!c.focus){w(d());return}c.focus({preventScroll:!!a.preventScroll}),i.mostRecentlyFocusedNode=c,Ar(c)&&c.select()}},E=function(c){var f=h("setReturnFocus",c);return f||(f===!1?!1:c)},g=function(c){var f=c.target,p=c.event,C=c.isBackward,I=C===void 0?!1:C;f=f||Ae(p),v();var M=null;if(i.tabbableGroups.length>0){var P=l(f,p),z=P>=0?i.containerGroups[P]:void 0;if(P<0)I?M=i.tabbableGroups[i.tabbableGroups.length-1].lastTabbableNode:M=i.tabbableGroups[0].firstTabbableNode;else if(I){var m=ft(i.tabbableGroups,function(B){var U=B.firstTabbableNode;return f===U});if(m<0&&(z.container===f||_e(f,a.tabbableOptions)&&!le(f,a.tabbableOptions)&&!z.nextTabbableNode(f,!1))&&(m=P),m>=0){var x=m===0?i.tabbableGroups.length-1:m-1,$=i.tabbableGroups[x];M=se(f)>=0?$.lastTabbableNode:$.lastDomTabbableNode}else ge(p)||(M=z.nextTabbableNode(f,!1))}else{var K=ft(i.tabbableGroups,function(B){var U=B.lastTabbableNode;return f===U});if(K<0&&(z.container===f||_e(f,a.tabbableOptions)&&!le(f,a.tabbableOptions)&&!z.nextTabbableNode(f))&&(K=P),K>=0){var Q=K===i.tabbableGroups.length-1?0:K+1,q=i.tabbableGroups[Q];M=se(f)>=0?q.firstTabbableNode:q.firstDomTabbableNode}else ge(p)||(M=z.nextTabbableNode(f))}}else M=h("fallbackFocus");return M},S=function(c){var f=Ae(c);if(!(l(f,c)>=0)){if(ye(a.clickOutsideDeactivates,c)){s.deactivate({returnFocus:a.returnFocusOnDeactivate});return}ye(a.allowOutsideClick,c)||c.preventDefault()}},T=function(c){var f=Ae(c),p=l(f,c)>=0;if(p||f instanceof Document)p&&(i.mostRecentlyFocusedNode=f);else{c.stopImmediatePropagation();var C,I=!0;if(i.mostRecentlyFocusedNode)if(se(i.mostRecentlyFocusedNode)>0){var M=l(i.mostRecentlyFocusedNode),P=i.containerGroups[M].tabbableNodes;if(P.length>0){var z=P.findIndex(function(m){return m===i.mostRecentlyFocusedNode});z>=0&&(a.isKeyForward(i.recentNavEvent)?z+1=0&&(C=P[z-1],I=!1))}}else i.containerGroups.some(function(m){return m.tabbableNodes.some(function(x){return se(x)>0})})||(I=!1);else I=!1;I&&(C=g({target:i.mostRecentlyFocusedNode,isBackward:a.isKeyBackward(i.recentNavEvent)})),b(C||i.mostRecentlyFocusedNode||d())}i.recentNavEvent=void 0},F=function(c){var f=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1;i.recentNavEvent=c;var p=g({event:c,isBackward:f});p&&(ge(c)&&c.preventDefault(),b(p))},L=function(c){if(Tr(c)&&ye(a.escapeDeactivates,c)!==!1){c.preventDefault(),s.deactivate();return}(a.isKeyForward(c)||a.isKeyBackward(c))&&F(c,a.isKeyBackward(c))},_=function(c){var f=Ae(c);l(f,c)>=0||ye(a.clickOutsideDeactivates,c)||ye(a.allowOutsideClick,c)||(c.preventDefault(),c.stopImmediatePropagation())},V=function(){if(i.active)return lt.activateTrap(n,s),i.delayInitialFocusTimer=a.delayInitialFocus?ct(function(){b(d())}):b(d()),r.addEventListener("focusin",T,!0),r.addEventListener("mousedown",S,{capture:!0,passive:!1}),r.addEventListener("touchstart",S,{capture:!0,passive:!1}),r.addEventListener("click",_,{capture:!0,passive:!1}),r.addEventListener("keydown",L,{capture:!0,passive:!1}),s},N=function(){if(i.active)return r.removeEventListener("focusin",T,!0),r.removeEventListener("mousedown",S,!0),r.removeEventListener("touchstart",S,!0),r.removeEventListener("click",_,!0),r.removeEventListener("keydown",L,!0),s},R=function(c){var f=c.some(function(p){var C=Array.from(p.removedNodes);return C.some(function(I){return I===i.mostRecentlyFocusedNode})});f&&b(d())},A=typeof window<"u"&&"MutationObserver"in window?new MutationObserver(R):void 0,O=function(){A&&(A.disconnect(),i.active&&!i.paused&&i.containers.map(function(c){A.observe(c,{subtree:!0,childList:!0})}))};return s={get active(){return i.active},get paused(){return i.paused},activate:function(c){if(i.active)return this;var f=u(c,"onActivate"),p=u(c,"onPostActivate"),C=u(c,"checkCanFocusTrap");C||v(),i.active=!0,i.paused=!1,i.nodeFocusedBeforeActivation=r.activeElement,f==null||f();var I=function(){C&&v(),V(),O(),p==null||p()};return C?(C(i.containers.concat()).then(I,I),this):(I(),this)},deactivate:function(c){if(!i.active)return this;var f=ut({onDeactivate:a.onDeactivate,onPostDeactivate:a.onPostDeactivate,checkCanReturnFocus:a.checkCanReturnFocus},c);clearTimeout(i.delayInitialFocusTimer),i.delayInitialFocusTimer=void 0,N(),i.active=!1,i.paused=!1,O(),lt.deactivateTrap(n,s);var p=u(f,"onDeactivate"),C=u(f,"onPostDeactivate"),I=u(f,"checkCanReturnFocus"),M=u(f,"returnFocus","returnFocusOnDeactivate");p==null||p();var P=function(){ct(function(){M&&b(E(i.nodeFocusedBeforeActivation)),C==null||C()})};return M&&I?(I(E(i.nodeFocusedBeforeActivation)).then(P,P),this):(P(),this)},pause:function(c){if(i.paused||!i.active)return this;var f=u(c,"onPause"),p=u(c,"onPostPause");return i.paused=!0,f==null||f(),N(),O(),p==null||p(),this},unpause:function(c){if(!i.paused||!i.active)return this;var f=u(c,"onUnpause"),p=u(c,"onPostUnpause");return i.paused=!1,f==null||f(),v(),V(),O(),p==null||p(),this},updateContainerElements:function(c){var f=[].concat(c).filter(Boolean);return i.containers=f.map(function(p){return typeof p=="string"?r.querySelector(p):p}),i.active&&v(),O(),this}},s.updateContainerElements(e),s};function kr(o,e={}){let t;const{immediate:r,...n}=e,a=oe(!1),i=oe(!1),s=d=>t&&t.activate(d),u=d=>t&&t.deactivate(d),l=()=>{t&&(t.pause(),i.value=!0)},h=()=>{t&&(t.unpause(),i.value=!1)};return $e(()=>kt(o),d=>{d&&(t=Dr(d,{...n,onActivate(){a.value=!0,e.onActivate&&e.onActivate()},onDeactivate(){a.value=!1,e.onDeactivate&&e.onDeactivate()}}),r&&s())},{flush:"post"}),Ot(()=>u()),{hasFocus:a,isPaused:i,activate:s,deactivate:u,pause:l,unpause:h}}class fe{constructor(e,t=!0,r=[],n=5e3){this.ctx=e,this.iframes=t,this.exclude=r,this.iframesTimeout=n}static matches(e,t){const r=typeof t=="string"?[t]:t,n=e.matches||e.matchesSelector||e.msMatchesSelector||e.mozMatchesSelector||e.oMatchesSelector||e.webkitMatchesSelector;if(n){let a=!1;return r.every(i=>n.call(e,i)?(a=!0,!1):!0),a}else return!1}getContexts(){let e,t=[];return typeof this.ctx>"u"||!this.ctx?e=[]:NodeList.prototype.isPrototypeOf(this.ctx)?e=Array.prototype.slice.call(this.ctx):Array.isArray(this.ctx)?e=this.ctx:typeof this.ctx=="string"?e=Array.prototype.slice.call(document.querySelectorAll(this.ctx)):e=[this.ctx],e.forEach(r=>{const n=t.filter(a=>a.contains(r)).length>0;t.indexOf(r)===-1&&!n&&t.push(r)}),t}getIframeContents(e,t,r=()=>{}){let n;try{const a=e.contentWindow;if(n=a.document,!a||!n)throw new Error("iframe inaccessible")}catch{r()}n&&t(n)}isIframeBlank(e){const t="about:blank",r=e.getAttribute("src").trim();return e.contentWindow.location.href===t&&r!==t&&r}observeIframeLoad(e,t,r){let n=!1,a=null;const i=()=>{if(!n){n=!0,clearTimeout(a);try{this.isIframeBlank(e)||(e.removeEventListener("load",i),this.getIframeContents(e,t,r))}catch{r()}}};e.addEventListener("load",i),a=setTimeout(i,this.iframesTimeout)}onIframeReady(e,t,r){try{e.contentWindow.document.readyState==="complete"?this.isIframeBlank(e)?this.observeIframeLoad(e,t,r):this.getIframeContents(e,t,r):this.observeIframeLoad(e,t,r)}catch{r()}}waitForIframes(e,t){let r=0;this.forEachIframe(e,()=>!0,n=>{r++,this.waitForIframes(n.querySelector("html"),()=>{--r||t()})},n=>{n||t()})}forEachIframe(e,t,r,n=()=>{}){let a=e.querySelectorAll("iframe"),i=a.length,s=0;a=Array.prototype.slice.call(a);const u=()=>{--i<=0&&n(s)};i||u(),a.forEach(l=>{fe.matches(l,this.exclude)?u():this.onIframeReady(l,h=>{t(l)&&(s++,r(h)),u()},u)})}createIterator(e,t,r){return document.createNodeIterator(e,t,r,!1)}createInstanceOnIframe(e){return new fe(e.querySelector("html"),this.iframes)}compareNodeIframe(e,t,r){const n=e.compareDocumentPosition(r),a=Node.DOCUMENT_POSITION_PRECEDING;if(n&a)if(t!==null){const i=t.compareDocumentPosition(r),s=Node.DOCUMENT_POSITION_FOLLOWING;if(i&s)return!0}else return!0;return!1}getIteratorNode(e){const t=e.previousNode();let r;return t===null?r=e.nextNode():r=e.nextNode()&&e.nextNode(),{prevNode:t,node:r}}checkIframeFilter(e,t,r,n){let a=!1,i=!1;return n.forEach((s,u)=>{s.val===r&&(a=u,i=s.handled)}),this.compareNodeIframe(e,t,r)?(a===!1&&!i?n.push({val:r,handled:!0}):a!==!1&&!i&&(n[a].handled=!0),!0):(a===!1&&n.push({val:r,handled:!1}),!1)}handleOpenIframes(e,t,r,n){e.forEach(a=>{a.handled||this.getIframeContents(a.val,i=>{this.createInstanceOnIframe(i).forEachNode(t,r,n)})})}iterateThroughNodes(e,t,r,n,a){const i=this.createIterator(t,e,n);let s=[],u=[],l,h,d=()=>({prevNode:h,node:l}=this.getIteratorNode(i),l);for(;d();)this.iframes&&this.forEachIframe(t,v=>this.checkIframeFilter(l,h,v,s),v=>{this.createInstanceOnIframe(v).forEachNode(e,y=>u.push(y),n)}),u.push(l);u.forEach(v=>{r(v)}),this.iframes&&this.handleOpenIframes(s,e,r,n),a()}forEachNode(e,t,r,n=()=>{}){const a=this.getContexts();let i=a.length;i||n(),a.forEach(s=>{const u=()=>{this.iterateThroughNodes(e,s,t,r,()=>{--i<=0&&n()})};this.iframes?this.waitForIframes(s,u):u()})}}let Or=class{constructor(e){this.ctx=e,this.ie=!1;const t=window.navigator.userAgent;(t.indexOf("MSIE")>-1||t.indexOf("Trident")>-1)&&(this.ie=!0)}set opt(e){this._opt=Object.assign({},{element:"",className:"",exclude:[],iframes:!1,iframesTimeout:5e3,separateWordSearch:!0,diacritics:!0,synonyms:{},accuracy:"partially",acrossElements:!1,caseSensitive:!1,ignoreJoiners:!1,ignoreGroups:0,ignorePunctuation:[],wildcards:"disabled",each:()=>{},noMatch:()=>{},filter:()=>!0,done:()=>{},debug:!1,log:window.console},e)}get opt(){return this._opt}get iterator(){return new fe(this.ctx,this.opt.iframes,this.opt.exclude,this.opt.iframesTimeout)}log(e,t="debug"){const r=this.opt.log;this.opt.debug&&typeof r=="object"&&typeof r[t]=="function"&&r[t](`mark.js: ${e}`)}escapeStr(e){return e.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g,"\\$&")}createRegExp(e){return this.opt.wildcards!=="disabled"&&(e=this.setupWildcardsRegExp(e)),e=this.escapeStr(e),Object.keys(this.opt.synonyms).length&&(e=this.createSynonymsRegExp(e)),(this.opt.ignoreJoiners||this.opt.ignorePunctuation.length)&&(e=this.setupIgnoreJoinersRegExp(e)),this.opt.diacritics&&(e=this.createDiacriticsRegExp(e)),e=this.createMergedBlanksRegExp(e),(this.opt.ignoreJoiners||this.opt.ignorePunctuation.length)&&(e=this.createJoinersRegExp(e)),this.opt.wildcards!=="disabled"&&(e=this.createWildcardsRegExp(e)),e=this.createAccuracyRegExp(e),e}createSynonymsRegExp(e){const t=this.opt.synonyms,r=this.opt.caseSensitive?"":"i",n=this.opt.ignoreJoiners||this.opt.ignorePunctuation.length?"\0":"";for(let a in t)if(t.hasOwnProperty(a)){const i=t[a],s=this.opt.wildcards!=="disabled"?this.setupWildcardsRegExp(a):this.escapeStr(a),u=this.opt.wildcards!=="disabled"?this.setupWildcardsRegExp(i):this.escapeStr(i);s!==""&&u!==""&&(e=e.replace(new RegExp(`(${this.escapeStr(s)}|${this.escapeStr(u)})`,`gm${r}`),n+`(${this.processSynomyms(s)}|${this.processSynomyms(u)})`+n))}return e}processSynomyms(e){return(this.opt.ignoreJoiners||this.opt.ignorePunctuation.length)&&(e=this.setupIgnoreJoinersRegExp(e)),e}setupWildcardsRegExp(e){return e=e.replace(/(?:\\)*\?/g,t=>t.charAt(0)==="\\"?"?":""),e.replace(/(?:\\)*\*/g,t=>t.charAt(0)==="\\"?"*":"")}createWildcardsRegExp(e){let t=this.opt.wildcards==="withSpaces";return e.replace(/\u0001/g,t?"[\\S\\s]?":"\\S?").replace(/\u0002/g,t?"[\\S\\s]*?":"\\S*")}setupIgnoreJoinersRegExp(e){return e.replace(/[^(|)\\]/g,(t,r,n)=>{let a=n.charAt(r+1);return/[(|)\\]/.test(a)||a===""?t:t+"\0"})}createJoinersRegExp(e){let t=[];const r=this.opt.ignorePunctuation;return Array.isArray(r)&&r.length&&t.push(this.escapeStr(r.join(""))),this.opt.ignoreJoiners&&t.push("\\u00ad\\u200b\\u200c\\u200d"),t.length?e.split(/\u0000+/).join(`[${t.join("")}]*`):e}createDiacriticsRegExp(e){const t=this.opt.caseSensitive?"":"i",r=this.opt.caseSensitive?["aàáảãạăằắẳẵặâầấẩẫậäåāą","AÀÁẢÃẠĂẰẮẲẴẶÂẦẤẨẪẬÄÅĀĄ","cçćč","CÇĆČ","dđď","DĐĎ","eèéẻẽẹêềếểễệëěēę","EÈÉẺẼẸÊỀẾỂỄỆËĚĒĘ","iìíỉĩịîïī","IÌÍỈĨỊÎÏĪ","lł","LŁ","nñňń","NÑŇŃ","oòóỏõọôồốổỗộơởỡớờợöøō","OÒÓỎÕỌÔỒỐỔỖỘƠỞỠỚỜỢÖØŌ","rř","RŘ","sšśșş","SŠŚȘŞ","tťțţ","TŤȚŢ","uùúủũụưừứửữựûüůū","UÙÚỦŨỤƯỪỨỬỮỰÛÜŮŪ","yýỳỷỹỵÿ","YÝỲỶỸỴŸ","zžżź","ZŽŻŹ"]:["aàáảãạăằắẳẵặâầấẩẫậäåāąAÀÁẢÃẠĂẰẮẲẴẶÂẦẤẨẪẬÄÅĀĄ","cçćčCÇĆČ","dđďDĐĎ","eèéẻẽẹêềếểễệëěēęEÈÉẺẼẸÊỀẾỂỄỆËĚĒĘ","iìíỉĩịîïīIÌÍỈĨỊÎÏĪ","lłLŁ","nñňńNÑŇŃ","oòóỏõọôồốổỗộơởỡớờợöøōOÒÓỎÕỌÔỒỐỔỖỘƠỞỠỚỜỢÖØŌ","rřRŘ","sšśșşSŠŚȘŞ","tťțţTŤȚŢ","uùúủũụưừứửữựûüůūUÙÚỦŨỤƯỪỨỬỮỰÛÜŮŪ","yýỳỷỹỵÿYÝỲỶỸỴŸ","zžżźZŽŻŹ"];let n=[];return e.split("").forEach(a=>{r.every(i=>{if(i.indexOf(a)!==-1){if(n.indexOf(i)>-1)return!1;e=e.replace(new RegExp(`[${i}]`,`gm${t}`),`[${i}]`),n.push(i)}return!0})}),e}createMergedBlanksRegExp(e){return e.replace(/[\s]+/gmi,"[\\s]+")}createAccuracyRegExp(e){const t="!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~¡¿";let r=this.opt.accuracy,n=typeof r=="string"?r:r.value,a=typeof r=="string"?[]:r.limiters,i="";switch(a.forEach(s=>{i+=`|${this.escapeStr(s)}`}),n){case"partially":default:return`()(${e})`;case"complementary":return i="\\s"+(i||this.escapeStr(t)),`()([^${i}]*${e}[^${i}]*)`;case"exactly":return`(^|\\s${i})(${e})(?=$|\\s${i})`}}getSeparatedKeywords(e){let t=[];return e.forEach(r=>{this.opt.separateWordSearch?r.split(" ").forEach(n=>{n.trim()&&t.indexOf(n)===-1&&t.push(n)}):r.trim()&&t.indexOf(r)===-1&&t.push(r)}),{keywords:t.sort((r,n)=>n.length-r.length),length:t.length}}isNumeric(e){return Number(parseFloat(e))==e}checkRanges(e){if(!Array.isArray(e)||Object.prototype.toString.call(e[0])!=="[object Object]")return this.log("markRanges() will only accept an array of objects"),this.opt.noMatch(e),[];const t=[];let r=0;return e.sort((n,a)=>n.start-a.start).forEach(n=>{let{start:a,end:i,valid:s}=this.callNoMatchOnInvalidRanges(n,r);s&&(n.start=a,n.length=i-a,t.push(n),r=i)}),t}callNoMatchOnInvalidRanges(e,t){let r,n,a=!1;return e&&typeof e.start<"u"?(r=parseInt(e.start,10),n=r+parseInt(e.length,10),this.isNumeric(e.start)&&this.isNumeric(e.length)&&n-t>0&&n-r>0?a=!0:(this.log(`Ignoring invalid or overlapping range: ${JSON.stringify(e)}`),this.opt.noMatch(e))):(this.log(`Ignoring invalid range: ${JSON.stringify(e)}`),this.opt.noMatch(e)),{start:r,end:n,valid:a}}checkWhitespaceRanges(e,t,r){let n,a=!0,i=r.length,s=t-i,u=parseInt(e.start,10)-s;return u=u>i?i:u,n=u+parseInt(e.length,10),n>i&&(n=i,this.log(`End range automatically set to the max value of ${i}`)),u<0||n-u<0||u>i||n>i?(a=!1,this.log(`Invalid range: ${JSON.stringify(e)}`),this.opt.noMatch(e)):r.substring(u,n).replace(/\s+/g,"")===""&&(a=!1,this.log("Skipping whitespace only range: "+JSON.stringify(e)),this.opt.noMatch(e)),{start:u,end:n,valid:a}}getTextNodes(e){let t="",r=[];this.iterator.forEachNode(NodeFilter.SHOW_TEXT,n=>{r.push({start:t.length,end:(t+=n.textContent).length,node:n})},n=>this.matchesExclude(n.parentNode)?NodeFilter.FILTER_REJECT:NodeFilter.FILTER_ACCEPT,()=>{e({value:t,nodes:r})})}matchesExclude(e){return fe.matches(e,this.opt.exclude.concat(["script","style","title","head","html"]))}wrapRangeInTextNode(e,t,r){const n=this.opt.element?this.opt.element:"mark",a=e.splitText(t),i=a.splitText(r-t);let s=document.createElement(n);return s.setAttribute("data-markjs","true"),this.opt.className&&s.setAttribute("class",this.opt.className),s.textContent=a.textContent,a.parentNode.replaceChild(s,a),i}wrapRangeInMappedTextNode(e,t,r,n,a){e.nodes.every((i,s)=>{const u=e.nodes[s+1];if(typeof u>"u"||u.start>t){if(!n(i.node))return!1;const l=t-i.start,h=(r>i.end?i.end:r)-i.start,d=e.value.substr(0,i.start),v=e.value.substr(h+i.start);if(i.node=this.wrapRangeInTextNode(i.node,l,h),e.value=d+v,e.nodes.forEach((y,b)=>{b>=s&&(e.nodes[b].start>0&&b!==s&&(e.nodes[b].start-=h),e.nodes[b].end-=h)}),r-=h,a(i.node.previousSibling,i.start),r>i.end)t=i.end;else return!1}return!0})}wrapMatches(e,t,r,n,a){const i=t===0?0:t+1;this.getTextNodes(s=>{s.nodes.forEach(u=>{u=u.node;let l;for(;(l=e.exec(u.textContent))!==null&&l[i]!=="";){if(!r(l[i],u))continue;let h=l.index;if(i!==0)for(let d=1;d{let u;for(;(u=e.exec(s.value))!==null&&u[i]!=="";){let l=u.index;if(i!==0)for(let d=1;dr(u[i],d),(d,v)=>{e.lastIndex=v,n(d)})}a()})}wrapRangeFromIndex(e,t,r,n){this.getTextNodes(a=>{const i=a.value.length;e.forEach((s,u)=>{let{start:l,end:h,valid:d}=this.checkWhitespaceRanges(s,i,a.value);d&&this.wrapRangeInMappedTextNode(a,l,h,v=>t(v,s,a.value.substring(l,h),u),v=>{r(v,s)})}),n()})}unwrapMatches(e){const t=e.parentNode;let r=document.createDocumentFragment();for(;e.firstChild;)r.appendChild(e.removeChild(e.firstChild));t.replaceChild(r,e),this.ie?this.normalizeTextNode(t):t.normalize()}normalizeTextNode(e){if(e){if(e.nodeType===3)for(;e.nextSibling&&e.nextSibling.nodeType===3;)e.nodeValue+=e.nextSibling.nodeValue,e.parentNode.removeChild(e.nextSibling);else this.normalizeTextNode(e.firstChild);this.normalizeTextNode(e.nextSibling)}}markRegExp(e,t){this.opt=t,this.log(`Searching with expression "${e}"`);let r=0,n="wrapMatches";const a=i=>{r++,this.opt.each(i)};this.opt.acrossElements&&(n="wrapMatchesAcrossElements"),this[n](e,this.opt.ignoreGroups,(i,s)=>this.opt.filter(s,i,r),a,()=>{r===0&&this.opt.noMatch(e),this.opt.done(r)})}mark(e,t){this.opt=t;let r=0,n="wrapMatches";const{keywords:a,length:i}=this.getSeparatedKeywords(typeof e=="string"?[e]:e),s=this.opt.caseSensitive?"":"i",u=l=>{let h=new RegExp(this.createRegExp(l),`gm${s}`),d=0;this.log(`Searching with expression "${h}"`),this[n](h,1,(v,y)=>this.opt.filter(y,l,r,d),v=>{d++,r++,this.opt.each(v)},()=>{d===0&&this.opt.noMatch(l),a[i-1]===l?this.opt.done(r):u(a[a.indexOf(l)+1])})};this.opt.acrossElements&&(n="wrapMatchesAcrossElements"),i===0?this.opt.done(r):u(a[0])}markRanges(e,t){this.opt=t;let r=0,n=this.checkRanges(e);n&&n.length?(this.log("Starting to mark with the following ranges: "+JSON.stringify(n)),this.wrapRangeFromIndex(n,(a,i,s,u)=>this.opt.filter(a,i,s,u),(a,i)=>{r++,this.opt.each(a,i)},()=>{this.opt.done(r)})):this.opt.done(r)}unmark(e){this.opt=e;let t=this.opt.element?this.opt.element:"*";t+="[data-markjs]",this.opt.className&&(t+=`.${this.opt.className}`),this.log(`Removal selector "${t}"`),this.iterator.forEachNode(NodeFilter.SHOW_ELEMENT,r=>{this.unwrapMatches(r)},r=>{const n=fe.matches(r,t),a=this.matchesExclude(r);return!n||a?NodeFilter.FILTER_REJECT:NodeFilter.FILTER_ACCEPT},this.opt.done)}};function Rr(o){const e=new Or(o);return this.mark=(t,r)=>(e.mark(t,r),this),this.markRegExp=(t,r)=>(e.markRegExp(t,r),this),this.markRanges=(t,r)=>(e.markRanges(t,r),this),this.unmark=t=>(e.unmark(t),this),this}var W=function(){return W=Object.assign||function(e){for(var t,r=1,n=arguments.length;r0&&a[a.length-1])&&(l[0]===6||l[0]===2)){t=0;continue}if(l[0]===3&&(!a||l[1]>a[0]&&l[1]=o.length&&(o=void 0),{value:o&&o[r++],done:!o}}};throw new TypeError(e?"Object is not iterable.":"Symbol.iterator is not defined.")}function J(o,e){var t=typeof Symbol=="function"&&o[Symbol.iterator];if(!t)return o;var r=t.call(o),n,a=[],i;try{for(;(e===void 0||e-- >0)&&!(n=r.next()).done;)a.push(n.value)}catch(s){i={error:s}}finally{try{n&&!n.done&&(t=r.return)&&t.call(r)}finally{if(i)throw i.error}}return a}var Lr="ENTRIES",Ft="KEYS",Et="VALUES",G="",Me=function(){function o(e,t){var r=e._tree,n=Array.from(r.keys());this.set=e,this._type=t,this._path=n.length>0?[{node:r,keys:n}]:[]}return o.prototype.next=function(){var e=this.dive();return this.backtrack(),e},o.prototype.dive=function(){if(this._path.length===0)return{done:!0,value:void 0};var e=ce(this._path),t=e.node,r=e.keys;if(ce(r)===G)return{done:!1,value:this.result()};var n=t.get(ce(r));return this._path.push({node:n,keys:Array.from(n.keys())}),this.dive()},o.prototype.backtrack=function(){if(this._path.length!==0){var e=ce(this._path).keys;e.pop(),!(e.length>0)&&(this._path.pop(),this.backtrack())}},o.prototype.key=function(){return this.set._prefix+this._path.map(function(e){var t=e.keys;return ce(t)}).filter(function(e){return e!==G}).join("")},o.prototype.value=function(){return ce(this._path).node.get(G)},o.prototype.result=function(){switch(this._type){case Et:return this.value();case Ft:return this.key();default:return[this.key(),this.value()]}},o.prototype[Symbol.iterator]=function(){return this},o}(),ce=function(o){return o[o.length-1]},Pr=function(o,e,t){var r=new Map;if(e===void 0)return r;for(var n=e.length+1,a=n+t,i=new Uint8Array(a*n).fill(t+1),s=0;st)continue e}St(o.get(y),e,t,r,n,E,i,s+y)}}}catch(f){u={error:f}}finally{try{v&&!v.done&&(l=d.return)&&l.call(d)}finally{if(u)throw u.error}}},Le=function(){function o(e,t){e===void 0&&(e=new Map),t===void 0&&(t=""),this._size=void 0,this._tree=e,this._prefix=t}return o.prototype.atPrefix=function(e){var t,r;if(!e.startsWith(this._prefix))throw new Error("Mismatched prefix");var n=J(ke(this._tree,e.slice(this._prefix.length)),2),a=n[0],i=n[1];if(a===void 0){var s=J(je(i),2),u=s[0],l=s[1];try{for(var h=D(u.keys()),d=h.next();!d.done;d=h.next()){var v=d.value;if(v!==G&&v.startsWith(l)){var y=new Map;return y.set(v.slice(l.length),u.get(v)),new o(y,e)}}}catch(b){t={error:b}}finally{try{d&&!d.done&&(r=h.return)&&r.call(h)}finally{if(t)throw t.error}}}return new o(a,e)},o.prototype.clear=function(){this._size=void 0,this._tree.clear()},o.prototype.delete=function(e){return this._size=void 0,zr(this._tree,e)},o.prototype.entries=function(){return new Me(this,Lr)},o.prototype.forEach=function(e){var t,r;try{for(var n=D(this),a=n.next();!a.done;a=n.next()){var i=J(a.value,2),s=i[0],u=i[1];e(s,u,this)}}catch(l){t={error:l}}finally{try{a&&!a.done&&(r=n.return)&&r.call(n)}finally{if(t)throw t.error}}},o.prototype.fuzzyGet=function(e,t){return Pr(this._tree,e,t)},o.prototype.get=function(e){var t=Ke(this._tree,e);return t!==void 0?t.get(G):void 0},o.prototype.has=function(e){var t=Ke(this._tree,e);return t!==void 0&&t.has(G)},o.prototype.keys=function(){return new Me(this,Ft)},o.prototype.set=function(e,t){if(typeof e!="string")throw new Error("key must be a string");this._size=void 0;var r=Pe(this._tree,e);return r.set(G,t),this},Object.defineProperty(o.prototype,"size",{get:function(){if(this._size)return this._size;this._size=0;for(var e=this.entries();!e.next().done;)this._size+=1;return this._size},enumerable:!1,configurable:!0}),o.prototype.update=function(e,t){if(typeof e!="string")throw new Error("key must be a string");this._size=void 0;var r=Pe(this._tree,e);return r.set(G,t(r.get(G))),this},o.prototype.fetch=function(e,t){if(typeof e!="string")throw new Error("key must be a string");this._size=void 0;var r=Pe(this._tree,e),n=r.get(G);return n===void 0&&r.set(G,n=t()),n},o.prototype.values=function(){return new Me(this,Et)},o.prototype[Symbol.iterator]=function(){return this.entries()},o.from=function(e){var t,r,n=new o;try{for(var a=D(e),i=a.next();!i.done;i=a.next()){var s=J(i.value,2),u=s[0],l=s[1];n.set(u,l)}}catch(h){t={error:h}}finally{try{i&&!i.done&&(r=a.return)&&r.call(a)}finally{if(t)throw t.error}}return n},o.fromObject=function(e){return o.from(Object.entries(e))},o}(),ke=function(o,e,t){var r,n;if(t===void 0&&(t=[]),e.length===0||o==null)return[o,t];try{for(var a=D(o.keys()),i=a.next();!i.done;i=a.next()){var s=i.value;if(s!==G&&e.startsWith(s))return t.push([o,s]),ke(o.get(s),e.slice(s.length),t)}}catch(u){r={error:u}}finally{try{i&&!i.done&&(n=a.return)&&n.call(a)}finally{if(r)throw r.error}}return t.push([o,e]),ke(void 0,"",t)},Ke=function(o,e){var t,r;if(e.length===0||o==null)return o;try{for(var n=D(o.keys()),a=n.next();!a.done;a=n.next()){var i=a.value;if(i!==G&&e.startsWith(i))return Ke(o.get(i),e.slice(i.length))}}catch(s){t={error:s}}finally{try{a&&!a.done&&(r=n.return)&&r.call(n)}finally{if(t)throw t.error}}},Pe=function(o,e){var t,r,n=e.length;e:for(var a=0;o&&a0)throw new Error("Expected documents to be present. Omit the argument to remove all documents.");this._index=new Le,this._documentCount=0,this._documentIds=new Map,this._idToShortId=new Map,this._fieldLength=new Map,this._avgFieldLength=[],this._storedFields=new Map,this._nextId=0}},o.prototype.discard=function(e){var t=this,r=this._idToShortId.get(e);if(r==null)throw new Error("MiniSearch: cannot discard document with ID ".concat(e,": it is not in the index"));this._idToShortId.delete(e),this._documentIds.delete(r),this._storedFields.delete(r),(this._fieldLength.get(r)||[]).forEach(function(n,a){t.removeFieldLength(r,a,t._documentCount,n)}),this._fieldLength.delete(r),this._documentCount-=1,this._dirtCount+=1,this.maybeAutoVacuum()},o.prototype.maybeAutoVacuum=function(){if(this._options.autoVacuum!==!1){var e=this._options.autoVacuum,t=e.minDirtFactor,r=e.minDirtCount,n=e.batchSize,a=e.batchWait;this.conditionalVacuum({batchSize:n,batchWait:a},{minDirtCount:r,minDirtFactor:t})}},o.prototype.discardAll=function(e){var t,r,n=this._options.autoVacuum;try{this._options.autoVacuum=!1;try{for(var a=D(e),i=a.next();!i.done;i=a.next()){var s=i.value;this.discard(s)}}catch(u){t={error:u}}finally{try{i&&!i.done&&(r=a.return)&&r.call(a)}finally{if(t)throw t.error}}}finally{this._options.autoVacuum=n}this.maybeAutoVacuum()},o.prototype.replace=function(e){var t=this._options,r=t.idField,n=t.extractField,a=n(e,r);this.discard(a),this.add(e)},o.prototype.vacuum=function(e){return e===void 0&&(e={}),this.conditionalVacuum(e)},o.prototype.conditionalVacuum=function(e,t){var r=this;return this._currentVacuum?(this._enqueuedVacuumConditions=this._enqueuedVacuumConditions&&t,this._enqueuedVacuum!=null?this._enqueuedVacuum:(this._enqueuedVacuum=this._currentVacuum.then(function(){var n=r._enqueuedVacuumConditions;return r._enqueuedVacuumConditions=Ue,r.performVacuuming(e,n)}),this._enqueuedVacuum)):this.vacuumConditionsMet(t)===!1?Promise.resolve():(this._currentVacuum=this.performVacuuming(e),this._currentVacuum)},o.prototype.performVacuuming=function(e,t){return _r(this,void 0,void 0,function(){var r,n,a,i,s,u,l,h,d,v,y,b,E,g,S,T,F,L,_,V,N,R,A,O,w;return Mr(this,function(c){switch(c.label){case 0:if(r=this._dirtCount,!this.vacuumConditionsMet(t))return[3,10];n=e.batchSize||Je.batchSize,a=e.batchWait||Je.batchWait,i=1,c.label=1;case 1:c.trys.push([1,7,8,9]),s=D(this._index),u=s.next(),c.label=2;case 2:if(u.done)return[3,6];l=J(u.value,2),h=l[0],d=l[1];try{for(v=(R=void 0,D(d)),y=v.next();!y.done;y=v.next()){b=J(y.value,2),E=b[0],g=b[1];try{for(S=(O=void 0,D(g)),T=S.next();!T.done;T=S.next())F=J(T.value,1),L=F[0],!this._documentIds.has(L)&&(g.size<=1?d.delete(E):g.delete(L))}catch(f){O={error:f}}finally{try{T&&!T.done&&(w=S.return)&&w.call(S)}finally{if(O)throw O.error}}}}catch(f){R={error:f}}finally{try{y&&!y.done&&(A=v.return)&&A.call(v)}finally{if(R)throw R.error}}return this._index.get(h).size===0&&this._index.delete(h),i%n!==0?[3,4]:[4,new Promise(function(f){return setTimeout(f,a)})];case 3:c.sent(),c.label=4;case 4:i+=1,c.label=5;case 5:return u=s.next(),[3,2];case 6:return[3,9];case 7:return _=c.sent(),V={error:_},[3,9];case 8:try{u&&!u.done&&(N=s.return)&&N.call(s)}finally{if(V)throw V.error}return[7];case 9:this._dirtCount-=r,c.label=10;case 10:return[4,null];case 11:return c.sent(),this._currentVacuum=this._enqueuedVacuum,this._enqueuedVacuum=null,[2]}})})},o.prototype.vacuumConditionsMet=function(e){if(e==null)return!0;var t=e.minDirtCount,r=e.minDirtFactor;return t=t||Ve.minDirtCount,r=r||Ve.minDirtFactor,this.dirtCount>=t&&this.dirtFactor>=r},Object.defineProperty(o.prototype,"isVacuuming",{get:function(){return this._currentVacuum!=null},enumerable:!1,configurable:!0}),Object.defineProperty(o.prototype,"dirtCount",{get:function(){return this._dirtCount},enumerable:!1,configurable:!0}),Object.defineProperty(o.prototype,"dirtFactor",{get:function(){return this._dirtCount/(1+this._documentCount+this._dirtCount)},enumerable:!1,configurable:!0}),o.prototype.has=function(e){return this._idToShortId.has(e)},o.prototype.getStoredFields=function(e){var t=this._idToShortId.get(e);if(t!=null)return this._storedFields.get(t)},o.prototype.search=function(e,t){var r,n;t===void 0&&(t={});var a=this.executeQuery(e,t),i=[];try{for(var s=D(a),u=s.next();!u.done;u=s.next()){var l=J(u.value,2),h=l[0],d=l[1],v=d.score,y=d.terms,b=d.match,E=y.length||1,g={id:this._documentIds.get(h),score:v*E,terms:Object.keys(b),queryTerms:y,match:b};Object.assign(g,this._storedFields.get(h)),(t.filter==null||t.filter(g))&&i.push(g)}}catch(S){r={error:S}}finally{try{u&&!u.done&&(n=s.return)&&n.call(s)}finally{if(r)throw r.error}}return e===o.wildcard&&t.boostDocument==null&&this._options.searchOptions.boostDocument==null||i.sort(vt),i},o.prototype.autoSuggest=function(e,t){var r,n,a,i;t===void 0&&(t={}),t=W(W({},this._options.autoSuggestOptions),t);var s=new Map;try{for(var u=D(this.search(e,t)),l=u.next();!l.done;l=u.next()){var h=l.value,d=h.score,v=h.terms,y=v.join(" "),b=s.get(y);b!=null?(b.score+=d,b.count+=1):s.set(y,{score:d,terms:v,count:1})}}catch(_){r={error:_}}finally{try{l&&!l.done&&(n=u.return)&&n.call(u)}finally{if(r)throw r.error}}var E=[];try{for(var g=D(s),S=g.next();!S.done;S=g.next()){var T=J(S.value,2),b=T[0],F=T[1],d=F.score,v=F.terms,L=F.count;E.push({suggestion:b,terms:v,score:d/L})}}catch(_){a={error:_}}finally{try{S&&!S.done&&(i=g.return)&&i.call(g)}finally{if(a)throw a.error}}return E.sort(vt),E},Object.defineProperty(o.prototype,"documentCount",{get:function(){return this._documentCount},enumerable:!1,configurable:!0}),Object.defineProperty(o.prototype,"termCount",{get:function(){return this._index.size},enumerable:!1,configurable:!0}),o.loadJSON=function(e,t){if(t==null)throw new Error("MiniSearch: loadJSON should be given the same options used when serializing the index");return this.loadJS(JSON.parse(e),t)},o.getDefault=function(e){if(Be.hasOwnProperty(e))return ze(Be,e);throw new Error('MiniSearch: unknown option "'.concat(e,'"'))},o.loadJS=function(e,t){var r,n,a,i,s,u,l=e.index,h=e.documentCount,d=e.nextId,v=e.documentIds,y=e.fieldIds,b=e.fieldLength,E=e.averageFieldLength,g=e.storedFields,S=e.dirtCount,T=e.serializationVersion;if(T!==1&&T!==2)throw new Error("MiniSearch: cannot deserialize an index created with an incompatible version");var F=new o(t);F._documentCount=h,F._nextId=d,F._documentIds=Te(v),F._idToShortId=new Map,F._fieldIds=y,F._fieldLength=Te(b),F._avgFieldLength=E,F._storedFields=Te(g),F._dirtCount=S||0,F._index=new Le;try{for(var L=D(F._documentIds),_=L.next();!_.done;_=L.next()){var V=J(_.value,2),N=V[0],R=V[1];F._idToShortId.set(R,N)}}catch(z){r={error:z}}finally{try{_&&!_.done&&(n=L.return)&&n.call(L)}finally{if(r)throw r.error}}try{for(var A=D(l),O=A.next();!O.done;O=A.next()){var w=J(O.value,2),c=w[0],f=w[1],p=new Map;try{for(var C=(s=void 0,D(Object.keys(f))),I=C.next();!I.done;I=C.next()){var M=I.value,P=f[M];T===1&&(P=P.ds),p.set(parseInt(M,10),Te(P))}}catch(z){s={error:z}}finally{try{I&&!I.done&&(u=C.return)&&u.call(C)}finally{if(s)throw s.error}}F._index.set(c,p)}}catch(z){a={error:z}}finally{try{O&&!O.done&&(i=A.return)&&i.call(A)}finally{if(a)throw a.error}}return F},o.prototype.executeQuery=function(e,t){var r=this;if(t===void 0&&(t={}),e===o.wildcard)return this.executeWildcardQuery(t);if(typeof e!="string"){var n=W(W(W({},t),e),{queries:void 0}),a=e.queries.map(function(g){return r.executeQuery(g,n)});return this.combineResults(a,n.combineWith)}var i=this._options,s=i.tokenize,u=i.processTerm,l=i.searchOptions,h=W(W({tokenize:s,processTerm:u},l),t),d=h.tokenize,v=h.processTerm,y=d(e).flatMap(function(g){return v(g)}).filter(function(g){return!!g}),b=y.map(Jr(h)),E=b.map(function(g){return r.executeQuerySpec(g,h)});return this.combineResults(E,h.combineWith)},o.prototype.executeQuerySpec=function(e,t){var r,n,a,i,s=W(W({},this._options.searchOptions),t),u=(s.fields||this._options.fields).reduce(function(M,P){var z;return W(W({},M),(z={},z[P]=ze(s.boost,P)||1,z))},{}),l=s.boostDocument,h=s.weights,d=s.maxFuzzy,v=s.bm25,y=W(W({},ht.weights),h),b=y.fuzzy,E=y.prefix,g=this._index.get(e.term),S=this.termResults(e.term,e.term,1,g,u,l,v),T,F;if(e.prefix&&(T=this._index.atPrefix(e.term)),e.fuzzy){var L=e.fuzzy===!0?.2:e.fuzzy,_=L<1?Math.min(d,Math.round(e.term.length*L)):L;_&&(F=this._index.fuzzyGet(e.term,_))}if(T)try{for(var V=D(T),N=V.next();!N.done;N=V.next()){var R=J(N.value,2),A=R[0],O=R[1],w=A.length-e.term.length;if(w){F==null||F.delete(A);var c=E*A.length/(A.length+.3*w);this.termResults(e.term,A,c,O,u,l,v,S)}}}catch(M){r={error:M}}finally{try{N&&!N.done&&(n=V.return)&&n.call(V)}finally{if(r)throw r.error}}if(F)try{for(var f=D(F.keys()),p=f.next();!p.done;p=f.next()){var A=p.value,C=J(F.get(A),2),I=C[0],w=C[1];if(w){var c=b*A.length/(A.length+w);this.termResults(e.term,A,c,I,u,l,v,S)}}}catch(M){a={error:M}}finally{try{p&&!p.done&&(i=f.return)&&i.call(f)}finally{if(a)throw a.error}}return S},o.prototype.executeWildcardQuery=function(e){var t,r,n=new Map,a=W(W({},this._options.searchOptions),e);try{for(var i=D(this._documentIds),s=i.next();!s.done;s=i.next()){var u=J(s.value,2),l=u[0],h=u[1],d=a.boostDocument?a.boostDocument(h,"",this._storedFields.get(l)):1;n.set(l,{score:d,terms:[],match:{}})}}catch(v){t={error:v}}finally{try{s&&!s.done&&(r=i.return)&&r.call(i)}finally{if(t)throw t.error}}return n},o.prototype.combineResults=function(e,t){if(t===void 0&&(t=Ge),e.length===0)return new Map;var r=t.toLowerCase();return e.reduce($r[r])||new Map},o.prototype.toJSON=function(){var e,t,r,n,a=[];try{for(var i=D(this._index),s=i.next();!s.done;s=i.next()){var u=J(s.value,2),l=u[0],h=u[1],d={};try{for(var v=(r=void 0,D(h)),y=v.next();!y.done;y=v.next()){var b=J(y.value,2),E=b[0],g=b[1];d[E]=Object.fromEntries(g)}}catch(S){r={error:S}}finally{try{y&&!y.done&&(n=v.return)&&n.call(v)}finally{if(r)throw r.error}}a.push([l,d])}}catch(S){e={error:S}}finally{try{s&&!s.done&&(t=i.return)&&t.call(i)}finally{if(e)throw e.error}}return{documentCount:this._documentCount,nextId:this._nextId,documentIds:Object.fromEntries(this._documentIds),fieldIds:this._fieldIds,fieldLength:Object.fromEntries(this._fieldLength),averageFieldLength:this._avgFieldLength,storedFields:Object.fromEntries(this._storedFields),dirtCount:this._dirtCount,index:a,serializationVersion:2}},o.prototype.termResults=function(e,t,r,n,a,i,s,u){var l,h,d,v,y;if(u===void 0&&(u=new Map),n==null)return u;try{for(var b=D(Object.keys(a)),E=b.next();!E.done;E=b.next()){var g=E.value,S=a[g],T=this._fieldIds[g],F=n.get(T);if(F!=null){var L=F.size,_=this._avgFieldLength[T];try{for(var V=(d=void 0,D(F.keys())),N=V.next();!N.done;N=V.next()){var R=N.value;if(!this._documentIds.has(R)){this.removeTerm(T,R,t),L-=1;continue}var A=i?i(this._documentIds.get(R),t,this._storedFields.get(R)):1;if(A){var O=F.get(R),w=this._fieldLength.get(R)[T],c=Kr(O,L,this._documentCount,w,_,s),f=r*S*A*c,p=u.get(R);if(p){p.score+=f,jr(p.terms,e);var C=ze(p.match,t);C?C.push(g):p.match[t]=[g]}else u.set(R,{score:f,terms:[e],match:(y={},y[t]=[g],y)})}}}catch(I){d={error:I}}finally{try{N&&!N.done&&(v=V.return)&&v.call(V)}finally{if(d)throw d.error}}}}}catch(I){l={error:I}}finally{try{E&&!E.done&&(h=b.return)&&h.call(b)}finally{if(l)throw l.error}}return u},o.prototype.addTerm=function(e,t,r){var n=this._index.fetch(r,pt),a=n.get(e);if(a==null)a=new Map,a.set(t,1),n.set(e,a);else{var i=a.get(t);a.set(t,(i||0)+1)}},o.prototype.removeTerm=function(e,t,r){if(!this._index.has(r)){this.warnDocumentChanged(t,e,r);return}var n=this._index.fetch(r,pt),a=n.get(e);a==null||a.get(t)==null?this.warnDocumentChanged(t,e,r):a.get(t)<=1?a.size<=1?n.delete(e):a.delete(t):a.set(t,a.get(t)-1),this._index.get(r).size===0&&this._index.delete(r)},o.prototype.warnDocumentChanged=function(e,t,r){var n,a;try{for(var i=D(Object.keys(this._fieldIds)),s=i.next();!s.done;s=i.next()){var u=s.value;if(this._fieldIds[u]===t){this._options.logger("warn","MiniSearch: document with ID ".concat(this._documentIds.get(e),' has changed before removal: term "').concat(r,'" was not present in field "').concat(u,'". Removing a document after it has changed can corrupt the index!'),"version_conflict");return}}}catch(l){n={error:l}}finally{try{s&&!s.done&&(a=i.return)&&a.call(i)}finally{if(n)throw n.error}}},o.prototype.addDocumentId=function(e){var t=this._nextId;return this._idToShortId.set(e,t),this._documentIds.set(t,e),this._documentCount+=1,this._nextId+=1,t},o.prototype.addFields=function(e){for(var t=0;t(qt("data-v-639d7ab9"),o=o(),Ht(),o),qr=["aria-owns"],Hr={class:"shell"},Yr=["title"],Zr=Y(()=>k("span",{"aria-hidden":"true",class:"vpi-search search-icon local-search-icon"},null,-1)),Xr=[Zr],ea={class:"search-actions before"},ta=["title"],ra=Y(()=>k("span",{class:"vpi-arrow-left local-search-icon"},null,-1)),aa=[ra],na=["placeholder"],ia={class:"search-actions"},oa=["title"],sa=Y(()=>k("span",{class:"vpi-layout-list local-search-icon"},null,-1)),ua=[sa],la=["disabled","title"],ca=Y(()=>k("span",{class:"vpi-delete local-search-icon"},null,-1)),fa=[ca],ha=["id","role","aria-labelledby"],da=["aria-selected"],va=["href","aria-label","onMouseenter","onFocusin"],pa={class:"titles"},ya=Y(()=>k("span",{class:"title-icon"},"#",-1)),ma=["innerHTML"],ga=Y(()=>k("span",{class:"vpi-chevron-right local-search-icon"},null,-1)),ba={class:"title main"},wa=["innerHTML"],xa={key:0,class:"excerpt-wrapper"},Fa={key:0,class:"excerpt",inert:""},Ea=["innerHTML"],Sa=Y(()=>k("div",{class:"excerpt-gradient-bottom"},null,-1)),Aa=Y(()=>k("div",{class:"excerpt-gradient-top"},null,-1)),Ta={key:0,class:"no-results"},Na={class:"search-keyboard-shortcuts"},Ca=["aria-label"],Ia=Y(()=>k("span",{class:"vpi-arrow-up navigate-icon"},null,-1)),Da=[Ia],ka=["aria-label"],Oa=Y(()=>k("span",{class:"vpi-arrow-down navigate-icon"},null,-1)),Ra=[Oa],_a=["aria-label"],Ma=Y(()=>k("span",{class:"vpi-corner-down-left navigate-icon"},null,-1)),La=[Ma],Pa=["aria-label"],za=Rt({__name:"VPLocalSearchBox",emits:["close"],setup(o,{emit:e}){var P,z;const t=e,r=xe(),n=xe(),a=xe(nr),i=rr(),{activate:s}=kr(r,{immediate:!0,allowOutsideClick:!0,clickOutsideDeactivates:!0,escapeDeactivates:!0}),{localeIndex:u,theme:l}=i,h=tt(async()=>{var m,x,$,K,Q,q,B,U,Z;return it(Vr.loadJSON(($=await((x=(m=a.value)[u.value])==null?void 0:x.call(m)))==null?void 0:$.default,{fields:["title","titles","text"],storeFields:["title","titles"],searchOptions:{fuzzy:.2,prefix:!0,boost:{title:4,text:2,titles:1},...((K=l.value.search)==null?void 0:K.provider)==="local"&&((q=(Q=l.value.search.options)==null?void 0:Q.miniSearch)==null?void 0:q.searchOptions)},...((B=l.value.search)==null?void 0:B.provider)==="local"&&((Z=(U=l.value.search.options)==null?void 0:U.miniSearch)==null?void 0:Z.options)}))}),v=Fe(()=>{var m,x;return((m=l.value.search)==null?void 0:m.provider)==="local"&&((x=l.value.search.options)==null?void 0:x.disableQueryPersistence)===!0}).value?oe(""):_t("vitepress:local-search-filter",""),y=Mt("vitepress:local-search-detailed-list",((P=l.value.search)==null?void 0:P.provider)==="local"&&((z=l.value.search.options)==null?void 0:z.detailedView)===!0),b=Fe(()=>{var m,x,$;return((m=l.value.search)==null?void 0:m.provider)==="local"&&(((x=l.value.search.options)==null?void 0:x.disableDetailedView)===!0||(($=l.value.search.options)==null?void 0:$.detailedView)===!1)}),E=Fe(()=>{var x,$,K,Q,q,B,U;const m=((x=l.value.search)==null?void 0:x.options)??l.value.algolia;return((q=(Q=(K=($=m==null?void 0:m.locales)==null?void 0:$[u.value])==null?void 0:K.translations)==null?void 0:Q.button)==null?void 0:q.buttonText)||((U=(B=m==null?void 0:m.translations)==null?void 0:B.button)==null?void 0:U.buttonText)||"Search"});Lt(()=>{b.value&&(y.value=!1)});const g=xe([]),S=oe(!1);$e(v,()=>{S.value=!1});const T=tt(async()=>{if(n.value)return it(new Rr(n.value))},null),F=new Qr(16);Pt(()=>[h.value,v.value,y.value],async([m,x,$],K,Q)=>{var be,Qe,qe,He;(K==null?void 0:K[0])!==m&&F.clear();let q=!1;if(Q(()=>{q=!0}),!m)return;g.value=m.search(x).slice(0,16),S.value=!0;const B=$?await Promise.all(g.value.map(H=>L(H.id))):[];if(q)return;for(const{id:H,mod:ae}of B){const ne=H.slice(0,H.indexOf("#"));let te=F.get(ne);if(te)continue;te=new Map,F.set(ne,te);const X=ae.default??ae;if(X!=null&&X.render||X!=null&&X.setup){const ie=Yt(X);ie.config.warnHandler=()=>{},ie.provide(Zt,i),Object.defineProperties(ie.config.globalProperties,{$frontmatter:{get(){return i.frontmatter.value}},$params:{get(){return i.page.value.params}}});const Ye=document.createElement("div");ie.mount(Ye),Ye.querySelectorAll("h1, h2, h3, h4, h5, h6").forEach(he=>{var et;const we=(et=he.querySelector("a"))==null?void 0:et.getAttribute("href"),Ze=(we==null?void 0:we.startsWith("#"))&&we.slice(1);if(!Ze)return;let Xe="";for(;(he=he.nextElementSibling)&&!/^h[1-6]$/i.test(he.tagName);)Xe+=he.outerHTML;te.set(Ze,Xe)}),ie.unmount()}if(q)return}const U=new Set;if(g.value=g.value.map(H=>{const[ae,ne]=H.id.split("#"),te=F.get(ae),X=(te==null?void 0:te.get(ne))??"";for(const ie in H.match)U.add(ie);return{...H,text:X}}),await de(),q)return;await new Promise(H=>{var ae;(ae=T.value)==null||ae.unmark({done:()=>{var ne;(ne=T.value)==null||ne.markRegExp(M(U),{done:H})}})});const Z=((be=r.value)==null?void 0:be.querySelectorAll(".result .excerpt"))??[];for(const H of Z)(Qe=H.querySelector('mark[data-markjs="true"]'))==null||Qe.scrollIntoView({block:"center"});(He=(qe=n.value)==null?void 0:qe.firstElementChild)==null||He.scrollIntoView({block:"start"})},{debounce:200,immediate:!0});async function L(m){const x=Xt(m.slice(0,m.indexOf("#")));try{if(!x)throw new Error(`Cannot find file for id: ${m}`);return{id:m,mod:await import(x)}}catch($){return console.error($),{id:m,mod:{}}}}const _=oe(),V=Fe(()=>{var m;return((m=v.value)==null?void 0:m.length)<=0});function N(m=!0){var x,$;(x=_.value)==null||x.focus(),m&&(($=_.value)==null||$.select())}Re(()=>{N()});function R(m){m.pointerType==="mouse"&&N()}const A=oe(-1),O=oe(!1);$e(g,m=>{A.value=m.length?0:-1,w()});function w(){de(()=>{const m=document.querySelector(".result.selected");m==null||m.scrollIntoView({block:"nearest"})})}Ee("ArrowUp",m=>{m.preventDefault(),A.value--,A.value<0&&(A.value=g.value.length-1),O.value=!0,w()}),Ee("ArrowDown",m=>{m.preventDefault(),A.value++,A.value>=g.value.length&&(A.value=0),O.value=!0,w()});const c=zt();Ee("Enter",m=>{if(m.isComposing||m.target instanceof HTMLButtonElement&&m.target.type!=="submit")return;const x=g.value[A.value];if(m.target instanceof HTMLInputElement&&!x){m.preventDefault();return}x&&(c.go(x.id),t("close"))}),Ee("Escape",()=>{t("close")});const p=ar({modal:{displayDetails:"Display detailed list",resetButtonTitle:"Reset search",backButtonTitle:"Close search",noResultsText:"No results for",footer:{selectText:"to select",selectKeyAriaLabel:"enter",navigateText:"to navigate",navigateUpKeyAriaLabel:"up arrow",navigateDownKeyAriaLabel:"down arrow",closeText:"to close",closeKeyAriaLabel:"escape"}}});Re(()=>{window.history.pushState(null,"",null)}),Bt("popstate",m=>{m.preventDefault(),t("close")});const C=Vt($t?document.body:null);Re(()=>{de(()=>{C.value=!0,de().then(()=>s())})}),Wt(()=>{C.value=!1});function I(){v.value="",de().then(()=>N(!1))}function M(m){return new RegExp([...m].sort((x,$)=>$.length-x.length).map(x=>`(${er(x)})`).join("|"),"gi")}return(m,x)=>{var $,K,Q,q;return ee(),Kt(Qt,{to:"body"},[k("div",{ref_key:"el",ref:r,role:"button","aria-owns":($=g.value)!=null&&$.length?"localsearch-list":void 0,"aria-expanded":"true","aria-haspopup":"listbox","aria-labelledby":"localsearch-label",class:"VPLocalSearchBox"},[k("div",{class:"backdrop",onClick:x[0]||(x[0]=B=>m.$emit("close"))}),k("div",Hr,[k("form",{class:"search-bar",onPointerup:x[4]||(x[4]=B=>R(B)),onSubmit:x[5]||(x[5]=Jt(()=>{},["prevent"]))},[k("label",{title:E.value,id:"localsearch-label",for:"localsearch-input"},Xr,8,Yr),k("div",ea,[k("button",{class:"back-button",title:j(p)("modal.backButtonTitle"),onClick:x[1]||(x[1]=B=>m.$emit("close"))},aa,8,ta)]),Ut(k("input",{ref_key:"searchInput",ref:_,"onUpdate:modelValue":x[2]||(x[2]=B=>Gt(v)?v.value=B:null),placeholder:E.value,id:"localsearch-input","aria-labelledby":"localsearch-label",class:"search-input"},null,8,na),[[jt,j(v)]]),k("div",ia,[b.value?Se("",!0):(ee(),re("button",{key:0,class:rt(["toggle-layout-button",{"detailed-list":j(y)}]),type:"button",title:j(p)("modal.displayDetails"),onClick:x[3]||(x[3]=B=>A.value>-1&&(y.value=!j(y)))},ua,10,oa)),k("button",{class:"clear-button",type:"reset",disabled:V.value,title:j(p)("modal.resetButtonTitle"),onClick:I},fa,8,la)])],32),k("ul",{ref_key:"resultsEl",ref:n,id:(K=g.value)!=null&&K.length?"localsearch-list":void 0,role:(Q=g.value)!=null&&Q.length?"listbox":void 0,"aria-labelledby":(q=g.value)!=null&&q.length?"localsearch-label":void 0,class:"results",onMousemove:x[7]||(x[7]=B=>O.value=!1)},[(ee(!0),re(nt,null,at(g.value,(B,U)=>(ee(),re("li",{key:B.id,role:"option","aria-selected":A.value===U?"true":"false"},[k("a",{href:B.id,class:rt(["result",{selected:A.value===U}]),"aria-label":[...B.titles,B.title].join(" > "),onMouseenter:Z=>!O.value&&(A.value=U),onFocusin:Z=>A.value=U,onClick:x[6]||(x[6]=Z=>m.$emit("close"))},[k("div",null,[k("div",pa,[ya,(ee(!0),re(nt,null,at(B.titles,(Z,be)=>(ee(),re("span",{key:be,class:"title"},[k("span",{class:"text",innerHTML:Z},null,8,ma),ga]))),128)),k("span",ba,[k("span",{class:"text",innerHTML:B.title},null,8,wa)])]),j(y)?(ee(),re("div",xa,[B.text?(ee(),re("div",Fa,[k("div",{class:"vp-doc",innerHTML:B.text},null,8,Ea)])):Se("",!0),Sa,Aa])):Se("",!0)])],42,va)],8,da))),128)),j(v)&&!g.value.length&&S.value?(ee(),re("li",Ta,[ve(pe(j(p)("modal.noResultsText"))+' "',1),k("strong",null,pe(j(v)),1),ve('" ')])):Se("",!0)],40,ha),k("div",Na,[k("span",null,[k("kbd",{"aria-label":j(p)("modal.footer.navigateUpKeyAriaLabel")},Da,8,Ca),k("kbd",{"aria-label":j(p)("modal.footer.navigateDownKeyAriaLabel")},Ra,8,ka),ve(" "+pe(j(p)("modal.footer.navigateText")),1)]),k("span",null,[k("kbd",{"aria-label":j(p)("modal.footer.selectKeyAriaLabel")},La,8,_a),ve(" "+pe(j(p)("modal.footer.selectText")),1)]),k("span",null,[k("kbd",{"aria-label":j(p)("modal.footer.closeKeyAriaLabel")},"esc",8,Pa),ve(" "+pe(j(p)("modal.footer.closeText")),1)])])])],8,qr)])}}}),Ja=tr(za,[["__scopeId","data-v-639d7ab9"]]);export{Ja as default}; diff --git a/docs/.vitepress/dist/assets/chunks/framework.OdeEVNy0.js b/docs/.vitepress/dist/assets/chunks/framework.OdeEVNy0.js deleted file mode 100644 index 61a106a81..000000000 --- a/docs/.vitepress/dist/assets/chunks/framework.OdeEVNy0.js +++ /dev/null @@ -1,17 +0,0 @@ -/** -* @vue/shared v3.4.29 -* (c) 2018-present Yuxi (Evan) You and Vue contributors -* @license MIT -**//*! #__NO_SIDE_EFFECTS__ */function wr(e,t){const n=new Set(e.split(","));return r=>n.has(r)}const te={},mt=[],xe=()=>{},Li=()=>!1,kt=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&(e.charCodeAt(2)>122||e.charCodeAt(2)<97),Er=e=>e.startsWith("onUpdate:"),le=Object.assign,Cr=(e,t)=>{const n=e.indexOf(t);n>-1&&e.splice(n,1)},Ii=Object.prototype.hasOwnProperty,Y=(e,t)=>Ii.call(e,t),k=Array.isArray,yt=e=>Sn(e)==="[object Map]",Ys=e=>Sn(e)==="[object Set]",K=e=>typeof e=="function",oe=e=>typeof e=="string",ut=e=>typeof e=="symbol",Z=e=>e!==null&&typeof e=="object",Js=e=>(Z(e)||K(e))&&K(e.then)&&K(e.catch),Qs=Object.prototype.toString,Sn=e=>Qs.call(e),Mi=e=>Sn(e).slice(8,-1),Zs=e=>Sn(e)==="[object Object]",xr=e=>oe(e)&&e!=="NaN"&&e[0]!=="-"&&""+parseInt(e,10)===e,_t=wr(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),Tn=e=>{const t=Object.create(null);return n=>t[n]||(t[n]=e(n))},Pi=/-(\w)/g,$e=Tn(e=>e.replace(Pi,(t,n)=>n?n.toUpperCase():"")),Ni=/\B([A-Z])/g,ft=Tn(e=>e.replace(Ni,"-$1").toLowerCase()),An=Tn(e=>e.charAt(0).toUpperCase()+e.slice(1)),un=Tn(e=>e?`on${An(e)}`:""),Je=(e,t)=>!Object.is(e,t),fn=(e,...t)=>{for(let n=0;n{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,writable:r,value:n})},cr=e=>{const t=parseFloat(e);return isNaN(t)?e:t},Fi=e=>{const t=oe(e)?Number(e):NaN;return isNaN(t)?e:t};let Jr;const to=()=>Jr||(Jr=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{});function Sr(e){if(k(e)){const t={};for(let n=0;n{if(n){const r=n.split(Hi);r.length>1&&(t[r[0].trim()]=r[1].trim())}}),t}function Tr(e){let t="";if(oe(e))t=e;else if(k(e))for(let n=0;noe(e)?e:e==null?"":k(e)||Z(e)&&(e.toString===Qs||!K(e.toString))?JSON.stringify(e,ro,2):String(e),ro=(e,t)=>t&&t.__v_isRef?ro(e,t.value):yt(t)?{[`Map(${t.size})`]:[...t.entries()].reduce((n,[r,s],o)=>(n[kn(r,o)+" =>"]=s,n),{})}:Ys(t)?{[`Set(${t.size})`]:[...t.values()].map(n=>kn(n))}:ut(t)?kn(t):Z(t)&&!k(t)&&!Zs(t)?String(t):t,kn=(e,t="")=>{var n;return ut(e)?`Symbol(${(n=e.description)!=null?n:t})`:e};/** -* @vue/reactivity v3.4.29 -* (c) 2018-present Yuxi (Evan) You and Vue contributors -* @license MIT -**/let we;class Bi{constructor(t=!1){this.detached=t,this._active=!0,this.effects=[],this.cleanups=[],this.parent=we,!t&&we&&(this.index=(we.scopes||(we.scopes=[])).push(this)-1)}get active(){return this._active}run(t){if(this._active){const n=we;try{return we=this,t()}finally{we=n}}}on(){we=this}off(){we=this.parent}stop(t){if(this._active){let n,r;for(n=0,r=this.effects.length;n=5)break}}this._dirtyLevel===1&&(this._dirtyLevel=0),et()}return this._dirtyLevel>=5}set dirty(t){this._dirtyLevel=t?5:0}run(){if(this._dirtyLevel=0,!this.active)return this.fn();let t=Xe,n=lt;try{return Xe=!0,lt=this,this._runnings++,Qr(this),this.fn()}finally{Zr(this),this._runnings--,lt=n,Xe=t}}stop(){this.active&&(Qr(this),Zr(this),this.onStop&&this.onStop(),this.active=!1)}}function Wi(e){return e.value}function Qr(e){e._trackId++,e._depsLength=0}function Zr(e){if(e.deps.length>e._depsLength){for(let t=e._depsLength;t0){r._dirtyLevel=2;continue}let s;r._dirtyLevel{const n=new Map;return n.cleanup=e,n.computed=t,n},mn=new WeakMap,ct=Symbol(""),fr=Symbol("");function ve(e,t,n){if(Xe&<){let r=mn.get(e);r||mn.set(e,r=new Map);let s=r.get(n);s||r.set(n,s=ao(()=>r.delete(n))),lo(lt,s)}}function De(e,t,n,r,s,o){const i=mn.get(e);if(!i)return;let l=[];if(t==="clear")l=[...i.values()];else if(n==="length"&&k(e)){const c=Number(r);i.forEach((a,f)=>{(f==="length"||!ut(f)&&f>=c)&&l.push(a)})}else switch(n!==void 0&&l.push(i.get(n)),t){case"add":k(e)?xr(n)&&l.push(i.get("length")):(l.push(i.get(ct)),yt(e)&&l.push(i.get(fr)));break;case"delete":k(e)||(l.push(i.get(ct)),yt(e)&&l.push(i.get(fr)));break;case"set":yt(e)&&l.push(i.get(ct));break}Rr();for(const c of l)c&&co(c,5);Or()}function qi(e,t){const n=mn.get(e);return n&&n.get(t)}const Gi=wr("__proto__,__v_isRef,__isVue"),uo=new Set(Object.getOwnPropertyNames(Symbol).filter(e=>e!=="arguments"&&e!=="caller").map(e=>Symbol[e]).filter(ut)),es=zi();function zi(){const e={};return["includes","indexOf","lastIndexOf"].forEach(t=>{e[t]=function(...n){const r=J(this);for(let o=0,i=this.length;o{e[t]=function(...n){Ze(),Rr();const r=J(this)[t].apply(this,n);return Or(),et(),r}}),e}function Xi(e){ut(e)||(e=String(e));const t=J(this);return ve(t,"has",e),t.hasOwnProperty(e)}class fo{constructor(t=!1,n=!1){this._isReadonly=t,this._isShallow=n}get(t,n,r){const s=this._isReadonly,o=this._isShallow;if(n==="__v_isReactive")return!s;if(n==="__v_isReadonly")return s;if(n==="__v_isShallow")return o;if(n==="__v_raw")return r===(s?o?cl:mo:o?go:po).get(t)||Object.getPrototypeOf(t)===Object.getPrototypeOf(r)?t:void 0;const i=k(t);if(!s){if(i&&Y(es,n))return Reflect.get(es,n,r);if(n==="hasOwnProperty")return Xi}const l=Reflect.get(t,n,r);return(ut(n)?uo.has(n):Gi(n))||(s||ve(t,"get",n),o)?l:de(l)?i&&xr(n)?l:l.value:Z(l)?s?Ln(l):On(l):l}}class ho extends fo{constructor(t=!1){super(!1,t)}set(t,n,r,s){let o=t[n];if(!this._isShallow){const c=$t(o);if(!yn(r)&&!$t(r)&&(o=J(o),r=J(r)),!k(t)&&de(o)&&!de(r))return c?!1:(o.value=r,!0)}const i=k(t)&&xr(n)?Number(n)e,Rn=e=>Reflect.getPrototypeOf(e);function Yt(e,t,n=!1,r=!1){e=e.__v_raw;const s=J(e),o=J(t);n||(Je(t,o)&&ve(s,"get",t),ve(s,"get",o));const{has:i}=Rn(s),l=r?Lr:n?Pr:Ht;if(i.call(s,t))return l(e.get(t));if(i.call(s,o))return l(e.get(o));e!==s&&e.get(t)}function Jt(e,t=!1){const n=this.__v_raw,r=J(n),s=J(e);return t||(Je(e,s)&&ve(r,"has",e),ve(r,"has",s)),e===s?n.has(e):n.has(e)||n.has(s)}function Qt(e,t=!1){return e=e.__v_raw,!t&&ve(J(e),"iterate",ct),Reflect.get(e,"size",e)}function ts(e){e=J(e);const t=J(this);return Rn(t).has.call(t,e)||(t.add(e),De(t,"add",e,e)),this}function ns(e,t){t=J(t);const n=J(this),{has:r,get:s}=Rn(n);let o=r.call(n,e);o||(e=J(e),o=r.call(n,e));const i=s.call(n,e);return n.set(e,t),o?Je(t,i)&&De(n,"set",e,t):De(n,"add",e,t),this}function rs(e){const t=J(this),{has:n,get:r}=Rn(t);let s=n.call(t,e);s||(e=J(e),s=n.call(t,e)),r&&r.call(t,e);const o=t.delete(e);return s&&De(t,"delete",e,void 0),o}function ss(){const e=J(this),t=e.size!==0,n=e.clear();return t&&De(e,"clear",void 0,void 0),n}function Zt(e,t){return function(r,s){const o=this,i=o.__v_raw,l=J(i),c=t?Lr:e?Pr:Ht;return!e&&ve(l,"iterate",ct),i.forEach((a,f)=>r.call(s,c(a),c(f),o))}}function en(e,t,n){return function(...r){const s=this.__v_raw,o=J(s),i=yt(o),l=e==="entries"||e===Symbol.iterator&&i,c=e==="keys"&&i,a=s[e](...r),f=n?Lr:t?Pr:Ht;return!t&&ve(o,"iterate",c?fr:ct),{next(){const{value:h,done:m}=a.next();return m?{value:h,done:m}:{value:l?[f(h[0]),f(h[1])]:f(h),done:m}},[Symbol.iterator](){return this}}}}function Be(e){return function(...t){return e==="delete"?!1:e==="clear"?void 0:this}}function el(){const e={get(o){return Yt(this,o)},get size(){return Qt(this)},has:Jt,add:ts,set:ns,delete:rs,clear:ss,forEach:Zt(!1,!1)},t={get(o){return Yt(this,o,!1,!0)},get size(){return Qt(this)},has:Jt,add:ts,set:ns,delete:rs,clear:ss,forEach:Zt(!1,!0)},n={get(o){return Yt(this,o,!0)},get size(){return Qt(this,!0)},has(o){return Jt.call(this,o,!0)},add:Be("add"),set:Be("set"),delete:Be("delete"),clear:Be("clear"),forEach:Zt(!0,!1)},r={get(o){return Yt(this,o,!0,!0)},get size(){return Qt(this,!0)},has(o){return Jt.call(this,o,!0)},add:Be("add"),set:Be("set"),delete:Be("delete"),clear:Be("clear"),forEach:Zt(!0,!0)};return["keys","values","entries",Symbol.iterator].forEach(o=>{e[o]=en(o,!1,!1),n[o]=en(o,!0,!1),t[o]=en(o,!1,!0),r[o]=en(o,!0,!0)}),[e,n,t,r]}const[tl,nl,rl,sl]=el();function Ir(e,t){const n=t?e?sl:rl:e?nl:tl;return(r,s,o)=>s==="__v_isReactive"?!e:s==="__v_isReadonly"?e:s==="__v_raw"?r:Reflect.get(Y(n,s)&&s in r?n:r,s,o)}const ol={get:Ir(!1,!1)},il={get:Ir(!1,!0)},ll={get:Ir(!0,!1)};const po=new WeakMap,go=new WeakMap,mo=new WeakMap,cl=new WeakMap;function al(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function ul(e){return e.__v_skip||!Object.isExtensible(e)?0:al(Mi(e))}function On(e){return $t(e)?e:Mr(e,!1,Ji,ol,po)}function fl(e){return Mr(e,!1,Zi,il,go)}function Ln(e){return Mr(e,!0,Qi,ll,mo)}function Mr(e,t,n,r,s){if(!Z(e)||e.__v_raw&&!(t&&e.__v_isReactive))return e;const o=s.get(e);if(o)return o;const i=ul(e);if(i===0)return e;const l=new Proxy(e,i===2?r:n);return s.set(e,l),l}function Rt(e){return $t(e)?Rt(e.__v_raw):!!(e&&e.__v_isReactive)}function $t(e){return!!(e&&e.__v_isReadonly)}function yn(e){return!!(e&&e.__v_isShallow)}function yo(e){return e?!!e.__v_raw:!1}function J(e){const t=e&&e.__v_raw;return t?J(t):e}function dn(e){return Object.isExtensible(e)&&eo(e,"__v_skip",!0),e}const Ht=e=>Z(e)?On(e):e,Pr=e=>Z(e)?Ln(e):e;class _o{constructor(t,n,r,s){this.getter=t,this._setter=n,this.dep=void 0,this.__v_isRef=!0,this.__v_isReadonly=!1,this.effect=new Ar(()=>t(this._value),()=>Ot(this,this.effect._dirtyLevel===3?3:4)),this.effect.computed=this,this.effect.active=this._cacheable=!s,this.__v_isReadonly=r}get value(){const t=J(this);return(!t._cacheable||t.effect.dirty)&&Je(t._value,t._value=t.effect.run())&&Ot(t,5),Nr(t),t.effect._dirtyLevel>=2&&Ot(t,3),t._value}set value(t){this._setter(t)}get _dirty(){return this.effect.dirty}set _dirty(t){this.effect.dirty=t}}function dl(e,t,n=!1){let r,s;const o=K(e);return o?(r=e,s=xe):(r=e.get,s=e.set),new _o(r,s,o||!s,n)}function Nr(e){var t;Xe&<&&(e=J(e),lo(lt,(t=e.dep)!=null?t:e.dep=ao(()=>e.dep=void 0,e instanceof _o?e:void 0)))}function Ot(e,t=5,n,r){e=J(e);const s=e.dep;s&&co(s,t)}function de(e){return!!(e&&e.__v_isRef===!0)}function se(e){return vo(e,!1)}function Fr(e){return vo(e,!0)}function vo(e,t){return de(e)?e:new hl(e,t)}class hl{constructor(t,n){this.__v_isShallow=n,this.dep=void 0,this.__v_isRef=!0,this._rawValue=n?t:J(t),this._value=n?t:Ht(t)}get value(){return Nr(this),this._value}set value(t){const n=this.__v_isShallow||yn(t)||$t(t);t=n?t:J(t),Je(t,this._rawValue)&&(this._rawValue,this._rawValue=t,this._value=n?t:Ht(t),Ot(this,5))}}function bo(e){return de(e)?e.value:e}const pl={get:(e,t,n)=>bo(Reflect.get(e,t,n)),set:(e,t,n,r)=>{const s=e[t];return de(s)&&!de(n)?(s.value=n,!0):Reflect.set(e,t,n,r)}};function wo(e){return Rt(e)?e:new Proxy(e,pl)}class gl{constructor(t){this.dep=void 0,this.__v_isRef=!0;const{get:n,set:r}=t(()=>Nr(this),()=>Ot(this));this._get=n,this._set=r}get value(){return this._get()}set value(t){this._set(t)}}function ml(e){return new gl(e)}class yl{constructor(t,n,r){this._object=t,this._key=n,this._defaultValue=r,this.__v_isRef=!0}get value(){const t=this._object[this._key];return t===void 0?this._defaultValue:t}set value(t){this._object[this._key]=t}get dep(){return qi(J(this._object),this._key)}}class _l{constructor(t){this._getter=t,this.__v_isRef=!0,this.__v_isReadonly=!0}get value(){return this._getter()}}function vl(e,t,n){return de(e)?e:K(e)?new _l(e):Z(e)&&arguments.length>1?bl(e,t,n):se(e)}function bl(e,t,n){const r=e[t];return de(r)?r:new yl(e,t,n)}/** -* @vue/runtime-core v3.4.29 -* (c) 2018-present Yuxi (Evan) You and Vue contributors -* @license MIT -**/function Ye(e,t,n,r){try{return r?e(...r):e()}catch(s){Kt(s,t,n)}}function Se(e,t,n,r){if(K(e)){const s=Ye(e,t,n,r);return s&&Js(s)&&s.catch(o=>{Kt(o,t,n)}),s}if(k(e)){const s=[];for(let o=0;o>>1,s=pe[r],o=Vt(s);oPe&&pe.splice(t,1)}function xl(e){k(e)?vt.push(...e):(!We||!We.includes(e,e.allowRecurse?ot+1:ot))&&vt.push(e),Co()}function os(e,t,n=jt?Pe+1:0){for(;nVt(n)-Vt(r));if(vt.length=0,We){We.push(...t);return}for(We=t,ot=0;ote.id==null?1/0:e.id,Sl=(e,t)=>{const n=Vt(e)-Vt(t);if(n===0){if(e.pre&&!t.pre)return-1;if(t.pre&&!e.pre)return 1}return n};function xo(e){dr=!1,jt=!0,pe.sort(Sl);try{for(Pe=0;Peoe(_)?_.trim():_)),h&&(s=n.map(cr))}let l,c=r[l=un(t)]||r[l=un($e(t))];!c&&o&&(c=r[l=un(ft(t))]),c&&Se(c,e,6,s);const a=r[l+"Once"];if(a){if(!e.emitted)e.emitted={};else if(e.emitted[l])return;e.emitted[l]=!0,Se(a,e,6,s)}}function So(e,t,n=!1){const r=t.emitsCache,s=r.get(e);if(s!==void 0)return s;const o=e.emits;let i={},l=!1;if(!K(e)){const c=a=>{const f=So(a,t,!0);f&&(l=!0,le(i,f))};!n&&t.mixins.length&&t.mixins.forEach(c),e.extends&&c(e.extends),e.mixins&&e.mixins.forEach(c)}return!o&&!l?(Z(e)&&r.set(e,null),null):(k(o)?o.forEach(c=>i[c]=null):le(i,o),Z(e)&&r.set(e,i),i)}function Pn(e,t){return!e||!kt(t)?!1:(t=t.slice(2).replace(/Once$/,""),Y(e,t[0].toLowerCase()+t.slice(1))||Y(e,ft(t))||Y(e,t))}let fe=null,Nn=null;function vn(e){const t=fe;return fe=e,Nn=e&&e.type.__scopeId||null,t}function ru(e){Nn=e}function su(){Nn=null}function Al(e,t=fe,n){if(!t||e._n)return e;const r=(...s)=>{r._d&&ws(-1);const o=vn(t);let i;try{i=e(...s)}finally{vn(o),r._d&&ws(1)}return i};return r._n=!0,r._c=!0,r._d=!0,r}function Kn(e){const{type:t,vnode:n,proxy:r,withProxy:s,propsOptions:[o],slots:i,attrs:l,emit:c,render:a,renderCache:f,props:h,data:m,setupState:_,ctx:C,inheritAttrs:L}=e,H=vn(e);let W,D;try{if(n.shapeFlag&4){const y=s||r,M=y;W=Ae(a.call(M,y,f,h,_,m,C)),D=l}else{const y=t;W=Ae(y.length>1?y(h,{attrs:l,slots:i,emit:c}):y(h,null)),D=t.props?l:Rl(l)}}catch(y){Nt.length=0,Kt(y,e,1),W=ie(me)}let p=W;if(D&&L!==!1){const y=Object.keys(D),{shapeFlag:M}=p;y.length&&M&7&&(o&&y.some(Er)&&(D=Ol(D,o)),p=Qe(p,D,!1,!0))}return n.dirs&&(p=Qe(p,null,!1,!0),p.dirs=p.dirs?p.dirs.concat(n.dirs):n.dirs),n.transition&&(p.transition=n.transition),W=p,vn(H),W}const Rl=e=>{let t;for(const n in e)(n==="class"||n==="style"||kt(n))&&((t||(t={}))[n]=e[n]);return t},Ol=(e,t)=>{const n={};for(const r in e)(!Er(r)||!(r.slice(9)in t))&&(n[r]=e[r]);return n};function Ll(e,t,n){const{props:r,children:s,component:o}=e,{props:i,children:l,patchFlag:c}=t,a=o.emitsOptions;if(t.dirs||t.transition)return!0;if(n&&c>=0){if(c&1024)return!0;if(c&16)return r?is(r,i,a):!!i;if(c&8){const f=t.dynamicProps;for(let h=0;he.__isSuspense;function Oo(e,t){t&&t.pendingBranch?k(e)?t.effects.push(...e):t.effects.push(e):xl(e)}function Fn(e,t,n=ue,r=!1){if(n){const s=n[e]||(n[e]=[]),o=t.__weh||(t.__weh=(...i)=>{Ze();const l=qt(n),c=Se(t,n,e,i);return l(),et(),c});return r?s.unshift(o):s.push(o),o}}const Ue=e=>(t,n=ue)=>{(!Gt||e==="sp")&&Fn(e,(...r)=>t(...r),n)},Pl=Ue("bm"),xt=Ue("m"),Nl=Ue("bu"),Fl=Ue("u"),Lo=Ue("bum"),$n=Ue("um"),$l=Ue("sp"),Hl=Ue("rtg"),jl=Ue("rtc");function Vl(e,t=ue){Fn("ec",e,t)}function lu(e,t){if(fe===null)return e;const n=Vn(fe),r=e.dirs||(e.dirs=[]);for(let s=0;st(i,l,void 0,o));else{const i=Object.keys(e);s=new Array(i.length);for(let l=0,c=i.length;l!!e.type.__asyncLoader;/*! #__NO_SIDE_EFFECTS__ */function au(e){K(e)&&(e={loader:e});const{loader:t,loadingComponent:n,errorComponent:r,delay:s=200,timeout:o,suspensible:i=!0,onError:l}=e;let c=null,a,f=0;const h=()=>(f++,c=null,m()),m=()=>{let _;return c||(_=c=t().catch(C=>{if(C=C instanceof Error?C:new Error(String(C)),l)return new Promise((L,H)=>{l(C,()=>L(h()),()=>H(C),f+1)});throw C}).then(C=>_!==c&&c?c:(C&&(C.__esModule||C[Symbol.toStringTag]==="Module")&&(C=C.default),a=C,C)))};return Hr({name:"AsyncComponentWrapper",__asyncLoader:m,get __asyncResolved(){return a},setup(){const _=ue;if(a)return()=>Wn(a,_);const C=D=>{c=null,Kt(D,_,13,!r)};if(i&&_.suspense||Gt)return m().then(D=>()=>Wn(D,_)).catch(D=>(C(D),()=>r?ie(r,{error:D}):null));const L=se(!1),H=se(),W=se(!!s);return s&&setTimeout(()=>{W.value=!1},s),o!=null&&setTimeout(()=>{if(!L.value&&!H.value){const D=new Error(`Async component timed out after ${o}ms.`);C(D),H.value=D}},o),m().then(()=>{L.value=!0,_.parent&&Wt(_.parent.vnode)&&(_.parent.effect.dirty=!0,Mn(_.parent.update))}).catch(D=>{C(D),H.value=D}),()=>{if(L.value&&a)return Wn(a,_);if(H.value&&r)return ie(r,{error:H.value});if(n&&!W.value)return ie(n)}}})}function Wn(e,t){const{ref:n,props:r,children:s,ce:o}=t.vnode,i=ie(e,r,s);return i.ref=n,i.ce=o,delete t.vnode.ce,i}function uu(e,t,n={},r,s){if(fe.isCE||fe.parent&&bt(fe.parent)&&fe.parent.isCE)return t!=="default"&&(n.name=t),ie("slot",n,r&&r());let o=e[t];o&&o._c&&(o._d=!1),Qo();const i=o&&Io(o(n)),l=ei(_e,{key:n.key||i&&i.key||`_${t}`},i||(r?r():[]),i&&e._===1?64:-2);return!s&&l.scopeId&&(l.slotScopeIds=[l.scopeId+"-s"]),o&&o._c&&(o._d=!0),l}function Io(e){return e.some(t=>Cn(t)?!(t.type===me||t.type===_e&&!Io(t.children)):!0)?e:null}function fu(e,t){const n={};for(const r in e)n[/[A-Z]/.test(r)?`on:${r}`:un(r)]=e[r];return n}const hr=e=>e?si(e)?Vn(e):hr(e.parent):null,Lt=le(Object.create(null),{$:e=>e,$el:e=>e.vnode.el,$data:e=>e.data,$props:e=>e.props,$attrs:e=>e.attrs,$slots:e=>e.slots,$refs:e=>e.refs,$parent:e=>hr(e.parent),$root:e=>hr(e.root),$emit:e=>e.emit,$options:e=>jr(e),$forceUpdate:e=>e.f||(e.f=()=>{e.effect.dirty=!0,Mn(e.update)}),$nextTick:e=>e.n||(e.n=In.bind(e.proxy)),$watch:e=>ac.bind(e)}),qn=(e,t)=>e!==te&&!e.__isScriptSetup&&Y(e,t),Dl={get({_:e},t){if(t==="__v_skip")return!0;const{ctx:n,setupState:r,data:s,props:o,accessCache:i,type:l,appContext:c}=e;let a;if(t[0]!=="$"){const _=i[t];if(_!==void 0)switch(_){case 1:return r[t];case 2:return s[t];case 4:return n[t];case 3:return o[t]}else{if(qn(r,t))return i[t]=1,r[t];if(s!==te&&Y(s,t))return i[t]=2,s[t];if((a=e.propsOptions[0])&&Y(a,t))return i[t]=3,o[t];if(n!==te&&Y(n,t))return i[t]=4,n[t];pr&&(i[t]=0)}}const f=Lt[t];let h,m;if(f)return t==="$attrs"&&ve(e.attrs,"get",""),f(e);if((h=l.__cssModules)&&(h=h[t]))return h;if(n!==te&&Y(n,t))return i[t]=4,n[t];if(m=c.config.globalProperties,Y(m,t))return m[t]},set({_:e},t,n){const{data:r,setupState:s,ctx:o}=e;return qn(s,t)?(s[t]=n,!0):r!==te&&Y(r,t)?(r[t]=n,!0):Y(e.props,t)||t[0]==="$"&&t.slice(1)in e?!1:(o[t]=n,!0)},has({_:{data:e,setupState:t,accessCache:n,ctx:r,appContext:s,propsOptions:o}},i){let l;return!!n[i]||e!==te&&Y(e,i)||qn(t,i)||(l=o[0])&&Y(l,i)||Y(r,i)||Y(Lt,i)||Y(s.config.globalProperties,i)},defineProperty(e,t,n){return n.get!=null?e._.accessCache[t]=0:Y(n,"value")&&this.set(e,t,n.value,null),Reflect.defineProperty(e,t,n)}};function du(){return Ul().slots}function Ul(){const e=jn();return e.setupContext||(e.setupContext=ii(e))}function cs(e){return k(e)?e.reduce((t,n)=>(t[n]=null,t),{}):e}let pr=!0;function Bl(e){const t=jr(e),n=e.proxy,r=e.ctx;pr=!1,t.beforeCreate&&as(t.beforeCreate,e,"bc");const{data:s,computed:o,methods:i,watch:l,provide:c,inject:a,created:f,beforeMount:h,mounted:m,beforeUpdate:_,updated:C,activated:L,deactivated:H,beforeDestroy:W,beforeUnmount:D,destroyed:p,unmounted:y,render:M,renderTracked:A,renderTriggered:F,errorCaptured:$,serverPrefetch:I,expose:w,inheritAttrs:N,components:T,directives:G,filters:ne}=t;if(a&&kl(a,r,null),i)for(const X in i){const V=i[X];K(V)&&(r[X]=V.bind(n))}if(s){const X=s.call(n,n);Z(X)&&(e.data=On(X))}if(pr=!0,o)for(const X in o){const V=o[X],He=K(V)?V.bind(n,n):K(V.get)?V.get.bind(n,n):xe,zt=!K(V)&&K(V.set)?V.set.bind(n):xe,tt=re({get:He,set:zt});Object.defineProperty(r,X,{enumerable:!0,configurable:!0,get:()=>tt.value,set:Le=>tt.value=Le})}if(l)for(const X in l)Mo(l[X],r,n,X);if(c){const X=K(c)?c.call(n):c;Reflect.ownKeys(X).forEach(V=>{Xl(V,X[V])})}f&&as(f,e,"c");function U(X,V){k(V)?V.forEach(He=>X(He.bind(n))):V&&X(V.bind(n))}if(U(Pl,h),U(xt,m),U(Nl,_),U(Fl,C),U(uc,L),U(fc,H),U(Vl,$),U(jl,A),U(Hl,F),U(Lo,D),U($n,y),U($l,I),k(w))if(w.length){const X=e.exposed||(e.exposed={});w.forEach(V=>{Object.defineProperty(X,V,{get:()=>n[V],set:He=>n[V]=He})})}else e.exposed||(e.exposed={});M&&e.render===xe&&(e.render=M),N!=null&&(e.inheritAttrs=N),T&&(e.components=T),G&&(e.directives=G)}function kl(e,t,n=xe){k(e)&&(e=gr(e));for(const r in e){const s=e[r];let o;Z(s)?"default"in s?o=wt(s.from||r,s.default,!0):o=wt(s.from||r):o=wt(s),de(o)?Object.defineProperty(t,r,{enumerable:!0,configurable:!0,get:()=>o.value,set:i=>o.value=i}):t[r]=o}}function as(e,t,n){Se(k(e)?e.map(r=>r.bind(t.proxy)):e.bind(t.proxy),t,n)}function Mo(e,t,n,r){const s=r.includes(".")?Wo(n,r):()=>n[r];if(oe(e)){const o=t[e];K(o)&&Ne(s,o)}else if(K(e))Ne(s,e.bind(n));else if(Z(e))if(k(e))e.forEach(o=>Mo(o,t,n,r));else{const o=K(e.handler)?e.handler.bind(n):t[e.handler];K(o)&&Ne(s,o,e)}}function jr(e){const t=e.type,{mixins:n,extends:r}=t,{mixins:s,optionsCache:o,config:{optionMergeStrategies:i}}=e.appContext,l=o.get(t);let c;return l?c=l:!s.length&&!n&&!r?c=t:(c={},s.length&&s.forEach(a=>bn(c,a,i,!0)),bn(c,t,i)),Z(t)&&o.set(t,c),c}function bn(e,t,n,r=!1){const{mixins:s,extends:o}=t;o&&bn(e,o,n,!0),s&&s.forEach(i=>bn(e,i,n,!0));for(const i in t)if(!(r&&i==="expose")){const l=Kl[i]||n&&n[i];e[i]=l?l(e[i],t[i]):t[i]}return e}const Kl={data:us,props:fs,emits:fs,methods:At,computed:At,beforeCreate:ge,created:ge,beforeMount:ge,mounted:ge,beforeUpdate:ge,updated:ge,beforeDestroy:ge,beforeUnmount:ge,destroyed:ge,unmounted:ge,activated:ge,deactivated:ge,errorCaptured:ge,serverPrefetch:ge,components:At,directives:At,watch:ql,provide:us,inject:Wl};function us(e,t){return t?e?function(){return le(K(e)?e.call(this,this):e,K(t)?t.call(this,this):t)}:t:e}function Wl(e,t){return At(gr(e),gr(t))}function gr(e){if(k(e)){const t={};for(let n=0;n1)return n&&K(t)?t.call(r&&r.proxy):t}}const No={},Fo=()=>Object.create(No),$o=e=>Object.getPrototypeOf(e)===No;function Yl(e,t,n,r=!1){const s={},o=Fo();e.propsDefaults=Object.create(null),Ho(e,t,s,o);for(const i in e.propsOptions[0])i in s||(s[i]=void 0);n?e.props=r?s:fl(s):e.type.props?e.props=s:e.props=o,e.attrs=o}function Jl(e,t,n,r){const{props:s,attrs:o,vnode:{patchFlag:i}}=e,l=J(s),[c]=e.propsOptions;let a=!1;if((r||i>0)&&!(i&16)){if(i&8){const f=e.vnode.dynamicProps;for(let h=0;h{c=!0;const[m,_]=jo(h,t,!0);le(i,m),_&&l.push(..._)};!n&&t.mixins.length&&t.mixins.forEach(f),e.extends&&f(e.extends),e.mixins&&e.mixins.forEach(f)}if(!o&&!c)return Z(e)&&r.set(e,mt),mt;if(k(o))for(let f=0;f-1,_[1]=L<0||C-1||Y(_,"default"))&&l.push(h)}}}const a=[i,l];return Z(e)&&r.set(e,a),a}function ds(e){return e[0]!=="$"&&!_t(e)}function hs(e){return e===null?"null":typeof e=="function"?e.name||"":typeof e=="object"&&e.constructor&&e.constructor.name||""}function ps(e,t){return hs(e)===hs(t)}function gs(e,t){return k(t)?t.findIndex(n=>ps(n,e)):K(t)&&ps(t,e)?0:-1}const Vo=e=>e[0]==="_"||e==="$stable",Vr=e=>k(e)?e.map(Ae):[Ae(e)],Ql=(e,t,n)=>{if(t._n)return t;const r=Al((...s)=>Vr(t(...s)),n);return r._c=!1,r},Do=(e,t,n)=>{const r=e._ctx;for(const s in e){if(Vo(s))continue;const o=e[s];if(K(o))t[s]=Ql(s,o,r);else if(o!=null){const i=Vr(o);t[s]=()=>i}}},Uo=(e,t)=>{const n=Vr(t);e.slots.default=()=>n},Zl=(e,t)=>{const n=e.slots=Fo();if(e.vnode.shapeFlag&32){const r=t._;r?(le(n,t),eo(n,"_",r,!0)):Do(t,n)}else t&&Uo(e,t)},ec=(e,t,n)=>{const{vnode:r,slots:s}=e;let o=!0,i=te;if(r.shapeFlag&32){const l=t._;l?n&&l===1?o=!1:(le(s,t),!n&&l===1&&delete s._):(o=!t.$stable,Do(t,s)),i=t}else t&&(Uo(e,t),i={default:1});if(o)for(const l in s)!Vo(l)&&i[l]==null&&delete s[l]};function wn(e,t,n,r,s=!1){if(k(e)){e.forEach((m,_)=>wn(m,t&&(k(t)?t[_]:t),n,r,s));return}if(bt(r)&&!s)return;const o=r.shapeFlag&4?Vn(r.component):r.el,i=s?null:o,{i:l,r:c}=e,a=t&&t.r,f=l.refs===te?l.refs={}:l.refs,h=l.setupState;if(a!=null&&a!==c&&(oe(a)?(f[a]=null,Y(h,a)&&(h[a]=null)):de(a)&&(a.value=null)),K(c))Ye(c,l,12,[i,f]);else{const m=oe(c),_=de(c);if(m||_){const C=()=>{if(e.f){const L=m?Y(h,c)?h[c]:f[c]:c.value;s?k(L)&&Cr(L,o):k(L)?L.includes(o)||L.push(o):m?(f[c]=[o],Y(h,c)&&(h[c]=f[c])):(c.value=[o],e.k&&(f[e.k]=c.value))}else m?(f[c]=i,Y(h,c)&&(h[c]=i)):_&&(c.value=i,e.k&&(f[e.k]=i))};i?(C.id=-1,ye(C,n)):C()}}}let ms=!1;const pt=()=>{ms||(console.error("Hydration completed but contains mismatches."),ms=!0)},tc=e=>e.namespaceURI.includes("svg")&&e.tagName!=="foreignObject",nc=e=>e.namespaceURI.includes("MathML"),tn=e=>{if(tc(e))return"svg";if(nc(e))return"mathml"},nn=e=>e.nodeType===8;function rc(e){const{mt:t,p:n,o:{patchProp:r,createText:s,nextSibling:o,parentNode:i,remove:l,insert:c,createComment:a}}=e,f=(p,y)=>{if(!y.hasChildNodes()){n(null,p,y),_n(),y._vnode=p;return}h(y.firstChild,p,null,null,null),_n(),y._vnode=p},h=(p,y,M,A,F,$=!1)=>{$=$||!!y.dynamicChildren;const I=nn(p)&&p.data==="[",w=()=>L(p,y,M,A,F,I),{type:N,ref:T,shapeFlag:G,patchFlag:ne}=y;let ce=p.nodeType;y.el=p,ne===-2&&($=!1,y.dynamicChildren=null);let U=null;switch(N){case Et:ce!==3?y.children===""?(c(y.el=s(""),i(p),p),U=p):U=w():(p.data!==y.children&&(pt(),p.data=y.children),U=o(p));break;case me:D(p)?(U=o(p),W(y.el=p.content.firstChild,p,M)):ce!==8||I?U=w():U=o(p);break;case Pt:if(I&&(p=o(p),ce=p.nodeType),ce===1||ce===3){U=p;const X=!y.children.length;for(let V=0;V{$=$||!!y.dynamicChildren;const{type:I,props:w,patchFlag:N,shapeFlag:T,dirs:G,transition:ne}=y,ce=I==="input"||I==="option";if(ce||N!==-1){G&&Me(y,null,M,"created");let U=!1;if(D(p)){U=ko(A,ne)&&M&&M.vnode.props&&M.vnode.props.appear;const V=p.content.firstChild;U&&ne.beforeEnter(V),W(V,p,M),y.el=p=V}if(T&16&&!(w&&(w.innerHTML||w.textContent))){let V=_(p.firstChild,y,p,M,A,F,$);for(;V;){pt();const He=V;V=V.nextSibling,l(He)}}else T&8&&p.textContent!==y.children&&(pt(),p.textContent=y.children);if(w)if(ce||!$||N&48)for(const V in w)(ce&&(V.endsWith("value")||V==="indeterminate")||kt(V)&&!_t(V)||V[0]===".")&&r(p,V,null,w[V],void 0,void 0,M);else w.onClick&&r(p,"onClick",null,w.onClick,void 0,void 0,M);let X;(X=w&&w.onVnodeBeforeMount)&&Ce(X,M,y),G&&Me(y,null,M,"beforeMount"),((X=w&&w.onVnodeMounted)||G||U)&&Oo(()=>{X&&Ce(X,M,y),U&&ne.enter(p),G&&Me(y,null,M,"mounted")},A)}return p.nextSibling},_=(p,y,M,A,F,$,I)=>{I=I||!!y.dynamicChildren;const w=y.children,N=w.length;for(let T=0;T{const{slotScopeIds:I}=y;I&&(F=F?F.concat(I):I);const w=i(p),N=_(o(p),y,w,M,A,F,$);return N&&nn(N)&&N.data==="]"?o(y.anchor=N):(pt(),c(y.anchor=a("]"),w,N),N)},L=(p,y,M,A,F,$)=>{if(pt(),y.el=null,$){const N=H(p);for(;;){const T=o(p);if(T&&T!==N)l(T);else break}}const I=o(p),w=i(p);return l(p),n(null,y,w,I,M,A,tn(w),F),I},H=(p,y="[",M="]")=>{let A=0;for(;p;)if(p=o(p),p&&nn(p)&&(p.data===y&&A++,p.data===M)){if(A===0)return o(p);A--}return p},W=(p,y,M)=>{const A=y.parentNode;A&&A.replaceChild(p,y);let F=M;for(;F;)F.vnode.el===y&&(F.vnode.el=F.subTree.el=p),F=F.parent},D=p=>p.nodeType===1&&p.tagName.toLowerCase()==="template";return[f,h]}const ye=Oo;function sc(e){return Bo(e)}function oc(e){return Bo(e,rc)}function Bo(e,t){const n=to();n.__VUE__=!0;const{insert:r,remove:s,patchProp:o,createElement:i,createText:l,createComment:c,setText:a,setElementText:f,parentNode:h,nextSibling:m,setScopeId:_=xe,insertStaticContent:C}=e,L=(u,d,g,v=null,b=null,S=null,O=void 0,x=null,R=!!d.dynamicChildren)=>{if(u===d)return;u&&!it(u,d)&&(v=Xt(u),Le(u,b,S,!0),u=null),d.patchFlag===-2&&(R=!1,d.dynamicChildren=null);const{type:E,ref:P,shapeFlag:B}=d;switch(E){case Et:H(u,d,g,v);break;case me:W(u,d,g,v);break;case Pt:u==null&&D(d,g,v,O);break;case _e:T(u,d,g,v,b,S,O,x,R);break;default:B&1?M(u,d,g,v,b,S,O,x,R):B&6?G(u,d,g,v,b,S,O,x,R):(B&64||B&128)&&E.process(u,d,g,v,b,S,O,x,R,dt)}P!=null&&b&&wn(P,u&&u.ref,S,d||u,!d)},H=(u,d,g,v)=>{if(u==null)r(d.el=l(d.children),g,v);else{const b=d.el=u.el;d.children!==u.children&&a(b,d.children)}},W=(u,d,g,v)=>{u==null?r(d.el=c(d.children||""),g,v):d.el=u.el},D=(u,d,g,v)=>{[u.el,u.anchor]=C(u.children,d,g,v,u.el,u.anchor)},p=({el:u,anchor:d},g,v)=>{let b;for(;u&&u!==d;)b=m(u),r(u,g,v),u=b;r(d,g,v)},y=({el:u,anchor:d})=>{let g;for(;u&&u!==d;)g=m(u),s(u),u=g;s(d)},M=(u,d,g,v,b,S,O,x,R)=>{d.type==="svg"?O="svg":d.type==="math"&&(O="mathml"),u==null?A(d,g,v,b,S,O,x,R):I(u,d,b,S,O,x,R)},A=(u,d,g,v,b,S,O,x)=>{let R,E;const{props:P,shapeFlag:B,transition:j,dirs:q}=u;if(R=u.el=i(u.type,S,P&&P.is,P),B&8?f(R,u.children):B&16&&$(u.children,R,null,v,b,Gn(u,S),O,x),q&&Me(u,null,v,"created"),F(R,u,u.scopeId,O,v),P){for(const ee in P)ee!=="value"&&!_t(ee)&&o(R,ee,null,P[ee],S,u.children,v,b,je);"value"in P&&o(R,"value",null,P.value,S),(E=P.onVnodeBeforeMount)&&Ce(E,v,u)}q&&Me(u,null,v,"beforeMount");const z=ko(b,j);z&&j.beforeEnter(R),r(R,d,g),((E=P&&P.onVnodeMounted)||z||q)&&ye(()=>{E&&Ce(E,v,u),z&&j.enter(R),q&&Me(u,null,v,"mounted")},b)},F=(u,d,g,v,b)=>{if(g&&_(u,g),v)for(let S=0;S{for(let E=R;E{const x=d.el=u.el;let{patchFlag:R,dynamicChildren:E,dirs:P}=d;R|=u.patchFlag&16;const B=u.props||te,j=d.props||te;let q;if(g&&nt(g,!1),(q=j.onVnodeBeforeUpdate)&&Ce(q,g,d,u),P&&Me(d,u,g,"beforeUpdate"),g&&nt(g,!0),E?w(u.dynamicChildren,E,x,g,v,Gn(d,b),S):O||V(u,d,x,null,g,v,Gn(d,b),S,!1),R>0){if(R&16)N(x,d,B,j,g,v,b);else if(R&2&&B.class!==j.class&&o(x,"class",null,j.class,b),R&4&&o(x,"style",B.style,j.style,b),R&8){const z=d.dynamicProps;for(let ee=0;ee{q&&Ce(q,g,d,u),P&&Me(d,u,g,"updated")},v)},w=(u,d,g,v,b,S,O)=>{for(let x=0;x{if(g!==v){if(g!==te)for(const x in g)!_t(x)&&!(x in v)&&o(u,x,g[x],null,O,d.children,b,S,je);for(const x in v){if(_t(x))continue;const R=v[x],E=g[x];R!==E&&x!=="value"&&o(u,x,E,R,O,d.children,b,S,je)}"value"in v&&o(u,"value",g.value,v.value,O)}},T=(u,d,g,v,b,S,O,x,R)=>{const E=d.el=u?u.el:l(""),P=d.anchor=u?u.anchor:l("");let{patchFlag:B,dynamicChildren:j,slotScopeIds:q}=d;q&&(x=x?x.concat(q):q),u==null?(r(E,g,v),r(P,g,v),$(d.children||[],g,P,b,S,O,x,R)):B>0&&B&64&&j&&u.dynamicChildren?(w(u.dynamicChildren,j,g,b,S,O,x),(d.key!=null||b&&d===b.subTree)&&Dr(u,d,!0)):V(u,d,g,P,b,S,O,x,R)},G=(u,d,g,v,b,S,O,x,R)=>{d.slotScopeIds=x,u==null?d.shapeFlag&512?b.ctx.activate(d,g,v,O,R):ne(d,g,v,b,S,O,R):ce(u,d,R)},ne=(u,d,g,v,b,S,O)=>{const x=u.component=Sc(u,v,b);if(Wt(u)&&(x.ctx.renderer=dt),Tc(x),x.asyncDep){if(b&&b.registerDep(x,U,O),!u.el){const R=x.subTree=ie(me);W(null,R,d,g)}}else U(x,u,d,g,b,S,O)},ce=(u,d,g)=>{const v=d.component=u.component;if(Ll(u,d,g))if(v.asyncDep&&!v.asyncResolved){X(v,d,g);return}else v.next=d,Cl(v.update),v.effect.dirty=!0,v.update();else d.el=u.el,v.vnode=d},U=(u,d,g,v,b,S,O)=>{const x=()=>{if(u.isMounted){let{next:P,bu:B,u:j,parent:q,vnode:z}=u;{const ht=Ko(u);if(ht){P&&(P.el=z.el,X(u,P,O)),ht.asyncDep.then(()=>{u.isUnmounted||x()});return}}let ee=P,Q;nt(u,!1),P?(P.el=z.el,X(u,P,O)):P=z,B&&fn(B),(Q=P.props&&P.props.onVnodeBeforeUpdate)&&Ce(Q,q,P,z),nt(u,!0);const ae=Kn(u),Te=u.subTree;u.subTree=ae,L(Te,ae,h(Te.el),Xt(Te),u,b,S),P.el=ae.el,ee===null&&Il(u,ae.el),j&&ye(j,b),(Q=P.props&&P.props.onVnodeUpdated)&&ye(()=>Ce(Q,q,P,z),b)}else{let P;const{el:B,props:j}=d,{bm:q,m:z,parent:ee}=u,Q=bt(d);if(nt(u,!1),q&&fn(q),!Q&&(P=j&&j.onVnodeBeforeMount)&&Ce(P,ee,d),nt(u,!0),B&&Bn){const ae=()=>{u.subTree=Kn(u),Bn(B,u.subTree,u,b,null)};Q?d.type.__asyncLoader().then(()=>!u.isUnmounted&&ae()):ae()}else{const ae=u.subTree=Kn(u);L(null,ae,g,v,u,b,S),d.el=ae.el}if(z&&ye(z,b),!Q&&(P=j&&j.onVnodeMounted)){const ae=d;ye(()=>Ce(P,ee,ae),b)}(d.shapeFlag&256||ee&&bt(ee.vnode)&&ee.vnode.shapeFlag&256)&&u.a&&ye(u.a,b),u.isMounted=!0,d=g=v=null}},R=u.effect=new Ar(x,xe,()=>Mn(E),u.scope),E=u.update=()=>{R.dirty&&R.run()};E.id=u.uid,nt(u,!0),E()},X=(u,d,g)=>{d.component=u;const v=u.vnode.props;u.vnode=d,u.next=null,Jl(u,d.props,v,g),ec(u,d.children,g),Ze(),os(u),et()},V=(u,d,g,v,b,S,O,x,R=!1)=>{const E=u&&u.children,P=u?u.shapeFlag:0,B=d.children,{patchFlag:j,shapeFlag:q}=d;if(j>0){if(j&128){zt(E,B,g,v,b,S,O,x,R);return}else if(j&256){He(E,B,g,v,b,S,O,x,R);return}}q&8?(P&16&&je(E,b,S),B!==E&&f(g,B)):P&16?q&16?zt(E,B,g,v,b,S,O,x,R):je(E,b,S,!0):(P&8&&f(g,""),q&16&&$(B,g,v,b,S,O,x,R))},He=(u,d,g,v,b,S,O,x,R)=>{u=u||mt,d=d||mt;const E=u.length,P=d.length,B=Math.min(E,P);let j;for(j=0;jP?je(u,b,S,!0,!1,B):$(d,g,v,b,S,O,x,R,B)},zt=(u,d,g,v,b,S,O,x,R)=>{let E=0;const P=d.length;let B=u.length-1,j=P-1;for(;E<=B&&E<=j;){const q=u[E],z=d[E]=R?Ge(d[E]):Ae(d[E]);if(it(q,z))L(q,z,g,null,b,S,O,x,R);else break;E++}for(;E<=B&&E<=j;){const q=u[B],z=d[j]=R?Ge(d[j]):Ae(d[j]);if(it(q,z))L(q,z,g,null,b,S,O,x,R);else break;B--,j--}if(E>B){if(E<=j){const q=j+1,z=qj)for(;E<=B;)Le(u[E],b,S,!0),E++;else{const q=E,z=E,ee=new Map;for(E=z;E<=j;E++){const be=d[E]=R?Ge(d[E]):Ae(d[E]);be.key!=null&&ee.set(be.key,E)}let Q,ae=0;const Te=j-z+1;let ht=!1,zr=0;const St=new Array(Te);for(E=0;E=Te){Le(be,b,S,!0);continue}let Ie;if(be.key!=null)Ie=ee.get(be.key);else for(Q=z;Q<=j;Q++)if(St[Q-z]===0&&it(be,d[Q])){Ie=Q;break}Ie===void 0?Le(be,b,S,!0):(St[Ie-z]=E+1,Ie>=zr?zr=Ie:ht=!0,L(be,d[Ie],g,null,b,S,O,x,R),ae++)}const Xr=ht?ic(St):mt;for(Q=Xr.length-1,E=Te-1;E>=0;E--){const be=z+E,Ie=d[be],Yr=be+1{const{el:S,type:O,transition:x,children:R,shapeFlag:E}=u;if(E&6){tt(u.component.subTree,d,g,v);return}if(E&128){u.suspense.move(d,g,v);return}if(E&64){O.move(u,d,g,dt);return}if(O===_e){r(S,d,g);for(let B=0;Bx.enter(S),b);else{const{leave:B,delayLeave:j,afterLeave:q}=x,z=()=>r(S,d,g),ee=()=>{B(S,()=>{z(),q&&q()})};j?j(S,z,ee):ee()}else r(S,d,g)},Le=(u,d,g,v=!1,b=!1)=>{const{type:S,props:O,ref:x,children:R,dynamicChildren:E,shapeFlag:P,patchFlag:B,dirs:j,memoIndex:q}=u;if(x!=null&&wn(x,null,g,u,!0),q!=null&&(d.renderCache[q]=void 0),P&256){d.ctx.deactivate(u);return}const z=P&1&&j,ee=!bt(u);let Q;if(ee&&(Q=O&&O.onVnodeBeforeUnmount)&&Ce(Q,d,u),P&6)Oi(u.component,g,v);else{if(P&128){u.suspense.unmount(g,v);return}z&&Me(u,null,d,"beforeUnmount"),P&64?u.type.remove(u,d,g,b,dt,v):E&&(S!==_e||B>0&&B&64)?je(E,d,g,!1,!0):(S===_e&&B&384||!b&&P&16)&&je(R,d,g),v&&qr(u)}(ee&&(Q=O&&O.onVnodeUnmounted)||z)&&ye(()=>{Q&&Ce(Q,d,u),z&&Me(u,null,d,"unmounted")},g)},qr=u=>{const{type:d,el:g,anchor:v,transition:b}=u;if(d===_e){Ri(g,v);return}if(d===Pt){y(u);return}const S=()=>{s(g),b&&!b.persisted&&b.afterLeave&&b.afterLeave()};if(u.shapeFlag&1&&b&&!b.persisted){const{leave:O,delayLeave:x}=b,R=()=>O(g,S);x?x(u.el,S,R):R()}else S()},Ri=(u,d)=>{let g;for(;u!==d;)g=m(u),s(u),u=g;s(d)},Oi=(u,d,g)=>{const{bum:v,scope:b,update:S,subTree:O,um:x,m:R,a:E}=u;ys(R),ys(E),v&&fn(v),b.stop(),S&&(S.active=!1,Le(O,u,d,g)),x&&ye(x,d),ye(()=>{u.isUnmounted=!0},d),d&&d.pendingBranch&&!d.isUnmounted&&u.asyncDep&&!u.asyncResolved&&u.suspenseId===d.pendingId&&(d.deps--,d.deps===0&&d.resolve())},je=(u,d,g,v=!1,b=!1,S=0)=>{for(let O=S;Ou.shapeFlag&6?Xt(u.component.subTree):u.shapeFlag&128?u.suspense.next():m(u.anchor||u.el);let Dn=!1;const Gr=(u,d,g)=>{u==null?d._vnode&&Le(d._vnode,null,null,!0):L(d._vnode||null,u,d,null,null,null,g),Dn||(Dn=!0,os(),_n(),Dn=!1),d._vnode=u},dt={p:L,um:Le,m:tt,r:qr,mt:ne,mc:$,pc:V,pbc:w,n:Xt,o:e};let Un,Bn;return t&&([Un,Bn]=t(dt)),{render:Gr,hydrate:Un,createApp:zl(Gr,Un)}}function Gn({type:e,props:t},n){return n==="svg"&&e==="foreignObject"||n==="mathml"&&e==="annotation-xml"&&t&&t.encoding&&t.encoding.includes("html")?void 0:n}function nt({effect:e,update:t},n){e.allowRecurse=t.allowRecurse=n}function ko(e,t){return(!e||e&&!e.pendingBranch)&&t&&!t.persisted}function Dr(e,t,n=!1){const r=e.children,s=t.children;if(k(r)&&k(s))for(let o=0;o>1,e[n[l]]0&&(t[r]=n[o-1]),n[o]=r)}}for(o=n.length,i=n[o-1];o-- >0;)n[o]=i,i=t[i];return n}function Ko(e){const t=e.subTree.component;if(t)return t.asyncDep&&!t.asyncResolved?t:Ko(t)}function ys(e){if(e)for(let t=0;twt(lc);function Ur(e,t){return Hn(e,null,t)}function hu(e,t){return Hn(e,null,{flush:"post"})}const rn={};function Ne(e,t,n){return Hn(e,t,n)}function Hn(e,t,{immediate:n,deep:r,flush:s,once:o,onTrack:i,onTrigger:l}=te){if(t&&o){const A=t;t=(...F)=>{A(...F),M()}}const c=ue,a=A=>r===!0?A:ze(A,r===!1?1:void 0);let f,h=!1,m=!1;if(de(e)?(f=()=>e.value,h=yn(e)):Rt(e)?(f=()=>a(e),h=!0):k(e)?(m=!0,h=e.some(A=>Rt(A)||yn(A)),f=()=>e.map(A=>{if(de(A))return A.value;if(Rt(A))return a(A);if(K(A))return Ye(A,c,2)})):K(e)?t?f=()=>Ye(e,c,2):f=()=>(_&&_(),Se(e,c,3,[C])):f=xe,t&&r){const A=f;f=()=>ze(A())}let _,C=A=>{_=p.onStop=()=>{Ye(A,c,4),_=p.onStop=void 0}},L;if(Gt)if(C=xe,t?n&&Se(t,c,3,[f(),m?[]:void 0,C]):f(),s==="sync"){const A=cc();L=A.__watcherHandles||(A.__watcherHandles=[])}else return xe;let H=m?new Array(e.length).fill(rn):rn;const W=()=>{if(!(!p.active||!p.dirty))if(t){const A=p.run();(r||h||(m?A.some((F,$)=>Je(F,H[$])):Je(A,H)))&&(_&&_(),Se(t,c,3,[A,H===rn?void 0:m&&H[0]===rn?[]:H,C]),H=A)}else p.run()};W.allowRecurse=!!t;let D;s==="sync"?D=W:s==="post"?D=()=>ye(W,c&&c.suspense):(W.pre=!0,c&&(W.id=c.uid),D=()=>Mn(W));const p=new Ar(f,xe,D),y=so(),M=()=>{p.stop(),y&&Cr(y.effects,p)};return t?n?W():H=p.run():s==="post"?ye(p.run.bind(p),c&&c.suspense):p.run(),L&&L.push(M),M}function ac(e,t,n){const r=this.proxy,s=oe(e)?e.includes(".")?Wo(r,e):()=>r[e]:e.bind(r,r);let o;K(t)?o=t:(o=t.handler,n=t);const i=qt(this),l=Hn(s,o.bind(r),n);return i(),l}function Wo(e,t){const n=t.split(".");return()=>{let r=e;for(let s=0;s{ze(r,t,n)});else if(Zs(e)){for(const r in e)ze(e[r],t,n);for(const r of Object.getOwnPropertySymbols(e))Object.prototype.propertyIsEnumerable.call(e,r)&&ze(e[r],t,n)}return e}const Wt=e=>e.type.__isKeepAlive;function uc(e,t){qo(e,"a",t)}function fc(e,t){qo(e,"da",t)}function qo(e,t,n=ue){const r=e.__wdc||(e.__wdc=()=>{let s=n;for(;s;){if(s.isDeactivated)return;s=s.parent}return e()});if(Fn(t,r,n),n){let s=n.parent;for(;s&&s.parent;)Wt(s.parent.vnode)&&dc(r,t,n,s),s=s.parent}}function dc(e,t,n,r){const s=Fn(t,e,r,!0);$n(()=>{Cr(r[t],s)},n)}const qe=Symbol("_leaveCb"),sn=Symbol("_enterCb");function hc(){const e={isMounted:!1,isLeaving:!1,isUnmounting:!1,leavingVNodes:new Map};return xt(()=>{e.isMounted=!0}),Lo(()=>{e.isUnmounting=!0}),e}const Ee=[Function,Array],Go={mode:String,appear:Boolean,persisted:Boolean,onBeforeEnter:Ee,onEnter:Ee,onAfterEnter:Ee,onEnterCancelled:Ee,onBeforeLeave:Ee,onLeave:Ee,onAfterLeave:Ee,onLeaveCancelled:Ee,onBeforeAppear:Ee,onAppear:Ee,onAfterAppear:Ee,onAppearCancelled:Ee},zo=e=>{const t=e.subTree;return t.component?zo(t.component):t},pc={name:"BaseTransition",props:Go,setup(e,{slots:t}){const n=jn(),r=hc();return()=>{const s=t.default&&Yo(t.default(),!0);if(!s||!s.length)return;let o=s[0];if(s.length>1){for(const m of s)if(m.type!==me){o=m;break}}const i=J(e),{mode:l}=i;if(r.isLeaving)return zn(o);const c=_s(o);if(!c)return zn(o);let a=yr(c,i,r,n,m=>a=m);En(c,a);const f=n.subTree,h=f&&_s(f);if(h&&h.type!==me&&!it(c,h)&&zo(n).type!==me){const m=yr(h,i,r,n);if(En(h,m),l==="out-in"&&c.type!==me)return r.isLeaving=!0,m.afterLeave=()=>{r.isLeaving=!1,n.update.active!==!1&&(n.effect.dirty=!0,n.update())},zn(o);l==="in-out"&&c.type!==me&&(m.delayLeave=(_,C,L)=>{const H=Xo(r,h);H[String(h.key)]=h,_[qe]=()=>{C(),_[qe]=void 0,delete a.delayedLeave},a.delayedLeave=L})}return o}}},gc=pc;function Xo(e,t){const{leavingVNodes:n}=e;let r=n.get(t.type);return r||(r=Object.create(null),n.set(t.type,r)),r}function yr(e,t,n,r,s){const{appear:o,mode:i,persisted:l=!1,onBeforeEnter:c,onEnter:a,onAfterEnter:f,onEnterCancelled:h,onBeforeLeave:m,onLeave:_,onAfterLeave:C,onLeaveCancelled:L,onBeforeAppear:H,onAppear:W,onAfterAppear:D,onAppearCancelled:p}=t,y=String(e.key),M=Xo(n,e),A=(I,w)=>{I&&Se(I,r,9,w)},F=(I,w)=>{const N=w[1];A(I,w),k(I)?I.every(T=>T.length<=1)&&N():I.length<=1&&N()},$={mode:i,persisted:l,beforeEnter(I){let w=c;if(!n.isMounted)if(o)w=H||c;else return;I[qe]&&I[qe](!0);const N=M[y];N&&it(e,N)&&N.el[qe]&&N.el[qe](),A(w,[I])},enter(I){let w=a,N=f,T=h;if(!n.isMounted)if(o)w=W||a,N=D||f,T=p||h;else return;let G=!1;const ne=I[sn]=ce=>{G||(G=!0,ce?A(T,[I]):A(N,[I]),$.delayedLeave&&$.delayedLeave(),I[sn]=void 0)};w?F(w,[I,ne]):ne()},leave(I,w){const N=String(e.key);if(I[sn]&&I[sn](!0),n.isUnmounting)return w();A(m,[I]);let T=!1;const G=I[qe]=ne=>{T||(T=!0,w(),ne?A(L,[I]):A(C,[I]),I[qe]=void 0,M[N]===e&&delete M[N])};M[N]=e,_?F(_,[I,G]):G()},clone(I){const w=yr(I,t,n,r,s);return s&&s(w),w}};return $}function zn(e){if(Wt(e))return e=Qe(e),e.children=null,e}function _s(e){if(!Wt(e))return e;const{shapeFlag:t,children:n}=e;if(n){if(t&16)return n[0];if(t&32&&K(n.default))return n.default()}}function En(e,t){e.shapeFlag&6&&e.component?En(e.component.subTree,t):e.shapeFlag&128?(e.ssContent.transition=t.clone(e.ssContent),e.ssFallback.transition=t.clone(e.ssFallback)):e.transition=t}function Yo(e,t=!1,n){let r=[],s=0;for(let o=0;o1)for(let o=0;oe.__isTeleport,Mt=e=>e&&(e.disabled||e.disabled===""),vs=e=>typeof SVGElement<"u"&&e instanceof SVGElement,bs=e=>typeof MathMLElement=="function"&&e instanceof MathMLElement,_r=(e,t)=>{const n=e&&e.to;return oe(n)?t?t(n):null:n},yc={name:"Teleport",__isTeleport:!0,process(e,t,n,r,s,o,i,l,c,a){const{mc:f,pc:h,pbc:m,o:{insert:_,querySelector:C,createText:L,createComment:H}}=a,W=Mt(t.props);let{shapeFlag:D,children:p,dynamicChildren:y}=t;if(e==null){const M=t.el=L(""),A=t.anchor=L("");_(M,n,r),_(A,n,r);const F=t.target=_r(t.props,C),$=t.targetAnchor=L("");F&&(_($,F),i==="svg"||vs(F)?i="svg":(i==="mathml"||bs(F))&&(i="mathml"));const I=(w,N)=>{D&16&&f(p,w,N,s,o,i,l,c)};W?I(n,A):F&&I(F,$)}else{t.el=e.el;const M=t.anchor=e.anchor,A=t.target=e.target,F=t.targetAnchor=e.targetAnchor,$=Mt(e.props),I=$?n:A,w=$?M:F;if(i==="svg"||vs(A)?i="svg":(i==="mathml"||bs(A))&&(i="mathml"),y?(m(e.dynamicChildren,y,I,s,o,i,l),Dr(e,t,!0)):c||h(e,t,I,w,s,o,i,l,!1),W)$?t.props&&e.props&&t.props.to!==e.props.to&&(t.props.to=e.props.to):on(t,n,M,a,1);else if((t.props&&t.props.to)!==(e.props&&e.props.to)){const N=t.target=_r(t.props,C);N&&on(t,N,null,a,0)}else $&&on(t,A,F,a,1)}Jo(t)},remove(e,t,n,r,{um:s,o:{remove:o}},i){const{shapeFlag:l,children:c,anchor:a,targetAnchor:f,target:h,props:m}=e;if(h&&o(f),i&&o(a),l&16){const _=i||!Mt(m);for(let C=0;C0?Re||mt:null,vc(),Dt>0&&Re&&Re.push(e),e}function gu(e,t,n,r,s,o){return Zo(ni(e,t,n,r,s,o,!0))}function ei(e,t,n,r,s){return Zo(ie(e,t,n,r,s,!0))}function Cn(e){return e?e.__v_isVNode===!0:!1}function it(e,t){return e.type===t.type&&e.key===t.key}const ti=({key:e})=>e??null,hn=({ref:e,ref_key:t,ref_for:n})=>(typeof e=="number"&&(e=""+e),e!=null?oe(e)||de(e)||K(e)?{i:fe,r:e,k:t,f:!!n}:e:null);function ni(e,t=null,n=null,r=0,s=null,o=e===_e?0:1,i=!1,l=!1){const c={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&ti(t),ref:t&&hn(t),scopeId:Nn,slotScopeIds:null,children:n,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetAnchor:null,staticCount:0,shapeFlag:o,patchFlag:r,dynamicProps:s,dynamicChildren:null,appContext:null,ctx:fe};return l?(Br(c,n),o&128&&e.normalize(c)):n&&(c.shapeFlag|=oe(n)?8:16),Dt>0&&!i&&Re&&(c.patchFlag>0||o&6)&&c.patchFlag!==32&&Re.push(c),c}const ie=bc;function bc(e,t=null,n=null,r=0,s=null,o=!1){if((!e||e===Ao)&&(e=me),Cn(e)){const l=Qe(e,t,!0);return n&&Br(l,n),Dt>0&&!o&&Re&&(l.shapeFlag&6?Re[Re.indexOf(e)]=l:Re.push(l)),l.patchFlag=-2,l}if(Lc(e)&&(e=e.__vccOpts),t){t=wc(t);let{class:l,style:c}=t;l&&!oe(l)&&(t.class=Tr(l)),Z(c)&&(yo(c)&&!k(c)&&(c=le({},c)),t.style=Sr(c))}const i=oe(e)?1:Ml(e)?128:mc(e)?64:Z(e)?4:K(e)?2:0;return ni(e,t,n,r,s,i,o,!0)}function wc(e){return e?yo(e)||$o(e)?le({},e):e:null}function Qe(e,t,n=!1,r=!1){const{props:s,ref:o,patchFlag:i,children:l,transition:c}=e,a=t?Ec(s||{},t):s,f={__v_isVNode:!0,__v_skip:!0,type:e.type,props:a,key:a&&ti(a),ref:t&&t.ref?n&&o?k(o)?o.concat(hn(t)):[o,hn(t)]:hn(t):o,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:l,target:e.target,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==_e?i===-1?16:i|16:i,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:c,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&Qe(e.ssContent),ssFallback:e.ssFallback&&Qe(e.ssFallback),el:e.el,anchor:e.anchor,ctx:e.ctx,ce:e.ce};return c&&r&&En(f,c.clone(f)),f}function ri(e=" ",t=0){return ie(Et,null,e,t)}function mu(e,t){const n=ie(Pt,null,e);return n.staticCount=t,n}function yu(e="",t=!1){return t?(Qo(),ei(me,null,e)):ie(me,null,e)}function Ae(e){return e==null||typeof e=="boolean"?ie(me):k(e)?ie(_e,null,e.slice()):typeof e=="object"?Ge(e):ie(Et,null,String(e))}function Ge(e){return e.el===null&&e.patchFlag!==-1||e.memo?e:Qe(e)}function Br(e,t){let n=0;const{shapeFlag:r}=e;if(t==null)t=null;else if(k(t))n=16;else if(typeof t=="object")if(r&65){const s=t.default;s&&(s._c&&(s._d=!1),Br(e,s()),s._c&&(s._d=!0));return}else{n=32;const s=t._;!s&&!$o(t)?t._ctx=fe:s===3&&fe&&(fe.slots._===1?t._=1:(t._=2,e.patchFlag|=1024))}else K(t)?(t={default:t,_ctx:fe},n=32):(t=String(t),r&64?(n=16,t=[ri(t)]):n=8);e.children=t,e.shapeFlag|=n}function Ec(...e){const t={};for(let n=0;nue||fe;let xn,vr;{const e=to(),t=(n,r)=>{let s;return(s=e[n])||(s=e[n]=[]),s.push(r),o=>{s.length>1?s.forEach(i=>i(o)):s[0](o)}};xn=t("__VUE_INSTANCE_SETTERS__",n=>ue=n),vr=t("__VUE_SSR_SETTERS__",n=>Gt=n)}const qt=e=>{const t=ue;return xn(e),e.scope.on(),()=>{e.scope.off(),xn(t)}},Es=()=>{ue&&ue.scope.off(),xn(null)};function si(e){return e.vnode.shapeFlag&4}let Gt=!1;function Tc(e,t=!1){t&&vr(t);const{props:n,children:r}=e.vnode,s=si(e);Yl(e,n,s,t),Zl(e,r);const o=s?Ac(e,t):void 0;return t&&vr(!1),o}function Ac(e,t){const n=e.type;e.accessCache=Object.create(null),e.proxy=new Proxy(e.ctx,Dl);const{setup:r}=n;if(r){const s=e.setupContext=r.length>1?ii(e):null,o=qt(e);Ze();const i=Ye(r,e,0,[e.props,s]);if(et(),o(),Js(i)){if(i.then(Es,Es),t)return i.then(l=>{Cs(e,l,t)}).catch(l=>{Kt(l,e,0)});e.asyncDep=i}else Cs(e,i,t)}else oi(e,t)}function Cs(e,t,n){K(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:Z(t)&&(e.setupState=wo(t)),oi(e,n)}let xs;function oi(e,t,n){const r=e.type;if(!e.render){if(!t&&xs&&!r.render){const s=r.template||jr(e).template;if(s){const{isCustomElement:o,compilerOptions:i}=e.appContext.config,{delimiters:l,compilerOptions:c}=r,a=le(le({isCustomElement:o,delimiters:l},i),c);r.render=xs(s,a)}}e.render=r.render||xe}{const s=qt(e);Ze();try{Bl(e)}finally{et(),s()}}}const Rc={get(e,t){return ve(e,"get",""),e[t]}};function ii(e){const t=n=>{e.exposed=n||{}};return{attrs:new Proxy(e.attrs,Rc),slots:e.slots,emit:e.emit,expose:t}}function Vn(e){return e.exposed?e.exposeProxy||(e.exposeProxy=new Proxy(wo(dn(e.exposed)),{get(t,n){if(n in t)return t[n];if(n in Lt)return Lt[n](e)},has(t,n){return n in t||n in Lt}})):e.proxy}function Oc(e,t=!0){return K(e)?e.displayName||e.name:e.name||t&&e.__name}function Lc(e){return K(e)&&"__vccOpts"in e}const re=(e,t)=>dl(e,t,Gt);function br(e,t,n){const r=arguments.length;return r===2?Z(t)&&!k(t)?Cn(t)?ie(e,null,[t]):ie(e,t):ie(e,null,t):(r>3?n=Array.prototype.slice.call(arguments,2):r===3&&Cn(n)&&(n=[n]),ie(e,t,n))}const Ic="3.4.29";/** -* @vue/runtime-dom v3.4.29 -* (c) 2018-present Yuxi (Evan) You and Vue contributors -* @license MIT -**/const Mc="http://www.w3.org/2000/svg",Pc="http://www.w3.org/1998/Math/MathML",Ve=typeof document<"u"?document:null,Ss=Ve&&Ve.createElement("template"),Nc={insert:(e,t,n)=>{t.insertBefore(e,n||null)},remove:e=>{const t=e.parentNode;t&&t.removeChild(e)},createElement:(e,t,n,r)=>{const s=t==="svg"?Ve.createElementNS(Mc,e):t==="mathml"?Ve.createElementNS(Pc,e):n?Ve.createElement(e,{is:n}):Ve.createElement(e);return e==="select"&&r&&r.multiple!=null&&s.setAttribute("multiple",r.multiple),s},createText:e=>Ve.createTextNode(e),createComment:e=>Ve.createComment(e),setText:(e,t)=>{e.nodeValue=t},setElementText:(e,t)=>{e.textContent=t},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>Ve.querySelector(e),setScopeId(e,t){e.setAttribute(t,"")},insertStaticContent(e,t,n,r,s,o){const i=n?n.previousSibling:t.lastChild;if(s&&(s===o||s.nextSibling))for(;t.insertBefore(s.cloneNode(!0),n),!(s===o||!(s=s.nextSibling)););else{Ss.innerHTML=r==="svg"?`${e}`:r==="mathml"?`${e}`:e;const l=Ss.content;if(r==="svg"||r==="mathml"){const c=l.firstChild;for(;c.firstChild;)l.appendChild(c.firstChild);l.removeChild(c)}t.insertBefore(l,n)}return[i?i.nextSibling:t.firstChild,n?n.previousSibling:t.lastChild]}},ke="transition",Tt="animation",Ut=Symbol("_vtc"),li=(e,{slots:t})=>br(gc,Fc(e),t);li.displayName="Transition";const ci={name:String,type:String,css:{type:Boolean,default:!0},duration:[String,Number,Object],enterFromClass:String,enterActiveClass:String,enterToClass:String,appearFromClass:String,appearActiveClass:String,appearToClass:String,leaveFromClass:String,leaveActiveClass:String,leaveToClass:String};li.props=le({},Go,ci);const rt=(e,t=[])=>{k(e)?e.forEach(n=>n(...t)):e&&e(...t)},Ts=e=>e?k(e)?e.some(t=>t.length>1):e.length>1:!1;function Fc(e){const t={};for(const T in e)T in ci||(t[T]=e[T]);if(e.css===!1)return t;const{name:n="v",type:r,duration:s,enterFromClass:o=`${n}-enter-from`,enterActiveClass:i=`${n}-enter-active`,enterToClass:l=`${n}-enter-to`,appearFromClass:c=o,appearActiveClass:a=i,appearToClass:f=l,leaveFromClass:h=`${n}-leave-from`,leaveActiveClass:m=`${n}-leave-active`,leaveToClass:_=`${n}-leave-to`}=e,C=$c(s),L=C&&C[0],H=C&&C[1],{onBeforeEnter:W,onEnter:D,onEnterCancelled:p,onLeave:y,onLeaveCancelled:M,onBeforeAppear:A=W,onAppear:F=D,onAppearCancelled:$=p}=t,I=(T,G,ne)=>{st(T,G?f:l),st(T,G?a:i),ne&&ne()},w=(T,G)=>{T._isLeaving=!1,st(T,h),st(T,_),st(T,m),G&&G()},N=T=>(G,ne)=>{const ce=T?F:D,U=()=>I(G,T,ne);rt(ce,[G,U]),As(()=>{st(G,T?c:o),Ke(G,T?f:l),Ts(ce)||Rs(G,r,L,U)})};return le(t,{onBeforeEnter(T){rt(W,[T]),Ke(T,o),Ke(T,i)},onBeforeAppear(T){rt(A,[T]),Ke(T,c),Ke(T,a)},onEnter:N(!1),onAppear:N(!0),onLeave(T,G){T._isLeaving=!0;const ne=()=>w(T,G);Ke(T,h),Ke(T,m),Vc(),As(()=>{T._isLeaving&&(st(T,h),Ke(T,_),Ts(y)||Rs(T,r,H,ne))}),rt(y,[T,ne])},onEnterCancelled(T){I(T,!1),rt(p,[T])},onAppearCancelled(T){I(T,!0),rt($,[T])},onLeaveCancelled(T){w(T),rt(M,[T])}})}function $c(e){if(e==null)return null;if(Z(e))return[Xn(e.enter),Xn(e.leave)];{const t=Xn(e);return[t,t]}}function Xn(e){return Fi(e)}function Ke(e,t){t.split(/\s+/).forEach(n=>n&&e.classList.add(n)),(e[Ut]||(e[Ut]=new Set)).add(t)}function st(e,t){t.split(/\s+/).forEach(r=>r&&e.classList.remove(r));const n=e[Ut];n&&(n.delete(t),n.size||(e[Ut]=void 0))}function As(e){requestAnimationFrame(()=>{requestAnimationFrame(e)})}let Hc=0;function Rs(e,t,n,r){const s=e._endId=++Hc,o=()=>{s===e._endId&&r()};if(n)return setTimeout(o,n);const{type:i,timeout:l,propCount:c}=jc(e,t);if(!i)return r();const a=i+"end";let f=0;const h=()=>{e.removeEventListener(a,m),o()},m=_=>{_.target===e&&++f>=c&&h()};setTimeout(()=>{f(n[C]||"").split(", "),s=r(`${ke}Delay`),o=r(`${ke}Duration`),i=Os(s,o),l=r(`${Tt}Delay`),c=r(`${Tt}Duration`),a=Os(l,c);let f=null,h=0,m=0;t===ke?i>0&&(f=ke,h=i,m=o.length):t===Tt?a>0&&(f=Tt,h=a,m=c.length):(h=Math.max(i,a),f=h>0?i>a?ke:Tt:null,m=f?f===ke?o.length:c.length:0);const _=f===ke&&/\b(transform|all)(,|$)/.test(r(`${ke}Property`).toString());return{type:f,timeout:h,propCount:m,hasTransform:_}}function Os(e,t){for(;e.lengthLs(n)+Ls(e[r])))}function Ls(e){return e==="auto"?0:Number(e.slice(0,-1).replace(",","."))*1e3}function Vc(){return document.body.offsetHeight}function Dc(e,t,n){const r=e[Ut];r&&(t=(t?[t,...r]:[...r]).join(" ")),t==null?e.removeAttribute("class"):n?e.setAttribute("class",t):e.className=t}const Is=Symbol("_vod"),Uc=Symbol("_vsh"),Bc=Symbol(""),kc=/(^|;)\s*display\s*:/;function Kc(e,t,n){const r=e.style,s=oe(n);let o=!1;if(n&&!s){if(t)if(oe(t))for(const i of t.split(";")){const l=i.slice(0,i.indexOf(":")).trim();n[l]==null&&pn(r,l,"")}else for(const i in t)n[i]==null&&pn(r,i,"");for(const i in n)i==="display"&&(o=!0),pn(r,i,n[i])}else if(s){if(t!==n){const i=r[Bc];i&&(n+=";"+i),r.cssText=n,o=kc.test(n)}}else t&&e.removeAttribute("style");Is in e&&(e[Is]=o?r.display:"",e[Uc]&&(r.display="none"))}const Ms=/\s*!important$/;function pn(e,t,n){if(k(n))n.forEach(r=>pn(e,t,r));else if(n==null&&(n=""),t.startsWith("--"))e.setProperty(t,n);else{const r=Wc(e,t);Ms.test(n)?e.setProperty(ft(r),n.replace(Ms,""),"important"):e[r]=n}}const Ps=["Webkit","Moz","ms"],Yn={};function Wc(e,t){const n=Yn[t];if(n)return n;let r=$e(t);if(r!=="filter"&&r in e)return Yn[t]=r;r=An(r);for(let s=0;sJn||(Yc.then(()=>Jn=0),Jn=Date.now());function Qc(e,t){const n=r=>{if(!r._vts)r._vts=Date.now();else if(r._vts<=n.attached)return;Se(Zc(r,n.value),t,5,[r])};return n.value=e,n.attached=Jc(),n}function Zc(e,t){if(k(t)){const n=e.stopImmediatePropagation;return e.stopImmediatePropagation=()=>{n.call(e),e._stopped=!0},t.map(r=>s=>!s._stopped&&r&&r(s))}else return t}const js=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&e.charCodeAt(2)>96&&e.charCodeAt(2)<123,ea=(e,t,n,r,s,o,i,l,c)=>{const a=s==="svg";t==="class"?Dc(e,r,a):t==="style"?Kc(e,n,r):kt(t)?Er(t)||zc(e,t,n,r,i):(t[0]==="."?(t=t.slice(1),!0):t[0]==="^"?(t=t.slice(1),!1):ta(e,t,r,a))?(qc(e,t,r,o,i,l,c),(t==="value"||t==="checked"||t==="selected")&&Fs(e,t,r,a,i,t!=="value")):(t==="true-value"?e._trueValue=r:t==="false-value"&&(e._falseValue=r),Fs(e,t,r,a))};function ta(e,t,n,r){if(r)return!!(t==="innerHTML"||t==="textContent"||t in e&&js(t)&&K(n));if(t==="spellcheck"||t==="draggable"||t==="translate"||t==="form"||t==="list"&&e.tagName==="INPUT"||t==="type"&&e.tagName==="TEXTAREA")return!1;if(t==="width"||t==="height"){const s=e.tagName;if(s==="IMG"||s==="VIDEO"||s==="CANVAS"||s==="SOURCE")return!1}return js(t)&&oe(n)?!1:t in e}const Vs=e=>{const t=e.props["onUpdate:modelValue"]||!1;return k(t)?n=>fn(t,n):t};function na(e){e.target.composing=!0}function Ds(e){const t=e.target;t.composing&&(t.composing=!1,t.dispatchEvent(new Event("input")))}const Qn=Symbol("_assign"),_u={created(e,{modifiers:{lazy:t,trim:n,number:r}},s){e[Qn]=Vs(s);const o=r||s.props&&s.props.type==="number";gt(e,t?"change":"input",i=>{if(i.target.composing)return;let l=e.value;n&&(l=l.trim()),o&&(l=cr(l)),e[Qn](l)}),n&>(e,"change",()=>{e.value=e.value.trim()}),t||(gt(e,"compositionstart",na),gt(e,"compositionend",Ds),gt(e,"change",Ds))},mounted(e,{value:t}){e.value=t??""},beforeUpdate(e,{value:t,oldValue:n,modifiers:{lazy:r,trim:s,number:o}},i){if(e[Qn]=Vs(i),e.composing)return;const l=(o||e.type==="number")&&!/^0\d/.test(e.value)?cr(e.value):e.value,c=t??"";l!==c&&(document.activeElement===e&&e.type!=="range"&&(r&&t===n||s&&e.value.trim()===c)||(e.value=c))}},ra=["ctrl","shift","alt","meta"],sa={stop:e=>e.stopPropagation(),prevent:e=>e.preventDefault(),self:e=>e.target!==e.currentTarget,ctrl:e=>!e.ctrlKey,shift:e=>!e.shiftKey,alt:e=>!e.altKey,meta:e=>!e.metaKey,left:e=>"button"in e&&e.button!==0,middle:e=>"button"in e&&e.button!==1,right:e=>"button"in e&&e.button!==2,exact:(e,t)=>ra.some(n=>e[`${n}Key`]&&!t.includes(n))},vu=(e,t)=>{const n=e._withMods||(e._withMods={}),r=t.join(".");return n[r]||(n[r]=(s,...o)=>{for(let i=0;i{const n=e._withKeys||(e._withKeys={}),r=t.join(".");return n[r]||(n[r]=s=>{if(!("key"in s))return;const o=ft(s.key);if(t.some(i=>i===o||oa[i]===o))return e(s)})},ai=le({patchProp:ea},Nc);let Ft,Us=!1;function ia(){return Ft||(Ft=sc(ai))}function la(){return Ft=Us?Ft:oc(ai),Us=!0,Ft}const wu=(...e)=>{const t=ia().createApp(...e),{mount:n}=t;return t.mount=r=>{const s=fi(r);if(!s)return;const o=t._component;!K(o)&&!o.render&&!o.template&&(o.template=s.innerHTML),s.innerHTML="";const i=n(s,!1,ui(s));return s instanceof Element&&(s.removeAttribute("v-cloak"),s.setAttribute("data-v-app","")),i},t},Eu=(...e)=>{const t=la().createApp(...e),{mount:n}=t;return t.mount=r=>{const s=fi(r);if(s)return n(s,!0,ui(s))},t};function ui(e){if(e instanceof SVGElement)return"svg";if(typeof MathMLElement=="function"&&e instanceof MathMLElement)return"mathml"}function fi(e){return oe(e)?document.querySelector(e):e}const Cu=(e,t)=>{const n=e.__vccOpts||e;for(const[r,s]of t)n[r]=s;return n},ca="modulepreload",aa=function(e){return"/laravel-wallet/"+e},Bs={},xu=function(t,n,r){let s=Promise.resolve();if(n&&n.length>0){document.getElementsByTagName("link");const o=document.querySelector("meta[property=csp-nonce]"),i=(o==null?void 0:o.nonce)||(o==null?void 0:o.getAttribute("nonce"));s=Promise.all(n.map(l=>{if(l=aa(l),l in Bs)return;Bs[l]=!0;const c=l.endsWith(".css"),a=c?'[rel="stylesheet"]':"";if(document.querySelector(`link[href="${l}"]${a}`))return;const f=document.createElement("link");if(f.rel=c?"stylesheet":ca,c||(f.as="script",f.crossOrigin=""),f.href=l,i&&f.setAttribute("nonce",i),document.head.appendChild(f),c)return new Promise((h,m)=>{f.addEventListener("load",h),f.addEventListener("error",()=>m(new Error(`Unable to preload CSS for ${l}`)))})}))}return s.then(()=>t()).catch(o=>{const i=new Event("vite:preloadError",{cancelable:!0});if(i.payload=o,window.dispatchEvent(i),!i.defaultPrevented)throw o})},ua=window.__VP_SITE_DATA__;function kr(e){return so()?(Ki(e),!0):!1}function Fe(e){return typeof e=="function"?e():bo(e)}const di=typeof window<"u"&&typeof document<"u";typeof WorkerGlobalScope<"u"&&globalThis instanceof WorkerGlobalScope;const fa=Object.prototype.toString,da=e=>fa.call(e)==="[object Object]",Bt=()=>{},ks=ha();function ha(){var e,t;return di&&((e=window==null?void 0:window.navigator)==null?void 0:e.userAgent)&&(/iP(?:ad|hone|od)/.test(window.navigator.userAgent)||((t=window==null?void 0:window.navigator)==null?void 0:t.maxTouchPoints)>2&&/iPad|Macintosh/.test(window==null?void 0:window.navigator.userAgent))}function pa(e,t){function n(...r){return new Promise((s,o)=>{Promise.resolve(e(()=>t.apply(this,r),{fn:t,thisArg:this,args:r})).then(s).catch(o)})}return n}const hi=e=>e();function ga(e,t={}){let n,r,s=Bt;const o=l=>{clearTimeout(l),s(),s=Bt};return l=>{const c=Fe(e),a=Fe(t.maxWait);return n&&o(n),c<=0||a!==void 0&&a<=0?(r&&(o(r),r=null),Promise.resolve(l())):new Promise((f,h)=>{s=t.rejectOnCancel?h:f,a&&!r&&(r=setTimeout(()=>{n&&o(n),r=null,f(l())},a)),n=setTimeout(()=>{r&&o(r),r=null,f(l())},c)})}}function ma(e=hi){const t=se(!0);function n(){t.value=!1}function r(){t.value=!0}const s=(...o)=>{t.value&&e(...o)};return{isActive:Ln(t),pause:n,resume:r,eventFilter:s}}function ya(e){return jn()}function pi(...e){if(e.length!==1)return vl(...e);const t=e[0];return typeof t=="function"?Ln(ml(()=>({get:t,set:Bt}))):se(t)}function gi(e,t,n={}){const{eventFilter:r=hi,...s}=n;return Ne(e,pa(r,t),s)}function _a(e,t,n={}){const{eventFilter:r,...s}=n,{eventFilter:o,pause:i,resume:l,isActive:c}=ma(r);return{stop:gi(e,t,{...s,eventFilter:o}),pause:i,resume:l,isActive:c}}function Kr(e,t=!0,n){ya()?xt(e,n):t?e():In(e)}function Su(e,t,n={}){const{debounce:r=0,maxWait:s=void 0,...o}=n;return gi(e,t,{...o,eventFilter:ga(r,{maxWait:s})})}function Tu(e,t,n){let r;de(n)?r={evaluating:n}:r={};const{lazy:s=!1,evaluating:o=void 0,shallow:i=!0,onError:l=Bt}=r,c=se(!s),a=i?Fr(t):se(t);let f=0;return Ur(async h=>{if(!c.value)return;f++;const m=f;let _=!1;o&&Promise.resolve().then(()=>{o.value=!0});try{const C=await e(L=>{h(()=>{o&&(o.value=!1),_||L()})});m===f&&(a.value=C)}catch(C){l(C)}finally{o&&m===f&&(o.value=!1),_=!0}}),s?re(()=>(c.value=!0,a.value)):a}function mi(e){var t;const n=Fe(e);return(t=n==null?void 0:n.$el)!=null?t:n}const Oe=di?window:void 0;function Ct(...e){let t,n,r,s;if(typeof e[0]=="string"||Array.isArray(e[0])?([n,r,s]=e,t=Oe):[t,n,r,s]=e,!t)return Bt;Array.isArray(n)||(n=[n]),Array.isArray(r)||(r=[r]);const o=[],i=()=>{o.forEach(f=>f()),o.length=0},l=(f,h,m,_)=>(f.addEventListener(h,m,_),()=>f.removeEventListener(h,m,_)),c=Ne(()=>[mi(t),Fe(s)],([f,h])=>{if(i(),!f)return;const m=da(h)?{...h}:h;o.push(...n.flatMap(_=>r.map(C=>l(f,_,C,m))))},{immediate:!0,flush:"post"}),a=()=>{c(),i()};return kr(a),a}function va(e){return typeof e=="function"?e:typeof e=="string"?t=>t.key===e:Array.isArray(e)?t=>e.includes(t.key):()=>!0}function Au(...e){let t,n,r={};e.length===3?(t=e[0],n=e[1],r=e[2]):e.length===2?typeof e[1]=="object"?(t=!0,n=e[0],r=e[1]):(t=e[0],n=e[1]):(t=!0,n=e[0]);const{target:s=Oe,eventName:o="keydown",passive:i=!1,dedupe:l=!1}=r,c=va(t);return Ct(s,o,f=>{f.repeat&&Fe(l)||c(f)&&n(f)},i)}function ba(){const e=se(!1),t=jn();return t&&xt(()=>{e.value=!0},t),e}function wa(e){const t=ba();return re(()=>(t.value,!!e()))}function yi(e,t={}){const{window:n=Oe}=t,r=wa(()=>n&&"matchMedia"in n&&typeof n.matchMedia=="function");let s;const o=se(!1),i=a=>{o.value=a.matches},l=()=>{s&&("removeEventListener"in s?s.removeEventListener("change",i):s.removeListener(i))},c=Ur(()=>{r.value&&(l(),s=n.matchMedia(Fe(e)),"addEventListener"in s?s.addEventListener("change",i):s.addListener(i),o.value=s.matches)});return kr(()=>{c(),l(),s=void 0}),o}const ln=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{},cn="__vueuse_ssr_handlers__",Ea=Ca();function Ca(){return cn in ln||(ln[cn]=ln[cn]||{}),ln[cn]}function _i(e,t){return Ea[e]||t}function xa(e){return e==null?"any":e instanceof Set?"set":e instanceof Map?"map":e instanceof Date?"date":typeof e=="boolean"?"boolean":typeof e=="string"?"string":typeof e=="object"?"object":Number.isNaN(e)?"any":"number"}const Sa={boolean:{read:e=>e==="true",write:e=>String(e)},object:{read:e=>JSON.parse(e),write:e=>JSON.stringify(e)},number:{read:e=>Number.parseFloat(e),write:e=>String(e)},any:{read:e=>e,write:e=>String(e)},string:{read:e=>e,write:e=>String(e)},map:{read:e=>new Map(JSON.parse(e)),write:e=>JSON.stringify(Array.from(e.entries()))},set:{read:e=>new Set(JSON.parse(e)),write:e=>JSON.stringify(Array.from(e))},date:{read:e=>new Date(e),write:e=>e.toISOString()}},Ks="vueuse-storage";function Wr(e,t,n,r={}){var s;const{flush:o="pre",deep:i=!0,listenToStorageChanges:l=!0,writeDefaults:c=!0,mergeDefaults:a=!1,shallow:f,window:h=Oe,eventFilter:m,onError:_=w=>{console.error(w)},initOnMounted:C}=r,L=(f?Fr:se)(typeof t=="function"?t():t);if(!n)try{n=_i("getDefaultStorage",()=>{var w;return(w=Oe)==null?void 0:w.localStorage})()}catch(w){_(w)}if(!n)return L;const H=Fe(t),W=xa(H),D=(s=r.serializer)!=null?s:Sa[W],{pause:p,resume:y}=_a(L,()=>A(L.value),{flush:o,deep:i,eventFilter:m});h&&l&&Kr(()=>{Ct(h,"storage",$),Ct(h,Ks,I),C&&$()}),C||$();function M(w,N){h&&h.dispatchEvent(new CustomEvent(Ks,{detail:{key:e,oldValue:w,newValue:N,storageArea:n}}))}function A(w){try{const N=n.getItem(e);if(w==null)M(N,null),n.removeItem(e);else{const T=D.write(w);N!==T&&(n.setItem(e,T),M(N,T))}}catch(N){_(N)}}function F(w){const N=w?w.newValue:n.getItem(e);if(N==null)return c&&H!=null&&n.setItem(e,D.write(H)),H;if(!w&&a){const T=D.read(N);return typeof a=="function"?a(T,H):W==="object"&&!Array.isArray(T)?{...H,...T}:T}else return typeof N!="string"?N:D.read(N)}function $(w){if(!(w&&w.storageArea!==n)){if(w&&w.key==null){L.value=H;return}if(!(w&&w.key!==e)){p();try{(w==null?void 0:w.newValue)!==D.write(L.value)&&(L.value=F(w))}catch(N){_(N)}finally{w?In(y):y()}}}}function I(w){$(w.detail)}return L}function vi(e){return yi("(prefers-color-scheme: dark)",e)}function Ta(e={}){const{selector:t="html",attribute:n="class",initialValue:r="auto",window:s=Oe,storage:o,storageKey:i="vueuse-color-scheme",listenToStorageChanges:l=!0,storageRef:c,emitAuto:a,disableTransition:f=!0}=e,h={auto:"",light:"light",dark:"dark",...e.modes||{}},m=vi({window:s}),_=re(()=>m.value?"dark":"light"),C=c||(i==null?pi(r):Wr(i,r,o,{window:s,listenToStorageChanges:l})),L=re(()=>C.value==="auto"?_.value:C.value),H=_i("updateHTMLAttrs",(y,M,A)=>{const F=typeof y=="string"?s==null?void 0:s.document.querySelector(y):mi(y);if(!F)return;let $;if(f&&($=s.document.createElement("style"),$.appendChild(document.createTextNode("*,*::before,*::after{-webkit-transition:none!important;-moz-transition:none!important;-o-transition:none!important;-ms-transition:none!important;transition:none!important}")),s.document.head.appendChild($)),M==="class"){const I=A.split(/\s/g);Object.values(h).flatMap(w=>(w||"").split(/\s/g)).filter(Boolean).forEach(w=>{I.includes(w)?F.classList.add(w):F.classList.remove(w)})}else F.setAttribute(M,A);f&&(s.getComputedStyle($).opacity,document.head.removeChild($))});function W(y){var M;H(t,n,(M=h[y])!=null?M:y)}function D(y){e.onChanged?e.onChanged(y,W):W(y)}Ne(L,D,{flush:"post",immediate:!0}),Kr(()=>D(L.value));const p=re({get(){return a?C.value:L.value},set(y){C.value=y}});try{return Object.assign(p,{store:C,system:_,state:L})}catch{return p}}function Aa(e={}){const{valueDark:t="dark",valueLight:n="",window:r=Oe}=e,s=Ta({...e,onChanged:(l,c)=>{var a;e.onChanged?(a=e.onChanged)==null||a.call(e,l==="dark",c,l):c(l)},modes:{dark:t,light:n}}),o=re(()=>s.system?s.system.value:vi({window:r}).value?"dark":"light");return re({get(){return s.value==="dark"},set(l){const c=l?"dark":"light";o.value===c?s.value="auto":s.value=c}})}function Zn(e){return typeof Window<"u"&&e instanceof Window?e.document.documentElement:typeof Document<"u"&&e instanceof Document?e.documentElement:e}function Ru(e,t,n={}){const{window:r=Oe}=n;return Wr(e,t,r==null?void 0:r.localStorage,n)}function bi(e){const t=window.getComputedStyle(e);if(t.overflowX==="scroll"||t.overflowY==="scroll"||t.overflowX==="auto"&&e.clientWidth1?!0:(t.preventDefault&&t.preventDefault(),!1)}const er=new WeakMap;function Ou(e,t=!1){const n=se(t);let r=null,s="";Ne(pi(e),l=>{const c=Zn(Fe(l));if(c){const a=c;if(er.get(a)||er.set(a,a.style.overflow),a.style.overflow!=="hidden"&&(s=a.style.overflow),a.style.overflow==="hidden")return n.value=!0;if(n.value)return a.style.overflow="hidden"}},{immediate:!0});const o=()=>{const l=Zn(Fe(e));!l||n.value||(ks&&(r=Ct(l,"touchmove",c=>{Ra(c)},{passive:!1})),l.style.overflow="hidden",n.value=!0)},i=()=>{const l=Zn(Fe(e));!l||!n.value||(ks&&(r==null||r()),l.style.overflow=s,er.delete(l),n.value=!1)};return kr(i),re({get(){return n.value},set(l){l?o():i()}})}function Lu(e,t,n={}){const{window:r=Oe}=n;return Wr(e,t,r==null?void 0:r.sessionStorage,n)}function Iu(e={}){const{window:t=Oe,behavior:n="auto"}=e;if(!t)return{x:se(0),y:se(0)};const r=se(t.scrollX),s=se(t.scrollY),o=re({get(){return r.value},set(l){scrollTo({left:l,behavior:n})}}),i=re({get(){return s.value},set(l){scrollTo({top:l,behavior:n})}});return Ct(t,"scroll",()=>{r.value=t.scrollX,s.value=t.scrollY},{capture:!1,passive:!0}),{x:o,y:i}}function Mu(e={}){const{window:t=Oe,initialWidth:n=Number.POSITIVE_INFINITY,initialHeight:r=Number.POSITIVE_INFINITY,listenOrientation:s=!0,includeScrollbar:o=!0}=e,i=se(n),l=se(r),c=()=>{t&&(o?(i.value=t.innerWidth,l.value=t.innerHeight):(i.value=t.document.documentElement.clientWidth,l.value=t.document.documentElement.clientHeight))};if(c(),Kr(c),Ct("resize",c,{passive:!0}),s){const a=yi("(orientation: portrait)");Ne(a,()=>c())}return{width:i,height:l}}var tr={BASE_URL:"/laravel-wallet/",MODE:"production",DEV:!1,PROD:!0,SSR:!1},nr={};const wi=/^(?:[a-z]+:|\/\/)/i,Oa="vitepress-theme-appearance",La=/#.*$/,Ia=/[?#].*$/,Ma=/(?:(^|\/)index)?\.(?:md|html)$/,he=typeof document<"u",Ei={relativePath:"404.md",filePath:"",title:"404",description:"Not Found",headers:[],frontmatter:{sidebar:!1,layout:"page"},lastUpdated:0,isNotFound:!0};function Pa(e,t,n=!1){if(t===void 0)return!1;if(e=Ws(`/${e}`),n)return new RegExp(t).test(e);if(Ws(t)!==e)return!1;const r=t.match(La);return r?(he?location.hash:"")===r[0]:!0}function Ws(e){return decodeURI(e).replace(Ia,"").replace(Ma,"$1")}function Na(e){return wi.test(e)}function Fa(e,t){return Object.keys((e==null?void 0:e.locales)||{}).find(n=>n!=="root"&&!Na(n)&&Pa(t,`/${n}/`,!0))||"root"}function $a(e,t){var r,s,o,i,l,c,a;const n=Fa(e,t);return Object.assign({},e,{localeIndex:n,lang:((r=e.locales[n])==null?void 0:r.lang)??e.lang,dir:((s=e.locales[n])==null?void 0:s.dir)??e.dir,title:((o=e.locales[n])==null?void 0:o.title)??e.title,titleTemplate:((i=e.locales[n])==null?void 0:i.titleTemplate)??e.titleTemplate,description:((l=e.locales[n])==null?void 0:l.description)??e.description,head:xi(e.head,((c=e.locales[n])==null?void 0:c.head)??[]),themeConfig:{...e.themeConfig,...(a=e.locales[n])==null?void 0:a.themeConfig}})}function Ci(e,t){const n=t.title||e.title,r=t.titleTemplate??e.titleTemplate;if(typeof r=="string"&&r.includes(":title"))return r.replace(/:title/g,n);const s=Ha(e.title,r);return n===s.slice(3)?n:`${n}${s}`}function Ha(e,t){return t===!1?"":t===!0||t===void 0?` | ${e}`:e===t?"":` | ${t}`}function ja(e,t){const[n,r]=t;if(n!=="meta")return!1;const s=Object.entries(r)[0];return s==null?!1:e.some(([o,i])=>o===n&&i[s[0]]===s[1])}function xi(e,t){return[...e.filter(n=>!ja(t,n)),...t]}const Va=/[\u0000-\u001F"#$&*+,:;<=>?[\]^`{|}\u007F]/g,Da=/^[a-z]:/i;function qs(e){const t=Da.exec(e),n=t?t[0]:"";return n+e.slice(n.length).replace(Va,"_").replace(/(^|\/)_+(?=[^/]*$)/,"$1")}const rr=new Set;function Ua(e){if(rr.size===0){const n=typeof process=="object"&&(nr==null?void 0:nr.VITE_EXTRA_EXTENSIONS)||(tr==null?void 0:tr.VITE_EXTRA_EXTENSIONS)||"";("3g2,3gp,aac,ai,apng,au,avif,bin,bmp,cer,class,conf,crl,css,csv,dll,doc,eps,epub,exe,gif,gz,ics,ief,jar,jpe,jpeg,jpg,js,json,jsonld,m4a,man,mid,midi,mjs,mov,mp2,mp3,mp4,mpe,mpeg,mpg,mpp,oga,ogg,ogv,ogx,opus,otf,p10,p7c,p7m,p7s,pdf,png,ps,qt,roff,rtf,rtx,ser,svg,t,tif,tiff,tr,ts,tsv,ttf,txt,vtt,wav,weba,webm,webp,woff,woff2,xhtml,xml,yaml,yml,zip"+(n&&typeof n=="string"?","+n:"")).split(",").forEach(r=>rr.add(r))}const t=e.split(".").pop();return t==null||!rr.has(t.toLowerCase())}function Pu(e){return e.replace(/[|\\{}()[\]^$+*?.]/g,"\\$&").replace(/-/g,"\\x2d")}const Ba=Symbol(),at=Fr(ua);function Nu(e){const t=re(()=>$a(at.value,e.data.relativePath)),n=t.value.appearance,r=n==="force-dark"?se(!0):n?Aa({storageKey:Oa,initialValue:()=>typeof n=="string"?n:"auto",...typeof n=="object"?n:{}}):se(!1),s=se(he?location.hash:"");return he&&window.addEventListener("hashchange",()=>{s.value=location.hash}),Ne(()=>e.data,()=>{s.value=he?location.hash:""}),{site:t,theme:re(()=>t.value.themeConfig),page:re(()=>e.data),frontmatter:re(()=>e.data.frontmatter),params:re(()=>e.data.params),lang:re(()=>t.value.lang),dir:re(()=>e.data.frontmatter.dir||t.value.dir),localeIndex:re(()=>t.value.localeIndex||"root"),title:re(()=>Ci(t.value,e.data)),description:re(()=>e.data.description||t.value.description),isDark:r,hash:re(()=>s.value)}}function ka(){const e=wt(Ba);if(!e)throw new Error("vitepress data not properly injected in app");return e}function Ka(e,t){return`${e}${t}`.replace(/\/+/g,"/")}function Gs(e){return wi.test(e)||!e.startsWith("/")?e:Ka(at.value.base,e)}function Wa(e){let t=e.replace(/\.html$/,"");if(t=decodeURIComponent(t),t=t.replace(/\/$/,"/index"),he){const n="/laravel-wallet/";t=qs(t.slice(n.length).replace(/\//g,"_")||"index")+".md";let r=__VP_HASH_MAP__[t.toLowerCase()];if(r||(t=t.endsWith("_index.md")?t.slice(0,-9)+".md":t.slice(0,-3)+"_index.md",r=__VP_HASH_MAP__[t.toLowerCase()]),!r)return null;t=`${n}assets/${t}.${r}.js`}else t=`./${qs(t.slice(1).replace(/\//g,"_"))}.md.js`;return t}let gn=[];function Fu(e){gn.push(e),$n(()=>{gn=gn.filter(t=>t!==e)})}function qa(){let e=at.value.scrollOffset,t=0,n=24;if(typeof e=="object"&&"padding"in e&&(n=e.padding,e=e.selector),typeof e=="number")t=e;else if(typeof e=="string")t=zs(e,n);else if(Array.isArray(e))for(const r of e){const s=zs(r,n);if(s){t=s;break}}return t}function zs(e,t){const n=document.querySelector(e);if(!n)return 0;const r=n.getBoundingClientRect().bottom;return r<0?0:r+t}const Ga=Symbol(),Si="http://a.com",za=()=>({path:"/",component:null,data:Ei});function $u(e,t){const n=On(za()),r={route:n,go:s};async function s(l=he?location.href:"/"){var c,a;l=sr(l),await((c=r.onBeforeRouteChange)==null?void 0:c.call(r,l))!==!1&&(he&&l!==sr(location.href)&&(history.replaceState({scrollPosition:window.scrollY},""),history.pushState({},"",l)),await i(l),await((a=r.onAfterRouteChanged)==null?void 0:a.call(r,l)))}let o=null;async function i(l,c=0,a=!1){var m;if(await((m=r.onBeforePageLoad)==null?void 0:m.call(r,l))===!1)return;const f=new URL(l,Si),h=o=f.pathname;try{let _=await e(h);if(!_)throw new Error(`Page not found: ${h}`);if(o===h){o=null;const{default:C,__pageData:L}=_;if(!C)throw new Error(`Invalid route component: ${C}`);n.path=he?h:Gs(h),n.component=dn(C),n.data=dn(L),he&&In(()=>{let H=at.value.base+L.relativePath.replace(/(?:(^|\/)index)?\.md$/,"$1");if(!at.value.cleanUrls&&!H.endsWith("/")&&(H+=".html"),H!==f.pathname&&(f.pathname=H,l=H+f.search+f.hash,history.replaceState({},"",l)),f.hash&&!c){let W=null;try{W=document.getElementById(decodeURIComponent(f.hash).slice(1))}catch(D){console.warn(D)}if(W){Xs(W,f.hash);return}}window.scrollTo(0,c)})}}catch(_){if(!/fetch|Page not found/.test(_.message)&&!/^\/404(\.html|\/)?$/.test(l)&&console.error(_),!a)try{const C=await fetch(at.value.base+"hashmap.json");window.__VP_HASH_MAP__=await C.json(),await i(l,c,!0);return}catch{}if(o===h){o=null,n.path=he?h:Gs(h),n.component=t?dn(t):null;const C=he?h.replace(/(^|\/)$/,"$1index").replace(/(\.html)?$/,".md").replace(/^\//,""):"404.md";n.data={...Ei,relativePath:C}}}}return he&&(history.state===null&&history.replaceState({},""),window.addEventListener("click",l=>{if(l.target.closest("button"))return;const a=l.target.closest("a");if(a&&!a.closest(".vp-raw")&&(a instanceof SVGElement||!a.download)){const{target:f}=a,{href:h,origin:m,pathname:_,hash:C,search:L}=new URL(a.href instanceof SVGAnimatedString?a.href.animVal:a.href,a.baseURI),H=new URL(location.href);!l.ctrlKey&&!l.shiftKey&&!l.altKey&&!l.metaKey&&!f&&m===H.origin&&Ua(_)&&(l.preventDefault(),_===H.pathname&&L===H.search?(C!==H.hash&&(history.pushState({},"",h),window.dispatchEvent(new HashChangeEvent("hashchange",{oldURL:H.href,newURL:h}))),C?Xs(a,C,a.classList.contains("header-anchor")):window.scrollTo(0,0)):s(h))}},{capture:!0}),window.addEventListener("popstate",async l=>{var c;l.state!==null&&(await i(sr(location.href),l.state&&l.state.scrollPosition||0),(c=r.onAfterRouteChanged)==null||c.call(r,location.href))}),window.addEventListener("hashchange",l=>{l.preventDefault()})),r}function Xa(){const e=wt(Ga);if(!e)throw new Error("useRouter() is called without provider.");return e}function Ti(){return Xa().route}function Xs(e,t,n=!1){let r=null;try{r=e.classList.contains("header-anchor")?e:document.getElementById(decodeURIComponent(t).slice(1))}catch(s){console.warn(s)}if(r){let s=function(){!n||Math.abs(i-window.scrollY)>window.innerHeight?window.scrollTo(0,i):window.scrollTo({left:0,top:i,behavior:"smooth"})};const o=parseInt(window.getComputedStyle(r).paddingTop,10),i=window.scrollY+r.getBoundingClientRect().top-qa()+o;requestAnimationFrame(s)}}function sr(e){const t=new URL(e,Si);return t.pathname=t.pathname.replace(/(^|\/)index(\.html)?$/,"$1"),at.value.cleanUrls?t.pathname=t.pathname.replace(/\.html$/,""):!t.pathname.endsWith("/")&&!t.pathname.endsWith(".html")&&(t.pathname+=".html"),t.pathname+t.search+t.hash}const or=()=>gn.forEach(e=>e()),Hu=Hr({name:"VitePressContent",props:{as:{type:[Object,String],default:"div"}},setup(e){const t=Ti(),{site:n}=ka();return()=>br(e.as,n.value.contentProps??{style:{position:"relative"}},[t.component?br(t.component,{onVnodeMounted:or,onVnodeUpdated:or,onVnodeUnmounted:or}):"404 Page Not Found"])}}),ju=Hr({setup(e,{slots:t}){const n=se(!1);return xt(()=>{n.value=!0}),()=>n.value&&t.default?t.default():null}});function Vu(){he&&window.addEventListener("click",e=>{var n;const t=e.target;if(t.matches(".vp-code-group input")){const r=(n=t.parentElement)==null?void 0:n.parentElement;if(!r)return;const s=Array.from(r.querySelectorAll("input")).indexOf(t);if(s<0)return;const o=r.querySelector(".blocks");if(!o)return;const i=Array.from(o.children).find(a=>a.classList.contains("active"));if(!i)return;const l=o.children[s];if(!l||i===l)return;i.classList.remove("active"),l.classList.add("active");const c=r==null?void 0:r.querySelector(`label[for="${t.id}"]`);c==null||c.scrollIntoView({block:"nearest"})}})}function Du(){if(he){const e=new WeakMap;window.addEventListener("click",t=>{var r;const n=t.target;if(n.matches('div[class*="language-"] > button.copy')){const s=n.parentElement,o=(r=n.nextElementSibling)==null?void 0:r.nextElementSibling;if(!s||!o)return;const i=/language-(shellscript|shell|bash|sh|zsh)/.test(s.className),l=[".vp-copy-ignore",".diff.remove"],c=o.cloneNode(!0);c.querySelectorAll(l.join(",")).forEach(f=>f.remove());let a=c.textContent||"";i&&(a=a.replace(/^ *(\$|>) /gm,"").trim()),Ya(a).then(()=>{n.classList.add("copied"),clearTimeout(e.get(n));const f=setTimeout(()=>{n.classList.remove("copied"),n.blur(),e.delete(n)},2e3);e.set(n,f)})}})}}async function Ya(e){try{return navigator.clipboard.writeText(e)}catch{const t=document.createElement("textarea"),n=document.activeElement;t.value=e,t.setAttribute("readonly",""),t.style.contain="strict",t.style.position="absolute",t.style.left="-9999px",t.style.fontSize="12pt";const r=document.getSelection(),s=r?r.rangeCount>0&&r.getRangeAt(0):null;document.body.appendChild(t),t.select(),t.selectionStart=0,t.selectionEnd=e.length,document.execCommand("copy"),document.body.removeChild(t),s&&(r.removeAllRanges(),r.addRange(s)),n&&n.focus()}}function Uu(e,t){let n=!0,r=[];const s=o=>{if(n){n=!1,o.forEach(l=>{const c=ir(l);for(const a of document.head.children)if(a.isEqualNode(c)){r.push(a);return}});return}const i=o.map(ir);r.forEach((l,c)=>{const a=i.findIndex(f=>f==null?void 0:f.isEqualNode(l??null));a!==-1?delete i[a]:(l==null||l.remove(),delete r[c])}),i.forEach(l=>l&&document.head.appendChild(l)),r=[...r,...i].filter(Boolean)};Ur(()=>{const o=e.data,i=t.value,l=o&&o.description,c=o&&o.frontmatter.head||[],a=Ci(i,o);a!==document.title&&(document.title=a);const f=l||i.description;let h=document.querySelector("meta[name=description]");h?h.getAttribute("content")!==f&&h.setAttribute("content",f):ir(["meta",{name:"description",content:f}]),s(xi(i.head,Qa(c)))})}function ir([e,t,n]){const r=document.createElement(e);for(const s in t)r.setAttribute(s,t[s]);return n&&(r.innerHTML=n),e==="script"&&!t.async&&(r.async=!1),r}function Ja(e){return e[0]==="meta"&&e[1]&&e[1].name==="description"}function Qa(e){return e.filter(t=>!Ja(t))}const lr=new Set,Ai=()=>document.createElement("link"),Za=e=>{const t=Ai();t.rel="prefetch",t.href=e,document.head.appendChild(t)},eu=e=>{const t=new XMLHttpRequest;t.open("GET",e,t.withCredentials=!0),t.send()};let an;const tu=he&&(an=Ai())&&an.relList&&an.relList.supports&&an.relList.supports("prefetch")?Za:eu;function Bu(){if(!he||!window.IntersectionObserver)return;let e;if((e=navigator.connection)&&(e.saveData||/2g/.test(e.effectiveType)))return;const t=window.requestIdleCallback||setTimeout;let n=null;const r=()=>{n&&n.disconnect(),n=new IntersectionObserver(o=>{o.forEach(i=>{if(i.isIntersecting){const l=i.target;n.unobserve(l);const{pathname:c}=l;if(!lr.has(c)){lr.add(c);const a=Wa(c);a&&tu(a)}}})}),t(()=>{document.querySelectorAll("#app a").forEach(o=>{const{hostname:i,pathname:l}=new URL(o.href instanceof SVGAnimatedString?o.href.animVal:o.href,o.baseURI),c=l.match(/\.\w+$/);c&&c[0]!==".html"||o.target!=="_blank"&&i===location.hostname&&(l!==location.pathname?n.observe(o):lr.add(l))})})};xt(r);const s=Ti();Ne(()=>s.path,r),$n(()=>{n&&n.disconnect()})}export{bu as $,hu as A,Fl as B,qa as C,ou as D,cu as E,_e as F,Fr as G,Fu as H,ie as I,iu as J,wi as K,Ti as L,Ec as M,wt as N,Mu as O,Sr as P,Au as Q,In as R,Iu as S,li as T,he as U,Ln as V,au as W,xu as X,Ou as Y,Xl as Z,Cu as _,ri as a,fu as a0,vu as a1,du as a2,mu as a3,Uu as a4,Ga as a5,Nu as a6,Ba as a7,Hu as a8,ju as a9,at as aa,Eu as ab,$u as ac,Wa as ad,Bu as ae,Du as af,Vu as ag,br as ah,mi as ai,kr as aj,Tu as ak,Lu as al,Ru as am,Su as an,Xa as ao,Ct as ap,Lo as aq,lu as ar,_u as as,de as at,pu as au,dn as av,wu as aw,Pu as ax,ei as b,gu as c,Hr as d,yu as e,Ua as f,Gs as g,re as h,Na as i,ni as j,bo as k,su as l,Pa as m,Tr as n,Qo as o,ru as p,yi as q,uu as r,se as s,nu as t,ka as u,Ne as v,Al as w,Ur as x,xt as y,$n as z}; diff --git a/docs/.vitepress/dist/assets/chunks/theme.Cw_-CB8X.js b/docs/.vitepress/dist/assets/chunks/theme.Cw_-CB8X.js deleted file mode 100644 index 503fe6527..000000000 --- a/docs/.vitepress/dist/assets/chunks/theme.Cw_-CB8X.js +++ /dev/null @@ -1,2 +0,0 @@ -const __vite__fileDeps=["assets/chunks/VPLocalSearchBox.DL0hJ4hG.js","assets/chunks/framework.OdeEVNy0.js"],__vite__mapDeps=i=>i.map(i=>__vite__fileDeps[i]); -import{d as _,o as a,c,r as l,n as N,a as D,t as I,b as $,w as d,e as f,T as ve,_ as b,u as Ue,i as Ge,f as je,g as pe,h as y,j as v,k as r,p as B,l as H,m as z,q as ie,s as w,v as j,x as Z,y as R,z as he,A as ye,B as ze,C as qe,D as q,F as M,E,G as Pe,H as x,I as m,J as W,K as Le,L as ee,M as Y,N as te,O as Ke,P as Ve,Q as le,R as We,S as Se,U as oe,V as Re,W as Je,X as Ye,Y as Te,Z as Ie,$ as Qe,a0 as Xe,a1 as Ze,a2 as xe}from"./framework.OdeEVNy0.js";const et=_({__name:"VPBadge",props:{text:{},type:{default:"tip"}},setup(o){return(e,t)=>(a(),c("span",{class:N(["VPBadge",e.type])},[l(e.$slots,"default",{},()=>[D(I(e.text),1)])],2))}}),tt={key:0,class:"VPBackdrop"},ot=_({__name:"VPBackdrop",props:{show:{type:Boolean}},setup(o){return(e,t)=>(a(),$(ve,{name:"fade"},{default:d(()=>[e.show?(a(),c("div",tt)):f("",!0)]),_:1}))}}),st=b(ot,[["__scopeId","data-v-c79a1216"]]),P=Ue;function nt(o,e){let t,n=!1;return()=>{t&&clearTimeout(t),n?t=setTimeout(o,e):(o(),(n=!0)&&setTimeout(()=>n=!1,e))}}function ce(o){return/^\//.test(o)?o:`/${o}`}function fe(o){const{pathname:e,search:t,hash:n,protocol:s}=new URL(o,"http://a.com");if(Ge(o)||o.startsWith("#")||!s.startsWith("http")||!je(e))return o;const{site:i}=P(),u=e.endsWith("/")||e.endsWith(".html")?o:o.replace(/(?:(^\.+)\/)?.*$/,`$1${e.replace(/(\.md)?$/,i.value.cleanUrls?"":".html")}${t}${n}`);return pe(u)}function J({correspondingLink:o=!1}={}){const{site:e,localeIndex:t,page:n,theme:s,hash:i}=P(),u=y(()=>{var p,g;return{label:(p=e.value.locales[t.value])==null?void 0:p.label,link:((g=e.value.locales[t.value])==null?void 0:g.link)||(t.value==="root"?"/":`/${t.value}/`)}});return{localeLinks:y(()=>Object.entries(e.value.locales).flatMap(([p,g])=>u.value.label===g.label?[]:{text:g.label,link:at(g.link||(p==="root"?"/":`/${p}/`),s.value.i18nRouting!==!1&&o,n.value.relativePath.slice(u.value.link.length-1),!e.value.cleanUrls)+i.value})),currentLang:u}}function at(o,e,t,n){return e?o.replace(/\/$/,"")+ce(t.replace(/(^|\/)index\.md$/,"$1").replace(/\.md$/,n?".html":"")):o}const rt=o=>(B("data-v-d6be1790"),o=o(),H(),o),it={class:"NotFound"},lt={class:"code"},ct={class:"title"},ut=rt(()=>v("div",{class:"divider"},null,-1)),dt={class:"quote"},vt={class:"action"},pt=["href","aria-label"],ht=_({__name:"NotFound",setup(o){const{theme:e}=P(),{currentLang:t}=J();return(n,s)=>{var i,u,h,p,g;return a(),c("div",it,[v("p",lt,I(((i=r(e).notFound)==null?void 0:i.code)??"404"),1),v("h1",ct,I(((u=r(e).notFound)==null?void 0:u.title)??"PAGE NOT FOUND"),1),ut,v("blockquote",dt,I(((h=r(e).notFound)==null?void 0:h.quote)??"But if you don't change your direction, and if you keep looking, you may end up where you are heading."),1),v("div",vt,[v("a",{class:"link",href:r(pe)(r(t).link),"aria-label":((p=r(e).notFound)==null?void 0:p.linkLabel)??"go to home"},I(((g=r(e).notFound)==null?void 0:g.linkText)??"Take me home"),9,pt)])])}}}),ft=b(ht,[["__scopeId","data-v-d6be1790"]]);function we(o,e){if(Array.isArray(o))return Q(o);if(o==null)return[];e=ce(e);const t=Object.keys(o).sort((s,i)=>i.split("/").length-s.split("/").length).find(s=>e.startsWith(ce(s))),n=t?o[t]:[];return Array.isArray(n)?Q(n):Q(n.items,n.base)}function _t(o){const e=[];let t=0;for(const n in o){const s=o[n];if(s.items){t=e.push(s);continue}e[t]||e.push({items:[]}),e[t].items.push(s)}return e}function mt(o){const e=[];function t(n){for(const s of n)s.text&&s.link&&e.push({text:s.text,link:s.link,docFooterText:s.docFooterText}),s.items&&t(s.items)}return t(o),e}function ue(o,e){return Array.isArray(e)?e.some(t=>ue(o,t)):z(o,e.link)?!0:e.items?ue(o,e.items):!1}function Q(o,e){return[...o].map(t=>{const n={...t},s=n.base||e;return s&&n.link&&(n.link=s+n.link),n.items&&(n.items=Q(n.items,s)),n})}function O(){const{frontmatter:o,page:e,theme:t}=P(),n=ie("(min-width: 960px)"),s=w(!1),i=y(()=>{const C=t.value.sidebar,S=e.value.relativePath;return C?we(C,S):[]}),u=w(i.value);j(i,(C,S)=>{JSON.stringify(C)!==JSON.stringify(S)&&(u.value=i.value)});const h=y(()=>o.value.sidebar!==!1&&u.value.length>0&&o.value.layout!=="home"),p=y(()=>g?o.value.aside==null?t.value.aside==="left":o.value.aside==="left":!1),g=y(()=>o.value.layout==="home"?!1:o.value.aside!=null?!!o.value.aside:t.value.aside!==!1),L=y(()=>h.value&&n.value),k=y(()=>h.value?_t(u.value):[]);function V(){s.value=!0}function T(){s.value=!1}function A(){s.value?T():V()}return{isOpen:s,sidebar:u,sidebarGroups:k,hasSidebar:h,hasAside:g,leftAside:p,isSidebarEnabled:L,open:V,close:T,toggle:A}}function kt(o,e){let t;Z(()=>{t=o.value?document.activeElement:void 0}),R(()=>{window.addEventListener("keyup",n)}),he(()=>{window.removeEventListener("keyup",n)});function n(s){s.key==="Escape"&&o.value&&(e(),t==null||t.focus())}}function bt(o){const{page:e,hash:t}=P(),n=w(!1),s=y(()=>o.value.collapsed!=null),i=y(()=>!!o.value.link),u=w(!1),h=()=>{u.value=z(e.value.relativePath,o.value.link)};j([e,o,t],h),R(h);const p=y(()=>u.value?!0:o.value.items?ue(e.value.relativePath,o.value.items):!1),g=y(()=>!!(o.value.items&&o.value.items.length));Z(()=>{n.value=!!(s.value&&o.value.collapsed)}),ye(()=>{(u.value||p.value)&&(n.value=!1)});function L(){s.value&&(n.value=!n.value)}return{collapsed:n,collapsible:s,isLink:i,isActiveLink:u,hasActiveLink:p,hasChildren:g,toggle:L}}function $t(){const{hasSidebar:o}=O(),e=ie("(min-width: 960px)"),t=ie("(min-width: 1280px)");return{isAsideEnabled:y(()=>!t.value&&!e.value?!1:o.value?t.value:e.value)}}const de=[];function Ne(o){return typeof o.outline=="object"&&!Array.isArray(o.outline)&&o.outline.label||o.outlineTitle||"On this page"}function _e(o){const e=[...document.querySelectorAll(".VPDoc :where(h1,h2,h3,h4,h5,h6)")].filter(t=>t.id&&t.hasChildNodes()).map(t=>{const n=Number(t.tagName[1]);return{element:t,title:gt(t),link:"#"+t.id,level:n}});return yt(e,o)}function gt(o){let e="";for(const t of o.childNodes)if(t.nodeType===1){if(t.classList.contains("VPBadge")||t.classList.contains("header-anchor")||t.classList.contains("ignore-header"))continue;e+=t.textContent}else t.nodeType===3&&(e+=t.textContent);return e.trim()}function yt(o,e){if(e===!1)return[];const t=(typeof e=="object"&&!Array.isArray(e)?e.level:e)||2,[n,s]=typeof t=="number"?[t,t]:t==="deep"?[2,6]:t;o=o.filter(u=>u.level>=n&&u.level<=s),de.length=0;for(const{element:u,link:h}of o)de.push({element:u,link:h});const i=[];e:for(let u=0;u=0;p--){const g=o[p];if(g.level{requestAnimationFrame(i),window.addEventListener("scroll",n)}),ze(()=>{u(location.hash)}),he(()=>{window.removeEventListener("scroll",n)});function i(){if(!t.value)return;const h=window.scrollY,p=window.innerHeight,g=document.body.offsetHeight,L=Math.abs(h+p-g)<1,k=de.map(({element:T,link:A})=>({link:A,top:Lt(T)})).filter(({top:T})=>!Number.isNaN(T)).sort((T,A)=>T.top-A.top);if(!k.length){u(null);return}if(h<1){u(null);return}if(L){u(k[k.length-1].link);return}let V=null;for(const{link:T,top:A}of k){if(A>h+qe()+4)break;V=T}u(V)}function u(h){s&&s.classList.remove("active"),h==null?s=null:s=o.value.querySelector(`a[href="${decodeURIComponent(h)}"]`);const p=s;p?(p.classList.add("active"),e.value.style.top=p.offsetTop+39+"px",e.value.style.opacity="1"):(e.value.style.top="33px",e.value.style.opacity="0")}}function Lt(o){let e=0;for(;o!==document.body;){if(o===null)return NaN;e+=o.offsetTop,o=o.offsetParent}return e}const Vt=["href","title"],St=_({__name:"VPDocOutlineItem",props:{headers:{},root:{type:Boolean}},setup(o){function e({target:t}){const n=t.href.split("#")[1],s=document.getElementById(decodeURIComponent(n));s==null||s.focus({preventScroll:!0})}return(t,n)=>{const s=q("VPDocOutlineItem",!0);return a(),c("ul",{class:N(["VPDocOutlineItem",t.root?"root":"nested"])},[(a(!0),c(M,null,E(t.headers,({children:i,link:u,title:h})=>(a(),c("li",null,[v("a",{class:"outline-link",href:u,onClick:e,title:h},I(h),9,Vt),i!=null&&i.length?(a(),$(s,{key:0,headers:i},null,8,["headers"])):f("",!0)]))),256))],2)}}}),Me=b(St,[["__scopeId","data-v-b933a997"]]),Tt={class:"content"},It={"aria-level":"2",class:"outline-title",id:"doc-outline-aria-label",role:"heading"},wt=_({__name:"VPDocAsideOutline",setup(o){const{frontmatter:e,theme:t}=P(),n=Pe([]);x(()=>{n.value=_e(e.value.outline??t.value.outline)});const s=w(),i=w();return Pt(s,i),(u,h)=>(a(),c("nav",{"aria-labelledby":"doc-outline-aria-label",class:N(["VPDocAsideOutline",{"has-outline":n.value.length>0}]),ref_key:"container",ref:s},[v("div",Tt,[v("div",{class:"outline-marker",ref_key:"marker",ref:i},null,512),v("div",It,I(r(Ne)(r(t))),1),m(Me,{headers:n.value,root:!0},null,8,["headers"])])],2))}}),Nt=b(wt,[["__scopeId","data-v-a5bbad30"]]),Mt={class:"VPDocAsideCarbonAds"},At=_({__name:"VPDocAsideCarbonAds",props:{carbonAds:{}},setup(o){const e=()=>null;return(t,n)=>(a(),c("div",Mt,[m(r(e),{"carbon-ads":t.carbonAds},null,8,["carbon-ads"])]))}}),Ct=o=>(B("data-v-3f215769"),o=o(),H(),o),Bt={class:"VPDocAside"},Ht=Ct(()=>v("div",{class:"spacer"},null,-1)),Et=_({__name:"VPDocAside",setup(o){const{theme:e}=P();return(t,n)=>(a(),c("div",Bt,[l(t.$slots,"aside-top",{},void 0,!0),l(t.$slots,"aside-outline-before",{},void 0,!0),m(Nt),l(t.$slots,"aside-outline-after",{},void 0,!0),Ht,l(t.$slots,"aside-ads-before",{},void 0,!0),r(e).carbonAds?(a(),$(At,{key:0,"carbon-ads":r(e).carbonAds},null,8,["carbon-ads"])):f("",!0),l(t.$slots,"aside-ads-after",{},void 0,!0),l(t.$slots,"aside-bottom",{},void 0,!0)]))}}),Ft=b(Et,[["__scopeId","data-v-3f215769"]]);function Dt(){const{theme:o,page:e}=P();return y(()=>{const{text:t="Edit this page",pattern:n=""}=o.value.editLink||{};let s;return typeof n=="function"?s=n(e.value):s=n.replace(/:path/g,e.value.filePath),{url:s,text:t}})}function Ot(){const{page:o,theme:e,frontmatter:t}=P();return y(()=>{var g,L,k,V,T,A,C,S;const n=we(e.value.sidebar,o.value.relativePath),s=mt(n),i=Ut(s,U=>U.link.replace(/[?#].*$/,"")),u=i.findIndex(U=>z(o.value.relativePath,U.link)),h=((g=e.value.docFooter)==null?void 0:g.prev)===!1&&!t.value.prev||t.value.prev===!1,p=((L=e.value.docFooter)==null?void 0:L.next)===!1&&!t.value.next||t.value.next===!1;return{prev:h?void 0:{text:(typeof t.value.prev=="string"?t.value.prev:typeof t.value.prev=="object"?t.value.prev.text:void 0)??((k=i[u-1])==null?void 0:k.docFooterText)??((V=i[u-1])==null?void 0:V.text),link:(typeof t.value.prev=="object"?t.value.prev.link:void 0)??((T=i[u-1])==null?void 0:T.link)},next:p?void 0:{text:(typeof t.value.next=="string"?t.value.next:typeof t.value.next=="object"?t.value.next.text:void 0)??((A=i[u+1])==null?void 0:A.docFooterText)??((C=i[u+1])==null?void 0:C.text),link:(typeof t.value.next=="object"?t.value.next.link:void 0)??((S=i[u+1])==null?void 0:S.link)}}})}function Ut(o,e){const t=new Set;return o.filter(n=>{const s=e(n);return t.has(s)?!1:t.add(s)})}const F=_({__name:"VPLink",props:{tag:{},href:{},noIcon:{type:Boolean},target:{},rel:{}},setup(o){const e=o,t=y(()=>e.tag??(e.href?"a":"span")),n=y(()=>e.href&&Le.test(e.href)||e.target==="_blank");return(s,i)=>(a(),$(W(t.value),{class:N(["VPLink",{link:s.href,"vp-external-link-icon":n.value,"no-icon":s.noIcon}]),href:s.href?r(fe)(s.href):void 0,target:s.target??(n.value?"_blank":void 0),rel:s.rel??(n.value?"noreferrer":void 0)},{default:d(()=>[l(s.$slots,"default")]),_:3},8,["class","href","target","rel"]))}}),Gt={class:"VPLastUpdated"},jt=["datetime"],zt=_({__name:"VPDocFooterLastUpdated",setup(o){const{theme:e,page:t,frontmatter:n,lang:s}=P(),i=y(()=>new Date(n.value.lastUpdated??t.value.lastUpdated)),u=y(()=>i.value.toISOString()),h=w("");return R(()=>{Z(()=>{var p,g,L;h.value=new Intl.DateTimeFormat((g=(p=e.value.lastUpdated)==null?void 0:p.formatOptions)!=null&&g.forceLocale?s.value:void 0,((L=e.value.lastUpdated)==null?void 0:L.formatOptions)??{dateStyle:"short",timeStyle:"short"}).format(i.value)})}),(p,g)=>{var L;return a(),c("p",Gt,[D(I(((L=r(e).lastUpdated)==null?void 0:L.text)||r(e).lastUpdatedText||"Last updated")+": ",1),v("time",{datetime:u.value},I(h.value),9,jt)])}}}),qt=b(zt,[["__scopeId","data-v-7e05ebdb"]]),Ae=o=>(B("data-v-d4a0bba5"),o=o(),H(),o),Kt={key:0,class:"VPDocFooter"},Wt={key:0,class:"edit-info"},Rt={key:0,class:"edit-link"},Jt=Ae(()=>v("span",{class:"vpi-square-pen edit-link-icon"},null,-1)),Yt={key:1,class:"last-updated"},Qt={key:1,class:"prev-next","aria-labelledby":"doc-footer-aria-label"},Xt=Ae(()=>v("span",{class:"visually-hidden",id:"doc-footer-aria-label"},"Pager",-1)),Zt={class:"pager"},xt=["innerHTML"],eo=["innerHTML"],to={class:"pager"},oo=["innerHTML"],so=["innerHTML"],no=_({__name:"VPDocFooter",setup(o){const{theme:e,page:t,frontmatter:n}=P(),s=Dt(),i=Ot(),u=y(()=>e.value.editLink&&n.value.editLink!==!1),h=y(()=>t.value.lastUpdated&&n.value.lastUpdated!==!1),p=y(()=>u.value||h.value||i.value.prev||i.value.next);return(g,L)=>{var k,V,T,A;return p.value?(a(),c("footer",Kt,[l(g.$slots,"doc-footer-before",{},void 0,!0),u.value||h.value?(a(),c("div",Wt,[u.value?(a(),c("div",Rt,[m(F,{class:"edit-link-button",href:r(s).url,"no-icon":!0},{default:d(()=>[Jt,D(" "+I(r(s).text),1)]),_:1},8,["href"])])):f("",!0),h.value?(a(),c("div",Yt,[m(qt)])):f("",!0)])):f("",!0),(k=r(i).prev)!=null&&k.link||(V=r(i).next)!=null&&V.link?(a(),c("nav",Qt,[Xt,v("div",Zt,[(T=r(i).prev)!=null&&T.link?(a(),$(F,{key:0,class:"pager-link prev",href:r(i).prev.link},{default:d(()=>{var C;return[v("span",{class:"desc",innerHTML:((C=r(e).docFooter)==null?void 0:C.prev)||"Previous page"},null,8,xt),v("span",{class:"title",innerHTML:r(i).prev.text},null,8,eo)]}),_:1},8,["href"])):f("",!0)]),v("div",to,[(A=r(i).next)!=null&&A.link?(a(),$(F,{key:0,class:"pager-link next",href:r(i).next.link},{default:d(()=>{var C;return[v("span",{class:"desc",innerHTML:((C=r(e).docFooter)==null?void 0:C.next)||"Next page"},null,8,oo),v("span",{class:"title",innerHTML:r(i).next.text},null,8,so)]}),_:1},8,["href"])):f("",!0)])])):f("",!0)])):f("",!0)}}}),ao=b(no,[["__scopeId","data-v-d4a0bba5"]]),ro=o=>(B("data-v-39a288b8"),o=o(),H(),o),io={class:"container"},lo=ro(()=>v("div",{class:"aside-curtain"},null,-1)),co={class:"aside-container"},uo={class:"aside-content"},vo={class:"content"},po={class:"content-container"},ho={class:"main"},fo=_({__name:"VPDoc",setup(o){const{theme:e}=P(),t=ee(),{hasSidebar:n,hasAside:s,leftAside:i}=O(),u=y(()=>t.path.replace(/[./]+/g,"_").replace(/_html$/,""));return(h,p)=>{const g=q("Content");return a(),c("div",{class:N(["VPDoc",{"has-sidebar":r(n),"has-aside":r(s)}])},[l(h.$slots,"doc-top",{},void 0,!0),v("div",io,[r(s)?(a(),c("div",{key:0,class:N(["aside",{"left-aside":r(i)}])},[lo,v("div",co,[v("div",uo,[m(Ft,null,{"aside-top":d(()=>[l(h.$slots,"aside-top",{},void 0,!0)]),"aside-bottom":d(()=>[l(h.$slots,"aside-bottom",{},void 0,!0)]),"aside-outline-before":d(()=>[l(h.$slots,"aside-outline-before",{},void 0,!0)]),"aside-outline-after":d(()=>[l(h.$slots,"aside-outline-after",{},void 0,!0)]),"aside-ads-before":d(()=>[l(h.$slots,"aside-ads-before",{},void 0,!0)]),"aside-ads-after":d(()=>[l(h.$slots,"aside-ads-after",{},void 0,!0)]),_:3})])])],2)):f("",!0),v("div",vo,[v("div",po,[l(h.$slots,"doc-before",{},void 0,!0),v("main",ho,[m(g,{class:N(["vp-doc",[u.value,r(e).externalLinkIcon&&"external-link-icon-enabled"]])},null,8,["class"])]),m(ao,null,{"doc-footer-before":d(()=>[l(h.$slots,"doc-footer-before",{},void 0,!0)]),_:3}),l(h.$slots,"doc-after",{},void 0,!0)])])]),l(h.$slots,"doc-bottom",{},void 0,!0)],2)}}}),_o=b(fo,[["__scopeId","data-v-39a288b8"]]),mo=_({__name:"VPButton",props:{tag:{},size:{default:"medium"},theme:{default:"brand"},text:{},href:{},target:{},rel:{}},setup(o){const e=o,t=y(()=>e.href&&Le.test(e.href)),n=y(()=>e.tag||e.href?"a":"button");return(s,i)=>(a(),$(W(n.value),{class:N(["VPButton",[s.size,s.theme]]),href:s.href?r(fe)(s.href):void 0,target:e.target??(t.value?"_blank":void 0),rel:e.rel??(t.value?"noreferrer":void 0)},{default:d(()=>[D(I(s.text),1)]),_:1},8,["class","href","target","rel"]))}}),ko=b(mo,[["__scopeId","data-v-cad61b99"]]),bo=["src","alt"],$o=_({inheritAttrs:!1,__name:"VPImage",props:{image:{},alt:{}},setup(o){return(e,t)=>{const n=q("VPImage",!0);return e.image?(a(),c(M,{key:0},[typeof e.image=="string"||"src"in e.image?(a(),c("img",Y({key:0,class:"VPImage"},typeof e.image=="string"?e.$attrs:{...e.image,...e.$attrs},{src:r(pe)(typeof e.image=="string"?e.image:e.image.src),alt:e.alt??(typeof e.image=="string"?"":e.image.alt||"")}),null,16,bo)):(a(),c(M,{key:1},[m(n,Y({class:"dark",image:e.image.dark,alt:e.image.alt},e.$attrs),null,16,["image","alt"]),m(n,Y({class:"light",image:e.image.light,alt:e.image.alt},e.$attrs),null,16,["image","alt"])],64))],64)):f("",!0)}}}),X=b($o,[["__scopeId","data-v-8426fc1a"]]),go=o=>(B("data-v-303bb580"),o=o(),H(),o),yo={class:"container"},Po={class:"main"},Lo={key:0,class:"name"},Vo=["innerHTML"],So=["innerHTML"],To=["innerHTML"],Io={key:0,class:"actions"},wo={key:0,class:"image"},No={class:"image-container"},Mo=go(()=>v("div",{class:"image-bg"},null,-1)),Ao=_({__name:"VPHero",props:{name:{},text:{},tagline:{},image:{},actions:{}},setup(o){const e=te("hero-image-slot-exists");return(t,n)=>(a(),c("div",{class:N(["VPHero",{"has-image":t.image||r(e)}])},[v("div",yo,[v("div",Po,[l(t.$slots,"home-hero-info-before",{},void 0,!0),l(t.$slots,"home-hero-info",{},()=>[t.name?(a(),c("h1",Lo,[v("span",{innerHTML:t.name,class:"clip"},null,8,Vo)])):f("",!0),t.text?(a(),c("p",{key:1,innerHTML:t.text,class:"text"},null,8,So)):f("",!0),t.tagline?(a(),c("p",{key:2,innerHTML:t.tagline,class:"tagline"},null,8,To)):f("",!0)],!0),l(t.$slots,"home-hero-info-after",{},void 0,!0),t.actions?(a(),c("div",Io,[(a(!0),c(M,null,E(t.actions,s=>(a(),c("div",{key:s.link,class:"action"},[m(ko,{tag:"a",size:"medium",theme:s.theme,text:s.text,href:s.link,target:s.target,rel:s.rel},null,8,["theme","text","href","target","rel"])]))),128))])):f("",!0),l(t.$slots,"home-hero-actions-after",{},void 0,!0)]),t.image||r(e)?(a(),c("div",wo,[v("div",No,[Mo,l(t.$slots,"home-hero-image",{},()=>[t.image?(a(),$(X,{key:0,class:"image-src",image:t.image},null,8,["image"])):f("",!0)],!0)])])):f("",!0)])],2))}}),Co=b(Ao,[["__scopeId","data-v-303bb580"]]),Bo=_({__name:"VPHomeHero",setup(o){const{frontmatter:e}=P();return(t,n)=>r(e).hero?(a(),$(Co,{key:0,class:"VPHomeHero",name:r(e).hero.name,text:r(e).hero.text,tagline:r(e).hero.tagline,image:r(e).hero.image,actions:r(e).hero.actions},{"home-hero-info-before":d(()=>[l(t.$slots,"home-hero-info-before")]),"home-hero-info":d(()=>[l(t.$slots,"home-hero-info")]),"home-hero-info-after":d(()=>[l(t.$slots,"home-hero-info-after")]),"home-hero-actions-after":d(()=>[l(t.$slots,"home-hero-actions-after")]),"home-hero-image":d(()=>[l(t.$slots,"home-hero-image")]),_:3},8,["name","text","tagline","image","actions"])):f("",!0)}}),Ho=o=>(B("data-v-a3976bdc"),o=o(),H(),o),Eo={class:"box"},Fo={key:0,class:"icon"},Do=["innerHTML"],Oo=["innerHTML"],Uo=["innerHTML"],Go={key:4,class:"link-text"},jo={class:"link-text-value"},zo=Ho(()=>v("span",{class:"vpi-arrow-right link-text-icon"},null,-1)),qo=_({__name:"VPFeature",props:{icon:{},title:{},details:{},link:{},linkText:{},rel:{},target:{}},setup(o){return(e,t)=>(a(),$(F,{class:"VPFeature",href:e.link,rel:e.rel,target:e.target,"no-icon":!0,tag:e.link?"a":"div"},{default:d(()=>[v("article",Eo,[typeof e.icon=="object"&&e.icon.wrap?(a(),c("div",Fo,[m(X,{image:e.icon,alt:e.icon.alt,height:e.icon.height||48,width:e.icon.width||48},null,8,["image","alt","height","width"])])):typeof e.icon=="object"?(a(),$(X,{key:1,image:e.icon,alt:e.icon.alt,height:e.icon.height||48,width:e.icon.width||48},null,8,["image","alt","height","width"])):e.icon?(a(),c("div",{key:2,class:"icon",innerHTML:e.icon},null,8,Do)):f("",!0),v("h2",{class:"title",innerHTML:e.title},null,8,Oo),e.details?(a(),c("p",{key:3,class:"details",innerHTML:e.details},null,8,Uo)):f("",!0),e.linkText?(a(),c("div",Go,[v("p",jo,[D(I(e.linkText)+" ",1),zo])])):f("",!0)])]),_:1},8,["href","rel","target","tag"]))}}),Ko=b(qo,[["__scopeId","data-v-a3976bdc"]]),Wo={key:0,class:"VPFeatures"},Ro={class:"container"},Jo={class:"items"},Yo=_({__name:"VPFeatures",props:{features:{}},setup(o){const e=o,t=y(()=>{const n=e.features.length;if(n){if(n===2)return"grid-2";if(n===3)return"grid-3";if(n%3===0)return"grid-6";if(n>3)return"grid-4"}else return});return(n,s)=>n.features?(a(),c("div",Wo,[v("div",Ro,[v("div",Jo,[(a(!0),c(M,null,E(n.features,i=>(a(),c("div",{key:i.title,class:N(["item",[t.value]])},[m(Ko,{icon:i.icon,title:i.title,details:i.details,link:i.link,"link-text":i.linkText,rel:i.rel,target:i.target},null,8,["icon","title","details","link","link-text","rel","target"])],2))),128))])])])):f("",!0)}}),Qo=b(Yo,[["__scopeId","data-v-a6181336"]]),Xo=_({__name:"VPHomeFeatures",setup(o){const{frontmatter:e}=P();return(t,n)=>r(e).features?(a(),$(Qo,{key:0,class:"VPHomeFeatures",features:r(e).features},null,8,["features"])):f("",!0)}}),Zo=_({__name:"VPHomeContent",setup(o){const{width:e}=Ke({initialWidth:0,includeScrollbar:!1});return(t,n)=>(a(),c("div",{class:"vp-doc container",style:Ve(r(e)?{"--vp-offset":`calc(50% - ${r(e)/2}px)`}:{})},[l(t.$slots,"default",{},void 0,!0)],4))}}),xo=b(Zo,[["__scopeId","data-v-8e2d4988"]]),es={class:"VPHome"},ts=_({__name:"VPHome",setup(o){const{frontmatter:e}=P();return(t,n)=>{const s=q("Content");return a(),c("div",es,[l(t.$slots,"home-hero-before",{},void 0,!0),m(Bo,null,{"home-hero-info-before":d(()=>[l(t.$slots,"home-hero-info-before",{},void 0,!0)]),"home-hero-info":d(()=>[l(t.$slots,"home-hero-info",{},void 0,!0)]),"home-hero-info-after":d(()=>[l(t.$slots,"home-hero-info-after",{},void 0,!0)]),"home-hero-actions-after":d(()=>[l(t.$slots,"home-hero-actions-after",{},void 0,!0)]),"home-hero-image":d(()=>[l(t.$slots,"home-hero-image",{},void 0,!0)]),_:3}),l(t.$slots,"home-hero-after",{},void 0,!0),l(t.$slots,"home-features-before",{},void 0,!0),m(Xo),l(t.$slots,"home-features-after",{},void 0,!0),r(e).markdownStyles!==!1?(a(),$(xo,{key:0},{default:d(()=>[m(s)]),_:1})):(a(),$(s,{key:1}))])}}}),os=b(ts,[["__scopeId","data-v-686f80a6"]]),ss={},ns={class:"VPPage"};function as(o,e){const t=q("Content");return a(),c("div",ns,[l(o.$slots,"page-top"),m(t),l(o.$slots,"page-bottom")])}const rs=b(ss,[["render",as]]),is=_({__name:"VPContent",setup(o){const{page:e,frontmatter:t}=P(),{hasSidebar:n}=O();return(s,i)=>(a(),c("div",{class:N(["VPContent",{"has-sidebar":r(n),"is-home":r(t).layout==="home"}]),id:"VPContent"},[r(e).isNotFound?l(s.$slots,"not-found",{key:0},()=>[m(ft)],!0):r(t).layout==="page"?(a(),$(rs,{key:1},{"page-top":d(()=>[l(s.$slots,"page-top",{},void 0,!0)]),"page-bottom":d(()=>[l(s.$slots,"page-bottom",{},void 0,!0)]),_:3})):r(t).layout==="home"?(a(),$(os,{key:2},{"home-hero-before":d(()=>[l(s.$slots,"home-hero-before",{},void 0,!0)]),"home-hero-info-before":d(()=>[l(s.$slots,"home-hero-info-before",{},void 0,!0)]),"home-hero-info":d(()=>[l(s.$slots,"home-hero-info",{},void 0,!0)]),"home-hero-info-after":d(()=>[l(s.$slots,"home-hero-info-after",{},void 0,!0)]),"home-hero-actions-after":d(()=>[l(s.$slots,"home-hero-actions-after",{},void 0,!0)]),"home-hero-image":d(()=>[l(s.$slots,"home-hero-image",{},void 0,!0)]),"home-hero-after":d(()=>[l(s.$slots,"home-hero-after",{},void 0,!0)]),"home-features-before":d(()=>[l(s.$slots,"home-features-before",{},void 0,!0)]),"home-features-after":d(()=>[l(s.$slots,"home-features-after",{},void 0,!0)]),_:3})):r(t).layout&&r(t).layout!=="doc"?(a(),$(W(r(t).layout),{key:3})):(a(),$(_o,{key:4},{"doc-top":d(()=>[l(s.$slots,"doc-top",{},void 0,!0)]),"doc-bottom":d(()=>[l(s.$slots,"doc-bottom",{},void 0,!0)]),"doc-footer-before":d(()=>[l(s.$slots,"doc-footer-before",{},void 0,!0)]),"doc-before":d(()=>[l(s.$slots,"doc-before",{},void 0,!0)]),"doc-after":d(()=>[l(s.$slots,"doc-after",{},void 0,!0)]),"aside-top":d(()=>[l(s.$slots,"aside-top",{},void 0,!0)]),"aside-outline-before":d(()=>[l(s.$slots,"aside-outline-before",{},void 0,!0)]),"aside-outline-after":d(()=>[l(s.$slots,"aside-outline-after",{},void 0,!0)]),"aside-ads-before":d(()=>[l(s.$slots,"aside-ads-before",{},void 0,!0)]),"aside-ads-after":d(()=>[l(s.$slots,"aside-ads-after",{},void 0,!0)]),"aside-bottom":d(()=>[l(s.$slots,"aside-bottom",{},void 0,!0)]),_:3}))],2))}}),ls=b(is,[["__scopeId","data-v-1428d186"]]),cs={class:"container"},us=["innerHTML"],ds=["innerHTML"],vs=_({__name:"VPFooter",setup(o){const{theme:e,frontmatter:t}=P(),{hasSidebar:n}=O();return(s,i)=>r(e).footer&&r(t).footer!==!1?(a(),c("footer",{key:0,class:N(["VPFooter",{"has-sidebar":r(n)}])},[v("div",cs,[r(e).footer.message?(a(),c("p",{key:0,class:"message",innerHTML:r(e).footer.message},null,8,us)):f("",!0),r(e).footer.copyright?(a(),c("p",{key:1,class:"copyright",innerHTML:r(e).footer.copyright},null,8,ds)):f("",!0)])],2)):f("",!0)}}),ps=b(vs,[["__scopeId","data-v-e315a0ad"]]);function hs(){const{theme:o,frontmatter:e}=P(),t=Pe([]),n=y(()=>t.value.length>0);return x(()=>{t.value=_e(e.value.outline??o.value.outline)}),{headers:t,hasLocalNav:n}}const fs=o=>(B("data-v-17a5e62e"),o=o(),H(),o),_s={class:"menu-text"},ms=fs(()=>v("span",{class:"vpi-chevron-right icon"},null,-1)),ks={class:"header"},bs={class:"outline"},$s=_({__name:"VPLocalNavOutlineDropdown",props:{headers:{},navHeight:{}},setup(o){const e=o,{theme:t}=P(),n=w(!1),s=w(0),i=w(),u=w();function h(k){var V;(V=i.value)!=null&&V.contains(k.target)||(n.value=!1)}j(n,k=>{if(k){document.addEventListener("click",h);return}document.removeEventListener("click",h)}),le("Escape",()=>{n.value=!1}),x(()=>{n.value=!1});function p(){n.value=!n.value,s.value=window.innerHeight+Math.min(window.scrollY-e.navHeight,0)}function g(k){k.target.classList.contains("outline-link")&&(u.value&&(u.value.style.transition="none"),We(()=>{n.value=!1}))}function L(){n.value=!1,window.scrollTo({top:0,left:0,behavior:"smooth"})}return(k,V)=>(a(),c("div",{class:"VPLocalNavOutlineDropdown",style:Ve({"--vp-vh":s.value+"px"}),ref_key:"main",ref:i},[k.headers.length>0?(a(),c("button",{key:0,onClick:p,class:N({open:n.value})},[v("span",_s,I(r(Ne)(r(t))),1),ms],2)):(a(),c("button",{key:1,onClick:L},I(r(t).returnToTopLabel||"Return to top"),1)),m(ve,{name:"flyout"},{default:d(()=>[n.value?(a(),c("div",{key:0,ref_key:"items",ref:u,class:"items",onClick:g},[v("div",ks,[v("a",{class:"top-link",href:"#",onClick:L},I(r(t).returnToTopLabel||"Return to top"),1)]),v("div",bs,[m(Me,{headers:k.headers},null,8,["headers"])])],512)):f("",!0)]),_:1})],4))}}),gs=b($s,[["__scopeId","data-v-17a5e62e"]]),ys=o=>(B("data-v-a6f0e41e"),o=o(),H(),o),Ps={class:"container"},Ls=["aria-expanded"],Vs=ys(()=>v("span",{class:"vpi-align-left menu-icon"},null,-1)),Ss={class:"menu-text"},Ts=_({__name:"VPLocalNav",props:{open:{type:Boolean}},emits:["open-menu"],setup(o){const{theme:e,frontmatter:t}=P(),{hasSidebar:n}=O(),{headers:s}=hs(),{y:i}=Se(),u=w(0);R(()=>{u.value=parseInt(getComputedStyle(document.documentElement).getPropertyValue("--vp-nav-height"))}),x(()=>{s.value=_e(t.value.outline??e.value.outline)});const h=y(()=>s.value.length===0),p=y(()=>h.value&&!n.value),g=y(()=>({VPLocalNav:!0,"has-sidebar":n.value,empty:h.value,fixed:p.value}));return(L,k)=>r(t).layout!=="home"&&(!p.value||r(i)>=u.value)?(a(),c("div",{key:0,class:N(g.value)},[v("div",Ps,[r(n)?(a(),c("button",{key:0,class:"menu","aria-expanded":L.open,"aria-controls":"VPSidebarNav",onClick:k[0]||(k[0]=V=>L.$emit("open-menu"))},[Vs,v("span",Ss,I(r(e).sidebarMenuLabel||"Menu"),1)],8,Ls)):f("",!0),m(gs,{headers:r(s),navHeight:u.value},null,8,["headers","navHeight"])])],2)):f("",!0)}}),Is=b(Ts,[["__scopeId","data-v-a6f0e41e"]]);function ws(){const o=w(!1);function e(){o.value=!0,window.addEventListener("resize",s)}function t(){o.value=!1,window.removeEventListener("resize",s)}function n(){o.value?t():e()}function s(){window.outerWidth>=768&&t()}const i=ee();return j(()=>i.path,t),{isScreenOpen:o,openScreen:e,closeScreen:t,toggleScreen:n}}const Ns={},Ms={class:"VPSwitch",type:"button",role:"switch"},As={class:"check"},Cs={key:0,class:"icon"};function Bs(o,e){return a(),c("button",Ms,[v("span",As,[o.$slots.default?(a(),c("span",Cs,[l(o.$slots,"default",{},void 0,!0)])):f("",!0)])])}const Hs=b(Ns,[["render",Bs],["__scopeId","data-v-1d5665e3"]]),Ce=o=>(B("data-v-d1f28634"),o=o(),H(),o),Es=Ce(()=>v("span",{class:"vpi-sun sun"},null,-1)),Fs=Ce(()=>v("span",{class:"vpi-moon moon"},null,-1)),Ds=_({__name:"VPSwitchAppearance",setup(o){const{isDark:e,theme:t}=P(),n=te("toggle-appearance",()=>{e.value=!e.value}),s=y(()=>e.value?t.value.lightModeSwitchTitle||"Switch to light theme":t.value.darkModeSwitchTitle||"Switch to dark theme");return(i,u)=>(a(),$(Hs,{title:s.value,class:"VPSwitchAppearance","aria-checked":r(e),onClick:r(n)},{default:d(()=>[Es,Fs]),_:1},8,["title","aria-checked","onClick"]))}}),me=b(Ds,[["__scopeId","data-v-d1f28634"]]),Os={key:0,class:"VPNavBarAppearance"},Us=_({__name:"VPNavBarAppearance",setup(o){const{site:e}=P();return(t,n)=>r(e).appearance&&r(e).appearance!=="force-dark"?(a(),c("div",Os,[m(me)])):f("",!0)}}),Gs=b(Us,[["__scopeId","data-v-e6aabb21"]]),ke=w();let Be=!1,re=0;function js(o){const e=w(!1);if(oe){!Be&&zs(),re++;const t=j(ke,n=>{var s,i,u;n===o.el.value||(s=o.el.value)!=null&&s.contains(n)?(e.value=!0,(i=o.onFocus)==null||i.call(o)):(e.value=!1,(u=o.onBlur)==null||u.call(o))});he(()=>{t(),re--,re||qs()})}return Re(e)}function zs(){document.addEventListener("focusin",He),Be=!0,ke.value=document.activeElement}function qs(){document.removeEventListener("focusin",He)}function He(){ke.value=document.activeElement}const Ks={class:"VPMenuLink"},Ws=_({__name:"VPMenuLink",props:{item:{}},setup(o){const{page:e}=P();return(t,n)=>(a(),c("div",Ks,[m(F,{class:N({active:r(z)(r(e).relativePath,t.item.activeMatch||t.item.link,!!t.item.activeMatch)}),href:t.item.link,target:t.item.target,rel:t.item.rel},{default:d(()=>[D(I(t.item.text),1)]),_:1},8,["class","href","target","rel"])]))}}),se=b(Ws,[["__scopeId","data-v-43f1e123"]]),Rs={class:"VPMenuGroup"},Js={key:0,class:"title"},Ys=_({__name:"VPMenuGroup",props:{text:{},items:{}},setup(o){return(e,t)=>(a(),c("div",Rs,[e.text?(a(),c("p",Js,I(e.text),1)):f("",!0),(a(!0),c(M,null,E(e.items,n=>(a(),c(M,null,["link"in n?(a(),$(se,{key:0,item:n},null,8,["item"])):f("",!0)],64))),256))]))}}),Qs=b(Ys,[["__scopeId","data-v-69e747b5"]]),Xs={class:"VPMenu"},Zs={key:0,class:"items"},xs=_({__name:"VPMenu",props:{items:{}},setup(o){return(e,t)=>(a(),c("div",Xs,[e.items?(a(),c("div",Zs,[(a(!0),c(M,null,E(e.items,n=>(a(),c(M,{key:n.text},["link"in n?(a(),$(se,{key:0,item:n},null,8,["item"])):(a(),$(Qs,{key:1,text:n.text,items:n.items},null,8,["text","items"]))],64))),128))])):f("",!0),l(e.$slots,"default",{},void 0,!0)]))}}),en=b(xs,[["__scopeId","data-v-e7ea1737"]]),tn=o=>(B("data-v-b6c34ac9"),o=o(),H(),o),on=["aria-expanded","aria-label"],sn={key:0,class:"text"},nn=["innerHTML"],an=tn(()=>v("span",{class:"vpi-chevron-down text-icon"},null,-1)),rn={key:1,class:"vpi-more-horizontal icon"},ln={class:"menu"},cn=_({__name:"VPFlyout",props:{icon:{},button:{},label:{},items:{}},setup(o){const e=w(!1),t=w();js({el:t,onBlur:n});function n(){e.value=!1}return(s,i)=>(a(),c("div",{class:"VPFlyout",ref_key:"el",ref:t,onMouseenter:i[1]||(i[1]=u=>e.value=!0),onMouseleave:i[2]||(i[2]=u=>e.value=!1)},[v("button",{type:"button",class:"button","aria-haspopup":"true","aria-expanded":e.value,"aria-label":s.label,onClick:i[0]||(i[0]=u=>e.value=!e.value)},[s.button||s.icon?(a(),c("span",sn,[s.icon?(a(),c("span",{key:0,class:N([s.icon,"option-icon"])},null,2)):f("",!0),s.button?(a(),c("span",{key:1,innerHTML:s.button},null,8,nn)):f("",!0),an])):(a(),c("span",rn))],8,on),v("div",ln,[m(en,{items:s.items},{default:d(()=>[l(s.$slots,"default",{},void 0,!0)]),_:3},8,["items"])])],544))}}),be=b(cn,[["__scopeId","data-v-b6c34ac9"]]),un=["href","aria-label","innerHTML"],dn=_({__name:"VPSocialLink",props:{icon:{},link:{},ariaLabel:{}},setup(o){const e=o,t=y(()=>typeof e.icon=="object"?e.icon.svg:``);return(n,s)=>(a(),c("a",{class:"VPSocialLink no-icon",href:n.link,"aria-label":n.ariaLabel??(typeof n.icon=="string"?n.icon:""),target:"_blank",rel:"noopener",innerHTML:t.value},null,8,un))}}),vn=b(dn,[["__scopeId","data-v-eee4e7cb"]]),pn={class:"VPSocialLinks"},hn=_({__name:"VPSocialLinks",props:{links:{}},setup(o){return(e,t)=>(a(),c("div",pn,[(a(!0),c(M,null,E(e.links,({link:n,icon:s,ariaLabel:i})=>(a(),$(vn,{key:n,icon:s,link:n,ariaLabel:i},null,8,["icon","link","ariaLabel"]))),128))]))}}),$e=b(hn,[["__scopeId","data-v-7bc22406"]]),fn={key:0,class:"group translations"},_n={class:"trans-title"},mn={key:1,class:"group"},kn={class:"item appearance"},bn={class:"label"},$n={class:"appearance-action"},gn={key:2,class:"group"},yn={class:"item social-links"},Pn=_({__name:"VPNavBarExtra",setup(o){const{site:e,theme:t}=P(),{localeLinks:n,currentLang:s}=J({correspondingLink:!0}),i=y(()=>n.value.length&&s.value.label||e.value.appearance||t.value.socialLinks);return(u,h)=>i.value?(a(),$(be,{key:0,class:"VPNavBarExtra",label:"extra navigation"},{default:d(()=>[r(n).length&&r(s).label?(a(),c("div",fn,[v("p",_n,I(r(s).label),1),(a(!0),c(M,null,E(r(n),p=>(a(),$(se,{key:p.link,item:p},null,8,["item"]))),128))])):f("",!0),r(e).appearance&&r(e).appearance!=="force-dark"?(a(),c("div",mn,[v("div",kn,[v("p",bn,I(r(t).darkModeSwitchLabel||"Appearance"),1),v("div",$n,[m(me)])])])):f("",!0),r(t).socialLinks?(a(),c("div",gn,[v("div",yn,[m($e,{class:"social-links-list",links:r(t).socialLinks},null,8,["links"])])])):f("",!0)]),_:1})):f("",!0)}}),Ln=b(Pn,[["__scopeId","data-v-d0bd9dde"]]),Vn=o=>(B("data-v-e5dd9c1c"),o=o(),H(),o),Sn=["aria-expanded"],Tn=Vn(()=>v("span",{class:"container"},[v("span",{class:"top"}),v("span",{class:"middle"}),v("span",{class:"bottom"})],-1)),In=[Tn],wn=_({__name:"VPNavBarHamburger",props:{active:{type:Boolean}},emits:["click"],setup(o){return(e,t)=>(a(),c("button",{type:"button",class:N(["VPNavBarHamburger",{active:e.active}]),"aria-label":"mobile navigation","aria-expanded":e.active,"aria-controls":"VPNavScreen",onClick:t[0]||(t[0]=n=>e.$emit("click"))},In,10,Sn))}}),Nn=b(wn,[["__scopeId","data-v-e5dd9c1c"]]),Mn=["innerHTML"],An=_({__name:"VPNavBarMenuLink",props:{item:{}},setup(o){const{page:e}=P();return(t,n)=>(a(),$(F,{class:N({VPNavBarMenuLink:!0,active:r(z)(r(e).relativePath,t.item.activeMatch||t.item.link,!!t.item.activeMatch)}),href:t.item.link,noIcon:t.item.noIcon,target:t.item.target,rel:t.item.rel,tabindex:"0"},{default:d(()=>[v("span",{innerHTML:t.item.text},null,8,Mn)]),_:1},8,["class","href","noIcon","target","rel"]))}}),Cn=b(An,[["__scopeId","data-v-9c663999"]]),Bn=_({__name:"VPNavBarMenuGroup",props:{item:{}},setup(o){const e=o,{page:t}=P(),n=i=>"link"in i?z(t.value.relativePath,i.link,!!e.item.activeMatch):i.items.some(n),s=y(()=>n(e.item));return(i,u)=>(a(),$(be,{class:N({VPNavBarMenuGroup:!0,active:r(z)(r(t).relativePath,i.item.activeMatch,!!i.item.activeMatch)||s.value}),button:i.item.text,items:i.item.items},null,8,["class","button","items"]))}}),Hn=o=>(B("data-v-7f418b0f"),o=o(),H(),o),En={key:0,"aria-labelledby":"main-nav-aria-label",class:"VPNavBarMenu"},Fn=Hn(()=>v("span",{id:"main-nav-aria-label",class:"visually-hidden"},"Main Navigation",-1)),Dn=_({__name:"VPNavBarMenu",setup(o){const{theme:e}=P();return(t,n)=>r(e).nav?(a(),c("nav",En,[Fn,(a(!0),c(M,null,E(r(e).nav,s=>(a(),c(M,{key:s.text},["link"in s?(a(),$(Cn,{key:0,item:s},null,8,["item"])):(a(),$(Bn,{key:1,item:s},null,8,["item"]))],64))),128))])):f("",!0)}}),On=b(Dn,[["__scopeId","data-v-7f418b0f"]]);function Un(o){const{localeIndex:e,theme:t}=P();function n(s){var A,C,S;const i=s.split("."),u=(A=t.value.search)==null?void 0:A.options,h=u&&typeof u=="object",p=h&&((S=(C=u.locales)==null?void 0:C[e.value])==null?void 0:S.translations)||null,g=h&&u.translations||null;let L=p,k=g,V=o;const T=i.pop();for(const U of i){let G=null;const K=V==null?void 0:V[U];K&&(G=V=K);const ne=k==null?void 0:k[U];ne&&(G=k=ne);const ae=L==null?void 0:L[U];ae&&(G=L=ae),K||(V=G),ne||(k=G),ae||(L=G)}return(L==null?void 0:L[T])??(k==null?void 0:k[T])??(V==null?void 0:V[T])??""}return n}const Gn=["aria-label"],jn={class:"DocSearch-Button-Container"},zn=v("span",{class:"vp-icon DocSearch-Search-Icon"},null,-1),qn={class:"DocSearch-Button-Placeholder"},Kn=v("span",{class:"DocSearch-Button-Keys"},[v("kbd",{class:"DocSearch-Button-Key"}),v("kbd",{class:"DocSearch-Button-Key"},"K")],-1),ge=_({__name:"VPNavBarSearchButton",setup(o){const t=Un({button:{buttonText:"Search",buttonAriaLabel:"Search"}});return(n,s)=>(a(),c("button",{type:"button",class:"DocSearch DocSearch-Button","aria-label":r(t)("button.buttonAriaLabel")},[v("span",jn,[zn,v("span",qn,I(r(t)("button.buttonText")),1)]),Kn],8,Gn))}}),Wn={class:"VPNavBarSearch"},Rn={id:"local-search"},Jn={key:1,id:"docsearch"},Yn=_({__name:"VPNavBarSearch",setup(o){const e=Je(()=>Ye(()=>import("./VPLocalSearchBox.DL0hJ4hG.js"),__vite__mapDeps([0,1]))),t=()=>null,{theme:n}=P(),s=w(!1),i=w(!1);R(()=>{});function u(){s.value||(s.value=!0,setTimeout(h,16))}function h(){const k=new Event("keydown");k.key="k",k.metaKey=!0,window.dispatchEvent(k),setTimeout(()=>{document.querySelector(".DocSearch-Modal")||h()},16)}function p(k){const V=k.target,T=V.tagName;return V.isContentEditable||T==="INPUT"||T==="SELECT"||T==="TEXTAREA"}const g=w(!1);le("k",k=>{(k.ctrlKey||k.metaKey)&&(k.preventDefault(),g.value=!0)}),le("/",k=>{p(k)||(k.preventDefault(),g.value=!0)});const L="local";return(k,V)=>{var T;return a(),c("div",Wn,[r(L)==="local"?(a(),c(M,{key:0},[g.value?(a(),$(r(e),{key:0,onClose:V[0]||(V[0]=A=>g.value=!1)})):f("",!0),v("div",Rn,[m(ge,{onClick:V[1]||(V[1]=A=>g.value=!0)})])],64)):r(L)==="algolia"?(a(),c(M,{key:1},[s.value?(a(),$(r(t),{key:0,algolia:((T=r(n).search)==null?void 0:T.options)??r(n).algolia,onVnodeBeforeMount:V[2]||(V[2]=A=>i.value=!0)},null,8,["algolia"])):f("",!0),i.value?f("",!0):(a(),c("div",Jn,[m(ge,{onClick:u})]))],64)):f("",!0)])}}}),Qn=_({__name:"VPNavBarSocialLinks",setup(o){const{theme:e}=P();return(t,n)=>r(e).socialLinks?(a(),$($e,{key:0,class:"VPNavBarSocialLinks",links:r(e).socialLinks},null,8,["links"])):f("",!0)}}),Xn=b(Qn,[["__scopeId","data-v-0394ad82"]]),Zn=["href","rel","target"],xn={key:1},ea={key:2},ta=_({__name:"VPNavBarTitle",setup(o){const{site:e,theme:t}=P(),{hasSidebar:n}=O(),{currentLang:s}=J(),i=y(()=>{var p;return typeof t.value.logoLink=="string"?t.value.logoLink:(p=t.value.logoLink)==null?void 0:p.link}),u=y(()=>{var p;return typeof t.value.logoLink=="string"||(p=t.value.logoLink)==null?void 0:p.rel}),h=y(()=>{var p;return typeof t.value.logoLink=="string"||(p=t.value.logoLink)==null?void 0:p.target});return(p,g)=>(a(),c("div",{class:N(["VPNavBarTitle",{"has-sidebar":r(n)}])},[v("a",{class:"title",href:i.value??r(fe)(r(s).link),rel:u.value,target:h.value},[l(p.$slots,"nav-bar-title-before",{},void 0,!0),r(t).logo?(a(),$(X,{key:0,class:"logo",image:r(t).logo},null,8,["image"])):f("",!0),r(t).siteTitle?(a(),c("span",xn,I(r(t).siteTitle),1)):r(t).siteTitle===void 0?(a(),c("span",ea,I(r(e).title),1)):f("",!0),l(p.$slots,"nav-bar-title-after",{},void 0,!0)],8,Zn)],2))}}),oa=b(ta,[["__scopeId","data-v-ab179fa1"]]),sa={class:"items"},na={class:"title"},aa=_({__name:"VPNavBarTranslations",setup(o){const{theme:e}=P(),{localeLinks:t,currentLang:n}=J({correspondingLink:!0});return(s,i)=>r(t).length&&r(n).label?(a(),$(be,{key:0,class:"VPNavBarTranslations",icon:"vpi-languages",label:r(e).langMenuLabel||"Change language"},{default:d(()=>[v("div",sa,[v("p",na,I(r(n).label),1),(a(!0),c(M,null,E(r(t),u=>(a(),$(se,{key:u.link,item:u},null,8,["item"]))),128))])]),_:1},8,["label"])):f("",!0)}}),ra=b(aa,[["__scopeId","data-v-88af2de4"]]),ia=o=>(B("data-v-ccf7ddec"),o=o(),H(),o),la={class:"wrapper"},ca={class:"container"},ua={class:"title"},da={class:"content"},va={class:"content-body"},pa=ia(()=>v("div",{class:"divider"},[v("div",{class:"divider-line"})],-1)),ha=_({__name:"VPNavBar",props:{isScreenOpen:{type:Boolean}},emits:["toggle-screen"],setup(o){const{y:e}=Se(),{hasSidebar:t}=O(),{frontmatter:n}=P(),s=w({});return ye(()=>{s.value={"has-sidebar":t.value,home:n.value.layout==="home",top:e.value===0}}),(i,u)=>(a(),c("div",{class:N(["VPNavBar",s.value])},[v("div",la,[v("div",ca,[v("div",ua,[m(oa,null,{"nav-bar-title-before":d(()=>[l(i.$slots,"nav-bar-title-before",{},void 0,!0)]),"nav-bar-title-after":d(()=>[l(i.$slots,"nav-bar-title-after",{},void 0,!0)]),_:3})]),v("div",da,[v("div",va,[l(i.$slots,"nav-bar-content-before",{},void 0,!0),m(Yn,{class:"search"}),m(On,{class:"menu"}),m(ra,{class:"translations"}),m(Gs,{class:"appearance"}),m(Xn,{class:"social-links"}),m(Ln,{class:"extra"}),l(i.$slots,"nav-bar-content-after",{},void 0,!0),m(Nn,{class:"hamburger",active:i.isScreenOpen,onClick:u[0]||(u[0]=h=>i.$emit("toggle-screen"))},null,8,["active"])])])])]),pa],2))}}),fa=b(ha,[["__scopeId","data-v-ccf7ddec"]]),_a={key:0,class:"VPNavScreenAppearance"},ma={class:"text"},ka=_({__name:"VPNavScreenAppearance",setup(o){const{site:e,theme:t}=P();return(n,s)=>r(e).appearance&&r(e).appearance!=="force-dark"?(a(),c("div",_a,[v("p",ma,I(r(t).darkModeSwitchLabel||"Appearance"),1),m(me)])):f("",!0)}}),ba=b(ka,[["__scopeId","data-v-2d7af913"]]),$a=_({__name:"VPNavScreenMenuLink",props:{item:{}},setup(o){const e=te("close-screen");return(t,n)=>(a(),$(F,{class:"VPNavScreenMenuLink",href:t.item.link,target:t.item.target,rel:t.item.rel,onClick:r(e),innerHTML:t.item.text},null,8,["href","target","rel","onClick","innerHTML"]))}}),ga=b($a,[["__scopeId","data-v-7f31e1f6"]]),ya=_({__name:"VPNavScreenMenuGroupLink",props:{item:{}},setup(o){const e=te("close-screen");return(t,n)=>(a(),$(F,{class:"VPNavScreenMenuGroupLink",href:t.item.link,target:t.item.target,rel:t.item.rel,onClick:r(e)},{default:d(()=>[D(I(t.item.text),1)]),_:1},8,["href","target","rel","onClick"]))}}),Ee=b(ya,[["__scopeId","data-v-19976ae1"]]),Pa={class:"VPNavScreenMenuGroupSection"},La={key:0,class:"title"},Va=_({__name:"VPNavScreenMenuGroupSection",props:{text:{},items:{}},setup(o){return(e,t)=>(a(),c("div",Pa,[e.text?(a(),c("p",La,I(e.text),1)):f("",!0),(a(!0),c(M,null,E(e.items,n=>(a(),$(Ee,{key:n.text,item:n},null,8,["item"]))),128))]))}}),Sa=b(Va,[["__scopeId","data-v-8133b170"]]),Ta=o=>(B("data-v-ff6087d4"),o=o(),H(),o),Ia=["aria-controls","aria-expanded"],wa=["innerHTML"],Na=Ta(()=>v("span",{class:"vpi-plus button-icon"},null,-1)),Ma=["id"],Aa={key:1,class:"group"},Ca=_({__name:"VPNavScreenMenuGroup",props:{text:{},items:{}},setup(o){const e=o,t=w(!1),n=y(()=>`NavScreenGroup-${e.text.replace(" ","-").toLowerCase()}`);function s(){t.value=!t.value}return(i,u)=>(a(),c("div",{class:N(["VPNavScreenMenuGroup",{open:t.value}])},[v("button",{class:"button","aria-controls":n.value,"aria-expanded":t.value,onClick:s},[v("span",{class:"button-text",innerHTML:i.text},null,8,wa),Na],8,Ia),v("div",{id:n.value,class:"items"},[(a(!0),c(M,null,E(i.items,h=>(a(),c(M,{key:h.text},["link"in h?(a(),c("div",{key:h.text,class:"item"},[m(Ee,{item:h},null,8,["item"])])):(a(),c("div",Aa,[m(Sa,{text:h.text,items:h.items},null,8,["text","items"])]))],64))),128))],8,Ma)],2))}}),Ba=b(Ca,[["__scopeId","data-v-ff6087d4"]]),Ha={key:0,class:"VPNavScreenMenu"},Ea=_({__name:"VPNavScreenMenu",setup(o){const{theme:e}=P();return(t,n)=>r(e).nav?(a(),c("nav",Ha,[(a(!0),c(M,null,E(r(e).nav,s=>(a(),c(M,{key:s.text},["link"in s?(a(),$(ga,{key:0,item:s},null,8,["item"])):(a(),$(Ba,{key:1,text:s.text||"",items:s.items},null,8,["text","items"]))],64))),128))])):f("",!0)}}),Fa=_({__name:"VPNavScreenSocialLinks",setup(o){const{theme:e}=P();return(t,n)=>r(e).socialLinks?(a(),$($e,{key:0,class:"VPNavScreenSocialLinks",links:r(e).socialLinks},null,8,["links"])):f("",!0)}}),Fe=o=>(B("data-v-858fe1a4"),o=o(),H(),o),Da=Fe(()=>v("span",{class:"vpi-languages icon lang"},null,-1)),Oa=Fe(()=>v("span",{class:"vpi-chevron-down icon chevron"},null,-1)),Ua={class:"list"},Ga=_({__name:"VPNavScreenTranslations",setup(o){const{localeLinks:e,currentLang:t}=J({correspondingLink:!0}),n=w(!1);function s(){n.value=!n.value}return(i,u)=>r(e).length&&r(t).label?(a(),c("div",{key:0,class:N(["VPNavScreenTranslations",{open:n.value}])},[v("button",{class:"title",onClick:s},[Da,D(" "+I(r(t).label)+" ",1),Oa]),v("ul",Ua,[(a(!0),c(M,null,E(r(e),h=>(a(),c("li",{key:h.link,class:"item"},[m(F,{class:"link",href:h.link},{default:d(()=>[D(I(h.text),1)]),_:2},1032,["href"])]))),128))])],2)):f("",!0)}}),ja=b(Ga,[["__scopeId","data-v-858fe1a4"]]),za={class:"container"},qa=_({__name:"VPNavScreen",props:{open:{type:Boolean}},setup(o){const e=w(null),t=Te(oe?document.body:null);return(n,s)=>(a(),$(ve,{name:"fade",onEnter:s[0]||(s[0]=i=>t.value=!0),onAfterLeave:s[1]||(s[1]=i=>t.value=!1)},{default:d(()=>[n.open?(a(),c("div",{key:0,class:"VPNavScreen",ref_key:"screen",ref:e,id:"VPNavScreen"},[v("div",za,[l(n.$slots,"nav-screen-content-before",{},void 0,!0),m(Ea,{class:"menu"}),m(ja,{class:"translations"}),m(ba,{class:"appearance"}),m(Fa,{class:"social-links"}),l(n.$slots,"nav-screen-content-after",{},void 0,!0)])],512)):f("",!0)]),_:3}))}}),Ka=b(qa,[["__scopeId","data-v-cc5739dd"]]),Wa={key:0,class:"VPNav"},Ra=_({__name:"VPNav",setup(o){const{isScreenOpen:e,closeScreen:t,toggleScreen:n}=ws(),{frontmatter:s}=P(),i=y(()=>s.value.navbar!==!1);return Ie("close-screen",t),Z(()=>{oe&&document.documentElement.classList.toggle("hide-nav",!i.value)}),(u,h)=>i.value?(a(),c("header",Wa,[m(fa,{"is-screen-open":r(e),onToggleScreen:r(n)},{"nav-bar-title-before":d(()=>[l(u.$slots,"nav-bar-title-before",{},void 0,!0)]),"nav-bar-title-after":d(()=>[l(u.$slots,"nav-bar-title-after",{},void 0,!0)]),"nav-bar-content-before":d(()=>[l(u.$slots,"nav-bar-content-before",{},void 0,!0)]),"nav-bar-content-after":d(()=>[l(u.$slots,"nav-bar-content-after",{},void 0,!0)]),_:3},8,["is-screen-open","onToggleScreen"]),m(Ka,{open:r(e)},{"nav-screen-content-before":d(()=>[l(u.$slots,"nav-screen-content-before",{},void 0,!0)]),"nav-screen-content-after":d(()=>[l(u.$slots,"nav-screen-content-after",{},void 0,!0)]),_:3},8,["open"])])):f("",!0)}}),Ja=b(Ra,[["__scopeId","data-v-ae24b3ad"]]),De=o=>(B("data-v-b8d55f3b"),o=o(),H(),o),Ya=["role","tabindex"],Qa=De(()=>v("div",{class:"indicator"},null,-1)),Xa=De(()=>v("span",{class:"vpi-chevron-right caret-icon"},null,-1)),Za=[Xa],xa={key:1,class:"items"},er=_({__name:"VPSidebarItem",props:{item:{},depth:{}},setup(o){const e=o,{collapsed:t,collapsible:n,isLink:s,isActiveLink:i,hasActiveLink:u,hasChildren:h,toggle:p}=bt(y(()=>e.item)),g=y(()=>h.value?"section":"div"),L=y(()=>s.value?"a":"div"),k=y(()=>h.value?e.depth+2===7?"p":`h${e.depth+2}`:"p"),V=y(()=>s.value?void 0:"button"),T=y(()=>[[`level-${e.depth}`],{collapsible:n.value},{collapsed:t.value},{"is-link":s.value},{"is-active":i.value},{"has-active":u.value}]);function A(S){"key"in S&&S.key!=="Enter"||!e.item.link&&p()}function C(){e.item.link&&p()}return(S,U)=>{const G=q("VPSidebarItem",!0);return a(),$(W(g.value),{class:N(["VPSidebarItem",T.value])},{default:d(()=>[S.item.text?(a(),c("div",Y({key:0,class:"item",role:V.value},Xe(S.item.items?{click:A,keydown:A}:{},!0),{tabindex:S.item.items&&0}),[Qa,S.item.link?(a(),$(F,{key:0,tag:L.value,class:"link",href:S.item.link,rel:S.item.rel,target:S.item.target},{default:d(()=>[(a(),$(W(k.value),{class:"text",innerHTML:S.item.text},null,8,["innerHTML"]))]),_:1},8,["tag","href","rel","target"])):(a(),$(W(k.value),{key:1,class:"text",innerHTML:S.item.text},null,8,["innerHTML"])),S.item.collapsed!=null&&S.item.items&&S.item.items.length?(a(),c("div",{key:2,class:"caret",role:"button","aria-label":"toggle section",onClick:C,onKeydown:Qe(C,["enter"]),tabindex:"0"},Za,32)):f("",!0)],16,Ya)):f("",!0),S.item.items&&S.item.items.length?(a(),c("div",xa,[S.depth<5?(a(!0),c(M,{key:0},E(S.item.items,K=>(a(),$(G,{key:K.text,item:K,depth:S.depth+1},null,8,["item","depth"]))),128)):f("",!0)])):f("",!0)]),_:1},8,["class"])}}}),tr=b(er,[["__scopeId","data-v-b8d55f3b"]]),Oe=o=>(B("data-v-575e6a36"),o=o(),H(),o),or=Oe(()=>v("div",{class:"curtain"},null,-1)),sr={class:"nav",id:"VPSidebarNav","aria-labelledby":"sidebar-aria-label",tabindex:"-1"},nr=Oe(()=>v("span",{class:"visually-hidden",id:"sidebar-aria-label"}," Sidebar Navigation ",-1)),ar=_({__name:"VPSidebar",props:{open:{type:Boolean}},setup(o){const{sidebarGroups:e,hasSidebar:t}=O(),n=o,s=w(null),i=Te(oe?document.body:null);return j([n,s],()=>{var u;n.open?(i.value=!0,(u=s.value)==null||u.focus()):i.value=!1},{immediate:!0,flush:"post"}),(u,h)=>r(t)?(a(),c("aside",{key:0,class:N(["VPSidebar",{open:u.open}]),ref_key:"navEl",ref:s,onClick:h[0]||(h[0]=Ze(()=>{},["stop"]))},[or,v("nav",sr,[nr,l(u.$slots,"sidebar-nav-before",{},void 0,!0),(a(!0),c(M,null,E(r(e),p=>(a(),c("div",{key:p.text,class:"group"},[m(tr,{item:p,depth:0},null,8,["item"])]))),128)),l(u.$slots,"sidebar-nav-after",{},void 0,!0)])],2)):f("",!0)}}),rr=b(ar,[["__scopeId","data-v-575e6a36"]]),ir=_({__name:"VPSkipLink",setup(o){const e=ee(),t=w();j(()=>e.path,()=>t.value.focus());function n({target:s}){const i=document.getElementById(decodeURIComponent(s.hash).slice(1));if(i){const u=()=>{i.removeAttribute("tabindex"),i.removeEventListener("blur",u)};i.setAttribute("tabindex","-1"),i.addEventListener("blur",u),i.focus(),window.scrollTo(0,0)}}return(s,i)=>(a(),c(M,null,[v("span",{ref_key:"backToTop",ref:t,tabindex:"-1"},null,512),v("a",{href:"#VPContent",class:"VPSkipLink visually-hidden",onClick:n}," Skip to content ")],64))}}),lr=b(ir,[["__scopeId","data-v-0f60ec36"]]),cr=_({__name:"Layout",setup(o){const{isOpen:e,open:t,close:n}=O(),s=ee();j(()=>s.path,n),kt(e,n);const{frontmatter:i}=P(),u=xe(),h=y(()=>!!u["home-hero-image"]);return Ie("hero-image-slot-exists",h),(p,g)=>{const L=q("Content");return r(i).layout!==!1?(a(),c("div",{key:0,class:N(["Layout",r(i).pageClass])},[l(p.$slots,"layout-top",{},void 0,!0),m(lr),m(st,{class:"backdrop",show:r(e),onClick:r(n)},null,8,["show","onClick"]),m(Ja,null,{"nav-bar-title-before":d(()=>[l(p.$slots,"nav-bar-title-before",{},void 0,!0)]),"nav-bar-title-after":d(()=>[l(p.$slots,"nav-bar-title-after",{},void 0,!0)]),"nav-bar-content-before":d(()=>[l(p.$slots,"nav-bar-content-before",{},void 0,!0)]),"nav-bar-content-after":d(()=>[l(p.$slots,"nav-bar-content-after",{},void 0,!0)]),"nav-screen-content-before":d(()=>[l(p.$slots,"nav-screen-content-before",{},void 0,!0)]),"nav-screen-content-after":d(()=>[l(p.$slots,"nav-screen-content-after",{},void 0,!0)]),_:3}),m(Is,{open:r(e),onOpenMenu:r(t)},null,8,["open","onOpenMenu"]),m(rr,{open:r(e)},{"sidebar-nav-before":d(()=>[l(p.$slots,"sidebar-nav-before",{},void 0,!0)]),"sidebar-nav-after":d(()=>[l(p.$slots,"sidebar-nav-after",{},void 0,!0)]),_:3},8,["open"]),m(ls,null,{"page-top":d(()=>[l(p.$slots,"page-top",{},void 0,!0)]),"page-bottom":d(()=>[l(p.$slots,"page-bottom",{},void 0,!0)]),"not-found":d(()=>[l(p.$slots,"not-found",{},void 0,!0)]),"home-hero-before":d(()=>[l(p.$slots,"home-hero-before",{},void 0,!0)]),"home-hero-info-before":d(()=>[l(p.$slots,"home-hero-info-before",{},void 0,!0)]),"home-hero-info":d(()=>[l(p.$slots,"home-hero-info",{},void 0,!0)]),"home-hero-info-after":d(()=>[l(p.$slots,"home-hero-info-after",{},void 0,!0)]),"home-hero-actions-after":d(()=>[l(p.$slots,"home-hero-actions-after",{},void 0,!0)]),"home-hero-image":d(()=>[l(p.$slots,"home-hero-image",{},void 0,!0)]),"home-hero-after":d(()=>[l(p.$slots,"home-hero-after",{},void 0,!0)]),"home-features-before":d(()=>[l(p.$slots,"home-features-before",{},void 0,!0)]),"home-features-after":d(()=>[l(p.$slots,"home-features-after",{},void 0,!0)]),"doc-footer-before":d(()=>[l(p.$slots,"doc-footer-before",{},void 0,!0)]),"doc-before":d(()=>[l(p.$slots,"doc-before",{},void 0,!0)]),"doc-after":d(()=>[l(p.$slots,"doc-after",{},void 0,!0)]),"doc-top":d(()=>[l(p.$slots,"doc-top",{},void 0,!0)]),"doc-bottom":d(()=>[l(p.$slots,"doc-bottom",{},void 0,!0)]),"aside-top":d(()=>[l(p.$slots,"aside-top",{},void 0,!0)]),"aside-bottom":d(()=>[l(p.$slots,"aside-bottom",{},void 0,!0)]),"aside-outline-before":d(()=>[l(p.$slots,"aside-outline-before",{},void 0,!0)]),"aside-outline-after":d(()=>[l(p.$slots,"aside-outline-after",{},void 0,!0)]),"aside-ads-before":d(()=>[l(p.$slots,"aside-ads-before",{},void 0,!0)]),"aside-ads-after":d(()=>[l(p.$slots,"aside-ads-after",{},void 0,!0)]),_:3}),m(ps),l(p.$slots,"layout-bottom",{},void 0,!0)],2)):(a(),$(L,{key:1}))}}}),ur=b(cr,[["__scopeId","data-v-5d98c3a5"]]),vr={Layout:ur,enhanceApp:({app:o})=>{o.component("Badge",et)}};export{Un as c,vr as t,P as u}; diff --git a/docs/.vitepress/dist/assets/guide_additions_swap.md.CkbQXJmg.js b/docs/.vitepress/dist/assets/guide_additions_swap.md.CkbQXJmg.js deleted file mode 100644 index 62941c223..000000000 --- a/docs/.vitepress/dist/assets/guide_additions_swap.md.CkbQXJmg.js +++ /dev/null @@ -1,26 +0,0 @@ -import{_ as s,c as i,o as a,a3 as l}from"./chunks/framework.OdeEVNy0.js";const F=JSON.parse('{"title":"Laravel Wallet Swap","description":"","frontmatter":{},"headers":[],"relativePath":"guide/additions/swap.md","filePath":"guide/additions/swap.md"}'),n={name:"guide/additions/swap.md"},h=l(`

Laravel Wallet Swap

Composer

The recommended installation method is using Composer.

In your project root just run:

bash
composer req bavix/laravel-wallet-swap

User model

We need a simple model with the ability to work multi-wallets.

php
use Bavix\\Wallet\\Interfaces\\Wallet;
-use Bavix\\Wallet\\Traits\\HasWallets;
-use Bavix\\Wallet\\Traits\\HasWallet;
-
-class User extends Model implements Wallet
-{
-    use HasWallet, HasWallets;
-}

Simple example

Let's create wallets with currency:

php
$usd = $user->createWallet([
-    'name' => 'My Dollars',
-    'slug' => 'usd',
-    'meta' => ['currency' => 'USD'],
-]);
-
-$rub = $user->createWallet([
-    'name' => 'My Ruble',
-    'slug' => 'rub',
-    'meta' => ['currency' => 'RUB'],
-]);

Find wallets and exchange from one to another.

php
$rub = $user->getWallet('rub');
-$usd = $user->getWallet('usd');
-
-$usd->balance; // 200
-$rub->balance; // 0
-
-$usd->exchange($rub, 10);
-$usd->balance; // 190
-$rub->balance; // 622

It's simple!

`,14),t=[h];function p(e,k,r,d,E,g){return a(),i("div",null,t)}const c=s(n,[["render",p]]);export{F as __pageData,c as default}; diff --git a/docs/.vitepress/dist/assets/guide_additions_swap.md.CkbQXJmg.lean.js b/docs/.vitepress/dist/assets/guide_additions_swap.md.CkbQXJmg.lean.js deleted file mode 100644 index 7ad8a722f..000000000 --- a/docs/.vitepress/dist/assets/guide_additions_swap.md.CkbQXJmg.lean.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as s,c as i,o as a,a3 as l}from"./chunks/framework.OdeEVNy0.js";const F=JSON.parse('{"title":"Laravel Wallet Swap","description":"","frontmatter":{},"headers":[],"relativePath":"guide/additions/swap.md","filePath":"guide/additions/swap.md"}'),n={name:"guide/additions/swap.md"},h=l("",14),t=[h];function p(e,k,r,d,E,g){return a(),i("div",null,t)}const c=s(n,[["render",p]]);export{F as __pageData,c as default}; diff --git a/docs/.vitepress/dist/assets/guide_additions_uuid.md.BXhPbgHs.js b/docs/.vitepress/dist/assets/guide_additions_uuid.md.BXhPbgHs.js deleted file mode 100644 index eac4abb15..000000000 --- a/docs/.vitepress/dist/assets/guide_additions_uuid.md.BXhPbgHs.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as e,c as a,o as t,a3 as i}from"./chunks/framework.OdeEVNy0.js";const g=JSON.parse('{"title":"Laravel Wallet UUID","description":"","frontmatter":{},"headers":[],"relativePath":"guide/additions/uuid.md","filePath":"guide/additions/uuid.md"}'),s={name:"guide/additions/uuid.md"},o=i('

Laravel Wallet UUID

Using uuid greatly reduces package performance. We recommend using int.

Often there is a need to store an identifier in uuid/ulid. Since version 9.0 laravel-wallet supports string identifiers, you only need to perform the migration.

To simplify the process, you can use a ready-made package.

Attention! It will not work to use UUID instead of ID in wallet models; there is a special uuid field for this.

Composer

The recommended installation method is using Composer.

In your project root just run:

bash
composer req bavix/laravel-wallet-uuid

Now you need to migrate!

After migration, you can use the UUID in your models.

You can find implementation examples in the package tests: https://github.com/bavix/laravel-wallet-uuid/tree/master/tests

It's simple!

',13),r=[o];function l(n,p,d,u,c,h){return t(),a("div",null,r)}const _=e(s,[["render",l]]);export{g as __pageData,_ as default}; diff --git a/docs/.vitepress/dist/assets/guide_additions_uuid.md.BXhPbgHs.lean.js b/docs/.vitepress/dist/assets/guide_additions_uuid.md.BXhPbgHs.lean.js deleted file mode 100644 index cb633c738..000000000 --- a/docs/.vitepress/dist/assets/guide_additions_uuid.md.BXhPbgHs.lean.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as e,c as a,o as t,a3 as i}from"./chunks/framework.OdeEVNy0.js";const g=JSON.parse('{"title":"Laravel Wallet UUID","description":"","frontmatter":{},"headers":[],"relativePath":"guide/additions/uuid.md","filePath":"guide/additions/uuid.md"}'),s={name:"guide/additions/uuid.md"},o=i("",13),r=[o];function l(n,p,d,u,c,h){return t(),a("div",null,r)}const _=e(s,[["render",l]]);export{g as __pageData,_ as default}; diff --git a/docs/.vitepress/dist/assets/guide_cqrs_create-wallet.md.CKR5iFPX.js b/docs/.vitepress/dist/assets/guide_cqrs_create-wallet.md.CKR5iFPX.js deleted file mode 100644 index c1ddb190c..000000000 --- a/docs/.vitepress/dist/assets/guide_cqrs_create-wallet.md.CKR5iFPX.js +++ /dev/null @@ -1,29 +0,0 @@ -import{_ as s,c as i,o as a,a3 as n}from"./chunks/framework.OdeEVNy0.js";const c=JSON.parse('{"title":"Asynchronous wallet creation","description":"","frontmatter":{},"headers":[],"relativePath":"guide/cqrs/create-wallet.md","filePath":"guide/cqrs/create-wallet.md"}'),e={name:"guide/cqrs/create-wallet.md"},t=n(`

Asynchronous wallet creation

The idea is based on the division into teams for creating wallets, transactions, etc. The creation of a wallet can be accelerated if the client "generates a wallet himself".

User Model

Add the HasWallet, HasWallets trait's and Wallet interface to model.

php
use Bavix\\Wallet\\Traits\\HasWallet;
-use Bavix\\Wallet\\Traits\\HasWallets;
-use Bavix\\Wallet\\Interfaces\\Wallet;
-
-class User extends Model implements Wallet
-{
-    use HasWallet, HasWallets;
-}

Action Handler

php
use Illuminate\\Http\\Request;
-use Illuminate\\Http\\Response;
-use Illuminate\\Support\\Facades\\Response as ResponseFactory;
-...
-
-public function __invoke(User $user, Request $request): Response
-{
-    $name = $request->get('wallet_name');
-    $uuid = $request->get('wallet_uuid');
-
-    $message = new CreateWalletCommandMessage($user, $name, $uuid);
-    dispatch($message);
-
-    return ResponseFactory::json([], 202);
-}

Command Handler

php
public function __invoke(CreateWalletCommandMessage $message): void
-{
-    $user = $message->getUser();
-    $user->createWallet([
-        'uuid' => $message->getWalletUuid(),
-        'name' => $message->getWalletName(),
-    ]);
-}

You receive requests to create a wallet on the backend, and you create them asynchronously. UUID4 is generated on the client side and the client already knows it. You will not be able to create two wallets with one uuid, because the column in the database is unique.

The user no longer needs to wait for the creation of a wallet, it is enough to know the uuid. You get the most stable application.


It's simple!

`,13),l=[t];function h(p,k,r,d,E,g){return a(),i("div",null,l)}const y=s(e,[["render",h]]);export{c as __pageData,y as default}; diff --git a/docs/.vitepress/dist/assets/guide_cqrs_create-wallet.md.CKR5iFPX.lean.js b/docs/.vitepress/dist/assets/guide_cqrs_create-wallet.md.CKR5iFPX.lean.js deleted file mode 100644 index d6f865d89..000000000 --- a/docs/.vitepress/dist/assets/guide_cqrs_create-wallet.md.CKR5iFPX.lean.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as s,c as i,o as a,a3 as n}from"./chunks/framework.OdeEVNy0.js";const c=JSON.parse('{"title":"Asynchronous wallet creation","description":"","frontmatter":{},"headers":[],"relativePath":"guide/cqrs/create-wallet.md","filePath":"guide/cqrs/create-wallet.md"}'),e={name:"guide/cqrs/create-wallet.md"},t=n("",13),l=[t];function h(p,k,r,d,E,g){return a(),i("div",null,l)}const y=s(e,[["render",h]]);export{c as __pageData,y as default}; diff --git a/docs/.vitepress/dist/assets/guide_db_atomic-service.md.D5TpnOT6.js b/docs/.vitepress/dist/assets/guide_db_atomic-service.md.D5TpnOT6.js deleted file mode 100644 index 6bf8c40ec..000000000 --- a/docs/.vitepress/dist/assets/guide_db_atomic-service.md.D5TpnOT6.js +++ /dev/null @@ -1,11 +0,0 @@ -import{_ as s,c as i,o as a,a3 as t}from"./chunks/framework.OdeEVNy0.js";const g=JSON.parse('{"title":"Atomic Service","description":"","frontmatter":{},"headers":[],"relativePath":"guide/db/atomic-service.md","filePath":"guide/db/atomic-service.md"}'),e={name:"guide/db/atomic-service.md"},n=t(`

Atomic Service

Working with atomic wallet operations.

Before you start working with atomicity, you need to study the "Race Condition" section and configure the lock.

Sometimes it is necessary to apply actions to the user and the wallet atomically. For example, you want to raise an ad in the search and withdraw money from your wallet. You need an Atomic Service Interface.

php
use Bavix\\Wallet\\Services\\AtomicServiceInterface;
-
-app(AtomicServiceInterface::class)->block($wallet, function () use ($wallet, $entity) {
-    $entity->increaseSales(); // update entity set sort_at=NOW() where id=123;
-    $wallet->withdraw(100);
-});

What's going on here? We block the wallet and raise the ad in the transaction (yes, atomic immediately starts the transaction - this is the main difference from LockServiceInterface). We raise the ad and deduct the amount from the wallet. If there are not enough funds to raise the ad, the error will complete the atomic operation and the transaction will roll back, and the lock on the wallet will be removed.

There is also an opportunity to block a lot of wallets. The operation is expensive, it generates N requests to the lock service. Maybe I'll optimize it in the future, but that's not for sure.


For example, we need to debit from two wallets at the same time. Then let's use the "blocks" method.

php
use Bavix\\Wallet\\Services\\AtomicServiceInterface;
-
-app(AtomicServiceInterface::class)->blocks([$wallet1, $wallet2], function () use ($wallet1, $wallet2) {
-    $wallet1->withdraw(100);
-    $wallet2->withdraw(100);
-});

In this case, we blocked both wallets and started the process of debiting funds. Debiting from both wallets will be considered a successful operation. If there are not enough funds on some wallet, the operation is canceled.

It's simple!

`,12),l=[n];function h(p,k,r,o,d,c){return a(),i("div",null,l)}const y=s(e,[["render",h]]);export{g as __pageData,y as default}; diff --git a/docs/.vitepress/dist/assets/guide_db_atomic-service.md.D5TpnOT6.lean.js b/docs/.vitepress/dist/assets/guide_db_atomic-service.md.D5TpnOT6.lean.js deleted file mode 100644 index a45e5b18e..000000000 --- a/docs/.vitepress/dist/assets/guide_db_atomic-service.md.D5TpnOT6.lean.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as s,c as i,o as a,a3 as t}from"./chunks/framework.OdeEVNy0.js";const g=JSON.parse('{"title":"Atomic Service","description":"","frontmatter":{},"headers":[],"relativePath":"guide/db/atomic-service.md","filePath":"guide/db/atomic-service.md"}'),e={name:"guide/db/atomic-service.md"},n=t("",12),l=[n];function h(p,k,r,o,d,c){return a(),i("div",null,l)}const y=s(e,[["render",h]]);export{g as __pageData,y as default}; diff --git a/docs/.vitepress/dist/assets/guide_db_race-condition.md.D79_peqX.js b/docs/.vitepress/dist/assets/guide_db_race-condition.md.D79_peqX.js deleted file mode 100644 index c7780d748..000000000 --- a/docs/.vitepress/dist/assets/guide_db_race-condition.md.D79_peqX.js +++ /dev/null @@ -1,10 +0,0 @@ -import{_ as s,c as i,o as a,a3 as e}from"./chunks/framework.OdeEVNy0.js";const u=JSON.parse('{"title":"Race Condition","description":"","frontmatter":{},"headers":[],"relativePath":"guide/db/race-condition.md","filePath":"guide/db/race-condition.md"}'),t={name:"guide/db/race-condition.md"},n=e(`

Race Condition

A common issue in the issue is about race conditions.

If you have not yet imported the config into the project, then you need to do this.

bash
php artisan vendor:publish --tag=laravel-wallet-config

Previously, there was a vacuum package, but now it is a part of the core. You just need to configure the lock service and the cache service in the package configuration wallet.php.

php
    /**
-     * A system for dealing with race conditions.
-     */
-    'lock' => [
-        'driver' => 'array',
-        'seconds' => 1,
-    ],

To enable the fight against race conditions, you need to select a provider that supports work with locks. I recommend redis.

There is a setting for storing the state of the wallet, I recommend choosing redis here too.

php
    /**
-     * Storage of the state of the balance of wallets.
-     */
-    'cache' => ['driver' => 'array'],

You need redis-server and php-redis.

Redis is recommended but not required. You can choose whatever the framework offers you.

It's simple!

`,12),p=[n];function h(o,l,d,r,c,k){return a(),i("div",null,p)}const y=s(t,[["render",h]]);export{u as __pageData,y as default}; diff --git a/docs/.vitepress/dist/assets/guide_db_race-condition.md.D79_peqX.lean.js b/docs/.vitepress/dist/assets/guide_db_race-condition.md.D79_peqX.lean.js deleted file mode 100644 index c65c399b3..000000000 --- a/docs/.vitepress/dist/assets/guide_db_race-condition.md.D79_peqX.lean.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as s,c as i,o as a,a3 as e}from"./chunks/framework.OdeEVNy0.js";const u=JSON.parse('{"title":"Race Condition","description":"","frontmatter":{},"headers":[],"relativePath":"guide/db/race-condition.md","filePath":"guide/db/race-condition.md"}'),t={name:"guide/db/race-condition.md"},n=e("",12),p=[n];function h(o,l,d,r,c,k){return a(),i("div",null,p)}const y=s(t,[["render",h]]);export{u as __pageData,y as default}; diff --git a/docs/.vitepress/dist/assets/guide_db_transaction.md.Buy64iJm.js b/docs/.vitepress/dist/assets/guide_db_transaction.md.Buy64iJm.js deleted file mode 100644 index 5e4134619..000000000 --- a/docs/.vitepress/dist/assets/guide_db_transaction.md.Buy64iJm.js +++ /dev/null @@ -1,6 +0,0 @@ -import{_ as s,c as i,o as a,a3 as t}from"./chunks/framework.OdeEVNy0.js";const m=JSON.parse('{"title":"Transaction","description":"","frontmatter":{},"headers":[],"relativePath":"guide/db/transaction.md","filePath":"guide/db/transaction.md"}'),n={name:"guide/db/transaction.md"},e=t(`

Transaction

You definitely need to know the feature of transactions. The wallet is automatically blocked from the moment it is used until the end of the transaction. Therefore, it is necessary to use the wallet closer to the end of the transaction.

Very important! Almost all wallet transactions are blocking.

php
use Illuminate\\Support\\Facades\\DB;
-
-DB::beginTransaction();
-$wallet->balanceInt; // now the wallet is blocked
-doingMagic(); // running for a long time.
-DB::commit(); // here will unlock the wallet

The point is that you need to minimize operations within transactions as much as possible. The longer the transaction, the longer the wallet lock. The maximum wallet blocking time is set in the configuration. The longer the transaction takes, the more likely it is to get a race for the wallet.


It's simple!

`,7),l=[e];function h(o,p,r,k,c,d){return a(),i("div",null,l)}const u=s(n,[["render",h]]);export{m as __pageData,u as default}; diff --git a/docs/.vitepress/dist/assets/guide_db_transaction.md.Buy64iJm.lean.js b/docs/.vitepress/dist/assets/guide_db_transaction.md.Buy64iJm.lean.js deleted file mode 100644 index 6a75cb407..000000000 --- a/docs/.vitepress/dist/assets/guide_db_transaction.md.Buy64iJm.lean.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as s,c as i,o as a,a3 as t}from"./chunks/framework.OdeEVNy0.js";const m=JSON.parse('{"title":"Transaction","description":"","frontmatter":{},"headers":[],"relativePath":"guide/db/transaction.md","filePath":"guide/db/transaction.md"}'),n={name:"guide/db/transaction.md"},e=t("",7),l=[e];function h(o,p,r,k,c,d){return a(),i("div",null,l)}const u=s(n,[["render",h]]);export{m as __pageData,u as default}; diff --git a/docs/.vitepress/dist/assets/guide_events_balance-updated-event.md.Bnwm6_qe.js b/docs/.vitepress/dist/assets/guide_events_balance-updated-event.md.Bnwm6_qe.js deleted file mode 100644 index 307c95ad6..000000000 --- a/docs/.vitepress/dist/assets/guide_events_balance-updated-event.md.Bnwm6_qe.js +++ /dev/null @@ -1,15 +0,0 @@ -import{_ as s,c as a,o as i,a3 as n}from"./chunks/framework.OdeEVNy0.js";const E=JSON.parse('{"title":"Tracking balance changes","description":"","frontmatter":{},"headers":[],"relativePath":"guide/events/balance-updated-event.md","filePath":"guide/events/balance-updated-event.md"}'),e={name:"guide/events/balance-updated-event.md"},t=n(`

Tracking balance changes

There are tasks when you urgently need to do something when the user's balance changes. A frequent case of transferring data via websockets to the front-end.

Version 7.2 introduces an interface to which you can subscribe. This is done using standard Laravel methods. More information in the documentation.

php
use Bavix\\Wallet\\Internal\\Events\\BalanceUpdatedEventInterface;
-
-protected $listen = [
-    BalanceUpdatedEventInterface::class => [
-        MyBalanceUpdatedListener::class,
-    ],
-];

And then we create a listener.

php
use Bavix\\Wallet\\Internal\\Events\\BalanceUpdatedEventInterface;
-
-class MyBalanceUpdatedListener
-{
-    public function handle(BalanceUpdatedEventInterface $event): void
-    {
-        // And then the implementation...
-    }
-}

It's simple!

`,7),l=[t];function p(h,k,d,r,c,o){return i(),a("div",null,l)}const y=s(e,[["render",p]]);export{E as __pageData,y as default}; diff --git a/docs/.vitepress/dist/assets/guide_events_balance-updated-event.md.Bnwm6_qe.lean.js b/docs/.vitepress/dist/assets/guide_events_balance-updated-event.md.Bnwm6_qe.lean.js deleted file mode 100644 index 1abd5c516..000000000 --- a/docs/.vitepress/dist/assets/guide_events_balance-updated-event.md.Bnwm6_qe.lean.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as s,c as a,o as i,a3 as n}from"./chunks/framework.OdeEVNy0.js";const E=JSON.parse('{"title":"Tracking balance changes","description":"","frontmatter":{},"headers":[],"relativePath":"guide/events/balance-updated-event.md","filePath":"guide/events/balance-updated-event.md"}'),e={name:"guide/events/balance-updated-event.md"},t=n("",7),l=[t];function p(h,k,d,r,c,o){return i(),a("div",null,l)}const y=s(e,[["render",p]]);export{E as __pageData,y as default}; diff --git a/docs/.vitepress/dist/assets/guide_events_customize.md.C_oxTANW.js b/docs/.vitepress/dist/assets/guide_events_customize.md.C_oxTANW.js deleted file mode 100644 index adfeb987b..000000000 --- a/docs/.vitepress/dist/assets/guide_events_customize.md.C_oxTANW.js +++ /dev/null @@ -1,44 +0,0 @@ -import{_ as s,c as i,o as a,a3 as n}from"./chunks/framework.OdeEVNy0.js";const c=JSON.parse('{"title":"Customizing events","description":"","frontmatter":{},"headers":[],"relativePath":"guide/events/customize.md","filePath":"guide/events/customize.md"}'),t={name:"guide/events/customize.md"},l=n(`

Customizing events

Sometimes you want to modify the standard events of a package. This is done quite simply.

Let's add broadcast support? We need to implement our event from the interface.

php
use Bavix\\Wallet\\Internal\\Events\\BalanceUpdatedEventInterface;
-use Illuminate\\Contracts\\Broadcasting\\ShouldBroadcast;
-
-final class MyUpdatedEvent implements BalanceUpdatedEventInterface, ShouldBroadcast
-{
-    public function __construct(
-        private \\Bavix\\Wallet\\Models\\Wallet $wallet,
-        private DateTimeImmutable $updatedAt,
-    ) {}
-    
-    public function getWalletId(): int { return $this->wallet->getKey(); }
-    public function getWalletUuid(): string { return $this->wallet->uuid; }
-    public function getBalance(): string { return $this->wallet->balanceInt; }
-    public function getUpdatedAt(): DateTimeImmutable { return $this->updatedAt; }
-
-    public function broadcastOn(): array
-    {
-        return $this->wallet->getAttributes();
-    }
-}

The event is ready, but that's not all. Now you need to implement your assembler class, which will create an event inside the package.

php
use Bavix\\Wallet\\Internal\\Assembler\\BalanceUpdatedEventAssemblerInterface;
-
-class MyUpdatedEventAssembler implements BalanceUpdatedEventAssemblerInterface
-{
-    public function create(\\Bavix\\Wallet\\Models\\Wallet $wallet) : \\Bavix\\Wallet\\Internal\\Events\\BalanceUpdatedEventInterface
-    {
-        return new MyUpdatedEvent($wallet, new DateTimeImmutable());
-    }
-}

Next, go to the package settings (wallet.php). We change the event to a new one.

php
    'assemblers' => [
-        'balance_updated_event' => MyUpdatedEventAssembler::class,
-    ],

Then everything is the same as with the standard events of the package.

php
use Bavix\\Wallet\\Internal\\Events\\BalanceUpdatedEventInterface;
-
-protected $listen = [
-    BalanceUpdatedEventInterface::class => [
-        MyBalanceUpdatedListener::class,
-    ],
-];

And then we create a listener.

php
use Bavix\\Wallet\\Internal\\Events\\BalanceUpdatedEventInterface;
-
-class MyBalanceUpdatedListener
-{
-    public function handle(BalanceUpdatedEventInterface $event): void
-    {
-        // And then the implementation...
-    }
-}

It's simple!

`,13),h=[l];function e(p,k,d,r,E,g){return a(),i("div",null,h)}const F=s(t,[["render",e]]);export{c as __pageData,F as default}; diff --git a/docs/.vitepress/dist/assets/guide_events_customize.md.C_oxTANW.lean.js b/docs/.vitepress/dist/assets/guide_events_customize.md.C_oxTANW.lean.js deleted file mode 100644 index 187997b79..000000000 --- a/docs/.vitepress/dist/assets/guide_events_customize.md.C_oxTANW.lean.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as s,c as i,o as a,a3 as n}from"./chunks/framework.OdeEVNy0.js";const c=JSON.parse('{"title":"Customizing events","description":"","frontmatter":{},"headers":[],"relativePath":"guide/events/customize.md","filePath":"guide/events/customize.md"}'),t={name:"guide/events/customize.md"},l=n("",13),h=[l];function e(p,k,d,r,E,g){return a(),i("div",null,h)}const F=s(t,[["render",e]]);export{c as __pageData,F as default}; diff --git a/docs/.vitepress/dist/assets/guide_events_transaction-created-event.md.D2KSbfEY.js b/docs/.vitepress/dist/assets/guide_events_transaction-created-event.md.D2KSbfEY.js deleted file mode 100644 index e5baa3554..000000000 --- a/docs/.vitepress/dist/assets/guide_events_transaction-created-event.md.D2KSbfEY.js +++ /dev/null @@ -1,15 +0,0 @@ -import{_ as s,c as a,o as i,a3 as n}from"./chunks/framework.OdeEVNy0.js";const g=JSON.parse('{"title":"Tracking the creation of wallet transactions","description":"","frontmatter":{},"headers":[],"relativePath":"guide/events/transaction-created-event.md","filePath":"guide/events/transaction-created-event.md"}'),t={name:"guide/events/transaction-created-event.md"},e=n(`

Tracking the creation of wallet transactions

The events are similar to the events for updating the balance, only for the creation of a wallet. A frequent case of transferring data via websockets to the front-end.

Version 9.1 introduces an interface to which you can subscribe. This is done using standard Laravel methods. More information in the documentation.

php
use Bavix\\Wallet\\Internal\\Events\\TransactionCreatedEventInterface;
-
-protected $listen = [
-    TransactionCreatedEventInterface::class => [
-        MyWalletTransactionCreatedListener::class,
-    ],
-];

And then we create a listener.

php
use Bavix\\Wallet\\Internal\\Events\\TransactionCreatedEventInterface;
-
-class MyWalletTransactionCreatedListener
-{
-    public function handle(TransactionCreatedEventInterface $event): void
-    {
-        // And then the implementation...
-    }
-}

It's simple!

`,7),l=[e];function h(p,r,k,c,d,o){return i(),a("div",null,l)}const y=s(t,[["render",h]]);export{g as __pageData,y as default}; diff --git a/docs/.vitepress/dist/assets/guide_events_transaction-created-event.md.D2KSbfEY.lean.js b/docs/.vitepress/dist/assets/guide_events_transaction-created-event.md.D2KSbfEY.lean.js deleted file mode 100644 index f04055d8c..000000000 --- a/docs/.vitepress/dist/assets/guide_events_transaction-created-event.md.D2KSbfEY.lean.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as s,c as a,o as i,a3 as n}from"./chunks/framework.OdeEVNy0.js";const g=JSON.parse('{"title":"Tracking the creation of wallet transactions","description":"","frontmatter":{},"headers":[],"relativePath":"guide/events/transaction-created-event.md","filePath":"guide/events/transaction-created-event.md"}'),t={name:"guide/events/transaction-created-event.md"},e=n("",7),l=[e];function h(p,r,k,c,d,o){return i(),a("div",null,l)}const y=s(t,[["render",h]]);export{g as __pageData,y as default}; diff --git a/docs/.vitepress/dist/assets/guide_events_wallet-created-event.md.BSjxjF9u.js b/docs/.vitepress/dist/assets/guide_events_wallet-created-event.md.BSjxjF9u.js deleted file mode 100644 index acd1b9c2f..000000000 --- a/docs/.vitepress/dist/assets/guide_events_wallet-created-event.md.BSjxjF9u.js +++ /dev/null @@ -1,15 +0,0 @@ -import{_ as s,c as a,o as i,a3 as e}from"./chunks/framework.OdeEVNy0.js";const g=JSON.parse('{"title":"Tracking the creation of wallets","description":"","frontmatter":{},"headers":[],"relativePath":"guide/events/wallet-created-event.md","filePath":"guide/events/wallet-created-event.md"}'),n={name:"guide/events/wallet-created-event.md"},t=e(`

Tracking the creation of wallets

The events are similar to the events for updating the balance, only for the creation of a wallet. A frequent case of transferring data via websockets to the front-end.

Version 7.3 introduces an interface to which you can subscribe. This is done using standard Laravel methods. More information in the documentation.

php
use Bavix\\Wallet\\Internal\\Events\\WalletCreatedEventInterface;
-
-protected $listen = [
-    WalletCreatedEventInterface::class => [
-        MyWalletCreatedListener::class,
-    ],
-];

And then we create a listener.

php
use Bavix\\Wallet\\Internal\\Events\\WalletCreatedEventInterface;
-
-class MyWalletCreatedListener
-{
-    public function handle(WalletCreatedEventInterface $event): void
-    {
-        // And then the implementation...
-    }
-}

It's simple!

`,7),l=[t];function h(p,r,k,d,c,o){return i(),a("div",null,l)}const y=s(n,[["render",h]]);export{g as __pageData,y as default}; diff --git a/docs/.vitepress/dist/assets/guide_events_wallet-created-event.md.BSjxjF9u.lean.js b/docs/.vitepress/dist/assets/guide_events_wallet-created-event.md.BSjxjF9u.lean.js deleted file mode 100644 index e10a61d03..000000000 --- a/docs/.vitepress/dist/assets/guide_events_wallet-created-event.md.BSjxjF9u.lean.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as s,c as a,o as i,a3 as e}from"./chunks/framework.OdeEVNy0.js";const g=JSON.parse('{"title":"Tracking the creation of wallets","description":"","frontmatter":{},"headers":[],"relativePath":"guide/events/wallet-created-event.md","filePath":"guide/events/wallet-created-event.md"}'),n={name:"guide/events/wallet-created-event.md"},t=e("",7),l=[t];function h(p,r,k,d,c,o){return i(),a("div",null,l)}const y=s(n,[["render",h]]);export{g as __pageData,y as default}; diff --git a/docs/.vitepress/dist/assets/guide_fractional_deposit.md.BWPIoLWk.js b/docs/.vitepress/dist/assets/guide_fractional_deposit.md.BWPIoLWk.js deleted file mode 100644 index 18aa91503..000000000 --- a/docs/.vitepress/dist/assets/guide_fractional_deposit.md.BWPIoLWk.js +++ /dev/null @@ -1,12 +0,0 @@ -import{_ as s,c as i,o as a,a3 as e}from"./chunks/framework.OdeEVNy0.js";const E=JSON.parse('{"title":"Deposit float","description":"","frontmatter":{},"headers":[],"relativePath":"guide/fractional/deposit.md","filePath":"guide/fractional/deposit.md"}'),t={name:"guide/fractional/deposit.md"},l=e(`

Deposit float

A deposit is a sum of money which is part of the full price of something, and which you pay when you agree to buy it.

In this case, the Deposit is the replenishment of the wallet.

User Model

It is necessary to expand the model that will have the wallet. This is done in two stages:

  • Add Wallet interface;
  • Add the HasWalletFloat trait;

Let's get started.

php
use Bavix\\Wallet\\Traits\\HasWalletFloat;
-use Bavix\\Wallet\\Interfaces\\Wallet;
-
-class User extends Model implements Wallet
-{
-    use HasWalletFloat;
-}

The model is prepared to work with a wallet.

Make a Deposit

Find user:

php
$user = User::first();

As the user uses HasWalletFloat, he will have balance property. Check the user's balance.

php
$user->balance; // 0
-$user->balanceInt; // 0
-$user->balanceFloatNum; // 0

The balance is zero, which is what we expected.

php
$user->depositFloat(10.1); 
-$user->balance; // 1010
-$user->balanceInt; // 1010
-$user->balanceFloatNum; // 10.1

Wow!

`,17),n=[l];function h(p,k,d,r,o,c){return a(),i("div",null,n)}const y=s(t,[["render",h]]);export{E as __pageData,y as default}; diff --git a/docs/.vitepress/dist/assets/guide_fractional_deposit.md.BWPIoLWk.lean.js b/docs/.vitepress/dist/assets/guide_fractional_deposit.md.BWPIoLWk.lean.js deleted file mode 100644 index 487007d72..000000000 --- a/docs/.vitepress/dist/assets/guide_fractional_deposit.md.BWPIoLWk.lean.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as s,c as i,o as a,a3 as e}from"./chunks/framework.OdeEVNy0.js";const E=JSON.parse('{"title":"Deposit float","description":"","frontmatter":{},"headers":[],"relativePath":"guide/fractional/deposit.md","filePath":"guide/fractional/deposit.md"}'),t={name:"guide/fractional/deposit.md"},l=e("",17),n=[l];function h(p,k,d,r,o,c){return a(),i("div",null,n)}const y=s(t,[["render",h]]);export{E as __pageData,y as default}; diff --git a/docs/.vitepress/dist/assets/guide_fractional_transfer.md.B0rpt3xh.js b/docs/.vitepress/dist/assets/guide_fractional_transfer.md.B0rpt3xh.js deleted file mode 100644 index 47b78e344..000000000 --- a/docs/.vitepress/dist/assets/guide_fractional_transfer.md.B0rpt3xh.js +++ /dev/null @@ -1,26 +0,0 @@ -import{_ as s,c as i,o as a,a3 as n}from"./chunks/framework.OdeEVNy0.js";const o=JSON.parse('{"title":"Transfer","description":"","frontmatter":{},"headers":[],"relativePath":"guide/fractional/transfer.md","filePath":"guide/fractional/transfer.md"}'),t={name:"guide/fractional/transfer.md"},h=n(`

Transfer

Transfer in our system are two well-known Deposit and Withdraw operations that are performed in one transaction.

The transfer takes place between wallets.

User Model

Example contract

php
$transfer = $user1->transferFloat(
-    $user2,
-    5.11,
-    new Extra(
-        deposit: [
-            'type' => 'extra-deposit',
-        ],
-        withdraw: new Option(
-            [
-                'type' => 'extra-withdraw',
-            ],
-            false // confirmed
-        ),
-        extra: [
-            'msg' => 'hello world',
-        ],
-    )
-);

Make a Transfer

Find user:

php
$first = User::first(); 
-$last = User::orderBy('id', 'desc')->first(); // last user
-$first->getKey() !== $last->getKey(); // true

As the user uses HasWalletFloat, he will have balance property. Check the user's balance.

php
$fist->balanceFloatNum; // 100.00
-$last->balanceFloatNum; // 0

The transfer will be from the first user to the second.

php
$first->transferFloat($last, 5); 
-$first->balanceFloatNum; // 95
-$last->balanceFloatNum; // 5

It's simple!

Force Transfer

Check the user's balance.

php
$first->balanceFloatNum; // 100
-$last->balanceFloatNum; // 0

The transfer will be from the first user to the second.

php
$first->forceTransferFloat($last, 500); 
-$first->balanceFloatNum; // -400
-$last->balanceFloatNum; // 500

It's simple!

`,20),l=[h];function e(p,k,r,d,E,g){return a(),i("div",null,l)}const y=s(t,[["render",e]]);export{o as __pageData,y as default}; diff --git a/docs/.vitepress/dist/assets/guide_fractional_transfer.md.B0rpt3xh.lean.js b/docs/.vitepress/dist/assets/guide_fractional_transfer.md.B0rpt3xh.lean.js deleted file mode 100644 index e24ab68b1..000000000 --- a/docs/.vitepress/dist/assets/guide_fractional_transfer.md.B0rpt3xh.lean.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as s,c as i,o as a,a3 as n}from"./chunks/framework.OdeEVNy0.js";const o=JSON.parse('{"title":"Transfer","description":"","frontmatter":{},"headers":[],"relativePath":"guide/fractional/transfer.md","filePath":"guide/fractional/transfer.md"}'),t={name:"guide/fractional/transfer.md"},h=n("",20),l=[h];function e(p,k,r,d,E,g){return a(),i("div",null,l)}const y=s(t,[["render",e]]);export{o as __pageData,y as default}; diff --git a/docs/.vitepress/dist/assets/guide_fractional_withdraw.md.B7oZ_OTi.js b/docs/.vitepress/dist/assets/guide_fractional_withdraw.md.B7oZ_OTi.js deleted file mode 100644 index b90b26a1e..000000000 --- a/docs/.vitepress/dist/assets/guide_fractional_withdraw.md.B7oZ_OTi.js +++ /dev/null @@ -1,8 +0,0 @@ -import{_ as s,c as a,o as i,a3 as e}from"./chunks/framework.OdeEVNy0.js";const g=JSON.parse('{"title":"Withdraw","description":"","frontmatter":{},"headers":[],"relativePath":"guide/fractional/withdraw.md","filePath":"guide/fractional/withdraw.md"}'),t={name:"guide/fractional/withdraw.md"},h=e(`

Withdraw

When there is enough money in the account, you can transfer/withdraw it or buy something in the system.

Since the currency is virtual, you can buy any services on your website. For example, priority in search results.

User Model

Make a Withdraw

Find user:

php
$user = User::first();

As the user uses HasWalletFloat, he will have balance property. Check the user's balance.

php
$user->balance; // 10000
-$user->balanceInt; // 10000
-$user->balanceFloatNum; // 100.00

The balance is not empty, so you can withdraw funds.

php
$user->withdrawFloat(10); 
-$user->balance; // 9000
-$user->balanceInt; // 9000
-$user->balanceFloatNum; // 90.00

It's simple!

Force Withdraw

Forced withdrawal is necessary for those cases when the user has no funds. For example, a fine for spam.

php
$user->balanceFloatNum; // 90.00
-$user->forceWithdrawFloat(101);
-$user->balanceFloatNum; // -11.00

And what will happen if the money is not enough?

There can be two situations:

  • The user's balance is zero, then we get an error Bavix\\Wallet\\Exceptions\\BalanceIsEmpty
  • If the balance is greater than zero, but it is not enough Bavix\\Wallet\\Exceptions\\InsufficientFunds
`,18),n=[h];function l(p,r,k,d,o,c){return i(),a("div",null,n)}const u=s(t,[["render",l]]);export{g as __pageData,u as default}; diff --git a/docs/.vitepress/dist/assets/guide_fractional_withdraw.md.B7oZ_OTi.lean.js b/docs/.vitepress/dist/assets/guide_fractional_withdraw.md.B7oZ_OTi.lean.js deleted file mode 100644 index cbd789c6c..000000000 --- a/docs/.vitepress/dist/assets/guide_fractional_withdraw.md.B7oZ_OTi.lean.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as s,c as a,o as i,a3 as e}from"./chunks/framework.OdeEVNy0.js";const g=JSON.parse('{"title":"Withdraw","description":"","frontmatter":{},"headers":[],"relativePath":"guide/fractional/withdraw.md","filePath":"guide/fractional/withdraw.md"}'),t={name:"guide/fractional/withdraw.md"},h=e("",18),n=[h];function l(p,r,k,d,o,c){return i(),a("div",null,n)}const u=s(t,[["render",l]]);export{g as __pageData,u as default}; diff --git a/docs/.vitepress/dist/assets/guide_helpers_formatter.md.D75UEgM0.js b/docs/.vitepress/dist/assets/guide_helpers_formatter.md.D75UEgM0.js deleted file mode 100644 index e16927607..000000000 --- a/docs/.vitepress/dist/assets/guide_helpers_formatter.md.D75UEgM0.js +++ /dev/null @@ -1,3 +0,0 @@ -import{_ as s,c as i,o as a,a3 as t}from"./chunks/framework.OdeEVNy0.js";const c=JSON.parse('{"title":"Formatter","description":"","frontmatter":{},"headers":[],"relativePath":"guide/helpers/formatter.md","filePath":"guide/helpers/formatter.md"}'),h={name:"guide/helpers/formatter.md"},e=t(`

Formatter

Sometimes you need to convert the balance to some format. A small and simple helper has appeared that will simplify the process a little.

To fractional numbers

php
app(FormatterServiceInterface::class)->floatValue('12345', 2); // 123.45
-app(FormatterServiceInterface::class)->floatValue('12345', 3); // 12.345

To whole numbers

php
app(FormatterServiceInterface::class)->intValue('12.345', 3); // 12345
-app(FormatterServiceInterface::class)->intValue('123.45', 2); // 12345

It's simple!

`,8),l=[e];function n(p,k,r,d,o,E){return a(),i("div",null,l)}const F=s(h,[["render",n]]);export{c as __pageData,F as default}; diff --git a/docs/.vitepress/dist/assets/guide_helpers_formatter.md.D75UEgM0.lean.js b/docs/.vitepress/dist/assets/guide_helpers_formatter.md.D75UEgM0.lean.js deleted file mode 100644 index 687880571..000000000 --- a/docs/.vitepress/dist/assets/guide_helpers_formatter.md.D75UEgM0.lean.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as s,c as i,o as a,a3 as t}from"./chunks/framework.OdeEVNy0.js";const c=JSON.parse('{"title":"Formatter","description":"","frontmatter":{},"headers":[],"relativePath":"guide/helpers/formatter.md","filePath":"guide/helpers/formatter.md"}'),h={name:"guide/helpers/formatter.md"},e=t("",8),l=[e];function n(p,k,r,d,o,E){return a(),i("div",null,l)}const F=s(h,[["render",n]]);export{c as __pageData,F as default}; diff --git a/docs/.vitepress/dist/assets/guide_high-performance_batch-transactions.md.CmHigNAE.js b/docs/.vitepress/dist/assets/guide_high-performance_batch-transactions.md.CmHigNAE.js deleted file mode 100644 index ea1516bea..000000000 --- a/docs/.vitepress/dist/assets/guide_high-performance_batch-transactions.md.CmHigNAE.js +++ /dev/null @@ -1,59 +0,0 @@ -import{_ as s,c as i,o as a,a3 as n}from"./chunks/framework.OdeEVNy0.js";const c=JSON.parse('{"title":"Batch Transactions","description":"","frontmatter":{},"headers":[],"relativePath":"guide/high-performance/batch-transactions.md","filePath":"guide/high-performance/batch-transactions.md"}'),t={name:"guide/high-performance/batch-transactions.md"},h=n(`

Batch Transactions

Sometimes situations arise when there is a need to make multiple changes to wallets. For example, we need to change the balance of many wallets at once. For example, the system administrator accrues a bonus for participating in some promotion. Previously, the code would look like this:

php
use Bavix\\Wallet\\Services\\AtomicServiceInterface;
-
-app(AtomicServiceInterface::class)->blocks($wallets, function () use ($amount, $wallets) {
-    foreach ($wallets as $wallet) {
-        $wallet->deposit($amount);
-    }
-});

The code is working and everything works correctly. But what happens under the hood? Nothing good. For 5 users it will look like this. exm1

Since the operations inside an atomic operation can depend on each other, we will not be able to combine insert queries into a batch. But there is an opportunity to reduce the number of update queries and improve application performance out of the blue.

After small things, the situation will look like this.

exm2

As you can see, things are getting better. Still, I would like to be able to tell the package that the changes are independent of each other. In this case, the package will be able to collapse all insert queries into a single query and insert in a batch.

Here new api handles can help us:

php
// For multiple transactions.
-interface TransactionQueryHandlerInterface
-{
-    /**
-     * @param non-empty-array<TransactionQuery> $objects
-     * @return non-empty-array<string, Transaction>
-     * @throws ExceptionInterface
-     */
-    public function apply(array $objects): array;
-}
-
-// For multiple transfers of funds.
-interface TransferQueryHandlerInterface
-{
-    /**
-     * @param non-empty-array<TransferQuery> $objects
-     * @return non-empty-array<string, Transfer>
-     * @throws ExceptionInterface
-     */
-    public function apply(array $objects): array;
-}

Let's use the API handle.

php
use Bavix\\Wallet\\External\\Api\\TransactionQuery;
-use Bavix\\Wallet\\External\\Api\\TransactionQueryHandlerInterface;
-
-app(TransactionQueryHandlerInterface::class)->apply(
-    array_map(
-        static fn (Wallet $wallet) => TransactionQuery::createDeposit($wallet, $amount, null),
-        $wallets
-     )
-);

And now look at the result and it is impressive. exm3

But it is worth noting that these are highly efficient api handles and they do not check the balance of the wallet before making changes. If you need it, then you have to do something like this.

php
use Bavix\\Wallet\\External\\Api\\TransactionQuery;
-use Bavix\\Wallet\\External\\Api\\TransactionQueryHandlerInterface;
-use Bavix\\Wallet\\Services\\AtomicServiceInterface;
-use Bavix\\Wallet\\Services\\ConsistencyServiceInterface;
-
-app(AtomicServiceInterface::class)->blocks($wallets, function () use ($wallets, $amount) {
-    foreach ($wallets as $wallet) {
-        app(ConsistencyServiceInterface::class)->checkPotential($wallet, $amount);
-    }
-
-    app(TransactionQueryHandlerInterface::class)->apply(
-        array_map(
-            static fn (Wallet $wallet) => TransactionQuery::createWithdraw($wallet, $amount, null),
-            $wallets
-        )
-    );
-});

In version 10.x, it became possible to create transactions with a given uuid (generate on the client side). The main thing is to keep uniqueness.

php
use Bavix\\Wallet\\External\\Api\\TransactionQuery;
-
-// int version
-TransactionQuery::createDeposit($wallet, $amount, null, uuid: '5f7820d1-1e82-4d03-9414-05d0c44da9a1');
-TransactionQuery::createWithdraw($wallet, $amount, null, uuid: '6e87dbf2-7be7-48c2-b688-f46ba4e25786');
-
-// float version
-TransactionFloatQuery::createDeposit($wallet, $amountFloat, null, uuid: '5f7820d1-1e82-4d03-9414-05d0c44da9a1');
-TransactionFloatQuery::createWithdraw($wallet, $amountFloat, null, uuid: '6e87dbf2-7be7-48c2-b688-f46ba4e25786');

It's simple!

`,20),l=[h];function p(e,k,r,d,E,g){return a(),i("div",null,l)}const o=s(t,[["render",p]]);export{c as __pageData,o as default}; diff --git a/docs/.vitepress/dist/assets/guide_high-performance_batch-transactions.md.CmHigNAE.lean.js b/docs/.vitepress/dist/assets/guide_high-performance_batch-transactions.md.CmHigNAE.lean.js deleted file mode 100644 index eba2bc7dc..000000000 --- a/docs/.vitepress/dist/assets/guide_high-performance_batch-transactions.md.CmHigNAE.lean.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as s,c as i,o as a,a3 as n}from"./chunks/framework.OdeEVNy0.js";const c=JSON.parse('{"title":"Batch Transactions","description":"","frontmatter":{},"headers":[],"relativePath":"guide/high-performance/batch-transactions.md","filePath":"guide/high-performance/batch-transactions.md"}'),t={name:"guide/high-performance/batch-transactions.md"},h=n("",20),l=[h];function p(e,k,r,d,E,g){return a(),i("div",null,l)}const o=s(t,[["render",p]]);export{c as __pageData,o as default}; diff --git a/docs/.vitepress/dist/assets/guide_high-performance_batch-transfers.md.DnEd7m-y.js b/docs/.vitepress/dist/assets/guide_high-performance_batch-transfers.md.DnEd7m-y.js deleted file mode 100644 index a3847035b..000000000 --- a/docs/.vitepress/dist/assets/guide_high-performance_batch-transfers.md.DnEd7m-y.js +++ /dev/null @@ -1,43 +0,0 @@ -import{_ as s,c as i,o as a,a3 as n}from"./chunks/framework.OdeEVNy0.js";const c=JSON.parse('{"title":"Batch Transfers","description":"","frontmatter":{},"headers":[],"relativePath":"guide/high-performance/batch-transfers.md","filePath":"guide/high-performance/batch-transfers.md"}'),t={name:"guide/high-performance/batch-transfers.md"},h=n(`

Batch Transfers

If you need multiple transfers between wallets, you can use a high-performance handle. It is worth remembering that the pen does not check the balance of the wallet before transferring, you need to take care of this yourself.

Previously, you would have written the following code:

php
use Bavix\\Wallet\\Services\\AtomicServiceInterface;
-
-app(AtomicServiceInterface::class)->block($from, function () use ($amount, $from, $wallets) {
-    foreach ($wallets as $wallet) {
-        $from->forceTransfer($wallet, $amount);
-    }
-});

This would lead to the generation of a huge number of requests to the database and cache, because. the package does not know that the response from forceTransfer is not used by you at all inside AtomicService. Now, you can report it:

php
use Bavix\\Wallet\\External\\Api\\TransferQuery;
-use Bavix\\Wallet\\External\\Api\\TransferQueryHandlerInterface;
-
-app(TransferQueryHandlerInterface::class)->apply(
-    array_map(
-        static fn (Wallet $wallet) => new TransferQuery($from, $wallet, $amount, null),
-        $wallets
-     )
-);

The package will optimize queries and execute them in a single transaction. I strongly advise against creating large packs, because. this can lead to a large increase in request queuing.


In version 10.x, it became possible to create transactions&transfers with a given uuid (generate on the client side). The main thing is to keep uniqueness.

php
use Bavix\\Wallet\\External\\Api\\TransferQuery;
-
-// int version
-new TransferQuery($from, $wallet, $amount, new \\Bavix\\Wallet\\External\\Dto\\Extra(
-    deposit: new \\Bavix\\Wallet\\External\\Dto\\Option(
-        null,
-        uuid: '71cecafe-da10-464f-9e00-c80437bb4c3e', // deposit transaction
-    ),
-    withdraw: new \\Bavix\\Wallet\\External\\Dto\\Option(
-        null,
-        uuid: '3805730b-39a1-419d-8715-0b7cc3f1ffc2', // withdraw transaction
-    ),
-    uuid: 'f8becf81-3993-43d7-81f1-7a725c72e976', // transfer uuid
-    extra: ['info' => 'fast deposit'], // metadata in the table transfers
-));
-
-// float version
-new TransferFloatQuery($from, $wallet, $amountFlaot, new \\Bavix\\Wallet\\External\\Dto\\Extra(
-    deposit: new \\Bavix\\Wallet\\External\\Dto\\Option(
-        null,
-        uuid: '71cecafe-da10-464f-9e00-c80437bb4c3e', // deposit transaction
-    ),
-    withdraw: new \\Bavix\\Wallet\\External\\Dto\\Option(
-        null,
-        uuid: '3805730b-39a1-419d-8715-0b7cc3f1ffc2', // withdraw transaction
-    ),
-    uuid: 'f8becf81-3993-43d7-81f1-7a725c72e976', // transfer uuid
-    extra: ['info' => 'fast deposit'], // metadata in the table transfers
-));

It's simple!

`,12),l=[h];function e(p,k,r,E,d,g){return a(),i("div",null,l)}const o=s(t,[["render",e]]);export{c as __pageData,o as default}; diff --git a/docs/.vitepress/dist/assets/guide_high-performance_batch-transfers.md.DnEd7m-y.lean.js b/docs/.vitepress/dist/assets/guide_high-performance_batch-transfers.md.DnEd7m-y.lean.js deleted file mode 100644 index 67e1f8545..000000000 --- a/docs/.vitepress/dist/assets/guide_high-performance_batch-transfers.md.DnEd7m-y.lean.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as s,c as i,o as a,a3 as n}from"./chunks/framework.OdeEVNy0.js";const c=JSON.parse('{"title":"Batch Transfers","description":"","frontmatter":{},"headers":[],"relativePath":"guide/high-performance/batch-transfers.md","filePath":"guide/high-performance/batch-transfers.md"}'),t={name:"guide/high-performance/batch-transfers.md"},h=n("",12),l=[h];function e(p,k,r,E,d,g){return a(),i("div",null,l)}const o=s(t,[["render",e]]);export{c as __pageData,o as default}; diff --git a/docs/.vitepress/dist/assets/guide_introduction_basic-usage.md.8BCaXADC.js b/docs/.vitepress/dist/assets/guide_introduction_basic-usage.md.8BCaXADC.js deleted file mode 100644 index 506395100..000000000 --- a/docs/.vitepress/dist/assets/guide_introduction_basic-usage.md.8BCaXADC.js +++ /dev/null @@ -1,118 +0,0 @@ -import{_ as s,c as i,o as a,a3 as n}from"./chunks/framework.OdeEVNy0.js";const c=JSON.parse('{"title":"Basic Usage","description":"","frontmatter":{},"headers":[],"relativePath":"guide/introduction/basic-usage.md","filePath":"guide/introduction/basic-usage.md"}'),l={name:"guide/introduction/basic-usage.md"},t=n(`

Basic Usage

Simple Wallet

It is necessary to expand the model that will have the wallet. This is done in two stages:

  • Add Wallet interface;
  • Add the HasWallet trait;

Let's get started.

php
use Bavix\\Wallet\\Traits\\HasWallet;
-use Bavix\\Wallet\\Interfaces\\Wallet;
-
-class User extends Model implements Wallet
-{
-    use HasWallet;
-}

The model is prepared to work with a wallet.

Simple wallet transactions

The package is built on simple transactions:

  • deposit - replenishment of the wallet;
  • withdraw - withdrawal from the wallet;

Consider an example:

php
$user = User::first();
-$user->balance; // 0
-
-$user->deposit(10);
-$user->balance; // 10
-
-$user->withdraw(1);
-$user->balance; // 9
-
-$user->forceWithdraw(200, ['description' => 'payment of taxes']);
-$user->balance; // -191

Purchases

Add the CanPay trait and Customer interface to your User model.

The trait CanPay already inherits HasWallet, reuse will cause an error.

php
use Bavix\\Wallet\\Traits\\CanPay;
-use Bavix\\Wallet\\Interfaces\\Customer;
-
-class User extends Model implements Customer
-{
-    use CanPay;
-}

Add the HasWallet trait and interface to Item model.

Starting from version 9.x there are two product interfaces:

  • For an unlimited number of products (ProductInterface);
  • For a limited number of products (ProductLimitedInterface);

An example with an unlimited number of products:

php
use Bavix\\Wallet\\Traits\\HasWallet;
-use Bavix\\Wallet\\Interfaces\\Customer;
-use Bavix\\Wallet\\Interfaces\\ProductInterface;
-
-class Item extends Model implements ProductInterface
-{
-    use HasWallet;
-
-    public function getAmountProduct(Customer $customer): int|string
-    {
-        return 100;
-    }
-
-    public function getMetaProduct(): ?array
-    {
-        return [
-            'title' => $this->title, 
-            'description' => 'Purchase of Product #' . $this->id,
-        ];
-    }
-}

Example with a limited number of products:

php
use Bavix\\Wallet\\Traits\\HasWallet;
-use Bavix\\Wallet\\Interfaces\\Customer;
-use Bavix\\Wallet\\Interfaces\\ProductLimitedInterface;
-
-class Item extends Model implements ProductLimitedInterface
-{
-    use HasWallet;
-
-    public function canBuy(Customer $customer, int $quantity = 1, bool $force = false): bool
-    {
-        /**
-         * This is where you implement the constraint logic. 
-         * 
-         * If the service can be purchased once, then
-         *  return !$customer->paid($this);
-         */
-        return true; 
-    }
-    
-    public function getAmountProduct(Customer $customer): int|string
-    {
-        return 100;
-    }
-
-    public function getMetaProduct(): ?array
-    {
-        return [
-            'title' => $this->title, 
-            'description' => 'Purchase of Product #' . $this->id,
-        ];
-    }
-}

I do not recommend using the limited interface when working with a shopping cart. If you are working with a shopping cart, then you should override the PurchaseServiceInterface interface. With it, you can check the availability of all products with one request, there will be no N-queries in the database.

Proceed to purchase.

php
$user = User::first();
-$user->balance; // 100
-
-$item = Item::first();
-$user->pay($item); // If you do not have enough money, throw an exception
-var_dump($user->balance); // 0
-
-if ($user->safePay($item)) {
-  // try to buy again )
-}
-
-var_dump((bool)$user->paid($item)); // bool(true)
-
-var_dump($user->refund($item)); // bool(true)
-var_dump((bool)$user->paid($item)); // bool(false)

Eager Loading

When accessing Eloquent relationships as properties, the relationship data is "lazy loaded". This means the relationship data is not actually loaded until you first access the property. However, Eloquent can "eager load" relationships at the time you query the parent model. Eager loading alleviates the N + 1 query problem. To illustrate the N + 1 query problem, consider a Wallet model that is related to User:

Add the HasWallet trait and Wallet interface to model.

php
use Bavix\\Wallet\\Traits\\HasWallet;
-use Bavix\\Wallet\\Interfaces\\Wallet;
-
-class User extends Model implements Wallet
-{
-    use HasWallet; // public function wallet(): MorphOne...
-}

Now, let's retrieve all wallets and their users:

php
$users = User::all();
-
-foreach ($users as $user) {
-    // echo $user->wallet->balance;
-    echo $user->balance; // Abbreviated notation
-}

This loop will execute 1 query to retrieve all of the users on the table, then another query for each user to retrieve the wallet. So, if we have 25 users, the code above would run 26 queries: 1 for the original user, and 25 additional queries to retrieve the wallet of each user.

Thankfully, we can use eager loading to reduce this operation to just 2 queries. When querying, you may specify which relationships should be eager loaded using the with method:

php
$users = User::with('wallet')->all();
-
-foreach ($users as $user) {
-    // echo $user->wallet->balance;
-    echo $user->balance; // Abbreviated notation
-}

For this operation, only two queries will be executed.

How to work with fractional numbers?

Add the HasWalletFloat trait and WalletFloat interface to model.

php
use Bavix\\Wallet\\Traits\\HasWalletFloat;
-use Bavix\\Wallet\\Interfaces\\WalletFloat;
-use Bavix\\Wallet\\Interfaces\\Wallet;
-
-class User extends Model implements Wallet, WalletFloat
-{
-    use HasWalletFloat;
-}

Now we make transactions.

php
$user = User::first();
-$user->balance; // 100
-$user->balanceFloat; // 1.00
-
-$user->depositFloat(1.37);
-$user->balance; // 237
-$user->balanceFloat; // 2.37

You can get the float amount by accessing the amountFloat attribute on the transaction model

php
$transaction->amount; // 137
-$transaction->amountFloat; // 1.37
`,43),h=[t];function e(p,k,r,d,E,g){return a(),i("div",null,h)}const o=s(l,[["render",e]]);export{c as __pageData,o as default}; diff --git a/docs/.vitepress/dist/assets/guide_introduction_basic-usage.md.8BCaXADC.lean.js b/docs/.vitepress/dist/assets/guide_introduction_basic-usage.md.8BCaXADC.lean.js deleted file mode 100644 index 4a0ab70c9..000000000 --- a/docs/.vitepress/dist/assets/guide_introduction_basic-usage.md.8BCaXADC.lean.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as s,c as i,o as a,a3 as n}from"./chunks/framework.OdeEVNy0.js";const c=JSON.parse('{"title":"Basic Usage","description":"","frontmatter":{},"headers":[],"relativePath":"guide/introduction/basic-usage.md","filePath":"guide/introduction/basic-usage.md"}'),l={name:"guide/introduction/basic-usage.md"},t=n("",43),h=[t];function e(p,k,r,d,E,g){return a(),i("div",null,h)}const o=s(l,[["render",e]]);export{c as __pageData,o as default}; diff --git a/docs/.vitepress/dist/assets/guide_introduction_configuration.md.BJtAQsgb.js b/docs/.vitepress/dist/assets/guide_introduction_configuration.md.BJtAQsgb.js deleted file mode 100644 index 39bba5322..000000000 --- a/docs/.vitepress/dist/assets/guide_introduction_configuration.md.BJtAQsgb.js +++ /dev/null @@ -1,27 +0,0 @@ -import{_ as s,c as a,o as i,a3 as t}from"./chunks/framework.OdeEVNy0.js";const E=JSON.parse('{"title":"Configuration","description":"","frontmatter":{},"headers":[],"relativePath":"guide/introduction/configuration.md","filePath":"guide/introduction/configuration.md"}'),e={name:"guide/introduction/configuration.md"},l=t(`

Configuration

Though this package is crafted to suit most of your needs by default, you can edit the configuration file to suit certain demands.

Environment

NameDescriptionDefault
WALLET_MATH_SCALESelect mathematical precision64
WALLET_CACHE_DRIVERCache for wallet balancearray
WALLET_CACHE_TTLCache TTL for wallet balance24h
WALLET_LOCK_DRIVERLock for walletsarray
WALLET_LOCK_TTLLock TTL for wallets1s
WALLET_TRANSACTION_TABLE_NAMETransaction table nametransactions
WALLET_TRANSFER_TABLE_NAMETransfer table nametransfers
WALLET_WALLET_TABLE_NAMEWallet table namewallets
WALLET_DEFAULT_WALLET_NAMEDefault wallet nameDefault Wallet
WALLET_DEFAULT_WALLET_SLUGDefault wallet slugdefault

Configure default wallet

Customize name,slug and meta of default wallet.

config/wallet.php:

php
'default' => [
-    'name' => 'Ethereum',
-    'slug' => 'ETH',
-    'meta' => [],
-],

Extend base Wallet model

You can extend base Wallet model by creating a new class that extends Bavix\\Wallet\\Models\\Wallet and registering the new class in config/wallet.php. Example MyWallet.php

App/Models/MyWallet.php:

php
use Bavix\\Wallet\\Models\\Wallet as WalletBase;
-
-class MyWallet extends WalletBase {
-    public function helloWorld(): string { return "hello world"; }
-}

Register base Wallet model

config/wallet.php:

php
'wallet' => [
-    'table' => 'wallets',
-    'model' => MyWallet::class,
-    'creating' => [],
-    'default' => [
-        'name' => 'Default Wallet',
-        'slug' => 'default',
-        'meta' => [],
-    ],
-],
php
echo $user->wallet->helloWorld();

This same method above, can be used to extend the base Transfer and Transaction models and registering the extended models in the configuration file.

Changing wallet decimal places

You can change the default wallet decimal places, in wallet config file. This can be useful when working with fractional numbers.

config/wallet.php:

php
/**
- * Base model 'wallet'.
- */
-'wallet' => [
-    ....
-    'creating' => [
-        'decimal_places' => 18,
-    ],
-   ....
-],
`,21),n=[l];function h(p,d,k,r,o,c){return i(),a("div",null,n)}const y=s(e,[["render",h]]);export{E as __pageData,y as default}; diff --git a/docs/.vitepress/dist/assets/guide_introduction_configuration.md.BJtAQsgb.lean.js b/docs/.vitepress/dist/assets/guide_introduction_configuration.md.BJtAQsgb.lean.js deleted file mode 100644 index 05670e138..000000000 --- a/docs/.vitepress/dist/assets/guide_introduction_configuration.md.BJtAQsgb.lean.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as s,c as a,o as i,a3 as t}from"./chunks/framework.OdeEVNy0.js";const E=JSON.parse('{"title":"Configuration","description":"","frontmatter":{},"headers":[],"relativePath":"guide/introduction/configuration.md","filePath":"guide/introduction/configuration.md"}'),e={name:"guide/introduction/configuration.md"},l=t("",21),n=[l];function h(p,d,k,r,o,c){return i(),a("div",null,n)}const y=s(e,[["render",h]]);export{E as __pageData,y as default}; diff --git a/docs/.vitepress/dist/assets/guide_introduction_index.md.OLZq5yD4.js b/docs/.vitepress/dist/assets/guide_introduction_index.md.OLZq5yD4.js deleted file mode 100644 index 90bd69024..000000000 --- a/docs/.vitepress/dist/assets/guide_introduction_index.md.OLZq5yD4.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as e,c as t,o as a,a3 as o}from"./chunks/framework.OdeEVNy0.js";const f=JSON.parse('{"title":"Introduction","description":"","frontmatter":{},"headers":[],"relativePath":"guide/introduction/index.md","filePath":"guide/introduction/index.md"}'),r={name:"guide/introduction/index.md"},i=o('

Introduction


Laravel Wallet

laravel-wallet - Easy work with virtual wallet.

Support

Please ask questions on the Github issues page.

',6),n=[i];function s(c,d,l,u,p,_){return a(),t("div",null,n)}const m=e(r,[["render",s]]);export{f as __pageData,m as default}; diff --git a/docs/.vitepress/dist/assets/guide_introduction_index.md.OLZq5yD4.lean.js b/docs/.vitepress/dist/assets/guide_introduction_index.md.OLZq5yD4.lean.js deleted file mode 100644 index 2fd7977e0..000000000 --- a/docs/.vitepress/dist/assets/guide_introduction_index.md.OLZq5yD4.lean.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as e,c as t,o as a,a3 as o}from"./chunks/framework.OdeEVNy0.js";const f=JSON.parse('{"title":"Introduction","description":"","frontmatter":{},"headers":[],"relativePath":"guide/introduction/index.md","filePath":"guide/introduction/index.md"}'),r={name:"guide/introduction/index.md"},i=o("",6),n=[i];function s(c,d,l,u,p,_){return a(),t("div",null,n)}const m=e(r,[["render",s]]);export{f as __pageData,m as default}; diff --git a/docs/.vitepress/dist/assets/guide_introduction_installation.md.BJr2yk7p.js b/docs/.vitepress/dist/assets/guide_introduction_installation.md.BJr2yk7p.js deleted file mode 100644 index 1888aaa5b..000000000 --- a/docs/.vitepress/dist/assets/guide_introduction_installation.md.BJr2yk7p.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as a,c as i,o as t,a3 as s}from"./chunks/framework.OdeEVNy0.js";const k=JSON.parse('{"title":"Installation","description":"","frontmatter":{},"headers":[],"relativePath":"guide/introduction/installation.md","filePath":"guide/introduction/installation.md"}'),e={name:"guide/introduction/installation.md"},n=s('

Installation

Composer

The recommended installation method is using Composer.

In your project root just run:

bash
composer req bavix/laravel-wallet

Ensure that you’ve set up your project to autoload Composer-installed packages.

Customize

Sometimes it is useful...

Run Migrations

Publish the migrations with this artisan command:

bash
php artisan vendor:publish --tag=laravel-wallet-migrations

Configuration

You can publish the config file with this artisan command:

bash
php artisan vendor:publish --tag=laravel-wallet-config

After installing the package, you can proceed to use it or configure it to suit your needs.

',15),o=[n];function l(r,h,p,d,c,u){return t(),i("div",null,o)}const m=a(e,[["render",l]]);export{k as __pageData,m as default}; diff --git a/docs/.vitepress/dist/assets/guide_introduction_installation.md.BJr2yk7p.lean.js b/docs/.vitepress/dist/assets/guide_introduction_installation.md.BJr2yk7p.lean.js deleted file mode 100644 index 15bdf996c..000000000 --- a/docs/.vitepress/dist/assets/guide_introduction_installation.md.BJr2yk7p.lean.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as a,c as i,o as t,a3 as s}from"./chunks/framework.OdeEVNy0.js";const k=JSON.parse('{"title":"Installation","description":"","frontmatter":{},"headers":[],"relativePath":"guide/introduction/installation.md","filePath":"guide/introduction/installation.md"}'),e={name:"guide/introduction/installation.md"},n=s("",15),o=[n];function l(r,h,p,d,c,u){return t(),i("div",null,o)}const m=a(e,[["render",l]]);export{k as __pageData,m as default}; diff --git a/docs/.vitepress/dist/assets/guide_introduction_upgrade.md.CWeACiVZ.js b/docs/.vitepress/dist/assets/guide_introduction_upgrade.md.CWeACiVZ.js deleted file mode 100644 index 3ad9cda3a..000000000 --- a/docs/.vitepress/dist/assets/guide_introduction_upgrade.md.CWeACiVZ.js +++ /dev/null @@ -1,58 +0,0 @@ -import{_ as s,c as i,o as a,a3 as e}from"./chunks/framework.OdeEVNy0.js";const E=JSON.parse('{"title":"Upgrade Guide","description":"","frontmatter":{},"headers":[],"relativePath":"guide/introduction/upgrade.md","filePath":"guide/introduction/upgrade.md"}'),t={name:"guide/introduction/upgrade.md"},n=e(`

Upgrade Guide

1.x.x → 2.x.x

Replace ::with('balance') to ::with('wallet')

2.1.x → 2.2.x

Replace CanBePaid to CanPay.

Replace CanBePaidFloat to CanPayFloat.

2.2.x → 2.4.x

Replace calculateBalance to refreshBalance

2.4.x → 3.0.x

Replace path bavix.wallet::transaction to Bavix\\Wallet\\Models\\Transaction::class

Replace path bavix.wallet::transfer to Bavix\\Wallet\\Models\\Transfer::class

Replace path bavix.wallet::wallet to Bavix\\Wallet\\Models\\Wallet::class

php
// old
-app('bavix.wallet::transaction'); 
-// new
-app(Bavix\\Wallet\\Models\\Transaction::class);

Add the $quantity parameter to the canBuy method.

php
// old
-public function canBuy(Customer $customer, bool $force = false): bool
-// new
-public function canBuy(Customer $customer, int $quantity = 1, bool $force = false): bool

Add method getUniqueId to Interface Product

php
class Item extends Model implements Product
-{
-    
-    // Your method
-    
-    public function getUniqueId(): string
-    {
-        return (string)$this->getKey();
-    }
-    
-}

3.0.x → 3.1.x

Replace Taxing to Taxable.

3.1.x → 4.0.x

If you are using php 7.1, then version 4.0 is not available to you. You need to update php.

Removed support for older versions of laravel/cashier. We support 7+.

If you use payment for goods

You must add the argument Customer $customer to the getAmountProduct method of your model.

Your code on 3.x:

php
    public function getAmountProduct(): int
-    {
-        return $this->price;
-    }

Your code on 4.x:

php
    public function getAmountProduct(Customer $customer): int
-    {
-        return $this->price;
-    }

4.0.x → 5.0.x

By updating the library from 4.x to 5.x you lose strong typing. This solution was necessary to support APM (Arbitrary Precision Mathematics).

In your goods:

Your code on 4.x:

php
    public function getAmountProduct(Customer $customer): int  { ... }
-
-    public function getFeePercent(): float  { ... }
-
-    public function getMinimalFee(): int { ... }

Your code on 5.x:

php
    public function getAmountProduct(Customer $customer) { ... }
-
-    public function getFeePercent() { ... }
-
-    public function getMinimalFee() { ... }

In the exchange rate processing service:

Your code on 4.x:

php
    protected function rate(Wallet $wallet): float { ... }
-
-    public function convertTo(Wallet $wallet): float { ... }

Your code on 5.x:

php
    protected function rate(Wallet $wallet) { ... }
-
-    public function convertTo(Wallet $wallet) { ... }

5.x.x → 6.0.x

Go to config/wallet.php file (if you have it) and edit it.

Removing unnecessary code.

php
$bcLoaded = extension_loaded('bcmath');	
-$mathClass = Math::class;	
-switch (true) {	
-    case class_exists(BigDecimal::class):	
-        $mathClass = BrickMath::class;	
-        break;	
-    case $bcLoaded:	
-        $mathClass = BCMath::class;	
-        break;	
-}

Replace your math class ($mathClass) with brick/math.

Your code on 5.x:

php
    'mathable' => $mathClass,

Your code on 6.x:

php
    'mathable' => BrickMath::class,

6.x.x → 6.2.4

You need to update to the latest version for all migrations to appear.

6.2.4 → 7.x.x

Update config/wallet.php

The config/wallet.php config has changed a lot, if you have it in your project, then replace it run.

bash
php artisan vendor:publish --tag=laravel-wallet-config --force

Then return your settings. The package configuration has changed globally and there is no point in describing each key 🔑


UUID for wallet

The uuid field has been added to the wallet table, which is now actively used. If you have a highload, then I recommend that you add the field yourself and mark the migration (UpdateWalletsUuidTable) completed. If you have mysql, it is better to do this via pt-online-schema-change.

If you have a small project and a small wallet base, then the migration will be applied automatically.


That's it, you can use all 7.x functions to the fullest. The contract did not change globally, added more stringency and toned down the performance of the package. On a basket of 150 products, the acceleration is a whopping 24x.

All changes can be found in the pull request. The kernel has changed globally, I would not recommend switching to version 7.0.0 at the very beginning, there may be bugs. I advise you should at least 7.0.1.

7.x.x → 8.0.x

Nothing needs to be done.

8.0.x → 8.1.x

Replace getAvailableBalance to getAvailableBalanceAttribute (method) or available_balance (property).


Cart methods now support fluent-dto. It is necessary to replace the old code with a new one, for example:

php
// old
-$cart = app(\\Bavix\\Wallet\\Objects\\Cart::class)
-    ->addItems($products)
-    ->addItem($product)
-    ->setMeta(['hello' => 'world']);
-    
-$cart->addItem($product);
-
-// new. fluent
-$cart = app(\\Bavix\\Wallet\\Objects\\Cart::class)
-    ->withItems($products)
-    ->withItem($product)
-    ->withMeta(['hello' => 'world']);
-
-$cart = $cart->withItem($product);

8.1.x+ → 9.0.x

The logic of storing transfers between accounts has changed. Previously, money could be credited to the user directly, but starting from version nine, all transactions go strictly between wallets. Thanks to this approach, finally, there will be full-fledged work with uuid identifiers in the project.

To migrate to the correct structure, you need to run the command:

artisan bx:transfer:fix

If the command fails, then the command must be restarted. Continue until the command starts executing immediately (no bad entries left).


The product has been divided into two interfaces:

  • ProductLimitedInterface. Needed to create limited goods;
  • ProductInterface. Needed for an infinite number of products;

The old Product interface should be replaced with one of these.

Replace Bavix\\Wallet\\Interfaces\\Product to Bavix\\Wallet\\Interfaces\\ProductLimitedInterface.

9.x.x → 10.0.x

  1. If you have a custom BookkeeperServiceInterface, then you need to update the contract.
  2. If you catch a LockProviderNotFoundException, then you need to remove the check. This exception no longer exists.
  3. If you have specific requests for transfers using the MorphMany relation, then you need to rewrite it to the HasMany relation.

10.x.x → 11.0.x

  1. If you have mariadb, then the minimum supported version is 10.10. More details here: https://github.com/laravel/framework/pull/48455;
  2. Perform new package migrations, support for soft deleted has been added;
  3. If you used delete methods, then they need to be replaced with forceDelete (if soft delete support is not needed);
  4. Obsolete columns from_type, to_type in the transfers table have been physically removed. Make sure you don't use them;
  5. An extra column has been added to the transfers table. Don't forget to apply all new migrations;
  6. The Bavix\\Wallet\\Interfaces\\Wallet contract has been extended with the receivedTransfers method. If you overridden the implementation, then implement the new method;
`,84),h=[n];function l(p,k,d,r,o,c){return a(),i("div",null,h)}const y=s(t,[["render",l]]);export{E as __pageData,y as default}; diff --git a/docs/.vitepress/dist/assets/guide_introduction_upgrade.md.CWeACiVZ.lean.js b/docs/.vitepress/dist/assets/guide_introduction_upgrade.md.CWeACiVZ.lean.js deleted file mode 100644 index 3bc4319b0..000000000 --- a/docs/.vitepress/dist/assets/guide_introduction_upgrade.md.CWeACiVZ.lean.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as s,c as i,o as a,a3 as e}from"./chunks/framework.OdeEVNy0.js";const E=JSON.parse('{"title":"Upgrade Guide","description":"","frontmatter":{},"headers":[],"relativePath":"guide/introduction/upgrade.md","filePath":"guide/introduction/upgrade.md"}'),t={name:"guide/introduction/upgrade.md"},n=e("",84),h=[n];function l(p,k,d,r,o,c){return a(),i("div",null,h)}const y=s(t,[["render",l]]);export{E as __pageData,y as default}; diff --git a/docs/.vitepress/dist/assets/guide_multi_new-wallet.md.DLsWaElB.js b/docs/.vitepress/dist/assets/guide_multi_new-wallet.md.DLsWaElB.js deleted file mode 100644 index 2b771da99..000000000 --- a/docs/.vitepress/dist/assets/guide_multi_new-wallet.md.DLsWaElB.js +++ /dev/null @@ -1,28 +0,0 @@ -import{_ as s,c as i,o as a,a3 as l}from"./chunks/framework.OdeEVNy0.js";const c=JSON.parse('{"title":"New Wallet","description":"","frontmatter":{},"headers":[],"relativePath":"guide/multi/new-wallet.md","filePath":"guide/multi/new-wallet.md"}'),t={name:"guide/multi/new-wallet.md"},e=l(`

New Wallet

You can create an unlimited number of wallets, but the slug for each wallet should be unique.

User Model

Add the HasWallets trait's and Wallet interface to model.

php
use Bavix\\Wallet\\Traits\\HasWallets;
-use Bavix\\Wallet\\Interfaces\\Wallet;
-
-class User extends Model implements Wallet
-{
-    use HasWallets;
-}

Create a wallet

Find user:

php
$user = User::first();

Create a new wallet.

php
$user->hasWallet('my-wallet'); // bool(false)
-$wallet = $user->createWallet([
-    'name' => 'New Wallet',
-    'slug' => 'my-wallet',
-]);
-
-$user->hasWallet('my-wallet'); // bool(true)
-
-$wallet->deposit(100);
-$wallet->balance; // 100
-$wallet->balanceFloatNum; // 1.00

How to get the right wallet?

php
$myWallet = $user->getWallet('my-wallet');
-$myWallet->balance; // 100
-$myWallet->balanceFloatNum; // 1.00

Default Wallet + MultiWallet

Is it possible to use the default wallet and multi-wallets at the same time? Yes.

php
use Bavix\\Wallet\\Traits\\HasWallet;
-use Bavix\\Wallet\\Traits\\HasWallets;
-use Bavix\\Wallet\\Interfaces\\Wallet;
-
-class User extends Model implements Wallet
-{
-    use HasWallet, HasWallets;
-}

How to get the default wallet?

php
$wallet = $user->wallet;
-$wallet->balance; // 10
-$wallet->balanceFloatNum; // 0.10

It's simple!

`,18),n=[e];function h(p,k,d,r,E,g){return a(),i("div",null,n)}const o=s(t,[["render",h]]);export{c as __pageData,o as default}; diff --git a/docs/.vitepress/dist/assets/guide_multi_new-wallet.md.DLsWaElB.lean.js b/docs/.vitepress/dist/assets/guide_multi_new-wallet.md.DLsWaElB.lean.js deleted file mode 100644 index ac80db75f..000000000 --- a/docs/.vitepress/dist/assets/guide_multi_new-wallet.md.DLsWaElB.lean.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as s,c as i,o as a,a3 as l}from"./chunks/framework.OdeEVNy0.js";const c=JSON.parse('{"title":"New Wallet","description":"","frontmatter":{},"headers":[],"relativePath":"guide/multi/new-wallet.md","filePath":"guide/multi/new-wallet.md"}'),t={name:"guide/multi/new-wallet.md"},e=l("",18),n=[e];function h(p,k,d,r,E,g){return a(),i("div",null,n)}const o=s(t,[["render",h]]);export{c as __pageData,o as default}; diff --git a/docs/.vitepress/dist/assets/guide_multi_transaction-filter.md.MMWDhaAo.js b/docs/.vitepress/dist/assets/guide_multi_transaction-filter.md.MMWDhaAo.js deleted file mode 100644 index f2ee55e07..000000000 --- a/docs/.vitepress/dist/assets/guide_multi_transaction-filter.md.MMWDhaAo.js +++ /dev/null @@ -1,28 +0,0 @@ -import{_ as s,c as i,o as a,a3 as n}from"./chunks/framework.OdeEVNy0.js";const F=JSON.parse('{"title":"Transaction Filter","description":"","frontmatter":{},"headers":[],"relativePath":"guide/multi/transaction-filter.md","filePath":"guide/multi/transaction-filter.md"}'),t={name:"guide/multi/transaction-filter.md"},h=n(`

Transaction Filter

Often developers ask me about the transactions method. Yes, this method displays ALL transactions for the wallet owner. If you only need to filter one wallet at a time, now you can use the walletTransactions method.

php
/** @var \\Bavix\\Wallet\\Models\\Wallet $wallet */
-
-$query = $wallet->walletTransactions();

Let's take a look at a livelier code example:

php
$user->transactions()->count(); // 0
-
-// Multi wallets and default wallet can be used together
-// default wallet
-$user->deposit(100);
-$user->wallet->deposit(200);
-$user->wallet->withdraw(1);
-
-// usd
-$usd = $user->createWallet(['name' => 'USD']);
-$usd->deposit(100);
-
-// eur
-$eur = $user->createWallet(['name' => 'EUR']);
-$eur->deposit(100);
-
-$user->transactions()->count(); // 5
-$user->wallet->transactions()->count(); // 5
-$usd->transactions()->count(); // 5
-$eur->transactions()->count(); // 5
-// the transactions method returns data relative to the owner of the wallet, for all transactions
-
-$user->walletTransactions()->count(); // 3. we get the default wallet
-$user->wallet->walletTransactions()->count(); // 3
-$usd->walletTransactions()->count(); // 1
-$eur->walletTransactions()->count(); // 1

It's simple!

`,6),l=[h];function k(p,e,r,E,d,g){return a(),i("div",null,l)}const c=s(t,[["render",k]]);export{F as __pageData,c as default}; diff --git a/docs/.vitepress/dist/assets/guide_multi_transaction-filter.md.MMWDhaAo.lean.js b/docs/.vitepress/dist/assets/guide_multi_transaction-filter.md.MMWDhaAo.lean.js deleted file mode 100644 index d3321e35d..000000000 --- a/docs/.vitepress/dist/assets/guide_multi_transaction-filter.md.MMWDhaAo.lean.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as s,c as i,o as a,a3 as n}from"./chunks/framework.OdeEVNy0.js";const F=JSON.parse('{"title":"Transaction Filter","description":"","frontmatter":{},"headers":[],"relativePath":"guide/multi/transaction-filter.md","filePath":"guide/multi/transaction-filter.md"}'),t={name:"guide/multi/transaction-filter.md"},h=n("",6),l=[h];function k(p,e,r,E,d,g){return a(),i("div",null,l)}const c=s(t,[["render",k]]);export{F as __pageData,c as default}; diff --git a/docs/.vitepress/dist/assets/guide_multi_transfer.md.I6fyOpJ7.js b/docs/.vitepress/dist/assets/guide_multi_transfer.md.I6fyOpJ7.js deleted file mode 100644 index 17289c39c..000000000 --- a/docs/.vitepress/dist/assets/guide_multi_transfer.md.I6fyOpJ7.js +++ /dev/null @@ -1,36 +0,0 @@ -import{_ as s,c as i,o as a,a3 as t}from"./chunks/framework.OdeEVNy0.js";const c=JSON.parse('{"title":"Transfer between wallets","description":"","frontmatter":{},"headers":[],"relativePath":"guide/multi/transfer.md","filePath":"guide/multi/transfer.md"}'),n={name:"guide/multi/transfer.md"},h=t(`

Transfer between wallets

Transfer in our system are two well-known Deposit and Withdraw operations that are performed in one transaction.

The transfer takes place between wallets.

User Model

Prepare the model, add the HasWallets trait's and Wallet interface.

php
use Bavix\\Wallet\\Traits\\HasWallets;
-use Bavix\\Wallet\\Interfaces\\Wallet;
-
-class User extends Model implements Wallet
-{
-    use HasWallets;
-}

Make a Transfer

Find user:

php
$first = User::first(); 
-$last = User::orderBy('id', 'desc')->first(); // last user
-$first->getKey() !== $last->getKey(); // true

Create new wallets for users.

php
$firstWallet = $first->createWallet(['name' => 'First User Wallet']);
-$lastWallet = $last->createWallet(['name' => 'Second User Wallet']);
-
-$firstWallet->deposit(100);
-$firstWallet->balance; // 100
-$lastWallet->balance; // 0

The transfer will be from the first user to the last.

php
$firstWallet->transfer($lastWallet, 5); 
-$firstWallet->balance; // 95
-$lastWallet->balance; // 5

It's simple!

Force Transfer

Check the user's balance.

php
$firstWallet->balance; // 100
-$lastWallet->balance; // 0

The transfer will be from the first user to the second.

php
$firstWallet->forceTransfer($lastWallet, 500); 
-$firstWallet->balance; // -400
-$lastWallet->balance; // 500

It worked!

Change the meta and confirmation

Check the user's balance.

php
$firstWallet->balanceInt; // 1_000
-$secondWallet->balanceInt; // 0

We will execute the transfer, but without confirmation of the withdrawal of funds.

php
use Bavix\\Wallet\\External\\Dto\\Extra;
-use Bavix\\Wallet\\External\\Dto\\Option;
-
-/** @var $firstWallet \\Bavix\\Wallet\\Interfaces\\Wallet */
-$transfer = $firstWallet->transfer($secondWallet, 500, new Extra(
-    deposit: ['message' => 'Hello, secondWallet!'],
-    withdraw: new Option(meta: ['something' => 'anything'], confirmed: false)
-));
-
-$transfer->withdraw->meta; // ['something' => 'anything']
-$transfer->withdraw->confirmed; // false
-
-$transfer->deposit->meta; // ['message' => 'Hello, secondWallet!']
-$transfer->deposit->confirmed; // true
-
-$firstWallet->balanceInt; // 1_000
-$secondWallet->balanceInt; // 500

It's simple!

`,26),l=[h];function e(p,k,r,E,d,g){return a(),i("div",null,l)}const o=s(n,[["render",e]]);export{c as __pageData,o as default}; diff --git a/docs/.vitepress/dist/assets/guide_multi_transfer.md.I6fyOpJ7.lean.js b/docs/.vitepress/dist/assets/guide_multi_transfer.md.I6fyOpJ7.lean.js deleted file mode 100644 index 7d77fa7d3..000000000 --- a/docs/.vitepress/dist/assets/guide_multi_transfer.md.I6fyOpJ7.lean.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as s,c as i,o as a,a3 as t}from"./chunks/framework.OdeEVNy0.js";const c=JSON.parse('{"title":"Transfer between wallets","description":"","frontmatter":{},"headers":[],"relativePath":"guide/multi/transfer.md","filePath":"guide/multi/transfer.md"}'),n={name:"guide/multi/transfer.md"},h=t("",26),l=[h];function e(p,k,r,E,d,g){return a(),i("div",null,l)}const o=s(n,[["render",e]]);export{c as __pageData,o as default}; diff --git a/docs/.vitepress/dist/assets/guide_purchases_cart.md.BQuTJc6v.js b/docs/.vitepress/dist/assets/guide_purchases_cart.md.BQuTJc6v.js deleted file mode 100644 index 5cc4666eb..000000000 --- a/docs/.vitepress/dist/assets/guide_purchases_cart.md.BQuTJc6v.js +++ /dev/null @@ -1,86 +0,0 @@ -import{_ as s,c as i,o as a,a3 as n}from"./chunks/framework.OdeEVNy0.js";const c=JSON.parse('{"title":"Cart","description":"","frontmatter":{},"headers":[],"relativePath":"guide/purchases/cart.md","filePath":"guide/purchases/cart.md"}'),h={name:"guide/purchases/cart.md"},t=n(`

Cart

Buying goods one at a time is, of course, good. But it’s more convenient to buy in a pack, right? In laravel wallet you can buy a basket of goods at once.

User Model

Add the CanPay trait and Customer interface to your User model.

The trait CanPay already inherits HasWallet, reuse will cause an error.

php
use Bavix\\Wallet\\Traits\\CanPay;
-use Bavix\\Wallet\\Interfaces\\Customer;
-
-class User extends Model implements Customer
-{
-    use CanPay;
-}

Item Model

Add the HasWallet trait and interface to Item model.

Starting from version 9.x there are two product interfaces:

  • For an unlimited number of products (ProductInterface);
  • For a limited number of products (ProductLimitedInterface);

An example with an unlimited number of products:

php
use Bavix\\Wallet\\Traits\\HasWallet;
-use Bavix\\Wallet\\Interfaces\\Customer;
-use Bavix\\Wallet\\Interfaces\\ProductInterface;
-
-class Item extends Model implements ProductInterface
-{
-    use HasWallet;
-
-    public function getAmountProduct(Customer $customer): int|string
-    {
-        return round($this->price * 100);
-    }
-
-    public function getMetaProduct(): ?array
-    {
-        return [
-            'title' => $this->title, 
-            'description' => 'Purchase of Product #' . $this->id,
-        ];
-    }
-}

Example with a limited number of products:

php
use Bavix\\Wallet\\Traits\\HasWallet;
-use Bavix\\Wallet\\Interfaces\\Customer;
-use Bavix\\Wallet\\Interfaces\\ProductLimitedInterface;
-
-class Item extends Model implements ProductLimitedInterface
-{
-    use HasWallet;
-
-    public function canBuy(Customer $customer, int $quantity = 1, bool $force = false): bool
-    {
-        /**
-         * This is where you implement the constraint logic. 
-         * 
-         * If the service can be purchased once, then
-         *  return !$customer->paid($this);
-         */
-        return true; 
-    }
-    
-    public function getAmountProduct(Customer $customer): int|string
-    {
-        return round($this->price * 100);
-    }
-
-    public function getMetaProduct(): ?array
-    {
-        return [
-            'title' => $this->title, 
-            'description' => 'Purchase of Product #' . $this->id,
-        ];
-    }
-}

I do not recommend using the limited interface when working with a shopping cart. If you are working with a shopping cart, then you should override the PurchaseServiceInterface interface. With it, you can check the availability of all products with one request, there will be no N-queries in the database.

Fill the cart

Find the user and check the balance.

php
$user = User::first();
-$user->balance; // 0

Let's start shopping.

php
use Bavix\\Wallet\\Objects\\Cart;
-
-$list = [
-    'potato' => 3,
-    'carrot' => 10,
-];
-
-$products = Item::query()
-    ->whereIn('slug', ['potato', 'carrot'])
-    ->get();
-
-$cart = app(Cart::class);
-foreach ($products as $product) {
-    $cart = $cart->withItem($product, quantity: $list[$product->slug]);
-}
-
-$cartTotal = $cart->getTotal($user); // 15127
-$user->deposit($cartTotal); 
-$user->balanceInt; // 15127
-$user->balanceFloat; // 151.27
-
-$cart = $cart->withItem(current($products), pricePerItem: 500); // 15127+500
-$user->deposit(500);
-$user->balanceInt; // 15627
-$user->balanceFloat; // 156.27
-
-(bool)$user->payCart($cart); // true
-$user->balanceFloat; // 0

It's simple!

`,21),l=[t];function k(p,e,r,d,E,g){return a(),i("div",null,l)}const F=s(h,[["render",k]]);export{c as __pageData,F as default}; diff --git a/docs/.vitepress/dist/assets/guide_purchases_cart.md.BQuTJc6v.lean.js b/docs/.vitepress/dist/assets/guide_purchases_cart.md.BQuTJc6v.lean.js deleted file mode 100644 index 9e5b4d742..000000000 --- a/docs/.vitepress/dist/assets/guide_purchases_cart.md.BQuTJc6v.lean.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as s,c as i,o as a,a3 as n}from"./chunks/framework.OdeEVNy0.js";const c=JSON.parse('{"title":"Cart","description":"","frontmatter":{},"headers":[],"relativePath":"guide/purchases/cart.md","filePath":"guide/purchases/cart.md"}'),h={name:"guide/purchases/cart.md"},t=n("",21),l=[t];function k(p,e,r,d,E,g){return a(),i("div",null,l)}const F=s(h,[["render",k]]);export{c as __pageData,F as default}; diff --git a/docs/.vitepress/dist/assets/guide_purchases_commissions.md.CMGOeeZc.js b/docs/.vitepress/dist/assets/guide_purchases_commissions.md.CMGOeeZc.js deleted file mode 100644 index 91d8b6cbe..000000000 --- a/docs/.vitepress/dist/assets/guide_purchases_commissions.md.CMGOeeZc.js +++ /dev/null @@ -1,82 +0,0 @@ -import{_ as s,c as i,o as a,a3 as n}from"./chunks/framework.OdeEVNy0.js";const y=JSON.parse('{"title":"Commissions","description":"","frontmatter":{},"headers":[],"relativePath":"guide/purchases/commissions.md","filePath":"guide/purchases/commissions.md"}'),h={name:"guide/purchases/commissions.md"},t=n(`

Commissions

Commissions are part of purchasing goods. The commission is debited from the buyer's account and is not credited for the product. This amount is lost along the way. The commission amount can always be found in the fee column.

User Model

Add the CanPay trait and Customer interface to your User model.

The trait CanPay already inherits HasWallet, reuse will cause an error.

php
use Bavix\\Wallet\\Traits\\CanPay;
-use Bavix\\Wallet\\Interfaces\\Customer;
-
-class User extends Model implements Customer
-{
-    use CanPay;
-}

Item Model

Add the HasWallet trait and ProductInterface (or ProductLimitedInterface) interface to Item model.

php
use Bavix\\Wallet\\Traits\\HasWallet;
-use Bavix\\Wallet\\Interfaces\\Customer;
-use Bavix\\Wallet\\Interfaces\\Taxable;
-use Bavix\\Wallet\\Interfaces\\ProductLimitedInterface;
-
-class Item extends Model implements ProductLimitedInterface, Taxable
-{
-    use HasWallet;
-
-    public function canBuy(Customer $customer, int $quantity = 1, bool $force = false): bool
-    {
-        /**
-         * If the service can be purchased once, then
-         *  return !$customer->paid($this);
-         */
-        return true; 
-    }
-
-    public function getAmountProduct(Customer $customer): int|string
-    {
-        return 100;
-    }
-
-    public function getMetaProduct(): ?array
-    {
-        return [
-            'title' => $this->title, 
-            'description' => 'Purchase of Product #' . $this->id,
-        ];
-    }
-
-    public function getFeePercent()
-    {
-        return 0.03; // 3%    
-    }
-}

Tax process

Find the user and check the balance.

php
$user = User::first();
-$user->balance; // 103

Find the goods and check the cost.

php
$item = Item::first();
-$item->getAmountProduct($user); // 100

The user can buy a product, buy...

php
$user->pay($item); // success, 100 (product) + 3 (fee) = 103
-$user->balance; // 0

Minimal Taxing

Add interface MinimalTaxable (or MaximalTaxable) in class Item.

php
use Bavix\\Wallet\\Traits\\HasWallet;
-use Bavix\\Wallet\\Interfaces\\Customer;
-use Bavix\\Wallet\\Interfaces\\MinimalTaxable;
-use Bavix\\Wallet\\Interfaces\\ProductInterface;
-
-class Item extends Model implements ProductInterface, MinimalTaxable
-{
-    use HasWallet;
-
-    public function getAmountProduct(Customer $customer): int|string
-    {
-        return 100;
-    }
-
-    public function getMetaProduct(): ?array
-    {
-        return [
-            'title' => $this->title, 
-            'description' => 'Purchase of Product #' . $this->id,
-        ];
-    }
-
-    public function getFeePercent()
-    {
-        return 0.03; // 3%    
-    }
-    
-    public function getMinimalFee()
-    {
-        return 5; // 3%, minimum 5    
-    }
-}

Successfully

Find the user and check the balance.

php
$user = User::first();
-$user->balance; // 105

Find the goods and check the cost.

php
$item = Item::first();
-$item->getAmountProduct($user); // 100

The user can buy a product, buy...

php
$user->pay($item); // success, 100 (product) + 5 (minimal fee) = 105
-$user->balance; // 0

Failed

Find the user and check the balance.

php
$user = User::first();
-$user->balance; // 103

Find the goods and check the cost.

php
$item = Item::first();
-$item->getAmountProduct($user); // 100

The user can buy a product, buy...

php
$user->safePay($item); // failed, 100 (product) + 5 (minimal fee) = 105
-$user->balance; // 103

It's simple!

`,34),l=[t];function p(e,k,d,r,E,g){return a(),i("div",null,l)}const o=s(h,[["render",p]]);export{y as __pageData,o as default}; diff --git a/docs/.vitepress/dist/assets/guide_purchases_commissions.md.CMGOeeZc.lean.js b/docs/.vitepress/dist/assets/guide_purchases_commissions.md.CMGOeeZc.lean.js deleted file mode 100644 index cd5933970..000000000 --- a/docs/.vitepress/dist/assets/guide_purchases_commissions.md.CMGOeeZc.lean.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as s,c as i,o as a,a3 as n}from"./chunks/framework.OdeEVNy0.js";const y=JSON.parse('{"title":"Commissions","description":"","frontmatter":{},"headers":[],"relativePath":"guide/purchases/commissions.md","filePath":"guide/purchases/commissions.md"}'),h={name:"guide/purchases/commissions.md"},t=n("",34),l=[t];function p(e,k,d,r,E,g){return a(),i("div",null,l)}const o=s(h,[["render",p]]);export{y as __pageData,o as default}; diff --git a/docs/.vitepress/dist/assets/guide_purchases_gift.md.C_bxgDhS.js b/docs/.vitepress/dist/assets/guide_purchases_gift.md.C_bxgDhS.js deleted file mode 100644 index 9bd698fb1..000000000 --- a/docs/.vitepress/dist/assets/guide_purchases_gift.md.C_bxgDhS.js +++ /dev/null @@ -1,69 +0,0 @@ -import{_ as s,c as i,o as a,a3 as n}from"./chunks/framework.OdeEVNy0.js";const c=JSON.parse('{"title":"Gift","description":"","frontmatter":{},"headers":[],"relativePath":"guide/purchases/gift.md","filePath":"guide/purchases/gift.md"}'),t={name:"guide/purchases/gift.md"},h=n(`

Gift

Gifts are a purchase with someone else's wallet attached. The peculiarity of gifts is that when the gift is returned, the money is returned to the person who bought it, and not to the person to whom it was given. This functionality is usually used to reward users by the administration.

User Model

Add the CanPay trait and Customer interface to your User model.

The trait CanPay already inherits HasWallet, reuse will cause an error.

php
use Bavix\\Wallet\\Traits\\CanPay;
-use Bavix\\Wallet\\Interfaces\\Customer;
-
-class User extends Model implements Customer
-{
-    use CanPay;
-}

Item Model

Add the HasWallet trait and interface to Item model.

Starting from version 9.x there are two product interfaces:

  • For an unlimited number of products (ProductInterface);
  • For a limited number of products (ProductLimitedInterface);

An example with an unlimited number of products:

php
use Bavix\\Wallet\\Traits\\HasWallet;
-use Bavix\\Wallet\\Interfaces\\Customer;
-use Bavix\\Wallet\\Interfaces\\ProductInterface;
-
-class Item extends Model implements ProductInterface
-{
-    use HasWallet;
-
-    public function getAmountProduct(Customer $customer): int|string
-    {
-        return 100;
-    }
-
-    public function getMetaProduct(): ?array
-    {
-        return [
-            'title' => $this->title, 
-            'description' => 'Purchase of Product #' . $this->id,
-        ];
-    }
-}

Example with a limited number of products:

php
use Bavix\\Wallet\\Traits\\HasWallet;
-use Bavix\\Wallet\\Interfaces\\Customer;
-use Bavix\\Wallet\\Interfaces\\ProductLimitedInterface;
-
-class Item extends Model implements ProductLimitedInterface
-{
-    use HasWallet;
-
-    public function canBuy(Customer $customer, int $quantity = 1, bool $force = false): bool
-    {
-        /**
-         * This is where you implement the constraint logic. 
-         * 
-         * If the service can be purchased once, then
-         *  return !$customer->paid($this);
-         */
-        return true; 
-    }
-    
-    public function getAmountProduct(Customer $customer): int|string
-    {
-        return 100;
-    }
-
-    public function getMetaProduct(): ?array
-    {
-        return [
-            'title' => $this->title, 
-            'description' => 'Purchase of Product #' . $this->id,
-        ];
-    }
-}

I do not recommend using the limited interface when working with a shopping cart. If you are working with a shopping cart, then you should override the PurchaseServiceInterface interface. With it, you can check the availability of all products with one request, there will be no N-queries in the database.

Santa Claus, give gifts

Find the user's and check the balance.

php
$first = User::first(); 
-$last = User::orderBy('id', 'desc')->first(); // last user
-$first->getKey() !== $last->getKey(); // true
-
-$first->balance; // 115
-$last->balance; // 0

One user wants to give a gift to another. Find the product.

php
$item = Item::first();
-$item->getAmountProduct($first); // 100
-$item->balance; // 0

The first user buys the product and gives it.

If the product uses the Taxable interface, then Santa will pay tax

php
$first->gift($last, $item);
-(bool)$last->paid($item, true); // bool(true)
-$first->balance; // 15
-$last->balance; // 0
-$item->balance; // 100

It's simple!

`,24),l=[h];function p(e,k,r,d,E,g){return a(),i("div",null,l)}const o=s(t,[["render",p]]);export{c as __pageData,o as default}; diff --git a/docs/.vitepress/dist/assets/guide_purchases_gift.md.C_bxgDhS.lean.js b/docs/.vitepress/dist/assets/guide_purchases_gift.md.C_bxgDhS.lean.js deleted file mode 100644 index f5552b6fa..000000000 --- a/docs/.vitepress/dist/assets/guide_purchases_gift.md.C_bxgDhS.lean.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as s,c as i,o as a,a3 as n}from"./chunks/framework.OdeEVNy0.js";const c=JSON.parse('{"title":"Gift","description":"","frontmatter":{},"headers":[],"relativePath":"guide/purchases/gift.md","filePath":"guide/purchases/gift.md"}'),t={name:"guide/purchases/gift.md"},h=n("",24),l=[h];function p(e,k,r,d,E,g){return a(),i("div",null,l)}const o=s(t,[["render",p]]);export{c as __pageData,o as default}; diff --git a/docs/.vitepress/dist/assets/guide_purchases_payment-free.md.Orz9kaX-.js b/docs/.vitepress/dist/assets/guide_purchases_payment-free.md.Orz9kaX-.js deleted file mode 100644 index bfd6bec98..000000000 --- a/docs/.vitepress/dist/assets/guide_purchases_payment-free.md.Orz9kaX-.js +++ /dev/null @@ -1,64 +0,0 @@ -import{_ as s,c as i,o as a,a3 as n}from"./chunks/framework.OdeEVNy0.js";const y=JSON.parse('{"title":"Payment Free","description":"","frontmatter":{},"headers":[],"relativePath":"guide/purchases/payment-free.md","filePath":"guide/purchases/payment-free.md"}'),t={name:"guide/purchases/payment-free.md"},h=n(`

Payment Free

Payments as part of e-commerce are an important part. This section is about payment for goods.

User Model

Add the CanPay trait and Customer interface to your User model.

The trait CanPay already inherits HasWallet, reuse will cause an error.

php
use Bavix\\Wallet\\Traits\\CanPay;
-use Bavix\\Wallet\\Interfaces\\Customer;
-
-class User extends Model implements Customer
-{
-    use CanPay;
-}

Item Model

Add the HasWallet trait and interface to Item model.

Starting from version 9.x there are two product interfaces:

  • For an unlimited number of products (ProductInterface);
  • For a limited number of products (ProductLimitedInterface);

An example with an unlimited number of products:

php
use Bavix\\Wallet\\Traits\\HasWallet;
-use Bavix\\Wallet\\Interfaces\\Customer;
-use Bavix\\Wallet\\Interfaces\\ProductInterface;
-
-class Item extends Model implements ProductInterface
-{
-    use HasWallet;
-
-    public function getAmountProduct(Customer $customer): int|string
-    {
-        return 100;
-    }
-
-    public function getMetaProduct(): ?array
-    {
-        return [
-            'title' => $this->title, 
-            'description' => 'Purchase of Product #' . $this->id,
-        ];
-    }
-}

Example with a limited number of products:

php
use Bavix\\Wallet\\Traits\\HasWallet;
-use Bavix\\Wallet\\Interfaces\\Customer;
-use Bavix\\Wallet\\Interfaces\\ProductLimitedInterface;
-
-class Item extends Model implements ProductLimitedInterface
-{
-    use HasWallet;
-
-    public function canBuy(Customer $customer, int $quantity = 1, bool $force = false): bool
-    {
-        /**
-         * This is where you implement the constraint logic. 
-         * 
-         * If the service can be purchased once, then
-         *  return !$customer->paid($this);
-         */
-        return true; 
-    }
-    
-    public function getAmountProduct(Customer $customer): int|string
-    {
-        return 100;
-    }
-
-    public function getMetaProduct(): ?array
-    {
-        return [
-            'title' => $this->title, 
-            'description' => 'Purchase of Product #' . $this->id,
-        ];
-    }
-}

I do not recommend using the limited interface when working with a shopping cart. If you are working with a shopping cart, then you should override the PurchaseServiceInterface interface. With it, you can check the availability of all products with one request, there will be no N-queries in the database.

Pay Free

Find the user and check the balance.

php
$user = User::first();
-$user->balance; // 100

Find the goods and check the cost.

php
$item = Item::first();
-$item->getAmountProduct($user); // 100
-$item->balance; // 0

Purchase!

php
$user->payFree($item);
-(bool)$user->paid($item); // bool(true)
-$user->balance; // 100
-$item->balance; // 0

It's simple!

`,23),l=[h];function e(p,k,r,d,E,g){return a(),i("div",null,l)}const o=s(t,[["render",e]]);export{y as __pageData,o as default}; diff --git a/docs/.vitepress/dist/assets/guide_purchases_payment-free.md.Orz9kaX-.lean.js b/docs/.vitepress/dist/assets/guide_purchases_payment-free.md.Orz9kaX-.lean.js deleted file mode 100644 index 63c4c66ea..000000000 --- a/docs/.vitepress/dist/assets/guide_purchases_payment-free.md.Orz9kaX-.lean.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as s,c as i,o as a,a3 as n}from"./chunks/framework.OdeEVNy0.js";const y=JSON.parse('{"title":"Payment Free","description":"","frontmatter":{},"headers":[],"relativePath":"guide/purchases/payment-free.md","filePath":"guide/purchases/payment-free.md"}'),t={name:"guide/purchases/payment-free.md"},h=n("",23),l=[h];function e(p,k,r,d,E,g){return a(),i("div",null,l)}const o=s(t,[["render",e]]);export{y as __pageData,o as default}; diff --git a/docs/.vitepress/dist/assets/guide_purchases_payment.md.CzAQICFL.js b/docs/.vitepress/dist/assets/guide_purchases_payment.md.CzAQICFL.js deleted file mode 100644 index b6a8880fe..000000000 --- a/docs/.vitepress/dist/assets/guide_purchases_payment.md.CzAQICFL.js +++ /dev/null @@ -1,65 +0,0 @@ -import{_ as s,c as i,o as a,a3 as n}from"./chunks/framework.OdeEVNy0.js";const o=JSON.parse('{"title":"Payment","description":"","frontmatter":{},"headers":[],"relativePath":"guide/purchases/payment.md","filePath":"guide/purchases/payment.md"}'),t={name:"guide/purchases/payment.md"},h=n(`

Payment

Payments as part of e-commerce are an important part. This section is about payment for goods.

User Model

Add the CanPay trait and Customer interface to your User model.

The trait CanPay already inherits HasWallet, reuse will cause an error.

php
use Bavix\\Wallet\\Traits\\CanPay;
-use Bavix\\Wallet\\Interfaces\\Customer;
-
-class User extends Model implements Customer
-{
-    use CanPay;
-}

Item Model

Add the HasWallet trait and interface to Item model.

Starting from version 9.x there are two product interfaces:

  • For an unlimited number of products (ProductInterface);
  • For a limited number of products (ProductLimitedInterface);

An example with an unlimited number of products:

php
use Bavix\\Wallet\\Traits\\HasWallet;
-use Bavix\\Wallet\\Interfaces\\Customer;
-use Bavix\\Wallet\\Interfaces\\ProductInterface;
-
-class Item extends Model implements ProductInterface
-{
-    use HasWallet;
-
-    public function getAmountProduct(Customer $customer): int|string
-    {
-        return 100;
-    }
-
-    public function getMetaProduct(): ?array
-    {
-        return [
-            'title' => $this->title, 
-            'description' => 'Purchase of Product #' . $this->id,
-        ];
-    }
-}

Example with a limited number of products:

php
use Bavix\\Wallet\\Traits\\HasWallet;
-use Bavix\\Wallet\\Interfaces\\Customer;
-use Bavix\\Wallet\\Interfaces\\ProductLimitedInterface;
-
-class Item extends Model implements ProductLimitedInterface
-{
-    use HasWallet;
-
-    public function canBuy(Customer $customer, int $quantity = 1, bool $force = false): bool
-    {
-        /**
-         * This is where you implement the constraint logic. 
-         * 
-         * If the service can be purchased once, then
-         *  return !$customer->paid($this);
-         */
-        return true; 
-    }
-    
-    public function getAmountProduct(Customer $customer): int|string
-    {
-        return 100;
-    }
-
-    public function getMetaProduct(): ?array
-    {
-        return [
-            'title' => $this->title, 
-            'description' => 'Purchase of Product #' . $this->id,
-        ];
-    }
-}

I do not recommend using the limited interface when working with a shopping cart. If you are working with a shopping cart, then you should override the PurchaseServiceInterface interface. With it, you can check the availability of all products with one request, there will be no N-queries in the database.

Proceed to purchase

Find the user and check the balance.

php
$user = User::first();
-$user->balance; // 100

Find the goods and check the cost.

php
$item = Item::first();
-$item->getAmountProduct($user); // 100

The user can buy a product, buy...

php
$user->pay($item);
-$user->balance; // 0

What happens if the user does not have the funds? The same as with the withdrawal.

php
$user->balance; // 0
-$user->pay($item);
-// throw an exception

The question arises, how do you know that the product is purchased?

php
(bool)$user->paid($item); // bool(true)

Safe Pay

To not write try and catch use safePay method.

php
if ($user->safePay($item)) {
-  // try to buy again )
-}

It's simple!

`,30),e=[h];function p(l,k,r,d,E,g){return a(),i("div",null,e)}const y=s(t,[["render",p]]);export{o as __pageData,y as default}; diff --git a/docs/.vitepress/dist/assets/guide_purchases_payment.md.CzAQICFL.lean.js b/docs/.vitepress/dist/assets/guide_purchases_payment.md.CzAQICFL.lean.js deleted file mode 100644 index 5ebd1d25b..000000000 --- a/docs/.vitepress/dist/assets/guide_purchases_payment.md.CzAQICFL.lean.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as s,c as i,o as a,a3 as n}from"./chunks/framework.OdeEVNy0.js";const o=JSON.parse('{"title":"Payment","description":"","frontmatter":{},"headers":[],"relativePath":"guide/purchases/payment.md","filePath":"guide/purchases/payment.md"}'),t={name:"guide/purchases/payment.md"},h=n("",30),e=[h];function p(l,k,r,d,E,g){return a(),i("div",null,e)}const y=s(t,[["render",p]]);export{o as __pageData,y as default}; diff --git a/docs/.vitepress/dist/assets/guide_purchases_receiving.md.CCQHkWGv.js b/docs/.vitepress/dist/assets/guide_purchases_receiving.md.CCQHkWGv.js deleted file mode 100644 index 684eb39d8..000000000 --- a/docs/.vitepress/dist/assets/guide_purchases_receiving.md.CCQHkWGv.js +++ /dev/null @@ -1,70 +0,0 @@ -import{_ as s,c as i,o as a,a3 as n}from"./chunks/framework.OdeEVNy0.js";const y=JSON.parse('{"title":"Payment. Customize receiving","description":"","frontmatter":{},"headers":[],"relativePath":"guide/purchases/receiving.md","filePath":"guide/purchases/receiving.md"}'),t={name:"guide/purchases/receiving.md"},h=n(`

Payment. Customize receiving

The architecture of laravel wallet is designed in such a way that when purchasing goods, wallets are created and all money is credited to them, but it happens that this is not necessary. In this case, this functionality will help. You specify the wallet for depositing funds and the buyer will transfer money to this wallet when purchasing a product. This is convenient for marketplaces.

User Model

Add the CanPay trait and Customer interface to your User model.

The trait CanPay already inherits HasWallet, reuse will cause an error.

php
use Bavix\\Wallet\\Traits\\CanPay;
-use Bavix\\Wallet\\Interfaces\\Customer;
-
-class User extends Model implements Customer
-{
-    use CanPay;
-}

Item Model

Add the HasWallet trait and interface to Item model. If we want to achieve multi wallets for a product, then we need to add HasWallets.

Starting from version 9.x there are two product interfaces:

  • For an unlimited number of products (ProductInterface);
  • For a limited number of products (ProductLimitedInterface);

An example with an unlimited number of products:

php
use Bavix\\Wallet\\Traits\\HasWallet;
-use Bavix\\Wallet\\Traits\\HasWallets;
-use Bavix\\Wallet\\Interfaces\\Customer;
-use Bavix\\Wallet\\Interfaces\\ProductInterface;
-
-class Item extends Model implements ProductInterface
-{
-    use HasWallet, HasWallets;
-
-    public function getAmountProduct(Customer $customer): int|string
-    {
-        return 100;
-    }
-
-    public function getMetaProduct(): ?array
-    {
-        return [
-            'title' => $this->title, 
-            'description' => 'Purchase of Product #' . $this->id,
-        ];
-    }
-}

Example with a limited number of products:

php
use Bavix\\Wallet\\Traits\\HasWallet;
-use Bavix\\Wallet\\Traits\\HasWallets;
-use Bavix\\Wallet\\Interfaces\\Customer;
-use Bavix\\Wallet\\Interfaces\\ProductLimitedInterface;
-
-class Item extends Model implements ProductLimitedInterface
-{
-    use HasWallet, HasWallets;
-
-    public function canBuy(Customer $customer, int $quantity = 1, bool $force = false): bool
-    {
-        return true; 
-    }
-    
-    public function getAmountProduct(Customer $customer): int|string
-    {
-        return 100;
-    }
-
-    public function getMetaProduct(): ?array
-    {
-        return [
-            'title' => $this->title, 
-            'description' => 'Purchase of Product #' . $this->id,
-        ];
-    }
-}

I do not recommend using the limited interface when working with a shopping cart. If you are working with a shopping cart, then you should override the PurchaseServiceInterface interface. With it, you can check the availability of all products with one request, there will be no N-queries in the database.

Proceed to purchase

Find the user and check the balance.

php
$user = User::first();
-$user->balance; // 100

Find the goods and check the cost.

php
$item = Item::first();
-$item->getAmountProduct($user); // 100
-
-$receiving = $item->createWallet([
-    'name' => 'Dollar',
-    'meta' => [
-        'currency' => 'USD',
-    ],
-]);

The user can buy a product, buy...

php
$cart = app(Cart::class)
-    ->withItem($item, receiving: $receiving)
-;
-
-$user->payCart($cart);
-$user->balance; // 0
-
-$receiving->balanceInt; // $100

It's simple!

`,23),l=[h];function e(p,k,r,d,E,g){return a(),i("div",null,l)}const o=s(t,[["render",e]]);export{y as __pageData,o as default}; diff --git a/docs/.vitepress/dist/assets/guide_purchases_receiving.md.CCQHkWGv.lean.js b/docs/.vitepress/dist/assets/guide_purchases_receiving.md.CCQHkWGv.lean.js deleted file mode 100644 index e574868a3..000000000 --- a/docs/.vitepress/dist/assets/guide_purchases_receiving.md.CCQHkWGv.lean.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as s,c as i,o as a,a3 as n}from"./chunks/framework.OdeEVNy0.js";const y=JSON.parse('{"title":"Payment. Customize receiving","description":"","frontmatter":{},"headers":[],"relativePath":"guide/purchases/receiving.md","filePath":"guide/purchases/receiving.md"}'),t={name:"guide/purchases/receiving.md"},h=n("",23),l=[h];function e(p,k,r,d,E,g){return a(),i("div",null,l)}const o=s(t,[["render",e]]);export{y as __pageData,o as default}; diff --git a/docs/.vitepress/dist/assets/guide_purchases_refund.md.C91GQMAb.js b/docs/.vitepress/dist/assets/guide_purchases_refund.md.C91GQMAb.js deleted file mode 100644 index c9d921878..000000000 --- a/docs/.vitepress/dist/assets/guide_purchases_refund.md.C91GQMAb.js +++ /dev/null @@ -1,63 +0,0 @@ -import{_ as s,c as i,o as a,a3 as n}from"./chunks/framework.OdeEVNy0.js";const y=JSON.parse('{"title":"Refund","description":"","frontmatter":{},"headers":[],"relativePath":"guide/purchases/refund.md","filePath":"guide/purchases/refund.md"}'),t={name:"guide/purchases/refund.md"},h=n(`

Refund

We already know how to buy, but what about returns? But they exist and you can use them.

User Model

Add the CanPay trait and Customer interface to your User model.

The trait CanPay already inherits HasWallet, reuse will cause an error.

php
use Bavix\\Wallet\\Traits\\CanPay;
-use Bavix\\Wallet\\Interfaces\\Customer;
-
-class User extends Model implements Customer
-{
-    use CanPay;
-}

Item Model

Add the HasWallet trait and interface to Item model.

Starting from version 9.x there are two product interfaces:

  • For an unlimited number of products (ProductInterface);
  • For a limited number of products (ProductLimitedInterface);

An example with an unlimited number of products:

php
use Bavix\\Wallet\\Traits\\HasWallet;
-use Bavix\\Wallet\\Interfaces\\Customer;
-use Bavix\\Wallet\\Interfaces\\ProductInterface;
-
-class Item extends Model implements ProductInterface
-{
-    use HasWallet;
-
-    public function getAmountProduct(Customer $customer): int|string
-    {
-        return 100;
-    }
-
-    public function getMetaProduct(): ?array
-    {
-        return [
-            'title' => $this->title, 
-            'description' => 'Purchase of Product #' . $this->id,
-        ];
-    }
-}

Example with a limited number of products:

php
use Bavix\\Wallet\\Traits\\HasWallet;
-use Bavix\\Wallet\\Interfaces\\Customer;
-use Bavix\\Wallet\\Interfaces\\ProductLimitedInterface;
-
-class Item extends Model implements ProductLimitedInterface
-{
-    use HasWallet;
-
-    public function canBuy(Customer $customer, int $quantity = 1, bool $force = false): bool
-    {
-        /**
-         * This is where you implement the constraint logic. 
-         * 
-         * If the service can be purchased once, then
-         *  return !$customer->paid($this);
-         */
-        return true; 
-    }
-    
-    public function getAmountProduct(Customer $customer): int|string
-    {
-        return 100;
-    }
-
-    public function getMetaProduct(): ?array
-    {
-        return [
-            'title' => $this->title, 
-            'description' => 'Purchase of Product #' . $this->id,
-        ];
-    }
-}

I do not recommend using the limited interface when working with a shopping cart. If you are working with a shopping cart, then you should override the PurchaseServiceInterface interface. With it, you can check the availability of all products with one request, there will be no N-queries in the database.

Make a refund

Find the user and check the balance.

php
$user = User::first();
-$user->balance; // 0

Find the goods and check the balance.

php
$item = Item::first();
-$item->balance; // 100

Return of funds!

php
(bool)$user->paid($item); // bool(true)
-(bool)$user->refund($item); // bool(true)
-$item->balance; // 0
-$user->balance; // 100

It's simple!

`,23),l=[h];function p(e,k,r,d,E,g){return a(),i("div",null,l)}const o=s(t,[["render",p]]);export{y as __pageData,o as default}; diff --git a/docs/.vitepress/dist/assets/guide_purchases_refund.md.C91GQMAb.lean.js b/docs/.vitepress/dist/assets/guide_purchases_refund.md.C91GQMAb.lean.js deleted file mode 100644 index c4ccb792d..000000000 --- a/docs/.vitepress/dist/assets/guide_purchases_refund.md.C91GQMAb.lean.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as s,c as i,o as a,a3 as n}from"./chunks/framework.OdeEVNy0.js";const y=JSON.parse('{"title":"Refund","description":"","frontmatter":{},"headers":[],"relativePath":"guide/purchases/refund.md","filePath":"guide/purchases/refund.md"}'),t={name:"guide/purchases/refund.md"},h=n("",23),l=[h];function p(e,k,r,d,E,g){return a(),i("div",null,l)}const o=s(t,[["render",p]]);export{y as __pageData,o as default}; diff --git a/docs/.vitepress/dist/assets/guide_single_cancel.md.RROKg7vE.js b/docs/.vitepress/dist/assets/guide_single_cancel.md.RROKg7vE.js deleted file mode 100644 index e85832026..000000000 --- a/docs/.vitepress/dist/assets/guide_single_cancel.md.RROKg7vE.js +++ /dev/null @@ -1,17 +0,0 @@ -import{_ as s,c as i,o as a,a3 as n}from"./chunks/framework.OdeEVNy0.js";const g=JSON.parse('{"title":"Cancel Transaction","description":"","frontmatter":{},"headers":[],"relativePath":"guide/single/cancel.md","filePath":"guide/single/cancel.md"}'),e={name:"guide/single/cancel.md"},t=n(`

Cancel Transaction

Sometimes you need to cancel a confirmed transaction. For example, money was received or debited by mistake. You can reset the confirmation of a specific transaction.

User Model

Add the CanConfirm trait and Confirmable interface to your User model.

php
use Bavix\\Wallet\\Interfaces\\Confirmable;
-use Bavix\\Wallet\\Interfaces\\Wallet;
-use Bavix\\Wallet\\Traits\\CanConfirm;
-use Bavix\\Wallet\\Traits\\HasWallet;
-
-class UserConfirm extends Model implements Wallet, Confirmable
-{
-    use HasWallet, CanConfirm;
-}

You can only cancel the transaction with the wallet you paid with.

To cancel

Example:

Created a transaction, and after resetting its confirmation.

php
$user->balance; // 0
-$transaction = $user->deposit(100); // confirmed transaction 
-$transaction->confirmed; // bool(true)
-$user->balance; // 100
-
-$user->resetConfirm($transaction); // bool(true)
-$transaction->confirmed; // bool(false)
-
-$user->balance; // 0

It's simple!

`,11),l=[t];function h(p,k,r,d,c,o){return a(),i("div",null,l)}const y=s(e,[["render",h]]);export{g as __pageData,y as default}; diff --git a/docs/.vitepress/dist/assets/guide_single_cancel.md.RROKg7vE.lean.js b/docs/.vitepress/dist/assets/guide_single_cancel.md.RROKg7vE.lean.js deleted file mode 100644 index ca71be429..000000000 --- a/docs/.vitepress/dist/assets/guide_single_cancel.md.RROKg7vE.lean.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as s,c as i,o as a,a3 as n}from"./chunks/framework.OdeEVNy0.js";const g=JSON.parse('{"title":"Cancel Transaction","description":"","frontmatter":{},"headers":[],"relativePath":"guide/single/cancel.md","filePath":"guide/single/cancel.md"}'),e={name:"guide/single/cancel.md"},t=n("",11),l=[t];function h(p,k,r,d,c,o){return a(),i("div",null,l)}const y=s(e,[["render",h]]);export{g as __pageData,y as default}; diff --git a/docs/.vitepress/dist/assets/guide_single_confirm.md.C4zP6Jx7.js b/docs/.vitepress/dist/assets/guide_single_confirm.md.C4zP6Jx7.js deleted file mode 100644 index 6bf0ac8dc..000000000 --- a/docs/.vitepress/dist/assets/guide_single_confirm.md.C4zP6Jx7.js +++ /dev/null @@ -1,17 +0,0 @@ -import{_ as s,c as i,o as a,a3 as n}from"./chunks/framework.OdeEVNy0.js";const g=JSON.parse('{"title":"Confirm Transaction","description":"","frontmatter":{},"headers":[],"relativePath":"guide/single/confirm.md","filePath":"guide/single/confirm.md"}'),t={name:"guide/single/confirm.md"},e=n(`

Confirm Transaction

There are situations when it is necessary to create a transaction without crediting to the wallet or debiting. Laravel-wallet has such a mode of unconfirmed transactions.

You create a transaction without confirmation, and a little later you confirm it.

User Model

Add the CanConfirm trait and Confirmable interface to your User model.

php
use Bavix\\Wallet\\Interfaces\\Confirmable;
-use Bavix\\Wallet\\Interfaces\\Wallet;
-use Bavix\\Wallet\\Traits\\CanConfirm;
-use Bavix\\Wallet\\Traits\\HasWallet;
-
-class UserConfirm extends Model implements Wallet, Confirmable
-{
-    use HasWallet, CanConfirm;
-}

You can only confirm the transaction with the wallet you paid with.

To confirmation

Example:

Sometimes you need to create an operation and confirm its field. That is what this trey does.

php
$user->balance; // 0
-$transaction = $user->deposit(100, null, false); // not confirm
-$transaction->confirmed; // bool(false)
-$user->balance; // 0
-
-$user->confirm($transaction); // bool(true)
-$transaction->confirmed; // bool(true)
-
-$user->balance; // 100

It's simple!

`,12),l=[e];function h(p,k,r,o,d,c){return a(),i("div",null,l)}const y=s(t,[["render",h]]);export{g as __pageData,y as default}; diff --git a/docs/.vitepress/dist/assets/guide_single_confirm.md.C4zP6Jx7.lean.js b/docs/.vitepress/dist/assets/guide_single_confirm.md.C4zP6Jx7.lean.js deleted file mode 100644 index d33bc816c..000000000 --- a/docs/.vitepress/dist/assets/guide_single_confirm.md.C4zP6Jx7.lean.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as s,c as i,o as a,a3 as n}from"./chunks/framework.OdeEVNy0.js";const g=JSON.parse('{"title":"Confirm Transaction","description":"","frontmatter":{},"headers":[],"relativePath":"guide/single/confirm.md","filePath":"guide/single/confirm.md"}'),t={name:"guide/single/confirm.md"},e=n("",12),l=[e];function h(p,k,r,o,d,c){return a(),i("div",null,l)}const y=s(t,[["render",h]]);export{g as __pageData,y as default}; diff --git a/docs/.vitepress/dist/assets/guide_single_credit-limits.md.DlXxFDrQ.js b/docs/.vitepress/dist/assets/guide_single_credit-limits.md.DlXxFDrQ.js deleted file mode 100644 index a7764c37b..000000000 --- a/docs/.vitepress/dist/assets/guide_single_credit-limits.md.DlXxFDrQ.js +++ /dev/null @@ -1,18 +0,0 @@ -import{_ as s,c as i,o as a,a3 as t}from"./chunks/framework.OdeEVNy0.js";const y=JSON.parse('{"title":"Credit Limits","description":"","frontmatter":{},"headers":[],"relativePath":"guide/single/credit-limits.md","filePath":"guide/single/credit-limits.md"}'),n={name:"guide/single/credit-limits.md"},l=t(`

Credit Limits

If you need the ability to have wallets have a credit limit, then this functionality is for you.

The functionality does nothing, it only allows you not to use "force" for most of the operations within the credit limit. You should write the logic for collecting interest, notifications on debts, etc.

By default, the credit limit is zero.

An example of working with a credit limit:

php
/**
- * @var \\Bavix\\Wallet\\Interfaces\\Customer $customer
- * @var \\Bavix\\Wallet\\Models\\Wallet $wallet
- * @var \\Bavix\\Wallet\\Interfaces\\ProductInterface $product
- */
-$wallet = $customer->wallet; // get default wallet
-$wallet->meta['credit'] = 10000; // credit limit
-$wallet->save(); // update credit limit
-
-$wallet->balanceInt; // 0
-$product->getAmountProduct($customer); // 500
-
-$wallet->pay($product); // success
-$wallet->balanceInt; // -500

For multi-wallets when creating:

php
/** @var \\Bavix\\Wallet\\Traits\\HasWallets $user */
-$wallet = $user->createWallet([
-    'name' => 'My Wallet',
-    'meta' => ['credit' => 500],
-]);

It's simple!

`,9),h=[l];function e(p,k,r,d,g,E){return a(),i("div",null,h)}const o=s(n,[["render",e]]);export{y as __pageData,o as default}; diff --git a/docs/.vitepress/dist/assets/guide_single_credit-limits.md.DlXxFDrQ.lean.js b/docs/.vitepress/dist/assets/guide_single_credit-limits.md.DlXxFDrQ.lean.js deleted file mode 100644 index baeee4086..000000000 --- a/docs/.vitepress/dist/assets/guide_single_credit-limits.md.DlXxFDrQ.lean.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as s,c as i,o as a,a3 as t}from"./chunks/framework.OdeEVNy0.js";const y=JSON.parse('{"title":"Credit Limits","description":"","frontmatter":{},"headers":[],"relativePath":"guide/single/credit-limits.md","filePath":"guide/single/credit-limits.md"}'),n={name:"guide/single/credit-limits.md"},l=t("",9),h=[l];function e(p,k,r,d,g,E){return a(),i("div",null,h)}const o=s(n,[["render",e]]);export{y as __pageData,o as default}; diff --git a/docs/.vitepress/dist/assets/guide_single_deposit.md.BcsDGgfM.js b/docs/.vitepress/dist/assets/guide_single_deposit.md.BcsDGgfM.js deleted file mode 100644 index 20869252f..000000000 --- a/docs/.vitepress/dist/assets/guide_single_deposit.md.BcsDGgfM.js +++ /dev/null @@ -1,10 +0,0 @@ -import{_ as s,c as i,o as a,a3 as e}from"./chunks/framework.OdeEVNy0.js";const E=JSON.parse('{"title":"Deposit","description":"","frontmatter":{},"headers":[],"relativePath":"guide/single/deposit.md","filePath":"guide/single/deposit.md"}'),t={name:"guide/single/deposit.md"},n=e(`

Deposit

A deposit is a sum of money which is part of the full price of something, and which you pay when you agree to buy it.

In this case, the Deposit is the replenishment of the wallet.

User Model

It is necessary to expand the model that will have the wallet. This is done in two stages:

  • Add Wallet interface;
  • Add the HasWallet trait;

Let's get started.

php
use Bavix\\Wallet\\Traits\\HasWallet;
-use Bavix\\Wallet\\Interfaces\\Wallet;
-
-class User extends Model implements Wallet
-{
-    use HasWallet;
-}

The model is prepared to work with a wallet.

Make a Deposit

Find user:

php
$user = User::first();

As the user uses HasWallet, he will have balance property. Check the user's balance.

php
$user->balance; // 0
-$user->balanceInt; // 0

The balance is zero, which is what we expected. Put it on his 10 cents account.

php
$user->deposit(10); 
-$user->balance; // 10
-$user->balanceInt; // 10

Wow! The balance is 10 cents, the money is credited.

`,17),l=[n];function h(p,k,d,r,o,c){return a(),i("div",null,l)}const y=s(t,[["render",h]]);export{E as __pageData,y as default}; diff --git a/docs/.vitepress/dist/assets/guide_single_deposit.md.BcsDGgfM.lean.js b/docs/.vitepress/dist/assets/guide_single_deposit.md.BcsDGgfM.lean.js deleted file mode 100644 index 43aec7428..000000000 --- a/docs/.vitepress/dist/assets/guide_single_deposit.md.BcsDGgfM.lean.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as s,c as i,o as a,a3 as e}from"./chunks/framework.OdeEVNy0.js";const E=JSON.parse('{"title":"Deposit","description":"","frontmatter":{},"headers":[],"relativePath":"guide/single/deposit.md","filePath":"guide/single/deposit.md"}'),t={name:"guide/single/deposit.md"},n=e("",17),l=[n];function h(p,k,d,r,o,c){return a(),i("div",null,l)}const y=s(t,[["render",h]]);export{E as __pageData,y as default}; diff --git a/docs/.vitepress/dist/assets/guide_single_exchange.md.B2DS6fIk.js b/docs/.vitepress/dist/assets/guide_single_exchange.md.B2DS6fIk.js deleted file mode 100644 index ba89c7111..000000000 --- a/docs/.vitepress/dist/assets/guide_single_exchange.md.B2DS6fIk.js +++ /dev/null @@ -1,54 +0,0 @@ -import{_ as s,c as i,o as a,a3 as n}from"./chunks/framework.OdeEVNy0.js";const c=JSON.parse('{"title":"Exchange","description":"","frontmatter":{},"headers":[],"relativePath":"guide/single/exchange.md","filePath":"guide/single/exchange.md"}'),h={name:"guide/single/exchange.md"},t=n(`

Exchange

Everyone’s tasks are different and with the help of this functionality you can add exchange rates to your wallets.

The wallet currency is set via meta. Example:

php
$user->createWallet([
-    'name' => 'My USD Wallet',
-    'meta' => ['currency' => 'USD'],
-]);

Service for working with currencies you need to write yourself or use library.

Service for working with currency

We will write a simple service. We will take the data from the array, and not from the database.

php
use Bavix\\Wallet\\Internal\\Service\\MathServiceInterface;
-use Bavix\\Wallet\\Services\\ExchangeServiceInterface;
-
-class MyExchangeService implements ExchangeServiceInterface
-{
-    private array $rates = [
-        'USD' => [
-            'RUB' => 67.61,
-        ],
-    ];
-
-    private MathServiceInterface $mathService;
-
-    public function __construct(MathServiceInterface $mathService)
-    {
-        $this->mathService = $mathService;
-
-        foreach ($this->rates as $from => $rates) {
-            foreach ($rates as $to => $rate) {
-                if (empty($this->rates[$to][$from])) {
-                    $this->rates[$to][$from] = $this->mathService->div(1, $rate);
-                }
-            }
-        }
-    }
-
-    /** @param float|int|string $amount */
-    public function convertTo(string $fromCurrency, string $toCurrency, $amount): string
-    {
-        return $this->mathService->mul($amount, $this->rates[$fromCurrency][$toCurrency] ?? 1);
-    }
-}

Service Registration

The service you wrote must be registered, this is done in the file config/wallet.php.

php
return [
-    // ...
-    'services' => [
-        'exchange' => MyExchangeService::class,
-        // ...
-    ],
-    // ...
-];

Exchange process

Create two wallets.

php
$usd = $user->createWallet([
-    'name' => 'My Dollars',
-    'meta' => ['currency' => 'USD'],
-]);
-
-$rub = $user->createWallet([
-    'name' => 'My Ruble',
-    'meta' => ['currency' => 'RUB'],
-]);

We replenish the ruble wallet with 100 rubles.

php
$rub->deposit(10000);

We will exchange rubles into dollars.

php
$transfer = $rub->exchange($usd, 10000);
-$rub->balance; // 0
-$usd->balance; // 147, это $1.47

Unfortunately, the world is not perfect. You will not get back your 100 rubles.

php
$transfer = $usd->exchange($rub, $usd->balance);
-$usd->balance; // 0
-$rub->balance; // 9938

Due to conversion and mathematical rounding, you lost 62 kopecks. You have 99 rubles 38 kopecks left.


It's simple!

`,23),l=[t];function p(k,e,r,E,g,d){return a(),i("div",null,l)}const F=s(h,[["render",p]]);export{c as __pageData,F as default}; diff --git a/docs/.vitepress/dist/assets/guide_single_exchange.md.B2DS6fIk.lean.js b/docs/.vitepress/dist/assets/guide_single_exchange.md.B2DS6fIk.lean.js deleted file mode 100644 index 542c953ff..000000000 --- a/docs/.vitepress/dist/assets/guide_single_exchange.md.B2DS6fIk.lean.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as s,c as i,o as a,a3 as n}from"./chunks/framework.OdeEVNy0.js";const c=JSON.parse('{"title":"Exchange","description":"","frontmatter":{},"headers":[],"relativePath":"guide/single/exchange.md","filePath":"guide/single/exchange.md"}'),h={name:"guide/single/exchange.md"},t=n("",23),l=[t];function p(k,e,r,E,g,d){return a(),i("div",null,l)}const F=s(h,[["render",p]]);export{c as __pageData,F as default}; diff --git a/docs/.vitepress/dist/assets/guide_single_refresh.md.DyIzlukO.js b/docs/.vitepress/dist/assets/guide_single_refresh.md.DyIzlukO.js deleted file mode 100644 index cb98293d3..000000000 --- a/docs/.vitepress/dist/assets/guide_single_refresh.md.DyIzlukO.js +++ /dev/null @@ -1,15 +0,0 @@ -import{_ as s,c as i,o as a,a3 as e}from"./chunks/framework.OdeEVNy0.js";const E=JSON.parse('{"title":"To refresh the balance","description":"","frontmatter":{},"headers":[],"relativePath":"guide/single/refresh.md","filePath":"guide/single/refresh.md"}'),t={name:"guide/single/refresh.md"},n=e(`

To refresh the balance

There are situations when you create a lot of unconfirmed operations, and then abruptly confirm everything. In this case, the user's balance will not change. You must be forced to refresh the balance.

User Model

It is necessary to expand the model that will have the wallet. This is done in two stages:

  • Add Wallet interface;
  • Add the HasWallet trait;

Let's get started.

php
use Bavix\\Wallet\\Traits\\HasWallet;
-use Bavix\\Wallet\\Interfaces\\Wallet;
-
-class User extends Model implements Wallet
-{
-    use HasWallet;
-}

The model is prepared to work with a wallet.

Get the current balance for your wallet

Let's say the user's balance

php
$user->id; // 5
-$user->balance; // 27

And he has unconfirmed transactions. Confirm all transactions.

sql
update transactions 
-set confirmed=1 
-where confirmed=0 and 
-      payable_type='App\\Models\\User' and 
-      payable_id=5;
--- 212 rows affected in 54 ms

Refresh the balance.

php
$user->balance; // 27
-$user->wallet->refreshBalance();
-$user->balance; // 42

It's simple!

`,16),l=[n];function h(p,k,r,d,c,o){return a(),i("div",null,l)}const y=s(t,[["render",h]]);export{E as __pageData,y as default}; diff --git a/docs/.vitepress/dist/assets/guide_single_refresh.md.DyIzlukO.lean.js b/docs/.vitepress/dist/assets/guide_single_refresh.md.DyIzlukO.lean.js deleted file mode 100644 index 36f5cbe88..000000000 --- a/docs/.vitepress/dist/assets/guide_single_refresh.md.DyIzlukO.lean.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as s,c as i,o as a,a3 as e}from"./chunks/framework.OdeEVNy0.js";const E=JSON.parse('{"title":"To refresh the balance","description":"","frontmatter":{},"headers":[],"relativePath":"guide/single/refresh.md","filePath":"guide/single/refresh.md"}'),t={name:"guide/single/refresh.md"},n=e("",16),l=[n];function h(p,k,r,d,c,o){return a(),i("div",null,l)}const y=s(t,[["render",h]]);export{E as __pageData,y as default}; diff --git a/docs/.vitepress/dist/assets/guide_single_transfer.md.C3u-1njA.js b/docs/.vitepress/dist/assets/guide_single_transfer.md.C3u-1njA.js deleted file mode 100644 index cb2dfd876..000000000 --- a/docs/.vitepress/dist/assets/guide_single_transfer.md.C3u-1njA.js +++ /dev/null @@ -1,32 +0,0 @@ -import{_ as s,c as i,o as a,a3 as n}from"./chunks/framework.OdeEVNy0.js";const y=JSON.parse('{"title":"Transfer","description":"","frontmatter":{},"headers":[],"relativePath":"guide/single/transfer.md","filePath":"guide/single/transfer.md"}'),t={name:"guide/single/transfer.md"},h=n(`

Transfer

Transfer in our system are two well-known Deposit and Withdraw operations that are performed in one transaction.

The transfer takes place between wallets.

User Model

It is necessary to expand the model that will have the wallet. This is done in two stages:

  • Add Wallet interface;
  • Add the HasWallet trait;

Let's get started.

php
use Bavix\\Wallet\\Traits\\HasWallet;
-use Bavix\\Wallet\\Interfaces\\Wallet;
-
-class User extends Model implements Wallet
-{
-    use HasWallet;
-}

The model is prepared to work with a wallet.

Example contract

php
$transfer = $user1->transfer(
-    $user2,
-    511,
-    new Extra(
-        deposit: [
-            'type' => 'extra-deposit',
-        ],
-        withdraw: new Option(
-            [
-                'type' => 'extra-withdraw',
-            ],
-            false // confirmed
-        ),
-        extra: [
-            'msg' => 'hello world',
-        ],
-    )
-);

Make a Transfer

Find user:

php
$first = User::first(); 
-$last = User::orderBy('id', 'desc')->first(); // last user
-$first->getKey() !== $last->getKey(); // true

As the user uses HasWallet, he will have balance property. Check the user's balance.

php
$first->balance; // 100
-$last->balance; // 0

The transfer will be from the first user to the second.

php
$first->transfer($last, 5); 
-$first->balance; // 95
-$last->balance; // 5

It's simple!

Force Transfer

Check the user's balance.

php
$first->balance; // 100
-$last->balance; // 0

The transfer will be from the first user to the second.

php
$first->forceTransfer($last, 500); 
-$first->balance; // -400
-$last->balance; // 500

It's simple!

`,25),e=[h];function l(p,k,r,d,E,g){return a(),i("div",null,e)}const o=s(t,[["render",l]]);export{y as __pageData,o as default}; diff --git a/docs/.vitepress/dist/assets/guide_single_transfer.md.C3u-1njA.lean.js b/docs/.vitepress/dist/assets/guide_single_transfer.md.C3u-1njA.lean.js deleted file mode 100644 index e3afef8f9..000000000 --- a/docs/.vitepress/dist/assets/guide_single_transfer.md.C3u-1njA.lean.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as s,c as i,o as a,a3 as n}from"./chunks/framework.OdeEVNy0.js";const y=JSON.parse('{"title":"Transfer","description":"","frontmatter":{},"headers":[],"relativePath":"guide/single/transfer.md","filePath":"guide/single/transfer.md"}'),t={name:"guide/single/transfer.md"},h=n("",25),e=[h];function l(p,k,r,d,E,g){return a(),i("div",null,e)}const o=s(t,[["render",l]]);export{y as __pageData,o as default}; diff --git a/docs/.vitepress/dist/assets/guide_single_withdraw.md.DOQOK6kp.js b/docs/.vitepress/dist/assets/guide_single_withdraw.md.DOQOK6kp.js deleted file mode 100644 index 4575c1ff2..000000000 --- a/docs/.vitepress/dist/assets/guide_single_withdraw.md.DOQOK6kp.js +++ /dev/null @@ -1,14 +0,0 @@ -import{_ as s,c as i,o as a,a3 as e}from"./chunks/framework.OdeEVNy0.js";const E=JSON.parse('{"title":"Withdraw","description":"","frontmatter":{},"headers":[],"relativePath":"guide/single/withdraw.md","filePath":"guide/single/withdraw.md"}'),t={name:"guide/single/withdraw.md"},n=e(`

Withdraw

When there is enough money in the account, you can transfer/withdraw it or buy something in the system.

Since the currency is virtual, you can buy any services on your website. For example, priority in search results.

User Model

It is necessary to expand the model that will have the wallet. This is done in two stages:

  • Add Wallet interface;
  • Add the HasWallet trait;

Let's get started.

php
use Bavix\\Wallet\\Traits\\HasWallet;
-use Bavix\\Wallet\\Interfaces\\Wallet;
-
-class User extends Model implements Wallet
-{
-    use HasWallet;
-}

The model is prepared to work with a wallet.

Make a Withdraw

Find user:

php
$user = User::first();

As the user uses HasWallet, he will have balance property. Check the user's balance.

php
$user->balance; // 100
-$user->balanceInt; // 100

The balance is not empty, so you can withdraw funds.

php
$user->withdraw(10); 
-$user->balance; // 90
-$user->balanceInt; // 90

It's simple!

Force Withdraw

Forced withdrawal is necessary for those cases when the user has no funds. For example, a fine for spam.

php
$user->balance; // 100
-$user->balanceInt; // 100
-$user->forceWithdraw(101);
-$user->balance; // -1
-$user->balanceInt; // -1

And what will happen if the money is not enough?

There can be two situations:

  • The user's balance is zero, then we get an error Bavix\\Wallet\\Exceptions\\BalanceIsEmpty
  • If the balance is greater than zero, but it is not enough Bavix\\Wallet\\Exceptions\\InsufficientFunds
`,23),h=[n];function l(p,k,r,d,o,c){return a(),i("div",null,h)}const y=s(t,[["render",l]]);export{E as __pageData,y as default}; diff --git a/docs/.vitepress/dist/assets/guide_single_withdraw.md.DOQOK6kp.lean.js b/docs/.vitepress/dist/assets/guide_single_withdraw.md.DOQOK6kp.lean.js deleted file mode 100644 index c134c27da..000000000 --- a/docs/.vitepress/dist/assets/guide_single_withdraw.md.DOQOK6kp.lean.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as s,c as i,o as a,a3 as e}from"./chunks/framework.OdeEVNy0.js";const E=JSON.parse('{"title":"Withdraw","description":"","frontmatter":{},"headers":[],"relativePath":"guide/single/withdraw.md","filePath":"guide/single/withdraw.md"}'),t={name:"guide/single/withdraw.md"},n=e("",23),h=[n];function l(p,k,r,d,o,c){return a(),i("div",null,h)}const y=s(t,[["render",l]]);export{E as __pageData,y as default}; diff --git a/docs/.vitepress/dist/assets/include_composer.md.Bahh6vzC.js b/docs/.vitepress/dist/assets/include_composer.md.Bahh6vzC.js deleted file mode 100644 index 83acd1e24..000000000 --- a/docs/.vitepress/dist/assets/include_composer.md.Bahh6vzC.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as e,c as a,o as s,a3 as o}from"./chunks/framework.OdeEVNy0.js";const u=JSON.parse('{"title":"","description":"","frontmatter":{},"headers":[],"relativePath":"_include/composer.md","filePath":"_include/composer.md"}'),t={name:"_include/composer.md"},r=o('

Composer

The recommended installation method is using Composer.

In your project root just run:

bash
composer req bavix/laravel-wallet

Ensure that you’ve set up your project to autoload Composer-installed packages.

',5),i=[r];function n(p,c,l,d,h,_){return s(),a("div",null,i)}const g=e(t,[["render",n]]);export{u as __pageData,g as default}; diff --git a/docs/.vitepress/dist/assets/include_composer.md.Bahh6vzC.lean.js b/docs/.vitepress/dist/assets/include_composer.md.Bahh6vzC.lean.js deleted file mode 100644 index 2d0aa95a1..000000000 --- a/docs/.vitepress/dist/assets/include_composer.md.Bahh6vzC.lean.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as e,c as a,o as s,a3 as o}from"./chunks/framework.OdeEVNy0.js";const u=JSON.parse('{"title":"","description":"","frontmatter":{},"headers":[],"relativePath":"_include/composer.md","filePath":"_include/composer.md"}'),t={name:"_include/composer.md"},r=o("",5),i=[r];function n(p,c,l,d,h,_){return s(),a("div",null,i)}const g=e(t,[["render",n]]);export{u as __pageData,g as default}; diff --git a/docs/.vitepress/dist/assets/include_eager_loading.md.DEcAtRed.js b/docs/.vitepress/dist/assets/include_eager_loading.md.DEcAtRed.js deleted file mode 100644 index 6a08e4c8a..000000000 --- a/docs/.vitepress/dist/assets/include_eager_loading.md.DEcAtRed.js +++ /dev/null @@ -1,17 +0,0 @@ -import{_ as s,c as i,o as a,a3 as e}from"./chunks/framework.OdeEVNy0.js";const E=JSON.parse('{"title":"","description":"","frontmatter":{},"headers":[],"relativePath":"_include/eager_loading.md","filePath":"_include/eager_loading.md"}'),t={name:"_include/eager_loading.md"},n=e(`

Eager Loading

When accessing Eloquent relationships as properties, the relationship data is "lazy loaded". This means the relationship data is not actually loaded until you first access the property. However, Eloquent can "eager load" relationships at the time you query the parent model. Eager loading alleviates the N + 1 query problem. To illustrate the N + 1 query problem, consider a Wallet model that is related to User:

Add the HasWallet trait and Wallet interface to model.

php
use Bavix\\Wallet\\Traits\\HasWallet;
-use Bavix\\Wallet\\Interfaces\\Wallet;
-
-class User extends Model implements Wallet
-{
-    use HasWallet; // public function wallet(): MorphOne...
-}

Now, let's retrieve all wallets and their users:

php
$users = User::all();
-
-foreach ($users as $user) {
-    // echo $user->wallet->balance;
-    echo $user->balance; // Abbreviated notation
-}

This loop will execute 1 query to retrieve all of the users on the table, then another query for each user to retrieve the wallet. So, if we have 25 users, the code above would run 26 queries: 1 for the original user, and 25 additional queries to retrieve the wallet of each user.

Thankfully, we can use eager loading to reduce this operation to just 2 queries. When querying, you may specify which relationships should be eager loaded using the with method:

php
$users = User::with('wallet')->all();
-
-foreach ($users as $user) {
-    // echo $user->wallet->balance;
-    echo $user->balance; // Abbreviated notation
-}

For this operation, only two queries will be executed.

`,10),l=[n];function h(p,k,r,d,o,g){return a(),i("div",null,l)}const y=s(t,[["render",h]]);export{E as __pageData,y as default}; diff --git a/docs/.vitepress/dist/assets/include_eager_loading.md.DEcAtRed.lean.js b/docs/.vitepress/dist/assets/include_eager_loading.md.DEcAtRed.lean.js deleted file mode 100644 index baeea10a5..000000000 --- a/docs/.vitepress/dist/assets/include_eager_loading.md.DEcAtRed.lean.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as s,c as i,o as a,a3 as e}from"./chunks/framework.OdeEVNy0.js";const E=JSON.parse('{"title":"","description":"","frontmatter":{},"headers":[],"relativePath":"_include/eager_loading.md","filePath":"_include/eager_loading.md"}'),t={name:"_include/eager_loading.md"},n=e("",10),l=[n];function h(p,k,r,d,o,g){return a(),i("div",null,l)}const y=s(t,[["render",h]]);export{E as __pageData,y as default}; diff --git a/docs/.vitepress/dist/assets/include_models_user_simple.md.DWW_tdne.js b/docs/.vitepress/dist/assets/include_models_user_simple.md.DWW_tdne.js deleted file mode 100644 index 7d62b0d11..000000000 --- a/docs/.vitepress/dist/assets/include_models_user_simple.md.DWW_tdne.js +++ /dev/null @@ -1,7 +0,0 @@ -import{_ as s,c as i,o as a,a3 as e}from"./chunks/framework.OdeEVNy0.js";const g=JSON.parse('{"title":"","description":"","frontmatter":{},"headers":[],"relativePath":"_include/models/user_simple.md","filePath":"_include/models/user_simple.md"}'),t={name:"_include/models/user_simple.md"},l=e(`

It is necessary to expand the model that will have the wallet. This is done in two stages:

  • Add Wallet interface;
  • Add the HasWallet trait;

Let's get started.

php
use Bavix\\Wallet\\Traits\\HasWallet;
-use Bavix\\Wallet\\Interfaces\\Wallet;
-
-class User extends Model implements Wallet
-{
-    use HasWallet;
-}

The model is prepared to work with a wallet.

`,5),n=[l];function p(h,d,k,r,c,o){return a(),i("div",null,n)}const m=s(t,[["render",p]]);export{g as __pageData,m as default}; diff --git a/docs/.vitepress/dist/assets/include_models_user_simple.md.DWW_tdne.lean.js b/docs/.vitepress/dist/assets/include_models_user_simple.md.DWW_tdne.lean.js deleted file mode 100644 index fb733cf7d..000000000 --- a/docs/.vitepress/dist/assets/include_models_user_simple.md.DWW_tdne.lean.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as s,c as i,o as a,a3 as e}from"./chunks/framework.OdeEVNy0.js";const g=JSON.parse('{"title":"","description":"","frontmatter":{},"headers":[],"relativePath":"_include/models/user_simple.md","filePath":"_include/models/user_simple.md"}'),t={name:"_include/models/user_simple.md"},l=e("",5),n=[l];function p(h,d,k,r,c,o){return a(),i("div",null,n)}const m=s(t,[["render",p]]);export{g as __pageData,m as default}; diff --git a/docs/.vitepress/dist/assets/include_models_user_simple_float.md.BHKtZpXH.js b/docs/.vitepress/dist/assets/include_models_user_simple_float.md.BHKtZpXH.js deleted file mode 100644 index 0be2656a3..000000000 --- a/docs/.vitepress/dist/assets/include_models_user_simple_float.md.BHKtZpXH.js +++ /dev/null @@ -1,7 +0,0 @@ -import{_ as s,c as a,o as i,a3 as e}from"./chunks/framework.OdeEVNy0.js";const g=JSON.parse('{"title":"","description":"","frontmatter":{},"headers":[],"relativePath":"_include/models/user_simple_float.md","filePath":"_include/models/user_simple_float.md"}'),t={name:"_include/models/user_simple_float.md"},l=e(`

It is necessary to expand the model that will have the wallet. This is done in two stages:

  • Add Wallet interface;
  • Add the HasWalletFloat trait;

Let's get started.

php
use Bavix\\Wallet\\Traits\\HasWalletFloat;
-use Bavix\\Wallet\\Interfaces\\Wallet;
-
-class User extends Model implements Wallet
-{
-    use HasWalletFloat;
-}

The model is prepared to work with a wallet.

`,5),n=[l];function p(h,d,k,r,o,c){return i(),a("div",null,n)}const m=s(t,[["render",p]]);export{g as __pageData,m as default}; diff --git a/docs/.vitepress/dist/assets/include_models_user_simple_float.md.BHKtZpXH.lean.js b/docs/.vitepress/dist/assets/include_models_user_simple_float.md.BHKtZpXH.lean.js deleted file mode 100644 index 439ac566a..000000000 --- a/docs/.vitepress/dist/assets/include_models_user_simple_float.md.BHKtZpXH.lean.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as s,c as a,o as i,a3 as e}from"./chunks/framework.OdeEVNy0.js";const g=JSON.parse('{"title":"","description":"","frontmatter":{},"headers":[],"relativePath":"_include/models/user_simple_float.md","filePath":"_include/models/user_simple_float.md"}'),t={name:"_include/models/user_simple_float.md"},l=e("",5),n=[l];function p(h,d,k,r,o,c){return i(),a("div",null,n)}const m=s(t,[["render",p]]);export{g as __pageData,m as default}; diff --git a/docs/.vitepress/dist/assets/index.md.BjhejX_F.js b/docs/.vitepress/dist/assets/index.md.BjhejX_F.js deleted file mode 100644 index 3cc779586..000000000 --- a/docs/.vitepress/dist/assets/index.md.BjhejX_F.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as e,c as t,o as a}from"./chunks/framework.OdeEVNy0.js";const m=JSON.parse(`{"title":"","description":"","frontmatter":{"layout":"home","hero":{"name":"Laravel Wallet","text":"It's simple!","tagline":"Easy work with virtual wallet","image":{"src":"https://github.com/bavix/laravel-wallet/assets/5111255/24cf424a-0177-4712-b74c-52b4ba88c428","alt":"Laravel Wallet"},"actions":[{"theme":"brand","text":"Getting started","link":"/guide/introduction/"},{"theme":"alt","text":"Upgrade Guide","link":"/guide/introduction/upgrade"}]},"features":[{"title":"Default Wallet","details":"For simple projects when there is no need for multiple wallets.","icon":"💰"},{"title":"Multi wallets","details":"Many wallets for one model. Easy API.","icon":"🎒"},{"title":"Purchases","details":"E-commerce. Create goods and buy them using wallets. There are also shopping carts, availability, taxes and fees.","icon":"🛍️"},{"title":"Exchanges","details":"Exchanges between wallets. Convert currency from one wallet to another.","icon":"💱"},{"title":"Support UUID","details":"Models with UUID are supported.","icon":"❄️"},{"title":"Events","details":"For more complex projects there are events and high performance API.","icon":"📻"}]},"headers":[],"relativePath":"index.md","filePath":"index.md"}`),l={name:"index.md"};function i(o,r,s,n,c,d){return a(),t("div")}const h=e(l,[["render",i]]);export{m as __pageData,h as default}; diff --git a/docs/.vitepress/dist/assets/index.md.BjhejX_F.lean.js b/docs/.vitepress/dist/assets/index.md.BjhejX_F.lean.js deleted file mode 100644 index 3cc779586..000000000 --- a/docs/.vitepress/dist/assets/index.md.BjhejX_F.lean.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as e,c as t,o as a}from"./chunks/framework.OdeEVNy0.js";const m=JSON.parse(`{"title":"","description":"","frontmatter":{"layout":"home","hero":{"name":"Laravel Wallet","text":"It's simple!","tagline":"Easy work with virtual wallet","image":{"src":"https://github.com/bavix/laravel-wallet/assets/5111255/24cf424a-0177-4712-b74c-52b4ba88c428","alt":"Laravel Wallet"},"actions":[{"theme":"brand","text":"Getting started","link":"/guide/introduction/"},{"theme":"alt","text":"Upgrade Guide","link":"/guide/introduction/upgrade"}]},"features":[{"title":"Default Wallet","details":"For simple projects when there is no need for multiple wallets.","icon":"💰"},{"title":"Multi wallets","details":"Many wallets for one model. Easy API.","icon":"🎒"},{"title":"Purchases","details":"E-commerce. Create goods and buy them using wallets. There are also shopping carts, availability, taxes and fees.","icon":"🛍️"},{"title":"Exchanges","details":"Exchanges between wallets. Convert currency from one wallet to another.","icon":"💱"},{"title":"Support UUID","details":"Models with UUID are supported.","icon":"❄️"},{"title":"Events","details":"For more complex projects there are events and high performance API.","icon":"📻"}]},"headers":[],"relativePath":"index.md","filePath":"index.md"}`),l={name:"index.md"};function i(o,r,s,n,c,d){return a(),t("div")}const h=e(l,[["render",i]]);export{m as __pageData,h as default}; diff --git a/docs/.vitepress/dist/assets/inter-italic-cyrillic-ext.r48I6akx.woff2 b/docs/.vitepress/dist/assets/inter-italic-cyrillic-ext.r48I6akx.woff2 deleted file mode 100644 index b6b603d59..000000000 Binary files a/docs/.vitepress/dist/assets/inter-italic-cyrillic-ext.r48I6akx.woff2 and /dev/null differ diff --git a/docs/.vitepress/dist/assets/inter-italic-cyrillic.By2_1cv3.woff2 b/docs/.vitepress/dist/assets/inter-italic-cyrillic.By2_1cv3.woff2 deleted file mode 100644 index def40a4f6..000000000 Binary files a/docs/.vitepress/dist/assets/inter-italic-cyrillic.By2_1cv3.woff2 and /dev/null differ diff --git a/docs/.vitepress/dist/assets/inter-italic-greek-ext.1u6EdAuj.woff2 b/docs/.vitepress/dist/assets/inter-italic-greek-ext.1u6EdAuj.woff2 deleted file mode 100644 index e070c3d30..000000000 Binary files a/docs/.vitepress/dist/assets/inter-italic-greek-ext.1u6EdAuj.woff2 and /dev/null differ diff --git a/docs/.vitepress/dist/assets/inter-italic-greek.DJ8dCoTZ.woff2 b/docs/.vitepress/dist/assets/inter-italic-greek.DJ8dCoTZ.woff2 deleted file mode 100644 index a3c16ca40..000000000 Binary files a/docs/.vitepress/dist/assets/inter-italic-greek.DJ8dCoTZ.woff2 and /dev/null differ diff --git a/docs/.vitepress/dist/assets/inter-italic-latin-ext.CN1xVJS-.woff2 b/docs/.vitepress/dist/assets/inter-italic-latin-ext.CN1xVJS-.woff2 deleted file mode 100644 index 2210a899e..000000000 Binary files a/docs/.vitepress/dist/assets/inter-italic-latin-ext.CN1xVJS-.woff2 and /dev/null differ diff --git a/docs/.vitepress/dist/assets/inter-italic-latin.C2AdPX0b.woff2 b/docs/.vitepress/dist/assets/inter-italic-latin.C2AdPX0b.woff2 deleted file mode 100644 index 790d62dc7..000000000 Binary files a/docs/.vitepress/dist/assets/inter-italic-latin.C2AdPX0b.woff2 and /dev/null differ diff --git a/docs/.vitepress/dist/assets/inter-italic-vietnamese.BSbpV94h.woff2 b/docs/.vitepress/dist/assets/inter-italic-vietnamese.BSbpV94h.woff2 deleted file mode 100644 index 1eec0775a..000000000 Binary files a/docs/.vitepress/dist/assets/inter-italic-vietnamese.BSbpV94h.woff2 and /dev/null differ diff --git a/docs/.vitepress/dist/assets/inter-roman-cyrillic-ext.BBPuwvHQ.woff2 b/docs/.vitepress/dist/assets/inter-roman-cyrillic-ext.BBPuwvHQ.woff2 deleted file mode 100644 index 2cfe61536..000000000 Binary files a/docs/.vitepress/dist/assets/inter-roman-cyrillic-ext.BBPuwvHQ.woff2 and /dev/null differ diff --git a/docs/.vitepress/dist/assets/inter-roman-cyrillic.C5lxZ8CY.woff2 b/docs/.vitepress/dist/assets/inter-roman-cyrillic.C5lxZ8CY.woff2 deleted file mode 100644 index e3886dd14..000000000 Binary files a/docs/.vitepress/dist/assets/inter-roman-cyrillic.C5lxZ8CY.woff2 and /dev/null differ diff --git a/docs/.vitepress/dist/assets/inter-roman-greek-ext.CqjqNYQ-.woff2 b/docs/.vitepress/dist/assets/inter-roman-greek-ext.CqjqNYQ-.woff2 deleted file mode 100644 index 36d67487d..000000000 Binary files a/docs/.vitepress/dist/assets/inter-roman-greek-ext.CqjqNYQ-.woff2 and /dev/null differ diff --git a/docs/.vitepress/dist/assets/inter-roman-greek.BBVDIX6e.woff2 b/docs/.vitepress/dist/assets/inter-roman-greek.BBVDIX6e.woff2 deleted file mode 100644 index 2bed1e85e..000000000 Binary files a/docs/.vitepress/dist/assets/inter-roman-greek.BBVDIX6e.woff2 and /dev/null differ diff --git a/docs/.vitepress/dist/assets/inter-roman-latin-ext.4ZJIpNVo.woff2 b/docs/.vitepress/dist/assets/inter-roman-latin-ext.4ZJIpNVo.woff2 deleted file mode 100644 index 9a8d1e2b5..000000000 Binary files a/docs/.vitepress/dist/assets/inter-roman-latin-ext.4ZJIpNVo.woff2 and /dev/null differ diff --git a/docs/.vitepress/dist/assets/inter-roman-latin.Di8DUHzh.woff2 b/docs/.vitepress/dist/assets/inter-roman-latin.Di8DUHzh.woff2 deleted file mode 100644 index 07d3c53ae..000000000 Binary files a/docs/.vitepress/dist/assets/inter-roman-latin.Di8DUHzh.woff2 and /dev/null differ diff --git a/docs/.vitepress/dist/assets/inter-roman-vietnamese.BjW4sHH5.woff2 b/docs/.vitepress/dist/assets/inter-roman-vietnamese.BjW4sHH5.woff2 deleted file mode 100644 index 57bdc22ae..000000000 Binary files a/docs/.vitepress/dist/assets/inter-roman-vietnamese.BjW4sHH5.woff2 and /dev/null differ diff --git a/docs/.vitepress/dist/assets/style.A34_PHSu.css b/docs/.vitepress/dist/assets/style.A34_PHSu.css deleted file mode 100644 index 6726cdf24..000000000 --- a/docs/.vitepress/dist/assets/style.A34_PHSu.css +++ /dev/null @@ -1 +0,0 @@ -@font-face{font-family:Inter;font-style:normal;font-weight:100 900;font-display:swap;src:url(/laravel-wallet/assets/inter-roman-cyrillic-ext.BBPuwvHQ.woff2) format("woff2");unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:Inter;font-style:normal;font-weight:100 900;font-display:swap;src:url(/laravel-wallet/assets/inter-roman-cyrillic.C5lxZ8CY.woff2) format("woff2");unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:Inter;font-style:normal;font-weight:100 900;font-display:swap;src:url(/laravel-wallet/assets/inter-roman-greek-ext.CqjqNYQ-.woff2) format("woff2");unicode-range:U+1F00-1FFF}@font-face{font-family:Inter;font-style:normal;font-weight:100 900;font-display:swap;src:url(/laravel-wallet/assets/inter-roman-greek.BBVDIX6e.woff2) format("woff2");unicode-range:U+0370-0377,U+037A-037F,U+0384-038A,U+038C,U+038E-03A1,U+03A3-03FF}@font-face{font-family:Inter;font-style:normal;font-weight:100 900;font-display:swap;src:url(/laravel-wallet/assets/inter-roman-vietnamese.BjW4sHH5.woff2) format("woff2");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB}@font-face{font-family:Inter;font-style:normal;font-weight:100 900;font-display:swap;src:url(/laravel-wallet/assets/inter-roman-latin-ext.4ZJIpNVo.woff2) format("woff2");unicode-range:U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Inter;font-style:normal;font-weight:100 900;font-display:swap;src:url(/laravel-wallet/assets/inter-roman-latin.Di8DUHzh.woff2) format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Inter;font-style:italic;font-weight:100 900;font-display:swap;src:url(/laravel-wallet/assets/inter-italic-cyrillic-ext.r48I6akx.woff2) format("woff2");unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:Inter;font-style:italic;font-weight:100 900;font-display:swap;src:url(/laravel-wallet/assets/inter-italic-cyrillic.By2_1cv3.woff2) format("woff2");unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:Inter;font-style:italic;font-weight:100 900;font-display:swap;src:url(/laravel-wallet/assets/inter-italic-greek-ext.1u6EdAuj.woff2) format("woff2");unicode-range:U+1F00-1FFF}@font-face{font-family:Inter;font-style:italic;font-weight:100 900;font-display:swap;src:url(/laravel-wallet/assets/inter-italic-greek.DJ8dCoTZ.woff2) format("woff2");unicode-range:U+0370-0377,U+037A-037F,U+0384-038A,U+038C,U+038E-03A1,U+03A3-03FF}@font-face{font-family:Inter;font-style:italic;font-weight:100 900;font-display:swap;src:url(/laravel-wallet/assets/inter-italic-vietnamese.BSbpV94h.woff2) format("woff2");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB}@font-face{font-family:Inter;font-style:italic;font-weight:100 900;font-display:swap;src:url(/laravel-wallet/assets/inter-italic-latin-ext.CN1xVJS-.woff2) format("woff2");unicode-range:U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Inter;font-style:italic;font-weight:100 900;font-display:swap;src:url(/laravel-wallet/assets/inter-italic-latin.C2AdPX0b.woff2) format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Punctuation SC;font-weight:400;src:local("PingFang SC Regular"),local("Noto Sans CJK SC"),local("Microsoft YaHei");unicode-range:U+201C,U+201D,U+2018,U+2019,U+2E3A,U+2014,U+2013,U+2026,U+00B7,U+007E,U+002F}@font-face{font-family:Punctuation SC;font-weight:500;src:local("PingFang SC Medium"),local("Noto Sans CJK SC"),local("Microsoft YaHei");unicode-range:U+201C,U+201D,U+2018,U+2019,U+2E3A,U+2014,U+2013,U+2026,U+00B7,U+007E,U+002F}@font-face{font-family:Punctuation SC;font-weight:600;src:local("PingFang SC Semibold"),local("Noto Sans CJK SC Bold"),local("Microsoft YaHei Bold");unicode-range:U+201C,U+201D,U+2018,U+2019,U+2E3A,U+2014,U+2013,U+2026,U+00B7,U+007E,U+002F}@font-face{font-family:Punctuation SC;font-weight:700;src:local("PingFang SC Semibold"),local("Noto Sans CJK SC Bold"),local("Microsoft YaHei Bold");unicode-range:U+201C,U+201D,U+2018,U+2019,U+2E3A,U+2014,U+2013,U+2026,U+00B7,U+007E,U+002F}:root{--vp-c-white: #ffffff;--vp-c-black: #000000;--vp-c-neutral: var(--vp-c-black);--vp-c-neutral-inverse: var(--vp-c-white)}.dark{--vp-c-neutral: var(--vp-c-white);--vp-c-neutral-inverse: var(--vp-c-black)}:root{--vp-c-gray-1: #dddde3;--vp-c-gray-2: #e4e4e9;--vp-c-gray-3: #ebebef;--vp-c-gray-soft: rgba(142, 150, 170, .14);--vp-c-indigo-1: #3451b2;--vp-c-indigo-2: #3a5ccc;--vp-c-indigo-3: #5672cd;--vp-c-indigo-soft: rgba(100, 108, 255, .14);--vp-c-purple-1: #6f42c1;--vp-c-purple-2: #7e4cc9;--vp-c-purple-3: #8e5cd9;--vp-c-purple-soft: rgba(159, 122, 234, .14);--vp-c-green-1: #18794e;--vp-c-green-2: #299764;--vp-c-green-3: #30a46c;--vp-c-green-soft: rgba(16, 185, 129, .14);--vp-c-yellow-1: #915930;--vp-c-yellow-2: #946300;--vp-c-yellow-3: #9f6a00;--vp-c-yellow-soft: rgba(234, 179, 8, .14);--vp-c-red-1: #b8272c;--vp-c-red-2: #d5393e;--vp-c-red-3: #e0575b;--vp-c-red-soft: rgba(244, 63, 94, .14);--vp-c-sponsor: #db2777}.dark{--vp-c-gray-1: #515c67;--vp-c-gray-2: #414853;--vp-c-gray-3: #32363f;--vp-c-gray-soft: rgba(101, 117, 133, .16);--vp-c-indigo-1: #a8b1ff;--vp-c-indigo-2: #5c73e7;--vp-c-indigo-3: #3e63dd;--vp-c-indigo-soft: rgba(100, 108, 255, .16);--vp-c-purple-1: #c8abfa;--vp-c-purple-2: #a879e6;--vp-c-purple-3: #8e5cd9;--vp-c-purple-soft: rgba(159, 122, 234, .16);--vp-c-green-1: #3dd68c;--vp-c-green-2: #30a46c;--vp-c-green-3: #298459;--vp-c-green-soft: rgba(16, 185, 129, .16);--vp-c-yellow-1: #f9b44e;--vp-c-yellow-2: #da8b17;--vp-c-yellow-3: #a46a0a;--vp-c-yellow-soft: rgba(234, 179, 8, .16);--vp-c-red-1: #f66f81;--vp-c-red-2: #f14158;--vp-c-red-3: #b62a3c;--vp-c-red-soft: rgba(244, 63, 94, .16)}:root{--vp-c-bg: #ffffff;--vp-c-bg-alt: #f6f6f7;--vp-c-bg-elv: #ffffff;--vp-c-bg-soft: #f6f6f7}.dark{--vp-c-bg: #1b1b1f;--vp-c-bg-alt: #161618;--vp-c-bg-elv: #202127;--vp-c-bg-soft: #202127}:root{--vp-c-border: #c2c2c4;--vp-c-divider: #e2e2e3;--vp-c-gutter: #e2e2e3}.dark{--vp-c-border: #3c3f44;--vp-c-divider: #2e2e32;--vp-c-gutter: #000000}:root{--vp-c-text-1: rgba(60, 60, 67);--vp-c-text-2: rgba(60, 60, 67, .78);--vp-c-text-3: rgba(60, 60, 67, .56)}.dark{--vp-c-text-1: rgba(255, 255, 245, .86);--vp-c-text-2: rgba(235, 235, 245, .6);--vp-c-text-3: rgba(235, 235, 245, .38)}:root{--vp-c-default-1: var(--vp-c-gray-1);--vp-c-default-2: var(--vp-c-gray-2);--vp-c-default-3: var(--vp-c-gray-3);--vp-c-default-soft: var(--vp-c-gray-soft);--vp-c-brand-1: var(--vp-c-indigo-1);--vp-c-brand-2: var(--vp-c-indigo-2);--vp-c-brand-3: var(--vp-c-indigo-3);--vp-c-brand-soft: var(--vp-c-indigo-soft);--vp-c-brand: var(--vp-c-brand-1);--vp-c-tip-1: var(--vp-c-brand-1);--vp-c-tip-2: var(--vp-c-brand-2);--vp-c-tip-3: var(--vp-c-brand-3);--vp-c-tip-soft: var(--vp-c-brand-soft);--vp-c-note-1: var(--vp-c-brand-1);--vp-c-note-2: var(--vp-c-brand-2);--vp-c-note-3: var(--vp-c-brand-3);--vp-c-note-soft: var(--vp-c-brand-soft);--vp-c-success-1: var(--vp-c-green-1);--vp-c-success-2: var(--vp-c-green-2);--vp-c-success-3: var(--vp-c-green-3);--vp-c-success-soft: var(--vp-c-green-soft);--vp-c-important-1: var(--vp-c-purple-1);--vp-c-important-2: var(--vp-c-purple-2);--vp-c-important-3: var(--vp-c-purple-3);--vp-c-important-soft: var(--vp-c-purple-soft);--vp-c-warning-1: var(--vp-c-yellow-1);--vp-c-warning-2: var(--vp-c-yellow-2);--vp-c-warning-3: var(--vp-c-yellow-3);--vp-c-warning-soft: var(--vp-c-yellow-soft);--vp-c-danger-1: var(--vp-c-red-1);--vp-c-danger-2: var(--vp-c-red-2);--vp-c-danger-3: var(--vp-c-red-3);--vp-c-danger-soft: var(--vp-c-red-soft);--vp-c-caution-1: var(--vp-c-red-1);--vp-c-caution-2: var(--vp-c-red-2);--vp-c-caution-3: var(--vp-c-red-3);--vp-c-caution-soft: var(--vp-c-red-soft)}:root{--vp-font-family-base: "Inter", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--vp-font-family-mono: ui-monospace, "Menlo", "Monaco", "Consolas", "Liberation Mono", "Courier New", monospace;font-optical-sizing:auto}:root:where(:lang(zh)){--vp-font-family-base: "Punctuation SC", "Inter", ui-sans-serif, system-ui, "PingFang SC", "Noto Sans CJK SC", "Noto Sans SC", "Heiti SC", "Microsoft YaHei", "DengXian", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"}:root{--vp-shadow-1: 0 1px 2px rgba(0, 0, 0, .04), 0 1px 2px rgba(0, 0, 0, .06);--vp-shadow-2: 0 3px 12px rgba(0, 0, 0, .07), 0 1px 4px rgba(0, 0, 0, .07);--vp-shadow-3: 0 12px 32px rgba(0, 0, 0, .1), 0 2px 6px rgba(0, 0, 0, .08);--vp-shadow-4: 0 14px 44px rgba(0, 0, 0, .12), 0 3px 9px rgba(0, 0, 0, .12);--vp-shadow-5: 0 18px 56px rgba(0, 0, 0, .16), 0 4px 12px rgba(0, 0, 0, .16)}:root{--vp-z-index-footer: 10;--vp-z-index-local-nav: 20;--vp-z-index-nav: 30;--vp-z-index-layout-top: 40;--vp-z-index-backdrop: 50;--vp-z-index-sidebar: 60}@media (min-width: 960px){:root{--vp-z-index-sidebar: 25}}:root{--vp-layout-max-width: 1440px}:root{--vp-header-anchor-symbol: "#"}:root{--vp-code-line-height: 1.7;--vp-code-font-size: .875em;--vp-code-color: var(--vp-c-brand-1);--vp-code-link-color: var(--vp-c-brand-1);--vp-code-link-hover-color: var(--vp-c-brand-2);--vp-code-bg: var(--vp-c-default-soft);--vp-code-block-color: var(--vp-c-text-2);--vp-code-block-bg: var(--vp-c-bg-alt);--vp-code-block-divider-color: var(--vp-c-gutter);--vp-code-lang-color: var(--vp-c-text-3);--vp-code-line-highlight-color: var(--vp-c-default-soft);--vp-code-line-number-color: var(--vp-c-text-3);--vp-code-line-diff-add-color: var(--vp-c-success-soft);--vp-code-line-diff-add-symbol-color: var(--vp-c-success-1);--vp-code-line-diff-remove-color: var(--vp-c-danger-soft);--vp-code-line-diff-remove-symbol-color: var(--vp-c-danger-1);--vp-code-line-warning-color: var(--vp-c-warning-soft);--vp-code-line-error-color: var(--vp-c-danger-soft);--vp-code-copy-code-border-color: var(--vp-c-divider);--vp-code-copy-code-bg: var(--vp-c-bg-soft);--vp-code-copy-code-hover-border-color: var(--vp-c-divider);--vp-code-copy-code-hover-bg: var(--vp-c-bg);--vp-code-copy-code-active-text: var(--vp-c-text-2);--vp-code-copy-copied-text-content: "Copied";--vp-code-tab-divider: var(--vp-code-block-divider-color);--vp-code-tab-text-color: var(--vp-c-text-2);--vp-code-tab-bg: var(--vp-code-block-bg);--vp-code-tab-hover-text-color: var(--vp-c-text-1);--vp-code-tab-active-text-color: var(--vp-c-text-1);--vp-code-tab-active-bar-color: var(--vp-c-brand-1)}:root{--vp-button-brand-border: transparent;--vp-button-brand-text: var(--vp-c-white);--vp-button-brand-bg: var(--vp-c-brand-3);--vp-button-brand-hover-border: transparent;--vp-button-brand-hover-text: var(--vp-c-white);--vp-button-brand-hover-bg: var(--vp-c-brand-2);--vp-button-brand-active-border: transparent;--vp-button-brand-active-text: var(--vp-c-white);--vp-button-brand-active-bg: var(--vp-c-brand-1);--vp-button-alt-border: transparent;--vp-button-alt-text: var(--vp-c-text-1);--vp-button-alt-bg: var(--vp-c-default-3);--vp-button-alt-hover-border: transparent;--vp-button-alt-hover-text: var(--vp-c-text-1);--vp-button-alt-hover-bg: var(--vp-c-default-2);--vp-button-alt-active-border: transparent;--vp-button-alt-active-text: var(--vp-c-text-1);--vp-button-alt-active-bg: var(--vp-c-default-1);--vp-button-sponsor-border: var(--vp-c-text-2);--vp-button-sponsor-text: var(--vp-c-text-2);--vp-button-sponsor-bg: transparent;--vp-button-sponsor-hover-border: var(--vp-c-sponsor);--vp-button-sponsor-hover-text: var(--vp-c-sponsor);--vp-button-sponsor-hover-bg: transparent;--vp-button-sponsor-active-border: var(--vp-c-sponsor);--vp-button-sponsor-active-text: var(--vp-c-sponsor);--vp-button-sponsor-active-bg: transparent}:root{--vp-custom-block-font-size: 14px;--vp-custom-block-code-font-size: 13px;--vp-custom-block-info-border: transparent;--vp-custom-block-info-text: var(--vp-c-text-1);--vp-custom-block-info-bg: var(--vp-c-default-soft);--vp-custom-block-info-code-bg: var(--vp-c-default-soft);--vp-custom-block-note-border: transparent;--vp-custom-block-note-text: var(--vp-c-text-1);--vp-custom-block-note-bg: var(--vp-c-default-soft);--vp-custom-block-note-code-bg: var(--vp-c-default-soft);--vp-custom-block-tip-border: transparent;--vp-custom-block-tip-text: var(--vp-c-text-1);--vp-custom-block-tip-bg: var(--vp-c-tip-soft);--vp-custom-block-tip-code-bg: var(--vp-c-tip-soft);--vp-custom-block-important-border: transparent;--vp-custom-block-important-text: var(--vp-c-text-1);--vp-custom-block-important-bg: var(--vp-c-important-soft);--vp-custom-block-important-code-bg: var(--vp-c-important-soft);--vp-custom-block-warning-border: transparent;--vp-custom-block-warning-text: var(--vp-c-text-1);--vp-custom-block-warning-bg: var(--vp-c-warning-soft);--vp-custom-block-warning-code-bg: var(--vp-c-warning-soft);--vp-custom-block-danger-border: transparent;--vp-custom-block-danger-text: var(--vp-c-text-1);--vp-custom-block-danger-bg: var(--vp-c-danger-soft);--vp-custom-block-danger-code-bg: var(--vp-c-danger-soft);--vp-custom-block-caution-border: transparent;--vp-custom-block-caution-text: var(--vp-c-text-1);--vp-custom-block-caution-bg: var(--vp-c-caution-soft);--vp-custom-block-caution-code-bg: var(--vp-c-caution-soft);--vp-custom-block-details-border: var(--vp-custom-block-info-border);--vp-custom-block-details-text: var(--vp-custom-block-info-text);--vp-custom-block-details-bg: var(--vp-custom-block-info-bg);--vp-custom-block-details-code-bg: var(--vp-custom-block-info-code-bg)}:root{--vp-input-border-color: var(--vp-c-border);--vp-input-bg-color: var(--vp-c-bg-alt);--vp-input-switch-bg-color: var(--vp-c-default-soft)}:root{--vp-nav-height: 64px;--vp-nav-bg-color: var(--vp-c-bg);--vp-nav-screen-bg-color: var(--vp-c-bg);--vp-nav-logo-height: 24px}.hide-nav{--vp-nav-height: 0px}.hide-nav .VPSidebar{--vp-nav-height: 22px}:root{--vp-local-nav-bg-color: var(--vp-c-bg)}:root{--vp-sidebar-width: 272px;--vp-sidebar-bg-color: var(--vp-c-bg-alt)}:root{--vp-backdrop-bg-color: rgba(0, 0, 0, .6)}:root{--vp-home-hero-name-color: var(--vp-c-brand-1);--vp-home-hero-name-background: transparent;--vp-home-hero-image-background-image: none;--vp-home-hero-image-filter: none}:root{--vp-badge-info-border: transparent;--vp-badge-info-text: var(--vp-c-text-2);--vp-badge-info-bg: var(--vp-c-default-soft);--vp-badge-tip-border: transparent;--vp-badge-tip-text: var(--vp-c-tip-1);--vp-badge-tip-bg: var(--vp-c-tip-soft);--vp-badge-warning-border: transparent;--vp-badge-warning-text: var(--vp-c-warning-1);--vp-badge-warning-bg: var(--vp-c-warning-soft);--vp-badge-danger-border: transparent;--vp-badge-danger-text: var(--vp-c-danger-1);--vp-badge-danger-bg: var(--vp-c-danger-soft)}:root{--vp-carbon-ads-text-color: var(--vp-c-text-1);--vp-carbon-ads-poweredby-color: var(--vp-c-text-2);--vp-carbon-ads-bg-color: var(--vp-c-bg-soft);--vp-carbon-ads-hover-text-color: var(--vp-c-brand-1);--vp-carbon-ads-hover-poweredby-color: var(--vp-c-text-1)}:root{--vp-local-search-bg: var(--vp-c-bg);--vp-local-search-result-bg: var(--vp-c-bg);--vp-local-search-result-border: var(--vp-c-divider);--vp-local-search-result-selected-bg: var(--vp-c-bg);--vp-local-search-result-selected-border: var(--vp-c-brand-1);--vp-local-search-highlight-bg: var(--vp-c-brand-1);--vp-local-search-highlight-text: var(--vp-c-neutral-inverse)}@media (prefers-reduced-motion: reduce){*,:before,:after{animation-delay:-1ms!important;animation-duration:1ms!important;animation-iteration-count:1!important;background-attachment:initial!important;scroll-behavior:auto!important;transition-duration:0s!important;transition-delay:0s!important}}*,:before,:after{box-sizing:border-box}html{line-height:1.4;font-size:16px;-webkit-text-size-adjust:100%}html.dark{color-scheme:dark}body{margin:0;width:100%;min-width:320px;min-height:100vh;line-height:24px;font-family:var(--vp-font-family-base);font-size:16px;font-weight:400;color:var(--vp-c-text-1);background-color:var(--vp-c-bg);font-synthesis:style;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}main{display:block}h1,h2,h3,h4,h5,h6{margin:0;line-height:24px;font-size:16px;font-weight:400}p{margin:0}strong,b{font-weight:600}a,area,button,[role=button],input,label,select,summary,textarea{touch-action:manipulation}a{color:inherit;text-decoration:inherit}ol,ul{list-style:none;margin:0;padding:0}blockquote{margin:0}pre,code,kbd,samp{font-family:var(--vp-font-family-mono)}img,svg,video,canvas,audio,iframe,embed,object{display:block}figure{margin:0}img,video{max-width:100%;height:auto}button,input,optgroup,select,textarea{border:0;padding:0;line-height:inherit;color:inherit}button{padding:0;font-family:inherit;background-color:transparent;background-image:none}button:enabled,[role=button]:enabled{cursor:pointer}button:focus,button:focus-visible{outline:1px dotted;outline:4px auto -webkit-focus-ring-color}button:focus:not(:focus-visible){outline:none!important}input:focus,textarea:focus,select:focus{outline:none}table{border-collapse:collapse}input{background-color:transparent}input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:var(--vp-c-text-3)}input::-ms-input-placeholder,textarea::-ms-input-placeholder{color:var(--vp-c-text-3)}input::placeholder,textarea::placeholder{color:var(--vp-c-text-3)}input::-webkit-outer-spin-button,input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}input[type=number]{-moz-appearance:textfield}textarea{resize:vertical}select{-webkit-appearance:none}fieldset{margin:0;padding:0}h1,h2,h3,h4,h5,h6,li,p{overflow-wrap:break-word}vite-error-overlay{z-index:9999}mjx-container{overflow-x:auto}mjx-container>svg{display:inline-block;margin:auto}[class^=vpi-],[class*=" vpi-"],.vp-icon{width:1em;height:1em}[class^=vpi-].bg,[class*=" vpi-"].bg,.vp-icon.bg{background-size:100% 100%;background-color:transparent}[class^=vpi-]:not(.bg),[class*=" vpi-"]:not(.bg),.vp-icon:not(.bg){-webkit-mask:var(--icon) no-repeat;mask:var(--icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit}.vpi-align-left{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M21 6H3M15 12H3M17 18H3'/%3E%3C/svg%3E")}.vpi-arrow-right,.vpi-arrow-down,.vpi-arrow-left,.vpi-arrow-up{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7'/%3E%3C/svg%3E")}.vpi-chevron-right,.vpi-chevron-down,.vpi-chevron-left,.vpi-chevron-up{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='m9 18 6-6-6-6'/%3E%3C/svg%3E")}.vpi-chevron-down,.vpi-arrow-down{transform:rotate(90deg)}.vpi-chevron-left,.vpi-arrow-left{transform:rotate(180deg)}.vpi-chevron-up,.vpi-arrow-up{transform:rotate(-90deg)}.vpi-square-pen{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M12 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7'/%3E%3Cpath d='M18.375 2.625a2.121 2.121 0 1 1 3 3L12 15l-4 1 1-4Z'/%3E%3C/svg%3E")}.vpi-plus{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M5 12h14M12 5v14'/%3E%3C/svg%3E")}.vpi-sun{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Cpath d='M12 2v2M12 20v2M4.93 4.93l1.41 1.41M17.66 17.66l1.41 1.41M2 12h2M20 12h2M6.34 17.66l-1.41 1.41M19.07 4.93l-1.41 1.41'/%3E%3C/svg%3E")}.vpi-moon{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9Z'/%3E%3C/svg%3E")}.vpi-more-horizontal{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='1'/%3E%3Ccircle cx='19' cy='12' r='1'/%3E%3Ccircle cx='5' cy='12' r='1'/%3E%3C/svg%3E")}.vpi-languages{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='m5 8 6 6M4 14l6-6 2-3M2 5h12M7 2h1M22 22l-5-10-5 10M14 18h6'/%3E%3C/svg%3E")}.vpi-heart{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M19 14c1.49-1.46 3-3.21 3-5.5A5.5 5.5 0 0 0 16.5 3c-1.76 0-3 .5-4.5 2-1.5-1.5-2.74-2-4.5-2A5.5 5.5 0 0 0 2 8.5c0 2.3 1.5 4.05 3 5.5l7 7Z'/%3E%3C/svg%3E")}.vpi-search{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.3-4.3'/%3E%3C/svg%3E")}.vpi-layout-list{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'%3E%3Crect width='7' height='7' x='3' y='3' rx='1'/%3E%3Crect width='7' height='7' x='3' y='14' rx='1'/%3E%3Cpath d='M14 4h7M14 9h7M14 15h7M14 20h7'/%3E%3C/svg%3E")}.vpi-delete{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M20 5H9l-7 7 7 7h11a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2ZM18 9l-6 6M12 9l6 6'/%3E%3C/svg%3E")}.vpi-corner-down-left{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='m9 10-5 5 5 5'/%3E%3Cpath d='M20 4v7a4 4 0 0 1-4 4H4'/%3E%3C/svg%3E")}:root{--vp-icon-copy: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='rgba(128,128,128,1)' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'%3E%3Crect width='8' height='4' x='8' y='2' rx='1' ry='1'/%3E%3Cpath d='M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2'/%3E%3C/svg%3E");--vp-icon-copied: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='rgba(128,128,128,1)' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'%3E%3Crect width='8' height='4' x='8' y='2' rx='1' ry='1'/%3E%3Cpath d='M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2'/%3E%3Cpath d='m9 14 2 2 4-4'/%3E%3C/svg%3E")}.vpi-social-discord{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20.317 4.37a19.791 19.791 0 0 0-4.885-1.515.074.074 0 0 0-.079.037c-.21.375-.444.864-.608 1.25a18.27 18.27 0 0 0-5.487 0 12.64 12.64 0 0 0-.617-1.25.077.077 0 0 0-.079-.037A19.736 19.736 0 0 0 3.677 4.37a.07.07 0 0 0-.032.027C.533 9.046-.32 13.58.099 18.057a.082.082 0 0 0 .031.057 19.9 19.9 0 0 0 5.993 3.03.078.078 0 0 0 .084-.028c.462-.63.874-1.295 1.226-1.994a.076.076 0 0 0-.041-.106 13.107 13.107 0 0 1-1.872-.892.077.077 0 0 1-.008-.128 10.2 10.2 0 0 0 .372-.292.074.074 0 0 1 .077-.01c3.928 1.793 8.18 1.793 12.062 0a.074.074 0 0 1 .078.01c.12.098.246.198.373.292a.077.077 0 0 1-.006.127 12.299 12.299 0 0 1-1.873.892.077.077 0 0 0-.041.107c.36.698.772 1.362 1.225 1.993a.076.076 0 0 0 .084.028 19.839 19.839 0 0 0 6.002-3.03.077.077 0 0 0 .032-.054c.5-5.177-.838-9.674-3.549-13.66a.061.061 0 0 0-.031-.03zM8.02 15.33c-1.183 0-2.157-1.085-2.157-2.419 0-1.333.956-2.419 2.157-2.419 1.21 0 2.176 1.096 2.157 2.42 0 1.333-.956 2.418-2.157 2.418zm7.975 0c-1.183 0-2.157-1.085-2.157-2.419 0-1.333.955-2.419 2.157-2.419 1.21 0 2.176 1.096 2.157 2.42 0 1.333-.946 2.418-2.157 2.418Z'/%3E%3C/svg%3E")}.vpi-social-facebook{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9.101 23.691v-7.98H6.627v-3.667h2.474v-1.58c0-4.085 1.848-5.978 5.858-5.978.401 0 .955.042 1.468.103a8.68 8.68 0 0 1 1.141.195v3.325a8.623 8.623 0 0 0-.653-.036 26.805 26.805 0 0 0-.733-.009c-.707 0-1.259.096-1.675.309a1.686 1.686 0 0 0-.679.622c-.258.42-.374.995-.374 1.752v1.297h3.919l-.386 2.103-.287 1.564h-3.246v8.245C19.396 23.238 24 18.179 24 12.044c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.628 3.874 10.35 9.101 11.647Z'/%3E%3C/svg%3E")}.vpi-social-github{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12'/%3E%3C/svg%3E")}.vpi-social-instagram{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7.03.084c-1.277.06-2.149.264-2.91.563a5.874 5.874 0 0 0-2.124 1.388 5.878 5.878 0 0 0-1.38 2.127C.321 4.926.12 5.8.064 7.076.008 8.354-.005 8.764.001 12.023c.007 3.259.021 3.667.083 4.947.061 1.277.264 2.149.563 2.911.308.789.72 1.457 1.388 2.123a5.872 5.872 0 0 0 2.129 1.38c.763.295 1.636.496 2.913.552 1.278.056 1.689.069 4.947.063 3.257-.007 3.668-.021 4.947-.082 1.28-.06 2.147-.265 2.91-.563a5.881 5.881 0 0 0 2.123-1.388 5.881 5.881 0 0 0 1.38-2.129c.295-.763.496-1.636.551-2.912.056-1.28.07-1.69.063-4.948-.006-3.258-.02-3.667-.081-4.947-.06-1.28-.264-2.148-.564-2.911a5.892 5.892 0 0 0-1.387-2.123 5.857 5.857 0 0 0-2.128-1.38C19.074.322 18.202.12 16.924.066 15.647.009 15.236-.006 11.977 0 8.718.008 8.31.021 7.03.084m.14 21.693c-1.17-.05-1.805-.245-2.228-.408a3.736 3.736 0 0 1-1.382-.895 3.695 3.695 0 0 1-.9-1.378c-.165-.423-.363-1.058-.417-2.228-.06-1.264-.072-1.644-.08-4.848-.006-3.204.006-3.583.061-4.848.05-1.169.246-1.805.408-2.228.216-.561.477-.96.895-1.382a3.705 3.705 0 0 1 1.379-.9c.423-.165 1.057-.361 2.227-.417 1.265-.06 1.644-.072 4.848-.08 3.203-.006 3.583.006 4.85.062 1.168.05 1.804.244 2.227.408.56.216.96.475 1.382.895.421.42.681.817.9 1.378.165.422.362 1.056.417 2.227.06 1.265.074 1.645.08 4.848.005 3.203-.006 3.583-.061 4.848-.051 1.17-.245 1.805-.408 2.23-.216.56-.477.96-.896 1.38a3.705 3.705 0 0 1-1.378.9c-.422.165-1.058.362-2.226.418-1.266.06-1.645.072-4.85.079-3.204.007-3.582-.006-4.848-.06m9.783-16.192a1.44 1.44 0 1 0 1.437-1.442 1.44 1.44 0 0 0-1.437 1.442M5.839 12.012a6.161 6.161 0 1 0 12.323-.024 6.162 6.162 0 0 0-12.323.024M8 12.008A4 4 0 1 1 12.008 16 4 4 0 0 1 8 12.008'/%3E%3C/svg%3E")}.vpi-social-linkedin{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433a2.062 2.062 0 0 1-2.063-2.065 2.064 2.064 0 1 1 2.063 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z'/%3E%3C/svg%3E")}.vpi-social-mastodon{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M23.268 5.313c-.35-2.578-2.617-4.61-5.304-5.004C17.51.242 15.792 0 11.813 0h-.03c-3.98 0-4.835.242-5.288.309C3.882.692 1.496 2.518.917 5.127.64 6.412.61 7.837.661 9.143c.074 1.874.088 3.745.26 5.611.118 1.24.325 2.47.62 3.68.55 2.237 2.777 4.098 4.96 4.857 2.336.792 4.849.923 7.256.38.265-.061.527-.132.786-.213.585-.184 1.27-.39 1.774-.753a.057.057 0 0 0 .023-.043v-1.809a.052.052 0 0 0-.02-.041.053.053 0 0 0-.046-.01 20.282 20.282 0 0 1-4.709.545c-2.73 0-3.463-1.284-3.674-1.818a5.593 5.593 0 0 1-.319-1.433.053.053 0 0 1 .066-.054c1.517.363 3.072.546 4.632.546.376 0 .75 0 1.125-.01 1.57-.044 3.224-.124 4.768-.422.038-.008.077-.015.11-.024 2.435-.464 4.753-1.92 4.989-5.604.008-.145.03-1.52.03-1.67.002-.512.167-3.63-.024-5.545zm-3.748 9.195h-2.561V8.29c0-1.309-.55-1.976-1.67-1.976-1.23 0-1.846.79-1.846 2.35v3.403h-2.546V8.663c0-1.56-.617-2.35-1.848-2.35-1.112 0-1.668.668-1.67 1.977v6.218H4.822V8.102c0-1.31.337-2.35 1.011-3.12.696-.77 1.608-1.164 2.74-1.164 1.311 0 2.302.5 2.962 1.498l.638 1.06.638-1.06c.66-.999 1.65-1.498 2.96-1.498 1.13 0 2.043.395 2.74 1.164.675.77 1.012 1.81 1.012 3.12z'/%3E%3C/svg%3E")}.vpi-social-npm{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M1.763 0C.786 0 0 .786 0 1.763v20.474C0 23.214.786 24 1.763 24h20.474c.977 0 1.763-.786 1.763-1.763V1.763C24 .786 23.214 0 22.237 0zM5.13 5.323l13.837.019-.009 13.836h-3.464l.01-10.382h-3.456L12.04 19.17H5.113z'/%3E%3C/svg%3E")}.vpi-social-slack{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5.042 15.165a2.528 2.528 0 0 1-2.52 2.523A2.528 2.528 0 0 1 0 15.165a2.527 2.527 0 0 1 2.522-2.52h2.52v2.52zm1.271 0a2.527 2.527 0 0 1 2.521-2.52 2.527 2.527 0 0 1 2.521 2.52v6.313A2.528 2.528 0 0 1 8.834 24a2.528 2.528 0 0 1-2.521-2.522v-6.313zM8.834 5.042a2.528 2.528 0 0 1-2.521-2.52A2.528 2.528 0 0 1 8.834 0a2.528 2.528 0 0 1 2.521 2.522v2.52H8.834zm0 1.271a2.528 2.528 0 0 1 2.521 2.521 2.528 2.528 0 0 1-2.521 2.521H2.522A2.528 2.528 0 0 1 0 8.834a2.528 2.528 0 0 1 2.522-2.521h6.312zm10.122 2.521a2.528 2.528 0 0 1 2.522-2.521A2.528 2.528 0 0 1 24 8.834a2.528 2.528 0 0 1-2.522 2.521h-2.522V8.834zm-1.268 0a2.528 2.528 0 0 1-2.523 2.521 2.527 2.527 0 0 1-2.52-2.521V2.522A2.527 2.527 0 0 1 15.165 0a2.528 2.528 0 0 1 2.523 2.522v6.312zm-2.523 10.122a2.528 2.528 0 0 1 2.523 2.522A2.528 2.528 0 0 1 15.165 24a2.527 2.527 0 0 1-2.52-2.522v-2.522h2.52zm0-1.268a2.527 2.527 0 0 1-2.52-2.523 2.526 2.526 0 0 1 2.52-2.52h6.313A2.527 2.527 0 0 1 24 15.165a2.528 2.528 0 0 1-2.522 2.523h-6.313z'/%3E%3C/svg%3E")}.vpi-social-twitter,.vpi-social-x{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18.901 1.153h3.68l-8.04 9.19L24 22.846h-7.406l-5.8-7.584-6.638 7.584H.474l8.6-9.83L0 1.154h7.594l5.243 6.932ZM17.61 20.644h2.039L6.486 3.24H4.298Z'/%3E%3C/svg%3E")}.vpi-social-youtube{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M23.498 6.186a3.016 3.016 0 0 0-2.122-2.136C19.505 3.545 12 3.545 12 3.545s-7.505 0-9.377.505A3.017 3.017 0 0 0 .502 6.186C0 8.07 0 12 0 12s0 3.93.502 5.814a3.016 3.016 0 0 0 2.122 2.136c1.871.505 9.376.505 9.376.505s7.505 0 9.377-.505a3.015 3.015 0 0 0 2.122-2.136C24 15.93 24 12 24 12s0-3.93-.502-5.814zM9.545 15.568V8.432L15.818 12l-6.273 3.568z'/%3E%3C/svg%3E")}.visually-hidden{position:absolute;width:1px;height:1px;white-space:nowrap;clip:rect(0 0 0 0);clip-path:inset(50%);overflow:hidden}.custom-block{border:1px solid transparent;border-radius:8px;padding:16px 16px 8px;line-height:24px;font-size:var(--vp-custom-block-font-size);color:var(--vp-c-text-2)}.custom-block.info{border-color:var(--vp-custom-block-info-border);color:var(--vp-custom-block-info-text);background-color:var(--vp-custom-block-info-bg)}.custom-block.info a,.custom-block.info code{color:var(--vp-c-brand-1)}.custom-block.info a:hover,.custom-block.info a:hover>code{color:var(--vp-c-brand-2)}.custom-block.info code{background-color:var(--vp-custom-block-info-code-bg)}.custom-block.note{border-color:var(--vp-custom-block-note-border);color:var(--vp-custom-block-note-text);background-color:var(--vp-custom-block-note-bg)}.custom-block.note a,.custom-block.note code{color:var(--vp-c-brand-1)}.custom-block.note a:hover,.custom-block.note a:hover>code{color:var(--vp-c-brand-2)}.custom-block.note code{background-color:var(--vp-custom-block-note-code-bg)}.custom-block.tip{border-color:var(--vp-custom-block-tip-border);color:var(--vp-custom-block-tip-text);background-color:var(--vp-custom-block-tip-bg)}.custom-block.tip a,.custom-block.tip code{color:var(--vp-c-tip-1)}.custom-block.tip a:hover,.custom-block.tip a:hover>code{color:var(--vp-c-tip-2)}.custom-block.tip code{background-color:var(--vp-custom-block-tip-code-bg)}.custom-block.important{border-color:var(--vp-custom-block-important-border);color:var(--vp-custom-block-important-text);background-color:var(--vp-custom-block-important-bg)}.custom-block.important a,.custom-block.important code{color:var(--vp-c-important-1)}.custom-block.important a:hover,.custom-block.important a:hover>code{color:var(--vp-c-important-2)}.custom-block.important code{background-color:var(--vp-custom-block-important-code-bg)}.custom-block.warning{border-color:var(--vp-custom-block-warning-border);color:var(--vp-custom-block-warning-text);background-color:var(--vp-custom-block-warning-bg)}.custom-block.warning a,.custom-block.warning code{color:var(--vp-c-warning-1)}.custom-block.warning a:hover,.custom-block.warning a:hover>code{color:var(--vp-c-warning-2)}.custom-block.warning code{background-color:var(--vp-custom-block-warning-code-bg)}.custom-block.danger{border-color:var(--vp-custom-block-danger-border);color:var(--vp-custom-block-danger-text);background-color:var(--vp-custom-block-danger-bg)}.custom-block.danger a,.custom-block.danger code{color:var(--vp-c-danger-1)}.custom-block.danger a:hover,.custom-block.danger a:hover>code{color:var(--vp-c-danger-2)}.custom-block.danger code{background-color:var(--vp-custom-block-danger-code-bg)}.custom-block.caution{border-color:var(--vp-custom-block-caution-border);color:var(--vp-custom-block-caution-text);background-color:var(--vp-custom-block-caution-bg)}.custom-block.caution a,.custom-block.caution code{color:var(--vp-c-caution-1)}.custom-block.caution a:hover,.custom-block.caution a:hover>code{color:var(--vp-c-caution-2)}.custom-block.caution code{background-color:var(--vp-custom-block-caution-code-bg)}.custom-block.details{border-color:var(--vp-custom-block-details-border);color:var(--vp-custom-block-details-text);background-color:var(--vp-custom-block-details-bg)}.custom-block.details a{color:var(--vp-c-brand-1)}.custom-block.details a:hover,.custom-block.details a:hover>code{color:var(--vp-c-brand-2)}.custom-block.details code{background-color:var(--vp-custom-block-details-code-bg)}.custom-block-title{font-weight:600}.custom-block p+p{margin:8px 0}.custom-block.details summary{margin:0 0 8px;font-weight:700;cursor:pointer;-webkit-user-select:none;user-select:none}.custom-block.details summary+p{margin:8px 0}.custom-block a{color:inherit;font-weight:600;text-decoration:underline;text-underline-offset:2px;transition:opacity .25s}.custom-block a:hover{opacity:.75}.custom-block code{font-size:var(--vp-custom-block-code-font-size)}.custom-block.custom-block th,.custom-block.custom-block blockquote>p{font-size:var(--vp-custom-block-font-size);color:inherit}.dark .vp-code span{color:var(--shiki-dark, inherit)}html:not(.dark) .vp-code span{color:var(--shiki-light, inherit)}.vp-code-group{margin-top:16px}.vp-code-group .tabs{position:relative;display:flex;margin-right:-24px;margin-left:-24px;padding:0 12px;background-color:var(--vp-code-tab-bg);overflow-x:auto;overflow-y:hidden;box-shadow:inset 0 -1px var(--vp-code-tab-divider)}@media (min-width: 640px){.vp-code-group .tabs{margin-right:0;margin-left:0;border-radius:8px 8px 0 0}}.vp-code-group .tabs input{position:fixed;opacity:0;pointer-events:none}.vp-code-group .tabs label{position:relative;display:inline-block;border-bottom:1px solid transparent;padding:0 12px;line-height:48px;font-size:14px;font-weight:500;color:var(--vp-code-tab-text-color);white-space:nowrap;cursor:pointer;transition:color .25s}.vp-code-group .tabs label:after{position:absolute;right:8px;bottom:-1px;left:8px;z-index:1;height:2px;border-radius:2px;content:"";background-color:transparent;transition:background-color .25s}.vp-code-group label:hover{color:var(--vp-code-tab-hover-text-color)}.vp-code-group input:checked+label{color:var(--vp-code-tab-active-text-color)}.vp-code-group input:checked+label:after{background-color:var(--vp-code-tab-active-bar-color)}.vp-code-group div[class*=language-],.vp-block{display:none;margin-top:0!important;border-top-left-radius:0!important;border-top-right-radius:0!important}.vp-code-group div[class*=language-].active,.vp-block.active{display:block}.vp-block{padding:20px 24px}.vp-doc h1,.vp-doc h2,.vp-doc h3,.vp-doc h4,.vp-doc h5,.vp-doc h6{position:relative;font-weight:600;outline:none}.vp-doc h1{letter-spacing:-.02em;line-height:40px;font-size:28px}.vp-doc h2{margin:48px 0 16px;border-top:1px solid var(--vp-c-divider);padding-top:24px;letter-spacing:-.02em;line-height:32px;font-size:24px}.vp-doc h3{margin:32px 0 0;letter-spacing:-.01em;line-height:28px;font-size:20px}.vp-doc .header-anchor{position:absolute;top:0;left:0;margin-left:-.87em;font-weight:500;-webkit-user-select:none;user-select:none;opacity:0;text-decoration:none;transition:color .25s,opacity .25s}.vp-doc .header-anchor:before{content:var(--vp-header-anchor-symbol)}.vp-doc h1:hover .header-anchor,.vp-doc h1 .header-anchor:focus,.vp-doc h2:hover .header-anchor,.vp-doc h2 .header-anchor:focus,.vp-doc h3:hover .header-anchor,.vp-doc h3 .header-anchor:focus,.vp-doc h4:hover .header-anchor,.vp-doc h4 .header-anchor:focus,.vp-doc h5:hover .header-anchor,.vp-doc h5 .header-anchor:focus,.vp-doc h6:hover .header-anchor,.vp-doc h6 .header-anchor:focus{opacity:1}@media (min-width: 768px){.vp-doc h1{letter-spacing:-.02em;line-height:40px;font-size:32px}}.vp-doc h2 .header-anchor{top:24px}.vp-doc p,.vp-doc summary{margin:16px 0}.vp-doc p{line-height:28px}.vp-doc blockquote{margin:16px 0;border-left:2px solid var(--vp-c-divider);padding-left:16px;transition:border-color .5s}.vp-doc blockquote>p{margin:0;font-size:16px;color:var(--vp-c-text-2);transition:color .5s}.vp-doc a{font-weight:500;color:var(--vp-c-brand-1);text-decoration:underline;text-underline-offset:2px;transition:color .25s,opacity .25s}.vp-doc a:hover{color:var(--vp-c-brand-2)}.vp-doc strong{font-weight:600}.vp-doc ul,.vp-doc ol{padding-left:1.25rem;margin:16px 0}.vp-doc ul{list-style:disc}.vp-doc ol{list-style:decimal}.vp-doc li+li{margin-top:8px}.vp-doc li>ol,.vp-doc li>ul{margin:8px 0 0}.vp-doc table{display:block;border-collapse:collapse;margin:20px 0;overflow-x:auto}.vp-doc tr{background-color:var(--vp-c-bg);border-top:1px solid var(--vp-c-divider);transition:background-color .5s}.vp-doc tr:nth-child(2n){background-color:var(--vp-c-bg-soft)}.vp-doc th,.vp-doc td{border:1px solid var(--vp-c-divider);padding:8px 16px}.vp-doc th{text-align:left;font-size:14px;font-weight:600;color:var(--vp-c-text-2);background-color:var(--vp-c-bg-soft)}.vp-doc td{font-size:14px}.vp-doc hr{margin:16px 0;border:none;border-top:1px solid var(--vp-c-divider)}.vp-doc .custom-block{margin:16px 0}.vp-doc .custom-block p{margin:8px 0;line-height:24px}.vp-doc .custom-block p:first-child{margin:0}.vp-doc .custom-block div[class*=language-]{margin:8px 0;border-radius:8px}.vp-doc .custom-block div[class*=language-] code{font-weight:400;background-color:transparent}.vp-doc .custom-block .vp-code-group .tabs{margin:0;border-radius:8px 8px 0 0}.vp-doc :not(pre,h1,h2,h3,h4,h5,h6)>code{font-size:var(--vp-code-font-size);color:var(--vp-code-color)}.vp-doc :not(pre)>code{border-radius:4px;padding:3px 6px;background-color:var(--vp-code-bg);transition:color .25s,background-color .5s}.vp-doc a>code{color:var(--vp-code-link-color)}.vp-doc a:hover>code{color:var(--vp-code-link-hover-color)}.vp-doc h1>code,.vp-doc h2>code,.vp-doc h3>code{font-size:.9em}.vp-doc div[class*=language-],.vp-block{position:relative;margin:16px -24px;background-color:var(--vp-code-block-bg);overflow-x:auto;transition:background-color .5s}@media (min-width: 640px){.vp-doc div[class*=language-],.vp-block{border-radius:8px;margin:16px 0}}@media (max-width: 639px){.vp-doc li div[class*=language-]{border-radius:8px 0 0 8px}}.vp-doc div[class*=language-]+div[class*=language-],.vp-doc div[class$=-api]+div[class*=language-],.vp-doc div[class*=language-]+div[class$=-api]>div[class*=language-]{margin-top:-8px}.vp-doc [class*=language-] pre,.vp-doc [class*=language-] code{direction:ltr;text-align:left;white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-hyphens:none;-moz-hyphens:none;-ms-hyphens:none;hyphens:none}.vp-doc [class*=language-] pre{position:relative;z-index:1;margin:0;padding:20px 0;background:transparent;overflow-x:auto}.vp-doc [class*=language-] code{display:block;padding:0 24px;width:fit-content;min-width:100%;line-height:var(--vp-code-line-height);font-size:var(--vp-code-font-size);color:var(--vp-code-block-color);transition:color .5s}.vp-doc [class*=language-] code .highlighted{background-color:var(--vp-code-line-highlight-color);transition:background-color .5s;margin:0 -24px;padding:0 24px;width:calc(100% + 48px);display:inline-block}.vp-doc [class*=language-] code .highlighted.error{background-color:var(--vp-code-line-error-color)}.vp-doc [class*=language-] code .highlighted.warning{background-color:var(--vp-code-line-warning-color)}.vp-doc [class*=language-] code .diff{transition:background-color .5s;margin:0 -24px;padding:0 24px;width:calc(100% + 48px);display:inline-block}.vp-doc [class*=language-] code .diff:before{position:absolute;left:10px}.vp-doc [class*=language-] .has-focused-lines .line:not(.has-focus){filter:blur(.095rem);opacity:.4;transition:filter .35s,opacity .35s}.vp-doc [class*=language-] .has-focused-lines .line:not(.has-focus){opacity:.7;transition:filter .35s,opacity .35s}.vp-doc [class*=language-]:hover .has-focused-lines .line:not(.has-focus){filter:blur(0);opacity:1}.vp-doc [class*=language-] code .diff.remove{background-color:var(--vp-code-line-diff-remove-color);opacity:.7}.vp-doc [class*=language-] code .diff.remove:before{content:"-";color:var(--vp-code-line-diff-remove-symbol-color)}.vp-doc [class*=language-] code .diff.add{background-color:var(--vp-code-line-diff-add-color)}.vp-doc [class*=language-] code .diff.add:before{content:"+";color:var(--vp-code-line-diff-add-symbol-color)}.vp-doc div[class*=language-].line-numbers-mode{padding-left:32px}.vp-doc .line-numbers-wrapper{position:absolute;top:0;bottom:0;left:0;z-index:3;border-right:1px solid var(--vp-code-block-divider-color);padding-top:20px;width:32px;text-align:center;font-family:var(--vp-font-family-mono);line-height:var(--vp-code-line-height);font-size:var(--vp-code-font-size);color:var(--vp-code-line-number-color);transition:border-color .5s,color .5s}.vp-doc [class*=language-]>button.copy{direction:ltr;position:absolute;top:12px;right:12px;z-index:3;border:1px solid var(--vp-code-copy-code-border-color);border-radius:4px;width:40px;height:40px;background-color:var(--vp-code-copy-code-bg);opacity:0;cursor:pointer;background-image:var(--vp-icon-copy);background-position:50%;background-size:20px;background-repeat:no-repeat;transition:border-color .25s,background-color .25s,opacity .25s}.vp-doc [class*=language-]:hover>button.copy,.vp-doc [class*=language-]>button.copy:focus{opacity:1}.vp-doc [class*=language-]>button.copy:hover,.vp-doc [class*=language-]>button.copy.copied{border-color:var(--vp-code-copy-code-hover-border-color);background-color:var(--vp-code-copy-code-hover-bg)}.vp-doc [class*=language-]>button.copy.copied,.vp-doc [class*=language-]>button.copy:hover.copied{border-radius:0 4px 4px 0;background-color:var(--vp-code-copy-code-hover-bg);background-image:var(--vp-icon-copied)}.vp-doc [class*=language-]>button.copy.copied:before,.vp-doc [class*=language-]>button.copy:hover.copied:before{position:relative;top:-1px;transform:translate(calc(-100% - 1px));display:flex;justify-content:center;align-items:center;border:1px solid var(--vp-code-copy-code-hover-border-color);border-right:0;border-radius:4px 0 0 4px;padding:0 10px;width:fit-content;height:40px;text-align:center;font-size:12px;font-weight:500;color:var(--vp-code-copy-code-active-text);background-color:var(--vp-code-copy-code-hover-bg);white-space:nowrap;content:var(--vp-code-copy-copied-text-content)}.vp-doc [class*=language-]>span.lang{position:absolute;top:2px;right:8px;z-index:2;font-size:12px;font-weight:500;color:var(--vp-code-lang-color);transition:color .4s,opacity .4s}.vp-doc [class*=language-]:hover>button.copy+span.lang,.vp-doc [class*=language-]>button.copy:focus+span.lang{opacity:0}.vp-doc .VPTeamMembers{margin-top:24px}.vp-doc .VPTeamMembers.small.count-1 .container{margin:0!important;max-width:calc((100% - 24px)/2)!important}.vp-doc .VPTeamMembers.small.count-2 .container,.vp-doc .VPTeamMembers.small.count-3 .container{max-width:100%!important}.vp-doc .VPTeamMembers.medium.count-1 .container{margin:0!important;max-width:calc((100% - 24px)/2)!important}:is(.vp-external-link-icon,.vp-doc a[href*="://"],.vp-doc a[target=_blank]):not(.no-icon):after{display:inline-block;margin-top:-1px;margin-left:4px;width:11px;height:11px;background:currentColor;color:var(--vp-c-text-3);flex-shrink:0;--icon: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' %3E%3Cpath d='M0 0h24v24H0V0z' fill='none' /%3E%3Cpath d='M9 5v2h6.59L4 18.59 5.41 20 17 8.41V15h2V5H9z' /%3E%3C/svg%3E");-webkit-mask-image:var(--icon);mask-image:var(--icon)}.vp-external-link-icon:after{content:""}.external-link-icon-enabled :is(.vp-doc a[href*="://"],.vp-doc a[target=_blank]):after{content:"";color:currentColor}.vp-sponsor{border-radius:16px;overflow:hidden}.vp-sponsor.aside{border-radius:12px}.vp-sponsor-section+.vp-sponsor-section{margin-top:4px}.vp-sponsor-tier{margin:0 0 4px!important;text-align:center;letter-spacing:1px!important;line-height:24px;width:100%;font-weight:600;color:var(--vp-c-text-2);background-color:var(--vp-c-bg-soft)}.vp-sponsor.normal .vp-sponsor-tier{padding:13px 0 11px;font-size:14px}.vp-sponsor.aside .vp-sponsor-tier{padding:9px 0 7px;font-size:12px}.vp-sponsor-grid+.vp-sponsor-tier{margin-top:4px}.vp-sponsor-grid{display:flex;flex-wrap:wrap;gap:4px}.vp-sponsor-grid.xmini .vp-sponsor-grid-link{height:64px}.vp-sponsor-grid.xmini .vp-sponsor-grid-image{max-width:64px;max-height:22px}.vp-sponsor-grid.mini .vp-sponsor-grid-link{height:72px}.vp-sponsor-grid.mini .vp-sponsor-grid-image{max-width:96px;max-height:24px}.vp-sponsor-grid.small .vp-sponsor-grid-link{height:96px}.vp-sponsor-grid.small .vp-sponsor-grid-image{max-width:96px;max-height:24px}.vp-sponsor-grid.medium .vp-sponsor-grid-link{height:112px}.vp-sponsor-grid.medium .vp-sponsor-grid-image{max-width:120px;max-height:36px}.vp-sponsor-grid.big .vp-sponsor-grid-link{height:184px}.vp-sponsor-grid.big .vp-sponsor-grid-image{max-width:192px;max-height:56px}.vp-sponsor-grid[data-vp-grid="2"] .vp-sponsor-grid-item{width:calc((100% - 4px)/2)}.vp-sponsor-grid[data-vp-grid="3"] .vp-sponsor-grid-item{width:calc((100% - 4px * 2) / 3)}.vp-sponsor-grid[data-vp-grid="4"] .vp-sponsor-grid-item{width:calc((100% - 12px)/4)}.vp-sponsor-grid[data-vp-grid="5"] .vp-sponsor-grid-item{width:calc((100% - 16px)/5)}.vp-sponsor-grid[data-vp-grid="6"] .vp-sponsor-grid-item{width:calc((100% - 4px * 5) / 6)}.vp-sponsor-grid-item{flex-shrink:0;width:100%;background-color:var(--vp-c-bg-soft);transition:background-color .25s}.vp-sponsor-grid-item:hover{background-color:var(--vp-c-default-soft)}.vp-sponsor-grid-item:hover .vp-sponsor-grid-image{filter:grayscale(0) invert(0)}.vp-sponsor-grid-item.empty:hover{background-color:var(--vp-c-bg-soft)}.dark .vp-sponsor-grid-item:hover{background-color:var(--vp-c-white)}.dark .vp-sponsor-grid-item.empty:hover{background-color:var(--vp-c-bg-soft)}.vp-sponsor-grid-link{display:flex}.vp-sponsor-grid-box{display:flex;justify-content:center;align-items:center;width:100%}.vp-sponsor-grid-image{max-width:100%;filter:grayscale(1);transition:filter .25s}.dark .vp-sponsor-grid-image{filter:grayscale(1) invert(1)}.VPBadge{display:inline-block;margin-left:2px;border:1px solid transparent;border-radius:12px;padding:0 10px;line-height:22px;font-size:12px;font-weight:500;transform:translateY(-2px)}.VPBadge.small{padding:0 6px;line-height:18px;font-size:10px;transform:translateY(-8px)}.VPDocFooter .VPBadge{display:none}.vp-doc h1>.VPBadge{margin-top:4px;vertical-align:top}.vp-doc h2>.VPBadge{margin-top:3px;padding:0 8px;vertical-align:top}.vp-doc h3>.VPBadge{vertical-align:middle}.vp-doc h4>.VPBadge,.vp-doc h5>.VPBadge,.vp-doc h6>.VPBadge{vertical-align:middle;line-height:18px}.VPBadge.info{border-color:var(--vp-badge-info-border);color:var(--vp-badge-info-text);background-color:var(--vp-badge-info-bg)}.VPBadge.tip{border-color:var(--vp-badge-tip-border);color:var(--vp-badge-tip-text);background-color:var(--vp-badge-tip-bg)}.VPBadge.warning{border-color:var(--vp-badge-warning-border);color:var(--vp-badge-warning-text);background-color:var(--vp-badge-warning-bg)}.VPBadge.danger{border-color:var(--vp-badge-danger-border);color:var(--vp-badge-danger-text);background-color:var(--vp-badge-danger-bg)}.VPBackdrop[data-v-c79a1216]{position:fixed;top:0;right:0;bottom:0;left:0;z-index:var(--vp-z-index-backdrop);background:var(--vp-backdrop-bg-color);transition:opacity .5s}.VPBackdrop.fade-enter-from[data-v-c79a1216],.VPBackdrop.fade-leave-to[data-v-c79a1216]{opacity:0}.VPBackdrop.fade-leave-active[data-v-c79a1216]{transition-duration:.25s}@media (min-width: 1280px){.VPBackdrop[data-v-c79a1216]{display:none}}.NotFound[data-v-d6be1790]{padding:64px 24px 96px;text-align:center}@media (min-width: 768px){.NotFound[data-v-d6be1790]{padding:96px 32px 168px}}.code[data-v-d6be1790]{line-height:64px;font-size:64px;font-weight:600}.title[data-v-d6be1790]{padding-top:12px;letter-spacing:2px;line-height:20px;font-size:20px;font-weight:700}.divider[data-v-d6be1790]{margin:24px auto 18px;width:64px;height:1px;background-color:var(--vp-c-divider)}.quote[data-v-d6be1790]{margin:0 auto;max-width:256px;font-size:14px;font-weight:500;color:var(--vp-c-text-2)}.action[data-v-d6be1790]{padding-top:20px}.link[data-v-d6be1790]{display:inline-block;border:1px solid var(--vp-c-brand-1);border-radius:16px;padding:3px 16px;font-size:14px;font-weight:500;color:var(--vp-c-brand-1);transition:border-color .25s,color .25s}.link[data-v-d6be1790]:hover{border-color:var(--vp-c-brand-2);color:var(--vp-c-brand-2)}.root[data-v-b933a997]{position:relative;z-index:1}.nested[data-v-b933a997]{padding-right:16px;padding-left:16px}.outline-link[data-v-b933a997]{display:block;line-height:32px;font-size:14px;font-weight:400;color:var(--vp-c-text-2);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;transition:color .5s}.outline-link[data-v-b933a997]:hover,.outline-link.active[data-v-b933a997]{color:var(--vp-c-text-1);transition:color .25s}.outline-link.nested[data-v-b933a997]{padding-left:13px}.VPDocAsideOutline[data-v-a5bbad30]{display:none}.VPDocAsideOutline.has-outline[data-v-a5bbad30]{display:block}.content[data-v-a5bbad30]{position:relative;border-left:1px solid var(--vp-c-divider);padding-left:16px;font-size:13px;font-weight:500}.outline-marker[data-v-a5bbad30]{position:absolute;top:32px;left:-1px;z-index:0;opacity:0;width:2px;border-radius:2px;height:18px;background-color:var(--vp-c-brand-1);transition:top .25s cubic-bezier(0,1,.5,1),background-color .5s,opacity .25s}.outline-title[data-v-a5bbad30]{line-height:32px;font-size:14px;font-weight:600}.VPDocAside[data-v-3f215769]{display:flex;flex-direction:column;flex-grow:1}.spacer[data-v-3f215769]{flex-grow:1}.VPDocAside[data-v-3f215769] .spacer+.VPDocAsideSponsors,.VPDocAside[data-v-3f215769] .spacer+.VPDocAsideCarbonAds{margin-top:24px}.VPDocAside[data-v-3f215769] .VPDocAsideSponsors+.VPDocAsideCarbonAds{margin-top:16px}.VPLastUpdated[data-v-7e05ebdb]{line-height:24px;font-size:14px;font-weight:500;color:var(--vp-c-text-2)}@media (min-width: 640px){.VPLastUpdated[data-v-7e05ebdb]{line-height:32px;font-size:14px;font-weight:500}}.VPDocFooter[data-v-d4a0bba5]{margin-top:64px}.edit-info[data-v-d4a0bba5]{padding-bottom:18px}@media (min-width: 640px){.edit-info[data-v-d4a0bba5]{display:flex;justify-content:space-between;align-items:center;padding-bottom:14px}}.edit-link-button[data-v-d4a0bba5]{display:flex;align-items:center;border:0;line-height:32px;font-size:14px;font-weight:500;color:var(--vp-c-brand-1);transition:color .25s}.edit-link-button[data-v-d4a0bba5]:hover{color:var(--vp-c-brand-2)}.edit-link-icon[data-v-d4a0bba5]{margin-right:8px}.prev-next[data-v-d4a0bba5]{border-top:1px solid var(--vp-c-divider);padding-top:24px;display:grid;grid-row-gap:8px}@media (min-width: 640px){.prev-next[data-v-d4a0bba5]{grid-template-columns:repeat(2,1fr);grid-column-gap:16px}}.pager-link[data-v-d4a0bba5]{display:block;border:1px solid var(--vp-c-divider);border-radius:8px;padding:11px 16px 13px;width:100%;height:100%;transition:border-color .25s}.pager-link[data-v-d4a0bba5]:hover{border-color:var(--vp-c-brand-1)}.pager-link.next[data-v-d4a0bba5]{margin-left:auto;text-align:right}.desc[data-v-d4a0bba5]{display:block;line-height:20px;font-size:12px;font-weight:500;color:var(--vp-c-text-2)}.title[data-v-d4a0bba5]{display:block;line-height:20px;font-size:14px;font-weight:500;color:var(--vp-c-brand-1);transition:color .25s}.VPDoc[data-v-39a288b8]{padding:32px 24px 96px;width:100%}@media (min-width: 768px){.VPDoc[data-v-39a288b8]{padding:48px 32px 128px}}@media (min-width: 960px){.VPDoc[data-v-39a288b8]{padding:48px 32px 0}.VPDoc:not(.has-sidebar) .container[data-v-39a288b8]{display:flex;justify-content:center;max-width:992px}.VPDoc:not(.has-sidebar) .content[data-v-39a288b8]{max-width:752px}}@media (min-width: 1280px){.VPDoc .container[data-v-39a288b8]{display:flex;justify-content:center}.VPDoc .aside[data-v-39a288b8]{display:block}}@media (min-width: 1440px){.VPDoc:not(.has-sidebar) .content[data-v-39a288b8]{max-width:784px}.VPDoc:not(.has-sidebar) .container[data-v-39a288b8]{max-width:1104px}}.container[data-v-39a288b8]{margin:0 auto;width:100%}.aside[data-v-39a288b8]{position:relative;display:none;order:2;flex-grow:1;padding-left:32px;width:100%;max-width:256px}.left-aside[data-v-39a288b8]{order:1;padding-left:unset;padding-right:32px}.aside-container[data-v-39a288b8]{position:fixed;top:0;padding-top:calc(var(--vp-nav-height) + var(--vp-layout-top-height, 0px) + var(--vp-doc-top-height, 0px) + 48px);width:224px;height:100vh;overflow-x:hidden;overflow-y:auto;scrollbar-width:none}.aside-container[data-v-39a288b8]::-webkit-scrollbar{display:none}.aside-curtain[data-v-39a288b8]{position:fixed;bottom:0;z-index:10;width:224px;height:32px;background:linear-gradient(transparent,var(--vp-c-bg) 70%)}.aside-content[data-v-39a288b8]{display:flex;flex-direction:column;min-height:calc(100vh - (var(--vp-nav-height) + var(--vp-layout-top-height, 0px) + 48px));padding-bottom:32px}.content[data-v-39a288b8]{position:relative;margin:0 auto;width:100%}@media (min-width: 960px){.content[data-v-39a288b8]{padding:0 32px 128px}}@media (min-width: 1280px){.content[data-v-39a288b8]{order:1;margin:0;min-width:640px}}.content-container[data-v-39a288b8]{margin:0 auto}.VPDoc.has-aside .content-container[data-v-39a288b8]{max-width:688px}.VPButton[data-v-cad61b99]{display:inline-block;border:1px solid transparent;text-align:center;font-weight:600;white-space:nowrap;transition:color .25s,border-color .25s,background-color .25s}.VPButton[data-v-cad61b99]:active{transition:color .1s,border-color .1s,background-color .1s}.VPButton.medium[data-v-cad61b99]{border-radius:20px;padding:0 20px;line-height:38px;font-size:14px}.VPButton.big[data-v-cad61b99]{border-radius:24px;padding:0 24px;line-height:46px;font-size:16px}.VPButton.brand[data-v-cad61b99]{border-color:var(--vp-button-brand-border);color:var(--vp-button-brand-text);background-color:var(--vp-button-brand-bg)}.VPButton.brand[data-v-cad61b99]:hover{border-color:var(--vp-button-brand-hover-border);color:var(--vp-button-brand-hover-text);background-color:var(--vp-button-brand-hover-bg)}.VPButton.brand[data-v-cad61b99]:active{border-color:var(--vp-button-brand-active-border);color:var(--vp-button-brand-active-text);background-color:var(--vp-button-brand-active-bg)}.VPButton.alt[data-v-cad61b99]{border-color:var(--vp-button-alt-border);color:var(--vp-button-alt-text);background-color:var(--vp-button-alt-bg)}.VPButton.alt[data-v-cad61b99]:hover{border-color:var(--vp-button-alt-hover-border);color:var(--vp-button-alt-hover-text);background-color:var(--vp-button-alt-hover-bg)}.VPButton.alt[data-v-cad61b99]:active{border-color:var(--vp-button-alt-active-border);color:var(--vp-button-alt-active-text);background-color:var(--vp-button-alt-active-bg)}.VPButton.sponsor[data-v-cad61b99]{border-color:var(--vp-button-sponsor-border);color:var(--vp-button-sponsor-text);background-color:var(--vp-button-sponsor-bg)}.VPButton.sponsor[data-v-cad61b99]:hover{border-color:var(--vp-button-sponsor-hover-border);color:var(--vp-button-sponsor-hover-text);background-color:var(--vp-button-sponsor-hover-bg)}.VPButton.sponsor[data-v-cad61b99]:active{border-color:var(--vp-button-sponsor-active-border);color:var(--vp-button-sponsor-active-text);background-color:var(--vp-button-sponsor-active-bg)}html:not(.dark) .VPImage.dark[data-v-8426fc1a]{display:none}.dark .VPImage.light[data-v-8426fc1a]{display:none}.VPHero[data-v-303bb580]{margin-top:calc((var(--vp-nav-height) + var(--vp-layout-top-height, 0px)) * -1);padding:calc(var(--vp-nav-height) + var(--vp-layout-top-height, 0px) + 48px) 24px 48px}@media (min-width: 640px){.VPHero[data-v-303bb580]{padding:calc(var(--vp-nav-height) + var(--vp-layout-top-height, 0px) + 80px) 48px 64px}}@media (min-width: 960px){.VPHero[data-v-303bb580]{padding:calc(var(--vp-nav-height) + var(--vp-layout-top-height, 0px) + 80px) 64px 64px}}.container[data-v-303bb580]{display:flex;flex-direction:column;margin:0 auto;max-width:1152px}@media (min-width: 960px){.container[data-v-303bb580]{flex-direction:row}}.main[data-v-303bb580]{position:relative;z-index:10;order:2;flex-grow:1;flex-shrink:0}.VPHero.has-image .container[data-v-303bb580]{text-align:center}@media (min-width: 960px){.VPHero.has-image .container[data-v-303bb580]{text-align:left}}@media (min-width: 960px){.main[data-v-303bb580]{order:1;width:calc((100% / 3) * 2)}.VPHero.has-image .main[data-v-303bb580]{max-width:592px}}.name[data-v-303bb580],.text[data-v-303bb580]{max-width:392px;letter-spacing:-.4px;line-height:40px;font-size:32px;font-weight:700;white-space:pre-wrap}.VPHero.has-image .name[data-v-303bb580],.VPHero.has-image .text[data-v-303bb580]{margin:0 auto}.name[data-v-303bb580]{color:var(--vp-home-hero-name-color)}.clip[data-v-303bb580]{background:var(--vp-home-hero-name-background);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:var(--vp-home-hero-name-color)}@media (min-width: 640px){.name[data-v-303bb580],.text[data-v-303bb580]{max-width:576px;line-height:56px;font-size:48px}}@media (min-width: 960px){.name[data-v-303bb580],.text[data-v-303bb580]{line-height:64px;font-size:56px}.VPHero.has-image .name[data-v-303bb580],.VPHero.has-image .text[data-v-303bb580]{margin:0}}.tagline[data-v-303bb580]{padding-top:8px;max-width:392px;line-height:28px;font-size:18px;font-weight:500;white-space:pre-wrap;color:var(--vp-c-text-2)}.VPHero.has-image .tagline[data-v-303bb580]{margin:0 auto}@media (min-width: 640px){.tagline[data-v-303bb580]{padding-top:12px;max-width:576px;line-height:32px;font-size:20px}}@media (min-width: 960px){.tagline[data-v-303bb580]{line-height:36px;font-size:24px}.VPHero.has-image .tagline[data-v-303bb580]{margin:0}}.actions[data-v-303bb580]{display:flex;flex-wrap:wrap;margin:-6px;padding-top:24px}.VPHero.has-image .actions[data-v-303bb580]{justify-content:center}@media (min-width: 640px){.actions[data-v-303bb580]{padding-top:32px}}@media (min-width: 960px){.VPHero.has-image .actions[data-v-303bb580]{justify-content:flex-start}}.action[data-v-303bb580]{flex-shrink:0;padding:6px}.image[data-v-303bb580]{order:1;margin:-76px -24px -48px}@media (min-width: 640px){.image[data-v-303bb580]{margin:-108px -24px -48px}}@media (min-width: 960px){.image[data-v-303bb580]{flex-grow:1;order:2;margin:0;min-height:100%}}.image-container[data-v-303bb580]{position:relative;margin:0 auto;width:320px;height:320px}@media (min-width: 640px){.image-container[data-v-303bb580]{width:392px;height:392px}}@media (min-width: 960px){.image-container[data-v-303bb580]{display:flex;justify-content:center;align-items:center;width:100%;height:100%;transform:translate(-32px,-32px)}}.image-bg[data-v-303bb580]{position:absolute;top:50%;left:50%;border-radius:50%;width:192px;height:192px;background-image:var(--vp-home-hero-image-background-image);filter:var(--vp-home-hero-image-filter);transform:translate(-50%,-50%)}@media (min-width: 640px){.image-bg[data-v-303bb580]{width:256px;height:256px}}@media (min-width: 960px){.image-bg[data-v-303bb580]{width:320px;height:320px}}[data-v-303bb580] .image-src{position:absolute;top:50%;left:50%;max-width:192px;max-height:192px;transform:translate(-50%,-50%)}@media (min-width: 640px){[data-v-303bb580] .image-src{max-width:256px;max-height:256px}}@media (min-width: 960px){[data-v-303bb580] .image-src{max-width:320px;max-height:320px}}.VPFeature[data-v-a3976bdc]{display:block;border:1px solid var(--vp-c-bg-soft);border-radius:12px;height:100%;background-color:var(--vp-c-bg-soft);transition:border-color .25s,background-color .25s}.VPFeature.link[data-v-a3976bdc]:hover{border-color:var(--vp-c-brand-1)}.box[data-v-a3976bdc]{display:flex;flex-direction:column;padding:24px;height:100%}.box[data-v-a3976bdc]>.VPImage{margin-bottom:20px}.icon[data-v-a3976bdc]{display:flex;justify-content:center;align-items:center;margin-bottom:20px;border-radius:6px;background-color:var(--vp-c-default-soft);width:48px;height:48px;font-size:24px;transition:background-color .25s}.title[data-v-a3976bdc]{line-height:24px;font-size:16px;font-weight:600}.details[data-v-a3976bdc]{flex-grow:1;padding-top:8px;line-height:24px;font-size:14px;font-weight:500;color:var(--vp-c-text-2)}.link-text[data-v-a3976bdc]{padding-top:8px}.link-text-value[data-v-a3976bdc]{display:flex;align-items:center;font-size:14px;font-weight:500;color:var(--vp-c-brand-1)}.link-text-icon[data-v-a3976bdc]{margin-left:6px}.VPFeatures[data-v-a6181336]{position:relative;padding:0 24px}@media (min-width: 640px){.VPFeatures[data-v-a6181336]{padding:0 48px}}@media (min-width: 960px){.VPFeatures[data-v-a6181336]{padding:0 64px}}.container[data-v-a6181336]{margin:0 auto;max-width:1152px}.items[data-v-a6181336]{display:flex;flex-wrap:wrap;margin:-8px}.item[data-v-a6181336]{padding:8px;width:100%}@media (min-width: 640px){.item.grid-2[data-v-a6181336],.item.grid-4[data-v-a6181336],.item.grid-6[data-v-a6181336]{width:50%}}@media (min-width: 768px){.item.grid-2[data-v-a6181336],.item.grid-4[data-v-a6181336]{width:50%}.item.grid-3[data-v-a6181336],.item.grid-6[data-v-a6181336]{width:calc(100% / 3)}}@media (min-width: 960px){.item.grid-4[data-v-a6181336]{width:25%}}.container[data-v-8e2d4988]{margin:auto;width:100%;max-width:1280px;padding:0 24px}@media (min-width: 640px){.container[data-v-8e2d4988]{padding:0 48px}}@media (min-width: 960px){.container[data-v-8e2d4988]{width:100%;padding:0 64px}}.vp-doc[data-v-8e2d4988] .VPHomeSponsors,.vp-doc[data-v-8e2d4988] .VPTeamPage{margin-left:var(--vp-offset, calc(50% - 50vw) );margin-right:var(--vp-offset, calc(50% - 50vw) )}.vp-doc[data-v-8e2d4988] .VPHomeSponsors h2{border-top:none;letter-spacing:normal}.vp-doc[data-v-8e2d4988] .VPHomeSponsors a,.vp-doc[data-v-8e2d4988] .VPTeamPage a{text-decoration:none}.VPHome[data-v-686f80a6]{margin-bottom:96px}@media (min-width: 768px){.VPHome[data-v-686f80a6]{margin-bottom:128px}}.VPContent[data-v-1428d186]{flex-grow:1;flex-shrink:0;margin:var(--vp-layout-top-height, 0px) auto 0;width:100%}.VPContent.is-home[data-v-1428d186]{width:100%;max-width:100%}.VPContent.has-sidebar[data-v-1428d186]{margin:0}@media (min-width: 960px){.VPContent[data-v-1428d186]{padding-top:var(--vp-nav-height)}.VPContent.has-sidebar[data-v-1428d186]{margin:var(--vp-layout-top-height, 0px) 0 0;padding-left:var(--vp-sidebar-width)}}@media (min-width: 1440px){.VPContent.has-sidebar[data-v-1428d186]{padding-right:calc((100vw - var(--vp-layout-max-width)) / 2);padding-left:calc((100vw - var(--vp-layout-max-width)) / 2 + var(--vp-sidebar-width))}}.VPFooter[data-v-e315a0ad]{position:relative;z-index:var(--vp-z-index-footer);border-top:1px solid var(--vp-c-gutter);padding:32px 24px;background-color:var(--vp-c-bg)}.VPFooter.has-sidebar[data-v-e315a0ad]{display:none}.VPFooter[data-v-e315a0ad] a{text-decoration-line:underline;text-underline-offset:2px;transition:color .25s}.VPFooter[data-v-e315a0ad] a:hover{color:var(--vp-c-text-1)}@media (min-width: 768px){.VPFooter[data-v-e315a0ad]{padding:32px}}.container[data-v-e315a0ad]{margin:0 auto;max-width:var(--vp-layout-max-width);text-align:center}.message[data-v-e315a0ad],.copyright[data-v-e315a0ad]{line-height:24px;font-size:14px;font-weight:500;color:var(--vp-c-text-2)}.VPLocalNavOutlineDropdown[data-v-17a5e62e]{padding:12px 20px 11px}@media (min-width: 960px){.VPLocalNavOutlineDropdown[data-v-17a5e62e]{padding:12px 36px 11px}}.VPLocalNavOutlineDropdown button[data-v-17a5e62e]{display:block;font-size:12px;font-weight:500;line-height:24px;color:var(--vp-c-text-2);transition:color .5s;position:relative}.VPLocalNavOutlineDropdown button[data-v-17a5e62e]:hover{color:var(--vp-c-text-1);transition:color .25s}.VPLocalNavOutlineDropdown button.open[data-v-17a5e62e]{color:var(--vp-c-text-1)}.icon[data-v-17a5e62e]{display:inline-block;vertical-align:middle;margin-left:2px;font-size:14px;transform:rotate(0);transition:transform .25s}@media (min-width: 960px){.VPLocalNavOutlineDropdown button[data-v-17a5e62e]{font-size:14px}.icon[data-v-17a5e62e]{font-size:16px}}.open>.icon[data-v-17a5e62e]{transform:rotate(90deg)}.items[data-v-17a5e62e]{position:absolute;top:40px;right:16px;left:16px;display:grid;gap:1px;border:1px solid var(--vp-c-border);border-radius:8px;background-color:var(--vp-c-gutter);max-height:calc(var(--vp-vh, 100vh) - 86px);overflow:hidden auto;box-shadow:var(--vp-shadow-3)}@media (min-width: 960px){.items[data-v-17a5e62e]{right:auto;left:calc(var(--vp-sidebar-width) + 32px);width:320px}}.header[data-v-17a5e62e]{background-color:var(--vp-c-bg-soft)}.top-link[data-v-17a5e62e]{display:block;padding:0 16px;line-height:48px;font-size:14px;font-weight:500;color:var(--vp-c-brand-1)}.outline[data-v-17a5e62e]{padding:8px 0;background-color:var(--vp-c-bg-soft)}.flyout-enter-active[data-v-17a5e62e]{transition:all .2s ease-out}.flyout-leave-active[data-v-17a5e62e]{transition:all .15s ease-in}.flyout-enter-from[data-v-17a5e62e],.flyout-leave-to[data-v-17a5e62e]{opacity:0;transform:translateY(-16px)}.VPLocalNav[data-v-a6f0e41e]{position:sticky;top:0;left:0;z-index:var(--vp-z-index-local-nav);border-bottom:1px solid var(--vp-c-gutter);padding-top:var(--vp-layout-top-height, 0px);width:100%;background-color:var(--vp-local-nav-bg-color)}.VPLocalNav.fixed[data-v-a6f0e41e]{position:fixed}@media (min-width: 960px){.VPLocalNav[data-v-a6f0e41e]{top:var(--vp-nav-height)}.VPLocalNav.has-sidebar[data-v-a6f0e41e]{padding-left:var(--vp-sidebar-width)}.VPLocalNav.empty[data-v-a6f0e41e]{display:none}}@media (min-width: 1280px){.VPLocalNav[data-v-a6f0e41e]{display:none}}@media (min-width: 1440px){.VPLocalNav.has-sidebar[data-v-a6f0e41e]{padding-left:calc((100vw - var(--vp-layout-max-width)) / 2 + var(--vp-sidebar-width))}}.container[data-v-a6f0e41e]{display:flex;justify-content:space-between;align-items:center}.menu[data-v-a6f0e41e]{display:flex;align-items:center;padding:12px 24px 11px;line-height:24px;font-size:12px;font-weight:500;color:var(--vp-c-text-2);transition:color .5s}.menu[data-v-a6f0e41e]:hover{color:var(--vp-c-text-1);transition:color .25s}@media (min-width: 768px){.menu[data-v-a6f0e41e]{padding:0 32px}}@media (min-width: 960px){.menu[data-v-a6f0e41e]{display:none}}.menu-icon[data-v-a6f0e41e]{margin-right:8px;font-size:14px}.VPOutlineDropdown[data-v-a6f0e41e]{padding:12px 24px 11px}@media (min-width: 768px){.VPOutlineDropdown[data-v-a6f0e41e]{padding:12px 32px 11px}}.VPSwitch[data-v-1d5665e3]{position:relative;border-radius:11px;display:block;width:40px;height:22px;flex-shrink:0;border:1px solid var(--vp-input-border-color);background-color:var(--vp-input-switch-bg-color);transition:border-color .25s!important}.VPSwitch[data-v-1d5665e3]:hover{border-color:var(--vp-c-brand-1)}.check[data-v-1d5665e3]{position:absolute;top:1px;left:1px;width:18px;height:18px;border-radius:50%;background-color:var(--vp-c-neutral-inverse);box-shadow:var(--vp-shadow-1);transition:transform .25s!important}.icon[data-v-1d5665e3]{position:relative;display:block;width:18px;height:18px;border-radius:50%;overflow:hidden}.icon[data-v-1d5665e3] [class^=vpi-]{position:absolute;top:3px;left:3px;width:12px;height:12px;color:var(--vp-c-text-2)}.dark .icon[data-v-1d5665e3] [class^=vpi-]{color:var(--vp-c-text-1);transition:opacity .25s!important}.sun[data-v-d1f28634]{opacity:1}.moon[data-v-d1f28634],.dark .sun[data-v-d1f28634]{opacity:0}.dark .moon[data-v-d1f28634]{opacity:1}.dark .VPSwitchAppearance[data-v-d1f28634] .check{transform:translate(18px)}.VPNavBarAppearance[data-v-e6aabb21]{display:none}@media (min-width: 1280px){.VPNavBarAppearance[data-v-e6aabb21]{display:flex;align-items:center}}.VPMenuGroup+.VPMenuLink[data-v-43f1e123]{margin:12px -12px 0;border-top:1px solid var(--vp-c-divider);padding:12px 12px 0}.link[data-v-43f1e123]{display:block;border-radius:6px;padding:0 12px;line-height:32px;font-size:14px;font-weight:500;color:var(--vp-c-text-1);white-space:nowrap;transition:background-color .25s,color .25s}.link[data-v-43f1e123]:hover{color:var(--vp-c-brand-1);background-color:var(--vp-c-default-soft)}.link.active[data-v-43f1e123]{color:var(--vp-c-brand-1)}.VPMenuGroup[data-v-69e747b5]{margin:12px -12px 0;border-top:1px solid var(--vp-c-divider);padding:12px 12px 0}.VPMenuGroup[data-v-69e747b5]:first-child{margin-top:0;border-top:0;padding-top:0}.VPMenuGroup+.VPMenuGroup[data-v-69e747b5]{margin-top:12px;border-top:1px solid var(--vp-c-divider)}.title[data-v-69e747b5]{padding:0 12px;line-height:32px;font-size:14px;font-weight:600;color:var(--vp-c-text-2);white-space:nowrap;transition:color .25s}.VPMenu[data-v-e7ea1737]{border-radius:12px;padding:12px;min-width:128px;border:1px solid var(--vp-c-divider);background-color:var(--vp-c-bg-elv);box-shadow:var(--vp-shadow-3);transition:background-color .5s;max-height:calc(100vh - var(--vp-nav-height));overflow-y:auto}.VPMenu[data-v-e7ea1737] .group{margin:0 -12px;padding:0 12px 12px}.VPMenu[data-v-e7ea1737] .group+.group{border-top:1px solid var(--vp-c-divider);padding:11px 12px 12px}.VPMenu[data-v-e7ea1737] .group:last-child{padding-bottom:0}.VPMenu[data-v-e7ea1737] .group+.item{border-top:1px solid var(--vp-c-divider);padding:11px 16px 0}.VPMenu[data-v-e7ea1737] .item{padding:0 16px;white-space:nowrap}.VPMenu[data-v-e7ea1737] .label{flex-grow:1;line-height:28px;font-size:12px;font-weight:500;color:var(--vp-c-text-2);transition:color .5s}.VPMenu[data-v-e7ea1737] .action{padding-left:24px}.VPFlyout[data-v-b6c34ac9]{position:relative}.VPFlyout[data-v-b6c34ac9]:hover{color:var(--vp-c-brand-1);transition:color .25s}.VPFlyout:hover .text[data-v-b6c34ac9]{color:var(--vp-c-text-2)}.VPFlyout:hover .icon[data-v-b6c34ac9]{fill:var(--vp-c-text-2)}.VPFlyout.active .text[data-v-b6c34ac9]{color:var(--vp-c-brand-1)}.VPFlyout.active:hover .text[data-v-b6c34ac9]{color:var(--vp-c-brand-2)}.VPFlyout:hover .menu[data-v-b6c34ac9],.button[aria-expanded=true]+.menu[data-v-b6c34ac9]{opacity:1;visibility:visible;transform:translateY(0)}.button[aria-expanded=false]+.menu[data-v-b6c34ac9]{opacity:0;visibility:hidden;transform:translateY(0)}.button[data-v-b6c34ac9]{display:flex;align-items:center;padding:0 12px;height:var(--vp-nav-height);color:var(--vp-c-text-1);transition:color .5s}.text[data-v-b6c34ac9]{display:flex;align-items:center;line-height:var(--vp-nav-height);font-size:14px;font-weight:500;color:var(--vp-c-text-1);transition:color .25s}.option-icon[data-v-b6c34ac9]{margin-right:0;font-size:16px}.text-icon[data-v-b6c34ac9]{margin-left:4px;font-size:14px}.icon[data-v-b6c34ac9]{font-size:20px;transition:fill .25s}.menu[data-v-b6c34ac9]{position:absolute;top:calc(var(--vp-nav-height) / 2 + 20px);right:0;opacity:0;visibility:hidden;transition:opacity .25s,visibility .25s,transform .25s}.VPSocialLink[data-v-eee4e7cb]{display:flex;justify-content:center;align-items:center;width:36px;height:36px;color:var(--vp-c-text-2);transition:color .5s}.VPSocialLink[data-v-eee4e7cb]:hover{color:var(--vp-c-text-1);transition:color .25s}.VPSocialLink[data-v-eee4e7cb]>svg,.VPSocialLink[data-v-eee4e7cb]>[class^=vpi-social-]{width:20px;height:20px;fill:currentColor}.VPSocialLinks[data-v-7bc22406]{display:flex;justify-content:center}.VPNavBarExtra[data-v-d0bd9dde]{display:none;margin-right:-12px}@media (min-width: 768px){.VPNavBarExtra[data-v-d0bd9dde]{display:block}}@media (min-width: 1280px){.VPNavBarExtra[data-v-d0bd9dde]{display:none}}.trans-title[data-v-d0bd9dde]{padding:0 24px 0 12px;line-height:32px;font-size:14px;font-weight:700;color:var(--vp-c-text-1)}.item.appearance[data-v-d0bd9dde],.item.social-links[data-v-d0bd9dde]{display:flex;align-items:center;padding:0 12px}.item.appearance[data-v-d0bd9dde]{min-width:176px}.appearance-action[data-v-d0bd9dde]{margin-right:-2px}.social-links-list[data-v-d0bd9dde]{margin:-4px -8px}.VPNavBarHamburger[data-v-e5dd9c1c]{display:flex;justify-content:center;align-items:center;width:48px;height:var(--vp-nav-height)}@media (min-width: 768px){.VPNavBarHamburger[data-v-e5dd9c1c]{display:none}}.container[data-v-e5dd9c1c]{position:relative;width:16px;height:14px;overflow:hidden}.VPNavBarHamburger:hover .top[data-v-e5dd9c1c]{top:0;left:0;transform:translate(4px)}.VPNavBarHamburger:hover .middle[data-v-e5dd9c1c]{top:6px;left:0;transform:translate(0)}.VPNavBarHamburger:hover .bottom[data-v-e5dd9c1c]{top:12px;left:0;transform:translate(8px)}.VPNavBarHamburger.active .top[data-v-e5dd9c1c]{top:6px;transform:translate(0) rotate(225deg)}.VPNavBarHamburger.active .middle[data-v-e5dd9c1c]{top:6px;transform:translate(16px)}.VPNavBarHamburger.active .bottom[data-v-e5dd9c1c]{top:6px;transform:translate(0) rotate(135deg)}.VPNavBarHamburger.active:hover .top[data-v-e5dd9c1c],.VPNavBarHamburger.active:hover .middle[data-v-e5dd9c1c],.VPNavBarHamburger.active:hover .bottom[data-v-e5dd9c1c]{background-color:var(--vp-c-text-2);transition:top .25s,background-color .25s,transform .25s}.top[data-v-e5dd9c1c],.middle[data-v-e5dd9c1c],.bottom[data-v-e5dd9c1c]{position:absolute;width:16px;height:2px;background-color:var(--vp-c-text-1);transition:top .25s,background-color .5s,transform .25s}.top[data-v-e5dd9c1c]{top:0;left:0;transform:translate(0)}.middle[data-v-e5dd9c1c]{top:6px;left:0;transform:translate(8px)}.bottom[data-v-e5dd9c1c]{top:12px;left:0;transform:translate(4px)}.VPNavBarMenuLink[data-v-9c663999]{display:flex;align-items:center;padding:0 12px;line-height:var(--vp-nav-height);font-size:14px;font-weight:500;color:var(--vp-c-text-1);transition:color .25s}.VPNavBarMenuLink.active[data-v-9c663999],.VPNavBarMenuLink[data-v-9c663999]:hover{color:var(--vp-c-brand-1)}.VPNavBarMenu[data-v-7f418b0f]{display:none}@media (min-width: 768px){.VPNavBarMenu[data-v-7f418b0f]{display:flex}}/*! @docsearch/css 3.6.0 | MIT License | © Algolia, Inc. and contributors | https://docsearch.algolia.com */:root{--docsearch-primary-color:#5468ff;--docsearch-text-color:#1c1e21;--docsearch-spacing:12px;--docsearch-icon-stroke-width:1.4;--docsearch-highlight-color:var(--docsearch-primary-color);--docsearch-muted-color:#969faf;--docsearch-container-background:rgba(101,108,133,.8);--docsearch-logo-color:#5468ff;--docsearch-modal-width:560px;--docsearch-modal-height:600px;--docsearch-modal-background:#f5f6f7;--docsearch-modal-shadow:inset 1px 1px 0 0 hsla(0,0%,100%,.5),0 3px 8px 0 #555a64;--docsearch-searchbox-height:56px;--docsearch-searchbox-background:#ebedf0;--docsearch-searchbox-focus-background:#fff;--docsearch-searchbox-shadow:inset 0 0 0 2px var(--docsearch-primary-color);--docsearch-hit-height:56px;--docsearch-hit-color:#444950;--docsearch-hit-active-color:#fff;--docsearch-hit-background:#fff;--docsearch-hit-shadow:0 1px 3px 0 #d4d9e1;--docsearch-key-gradient:linear-gradient(-225deg,#d5dbe4,#f8f8f8);--docsearch-key-shadow:inset 0 -2px 0 0 #cdcde6,inset 0 0 1px 1px #fff,0 1px 2px 1px rgba(30,35,90,.4);--docsearch-key-pressed-shadow:inset 0 -2px 0 0 #cdcde6,inset 0 0 1px 1px #fff,0 1px 1px 0 rgba(30,35,90,.4);--docsearch-footer-height:44px;--docsearch-footer-background:#fff;--docsearch-footer-shadow:0 -1px 0 0 #e0e3e8,0 -3px 6px 0 rgba(69,98,155,.12)}html[data-theme=dark]{--docsearch-text-color:#f5f6f7;--docsearch-container-background:rgba(9,10,17,.8);--docsearch-modal-background:#15172a;--docsearch-modal-shadow:inset 1px 1px 0 0 #2c2e40,0 3px 8px 0 #000309;--docsearch-searchbox-background:#090a11;--docsearch-searchbox-focus-background:#000;--docsearch-hit-color:#bec3c9;--docsearch-hit-shadow:none;--docsearch-hit-background:#090a11;--docsearch-key-gradient:linear-gradient(-26.5deg,#565872,#31355b);--docsearch-key-shadow:inset 0 -2px 0 0 #282d55,inset 0 0 1px 1px #51577d,0 2px 2px 0 rgba(3,4,9,.3);--docsearch-key-pressed-shadow:inset 0 -2px 0 0 #282d55,inset 0 0 1px 1px #51577d,0 1px 1px 0 rgba(3,4,9,.30196078431372547);--docsearch-footer-background:#1e2136;--docsearch-footer-shadow:inset 0 1px 0 0 rgba(73,76,106,.5),0 -4px 8px 0 rgba(0,0,0,.2);--docsearch-logo-color:#fff;--docsearch-muted-color:#7f8497}.DocSearch-Button{align-items:center;background:var(--docsearch-searchbox-background);border:0;border-radius:40px;color:var(--docsearch-muted-color);cursor:pointer;display:flex;font-weight:500;height:36px;justify-content:space-between;margin:0 0 0 16px;padding:0 8px;-webkit-user-select:none;user-select:none}.DocSearch-Button:active,.DocSearch-Button:focus,.DocSearch-Button:hover{background:var(--docsearch-searchbox-focus-background);box-shadow:var(--docsearch-searchbox-shadow);color:var(--docsearch-text-color);outline:none}.DocSearch-Button-Container{align-items:center;display:flex}.DocSearch-Search-Icon{stroke-width:1.6}.DocSearch-Button .DocSearch-Search-Icon{color:var(--docsearch-text-color)}.DocSearch-Button-Placeholder{font-size:1rem;padding:0 12px 0 6px}.DocSearch-Button-Keys{display:flex;min-width:calc(40px + .8em)}.DocSearch-Button-Key{align-items:center;background:var(--docsearch-key-gradient);border-radius:3px;box-shadow:var(--docsearch-key-shadow);color:var(--docsearch-muted-color);display:flex;height:18px;justify-content:center;margin-right:.4em;position:relative;padding:0 0 2px;border:0;top:-1px;width:20px}.DocSearch-Button-Key--pressed{transform:translate3d(0,1px,0);box-shadow:var(--docsearch-key-pressed-shadow)}@media (max-width:768px){.DocSearch-Button-Keys,.DocSearch-Button-Placeholder{display:none}}.DocSearch--active{overflow:hidden!important}.DocSearch-Container,.DocSearch-Container *{box-sizing:border-box}.DocSearch-Container{background-color:var(--docsearch-container-background);height:100vh;left:0;position:fixed;top:0;width:100vw;z-index:200}.DocSearch-Container a{text-decoration:none}.DocSearch-Link{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:none;border:0;color:var(--docsearch-highlight-color);cursor:pointer;font:inherit;margin:0;padding:0}.DocSearch-Modal{background:var(--docsearch-modal-background);border-radius:6px;box-shadow:var(--docsearch-modal-shadow);flex-direction:column;margin:60px auto auto;max-width:var(--docsearch-modal-width);position:relative}.DocSearch-SearchBar{display:flex;padding:var(--docsearch-spacing) var(--docsearch-spacing) 0}.DocSearch-Form{align-items:center;background:var(--docsearch-searchbox-focus-background);border-radius:4px;box-shadow:var(--docsearch-searchbox-shadow);display:flex;height:var(--docsearch-searchbox-height);margin:0;padding:0 var(--docsearch-spacing);position:relative;width:100%}.DocSearch-Input{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:transparent;border:0;color:var(--docsearch-text-color);flex:1;font:inherit;font-size:1.2em;height:100%;outline:none;padding:0 0 0 8px;width:80%}.DocSearch-Input::placeholder{color:var(--docsearch-muted-color);opacity:1}.DocSearch-Input::-webkit-search-cancel-button,.DocSearch-Input::-webkit-search-decoration,.DocSearch-Input::-webkit-search-results-button,.DocSearch-Input::-webkit-search-results-decoration{display:none}.DocSearch-LoadingIndicator,.DocSearch-MagnifierLabel,.DocSearch-Reset{margin:0;padding:0}.DocSearch-MagnifierLabel,.DocSearch-Reset{align-items:center;color:var(--docsearch-highlight-color);display:flex;justify-content:center}.DocSearch-Container--Stalled .DocSearch-MagnifierLabel,.DocSearch-LoadingIndicator{display:none}.DocSearch-Container--Stalled .DocSearch-LoadingIndicator{align-items:center;color:var(--docsearch-highlight-color);display:flex;justify-content:center}@media screen and (prefers-reduced-motion:reduce){.DocSearch-Reset{animation:none;-webkit-appearance:none;-moz-appearance:none;appearance:none;background:none;border:0;border-radius:50%;color:var(--docsearch-icon-color);cursor:pointer;right:0;stroke-width:var(--docsearch-icon-stroke-width)}}.DocSearch-Reset{animation:fade-in .1s ease-in forwards;-webkit-appearance:none;-moz-appearance:none;appearance:none;background:none;border:0;border-radius:50%;color:var(--docsearch-icon-color);cursor:pointer;padding:2px;right:0;stroke-width:var(--docsearch-icon-stroke-width)}.DocSearch-Reset[hidden]{display:none}.DocSearch-Reset:hover{color:var(--docsearch-highlight-color)}.DocSearch-LoadingIndicator svg,.DocSearch-MagnifierLabel svg{height:24px;width:24px}.DocSearch-Cancel{display:none}.DocSearch-Dropdown{max-height:calc(var(--docsearch-modal-height) - var(--docsearch-searchbox-height) - var(--docsearch-spacing) - var(--docsearch-footer-height));min-height:var(--docsearch-spacing);overflow-y:auto;overflow-y:overlay;padding:0 var(--docsearch-spacing);scrollbar-color:var(--docsearch-muted-color) var(--docsearch-modal-background);scrollbar-width:thin}.DocSearch-Dropdown::-webkit-scrollbar{width:12px}.DocSearch-Dropdown::-webkit-scrollbar-track{background:transparent}.DocSearch-Dropdown::-webkit-scrollbar-thumb{background-color:var(--docsearch-muted-color);border:3px solid var(--docsearch-modal-background);border-radius:20px}.DocSearch-Dropdown ul{list-style:none;margin:0;padding:0}.DocSearch-Label{font-size:.75em;line-height:1.6em}.DocSearch-Help,.DocSearch-Label{color:var(--docsearch-muted-color)}.DocSearch-Help{font-size:.9em;margin:0;-webkit-user-select:none;user-select:none}.DocSearch-Title{font-size:1.2em}.DocSearch-Logo a{display:flex}.DocSearch-Logo svg{color:var(--docsearch-logo-color);margin-left:8px}.DocSearch-Hits:last-of-type{margin-bottom:24px}.DocSearch-Hits mark{background:none;color:var(--docsearch-highlight-color)}.DocSearch-HitsFooter{color:var(--docsearch-muted-color);display:flex;font-size:.85em;justify-content:center;margin-bottom:var(--docsearch-spacing);padding:var(--docsearch-spacing)}.DocSearch-HitsFooter a{border-bottom:1px solid;color:inherit}.DocSearch-Hit{border-radius:4px;display:flex;padding-bottom:4px;position:relative}@media screen and (prefers-reduced-motion:reduce){.DocSearch-Hit--deleting{transition:none}}.DocSearch-Hit--deleting{opacity:0;transition:all .25s linear}@media screen and (prefers-reduced-motion:reduce){.DocSearch-Hit--favoriting{transition:none}}.DocSearch-Hit--favoriting{transform:scale(0);transform-origin:top center;transition:all .25s linear;transition-delay:.25s}.DocSearch-Hit a{background:var(--docsearch-hit-background);border-radius:4px;box-shadow:var(--docsearch-hit-shadow);display:block;padding-left:var(--docsearch-spacing);width:100%}.DocSearch-Hit-source{background:var(--docsearch-modal-background);color:var(--docsearch-highlight-color);font-size:.85em;font-weight:600;line-height:32px;margin:0 -4px;padding:8px 4px 0;position:sticky;top:0;z-index:10}.DocSearch-Hit-Tree{color:var(--docsearch-muted-color);height:var(--docsearch-hit-height);opacity:.5;stroke-width:var(--docsearch-icon-stroke-width);width:24px}.DocSearch-Hit[aria-selected=true] a{background-color:var(--docsearch-highlight-color)}.DocSearch-Hit[aria-selected=true] mark{text-decoration:underline}.DocSearch-Hit-Container{align-items:center;color:var(--docsearch-hit-color);display:flex;flex-direction:row;height:var(--docsearch-hit-height);padding:0 var(--docsearch-spacing) 0 0}.DocSearch-Hit-icon{height:20px;width:20px}.DocSearch-Hit-action,.DocSearch-Hit-icon{color:var(--docsearch-muted-color);stroke-width:var(--docsearch-icon-stroke-width)}.DocSearch-Hit-action{align-items:center;display:flex;height:22px;width:22px}.DocSearch-Hit-action svg{display:block;height:18px;width:18px}.DocSearch-Hit-action+.DocSearch-Hit-action{margin-left:6px}.DocSearch-Hit-action-button{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:none;border:0;border-radius:50%;color:inherit;cursor:pointer;padding:2px}svg.DocSearch-Hit-Select-Icon{display:none}.DocSearch-Hit[aria-selected=true] .DocSearch-Hit-Select-Icon{display:block}.DocSearch-Hit-action-button:focus,.DocSearch-Hit-action-button:hover{background:#0003;transition:background-color .1s ease-in}@media screen and (prefers-reduced-motion:reduce){.DocSearch-Hit-action-button:focus,.DocSearch-Hit-action-button:hover{transition:none}}.DocSearch-Hit-action-button:focus path,.DocSearch-Hit-action-button:hover path{fill:#fff}.DocSearch-Hit-content-wrapper{display:flex;flex:1 1 auto;flex-direction:column;font-weight:500;justify-content:center;line-height:1.2em;margin:0 8px;overflow-x:hidden;position:relative;text-overflow:ellipsis;white-space:nowrap;width:80%}.DocSearch-Hit-title{font-size:.9em}.DocSearch-Hit-path{color:var(--docsearch-muted-color);font-size:.75em}.DocSearch-Hit[aria-selected=true] .DocSearch-Hit-action,.DocSearch-Hit[aria-selected=true] .DocSearch-Hit-icon,.DocSearch-Hit[aria-selected=true] .DocSearch-Hit-path,.DocSearch-Hit[aria-selected=true] .DocSearch-Hit-text,.DocSearch-Hit[aria-selected=true] .DocSearch-Hit-title,.DocSearch-Hit[aria-selected=true] .DocSearch-Hit-Tree,.DocSearch-Hit[aria-selected=true] mark{color:var(--docsearch-hit-active-color)!important}@media screen and (prefers-reduced-motion:reduce){.DocSearch-Hit-action-button:focus,.DocSearch-Hit-action-button:hover{background:#0003;transition:none}}.DocSearch-ErrorScreen,.DocSearch-NoResults,.DocSearch-StartScreen{font-size:.9em;margin:0 auto;padding:36px 0;text-align:center;width:80%}.DocSearch-Screen-Icon{color:var(--docsearch-muted-color);padding-bottom:12px}.DocSearch-NoResults-Prefill-List{display:inline-block;padding-bottom:24px;text-align:left}.DocSearch-NoResults-Prefill-List ul{display:inline-block;padding:8px 0 0}.DocSearch-NoResults-Prefill-List li{list-style-position:inside;list-style-type:"» "}.DocSearch-Prefill{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:none;border:0;border-radius:1em;color:var(--docsearch-highlight-color);cursor:pointer;display:inline-block;font-size:1em;font-weight:700;padding:0}.DocSearch-Prefill:focus,.DocSearch-Prefill:hover{outline:none;text-decoration:underline}.DocSearch-Footer{align-items:center;background:var(--docsearch-footer-background);border-radius:0 0 8px 8px;box-shadow:var(--docsearch-footer-shadow);display:flex;flex-direction:row-reverse;flex-shrink:0;height:var(--docsearch-footer-height);justify-content:space-between;padding:0 var(--docsearch-spacing);position:relative;-webkit-user-select:none;user-select:none;width:100%;z-index:300}.DocSearch-Commands{color:var(--docsearch-muted-color);display:flex;list-style:none;margin:0;padding:0}.DocSearch-Commands li{align-items:center;display:flex}.DocSearch-Commands li:not(:last-of-type){margin-right:.8em}.DocSearch-Commands-Key{align-items:center;background:var(--docsearch-key-gradient);border-radius:2px;box-shadow:var(--docsearch-key-shadow);display:flex;height:18px;justify-content:center;margin-right:.4em;padding:0 0 1px;color:var(--docsearch-muted-color);border:0;width:20px}.DocSearch-VisuallyHiddenForAccessibility{clip:rect(0 0 0 0);clip-path:inset(50%);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}@media (max-width:768px){:root{--docsearch-spacing:10px;--docsearch-footer-height:40px}.DocSearch-Dropdown{height:100%}.DocSearch-Container{height:100vh;height:-webkit-fill-available;height:calc(var(--docsearch-vh, 1vh)*100);position:absolute}.DocSearch-Footer{border-radius:0;bottom:0;position:absolute}.DocSearch-Hit-content-wrapper{display:flex;position:relative;width:80%}.DocSearch-Modal{border-radius:0;box-shadow:none;height:100vh;height:-webkit-fill-available;height:calc(var(--docsearch-vh, 1vh)*100);margin:0;max-width:100%;width:100%}.DocSearch-Dropdown{max-height:calc(var(--docsearch-vh, 1vh)*100 - var(--docsearch-searchbox-height) - var(--docsearch-spacing) - var(--docsearch-footer-height))}.DocSearch-Cancel{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:none;border:0;color:var(--docsearch-highlight-color);cursor:pointer;display:inline-block;flex:none;font:inherit;font-size:1em;font-weight:500;margin-left:var(--docsearch-spacing);outline:none;overflow:hidden;padding:0;-webkit-user-select:none;user-select:none;white-space:nowrap}.DocSearch-Commands,.DocSearch-Hit-Tree{display:none}}@keyframes fade-in{0%{opacity:0}to{opacity:1}}[class*=DocSearch]{--docsearch-primary-color: var(--vp-c-brand-1);--docsearch-highlight-color: var(--docsearch-primary-color);--docsearch-text-color: var(--vp-c-text-1);--docsearch-muted-color: var(--vp-c-text-2);--docsearch-searchbox-shadow: none;--docsearch-searchbox-background: transparent;--docsearch-searchbox-focus-background: transparent;--docsearch-key-gradient: transparent;--docsearch-key-shadow: none;--docsearch-modal-background: var(--vp-c-bg-soft);--docsearch-footer-background: var(--vp-c-bg)}.dark [class*=DocSearch]{--docsearch-modal-shadow: none;--docsearch-footer-shadow: none;--docsearch-logo-color: var(--vp-c-text-2);--docsearch-hit-background: var(--vp-c-default-soft);--docsearch-hit-color: var(--vp-c-text-2);--docsearch-hit-shadow: none}.DocSearch-Button{display:flex;justify-content:center;align-items:center;margin:0;padding:0;width:48px;height:55px;background:transparent;transition:border-color .25s}.DocSearch-Button:hover{background:transparent}.DocSearch-Button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}.DocSearch-Button-Key--pressed{transform:none;box-shadow:none}.DocSearch-Button:focus:not(:focus-visible){outline:none!important}@media (min-width: 768px){.DocSearch-Button{justify-content:flex-start;border:1px solid transparent;border-radius:8px;padding:0 10px 0 12px;width:100%;height:40px;background-color:var(--vp-c-bg-alt)}.DocSearch-Button:hover{border-color:var(--vp-c-brand-1);background:var(--vp-c-bg-alt)}}.DocSearch-Button .DocSearch-Button-Container{display:flex;align-items:center}.DocSearch-Button .DocSearch-Search-Icon{position:relative;width:16px;height:16px;color:var(--vp-c-text-1);fill:currentColor;transition:color .5s}.DocSearch-Button:hover .DocSearch-Search-Icon{color:var(--vp-c-text-1)}@media (min-width: 768px){.DocSearch-Button .DocSearch-Search-Icon{top:1px;margin-right:8px;width:14px;height:14px;color:var(--vp-c-text-2)}}.DocSearch-Button .DocSearch-Button-Placeholder{display:none;margin-top:2px;padding:0 16px 0 0;font-size:13px;font-weight:500;color:var(--vp-c-text-2);transition:color .5s}.DocSearch-Button:hover .DocSearch-Button-Placeholder{color:var(--vp-c-text-1)}@media (min-width: 768px){.DocSearch-Button .DocSearch-Button-Placeholder{display:inline-block}}.DocSearch-Button .DocSearch-Button-Keys{direction:ltr;display:none;min-width:auto}@media (min-width: 768px){.DocSearch-Button .DocSearch-Button-Keys{display:flex;align-items:center}}.DocSearch-Button .DocSearch-Button-Key{display:block;margin:2px 0 0;border:1px solid var(--vp-c-divider);border-right:none;border-radius:4px 0 0 4px;padding-left:6px;min-width:0;width:auto;height:22px;line-height:22px;font-family:var(--vp-font-family-base);font-size:12px;font-weight:500;transition:color .5s,border-color .5s}.DocSearch-Button .DocSearch-Button-Key+.DocSearch-Button-Key{border-right:1px solid var(--vp-c-divider);border-left:none;border-radius:0 4px 4px 0;padding-left:2px;padding-right:6px}.DocSearch-Button .DocSearch-Button-Key:first-child{font-size:0!important}.DocSearch-Button .DocSearch-Button-Key:first-child:after{content:"Ctrl";font-size:12px;letter-spacing:normal;color:var(--docsearch-muted-color)}.mac .DocSearch-Button .DocSearch-Button-Key:first-child:after{content:"⌘"}.DocSearch-Button .DocSearch-Button-Key:first-child>*{display:none}.DocSearch-Search-Icon{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' stroke-width='1.6' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' d='m14.386 14.386 4.088 4.088-4.088-4.088A7.533 7.533 0 1 1 3.733 3.733a7.533 7.533 0 0 1 10.653 10.653z'/%3E%3C/svg%3E")}.VPNavBarSearch{display:flex;align-items:center}@media (min-width: 768px){.VPNavBarSearch{flex-grow:1;padding-left:24px}}@media (min-width: 960px){.VPNavBarSearch{padding-left:32px}}.dark .DocSearch-Footer{border-top:1px solid var(--vp-c-divider)}.DocSearch-Form{border:1px solid var(--vp-c-brand-1);background-color:var(--vp-c-white)}.dark .DocSearch-Form{background-color:var(--vp-c-default-soft)}.DocSearch-Screen-Icon>svg{margin:auto}.VPNavBarSocialLinks[data-v-0394ad82]{display:none}@media (min-width: 1280px){.VPNavBarSocialLinks[data-v-0394ad82]{display:flex;align-items:center}}.title[data-v-ab179fa1]{display:flex;align-items:center;border-bottom:1px solid transparent;width:100%;height:var(--vp-nav-height);font-size:16px;font-weight:600;color:var(--vp-c-text-1);transition:opacity .25s}@media (min-width: 960px){.title[data-v-ab179fa1]{flex-shrink:0}.VPNavBarTitle.has-sidebar .title[data-v-ab179fa1]{border-bottom-color:var(--vp-c-divider)}}[data-v-ab179fa1] .logo{margin-right:8px;height:var(--vp-nav-logo-height)}.VPNavBarTranslations[data-v-88af2de4]{display:none}@media (min-width: 1280px){.VPNavBarTranslations[data-v-88af2de4]{display:flex;align-items:center}}.title[data-v-88af2de4]{padding:0 24px 0 12px;line-height:32px;font-size:14px;font-weight:700;color:var(--vp-c-text-1)}.VPNavBar[data-v-ccf7ddec]{position:relative;height:var(--vp-nav-height);pointer-events:none;white-space:nowrap;transition:background-color .5s}.VPNavBar[data-v-ccf7ddec]:not(.home){background-color:var(--vp-nav-bg-color)}@media (min-width: 960px){.VPNavBar[data-v-ccf7ddec]:not(.home){background-color:transparent}.VPNavBar[data-v-ccf7ddec]:not(.has-sidebar):not(.home.top){background-color:var(--vp-nav-bg-color)}}.wrapper[data-v-ccf7ddec]{padding:0 8px 0 24px}@media (min-width: 768px){.wrapper[data-v-ccf7ddec]{padding:0 32px}}@media (min-width: 960px){.VPNavBar.has-sidebar .wrapper[data-v-ccf7ddec]{padding:0}}.container[data-v-ccf7ddec]{display:flex;justify-content:space-between;margin:0 auto;max-width:calc(var(--vp-layout-max-width) - 64px);height:var(--vp-nav-height);pointer-events:none}.container>.title[data-v-ccf7ddec],.container>.content[data-v-ccf7ddec]{pointer-events:none}.container[data-v-ccf7ddec] *{pointer-events:auto}@media (min-width: 960px){.VPNavBar.has-sidebar .container[data-v-ccf7ddec]{max-width:100%}}.title[data-v-ccf7ddec]{flex-shrink:0;height:calc(var(--vp-nav-height) - 1px);transition:background-color .5s}@media (min-width: 960px){.VPNavBar.has-sidebar .title[data-v-ccf7ddec]{position:absolute;top:0;left:0;z-index:2;padding:0 32px;width:var(--vp-sidebar-width);height:var(--vp-nav-height);background-color:transparent}}@media (min-width: 1440px){.VPNavBar.has-sidebar .title[data-v-ccf7ddec]{padding-left:max(32px,calc((100% - (var(--vp-layout-max-width) - 64px)) / 2));width:calc((100% - (var(--vp-layout-max-width) - 64px)) / 2 + var(--vp-sidebar-width) - 32px)}}.content[data-v-ccf7ddec]{flex-grow:1}@media (min-width: 960px){.VPNavBar.has-sidebar .content[data-v-ccf7ddec]{position:relative;z-index:1;padding-right:32px;padding-left:var(--vp-sidebar-width)}}@media (min-width: 1440px){.VPNavBar.has-sidebar .content[data-v-ccf7ddec]{padding-right:calc((100vw - var(--vp-layout-max-width)) / 2 + 32px);padding-left:calc((100vw - var(--vp-layout-max-width)) / 2 + var(--vp-sidebar-width))}}.content-body[data-v-ccf7ddec]{display:flex;justify-content:flex-end;align-items:center;height:var(--vp-nav-height);transition:background-color .5s}@media (min-width: 960px){.VPNavBar:not(.home.top) .content-body[data-v-ccf7ddec]{position:relative;background-color:var(--vp-nav-bg-color)}.VPNavBar:not(.has-sidebar):not(.home.top) .content-body[data-v-ccf7ddec]{background-color:transparent}}@media (max-width: 767px){.content-body[data-v-ccf7ddec]{column-gap:.5rem}}.menu+.translations[data-v-ccf7ddec]:before,.menu+.appearance[data-v-ccf7ddec]:before,.menu+.social-links[data-v-ccf7ddec]:before,.translations+.appearance[data-v-ccf7ddec]:before,.appearance+.social-links[data-v-ccf7ddec]:before{margin-right:8px;margin-left:8px;width:1px;height:24px;background-color:var(--vp-c-divider);content:""}.menu+.appearance[data-v-ccf7ddec]:before,.translations+.appearance[data-v-ccf7ddec]:before{margin-right:16px}.appearance+.social-links[data-v-ccf7ddec]:before{margin-left:16px}.social-links[data-v-ccf7ddec]{margin-right:-8px}.divider[data-v-ccf7ddec]{width:100%;height:1px}@media (min-width: 960px){.VPNavBar.has-sidebar .divider[data-v-ccf7ddec]{padding-left:var(--vp-sidebar-width)}}@media (min-width: 1440px){.VPNavBar.has-sidebar .divider[data-v-ccf7ddec]{padding-left:calc((100vw - var(--vp-layout-max-width)) / 2 + var(--vp-sidebar-width))}}.divider-line[data-v-ccf7ddec]{width:100%;height:1px;transition:background-color .5s}.VPNavBar:not(.home) .divider-line[data-v-ccf7ddec]{background-color:var(--vp-c-gutter)}@media (min-width: 960px){.VPNavBar:not(.home.top) .divider-line[data-v-ccf7ddec]{background-color:var(--vp-c-gutter)}.VPNavBar:not(.has-sidebar):not(.home.top) .divider[data-v-ccf7ddec]{background-color:var(--vp-c-gutter)}}.VPNavScreenAppearance[data-v-2d7af913]{display:flex;justify-content:space-between;align-items:center;border-radius:8px;padding:12px 14px 12px 16px;background-color:var(--vp-c-bg-soft)}.text[data-v-2d7af913]{line-height:24px;font-size:12px;font-weight:500;color:var(--vp-c-text-2)}.VPNavScreenMenuLink[data-v-7f31e1f6]{display:block;border-bottom:1px solid var(--vp-c-divider);padding:12px 0 11px;line-height:24px;font-size:14px;font-weight:500;color:var(--vp-c-text-1);transition:border-color .25s,color .25s}.VPNavScreenMenuLink[data-v-7f31e1f6]:hover{color:var(--vp-c-brand-1)}.VPNavScreenMenuGroupLink[data-v-19976ae1]{display:block;margin-left:12px;line-height:32px;font-size:14px;font-weight:400;color:var(--vp-c-text-1);transition:color .25s}.VPNavScreenMenuGroupLink[data-v-19976ae1]:hover{color:var(--vp-c-brand-1)}.VPNavScreenMenuGroupSection[data-v-8133b170]{display:block}.title[data-v-8133b170]{line-height:32px;font-size:13px;font-weight:700;color:var(--vp-c-text-2);transition:color .25s}.VPNavScreenMenuGroup[data-v-ff6087d4]{border-bottom:1px solid var(--vp-c-divider);height:48px;overflow:hidden;transition:border-color .5s}.VPNavScreenMenuGroup .items[data-v-ff6087d4]{visibility:hidden}.VPNavScreenMenuGroup.open .items[data-v-ff6087d4]{visibility:visible}.VPNavScreenMenuGroup.open[data-v-ff6087d4]{padding-bottom:10px;height:auto}.VPNavScreenMenuGroup.open .button[data-v-ff6087d4]{padding-bottom:6px;color:var(--vp-c-brand-1)}.VPNavScreenMenuGroup.open .button-icon[data-v-ff6087d4]{transform:rotate(45deg)}.button[data-v-ff6087d4]{display:flex;justify-content:space-between;align-items:center;padding:12px 4px 11px 0;width:100%;line-height:24px;font-size:14px;font-weight:500;color:var(--vp-c-text-1);transition:color .25s}.button[data-v-ff6087d4]:hover{color:var(--vp-c-brand-1)}.button-icon[data-v-ff6087d4]{transition:transform .25s}.group[data-v-ff6087d4]:first-child{padding-top:0}.group+.group[data-v-ff6087d4],.group+.item[data-v-ff6087d4]{padding-top:4px}.VPNavScreenTranslations[data-v-858fe1a4]{height:24px;overflow:hidden}.VPNavScreenTranslations.open[data-v-858fe1a4]{height:auto}.title[data-v-858fe1a4]{display:flex;align-items:center;font-size:14px;font-weight:500;color:var(--vp-c-text-1)}.icon[data-v-858fe1a4]{font-size:16px}.icon.lang[data-v-858fe1a4]{margin-right:8px}.icon.chevron[data-v-858fe1a4]{margin-left:4px}.list[data-v-858fe1a4]{padding:4px 0 0 24px}.link[data-v-858fe1a4]{line-height:32px;font-size:13px;color:var(--vp-c-text-1)}.VPNavScreen[data-v-cc5739dd]{position:fixed;top:calc(var(--vp-nav-height) + var(--vp-layout-top-height, 0px) + 1px);right:0;bottom:0;left:0;padding:0 32px;width:100%;background-color:var(--vp-nav-screen-bg-color);overflow-y:auto;transition:background-color .5s;pointer-events:auto}.VPNavScreen.fade-enter-active[data-v-cc5739dd],.VPNavScreen.fade-leave-active[data-v-cc5739dd]{transition:opacity .25s}.VPNavScreen.fade-enter-active .container[data-v-cc5739dd],.VPNavScreen.fade-leave-active .container[data-v-cc5739dd]{transition:transform .25s ease}.VPNavScreen.fade-enter-from[data-v-cc5739dd],.VPNavScreen.fade-leave-to[data-v-cc5739dd]{opacity:0}.VPNavScreen.fade-enter-from .container[data-v-cc5739dd],.VPNavScreen.fade-leave-to .container[data-v-cc5739dd]{transform:translateY(-8px)}@media (min-width: 768px){.VPNavScreen[data-v-cc5739dd]{display:none}}.container[data-v-cc5739dd]{margin:0 auto;padding:24px 0 96px;max-width:288px}.menu+.translations[data-v-cc5739dd],.menu+.appearance[data-v-cc5739dd],.translations+.appearance[data-v-cc5739dd]{margin-top:24px}.menu+.social-links[data-v-cc5739dd]{margin-top:16px}.appearance+.social-links[data-v-cc5739dd]{margin-top:16px}.VPNav[data-v-ae24b3ad]{position:relative;top:var(--vp-layout-top-height, 0px);left:0;z-index:var(--vp-z-index-nav);width:100%;pointer-events:none;transition:background-color .5s}@media (min-width: 960px){.VPNav[data-v-ae24b3ad]{position:fixed}}.VPSidebarItem.level-0[data-v-b8d55f3b]{padding-bottom:24px}.VPSidebarItem.collapsed.level-0[data-v-b8d55f3b]{padding-bottom:10px}.item[data-v-b8d55f3b]{position:relative;display:flex;width:100%}.VPSidebarItem.collapsible>.item[data-v-b8d55f3b]{cursor:pointer}.indicator[data-v-b8d55f3b]{position:absolute;top:6px;bottom:6px;left:-17px;width:2px;border-radius:2px;transition:background-color .25s}.VPSidebarItem.level-2.is-active>.item>.indicator[data-v-b8d55f3b],.VPSidebarItem.level-3.is-active>.item>.indicator[data-v-b8d55f3b],.VPSidebarItem.level-4.is-active>.item>.indicator[data-v-b8d55f3b],.VPSidebarItem.level-5.is-active>.item>.indicator[data-v-b8d55f3b]{background-color:var(--vp-c-brand-1)}.link[data-v-b8d55f3b]{display:flex;align-items:center;flex-grow:1}.text[data-v-b8d55f3b]{flex-grow:1;padding:4px 0;line-height:24px;font-size:14px;transition:color .25s}.VPSidebarItem.level-0 .text[data-v-b8d55f3b]{font-weight:700;color:var(--vp-c-text-1)}.VPSidebarItem.level-1 .text[data-v-b8d55f3b],.VPSidebarItem.level-2 .text[data-v-b8d55f3b],.VPSidebarItem.level-3 .text[data-v-b8d55f3b],.VPSidebarItem.level-4 .text[data-v-b8d55f3b],.VPSidebarItem.level-5 .text[data-v-b8d55f3b]{font-weight:500;color:var(--vp-c-text-2)}.VPSidebarItem.level-0.is-link>.item>.link:hover .text[data-v-b8d55f3b],.VPSidebarItem.level-1.is-link>.item>.link:hover .text[data-v-b8d55f3b],.VPSidebarItem.level-2.is-link>.item>.link:hover .text[data-v-b8d55f3b],.VPSidebarItem.level-3.is-link>.item>.link:hover .text[data-v-b8d55f3b],.VPSidebarItem.level-4.is-link>.item>.link:hover .text[data-v-b8d55f3b],.VPSidebarItem.level-5.is-link>.item>.link:hover .text[data-v-b8d55f3b]{color:var(--vp-c-brand-1)}.VPSidebarItem.level-0.has-active>.item>.text[data-v-b8d55f3b],.VPSidebarItem.level-1.has-active>.item>.text[data-v-b8d55f3b],.VPSidebarItem.level-2.has-active>.item>.text[data-v-b8d55f3b],.VPSidebarItem.level-3.has-active>.item>.text[data-v-b8d55f3b],.VPSidebarItem.level-4.has-active>.item>.text[data-v-b8d55f3b],.VPSidebarItem.level-5.has-active>.item>.text[data-v-b8d55f3b],.VPSidebarItem.level-0.has-active>.item>.link>.text[data-v-b8d55f3b],.VPSidebarItem.level-1.has-active>.item>.link>.text[data-v-b8d55f3b],.VPSidebarItem.level-2.has-active>.item>.link>.text[data-v-b8d55f3b],.VPSidebarItem.level-3.has-active>.item>.link>.text[data-v-b8d55f3b],.VPSidebarItem.level-4.has-active>.item>.link>.text[data-v-b8d55f3b],.VPSidebarItem.level-5.has-active>.item>.link>.text[data-v-b8d55f3b]{color:var(--vp-c-text-1)}.VPSidebarItem.level-0.is-active>.item .link>.text[data-v-b8d55f3b],.VPSidebarItem.level-1.is-active>.item .link>.text[data-v-b8d55f3b],.VPSidebarItem.level-2.is-active>.item .link>.text[data-v-b8d55f3b],.VPSidebarItem.level-3.is-active>.item .link>.text[data-v-b8d55f3b],.VPSidebarItem.level-4.is-active>.item .link>.text[data-v-b8d55f3b],.VPSidebarItem.level-5.is-active>.item .link>.text[data-v-b8d55f3b]{color:var(--vp-c-brand-1)}.caret[data-v-b8d55f3b]{display:flex;justify-content:center;align-items:center;margin-right:-7px;width:32px;height:32px;color:var(--vp-c-text-3);cursor:pointer;transition:color .25s;flex-shrink:0}.item:hover .caret[data-v-b8d55f3b]{color:var(--vp-c-text-2)}.item:hover .caret[data-v-b8d55f3b]:hover{color:var(--vp-c-text-1)}.caret-icon[data-v-b8d55f3b]{font-size:18px;transform:rotate(90deg);transition:transform .25s}.VPSidebarItem.collapsed .caret-icon[data-v-b8d55f3b]{transform:rotate(0)}.VPSidebarItem.level-1 .items[data-v-b8d55f3b],.VPSidebarItem.level-2 .items[data-v-b8d55f3b],.VPSidebarItem.level-3 .items[data-v-b8d55f3b],.VPSidebarItem.level-4 .items[data-v-b8d55f3b],.VPSidebarItem.level-5 .items[data-v-b8d55f3b]{border-left:1px solid var(--vp-c-divider);padding-left:16px}.VPSidebarItem.collapsed .items[data-v-b8d55f3b]{display:none}.VPSidebar[data-v-575e6a36]{position:fixed;top:var(--vp-layout-top-height, 0px);bottom:0;left:0;z-index:var(--vp-z-index-sidebar);padding:32px 32px 96px;width:calc(100vw - 64px);max-width:320px;background-color:var(--vp-sidebar-bg-color);opacity:0;box-shadow:var(--vp-c-shadow-3);overflow-x:hidden;overflow-y:auto;transform:translate(-100%);transition:opacity .5s,transform .25s ease;overscroll-behavior:contain}.VPSidebar.open[data-v-575e6a36]{opacity:1;visibility:visible;transform:translate(0);transition:opacity .25s,transform .5s cubic-bezier(.19,1,.22,1)}.dark .VPSidebar[data-v-575e6a36]{box-shadow:var(--vp-shadow-1)}@media (min-width: 960px){.VPSidebar[data-v-575e6a36]{padding-top:var(--vp-nav-height);width:var(--vp-sidebar-width);max-width:100%;background-color:var(--vp-sidebar-bg-color);opacity:1;visibility:visible;box-shadow:none;transform:translate(0)}}@media (min-width: 1440px){.VPSidebar[data-v-575e6a36]{padding-left:max(32px,calc((100% - (var(--vp-layout-max-width) - 64px)) / 2));width:calc((100% - (var(--vp-layout-max-width) - 64px)) / 2 + var(--vp-sidebar-width) - 32px)}}@media (min-width: 960px){.curtain[data-v-575e6a36]{position:sticky;top:-64px;left:0;z-index:1;margin-top:calc(var(--vp-nav-height) * -1);margin-right:-32px;margin-left:-32px;height:var(--vp-nav-height);background-color:var(--vp-sidebar-bg-color)}}.nav[data-v-575e6a36]{outline:0}.group+.group[data-v-575e6a36]{border-top:1px solid var(--vp-c-divider);padding-top:10px}@media (min-width: 960px){.group[data-v-575e6a36]{padding-top:10px;width:calc(var(--vp-sidebar-width) - 64px)}}.VPSkipLink[data-v-0f60ec36]{top:8px;left:8px;padding:8px 16px;z-index:999;border-radius:8px;font-size:12px;font-weight:700;text-decoration:none;color:var(--vp-c-brand-1);box-shadow:var(--vp-shadow-3);background-color:var(--vp-c-bg)}.VPSkipLink[data-v-0f60ec36]:focus{height:auto;width:auto;clip:auto;clip-path:none}@media (min-width: 1280px){.VPSkipLink[data-v-0f60ec36]{top:14px;left:16px}}.Layout[data-v-5d98c3a5]{display:flex;flex-direction:column;min-height:100vh}.VPHomeSponsors[data-v-3d121b4a]{border-top:1px solid var(--vp-c-gutter);padding-top:88px!important}.VPHomeSponsors[data-v-3d121b4a]{margin:96px 0}@media (min-width: 768px){.VPHomeSponsors[data-v-3d121b4a]{margin:128px 0}}.VPHomeSponsors[data-v-3d121b4a]{padding:0 24px}@media (min-width: 768px){.VPHomeSponsors[data-v-3d121b4a]{padding:0 48px}}@media (min-width: 960px){.VPHomeSponsors[data-v-3d121b4a]{padding:0 64px}}.container[data-v-3d121b4a]{margin:0 auto;max-width:1152px}.love[data-v-3d121b4a]{margin:0 auto;width:fit-content;font-size:28px;color:var(--vp-c-text-3)}.icon[data-v-3d121b4a]{display:inline-block}.message[data-v-3d121b4a]{margin:0 auto;padding-top:10px;max-width:320px;text-align:center;line-height:24px;font-size:16px;font-weight:500;color:var(--vp-c-text-2)}.sponsors[data-v-3d121b4a]{padding-top:32px}.action[data-v-3d121b4a]{padding-top:40px;text-align:center}.VPTeamPage[data-v-7c57f839]{margin:96px 0}@media (min-width: 768px){.VPTeamPage[data-v-7c57f839]{margin:128px 0}}.VPHome .VPTeamPageTitle[data-v-7c57f839-s]{border-top:1px solid var(--vp-c-gutter);padding-top:88px!important}.VPTeamPageSection+.VPTeamPageSection[data-v-7c57f839-s],.VPTeamMembers+.VPTeamPageSection[data-v-7c57f839-s]{margin-top:64px}.VPTeamMembers+.VPTeamMembers[data-v-7c57f839-s]{margin-top:24px}@media (min-width: 768px){.VPTeamPageTitle+.VPTeamPageSection[data-v-7c57f839-s]{margin-top:16px}.VPTeamPageSection+.VPTeamPageSection[data-v-7c57f839-s],.VPTeamMembers+.VPTeamPageSection[data-v-7c57f839-s]{margin-top:96px}}.VPTeamMembers[data-v-7c57f839-s]{padding:0 24px}@media (min-width: 768px){.VPTeamMembers[data-v-7c57f839-s]{padding:0 48px}}@media (min-width: 960px){.VPTeamMembers[data-v-7c57f839-s]{padding:0 64px}}.VPTeamPageTitle[data-v-bf2cbdac]{padding:48px 32px;text-align:center}@media (min-width: 768px){.VPTeamPageTitle[data-v-bf2cbdac]{padding:64px 48px 48px}}@media (min-width: 960px){.VPTeamPageTitle[data-v-bf2cbdac]{padding:80px 64px 48px}}.title[data-v-bf2cbdac]{letter-spacing:0;line-height:44px;font-size:36px;font-weight:500}@media (min-width: 768px){.title[data-v-bf2cbdac]{letter-spacing:-.5px;line-height:56px;font-size:48px}}.lead[data-v-bf2cbdac]{margin:0 auto;max-width:512px;padding-top:12px;line-height:24px;font-size:16px;font-weight:500;color:var(--vp-c-text-2)}@media (min-width: 768px){.lead[data-v-bf2cbdac]{max-width:592px;letter-spacing:.15px;line-height:28px;font-size:20px}}.VPTeamPageSection[data-v-b1a88750]{padding:0 32px}@media (min-width: 768px){.VPTeamPageSection[data-v-b1a88750]{padding:0 48px}}@media (min-width: 960px){.VPTeamPageSection[data-v-b1a88750]{padding:0 64px}}.title[data-v-b1a88750]{position:relative;margin:0 auto;max-width:1152px;text-align:center;color:var(--vp-c-text-2)}.title-line[data-v-b1a88750]{position:absolute;top:16px;left:0;width:100%;height:1px;background-color:var(--vp-c-divider)}.title-text[data-v-b1a88750]{position:relative;display:inline-block;padding:0 24px;letter-spacing:0;line-height:32px;font-size:20px;font-weight:500;background-color:var(--vp-c-bg)}.lead[data-v-b1a88750]{margin:0 auto;max-width:480px;padding-top:12px;text-align:center;line-height:24px;font-size:16px;font-weight:500;color:var(--vp-c-text-2)}.members[data-v-b1a88750]{padding-top:40px}.VPTeamMembersItem[data-v-f3fa364a]{display:flex;flex-direction:column;gap:2px;border-radius:12px;width:100%;height:100%;overflow:hidden}.VPTeamMembersItem.small .profile[data-v-f3fa364a]{padding:32px}.VPTeamMembersItem.small .data[data-v-f3fa364a]{padding-top:20px}.VPTeamMembersItem.small .avatar[data-v-f3fa364a]{width:64px;height:64px}.VPTeamMembersItem.small .name[data-v-f3fa364a]{line-height:24px;font-size:16px}.VPTeamMembersItem.small .affiliation[data-v-f3fa364a]{padding-top:4px;line-height:20px;font-size:14px}.VPTeamMembersItem.small .desc[data-v-f3fa364a]{padding-top:12px;line-height:20px;font-size:14px}.VPTeamMembersItem.small .links[data-v-f3fa364a]{margin:0 -16px -20px;padding:10px 0 0}.VPTeamMembersItem.medium .profile[data-v-f3fa364a]{padding:48px 32px}.VPTeamMembersItem.medium .data[data-v-f3fa364a]{padding-top:24px;text-align:center}.VPTeamMembersItem.medium .avatar[data-v-f3fa364a]{width:96px;height:96px}.VPTeamMembersItem.medium .name[data-v-f3fa364a]{letter-spacing:.15px;line-height:28px;font-size:20px}.VPTeamMembersItem.medium .affiliation[data-v-f3fa364a]{padding-top:4px;font-size:16px}.VPTeamMembersItem.medium .desc[data-v-f3fa364a]{padding-top:16px;max-width:288px;font-size:16px}.VPTeamMembersItem.medium .links[data-v-f3fa364a]{margin:0 -16px -12px;padding:16px 12px 0}.profile[data-v-f3fa364a]{flex-grow:1;background-color:var(--vp-c-bg-soft)}.data[data-v-f3fa364a]{text-align:center}.avatar[data-v-f3fa364a]{position:relative;flex-shrink:0;margin:0 auto;border-radius:50%;box-shadow:var(--vp-shadow-3)}.avatar-img[data-v-f3fa364a]{position:absolute;top:0;right:0;bottom:0;left:0;border-radius:50%;object-fit:cover}.name[data-v-f3fa364a]{margin:0;font-weight:600}.affiliation[data-v-f3fa364a]{margin:0;font-weight:500;color:var(--vp-c-text-2)}.org.link[data-v-f3fa364a]{color:var(--vp-c-text-2);transition:color .25s}.org.link[data-v-f3fa364a]:hover{color:var(--vp-c-brand-1)}.desc[data-v-f3fa364a]{margin:0 auto}.desc[data-v-f3fa364a] a{font-weight:500;color:var(--vp-c-brand-1);text-decoration-style:dotted;transition:color .25s}.links[data-v-f3fa364a]{display:flex;justify-content:center;height:56px}.sp-link[data-v-f3fa364a]{display:flex;justify-content:center;align-items:center;text-align:center;padding:16px;font-size:14px;font-weight:500;color:var(--vp-c-sponsor);background-color:var(--vp-c-bg-soft);transition:color .25s,background-color .25s}.sp .sp-link.link[data-v-f3fa364a]:hover,.sp .sp-link.link[data-v-f3fa364a]:focus{outline:none;color:var(--vp-c-white);background-color:var(--vp-c-sponsor)}.sp-icon[data-v-f3fa364a]{margin-right:8px;font-size:16px}.VPTeamMembers.small .container[data-v-6cb0dbc4]{grid-template-columns:repeat(auto-fit,minmax(224px,1fr))}.VPTeamMembers.small.count-1 .container[data-v-6cb0dbc4]{max-width:276px}.VPTeamMembers.small.count-2 .container[data-v-6cb0dbc4]{max-width:576px}.VPTeamMembers.small.count-3 .container[data-v-6cb0dbc4]{max-width:876px}.VPTeamMembers.medium .container[data-v-6cb0dbc4]{grid-template-columns:repeat(auto-fit,minmax(256px,1fr))}@media (min-width: 375px){.VPTeamMembers.medium .container[data-v-6cb0dbc4]{grid-template-columns:repeat(auto-fit,minmax(288px,1fr))}}.VPTeamMembers.medium.count-1 .container[data-v-6cb0dbc4]{max-width:368px}.VPTeamMembers.medium.count-2 .container[data-v-6cb0dbc4]{max-width:760px}.container[data-v-6cb0dbc4]{display:grid;gap:24px;margin:0 auto;max-width:1152px}.VPLocalSearchBox[data-v-639d7ab9]{position:fixed;z-index:100;top:0;right:0;bottom:0;left:0;display:flex}.backdrop[data-v-639d7ab9]{position:absolute;top:0;right:0;bottom:0;left:0;background:var(--vp-backdrop-bg-color);transition:opacity .5s}.shell[data-v-639d7ab9]{position:relative;padding:12px;margin:64px auto;display:flex;flex-direction:column;gap:16px;background:var(--vp-local-search-bg);width:min(100vw - 60px,900px);height:min-content;max-height:min(100vh - 128px,900px);border-radius:6px}@media (max-width: 767px){.shell[data-v-639d7ab9]{margin:0;width:100vw;height:100vh;max-height:none;border-radius:0}}.search-bar[data-v-639d7ab9]{border:1px solid var(--vp-c-divider);border-radius:4px;display:flex;align-items:center;padding:0 12px;cursor:text}@media (max-width: 767px){.search-bar[data-v-639d7ab9]{padding:0 8px}}.search-bar[data-v-639d7ab9]:focus-within{border-color:var(--vp-c-brand-1)}.local-search-icon[data-v-639d7ab9]{display:block;font-size:18px}.navigate-icon[data-v-639d7ab9]{display:block;font-size:14px}.search-icon[data-v-639d7ab9]{margin:8px}@media (max-width: 767px){.search-icon[data-v-639d7ab9]{display:none}}.search-input[data-v-639d7ab9]{padding:6px 12px;font-size:inherit;width:100%}@media (max-width: 767px){.search-input[data-v-639d7ab9]{padding:6px 4px}}.search-actions[data-v-639d7ab9]{display:flex;gap:4px}@media (any-pointer: coarse){.search-actions[data-v-639d7ab9]{gap:8px}}@media (min-width: 769px){.search-actions.before[data-v-639d7ab9]{display:none}}.search-actions button[data-v-639d7ab9]{padding:8px}.search-actions button[data-v-639d7ab9]:not([disabled]):hover,.toggle-layout-button.detailed-list[data-v-639d7ab9]{color:var(--vp-c-brand-1)}.search-actions button.clear-button[data-v-639d7ab9]:disabled{opacity:.37}.search-keyboard-shortcuts[data-v-639d7ab9]{font-size:.8rem;opacity:75%;display:flex;flex-wrap:wrap;gap:16px;line-height:14px}.search-keyboard-shortcuts span[data-v-639d7ab9]{display:flex;align-items:center;gap:4px}@media (max-width: 767px){.search-keyboard-shortcuts[data-v-639d7ab9]{display:none}}.search-keyboard-shortcuts kbd[data-v-639d7ab9]{background:#8080801a;border-radius:4px;padding:3px 6px;min-width:24px;display:inline-block;text-align:center;vertical-align:middle;border:1px solid rgba(128,128,128,.15);box-shadow:0 2px 2px #0000001a}.results[data-v-639d7ab9]{display:flex;flex-direction:column;gap:6px;overflow-x:hidden;overflow-y:auto;overscroll-behavior:contain}.result[data-v-639d7ab9]{display:flex;align-items:center;gap:8px;border-radius:4px;transition:none;line-height:1rem;border:solid 2px var(--vp-local-search-result-border);outline:none}.result>div[data-v-639d7ab9]{margin:12px;width:100%;overflow:hidden}@media (max-width: 767px){.result>div[data-v-639d7ab9]{margin:8px}}.titles[data-v-639d7ab9]{display:flex;flex-wrap:wrap;gap:4px;position:relative;z-index:1001;padding:2px 0}.title[data-v-639d7ab9]{display:flex;align-items:center;gap:4px}.title.main[data-v-639d7ab9]{font-weight:500}.title-icon[data-v-639d7ab9]{opacity:.5;font-weight:500;color:var(--vp-c-brand-1)}.title svg[data-v-639d7ab9]{opacity:.5}.result.selected[data-v-639d7ab9]{--vp-local-search-result-bg: var(--vp-local-search-result-selected-bg);border-color:var(--vp-local-search-result-selected-border)}.excerpt-wrapper[data-v-639d7ab9]{position:relative}.excerpt[data-v-639d7ab9]{opacity:75%;pointer-events:none;max-height:140px;overflow:hidden;position:relative;opacity:.5;margin-top:4px}.result.selected .excerpt[data-v-639d7ab9]{opacity:1}.excerpt[data-v-639d7ab9] *{font-size:.8rem!important;line-height:130%!important}.titles[data-v-639d7ab9] mark,.excerpt[data-v-639d7ab9] mark{background-color:var(--vp-local-search-highlight-bg);color:var(--vp-local-search-highlight-text);border-radius:2px;padding:0 2px}.excerpt[data-v-639d7ab9] .vp-code-group .tabs{display:none}.excerpt[data-v-639d7ab9] .vp-code-group div[class*=language-]{border-radius:8px!important}.excerpt-gradient-bottom[data-v-639d7ab9]{position:absolute;bottom:-1px;left:0;width:100%;height:8px;background:linear-gradient(transparent,var(--vp-local-search-result-bg));z-index:1000}.excerpt-gradient-top[data-v-639d7ab9]{position:absolute;top:-1px;left:0;width:100%;height:8px;background:linear-gradient(var(--vp-local-search-result-bg),transparent);z-index:1000}.result.selected .titles[data-v-639d7ab9],.result.selected .title-icon[data-v-639d7ab9]{color:var(--vp-c-brand-1)!important}.no-results[data-v-639d7ab9]{font-size:.9rem;text-align:center;padding:12px}svg[data-v-639d7ab9]{flex:none} diff --git a/docs/.vitepress/dist/guide/additions/swap.html b/docs/.vitepress/dist/guide/additions/swap.html deleted file mode 100644 index 9d8d391d1..000000000 --- a/docs/.vitepress/dist/guide/additions/swap.html +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - Laravel Wallet Swap | Laravel Wallet - - - - - - - - - - - - - - - - -
Skip to content

Laravel Wallet Swap

Composer

The recommended installation method is using Composer.

In your project root just run:

bash
composer req bavix/laravel-wallet-swap

User model

We need a simple model with the ability to work multi-wallets.

php
use Bavix\Wallet\Interfaces\Wallet;
-use Bavix\Wallet\Traits\HasWallets;
-use Bavix\Wallet\Traits\HasWallet;
-
-class User extends Model implements Wallet
-{
-    use HasWallet, HasWallets;
-}

Simple example

Let's create wallets with currency:

php
$usd = $user->createWallet([
-    'name' => 'My Dollars',
-    'slug' => 'usd',
-    'meta' => ['currency' => 'USD'],
-]);
-
-$rub = $user->createWallet([
-    'name' => 'My Ruble',
-    'slug' => 'rub',
-    'meta' => ['currency' => 'RUB'],
-]);

Find wallets and exchange from one to another.

php
$rub = $user->getWallet('rub');
-$usd = $user->getWallet('usd');
-
-$usd->balance; // 200
-$rub->balance; // 0
-
-$usd->exchange($rub, 10);
-$usd->balance; // 190
-$rub->balance; // 622

It's simple!

- - - - \ No newline at end of file diff --git a/docs/.vitepress/dist/guide/additions/uuid.html b/docs/.vitepress/dist/guide/additions/uuid.html deleted file mode 100644 index a331a9cad..000000000 --- a/docs/.vitepress/dist/guide/additions/uuid.html +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - Laravel Wallet UUID | Laravel Wallet - - - - - - - - - - - - - - - - -
Skip to content

Laravel Wallet UUID

Using uuid greatly reduces package performance. We recommend using int.

Often there is a need to store an identifier in uuid/ulid. Since version 9.0 laravel-wallet supports string identifiers, you only need to perform the migration.

To simplify the process, you can use a ready-made package.

Attention! It will not work to use UUID instead of ID in wallet models; there is a special uuid field for this.

Composer

The recommended installation method is using Composer.

In your project root just run:

bash
composer req bavix/laravel-wallet-uuid

Now you need to migrate!

After migration, you can use the UUID in your models.

You can find implementation examples in the package tests: https://github.com/bavix/laravel-wallet-uuid/tree/master/tests

It's simple!

- - - - \ No newline at end of file diff --git a/docs/.vitepress/dist/guide/cqrs/create-wallet.html b/docs/.vitepress/dist/guide/cqrs/create-wallet.html deleted file mode 100644 index 271b96261..000000000 --- a/docs/.vitepress/dist/guide/cqrs/create-wallet.html +++ /dev/null @@ -1,55 +0,0 @@ - - - - - - Asynchronous wallet creation | Laravel Wallet - - - - - - - - - - - - - - - - -
Skip to content

Asynchronous wallet creation

The idea is based on the division into teams for creating wallets, transactions, etc. The creation of a wallet can be accelerated if the client "generates a wallet himself".

User Model

Add the HasWallet, HasWallets trait's and Wallet interface to model.

php
use Bavix\Wallet\Traits\HasWallet;
-use Bavix\Wallet\Traits\HasWallets;
-use Bavix\Wallet\Interfaces\Wallet;
-
-class User extends Model implements Wallet
-{
-    use HasWallet, HasWallets;
-}

Action Handler

php
use Illuminate\Http\Request;
-use Illuminate\Http\Response;
-use Illuminate\Support\Facades\Response as ResponseFactory;
-...
-
-public function __invoke(User $user, Request $request): Response
-{
-    $name = $request->get('wallet_name');
-    $uuid = $request->get('wallet_uuid');
-
-    $message = new CreateWalletCommandMessage($user, $name, $uuid);
-    dispatch($message);
-
-    return ResponseFactory::json([], 202);
-}

Command Handler

php
public function __invoke(CreateWalletCommandMessage $message): void
-{
-    $user = $message->getUser();
-    $user->createWallet([
-        'uuid' => $message->getWalletUuid(),
-        'name' => $message->getWalletName(),
-    ]);
-}

You receive requests to create a wallet on the backend, and you create them asynchronously. UUID4 is generated on the client side and the client already knows it. You will not be able to create two wallets with one uuid, because the column in the database is unique.

The user no longer needs to wait for the creation of a wallet, it is enough to know the uuid. You get the most stable application.


It's simple!

- - - - \ No newline at end of file diff --git a/docs/.vitepress/dist/guide/db/atomic-service.html b/docs/.vitepress/dist/guide/db/atomic-service.html deleted file mode 100644 index cbeab57ed..000000000 --- a/docs/.vitepress/dist/guide/db/atomic-service.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - Atomic Service | Laravel Wallet - - - - - - - - - - - - - - - - -
Skip to content

Atomic Service

Working with atomic wallet operations.

Before you start working with atomicity, you need to study the "Race Condition" section and configure the lock.

Sometimes it is necessary to apply actions to the user and the wallet atomically. For example, you want to raise an ad in the search and withdraw money from your wallet. You need an Atomic Service Interface.

php
use Bavix\Wallet\Services\AtomicServiceInterface;
-
-app(AtomicServiceInterface::class)->block($wallet, function () use ($wallet, $entity) {
-    $entity->increaseSales(); // update entity set sort_at=NOW() where id=123;
-    $wallet->withdraw(100);
-});

What's going on here? We block the wallet and raise the ad in the transaction (yes, atomic immediately starts the transaction - this is the main difference from LockServiceInterface). We raise the ad and deduct the amount from the wallet. If there are not enough funds to raise the ad, the error will complete the atomic operation and the transaction will roll back, and the lock on the wallet will be removed.

There is also an opportunity to block a lot of wallets. The operation is expensive, it generates N requests to the lock service. Maybe I'll optimize it in the future, but that's not for sure.


For example, we need to debit from two wallets at the same time. Then let's use the "blocks" method.

php
use Bavix\Wallet\Services\AtomicServiceInterface;
-
-app(AtomicServiceInterface::class)->blocks([$wallet1, $wallet2], function () use ($wallet1, $wallet2) {
-    $wallet1->withdraw(100);
-    $wallet2->withdraw(100);
-});

In this case, we blocked both wallets and started the process of debiting funds. Debiting from both wallets will be considered a successful operation. If there are not enough funds on some wallet, the operation is canceled.

It's simple!

- - - - \ No newline at end of file diff --git a/docs/.vitepress/dist/guide/db/race-condition.html b/docs/.vitepress/dist/guide/db/race-condition.html deleted file mode 100644 index e12909a93..000000000 --- a/docs/.vitepress/dist/guide/db/race-condition.html +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - Race Condition | Laravel Wallet - - - - - - - - - - - - - - - - -
Skip to content

Race Condition

A common issue in the issue is about race conditions.

If you have not yet imported the config into the project, then you need to do this.

bash
php artisan vendor:publish --tag=laravel-wallet-config

Previously, there was a vacuum package, but now it is a part of the core. You just need to configure the lock service and the cache service in the package configuration wallet.php.

php
    /**
-     * A system for dealing with race conditions.
-     */
-    'lock' => [
-        'driver' => 'array',
-        'seconds' => 1,
-    ],

To enable the fight against race conditions, you need to select a provider that supports work with locks. I recommend redis.

There is a setting for storing the state of the wallet, I recommend choosing redis here too.

php
    /**
-     * Storage of the state of the balance of wallets.
-     */
-    'cache' => ['driver' => 'array'],

You need redis-server and php-redis.

Redis is recommended but not required. You can choose whatever the framework offers you.

It's simple!

- - - - \ No newline at end of file diff --git a/docs/.vitepress/dist/guide/db/transaction.html b/docs/.vitepress/dist/guide/db/transaction.html deleted file mode 100644 index 69a29c36d..000000000 --- a/docs/.vitepress/dist/guide/db/transaction.html +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - Transaction | Laravel Wallet - - - - - - - - - - - - - - - - -
Skip to content

Transaction

You definitely need to know the feature of transactions. The wallet is automatically blocked from the moment it is used until the end of the transaction. Therefore, it is necessary to use the wallet closer to the end of the transaction.

Very important! Almost all wallet transactions are blocking.

php
use Illuminate\Support\Facades\DB;
-
-DB::beginTransaction();
-$wallet->balanceInt; // now the wallet is blocked
-doingMagic(); // running for a long time.
-DB::commit(); // here will unlock the wallet

The point is that you need to minimize operations within transactions as much as possible. The longer the transaction, the longer the wallet lock. The maximum wallet blocking time is set in the configuration. The longer the transaction takes, the more likely it is to get a race for the wallet.


It's simple!

- - - - \ No newline at end of file diff --git a/docs/.vitepress/dist/guide/events/balance-updated-event.html b/docs/.vitepress/dist/guide/events/balance-updated-event.html deleted file mode 100644 index 0907d28b0..000000000 --- a/docs/.vitepress/dist/guide/events/balance-updated-event.html +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - Tracking balance changes | Laravel Wallet - - - - - - - - - - - - - - - - -
Skip to content

Tracking balance changes

There are tasks when you urgently need to do something when the user's balance changes. A frequent case of transferring data via websockets to the front-end.

Version 7.2 introduces an interface to which you can subscribe. This is done using standard Laravel methods. More information in the documentation.

php
use Bavix\Wallet\Internal\Events\BalanceUpdatedEventInterface;
-
-protected $listen = [
-    BalanceUpdatedEventInterface::class => [
-        MyBalanceUpdatedListener::class,
-    ],
-];

And then we create a listener.

php
use Bavix\Wallet\Internal\Events\BalanceUpdatedEventInterface;
-
-class MyBalanceUpdatedListener
-{
-    public function handle(BalanceUpdatedEventInterface $event): void
-    {
-        // And then the implementation...
-    }
-}

It's simple!

- - - - \ No newline at end of file diff --git a/docs/.vitepress/dist/guide/events/customize.html b/docs/.vitepress/dist/guide/events/customize.html deleted file mode 100644 index d66ba011a..000000000 --- a/docs/.vitepress/dist/guide/events/customize.html +++ /dev/null @@ -1,70 +0,0 @@ - - - - - - Customizing events | Laravel Wallet - - - - - - - - - - - - - - - - -
Skip to content

Customizing events

Sometimes you want to modify the standard events of a package. This is done quite simply.

Let's add broadcast support? We need to implement our event from the interface.

php
use Bavix\Wallet\Internal\Events\BalanceUpdatedEventInterface;
-use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
-
-final class MyUpdatedEvent implements BalanceUpdatedEventInterface, ShouldBroadcast
-{
-    public function __construct(
-        private \Bavix\Wallet\Models\Wallet $wallet,
-        private DateTimeImmutable $updatedAt,
-    ) {}
-    
-    public function getWalletId(): int { return $this->wallet->getKey(); }
-    public function getWalletUuid(): string { return $this->wallet->uuid; }
-    public function getBalance(): string { return $this->wallet->balanceInt; }
-    public function getUpdatedAt(): DateTimeImmutable { return $this->updatedAt; }
-
-    public function broadcastOn(): array
-    {
-        return $this->wallet->getAttributes();
-    }
-}

The event is ready, but that's not all. Now you need to implement your assembler class, which will create an event inside the package.

php
use Bavix\Wallet\Internal\Assembler\BalanceUpdatedEventAssemblerInterface;
-
-class MyUpdatedEventAssembler implements BalanceUpdatedEventAssemblerInterface
-{
-    public function create(\Bavix\Wallet\Models\Wallet $wallet) : \Bavix\Wallet\Internal\Events\BalanceUpdatedEventInterface
-    {
-        return new MyUpdatedEvent($wallet, new DateTimeImmutable());
-    }
-}

Next, go to the package settings (wallet.php). We change the event to a new one.

php
    'assemblers' => [
-        'balance_updated_event' => MyUpdatedEventAssembler::class,
-    ],

Then everything is the same as with the standard events of the package.

php
use Bavix\Wallet\Internal\Events\BalanceUpdatedEventInterface;
-
-protected $listen = [
-    BalanceUpdatedEventInterface::class => [
-        MyBalanceUpdatedListener::class,
-    ],
-];

And then we create a listener.

php
use Bavix\Wallet\Internal\Events\BalanceUpdatedEventInterface;
-
-class MyBalanceUpdatedListener
-{
-    public function handle(BalanceUpdatedEventInterface $event): void
-    {
-        // And then the implementation...
-    }
-}

It's simple!

- - - - \ No newline at end of file diff --git a/docs/.vitepress/dist/guide/events/transaction-created-event.html b/docs/.vitepress/dist/guide/events/transaction-created-event.html deleted file mode 100644 index 490f72f6f..000000000 --- a/docs/.vitepress/dist/guide/events/transaction-created-event.html +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - Tracking the creation of wallet transactions | Laravel Wallet - - - - - - - - - - - - - - - - -
Skip to content

Tracking the creation of wallet transactions

The events are similar to the events for updating the balance, only for the creation of a wallet. A frequent case of transferring data via websockets to the front-end.

Version 9.1 introduces an interface to which you can subscribe. This is done using standard Laravel methods. More information in the documentation.

php
use Bavix\Wallet\Internal\Events\TransactionCreatedEventInterface;
-
-protected $listen = [
-    TransactionCreatedEventInterface::class => [
-        MyWalletTransactionCreatedListener::class,
-    ],
-];

And then we create a listener.

php
use Bavix\Wallet\Internal\Events\TransactionCreatedEventInterface;
-
-class MyWalletTransactionCreatedListener
-{
-    public function handle(TransactionCreatedEventInterface $event): void
-    {
-        // And then the implementation...
-    }
-}

It's simple!

- - - - \ No newline at end of file diff --git a/docs/.vitepress/dist/guide/events/wallet-created-event.html b/docs/.vitepress/dist/guide/events/wallet-created-event.html deleted file mode 100644 index 9b672e305..000000000 --- a/docs/.vitepress/dist/guide/events/wallet-created-event.html +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - Tracking the creation of wallets | Laravel Wallet - - - - - - - - - - - - - - - - -
Skip to content

Tracking the creation of wallets

The events are similar to the events for updating the balance, only for the creation of a wallet. A frequent case of transferring data via websockets to the front-end.

Version 7.3 introduces an interface to which you can subscribe. This is done using standard Laravel methods. More information in the documentation.

php
use Bavix\Wallet\Internal\Events\WalletCreatedEventInterface;
-
-protected $listen = [
-    WalletCreatedEventInterface::class => [
-        MyWalletCreatedListener::class,
-    ],
-];

And then we create a listener.

php
use Bavix\Wallet\Internal\Events\WalletCreatedEventInterface;
-
-class MyWalletCreatedListener
-{
-    public function handle(WalletCreatedEventInterface $event): void
-    {
-        // And then the implementation...
-    }
-}

It's simple!

- - - - \ No newline at end of file diff --git a/docs/.vitepress/dist/guide/fractional/deposit.html b/docs/.vitepress/dist/guide/fractional/deposit.html deleted file mode 100644 index 43d506e6f..000000000 --- a/docs/.vitepress/dist/guide/fractional/deposit.html +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - Deposit float | Laravel Wallet - - - - - - - - - - - - - - - - -
Skip to content

Deposit float

A deposit is a sum of money which is part of the full price of something, and which you pay when you agree to buy it.

In this case, the Deposit is the replenishment of the wallet.

User Model

It is necessary to expand the model that will have the wallet. This is done in two stages:

  • Add Wallet interface;
  • Add the HasWalletFloat trait;

Let's get started.

php
use Bavix\Wallet\Traits\HasWalletFloat;
-use Bavix\Wallet\Interfaces\Wallet;
-
-class User extends Model implements Wallet
-{
-    use HasWalletFloat;
-}

The model is prepared to work with a wallet.

Make a Deposit

Find user:

php
$user = User::first();

As the user uses HasWalletFloat, he will have balance property. Check the user's balance.

php
$user->balance; // 0
-$user->balanceInt; // 0
-$user->balanceFloatNum; // 0

The balance is zero, which is what we expected.

php
$user->depositFloat(10.1); 
-$user->balance; // 1010
-$user->balanceInt; // 1010
-$user->balanceFloatNum; // 10.1

Wow!

- - - - \ No newline at end of file diff --git a/docs/.vitepress/dist/guide/fractional/transfer.html b/docs/.vitepress/dist/guide/fractional/transfer.html deleted file mode 100644 index b67f567d9..000000000 --- a/docs/.vitepress/dist/guide/fractional/transfer.html +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - Transfer | Laravel Wallet - - - - - - - - - - - - - - - - -
Skip to content

Transfer

Transfer in our system are two well-known Deposit and Withdraw operations that are performed in one transaction.

The transfer takes place between wallets.

User Model

Example contract

php
$transfer = $user1->transferFloat(
-    $user2,
-    5.11,
-    new Extra(
-        deposit: [
-            'type' => 'extra-deposit',
-        ],
-        withdraw: new Option(
-            [
-                'type' => 'extra-withdraw',
-            ],
-            false // confirmed
-        ),
-        extra: [
-            'msg' => 'hello world',
-        ],
-    )
-);

Make a Transfer

Find user:

php
$first = User::first(); 
-$last = User::orderBy('id', 'desc')->first(); // last user
-$first->getKey() !== $last->getKey(); // true

As the user uses HasWalletFloat, he will have balance property. Check the user's balance.

php
$fist->balanceFloatNum; // 100.00
-$last->balanceFloatNum; // 0

The transfer will be from the first user to the second.

php
$first->transferFloat($last, 5); 
-$first->balanceFloatNum; // 95
-$last->balanceFloatNum; // 5

It's simple!

Force Transfer

Check the user's balance.

php
$first->balanceFloatNum; // 100
-$last->balanceFloatNum; // 0

The transfer will be from the first user to the second.

php
$first->forceTransferFloat($last, 500); 
-$first->balanceFloatNum; // -400
-$last->balanceFloatNum; // 500

It's simple!

- - - - \ No newline at end of file diff --git a/docs/.vitepress/dist/guide/fractional/withdraw.html b/docs/.vitepress/dist/guide/fractional/withdraw.html deleted file mode 100644 index 801972205..000000000 --- a/docs/.vitepress/dist/guide/fractional/withdraw.html +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - Withdraw | Laravel Wallet - - - - - - - - - - - - - - - - -
Skip to content

Withdraw

When there is enough money in the account, you can transfer/withdraw it or buy something in the system.

Since the currency is virtual, you can buy any services on your website. For example, priority in search results.

User Model

Make a Withdraw

Find user:

php
$user = User::first();

As the user uses HasWalletFloat, he will have balance property. Check the user's balance.

php
$user->balance; // 10000
-$user->balanceInt; // 10000
-$user->balanceFloatNum; // 100.00

The balance is not empty, so you can withdraw funds.

php
$user->withdrawFloat(10); 
-$user->balance; // 9000
-$user->balanceInt; // 9000
-$user->balanceFloatNum; // 90.00

It's simple!

Force Withdraw

Forced withdrawal is necessary for those cases when the user has no funds. For example, a fine for spam.

php
$user->balanceFloatNum; // 90.00
-$user->forceWithdrawFloat(101);
-$user->balanceFloatNum; // -11.00

And what will happen if the money is not enough?

There can be two situations:

  • The user's balance is zero, then we get an error Bavix\Wallet\Exceptions\BalanceIsEmpty
  • If the balance is greater than zero, but it is not enough Bavix\Wallet\Exceptions\InsufficientFunds
- - - - \ No newline at end of file diff --git a/docs/.vitepress/dist/guide/helpers/formatter.html b/docs/.vitepress/dist/guide/helpers/formatter.html deleted file mode 100644 index ca594bcec..000000000 --- a/docs/.vitepress/dist/guide/helpers/formatter.html +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - Formatter | Laravel Wallet - - - - - - - - - - - - - - - - -
Skip to content

Formatter

Sometimes you need to convert the balance to some format. A small and simple helper has appeared that will simplify the process a little.

To fractional numbers

php
app(FormatterServiceInterface::class)->floatValue('12345', 2); // 123.45
-app(FormatterServiceInterface::class)->floatValue('12345', 3); // 12.345

To whole numbers

php
app(FormatterServiceInterface::class)->intValue('12.345', 3); // 12345
-app(FormatterServiceInterface::class)->intValue('123.45', 2); // 12345

It's simple!

- - - - \ No newline at end of file diff --git a/docs/.vitepress/dist/guide/high-performance/batch-transactions.html b/docs/.vitepress/dist/guide/high-performance/batch-transactions.html deleted file mode 100644 index a63f008fb..000000000 --- a/docs/.vitepress/dist/guide/high-performance/batch-transactions.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - Batch Transactions | Laravel Wallet - - - - - - - - - - - - - - - - -
Skip to content

Batch Transactions

Sometimes situations arise when there is a need to make multiple changes to wallets. For example, we need to change the balance of many wallets at once. For example, the system administrator accrues a bonus for participating in some promotion. Previously, the code would look like this:

php
use Bavix\Wallet\Services\AtomicServiceInterface;
-
-app(AtomicServiceInterface::class)->blocks($wallets, function () use ($amount, $wallets) {
-    foreach ($wallets as $wallet) {
-        $wallet->deposit($amount);
-    }
-});

The code is working and everything works correctly. But what happens under the hood? Nothing good. For 5 users it will look like this. exm1

Since the operations inside an atomic operation can depend on each other, we will not be able to combine insert queries into a batch. But there is an opportunity to reduce the number of update queries and improve application performance out of the blue.

After small things, the situation will look like this.

exm2

As you can see, things are getting better. Still, I would like to be able to tell the package that the changes are independent of each other. In this case, the package will be able to collapse all insert queries into a single query and insert in a batch.

Here new api handles can help us:

php
// For multiple transactions.
-interface TransactionQueryHandlerInterface
-{
-    /**
-     * @param non-empty-array<TransactionQuery> $objects
-     * @return non-empty-array<string, Transaction>
-     * @throws ExceptionInterface
-     */
-    public function apply(array $objects): array;
-}
-
-// For multiple transfers of funds.
-interface TransferQueryHandlerInterface
-{
-    /**
-     * @param non-empty-array<TransferQuery> $objects
-     * @return non-empty-array<string, Transfer>
-     * @throws ExceptionInterface
-     */
-    public function apply(array $objects): array;
-}

Let's use the API handle.

php
use Bavix\Wallet\External\Api\TransactionQuery;
-use Bavix\Wallet\External\Api\TransactionQueryHandlerInterface;
-
-app(TransactionQueryHandlerInterface::class)->apply(
-    array_map(
-        static fn (Wallet $wallet) => TransactionQuery::createDeposit($wallet, $amount, null),
-        $wallets
-     )
-);

And now look at the result and it is impressive. exm3

But it is worth noting that these are highly efficient api handles and they do not check the balance of the wallet before making changes. If you need it, then you have to do something like this.

php
use Bavix\Wallet\External\Api\TransactionQuery;
-use Bavix\Wallet\External\Api\TransactionQueryHandlerInterface;
-use Bavix\Wallet\Services\AtomicServiceInterface;
-use Bavix\Wallet\Services\ConsistencyServiceInterface;
-
-app(AtomicServiceInterface::class)->blocks($wallets, function () use ($wallets, $amount) {
-    foreach ($wallets as $wallet) {
-        app(ConsistencyServiceInterface::class)->checkPotential($wallet, $amount);
-    }
-
-    app(TransactionQueryHandlerInterface::class)->apply(
-        array_map(
-            static fn (Wallet $wallet) => TransactionQuery::createWithdraw($wallet, $amount, null),
-            $wallets
-        )
-    );
-});

In version 10.x, it became possible to create transactions with a given uuid (generate on the client side). The main thing is to keep uniqueness.

php
use Bavix\Wallet\External\Api\TransactionQuery;
-
-// int version
-TransactionQuery::createDeposit($wallet, $amount, null, uuid: '5f7820d1-1e82-4d03-9414-05d0c44da9a1');
-TransactionQuery::createWithdraw($wallet, $amount, null, uuid: '6e87dbf2-7be7-48c2-b688-f46ba4e25786');
-
-// float version
-TransactionFloatQuery::createDeposit($wallet, $amountFloat, null, uuid: '5f7820d1-1e82-4d03-9414-05d0c44da9a1');
-TransactionFloatQuery::createWithdraw($wallet, $amountFloat, null, uuid: '6e87dbf2-7be7-48c2-b688-f46ba4e25786');

It's simple!

- - - - \ No newline at end of file diff --git a/docs/.vitepress/dist/guide/high-performance/batch-transfers.html b/docs/.vitepress/dist/guide/high-performance/batch-transfers.html deleted file mode 100644 index f82765f0f..000000000 --- a/docs/.vitepress/dist/guide/high-performance/batch-transfers.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - - Batch Transfers | Laravel Wallet - - - - - - - - - - - - - - - - -
Skip to content

Batch Transfers

If you need multiple transfers between wallets, you can use a high-performance handle. It is worth remembering that the pen does not check the balance of the wallet before transferring, you need to take care of this yourself.

Previously, you would have written the following code:

php
use Bavix\Wallet\Services\AtomicServiceInterface;
-
-app(AtomicServiceInterface::class)->block($from, function () use ($amount, $from, $wallets) {
-    foreach ($wallets as $wallet) {
-        $from->forceTransfer($wallet, $amount);
-    }
-});

This would lead to the generation of a huge number of requests to the database and cache, because. the package does not know that the response from forceTransfer is not used by you at all inside AtomicService. Now, you can report it:

php
use Bavix\Wallet\External\Api\TransferQuery;
-use Bavix\Wallet\External\Api\TransferQueryHandlerInterface;
-
-app(TransferQueryHandlerInterface::class)->apply(
-    array_map(
-        static fn (Wallet $wallet) => new TransferQuery($from, $wallet, $amount, null),
-        $wallets
-     )
-);

The package will optimize queries and execute them in a single transaction. I strongly advise against creating large packs, because. this can lead to a large increase in request queuing.


In version 10.x, it became possible to create transactions&transfers with a given uuid (generate on the client side). The main thing is to keep uniqueness.

php
use Bavix\Wallet\External\Api\TransferQuery;
-
-// int version
-new TransferQuery($from, $wallet, $amount, new \Bavix\Wallet\External\Dto\Extra(
-    deposit: new \Bavix\Wallet\External\Dto\Option(
-        null,
-        uuid: '71cecafe-da10-464f-9e00-c80437bb4c3e', // deposit transaction
-    ),
-    withdraw: new \Bavix\Wallet\External\Dto\Option(
-        null,
-        uuid: '3805730b-39a1-419d-8715-0b7cc3f1ffc2', // withdraw transaction
-    ),
-    uuid: 'f8becf81-3993-43d7-81f1-7a725c72e976', // transfer uuid
-    extra: ['info' => 'fast deposit'], // metadata in the table transfers
-));
-
-// float version
-new TransferFloatQuery($from, $wallet, $amountFlaot, new \Bavix\Wallet\External\Dto\Extra(
-    deposit: new \Bavix\Wallet\External\Dto\Option(
-        null,
-        uuid: '71cecafe-da10-464f-9e00-c80437bb4c3e', // deposit transaction
-    ),
-    withdraw: new \Bavix\Wallet\External\Dto\Option(
-        null,
-        uuid: '3805730b-39a1-419d-8715-0b7cc3f1ffc2', // withdraw transaction
-    ),
-    uuid: 'f8becf81-3993-43d7-81f1-7a725c72e976', // transfer uuid
-    extra: ['info' => 'fast deposit'], // metadata in the table transfers
-));

It's simple!

- - - - \ No newline at end of file diff --git a/docs/.vitepress/dist/guide/introduction/basic-usage.html b/docs/.vitepress/dist/guide/introduction/basic-usage.html deleted file mode 100644 index 594559f35..000000000 --- a/docs/.vitepress/dist/guide/introduction/basic-usage.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - Basic Usage | Laravel Wallet - - - - - - - - - - - - - - - - -
Skip to content

Basic Usage

Simple Wallet

It is necessary to expand the model that will have the wallet. This is done in two stages:

  • Add Wallet interface;
  • Add the HasWallet trait;

Let's get started.

php
use Bavix\Wallet\Traits\HasWallet;
-use Bavix\Wallet\Interfaces\Wallet;
-
-class User extends Model implements Wallet
-{
-    use HasWallet;
-}

The model is prepared to work with a wallet.

Simple wallet transactions

The package is built on simple transactions:

  • deposit - replenishment of the wallet;
  • withdraw - withdrawal from the wallet;

Consider an example:

php
$user = User::first();
-$user->balance; // 0
-
-$user->deposit(10);
-$user->balance; // 10
-
-$user->withdraw(1);
-$user->balance; // 9
-
-$user->forceWithdraw(200, ['description' => 'payment of taxes']);
-$user->balance; // -191

Purchases

Add the CanPay trait and Customer interface to your User model.

The trait CanPay already inherits HasWallet, reuse will cause an error.

php
use Bavix\Wallet\Traits\CanPay;
-use Bavix\Wallet\Interfaces\Customer;
-
-class User extends Model implements Customer
-{
-    use CanPay;
-}

Add the HasWallet trait and interface to Item model.

Starting from version 9.x there are two product interfaces:

  • For an unlimited number of products (ProductInterface);
  • For a limited number of products (ProductLimitedInterface);

An example with an unlimited number of products:

php
use Bavix\Wallet\Traits\HasWallet;
-use Bavix\Wallet\Interfaces\Customer;
-use Bavix\Wallet\Interfaces\ProductInterface;
-
-class Item extends Model implements ProductInterface
-{
-    use HasWallet;
-
-    public function getAmountProduct(Customer $customer): int|string
-    {
-        return 100;
-    }
-
-    public function getMetaProduct(): ?array
-    {
-        return [
-            'title' => $this->title, 
-            'description' => 'Purchase of Product #' . $this->id,
-        ];
-    }
-}

Example with a limited number of products:

php
use Bavix\Wallet\Traits\HasWallet;
-use Bavix\Wallet\Interfaces\Customer;
-use Bavix\Wallet\Interfaces\ProductLimitedInterface;
-
-class Item extends Model implements ProductLimitedInterface
-{
-    use HasWallet;
-
-    public function canBuy(Customer $customer, int $quantity = 1, bool $force = false): bool
-    {
-        /**
-         * This is where you implement the constraint logic. 
-         * 
-         * If the service can be purchased once, then
-         *  return !$customer->paid($this);
-         */
-        return true; 
-    }
-    
-    public function getAmountProduct(Customer $customer): int|string
-    {
-        return 100;
-    }
-
-    public function getMetaProduct(): ?array
-    {
-        return [
-            'title' => $this->title, 
-            'description' => 'Purchase of Product #' . $this->id,
-        ];
-    }
-}

I do not recommend using the limited interface when working with a shopping cart. If you are working with a shopping cart, then you should override the PurchaseServiceInterface interface. With it, you can check the availability of all products with one request, there will be no N-queries in the database.

Proceed to purchase.

php
$user = User::first();
-$user->balance; // 100
-
-$item = Item::first();
-$user->pay($item); // If you do not have enough money, throw an exception
-var_dump($user->balance); // 0
-
-if ($user->safePay($item)) {
-  // try to buy again )
-}
-
-var_dump((bool)$user->paid($item)); // bool(true)
-
-var_dump($user->refund($item)); // bool(true)
-var_dump((bool)$user->paid($item)); // bool(false)

Eager Loading

When accessing Eloquent relationships as properties, the relationship data is "lazy loaded". This means the relationship data is not actually loaded until you first access the property. However, Eloquent can "eager load" relationships at the time you query the parent model. Eager loading alleviates the N + 1 query problem. To illustrate the N + 1 query problem, consider a Wallet model that is related to User:

Add the HasWallet trait and Wallet interface to model.

php
use Bavix\Wallet\Traits\HasWallet;
-use Bavix\Wallet\Interfaces\Wallet;
-
-class User extends Model implements Wallet
-{
-    use HasWallet; // public function wallet(): MorphOne...
-}

Now, let's retrieve all wallets and their users:

php
$users = User::all();
-
-foreach ($users as $user) {
-    // echo $user->wallet->balance;
-    echo $user->balance; // Abbreviated notation
-}

This loop will execute 1 query to retrieve all of the users on the table, then another query for each user to retrieve the wallet. So, if we have 25 users, the code above would run 26 queries: 1 for the original user, and 25 additional queries to retrieve the wallet of each user.

Thankfully, we can use eager loading to reduce this operation to just 2 queries. When querying, you may specify which relationships should be eager loaded using the with method:

php
$users = User::with('wallet')->all();
-
-foreach ($users as $user) {
-    // echo $user->wallet->balance;
-    echo $user->balance; // Abbreviated notation
-}

For this operation, only two queries will be executed.

How to work with fractional numbers?

Add the HasWalletFloat trait and WalletFloat interface to model.

php
use Bavix\Wallet\Traits\HasWalletFloat;
-use Bavix\Wallet\Interfaces\WalletFloat;
-use Bavix\Wallet\Interfaces\Wallet;
-
-class User extends Model implements Wallet, WalletFloat
-{
-    use HasWalletFloat;
-}

Now we make transactions.

php
$user = User::first();
-$user->balance; // 100
-$user->balanceFloat; // 1.00
-
-$user->depositFloat(1.37);
-$user->balance; // 237
-$user->balanceFloat; // 2.37

You can get the float amount by accessing the amountFloat attribute on the transaction model

php
$transaction->amount; // 137
-$transaction->amountFloat; // 1.37
- - - - \ No newline at end of file diff --git a/docs/.vitepress/dist/guide/introduction/configuration.html b/docs/.vitepress/dist/guide/introduction/configuration.html deleted file mode 100644 index 7728b5961..000000000 --- a/docs/.vitepress/dist/guide/introduction/configuration.html +++ /dev/null @@ -1,53 +0,0 @@ - - - - - - Configuration | Laravel Wallet - - - - - - - - - - - - - - - - -
Skip to content

Configuration

Though this package is crafted to suit most of your needs by default, you can edit the configuration file to suit certain demands.

Environment

NameDescriptionDefault
WALLET_MATH_SCALESelect mathematical precision64
WALLET_CACHE_DRIVERCache for wallet balancearray
WALLET_CACHE_TTLCache TTL for wallet balance24h
WALLET_LOCK_DRIVERLock for walletsarray
WALLET_LOCK_TTLLock TTL for wallets1s
WALLET_TRANSACTION_TABLE_NAMETransaction table nametransactions
WALLET_TRANSFER_TABLE_NAMETransfer table nametransfers
WALLET_WALLET_TABLE_NAMEWallet table namewallets
WALLET_DEFAULT_WALLET_NAMEDefault wallet nameDefault Wallet
WALLET_DEFAULT_WALLET_SLUGDefault wallet slugdefault

Configure default wallet

Customize name,slug and meta of default wallet.

config/wallet.php:

php
'default' => [
-    'name' => 'Ethereum',
-    'slug' => 'ETH',
-    'meta' => [],
-],

Extend base Wallet model

You can extend base Wallet model by creating a new class that extends Bavix\Wallet\Models\Wallet and registering the new class in config/wallet.php. Example MyWallet.php

App/Models/MyWallet.php:

php
use Bavix\Wallet\Models\Wallet as WalletBase;
-
-class MyWallet extends WalletBase {
-    public function helloWorld(): string { return "hello world"; }
-}

Register base Wallet model

config/wallet.php:

php
'wallet' => [
-    'table' => 'wallets',
-    'model' => MyWallet::class,
-    'creating' => [],
-    'default' => [
-        'name' => 'Default Wallet',
-        'slug' => 'default',
-        'meta' => [],
-    ],
-],
php
echo $user->wallet->helloWorld();

This same method above, can be used to extend the base Transfer and Transaction models and registering the extended models in the configuration file.

Changing wallet decimal places

You can change the default wallet decimal places, in wallet config file. This can be useful when working with fractional numbers.

config/wallet.php:

php
/**
- * Base model 'wallet'.
- */
-'wallet' => [
-    ....
-    'creating' => [
-        'decimal_places' => 18,
-    ],
-   ....
-],
- - - - \ No newline at end of file diff --git a/docs/.vitepress/dist/guide/introduction/index.html b/docs/.vitepress/dist/guide/introduction/index.html deleted file mode 100644 index 50a1b719c..000000000 --- a/docs/.vitepress/dist/guide/introduction/index.html +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - Introduction | Laravel Wallet - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/.vitepress/dist/guide/introduction/installation.html b/docs/.vitepress/dist/guide/introduction/installation.html deleted file mode 100644 index e11ec1b32..000000000 --- a/docs/.vitepress/dist/guide/introduction/installation.html +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - Installation | Laravel Wallet - - - - - - - - - - - - - - - - -
Skip to content

Installation

Composer

The recommended installation method is using Composer.

In your project root just run:

bash
composer req bavix/laravel-wallet

Ensure that you’ve set up your project to autoload Composer-installed packages.

Customize

Sometimes it is useful...

Run Migrations

Publish the migrations with this artisan command:

bash
php artisan vendor:publish --tag=laravel-wallet-migrations

Configuration

You can publish the config file with this artisan command:

bash
php artisan vendor:publish --tag=laravel-wallet-config

After installing the package, you can proceed to use it or configure it to suit your needs.

- - - - \ No newline at end of file diff --git a/docs/.vitepress/dist/guide/introduction/upgrade.html b/docs/.vitepress/dist/guide/introduction/upgrade.html deleted file mode 100644 index 2d4f0dc23..000000000 --- a/docs/.vitepress/dist/guide/introduction/upgrade.html +++ /dev/null @@ -1,84 +0,0 @@ - - - - - - Upgrade Guide | Laravel Wallet - - - - - - - - - - - - - - - - -
Skip to content

Upgrade Guide

1.x.x → 2.x.x

Replace ::with('balance') to ::with('wallet')

2.1.x → 2.2.x

Replace CanBePaid to CanPay.

Replace CanBePaidFloat to CanPayFloat.

2.2.x → 2.4.x

Replace calculateBalance to refreshBalance

2.4.x → 3.0.x

Replace path bavix.wallet::transaction to Bavix\Wallet\Models\Transaction::class

Replace path bavix.wallet::transfer to Bavix\Wallet\Models\Transfer::class

Replace path bavix.wallet::wallet to Bavix\Wallet\Models\Wallet::class

php
// old
-app('bavix.wallet::transaction'); 
-// new
-app(Bavix\Wallet\Models\Transaction::class);

Add the $quantity parameter to the canBuy method.

php
// old
-public function canBuy(Customer $customer, bool $force = false): bool
-// new
-public function canBuy(Customer $customer, int $quantity = 1, bool $force = false): bool

Add method getUniqueId to Interface Product

php
class Item extends Model implements Product
-{
-    
-    // Your method
-    
-    public function getUniqueId(): string
-    {
-        return (string)$this->getKey();
-    }
-    
-}

3.0.x → 3.1.x

Replace Taxing to Taxable.

3.1.x → 4.0.x

If you are using php 7.1, then version 4.0 is not available to you. You need to update php.

Removed support for older versions of laravel/cashier. We support 7+.

If you use payment for goods

You must add the argument Customer $customer to the getAmountProduct method of your model.

Your code on 3.x:

php
    public function getAmountProduct(): int
-    {
-        return $this->price;
-    }

Your code on 4.x:

php
    public function getAmountProduct(Customer $customer): int
-    {
-        return $this->price;
-    }

4.0.x → 5.0.x

By updating the library from 4.x to 5.x you lose strong typing. This solution was necessary to support APM (Arbitrary Precision Mathematics).

In your goods:

Your code on 4.x:

php
    public function getAmountProduct(Customer $customer): int  { ... }
-
-    public function getFeePercent(): float  { ... }
-
-    public function getMinimalFee(): int { ... }

Your code on 5.x:

php
    public function getAmountProduct(Customer $customer) { ... }
-
-    public function getFeePercent() { ... }
-
-    public function getMinimalFee() { ... }

In the exchange rate processing service:

Your code on 4.x:

php
    protected function rate(Wallet $wallet): float { ... }
-
-    public function convertTo(Wallet $wallet): float { ... }

Your code on 5.x:

php
    protected function rate(Wallet $wallet) { ... }
-
-    public function convertTo(Wallet $wallet) { ... }

5.x.x → 6.0.x

Go to config/wallet.php file (if you have it) and edit it.

Removing unnecessary code.

php
$bcLoaded = extension_loaded('bcmath');	
-$mathClass = Math::class;	
-switch (true) {	
-    case class_exists(BigDecimal::class):	
-        $mathClass = BrickMath::class;	
-        break;	
-    case $bcLoaded:	
-        $mathClass = BCMath::class;	
-        break;	
-}

Replace your math class ($mathClass) with brick/math.

Your code on 5.x:

php
    'mathable' => $mathClass,

Your code on 6.x:

php
    'mathable' => BrickMath::class,

6.x.x → 6.2.4

You need to update to the latest version for all migrations to appear.

6.2.4 → 7.x.x

Update config/wallet.php

The config/wallet.php config has changed a lot, if you have it in your project, then replace it run.

bash
php artisan vendor:publish --tag=laravel-wallet-config --force

Then return your settings. The package configuration has changed globally and there is no point in describing each key 🔑


UUID for wallet

The uuid field has been added to the wallet table, which is now actively used. If you have a highload, then I recommend that you add the field yourself and mark the migration (UpdateWalletsUuidTable) completed. If you have mysql, it is better to do this via pt-online-schema-change.

If you have a small project and a small wallet base, then the migration will be applied automatically.


That's it, you can use all 7.x functions to the fullest. The contract did not change globally, added more stringency and toned down the performance of the package. On a basket of 150 products, the acceleration is a whopping 24x.

All changes can be found in the pull request. The kernel has changed globally, I would not recommend switching to version 7.0.0 at the very beginning, there may be bugs. I advise you should at least 7.0.1.

7.x.x → 8.0.x

Nothing needs to be done.

8.0.x → 8.1.x

Replace getAvailableBalance to getAvailableBalanceAttribute (method) or available_balance (property).


Cart methods now support fluent-dto. It is necessary to replace the old code with a new one, for example:

php
// old
-$cart = app(\Bavix\Wallet\Objects\Cart::class)
-    ->addItems($products)
-    ->addItem($product)
-    ->setMeta(['hello' => 'world']);
-    
-$cart->addItem($product);
-
-// new. fluent
-$cart = app(\Bavix\Wallet\Objects\Cart::class)
-    ->withItems($products)
-    ->withItem($product)
-    ->withMeta(['hello' => 'world']);
-
-$cart = $cart->withItem($product);

8.1.x+ → 9.0.x

The logic of storing transfers between accounts has changed. Previously, money could be credited to the user directly, but starting from version nine, all transactions go strictly between wallets. Thanks to this approach, finally, there will be full-fledged work with uuid identifiers in the project.

To migrate to the correct structure, you need to run the command:

artisan bx:transfer:fix

If the command fails, then the command must be restarted. Continue until the command starts executing immediately (no bad entries left).


The product has been divided into two interfaces:

  • ProductLimitedInterface. Needed to create limited goods;
  • ProductInterface. Needed for an infinite number of products;

The old Product interface should be replaced with one of these.

Replace Bavix\Wallet\Interfaces\Product to Bavix\Wallet\Interfaces\ProductLimitedInterface.

9.x.x → 10.0.x

  1. If you have a custom BookkeeperServiceInterface, then you need to update the contract.
  2. If you catch a LockProviderNotFoundException, then you need to remove the check. This exception no longer exists.
  3. If you have specific requests for transfers using the MorphMany relation, then you need to rewrite it to the HasMany relation.

10.x.x → 11.0.x

  1. If you have mariadb, then the minimum supported version is 10.10. More details here: https://github.com/laravel/framework/pull/48455;
  2. Perform new package migrations, support for soft deleted has been added;
  3. If you used delete methods, then they need to be replaced with forceDelete (if soft delete support is not needed);
  4. Obsolete columns from_type, to_type in the transfers table have been physically removed. Make sure you don't use them;
  5. An extra column has been added to the transfers table. Don't forget to apply all new migrations;
  6. The Bavix\Wallet\Interfaces\Wallet contract has been extended with the receivedTransfers method. If you overridden the implementation, then implement the new method;
- - - - \ No newline at end of file diff --git a/docs/.vitepress/dist/guide/multi/new-wallet.html b/docs/.vitepress/dist/guide/multi/new-wallet.html deleted file mode 100644 index 60b782293..000000000 --- a/docs/.vitepress/dist/guide/multi/new-wallet.html +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - New Wallet | Laravel Wallet - - - - - - - - - - - - - - - - -
Skip to content

New Wallet

You can create an unlimited number of wallets, but the slug for each wallet should be unique.

User Model

Add the HasWallets trait's and Wallet interface to model.

php
use Bavix\Wallet\Traits\HasWallets;
-use Bavix\Wallet\Interfaces\Wallet;
-
-class User extends Model implements Wallet
-{
-    use HasWallets;
-}

Create a wallet

Find user:

php
$user = User::first();

Create a new wallet.

php
$user->hasWallet('my-wallet'); // bool(false)
-$wallet = $user->createWallet([
-    'name' => 'New Wallet',
-    'slug' => 'my-wallet',
-]);
-
-$user->hasWallet('my-wallet'); // bool(true)
-
-$wallet->deposit(100);
-$wallet->balance; // 100
-$wallet->balanceFloatNum; // 1.00

How to get the right wallet?

php
$myWallet = $user->getWallet('my-wallet');
-$myWallet->balance; // 100
-$myWallet->balanceFloatNum; // 1.00

Default Wallet + MultiWallet

Is it possible to use the default wallet and multi-wallets at the same time? Yes.

php
use Bavix\Wallet\Traits\HasWallet;
-use Bavix\Wallet\Traits\HasWallets;
-use Bavix\Wallet\Interfaces\Wallet;
-
-class User extends Model implements Wallet
-{
-    use HasWallet, HasWallets;
-}

How to get the default wallet?

php
$wallet = $user->wallet;
-$wallet->balance; // 10
-$wallet->balanceFloatNum; // 0.10

It's simple!

- - - - \ No newline at end of file diff --git a/docs/.vitepress/dist/guide/multi/transaction-filter.html b/docs/.vitepress/dist/guide/multi/transaction-filter.html deleted file mode 100644 index b209460d3..000000000 --- a/docs/.vitepress/dist/guide/multi/transaction-filter.html +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - Transaction Filter | Laravel Wallet - - - - - - - - - - - - - - - - -
Skip to content

Transaction Filter

Often developers ask me about the transactions method. Yes, this method displays ALL transactions for the wallet owner. If you only need to filter one wallet at a time, now you can use the walletTransactions method.

php
/** @var \Bavix\Wallet\Models\Wallet $wallet */
-
-$query = $wallet->walletTransactions();

Let's take a look at a livelier code example:

php
$user->transactions()->count(); // 0
-
-// Multi wallets and default wallet can be used together
-// default wallet
-$user->deposit(100);
-$user->wallet->deposit(200);
-$user->wallet->withdraw(1);
-
-// usd
-$usd = $user->createWallet(['name' => 'USD']);
-$usd->deposit(100);
-
-// eur
-$eur = $user->createWallet(['name' => 'EUR']);
-$eur->deposit(100);
-
-$user->transactions()->count(); // 5
-$user->wallet->transactions()->count(); // 5
-$usd->transactions()->count(); // 5
-$eur->transactions()->count(); // 5
-// the transactions method returns data relative to the owner of the wallet, for all transactions
-
-$user->walletTransactions()->count(); // 3. we get the default wallet
-$user->wallet->walletTransactions()->count(); // 3
-$usd->walletTransactions()->count(); // 1
-$eur->walletTransactions()->count(); // 1

It's simple!

- - - - \ No newline at end of file diff --git a/docs/.vitepress/dist/guide/multi/transfer.html b/docs/.vitepress/dist/guide/multi/transfer.html deleted file mode 100644 index aced2b563..000000000 --- a/docs/.vitepress/dist/guide/multi/transfer.html +++ /dev/null @@ -1,62 +0,0 @@ - - - - - - Transfer between wallets | Laravel Wallet - - - - - - - - - - - - - - - - -
Skip to content

Transfer between wallets

Transfer in our system are two well-known Deposit and Withdraw operations that are performed in one transaction.

The transfer takes place between wallets.

User Model

Prepare the model, add the HasWallets trait's and Wallet interface.

php
use Bavix\Wallet\Traits\HasWallets;
-use Bavix\Wallet\Interfaces\Wallet;
-
-class User extends Model implements Wallet
-{
-    use HasWallets;
-}

Make a Transfer

Find user:

php
$first = User::first(); 
-$last = User::orderBy('id', 'desc')->first(); // last user
-$first->getKey() !== $last->getKey(); // true

Create new wallets for users.

php
$firstWallet = $first->createWallet(['name' => 'First User Wallet']);
-$lastWallet = $last->createWallet(['name' => 'Second User Wallet']);
-
-$firstWallet->deposit(100);
-$firstWallet->balance; // 100
-$lastWallet->balance; // 0

The transfer will be from the first user to the last.

php
$firstWallet->transfer($lastWallet, 5); 
-$firstWallet->balance; // 95
-$lastWallet->balance; // 5

It's simple!

Force Transfer

Check the user's balance.

php
$firstWallet->balance; // 100
-$lastWallet->balance; // 0

The transfer will be from the first user to the second.

php
$firstWallet->forceTransfer($lastWallet, 500); 
-$firstWallet->balance; // -400
-$lastWallet->balance; // 500

It worked!

Change the meta and confirmation

Check the user's balance.

php
$firstWallet->balanceInt; // 1_000
-$secondWallet->balanceInt; // 0

We will execute the transfer, but without confirmation of the withdrawal of funds.

php
use Bavix\Wallet\External\Dto\Extra;
-use Bavix\Wallet\External\Dto\Option;
-
-/** @var $firstWallet \Bavix\Wallet\Interfaces\Wallet */
-$transfer = $firstWallet->transfer($secondWallet, 500, new Extra(
-    deposit: ['message' => 'Hello, secondWallet!'],
-    withdraw: new Option(meta: ['something' => 'anything'], confirmed: false)
-));
-
-$transfer->withdraw->meta; // ['something' => 'anything']
-$transfer->withdraw->confirmed; // false
-
-$transfer->deposit->meta; // ['message' => 'Hello, secondWallet!']
-$transfer->deposit->confirmed; // true
-
-$firstWallet->balanceInt; // 1_000
-$secondWallet->balanceInt; // 500

It's simple!

- - - - \ No newline at end of file diff --git a/docs/.vitepress/dist/guide/purchases/cart.html b/docs/.vitepress/dist/guide/purchases/cart.html deleted file mode 100644 index b70d0723c..000000000 --- a/docs/.vitepress/dist/guide/purchases/cart.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - Cart | Laravel Wallet - - - - - - - - - - - - - - - - -
Skip to content

Cart

Buying goods one at a time is, of course, good. But it’s more convenient to buy in a pack, right? In laravel wallet you can buy a basket of goods at once.

User Model

Add the CanPay trait and Customer interface to your User model.

The trait CanPay already inherits HasWallet, reuse will cause an error.

php
use Bavix\Wallet\Traits\CanPay;
-use Bavix\Wallet\Interfaces\Customer;
-
-class User extends Model implements Customer
-{
-    use CanPay;
-}

Item Model

Add the HasWallet trait and interface to Item model.

Starting from version 9.x there are two product interfaces:

  • For an unlimited number of products (ProductInterface);
  • For a limited number of products (ProductLimitedInterface);

An example with an unlimited number of products:

php
use Bavix\Wallet\Traits\HasWallet;
-use Bavix\Wallet\Interfaces\Customer;
-use Bavix\Wallet\Interfaces\ProductInterface;
-
-class Item extends Model implements ProductInterface
-{
-    use HasWallet;
-
-    public function getAmountProduct(Customer $customer): int|string
-    {
-        return round($this->price * 100);
-    }
-
-    public function getMetaProduct(): ?array
-    {
-        return [
-            'title' => $this->title, 
-            'description' => 'Purchase of Product #' . $this->id,
-        ];
-    }
-}

Example with a limited number of products:

php
use Bavix\Wallet\Traits\HasWallet;
-use Bavix\Wallet\Interfaces\Customer;
-use Bavix\Wallet\Interfaces\ProductLimitedInterface;
-
-class Item extends Model implements ProductLimitedInterface
-{
-    use HasWallet;
-
-    public function canBuy(Customer $customer, int $quantity = 1, bool $force = false): bool
-    {
-        /**
-         * This is where you implement the constraint logic. 
-         * 
-         * If the service can be purchased once, then
-         *  return !$customer->paid($this);
-         */
-        return true; 
-    }
-    
-    public function getAmountProduct(Customer $customer): int|string
-    {
-        return round($this->price * 100);
-    }
-
-    public function getMetaProduct(): ?array
-    {
-        return [
-            'title' => $this->title, 
-            'description' => 'Purchase of Product #' . $this->id,
-        ];
-    }
-}

I do not recommend using the limited interface when working with a shopping cart. If you are working with a shopping cart, then you should override the PurchaseServiceInterface interface. With it, you can check the availability of all products with one request, there will be no N-queries in the database.

Fill the cart

Find the user and check the balance.

php
$user = User::first();
-$user->balance; // 0

Let's start shopping.

php
use Bavix\Wallet\Objects\Cart;
-
-$list = [
-    'potato' => 3,
-    'carrot' => 10,
-];
-
-$products = Item::query()
-    ->whereIn('slug', ['potato', 'carrot'])
-    ->get();
-
-$cart = app(Cart::class);
-foreach ($products as $product) {
-    $cart = $cart->withItem($product, quantity: $list[$product->slug]);
-}
-
-$cartTotal = $cart->getTotal($user); // 15127
-$user->deposit($cartTotal); 
-$user->balanceInt; // 15127
-$user->balanceFloat; // 151.27
-
-$cart = $cart->withItem(current($products), pricePerItem: 500); // 15127+500
-$user->deposit(500);
-$user->balanceInt; // 15627
-$user->balanceFloat; // 156.27
-
-(bool)$user->payCart($cart); // true
-$user->balanceFloat; // 0

It's simple!

- - - - \ No newline at end of file diff --git a/docs/.vitepress/dist/guide/purchases/commissions.html b/docs/.vitepress/dist/guide/purchases/commissions.html deleted file mode 100644 index 44850df5c..000000000 --- a/docs/.vitepress/dist/guide/purchases/commissions.html +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - Commissions | Laravel Wallet - - - - - - - - - - - - - - - - -
Skip to content

Commissions

Commissions are part of purchasing goods. The commission is debited from the buyer's account and is not credited for the product. This amount is lost along the way. The commission amount can always be found in the fee column.

User Model

Add the CanPay trait and Customer interface to your User model.

The trait CanPay already inherits HasWallet, reuse will cause an error.

php
use Bavix\Wallet\Traits\CanPay;
-use Bavix\Wallet\Interfaces\Customer;
-
-class User extends Model implements Customer
-{
-    use CanPay;
-}

Item Model

Add the HasWallet trait and ProductInterface (or ProductLimitedInterface) interface to Item model.

php
use Bavix\Wallet\Traits\HasWallet;
-use Bavix\Wallet\Interfaces\Customer;
-use Bavix\Wallet\Interfaces\Taxable;
-use Bavix\Wallet\Interfaces\ProductLimitedInterface;
-
-class Item extends Model implements ProductLimitedInterface, Taxable
-{
-    use HasWallet;
-
-    public function canBuy(Customer $customer, int $quantity = 1, bool $force = false): bool
-    {
-        /**
-         * If the service can be purchased once, then
-         *  return !$customer->paid($this);
-         */
-        return true; 
-    }
-
-    public function getAmountProduct(Customer $customer): int|string
-    {
-        return 100;
-    }
-
-    public function getMetaProduct(): ?array
-    {
-        return [
-            'title' => $this->title, 
-            'description' => 'Purchase of Product #' . $this->id,
-        ];
-    }
-
-    public function getFeePercent()
-    {
-        return 0.03; // 3%    
-    }
-}

Tax process

Find the user and check the balance.

php
$user = User::first();
-$user->balance; // 103

Find the goods and check the cost.

php
$item = Item::first();
-$item->getAmountProduct($user); // 100

The user can buy a product, buy...

php
$user->pay($item); // success, 100 (product) + 3 (fee) = 103
-$user->balance; // 0

Minimal Taxing

Add interface MinimalTaxable (or MaximalTaxable) in class Item.

php
use Bavix\Wallet\Traits\HasWallet;
-use Bavix\Wallet\Interfaces\Customer;
-use Bavix\Wallet\Interfaces\MinimalTaxable;
-use Bavix\Wallet\Interfaces\ProductInterface;
-
-class Item extends Model implements ProductInterface, MinimalTaxable
-{
-    use HasWallet;
-
-    public function getAmountProduct(Customer $customer): int|string
-    {
-        return 100;
-    }
-
-    public function getMetaProduct(): ?array
-    {
-        return [
-            'title' => $this->title, 
-            'description' => 'Purchase of Product #' . $this->id,
-        ];
-    }
-
-    public function getFeePercent()
-    {
-        return 0.03; // 3%    
-    }
-    
-    public function getMinimalFee()
-    {
-        return 5; // 3%, minimum 5    
-    }
-}

Successfully

Find the user and check the balance.

php
$user = User::first();
-$user->balance; // 105

Find the goods and check the cost.

php
$item = Item::first();
-$item->getAmountProduct($user); // 100

The user can buy a product, buy...

php
$user->pay($item); // success, 100 (product) + 5 (minimal fee) = 105
-$user->balance; // 0

Failed

Find the user and check the balance.

php
$user = User::first();
-$user->balance; // 103

Find the goods and check the cost.

php
$item = Item::first();
-$item->getAmountProduct($user); // 100

The user can buy a product, buy...

php
$user->safePay($item); // failed, 100 (product) + 5 (minimal fee) = 105
-$user->balance; // 103

It's simple!

- - - - \ No newline at end of file diff --git a/docs/.vitepress/dist/guide/purchases/gift.html b/docs/.vitepress/dist/guide/purchases/gift.html deleted file mode 100644 index 8531b354e..000000000 --- a/docs/.vitepress/dist/guide/purchases/gift.html +++ /dev/null @@ -1,95 +0,0 @@ - - - - - - Gift | Laravel Wallet - - - - - - - - - - - - - - - - -
Skip to content

Gift

Gifts are a purchase with someone else's wallet attached. The peculiarity of gifts is that when the gift is returned, the money is returned to the person who bought it, and not to the person to whom it was given. This functionality is usually used to reward users by the administration.

User Model

Add the CanPay trait and Customer interface to your User model.

The trait CanPay already inherits HasWallet, reuse will cause an error.

php
use Bavix\Wallet\Traits\CanPay;
-use Bavix\Wallet\Interfaces\Customer;
-
-class User extends Model implements Customer
-{
-    use CanPay;
-}

Item Model

Add the HasWallet trait and interface to Item model.

Starting from version 9.x there are two product interfaces:

  • For an unlimited number of products (ProductInterface);
  • For a limited number of products (ProductLimitedInterface);

An example with an unlimited number of products:

php
use Bavix\Wallet\Traits\HasWallet;
-use Bavix\Wallet\Interfaces\Customer;
-use Bavix\Wallet\Interfaces\ProductInterface;
-
-class Item extends Model implements ProductInterface
-{
-    use HasWallet;
-
-    public function getAmountProduct(Customer $customer): int|string
-    {
-        return 100;
-    }
-
-    public function getMetaProduct(): ?array
-    {
-        return [
-            'title' => $this->title, 
-            'description' => 'Purchase of Product #' . $this->id,
-        ];
-    }
-}

Example with a limited number of products:

php
use Bavix\Wallet\Traits\HasWallet;
-use Bavix\Wallet\Interfaces\Customer;
-use Bavix\Wallet\Interfaces\ProductLimitedInterface;
-
-class Item extends Model implements ProductLimitedInterface
-{
-    use HasWallet;
-
-    public function canBuy(Customer $customer, int $quantity = 1, bool $force = false): bool
-    {
-        /**
-         * This is where you implement the constraint logic. 
-         * 
-         * If the service can be purchased once, then
-         *  return !$customer->paid($this);
-         */
-        return true; 
-    }
-    
-    public function getAmountProduct(Customer $customer): int|string
-    {
-        return 100;
-    }
-
-    public function getMetaProduct(): ?array
-    {
-        return [
-            'title' => $this->title, 
-            'description' => 'Purchase of Product #' . $this->id,
-        ];
-    }
-}

I do not recommend using the limited interface when working with a shopping cart. If you are working with a shopping cart, then you should override the PurchaseServiceInterface interface. With it, you can check the availability of all products with one request, there will be no N-queries in the database.

Santa Claus, give gifts

Find the user's and check the balance.

php
$first = User::first(); 
-$last = User::orderBy('id', 'desc')->first(); // last user
-$first->getKey() !== $last->getKey(); // true
-
-$first->balance; // 115
-$last->balance; // 0

One user wants to give a gift to another. Find the product.

php
$item = Item::first();
-$item->getAmountProduct($first); // 100
-$item->balance; // 0

The first user buys the product and gives it.

If the product uses the Taxable interface, then Santa will pay tax

php
$first->gift($last, $item);
-(bool)$last->paid($item, true); // bool(true)
-$first->balance; // 15
-$last->balance; // 0
-$item->balance; // 100

It's simple!

- - - - \ No newline at end of file diff --git a/docs/.vitepress/dist/guide/purchases/payment-free.html b/docs/.vitepress/dist/guide/purchases/payment-free.html deleted file mode 100644 index 8a37d2ef2..000000000 --- a/docs/.vitepress/dist/guide/purchases/payment-free.html +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - Payment Free | Laravel Wallet - - - - - - - - - - - - - - - - -
Skip to content

Payment Free

Payments as part of e-commerce are an important part. This section is about payment for goods.

User Model

Add the CanPay trait and Customer interface to your User model.

The trait CanPay already inherits HasWallet, reuse will cause an error.

php
use Bavix\Wallet\Traits\CanPay;
-use Bavix\Wallet\Interfaces\Customer;
-
-class User extends Model implements Customer
-{
-    use CanPay;
-}

Item Model

Add the HasWallet trait and interface to Item model.

Starting from version 9.x there are two product interfaces:

  • For an unlimited number of products (ProductInterface);
  • For a limited number of products (ProductLimitedInterface);

An example with an unlimited number of products:

php
use Bavix\Wallet\Traits\HasWallet;
-use Bavix\Wallet\Interfaces\Customer;
-use Bavix\Wallet\Interfaces\ProductInterface;
-
-class Item extends Model implements ProductInterface
-{
-    use HasWallet;
-
-    public function getAmountProduct(Customer $customer): int|string
-    {
-        return 100;
-    }
-
-    public function getMetaProduct(): ?array
-    {
-        return [
-            'title' => $this->title, 
-            'description' => 'Purchase of Product #' . $this->id,
-        ];
-    }
-}

Example with a limited number of products:

php
use Bavix\Wallet\Traits\HasWallet;
-use Bavix\Wallet\Interfaces\Customer;
-use Bavix\Wallet\Interfaces\ProductLimitedInterface;
-
-class Item extends Model implements ProductLimitedInterface
-{
-    use HasWallet;
-
-    public function canBuy(Customer $customer, int $quantity = 1, bool $force = false): bool
-    {
-        /**
-         * This is where you implement the constraint logic. 
-         * 
-         * If the service can be purchased once, then
-         *  return !$customer->paid($this);
-         */
-        return true; 
-    }
-    
-    public function getAmountProduct(Customer $customer): int|string
-    {
-        return 100;
-    }
-
-    public function getMetaProduct(): ?array
-    {
-        return [
-            'title' => $this->title, 
-            'description' => 'Purchase of Product #' . $this->id,
-        ];
-    }
-}

I do not recommend using the limited interface when working with a shopping cart. If you are working with a shopping cart, then you should override the PurchaseServiceInterface interface. With it, you can check the availability of all products with one request, there will be no N-queries in the database.

Pay Free

Find the user and check the balance.

php
$user = User::first();
-$user->balance; // 100

Find the goods and check the cost.

php
$item = Item::first();
-$item->getAmountProduct($user); // 100
-$item->balance; // 0

Purchase!

php
$user->payFree($item);
-(bool)$user->paid($item); // bool(true)
-$user->balance; // 100
-$item->balance; // 0

It's simple!

- - - - \ No newline at end of file diff --git a/docs/.vitepress/dist/guide/purchases/payment.html b/docs/.vitepress/dist/guide/purchases/payment.html deleted file mode 100644 index ad5582aad..000000000 --- a/docs/.vitepress/dist/guide/purchases/payment.html +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - Payment | Laravel Wallet - - - - - - - - - - - - - - - - -
Skip to content

Payment

Payments as part of e-commerce are an important part. This section is about payment for goods.

User Model

Add the CanPay trait and Customer interface to your User model.

The trait CanPay already inherits HasWallet, reuse will cause an error.

php
use Bavix\Wallet\Traits\CanPay;
-use Bavix\Wallet\Interfaces\Customer;
-
-class User extends Model implements Customer
-{
-    use CanPay;
-}

Item Model

Add the HasWallet trait and interface to Item model.

Starting from version 9.x there are two product interfaces:

  • For an unlimited number of products (ProductInterface);
  • For a limited number of products (ProductLimitedInterface);

An example with an unlimited number of products:

php
use Bavix\Wallet\Traits\HasWallet;
-use Bavix\Wallet\Interfaces\Customer;
-use Bavix\Wallet\Interfaces\ProductInterface;
-
-class Item extends Model implements ProductInterface
-{
-    use HasWallet;
-
-    public function getAmountProduct(Customer $customer): int|string
-    {
-        return 100;
-    }
-
-    public function getMetaProduct(): ?array
-    {
-        return [
-            'title' => $this->title, 
-            'description' => 'Purchase of Product #' . $this->id,
-        ];
-    }
-}

Example with a limited number of products:

php
use Bavix\Wallet\Traits\HasWallet;
-use Bavix\Wallet\Interfaces\Customer;
-use Bavix\Wallet\Interfaces\ProductLimitedInterface;
-
-class Item extends Model implements ProductLimitedInterface
-{
-    use HasWallet;
-
-    public function canBuy(Customer $customer, int $quantity = 1, bool $force = false): bool
-    {
-        /**
-         * This is where you implement the constraint logic. 
-         * 
-         * If the service can be purchased once, then
-         *  return !$customer->paid($this);
-         */
-        return true; 
-    }
-    
-    public function getAmountProduct(Customer $customer): int|string
-    {
-        return 100;
-    }
-
-    public function getMetaProduct(): ?array
-    {
-        return [
-            'title' => $this->title, 
-            'description' => 'Purchase of Product #' . $this->id,
-        ];
-    }
-}

I do not recommend using the limited interface when working with a shopping cart. If you are working with a shopping cart, then you should override the PurchaseServiceInterface interface. With it, you can check the availability of all products with one request, there will be no N-queries in the database.

Proceed to purchase

Find the user and check the balance.

php
$user = User::first();
-$user->balance; // 100

Find the goods and check the cost.

php
$item = Item::first();
-$item->getAmountProduct($user); // 100

The user can buy a product, buy...

php
$user->pay($item);
-$user->balance; // 0

What happens if the user does not have the funds? The same as with the withdrawal.

php
$user->balance; // 0
-$user->pay($item);
-// throw an exception

The question arises, how do you know that the product is purchased?

php
(bool)$user->paid($item); // bool(true)

Safe Pay

To not write try and catch use safePay method.

php
if ($user->safePay($item)) {
-  // try to buy again )
-}

It's simple!

- - - - \ No newline at end of file diff --git a/docs/.vitepress/dist/guide/purchases/receiving.html b/docs/.vitepress/dist/guide/purchases/receiving.html deleted file mode 100644 index 6d1985863..000000000 --- a/docs/.vitepress/dist/guide/purchases/receiving.html +++ /dev/null @@ -1,96 +0,0 @@ - - - - - - Payment. Customize receiving | Laravel Wallet - - - - - - - - - - - - - - - - -
Skip to content

Payment. Customize receiving

The architecture of laravel wallet is designed in such a way that when purchasing goods, wallets are created and all money is credited to them, but it happens that this is not necessary. In this case, this functionality will help. You specify the wallet for depositing funds and the buyer will transfer money to this wallet when purchasing a product. This is convenient for marketplaces.

User Model

Add the CanPay trait and Customer interface to your User model.

The trait CanPay already inherits HasWallet, reuse will cause an error.

php
use Bavix\Wallet\Traits\CanPay;
-use Bavix\Wallet\Interfaces\Customer;
-
-class User extends Model implements Customer
-{
-    use CanPay;
-}

Item Model

Add the HasWallet trait and interface to Item model. If we want to achieve multi wallets for a product, then we need to add HasWallets.

Starting from version 9.x there are two product interfaces:

  • For an unlimited number of products (ProductInterface);
  • For a limited number of products (ProductLimitedInterface);

An example with an unlimited number of products:

php
use Bavix\Wallet\Traits\HasWallet;
-use Bavix\Wallet\Traits\HasWallets;
-use Bavix\Wallet\Interfaces\Customer;
-use Bavix\Wallet\Interfaces\ProductInterface;
-
-class Item extends Model implements ProductInterface
-{
-    use HasWallet, HasWallets;
-
-    public function getAmountProduct(Customer $customer): int|string
-    {
-        return 100;
-    }
-
-    public function getMetaProduct(): ?array
-    {
-        return [
-            'title' => $this->title, 
-            'description' => 'Purchase of Product #' . $this->id,
-        ];
-    }
-}

Example with a limited number of products:

php
use Bavix\Wallet\Traits\HasWallet;
-use Bavix\Wallet\Traits\HasWallets;
-use Bavix\Wallet\Interfaces\Customer;
-use Bavix\Wallet\Interfaces\ProductLimitedInterface;
-
-class Item extends Model implements ProductLimitedInterface
-{
-    use HasWallet, HasWallets;
-
-    public function canBuy(Customer $customer, int $quantity = 1, bool $force = false): bool
-    {
-        return true; 
-    }
-    
-    public function getAmountProduct(Customer $customer): int|string
-    {
-        return 100;
-    }
-
-    public function getMetaProduct(): ?array
-    {
-        return [
-            'title' => $this->title, 
-            'description' => 'Purchase of Product #' . $this->id,
-        ];
-    }
-}

I do not recommend using the limited interface when working with a shopping cart. If you are working with a shopping cart, then you should override the PurchaseServiceInterface interface. With it, you can check the availability of all products with one request, there will be no N-queries in the database.

Proceed to purchase

Find the user and check the balance.

php
$user = User::first();
-$user->balance; // 100

Find the goods and check the cost.

php
$item = Item::first();
-$item->getAmountProduct($user); // 100
-
-$receiving = $item->createWallet([
-    'name' => 'Dollar',
-    'meta' => [
-        'currency' => 'USD',
-    ],
-]);

The user can buy a product, buy...

php
$cart = app(Cart::class)
-    ->withItem($item, receiving: $receiving)
-;
-
-$user->payCart($cart);
-$user->balance; // 0
-
-$receiving->balanceInt; // $100

It's simple!

- - - - \ No newline at end of file diff --git a/docs/.vitepress/dist/guide/purchases/refund.html b/docs/.vitepress/dist/guide/purchases/refund.html deleted file mode 100644 index 572b42532..000000000 --- a/docs/.vitepress/dist/guide/purchases/refund.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - Refund | Laravel Wallet - - - - - - - - - - - - - - - - -
Skip to content

Refund

We already know how to buy, but what about returns? But they exist and you can use them.

User Model

Add the CanPay trait and Customer interface to your User model.

The trait CanPay already inherits HasWallet, reuse will cause an error.

php
use Bavix\Wallet\Traits\CanPay;
-use Bavix\Wallet\Interfaces\Customer;
-
-class User extends Model implements Customer
-{
-    use CanPay;
-}

Item Model

Add the HasWallet trait and interface to Item model.

Starting from version 9.x there are two product interfaces:

  • For an unlimited number of products (ProductInterface);
  • For a limited number of products (ProductLimitedInterface);

An example with an unlimited number of products:

php
use Bavix\Wallet\Traits\HasWallet;
-use Bavix\Wallet\Interfaces\Customer;
-use Bavix\Wallet\Interfaces\ProductInterface;
-
-class Item extends Model implements ProductInterface
-{
-    use HasWallet;
-
-    public function getAmountProduct(Customer $customer): int|string
-    {
-        return 100;
-    }
-
-    public function getMetaProduct(): ?array
-    {
-        return [
-            'title' => $this->title, 
-            'description' => 'Purchase of Product #' . $this->id,
-        ];
-    }
-}

Example with a limited number of products:

php
use Bavix\Wallet\Traits\HasWallet;
-use Bavix\Wallet\Interfaces\Customer;
-use Bavix\Wallet\Interfaces\ProductLimitedInterface;
-
-class Item extends Model implements ProductLimitedInterface
-{
-    use HasWallet;
-
-    public function canBuy(Customer $customer, int $quantity = 1, bool $force = false): bool
-    {
-        /**
-         * This is where you implement the constraint logic. 
-         * 
-         * If the service can be purchased once, then
-         *  return !$customer->paid($this);
-         */
-        return true; 
-    }
-    
-    public function getAmountProduct(Customer $customer): int|string
-    {
-        return 100;
-    }
-
-    public function getMetaProduct(): ?array
-    {
-        return [
-            'title' => $this->title, 
-            'description' => 'Purchase of Product #' . $this->id,
-        ];
-    }
-}

I do not recommend using the limited interface when working with a shopping cart. If you are working with a shopping cart, then you should override the PurchaseServiceInterface interface. With it, you can check the availability of all products with one request, there will be no N-queries in the database.

Make a refund

Find the user and check the balance.

php
$user = User::first();
-$user->balance; // 0

Find the goods and check the balance.

php
$item = Item::first();
-$item->balance; // 100

Return of funds!

php
(bool)$user->paid($item); // bool(true)
-(bool)$user->refund($item); // bool(true)
-$item->balance; // 0
-$user->balance; // 100

It's simple!

- - - - \ No newline at end of file diff --git a/docs/.vitepress/dist/guide/single/cancel.html b/docs/.vitepress/dist/guide/single/cancel.html deleted file mode 100644 index 5d106b543..000000000 --- a/docs/.vitepress/dist/guide/single/cancel.html +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - Cancel Transaction | Laravel Wallet - - - - - - - - - - - - - - - - -
Skip to content

Cancel Transaction

Sometimes you need to cancel a confirmed transaction. For example, money was received or debited by mistake. You can reset the confirmation of a specific transaction.

User Model

Add the CanConfirm trait and Confirmable interface to your User model.

php
use Bavix\Wallet\Interfaces\Confirmable;
-use Bavix\Wallet\Interfaces\Wallet;
-use Bavix\Wallet\Traits\CanConfirm;
-use Bavix\Wallet\Traits\HasWallet;
-
-class UserConfirm extends Model implements Wallet, Confirmable
-{
-    use HasWallet, CanConfirm;
-}

You can only cancel the transaction with the wallet you paid with.

To cancel

Example:

Created a transaction, and after resetting its confirmation.

php
$user->balance; // 0
-$transaction = $user->deposit(100); // confirmed transaction 
-$transaction->confirmed; // bool(true)
-$user->balance; // 100
-
-$user->resetConfirm($transaction); // bool(true)
-$transaction->confirmed; // bool(false)
-
-$user->balance; // 0

It's simple!

- - - - \ No newline at end of file diff --git a/docs/.vitepress/dist/guide/single/confirm.html b/docs/.vitepress/dist/guide/single/confirm.html deleted file mode 100644 index 194342b97..000000000 --- a/docs/.vitepress/dist/guide/single/confirm.html +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - Confirm Transaction | Laravel Wallet - - - - - - - - - - - - - - - - -
Skip to content

Confirm Transaction

There are situations when it is necessary to create a transaction without crediting to the wallet or debiting. Laravel-wallet has such a mode of unconfirmed transactions.

You create a transaction without confirmation, and a little later you confirm it.

User Model

Add the CanConfirm trait and Confirmable interface to your User model.

php
use Bavix\Wallet\Interfaces\Confirmable;
-use Bavix\Wallet\Interfaces\Wallet;
-use Bavix\Wallet\Traits\CanConfirm;
-use Bavix\Wallet\Traits\HasWallet;
-
-class UserConfirm extends Model implements Wallet, Confirmable
-{
-    use HasWallet, CanConfirm;
-}

You can only confirm the transaction with the wallet you paid with.

To confirmation

Example:

Sometimes you need to create an operation and confirm its field. That is what this trey does.

php
$user->balance; // 0
-$transaction = $user->deposit(100, null, false); // not confirm
-$transaction->confirmed; // bool(false)
-$user->balance; // 0
-
-$user->confirm($transaction); // bool(true)
-$transaction->confirmed; // bool(true)
-
-$user->balance; // 100

It's simple!

- - - - \ No newline at end of file diff --git a/docs/.vitepress/dist/guide/single/credit-limits.html b/docs/.vitepress/dist/guide/single/credit-limits.html deleted file mode 100644 index 4f9fc029a..000000000 --- a/docs/.vitepress/dist/guide/single/credit-limits.html +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - Credit Limits | Laravel Wallet - - - - - - - - - - - - - - - - -
Skip to content

Credit Limits

If you need the ability to have wallets have a credit limit, then this functionality is for you.

The functionality does nothing, it only allows you not to use "force" for most of the operations within the credit limit. You should write the logic for collecting interest, notifications on debts, etc.

By default, the credit limit is zero.

An example of working with a credit limit:

php
/**
- * @var \Bavix\Wallet\Interfaces\Customer $customer
- * @var \Bavix\Wallet\Models\Wallet $wallet
- * @var \Bavix\Wallet\Interfaces\ProductInterface $product
- */
-$wallet = $customer->wallet; // get default wallet
-$wallet->meta['credit'] = 10000; // credit limit
-$wallet->save(); // update credit limit
-
-$wallet->balanceInt; // 0
-$product->getAmountProduct($customer); // 500
-
-$wallet->pay($product); // success
-$wallet->balanceInt; // -500

For multi-wallets when creating:

php
/** @var \Bavix\Wallet\Traits\HasWallets $user */
-$wallet = $user->createWallet([
-    'name' => 'My Wallet',
-    'meta' => ['credit' => 500],
-]);

It's simple!

- - - - \ No newline at end of file diff --git a/docs/.vitepress/dist/guide/single/deposit.html b/docs/.vitepress/dist/guide/single/deposit.html deleted file mode 100644 index 8dfc0d633..000000000 --- a/docs/.vitepress/dist/guide/single/deposit.html +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - Deposit | Laravel Wallet - - - - - - - - - - - - - - - - -
Skip to content

Deposit

A deposit is a sum of money which is part of the full price of something, and which you pay when you agree to buy it.

In this case, the Deposit is the replenishment of the wallet.

User Model

It is necessary to expand the model that will have the wallet. This is done in two stages:

  • Add Wallet interface;
  • Add the HasWallet trait;

Let's get started.

php
use Bavix\Wallet\Traits\HasWallet;
-use Bavix\Wallet\Interfaces\Wallet;
-
-class User extends Model implements Wallet
-{
-    use HasWallet;
-}

The model is prepared to work with a wallet.

Make a Deposit

Find user:

php
$user = User::first();

As the user uses HasWallet, he will have balance property. Check the user's balance.

php
$user->balance; // 0
-$user->balanceInt; // 0

The balance is zero, which is what we expected. Put it on his 10 cents account.

php
$user->deposit(10); 
-$user->balance; // 10
-$user->balanceInt; // 10

Wow! The balance is 10 cents, the money is credited.

- - - - \ No newline at end of file diff --git a/docs/.vitepress/dist/guide/single/exchange.html b/docs/.vitepress/dist/guide/single/exchange.html deleted file mode 100644 index 25dcc1f28..000000000 --- a/docs/.vitepress/dist/guide/single/exchange.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - - Exchange | Laravel Wallet - - - - - - - - - - - - - - - - -
Skip to content

Exchange

Everyone’s tasks are different and with the help of this functionality you can add exchange rates to your wallets.

The wallet currency is set via meta. Example:

php
$user->createWallet([
-    'name' => 'My USD Wallet',
-    'meta' => ['currency' => 'USD'],
-]);

Service for working with currencies you need to write yourself or use library.

Service for working with currency

We will write a simple service. We will take the data from the array, and not from the database.

php
use Bavix\Wallet\Internal\Service\MathServiceInterface;
-use Bavix\Wallet\Services\ExchangeServiceInterface;
-
-class MyExchangeService implements ExchangeServiceInterface
-{
-    private array $rates = [
-        'USD' => [
-            'RUB' => 67.61,
-        ],
-    ];
-
-    private MathServiceInterface $mathService;
-
-    public function __construct(MathServiceInterface $mathService)
-    {
-        $this->mathService = $mathService;
-
-        foreach ($this->rates as $from => $rates) {
-            foreach ($rates as $to => $rate) {
-                if (empty($this->rates[$to][$from])) {
-                    $this->rates[$to][$from] = $this->mathService->div(1, $rate);
-                }
-            }
-        }
-    }
-
-    /** @param float|int|string $amount */
-    public function convertTo(string $fromCurrency, string $toCurrency, $amount): string
-    {
-        return $this->mathService->mul($amount, $this->rates[$fromCurrency][$toCurrency] ?? 1);
-    }
-}

Service Registration

The service you wrote must be registered, this is done in the file config/wallet.php.

php
return [
-    // ...
-    'services' => [
-        'exchange' => MyExchangeService::class,
-        // ...
-    ],
-    // ...
-];

Exchange process

Create two wallets.

php
$usd = $user->createWallet([
-    'name' => 'My Dollars',
-    'meta' => ['currency' => 'USD'],
-]);
-
-$rub = $user->createWallet([
-    'name' => 'My Ruble',
-    'meta' => ['currency' => 'RUB'],
-]);

We replenish the ruble wallet with 100 rubles.

php
$rub->deposit(10000);

We will exchange rubles into dollars.

php
$transfer = $rub->exchange($usd, 10000);
-$rub->balance; // 0
-$usd->balance; // 147, это $1.47

Unfortunately, the world is not perfect. You will not get back your 100 rubles.

php
$transfer = $usd->exchange($rub, $usd->balance);
-$usd->balance; // 0
-$rub->balance; // 9938

Due to conversion and mathematical rounding, you lost 62 kopecks. You have 99 rubles 38 kopecks left.


It's simple!

- - - - \ No newline at end of file diff --git a/docs/.vitepress/dist/guide/single/refresh.html b/docs/.vitepress/dist/guide/single/refresh.html deleted file mode 100644 index bb42f1638..000000000 --- a/docs/.vitepress/dist/guide/single/refresh.html +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - To refresh the balance | Laravel Wallet - - - - - - - - - - - - - - - - -
Skip to content

To refresh the balance

There are situations when you create a lot of unconfirmed operations, and then abruptly confirm everything. In this case, the user's balance will not change. You must be forced to refresh the balance.

User Model

It is necessary to expand the model that will have the wallet. This is done in two stages:

  • Add Wallet interface;
  • Add the HasWallet trait;

Let's get started.

php
use Bavix\Wallet\Traits\HasWallet;
-use Bavix\Wallet\Interfaces\Wallet;
-
-class User extends Model implements Wallet
-{
-    use HasWallet;
-}

The model is prepared to work with a wallet.

Get the current balance for your wallet

Let's say the user's balance

php
$user->id; // 5
-$user->balance; // 27

And he has unconfirmed transactions. Confirm all transactions.

sql
update transactions 
-set confirmed=1 
-where confirmed=0 and 
-      payable_type='App\Models\User' and 
-      payable_id=5;
--- 212 rows affected in 54 ms

Refresh the balance.

php
$user->balance; // 27
-$user->wallet->refreshBalance();
-$user->balance; // 42

It's simple!

- - - - \ No newline at end of file diff --git a/docs/.vitepress/dist/guide/single/transfer.html b/docs/.vitepress/dist/guide/single/transfer.html deleted file mode 100644 index ee984891e..000000000 --- a/docs/.vitepress/dist/guide/single/transfer.html +++ /dev/null @@ -1,58 +0,0 @@ - - - - - - Transfer | Laravel Wallet - - - - - - - - - - - - - - - - -
Skip to content

Transfer

Transfer in our system are two well-known Deposit and Withdraw operations that are performed in one transaction.

The transfer takes place between wallets.

User Model

It is necessary to expand the model that will have the wallet. This is done in two stages:

  • Add Wallet interface;
  • Add the HasWallet trait;

Let's get started.

php
use Bavix\Wallet\Traits\HasWallet;
-use Bavix\Wallet\Interfaces\Wallet;
-
-class User extends Model implements Wallet
-{
-    use HasWallet;
-}

The model is prepared to work with a wallet.

Example contract

php
$transfer = $user1->transfer(
-    $user2,
-    511,
-    new Extra(
-        deposit: [
-            'type' => 'extra-deposit',
-        ],
-        withdraw: new Option(
-            [
-                'type' => 'extra-withdraw',
-            ],
-            false // confirmed
-        ),
-        extra: [
-            'msg' => 'hello world',
-        ],
-    )
-);

Make a Transfer

Find user:

php
$first = User::first(); 
-$last = User::orderBy('id', 'desc')->first(); // last user
-$first->getKey() !== $last->getKey(); // true

As the user uses HasWallet, he will have balance property. Check the user's balance.

php
$first->balance; // 100
-$last->balance; // 0

The transfer will be from the first user to the second.

php
$first->transfer($last, 5); 
-$first->balance; // 95
-$last->balance; // 5

It's simple!

Force Transfer

Check the user's balance.

php
$first->balance; // 100
-$last->balance; // 0

The transfer will be from the first user to the second.

php
$first->forceTransfer($last, 500); 
-$first->balance; // -400
-$last->balance; // 500

It's simple!

- - - - \ No newline at end of file diff --git a/docs/.vitepress/dist/guide/single/withdraw.html b/docs/.vitepress/dist/guide/single/withdraw.html deleted file mode 100644 index d4d7d477d..000000000 --- a/docs/.vitepress/dist/guide/single/withdraw.html +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - Withdraw | Laravel Wallet - - - - - - - - - - - - - - - - -
Skip to content

Withdraw

When there is enough money in the account, you can transfer/withdraw it or buy something in the system.

Since the currency is virtual, you can buy any services on your website. For example, priority in search results.

User Model

It is necessary to expand the model that will have the wallet. This is done in two stages:

  • Add Wallet interface;
  • Add the HasWallet trait;

Let's get started.

php
use Bavix\Wallet\Traits\HasWallet;
-use Bavix\Wallet\Interfaces\Wallet;
-
-class User extends Model implements Wallet
-{
-    use HasWallet;
-}

The model is prepared to work with a wallet.

Make a Withdraw

Find user:

php
$user = User::first();

As the user uses HasWallet, he will have balance property. Check the user's balance.

php
$user->balance; // 100
-$user->balanceInt; // 100

The balance is not empty, so you can withdraw funds.

php
$user->withdraw(10); 
-$user->balance; // 90
-$user->balanceInt; // 90

It's simple!

Force Withdraw

Forced withdrawal is necessary for those cases when the user has no funds. For example, a fine for spam.

php
$user->balance; // 100
-$user->balanceInt; // 100
-$user->forceWithdraw(101);
-$user->balance; // -1
-$user->balanceInt; // -1

And what will happen if the money is not enough?

There can be two situations:

  • The user's balance is zero, then we get an error Bavix\Wallet\Exceptions\BalanceIsEmpty
  • If the balance is greater than zero, but it is not enough Bavix\Wallet\Exceptions\InsufficientFunds
- - - - \ No newline at end of file diff --git a/docs/.vitepress/dist/hashmap.json b/docs/.vitepress/dist/hashmap.json deleted file mode 100644 index 0e4ae8c25..000000000 --- a/docs/.vitepress/dist/hashmap.json +++ /dev/null @@ -1 +0,0 @@ -{"guide_fractional_deposit.md":"BWPIoLWk","guide_events_customize.md":"C_oxTANW","include_models_user_simple_float.md":"BHKtZpXH","guide_additions_uuid.md":"BXhPbgHs","guide_cqrs_create-wallet.md":"CKR5iFPX","guide_introduction_installation.md":"BJr2yk7p","guide_multi_new-wallet.md":"DLsWaElB","guide_introduction_configuration.md":"BJtAQsgb","guide_multi_transaction-filter.md":"MMWDhaAo","guide_single_refresh.md":"DyIzlukO","guide_single_deposit.md":"BcsDGgfM","guide_events_balance-updated-event.md":"Bnwm6_qe","guide_high-performance_batch-transactions.md":"CmHigNAE","guide_single_exchange.md":"B2DS6fIk","guide_single_credit-limits.md":"DlXxFDrQ","guide_single_confirm.md":"C4zP6Jx7","guide_single_cancel.md":"RROKg7vE","guide_purchases_receiving.md":"CCQHkWGv","guide_purchases_refund.md":"C91GQMAb","include_models_user_simple.md":"DWW_tdne","guide_db_transaction.md":"Buy64iJm","include_composer.md":"Bahh6vzC","guide_introduction_upgrade.md":"CWeACiVZ","guide_fractional_transfer.md":"B0rpt3xh","include_eager_loading.md":"DEcAtRed","guide_purchases_payment-free.md":"Orz9kaX-","guide_introduction_basic-usage.md":"8BCaXADC","guide_introduction_index.md":"OLZq5yD4","guide_purchases_payment.md":"CzAQICFL","guide_events_wallet-created-event.md":"BSjxjF9u","guide_single_withdraw.md":"DOQOK6kp","index.md":"BjhejX_F","guide_db_race-condition.md":"D79_peqX","guide_high-performance_batch-transfers.md":"DnEd7m-y","guide_db_atomic-service.md":"D5TpnOT6","guide_purchases_gift.md":"C_bxgDhS","guide_additions_swap.md":"CkbQXJmg","guide_purchases_cart.md":"BQuTJc6v","guide_events_transaction-created-event.md":"D2KSbfEY","guide_helpers_formatter.md":"D75UEgM0","guide_fractional_withdraw.md":"B7oZ_OTi","guide_multi_transfer.md":"I6fyOpJ7","guide_single_transfer.md":"C3u-1njA","guide_purchases_commissions.md":"CMGOeeZc"} diff --git a/docs/.vitepress/dist/index.html b/docs/.vitepress/dist/index.html deleted file mode 100644 index a12506c20..000000000 --- a/docs/.vitepress/dist/index.html +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - Laravel Wallet - - - - - - - - - - - - - - - - -
Skip to content

Laravel Wallet

It's simple!

Easy work with virtual wallet

Laravel Wallet
- - - - \ No newline at end of file